diff --git a/.all-contributorsrc b/.all-contributorsrc
index b2da537f7..c3fb03f35 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -62,7 +62,8 @@
"profile": "https://www.brosaplanella.xyz",
"contributions": [
"review",
- "code"
+ "code",
+ "example"
]
},
{
@@ -97,7 +98,7 @@
{
"login": "IntelLiGent",
"name": "Horizon Europe IntelLiGent Consortium",
- "avatar_url": "assets/logo-farger.pdf",
+ "avatar_url": "assets/logo-farger.svg",
"profile": "https://heuintelligent.eu/",
"contributions": [
"financial"
@@ -111,6 +112,33 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "MarkBlyth",
+ "name": "MarkBlyth",
+ "avatar_url": "https://avatars.githubusercontent.com/u/20501619?v=4",
+ "profile": "https://github.com/MarkBlyth",
+ "contributions": [
+ "code"
+ ]
+ },
+ {
+ "login": "f-g-r-i-m-m",
+ "name": "f-g-r-i-m-m",
+ "avatar_url": "https://avatars.githubusercontent.com/u/137511310?v=4",
+ "profile": "https://github.com/f-g-r-i-m-m",
+ "contributions": [
+ "example"
+ ]
+ },
+ {
+ "login": "Dibyendu-IITKGP",
+ "name": "Dibyendu-IITKGP",
+ "avatar_url": "https://avatars.githubusercontent.com/u/32595915?v=4",
+ "profile": "https://github.com/Dibyendu-IITKGP",
+ "contributions": [
+ "example"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/.github/release_workflow.md b/.github/release_workflow.md
index a655f9fee..97fc65d67 100644
--- a/.github/release_workflow.md
+++ b/.github/release_workflow.md
@@ -11,6 +11,7 @@ To create a new release, follow these steps:
- Increment the following;
- The version number in the `pyproject.toml` and `CITATION.cff` files following CalVer versioning.
- The`CHANGELOG.md` version with the changes for the new version.
+ - Add a new entry for the documentation site version switcher located at `docs/_static/switcher.json`
- Open a PR to the `main` branch. Once the PR is merged, proceed to the next step.
2. **Tag the Release:**
diff --git a/.github/workflows/lychee_links.yaml b/.github/workflows/lychee_links.yaml
new file mode 100644
index 000000000..8d1127b49
--- /dev/null
+++ b/.github/workflows/lychee_links.yaml
@@ -0,0 +1,61 @@
+# Lychee Link Checking
+
+name: Links
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches:
+ - main
+ schedule:
+ - cron: '0 6 * * 0' # Run weekly on Sundays at 06:00 UTC
+
+jobs:
+ Lychee:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Restore lychee cache
+ uses: actions/cache@v4
+ with:
+ path: .lycheecache
+ key: cache-lychee-${{ github.sha }}
+ restore-keys: cache-lychee-
+
+ - name: Set up Lychee
+ uses: lycheeverse/lychee-action@v1.10.0
+ with:
+ args: >-
+ --cache
+ --no-progress
+ --max-cache-age 2d
+ --timeout 10
+ --max-retries 5
+ --skip-missing
+ --exclude-loopback
+ --accept 200,403,429,999
+ --exclude "https://tiles.stadiamaps.com/*|https://b.tile.openstreetmap.org/*"
+ --exclude "https://cartodb-basemaps-c.global.ssl.fastly.net/*"
+ --exclude "https://events.mapbox.com/*|https://events.mapbox.cn/*|https://api.mapbox.cn/*"
+ --exclude "https://github.com/mikolalysenko/glsl-read-float/*"
+ --exclude "https://fonts.openmaptiles.org/*"
+ --exclude "https://a.tile.openstreetmap.org/*"
+ --exclude "https://openstreetmap.org/*|https://www.openstreetmap.org/*"
+ --exclude "https://cdn.plot.ly/*"
+ --exclude "http://www.w3.org/*|https://www.w3.org/*"
+ --exclude "https://doi.org/*"
+ --exclude "https://raw.githubusercontent.com/paramm-team/pybamm-param/develop/pbparam/input/data/"
+ --exclude-path ./CHANGELOG.md
+ --exclude-path asv.conf.json
+ --exclude-path docs/conf.py
+ './**/*.rst'
+ './**/*.md'
+ './**/*.py'
+ './**/*.ipynb'
+ './**/*.json'
+ './**/*.toml'
+ fail: true
+ jobSummary: true
+ format: markdown
diff --git a/.github/workflows/release_action.yaml b/.github/workflows/release_action.yaml
index 0e4ee04d4..499b40022 100644
--- a/.github/workflows/release_action.yaml
+++ b/.github/workflows/release_action.yaml
@@ -72,7 +72,7 @@ jobs:
./dist/*.tar.gz
./dist/*.whl
- name: Publish artifacts and signatures to GitHub Releases
- uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 # v2.0.4
+ uses: softprops/action-gh-release@v2
with:
# `dist/` contains the built packages, and the
# sigstore-produced signatures and certificates.
diff --git a/.github/workflows/scheduled_tests.yaml b/.github/workflows/scheduled_tests.yaml
index 159152f05..f8d54a927 100644
--- a/.github/workflows/scheduled_tests.yaml
+++ b/.github/workflows/scheduled_tests.yaml
@@ -6,13 +6,14 @@ on:
branches:
- main
- # runs every day at 09:00 UTC
+ # runs every day at 03:00 UTC
schedule:
- - cron: '0 9 * * *'
+ - cron: '0 3 * * *'
# Check noxfile.py for associated environment variables
env:
PYBOP_SCHEDULED: 1
+ FORCE_COLOR: 3
jobs:
# Dynamically create a matrix of OS, Python, and PyBaMM versions
diff --git a/.github/workflows/test_on_push.yaml b/.github/workflows/test_on_pull_request.yaml
similarity index 83%
rename from .github/workflows/test_on_push.yaml
rename to .github/workflows/test_on_pull_request.yaml
index e2b6d19d9..cdad41770 100644
--- a/.github/workflows/test_on_push.yaml
+++ b/.github/workflows/test_on_pull_request.yaml
@@ -4,6 +4,10 @@ on:
workflow_dispatch:
pull_request:
+# Add colors to nox/pytest
+env:
+ FORCE_COLOR: 3
+
concurrency:
# github.workflow: name of the workflow, so that we don't cancel other workflows
# github.event.pull_request.number || github.ref: pull request number or branch name if not a pull request
@@ -105,6 +109,37 @@ jobs:
run: |
nox -s examples
+ # Quick benchmarks on macos-14
+ benchmarks:
+ needs: style
+ runs-on: macos-14
+ strategy:
+ fail-fast: false
+ name: Benchmarks
+
+ steps:
+ - name: Check out PyBOP repository
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 2
+
+ - name: Set up Python 3.12
+ id: setup-python
+ uses: actions/setup-python@v4
+ with:
+ python-version: 3.12
+
+ - name: Install dependencies
+ shell: bash
+ run: |
+ python -m pip install --upgrade pip asv[virtualenv]
+
+ - name: Run quick benchmarks
+ shell: bash
+ run: |
+ asv machine --machine "GitHubRunner"
+ asv run --machine "GitHubRunner" --quick --show-stderr
+
# Runs only on macos-14 with Python 3.12
check_coverage:
needs: style
diff --git a/.gitignore b/.gitignore
index 3c3bb708d..2bafcca63 100644
--- a/.gitignore
+++ b/.gitignore
@@ -314,3 +314,6 @@ $RECYCLE.BIN/
# Airspeed Velocity
*.asv/
results/
+
+# Pycharm
+*.idea/
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index e5c6f51f5..db0a8319c 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -4,7 +4,7 @@ ci:
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
- rev: "v0.4.10"
+ rev: "v0.7.4"
hooks:
- id: ruff
args: [--fix, --show-fixes]
@@ -13,7 +13,7 @@ repos:
types_or: [python, pyi, jupyter]
- repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.6.0
+ rev: v5.0.0
hooks:
- id: check-added-large-files
args: ['--maxkb=2000']
@@ -32,3 +32,9 @@ repos:
- id: rst-backticks
- id: rst-directive-colons
- id: rst-inline-touching-normal
+
+ - repo: https://github.com/kynan/nbstripout
+ rev: 0.8.1
+ hooks:
+ - id: nbstripout
+ args: ['--keep-output', '--drop-empty-cells']
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 93752e1d8..bcfe6c905 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,12 +2,102 @@
## Features
+- [#282](https://github.com/pybop-team/PyBOP/issues/282) - Restructures the examples directory.
+- [#396](https://github.com/pybop-team/PyBOP/issues/396) - Adds `ecm_with_tau.py` example script.
+- [#452](https://github.com/pybop-team/PyBOP/issues/452) - Extends `cell_mass` and `approximate_capacity` for half-cell models.
+- [#544](https://github.com/pybop-team/PyBOP/issues/544) - Allows iterative plotting using `StandardPlot`.
+- [#541](https://github.com/pybop-team/PyBOP/pull/541) - Adds `ScaledLogLikelihood` and `BaseMetaLikelihood` classes.
+- [#409](https://github.com/pybop-team/PyBOP/pull/409) - Adds plotting and convergence methods for Monte Carlo sampling. Includes open-access Tesla 4680 dataset for Bayesian inference example. Fixes transformations for sampling.
+- [#531](https://github.com/pybop-team/PyBOP/pull/531) - Adds Voronoi optimiser surface plot (`pybop.plot.surface`) for fast optimiser aligned cost visualisation.
+- [#532](https://github.com/pybop-team/PyBOP/issues/532) - Adds `linked_parameters` example script which shows how to update linked parameters during design optimisation.
+- [#529](https://github.com/pybop-team/PyBOP/issues/529) - Adds `GravimetricPowerDensity` and `VolumetricPowerDensity` costs, along with the mathjax extension for Sphinx.
+
+## Optimisations
+
+- [#512](https://github.com/pybop-team/PyBOP/pull/513) - Refactors `LogPosterior` with attributes pointing to composed likelihood object.
+- [#551](https://github.com/pybop-team/PyBOP/pull/551) - Refactors Optimiser arguments, `population_size` and `max_iterations` as default args, improves optimiser docstrings
+
+## Bug Fixes
+
+- [#505](https://github.com/pybop-team/PyBOP/pull/505) - Bug fixes for `LogPosterior` with transformed `GaussianLogLikelihood` likelihood.
+
+## Breaking Changes
+
+- [#531](https://github.com/pybop-team/PyBOP/pull/531) - Plot methods moved to `pybop.plot` with mostly minimal renaming. For example, `pybop.plot_parameters` is now `pybop.plot.parameters`. Other breaking changes include: `pybop.plot2d` to `pybop.plot.contour`.
+- [#526](https://github.com/pybop-team/PyBOP/pull/526) - Refactor `OptimisationResults` classes, with `optim.run()` now return the full object. Adds finite cost value check for optimised parameters.
+
+# [v24.9.1](https://github.com/pybop-team/PyBOP/tree/v24.9.0) - 2024-09-16
+
+## Features
+
+## Bug Fixes
+
+- [#495](https://github.com/pybop-team/PyBOP/pull/495) - Bugfixes for Transformation class, adds `apply_transform` optional arg to `BaseCost` for transformation functionality.
+
+## Breaking Changes
+
+# [v24.9.0](https://github.com/pybop-team/PyBOP/tree/v24.9.0) - 2024-09-10
+
+## Features
+
+- [#462](https://github.com/pybop-team/PyBOP/pull/462) - Enables multidimensional learning rate for `pybop.AdamW` with updated (more robust) integration testing. Fixes bug in `Minkowski` and `SumofPower` cost functions for gradient-based optimisers.
+- [#411](https://github.com/pybop-team/PyBOP/pull/411) - Updates notebooks with README in `examples/` directory, removes kaleido dependency and moves to nbviewer rendering, displays notebook figures with `notebook_connected` plotly renderer
+- [#6](https://github.com/pybop-team/PyBOP/issues/6) - Adds Monte Carlo functionality, with methods based on Pints' algorithms. A base class is added `BaseSampler`, in addition to `PintsBaseSampler`.
+- [#353](https://github.com/pybop-team/PyBOP/issues/353) - Allow user-defined check_params functions to enforce nonlinear constraints, and enable SciPy constrained optimisation methods
+- [#222](https://github.com/pybop-team/PyBOP/issues/222) - Adds an example for performing and electrode balancing.
+- [#441](https://github.com/pybop-team/PyBOP/issues/441) - Adds an example for estimating constants within a `pybamm.FunctionalParameter`.
+- [#405](https://github.com/pybop-team/PyBOP/pull/405) - Adds frequency-domain based EIS prediction methods via `model.simulateEIS` and updates to `problem.evaluate` with examples and tests.
+- [#460](https://github.com/pybop-team/PyBOP/pull/460) - Notebook example files added for ECM and folder structure updated.
+- [#450](https://github.com/pybop-team/PyBOP/pull/450) - Adds support for IDAKLU with output variables, and corresponding examples, tests.
+- [#364](https://github.com/pybop-team/PyBOP/pull/364) - Adds the MultiFittingProblem class and the multi_fitting example script.
+- [#444](https://github.com/pybop-team/PyBOP/issues/444) - Merge `BaseModel` `build()` and `rebuild()` functionality.
+- [#435](https://github.com/pybop-team/PyBOP/pull/435) - Adds SLF001 linting for private members.
+- [#418](https://github.com/pybop-team/PyBOP/issues/418) - Wraps the `get_parameter_info` method from PyBaMM to get a dictionary of parameter names and types.
+- [#413](https://github.com/pybop-team/PyBOP/pull/413) - Adds `DesignCost` functionality to `WeightedCost` class with additional tests.
+- [#357](https://github.com/pybop-team/PyBOP/pull/357) - Adds `Transformation()` class with `LogTransformation()`, `IdentityTransformation()`, and `ScaledTransformation()`, `ComposedTransformation()` implementations with corresponding examples and tests.
+- [#427](https://github.com/pybop-team/PyBOP/issues/427) - Adds the nbstripout pre-commit hook to remove unnecessary metadata from notebooks.
+- [#327](https://github.com/pybop-team/PyBOP/issues/327) - Adds the `WeightedCost` subclass, defines when to evaluate a problem and adds the `spm_weighted_cost` example script.
+- [#393](https://github.com/pybop-team/PyBOP/pull/383) - Adds Minkowski and SumofPower cost classes, with an example and corresponding tests.
+- [#403](https://github.com/pybop-team/PyBOP/pull/403/) - Adds lychee link checking action.
+
+## Bug Fixes
+
+- [#473](https://github.com/pybop-team/PyBOP/pull/473) - Bugfixes for transformation class, adds optional `apply_transform` arg to `BaseCost.__call__()`, adds `log_update()` method to `BaseOptimiser`
+- [#464](https://github.com/pybop-team/PyBOP/issues/464) - Fix order of design `parameter_set` updates and refactor `update_capacity`.
+- [#468](https://github.com/pybop-team/PyBOP/issue/468) - Renames `quick_plot.py` to `standard_plots.py`.
+- [#454](https://github.com/pybop-team/PyBOP/issue/454) - Fixes benchmarking suite.
+- [#421](https://github.com/pybop-team/PyBOP/issues/421) - Adds a default value for the initial SOC for design problems.
+
+## Breaking Changes
+
+- [#499](https://github.com/pybop-team/PyBOP/pull/499) - BPX is added as an optional dependency.
+- [#483](https://github.com/pybop-team/PyBOP/pull/483) - Replaces `pybop.MAP` with `pybop.LogPosterior` with an updated call args and bugfixes.
+- [#436](https://github.com/pybop-team/PyBOP/pull/436) - **API Change:** The functionality from `BaseCost.evaluate/S1` & `BaseCost._evaluate/S1` is represented in `BaseCost.__call__` & `BaseCost.compute`. `BaseCost.compute` directly acts on the predictions, while `BaseCost.__call__` calls `BaseProblem.evaluate/S1` before `BaseCost.compute`. `compute` has optional args for gradient cost calculations.
+- [#424](https://github.com/pybop-team/PyBOP/issues/424) - Replaces the `init_soc` input to `FittingProblem` with the option to pass an initial OCV value, updates `BaseModel` and fixes `multi_model_identification.ipynb` and `spm_electrode_design.ipynb`.
+
+# [v24.6.1](https://github.com/pybop-team/PyBOP/tree/v24.6.1) - 2024-07-31
+
+## Features
+
+- [#313](https://github.com/pybop-team/PyBOP/pull/313/) - Fixes for PyBaMM v24.5, drops support for PyBaMM v23.9, v24.1
+
+## Bug Fixes
+
+## Breaking Changes
+
+# [v24.6](https://github.com/pybop-team/PyBOP/tree/v24.6) - 2024-07-08
+
+## Features
+
+- [#319](https://github.com/pybop-team/PyBOP/pull/319/) - Adds `CuckooSearch` optimiser with corresponding tests.
+- [#359](https://github.com/pybop-team/PyBOP/pull/359/) - Aligning Inputs between problem, observer and model.
- [#379](https://github.com/pybop-team/PyBOP/pull/379) - Adds model.simulateS1 to weekly benchmarks.
- [#174](https://github.com/pybop-team/PyBOP/issues/174) - Adds new logo and updates Readme for accessibility.
- [#316](https://github.com/pybop-team/PyBOP/pull/316) - Adds Adam with weight decay (AdamW) optimiser, adds depreciation warning for pints.Adam implementation.
- [#271](https://github.com/pybop-team/PyBOP/issues/271) - Aligns the output of the optimisers via a generalisation of Result class.
- [#315](https://github.com/pybop-team/PyBOP/pull/315) - Updates __init__ structure to remove circular import issues and minimises dependancy imports across codebase for faster PyBOP module import. Adds type-hints to BaseModel and refactors rebuild parameter variables.
- [#236](https://github.com/pybop-team/PyBOP/issues/236) - Restructures the optimiser classes, adds a new optimisation API through direct construction and keyword arguments, and fixes the setting of `max_iterations`, and `_minimising`. Introduces `pybop.BaseOptimiser`, `pybop.BasePintsOptimiser`, and `pybop.BaseSciPyOptimiser` classes.
+- [#322](https://github.com/pybop-team/PyBOP/pull/322) - Add `Parameters` class to store and access multiple parameters in one object.
- [#321](https://github.com/pybop-team/PyBOP/pull/321) - Updates Prior classes with BaseClass, adds a `problem.sample_initial_conditions` method to improve stability of SciPy.Minimize optimiser.
- [#249](https://github.com/pybop-team/PyBOP/pull/249) - Add WeppnerHuggins model and GITT example.
- [#304](https://github.com/pybop-team/PyBOP/pull/304) - Decreases the testing suite completion time.
@@ -25,6 +115,11 @@
## Bug Fixes
+- [#393](https://github.com/pybop-team/PyBOP/pull/393) - General integration test fixes. Adds UserWarning when using Plot2d with prior generated bounds.
+- [#338](https://github.com/pybop-team/PyBOP/pull/338) - Fixes GaussianLogLikelihood class, adds integration tests, updates non-bounded parameter implementation by applying bounds from priors and `boundary_multiplier` argument. Bugfixes to CMAES construction.
+- [#339](https://github.com/pybop-team/PyBOP/issues/339) - Updates the calculation of the cyclable lithium capacity in the spme_max_energy example.
+- [#387](https://github.com/pybop-team/PyBOP/issues/387) - Adds keys to ParameterSet and updates ECM OCV check.
+- [#380](https://github.com/pybop-team/PyBOP/pull/380) - Restore self._boundaries construction for `pybop.PSO`
- [#372](https://github.com/pybop-team/PyBOP/pull/372) - Converts `np.array` to `np.asarray` for Numpy v2.0 support.
- [#165](https://github.com/pybop-team/PyBOP/issues/165) - Stores the attempted and best parameter values and the best cost for each iteration in the log attribute of the optimiser and updates the associated plots.
- [#354](https://github.com/pybop-team/PyBOP/issues/354) - Fixes the calculation of the gradient in the `RootMeanSquaredError` cost.
@@ -39,6 +134,13 @@
- [#270](https://github.com/pybop-team/PyBOP/pull/270) - Updates PR template.
- [#91](https://github.com/pybop-team/PyBOP/issues/91) - Adds a check on the number of parameters for CMAES and makes XNES the default optimiser.
+## Breaking Changes
+
+- [#322](https://github.com/pybop-team/PyBOP/pull/322) - Add `Parameters` class to store and access multiple parameters in one object (API change).
+- [#285](https://github.com/pybop-team/PyBOP/pull/285) - Drop support for Python 3.8.
+- [#251](https://github.com/pybop-team/PyBOP/pull/251) - Drop support for PyBaMM v23.5
+- [#236](https://github.com/pybop-team/PyBOP/issues/236) - Restructures the optimiser classes (API change).
+
# [v24.3.1](https://github.com/pybop-team/PyBOP/tree/v24.3.1) - 2024-06-17
## Features
diff --git a/CITATION.cff b/CITATION.cff
index a14af062e..bcf8d5872 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -11,5 +11,5 @@ authors:
family-names: Courtier
- given-names: David
family-names: Howey
-version: "24.3.1" # Update this when you release a new version
+version: "24.9.1" # Update this when you release a new version
repository-code: 'https://www.github.com/pybop-team/pybop'
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 0f3a7f07d..f237f5221 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -21,7 +21,7 @@ pip install -e .[all,dev]
Before you commit any code, please perform the following checks using [Nox](https://nox.thea.codes/en/stable/index.html):
-- [All tests pass](#testing): `$ nox -s unit`
+- [All tests pass](#testing): `$ nox -s quick`
### Installing and using pre-commit
@@ -62,15 +62,15 @@ You now have everything you need to start making changes!
### B. Writing your code
-6. PyBOP is developed in [Python](https://en.wikipedia.org/wiki/Python_(programming_language)), and makes heavy use of [NumPy](https://en.wikipedia.org/wiki/NumPy) (see also [NumPy for MatLab users](https://numpy.org/doc/stable/user/numpy-for-matlab-users.html) and [Python for R users](http://blog.hackerearth.com/how-can-r-users-learn-python-for-data-science)).
+6. PyBOP is developed in [Python](https://en.wikipedia.org/wiki/Python_(programming_language)), and makes heavy use of [NumPy](https://en.wikipedia.org/wiki/NumPy) (see also [NumPy for MatLab users](https://numpy.org/doc/stable/user/numpy-for-matlab-users.html) and [Python for R users](https://rebeccabarter.com/blog/2023-09-11-from_r_to_python)).
7. Make sure to follow our [coding style guidelines](#coding-style-guidelines).
-8. Commit your changes to your branch with [useful, descriptive commit messages](https://chris.beams.io/posts/git-commit/): Remember these are publicly visible and should still make sense a few months ahead in time. While developing, you can keep using the GitHub issue you're working on as a place for discussion. [Refer to your commits](https://stackoverflow.com/questions/8910271/how-can-i-reference-a-commit-in-an-issue-comment-on-github) when discussing specific lines of code.
+8. Commit your changes to your branch with [useful, descriptive commit messages](https://chris.beams.io/posts/git-commit/): Remember these are publicly visible and should still make sense a few months ahead in time. While developing, you can keep using the GitHub issue you're working on as a place for discussion. Refer to your commits when discussing specific lines of code. This is achieved by referencing the SHA-hash in the comment. An example of this looks like: `the commit 3e5c1e6 solved the issue...`
9. If you want to add a dependency on another library, or re-use code you found somewhere else, have a look at [these guidelines](#dependencies-and-reusing-code).
### C. Merging your changes with PyBOP
10. [Test your code!](#testing)
-12. If you added a major new feature, perhaps it should be showcased in an [example notebook](#example-notebooks).
+12. If you added a major new feature, perhaps it should be showcased in an [example notebook](https://github.com/pybop-team/PyBOP/tree/develop/examples/notebooks).
13. If you've added new functionality, please add additional tests to ensure ample code coverage in PyBOP.
13. When you feel your code is finished, or at least warrants serious discussion, create a [pull request](https://help.github.com/articles/about-pull-requests/) (PR) on [PyBOP's GitHub page](https://github.com/pybop-team/PyBOP).
14. Once a PR has been created, it will be reviewed by any member of the community. Changes might be suggested which you can make by simply adding new commits to the branch. When everything's finished, someone with the right GitHub permissions will merge your changes into PyBOP main repository.
@@ -83,16 +83,20 @@ PyBOP follows the [PEP8 recommendations](https://www.python.org/dev/peps/pep-000
### Ruff
-We use [ruff](https://github.com/charliermarsh/ruff) to check our PEP8 adherence. To try this on your system, navigate to the PyBOP directory in a console and type
+We use [ruff](https://github.com/charliermarsh/ruff) to lint and ensure adherence to Python PEP standards. To manually trigger `ruff`, navigate to the PyBOP directory in a console and type
```bash
python -m pip install pre-commit
pre-commit run ruff
```
-ruff is configured inside the file `pre-commit-config.yaml`, allowing us to ignore some errors. If you think this should be added or removed, please submit an [issue](https://guides.github.com/features/issues/).
+ruff is configured inside the file `pyproject.toml`, allowing us to ignore some errors. If you think a rule should be added or removed, please submit an [issue](https://guides.github.com/features/issues/).
-When you commit your changes they will be checked against ruff automatically (see [Pre-commit checks](#pre-commit-checks)).
+When you commit your changes they will be checked against ruff automatically (see [Pre-commit checks](#pre-commit-checks)). If you are having issues getting your commit to pass the linting, it
+is possible to skip linting for single lines (this should only be done as a **last resort**) by adding a line comment of `#noqa: $ruff_rule` where the `$ruff_rule` is replaced with the rule in question.
+It is also possible to skip linting altogether by committing your changes by using the
+`--no-verify` command-line flag.
+These rules can be found in the ruff configuration in `pyproject.toml` or in the failed pre-commit output. Please note the lint skipping in the pull request for reviewers.
### Naming
@@ -105,7 +109,7 @@ Class names are CamelCase, and start with an upper case letter, for example `MyO
While it's a bad idea for developers to "reinvent the wheel", it's important for users to get a _reasonably sized download and an easy install_. In addition, external libraries can sometimes cease to be supported, and when they contain bugs it might take a while before fixes become available as automatic downloads to PyBOP users.
For these reasons, all dependencies in PyBOP should be thought about carefully and discussed on GitHub.
-Direct inclusion of code from other packages is possible, as long as their license permits it and is compatible with ours, but again should be considered carefully and discussed in the group. Snippets from blogs and [stackoverflow](https://stackoverflow.com/) can often be included but must include attribution to the original by commenting with a link in the source code.
+Direct inclusion of code from other packages is possible, as long as their license permits it and is compatible with ours, but again should be considered carefully and discussed in the group. Snippets from blogs and stackoverflow can often be included but must include attribution to the original by commenting with a link in the source code.
### Separating dependencies
@@ -158,16 +162,24 @@ If you have nox installed, to run unit tests, type
nox -s unit
```
-Alternatively, to run tests standalone with pytest, run,
+For individual tests, use:
+
+```bash
+nox -s tests -- tests/unit/test_costs.py::TestCosts::test_costs
+```
+
+which will run the specified test, alternatively you can run all tests within a file by removing the trailing `::test_costs` in the above command.
+
+Alternatively, to run tests standalone with pytest, use:
```bash
pytest --unit -v
```
-To run individual test files, you can use
+To run individual test files with nox, you can use
```bash
-pytest tests/unit/path/to/test --unit -v
+pytest tests/unit/path/to/test.py --unit -v
```
And for individual tests,
@@ -314,8 +326,6 @@ Configuration files:
pyproject.toml
```
-Note that this file must be kept in sync with the version number in [pybop/**init**.py](https://github.com/pybop-team/PyBOP/blob/develop/pybop/__init__.py).
-
### Continuous Integration using GitHub actions
Each change pushed to the PyBOP GitHub repository will trigger the test and benchmark suites to be run, using [GitHub actions](https://github.com/features/actions).
diff --git a/README.md b/README.md
index 99f7a031e..418405b7d 100644
--- a/README.md
+++ b/README.md
@@ -9,18 +9,18 @@
[![Contributors](https://img.shields.io/github/contributors/pybop-team/PyBOP)](https://github.com/pybop-team/PyBOP/graphs/contributors)
[![Last Commit](https://img.shields.io/github/last-commit/pybop-team/PyBOP/develop?color=purple)](https://github.com/pybop-team/PyBOP/commits/develop)
[![Python Versions from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fpybop-team%2FPyBOP%2Fdevelop%2Fpyproject.toml&label=Python)](https://pypi.org/project/pybop/)
- [![Forks](https://img.shields.io/github/forks/pybop-team/PyBOP?style=flat)](https://github.com/pybop-team/PyBOPe/network/members)
+ [![Forks](https://img.shields.io/github/forks/pybop-team/PyBOP?style=flat)](https://github.com/pybop-team/PyBOP/network/members)
[![Stars](https://img.shields.io/github/stars/pybop-team/PyBOP?style=flat&color=gold)](https://github.com/pybop-team/PyBOP/stargazers)
[![Codecov](https://codecov.io/gh/pybop-team/PyBOP/branch/develop/graph/badge.svg)](https://codecov.io/gh/pybop-team/PyBOP)
[![Open Issues](https://img.shields.io/github/issues/pybop-team/PyBOP)](https://github.com/pybop-team/PyBOP/issues/)
[![License](https://img.shields.io/github/license/pybop-team/PyBOP?color=blue)](https://github.com/pybop-team/PyBOP/blob/develop/LICENSE)
[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/pybop-team/PyBOP/blob/develop/)
+ [![nbviewer](https://raw.githubusercontent.com/jupyter/design/master/logos/Badges/nbviewer_badge.svg)](https://nbviewer.org/github/pybop-team/PyBOP/tree/develop/examples/notebooks/)
[![Static Badge](https://img.shields.io/badge/https%3A%2F%2Fpybop-team.github.io%2Fpybop-bench%2F?label=Benchmarks)](https://pybop-team.github.io/pybop-bench/)
[![Releases](https://img.shields.io/github/v/release/pybop-team/PyBOP?color=gold)](https://github.com/pybop-team/PyBOP/releases)
-## PyBOP
PyBOP provides a complete set of tools for parameterisation and optimisation of battery models, using both Bayesian and frequentist approaches, with [example workflows](https://github.com/pybop-team/PyBOP/tree/develop/examples/notebooks) to assist the user. PyBOP can be used to parameterise various battery models, including electrochemical and equivalent circuit models available in [PyBaMM](https://pybamm.org/). PyBOP prioritises clear and informative diagnostics for the user, while also allowing for advanced probabilistic methods.
The diagram below shows the conceptual framework of PyBOP. This package is currently under development, so users can expect the API to evolve with future releases.
@@ -54,44 +54,50 @@ To check that PyBOP is installed correctly, run one of the examples in the follo
## Using PyBOP
PyBOP has two intended uses:
-1. Parameter estimation from battery test data.
+1. Parameter inference from battery test data.
2. Design optimisation under battery manufacturing/use constraints.
These include a wide variety of optimisation problems that require careful consideration due to the choice of battery model, data availability and/or the choice of design parameters.
-### Notebooks
-PyBOP comes with a number of [example notebooks](https://github.com/pybop-team/PyBOP/blob/develop/examples), which can be found in the examples folder. A few noteworthy ones are listed below.
+### Jupyter Notebooks
-- [Gravimetric design optimisation of a single particle model](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/spm_electrode_design.ipynb)
-- [Experimental GITT fitting of an ECM for an LG M50](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/LG_M50_ECM/1-single-pulse-circuit-model.ipynb)
-- [Compare PyBOP optimisers for parameter identification](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/multi_optimiser_identification.ipynb)
-- [Parameter identification for a spatial pouch cell model](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/pouch_cell_identification.ipynb)
+Explore our [example notebooks](https://github.com/pybop-team/PyBOP/blob/develop/examples) for hands-on demonstrations:
-### Scripts
-Additional script-based examples can be found in the [examples directory](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/). Some notable scripts are listed below.
+- [Gravimetric design optimisation (SPM)](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/energy_based_electrode_design.ipynb)
+- [Non-linear constrained ECM parameter identification](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/ecm_trust-constr.ipynb)
+- [Optimiser comparison for parameter identification](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/multi_optimiser_identification.ipynb)
+- [Parameter identification for spatial pouch cell model](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/pouch_cell_identification.ipynb)
+- [Estimating ECM parameters from HPPC pulse](https://github.com/pybop-team/PyBOP/blob/develop/examples/notebooks/equivalent_circuit_identification_hppc.ipynb)
+
+### Python Scripts
+
+Find additional script-based examples in the [examples directory](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/):
+
+- [UKF parameter identification (SPM)](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/spm_UKF.py)
+- [BPX format parameter import/export](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/BPX_spm.py)
+- [Electrochemical Impendence Spectroscopy (EIS) parameter identification](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/eis_fitting.py)
+- [Maximum a Posteriori parameter identification (SPM)](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/BPX_spm.py)
+- [Gradient-based parameter identification (SPM)](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/spm_AdamW.py)
-- [Unscented Kalman filter parameter identification of a SPM](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/spm_UKF.py)
-- [Import and export parameters using Faraday's BPX format](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/BPX_spm.py)
-- [Maximum a posteriori parameter identification of a SPM](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/BPX_spm.py)
-- [Gradient based parameter identification of a SPM](https://github.com/pybop-team/PyBOP/blob/develop/examples/scripts/spm_adam.py)
### Supported Methods
The table below lists the currently supported [models](https://github.com/pybop-team/PyBOP/tree/develop/pybop/models), [optimisers](https://github.com/pybop-team/PyBOP/tree/develop/pybop/optimisers), and [cost functions](https://github.com/pybop-team/PyBOP/tree/develop/pybop/costs) in PyBOP.
-| Battery Models | Optimization Algorithms | Cost Functions |
-|-----------------------------------------------|-------------------------------------------------------------|------------------------------------------|
-| Single Particle Model (SPM) | Covariance Matrix Adaptation Evolution Strategy (CMA-ES) | Sum of Squared Errors (SSE)
|
-| Single Particle Model with Electrolyte (SPMe) | Particle Swarm Optimization (PSO) | Root Mean Squared Error (RMSE) |
-| Doyle-Fuller-Newman (DFN) | Exponential Natural Evolution Strategy (xNES) | Gaussian Log Likelihood |
-| Many Particle Model (MPM) | Separable Natural Evolution Strategy (sNES) | Gaussian Log Likelihood w/ known variance |
-| Multi-Species Multi-Reactants (MSMR) | Adaptive Moment Estimation with Weight Decay (AdamW) | Maximum a Posteriori (MAP) |
-| Equivalent Circuit Models (ECM) | Improved Resilient Backpropagation (iRProp-) | Unscented Kalman Filter (UKF) |
-| | SciPy Minimize & Differential Evolution | Gravimetric Energy Density |
-| | Gradient Descent| Volumetric Energy Density |
-| | Nelder-Mead | |
+| Battery Models | Optimization Algorithms | Cost Functions |
+|-----------------------------------------------|----------------------------------------------------------|------------------------------------------|
+| Single Particle Model (SPM) | Covariance Matrix Adaptation Evolution Strategy (CMA-ES) | Sum of Squared Errors (SSE) |
+| Single Particle Model with Electrolyte (SPMe) | Particle Swarm Optimization (PSO) | Root Mean Squared Error (RMSE) |
+| Doyle-Fuller-Newman (DFN) | Exponential Natural Evolution Strategy (xNES) | Minkowski |
+| Many Particle Model (MPM) | Separable Natural Evolution Strategy (sNES) | Sum of Power |
+| Multi-Species Multi-Reactants (MSMR) | Adaptive Moment Estimation with Weight Decay (AdamW) | Gaussian Log Likelihood |
+| Weppner-Huggins | Improved Resilient Backpropagation (iRProp-) | Log Posterior |
+| Equivalent Circuit Models (ECM) | SciPy Minimize & Differential Evolution | Unscented Kalman Filter (UKF) |
+| | Cuckoo Search | Gravimetric Energy Density |
+| | Gradient Descent | Volumetric Energy Density |
+| | Nelder-Mead | |
@@ -106,6 +112,10 @@ PyBOP aims to foster a broad consortium of developers and users, building on and
- User-friendliness (putting user requirements first via user-assistance & workflows)
+## License
+
+PyBOP is released under the [BSD 3-Clause License](https://github.com/pybop-team/PyBOP/blob/develop/LICENSE).
+
## Contributors ✨
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -120,14 +130,17 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
NicolaCourtier 💻 👀 💡 ⚠️
David Howey 🤔 🧑🏫
Martin Robinson 🤔 🧑🏫 👀 💻 ⚠️
- Ferran Brosa Planella 👀 💻
+ Ferran Brosa Planella 👀 💻 💡
Agriya Khetarpal 💻 🚇 👀
+ Faraday Institution 💵
- Faraday Institution 💵
UK Research and Innovation 💵
- IntelLiGent Consortium 💵
+ Horizon Europe IntelLiGent Consortium 💵
Muhammed Nedim Sogut 💻
+ MarkBlyth 💻
+ f-g-r-i-m-m 💡
+ Dibyendu-IITKGP 💡
diff --git a/asv.conf.json b/asv.conf.json
index fdd830cea..e6b508e06 100644
--- a/asv.conf.json
+++ b/asv.conf.json
@@ -8,7 +8,7 @@
"python -m build --wheel -o {build_cache_dir} {build_dir}"
],
"default_benchmark_timeout": 180,
- "branches": ["develop"],
+ "branches": ["HEAD"],
"environment_type": "virtualenv",
"matrix": {
"req":{
diff --git a/benchmarks/benchmark_model.py b/benchmarks/benchmark_model.py
index 843b03bcc..2941cba88 100644
--- a/benchmarks/benchmark_model.py
+++ b/benchmarks/benchmark_model.py
@@ -1,8 +1,7 @@
import numpy as np
import pybop
-
-from .benchmark_utils import set_random_seed
+from benchmarks.benchmark_utils import set_random_seed
class BenchmarkModel:
@@ -27,19 +26,20 @@ def setup(self, model, parameter_set):
self.model = model(parameter_set=pybop.ParameterSet.pybamm(parameter_set))
# Define fitting parameters
- parameters = [
+ parameters = pybop.Parameters(
pybop.Parameter(
"Current function [A]",
prior=pybop.Gaussian(0.4, 0.02),
bounds=[0.2, 0.7],
initial_value=0.4,
)
- ]
+ )
# Generate synthetic data
sigma = 0.001
self.t_eval = np.arange(0, 900, 2)
- values = self.model.predict(t_eval=self.t_eval)
+ self.init_state = {"Initial SoC": 0.5}
+ values = self.model.predict(t_eval=self.t_eval, initial_state=self.init_state)
corrupt_values = values["Voltage [V]"].data + np.random.normal(
0, sigma, len(self.t_eval)
)
@@ -59,7 +59,7 @@ def setup(self, model, parameter_set):
# Create fitting problem
self.problem = pybop.FittingProblem(
- model=self.model, dataset=dataset, parameters=parameters, init_soc=0.5
+ model=self.model, dataset=dataset, parameters=parameters
)
def time_model_predict(self, model, parameter_set):
@@ -70,7 +70,9 @@ def time_model_predict(self, model, parameter_set):
model (pybop.Model): The model class being benchmarked.
parameter_set (str): The name of the parameter set being used.
"""
- self.model.predict(inputs=self.inputs, t_eval=self.t_eval)
+ self.model.predict(
+ inputs=self.inputs, t_eval=self.t_eval, initial_state=self.init_state
+ )
def time_model_simulate(self, model, parameter_set):
"""
@@ -80,7 +82,7 @@ def time_model_simulate(self, model, parameter_set):
model (pybop.Model): The model class being benchmarked.
parameter_set (str): The name of the parameter set being used.
"""
- self.problem._model.simulate(inputs=self.inputs, t_eval=self.t_eval)
+ self.problem.model.simulate(inputs=self.inputs, t_eval=self.t_eval)
def time_model_simulateS1(self, model, parameter_set):
"""
@@ -90,4 +92,4 @@ def time_model_simulateS1(self, model, parameter_set):
model (pybop.Model): The model class being benchmarked.
parameter_set (str): The name of the parameter set being used.
"""
- self.problem._model.simulateS1(inputs=self.inputs, t_eval=self.t_eval)
+ self.problem.model.simulateS1(inputs=self.inputs, t_eval=self.t_eval)
diff --git a/benchmarks/benchmark_optim_construction.py b/benchmarks/benchmark_optim_construction.py
index fee5f0789..ccf60a045 100644
--- a/benchmarks/benchmark_optim_construction.py
+++ b/benchmarks/benchmark_optim_construction.py
@@ -1,8 +1,7 @@
import numpy as np
import pybop
-
-from .benchmark_utils import set_random_seed
+from benchmarks.benchmark_utils import set_random_seed
class BenchmarkOptimisationConstruction:
@@ -20,7 +19,7 @@ def setup(self, model, parameter_set, optimiser):
Args:
model (pybop.Model): The model class to be benchmarked.
parameter_set (str): The name of the parameter set to be used.
- optimiser (pybop.Optimiser): The optimizer class to be used.
+ optimiser (pybop.Optimiser): The optimiser class to be used.
"""
# Set random seed
set_random_seed()
@@ -29,7 +28,7 @@ def setup(self, model, parameter_set, optimiser):
model_instance = model(parameter_set=pybop.ParameterSet.pybamm(parameter_set))
# Define fitting parameters
- parameters = [
+ parameters = pybop.Parameters(
pybop.Parameter(
"Negative electrode active material volume fraction",
prior=pybop.Gaussian(0.6, 0.02),
@@ -42,7 +41,7 @@ def setup(self, model, parameter_set, optimiser):
bounds=[0.375, 0.625],
initial_value=0.51,
),
- ]
+ )
# Generate synthetic data
sigma = 0.001
@@ -76,7 +75,7 @@ def time_optimisation_construction(self, model, parameter_set, optimiser):
Args:
model (pybop.Model): The model class being benchmarked.
parameter_set (str): The name of the parameter set being used.
- optimiser (pybop.Optimiser): The optimizer class being used.
+ optimiser (pybop.Optimiser): The optimiser class being used.
"""
self.optim = pybop.Optimisation(self.cost, optimiser=optimiser)
@@ -87,6 +86,6 @@ def time_cost_evaluate(self, model, parameter_set, optimiser):
Args:
model (pybop.Model): The model class being benchmarked.
parameter_set (str): The name of the parameter set being used.
- optimiser (pybop.Optimiser): The optimizer class being used.
+ optimiser (pybop.Optimiser): The optimiser class being used.
"""
self.cost([0.63, 0.51])
diff --git a/benchmarks/benchmark_parameterisation.py b/benchmarks/benchmark_parameterisation.py
index a64116a48..4e723da8f 100644
--- a/benchmarks/benchmark_parameterisation.py
+++ b/benchmarks/benchmark_parameterisation.py
@@ -1,8 +1,7 @@
import numpy as np
import pybop
-
-from .benchmark_utils import set_random_seed
+from benchmarks.benchmark_utils import set_random_seed
class BenchmarkParameterisation:
@@ -30,7 +29,7 @@ def setup(self, model, parameter_set, optimiser):
Args:
model (pybop.Model): The model class to be benchmarked.
parameter_set (str): The name of the parameter set to be used.
- optimiser (pybop.Optimiser): The optimizer class to be used.
+ optimiser (pybop.Optimiser): The optimiser class to be used.
"""
# Set random seed
set_random_seed()
@@ -46,7 +45,7 @@ def setup(self, model, parameter_set, optimiser):
model_instance = model(parameter_set=params)
# Define fitting parameters
- parameters = [
+ parameters = pybop.Parameters(
pybop.Parameter(
"Negative electrode active material volume fraction",
prior=pybop.Gaussian(0.55, 0.03),
@@ -57,7 +56,7 @@ def setup(self, model, parameter_set, optimiser):
prior=pybop.Gaussian(0.55, 0.03),
bounds=[0.375, 0.7],
),
- ]
+ )
# Generate synthetic data
sigma = 0.003
@@ -111,7 +110,7 @@ def time_parameterisation(self, model, parameter_set, optimiser):
Args:
model (pybop.Model): The model class being benchmarked (unused).
parameter_set (str): The name of the parameter set being used (unused).
- optimiser (pybop.Optimiser): The optimizer class being used (unused).
+ optimiser (pybop.Optimiser): The optimiser class being used (unused).
"""
self.optim.run()
@@ -125,4 +124,4 @@ def time_optimiser_ask(self, model, parameter_set, optimiser):
optimiser (pybop.Optimiser): The optimizer class being used.
"""
if optimiser not in [pybop.SciPyMinimize, pybop.SciPyDifferentialEvolution]:
- self.optim.pints_optimiser.ask()
+ self.optim.optimiser.ask()
diff --git a/benchmarks/benchmark_track_parameterisation.py b/benchmarks/benchmark_track_parameterisation.py
index 9180ffecb..ccd8c3f88 100644
--- a/benchmarks/benchmark_track_parameterisation.py
+++ b/benchmarks/benchmark_track_parameterisation.py
@@ -1,8 +1,7 @@
import numpy as np
import pybop
-
-from .benchmark_utils import set_random_seed
+from benchmarks.benchmark_utils import set_random_seed
class BenchmarkTrackParameterisation:
@@ -30,7 +29,7 @@ def setup(self, model, parameter_set, optimiser):
Args:
model (pybop.Model): The model class to be benchmarked.
parameter_set (str): The name of the parameter set to be used.
- optimiser (pybop.Optimiser): The optimizer class to be used.
+ optimiser (pybop.Optimiser): The optimiser class to be used.
"""
# Set random seed
set_random_seed()
@@ -46,7 +45,7 @@ def setup(self, model, parameter_set, optimiser):
model_instance = model(parameter_set=params)
# Define fitting parameters
- parameters = [
+ parameters = pybop.Parameters(
pybop.Parameter(
"Negative electrode active material volume fraction",
prior=pybop.Gaussian(0.55, 0.03),
@@ -57,7 +56,7 @@ def setup(self, model, parameter_set, optimiser):
prior=pybop.Gaussian(0.55, 0.03),
bounds=[0.375, 0.7],
),
- ]
+ )
# Generate synthetic data
sigma = 0.003
@@ -122,7 +121,7 @@ def results_tracking(self, model, parameter_set, optimiser):
Args:
model (pybop.Model): The model class being benchmarked (unused).
parameter_set (str): The name of the parameter set being used (unused).
- optimiser (pybop.Optimiser): The optimizer class being used (unused).
+ optimiser (pybop.Optimiser): The optimiser class being used (unused).
"""
- x, _ = self.optim.run()
- return x
+ results = self.optim.run()
+ return results.x
diff --git a/conftest.py b/conftest.py
index e2d9a55bf..808503fe8 100644
--- a/conftest.py
+++ b/conftest.py
@@ -20,7 +20,7 @@ def pytest_addoption(parser):
"--examples", action="store_true", default=False, help="run examples tests"
)
parser.addoption(
- "--plots", action="store_true", default=False, help="run plotting tests"
+ "--plots", action="store_true", default=False, help="run plot tests"
)
parser.addoption(
"--notebooks", action="store_true", default=False, help="run notebook tests"
diff --git a/docs/_extension/gallery_directive.py b/docs/_extension/gallery_directive.py
index 3579ffcd8..4ab88d996 100644
--- a/docs/_extension/gallery_directive.py
+++ b/docs/_extension/gallery_directive.py
@@ -12,7 +12,7 @@
"""
from pathlib import Path
-from typing import Any, Dict, List
+from typing import Any
from docutils import nodes
from docutils.parsers.rst import directives
@@ -68,7 +68,7 @@ class GalleryGridDirective(SphinxDirective):
"class-card": directives.unchanged,
}
- def run(self) -> List[nodes.Node]:
+ def run(self) -> list[nodes.Node]:
"""Create the gallery grid."""
if self.arguments:
# If an argument is given, assume it's a path to a YAML file
@@ -129,7 +129,7 @@ def run(self) -> List[nodes.Node]:
return [container.children[0]]
-def setup(app: Sphinx) -> Dict[str, Any]:
+def setup(app: Sphinx) -> dict[str, Any]:
"""Add custom configuration to sphinx app.
Args:
diff --git a/docs/_static/switcher.json b/docs/_static/switcher.json
index 5db09bc13..b3f464b27 100644
--- a/docs/_static/switcher.json
+++ b/docs/_static/switcher.json
@@ -4,9 +4,24 @@
"url": "https://pybop-docs.readthedocs.io/en/latest/"
},
{
- "name": "v23.12 (stable)",
- "version": "v23.12",
- "url": "https://pybop-docs.readthedocs.io/en/v23.12/",
+ "name": "v24.9 (stable)",
+ "version": "v24.9",
+ "url": "https://pybop-docs.readthedocs.io/en/v24.9.1/",
"preferred": true
+ },
+ {
+ "name": "v24.6",
+ "version": "v24.6",
+ "url": "https://pybop-docs.readthedocs.io/en/v24.6.1/"
+ },
+ {
+ "name": "v24.3",
+ "version": "v24.3",
+ "url": "https://pybop-docs.readthedocs.io/en/v24.3/"
+ },
+ {
+ "name": "v23.12",
+ "version": "v23.12",
+ "url": "https://pybop-docs.readthedocs.io/en/v23.12/"
}
]
diff --git a/docs/_templates/autoapi/index.rst b/docs/_templates/autoapi/index.rst
index d60759952..7cc11171a 100644
--- a/docs/_templates/autoapi/index.rst
+++ b/docs/_templates/autoapi/index.rst
@@ -15,4 +15,6 @@ This page contains auto-generated API reference documentation [#f1]_.
{% endif %}
{% endfor %}
+ pybop/index
+
.. [#f1] Created with `sphinx-autoapi `_
diff --git a/docs/conf.py b/docs/conf.py
index cfc37a90f..e602d17f3 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -7,11 +7,11 @@
from pathlib import Path
sys.path.append(str(Path(".").resolve()))
-from pybop._version import __version__ # noqa: E402
+from pybop._version import __version__
# -- Project information -----------------------------------------------------
project = "PyBOP"
-copyright = "2023, The PyBOP Team"
+copyright = "2023, The PyBOP Team" # noqa A001
author = "The PyBOP Team"
release = f"v{__version__}"
@@ -20,12 +20,13 @@
"sphinx.ext.napoleon",
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
+ "sphinx.ext.mathjax",
"sphinx.ext.todo",
"sphinx.ext.viewcode",
"sphinx_design",
"sphinx_copybutton",
"autoapi.extension",
- # custom extentions
+ # custom extensions
"_extension.gallery_directive",
# For extension examples and demos
"myst_parser",
@@ -39,7 +40,7 @@
# -- Options for autoapi -------------------------------------------------------
autoapi_type = "python"
autoapi_dirs = ["../pybop"]
-autoapi_keep_files = True
+autoapi_keep_files = False
autoapi_root = "api"
autoapi_member_order = "groupwise"
diff --git a/docs/index.md b/docs/index.md
index d45182ae1..4d5621654 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -8,7 +8,7 @@ html_theme.sidebar_secondary.remove: true
# PyBOP: Optimise and Parameterise Battery Models
-Welcome to PyBOP, a Python package dedicated to the optimization and parameterization of battery models. PyBOP is designed to streamline your workflow, whether you are conducting academic research, working in industry, or simply interested in battery technology and modelling.
+Welcome to PyBOP, a Python package dedicated to the optimisation and parameterisation of battery models. PyBOP is designed to streamline your workflow, whether you are conducting academic research, working in industry, or simply interested in battery technology and modelling.
```{gallery-grid}
:grid-columns: 1 2 2 2
diff --git a/docs/installation.rst b/docs/installation.rst
index 3c0080c1d..50138d81e 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -3,7 +3,7 @@
Installation
*****************************
-PyBOP is a versatile Python package designed for optimization and parameterization of battery models. Follow the instructions below to install PyBOP and set up your environment to begin utilizing its capabilities.
+PyBOP is a versatile Python package designed for optimisation and parameterisation of battery models. Follow the instructions below to install PyBOP and set up your environment to begin utilising its capabilities.
Installing PyBOP with pip
-------------------------
@@ -42,6 +42,28 @@ For those who prefer to install PyBOP from a local clone of the repository or wi
In editable mode, changes you make to the source code will immediately affect the PyBOP installation without the need for reinstallation.
+Optional Dependencies
+-----------------
+``plotly`` - For plotting, PyBOP uses plotly. It can be installed with:
+
+.. code-block:: console
+
+ pip install pybop[plot]
+
+``scikit-fem`` - This is a dependency for the multi-dimensional pybamm models, and can be installed using:
+
+.. code-block:: console
+
+ pip install pybop[scifem]
+
+``bpx`` - To use the Faraday Institution's Battery Parameter eXchange (BPX) package install the optional requirement:
+
+.. code-block:: console
+
+ pip install pybop[bpx]
+
+To install all the optional dependencies, the command ``pip install pybop[all]`` is available. For more information on the optional packages, users are directed towards the `pyproject.toml `_.
+
Verifying Installation
----------------------
@@ -55,7 +77,7 @@ To verify that PyBOP has been installed successfully, try running one of the pro
For Developers
--------------
-If you are installing PyBOP for development purposes, such as contributing to the project, please ensure that you follow the guidelines outlined in the `Contributing Guide <../Contributing.html>`_. It includes additional steps that might be necessary for setting up a development environment, including the installation of dependencies and setup of pre-commit hooks.
+If you are installing PyBOP for development purposes, such as contributing to the project, please ensure that you follow the guidelines outlined in the `Contributing Guide `_. It includes additional steps that might be necessary for setting up a development environment, including the installation of dependencies and setup of pre-commit hooks.
Further Assistance
------------------
@@ -68,4 +90,4 @@ Next Steps
After installing PyBOP, you might want to:
* Explore the `Quick Start Guide `_ to begin using PyBOP.
-* Check out the `API Reference <../api/index.html>`_ for detailed information on PyBOP's programming interface.
+* Check out the `API Reference `_ for detailed information on PyBOP's programming interface.
diff --git a/docs/quick_start.rst b/docs/quick_start.rst
index 683c82b40..1a1617bd2 100644
--- a/docs/quick_start.rst
+++ b/docs/quick_start.rst
@@ -6,7 +6,7 @@ Welcome to the Quick Start Guide for PyBOP. This guide will help you get up and
Getting Started with PyBOP
--------------------------
-PyBOP is equipped with a series of robust tools that can help you optimize various parameters within your battery models to better match empirical data or to explore the effects of different parameters on battery behavior.
+PyBOP is equipped with a series of robust tools that can help you optimise various parameters within your battery models to better match empirical data or to explore the effects of different parameters on battery behavior.
To begin using PyBOP:
@@ -24,14 +24,14 @@ To begin using PyBOP:
import pybop
- Now you're ready to utilize PyBOP's functionality in your projects!
+ Now you're ready to utilise PyBOP's functionality in your projects!
Exploring Examples
------------------
To help you get acquainted with PyBOP's capabilities, we provide a collection of examples that demonstrate common use cases and features of the package:
-- **Jupyter Notebooks**: Interactive notebooks that include detailed explanations alongside the live code, visualizations, and results. These are an excellent resource for learning and can be easily modified and executed to suit your needs.
+- **Jupyter Notebooks**: Interactive notebooks that include detailed explanations alongside the live code, visualisations, and results. These are an excellent resource for learning and can be easily modified and executed to suit your needs.
- **Python Scripts**: For those who prefer working in a text editor, IDE, or for integrating into larger projects, we provide equivalent examples in plain Python script format.
@@ -55,4 +55,4 @@ If you encounter any issues or have questions as you start using PyBOP, don't he
- **GitHub Issues**: Report bugs or request new features by opening an `Issue `_
- **GitHub Discussions**: Post your questions or feedback on our `GitHub Discussions `_
-- **Contributions**: Interested in contributing to PyBOP? Check out our `Contributing Guide <../Contributing.html>`_ for guidelines.
+- **Contributions**: Interested in contributing to PyBOP? Check out our `Contributing Guide `_ for guidelines.
diff --git a/examples/README.md b/examples/README.md
new file mode 100644
index 000000000..913f1e4cf
--- /dev/null
+++ b/examples/README.md
@@ -0,0 +1,43 @@
+# Examples
+
+This directory contains example notebooks and scripts demonstrating how to use PyBOP.
+
+## Directory Structure
+
+- `notebooks/`: Jupyter notebooks of example functionality with explanations
+- `scripts/`: Python scripts for quick reference and command-line usage
+- `standalone/`: Example scripts for using standalone classes
+
+## Notebooks
+
+The `notebooks/` directory contains Jupyter notebooks that provide detailed, interactive examples of various features and use cases. These notebooks include explanations, code snippets, and visualisations.
+
+To view the notebooks with interactive figures without downloading the repository, please use nbviewer:
+
+
+
+[Notebooks on nbviewer](https://nbviewer.org/github/pybop-team/PyBOP/tree/develop/examples/notebooks/)
+
+
+
+## Scripts
+
+The `scripts/` directory contains standalone Python scripts that demonstrate specific tasks or workflows. These scripts are designed for quick reference and can be run directly from the command line.
+
+## Getting Started
+
+1. Clone the repository: `git clone https://github.com/pybop-team/pybop.git`
+2. Navigate to the examples directory: `cd pybop/examples`
+3. Explore the notebooks and scripts in their respective directories.
+4. To run the Jupyter notebooks locally:
+ - Install Jupyter: `pip install jupyter`
+ - Start Jupyter Notebook: `jupyter notebook`
+ - Navigate to the `notebooks/` directory and open the desired notebook
+
+5. To run the Python scripts:
+ - Install PyBOP: `pip install pybop`
+ - Run a script using Python: `python scripts/script_name.py`
+
+## Contributing
+
+If you have additional examples or improvements to existing ones, please feel free to submit a pull request. We appreciate your contributions!
diff --git a/examples/scripts/Chen_example.csv b/examples/data/Chen_example.csv
similarity index 100%
rename from examples/scripts/Chen_example.csv
rename to examples/data/Chen_example.csv
diff --git a/examples/data/LG_M50_ECM/data/LGM50_5Ah_OCV.mat b/examples/data/LG_M50_ECM/data/LGM50_5Ah_OCV.mat
new file mode 100644
index 000000000..bdcb44452
Binary files /dev/null and b/examples/data/LG_M50_ECM/data/LGM50_5Ah_OCV.mat differ
diff --git a/examples/data/LG_M50_ECM/data/LGM50_5Ah_Pulse.mat b/examples/data/LG_M50_ECM/data/LGM50_5Ah_Pulse.mat
new file mode 100644
index 000000000..bcb1468cd
Binary files /dev/null and b/examples/data/LG_M50_ECM/data/LGM50_5Ah_Pulse.mat differ
diff --git a/examples/data/LG_M50_ECM/data/LGM50_5Ah_RateTest.mat b/examples/data/LG_M50_ECM/data/LGM50_5Ah_RateTest.mat
new file mode 100644
index 000000000..63354591b
Binary files /dev/null and b/examples/data/LG_M50_ECM/data/LGM50_5Ah_RateTest.mat differ
diff --git a/examples/data/Samsung_INR21700/multipulse_hppc.xlsx b/examples/data/Samsung_INR21700/multipulse_hppc.xlsx
new file mode 100644
index 000000000..aa7fd79c7
Binary files /dev/null and b/examples/data/Samsung_INR21700/multipulse_hppc.xlsx differ
diff --git a/examples/data/Samsung_INR21700/sample_drive_cycle.xlsx b/examples/data/Samsung_INR21700/sample_drive_cycle.xlsx
new file mode 100644
index 000000000..5e3555c28
Binary files /dev/null and b/examples/data/Samsung_INR21700/sample_drive_cycle.xlsx differ
diff --git a/examples/data/Samsung_INR21700/sample_hppc_pulse.xlsx b/examples/data/Samsung_INR21700/sample_hppc_pulse.xlsx
new file mode 100644
index 000000000..d5118b61f
Binary files /dev/null and b/examples/data/Samsung_INR21700/sample_hppc_pulse.xlsx differ
diff --git a/examples/data/Tesla_4680/601-828_Capacity_03_MB_CB1_subset.txt b/examples/data/Tesla_4680/601-828_Capacity_03_MB_CB1_subset.txt
new file mode 100644
index 000000000..6c4290211
--- /dev/null
+++ b/examples/data/Tesla_4680/601-828_Capacity_03_MB_CB1_subset.txt
@@ -0,0 +1,214229 @@
+time/s Ecell/V I/mA
+18141.7468616867 2.697156 0.0
+18142.74686173419 2.7124314 0.0
+18143.74686178169 2.716644 0.0
+18144.74686182919 2.7197936 0.0
+18145.74686187669 2.7221951 0.0
+18146.74686192418 2.7244785 0.0
+18147.74686197168 2.7265651 0.0
+18148.74686201918 2.7281792 0.0
+18149.74686206668 2.7299116 0.0
+18150.74686211417 2.731565 0.0
+18151.74686216167 2.7329035 0.0
+18152.74686220917 2.7344785 0.0
+18153.74686225667 2.735935 0.0
+18154.74686230416 2.7371554 0.0
+18155.74686235166 2.7384546 0.0
+18156.74686239916 2.739675 0.0
+18157.74686244666 2.7407775 0.0
+18158.74686249415 2.741998 0.0
+18159.74686254165 2.7430608 0.0
+18160.74686258915 2.7440846 0.0
+18161.74686263665 2.7452261 0.0
+18162.74686268414 2.7461317 0.0
+18163.74686273164 2.7471161 0.0
+18164.74686277914 2.7480609 0.0
+18165.74686282664 2.7489665 0.0
+18166.74686287413 2.7497931 0.0
+18167.74686292163 2.7506986 0.0
+18168.74686296913 2.7516041 0.0
+18169.74686301663 2.7523916 0.0
+18170.74686306412 2.7531395 0.0
+18171.74686311162 2.7539663 0.0
+18172.74686315912 2.7546749 0.0
+18173.74686320662 2.7554228 0.0
+18174.74686325411 2.7560923 0.0
+18175.74686330161 2.7568796 0.0
+18176.74686334911 2.7574701 0.0
+18177.74686339661 2.7582183 0.0
+18178.7468634441 2.7588086 0.0
+18179.7468634916 2.7594781 0.0
+18180.7468635391 2.7601473 0.0
+18181.7468635866 2.7607772 0.0
+18182.74686363409 2.7613678 0.0
+18183.74686368159 2.7619584 0.0
+18184.74686372909 2.7623913 0.0
+18185.74686377659 2.7630606 0.0
+18186.74686382408 2.7636118 0.0
+18187.74686387158 2.7641237 0.0
+18188.74686391908 2.7646749 0.0
+18189.74686396657 2.7651865 0.0
+18190.74686401407 2.7657771 0.0
+18191.74686406157 2.766289 0.0
+18192.74686410907 2.7666433 0.0
+18193.74686415656 2.7672338 0.0
+18194.74686420406 2.7677062 0.0
+18195.74686425156 2.7681 0.0
+18196.74686429906 2.768651 0.0
+18197.74686434655 2.7691629 0.0
+18198.74686439405 2.7695172 0.0
+18199.74686444155 2.7700684 0.0
+18200.74686448905 2.7704227 0.0
+18201.74686453654 2.7708559 0.0
+18202.74686458404 2.7712495 0.0
+18203.74686463154 2.7717218 0.0
+18204.74686467904 2.7719975 0.0
+18205.74686472653 2.7724307 0.0
+18206.74686477403 2.7728243 0.0
+18207.74686482153 2.7732179 0.0
+18208.74686486903 2.7736118 0.0
+18209.74686491652 2.7738478 0.0
+18210.74686496402 2.774399 0.0
+18211.74686501152 2.7747533 0.0
+18212.74686505902 2.7751076 0.0
+18213.74686510651 2.7753832 0.0
+18214.74686515401 2.7757771 0.0
+18215.74686520151 2.7761314 0.0
+18216.74686524901 2.7764463 0.0
+18217.7468652965 2.77684 0.0
+18218.746865344 2.7771943 0.0
+18219.7468653915 2.7774305 0.0
+18220.746865439 2.7777455 0.0
+18221.74686548649 2.7780604 0.0
+18222.74686553399 2.7783754 0.0
+18223.74686558149 2.778769 0.0
+18224.74686562899 2.779084 0.0
+18225.74686567648 2.7793202 0.0
+18226.74686572398 2.7795565 0.0
+18227.74686577148 2.7799501 0.0
+18228.74686581898 2.7801864 0.0
+18229.74686586647 2.78058 0.0
+18230.74686591397 2.780895 0.0
+18231.74686596147 2.7810919 0.0
+18232.74686600897 2.7814856 0.0
+18233.74686605646 2.7817218 0.0
+18234.74686610396 2.7819185 0.0
+18235.74686615146 2.7821548 0.0
+18236.74686619896 2.7824304 0.0
+18237.74686624645 2.782706 0.0
+18238.74686629395 2.7830603 0.0
+18239.74686634145 2.7831786 0.0
+18240.74686638894 2.7834935 0.0
+18241.74686643644 2.7836902 0.0
+18242.74686648394 2.7840052 0.0
+18243.74686653144 2.7843201 0.0
+18244.74686657893 2.784517 0.0
+18245.74686662643 2.784714 0.0
+18246.74686667393 2.78495 0.0
+18247.74686672143 2.7851863 0.0
+18248.74686676892 2.7855012 0.0
+18249.74686681642 2.7856588 0.0
+18250.74686686392 2.7860131 0.0
+18251.74686691142 2.7861311 0.0
+18252.74686695891 2.7864068 0.0
+18253.74686700641 2.7866037 0.0
+18254.74686705391 2.7868397 0.0
+18255.74686710141 2.787076 0.0
+18256.7468671489 2.7873516 0.0
+18257.7468671964 2.7874303 0.0
+18258.7468672439 2.7876666 0.0
+18259.7468672914 2.7879815 0.0
+18260.74686733889 2.7881391 0.0
+18261.74686738639 2.7883751 0.0
+18262.74686743389 2.7885721 0.0
+18263.74686748139 2.7888083 0.0
+18264.74686752888 2.7889657 0.0
+18265.74686757638 2.789202 0.0
+18266.74686762388 2.7893596 0.0
+18267.74686767138 2.7895169 0.0
+18268.74686771887 2.7897139 0.0
+18269.74686776637 2.7900681 0.0
+18270.74686781387 2.7901468 0.0
+18271.74686786137 2.7903831 0.0
+18272.74686790886 2.79058 0.0
+18273.74686795636 2.7908161 0.0
+18274.74686800386 2.7909737 0.0
+18275.74686805136 2.791131 0.0
+18276.74686809885 2.791446 0.0
+18277.74686814635 2.7915249 0.0
+18278.74686819385 2.7917216 0.0
+18279.74686824135 2.7918792 0.0
+18280.74686828884 2.7921941 0.0
+18281.74686833634 2.7923121 0.0
+18282.74686838384 2.7924304 0.0
+18283.74686843134 2.7925878 0.0
+18284.74686847883 2.7927058 0.0
+18285.74686852633 2.7929027 0.0
+18286.74686857383 2.793139 0.0
+18287.74686862133 2.7934933 0.0
+18288.74686866882 2.7934539 0.0
+18289.74686871632 2.7936902 0.0
+18290.74686876382 2.7938869 0.0
+18291.74686881131 2.7940445 0.0
+18292.74686885881 2.7941625 0.0
+18293.74686890631 2.7944381 0.0
+18294.74686895381 2.7945561 0.0
+18295.7468690013 2.7945957 0.0
+18296.7468690488 2.79495 0.0
+18297.7468690963 2.7950287 0.0
+18298.7468691438 2.795265 0.0
+18299.74686919129 2.7954223 0.0
+18300.74686923879 2.7955012 0.0
+18301.74686928629 2.7956979 0.0
+18302.74686933379 2.7959735 0.0
+18303.74686938128 2.7959735 0.0
+18304.74686942878 2.7961705 0.0
+18305.74686947628 2.7963278 0.0
+18306.74686952378 2.7964854 0.0
+18307.74686957127 2.7964854 0.0
+18308.74686961877 2.796761 0.0
+18309.74686966627 2.7969184 0.0
+18310.74686971377 2.7971153 0.0
+18311.74686976126 2.7972333 0.0
+18312.74686980876 2.7973516 0.0
+18313.74686985626 2.7975483 0.0
+18314.74686990376 2.7976665 0.0
+18315.74686995125 2.7978239 0.0
+18316.74686999875 2.7979815 0.0
+18317.74687004625 2.7982175 0.0
+18318.74687009375 2.7982965 0.0
+18319.74687014124 2.7984931 0.0
+18320.74687018874 2.7985721 0.0
+18321.74687023624 2.7988081 0.0
+18322.74687028374 2.798887 0.0
+18323.74687033123 2.799123 0.0
+18324.74687037873 2.7990837 0.0
+18325.74687042623 2.7992806 0.0
+18326.74687047373 2.7993987 0.0
+18327.74687052122 2.7995563 0.0
+18328.74687056872 2.7997923 0.0
+18329.74687061622 2.799753 0.0
+18330.74687066372 2.8000679 0.0
+18331.74687071121 2.8001072 0.0
+18332.74687075871 2.8003042 0.0
+18333.74687080621 2.8003435 0.0
+18334.74687085371 2.8005798 0.0
+18335.7468709012 2.8006978 0.0
+18336.7468709487 2.8007767 0.0
+18337.7468709962 2.8009734 0.0
+18338.7468710437 2.8010523 0.0
+18339.74687109119 2.801131 0.0
+18340.74687113869 2.8013277 0.0
+18341.74687118619 2.8014853 0.0
+18342.74687123368 2.8016033 0.0
+18343.74687128118 2.8017609 0.0
+18344.74687132868 2.8018396 0.0
+18345.74687137618 2.8020365 0.0
+18346.74687142367 2.8020759 0.0
+18347.74687147117 2.8022728 0.0
+18348.74687151867 2.8023908 0.0
+18349.74687156617 2.8026271 0.0
+18350.74687161366 2.8026271 0.0
+18351.74687166116 2.8027844 0.0
+18352.74687170866 2.8028631 0.0
+18353.74687175616 2.8030994 0.0
+18354.74687180365 2.8031781 0.0
+18355.74687185115 2.8032176 0.0
+18356.74687189865 2.8034143 0.0
+18357.74687194615 2.8036113 0.0
+18358.74687199364 2.8036506 0.0
+18359.74687204114 2.8037293 0.0
+18360.74687208864 2.8039262 0.0
+18361.74687213614 2.8040442 0.0
+18362.74687218363 2.8041232 0.0
+18363.74687223113 2.8043199 0.0
+18364.74687227863 2.8044381 0.0
+18365.74687232613 2.8045561 0.0
+18366.74687237362 2.8046348 0.0
+18367.74687242112 2.8047924 0.0
+18368.74687246862 2.8048317 0.0
+18369.74687251612 2.8049104 0.0
+18370.74687256361 2.8049498 0.0
+18371.74687261111 2.8051467 0.0
+18372.74687265861 2.805383 0.0
+18373.74687270611 2.8054616 0.0
+18374.7468727536 2.8055797 0.0
+18375.7468728011 2.8056583 0.0
+18376.7468728486 2.8057766 0.0
+18377.7468728961 2.805934 0.0
+18378.74687294359 2.8059735 0.0
+18379.74687299109 2.8062489 0.0
+18380.74687303859 2.8062885 0.0
+18381.74687308609 2.8063672 0.0
+18382.74687313358 2.8064852 0.0
+18383.74687318108 2.8066428 0.0
+18384.74687322858 2.8066821 0.0
+18385.74687327608 2.8068395 0.0
+18386.74687332357 2.8069577 0.0
+18387.74687337107 2.8070364 0.0
+18388.74687341857 2.8071151 0.0
+18389.74687346607 2.8072727 0.0
+18390.74687351356 2.8073907 0.0
+18391.74687356106 2.8073907 0.0
+18392.74687360856 2.8075876 0.0
+18393.74687365606 2.8077056 0.0
+18394.74687370355 2.8078632 0.0
+18395.74687375105 2.8079419 0.0
+18396.74687379855 2.8079813 0.0
+18397.74687384604 2.8081388 0.0
+18398.74687389354 2.8082569 0.0
+18399.74687394104 2.8083749 0.0
+18400.74687398854 2.8085325 0.0
+18401.74687403603 2.8086112 0.0
+18402.74687408353 2.8086505 0.0
+18403.74687413103 2.8087687 0.0
+18404.74687417853 2.8089654 0.0
+18405.74687422602 2.8090048 0.0
+18406.74687427352 2.809123 0.0
+18407.74687432102 2.8092017 0.0
+18408.74687436852 2.8092804 0.0
+18409.74687441601 2.809438 0.0
+18410.74687446351 2.8096347 0.0
+18411.74687451101 2.8096347 0.0
+18412.74687455851 2.8097923 0.0
+18413.746874606 2.8098316 0.0
+18414.7468746535 2.8099103 0.0
+18415.746874701 2.8099892 0.0
+18416.7468747485 2.8101072 0.0
+18417.74687479599 2.8102252 0.0
+18418.74687484349 2.8103042 0.0
+18419.74687489099 2.8104615 0.0
+18420.74687493849 2.8105009 0.0
+18421.74687498598 2.8106978 0.0
+18422.74687503348 2.8108158 0.0
+18423.74687508098 2.8108945 0.0
+18424.74687512848 2.8109341 0.0
+18425.74687517597 2.8110127 0.0
+18426.74687522347 2.8110127 0.0
+18427.74687527097 2.8112097 0.0
+18428.74687531847 2.8112884 0.0
+18429.74687536596 2.8114064 0.0
+18430.74687541346 2.8114851 0.0
+18431.74687546096 2.8116033 0.0
+18432.74687550846 2.8116033 0.0
+18433.74687555595 2.8118396 0.0
+18434.74687560345 2.8119576 0.0
+18435.74687565095 2.8120363 0.0
+18436.74687569845 2.812115 0.0
+18437.74687574594 2.8121545 0.0
+18438.74687579344 2.8122725 0.0
+18439.74687584094 2.8123906 0.0
+18440.74687588844 2.8125875 0.0
+18441.74687593593 2.8126268 0.0
+18442.74687598343 2.8127055 0.0
+18443.74687603093 2.8128631 0.0
+18444.74687607843 2.8128631 0.0
+18445.74687612592 2.8129418 0.0
+18446.74687617342 2.81306 0.0
+18447.74687622092 2.8132567 0.0
+18448.74687626841 2.8132961 0.0
+18449.74687631591 2.8132961 0.0
+18450.74687636341 2.8135324 0.0
+18451.74687641091 2.813493 0.0
+18452.7468764584 2.813493 0.0
+18453.7468765059 2.8136899 0.0
+18454.7468765534 2.8137293 0.0
+18455.7468766009 2.813808 0.0
+18456.74687664839 2.8140049 0.0
+18457.74687669589 2.8140049 0.0
+18458.74687674339 2.8141229 0.0
+18459.74687679089 2.8142803 0.0
+18460.74687683838 2.8143592 0.0
+18461.74687688588 2.8143592 0.0
+18462.74687693338 2.8145952 0.0
+18463.74687698088 2.8146348 0.0
+18464.74687702837 2.8147135 0.0
+18465.74687707587 2.8147528 0.0
+18466.74687712337 2.8149498 0.0
+18467.74687717087 2.8149104 0.0
+18468.74687721836 2.8150678 0.0
+18469.74687726586 2.8152254 0.0
+18470.74687731336 2.8151858 0.0
+18471.74687736086 2.8152647 0.0
+18472.74687740835 2.8153434 0.0
+18473.74687745585 2.8155007 0.0
+18474.74687750335 2.8156583 0.0
+18475.74687755085 2.815619 0.0
+18476.74687759834 2.815737 0.0
+18477.74687764584 2.8158946 0.0
+18478.74687769334 2.8159339 0.0
+18479.74687774084 2.816052 0.0
+18480.74687778833 2.816052 0.0
+18481.74687783583 2.8161702 0.0
+18482.74687788333 2.8162489 0.0
+18483.74687793083 2.8163669 0.0
+18484.74687797832 2.8164458 0.0
+18485.74687802582 2.8164852 0.0
+18486.74687807332 2.8165638 0.0
+18487.74687812082 2.8167608 0.0
+18488.74687816831 2.8167608 0.0
+18489.74687821581 2.8168788 0.0
+18490.74687826331 2.8169181 0.0
+18491.74687831081 2.8169181 0.0
+18492.7468783583 2.8170757 0.0
+18493.7468784058 2.8172331 0.0
+18494.7468784533 2.8171937 0.0
+18495.7468785008 2.8173511 0.0
+18496.74687854829 2.8174694 0.0
+18497.74687859579 2.8174694 0.0
+18498.74687864329 2.8176661 0.0
+18499.74687869078 2.8177056 0.0
+18500.74687873828 2.8178236 0.0
+18501.74687878578 2.817863 0.0
+18502.74687883328 2.8179023 0.0
+18503.74687888077 2.8181386 0.0
+18504.74687892827 2.8182173 0.0
+18505.74687897577 2.8181779 0.0
+18506.74687902327 2.8182173 0.0
+18507.74687907076 2.8182962 0.0
+18508.74687911826 2.8184142 0.0
+18509.74687916576 2.8184142 0.0
+18510.74687921326 2.8185322 0.0
+18511.74687926075 2.8185716 0.0
+18512.74687930825 2.8187292 0.0
+18513.74687935575 2.8188865 0.0
+18514.74687940325 2.8189261 0.0
+18515.74687945074 2.8189654 0.0
+18516.74687949824 2.8190441 0.0
+18517.74687954574 2.819241 0.0
+18518.74687959324 2.819241 0.0
+18519.74687964073 2.8193197 0.0
+18520.74687968823 2.8193984 0.0
+18521.74687973573 2.8193984 0.0
+18522.74687978323 2.8196347 0.0
+18523.74687983072 2.8195953 0.0
+18524.74687987822 2.8196347 0.0
+18525.74687992572 2.819792 0.0
+18526.74687997322 2.819792 0.0
+18527.74688002071 2.8199496 0.0
+18528.74688006821 2.8199496 0.0
+18529.74688011571 2.820107 0.0
+18530.74688016321 2.820107 0.0
+18531.7468802107 2.8201859 0.0
+18532.7468802582 2.8203826 0.0
+18533.7468803057 2.8203433 0.0
+18534.7468803532 2.8204219 0.0
+18535.74688040069 2.8205795 0.0
+18536.74688044819 2.8206189 0.0
+18537.74688049569 2.8207765 0.0
+18538.74688054319 2.8207369 0.0
+18539.74688059068 2.8207765 0.0
+18540.74688063818 2.8209338 0.0
+18541.74688068568 2.8209732 0.0
+18542.74688073318 2.8210914 0.0
+18543.74688078067 2.8210518 0.0
+18544.74688082817 2.8212094 0.0
+18545.74688087567 2.8212488 0.0
+18546.74688092317 2.8214064 0.0
+18547.74688097066 2.8214457 0.0
+18548.74688101816 2.8215637 0.0
+18549.74688106566 2.8215244 0.0
+18550.74688111315 2.8217213 0.0
+18551.74688116065 2.8216424 0.0
+18552.74688120815 2.8217607 0.0
+18553.74688125565 2.821918 0.0
+18554.74688130314 2.8219573 0.0
+18555.74688135064 2.8220363 0.0
+18556.74688139814 2.8220756 0.0
+18557.74688144564 2.8221149 0.0
+18558.74688149313 2.8221936 0.0
+18559.74688154063 2.8222723 0.0
+18560.74688158813 2.8223512 0.0
+18561.74688163563 2.8225086 0.0
+18562.74688168312 2.8223906 0.0
+18563.74688173062 2.8225873 0.0
+18564.74688177812 2.8226662 0.0
+18565.74688182562 2.8227448 0.0
+18566.74688187311 2.8229022 0.0
+18567.74688192061 2.8228235 0.0
+18568.74688196811 2.8229811 0.0
+18569.74688201561 2.8230205 0.0
+18570.7468820631 2.8230598 0.0
+18571.7468821106 2.8231385 0.0
+18572.7468821581 2.8232567 0.0
+18573.7468822056 2.8233747 0.0
+18574.74688225309 2.8233354 0.0
+18575.74688230059 2.8235717 0.0
+18576.74688234809 2.8235321 0.0
+18577.74688239559 2.8235321 0.0
+18578.74688244308 2.8236897 0.0
+18579.74688249058 2.8236897 0.0
+18580.74688253808 2.8238473 0.0
+18581.74688258558 2.8238473 0.0
+18582.74688263307 2.823926 0.0
+18583.74688268057 2.8240833 0.0
+18584.74688272807 2.8241227 0.0
+18585.74688277557 2.8240833 0.0
+18586.74688282306 2.8242409 0.0
+18587.74688287056 2.8243589 0.0
+18588.74688291806 2.8242803 0.0
+18589.74688296556 2.8243196 0.0
+18590.74688301305 2.8245559 0.0
+18591.74688306055 2.8245165 0.0
+18592.74688310805 2.8246739 0.0
+18593.74688315555 2.8246739 0.0
+18594.74688320304 2.8247132 0.0
+18595.74688325054 2.8248708 0.0
+18596.74688329804 2.8249102 0.0
+18597.74688334554 2.8250282 0.0
+18598.74688339303 2.8249888 0.0
+18599.74688344053 2.8251464 0.0
+18600.74688348803 2.8251071 0.0
+18601.74688353552 2.8252645 0.0
+18602.74688358302 2.8252645 0.0
+18603.74688363052 2.8252251 0.0
+18604.74688367802 2.8253825 0.0
+18605.74688372551 2.8254614 0.0
+18606.74688377301 2.8255794 0.0
+18607.74688382051 2.8256581 0.0
+18608.74688386801 2.8258157 0.0
+18609.7468839155 2.8256977 0.0
+18610.746883963 2.825855 0.0
+18611.7468840105 2.8258944 0.0
+18612.746884058 2.8260126 0.0
+18613.74688410549 2.826052 0.0
+18614.74688415299 2.8260913 0.0
+18615.74688420049 2.8262093 0.0
+18616.74688424799 2.8263669 0.0
+18617.74688429548 2.826288 0.0
+18618.74688434298 2.8264062 0.0
+18619.74688439048 2.8264849 0.0
+18620.74688443798 2.8264062 0.0
+18621.74688448547 2.8265636 0.0
+18622.74688453297 2.8267605 0.0
+18623.74688458047 2.8266425 0.0
+18624.74688462797 2.8267605 0.0
+18625.74688467546 2.8267605 0.0
+18626.74688472296 2.8269575 0.0
+18627.74688477046 2.8269179 0.0
+18628.74688481796 2.8269575 0.0
+18629.74688486545 2.8271148 0.0
+18630.74688491295 2.8271935 0.0
+18631.74688496045 2.8271935 0.0
+18632.74688500795 2.8273118 0.0
+18633.74688505544 2.8273511 0.0
+18634.74688510294 2.8274298 0.0
+18635.74688515044 2.8273904 0.0
+18636.74688519794 2.8275084 0.0
+18637.74688524543 2.8275874 0.0
+18638.74688529293 2.8277447 0.0
+18639.74688534043 2.8277447 0.0
+18640.74688538793 2.827863 0.0
+18641.74688543542 2.8278234 0.0
+18642.74688548292 2.827981 0.0
+18643.74688553042 2.827981 0.0
+18644.74688557792 2.8280203 0.0
+18645.74688562541 2.8280597 0.0
+18646.74688567291 2.8281779 0.0
+18647.74688572041 2.8282959 0.0
+18648.74688576791 2.8283353 0.0
+18649.7468858154 2.8282959 0.0
+18650.7468858629 2.8283746 0.0
+18651.7468859104 2.8284533 0.0
+18652.74688595789 2.8285322 0.0
+18653.74688600539 2.8285716 0.0
+18654.74688605289 2.8286502 0.0
+18655.74688610039 2.8287289 0.0
+18656.74688614788 2.8287683 0.0
+18657.74688619538 2.8288472 0.0
+18658.74688624288 2.8289258 0.0
+18659.74688629038 2.8290045 0.0
+18660.74688633787 2.8289652 0.0
+18661.74688638537 2.8290439 0.0
+18662.74688643287 2.8290439 0.0
+18663.74688648037 2.8291621 0.0
+18664.74688652786 2.8292801 0.0
+18665.74688657536 2.8293195 0.0
+18666.74688662286 2.8293984 0.0
+18667.74688667036 2.8293984 0.0
+18668.74688671785 2.8295557 0.0
+18669.74688676535 2.8294771 0.0
+18670.74688681285 2.8296344 0.0
+18671.74688686035 2.8297133 0.0
+18672.74688690784 2.8297133 0.0
+18673.74688695534 2.8298314 0.0
+18674.74688700284 2.8298314 0.0
+18675.74688705034 2.82991 0.0
+18676.74688709783 2.8299887 0.0
+18677.74688714533 2.8300676 0.0
+18678.74688719283 2.8301463 0.0
+18679.74688724033 2.8301463 0.0
+18680.74688728782 2.8303037 0.0
+18681.74688733532 2.8302643 0.0
+18682.74688738282 2.8303826 0.0
+18683.74688743032 2.8303826 0.0
+18684.74688747781 2.8303037 0.0
+18685.74688752531 2.8305006 0.0
+18686.74688757281 2.8305399 0.0
+18687.74688762031 2.8306975 0.0
+18688.7468876678 2.8306582 0.0
+18689.7468877153 2.8307762 0.0
+18690.7468877628 2.8307762 0.0
+18691.7468878103 2.8309338 0.0
+18692.74688785779 2.8309338 0.0
+18693.74688790529 2.8310125 0.0
+18694.74688795279 2.8310912 0.0
+18695.74688800029 2.8311305 0.0
+18696.74688804778 2.8311305 0.0
+18697.74688809528 2.8311698 0.0
+18698.74688814278 2.8312881 0.0
+18699.74688819028 2.8313274 0.0
+18700.74688823777 2.8314061 0.0
+18701.74688828527 2.8315241 0.0
+18702.74688833277 2.8315637 0.0
+18703.74688838026 2.8315637 0.0
+18704.74688842776 2.8316031 0.0
+18705.74688847526 2.8316031 0.0
+18706.74688852276 2.8316817 0.0
+18707.74688857025 2.8317997 0.0
+18708.74688861775 2.8319573 0.0
+18709.74688866525 2.8319573 0.0
+18710.74688871275 2.8319967 0.0
+18711.74688876024 2.8320754 0.0
+18712.74688880774 2.8320754 0.0
+18713.74688885524 2.8320754 0.0
+18714.74688890274 2.832154 0.0
+18715.74688895023 2.8323116 0.0
+18716.74688899773 2.832351 0.0
+18717.74688904523 2.8324296 0.0
+18718.74688909273 2.8323116 0.0
+18719.74688914022 2.832469 0.0
+18720.74688918772 2.8326266 0.0
+18721.74688923522 2.8325479 0.0
+18722.74688928272 2.8326659 0.0
+18723.74688933021 2.8327446 0.0
+18724.74688937771 2.8328235 0.0
+18725.74688942521 2.8328629 0.0
+18726.74688947271 2.8329022 0.0
+18727.7468895202 2.8329809 0.0
+18728.7468895677 2.8330202 0.0
+18729.7468896152 2.8331385 0.0
+18730.7468896627 2.8330595 0.0
+18731.74688971019 2.8332171 0.0
+18732.74688975769 2.8330991 0.0
+18733.74688980519 2.8333745 0.0
+18734.74688985269 2.8332958 0.0
+18735.74688990018 2.8333745 0.0
+18736.74688994768 2.8335321 0.0
+18737.74688999518 2.8335321 0.0
+18738.74689004268 2.8334928 0.0
+18739.74689009017 2.8336895 0.0
+18740.74689013767 2.8336895 0.0
+18741.74689018517 2.833729 0.0
+18742.74689023267 2.8338077 0.0
+18743.74689028016 2.833847 0.0
+18744.74689032766 2.8339257 0.0
+18745.74689037516 2.8339257 0.0
+18746.74689042266 2.8339257 0.0
+18747.74689047015 2.8340044 0.0
+18748.74689051765 2.8341227 0.0
+18749.74689056515 2.8342013 0.0
+18750.74689061265 2.834162 0.0
+18751.74689066014 2.8342407 0.0
+18752.74689070764 2.8343194 0.0
+18753.74689075514 2.8343589 0.0
+18754.74689080263 2.8344769 0.0
+18755.74689085013 2.8345556 0.0
+18756.74689089763 2.834595 0.0
+18757.74689094513 2.8346345 0.0
+18758.74689099262 2.8346739 0.0
+18759.74689104012 2.8346739 0.0
+18760.74689108762 2.8346739 0.0
+18761.74689113512 2.8348312 0.0
+18762.74689118261 2.8349099 0.0
+18763.74689123011 2.8348706 0.0
+18764.74689127761 2.8351068 0.0
+18765.74689132511 2.8350675 0.0
+18766.7468913726 2.8350282 0.0
+18767.7468914201 2.8351462 0.0
+18768.7468914676 2.8351855 0.0
+18769.7468915151 2.8351855 0.0
+18770.74689156259 2.8351462 0.0
+18771.74689161009 2.8353825 0.0
+18772.74689165759 2.8353825 0.0
+18773.74689170509 2.8354611 0.0
+18774.74689175258 2.8354218 0.0
+18775.74689180008 2.8355398 0.0
+18776.74689184758 2.8355005 0.0
+18777.74689189508 2.8356581 0.0
+18778.74689194257 2.8356974 0.0
+18779.74689199007 2.8356581 0.0
+18780.74689203757 2.8358154 0.0
+18781.74689208507 2.8358154 0.0
+18782.74689213256 2.8358154 0.0
+18783.74689218006 2.8358943 0.0
+18784.74689222756 2.835973 0.0
+18785.74689227506 2.835973 0.0
+18786.74689232255 2.836091 0.0
+18787.74689237005 2.8361304 0.0
+18788.74689241755 2.8362486 0.0
+18789.74689246505 2.836288 0.0
+18790.74689251254 2.8363273 0.0
+18791.74689256004 2.8363273 0.0
+18792.74689260754 2.8363667 0.0
+18793.74689265504 2.8364453 0.0
+18794.74689270253 2.8365242 0.0
+18795.74689275003 2.8366423 0.0
+18796.74689279753 2.8364849 0.0
+18797.74689284503 2.8366816 0.0
+18798.74689289252 2.8366816 0.0
+18799.74689294002 2.8368392 0.0
+18800.74689298752 2.8367603 0.0
+18801.74689303502 2.8367999 0.0
+18802.74689308251 2.8369179 0.0
+18803.74689313001 2.8369572 0.0
+18804.74689317751 2.8370752 0.0
+18805.746893225 2.8371148 0.0
+18806.7468932725 2.8370752 0.0
+18807.74689332 2.8372722 0.0
+18808.7468933675 2.8372328 0.0
+18809.74689341499 2.8373115 0.0
+18810.74689346249 2.8371935 0.0
+18811.74689350999 2.8374298 0.0
+18812.74689355749 2.8373508 0.0
+18813.74689360498 2.8375478 0.0
+18814.74689365248 2.8374691 0.0
+18815.74689369998 2.8375871 0.0
+18816.74689374748 2.8375871 0.0
+18817.74689379497 2.8376265 0.0
+18818.74689384247 2.8377051 0.0
+18819.74689388997 2.8377841 0.0
+18820.74689393747 2.8377841 0.0
+18821.74689398496 2.8379021 0.0
+18822.74689403246 2.8379021 0.0
+18823.74689407996 2.8379807 0.0
+18824.74689412746 2.8380203 0.0
+18825.74689417495 2.8379807 0.0
+18826.74689422245 2.8381777 0.0
+18827.74689426995 2.8381383 0.0
+18828.74689431745 2.8381777 0.0
+18829.74689436494 2.8382564 0.0
+18830.74689441244 2.8382564 0.0
+18831.74689445994 2.8383746 0.0
+18832.74689450744 2.838414 0.0
+18833.74689455493 2.8384926 0.0
+18834.74689460243 2.838532 0.0
+18835.74689464993 2.8386106 0.0
+18836.74689469743 2.8386106 0.0
+18837.74689474492 2.8386502 0.0
+18838.74689479242 2.8387682 0.0
+18839.74689483992 2.8387289 0.0
+18840.74689488742 2.8388076 0.0
+18841.74689493491 2.8388076 0.0
+18842.74689498241 2.8389256 0.0
+18843.74689502991 2.8388863 0.0
+18844.74689507741 2.8388863 0.0
+18845.7468951249 2.8390045 0.0
+18846.7468951724 2.8391619 0.0
+18847.7468952199 2.8391225 0.0
+18848.7468952674 2.8391225 0.0
+18849.74689531489 2.8393195 0.0
+18850.74689536239 2.8393588 0.0
+18851.74689540989 2.8393588 0.0
+18852.74689545739 2.8394375 0.0
+18853.74689550488 2.8395162 0.0
+18854.74689555238 2.8395555 0.0
+18855.74689559988 2.8395162 0.0
+18856.74689564737 2.8395555 0.0
+18857.74689569487 2.8396344 0.0
+18858.74689574237 2.8395951 0.0
+18859.74689578987 2.8396738 0.0
+18860.74689583736 2.8397918 0.0
+18861.74689588486 2.8397524 0.0
+18862.74689593236 2.8398707 0.0
+18863.74689597986 2.8397918 0.0
+18864.74689602735 2.83991 0.0
+18865.74689607485 2.8399887 0.0
+18866.74689612235 2.840028 0.0
+18867.74689616985 2.840028 0.0
+18868.74689621734 2.840028 0.0
+18869.74689626484 2.8402643 0.0
+18870.74689631234 2.8401461 0.0
+18871.74689635984 2.8403037 0.0
+18872.74689640733 2.840343 0.0
+18873.74689645483 2.840343 0.0
+18874.74689650233 2.840343 0.0
+18875.74689654983 2.8403823 0.0
+18876.74689659732 2.840461 0.0
+18877.74689664482 2.8405399 0.0
+18878.74689669232 2.8406579 0.0
+18879.74689673982 2.8406973 0.0
+18880.74689678731 2.8406579 0.0
+18881.74689683481 2.8407366 0.0
+18882.74689688231 2.840776 0.0
+18883.74689692981 2.8408942 0.0
+18884.7468969773 2.8408549 0.0
+18885.7468970248 2.8409336 0.0
+18886.7468970723 2.8409729 0.0
+18887.7468971198 2.8409336 0.0
+18888.74689716729 2.8410516 0.0
+18889.74689721479 2.8411305 0.0
+18890.74689726229 2.8411305 0.0
+18891.74689730979 2.8411698 0.0
+18892.74689735728 2.8412092 0.0
+18893.74689740478 2.8412879 0.0
+18894.74689745228 2.8412879 0.0
+18895.74689749978 2.8413272 0.0
+18896.74689754727 2.8414454 0.0
+18897.74689759477 2.8415241 0.0
+18898.74689764227 2.8415635 0.0
+18899.74689768977 2.8415635 0.0
+18900.74689773726 2.8416421 0.0
+18901.74689778476 2.8415635 0.0
+18902.74689783226 2.8417211 0.0
+18903.74689787976 2.8416815 0.0
+18904.74689792725 2.8417604 0.0
+18905.74689797475 2.8418784 0.0
+18906.74689802225 2.8418391 0.0
+18907.74689806974 2.8419178 0.0
+18908.74689811724 2.8418784 0.0
+18909.74689816474 2.8419178 0.0
+18910.74689821224 2.842036 0.0
+18911.74689825973 2.8420753 0.0
+18912.74689830723 2.8421934 0.0
+18913.74689835473 2.8421147 0.0
+18914.74689840223 2.8421934 0.0
+18915.74689844972 2.8423114 0.0
+18916.74689849722 2.8423114 0.0
+18917.74689854472 2.842272 0.0
+18918.74689859222 2.842469 0.0
+18919.74689863971 2.8424296 0.0
+18920.74689868721 2.842587 0.0
+18921.74689873471 2.8426263 0.0
+18922.74689878221 2.842587 0.0
+18923.7468988297 2.8426263 0.0
+18924.7468988772 2.8426659 0.0
+18925.7468989247 2.8427052 0.0
+18926.7468989722 2.8427839 0.0
+18927.74689901969 2.8428233 0.0
+18928.74689906719 2.8429019 0.0
+18929.74689911469 2.8428233 0.0
+18930.74689916219 2.8428626 0.0
+18931.74689920968 2.8429809 0.0
+18932.74689925718 2.8429809 0.0
+18933.74689930468 2.8430989 0.0
+18934.74689935218 2.8431382 0.0
+18935.74689939967 2.8430989 0.0
+18936.74689944717 2.8432169 0.0
+18937.74689949467 2.8431382 0.0
+18938.74689954217 2.8433745 0.0
+18939.74689958966 2.8433745 0.0
+18940.74689963716 2.8434138 0.0
+18941.74689968466 2.8433745 0.0
+18942.74689973216 2.8434925 0.0
+18943.74689977965 2.8434925 0.0
+18944.74689982715 2.8435714 0.0
+18945.74689987465 2.8435714 0.0
+18946.74689992215 2.8436108 0.0
+18947.74689996964 2.8437681 0.0
+18948.74690001714 2.8437288 0.0
+18949.74690006464 2.8437681 0.0
+18950.74690011214 2.8437681 0.0
+18951.74690015963 2.8438468 0.0
+18952.74690020713 2.8438864 0.0
+18953.74690025463 2.8439257 0.0
+18954.74690030213 2.8439651 0.0
+18955.74690034962 2.8440044 0.0
+18956.74690039712 2.8440437 0.0
+18957.74690044462 2.8441224 0.0
+18958.74690049211 2.8441617 0.0
+18959.74690053961 2.8442013 0.0
+18960.74690058711 2.8442407 0.0
+18961.74690063461 2.84428 0.0
+18962.7469006821 2.8442407 0.0
+18963.7469007296 2.8444374 0.0
+18964.7469007771 2.844398 0.0
+18965.7469008246 2.844398 0.0
+18966.74690087209 2.8445163 0.0
+18967.74690091959 2.8445163 0.0
+18968.74690096709 2.844595 0.0
+18969.74690101459 2.8445556 0.0
+18970.74690106208 2.8447523 0.0
+18971.74690110958 2.8447523 0.0
+18972.74690115708 2.8447523 0.0
+18973.74690120458 2.844713 0.0
+18974.74690125207 2.8447523 0.0
+18975.74690129957 2.8447917 0.0
+18976.74690134707 2.8449099 0.0
+18977.74690139457 2.8449886 0.0
+18978.74690144206 2.8450279 0.0
+18979.74690148956 2.8450279 0.0
+18980.74690153706 2.8449886 0.0
+18981.74690158456 2.8451855 0.0
+18982.74690163205 2.8452249 0.0
+18983.74690167955 2.8452249 0.0
+18984.74690172705 2.8452249 0.0
+18985.74690177455 2.8453035 0.0
+18986.74690182204 2.8453035 0.0
+18987.74690186954 2.8454611 0.0
+18988.74690191704 2.8453822 0.0
+18989.74690196454 2.8453822 0.0
+18990.74690201203 2.8454218 0.0
+18991.74690205953 2.8455791 0.0
+18992.74690210703 2.8455005 0.0
+18993.74690215453 2.8455791 0.0
+18994.74690220202 2.8455791 0.0
+18995.74690224952 2.8456185 0.0
+18996.74690229702 2.8456972 0.0
+18997.74690234452 2.8456972 0.0
+18998.74690239201 2.8458154 0.0
+18999.74690243951 2.8458548 0.0
+19000.74690248701 2.8459728 0.0
+19001.74690253451 2.8459334 0.0
+19002.746902582 2.8460517 0.0
+19003.7469026295 2.8460517 0.0
+19004.746902677 2.8461304 0.0
+19005.7469027245 2.846091 0.0
+19006.74690277199 2.8461697 0.0
+19007.74690281949 2.8462484 0.0
+19008.74690286699 2.8463271 0.0
+19009.74690291449 2.8461697 0.0
+19010.74690296198 2.8463271 0.0
+19011.74690300948 2.8463666 0.0
+19012.74690305698 2.8464453 0.0
+19013.74690310447 2.8463666 0.0
+19014.74690315197 2.8464453 0.0
+19015.74690319947 2.846524 0.0
+19016.74690324697 2.8465633 0.0
+19017.74690329446 2.8466027 0.0
+19018.74690334196 2.8466027 0.0
+19019.74690338946 2.846642 0.0
+19020.74690343696 2.8467603 0.0
+19021.74690348445 2.8468783 0.0
+19022.74690353195 2.8467603 0.0
+19023.74690357945 2.8469176 0.0
+19024.74690362695 2.8468783 0.0
+19025.74690367444 2.8468783 0.0
+19026.74690372194 2.8469965 0.0
+19027.74690376944 2.8469965 0.0
+19028.74690381694 2.8469572 0.0
+19029.74690386443 2.8470359 0.0
+19030.74690391193 2.8471539 0.0
+19031.74690395943 2.8471539 0.0
+19032.74690400693 2.8472722 0.0
+19033.74690405442 2.8472722 0.0
+19034.74690410192 2.8472326 0.0
+19035.74690414942 2.8473902 0.0
+19036.74690419692 2.8472722 0.0
+19037.74690424441 2.8473902 0.0
+19038.74690429191 2.8474295 0.0
+19039.74690433941 2.8474295 0.0
+19040.74690438691 2.8475082 0.0
+19041.7469044344 2.8475082 0.0
+19042.7469044819 2.8474689 0.0
+19043.7469045294 2.8476658 0.0
+19044.7469045769 2.8476264 0.0
+19045.74690462439 2.8476658 0.0
+19046.74690467189 2.8477445 0.0
+19047.74690471939 2.8478625 0.0
+19048.74690476689 2.8478625 0.0
+19049.74690481438 2.8478625 0.0
+19050.74690486188 2.8480201 0.0
+19051.74690490938 2.8479414 0.0
+19052.74690495688 2.8480201 0.0
+19053.74690500437 2.8479807 0.0
+19054.74690505187 2.8480594 0.0
+19055.74690509937 2.8481381 0.0
+19056.74690514687 2.8481381 0.0
+19057.74690519436 2.8481774 0.0
+19058.74690524186 2.848217 0.0
+19059.74690528936 2.848335 0.0
+19060.74690533686 2.8482563 0.0
+19061.74690538435 2.848335 0.0
+19062.74690543185 2.848335 0.0
+19063.74690547935 2.8484137 0.0
+19064.74690552684 2.8484924 0.0
+19065.74690557434 2.848532 0.0
+19066.74690562184 2.8484924 0.0
+19067.74690566934 2.8484924 0.0
+19068.74690571683 2.8486106 0.0
+19069.74690576433 2.848768 0.0
+19070.74690581183 2.8486106 0.0
+19071.74690585933 2.8486893 0.0
+19072.74690590682 2.8486893 0.0
+19073.74690595432 2.8488076 0.0
+19074.74690600182 2.8488469 0.0
+19075.74690604932 2.8488863 0.0
+19076.74690609681 2.8489649 0.0
+19077.74690614431 2.8489256 0.0
+19078.74690619181 2.8489256 0.0
+19079.74690623931 2.8490043 0.0
+19080.7469062868 2.8490043 0.0
+19081.7469063343 2.8491619 0.0
+19082.7469063818 2.8491225 0.0
+19083.7469064293 2.8492799 0.0
+19084.74690647679 2.8490829 0.0
+19085.74690652429 2.8492799 0.0
+19086.74690657179 2.8493586 0.0
+19087.74690661929 2.8492405 0.0
+19088.74690666678 2.8493979 0.0
+19089.74690671428 2.8493979 0.0
+19090.74690676178 2.8493979 0.0
+19091.74690680928 2.8495162 0.0
+19092.74690685677 2.8494768 0.0
+19093.74690690427 2.8496342 0.0
+19094.74690695177 2.8495162 0.0
+19095.74690699927 2.8495555 0.0
+19096.74690704676 2.8495948 0.0
+19097.74690709426 2.8497524 0.0
+19098.74690714176 2.8497918 0.0
+19099.74690718926 2.8498311 0.0
+19100.74690723675 2.8497128 0.0
+19101.74690728425 2.8499491 0.0
+19102.74690733175 2.8499885 0.0
+19103.74690737925 2.8499098 0.0
+19104.74690742674 2.8499491 0.0
+19105.74690747424 2.8499885 0.0
+19106.74690752174 2.8501067 0.0
+19107.74690756924 2.8501067 0.0
+19108.74690761673 2.8501461 0.0
+19109.74690766423 2.8501067 0.0
+19110.74690771173 2.8502247 0.0
+19111.74690775923 2.8503034 0.0
+19112.74690780672 2.8502641 0.0
+19113.74690785422 2.8502641 0.0
+19114.74690790172 2.8503823 0.0
+19115.74690794921 2.8503823 0.0
+19116.74690799671 2.8503823 0.0
+19117.74690804421 2.850461 0.0
+19118.74690809171 2.8504217 0.0
+19119.7469081392 2.850461 0.0
+19120.7469081867 2.8506184 0.0
+19121.7469082342 2.8506184 0.0
+19122.7469082817 2.8507366 0.0
+19123.74690832919 2.8506579 0.0
+19124.74690837669 2.850776 0.0
+19125.74690842419 2.8508153 0.0
+19126.74690847169 2.8508546 0.0
+19127.74690851918 2.850776 0.0
+19128.74690856668 2.8508546 0.0
+19129.74690861418 2.8509729 0.0
+19130.74690866168 2.8509333 0.0
+19131.74690870917 2.8510122 0.0
+19132.74690875667 2.8510122 0.0
+19133.74690880417 2.8510516 0.0
+19134.74690885167 2.8510909 0.0
+19135.74690889916 2.8511696 0.0
+19136.74690894666 2.8511696 0.0
+19137.74690899416 2.8512878 0.0
+19138.74690904166 2.8512483 0.0
+19139.74690908915 2.8512089 0.0
+19140.74690913665 2.8513272 0.0
+19141.74690918415 2.8514059 0.0
+19142.74690923165 2.8514059 0.0
+19143.74690927914 2.8514845 0.0
+19144.74690932664 2.8514845 0.0
+19145.74690937414 2.8514452 0.0
+19146.74690942164 2.8515239 0.0
+19147.74690946913 2.8514845 0.0
+19148.74690951663 2.8515239 0.0
+19149.74690956413 2.8516421 0.0
+19150.74690961163 2.8517208 0.0
+19151.74690965912 2.8517601 0.0
+19152.74690970662 2.8517601 0.0
+19153.74690975412 2.8517208 0.0
+19154.74690980162 2.8517995 0.0
+19155.74690984911 2.8517601 0.0
+19156.74690989661 2.8519177 0.0
+19157.74690994411 2.8518388 0.0
+19158.74690999161 2.8520751 0.0
+19159.7469100391 2.8519964 0.0
+19160.7469100866 2.8519571 0.0
+19161.7469101341 2.8521144 0.0
+19162.7469101816 2.8519964 0.0
+19163.74691022909 2.8521144 0.0
+19164.74691027659 2.8521144 0.0
+19165.74691032409 2.8521931 0.0
+19166.74691037158 2.8523114 0.0
+19167.74691041908 2.8523114 0.0
+19168.74691046658 2.852272 0.0
+19169.74691051408 2.8524294 0.0
+19170.74691056157 2.8524294 0.0
+19171.74691060907 2.8525083 0.0
+19172.74691065657 2.8523901 0.0
+19173.74691070407 2.8524687 0.0
+19174.74691075156 2.8526263 0.0
+19175.74691079906 2.8526263 0.0
+19176.74691084656 2.8526263 0.0
+19177.74691089406 2.8526263 0.0
+19178.74691094155 2.8526263 0.0
+19179.74691098905 2.8527443 0.0
+19180.74691103655 2.8528233 0.0
+19181.74691108405 2.8529019 0.0
+19182.74691113154 2.8527837 0.0
+19183.74691117904 2.8528626 0.0
+19184.74691122654 2.8529019 0.0
+19185.74691127404 2.8529019 0.0
+19186.74691132153 2.8529413 0.0
+19187.74691136903 2.85302 0.0
+19188.74691141653 2.85302 0.0
+19189.74691146403 2.8531775 0.0
+19190.74691151152 2.8531775 0.0
+19191.74691155902 2.8531775 0.0
+19192.74691160652 2.8532169 0.0
+19193.74691165402 2.8531382 0.0
+19194.74691170151 2.8532562 0.0
+19195.74691174901 2.8533349 0.0
+19196.74691179651 2.8532562 0.0
+19197.74691184401 2.8534136 0.0
+19198.7469118915 2.8533742 0.0
+19199.746911939 2.8534532 0.0
+19200.7469119865 2.8534136 0.0
+19201.746912034 2.8534532 0.0
+19202.74691208149 2.8536105 0.0
+19203.74691212899 2.8535712 0.0
+19204.74691217649 2.8536499 0.0
+19205.74691222399 2.8536499 0.0
+19206.74691227148 2.8536499 0.0
+19207.74691231898 2.8537681 0.0
+19208.74691236648 2.8537681 0.0
+19209.74691241398 2.8537285 0.0
+19210.74691246147 2.8538074 0.0
+19211.74691250897 2.8537285 0.0
+19212.74691255647 2.8539255 0.0
+19213.74691260397 2.8538468 0.0
+19214.74691265146 2.8540041 0.0
+19215.74691269896 2.8539648 0.0
+19216.74691274646 2.8539648 0.0
+19217.74691279395 2.8540831 0.0
+19218.74691284145 2.8540435 0.0
+19219.74691288895 2.8540831 0.0
+19220.74691293645 2.8540435 0.0
+19221.74691298394 2.8541617 0.0
+19222.74691303144 2.8542404 0.0
+19223.74691307894 2.8542404 0.0
+19224.74691312644 2.8542798 0.0
+19225.74691317393 2.8543587 0.0
+19226.74691322143 2.8543587 0.0
+19227.74691326893 2.8543587 0.0
+19228.74691331643 2.854398 0.0
+19229.74691336392 2.8544767 0.0
+19230.74691341142 2.8543587 0.0
+19231.74691345892 2.8545947 0.0
+19232.74691350642 2.854516 0.0
+19233.74691355391 2.854516 0.0
+19234.74691360141 2.8546736 0.0
+19235.74691364891 2.8546736 0.0
+19236.74691369641 2.854713 0.0
+19237.7469137439 2.854713 0.0
+19238.7469137914 2.8547523 0.0
+19239.7469138389 2.8547916 0.0
+19240.7469138864 2.8549097 0.0
+19241.74691393389 2.854831 0.0
+19242.74691398139 2.8549097 0.0
+19243.74691402889 2.8549886 0.0
+19244.74691407639 2.854949 0.0
+19245.74691412388 2.8549886 0.0
+19246.74691417138 2.8549886 0.0
+19247.74691421888 2.8551459 0.0
+19248.74691426638 2.8551459 0.0
+19249.74691431387 2.8551459 0.0
+19250.74691436137 2.8551066 0.0
+19251.74691440887 2.8553035 0.0
+19252.74691445637 2.8552639 0.0
+19253.74691450386 2.8552246 0.0
+19254.74691455136 2.8553822 0.0
+19255.74691459886 2.8553035 0.0
+19256.74691464636 2.8553429 0.0
+19257.74691469385 2.8554609 0.0
+19258.74691474135 2.8553822 0.0
+19259.74691478885 2.8555002 0.0
+19260.74691483635 2.8555002 0.0
+19261.74691488384 2.8555396 0.0
+19262.74691493134 2.8555789 0.0
+19263.74691497884 2.8556972 0.0
+19264.74691502634 2.8556578 0.0
+19265.74691507383 2.8556972 0.0
+19266.74691512133 2.8556185 0.0
+19267.74691516883 2.8558152 0.0
+19268.74691521632 2.8557758 0.0
+19269.74691526382 2.8559334 0.0
+19270.74691531132 2.8557365 0.0
+19271.74691535882 2.8558545 0.0
+19272.74691540631 2.8558545 0.0
+19273.74691545381 2.8560121 0.0
+19274.74691550131 2.8559728 0.0
+19275.74691554881 2.8560121 0.0
+19276.7469155963 2.8558941 0.0
+19277.7469156438 2.8561301 0.0
+19278.7469156913 2.8560908 0.0
+19279.7469157388 2.8561301 0.0
+19280.74691578629 2.8561301 0.0
+19281.74691583379 2.856209 0.0
+19282.74691588129 2.8561301 0.0
+19283.74691592879 2.8563664 0.0
+19284.74691597628 2.856209 0.0
+19285.74691602378 2.8563271 0.0
+19286.74691607128 2.8562484 0.0
+19287.74691611878 2.8564844 0.0
+19288.74691616627 2.8564451 0.0
+19289.74691621377 2.8564057 0.0
+19290.74691626127 2.8564451 0.0
+19291.74691630877 2.8564844 0.0
+19292.74691635626 2.8566027 0.0
+19293.74691640376 2.856642 0.0
+19294.74691645126 2.856642 0.0
+19295.74691649876 2.856642 0.0
+19296.74691654625 2.856642 0.0
+19297.74691659375 2.8567207 0.0
+19298.74691664125 2.85676 0.0
+19299.74691668875 2.85676 0.0
+19300.74691673624 2.8567994 0.0
+19301.74691678374 2.8569176 0.0
+19302.74691683124 2.8569176 0.0
+19303.74691687874 2.8568783 0.0
+19304.74691692623 2.856957 0.0
+19305.74691697373 2.856957 0.0
+19306.74691702123 2.856957 0.0
+19307.74691706873 2.8570356 0.0
+19308.74691711622 2.857075 0.0
+19309.74691716372 2.8571932 0.0
+19310.74691721122 2.8572719 0.0
+19311.74691725872 2.8572326 0.0
+19312.74691730621 2.8572719 0.0
+19313.74691735371 2.8573112 0.0
+19314.74691740121 2.8572719 0.0
+19315.74691744871 2.8572326 0.0
+19316.7469174962 2.8573112 0.0
+19317.7469175437 2.8573899 0.0
+19318.7469175912 2.8574688 0.0
+19319.74691763869 2.8574293 0.0
+19320.74691768619 2.8573506 0.0
+19321.74691773369 2.8574293 0.0
+19322.74691778119 2.8574293 0.0
+19323.74691782868 2.8575869 0.0
+19324.74691787618 2.8576655 0.0
+19325.74691792368 2.8576262 0.0
+19326.74691797118 2.8575082 0.0
+19327.74691801867 2.8577445 0.0
+19328.74691806617 2.8577049 0.0
+19329.74691811367 2.8577049 0.0
+19330.74691816117 2.8577838 0.0
+19331.74691820866 2.8577445 0.0
+19332.74691825616 2.8578625 0.0
+19333.74691830366 2.8578625 0.0
+19334.74691835116 2.8579018 0.0
+19335.74691839865 2.8579018 0.0
+19336.74691844615 2.8578625 0.0
+19337.74691849365 2.8579412 0.0
+19338.74691854115 2.8579412 0.0
+19339.74691858864 2.8580987 0.0
+19340.74691863614 2.8580987 0.0
+19341.74691868364 2.8581774 0.0
+19342.74691873114 2.8581381 0.0
+19343.74691877863 2.8582168 0.0
+19344.74691882613 2.8582954 0.0
+19345.74691887363 2.8583744 0.0
+19346.74691892113 2.8583744 0.0
+19347.74691896862 2.8582954 0.0
+19348.74691901612 2.8584137 0.0
+19349.74691906362 2.8583744 0.0
+19350.74691911112 2.858453 0.0
+19351.74691915861 2.858453 0.0
+19352.74691920611 2.8585317 0.0
+19353.74691925361 2.8585317 0.0
+19354.74691930111 2.8584924 0.0
+19355.7469193486 2.8585317 0.0
+19356.7469193961 2.8585711 0.0
+19357.7469194436 2.8586104 0.0
+19358.7469194911 2.8587286 0.0
+19359.74691953859 2.858768 0.0
+19360.74691958609 2.858768 0.0
+19361.74691963359 2.8588073 0.0
+19362.74691968109 2.8587286 0.0
+19363.74691972858 2.8588467 0.0
+19364.74691977608 2.8588467 0.0
+19365.74691982358 2.858768 0.0
+19366.74691987108 2.8589647 0.0
+19367.74691991857 2.8589647 0.0
+19368.74691996607 2.8589647 0.0
+19369.74692001357 2.8590829 0.0
+19370.74692006106 2.8590829 0.0
+19371.74692010856 2.8590829 0.0
+19372.74692015606 2.8590436 0.0
+19373.74692020356 2.8591223 0.0
+19374.74692025105 2.8591223 0.0
+19375.74692029855 2.8592796 0.0
+19376.74692034605 2.8592403 0.0
+19377.74692039355 2.8593192 0.0
+19378.74692044104 2.8593192 0.0
+19379.74692048854 2.8593192 0.0
+19380.74692053604 2.8593979 0.0
+19381.74692058354 2.8593979 0.0
+19382.74692063103 2.8594372 0.0
+19383.74692067853 2.8594372 0.0
+19384.74692072603 2.8594766 0.0
+19385.74692077353 2.8595552 0.0
+19386.74692082102 2.8595159 0.0
+19387.74692086852 2.8595552 0.0
+19388.74692091602 2.8595552 0.0
+19389.74692096352 2.8595948 0.0
+19390.74692101101 2.8595552 0.0
+19391.74692105851 2.8597522 0.0
+19392.74692110601 2.8596735 0.0
+19393.74692115351 2.8597522 0.0
+19394.746921201 2.8597522 0.0
+19395.7469212485 2.8598309 0.0
+19396.746921296 2.8597915 0.0
+19397.7469213435 2.8597915 0.0
+19398.74692139099 2.8599491 0.0
+19399.74692143849 2.8599885 0.0
+19400.74692148599 2.8599491 0.0
+19401.74692153349 2.8599098 0.0
+19402.74692158098 2.8599885 0.0
+19403.74692162848 2.8600278 0.0
+19404.74692167598 2.8601065 0.0
+19405.74692172348 2.8601458 0.0
+19406.74692177097 2.8601065 0.0
+19407.74692181847 2.8602247 0.0
+19408.74692186597 2.8602641 0.0
+19409.74692191347 2.8601851 0.0
+19410.74692196096 2.8602641 0.0
+19411.74692200846 2.8602641 0.0
+19412.74692205596 2.8603034 0.0
+19413.74692210346 2.8603821 0.0
+19414.74692215095 2.8603821 0.0
+19415.74692219845 2.8605001 0.0
+19416.74692224595 2.8604608 0.0
+19417.74692229345 2.8604608 0.0
+19418.74692234094 2.8605001 0.0
+19419.74692238844 2.8604608 0.0
+19420.74692243594 2.860579 0.0
+19421.74692248343 2.8605397 0.0
+19422.74692253093 2.8606184 0.0
+19423.74692257843 2.8606577 0.0
+19424.74692262593 2.860697 0.0
+19425.74692267342 2.860697 0.0
+19426.74692272092 2.8607364 0.0
+19427.74692276842 2.860815 0.0
+19428.74692281592 2.860815 0.0
+19429.74692286341 2.8607757 0.0
+19430.74692291091 2.8608546 0.0
+19431.74692295841 2.8609333 0.0
+19432.74692300591 2.8608546 0.0
+19433.7469230534 2.860894 0.0
+19434.7469231009 2.8609726 0.0
+19435.7469231484 2.86113 0.0
+19436.7469231959 2.86113 0.0
+19437.74692324339 2.8610513 0.0
+19438.74692329089 2.86113 0.0
+19439.74692333839 2.86113 0.0
+19440.74692338589 2.8611696 0.0
+19441.74692343338 2.8612483 0.0
+19442.74692348088 2.8611696 0.0
+19443.74692352838 2.8612483 0.0
+19444.74692357588 2.8611696 0.0
+19445.74692362337 2.8613663 0.0
+19446.74692367087 2.8612483 0.0
+19447.74692371837 2.8614056 0.0
+19448.74692376587 2.8614056 0.0
+19449.74692381336 2.8614452 0.0
+19450.74692386086 2.8614056 0.0
+19451.74692390836 2.8614452 0.0
+19452.74692395586 2.8615632 0.0
+19453.74692400335 2.8616812 0.0
+19454.74692405085 2.8616025 0.0
+19455.74692409835 2.8616025 0.0
+19456.74692414585 2.8616419 0.0
+19457.74692419334 2.8616025 0.0
+19458.74692424084 2.8616419 0.0
+19459.74692428834 2.8617206 0.0
+19460.74692433584 2.8617206 0.0
+19461.74692438333 2.8617601 0.0
+19462.74692443083 2.8618388 0.0
+19463.74692447833 2.8618388 0.0
+19464.74692452583 2.8618388 0.0
+19465.74692457332 2.8618782 0.0
+19466.74692462082 2.8619175 0.0
+19467.74692466832 2.8619175 0.0
+19468.74692471582 2.8619568 0.0
+19469.74692476331 2.8619568 0.0
+19470.74692481081 2.8621538 0.0
+19471.74692485831 2.8619962 0.0
+19472.7469249058 2.8621144 0.0
+19473.7469249533 2.8620355 0.0
+19474.7469250008 2.8621144 0.0
+19475.7469250483 2.8620751 0.0
+19476.74692509579 2.8622324 0.0
+19477.74692514329 2.8621931 0.0
+19478.74692519079 2.8623505 0.0
+19479.74692523829 2.8623111 0.0
+19480.74692528578 2.8623111 0.0
+19481.74692533328 2.86239 0.0
+19482.74692538078 2.86239 0.0
+19483.74692542828 2.8624294 0.0
+19484.74692547577 2.86239 0.0
+19485.74692552327 2.8624294 0.0
+19486.74692557077 2.86239 0.0
+19487.74692561827 2.8625474 0.0
+19488.74692566576 2.8625867 0.0
+19489.74692571326 2.8626261 0.0
+19490.74692576076 2.8626261 0.0
+19491.74692580826 2.8626261 0.0
+19492.74692585575 2.8626261 0.0
+19493.74692590325 2.862705 0.0
+19494.74692595075 2.8627443 0.0
+19495.74692599825 2.8627443 0.0
+19496.74692604574 2.862823 0.0
+19497.74692609324 2.8629017 0.0
+19498.74692614074 2.8627837 0.0
+19499.74692618824 2.8628623 0.0
+19500.74692623573 2.862823 0.0
+19501.74692628323 2.8629017 0.0
+19502.74692633073 2.862941 0.0
+19503.74692637823 2.8629804 0.0
+19504.74692642572 2.8629804 0.0
+19505.74692647322 2.8630986 0.0
+19506.74692652072 2.8630593 0.0
+19507.74692656822 2.8630593 0.0
+19508.74692661571 2.8630986 0.0
+19509.74692666321 2.8632166 0.0
+19510.74692671071 2.8630986 0.0
+19511.74692675821 2.8632166 0.0
+19512.7469268057 2.863138 0.0
+19513.7469268532 2.8631773 0.0
+19514.7469269007 2.8632166 0.0
+19515.7469269482 2.863256 0.0
+19516.74692699569 2.8632956 0.0
+19517.74692704319 2.8633742 0.0
+19518.74692709069 2.8632956 0.0
+19519.74692713819 2.8633349 0.0
+19520.74692718568 2.8634136 0.0
+19521.74692723318 2.8633742 0.0
+19522.74692728068 2.8634923 0.0
+19523.74692732817 2.8634923 0.0
+19524.74692737567 2.8634923 0.0
+19525.74692742317 2.8636498 0.0
+19526.74692747067 2.8635709 0.0
+19527.74692751816 2.8636498 0.0
+19528.74692756566 2.8636105 0.0
+19529.74692761316 2.8636892 0.0
+19530.74692766066 2.8636892 0.0
+19531.74692770815 2.8637285 0.0
+19532.74692775565 2.8638465 0.0
+19533.74692780315 2.8638072 0.0
+19534.74692785065 2.8638072 0.0
+19535.74692789814 2.8639255 0.0
+19536.74692794564 2.8639255 0.0
+19537.74692799314 2.8638465 0.0
+19538.74692804064 2.8639255 0.0
+19539.74692808813 2.8640041 0.0
+19540.74692813563 2.8639648 0.0
+19541.74692818313 2.8640435 0.0
+19542.74692823063 2.8640041 0.0
+19543.74692827812 2.8640041 0.0
+19544.74692832562 2.8640435 0.0
+19545.74692837312 2.8641615 0.0
+19546.74692842062 2.8641615 0.0
+19547.74692846811 2.8642404 0.0
+19548.74692851561 2.8642797 0.0
+19549.74692856311 2.8642797 0.0
+19550.74692861061 2.8642797 0.0
+19551.7469286581 2.8642404 0.0
+19552.7469287056 2.8643584 0.0
+19553.7469287531 2.8643978 0.0
+19554.7469288006 2.8643584 0.0
+19555.74692884809 2.8643978 0.0
+19556.74692889559 2.8643978 0.0
+19557.74692894309 2.8645554 0.0
+19558.74692899059 2.8644764 0.0
+19559.74692903808 2.8645158 0.0
+19560.74692908558 2.8645947 0.0
+19561.74692913308 2.8645947 0.0
+19562.74692918058 2.8645554 0.0
+19563.74692922807 2.8647521 0.0
+19564.74692927557 2.8646734 0.0
+19565.74692932307 2.8646734 0.0
+19566.74692937057 2.8647127 0.0
+19567.74692941806 2.864634 0.0
+19568.74692946556 2.8646734 0.0
+19569.74692951306 2.8648703 0.0
+19570.74692956056 2.864949 0.0
+19571.74692960805 2.864949 0.0
+19572.74692965555 2.8649096 0.0
+19573.74692970305 2.8648703 0.0
+19574.74692975055 2.864949 0.0
+19575.74692979804 2.8649883 0.0
+19576.74692984554 2.8649096 0.0
+19577.74692989304 2.8650277 0.0
+19578.74692994053 2.8650277 0.0
+19579.74692998803 2.865067 0.0
+19580.74693003553 2.8650277 0.0
+19581.74693008303 2.865067 0.0
+19582.74693013052 2.8651459 0.0
+19583.74693017802 2.8651853 0.0
+19584.74693022552 2.8652246 0.0
+19585.74693027302 2.8652639 0.0
+19586.74693032051 2.8653426 0.0
+19587.74693036801 2.8653033 0.0
+19588.74693041551 2.8652246 0.0
+19589.74693046301 2.8652639 0.0
+19590.7469305105 2.865382 0.0
+19591.746930558 2.8654213 0.0
+19592.7469306055 2.8653426 0.0
+19593.746930653 2.8654609 0.0
+19594.74693070049 2.8655002 0.0
+19595.74693074799 2.8655396 0.0
+19596.74693079549 2.8655396 0.0
+19597.74693084299 2.8656182 0.0
+19598.74693089048 2.8655789 0.0
+19599.74693093798 2.8656182 0.0
+19600.74693098548 2.8656182 0.0
+19601.74693103298 2.8657362 0.0
+19602.74693108047 2.8656969 0.0
+19603.74693112797 2.8656969 0.0
+19604.74693117547 2.8657362 0.0
+19605.74693122297 2.8658545 0.0
+19606.74693127046 2.8658545 0.0
+19607.74693131796 2.8657362 0.0
+19608.74693136546 2.8659332 0.0
+19609.74693141296 2.8657758 0.0
+19610.74693146045 2.8658938 0.0
+19611.74693150795 2.8658938 0.0
+19612.74693155545 2.8659725 0.0
+19613.74693160295 2.8660908 0.0
+19614.74693165044 2.8660119 0.0
+19615.74693169794 2.8661301 0.0
+19616.74693174544 2.8660119 0.0
+19617.74693179294 2.8660119 0.0
+19618.74693184043 2.8660908 0.0
+19619.74693188793 2.8661301 0.0
+19620.74693193543 2.8662481 0.0
+19621.74693198293 2.8662481 0.0
+19622.74693203042 2.8662875 0.0
+19623.74693207792 2.8662481 0.0
+19624.74693212542 2.8662088 0.0
+19625.74693217292 2.8662875 0.0
+19626.74693222041 2.8662875 0.0
+19627.74693226791 2.8663661 0.0
+19628.74693231541 2.8663268 0.0
+19629.7469323629 2.8664057 0.0
+19630.7469324104 2.8664057 0.0
+19631.7469324579 2.8664844 0.0
+19632.7469325054 2.8664451 0.0
+19633.74693255289 2.8664844 0.0
+19634.74693260039 2.8666024 0.0
+19635.74693264789 2.8666418 0.0
+19636.74693269539 2.8665631 0.0
+19637.74693274288 2.8666024 0.0
+19638.74693279038 2.8666024 0.0
+19639.74693283788 2.8666813 0.0
+19640.74693288538 2.8667994 0.0
+19641.74693293287 2.86676 0.0
+19642.74693298037 2.8668387 0.0
+19643.74693302787 2.8667994 0.0
+19644.74693307537 2.8668387 0.0
+19645.74693312286 2.8668387 0.0
+19646.74693317036 2.8668387 0.0
+19647.74693321786 2.8668387 0.0
+19648.74693326536 2.8669567 0.0
+19649.74693331285 2.8669567 0.0
+19650.74693336035 2.8669963 0.0
+19651.74693340785 2.8669567 0.0
+19652.74693345535 2.867075 0.0
+19653.74693350284 2.8669963 0.0
+19654.74693355034 2.8671143 0.0
+19655.74693359784 2.8671143 0.0
+19656.74693364534 2.8671143 0.0
+19657.74693369283 2.867075 0.0
+19658.74693374033 2.867193 0.0
+19659.74693378783 2.8671536 0.0
+19660.74693383533 2.867193 0.0
+19661.74693388282 2.8673112 0.0
+19662.74693393032 2.8673112 0.0
+19663.74693397782 2.8673112 0.0
+19664.74693402532 2.8673506 0.0
+19665.74693407281 2.8672717 0.0
+19666.74693412031 2.8672717 0.0
+19667.74693416781 2.8673506 0.0
+19668.74693421531 2.8673899 0.0
+19669.7469342628 2.8674686 0.0
+19670.7469343103 2.8675079 0.0
+19671.7469343578 2.8674686 0.0
+19672.7469344053 2.8675866 0.0
+19673.74693445279 2.8675866 0.0
+19674.74693450029 2.8675473 0.0
+19675.74693454779 2.8676262 0.0
+19676.74693459529 2.8675866 0.0
+19677.74693464278 2.8677049 0.0
+19678.74693469028 2.8676655 0.0
+19679.74693473778 2.8676262 0.0
+19680.74693478527 2.8677442 0.0
+19681.74693483277 2.8677442 0.0
+19682.74693488027 2.8677442 0.0
+19683.74693492777 2.8678622 0.0
+19684.74693497526 2.8678229 0.0
+19685.74693502276 2.8678622 0.0
+19686.74693507026 2.8678622 0.0
+19687.74693511776 2.8678622 0.0
+19688.74693516525 2.8678622 0.0
+19689.74693521275 2.8679411 0.0
+19690.74693526025 2.8679411 0.0
+19691.74693530775 2.8680198 0.0
+19692.74693535524 2.8680198 0.0
+19693.74693540274 2.8680985 0.0
+19694.74693545024 2.8680985 0.0
+19695.74693549774 2.8680592 0.0
+19696.74693554523 2.8682561 0.0
+19697.74693559273 2.8681772 0.0
+19698.74693564023 2.8681772 0.0
+19699.74693568773 2.8682561 0.0
+19700.74693573522 2.8682954 0.0
+19701.74693578272 2.8682954 0.0
+19702.74693583022 2.8682165 0.0
+19703.74693587772 2.8682954 0.0
+19704.74693592521 2.8682954 0.0
+19705.74693597271 2.8684528 0.0
+19706.74693602021 2.8683741 0.0
+19707.74693606771 2.8684134 0.0
+19708.7469361152 2.8684921 0.0
+19709.7469361627 2.8684134 0.0
+19710.7469362102 2.8684921 0.0
+19711.7469362577 2.8684921 0.0
+19712.74693630519 2.8685317 0.0
+19713.74693635269 2.8685317 0.0
+19714.74693640019 2.8686497 0.0
+19715.74693644769 2.8685317 0.0
+19716.74693649518 2.868571 0.0
+19717.74693654268 2.8686497 0.0
+19718.74693659018 2.8687677 0.0
+19719.74693663768 2.8686891 0.0
+19720.74693668517 2.8688071 0.0
+19721.74693673267 2.8686891 0.0
+19722.74693678017 2.8688071 0.0
+19723.74693682767 2.8687284 0.0
+19724.74693687516 2.8687677 0.0
+19725.74693692266 2.8688467 0.0
+19726.74693697016 2.8688467 0.0
+19727.74693701766 2.8689253 0.0
+19728.74693706515 2.8689647 0.0
+19729.74693711265 2.8689253 0.0
+19730.74693716015 2.8689253 0.0
+19731.74693720764 2.869004 0.0
+19732.74693725514 2.869004 0.0
+19733.74693730264 2.869122 0.0
+19734.74693735014 2.8690434 0.0
+19735.74693739763 2.869122 0.0
+19736.74693744513 2.8690434 0.0
+19737.74693749263 2.8692009 0.0
+19738.74693754013 2.8691616 0.0
+19739.74693758762 2.8691616 0.0
+19740.74693763512 2.8692009 0.0
+19741.74693768262 2.8692796 0.0
+19742.74693773012 2.8692403 0.0
+19743.74693777761 2.8692403 0.0
+19744.74693782511 2.8692796 0.0
+19745.74693787261 2.8693583 0.0
+19746.74693792011 2.8693976 0.0
+19747.7469379676 2.8694766 0.0
+19748.7469380151 2.8695552 0.0
+19749.7469380626 2.869437 0.0
+19750.7469381101 2.8695159 0.0
+19751.74693815759 2.869437 0.0
+19752.74693820509 2.8695946 0.0
+19753.74693825259 2.8695946 0.0
+19754.74693830009 2.8695159 0.0
+19755.74693834758 2.8696733 0.0
+19756.74693839508 2.8695946 0.0
+19757.74693844258 2.8695946 0.0
+19758.74693849008 2.8696339 0.0
+19759.74693853757 2.8696339 0.0
+19760.74693858507 2.8698308 0.0
+19761.74693863257 2.8697519 0.0
+19762.74693868007 2.8697915 0.0
+19763.74693872756 2.8697915 0.0
+19764.74693877506 2.8697915 0.0
+19765.74693882256 2.8699095 0.0
+19766.74693887006 2.8698308 0.0
+19767.74693891755 2.8700669 0.0
+19768.74693896505 2.8698308 0.0
+19769.74693901255 2.8699095 0.0
+19770.74693906005 2.8700669 0.0
+19771.74693910754 2.8699489 0.0
+19772.74693915504 2.8701458 0.0
+19773.74693920254 2.8701458 0.0
+19774.74693925004 2.8700669 0.0
+19775.74693929753 2.8700669 0.0
+19776.74693934503 2.8701851 0.0
+19777.74693939253 2.8701851 0.0
+19778.74693944003 2.8701458 0.0
+19779.74693948752 2.8702245 0.0
+19780.74693953502 2.8701851 0.0
+19781.74693958252 2.8703032 0.0
+19782.74693963001 2.8702638 0.0
+19783.74693967751 2.8701851 0.0
+19784.74693972501 2.8703032 0.0
+19785.74693977251 2.8703032 0.0
+19786.74693982 2.8703425 0.0
+19787.7469398675 2.8704214 0.0
+19788.746939915 2.8704214 0.0
+19789.7469399625 2.8704214 0.0
+19790.74694000999 2.8705001 0.0
+19791.74694005749 2.8705394 0.0
+19792.74694010499 2.8704214 0.0
+19793.74694015249 2.8705788 0.0
+19794.74694019998 2.8704607 0.0
+19795.74694024748 2.8706574 0.0
+19796.74694029498 2.8705788 0.0
+19797.74694034248 2.8706181 0.0
+19798.74694038997 2.8706181 0.0
+19799.74694043747 2.870697 0.0
+19800.74694048497 2.8706574 0.0
+19801.74694053247 2.8706574 0.0
+19802.74694057996 2.870697 0.0
+19803.74694062746 2.8708544 0.0
+19804.74694067496 2.8708544 0.0
+19805.74694072246 2.8709331 0.0
+19806.74694076995 2.8709331 0.0
+19807.74694081745 2.8708937 0.0
+19808.74694086495 2.8709331 0.0
+19809.74694091245 2.8708937 0.0
+19810.74694095994 2.8709724 0.0
+19811.74694100744 2.8708937 0.0
+19812.74694105494 2.871012 0.0
+19813.74694110244 2.8710907 0.0
+19814.74694114993 2.8710513 0.0
+19815.74694119743 2.871012 0.0
+19816.74694124493 2.871012 0.0
+19817.74694129243 2.87113 0.0
+19818.74694133992 2.87113 0.0
+19819.74694138742 2.8711693 0.0
+19820.74694143492 2.87113 0.0
+19821.74694148242 2.8712087 0.0
+19822.74694152991 2.8712087 0.0
+19823.74694157741 2.871248 0.0
+19824.74694162491 2.871248 0.0
+19825.74694167241 2.8712873 0.0
+19826.7469417199 2.8713269 0.0
+19827.7469417674 2.8713663 0.0
+19828.7469418149 2.8714449 0.0
+19829.7469418624 2.8714843 0.0
+19830.74694190989 2.8715236 0.0
+19831.74694195739 2.8714449 0.0
+19832.74694200489 2.8714843 0.0
+19833.74694205238 2.8714843 0.0
+19834.74694209988 2.8715236 0.0
+19835.74694214738 2.8715236 0.0
+19836.74694219488 2.8715236 0.0
+19837.74694224237 2.8716023 0.0
+19838.74694228987 2.871563 0.0
+19839.74694233737 2.8717206 0.0
+19840.74694238487 2.8716812 0.0
+19841.74694243236 2.8716419 0.0
+19842.74694247986 2.8717206 0.0
+19843.74694252736 2.8717206 0.0
+19844.74694257486 2.8717206 0.0
+19845.74694262235 2.8717599 0.0
+19846.74694266985 2.8717992 0.0
+19847.74694271735 2.8718779 0.0
+19848.74694276485 2.8718779 0.0
+19849.74694281234 2.8717992 0.0
+19850.74694285984 2.8718386 0.0
+19851.74694290734 2.8718779 0.0
+19852.74694295484 2.8718386 0.0
+19853.74694300233 2.8719962 0.0
+19854.74694304983 2.8721142 0.0
+19855.74694309733 2.8719962 0.0
+19856.74694314483 2.8720748 0.0
+19857.74694319232 2.8721142 0.0
+19858.74694323982 2.8721535 0.0
+19859.74694328732 2.8721535 0.0
+19860.74694333482 2.8720748 0.0
+19861.74694338231 2.8721929 0.0
+19862.74694342981 2.8721929 0.0
+19863.74694347731 2.8720748 0.0
+19864.74694352481 2.8722718 0.0
+19865.7469435723 2.8721535 0.0
+19866.7469436198 2.8723111 0.0
+19867.7469436673 2.8723111 0.0
+19868.7469437148 2.8722324 0.0
+19869.74694376229 2.8721535 0.0
+19870.74694380979 2.8723505 0.0
+19871.74694385729 2.8724291 0.0
+19872.74694390479 2.8723898 0.0
+19873.74694395228 2.8723505 0.0
+19874.74694399978 2.8723898 0.0
+19875.74694404728 2.8723898 0.0
+19876.74694409478 2.8726261 0.0
+19877.74694414227 2.8725867 0.0
+19878.74694418977 2.8725867 0.0
+19879.74694423727 2.8725474 0.0
+19880.74694428477 2.8725867 0.0
+19881.74694433226 2.8726654 0.0
+19882.74694437976 2.8725474 0.0
+19883.74694442726 2.8727441 0.0
+19884.74694447475 2.8725867 0.0
+19885.74694452225 2.8727441 0.0
+19886.74694456975 2.8727441 0.0
+19887.74694461725 2.8727441 0.0
+19888.74694466474 2.8729017 0.0
+19889.74694471224 2.8727834 0.0
+19890.74694475974 2.8727834 0.0
+19891.74694480724 2.8728623 0.0
+19892.74694485473 2.8728228 0.0
+19893.74694490223 2.8729804 0.0
+19894.74694494973 2.8729017 0.0
+19895.74694499723 2.872941 0.0
+19896.74694504472 2.873059 0.0
+19897.74694509222 2.8729804 0.0
+19898.74694513972 2.8730197 0.0
+19899.74694518722 2.873059 0.0
+19900.74694523471 2.8730984 0.0
+19901.74694528221 2.8730197 0.0
+19902.74694532971 2.873059 0.0
+19903.74694537721 2.8732166 0.0
+19904.7469454247 2.8731377 0.0
+19905.7469454722 2.8731377 0.0
+19906.7469455197 2.873256 0.0
+19907.7469455672 2.873256 0.0
+19908.74694561469 2.8732953 0.0
+19909.74694566219 2.873256 0.0
+19910.74694570969 2.8733346 0.0
+19911.74694575719 2.873374 0.0
+19912.74694580468 2.8734133 0.0
+19913.74694585218 2.8734133 0.0
+19914.74694589968 2.8734527 0.0
+19915.74694594718 2.873374 0.0
+19916.74694599467 2.8734922 0.0
+19917.74694604217 2.8734527 0.0
+19918.74694608967 2.8734922 0.0
+19919.74694613717 2.8735316 0.0
+19920.74694618466 2.8735316 0.0
+19921.74694623216 2.8734922 0.0
+19922.74694627966 2.8734922 0.0
+19923.74694632716 2.8735709 0.0
+19924.74694637465 2.8736496 0.0
+19925.74694642215 2.8735709 0.0
+19926.74694646965 2.8736103 0.0
+19927.74694651715 2.8736889 0.0
+19928.74694656464 2.8737283 0.0
+19929.74694661214 2.8736496 0.0
+19930.74694665964 2.8737283 0.0
+19931.74694670714 2.8736496 0.0
+19932.74694675463 2.8738072 0.0
+19933.74694680213 2.8738465 0.0
+19934.74694684963 2.8738465 0.0
+19935.74694689712 2.8737676 0.0
+19936.74694694462 2.8738859 0.0
+19937.74694699212 2.8738859 0.0
+19938.74694703962 2.8738465 0.0
+19939.74694708711 2.8739645 0.0
+19940.74694713461 2.8739252 0.0
+19941.79894718458 3.1289611 7354.3921
+19941.80094718467 3.1288822 7355.3765
+19942.80094723217 3.1173077 7355.7695
+19943.80094727967 3.117465 7356.1636
+19944.80094732717 3.119276 7355.7695
+19945.80094737466 3.121402 7356.1636
+19946.80094742216 3.1236854 7356.3604
+19947.80094746966 3.1258903 7355.3765
+19948.80094751716 3.1281736 7355.9663
+19949.80094756465 3.1303389 7355.9663
+19950.80094761215 3.1326618 7356.3604
+19951.80094765965 3.1347482 7355.3765
+19952.80094770715 3.1371105 7356.3604
+19953.80094775464 3.1391184 7356.3604
+19954.80094780214 3.1411655 7356.1636
+19955.80094784964 3.1432915 7355.1797
+19956.80094789714 3.1452994 7355.9663
+19957.80094794463 3.1473072 7356.3604
+19958.80094799213 3.1494331 7356.3604
+19959.80094803963 3.1512048 7356.5571
+19960.80094808713 3.1531339 7356.7539
+19961.80094813462 3.1550629 7355.9663
+19962.80094818212 3.1569133 7355.9663
+19963.80094822962 3.1587636 7355.9663
+19964.80094827712 3.1605353 7355.9663
+19965.80094832461 3.1623464 7356.5571
+19966.80094837211 3.1641181 7356.1636
+19967.80094841961 3.1658502 7356.3604
+19968.80094846711 3.1674249 7356.3604
+19969.8009485146 3.1690392 7355.7695
+19970.8009485621 3.1706533 7356.3604
+19971.8009486096 3.1723461 7355.7695
+19972.8009486571 3.1740391 7355.9663
+19973.80094870459 3.1756139 7355.7695
+19974.80094875209 3.1773462 7356.5571
+19975.80094879959 3.178921 7355.9663
+19976.80094884709 3.1805744 7356.5571
+19977.80094889458 3.1820705 7355.9663
+19978.80094894208 3.1837239 7356.3604
+19979.80094898958 3.18522 7356.7539
+19980.80094903708 3.1867161 7355.9663
+19981.80094908457 3.1882515 7356.3604
+19982.80094913207 3.1897476 7356.3604
+19983.80094917957 3.1912043 7355.7695
+19984.80094922706 3.1926608 7355.7695
+19985.80094927456 3.1941175 7355.9663
+19986.80094932206 3.1956136 7355.9663
+19987.80094936956 3.1972671 7356.9502
+19988.80094941705 3.1986058 7355.9663
+19989.80094946455 3.2001016 7356.3604
+19990.80094951205 3.201519 7356.3604
+19991.80094955955 3.2030544 7355.3765
+19992.80094960704 3.2045505 7356.5571
+19993.80094965454 3.2059677 7356.1636
+19994.80094970204 3.2072277 7356.5571
+19995.80094974954 3.2086449 7356.1636
+19996.80094979703 3.2100623 7356.5571
+19997.80094984453 3.2114401 7356.7539
+19998.80094989203 3.2127392 7355.9663
+19999.80094993953 3.2142746 7356.1636
+20000.80094998702 3.2156527 7356.7539
+20001.80095003452 3.2170305 7355.7695
+20002.80095008202 3.2182117 7356.5571
+20003.80095012952 3.2195897 7355.7695
+20004.80095017701 3.2208495 7356.7539
+20005.80095022451 3.222188 7355.9663
+20006.80095027201 3.2234871 7356.7539
+20007.80095031951 3.2247076 7356.3604
+20008.800950367 3.2260857 7355.9663
+20009.8009504145 3.2272668 7355.7695
+20010.800950462 3.2285266 7356.1636
+20011.8009505095 3.2298257 7357.1475
+20012.80095055699 3.2310855 7355.7695
+20013.80095060449 3.2323453 7355.9663
+20014.80095065199 3.2336051 7356.3604
+20015.80095069949 3.2348256 7356.1636
+20016.80095074698 3.2361641 7356.5571
+20017.80095079448 3.2373452 7355.9663
+20018.80095084198 3.238487 7355.7695
+20019.80095088948 3.2396288 7356.1636
+20020.80095093697 3.2408493 7356.5571
+20021.80095098447 3.2421091 7356.5571
+20022.80095103197 3.2432902 7356.7539
+20023.80095107947 3.2444317 7355.9663
+20024.80095112696 3.2456522 7355.5728
+20025.80095117446 3.2468333 7356.1636
+20026.80095122196 3.2480931 7355.7695
+20027.80095126946 3.2492349 7356.5571
+20028.80095131695 3.2503767 7355.9663
+20029.80095136445 3.2515969 7356.3604
+20030.80095141195 3.2527781 7356.7539
+20031.80095145945 3.2538805 7356.1636
+20032.80095150694 3.2549827 7355.3765
+20033.80095155444 3.2561245 7356.5571
+20034.80095160194 3.2573056 7356.5571
+20035.80095164943 3.2583292 7355.9663
+20036.80095169693 3.2595103 7355.3765
+20037.80095174443 3.2604945 7356.1636
+20038.80095179193 3.2615576 7356.5571
+20039.80095183942 3.2626204 7355.3765
+20040.80095188692 3.263526 7356.1636
+20041.80095193442 3.2646284 7356.1636
+20042.80095198192 3.2656913 7356.1636
+20043.80095202941 3.266715 7355.9663
+20044.80095207691 3.2676992 7355.7695
+20045.80095212441 3.2686441 7355.5728
+20046.80095217191 3.2696676 7356.1636
+20047.8009522194 3.2706125 7356.7539
+20048.8009522669 3.2716756 7355.9663
+20049.8009523144 3.2726991 7354.9824
+20050.8009523619 3.273644 7356.5571
+20051.80095240939 3.2745888 7355.7695
+20052.80095245689 3.2756519 7355.5728
+20053.80095250439 3.2765968 7356.7539
+20054.80095255189 3.277384 7356.7539
+20055.80095259938 3.2782109 7356.1636
+20056.80095264688 3.2791557 7355.9663
+20057.80095269438 3.2801399 7356.3604
+20058.80095274188 3.2810848 7355.5728
+20059.80095278937 3.282069 7356.1636
+20060.80095283687 3.2832108 7355.9663
+20061.80095288437 3.2842343 7356.7539
+20062.80095293187 3.2850611 7356.1636
+20063.80095297936 3.2860453 7356.3604
+20064.80095302686 3.2868721 7355.9663
+20065.80095307436 3.287817 7356.5571
+20066.80095312186 3.2885256 7356.1636
+20067.80095316935 3.2894704 7355.5728
+20068.80095321685 3.2901793 7356.9502
+20069.80095326435 3.2911634 7356.5571
+20070.80095331185 3.2919903 7356.1636
+20071.80095335934 3.2929351 7356.5571
+20072.80095340684 3.2936831 7356.1636
+20073.80095345434 3.2947066 7355.9663
+20074.80095350184 3.2955334 7356.7539
+20075.80095354933 3.296242 7355.3765
+20076.80095359683 3.2970688 7356.1636
+20077.80095364433 3.2978957 7355.9663
+20078.80095369183 3.2987618 7356.3604
+20079.80095373932 3.2997067 7356.3604
+20080.80095378682 3.3007302 7355.9663
+20081.80095383432 3.3017538 7356.1636
+20082.80095388182 3.3026199 7356.5571
+20083.80095392931 3.3032498 7355.9663
+20084.80095397681 3.3040767 7356.3604
+20085.80095402431 3.3049033 7356.7539
+20086.8009540718 3.3057694 7356.7539
+20087.8009541193 3.3067536 7355.7695
+20088.8009541668 3.3076591 7356.1636
+20089.8009542143 3.3086829 7355.7695
+20090.80095426179 3.3097458 7356.3604
+20091.80095430929 3.3106513 7356.7539
+20092.80095435679 3.3115175 7355.3765
+20093.80095440429 3.3125017 7355.5728
+20094.80095445178 3.3133285 7355.7695
+20095.80095449928 3.3141947 7356.1636
+20096.80095454678 3.3150606 7355.9663
+20097.80095459428 3.3157694 7356.5571
+20098.80095464177 3.3163204 7356.5571
+20099.80095468927 3.316911 7355.7695
+20100.80095473677 3.3175805 7356.3604
+20101.80095478427 3.3181314 7356.7539
+20102.80095483176 3.3187613 7356.1636
+20103.80095487926 3.3193913 7356.5571
+20104.80095492676 3.3200607 7356.3604
+20105.80095497426 3.3208086 7355.7695
+20106.80095502175 3.3215172 7356.7539
+20107.80095506925 3.3221471 7356.5571
+20108.80095511675 3.3228953 7356.3604
+20109.80095516425 3.3232889 7355.7695
+20110.80095521174 3.3237615 7356.3604
+20111.80095525924 3.3245094 7356.5571
+20112.80095530674 3.3252573 7355.5728
+20113.80095535424 3.3259268 7355.5728
+20114.80095540173 3.3264778 7355.5728
+20115.80095544923 3.3268716 7355.9663
+20116.80095549673 3.3277378 7355.9663
+20117.80095554423 3.3284857 7355.1797
+20118.80095559172 3.3291156 7356.3604
+20119.80095563922 3.3297849 7356.3604
+20120.80095568672 3.3301785 7357.1475
+20121.80095573422 3.3306117 7356.9502
+20122.80095578171 3.3312416 7356.1636
+20123.80095582921 3.3319502 7356.5571
+20124.80095587671 3.332895 7356.3604
+20125.80095592421 3.3337612 7356.3604
+20126.8009559717 3.3346274 7355.5728
+20127.8009560192 3.3355329 7356.5571
+20128.8009560667 3.3362415 7355.9663
+20129.8009561142 3.337029 7356.3604
+20130.80095616169 3.3376589 7356.1636
+20131.80095620919 3.3382101 7356.9502
+20132.80095625669 3.3388004 7355.7695
+20133.80095630419 3.339273 7355.1797
+20134.80095635168 3.3399816 7356.1636
+20135.80095639918 3.3406904 7356.3604
+20136.80095644668 3.3412414 7356.7539
+20137.80095649417 3.3416746 7356.3604
+20138.80095654167 3.3423045 7355.9663
+20139.80095658917 3.3428557 7356.7539
+20140.80095663667 3.3435249 7355.7695
+20141.80095668416 3.3446271 7355.7695
+20142.80095673166 3.345572 7356.7539
+20143.80095677916 3.3467925 7355.9663
+20144.80095682666 3.3480129 7355.9663
+20145.80095687415 3.3488004 7355.7695
+20146.80095692165 3.3491154 7355.5728
+20147.80095696915 3.349509 7356.3604
+20148.80095701665 3.3500602 7355.3765
+20149.80095706414 3.3502176 7355.1797
+20150.80095711164 3.3507295 7355.5728
+20151.80095715914 3.35132 7355.7695
+20152.80095720664 3.3518713 7356.1636
+20153.80095725413 3.3526192 7356.3604
+20154.80095730163 3.3531311 7357.3442
+20155.80095734913 3.3536034 7356.5571
+20156.80095739663 3.3535247 7355.7695
+20157.80095744412 3.3538396 7356.5571
+20158.80095749162 3.3542335 7356.1636
+20159.80095753912 3.3546271 7356.5571
+20160.80095758662 3.3548238 7355.9663
+20161.80095763411 3.3552177 7356.3604
+20162.80095768161 3.3558476 7355.9663
+20163.80095772911 3.3565955 7355.9663
+20164.80095777661 3.3571467 7355.3765
+20165.8009578241 3.3576193 7355.9663
+20166.8009578716 3.3580523 7356.9502
+20167.8009579191 3.3584852 7355.9663
+20168.8009579666 3.3592334 7356.3604
+20169.80095801409 3.3599026 7355.9663
+20170.80095806159 3.3604932 7356.1636
+20171.80095810909 3.3611624 7356.3604
+20172.80095815659 3.3619103 7355.5728
+20173.80095820408 3.3626585 7355.7695
+20174.80095825158 3.3632097 7356.3604
+20175.80095829908 3.3636427 7355.3765
+20176.80095834658 3.3638396 7355.7695
+20177.80095839407 3.3640363 7356.9502
+20178.80095844157 3.3644695 7356.7539
+20179.80095848907 3.3650208 7357.3442
+20180.80095853657 3.3658867 7356.5571
+20181.80095858406 3.3667135 7356.1636
+20182.80095863156 3.3670285 7355.3765
+20183.80095867906 3.3675797 7356.9502
+20184.80095872656 3.368052 7356.7539
+20185.80095877405 3.3685639 7356.3604
+20186.80095882155 3.3688395 7355.7695
+20187.80095886905 3.3691545 7356.1636
+20188.80095891654 3.369745 7355.9663
+20189.80095896404 3.3703356 7356.3604
+20190.80095901154 3.3710835 7355.9663
+20191.80095905904 3.3721466 7355.9663
+20192.80095910653 3.3735638 7355.9663
+20193.80095915403 3.3750992 7355.9663
+20194.80095920153 3.376359 7355.5728
+20195.80095924903 3.3771858 7356.5571
+20196.80095929652 3.3776584 7355.3765
+20197.80095934402 3.3781307 7355.7695
+20198.80095939152 3.3789968 7356.7539
+20199.80095943902 3.3797054 7356.1636
+20200.80095948651 3.380296 7355.3765
+20201.80095953401 3.3807685 7356.1636
+20202.80095958151 3.3815951 7355.1797
+20203.80095962901 3.382225 7356.5571
+20204.8009596765 3.3831699 7356.5571
+20205.800959724 3.3841543 7356.7539
+20206.8009597715 3.3850203 7356.5571
+20207.800959819 3.3855715 7355.5728
+20208.80095986649 3.386477 7356.1636
+20209.80095991399 3.3869102 7355.9663
+20210.80095996149 3.3876581 7356.3604
+20211.80096000899 3.3878551 7356.1636
+20212.80096005648 3.3882093 7356.3604
+20213.80096010398 3.3889966 7357.1475
+20214.80096015148 3.3897448 7356.7539
+20215.80096019898 3.3904927 7355.9663
+20216.80096024647 3.3910046 7356.3604
+20217.80096029397 3.3919888 7355.3765
+20218.80096034147 3.3930516 7356.9502
+20219.80096038897 3.394351 7356.1636
+20220.80096043646 3.3955715 7355.1797
+20221.80096048396 3.3962801 7356.5571
+20222.80096053146 3.3966343 7356.3604
+20223.80096057896 3.3976974 7355.1797
+20224.80096062645 3.398721 7356.1636
+20225.80096067395 3.3994296 7355.7695
+20226.80096072145 3.4004927 7356.3604
+20227.80096076895 3.4014375 7356.3604
+20228.80096081644 3.4021461 7356.3604
+20229.80096086394 3.4025397 7356.1636
+20230.80096091144 3.4029729 7356.7539
+20231.80096095894 3.4037209 7356.7539
+20232.80096100643 3.4042721 7355.3765
+20233.80096105393 3.4045084 7356.5571
+20234.80096110143 3.4049413 7355.7695
+20235.80096114893 3.4051383 7356.3604
+20236.80096119642 3.4058075 7355.9663
+20237.80096124392 3.4063194 7355.5728
+20238.80096129142 3.4073822 7355.9663
+20239.80096133891 3.4084058 7356.1636
+20240.80096138641 3.4091933 7355.3765
+20241.80096143391 3.4096262 7356.1636
+20242.80096148141 3.4100201 7356.1636
+20243.8009615289 3.4104924 7356.3604
+20244.8009615764 3.411083 7355.9663
+20245.8009616239 3.4123428 7356.1636
+20246.8009616714 3.413327 7356.5571
+20247.80096171889 3.4141145 7356.3604
+20248.80096176639 3.4149413 7355.3765
+20249.80096181389 3.415138 7356.5571
+20250.80096186139 3.4156892 7355.7695
+20251.80096190888 3.4163191 7356.7539
+20252.80096195638 3.4164371 7356.1636
+20253.80096200388 3.417264 7355.9663
+20254.80096205138 3.4180119 7356.3604
+20255.80096209887 3.4180515 7356.7539
+20256.80096214637 3.4184058 7356.3604
+20257.80096219387 3.4191537 7355.5728
+20258.80096224137 3.4199805 7356.1636
+20259.80096228886 3.4206891 7356.1636
+20260.80096233636 3.4213977 7355.7695
+20261.80096238386 3.4219096 7356.3604
+20262.80096243136 3.4221852 7356.3604
+20263.80096247885 3.4222639 7355.7695
+20264.80096252635 3.4222639 7355.9663
+20265.80096257385 3.4226182 7356.5571
+20266.80096262135 3.4232876 7356.5571
+20267.80096266884 3.4237993 7355.9663
+20268.80096271634 3.4243898 7354.3921
+20269.80096276384 3.4247835 7355.3765
+20270.80096281134 3.4254529 7356.9502
+20271.80096285883 3.4258466 7356.5571
+20272.80096290633 3.4258466 7356.3604
+20273.80096295383 3.4257286 7355.5728
+20274.80096300133 3.4261615 7356.9502
+20275.80096304882 3.4265158 7357.1475
+20276.80096309632 3.4269884 7356.5571
+20277.80096314382 3.4273427 7355.7695
+20278.80096319132 3.427382 7355.1797
+20279.80096323881 3.4276576 7356.1636
+20280.80096328631 3.4283662 7355.5728
+20281.80096333381 3.4292717 7355.7695
+20282.80096338131 3.4301772 7356.3604
+20283.8009634288 3.4310827 7355.9663
+20284.8009634763 3.4315946 7356.7539
+20285.8009635238 3.4320276 7355.9663
+20286.8009635713 3.4324605 7356.7539
+20287.80096361879 3.4325395 7356.9502
+20288.80096366629 3.4326575 7356.3604
+20289.80096371379 3.4330118 7355.5728
+20290.80096376128 3.4336023 7355.1797
+20291.80096380878 3.4343109 7356.1636
+20292.80096385628 3.4350197 7356.1636
+20293.80096390378 3.4363582 7355.3765
+20294.80096395127 3.4373424 7356.9502
+20295.80096399877 3.4380116 7355.9663
+20296.80096404627 3.4384449 7356.1636
+20297.80096409377 3.4389172 7356.5571
+20298.80096414126 3.4394684 7356.5571
+20299.80096418876 3.4399014 7355.5728
+20300.80096423626 3.4406495 7356.1636
+20301.80096428376 3.441555 7356.3604
+20302.80096433125 3.4426968 7356.3604
+20303.80096437875 3.4434447 7355.7695
+20304.80096442625 3.443996 7356.5571
+20305.80096447375 3.4447439 7355.7695
+20306.80096452124 3.4450982 7355.7695
+20307.80096456874 3.4454131 7356.1636
+20308.80096461624 3.4449801 7356.5571
+20309.80096466374 3.44561 7355.5728
+20310.80096471123 3.446043 7355.7695
+20311.80096475873 3.4465549 7356.1636
+20312.80096480623 3.4467912 7356.3604
+20313.80096485373 3.4470668 7355.5728
+20314.80096490122 3.4471848 7355.9663
+20315.80096494872 3.4478147 7355.9663
+20316.80096499622 3.4486022 7356.1636
+20317.80096504372 3.4491928 7356.3604
+20318.80096509121 3.4494288 7356.1636
+20319.80096513871 3.4497833 7356.5571
+20320.80096518621 3.4503736 7356.5571
+20321.80096523371 3.4510431 7356.5571
+20322.8009652812 3.4516337 7356.7539
+20323.8009653287 3.4523423 7356.3604
+20324.8009653762 3.4522636 7354.9824
+20325.8009654237 3.4519486 7356.5571
+20326.80096547119 3.4520273 7356.1636
+20327.80096551869 3.452224 7355.5728
+20328.80096556619 3.4526966 7355.9663
+20329.80096561369 3.4524209 7356.9502
+20330.80096566118 3.4526572 7355.5728
+20331.80096570868 3.4530115 7356.7539
+20332.80096575618 3.4535627 7356.5571
+20333.80096580368 3.4545469 7356.3604
+20334.80096585117 3.4553344 7355.9663
+20335.80096589867 3.4554918 7356.9502
+20336.80096594617 3.4558461 7355.7695
+20337.80096599367 3.4563973 7356.1636
+20338.80096604116 3.4569879 7356.5571
+20339.80096608866 3.4572241 7355.5728
+20340.80096613616 3.4580903 7355.9663
+20341.80096618366 3.4583657 7356.3604
+20342.80096623115 3.4585626 7355.9663
+20343.80096627865 3.4595075 7356.7539
+20344.80096632615 3.4602556 7356.9502
+20345.80096637364 3.4604917 7356.3604
+20346.80096642114 3.4606493 7356.3604
+20347.80096646864 3.4610429 7355.5728
+20348.80096651614 3.4618697 7355.9663
+20349.80096656363 3.462342 7355.7695
+20350.80096661113 3.462342 7355.5728
+20351.80096665863 3.4626963 7355.9663
+20352.80096670613 3.4634445 7356.7539
+20353.80096675362 3.4638381 7356.7539
+20354.80096680112 3.46435 7355.9663
+20355.80096684862 3.464468 7355.9663
+20356.80096689612 3.4648616 7355.5728
+20357.80096694361 3.4649799 7356.5571
+20358.80096699111 3.4652162 7356.1636
+20359.80096703861 3.4657278 7356.3604
+20360.80096708611 3.4663577 7355.9663
+20361.8009671336 3.466712 7356.5571
+20362.8009671811 3.4671059 7355.9663
+20363.8009672286 3.4674208 7356.5571
+20364.8009672761 3.4675782 7354.9824
+20365.80096732359 3.467972 7356.7539
+20366.80096737109 3.4684837 7356.1636
+20367.80096741859 3.4691925 7356.3604
+20368.80096746609 3.4697435 7356.1636
+20369.80096751358 3.4704523 7356.1636
+20370.80096756108 3.4706883 7355.5728
+20371.80096760858 3.4713972 7356.7539
+20372.80096765608 3.4725387 7356.3604
+20373.80096770357 3.4726963 7356.3604
+20374.80096775107 3.4729326 7356.3604
+20375.80096779857 3.4734836 7356.3604
+20376.80096784607 3.4745073 7356.5571
+20377.80096789356 3.4746253 7356.1636
+20378.80096794106 3.4748616 7356.3604
+20379.80096798856 3.4752946 7356.1636
+20380.80096803606 3.4751766 7356.3604
+20381.80096808355 3.4749796 7355.5728
+20382.80096813105 3.4749796 7355.9663
+20383.80096817855 3.4754522 7356.1636
+20384.80096822605 3.4761608 7356.1636
+20385.80096827354 3.4770269 7356.1636
+20386.80096832104 3.4778931 7356.5571
+20387.80096836854 3.4786804 7355.5728
+20388.80096841604 3.4790347 7355.7695
+20389.80096846353 3.4794285 7356.5571
+20390.80096851103 3.4796648 7355.9663
+20391.80096855853 3.4800191 7355.9663
+20392.80096860603 3.480649 7356.3604
+20393.80096865352 3.4811606 7356.1636
+20394.80096870102 3.4815938 7357.3442
+20395.80096874852 3.4819481 7356.3604
+20396.80096879601 3.4825387 7356.1636
+20397.80096884351 3.4835622 7356.1636
+20398.80096889101 3.4845464 7355.5728
+20399.80096893851 3.4854126 7355.9663
+20400.800968986 3.4858458 7355.9663
+20401.8009690335 3.4860425 7356.1636
+20402.800969081 3.4865544 7356.5571
+20403.8009691285 3.4867117 7356.5571
+20404.80096917599 3.4871449 7355.9663
+20405.80096922349 3.4880111 7356.5571
+20406.80096927099 3.488956 7356.9502
+20407.80096931849 3.4895859 7356.9502
+20408.80096936598 3.4900188 7356.5571
+20409.80096941348 3.4903731 7356.7539
+20410.80096946098 3.491082 7356.3604
+20411.80096950848 3.4919875 7355.9663
+20412.80096955597 3.4924204 7356.5571
+20413.80096960347 3.4932077 7355.7695
+20414.80096965097 3.493444 7356.3604
+20415.80096969847 3.4941921 7356.1636
+20416.80096974596 3.4949794 7356.5571
+20417.80096979346 3.495137 7356.3604
+20418.80096984096 3.4952943 7356.7539
+20419.80096988846 3.4958849 7356.3604
+20420.80096993595 3.4960818 7356.5571
+20421.80096998345 3.4963574 7356.3604
+20422.80097003095 3.4963574 7356.7539
+20423.80097007845 3.4964361 7355.9663
+20424.80097012594 3.4965148 7355.9663
+20425.80097017344 3.4971054 7356.3604
+20426.80097022094 3.4975779 7356.1636
+20427.80097026844 3.4979715 7356.3604
+20428.80097031593 3.4982865 7356.3604
+20429.80097036343 3.4989164 7356.1636
+20430.80097041093 3.4991527 7356.1636
+20431.80097045843 3.4992707 7355.5728
+20432.80097050592 3.4995856 7356.5571
+20433.80097055342 3.5003338 7355.7695
+20434.80097060092 3.5010817 7355.9663
+20435.80097064842 3.5019872 7355.7695
+20436.80097069591 3.5026958 7356.3604
+20437.80097074341 3.503129 7356.7539
+20438.80097079091 3.5039949 7356.1636
+20439.80097083841 3.5041919 7355.9663
+20440.8009708859 3.5045855 7356.3604
+20441.8009709334 3.5048218 7355.9663
+20442.8009709809 3.5055304 7355.7695
+20443.8009710284 3.5058849 7356.3604
+20444.80097107589 3.5067508 7355.5728
+20445.80097112339 3.5075777 7356.9502
+20446.80097117089 3.5086408 7356.5571
+20447.80097121838 3.5089951 7356.3604
+20448.80097126588 3.50931 7356.3604
+20449.80097131338 3.5097823 7356.7539
+20450.80097136088 3.5105305 7355.9663
+20451.80097140837 3.5111997 7355.9663
+20452.80097145587 3.5117903 7355.5728
+20453.80097150337 3.5121052 7356.3604
+20454.80097155087 3.5126169 7355.7695
+20455.80097159836 3.5129318 7356.5571
+20456.80097164586 3.5134437 7355.9663
+20457.80097169336 3.51368 7356.5571
+20458.80097174086 3.5141523 7356.1636
+20459.80097178835 3.5146642 7356.1636
+20460.80097183585 3.5151761 7355.9663
+20461.80097188335 3.5150578 7356.3604
+20462.80097193085 3.5154123 7356.7539
+20463.80097197834 3.5157666 7356.3604
+20464.80097202584 3.5164752 7356.1636
+20465.80097207334 3.5170658 7355.9663
+20466.80097212084 3.5180106 7355.3765
+20467.80097216833 3.5182862 7355.7695
+20468.80097221583 3.5184042 7356.1636
+20469.80097226333 3.5185618 7356.1636
+20470.80097231083 3.5190735 7355.9663
+20471.80097235832 3.519664 7356.1636
+20472.80097240582 3.519979 7356.1636
+20473.80097245332 3.5201366 7356.3604
+20474.80097250082 3.5205696 7356.5571
+20475.80097254831 3.5209634 7356.1636
+20476.80097259581 3.5214751 7356.5571
+20477.80097264331 3.521987 7356.3604
+20478.80097269081 3.5216327 7356.3604
+20479.8009727383 3.5219476 7355.5728
+20480.8009727858 3.5228138 7355.9663
+20481.8009728333 3.5232861 7356.5571
+20482.8009728808 3.523483 7355.9663
+20483.80097292829 3.5239553 7356.5571
+20484.80097297579 3.524231 7356.1636
+20485.80097302329 3.5243492 7356.1636
+20486.80097307079 3.5245852 7355.9663
+20487.80097311828 3.5250185 7355.7695
+20488.80097316578 3.5252545 7356.3604
+20489.80097321328 3.5250971 7355.7695
+20490.80097326078 3.5251365 7356.7539
+20491.80097330827 3.5253334 7356.1636
+20492.80097335577 3.5257664 7355.7695
+20493.80097340327 3.5262783 7355.7695
+20494.80097345077 3.5266719 7356.3604
+20495.80097349826 3.5279317 7356.3604
+20496.80097354576 3.5287979 7356.1636
+20497.80097359326 3.5298607 7356.1636
+20498.80097364075 3.5306089 7355.3765
+20499.80097368825 3.5310025 7355.7695
+20500.80097373575 3.5311601 7355.9663
+20501.80097378325 3.5313962 7356.3604
+20502.80097383074 3.5319867 7356.1636
+20503.80097387824 3.532105 7356.5571
+20504.80097392574 3.5325379 7355.9663
+20505.80097397324 3.5331285 7356.7539
+20506.80097402073 3.533601 7355.3765
+20507.80097406823 3.534034 7355.5728
+20508.80097411573 3.5347819 7356.5571
+20509.80097416323 3.5351758 7356.1636
+20510.80097421072 3.5352151 7356.5571
+20511.80097425822 3.5354908 7355.7695
+20512.80097430572 3.5360417 7356.3604
+20513.80097435322 3.5360417 7355.3765
+20514.80097440071 3.5364749 7355.1797
+20515.80097444821 3.5367112 7355.9663
+20516.80097449571 3.5371835 7355.9663
+20517.80097454321 3.538089 7355.9663
+20518.8009745907 3.5386009 7356.3604
+20519.8009746382 3.5390732 7355.7695
+20520.8009746857 3.5395851 7356.9502
+20521.8009747332 3.5399787 7356.5571
+20522.80097478069 3.5405693 7356.5571
+20523.80097482819 3.5410812 7355.7695
+20524.80097487569 3.5417898 7355.1797
+20525.80097492319 3.5419474 7356.3604
+20526.80097497068 3.542026 7355.9663
+20527.80097501818 3.542223 7356.3604
+20528.80097506568 3.5423017 7357.541
+20529.80097511318 3.5422623 7356.3604
+20530.80097516067 3.5421441 7356.1636
+20531.80097520817 3.5425773 7356.3604
+20532.80097525567 3.5424197 7355.7695
+20533.80097530317 3.5426953 7356.5571
+20534.80097535066 3.5430102 7355.7695
+20535.80097539816 3.5428529 7356.1636
+20536.80097544566 3.5428529 7356.1636
+20537.80097549316 3.5428133 7355.7695
+20538.80097554065 3.5430889 7356.9502
+20539.80097558815 3.5436795 7356.3604
+20540.80097563565 3.544467 7355.7695
+20541.80097568315 3.5450575 7355.9663
+20542.80097573064 3.5459237 7356.7539
+20543.80097577814 3.5463567 7355.9663
+20544.80097582564 3.546711 7355.7695
+20545.80097587314 3.5470653 7355.9663
+20546.80097592063 3.5472229 7356.9502
+20547.80097596813 3.5478134 7355.9663
+20548.80097601563 3.5482464 7355.9663
+20549.80097606312 3.5483251 7355.9663
+20550.80097611062 3.54864 7355.9663
+20551.80097615812 3.5488763 7356.1636
+20552.80097620562 3.5491519 7356.1636
+20553.80097625311 3.5492306 7355.9663
+20554.80097630061 3.5494668 7356.9502
+20555.80097634811 3.5498211 7355.7695
+20556.80097639561 3.550451 7355.7695
+20557.8009764431 3.5510023 7355.9663
+20558.8009764906 3.5511203 7356.3604
+20559.8009765381 3.5517502 7355.9663
+20560.8009765856 3.552459 7356.1636
+20561.80097663309 3.5528526 7356.1636
+20562.80097668059 3.5530496 7355.7695
+20563.80097672809 3.5531282 7356.3604
+20564.80097677559 3.5534039 7354.9824
+20565.80097682308 3.5537188 7355.9663
+20566.80097687058 3.5536795 7356.7539
+20567.80097691808 3.5536795 7357.1475
+20568.80097696558 3.5534039 7355.9663
+20569.80097701307 3.5535612 7356.3604
+20570.80097706057 3.5537975 7355.7695
+20571.80097710807 3.5538368 7356.1636
+20572.80097715557 3.5537975 7356.1636
+20573.80097720306 3.5539944 7356.3604
+20574.80097725056 3.5541911 7356.1636
+20575.80097729806 3.554585 7355.5728
+20576.80097734556 3.5548606 7356.5571
+20577.80097739305 3.5550179 7355.9663
+20578.80097744055 3.5553722 7356.5571
+20579.80097748805 3.5552936 7356.5571
+20580.80097753555 3.5556479 7355.9663
+20581.80097758304 3.5560415 7355.9663
+20582.80097763054 3.5561597 7355.5728
+20583.80097767804 3.5563564 7355.9663
+20584.80097772554 3.5569077 7356.1636
+20585.80097777303 3.5572619 7356.5571
+20586.80097782053 3.5575769 7356.1636
+20587.80097786803 3.5579312 7356.1636
+20588.80097791553 3.5582464 7355.9663
+20589.80097796302 3.5584037 7356.9502
+20590.80097801052 3.5589943 7355.9663
+20591.80097805802 3.5594666 7355.9663
+20592.80097810552 3.5601361 7355.9663
+20593.80097815301 3.5603721 7355.3765
+20594.80097820051 3.5608053 7356.1636
+20595.80097824801 3.5615139 7355.9663
+20596.80097829551 3.5620258 7356.1636
+20597.800978343 3.5624981 7356.1636
+20598.8009783905 3.5624981 7355.3765
+20599.800978438 3.5624588 7356.3604
+20600.80097848549 3.562813 7356.1636
+20601.80097853299 3.5627344 7355.9663
+20602.80097858049 3.5627737 7355.3765
+20603.80097862799 3.5628524 7356.9502
+20604.80097867548 3.5629313 7355.3765
+20605.80097872298 3.5634823 7355.7695
+20606.80097877048 3.5639155 7355.9663
+20607.80097881798 3.5645454 7356.5571
+20608.80097886547 3.564939 7356.3604
+20609.80097891297 3.5652146 7355.3765
+20610.80097896047 3.5655296 7356.3604
+20611.80097900797 3.5658839 7355.7695
+20612.80097905546 3.5661201 7356.3604
+20613.80097910296 3.5663958 7356.5571
+20614.80097915046 3.5663958 7356.1636
+20615.80097919796 3.5664351 7356.1636
+20616.80097924545 3.5668287 7355.9663
+20617.80097929295 3.5673406 7355.5728
+20618.80097934045 3.5678132 7355.9663
+20619.80097938795 3.5682461 7356.1636
+20620.80097943544 3.5687184 7355.9663
+20621.80097948294 3.5689547 7355.1797
+20622.80097953044 3.5692303 7356.1636
+20623.80097957794 3.5695846 7356.9502
+20624.80097962543 3.5697029 7355.9663
+20625.80097967293 3.5694666 7355.9663
+20626.80097972043 3.5693879 7356.3604
+20627.80097976793 3.5696239 7355.9663
+20628.80097981542 3.5696635 7355.9663
+20629.80097986292 3.5701752 7355.7695
+20630.80097991042 3.5703721 7356.9502
+20631.80097995792 3.5704901 7356.7539
+20632.80098000541 3.5705295 7355.3765
+20633.80098005291 3.5706084 7355.5728
+20634.80098010041 3.5707264 7356.7539
+20635.80098014791 3.5707264 7356.1636
+20636.8009801954 3.5707264 7355.5728
+20637.8009802429 3.5712383 7356.1636
+20638.8009802904 3.5713563 7356.5571
+20639.8009803379 3.571435 7355.1797
+20640.80098038539 3.5717499 7355.3765
+20641.80098043289 3.5724981 7356.1636
+20642.80098048039 3.5732067 7356.3604
+20643.80098052789 3.5736792 7356.5571
+20644.80098057538 3.5746634 7356.1636
+20645.80098062288 3.5752146 7356.3604
+20646.80098067038 3.5757656 7356.7539
+20647.80098071788 3.5758445 7356.9502
+20648.80098076537 3.5762382 7355.9663
+20649.80098081287 3.5767894 7355.9663
+20650.80098086037 3.5767105 7356.5571
+20651.80098090786 3.5768681 7356.5571
+20652.80098095536 3.5769074 7355.7695
+20653.80098100286 3.5767894 7355.9663
+20654.80098105036 3.5765924 7356.5571
+20655.80098109785 3.5768681 7355.9663
+20656.80098114535 3.5772617 7356.5571
+20657.80098119285 3.577183 7355.9663
+20658.80098124035 3.5773404 7355.9663
+20659.80098128784 3.5772617 7355.7695
+20660.80098133534 3.577065 7355.5728
+20661.80098138284 3.5766711 7355.9663
+20662.80098143034 3.5767894 7356.3604
+20663.80098147783 3.5768681 7355.9663
+20664.80098152533 3.5767894 7355.5728
+20665.80098157283 3.5767105 7355.9663
+20666.80098162033 3.5769861 7356.1636
+20667.80098166782 3.5773799 7355.9663
+20668.80098171532 3.5776949 7355.9663
+20669.80098176282 3.5782459 7356.7539
+20670.80098181032 3.5788364 7355.9663
+20671.80098185781 3.5787578 7356.1636
+20672.80098190531 3.5787971 7356.3604
+20673.80098195281 3.5792696 7356.5571
+20674.80098200031 3.5792303 7356.1636
+20675.8009820478 3.5791907 7356.3604
+20676.8009820953 3.5788758 7357.3442
+20677.8009821428 3.5786004 7355.7695
+20678.8009821903 3.5790334 7356.3604
+20679.80098223779 3.5792303 7354.9824
+20680.80098228529 3.5794663 7356.3604
+20681.80098233279 3.579742 7355.9663
+20682.80098238029 3.5800569 7355.5728
+20683.80098242778 3.5802538 7356.7539
+20684.80098247528 3.5800962 7355.7695
+20685.80098252278 3.5805295 7356.1636
+20686.80098257028 3.5811987 7356.9502
+20687.80098261777 3.5813167 7355.7695
+20688.80098266527 3.5815136 7356.3604
+20689.80098271277 3.5815923 7356.5571
+20690.80098276027 3.5817499 7356.1636
+20691.80098280776 3.5820255 7355.7695
+20692.80098285526 3.5824978 7356.1636
+20693.80098290276 3.582931 7356.1636
+20694.80098295026 3.5831671 7356.1636
+20695.80098299775 3.5830491 7356.3604
+20696.80098304525 3.5834033 7357.1475
+20697.80098309275 3.5835216 7355.5728
+20698.80098314025 3.583679 7356.1636
+20699.80098318774 3.5841515 7356.7539
+20700.80098323524 3.5843089 7356.3604
+20701.80098328274 3.5843482 7355.5728
+20702.80098333023 3.5845845 7355.7695
+20703.80098337773 3.5848601 7355.9663
+20704.80098342523 3.5850568 7356.1636
+20705.80098347273 3.5854113 7355.9663
+20706.80098352022 3.5860019 7356.3604
+20707.80098356772 3.5862379 7356.3604
+20708.80098361522 3.5858443 7355.7695
+20709.80098366272 3.5858049 7355.9663
+20710.80098371021 3.5861592 7356.3604
+20711.80098375771 3.5867105 7355.7695
+20712.80098380521 3.5869467 7356.1636
+20713.80098385271 3.5867891 7356.3604
+20714.8009839002 3.5867498 7355.5728
+20715.8009839477 3.5868285 7356.3604
+20716.8009839952 3.5866711 7356.3604
+20717.8009840427 3.5867105 7355.7695
+20718.80098409019 3.5866711 7356.1636
+20719.80098413769 3.5865135 7356.5571
+20720.80098418519 3.5861592 7355.5728
+20721.80098423269 3.5861986 7356.1636
+20722.80098428018 3.5864742 7355.9663
+20723.80098432768 3.5867891 7355.7695
+20724.80098437518 3.5871828 7356.3604
+20725.80098442268 3.5869861 7356.1636
+20726.80098447017 3.5869861 7356.3604
+20727.80098451767 3.5870254 7355.9663
+20728.80098456517 3.5871434 7355.7695
+20729.80098461267 3.5874977 7356.7539
+20730.80098466016 3.5881672 7356.9502
+20731.80098470766 3.5886788 7355.9663
+20732.80098475516 3.5888364 7356.9502
+20733.80098480266 3.5890727 7356.1636
+20734.80098485015 3.5893481 7356.7539
+20735.80098489765 3.5892694 7355.7695
+20736.80098494515 3.5890331 7356.9502
+20737.80098499265 3.5888758 7356.1636
+20738.80098504014 3.5889544 7356.5571
+20739.80098508764 3.5889544 7356.1636
+20740.80098513514 3.5887971 7356.3604
+20741.80098518264 3.5887578 7355.7695
+20742.80098523013 3.5887182 7355.9663
+20743.80098527763 3.5886395 7355.7695
+20744.80098532513 3.5884032 7356.9502
+20745.80098537263 3.5883639 7355.7695
+20746.80098542012 3.5880883 7355.9663
+20747.80098546762 3.5879309 7356.3604
+20748.80098551512 3.5881672 7356.1636
+20749.80098556262 3.5883245 7356.7539
+20750.80098561011 3.5885215 7356.5571
+20751.80098565761 3.5889544 7355.5728
+20752.80098570511 3.5892301 7356.9502
+20753.8009857526 3.5896237 7356.5571
+20754.8009858001 3.5897026 7355.7695
+20755.8009858476 3.5897813 7355.7695
+20756.8009858951 3.5895844 7355.9663
+20757.80098594259 3.5895057 7355.9663
+20758.80098599009 3.589112 7356.5571
+20759.80098603759 3.5888364 7356.1636
+20760.80098608509 3.5888364 7356.1636
+20761.80098613258 3.5892694 7356.1636
+20762.80098618008 3.5893877 7355.9663
+20763.80098622758 3.5897419 7355.9663
+20764.80098627508 3.5899386 7356.3604
+20765.80098632257 3.589663 7356.5571
+20766.80098637007 3.5897419 7356.5571
+20767.80098641757 3.5897026 7355.9663
+20768.80098646507 3.5897419 7355.7695
+20769.80098651256 3.589545 7355.5728
+20770.80098656006 3.5897419 7355.9663
+20771.80098660756 3.5897419 7356.5571
+20772.80098665506 3.589663 7355.7695
+20773.80098670255 3.5893481 7355.5728
+20774.80098675005 3.5892301 7356.7539
+20775.80098679755 3.5893087 7356.5571
+20776.80098684505 3.5893087 7356.5571
+20777.80098689254 3.5892301 7356.7539
+20778.80098694004 3.5891514 7356.1636
+20779.80098698754 3.5893877 7355.9663
+20780.80098703504 3.5890331 7356.3604
+20781.80098708253 3.5887971 7355.7695
+20782.80098713003 3.5884032 7356.3604
+20783.80098717753 3.5883245 7355.9663
+20784.80098722503 3.5883245 7356.3604
+20785.80098727252 3.5885608 7356.1636
+20786.80098732002 3.5887578 7356.1636
+20787.80098736752 3.5884821 7355.9663
+20788.80098741502 3.5880883 7356.1636
+20789.80098746251 3.5875373 7355.7695
+20790.80098751001 3.5873404 7356.3604
+20791.80098755751 3.5869861 7356.3604
+20792.80098760501 3.5870647 7356.3604
+20793.8009876525 3.5872617 7355.9663
+20794.8009877 3.5872223 7356.3604
+20795.8009877475 3.5872617 7355.9663
+20796.800987795 3.5872223 7356.3604
+20797.80098784249 3.5875766 7355.9663
+20798.80098788999 3.5882065 7355.9663
+20799.80098793749 3.5886788 7356.1636
+20800.80098798499 3.5892301 7356.3604
+20801.80098803248 3.589663 7356.5571
+20802.80098807998 3.589978 7355.1797
+20803.80098812748 3.5902536 7356.9502
+20804.80098817497 3.5902536 7356.3604
+20805.80098822247 3.589978 7355.1797
+20806.80098826997 3.5898206 7356.1636
+20807.80098831747 3.5897026 7355.9663
+20808.80098836496 3.5897813 7355.9663
+20809.80098841246 3.5901749 7356.3604
+20810.80098845996 3.5902929 7356.3604
+20811.80098850746 3.5901749 7356.1636
+20812.80098855495 3.5900569 7356.3604
+20813.80098860245 3.5902536 7355.7695
+20814.80098864995 3.5903325 7355.3765
+20815.80098869745 3.5905292 7356.1636
+20816.80098874494 3.5901749 7355.9663
+20817.80098879244 3.5900962 7355.9663
+20818.80098883994 3.589978 7356.3604
+20819.80098888744 3.5898993 7356.1636
+20820.80098893493 3.589978 7356.1636
+20821.80098898243 3.5903325 7356.5571
+20822.80098902993 3.5907655 7356.1636
+20823.80098907743 3.5908442 7355.9663
+20824.80098912492 3.5907655 7356.1636
+20825.80098917242 3.5909231 7355.5728
+20826.80098921992 3.5908442 7357.7378
+20827.80098926742 3.591356 7356.3604
+20828.80098931491 3.5914741 7356.5571
+20829.80098936241 3.5913954 7355.7695
+20830.80098940991 3.5917497 7356.5571
+20831.80098945741 3.5917103 7356.3604
+20832.8009895049 3.5914741 7356.1636
+20833.8009895524 3.5917103 7356.5571
+20834.8009895999 3.5919073 7356.1636
+20835.8009896474 3.592104 7356.5571
+20836.80098969489 3.5925372 7356.3604
+20837.80098974239 3.5924978 7356.5571
+20838.80098978989 3.5925765 7356.7539
+20839.80098983739 3.5923009 7356.1636
+20840.80098988488 3.5924978 7355.7695
+20841.80098993238 3.5926552 7356.1636
+20842.80098997988 3.5928521 7355.9663
+20843.80099002738 3.5926945 7356.1636
+20844.80099007487 3.5928128 7356.1636
+20845.80099012237 3.5927339 7355.5728
+20846.80099016987 3.5931277 7355.7695
+20847.80099021737 3.5933244 7356.7539
+20848.80099026486 3.593482 7356.1636
+20849.80099031236 3.5937183 7356.9502
+20850.80099035986 3.5936 7355.9663
+20851.80099040736 3.5935214 7355.9663
+20852.80099045485 3.593482 7355.7695
+20853.80099050235 3.5935214 7356.9502
+20854.80099054985 3.593797 7355.7695
+20855.80099059734 3.5941513 7356.9502
+20856.80099064484 3.5942299 7356.5571
+20857.80099069234 3.5943482 7356.3604
+20858.80099073984 3.5945449 7356.7539
+20859.80099078733 3.5944269 7356.1636
+20860.80099083483 3.5945449 7356.3604
+20861.80099088233 3.5948205 7356.3604
+20862.80099092983 3.5949388 7355.9663
+20863.80099097732 3.5947812 7356.5571
+20864.80099102482 3.5945055 7355.7695
+20865.80099107232 3.5939937 7356.3604
+20866.80099111982 3.5941513 7356.3604
+20867.80099116731 3.5943482 7357.1475
+20868.80099121481 3.5943089 7356.1636
+20869.80099126231 3.5941906 7356.3604
+20870.80099130981 3.5943482 7355.5728
+20871.8009913573 3.5942299 7355.7695
+20872.8009914048 3.5944269 7356.3604
+20873.8009914523 3.5947025 7356.5571
+20874.8009914998 3.5948598 7355.7695
+20875.80099154729 3.5949388 7355.9663
+20876.80099159479 3.5950568 7355.5728
+20877.80099164229 3.5952141 7356.1636
+20878.80099168979 3.5950174 7356.1636
+20879.80099173728 3.5951748 7355.7695
+20880.80099178478 3.595293 7356.3604
+20881.80099183228 3.5954111 7355.9663
+20882.80099187978 3.5954897 7355.9663
+20883.80099192727 3.595844 7355.9663
+20884.80099197477 3.5957654 7356.5571
+20885.80099202227 3.5957654 7355.5728
+20886.80099206977 3.5960016 7356.5571
+20887.80099211726 3.5960803 7356.5571
+20888.80099216476 3.5964346 7355.7695
+20889.80099221226 3.5965922 7356.1636
+20890.80099225976 3.5970645 7356.7539
+20891.80099230725 3.5973794 7356.3604
+20892.80099235475 3.5976551 7355.9663
+20893.80099240225 3.597852 7356.1636
+20894.80099244975 3.59797 7355.5728
+20895.80099249724 3.5980489 7356.1636
+20896.80099254474 3.5980883 7356.5571
+20897.80099259224 3.5980096 7356.3604
+20898.80099263974 3.5981669 7356.1636
+20899.80099268723 3.5981669 7357.3442
+20900.80099273473 3.5980883 7356.1636
+20901.80099278223 3.5980489 7356.5571
+20902.80099282973 3.5980489 7355.9663
+20903.80099287722 3.5978913 7356.5571
+20904.80099292472 3.5978913 7356.3604
+20905.80099297222 3.5978913 7355.5728
+20906.80099301972 3.5978913 7355.3765
+20907.80099306721 3.5976946 7355.7695
+20908.80099311471 3.5972614 7355.7695
+20909.80099316221 3.5971828 7356.5571
+20910.8009932097 3.5970645 7355.7695
+20911.8009932572 3.5968285 7356.5571
+20912.8009933047 3.5971041 7355.3765
+20913.8009933522 3.5967891 7356.3604
+20914.80099339969 3.5968678 7356.5571
+20915.80099344719 3.5969071 7355.9663
+20916.80099349469 3.5969071 7356.3604
+20917.80099354219 3.5972614 7356.3604
+20918.80099358968 3.597419 7356.3604
+20919.80099363718 3.5974584 7356.5571
+20920.80099368468 3.5977733 7356.1636
+20921.80099373218 3.597734 7355.7695
+20922.80099377967 3.598285 7355.5728
+20923.80099382717 3.5986788 7355.5728
+20924.80099387467 3.5985606 7355.7695
+20925.80099392217 3.5982063 7356.3604
+20926.80099396966 3.5984819 7355.9663
+20927.80099401716 3.5989938 7355.5728
+20928.80099406466 3.5991511 7356.5571
+20929.80099411216 3.5994267 7356.7539
+20930.80099415965 3.5996237 7356.5571
+20931.80099420715 3.5998204 7355.7695
+20932.80099425465 3.5997024 7355.1797
+20933.80099430215 3.599545 7355.1797
+20934.80099434964 3.599545 7356.1636
+20935.80099439714 3.6001353 7355.3765
+20936.80099444464 3.6004109 7356.1636
+20937.80099449214 3.6004899 7356.3604
+20938.80099453963 3.6006866 7356.1636
+20939.80099458713 3.6010408 7356.1636
+20940.80099463463 3.6010802 7355.9663
+20941.80099468213 3.6007652 7356.1636
+20942.80099472962 3.6011198 7355.9663
+20943.80099477712 3.6010015 7356.5571
+20944.80099482462 3.6009622 7356.5571
+20945.80099487212 3.6016314 7355.3765
+20946.80099491961 3.6019857 7355.5728
+20947.80099496711 3.6023006 7356.3604
+20948.80099501461 3.6028912 7356.1636
+20949.80099506211 3.6032062 7356.5571
+20950.8009951096 3.6032062 7356.3604
+20951.8009951571 3.6032851 7355.9663
+20952.8009952046 3.6029701 7356.1636
+20953.8009952521 3.6030095 7355.1797
+20954.80099529959 3.6030488 7355.9663
+20955.80099534709 3.6030881 7356.1636
+20956.80099539459 3.6034818 7356.5571
+20957.80099544209 3.603718 7355.9663
+20958.80099548958 3.6040723 7356.5571
+20959.80099553708 3.603915 7355.1797
+20960.80099558458 3.6038756 7356.7539
+20961.80099563207 3.6036787 7355.7695
+20962.80099567957 3.6036 7355.7695
+20963.80099572707 3.6038361 7356.3604
+20964.80099577457 3.6033638 7355.9663
+20965.80099582206 3.6033244 7356.5571
+20966.80099586956 3.6032062 7356.1636
+20967.80099591706 3.6034031 7355.9663
+20968.80099596456 3.6037967 7356.5571
+20969.80099601205 3.6038361 7356.1636
+20970.80099605955 3.6036 7356.3604
+20971.80099610705 3.6034031 7355.9663
+20972.80099615455 3.6032457 7356.5571
+20973.80099620204 3.6033244 7356.9502
+20974.80099624954 3.6033638 7356.5571
+20975.80099629704 3.6032457 7355.5728
+20976.80099634454 3.6035607 7356.1636
+20977.80099639203 3.6037967 7356.3604
+20978.80099643953 3.603915 7356.5571
+20979.80099648703 3.6039937 7356.3604
+20980.80099653453 3.6038756 7355.3765
+20981.80099658202 3.604151 7355.9663
+20982.80099662952 3.6043873 7355.9663
+20983.80099667702 3.6045842 7356.7539
+20984.80099672452 3.6050172 7355.7695
+20985.80099677201 3.6050961 7355.3765
+20986.80099681951 3.6047809 7355.9663
+20987.80099686701 3.6050961 7356.1636
+20988.80099691451 3.6050961 7355.9663
+20989.800996962 3.6051748 7356.5571
+20990.8009970095 3.6052141 7356.5571
+20991.800997057 3.6050961 7356.7539
+20992.8009971045 3.6043086 7356.1636
+20993.80099715199 3.6041906 7356.3604
+20994.80099719949 3.603915 7355.7695
+20995.80099724699 3.6041117 7356.5571
+20996.80099729449 3.6043479 7356.3604
+20997.80099734198 3.604466 7355.9663
+20998.80099738948 3.604151 7356.7539
+20999.80099743698 3.6043873 7355.7695
+21000.80099748448 3.6043873 7356.5571
+21001.80099753197 3.6041906 7356.3604
+21002.80099757947 3.6043479 7356.9502
+21003.80099762697 3.6046629 7356.1636
+21004.80099767447 3.6047416 7355.9663
+21005.80099772196 3.6047809 7356.1636
+21006.80099776946 3.6048992 7355.5728
+21007.80099781696 3.6047022 7355.9663
+21008.80099786446 3.6045055 7355.9663
+21009.80099791195 3.6046236 7355.5728
+21010.80099795945 3.6048205 7356.5571
+21011.80099800695 3.6049385 7356.1636
+21012.80099805444 3.6048598 7356.3604
+21013.80099810194 3.6049385 7356.5571
+21014.80099814944 3.6054897 7355.9663
+21015.80099819694 3.605726 7355.3765
+21016.80099824443 3.6060014 7355.7695
+21017.80099829193 3.6064346 7356.3604
+21018.80099833943 3.6065526 7355.7695
+21019.80099838693 3.6066709 7356.3604
+21020.80099843442 3.6069465 7357.1475
+21021.80099848192 3.6071432 7356.1636
+21022.80099852942 3.6071825 7355.9663
+21023.80099857692 3.6071825 7355.7695
+21024.80099862441 3.6072218 7355.9663
+21025.80099867191 3.6074581 7356.1636
+21026.80099871941 3.6075764 7356.1636
+21027.80099876691 3.6077731 7355.5728
+21028.8009988144 3.607655 7356.3604
+21029.8009988619 3.6076944 7355.5728
+21030.8009989094 3.6077337 7355.3765
+21031.8009989569 3.6078124 7356.3604
+21032.80099900439 3.6077731 7356.1636
+21033.80099905189 3.60797 7356.3604
+21034.80099909939 3.6077731 7356.1636
+21035.80099914689 3.6076157 7356.3604
+21036.80099919438 3.6078517 7355.3765
+21037.80099924188 3.6077731 7355.7695
+21038.80099928938 3.6079307 7356.1636
+21039.80099933688 3.608088 7355.5728
+21040.80099938437 3.6083243 7355.9663
+21041.80099943187 3.6082456 7356.1636
+21042.80099947937 3.6081274 7356.1636
+21043.80099952687 3.6082456 7356.3604
+21044.80099957436 3.6083636 7355.3765
+21045.80099962186 3.6083243 7356.7539
+21046.80099966936 3.6084423 7356.1636
+21047.80099971686 3.6085212 7356.5571
+21048.80099976435 3.6085212 7356.7539
+21049.80099981185 3.6084819 7355.7695
+21050.80099985935 3.6081274 7355.5728
+21051.80099990685 3.6078913 7356.3604
+21052.80099995434 3.6078124 7356.5571
+21053.80100000184 3.6078517 7356.7539
+21054.80100004934 3.6080093 7355.3765
+21055.80100009684 3.6078517 7355.7695
+21056.80100014433 3.60797 7355.7695
+21057.80100019183 3.6080487 7356.5571
+21058.80100023933 3.6079307 7356.3604
+21059.80100028683 3.6078124 7355.3765
+21060.80100033432 3.6081667 7356.1636
+21061.80100038182 3.6083636 7356.1636
+21062.80100042932 3.6083243 7356.3604
+21063.80100047681 3.6083243 7355.7695
+21064.80100052431 3.6086786 7355.9663
+21065.80100057181 3.6088755 7355.7695
+21066.80100061931 3.6091118 7355.9663
+21067.8010006668 3.6091511 7356.3604
+21068.8010007143 3.6094267 7355.7695
+21069.8010007618 3.6093872 7356.3604
+21070.8010008093 3.6091511 7355.7695
+21071.80100085679 3.6089935 7356.1636
+21072.80100090429 3.6089935 7356.1636
+21073.80100095179 3.6087968 7356.3604
+21074.80100099929 3.6088755 7356.3604
+21075.80100104678 3.6092298 7355.9663
+21076.80100109428 3.6093872 7356.3604
+21077.80100114178 3.6091905 7355.3765
+21078.80100118928 3.6091511 7356.3604
+21079.80100123677 3.6090722 7355.9663
+21080.80100128427 3.6095841 7356.3604
+21081.80100133177 3.610214 7356.3604
+21082.80100137927 3.610096 7355.7695
+21083.80100142676 3.6102533 7355.7695
+21084.80100147426 3.6098597 7356.3604
+21085.80100152176 3.6094661 7355.5728
+21086.80100156926 3.609781 7355.9663
+21087.80100161675 3.6101353 7356.5571
+21088.80100166425 3.610096 7356.1636
+21089.80100171175 3.6104503 7356.7539
+21090.80100175925 3.6105289 7356.5571
+21091.80100180674 3.6104109 7355.9663
+21092.80100185424 3.6104896 7355.5728
+21093.80100190174 3.6106472 7356.5571
+21094.80100194924 3.6107652 7356.3604
+21095.80100199673 3.6111195 7356.5571
+21096.80100204423 3.6111982 7355.7695
+21097.80100209173 3.6113558 7355.9663
+21098.80100213923 3.6116314 7357.1475
+21099.80100218672 3.6117494 7355.1797
+21100.80100223422 3.6121826 7356.1636
+21101.80100228172 3.612222 7355.7695
+21102.80100232922 3.6117101 7356.1636
+21103.80100237671 3.6117887 7356.5571
+21104.80100242421 3.6118674 7356.5571
+21105.80100247171 3.6118674 7356.3604
+21106.80100251921 3.6118281 7356.3604
+21107.8010025667 3.6118674 7355.9663
+21108.8010026142 3.611907 7356.1636
+21109.8010026617 3.612222 7355.7695
+21110.8010027092 3.612222 7355.9663
+21111.80100275669 3.6121826 7355.5728
+21112.80100280419 3.612458 7356.1636
+21113.80100285169 3.6126156 7355.9663
+21114.80100289918 3.6125369 7355.9663
+21115.80100294668 3.6123793 7356.1636
+21116.80100299418 3.6123793 7356.1636
+21117.80100304168 3.6125762 7356.7539
+21118.80100308917 3.6128519 7355.9663
+21119.80100313667 3.6131668 7355.9663
+21120.80100318417 3.6129305 7356.7539
+21121.80100323167 3.6128912 7356.3604
+21122.80100327916 3.6127729 7355.9663
+21123.80100332666 3.6125762 7355.9663
+21124.80100337416 3.6126549 7355.7695
+21125.80100342166 3.6124976 7356.7539
+21126.80100346915 3.6124187 7356.1636
+21127.80100351665 3.6125369 7355.9663
+21128.80100356415 3.6123793 7355.9663
+21129.80100361165 3.6123793 7356.5571
+21130.80100365914 3.6124187 7355.5728
+21131.80100370664 3.6125369 7356.1636
+21132.80100375414 3.6124187 7355.9663
+21133.80100380164 3.6121826 7355.5728
+21134.80100384913 3.6124976 7356.1636
+21135.80100389663 3.6125762 7355.9663
+21136.80100394413 3.612458 7356.1636
+21137.80100399163 3.6118281 7355.9663
+21138.80100403912 3.6114738 7356.1636
+21139.80100408662 3.6115921 7356.1636
+21140.80100413412 3.6109226 7356.5571
+21141.80100418162 3.6107652 7355.5728
+21142.80100422911 3.6106865 7355.9663
+21143.80100427661 3.6110802 7356.1636
+21144.80100432411 3.6111982 7356.3604
+21145.80100437161 3.6111982 7356.3604
+21146.8010044191 3.6110408 7355.9663
+21147.8010044666 3.6109226 7355.9663
+21148.8010045141 3.6108439 7356.9502
+21149.8010045616 3.6110802 7355.9663
+21150.80100460909 3.6111195 7356.1636
+21151.80100465659 3.6111982 7356.5571
+21152.80100470409 3.6113951 7355.9663
+21153.80100475159 3.6115921 7355.7695
+21154.80100479908 3.6119463 7355.7695
+21155.80100484658 3.6121826 7355.9663
+21156.80100489408 3.6122613 7356.1636
+21157.80100494158 3.612025 7356.3604
+21158.80100498907 3.6120644 7356.3604
+21159.80100503657 3.612143 7355.9663
+21160.80100508407 3.6121037 7356.1636
+21161.80100513157 3.6118281 7355.3765
+21162.80100517906 3.6117887 7356.3604
+21163.80100522656 3.6120644 7356.1636
+21164.80100527406 3.6120644 7356.5571
+21165.80100532155 3.6120644 7356.5571
+21166.80100536905 3.6124187 7356.1636
+21167.80100541655 3.6126943 7355.9663
+21168.80100546405 3.6128125 7357.3442
+21169.80100551154 3.6133635 7355.3765
+21170.80100555904 3.6131668 7355.9663
+21171.80100560654 3.6132455 7356.7539
+21172.80100565404 3.6134028 7356.5571
+21173.80100570153 3.6137574 7356.7539
+21174.80100574903 3.6139147 7355.7695
+21175.80100579653 3.614151 7355.5728
+21176.80100584403 3.6143873 7355.7695
+21177.80100589152 3.6145446 7356.7539
+21178.80100593902 3.614466 7356.3604
+21179.80100598652 3.6144266 7355.9663
+21180.80100603402 3.6146629 7356.5571
+21181.80100608151 3.6147809 7355.7695
+21182.80100612901 3.6147022 7356.1636
+21183.80100617651 3.614466 7356.3604
+21184.80100622401 3.614584 7356.7539
+21185.8010062715 3.6147416 7355.5728
+21186.801006319 3.6147809 7355.9663
+21187.8010063665 3.6148596 7355.7695
+21188.801006414 3.6147809 7355.7695
+21189.80100646149 3.6146629 7356.7539
+21190.80100650899 3.6148202 7355.9663
+21191.80100655649 3.6151352 7355.9663
+21192.80100660399 3.6154895 7356.7539
+21193.80100665148 3.6157258 7355.7695
+21194.80100669898 3.6160014 7356.1636
+21195.80100674648 3.6167099 7356.1636
+21196.80100679398 3.6167886 7355.9663
+21197.80100684147 3.6168282 7355.9663
+21198.80100688897 3.6171432 7356.3604
+21199.80100693647 3.6169856 7356.7539
+21200.80100698397 3.6172218 7355.3765
+21201.80100703146 3.6174188 7356.1636
+21202.80100707896 3.6177337 7355.9663
+21203.80100712646 3.6178911 7356.1636
+21204.80100717396 3.6176548 7356.1636
+21205.80100722145 3.6181667 7355.5728
+21206.80100726895 3.618403 7356.1636
+21207.80100731645 3.6188359 7356.1636
+21208.80100736395 3.6189539 7355.3765
+21209.80100741144 3.6192691 7355.7695
+21210.80100745894 3.6198201 7355.5728
+21211.80100750644 3.6199384 7355.7695
+21212.80100755394 3.6201744 7355.9663
+21213.80100760143 3.6202533 7355.7695
+21214.80100764893 3.62045 7356.3604
+21215.80100769643 3.6204894 7355.9663
+21216.80100774392 3.62045 7356.7539
+21217.80100779142 3.6204894 7356.5571
+21218.80100783892 3.6211195 7355.7695
+21219.80100788642 3.6216311 7356.1636
+21220.80100793391 3.6214738 7356.3604
+21221.80100798141 3.6219068 7356.3604
+21222.80100802891 3.622458 7357.1475
+21223.80100807641 3.6225367 7356.5571
+21224.8010081239 3.6223004 7356.1636
+21225.8010081714 3.6221037 7356.3604
+21226.8010082189 3.6222217 7355.9663
+21227.8010082664 3.6223793 7356.1636
+21228.80100831389 3.6223004 7355.5728
+21229.80100836139 3.6224973 7355.5728
+21230.80100840889 3.6225367 7356.1636
+21231.80100845639 3.622576 7356.3604
+21232.80100850388 3.622576 7355.7695
+21233.80100855138 3.622576 7356.3604
+21234.80100859888 3.6227729 7356.5571
+21235.80100864638 3.6228909 7355.1797
+21236.80100869387 3.6233635 7356.1636
+21237.80100874137 3.6232848 7356.3604
+21238.80100878887 3.6236784 7356.3604
+21239.80100883637 3.6241114 7356.3604
+21240.80100888386 3.6240721 7355.5728
+21241.80100893136 3.624269 7356.5571
+21242.80100897886 3.6246233 7355.7695
+21243.80100902636 3.6248202 7355.9663
+21244.80100907385 3.6248596 7355.9663
+21245.80100912135 3.6252925 7356.5571
+21246.80100916885 3.6255682 7355.7695
+21247.80100921635 3.6260405 7355.7695
+21248.80100926384 3.6263161 7356.1636
+21249.80100931134 3.6261981 7356.5571
+21250.80100935884 3.6265523 7355.7695
+21251.80100940634 3.626828 7356.3604
+21252.80100945383 3.6270249 7355.9663
+21253.80100950133 3.6268673 7355.1797
+21254.80100954883 3.6270642 7355.3765
+21255.80100959633 3.6274579 7355.9663
+21256.80100964382 3.6272216 7356.9502
+21257.80100969132 3.6270249 7355.7695
+21258.80100973882 3.6273005 7355.9663
+21259.80100978632 3.6277335 7356.5571
+21260.80100983381 3.6280878 7355.7695
+21261.80100988131 3.628324 7356.1636
+21262.80100992881 3.6284027 7356.5571
+21263.80100997631 3.6285996 7355.9663
+21264.8010100238 3.6288359 7356.9502
+21265.8010100713 3.6287963 7356.1636
+21266.8010101188 3.6291113 7356.5571
+21267.80101016629 3.6295838 7356.3604
+21268.80101021379 3.6301351 7356.1636
+21269.80101026129 3.63045 7355.5728
+21270.80101030879 3.6311586 7355.5728
+21271.80101035628 3.6312373 7355.7695
+21272.80101040378 3.6311586 7355.5728
+21273.80101045128 3.6315916 7355.7695
+21274.80101049878 3.6317492 7355.7695
+21275.80101054627 3.6314342 7356.7539
+21276.80101059377 3.6311193 7356.3604
+21277.80101064127 3.6308043 7355.7695
+21278.80101068877 3.630765 7355.7695
+21279.80101073626 3.6311586 7356.1636
+21280.80101078376 3.6311979 7355.5728
+21281.80101083126 3.6311979 7355.7695
+21282.80101087876 3.6314735 7355.7695
+21283.80101092625 3.6313555 7355.5728
+21284.80101097375 3.6310406 7356.1636
+21285.80101102125 3.630765 7356.5571
+21286.80101106875 3.630765 7356.3604
+21287.80101111624 3.6310406 7355.9663
+21288.80101116374 3.6310012 7356.1636
+21289.80101121124 3.6306863 7356.5571
+21290.80101125874 3.6303713 7356.3604
+21291.80101130623 3.6306863 7356.3604
+21292.80101135373 3.6305287 7355.9663
+21293.80101140123 3.6306074 7355.9663
+21294.80101144873 3.6307256 7356.3604
+21295.80101149622 3.6302137 7355.9663
+21296.80101154372 3.6298594 7355.7695
+21297.80101159122 3.6301351 7356.5571
+21298.80101163872 3.6303318 7356.1636
+21299.80101168621 3.6305287 7356.9502
+21300.80101173371 3.6310012 7356.3604
+21301.80101178121 3.6313162 7356.3604
+21302.80101182871 3.6313949 7356.9502
+21303.8010118762 3.6315129 7355.7695
+21304.8010119237 3.6313162 7356.9502
+21305.8010119712 3.6317492 7355.3765
+21306.8010120187 3.6320248 7356.3604
+21307.80101206619 3.6324184 7356.7539
+21308.80101211369 3.6329696 7356.5571
+21309.80101216119 3.633127 7355.3765
+21310.80101220869 3.6331666 7355.7695
+21311.80101225618 3.6330483 7356.3604
+21312.80101230368 3.6331666 7355.9663
+21313.80101235118 3.6333239 7355.9663
+21314.80101239868 3.6330876 7355.7695
+21315.80101244617 3.6327727 7355.7695
+21316.80101249367 3.6328516 7355.9663
+21317.80101254117 3.6328516 7355.9663
+21318.80101258866 3.6327333 7356.3604
+21319.80101263616 3.6331666 7355.9663
+21320.80101268366 3.6333632 7356.5571
+21321.80101273116 3.6332846 7355.7695
+21322.80101277865 3.6338358 7355.5728
+21323.80101282615 3.634387 7356.5571
+21324.80101287365 3.6344657 7356.1636
+21325.80101292115 3.6342294 7356.1636
+21326.80101296864 3.6339538 7356.1636
+21327.80101301614 3.6340721 7355.7695
+21328.80101306364 3.6344264 7355.9663
+21329.80101311114 3.6341507 7356.1636
+21330.80101315863 3.6341507 7355.9663
+21331.80101320613 3.6341114 7356.3604
+21332.80101325363 3.6340325 7355.9663
+21333.80101330113 3.6338358 7356.9502
+21334.80101334862 3.6338751 7356.7539
+21335.80101339612 3.6340325 7355.9663
+21336.80101344362 3.6344657 7356.1636
+21337.80101349112 3.634387 7356.1636
+21338.80101353861 3.634387 7356.3604
+21339.80101358611 3.6339538 7355.7695
+21340.80101363361 3.6333632 7356.3604
+21341.80101368111 3.6335602 7356.3604
+21342.8010137286 3.6337965 7355.5728
+21343.8010137761 3.6340721 7355.9663
+21344.8010138236 3.6339931 7356.3604
+21345.8010138711 3.6340721 7356.1636
+21346.80101391859 3.6342688 7356.5571
+21347.80101396609 3.6342294 7356.1636
+21348.80101401359 3.634387 7356.5571
+21349.80101406109 3.6346624 7356.5571
+21350.80101410858 3.634505 7356.7539
+21351.80101415608 3.6343081 7355.9663
+21352.80101420358 3.6341901 7355.9663
+21353.80101425108 3.6343474 7357.3442
+21354.80101429857 3.6345837 7356.5571
+21355.80101434607 3.6345444 7355.9663
+21356.80101439357 3.6344264 7355.9663
+21357.80101444107 3.634387 7355.9663
+21358.80101448856 3.6344264 7356.5571
+21359.80101453606 3.6348987 7355.7695
+21360.80101458356 3.6349773 7356.3604
+21361.80101463106 3.6350169 7355.7695
+21362.80101467855 3.6347413 7356.3604
+21363.80101472605 3.6346231 7355.9663
+21364.80101477355 3.6345444 7355.1797
+21365.80101482105 3.6343474 7356.3604
+21366.80101486854 3.6340721 7355.9663
+21367.80101491604 3.6341114 7356.5571
+21368.80101496354 3.6338358 7355.7695
+21369.80101501103 3.6335208 7355.7695
+21370.80101505853 3.6332059 7356.1636
+21371.80101510603 3.6332059 7356.5571
+21372.80101515353 3.6334419 7356.1636
+21373.80101520102 3.6338358 7355.9663
+21374.80101524852 3.6338751 7356.1636
+21375.80101529602 3.6337965 7356.3604
+21376.80101534352 3.6336782 7356.3604
+21377.80101539101 3.6333632 7356.3604
+21378.80101543851 3.6330876 7356.7539
+21379.80101548601 3.6328516 7356.5571
+21380.80101553351 3.632576 7355.5728
+21381.801015581 3.632576 7355.3765
+21382.8010156285 3.6326547 7355.7695
+21383.801015676 3.6329696 7355.7695
+21384.8010157235 3.6332846 7355.1797
+21385.80101577099 3.6335602 7356.1636
+21386.80101581849 3.633127 7356.5571
+21387.80101586599 3.6329303 7355.9663
+21388.80101591349 3.6328516 7355.9663
+21389.80101596098 3.6328516 7355.7695
+21390.80101600848 3.6327333 7356.3604
+21391.80101605598 3.6329303 7356.5571
+21392.80101610348 3.633127 7356.3604
+21393.80101615097 3.6329696 7355.9663
+21394.80101619847 3.633127 7356.3604
+21395.80101624597 3.633127 7356.3604
+21396.80101629347 3.6330483 7355.9663
+21397.80101634096 3.6329696 7355.9663
+21398.80101638846 3.6330876 7356.3604
+21399.80101643596 3.6332846 7356.5571
+21400.80101648346 3.6335995 7356.1636
+21401.80101653095 3.6337175 7356.1636
+21402.80101657845 3.6336389 7355.7695
+21403.80101662595 3.6335602 7355.1797
+21404.80101667345 3.6340721 7355.9663
+21405.80101672094 3.6344264 7356.5571
+21406.80101676844 3.6347806 7355.9663
+21407.80101681594 3.6348987 7356.1636
+21408.80101686344 3.6352136 7355.9663
+21409.80101691093 3.6352925 7356.3604
+21410.80101695843 3.6355679 7355.7695
+21411.80101700593 3.6359224 7356.1636
+21412.80101705343 3.6361978 7356.1636
+21413.80101710092 3.6360011 7355.7695
+21414.80101714842 3.6358435 7355.9663
+21415.80101719592 3.6359224 7356.3604
+21416.80101724342 3.6361191 7356.7539
+21417.80101729091 3.6360404 7356.5571
+21418.80101733841 3.6360798 7356.3604
+21419.80101738591 3.6361585 7357.1475
+21420.8010174334 3.6358829 7355.7695
+21421.8010174809 3.6359224 7355.9663
+21422.8010175284 3.6357255 7355.3765
+21423.8010175759 3.6354892 7355.5728
+21424.80101762339 3.6355679 7356.7539
+21425.80101767089 3.6356468 7356.3604
+21426.80101771839 3.6356862 7356.9502
+21427.80101776589 3.6356862 7355.9663
+21428.80101781338 3.6356468 7356.7539
+21429.80101786088 3.6353712 7356.1636
+21430.80101790838 3.6355286 7356.7539
+21431.80101795588 3.6353712 7355.7695
+21432.80101800337 3.635253 7355.9663
+21433.80101805087 3.6350563 7356.1636
+21434.80101809837 3.6348987 7356.1636
+21435.80101814587 3.6351349 7355.1797
+21436.80101819336 3.6352136 7356.7539
+21437.80101824086 3.6353712 7355.7695
+21438.80101828836 3.6353319 7356.3604
+21439.80101833586 3.6353319 7356.1636
+21440.80101838335 3.6353319 7356.5571
+21441.80101843085 3.6352136 7356.1636
+21442.80101847835 3.6356075 7356.3604
+21443.80101852585 3.6356468 7355.9663
+21444.80101857334 3.6357648 7356.3604
+21445.80101862084 3.6357255 7356.3604
+21446.80101866834 3.6354105 7356.1636
+21447.80101871584 3.6355679 7356.1636
+21448.80101876333 3.6356862 7356.5571
+21449.80101881083 3.6357255 7356.1636
+21450.80101885833 3.6360798 7356.5571
+21451.80101890583 3.6360798 7356.1636
+21452.80101895332 3.6359224 7355.5728
+21453.80101900082 3.6358042 7355.7695
+21454.80101904832 3.6355679 7355.9663
+21455.80101909582 3.6354892 7356.1636
+21456.80101914331 3.6356468 7356.1636
+21457.80101919081 3.6358829 7356.1636
+21458.80101923831 3.6356075 7356.5571
+21459.80101928581 3.6357255 7355.3765
+21460.8010193333 3.6359618 7355.9663
+21461.8010193808 3.6360404 7356.5571
+21462.8010194283 3.6360011 7356.5571
+21463.8010194758 3.6361191 7356.5571
+21464.80101952329 3.6360798 7356.3604
+21465.80101957079 3.6361191 7356.3604
+21466.80101961829 3.6363947 7356.1636
+21467.80101966579 3.6367097 7355.7695
+21468.80101971328 3.6367884 7355.9663
+21469.80101976078 3.636946 7356.5571
+21470.80101980828 3.6371033 7356.3604
+21471.80101985577 3.6372609 7355.5728
+21472.80101990327 3.6374183 7357.3442
+21473.80101995077 3.6378908 7355.7695
+21474.80101999827 3.6382844 7356.3604
+21475.80102004576 3.6383631 7356.1636
+21476.80102009326 3.6384027 7355.9663
+21477.80102014076 3.6384814 7356.1636
+21478.80102018826 3.6387963 7355.9663
+21479.80102023575 3.6389537 7356.9502
+21480.80102028325 3.6387963 7355.9663
+21481.80102033075 3.6385994 7355.9663
+21482.80102037825 3.6380088 7356.1636
+21483.80102042574 3.6379302 7355.7695
+21484.80102047324 3.6376939 7356.1636
+21485.80102052074 3.6377332 7355.9663
+21486.80102056824 3.6380088 7356.5571
+21487.80102061573 3.6382451 7355.5728
+21488.80102066323 3.6385994 7356.3604
+21489.80102071073 3.6385601 7356.5571
+21490.80102075823 3.6386387 7355.9663
+21491.80102080572 3.6386781 7355.7695
+21492.80102085322 3.6390326 7355.7695
+21493.80102090072 3.63919 7356.5571
+21494.80102094822 3.6392293 7356.7539
+21495.80102099571 3.6393082 7355.9663
+21496.80102104321 3.63919 7356.1636
+21497.80102109071 3.6392686 7356.1636
+21498.80102113821 3.6394656 7355.9663
+21499.8010211857 3.6395836 7356.3604
+21500.8010212332 3.6398199 7356.1636
+21501.8010212807 3.6399381 7355.5728
+21502.8010213282 3.6399775 7355.3765
+21503.80102137569 3.6398985 7355.9663
+21504.80102142319 3.6400168 7355.9663
+21505.80102147069 3.6402531 7356.9502
+21506.80102151819 3.6404104 7356.1636
+21507.80102156568 3.6403317 7355.9663
+21508.80102161318 3.6402531 7355.7695
+21509.80102166068 3.6401742 7355.7695
+21510.80102170818 3.6403711 7356.3604
+21511.80102175567 3.6408041 7356.3604
+21512.80102180317 3.6407254 7356.1636
+21513.80102185067 3.641001 7356.5571
+21514.80102189817 3.641001 7355.9663
+21515.80102194566 3.640883 7356.1636
+21516.80102199316 3.641001 7355.7695
+21517.80102204066 3.6408436 7356.5571
+21518.80102208816 3.6408436 7356.1636
+21519.80102213565 3.6409223 7355.9663
+21520.80102218315 3.6411586 7355.3765
+21521.80102223065 3.6409616 7356.3604
+21522.80102227815 3.6407254 7356.7539
+21523.80102232564 3.6403317 7356.9502
+21524.80102237314 3.6404891 7355.9663
+21525.80102242064 3.6406467 7356.3604
+21526.80102246813 3.640686 7356.1636
+21527.80102251563 3.6405284 7356.3604
+21528.80102256313 3.6403317 7356.1636
+21529.80102261063 3.6401742 7356.1636
+21530.80102265812 3.6403711 7355.9663
+21531.80102270562 3.6406074 7355.5728
+21532.80102275312 3.6407647 7356.7539
+21533.80102280062 3.6410403 7356.1636
+21534.80102284811 3.6410797 7356.1636
+21535.80102289561 3.6412373 7355.3765
+21536.80102294311 3.6412766 7356.3604
+21537.80102299061 3.6415522 7355.9663
+21538.8010230381 3.6413553 7356.3604
+21539.8010230856 3.641434 7355.7695
+21540.8010231331 3.6416309 7356.9502
+21541.8010231806 3.6416702 7356.5571
+21542.80102322809 3.6415915 7356.1636
+21543.80102327559 3.6415522 7355.9663
+21544.80102332309 3.6415129 7356.9502
+21545.80102337059 3.6413159 7355.9663
+21546.80102341808 3.6416702 7355.3765
+21547.80102346558 3.6419852 7355.9663
+21548.80102351308 3.6424971 7356.3604
+21549.80102356058 3.6426151 7356.7539
+21550.80102360807 3.642812 7356.3604
+21551.80102365557 3.6428514 7355.9663
+21552.80102370307 3.6427333 7355.5728
+21553.80102375057 3.6428907 7355.9663
+21554.80102379806 3.6430089 7355.7695
+21555.80102384556 3.6429694 7356.1636
+21556.80102389306 3.6430483 7355.9663
+21557.80102394056 3.64293 7356.1636
+21558.80102398805 3.642812 7356.3604
+21559.80102403555 3.6427727 7356.3604
+21560.80102408305 3.64293 7355.9663
+21561.80102413055 3.6428907 7356.3604
+21562.80102417804 3.642694 7355.5728
+21563.80102422554 3.6426544 7357.1475
+21564.80102427304 3.64293 7356.3604
+21565.80102432054 3.6428907 7356.9502
+21566.80102436803 3.6430089 7355.9663
+21567.80102441553 3.6430876 7356.1636
+21568.80102446303 3.6435993 7355.7695
+21569.80102451053 3.6440718 7356.5571
+21570.80102455802 3.6442294 7355.7695
+21571.80102460552 3.6444261 7355.5728
+21572.80102465302 3.6443474 7355.3765
+21573.80102470052 3.6442294 7356.3604
+21574.80102474801 3.6442688 7356.5571
+21575.80102479551 3.6442688 7356.3604
+21576.80102484301 3.6443474 7356.5571
+21577.8010248905 3.6443081 7355.7695
+21578.801024938 3.6443474 7355.7695
+21579.8010249855 3.6442688 7355.3765
+21580.801025033 3.6444261 7355.7695
+21581.80102508049 3.6447411 7355.9663
+21582.80102512799 3.6450167 7356.3604
+21583.80102517549 3.6454892 7355.9663
+21584.80102522299 3.6457646 7356.1636
+21585.80102527048 3.6459615 7356.7539
+21586.80102531798 3.6464734 7355.7695
+21587.80102536548 3.6468277 7356.1636
+21588.80102541298 3.646867 7355.7695
+21589.80102546047 3.6469457 7356.3604
+21590.80102550797 3.6469851 7356.3604
+21591.80102555547 3.646749 7355.9663
+21592.80102560297 3.6467097 7356.3604
+21593.80102565046 3.6466701 7355.7695
+21594.80102569796 3.6466701 7355.9663
+21595.80102574546 3.6467884 7355.5728
+21596.80102579296 3.6470246 7356.1636
+21597.80102584045 3.6470246 7356.1636
+21598.80102588795 3.6467884 7355.5728
+21599.80102593545 3.6467884 7356.1636
+21600.80102598295 3.647064 7356.7539
+21601.80102603044 3.6467884 7356.5571
+21602.80102607794 3.6468277 7356.3604
+21603.80102612544 3.6470246 7355.9663
+21604.80102617294 3.6474969 7355.7695
+21605.80102622043 3.6477332 7356.5571
+21606.80102626793 3.6479695 7356.1636
+21607.80102631543 3.6481662 7356.1636
+21608.80102636293 3.6482055 7356.7539
+21609.80102641042 3.6488354 7355.7695
+21610.80102645792 3.6494653 7355.5728
+21611.80102650542 3.6494653 7356.5571
+21612.80102655292 3.6494653 7356.1636
+21613.80102660041 3.6495049 7356.1636
+21614.80102664791 3.649426 7355.1797
+21615.80102669541 3.6493473 7355.3765
+21616.80102674291 3.6490717 7355.9663
+21617.8010267904 3.6491504 7355.9663
+21618.8010268379 3.6493473 7356.7539
+21619.8010268854 3.649308 7355.7695
+21620.8010269329 3.6494653 7356.3604
+21621.80102698039 3.6495049 7357.3442
+21622.80102702789 3.6494653 7355.7695
+21623.80102707539 3.6497016 7355.7695
+21624.80102712289 3.6498592 7355.7695
+21625.80102717038 3.6498985 7355.9663
+21626.80102721788 3.6500165 7356.3604
+21627.80102726538 3.6499379 7356.3604
+21628.80102731287 3.6500165 7356.7539
+21629.80102736037 3.6501348 7355.7695
+21630.80102740787 3.6502135 7357.1475
+21631.80102745537 3.6503708 7355.7695
+21632.80102750286 3.6506464 7355.9663
+21633.80102755036 3.650804 7355.5728
+21634.80102759786 3.651119 7355.9663
+21635.80102764536 3.6512764 7355.9663
+21636.80102769285 3.6515126 7356.7539
+21637.80102774035 3.6516309 7356.5571
+21638.80102778785 3.6516702 7355.9663
+21639.80102783535 3.6515913 7356.9502
+21640.80102788284 3.6513157 7356.5571
+21641.80102793034 3.6512764 7356.1636
+21642.80102797784 3.6511977 7355.5728
+21643.80102802534 3.6514339 7356.5571
+21644.80102807283 3.6517096 7355.1797
+21645.80102812033 3.6518669 7356.9502
+21646.80102816783 3.6517489 7356.9502
+21647.80102821533 3.6516702 7355.7695
+21648.80102826282 3.6519063 7355.7695
+21649.80102831032 3.6517882 7355.9663
+21650.80102835782 3.6517489 7356.1636
+21651.80102840532 3.6517882 7355.5728
+21652.80102845281 3.6517489 7356.1636
+21653.80102850031 3.651552 7355.1797
+21654.80102854781 3.6517882 7356.5571
+21655.80102859531 3.6521032 7356.7539
+21656.8010286428 3.6522212 7355.5728
+21657.8010286903 3.6523395 7356.1636
+21658.8010287378 3.6523788 7354.9824
+21659.8010287853 3.6525362 7356.5571
+21660.80102883279 3.6524181 7356.3604
+21661.80102888029 3.6524181 7355.7695
+21662.80102892779 3.6523788 7356.3604
+21663.80102897529 3.6522608 7355.7695
+21664.80102902278 3.6521819 7356.7539
+21665.80102907028 3.6522608 7357.3442
+21666.80102911778 3.6524181 7355.7695
+21667.80102916528 3.6524968 7354.9824
+21668.80102921277 3.6526151 7356.3604
+21669.80102926027 3.6526544 7356.3604
+21670.80102930777 3.6528511 7356.7539
+21671.80102935527 3.6531661 7356.5571
+21672.80102940276 3.6531267 7356.3604
+21673.80102945026 3.6532056 7355.7695
+21674.80102949776 3.653245 7356.1636
+21675.80102954526 3.6533237 7356.5571
+21676.80102959275 3.6531661 7356.7539
+21677.80102964025 3.6531267 7356.1636
+21678.80102968775 3.6532056 7356.3604
+21679.80102973524 3.6531661 7356.7539
+21680.80102978274 3.6534417 7356.1636
+21681.80102983024 3.6537566 7356.1636
+21682.80102987774 3.6539536 7355.9663
+21683.80102992523 3.6541898 7356.1636
+21684.80102997273 3.6543865 7356.1636
+21685.80103002023 3.6543865 7355.7695
+21686.80103006773 3.6544261 7355.9663
+21687.80103011522 3.6545835 7356.3604
+21688.80103016272 3.6548197 7355.9663
+21689.80103021022 3.6547804 7356.7539
+21690.80103025772 3.6545048 7356.3604
+21691.80103030521 3.6544654 7356.3604
+21692.80103035271 3.6545835 7355.5728
+21693.80103040021 3.6547015 7355.9663
+21694.80103044771 3.6549377 7356.7539
+21695.8010304952 3.6550953 7356.3604
+21696.8010305427 3.6552134 7355.9663
+21697.8010305902 3.655292 7355.9663
+21698.8010306377 3.6555676 7356.9502
+21699.80103068519 3.655607 7355.9663
+21700.80103073269 3.6556466 7355.9663
+21701.80103078019 3.6556859 7355.7695
+21702.80103082769 3.6554103 7355.9663
+21703.80103087518 3.6554496 7355.9663
+21704.80103092268 3.6555283 7355.9663
+21705.80103097018 3.655607 7355.1797
+21706.80103101768 3.6559219 7356.5571
+21707.80103106517 3.6561975 7356.7539
+21708.80103111267 3.6564338 7355.5728
+21709.80103116017 3.6565518 7356.3604
+21710.80103120767 3.6565518 7355.7695
+21711.80103125516 3.6562765 7356.1636
+21712.80103130266 3.6561189 7356.3604
+21713.80103135016 3.6560402 7355.3765
+21714.80103139766 3.6557252 7356.1636
+21715.80103144515 3.655489 7355.9663
+21716.80103149265 3.6555283 7356.1636
+21717.80103154015 3.6558826 7356.9502
+21718.80103158765 3.6562765 7357.1475
+21719.80103163514 3.6565518 7355.5728
+21720.80103168264 3.6565125 7355.7695
+21721.80103173014 3.6565518 7355.7695
+21722.80103177764 3.6566701 7355.9663
+21723.80103182513 3.6567881 7355.7695
+21724.80103187263 3.656867 7355.9663
+21725.80103192013 3.6568274 7356.1636
+21726.80103196763 3.656867 7356.3604
+21727.80103201512 3.6570244 7355.9663
+21728.80103206262 3.6569457 7356.5571
+21729.80103211012 3.6569457 7355.9663
+21730.80103215761 3.6569064 7356.3604
+21731.80103220511 3.656867 7356.7539
+21732.80103225261 3.6571424 7355.7695
+21733.80103230011 3.6574574 7355.9663
+21734.8010323476 3.6575363 7356.3604
+21735.8010323951 3.6578512 7356.3604
+21736.8010324426 3.6576936 7356.3604
+21737.8010324901 3.6574969 7355.3765
+21738.80103253759 3.6573 7356.1636
+21739.80103258509 3.6570244 7355.9663
+21740.80103263259 3.6567094 7356.3604
+21741.80103268009 3.6565518 7356.1636
+21742.80103272758 3.6566308 7355.9663
+21743.80103277508 3.6566308 7356.5571
+21744.80103282258 3.6567488 7356.5571
+21745.80103287008 3.656985 7355.5728
+21746.80103291757 3.6570637 7356.1636
+21747.80103296507 3.657418 7356.7539
+21748.80103301257 3.6576543 7356.3604
+21749.80103306007 3.6576149 7355.7695
+21750.80103310756 3.6578119 7355.9663
+21751.80103315506 3.6579692 7356.1636
+21752.80103320256 3.6581268 7356.5571
+21753.80103325006 3.6582448 7355.9663
+21754.80103329755 3.6584418 7355.9663
+21755.80103334505 3.6583629 7355.3765
+21756.80103339255 3.6582842 7355.7695
+21757.80103344005 3.6585205 7356.1636
+21758.80103348754 3.6584811 7355.9663
+21759.80103353504 3.6584811 7355.7695
+21760.80103358254 3.6588354 7356.9502
+21761.80103363004 3.6589928 7355.7695
+21762.80103367753 3.6591504 7356.7539
+21763.80103372503 3.6591897 7356.7539
+21764.80103377253 3.6593866 7356.3604
+21765.80103382003 3.6597016 7355.3765
+21766.80103386752 3.6598983 7356.3604
+21767.80103391502 3.6600952 7355.5728
+21768.80103396252 3.6602132 7356.1636
+21769.80103401002 3.6602132 7356.9502
+21770.80103405751 3.6603315 7355.3765
+21771.80103410501 3.6605282 7355.9663
+21772.80103415251 3.6607645 7356.1636
+21773.80103420001 3.6610007 7355.1797
+21774.8010342475 3.6611187 7356.1636
+21775.801034295 3.6609614 7355.7695
+21776.8010343425 3.661237 7355.5728
+21777.80103439 3.66167 7356.7539
+21778.80103443749 3.6622212 7355.9663
+21779.80103448499 3.6624181 7356.3604
+21780.80103453249 3.6623785 7356.5571
+21781.80103457998 3.6622605 7356.7539
+21782.80103462748 3.6622999 7355.5728
+21783.80103467498 3.6621819 7356.1636
+21784.80103472248 3.6622212 7356.1636
+21785.80103476997 3.6621029 7355.9663
+21786.80103481747 3.6621425 7356.5571
+21787.80103486497 3.6620636 7356.3604
+21788.80103491247 3.6624575 7355.1797
+21789.80103495996 3.6625361 7356.5571
+21790.80103500746 3.6623785 7356.7539
+21791.80103505496 3.6622999 7356.1636
+21792.80103510246 3.6623785 7355.9663
+21793.80103514995 3.6624575 7356.1636
+21794.80103519745 3.6624968 7355.9663
+21795.80103524495 3.6625755 7355.9663
+21796.80103529245 3.6626542 7356.1636
+21797.80103533994 3.6627724 7355.3765
+21798.80103538744 3.6628511 7356.9502
+21799.80103543494 3.6629298 7355.9663
+21800.80103548244 3.6627724 7355.5728
+21801.80103552993 3.6628904 7355.7695
+21802.80103557743 3.6628904 7356.1636
+21803.80103562493 3.6629298 7354.9824
+21804.80103567243 3.663166 7355.5728
+21805.80103571992 3.6634023 7356.3604
+21806.80103576742 3.6637566 7356.5571
+21807.80103581492 3.6641109 7355.9663
+21808.80103586242 3.6642289 7355.9663
+21809.80103590991 3.6645439 7354.3921
+21810.80103595741 3.6647408 7356.9502
+21811.80103600491 3.6648984 7355.9663
+21812.80103605241 3.6648588 7356.3604
+21813.8010360999 3.6649771 7356.7539
+21814.8010361474 3.6650558 7356.7539
+21815.8010361949 3.6650558 7356.3604
+21816.8010362424 3.665292 7356.1636
+21817.80103628989 3.66541 7355.9663
+21818.80103633739 3.6655676 7355.5728
+21819.80103638489 3.6655676 7356.5571
+21820.80103643239 3.6657643 7356.9502
+21821.80103647988 3.665725 7356.7539
+21822.80103652738 3.6658432 7356.1636
+21823.80103657488 3.6659219 7355.5728
+21824.80103662238 3.6658826 7355.9663
+21825.80103666987 3.6660793 7355.5728
+21826.80103671737 3.6662762 7356.1636
+21827.80103676487 3.6661189 7356.1636
+21828.80103681237 3.6661189 7354.9824
+21829.80103685986 3.6662762 7357.3442
+21830.80103690736 3.6665912 7356.3604
+21831.80103695486 3.6668668 7356.9502
+21832.80103700235 3.6671424 7356.3604
+21833.80103704985 3.6671817 7355.7695
+21834.80103709735 3.6670637 7355.1797
+21835.80103714485 3.6671031 7356.1636
+21836.80103719234 3.6671424 7356.7539
+21837.80103723984 3.6672997 7356.7539
+21838.80103728734 3.6673787 7355.5728
+21839.80103733484 3.6678116 7356.1636
+21840.80103738233 3.6679692 7356.1636
+21841.80103742983 3.6680872 7356.5571
+21842.80103747733 3.6680479 7356.1636
+21843.80103752483 3.6683235 7355.9663
+21844.80103757232 3.6683629 7355.5728
+21845.80103761982 3.6684022 7356.1636
+21846.80103766732 3.6685596 7356.3604
+21847.80103771482 3.6688352 7355.3765
+21848.80103776231 3.6689534 7355.9663
+21849.80103780981 3.6690714 7355.7695
+21850.80103785731 3.6689141 7355.7695
+21851.80103790481 3.6691895 7356.3604
+21852.8010379523 3.6692684 7356.1636
+21853.8010379998 3.6691895 7356.1636
+21854.8010380473 3.6691501 7355.9663
+21855.8010380948 3.6691501 7356.3604
+21856.80103814229 3.669229 7356.5571
+21857.80103818979 3.6692684 7356.1636
+21858.80103823729 3.6691501 7356.3604
+21859.80103828479 3.6690714 7356.7539
+21860.80103833228 3.6688745 7357.1475
+21861.80103837978 3.6686385 7356.3604
+21862.80103842728 3.6686385 7356.9502
+21863.80103847478 3.6686385 7356.7539
+21864.80103852227 3.6688352 7356.9502
+21865.80103856977 3.6689928 7355.5728
+21866.80103861727 3.6690714 7356.3604
+21867.80103866477 3.6687958 7356.1636
+21868.80103871226 3.6686385 7356.5571
+21869.80103875976 3.6685202 7355.9663
+21870.80103880726 3.6686385 7356.7539
+21871.80103885476 3.6687958 7356.7539
+21872.80103890225 3.6689141 7355.9663
+21873.80103894975 3.6688352 7355.9663
+21874.80103899725 3.6689928 7356.1636
+21875.80103904475 3.6689534 7356.3604
+21876.80103909224 3.6689928 7355.9663
+21877.80103913974 3.6689141 7356.3604
+21878.80103918724 3.6689141 7355.9663
+21879.80103923474 3.6689928 7355.9663
+21880.80103928223 3.6690714 7355.9663
+21881.80103932973 3.6692684 7356.3604
+21882.80103937723 3.6696227 7355.9663
+21883.80103942472 3.6697013 7355.9663
+21884.80103947222 3.6700556 7356.1636
+21885.80103951972 3.6701345 7356.1636
+21886.80103956722 3.6704495 7355.7695
+21887.80103961471 3.6704888 7356.5571
+21888.80103966221 3.6704888 7355.9663
+21889.80103970971 3.6704888 7355.1797
+21890.80103975721 3.6703312 7355.7695
+21891.8010398047 3.6705675 7355.7695
+21892.8010398522 3.6709218 7356.1636
+21893.8010398997 3.6710005 7355.5728
+21894.8010399472 3.6713154 7355.9663
+21895.80103999469 3.6713943 7355.3765
+21896.80104004219 3.6714337 7356.9502
+21897.80104008969 3.6714337 7356.3604
+21898.80104013719 3.671473 7356.7539
+21899.80104018468 3.6715517 7355.7695
+21900.80104023218 3.671591 7355.7695
+21901.80104027968 3.671473 7355.9663
+21902.80104032718 3.6716304 7355.1797
+21903.80104037467 3.6718273 7355.9663
+21904.80104042217 3.671906 7355.9663
+21905.80104046967 3.6718273 7355.7695
+21906.80104051717 3.6718273 7356.1636
+21907.80104056466 3.671788 7355.9663
+21908.80104061216 3.67167 7356.5571
+21909.80104065966 3.67167 7356.3604
+21910.80104070716 3.6717093 7356.3604
+21911.80104075465 3.6718273 7355.5728
+21912.80104080215 3.6719453 7355.9663
+21913.80104084965 3.6722209 7355.9663
+21914.80104089715 3.6723392 7355.9663
+21915.80104094464 3.6725359 7356.1636
+21916.80104099214 3.6725359 7355.5728
+21917.80104103964 3.6728115 7356.1636
+21918.80104108714 3.6729298 7355.7695
+21919.80104113463 3.6730478 7355.9663
+21920.80104118213 3.6730478 7355.7695
+21921.80104122963 3.6734807 7355.3765
+21922.80104127713 3.6735597 7356.3604
+21923.80104132462 3.6735203 7354.9824
+21924.80104137212 3.6735203 7356.5571
+21925.80104141962 3.6734807 7356.5571
+21926.80104146712 3.673599 7356.3604
+21927.80104151461 3.6737957 7356.7539
+21928.80104156211 3.673914 7355.9663
+21929.80104160961 3.6740713 7356.1636
+21930.80104165711 3.6743469 7355.5728
+21931.8010417046 3.6744256 7356.1636
+21932.8010417521 3.6743469 7355.9663
+21933.8010417996 3.6745045 7355.3765
+21934.80104184709 3.6745832 7356.5571
+21935.80104189459 3.6748195 7356.1636
+21936.80104194209 3.6752918 7356.3604
+21937.80104198959 3.6756856 7355.9663
+21938.80104203708 3.675843 7355.7695
+21939.80104208458 3.6758037 7356.5571
+21940.80104213208 3.6760399 7356.3604
+21941.80104217958 3.6761973 7356.1636
+21942.80104222707 3.6763155 7355.5728
+21943.80104227457 3.6762366 7356.1636
+21944.80104232207 3.6760006 7355.5728
+21945.80104236957 3.6758823 7356.1636
+21946.80104241706 3.6757643 7355.5728
+21947.80104246456 3.675725 7356.1636
+21948.80104251206 3.675843 7356.5571
+21949.80104255956 3.675961 7356.1636
+21950.80104260705 3.6760793 7355.7695
+21951.80104265455 3.676158 7355.9663
+21952.80104270205 3.6763155 7355.7695
+21953.80104274955 3.6763155 7355.3765
+21954.80104279704 3.6764336 7355.3765
+21955.80104284454 3.6765912 7355.9663
+21956.80104289204 3.6765516 7355.9663
+21957.80104293954 3.6768272 7355.9663
+21958.80104298703 3.6769061 7356.7539
+21959.80104303453 3.6769061 7356.9502
+21960.80104308203 3.6767485 7356.5571
+21961.80104312953 3.6767092 7355.9663
+21962.80104317702 3.6766305 7356.1636
+21963.80104322452 3.6767092 7355.9663
+21964.80104327202 3.6767879 7355.5728
+21965.80104331952 3.6770241 7355.9663
+21966.80104336701 3.6772211 7356.3604
+21967.80104341451 3.6773391 7355.9663
+21968.80104346201 3.6774571 7356.3604
+21969.80104350951 3.6776934 7355.9663
+21970.801043557 3.6778903 7355.9663
+21971.8010436045 3.678087 7356.3604
+21972.801043652 3.6780083 7355.7695
+21973.8010436995 3.677969 7356.1636
+21974.80104374699 3.6778903 7356.3604
+21975.80104379449 3.6778114 7356.1636
+21976.80104384199 3.6779296 7356.1636
+21977.80104388949 3.6781659 7355.9663
+21978.80104393698 3.6782053 7355.1797
+21979.80104398448 3.6783233 7356.7539
+21980.80104403198 3.6784415 7356.3604
+21981.80104407948 3.6784415 7356.3604
+21982.80104412697 3.6785202 7356.3604
+21983.80104417447 3.6787565 7355.9663
+21984.80104422197 3.6790318 7356.9502
+21985.80104426946 3.6791894 7356.1636
+21986.80104431696 3.6795437 7356.7539
+21987.80104436446 3.6796224 7355.9663
+21988.80104441196 3.6797013 7355.7695
+21989.80104445945 3.679898 7356.5571
+21990.80104450695 3.6798193 7356.3604
+21991.80104455445 3.679898 7355.5728
+21992.80104460195 3.6800556 7355.7695
+21993.80104464944 3.6799767 7356.7539
+21994.80104469694 3.680213 7356.3604
+21995.80104474444 3.6802523 7355.5728
+21996.80104479194 3.6804492 7355.9663
+21997.80104483943 3.6805279 7356.1636
+21998.80104488693 3.6808429 7355.5728
+21999.80104493443 3.6810791 7355.3765
+22000.80104498193 3.6812367 7356.1636
+22001.80104502942 3.6811578 7356.1636
+22002.80104507692 3.6813154 7355.9663
+22003.80104512442 3.6813941 7355.9663
+22004.80104517192 3.6816304 7356.3604
+22005.80104521941 3.6817484 7355.1797
+22006.80104526691 3.682024 7357.1475
+22007.80104531441 3.682024 7356.3604
+22008.80104536191 3.6820633 7355.5728
+22009.8010454094 3.6819847 7356.1636
+22010.8010454569 3.681906 7355.7695
+22011.8010455044 3.6821423 7356.1636
+22012.8010455519 3.682024 7356.1636
+22013.80104559939 3.6820633 7355.7695
+22014.80104564689 3.6819847 7356.3604
+22015.80104569439 3.6821027 7356.7539
+22016.80104574189 3.6821816 7356.7539
+22017.80104578938 3.6822996 7356.1636
+22018.80104583688 3.682339 7355.7695
+22019.80104588438 3.6824176 7355.7695
+22020.80104593188 3.6824965 7355.1797
+22021.80104597937 3.6824965 7356.3604
+22022.80104602687 3.6825359 7354.9824
+22023.80104607437 3.6825359 7355.9663
+22024.80104612187 3.6826539 7355.7695
+22025.80104616936 3.6825359 7355.7695
+22026.80104621686 3.6824572 7356.1636
+22027.80104626436 3.6822996 7355.9663
+22028.80104631186 3.6821423 7356.3604
+22029.80104635935 3.6821027 7356.5571
+22030.80104640685 3.682024 7356.5571
+22031.80104645435 3.6821423 7355.9663
+22032.80104650185 3.682024 7356.1636
+22033.80104654934 3.6821423 7356.1636
+22034.80104659684 3.682024 7355.5728
+22035.80104664434 3.682024 7355.9663
+22036.80104669183 3.6820633 7356.7539
+22037.80104673933 3.6820633 7355.7695
+22038.80104678683 3.6821027 7355.5728
+22039.80104683433 3.6821027 7355.9663
+22040.80104688182 3.6820633 7356.3604
+22041.80104692932 3.6820633 7356.7539
+22042.80104697682 3.682024 7356.1636
+22043.80104702432 3.6821816 7355.7695
+22044.80104707181 3.6821816 7356.3604
+22045.80104711931 3.6824572 7356.1636
+22046.80104716681 3.6826146 7356.3604
+22047.80104721431 3.6827326 7355.9663
+22048.8010472618 3.6830475 7356.5571
+22049.8010473093 3.6830082 7356.1636
+22050.8010473568 3.6832838 7355.9663
+22051.8010474043 3.6835594 7356.3604
+22052.80104745179 3.6836381 7355.7695
+22053.80104749929 3.683717 7356.5571
+22054.80104754679 3.6839137 7355.5728
+22055.80104759429 3.684032 7355.7695
+22056.80104764178 3.684032 7356.3604
+22057.80104768928 3.68415 7356.5571
+22058.80104773678 3.6844256 7355.9663
+22059.80104778428 3.6847405 7356.3604
+22060.80104783177 3.6847012 7357.1475
+22061.80104787927 3.6847799 7355.9663
+22062.80104792677 3.6848192 7355.7695
+22063.80104797427 3.6850948 7356.1636
+22064.80104802176 3.6850162 7355.9663
+22065.80104806926 3.6851342 7355.3765
+22066.80104811676 3.6850948 7356.5571
+22067.80104816426 3.6850162 7356.7539
+22068.80104821175 3.6849375 7356.5571
+22069.80104825925 3.6848979 7355.9663
+22070.80104830675 3.6849768 7356.3604
+22071.80104835425 3.6849375 7355.9663
+22072.80104840174 3.6848979 7356.1636
+22073.80104844924 3.6850162 7355.9663
+22074.80104849674 3.6850162 7355.9663
+22075.80104854424 3.6851342 7355.9663
+22076.80104859173 3.6850162 7355.9663
+22077.80104863923 3.6848586 7355.5728
+22078.80104868673 3.6849768 7355.9663
+22079.80104873423 3.6848586 7356.3604
+22080.80104878172 3.6847012 7355.7695
+22081.80104882922 3.6848192 7355.3765
+22082.80104887672 3.6848586 7356.3604
+22083.80104892422 3.6847799 7355.9663
+22084.80104897171 3.6847405 7355.5728
+22085.80104901921 3.6845829 7356.9502
+22086.80104906671 3.6847012 7356.1636
+22087.8010491142 3.6846225 7355.1797
+22088.8010491617 3.6846225 7355.7695
+22089.8010492092 3.6845829 7355.9663
+22090.8010492567 3.6844256 7355.3765
+22091.80104930419 3.6845436 7356.1636
+22092.80104935169 3.6844256 7355.3765
+22093.80104939919 3.6846225 7355.7695
+22094.80104944669 3.6847799 7355.3765
+22095.80104949418 3.6846225 7355.7695
+22096.80104954168 3.6845829 7356.1636
+22097.80104958918 3.6847012 7356.1636
+22098.80104963668 3.6848586 7355.7695
+22099.80104968417 3.6848586 7356.1636
+22100.80104973167 3.6851342 7356.1636
+22101.80104977917 3.6851735 7356.5571
+22102.80104982667 3.6852129 7356.7539
+22103.80104987416 3.6854098 7356.1636
+22104.80104992166 3.6856067 7355.5728
+22105.80104996916 3.6858034 7356.1636
+22106.80105001666 3.6860003 7355.9663
+22107.80105006415 3.6859217 7355.7695
+22108.80105011165 3.6861184 7355.1797
+22109.80105015915 3.6863153 7356.3604
+22110.80105020665 3.6864333 7355.7695
+22111.80105025414 3.6866696 7356.9502
+22112.80105030164 3.6866696 7356.5571
+22113.80105034914 3.6869452 7356.3604
+22114.80105039664 3.6869845 7356.1636
+22115.80105044413 3.6871028 7356.1636
+22116.80105049163 3.6872208 7356.7539
+22117.80105053913 3.6873784 7356.1636
+22118.80105058663 3.6874571 7356.5571
+22119.80105063412 3.6875751 7355.7695
+22120.80105068162 3.6876934 7355.9663
+22121.80105072912 3.6876538 7355.3765
+22122.80105077662 3.6876538 7355.9663
+22123.80105082411 3.6875358 7356.1636
+22124.80105087161 3.6876144 7355.7695
+22125.80105091911 3.6877327 7355.9663
+22126.80105096661 3.6879687 7356.1636
+22127.8010510141 3.687772 7355.7695
+22128.8010510616 3.687772 7356.5571
+22129.8010511091 3.6878507 7356.9502
+22130.8010511566 3.6879687 7355.9663
+22131.80105120409 3.6878901 7356.1636
+22132.80105125159 3.6878901 7356.1636
+22133.80105129909 3.6878901 7355.5728
+22134.80105134659 3.6879294 7356.1636
+22135.80105139408 3.6878507 7356.9502
+22136.80105144158 3.687772 7356.1636
+22137.80105148908 3.6877327 7356.3604
+22138.80105153658 3.6875751 7356.1636
+22139.80105158407 3.6875751 7356.5571
+22140.80105163157 3.6875751 7356.7539
+22141.80105167907 3.6874964 7355.5728
+22142.80105172656 3.6875751 7355.3765
+22143.80105177406 3.6878507 7355.9663
+22144.80105182156 3.6880083 7356.5571
+22145.80105186906 3.6878901 7355.9663
+22146.80105191655 3.6878901 7356.5571
+22147.80105196405 3.6878901 7355.3765
+22148.80105201155 3.6878507 7356.1636
+22149.80105205905 3.687772 7355.9663
+22150.80105210654 3.6879294 7356.1636
+22151.80105215404 3.6879294 7355.5728
+22152.80105220154 3.6879687 7357.1475
+22153.80105224904 3.6878507 7356.1636
+22154.80105229653 3.6878901 7356.1636
+22155.80105234403 3.6879294 7356.1636
+22156.80105239153 3.6879687 7355.5728
+22157.80105243903 3.6880476 7356.1636
+22158.80105248652 3.688205 7356.3604
+22159.80105253402 3.6884413 7356.5571
+22160.80105258152 3.68852 7355.7695
+22161.80105262902 3.6884019 7355.7695
+22162.80105267651 3.6886382 7355.5728
+22163.80105272401 3.6888349 7356.3604
+22164.80105277151 3.6888742 7356.1636
+22165.80105281901 3.6888742 7356.1636
+22166.8010528665 3.6891892 7355.5728
+22167.801052914 3.6892681 7356.1636
+22168.8010529615 3.6896224 7356.1636
+22169.801053009 3.6898191 7356.5571
+22170.80105305649 3.689898 7355.7695
+22171.80105310399 3.6897404 7355.9663
+22172.80105315149 3.6896617 7355.9663
+22173.80105319899 3.6895831 7356.9502
+22174.80105324648 3.6895437 7355.7695
+22175.80105329398 3.6896224 7356.1636
+22176.80105334148 3.6896617 7356.1636
+22177.80105338898 3.6897404 7356.3604
+22178.80105343647 3.6898191 7355.9663
+22179.80105348397 3.689898 7356.3604
+22180.80105353147 3.6898587 7356.3604
+22181.80105357897 3.6899767 7355.7695
+22182.80105362646 3.689898 7356.7539
+22183.80105367396 3.6898191 7355.7695
+22184.80105372146 3.6897011 7356.3604
+22185.80105376896 3.6896617 7356.9502
+22186.80105381645 3.6898191 7356.3604
+22187.80105386395 3.6897798 7355.7695
+22188.80105391145 3.6897798 7356.5571
+22189.80105395895 3.6898191 7356.3604
+22190.80105400644 3.6899767 7355.3765
+22191.80105405394 3.6898587 7356.3604
+22192.80105410144 3.6899767 7356.9502
+22193.80105414893 3.6900947 7356.1636
+22194.80105419643 3.6899767 7356.1636
+22195.80105424393 3.6899374 7356.5571
+22196.80105429143 3.690016 7355.9663
+22197.80105433892 3.6901736 7355.7695
+22198.80105438642 3.6902523 7356.1636
+22199.80105443392 3.690331 7355.9663
+22200.80105448142 3.690331 7355.9663
+22201.80105452891 3.6902523 7356.1636
+22202.80105457641 3.690449 7357.1475
+22203.80105462391 3.690331 7356.1636
+22204.80105467141 3.6903703 7356.7539
+22205.8010547189 3.6902523 7355.7695
+22206.8010547664 3.6904097 7356.1636
+22207.8010548139 3.690331 7356.1636
+22208.8010548614 3.6904097 7355.9663
+22209.80105490889 3.6904886 7356.1636
+22210.80105495639 3.690449 7356.5571
+22211.80105500389 3.690449 7355.9663
+22212.80105505139 3.690449 7356.3604
+22213.80105509888 3.690449 7356.3604
+22214.80105514638 3.690449 7355.3765
+22215.80105519388 3.6903703 7355.9663
+22216.80105524138 3.6905673 7355.7695
+22217.80105528887 3.6904886 7356.3604
+22218.80105533637 3.6905673 7355.9663
+22219.80105538387 3.6906459 7356.5571
+22220.80105543137 3.6908035 7356.5571
+22221.80105547886 3.6908822 7356.9502
+22222.80105552636 3.6908822 7356.3604
+22223.80105557386 3.6908429 7355.5728
+22224.80105562136 3.6908035 7355.9663
+22225.80105566885 3.6908822 7356.3604
+22226.80105571635 3.6909609 7356.1636
+22227.80105576385 3.6911578 7356.5571
+22228.80105581135 3.6912758 7355.9663
+22229.80105585884 3.6914728 7356.1636
+22230.80105590634 3.6918271 7355.9663
+22231.80105595384 3.6918664 7356.5571
+22232.80105600134 3.6920633 7355.7695
+22233.80105604883 3.6921813 7355.7695
+22234.80105609633 3.6922994 7356.1636
+22235.80105614383 3.6922207 7355.9663
+22236.80105619133 3.6923389 7356.5571
+22237.80105623882 3.6922994 7356.5571
+22238.80105628632 3.6924176 7356.3604
+22239.80105633382 3.6924963 7355.9663
+22240.80105638132 3.6926539 7356.5571
+22241.80105642881 3.6928899 7356.5571
+22242.80105647631 3.6929295 7356.3604
+22243.80105652381 3.6929295 7356.5571
+22244.8010565713 3.6930869 7356.1636
+22245.8010566188 3.6931262 7356.9502
+22246.8010566663 3.6932049 7356.7539
+22247.8010567138 3.6932838 7356.1636
+22248.80105676129 3.6935594 7356.5571
+22249.80105680879 3.6937168 7355.3765
+22250.80105685629 3.6938348 7357.1475
+22251.80105690379 3.6939137 7356.3604
+22252.80105695128 3.6939924 7355.9663
+22253.80105699878 3.6940711 7357.3442
+22254.80105704628 3.6942286 7355.9663
+22255.80105709378 3.6944649 7356.7539
+22256.80105714127 3.6944649 7355.3765
+22257.80105718877 3.6947403 7355.5728
+22258.80105723627 3.6950552 7355.9663
+22259.80105728377 3.6950552 7356.5571
+22260.80105733126 3.6949766 7356.5571
+22261.80105737876 3.6950948 7355.7695
+22262.80105742626 3.6951342 7356.1636
+22263.80105747376 3.6951342 7355.7695
+22264.80105752125 3.6952522 7356.9502
+22265.80105756875 3.6953309 7355.9663
+22266.80105761625 3.6952522 7355.9663
+22267.80105766375 3.6954098 7355.9663
+22268.80105771124 3.6955671 7356.1636
+22269.80105775874 3.6954885 7356.3604
+22270.80105780624 3.6955671 7354.9824
+22271.80105785374 3.6957247 7356.9502
+22272.80105790123 3.6958821 7355.5728
+22273.80105794873 3.6959608 7356.1636
+22274.80105799623 3.6959214 7355.3765
+22275.80105804373 3.6959608 7355.9663
+22276.80105809122 3.6960001 7355.9663
+22277.80105813872 3.696197 7355.7695
+22278.80105818622 3.6962364 7355.9663
+22279.80105823372 3.696394 7356.3604
+22280.80105828121 3.6964726 7355.5728
+22281.80105832871 3.6964726 7355.7695
+22282.80105837621 3.6963153 7355.9663
+22283.80105842371 3.6964333 7355.3765
+22284.8010584712 3.6964333 7355.5728
+22285.8010585187 3.696512 7356.5571
+22286.8010585662 3.6966302 7356.1636
+22287.8010586137 3.6966696 7356.3604
+22288.80105866119 3.6967089 7355.7695
+22289.80105870869 3.6967483 7356.1636
+22290.80105875619 3.6968663 7356.1636
+22291.80105880369 3.6967483 7356.7539
+22292.80105885118 3.6967089 7355.9663
+22293.80105889868 3.6966696 7356.1636
+22294.80105894618 3.6967089 7356.5571
+22295.80105899367 3.6967876 7356.3604
+22296.80105904117 3.6967876 7356.5571
+22297.80105908867 3.6969056 7355.9663
+22298.80105913617 3.6969056 7355.9663
+22299.80105918366 3.6969845 7355.9663
+22300.80105923116 3.6971812 7356.3604
+22301.80105927866 3.6973782 7356.1636
+22302.80105932616 3.6974962 7355.9663
+22303.80105937365 3.6974962 7355.3765
+22304.80105942115 3.6975355 7356.7539
+22305.80105946865 3.6975751 7356.3604
+22306.80105951615 3.6976538 7355.9663
+22307.80105956364 3.6976538 7355.7695
+22308.80105961114 3.69789 7355.5728
+22309.80105965864 3.6978505 7355.9663
+22310.80105970614 3.6978505 7355.9663
+22311.80105975363 3.6978111 7356.1636
+22312.80105980113 3.6978111 7356.7539
+22313.80105984863 3.6978505 7355.7695
+22314.80105989613 3.6978505 7356.3604
+22315.80105994362 3.6977324 7356.3604
+22316.80105999112 3.6979294 7356.7539
+22317.80106003862 3.6977324 7355.9663
+22318.80106008612 3.69789 7356.5571
+22319.80106013361 3.6980474 7356.1636
+22320.80106018111 3.6980867 7356.9502
+22321.80106022861 3.698205 7356.5571
+22322.80106027611 3.6980867 7356.3604
+22323.8010603236 3.6981657 7356.1636
+22324.8010603711 3.6981657 7355.9663
+22325.8010604186 3.6982837 7356.9502
+22326.8010604661 3.6983624 7356.1636
+22327.80106051359 3.6985986 7355.9663
+22328.80106056109 3.698638 7356.7539
+22329.80106060859 3.698756 7356.3604
+22330.80106065609 3.6987956 7356.7539
+22331.80106070358 3.6989529 7355.7695
+22332.80106075108 3.6989923 7356.3604
+22333.80106079858 3.6989923 7356.3604
+22334.80106084608 3.6991105 7356.7539
+22335.80106089357 3.6990709 7355.9663
+22336.80106094107 3.6989923 7356.1636
+22337.80106098857 3.6991105 7355.3765
+22338.80106103607 3.6991892 7356.3604
+22339.80106108356 3.6994255 7356.7539
+22340.80106113106 3.6993465 7356.7539
+22341.80106117856 3.6994648 7355.7695
+22342.80106122606 3.6995435 7356.3604
+22343.80106127355 3.6995828 7356.5571
+22344.80106132105 3.6995435 7356.1636
+22345.80106136855 3.6996222 7355.9663
+22346.80106141604 3.6994255 7355.7695
+22347.80106146354 3.6995041 7356.9502
+22348.80106151104 3.6995041 7355.7695
+22349.80106155854 3.6996222 7356.5571
+22350.80106160603 3.6997404 7356.5571
+22351.80106165353 3.6998584 7356.1636
+22352.80106170103 3.6998584 7356.3604
+22353.80106174853 3.6998978 7357.1475
+22354.80106179602 3.6999764 7356.7539
+22355.80106184352 3.7001734 7356.5571
+22356.80106189102 3.7004097 7356.5571
+22357.80106193852 3.7005277 7355.5728
+22358.80106198601 3.7007246 7356.3604
+22359.80106203351 3.7008426 7356.3604
+22360.80106208101 3.700882 7355.9663
+22361.80106212851 3.7009213 7356.1636
+22362.801062176 3.7009213 7356.3604
+22363.8010622235 3.7010789 7355.9663
+22364.801062271 3.7011182 7355.5728
+22365.8010623185 3.7013938 7355.5728
+22366.80106236599 3.7015512 7355.3765
+22367.80106241349 3.7018268 7356.5571
+22368.80106246099 3.7018664 7356.3604
+22369.80106250849 3.7018664 7355.9663
+22370.80106255598 3.7017875 7356.3604
+22371.80106260348 3.7017481 7356.3604
+22372.80106265098 3.7019057 7355.9663
+22373.80106269848 3.7019057 7356.1636
+22374.80106274597 3.7021418 7355.9663
+22375.80106279347 3.7021024 7355.5728
+22376.80106284097 3.7021024 7356.3604
+22377.80106288847 3.7024174 7356.1636
+22378.80106293596 3.7024174 7355.5728
+22379.80106298346 3.7027323 7356.7539
+22380.80106303096 3.702693 7355.9663
+22381.80106307846 3.7029686 7356.1636
+22382.80106312595 3.7028506 7356.9502
+22383.80106317345 3.7028899 7355.9663
+22384.80106322095 3.7028112 7356.5571
+22385.80106326845 3.7030079 7355.3765
+22386.80106331594 3.7029293 7356.3604
+22387.80106336344 3.7030473 7355.7695
+22388.80106341094 3.7031655 7356.7539
+22389.80106345844 3.7032442 7356.1636
+22390.80106350593 3.7034411 7355.5728
+22391.80106355343 3.7034018 7356.1636
+22392.80106360093 3.7035198 7356.1636
+22393.80106364843 3.7035592 7355.5728
+22394.80106369592 3.7036378 7355.9663
+22395.80106374342 3.7036772 7356.7539
+22396.80106379092 3.7036378 7356.1636
+22397.80106383841 3.7037168 7356.3604
+22398.80106388591 3.7034805 7355.3765
+22399.80106393341 3.7035985 7356.5571
+22400.80106398091 3.7034018 7356.1636
+22401.8010640284 3.7032442 7356.7539
+22402.8010640759 3.7032442 7355.9663
+22403.8010641234 3.7031262 7356.7539
+22404.8010641709 3.7030473 7356.7539
+22405.80106421839 3.7030473 7355.3765
+22406.80106426589 3.7030473 7356.3604
+22407.80106431339 3.7030866 7355.7695
+22408.80106436089 3.7032049 7355.5728
+22409.80106440838 3.7031262 7356.3604
+22410.80106445588 3.7030866 7355.7695
+22411.80106450338 3.7030079 7356.3604
+22412.80106455088 3.7029293 7355.9663
+22413.80106459837 3.7029293 7356.5571
+22414.80106464587 3.7028899 7356.5571
+22415.80106469337 3.7029293 7355.3765
+22416.80106474087 3.7028899 7355.5728
+22417.80106478836 3.7028899 7355.7695
+22418.80106483586 3.7031262 7356.1636
+22419.80106488336 3.7030866 7356.5571
+22420.80106493086 3.7031655 7356.9502
+22421.80106497835 3.7032835 7355.9663
+22422.80106502585 3.7033229 7356.7539
+22423.80106507335 3.7031262 7355.9663
+22424.80106512085 3.7032049 7356.5571
+22425.80106516834 3.7031655 7356.3604
+22426.80106521584 3.7033622 7355.7695
+22427.80106526334 3.7034411 7355.7695
+22428.80106531084 3.7035198 7356.1636
+22429.80106535833 3.7035198 7356.3604
+22430.80106540583 3.7035198 7355.7695
+22431.80106545333 3.7034805 7356.3604
+22432.80106550083 3.7036772 7356.3604
+22433.80106554832 3.7037561 7356.3604
+22434.80106559582 3.704071 7355.7695
+22435.80106564332 3.7042284 7355.9663
+22436.80106569082 3.7042677 7356.5571
+22437.80106573831 3.704504 7355.9663
+22438.80106578581 3.7047403 7356.7539
+22439.80106583331 3.7049766 7355.9663
+22440.80106588081 3.7052522 7356.9502
+22441.8010659283 3.7055275 7356.3604
+22442.8010659758 3.7055671 7355.7695
+22443.8010660233 3.7058821 7356.5571
+22444.8010660708 3.7059214 7356.5571
+22445.80106611829 3.7060788 7355.3765
+22446.80106616579 3.7063544 7356.5571
+22447.80106621329 3.7065907 7355.7695
+22448.80106626078 3.7069449 7356.3604
+22449.80106630828 3.707063 7355.5728
+22450.80106635578 3.7073779 7357.1475
+22451.80106640328 3.7073386 7356.9502
+22452.80106645077 3.7076142 7355.9663
+22453.80106649827 3.7076535 7356.3604
+22454.80106654577 3.7078898 7355.5728
+22455.80106659327 3.7078898 7356.5571
+22456.80106664076 3.7079291 7356.9502
+22457.80106668826 3.7078898 7355.7695
+22458.80106673576 3.7080078 7355.9663
+22459.80106678326 3.7080474 7355.9663
+22460.80106683075 3.7083623 7355.7695
+22461.80106687825 3.7084804 7355.9663
+22462.80106692575 3.708756 7356.9502
+22463.80106697325 3.708874 7356.5571
+22464.80106702074 3.7090709 7355.7695
+22465.80106706824 3.7090709 7355.9663
+22466.80106711574 3.7091889 7356.1636
+22467.80106716324 3.7092283 7355.9663
+22468.80106721073 3.7092679 7356.3604
+22469.80106725823 3.7093465 7355.7695
+22470.80106730573 3.7094646 7356.1636
+22471.80106735323 3.7095432 7355.9663
+22472.80106740072 3.7096615 7357.1475
+22473.80106744822 3.7097402 7356.5571
+22474.80106749572 3.7097008 7355.9663
+22475.80106754322 3.7097402 7357.1475
+22476.80106759071 3.7097795 7356.7539
+22477.80106763821 3.7098978 7355.7695
+22478.80106768571 3.7100551 7355.5728
+22479.80106773321 3.7103701 7355.9663
+22480.8010677807 3.7104487 7355.5728
+22481.8010678282 3.7104487 7356.5571
+22482.8010678757 3.7104487 7355.3765
+22483.8010679232 3.7104881 7356.9502
+22484.80106797069 3.7105277 7356.1636
+22485.80106801819 3.7105277 7356.5571
+22486.80106806569 3.7104487 7355.7695
+22487.80106811319 3.7104094 7355.5728
+22488.80106816068 3.710567 7355.7695
+22489.80106820818 3.7106063 7355.7695
+22490.80106825568 3.7104487 7355.9663
+22491.80106830318 3.710567 7356.3604
+22492.80106835067 3.710567 7355.7695
+22493.80106839817 3.7106063 7356.7539
+22494.80106844567 3.710685 7356.1636
+22495.80106849317 3.7107244 7356.1636
+22496.80106854066 3.7108819 7355.7695
+22497.80106858816 3.7109606 7356.5571
+22498.80106863566 3.7110393 7356.5571
+22499.80106868315 3.7111576 7355.5728
+22500.80106873065 3.7113149 7356.1636
+22501.80106877815 3.7112756 7356.3604
+22502.80106882565 3.7113543 7355.7695
+22503.80106887314 3.7112362 7356.5571
+22504.80106892064 3.7111182 7356.3604
+22505.80106896814 3.7112362 7355.7695
+22506.80106901564 3.7112756 7355.1797
+22507.80106906313 3.7112362 7356.1636
+22508.80106911063 3.7111182 7356.3604
+22509.80106915813 3.7112362 7355.5728
+22510.80106920563 3.7112362 7355.5728
+22511.80106925312 3.7112756 7356.7539
+22512.80106930062 3.7112756 7356.3604
+22513.80106934812 3.7115512 7355.5728
+22514.80106939562 3.7115119 7356.3604
+22515.80106944311 3.7115119 7355.7695
+22516.80106949061 3.7118268 7355.5728
+22517.80106953811 3.7120235 7355.7695
+22518.80106958561 3.7120631 7356.1636
+22519.8010696331 3.7122204 7355.5728
+22520.8010696806 3.712378 7355.5728
+22521.8010697281 3.712496 7356.5571
+22522.8010697756 3.712693 7356.7539
+22523.80106982309 3.712693 7355.7695
+22524.80106987059 3.7126536 7355.9663
+22525.80106991809 3.7126141 7355.9663
+22526.80106996559 3.7124567 7355.7695
+22527.80107001308 3.7124174 7355.9663
+22528.80107006058 3.7123387 7356.3604
+22529.80107010808 3.7121418 7355.9663
+22530.80107015558 3.7122204 7356.1636
+22531.80107020307 3.712496 7356.3604
+22532.80107025057 3.7124567 7356.1636
+22533.80107029807 3.712496 7355.7695
+22534.80107034557 3.7125747 7356.5571
+22535.80107039306 3.7126141 7356.1636
+22536.80107044056 3.712378 7356.5571
+22537.80107048806 3.7123387 7357.1475
+22538.80107053556 3.712378 7356.3604
+22539.80107058305 3.7122204 7355.3765
+22540.80107063055 3.7122204 7355.9663
+22541.80107067805 3.7122598 7357.1475
+22542.80107072555 3.7121024 7355.3765
+22543.80107077304 3.7121811 7356.5571
+22544.80107082054 3.7121811 7355.9663
+22545.80107086804 3.7123387 7356.9502
+22546.80107091554 3.712378 7356.7539
+22547.80107096303 3.7123387 7356.1636
+22548.80107101053 3.7123387 7355.7695
+22549.80107105803 3.7123387 7355.5728
+22550.80107110552 3.7123387 7356.7539
+22551.80107115302 3.712378 7355.3765
+22552.80107120052 3.7124567 7355.3765
+22553.80107124802 3.7124174 7356.5571
+22554.80107129551 3.712378 7357.1475
+22555.80107134301 3.7124174 7355.9663
+22556.80107139051 3.7124174 7357.1475
+22557.80107143801 3.7123387 7356.1636
+22558.8010714855 3.7124174 7356.3604
+22559.801071533 3.712496 7355.5728
+22560.8010715805 3.7127323 7355.7695
+22561.801071628 3.7126141 7356.1636
+22562.80107167549 3.7128503 7356.5571
+22563.80107172299 3.7128503 7356.3604
+22564.80107177049 3.712693 7356.3604
+22565.80107181799 3.712693 7355.9663
+22566.80107186548 3.7126141 7356.1636
+22567.80107191298 3.7125354 7355.7695
+22568.80107196048 3.7125354 7355.3765
+22569.80107200798 3.7124567 7356.1636
+22570.80107205547 3.7123387 7355.9663
+22571.80107210297 3.7124567 7355.3765
+22572.80107215047 3.7124174 7356.3604
+22573.80107219797 3.7123387 7356.5571
+22574.80107224546 3.7123387 7356.1636
+22575.80107229296 3.7124174 7356.1636
+22576.80107234046 3.7124567 7356.7539
+22577.80107238796 3.7125354 7355.7695
+22578.80107243545 3.712811 7356.1636
+22579.80107248295 3.7127323 7356.1636
+22580.80107253045 3.712693 7356.3604
+22581.80107257795 3.7127323 7355.9663
+22582.80107262544 3.712693 7355.9663
+22583.80107267294 3.7128503 7357.1475
+22584.80107272044 3.7127323 7355.9663
+22585.80107276794 3.7125354 7356.7539
+22586.80107281543 3.7126141 7355.3765
+22587.80107286293 3.7125354 7356.3604
+22588.80107291043 3.7126141 7355.9663
+22589.80107295793 3.7126536 7356.3604
+22590.80107300542 3.7127323 7355.9663
+22591.80107305292 3.712693 7355.5728
+22592.80107310042 3.7128503 7356.3604
+22593.80107314792 3.712811 7356.3604
+22594.80107319541 3.7128897 7356.9502
+22595.80107324291 3.7127717 7355.5728
+22596.80107329041 3.712811 7356.7539
+22597.80107333791 3.7129686 7356.7539
+22598.8010733854 3.7130866 7356.1636
+22599.8010734329 3.7131259 7356.1636
+22600.8010734804 3.7132835 7356.1636
+22601.80107352789 3.7132835 7355.7695
+22602.80107357539 3.7134016 7356.5571
+22603.80107362289 3.7135196 7356.3604
+22604.80107367039 3.7134802 7356.5571
+22605.80107371788 3.7135985 7356.3604
+22606.80107376538 3.7135589 7355.5728
+22607.80107381288 3.7136772 7356.3604
+22608.80107386038 3.7137165 7355.9663
+22609.80107390787 3.7138739 7355.9663
+22610.80107395537 3.7138739 7356.5571
+22611.80107400287 3.7139134 7355.5728
+22612.80107405037 3.7140315 7357.1475
+22613.80107409786 3.7140708 7356.1636
+22614.80107414536 3.7141891 7355.7695
+22615.80107419286 3.7143071 7356.9502
+22616.80107424036 3.7143071 7356.3604
+22617.80107428785 3.7143464 7356.1636
+22618.80107433535 3.7144251 7356.3604
+22619.80107438285 3.7144251 7356.3604
+22620.80107443035 3.7145433 7356.1636
+22621.80107447784 3.7146614 7355.9663
+22622.80107452534 3.7146614 7356.5571
+22623.80107457284 3.7146614 7355.9663
+22624.80107462034 3.7148583 7356.5571
+22625.80107466783 3.714819 7357.1475
+22626.80107471533 3.7148583 7355.9663
+22627.80107476283 3.7149763 7355.9663
+22628.80107481033 3.715055 7355.7695
+22629.80107485782 3.7151732 7355.7695
+22630.80107490532 3.7152126 7355.3765
+22631.80107495282 3.7154093 7356.3604
+22632.80107500032 3.7156456 7355.9663
+22633.80107504781 3.7157638 7355.3765
+22634.80107509531 3.7158031 7355.9663
+22635.80107514281 3.7158031 7355.9663
+22636.80107519031 3.7159212 7356.3604
+22637.8010752378 3.7160788 7355.9663
+22638.8010752853 3.7161181 7356.3604
+22639.8010753328 3.7162361 7356.7539
+22640.8010753803 3.7163148 7355.5728
+22641.80107542779 3.7164724 7355.7695
+22642.80107547529 3.7164724 7355.5728
+22643.80107552279 3.7164724 7355.3765
+22644.80107557029 3.7165117 7356.3604
+22645.80107561778 3.7165511 7356.3604
+22646.80107566528 3.7166297 7356.1636
+22647.80107571278 3.7166297 7355.7695
+22648.80107576028 3.7166693 7356.5571
+22649.80107580777 3.716748 7356.3604
+22650.80107585527 3.7167873 7356.3604
+22651.80107590277 3.7169447 7356.5571
+22652.80107595026 3.7169054 7355.9663
+22653.80107599776 3.7169843 7356.3604
+22654.80107604526 3.7169843 7355.7695
+22655.80107609276 3.7169843 7356.3604
+22656.80107614025 3.7169054 7356.3604
+22657.80107618775 3.7169447 7355.7695
+22658.80107623525 3.7169843 7356.9502
+22659.80107628275 3.716866 7356.1636
+22660.80107633024 3.7166693 7355.5728
+22661.80107637774 3.7166297 7356.1636
+22662.80107642524 3.7164724 7356.9502
+22663.80107647274 3.7165117 7354.9824
+22664.80107652023 3.7165117 7356.3604
+22665.80107656773 3.7164724 7356.5571
+22666.80107661523 3.7165904 7356.3604
+22667.80107666273 3.7165511 7356.3604
+22668.80107671022 3.716748 7356.5571
+22669.80107675772 3.7167087 7355.9663
+22670.80107680522 3.7167087 7357.1475
+22671.80107685272 3.7166693 7355.7695
+22672.80107690021 3.7167087 7355.7695
+22673.80107694771 3.716748 7356.3604
+22674.80107699521 3.7168267 7355.3765
+22675.80107704271 3.7169054 7356.7539
+22676.8010770902 3.7170236 7355.5728
+22677.8010771377 3.7169843 7356.1636
+22678.8010771852 3.7170236 7355.3765
+22679.8010772327 3.717181 7356.3604
+22680.80107728019 3.7171023 7355.9663
+22681.80107732769 3.717181 7356.1636
+22682.80107737519 3.7173386 7356.1636
+22683.80107742269 3.7173779 7355.9663
+22684.80107747018 3.7173386 7355.7695
+22685.80107751768 3.7174566 7356.3604
+22686.80107756518 3.7176535 7356.7539
+22687.80107761268 3.7178109 7355.1797
+22688.80107766017 3.7178898 7356.5571
+22689.80107770767 3.7179291 7356.3604
+22690.80107775517 3.7180865 7356.3604
+22691.80107780267 3.7180078 7355.7695
+22692.80107785016 3.7182047 7356.7539
+22693.80107789766 3.7181652 7356.1636
+22694.80107794516 3.7182047 7355.5728
+22695.80107799266 3.7182834 7356.7539
+22696.80107804015 3.7182441 7356.1636
+22697.80107808765 3.7182834 7355.9663
+22698.80107813515 3.7183621 7355.9663
+22699.80107818265 3.7182834 7355.5728
+22700.80107823014 3.7184801 7356.5571
+22701.80107827764 3.7185197 7356.5571
+22702.80107832514 3.7185197 7356.1636
+22703.80107837263 3.7185984 7355.3765
+22704.80107842013 3.7187164 7356.5571
+22705.80107846763 3.7189133 7355.9663
+22706.80107851513 3.7188346 7355.1797
+22707.80107856262 3.7189527 7355.7695
+22708.80107861012 3.7188346 7356.1636
+22709.80107865762 3.7187164 7356.7539
+22710.80107870512 3.7187164 7356.3604
+22711.80107875261 3.7186377 7356.1636
+22712.80107880011 3.7187951 7355.9663
+22713.80107884761 3.7187951 7355.5728
+22714.80107889511 3.718874 7355.9663
+22715.8010789426 3.7190313 7355.1797
+22716.8010789901 3.7189527 7356.5571
+22717.8010790376 3.7189527 7356.3604
+22718.8010790851 3.7190313 7356.1636
+22719.80107913259 3.7190707 7355.9663
+22720.80107918009 3.718992 7356.3604
+22721.80107922759 3.7190707 7356.5571
+22722.80107927509 3.7192283 7355.9663
+22723.80107932258 3.7193069 7356.7539
+22724.80107937008 3.7193463 7355.7695
+22725.80107941758 3.7194645 7356.1636
+22726.80107946508 3.719425 7355.5728
+22727.80107951257 3.7194645 7355.9663
+22728.80107956007 3.7194645 7356.9502
+22729.80107960757 3.7193856 7355.7695
+22730.80107965507 3.7193463 7356.3604
+22731.80107970256 3.7192676 7355.9663
+22732.80107975006 3.719425 7356.9502
+22733.80107979756 3.7195432 7355.9663
+22734.80107984506 3.7195826 7356.3604
+22735.80107989255 3.7195826 7356.3604
+22736.80107994005 3.7196219 7355.7695
+22737.80107998755 3.7197795 7355.1797
+22738.80108003505 3.7197795 7355.9663
+22739.80108008254 3.7200155 7355.9663
+22740.80108013004 3.7199762 7355.7695
+22741.80108017754 3.7199368 7356.5571
+22742.80108022504 3.7199368 7356.3604
+22743.80108027253 3.7200155 7356.1636
+22744.80108032003 3.7199762 7356.5571
+22745.80108036753 3.7200551 7355.7695
+22746.80108041503 3.7200944 7355.9663
+22747.80108046252 3.7201731 7355.3765
+22748.80108051002 3.7202125 7357.1475
+22749.80108055752 3.7202911 7356.7539
+22750.80108060502 3.7204094 7355.9663
+22751.80108065251 3.7205667 7355.7695
+22752.80108070001 3.7204487 7355.9663
+22753.80108074751 3.7204881 7355.9663
+22754.80108079501 3.7204487 7356.1636
+22755.8010808425 3.7205274 7356.3604
+22756.80108089 3.7207243 7356.5571
+22757.8010809375 3.7205667 7356.3604
+22758.80108098499 3.7205667 7355.9663
+22759.80108103249 3.720685 7355.7695
+22760.80108107999 3.720803 7356.1636
+22761.80108112749 3.7208817 7356.1636
+22762.80108117498 3.7210393 7355.9663
+22763.80108122248 3.721118 7355.5728
+22764.80108126998 3.7212756 7355.9663
+22765.80108131748 3.7212756 7356.5571
+22766.80108136497 3.7213936 7355.3765
+22767.80108141247 3.7215509 7356.9502
+22768.80108145997 3.7215509 7356.1636
+22769.80108150747 3.7215116 7356.1636
+22770.80108155496 3.7215509 7356.3604
+22771.80108160246 3.7215509 7356.5571
+22772.80108164996 3.7215509 7356.5571
+22773.80108169746 3.7215509 7355.7695
+22774.80108174495 3.7215116 7355.5728
+22775.80108179245 3.7216299 7355.9663
+22776.80108183995 3.7217085 7356.5571
+22777.80108188745 3.7216299 7356.1636
+22778.80108193494 3.7217479 7355.9663
+22779.80108198244 3.7216692 7356.5571
+22780.80108202994 3.7217085 7356.5571
+22781.80108207744 3.7217479 7356.3604
+22782.80108212493 3.7218266 7356.7539
+22783.80108217243 3.7219841 7356.3604
+22784.80108221993 3.7219841 7355.7695
+22785.80108226743 3.7219448 7356.5571
+22786.80108231492 3.7218266 7356.1636
+22787.80108236242 3.7219448 7355.5728
+22788.80108240992 3.7219055 7355.9663
+22789.80108245742 3.7219841 7356.5571
+22790.80108250491 3.7220235 7356.5571
+22791.80108255241 3.7220628 7356.9502
+22792.80108259991 3.7221022 7355.9663
+22793.80108264741 3.7221808 7356.3604
+22794.8010826949 3.7222598 7356.1636
+22795.8010827424 3.7222598 7355.3765
+22796.8010827899 3.7223778 7356.1636
+22797.8010828374 3.7224171 7356.5571
+22798.80108288489 3.722614 7355.5728
+22799.80108293239 3.7226534 7355.9663
+22800.80108297989 3.7228503 7356.1636
+22801.80108302739 3.7228503 7355.7695
+22802.80108307488 3.7228897 7356.7539
+22803.80108312238 3.7228897 7355.9663
+22804.80108316988 3.722929 7355.1797
+22805.80108321738 3.7227714 7355.5728
+22806.80108326487 3.7228503 7357.1475
+22807.80108331237 3.7228503 7356.1636
+22808.80108335987 3.7228107 7356.3604
+22809.80108340736 3.7227714 7355.5728
+22810.80108345486 3.722929 7356.7539
+22811.80108350236 3.723047 7355.9663
+22812.80108354986 3.7230077 7356.1636
+22813.80108359735 3.723047 7355.9663
+22814.80108364485 3.7230077 7355.1797
+22815.80108369235 3.723047 7355.9663
+22816.80108373985 3.7230864 7355.3765
+22817.80108378734 3.7230864 7356.3604
+22818.80108383484 3.722929 7356.5571
+22819.80108388234 3.7231653 7355.3765
+22820.80108392984 3.723047 7355.1797
+22821.80108397733 3.7232046 7354.9824
+22822.80108402483 3.7232833 7355.5728
+22823.80108407233 3.723362 7355.7695
+22824.80108411983 3.7234013 7355.7695
+22825.80108416732 3.7234409 7355.7695
+22826.80108421482 3.7234802 7356.3604
+22827.80108426232 3.7236376 7355.9663
+22828.80108430982 3.7234409 7356.7539
+22829.80108435731 3.7234802 7356.1636
+22830.80108440481 3.7235589 7356.5571
+22831.80108445231 3.7235982 7356.3604
+22832.80108449981 3.7235589 7355.5728
+22833.8010845473 3.7234802 7356.7539
+22834.8010845948 3.7235589 7356.5571
+22835.8010846423 3.723362 7355.5728
+22836.8010846898 3.7234409 7355.5728
+22837.80108473729 3.7234013 7356.3604
+22838.80108478479 3.723362 7355.3765
+22839.80108483229 3.7234802 7355.7695
+22840.80108487979 3.7234013 7356.7539
+22841.80108492728 3.7234013 7355.7695
+22842.80108497478 3.7234802 7356.7539
+22843.80108502228 3.7234802 7356.5571
+22844.80108506978 3.7234409 7355.7695
+22845.80108511727 3.7235982 7355.7695
+22846.80108516477 3.7235982 7356.9502
+22847.80108521227 3.7235589 7355.3765
+22848.80108525977 3.7235196 7356.9502
+22849.80108530726 3.7234802 7355.3765
+22850.80108535476 3.7234013 7356.1636
+22851.80108540226 3.7234802 7356.3604
+22852.80108544976 3.7235196 7356.3604
+22853.80108549725 3.7235589 7356.1636
+22854.80108554475 3.7235982 7356.1636
+22855.80108559225 3.7236769 7356.1636
+22856.80108563975 3.7236769 7356.1636
+22857.80108568724 3.7237558 7355.7695
+22858.80108573474 3.7237952 7356.7539
+22859.80108578224 3.7237952 7355.3765
+22860.80108582973 3.7237558 7355.7695
+22861.80108587723 3.7237558 7355.5728
+22862.80108592473 3.7238345 7356.3604
+22863.80108597223 3.7238739 7355.9663
+22864.80108601972 3.7237952 7356.1636
+22865.80108606722 3.7237952 7355.5728
+22866.80108611472 3.7238345 7355.5728
+22867.80108616222 3.7237558 7356.1636
+22868.80108620971 3.7238345 7356.3604
+22869.80108625721 3.7238739 7355.9663
+22870.80108630471 3.7238345 7355.5728
+22871.80108635221 3.7238739 7355.9663
+22872.8010863997 3.7240312 7355.9663
+22873.8010864472 3.7240708 7355.9663
+22874.8010864947 3.7241495 7356.1636
+22875.8010865422 3.7242281 7356.5571
+22876.80108658969 3.7243462 7356.3604
+22877.80108663719 3.7244644 7355.7695
+22878.80108668469 3.7245038 7355.9663
+22879.80108673219 3.7244644 7355.9663
+22880.80108677968 3.7245431 7355.9663
+22881.80108682718 3.7245824 7355.7695
+22882.80108687468 3.7246218 7356.1636
+22883.80108692218 3.7246218 7355.9663
+22884.80108696967 3.7246218 7355.1797
+22885.80108701717 3.7246611 7356.3604
+22886.80108706467 3.7247794 7355.9663
+22887.80108711217 3.7248974 7356.5571
+22888.80108715966 3.7248974 7356.1636
+22889.80108720716 3.7248974 7356.3604
+22890.80108725466 3.7249367 7356.1636
+22891.80108730216 3.7248974 7356.1636
+22892.80108734965 3.7249763 7356.1636
+22893.80108739715 3.7250156 7356.5571
+22894.80108744465 3.7250943 7356.5571
+22895.80108749215 3.7251337 7356.1636
+22896.80108753964 3.725173 7356.1636
+22897.80108758714 3.7252517 7355.5728
+22898.80108763464 3.725173 7355.9663
+22899.80108768214 3.7253306 7355.9663
+22900.80108772963 3.7254879 7356.1636
+22901.80108777713 3.7254879 7355.5728
+22902.80108782463 3.7255273 7356.3604
+22903.80108787213 3.7255666 7356.5571
+22904.80108791962 3.7256062 7355.9663
+22905.80108796712 3.7254879 7356.7539
+22906.80108801462 3.7256455 7355.9663
+22907.80108806212 3.7256062 7355.1797
+22908.80108810961 3.7256062 7355.7695
+22909.80108815711 3.7256849 7356.5571
+22910.80108820461 3.7257636 7356.1636
+22911.8010882521 3.7258029 7355.7695
+22912.8010882996 3.7258029 7355.7695
+22913.8010883471 3.7259212 7356.1636
+22914.8010883946 3.7259605 7356.1636
+22915.80108844209 3.7258029 7357.3442
+22916.80108848959 3.7258816 7356.7539
+22917.80108853709 3.7258816 7356.3604
+22918.80108858459 3.7260392 7356.1636
+22919.80108863208 3.7259212 7356.1636
+22920.80108867958 3.7260392 7355.5728
+22921.80108872708 3.7259998 7356.3604
+22922.80108877458 3.7260785 7355.9663
+22923.80108882207 3.7260392 7355.9663
+22924.80108886957 3.7260785 7356.1636
+22925.80108891707 3.7260392 7356.1636
+22926.80108896457 3.7259605 7355.7695
+22927.80108901206 3.7259998 7355.9663
+22928.80108905956 3.7259605 7355.5728
+22929.80108910706 3.7259998 7355.7695
+22930.80108915456 3.7258816 7355.9663
+22931.80108920205 3.7259998 7355.7695
+22932.80108924955 3.7260392 7356.1636
+22933.80108929705 3.7260392 7356.1636
+22934.80108934455 3.7259998 7356.3604
+22935.80108939204 3.7260785 7355.9663
+22936.80108943954 3.7259998 7355.9663
+22937.80108948704 3.7259605 7356.5571
+22938.80108953454 3.7258422 7355.9663
+22939.80108958203 3.7258422 7356.5571
+22940.80108962953 3.7258029 7356.3604
+22941.80108967703 3.7258422 7355.9663
+22942.80108972453 3.7257636 7356.3604
+22943.80108977202 3.7257636 7356.5571
+22944.80108981952 3.7258422 7356.9502
+22945.80108986702 3.7258816 7356.3604
+22946.80108991452 3.7258422 7356.1636
+22947.80108996201 3.7258029 7356.3604
+22948.80109000951 3.7258029 7356.5571
+22949.80109005701 3.7259212 7355.5728
+22950.80109010451 3.7260785 7356.5571
+22951.801090152 3.7260785 7355.9663
+22952.8010901995 3.7258816 7355.7695
+22953.801090247 3.7259212 7355.9663
+22954.8010902945 3.7259605 7355.7695
+22955.80109034199 3.7260392 7356.3604
+22956.80109038949 3.7259212 7356.1636
+22957.80109043699 3.7260392 7355.9663
+22958.80109048449 3.7260392 7355.7695
+22959.80109053198 3.7260392 7355.7695
+22960.80109057948 3.7260785 7356.3604
+22961.80109062698 3.7262754 7355.7695
+22962.80109067447 3.7262361 7356.9502
+22963.80109072197 3.7261965 7356.7539
+22964.80109076947 3.7263148 7355.9663
+22965.80109081697 3.7263148 7355.3765
+22966.80109086446 3.7263935 7355.1797
+22967.80109091196 3.7264328 7356.3604
+22968.80109095946 3.7265904 7355.9663
+22969.80109100696 3.7266691 7356.5571
+22970.80109105445 3.7268267 7355.3765
+22971.80109110195 3.7269053 7355.9663
+22972.80109114945 3.7269447 7355.7695
+22973.80109119695 3.726984 7356.1636
+22974.80109124444 3.7269053 7355.5728
+22975.80109129194 3.726984 7355.5728
+22976.80109133944 3.726984 7355.9663
+22977.80109138694 3.7271416 7357.1475
+22978.80109143443 3.727102 7356.1636
+22979.80109148193 3.7272203 7356.1636
+22980.80109152943 3.727181 7355.9663
+22981.80109157693 3.7272596 7355.5728
+22982.80109162442 3.727299 7356.3604
+22983.80109167192 3.7272203 7355.1797
+22984.80109171942 3.727181 7355.9663
+22985.80109176692 3.7272596 7355.7695
+22986.80109181441 3.7273383 7356.7539
+22987.80109186191 3.7273383 7356.7539
+22988.80109190941 3.7273777 7356.5571
+22989.80109195691 3.7274959 7355.1797
+22990.8010920044 3.7274566 7356.3604
+22991.8010920519 3.7276533 7356.3604
+22992.8010920994 3.7277319 7356.3604
+22993.8010921469 3.7278109 7356.1636
+22994.80109219439 3.7278895 7355.7695
+22995.80109224189 3.7279682 7356.7539
+22996.80109228939 3.7281258 7355.9663
+22997.80109233689 3.7280469 7355.7695
+22998.80109238438 3.7281651 7356.3604
+22999.80109243188 3.7280469 7356.1636
+23000.80109247938 3.7282045 7356.9502
+23001.80109252688 3.7281651 7355.9663
+23002.80109257437 3.7282045 7355.9663
+23003.80109262187 3.7281651 7355.7695
+23004.80109266937 3.7282045 7355.9663
+23005.80109271687 3.7281651 7355.9663
+23006.80109276436 3.7281258 7356.5571
+23007.80109281186 3.7282438 7355.1797
+23008.80109285936 3.7282438 7356.5571
+23009.80109290686 3.7282045 7356.1636
+23010.80109295435 3.7283618 7356.1636
+23011.80109300185 3.7283225 7356.5571
+23012.80109304935 3.7283618 7355.9663
+23013.80109309684 3.7283225 7355.7695
+23014.80109314434 3.7282832 7356.1636
+23015.80109319184 3.7283618 7355.9663
+23016.80109323934 3.7283225 7355.9663
+23017.80109328683 3.7282832 7355.9663
+23018.80109333433 3.7282438 7356.5571
+23019.80109338183 3.7284801 7356.5571
+23020.80109342933 3.7285194 7356.3604
+23021.80109347682 3.7284408 7355.3765
+23022.80109352432 3.7285588 7355.9663
+23023.80109357182 3.7284014 7355.7695
+23024.80109361932 3.7284801 7356.1636
+23025.80109366681 3.7284801 7355.7695
+23026.80109371431 3.7284801 7356.1636
+23027.80109376181 3.7284801 7355.7695
+23028.80109380931 3.7285981 7356.1636
+23029.8010938568 3.7285194 7355.7695
+23030.8010939043 3.7287164 7355.9663
+23031.8010939518 3.7286375 7356.5571
+23032.8010939993 3.728677 7355.9663
+23033.80109404679 3.7286375 7356.1636
+23034.80109409429 3.7287951 7356.1636
+23035.80109414179 3.7287164 7355.7695
+23036.80109418929 3.7287164 7355.3765
+23037.80109423678 3.728677 7355.7695
+23038.80109428428 3.728677 7356.5571
+23039.80109433178 3.7285981 7356.3604
+23040.80109437928 3.7286375 7356.3604
+23041.80109442677 3.7285981 7356.7539
+23042.80109447427 3.728677 7356.5571
+23043.80109452177 3.7287557 7356.1636
+23044.80109456927 3.7287164 7355.3765
+23045.80109461676 3.7287164 7355.5728
+23046.80109466426 3.728677 7356.1636
+23047.80109471176 3.7287557 7355.9663
+23048.80109475926 3.7287164 7354.9824
+23049.80109480675 3.7288737 7356.3604
+23050.80109485425 3.7287557 7355.3765
+23051.80109490175 3.7288344 7355.1797
+23052.80109494925 3.7288344 7355.7695
+23053.80109499674 3.7288344 7356.3604
+23054.80109504424 3.7288344 7355.9663
+23055.80109509174 3.7290313 7355.9663
+23056.80109513924 3.7289524 7356.7539
+23057.80109518673 3.7291493 7356.9502
+23058.80109523423 3.7291887 7355.9663
+23059.80109528173 3.7293069 7356.9502
+23060.80109532923 3.7292674 7355.7695
+23061.80109537672 3.7293463 7356.7539
+23062.80109542422 3.7293856 7355.5728
+23063.80109547172 3.729425 7355.7695
+23064.80109551921 3.7294643 7356.5571
+23065.80109556671 3.7295036 7355.1797
+23066.80109561421 3.729543 7355.7695
+23067.80109566171 3.7295823 7356.1636
+23068.8010957092 3.729425 7356.1636
+23069.8010957567 3.7293856 7355.9663
+23070.8010958042 3.7296612 7356.3604
+23071.8010958517 3.7295036 7355.5728
+23072.80109589919 3.729425 7356.1636
+23073.80109594669 3.7295036 7355.7695
+23074.80109599419 3.729543 7355.5728
+23075.80109604169 3.7296219 7356.3604
+23076.80109608918 3.7296219 7355.7695
+23077.80109613668 3.7296219 7355.9663
+23078.80109618418 3.7296612 7356.3604
+23079.80109623168 3.7297399 7355.3765
+23080.80109627917 3.7298186 7356.7539
+23081.80109632667 3.7297792 7356.5571
+23082.80109637417 3.7298186 7356.5571
+23083.80109642167 3.7298579 7355.9663
+23084.80109646916 3.7298579 7355.9663
+23085.80109651666 3.7298973 7356.1636
+23086.80109656416 3.7298973 7355.9663
+23087.80109661166 3.7299762 7356.1636
+23088.80109665915 3.7300155 7356.1636
+23089.80109670665 3.7301335 7356.3604
+23090.80109675415 3.7301335 7356.3604
+23091.80109680165 3.7302518 7355.9663
+23092.80109684914 3.7304485 7356.1636
+23093.80109689664 3.7303698 7356.3604
+23094.80109694414 3.7305274 7355.9663
+23095.80109699164 3.7306061 7355.9663
+23096.80109703913 3.7305667 7356.7539
+23097.80109708663 3.7307241 7355.9663
+23098.80109713413 3.7307241 7356.3604
+23099.80109718163 3.7307241 7356.1636
+23100.80109722912 3.7308028 7356.3604
+23101.80109727662 3.7307634 7357.1475
+23102.80109732412 3.7307241 7356.3604
+23103.80109737162 3.7306848 7355.7695
+23104.80109741911 3.7307634 7355.9663
+23105.80109746661 3.7307634 7355.7695
+23106.80109751411 3.7307241 7355.7695
+23107.80109756161 3.7307241 7355.9663
+23108.8010976091 3.7307241 7356.1636
+23109.8010976566 3.7306848 7355.9663
+23110.8010977041 3.7307241 7356.1636
+23111.8010977516 3.7308424 7355.5728
+23112.80109779909 3.730921 7355.9663
+23113.80109784659 3.7309997 7354.9824
+23114.80109789409 3.7311573 7355.9663
+23115.80109794158 3.7309997 7356.5571
+23116.80109798908 3.7311573 7354.9824
+23117.80109803658 3.7313147 7356.5571
+23118.80109808408 3.7313933 7356.5571
+23119.80109813157 3.7314327 7356.7539
+23120.80109817907 3.7315116 7356.5571
+23121.80109822657 3.7315116 7355.1797
+23122.80109827407 3.7316296 7356.1636
+23123.80109832156 3.7315509 7356.5571
+23124.80109836906 3.7317476 7355.5728
+23125.80109841656 3.7317476 7356.5571
+23126.80109846406 3.7318265 7355.7695
+23127.80109851155 3.7317872 7355.7695
+23128.80109855905 3.7317872 7355.5728
+23129.80109860655 3.7319446 7355.9663
+23130.80109865405 3.7319052 7356.3604
+23131.80109870154 3.7318659 7356.7539
+23132.80109874904 3.7321022 7356.5571
+23133.80109879654 3.7321415 7356.1636
+23134.80109884404 3.7321022 7356.3604
+23135.80109889153 3.7322595 7355.1797
+23136.80109893903 3.7322989 7355.7695
+23137.80109898653 3.7323778 7356.1636
+23138.80109903403 3.7324171 7355.7695
+23139.80109908152 3.7325745 7356.5571
+23140.80109912902 3.7324958 7356.5571
+23141.80109917652 3.7325745 7356.3604
+23142.80109922402 3.7326531 7355.9663
+23143.80109927151 3.7328107 7355.7695
+23144.80109931901 3.7329288 7356.3604
+23145.80109936651 3.733047 7356.3604
+23146.80109941401 3.7330863 7356.3604
+23147.8010994615 3.7331257 7355.9663
+23148.801099509 3.7332044 7355.1797
+23149.8010995565 3.7332437 7355.3765
+23150.801099604 3.7331257 7355.3765
+23151.80109965149 3.7332044 7356.7539
+23152.80109969899 3.7331257 7355.9663
+23153.80109974649 3.733283 7356.3604
+23154.80109979399 3.7332044 7355.7695
+23155.80109984148 3.7333226 7355.9663
+23156.80109988898 3.733362 7356.7539
+23157.80109993648 3.7334013 7355.7695
+23158.80109998398 3.7334406 7355.7695
+23159.80110003147 3.73348 7355.7695
+23160.80110007897 3.7334013 7356.7539
+23161.80110012647 3.7334406 7355.7695
+23162.80110017397 3.7335587 7355.7695
+23163.80110022146 3.733598 7356.1636
+23164.80110026896 3.733598 7355.5728
+23165.80110031646 3.733598 7355.9663
+23166.80110036395 3.7337162 7356.1636
+23167.80110041145 3.7337556 7356.1636
+23168.80110045895 3.7338736 7356.3604
+23169.80110050645 3.7339132 7355.9663
+23170.80110055394 3.7339132 7355.7695
+23171.80110060144 3.7339525 7357.1475
+23172.80110064894 3.7340705 7355.9663
+23173.80110069644 3.7341099 7356.7539
+23174.80110074393 3.7340705 7355.7695
+23175.80110079143 3.7341492 7355.7695
+23176.80110083893 3.7341099 7356.1636
+23177.80110088643 3.7342675 7356.1636
+23178.80110093392 3.7343068 7355.7695
+23179.80110098142 3.7343462 7356.3604
+23180.80110102892 3.7345035 7356.3604
+23181.80110107642 3.7344248 7355.7695
+23182.80110112391 3.7345824 7356.7539
+23183.80110117141 3.7346611 7356.3604
+23184.80110121891 3.7347004 7356.1636
+23185.80110126641 3.7347004 7356.1636
+23186.8011013139 3.7347791 7356.1636
+23187.8011013614 3.7348974 7355.9663
+23188.8011014089 3.7349761 7355.9663
+23189.8011014564 3.7349761 7356.5571
+23190.80110150389 3.7349761 7356.1636
+23191.80110155139 3.7349761 7356.1636
+23192.80110159889 3.7349761 7355.7695
+23193.80110164639 3.7350547 7356.3604
+23194.80110169388 3.7351334 7356.1636
+23195.80110174138 3.7351334 7356.9502
+23196.80110178888 3.735291 7355.9663
+23197.80110183638 3.735291 7355.7695
+23198.80110188387 3.735291 7355.3765
+23199.80110193137 3.7353303 7355.9663
+23200.80110197887 3.735409 7355.9663
+23201.80110202637 3.735409 7356.5571
+23202.80110207386 3.735409 7355.5728
+23203.80110212136 3.7353303 7356.1636
+23204.80110216886 3.735409 7355.9663
+23205.80110221636 3.7354484 7356.1636
+23206.80110226385 3.7354879 7355.7695
+23207.80110231135 3.7355666 7355.9663
+23208.80110235885 3.7355273 7355.5728
+23209.80110240635 3.7354879 7356.1636
+23210.80110245384 3.7356453 7356.1636
+23211.80110250134 3.735724 7355.9663
+23212.80110254884 3.735724 7357.3442
+23213.80110259634 3.7356846 7356.5571
+23214.80110264383 3.7359209 7355.7695
+23215.80110269133 3.7358816 7355.9663
+23216.80110273883 3.7359996 7355.7695
+23217.80110278632 3.7359996 7355.5728
+23218.80110283382 3.7359996 7355.1797
+23219.80110288132 3.7359996 7356.3604
+23220.80110292882 3.7361572 7355.7695
+23221.80110297631 3.7360785 7356.5571
+23222.80110302381 3.7361572 7356.3604
+23223.80110307131 3.7361178 7355.9663
+23224.80110311881 3.7362359 7356.1636
+23225.8011031663 3.7362752 7355.7695
+23226.8011032138 3.7361572 7355.5728
+23227.8011032613 3.7362359 7355.5728
+23228.8011033088 3.7363935 7355.9663
+23229.80110335629 3.7363935 7356.1636
+23230.80110340379 3.7363935 7356.9502
+23231.80110345129 3.7365508 7356.1636
+23232.80110349879 3.7365508 7356.5571
+23233.80110354628 3.7365115 7356.9502
+23234.80110359378 3.7366295 7356.1636
+23235.80110364128 3.7366295 7355.9663
+23236.80110368878 3.7367084 7356.1636
+23237.80110373627 3.7368264 7356.5571
+23238.80110378377 3.7368264 7356.7539
+23239.80110383127 3.7368658 7356.3604
+23240.80110387877 3.7368658 7355.9663
+23241.80110392626 3.7369444 7356.1636
+23242.80110397376 3.7370234 7355.7695
+23243.80110402126 3.7371414 7356.1636
+23244.80110406876 3.7372594 7356.5571
+23245.80110411625 3.7373776 7355.7695
+23246.80110416375 3.7373776 7356.5571
+23247.80110421125 3.7374563 7355.9663
+23248.80110425875 3.7374957 7355.7695
+23249.80110430624 3.7376139 7356.3604
+23250.80110435374 3.7376533 7356.1636
+23251.80110440124 3.7377713 7356.7539
+23252.80110444874 3.7378106 7355.9663
+23253.80110449623 3.7378106 7355.5728
+23254.80110454373 3.73785 7355.7695
+23255.80110459123 3.7379289 7356.7539
+23256.80110463873 3.73785 7356.3604
+23257.80110468622 3.7379289 7355.9663
+23258.80110473372 3.7380075 7356.5571
+23259.80110478122 3.7379289 7355.9663
+23260.80110482872 3.7380469 7355.9663
+23261.80110487621 3.7379682 7356.3604
+23262.80110492371 3.7380469 7356.5571
+23263.80110497121 3.7380862 7355.9663
+23264.80110501871 3.7380075 7356.7539
+23265.8011050662 3.7380469 7356.1636
+23266.8011051137 3.7380469 7355.3765
+23267.8011051612 3.7380469 7356.7539
+23268.80110520869 3.7379289 7355.9663
+23269.80110525619 3.7378893 7355.5728
+23270.80110530369 3.7378893 7356.1636
+23271.80110535119 3.7379682 7355.9663
+23272.80110539868 3.7379682 7355.9663
+23273.80110544618 3.7380075 7356.3604
+23274.80110549368 3.7379289 7355.9663
+23275.80110554118 3.7380075 7356.9502
+23276.80110558867 3.7379682 7355.9663
+23277.80110563617 3.7379682 7356.1636
+23278.80110568367 3.7379682 7356.3604
+23279.80110573117 3.7379682 7355.9663
+23280.80110577866 3.7380075 7355.3765
+23281.80110582616 3.7379682 7355.9663
+23282.80110587366 3.73785 7356.1636
+23283.80110592116 3.73785 7355.3765
+23284.80110596865 3.7379289 7355.9663
+23285.80110601615 3.7378893 7356.1636
+23286.80110606365 3.7379682 7356.3604
+23287.80110611115 3.7380075 7355.9663
+23288.80110615864 3.7380075 7356.1636
+23289.80110620614 3.7379289 7356.3604
+23290.80110625364 3.7381256 7355.9663
+23291.80110630114 3.7380469 7355.5728
+23292.80110634863 3.7382042 7356.5571
+23293.80110639613 3.7382832 7356.1636
+23294.80110644363 3.7382438 7356.1636
+23295.80110649113 3.7382438 7355.9663
+23296.80110653862 3.7383225 7356.1636
+23297.80110658612 3.7382832 7356.5571
+23298.80110663362 3.7384405 7356.1636
+23299.80110668112 3.7383225 7355.7695
+23300.80110672861 3.7383225 7356.3604
+23301.80110677611 3.7384799 7356.5571
+23302.80110682361 3.7384012 7356.1636
+23303.80110687111 3.7386374 7356.1636
+23304.8011069186 3.7385981 7355.9663
+23305.8011069661 3.7386768 7355.7695
+23306.8011070136 3.7386768 7356.1636
+23307.8011070611 3.7389131 7355.1797
+23308.80110710859 3.7389524 7356.3604
+23309.80110715609 3.7389524 7354.7856
+23310.80110720359 3.7389917 7355.5728
+23311.80110725109 3.7389917 7356.9502
+23312.80110729858 3.7390311 7356.3604
+23313.80110734608 3.7389917 7355.9663
+23314.80110739358 3.7390311 7356.5571
+23315.80110744108 3.7390704 7355.9663
+23316.80110748857 3.7391491 7355.5728
+23317.80110753607 3.7390704 7356.3604
+23318.80110758357 3.7391098 7355.5728
+23319.80110763107 3.7392673 7356.7539
+23320.80110767856 3.739228 7356.1636
+23321.80110772606 3.7391887 7355.9663
+23322.80110777356 3.7392673 7355.9663
+23323.80110782105 3.7392673 7356.1636
+23324.80110786855 3.7393067 7355.7695
+23325.80110791605 3.739346 7356.5571
+23326.80110796355 3.739346 7355.3765
+23327.80110801104 3.7393854 7355.9663
+23328.80110805854 3.7395036 7356.5571
+23329.80110810604 3.739346 7355.5728
+23330.80110815354 3.7393067 7356.7539
+23331.80110820103 3.7394247 7355.9663
+23332.80110824853 3.7393854 7355.5728
+23333.80110829603 3.7394643 7355.9663
+23334.80110834353 3.7394247 7356.1636
+23335.80110839102 3.7394247 7356.3604
+23336.80110843852 3.7394247 7355.5728
+23337.80110848602 3.7394247 7356.7539
+23338.80110853352 3.7394643 7355.5728
+23339.80110858101 3.7394643 7356.1636
+23340.80110862851 3.7394247 7355.3765
+23341.80110867601 3.7395823 7356.3604
+23342.80110872351 3.7395036 7356.1636
+23343.801108771 3.7393854 7355.9663
+23344.8011088185 3.739543 7355.9663
+23345.801108866 3.7395036 7356.1636
+23346.8011089135 3.7397003 7355.9663
+23347.80110896099 3.7395823 7356.1636
+23348.80110900849 3.739543 7356.1636
+23349.80110905599 3.739661 7355.9663
+23350.80110910349 3.7397792 7356.5571
+23351.80110915098 3.7398579 7356.3604
+23352.80110919848 3.7398579 7356.1636
+23353.80110924598 3.7400153 7355.9663
+23354.80110929348 3.7400153 7356.1636
+23355.80110934097 3.7401729 7356.1636
+23356.80110938847 3.7401729 7356.1636
+23357.80110943597 3.7401335 7356.1636
+23358.80110948347 3.7402909 7356.7539
+23359.80110953096 3.7404091 7355.5728
+23360.80110957846 3.7405272 7356.5571
+23361.80110962596 3.7404878 7355.9663
+23362.80110967346 3.7404485 7356.3604
+23363.80110972095 3.7405272 7355.9663
+23364.80110976845 3.7405665 7356.5571
+23365.80110981595 3.7405665 7355.9663
+23366.80110986345 3.7407241 7355.9663
+23367.80110991094 3.7407634 7356.5571
+23368.80110995844 3.7407241 7356.5571
+23369.80111000594 3.7407634 7355.7695
+23370.80111005344 3.7408814 7356.1636
+23371.80111010093 3.7408814 7356.3604
+23372.80111014843 3.7409601 7356.3604
+23373.80111019593 3.741039 7355.7695
+23374.80111024342 3.7411177 7356.7539
+23375.80111029092 3.7411177 7356.3604
+23376.80111033842 3.7409997 7355.9663
+23377.80111038592 3.7412357 7356.3604
+23378.80111043341 3.7411964 7355.7695
+23379.80111048091 3.7411964 7355.7695
+23380.80111052841 3.7412751 7356.5571
+23381.80111057591 3.7412751 7356.3604
+23382.8011106234 3.7413933 7355.7695
+23383.8011106709 3.741472 7356.1636
+23384.8011107184 3.7415113 7355.9663
+23385.8011107659 3.7416296 7356.7539
+23386.80111081339 3.7416296 7355.3765
+23387.80111086089 3.74159 7355.9663
+23388.80111090839 3.74159 7356.3604
+23389.80111095589 3.741787 7355.5728
+23390.80111100338 3.7418263 7355.3765
+23391.80111105088 3.7418263 7355.7695
+23392.80111109838 3.7418263 7355.9663
+23393.80111114588 3.7419839 7356.3604
+23394.80111119337 3.7419446 7355.9663
+23395.80111124087 3.7419446 7355.7695
+23396.80111128837 3.7419839 7355.9663
+23397.80111133587 3.7419839 7355.5728
+23398.80111138336 3.7421019 7356.7539
+23399.80111143086 3.7420626 7356.1636
+23400.80111147836 3.7419839 7356.3604
+23401.80111152586 3.7419839 7356.7539
+23402.80111157335 3.7420232 7356.1636
+23403.80111162085 3.7421019 7356.3604
+23404.80111166835 3.7421806 7356.1636
+23405.80111171585 3.7421019 7355.7695
+23406.80111176334 3.7421019 7355.3765
+23407.80111181084 3.7422199 7356.5571
+23408.80111185834 3.7422199 7356.5571
+23409.80111190584 3.7422199 7355.5728
+23410.80111195333 3.7422595 7357.1475
+23411.80111200083 3.7422199 7355.5728
+23412.80111204833 3.7422199 7355.9663
+23413.80111209583 3.7422595 7355.7695
+23414.80111214332 3.7422988 7356.3604
+23415.80111219082 3.7423382 7355.9663
+23416.80111223832 3.7423382 7355.5728
+23417.80111228582 3.7423382 7356.3604
+23418.80111233331 3.7424169 7355.1797
+23419.80111238081 3.7425745 7356.1636
+23420.80111242831 3.7424169 7355.9663
+23421.80111247581 3.7425745 7356.1636
+23422.8011125233 3.7425745 7355.7695
+23423.8011125708 3.7426138 7355.9663
+23424.8011126183 3.7426925 7355.9663
+23425.80111266579 3.7426925 7356.7539
+23426.80111271329 3.7427318 7356.1636
+23427.80111276079 3.7428105 7355.9663
+23428.80111280829 3.7428894 7355.9663
+23429.80111285578 3.7428894 7356.1636
+23430.80111290328 3.7428894 7356.3604
+23431.80111295078 3.7430074 7355.5728
+23432.80111299828 3.7431254 7356.1636
+23433.80111304577 3.7430074 7356.1636
+23434.80111309327 3.7430861 7355.9663
+23435.80111314077 3.743165 7355.9663
+23436.80111318827 3.743165 7355.7695
+23437.80111323576 3.7432437 7356.3604
+23438.80111328326 3.7432044 7355.9663
+23439.80111333076 3.7433224 7357.3442
+23440.80111337826 3.7433617 7355.3765
+23441.80111342575 3.7434011 7356.5571
+23442.80111347325 3.7434011 7356.3604
+23443.80111352075 3.7435193 7356.1636
+23444.80111356825 3.74348 7356.5571
+23445.80111361574 3.743598 7355.5728
+23446.80111366324 3.7436373 7356.5571
+23447.80111371074 3.7437553 7356.5571
+23448.80111375824 3.7436767 7356.1636
+23449.80111380573 3.743716 7355.5728
+23450.80111385323 3.743716 7355.9663
+23451.80111390073 3.7437553 7356.1636
+23452.80111394823 3.744031 7355.9663
+23453.80111399572 3.7439916 7355.3765
+23454.80111404322 3.7439523 7356.3604
+23455.80111409072 3.7440703 7356.3604
+23456.80111413822 3.744031 7356.7539
+23457.80111418571 3.7441885 7355.5728
+23458.80111423321 3.7442672 7355.3765
+23459.80111428071 3.7442672 7356.3604
+23460.80111432821 3.7443459 7356.1636
+23461.8011143757 3.7443459 7356.5571
+23462.8011144232 3.7444642 7355.5728
+23463.8011144707 3.7445035 7356.3604
+23464.8011145182 3.7444642 7355.5728
+23465.80111456569 3.7446609 7355.1797
+23466.80111461319 3.7445428 7356.1636
+23467.80111466069 3.7446609 7355.9663
+23468.80111470819 3.7446215 7357.541
+23469.80111475568 3.7446609 7355.9663
+23470.80111480318 3.7447398 7355.9663
+23471.80111485068 3.7446609 7356.3604
+23472.80111489818 3.7446609 7356.1636
+23473.80111494567 3.7447398 7356.5571
+23474.80111499317 3.7447398 7355.5728
+23475.80111504067 3.7447398 7356.1636
+23476.80111508816 3.7448578 7355.7695
+23477.80111513566 3.7448184 7355.9663
+23478.80111518316 3.7450154 7355.5728
+23479.80111523066 3.7448971 7355.7695
+23480.80111527815 3.7449365 7356.5571
+23481.80111532565 3.7450547 7355.7695
+23482.80111537315 3.7451334 7355.9663
+23483.80111542065 3.7450941 7356.1636
+23484.80111546814 3.7451334 7356.1636
+23485.80111551564 3.7452121 7355.9663
+23486.80111556314 3.7451334 7355.9663
+23487.80111561064 3.7451727 7356.3604
+23488.80111565813 3.7452121 7355.7695
+23489.80111570563 3.7452121 7356.3604
+23490.80111575313 3.7452514 7356.5571
+23491.80111580063 3.7452908 7356.1636
+23492.80111584812 3.7453697 7355.9663
+23493.80111589562 3.745409 7355.9663
+23494.80111594312 3.7452908 7355.9663
+23495.80111599062 3.7452514 7355.9663
+23496.80111603811 3.7453697 7356.7539
+23497.80111608561 3.7454877 7354.9824
+23498.80111613311 3.7452908 7356.5571
+23499.80111618061 3.7453697 7355.9663
+23500.8011162281 3.745527 7355.9663
+23501.8011162756 3.7454877 7355.7695
+23502.8011163231 3.745527 7356.5571
+23503.8011163706 3.7456453 7356.1636
+23504.80111641809 3.7456453 7356.7539
+23505.80111646559 3.7456453 7356.3604
+23506.80111651309 3.7457633 7356.9502
+23507.80111656059 3.7456846 7355.5728
+23508.80111660808 3.7458026 7356.9502
+23509.80111665558 3.7458813 7356.3604
+23510.80111670308 3.7459207 7355.3765
+23511.80111675058 3.7459602 7355.9663
+23512.80111679807 3.7459996 7356.3604
+23513.80111684557 3.7460783 7356.3604
+23514.80111689307 3.7461963 7355.3765
+23515.80111694057 3.7463539 7355.9663
+23516.80111698806 3.7463145 7356.5571
+23517.80111703556 3.7462752 7356.1636
+23518.80111708306 3.7463145 7355.9663
+23519.80111713056 3.7463932 7355.9663
+23520.80111717805 3.7464719 7355.9663
+23521.80111722555 3.7465508 7356.3604
+23522.80111727305 3.7464719 7356.5571
+23523.80111732055 3.7467082 7355.7695
+23524.80111736804 3.7466688 7356.3604
+23525.80111741554 3.7467082 7356.3604
+23526.80111746304 3.7468262 7355.9663
+23527.80111751053 3.7467868 7356.1636
+23528.80111755803 3.7469838 7355.7695
+23529.80111760553 3.7470231 7355.1797
+23530.80111765303 3.7471018 7356.9502
+23531.80111770052 3.7470231 7356.1636
+23532.80111774802 3.7471411 7356.3604
+23533.80111779552 3.74722 7356.3604
+23534.80111784302 3.74722 7355.3765
+23535.80111789051 3.7472987 7356.5571
+23536.80111793801 3.7474167 7356.3604
+23537.80111798551 3.7474167 7355.7695
+23538.80111803301 3.7474957 7356.5571
+23539.8011180805 3.7476137 7355.9663
+23540.801118128 3.7477317 7355.9663
+23541.8011181755 3.7476137 7356.1636
+23542.801118223 3.7476923 7356.1636
+23543.80111827049 3.7477317 7355.5728
+23544.80111831799 3.7479286 7355.9663
+23545.80111836549 3.7480073 7356.3604
+23546.80111841299 3.7480073 7356.3604
+23547.80111846048 3.748086 7355.1797
+23548.80111850798 3.7481256 7355.7695
+23549.80111855548 3.7482829 7356.3604
+23550.80111860298 3.7482436 7355.7695
+23551.80111865047 3.7484012 7356.1636
+23552.80111869797 3.7483222 7356.1636
+23553.80111874547 3.7485192 7356.1636
+23554.80111879297 3.7484405 7355.9663
+23555.80111884046 3.7484798 7355.5728
+23556.80111888796 3.7485979 7355.7695
+23557.80111893546 3.7485979 7355.5728
+23558.80111898296 3.7486765 7356.7539
+23559.80111903045 3.7487555 7356.3604
+23560.80111907795 3.7487948 7355.9663
+23561.80111912545 3.7488341 7354.7856
+23562.80111917295 3.7489128 7356.1636
+23563.80111922044 3.7489128 7355.5728
+23564.80111926794 3.7491097 7356.5571
+23565.80111931544 3.7489915 7355.9663
+23566.80111936294 3.7490704 7355.9663
+23567.80111941043 3.7491491 7356.3604
+23568.80111945793 3.7492278 7356.7539
+23569.80111950543 3.7492278 7355.9663
+23570.80111955293 3.749346 7355.1797
+23571.80111960042 3.7493854 7356.1636
+23572.80111964792 3.749464 7356.7539
+23573.80111969542 3.7495034 7355.5728
+23574.80111974292 3.749464 7355.9663
+23575.80111979041 3.7495821 7356.5571
+23576.80111983791 3.7496214 7355.7695
+23577.80111988541 3.7497003 7355.7695
+23578.8011199329 3.7496214 7356.5571
+23579.8011199804 3.7498183 7356.5571
+23580.8011200279 3.749779 7355.7695
+23581.8011200754 3.7498577 7355.5728
+23582.80112012289 3.749779 7355.7695
+23583.80112017039 3.7498577 7355.9663
+23584.80112021789 3.749897 7356.3604
+23585.80112026539 3.7499759 7356.3604
+23586.80112031288 3.7500153 7355.9663
+23587.80112036038 3.7500939 7356.1636
+23588.80112040788 3.7500939 7356.5571
+23589.80112045538 3.7501726 7355.9663
+23590.80112050287 3.7502515 7355.5728
+23591.80112055037 3.7502515 7356.1636
+23592.80112059787 3.7502515 7355.7695
+23593.80112064537 3.7504089 7355.9663
+23594.80112069286 3.7504089 7355.5728
+23595.80112074036 3.7503302 7356.3604
+23596.80112078786 3.7503695 7355.7695
+23597.80112083536 3.7505269 7356.9502
+23598.80112088285 3.7505269 7355.7695
+23599.80112093035 3.7506058 7356.9502
+23600.80112097785 3.7506845 7355.7695
+23601.80112102535 3.7506452 7355.5728
+23602.80112107284 3.7507238 7356.1636
+23603.80112112034 3.7507238 7355.1797
+23604.80112116784 3.7508814 7355.1797
+23605.80112121534 3.7508814 7356.7539
+23606.80112126283 3.7508814 7355.1797
+23607.80112131033 3.7508025 7355.9663
+23608.80112135783 3.7508419 7355.7695
+23609.80112140533 3.7510388 7355.3765
+23610.80112145282 3.7509601 7356.3604
+23611.80112150032 3.7510781 7355.7695
+23612.80112154782 3.7509995 7356.5571
+23613.80112159532 3.7510388 7356.5571
+23614.80112164281 3.7509995 7356.9502
+23615.80112169031 3.7510781 7355.3765
+23616.80112173781 3.7510781 7356.1636
+23617.80112178531 3.7511964 7356.3604
+23618.8011218328 3.7511964 7355.9663
+23619.8011218803 3.7511964 7355.9663
+23620.8011219278 3.7511964 7356.1636
+23621.8011219753 3.7511964 7355.5728
+23622.80112202279 3.7513144 7356.3604
+23623.80112207029 3.7513144 7356.1636
+23624.80112211779 3.7514324 7355.1797
+23625.80112216529 3.7514324 7356.5571
+23626.80112221278 3.7514718 7355.9663
+23627.80112226028 3.7514718 7356.3604
+23628.80112230778 3.7515507 7356.3604
+23629.80112235527 3.7514718 7355.5728
+23630.80112240277 3.7516294 7355.9663
+23631.80112245027 3.75159 7355.9663
+23632.80112249777 3.751708 7355.5728
+23633.80112254526 3.7516294 7355.9663
+23634.80112259276 3.7517474 7356.1636
+23635.80112264026 3.7518263 7355.7695
+23636.80112268776 3.7517869 7356.3604
+23637.80112273525 3.7517869 7356.1636
+23638.80112278275 3.7519443 7355.3765
+23639.80112283025 3.751905 7356.5571
+23640.80112287775 3.751905 7356.1636
+23641.80112292524 3.7521412 7355.9663
+23642.80112297274 3.752023 7356.5571
+23643.80112302024 3.7520623 7356.1636
+23644.80112306774 3.7521806 7356.1636
+23645.80112311523 3.7521806 7356.3604
+23646.80112316273 3.7521806 7356.3604
+23647.80112321023 3.7522593 7355.7695
+23648.80112325773 3.7523379 7355.7695
+23649.80112330522 3.7524562 7356.3604
+23650.80112335272 3.7523379 7355.7695
+23651.80112340022 3.7524168 7355.7695
+23652.80112344772 3.7524168 7355.5728
+23653.80112349521 3.7526135 7356.1636
+23654.80112354271 3.7526135 7355.9663
+23655.80112359021 3.7526135 7356.1636
+23656.80112363771 3.7526922 7355.7695
+23657.8011236852 3.7527318 7355.5728
+23658.8011237327 3.7528105 7355.3765
+23659.8011237802 3.7528498 7356.5571
+23660.8011238277 3.7528498 7356.9502
+23661.80112387519 3.7529285 7355.3765
+23662.80112392269 3.7530468 7355.7695
+23663.80112397019 3.7530072 7355.5728
+23664.80112401769 3.7529678 7355.1797
+23665.80112406518 3.7531254 7355.7695
+23666.80112411268 3.7531254 7355.7695
+23667.80112416018 3.7531254 7355.3765
+23668.80112420768 3.7532041 7356.1636
+23669.80112425517 3.7532434 7356.3604
+23670.80112430267 3.7533617 7355.9663
+23671.80112435017 3.753401 7356.3604
+23672.80112439767 3.7535191 7356.1636
+23673.80112444516 3.7535584 7356.3604
+23674.80112449266 3.7535584 7355.5728
+23675.80112454016 3.7535584 7356.3604
+23676.80112458766 3.753716 7356.5571
+23677.80112463515 3.7536767 7356.5571
+23678.80112468265 3.753716 7356.3604
+23679.80112473015 3.7537553 7355.9663
+23680.80112477764 3.7537947 7354.5889
+23681.80112482514 3.753834 7355.7695
+23682.80112487264 3.7538733 7355.7695
+23683.80112492014 3.753834 7355.9663
+23684.80112496763 3.7539127 7356.5571
+23685.80112501513 3.7537947 7356.3604
+23686.80112506263 3.7539523 7356.3604
+23687.80112511013 3.7539916 7355.5728
+23688.80112515762 3.7539916 7356.1636
+23689.80112520512 3.7540309 7356.3604
+23690.80112525262 3.7540703 7354.9824
+23691.80112530012 3.7541096 7355.7695
+23692.80112534761 3.7541883 7355.7695
+23693.80112539511 3.7541096 7356.5571
+23694.80112544261 3.7543066 7356.1636
+23695.80112549011 3.7542276 7356.3604
+23696.8011255376 3.7543459 7356.1636
+23697.8011255851 3.7543459 7356.5571
+23698.8011256326 3.7543066 7355.7695
+23699.8011256801 3.7545033 7355.7695
+23700.80112572759 3.7544639 7356.3604
+23701.80112577509 3.7545426 7355.7695
+23702.80112582259 3.7545822 7356.1636
+23703.80112587009 3.7545822 7355.7695
+23704.80112591758 3.7545822 7356.1636
+23705.80112596508 3.7547002 7356.3604
+23706.80112601258 3.7548182 7356.7539
+23707.80112606008 3.7548182 7355.9663
+23708.80112610757 3.7547789 7355.9663
+23709.80112615507 3.7547789 7355.9663
+23710.80112620257 3.7548575 7355.7695
+23711.80112625007 3.7548971 7356.5571
+23712.80112629756 3.7550151 7356.9502
+23713.80112634506 3.7549365 7356.5571
+23714.80112639256 3.7550938 7355.7695
+23715.80112644006 3.7550545 7355.7695
+23716.80112648755 3.7550938 7355.5728
+23717.80112653505 3.7550938 7355.7695
+23718.80112658255 3.7550938 7355.5728
+23719.80112663005 3.7551725 7355.7695
+23720.80112667754 3.7551725 7354.9824
+23721.80112672504 3.7551332 7355.9663
+23722.80112677254 3.7552121 7356.1636
+23723.80112682004 3.7552514 7355.3765
+23724.80112686753 3.7552907 7356.9502
+23725.80112691503 3.7552121 7356.3604
+23726.80112696253 3.7552121 7355.7695
+23727.80112701003 3.7551725 7356.1636
+23728.80112705752 3.7554088 7356.1636
+23729.80112710502 3.7554088 7356.5571
+23730.80112715252 3.7552907 7355.9663
+23731.80112720001 3.7554481 7355.7695
+23732.80112724751 3.7554481 7356.1636
+23733.80112729501 3.7554481 7355.7695
+23734.80112734251 3.755527 7355.9663
+23735.80112739 3.755645 7356.1636
+23736.8011274375 3.7555664 7355.7695
+23737.801127485 3.755645 7355.7695
+23738.8011275325 3.7557237 7355.5728
+23739.80112757999 3.7556844 7355.9663
+23740.80112762749 3.7558813 7356.5571
+23741.80112767499 3.7559993 7355.5728
+23742.80112772249 3.7561176 7356.3604
+23743.80112776998 3.756078 7356.1636
+23744.80112781748 3.7561569 7355.9663
+23745.80112786498 3.7562356 7355.5728
+23746.80112791248 3.7561963 7356.1636
+23747.80112795997 3.7564325 7355.9663
+23748.80112800747 3.7562749 7356.3604
+23749.80112805497 3.7565506 7356.7539
+23750.80112810247 3.7564719 7355.7695
+23751.80112814996 3.7564719 7356.1636
+23752.80112819746 3.7565899 7356.1636
+23753.80112824496 3.7567079 7355.5728
+23754.80112829246 3.7566686 7355.3765
+23755.80112833995 3.7567475 7355.5728
+23756.80112838745 3.7569048 7355.5728
+23757.80112843495 3.7568655 7356.1636
+23758.80112848245 3.7570229 7356.5571
+23759.80112852994 3.7570624 7356.1636
+23760.80112857744 3.7570229 7356.5571
+23761.80112862494 3.7571805 7356.1636
+23762.80112867244 3.7571018 7355.9663
+23763.80112871993 3.7571805 7356.1636
+23764.80112876743 3.7572198 7356.1636
+23765.80112881493 3.7572591 7355.3765
+23766.80112886243 3.7573774 7356.3604
+23767.80112890992 3.757338 7356.5571
+23768.80112895742 3.7574167 7355.9663
+23769.80112900492 3.7574561 7356.5571
+23770.80112905242 3.7574954 7355.3765
+23771.80112909991 3.7576134 7355.7695
+23772.80112914741 3.7576923 7356.1636
+23773.80112919491 3.757653 7355.7695
+23774.80112924241 3.757653 7355.9663
+23775.8011292899 3.757653 7355.7695
+23776.8011293374 3.7578104 7356.5571
+23777.8011293849 3.757771 7355.9663
+23778.8011294324 3.757889 7356.1636
+23779.80112947989 3.7578104 7356.1636
+23780.80112952739 3.757889 7355.7695
+23781.80112957489 3.7580466 7356.9502
+23782.80112962238 3.7580073 7356.3604
+23783.80112966988 3.7581253 7356.3604
+23784.80112971738 3.7581253 7355.7695
+23785.80112976488 3.7582433 7356.3604
+23786.80112981237 3.7583222 7355.1797
+23787.80112985987 3.7584009 7355.9663
+23788.80112990737 3.7583616 7355.5728
+23789.80112995487 3.7585189 7355.5728
+23790.80113000236 3.7584403 7355.9663
+23791.80113004986 3.7584403 7355.7695
+23792.80113009736 3.7585189 7355.5728
+23793.80113014486 3.7586372 7356.1636
+23794.80113019235 3.7585583 7356.3604
+23795.80113023985 3.7586765 7356.5571
+23796.80113028735 3.7587159 7355.9663
+23797.80113033485 3.7587945 7356.3604
+23798.80113038234 3.7589521 7356.5571
+23799.80113042984 3.7589521 7355.7695
+23800.80113047734 3.7590308 7356.1636
+23801.80113052484 3.7590308 7355.9663
+23802.80113057233 3.7590702 7356.1636
+23803.80113061983 3.7591488 7355.9663
+23804.80113066733 3.7592278 7356.5571
+23805.80113071483 3.7593064 7355.9663
+23806.80113076232 3.7593064 7355.9663
+23807.80113080982 3.7592671 7356.1636
+23808.80113085732 3.7593851 7355.5728
+23809.80113090482 3.7593851 7355.9663
+23810.80113095231 3.7594244 7356.9502
+23811.80113099981 3.759582 7356.5571
+23812.80113104731 3.759582 7355.9663
+23813.80113109481 3.7597394 7356.1636
+23814.8011311423 3.7596607 7355.3765
+23815.8011311898 3.7597394 7356.1636
+23816.8011312373 3.7598577 7356.9502
+23817.8011312848 3.759897 7356.1636
+23818.80113133229 3.759897 7355.7695
+23819.80113137979 3.759897 7356.5571
+23820.80113142729 3.7598183 7356.1636
+23821.80113147479 3.7599757 7356.5571
+23822.80113152228 3.759897 7355.9663
+23823.80113156978 3.7599757 7355.5728
+23824.80113161728 3.7600543 7356.1636
+23825.80113166478 3.7600543 7355.7695
+23826.80113171227 3.7600937 7355.9663
+23827.80113175977 3.7601726 7356.7539
+23828.80113180727 3.760015 7355.5728
+23829.80113185477 3.7602119 7355.1797
+23830.80113190226 3.7602119 7355.9663
+23831.80113194976 3.7601333 7355.9663
+23832.80113199726 3.7602119 7355.5728
+23833.80113204475 3.7604086 7356.1636
+23834.80113209225 3.7603693 7355.9663
+23835.80113213975 3.7604086 7356.1636
+23836.80113218725 3.7604482 7355.9663
+23837.80113223474 3.7604482 7355.5728
+23838.80113228224 3.7605269 7356.3604
+23839.80113232974 3.7606056 7355.5728
+23840.80113237724 3.7606449 7356.5571
+23841.80113242473 3.7606843 7355.5728
+23842.80113247223 3.7606056 7356.1636
+23843.80113251973 3.7606843 7355.9663
+23844.80113256723 3.7606449 7356.5571
+23845.80113261472 3.7608812 7355.9663
+23846.80113266222 3.7607632 7356.5571
+23847.80113270972 3.7608418 7356.3604
+23848.80113275722 3.7609205 7355.9663
+23849.80113280471 3.7609599 7356.5571
+23850.80113285221 3.7610388 7356.3604
+23851.80113289971 3.7609992 7356.1636
+23852.80113294721 3.7609992 7356.1636
+23853.8011329947 3.7609992 7356.1636
+23854.8011330422 3.7612355 7356.1636
+23855.8011330897 3.7613537 7355.9663
+23856.8011331372 3.7613142 7356.7539
+23857.80113318469 3.7612355 7356.5571
+23858.80113323219 3.7614324 7355.9663
+23859.80113327969 3.7612748 7355.1797
+23860.80113332719 3.7613931 7356.1636
+23861.80113337468 3.7615504 7355.9663
+23862.80113342218 3.7615504 7355.5728
+23863.80113346968 3.7616291 7355.9663
+23864.80113351718 3.761708 7355.7695
+23865.80113356467 3.7616687 7355.7695
+23866.80113361217 3.7617474 7356.1636
+23867.80113365967 3.7617867 7356.7539
+23868.80113370717 3.7618654 7355.7695
+23869.80113375466 3.7619047 7355.9663
+23870.80113380216 3.7619836 7355.9663
+23871.80113384966 3.762023 7356.9502
+23872.80113389716 3.7620623 7356.3604
+23873.80113394465 3.7621017 7356.1636
+23874.80113399215 3.7621803 7355.9663
+23875.80113403965 3.762141 7356.9502
+23876.80113408715 3.7622197 7355.5728
+23877.80113413464 3.7622197 7355.3765
+23878.80113418214 3.762259 7355.5728
+23879.80113422964 3.7624166 7356.3604
+23880.80113427714 3.7623379 7355.1797
+23881.80113432463 3.7624953 7356.1636
+23882.80113437213 3.7624953 7356.1636
+23883.80113441963 3.7625346 7355.7695
+23884.80113446712 3.7625742 7356.1636
+23885.80113451462 3.7626135 7355.5728
+23886.80113456212 3.7625346 7355.9663
+23887.80113460962 3.7626922 7355.7695
+23888.80113465711 3.7628496 7355.7695
+23889.80113470461 3.7627316 7355.7695
+23890.80113475211 3.7627316 7355.9663
+23891.80113479961 3.7627316 7355.7695
+23892.8011348471 3.7628891 7355.7695
+23893.8011348946 3.7628496 7356.1636
+23894.8011349421 3.7628891 7355.9663
+23895.8011349896 3.7628496 7355.3765
+23896.80113503709 3.7629678 7356.1636
+23897.80113508459 3.7630072 7356.5571
+23898.80113513209 3.7630072 7356.3604
+23899.80113517959 3.7630465 7356.3604
+23900.80113522708 3.7631252 7356.9502
+23901.80113527458 3.7631645 7355.7695
+23902.80113532208 3.7632041 7355.3765
+23903.80113536958 3.7632434 7355.5728
+23904.80113541707 3.7633221 7356.3604
+23905.80113546457 3.7634008 7355.3765
+23906.80113551207 3.7634008 7355.3765
+23907.80113555957 3.7634795 7354.9824
+23908.80113560706 3.7634008 7355.5728
+23909.80113565456 3.763519 7356.1636
+23910.80113570206 3.763519 7356.3604
+23911.80113574956 3.7635584 7356.1636
+23912.80113579705 3.7636371 7355.7695
+23913.80113584455 3.7637551 7355.9663
+23914.80113589205 3.7636764 7356.1636
+23915.80113593955 3.7637944 7356.3604
+23916.80113598704 3.7639127 7355.5728
+23917.80113603454 3.7639914 7356.5571
+23918.80113608204 3.7640307 7356.1636
+23919.80113612954 3.764149 7355.5728
+23920.80113617703 3.7641094 7355.9663
+23921.80113622453 3.7641883 7356.5571
+23922.80113627203 3.7642276 7356.3604
+23923.80113631953 3.7643063 7356.5571
+23924.80113636702 3.7643063 7356.1636
+23925.80113641452 3.7643456 7356.3604
+23926.80113646202 3.7644639 7355.7695
+23927.80113650952 3.7644246 7356.1636
+23928.80113655701 3.7645426 7355.7695
+23929.80113660451 3.7645426 7355.7695
+23930.80113665201 3.7646606 7355.9663
+23931.80113669951 3.7645819 7355.9663
+23932.801136747 3.7646606 7356.9502
+23933.8011367945 3.7646606 7355.9663
+23934.801136842 3.7648969 7356.9502
+23935.8011368895 3.7648182 7355.5728
+23936.80113693699 3.7649755 7356.1636
+23937.80113698449 3.7648182 7355.7695
+23938.80113703199 3.7650545 7355.3765
+23939.80113707948 3.7650938 7356.1636
+23940.80113712698 3.7651725 7356.1636
+23941.80113717448 3.7650938 7355.9663
+23942.80113722198 3.7651331 7355.9663
+23943.80113726947 3.7654088 7356.9502
+23944.80113731697 3.7654481 7356.1636
+23945.80113736447 3.7654481 7355.3765
+23946.80113741197 3.7654481 7355.5728
+23947.80113745946 3.7655268 7356.1636
+23948.80113750696 3.7655661 7356.7539
+23949.80113755446 3.7657237 7355.5728
+23950.80113760196 3.765763 7356.7539
+23951.80113764945 3.7658024 7356.1636
+23952.80113769695 3.7658811 7356.1636
+23953.80113774445 3.7658417 7356.3604
+23954.80113779195 3.7659597 7355.7695
+23955.80113783944 3.766078 7355.7695
+23956.80113788694 3.7661173 7355.7695
+23957.80113793444 3.7661567 7356.3604
+23958.80113798194 3.7662354 7355.5728
+23959.80113802943 3.7662354 7355.7695
+23960.80113807693 3.7663929 7356.3604
+23961.80113812443 3.7663536 7355.7695
+23962.80113817193 3.7664716 7356.3604
+23963.80113821942 3.766511 7356.9502
+23964.80113826692 3.7665503 7355.7695
+23965.80113831442 3.7665899 7355.7695
+23966.80113836192 3.7666292 7355.9663
+23967.80113840941 3.7667079 7355.5728
+23968.80113845691 3.7667079 7355.9663
+23969.80113850441 3.7667472 7356.1636
+23970.80113855191 3.7668653 7356.5571
+23971.8011385994 3.7668259 7355.7695
+23972.8011386469 3.7667866 7355.9663
+23973.8011386944 3.7669048 7355.7695
+23974.8011387419 3.7669442 7356.1636
+23975.80113878939 3.7668653 7355.9663
+23976.80113883689 3.7670228 7356.5571
+23977.80113888439 3.7670622 7355.7695
+23978.80113893189 3.7670622 7355.9663
+23979.80113897938 3.7672198 7355.7695
+23980.80113902688 3.7671409 7356.7539
+23981.80113907438 3.7671802 7356.3604
+23982.80113912188 3.7672985 7356.1636
+23983.80113916937 3.7673771 7354.7856
+23984.80113921687 3.7673378 7356.5571
+23985.80113926437 3.7673771 7355.5728
+23986.80113931187 3.7674952 7355.1797
+23987.80113935936 3.7674558 7355.7695
+23988.80113940686 3.7675741 7355.5728
+23989.80113945436 3.7676134 7356.3604
+23990.80113950185 3.7675347 7356.1636
+23991.80113954935 3.7676528 7355.7695
+23992.80113959685 3.7676921 7355.7695
+23993.80113964435 3.7678497 7355.7695
+23994.80113969184 3.7678101 7355.9663
+23995.80113973934 3.7679677 7356.5571
+23996.80113978684 3.7680857 7356.3604
+23997.80113983434 3.7680464 7355.5728
+23998.80113988183 3.7679677 7355.5728
+23999.80113992933 3.7681253 7355.9663
+24000.80113997683 3.7680857 7356.1636
+24001.80114002433 3.7681646 7355.7695
+24002.80114007182 3.7682433 7355.5728
+24003.80114011932 3.7681646 7356.3604
+24004.80114016682 3.768322 7356.3604
+24005.80114021432 3.768322 7355.7695
+24006.80114026181 3.7684402 7356.7539
+24007.80114030931 3.7684402 7355.9663
+24008.80114035681 3.7684796 7356.3604
+24009.80114040431 3.7685976 7355.9663
+24010.8011404518 3.7685583 7355.3765
+24011.8011404993 3.7685976 7355.7695
+24012.8011405468 3.7688339 7356.3604
+24013.8011405943 3.7687156 7355.7695
+24014.80114064179 3.7687945 7356.5571
+24015.80114068929 3.7688732 7356.9502
+24016.80114073679 3.7689126 7356.3604
+24017.80114078429 3.7689519 7355.9663
+24018.80114083178 3.7690701 7355.9663
+24019.80114087928 3.7691095 7356.5571
+24020.80114092678 3.7691488 7356.1636
+24021.80114097428 3.7692275 7355.9663
+24022.80114102177 3.7692668 7356.1636
+24023.80114106927 3.7692668 7355.7695
+24024.80114111677 3.7693455 7355.7695
+24025.80114116427 3.7694638 7356.1636
+24026.80114121176 3.7695031 7355.9663
+24027.80114125926 3.7695031 7355.9663
+24028.80114130676 3.7695818 7355.7695
+24029.80114135426 3.7696211 7356.5571
+24030.80114140175 3.7696607 7356.1636
+24031.80114144925 3.7698181 7355.3765
+24032.80114149675 3.7698181 7355.9663
+24033.80114154425 3.7698967 7355.3765
+24034.80114159174 3.7700543 7356.1636
+24035.80114163924 3.7699757 7356.7539
+24036.80114168674 3.770015 7354.9824
+24037.80114173424 3.7700543 7356.1636
+24038.80114178173 3.7701724 7355.3765
+24039.80114182923 3.7702906 7355.9663
+24040.80114187673 3.7702906 7355.9663
+24041.80114192422 3.7702906 7355.9663
+24042.80114197172 3.7703693 7356.7539
+24043.80114201922 3.7704873 7355.9663
+24044.80114206672 3.770566 7355.9663
+24045.80114211421 3.7706449 7355.7695
+24046.80114216171 3.7706449 7356.9502
+24047.80114220921 3.7706842 7356.7539
+24048.80114225671 3.7706842 7355.3765
+24049.8011423042 3.7708416 7355.5728
+24050.8011423517 3.7708809 7356.9502
+24051.8011423992 3.7709205 7355.7695
+24052.8011424467 3.7709992 7355.7695
+24053.80114249419 3.7710779 7356.1636
+24054.80114254169 3.7710779 7356.3604
+24055.80114258919 3.7711959 7355.7695
+24056.80114263669 3.7711565 7355.5728
+24057.80114268418 3.7713535 7356.5571
+24058.80114273168 3.7713141 7356.5571
+24059.80114277918 3.7715111 7355.7695
+24060.80114282668 3.7714322 7357.1475
+24061.80114287417 3.7714715 7356.5571
+24062.80114292167 3.7715898 7355.9663
+24063.80114296917 3.7716684 7355.9663
+24064.80114301667 3.7716684 7356.1636
+24065.80114306416 3.7717471 7356.1636
+24066.80114311166 3.7717471 7355.9663
+24067.80114315916 3.771826 7356.7539
+24068.80114320666 3.7718654 7356.5571
+24069.80114325415 3.7719047 7356.1636
+24070.80114330165 3.7719834 7356.5571
+24071.80114334915 3.7719834 7356.1636
+24072.80114339665 3.7721014 7356.3604
+24073.80114344414 3.7720621 7356.1636
+24074.80114349164 3.7721014 7355.7695
+24075.80114353914 3.772259 7356.5571
+24076.80114358664 3.7723377 7355.7695
+24077.80114363413 3.772377 7356.3604
+24078.80114368163 3.7724953 7355.7695
+24079.80114372913 3.7725739 7355.9663
+24080.80114377663 3.7725346 7356.1636
+24081.80114382412 3.772692 7355.9663
+24082.80114387162 3.772692 7356.3604
+24083.80114391912 3.7726526 7355.7695
+24084.80114396662 3.7728102 7356.7539
+24085.80114401411 3.7728102 7356.3604
+24086.80114406161 3.7728496 7355.9663
+24087.80114410911 3.7730463 7355.1797
+24088.80114415661 3.7730069 7355.9663
+24089.8011442041 3.7732432 7355.3765
+24090.8011442516 3.7732038 7355.9663
+24091.8011442991 3.7732038 7355.3765
+24092.80114434659 3.7733219 7356.3604
+24093.80114439409 3.7733219 7355.7695
+24094.80114444159 3.7735188 7355.9663
+24095.80114448909 3.7735188 7356.3604
+24096.80114453658 3.7735581 7356.3604
+24097.80114458408 3.7735581 7355.9663
+24098.80114463158 3.7736764 7356.1636
+24099.80114467908 3.7737551 7356.1636
+24100.80114472657 3.7737157 7355.3765
+24101.80114477407 3.7737157 7355.5728
+24102.80114482157 3.7738338 7356.3604
+24103.80114486907 3.7739913 7354.9824
+24104.80114491656 3.7741487 7355.7695
+24105.80114496406 3.77407 7356.3604
+24106.80114501156 3.7741487 7356.3604
+24107.80114505906 3.774188 7356.3604
+24108.80114510655 3.7743063 7355.5728
+24109.80114515405 3.7743456 7355.9663
+24110.80114520155 3.774385 7355.7695
+24111.80114524905 3.7744243 7356.3604
+24112.80114529654 3.774503 7355.5728
+24113.80114534404 3.7746606 7355.5728
+24114.80114539154 3.7746212 7356.1636
+24115.80114543904 3.7746212 7356.1636
+24116.80114548653 3.7746999 7356.3604
+24117.80114553403 3.7748573 7355.5728
+24118.80114558153 3.7748573 7356.5571
+24119.80114562903 3.7749362 7356.1636
+24120.80114567652 3.7750542 7355.1797
+24121.80114572402 3.7750542 7355.9663
+24122.80114577152 3.7750149 7356.1636
+24123.80114581902 3.7752118 7355.7695
+24124.80114586651 3.7752512 7356.3604
+24125.80114591401 3.7753692 7355.1797
+24126.80114596151 3.7753298 7356.3604
+24127.80114600901 3.7754478 7356.3604
+24128.8011460565 3.7754085 7355.5728
+24129.801146104 3.7755268 7356.1636
+24130.8011461515 3.7756448 7355.1797
+24131.801146199 3.7756448 7356.5571
+24132.80114624649 3.7756841 7355.9663
+24133.80114629399 3.7757628 7355.9663
+24134.80114634149 3.7758417 7356.9502
+24135.80114638899 3.7759204 7355.5728
+24136.80114643648 3.7759204 7355.5728
+24137.80114648398 3.7760384 7355.5728
+24138.80114653148 3.776196 7355.5728
+24139.80114657898 3.7763534 7356.5571
+24140.80114662647 3.776314 7356.9502
+24141.80114667397 3.776314 7355.3765
+24142.80114672147 3.7763534 7356.3604
+24143.80114676896 3.7763534 7356.1636
+24144.80114681646 3.7765503 7356.7539
+24145.80114686396 3.7765503 7355.9663
+24146.80114691146 3.7765896 7356.3604
+24147.80114695895 3.7765896 7355.9663
+24148.80114700645 3.7765896 7356.7539
+24149.80114705395 3.7767076 7356.1636
+24150.80114710145 3.7768259 7356.1636
+24151.80114714894 3.7768259 7355.7695
+24152.80114719644 3.7768259 7355.7695
+24153.80114724394 3.7769046 7355.1797
+24154.80114729144 3.7769439 7355.7695
+24155.80114733893 3.7769833 7356.1636
+24156.80114738643 3.7770226 7355.5728
+24157.80114743393 3.7770622 7355.1797
+24158.80114748143 3.7771802 7355.7695
+24159.80114752892 3.7772589 7355.9663
+24160.80114757642 3.7772589 7356.3604
+24161.80114762392 3.7773771 7355.7695
+24162.80114767142 3.7773771 7355.7695
+24163.80114771891 3.7774951 7355.7695
+24164.80114776641 3.7775345 7356.3604
+24165.80114781391 3.7774558 7355.5728
+24166.80114786141 3.7775738 7355.9663
+24167.8011479089 3.7778101 7356.3604
+24168.8011479564 3.7777314 7356.3604
+24169.8011480039 3.7777708 7356.7539
+24170.8011480514 3.7778101 7356.5571
+24171.80114809889 3.7778888 7355.9663
+24172.80114814639 3.7779675 7356.3604
+24173.80114819389 3.7780464 7355.7695
+24174.80114824139 3.778125 7355.7695
+24175.80114828888 3.7781644 7356.3604
+24176.80114833638 3.7782824 7355.3765
+24177.80114838388 3.778322 7355.3765
+24178.80114843138 3.7783613 7355.7695
+24179.80114847887 3.7784793 7355.9663
+24180.80114852637 3.778558 7355.5728
+24181.80114857387 3.778558 7356.3604
+24182.80114862137 3.778558 7355.7695
+24183.80114866886 3.7786369 7355.1797
+24184.80114871636 3.7785974 7355.9663
+24185.80114876386 3.7787549 7356.3604
+24186.80114881136 3.7787549 7356.3604
+24187.80114885885 3.778873 7356.3604
+24188.80114890635 3.778873 7355.1797
+24189.80114895385 3.7790306 7356.7539
+24190.80114900135 3.7790306 7356.5571
+24191.80114904884 3.7791486 7355.7695
+24192.80114909634 3.7791092 7355.9663
+24193.80114914384 3.7792275 7356.7539
+24194.80114919133 3.7793455 7355.7695
+24195.80114923883 3.7793849 7356.3604
+24196.80114928633 3.7795029 7356.1636
+24197.80114933383 3.7796211 7356.9502
+24198.80114938132 3.7795818 7356.3604
+24199.80114942882 3.7796605 7356.5571
+24200.80114947632 3.7797391 7356.1636
+24201.80114952382 3.7798178 7356.3604
+24202.80114957131 3.7799361 7355.3765
+24203.80114961881 3.7798574 7356.3604
+24204.80114966631 3.7799754 7356.1636
+24205.80114971381 3.7799361 7355.7695
+24206.8011497613 3.7800148 7356.1636
+24207.8011498088 3.7801328 7355.7695
+24208.8011498563 3.7802117 7355.1797
+24209.8011499038 3.7802904 7356.3604
+24210.80114995129 3.780369 7355.1797
+24211.80114999879 3.7804084 7356.1636
+24212.80115004629 3.7804873 7355.7695
+24213.80115009379 3.7804873 7356.5571
+24214.80115014128 3.7806053 7356.7539
+24215.80115018878 3.7804873 7356.9502
+24216.80115023628 3.7806447 7356.1636
+24217.80115028378 3.7807629 7356.1636
+24218.80115033127 3.7808416 7356.7539
+24219.80115037877 3.7808022 7356.3604
+24220.80115042627 3.7808416 7355.9663
+24221.80115047377 3.7809596 7355.7695
+24222.80115052126 3.7809203 7356.5571
+24223.80115056876 3.7809989 7355.5728
+24224.80115061626 3.7809989 7356.5571
+24225.80115066376 3.7811172 7355.9663
+24226.80115071125 3.7811172 7356.5571
+24227.80115075875 3.7811959 7356.3604
+24228.80115080625 3.7811565 7355.7695
+24229.80115085375 3.7812352 7356.7539
+24230.80115090124 3.7812746 7356.1636
+24231.80115094874 3.7813928 7355.5728
+24232.80115099624 3.7814322 7356.1636
+24233.80115104374 3.7814715 7355.9663
+24234.80115109123 3.7815502 7355.9663
+24235.80115113873 3.7815895 7355.3765
+24236.80115118623 3.7816288 7356.5571
+24237.80115123373 3.7815502 7356.3604
+24238.80115128122 3.7817471 7356.7539
+24239.80115132872 3.7817471 7355.9663
+24240.80115137622 3.7818651 7355.7695
+24241.80115142372 3.7818651 7356.1636
+24242.80115147121 3.7819438 7356.1636
+24243.80115151871 3.7819831 7355.7695
+24244.80115156621 3.7820621 7356.1636
+24245.8011516137 3.7821014 7355.3765
+24246.8011516612 3.7821407 7355.9663
+24247.8011517087 3.7822194 7355.5728
+24248.8011517562 3.7823377 7355.7695
+24249.80115180369 3.7823377 7355.5728
+24250.80115185119 3.7824163 7355.5728
+24251.80115189869 3.7824163 7355.9663
+24252.80115194619 3.7824163 7356.1636
+24253.80115199368 3.782495 7355.7695
+24254.80115204118 3.7826526 7355.3765
+24255.80115208868 3.7826526 7356.1636
+24256.80115213618 3.7828493 7356.1636
+24257.80115218367 3.78281 7355.9663
+24258.80115223117 3.7828493 7356.3604
+24259.80115227867 3.7828493 7356.1636
+24260.80115232617 3.7830462 7356.3604
+24261.80115237366 3.7831643 7355.9663
+24262.80115242116 3.7831249 7356.5571
+24263.80115246866 3.7831643 7355.5728
+24264.80115251616 3.7833612 7356.1636
+24265.80115256365 3.7832825 7356.7539
+24266.80115261115 3.7834399 7355.9663
+24267.80115265865 3.7834792 7355.9663
+24268.80115270615 3.7836368 7355.9663
+24269.80115275364 3.7836368 7356.5571
+24270.80115280114 3.7837155 7356.7539
+24271.80115284864 3.7837942 7355.9663
+24272.80115289614 3.7839124 7355.1797
+24273.80115294363 3.7838731 7355.7695
+24274.80115299113 3.7838335 7355.3765
+24275.80115303863 3.7839911 7356.1636
+24276.80115308613 3.7840698 7355.9663
+24277.80115313362 3.7841091 7355.7695
+24278.80115318112 3.7841487 7355.7695
+24279.80115322862 3.7841487 7356.7539
+24280.80115327612 3.784306 7356.3604
+24281.80115332361 3.7844636 7355.9663
+24282.80115337111 3.7844636 7355.5728
+24283.80115341861 3.7844636 7355.5728
+24284.80115346611 3.7845423 7355.9663
+24285.8011535136 3.7846603 7355.9663
+24286.8011535611 3.7847786 7356.5571
+24287.8011536086 3.784739 7356.3604
+24288.8011536561 3.7848179 7356.3604
+24289.80115370359 3.784936 7356.3604
+24290.80115375109 3.7848573 7356.5571
+24291.80115379859 3.785054 7355.9663
+24292.80115384609 3.785054 7355.9663
+24293.80115389358 3.785054 7355.9663
+24294.80115394108 3.7852509 7355.9663
+24295.80115398858 3.7852509 7356.3604
+24296.80115403607 3.7852509 7356.1636
+24297.80115408357 3.7852902 7356.1636
+24298.80115413107 3.7852902 7355.7695
+24299.80115417857 3.7853689 7356.3604
+24300.80115422606 3.7853689 7355.9663
+24301.80115427356 3.7855265 7356.5571
+24302.80115432106 3.7855265 7355.9663
+24303.80115436856 3.7854478 7355.5728
+24304.80115441605 3.7854872 7355.7695
+24305.80115446355 3.7856839 7356.7539
+24306.80115451105 3.7857234 7356.7539
+24307.80115455855 3.7856839 7356.5571
+24308.80115460604 3.7857628 7356.3604
+24309.80115465354 3.7858808 7356.1636
+24310.80115470104 3.7859991 7356.1636
+24311.80115474854 3.7859595 7355.9663
+24312.80115479603 3.7859991 7355.9663
+24313.80115484353 3.7861171 7355.1797
+24314.80115489103 3.7860777 7356.5571
+24315.80115493853 3.7861958 7356.5571
+24316.80115498602 3.7863533 7355.5728
+24317.80115503352 3.786432 7356.3604
+24318.80115508102 3.7864714 7356.1636
+24319.80115512852 3.7864714 7356.1636
+24320.80115517601 3.7865107 7356.3604
+24321.80115522351 3.7865894 7356.3604
+24322.80115527101 3.7866683 7355.5728
+24323.80115531851 3.786629 7355.3765
+24324.801155366 3.786747 7356.3604
+24325.8011554135 3.7867863 7355.7695
+24326.801155461 3.786747 7355.7695
+24327.8011555085 3.7869043 7355.9663
+24328.80115555599 3.7869439 7356.3604
+24329.80115560349 3.7869439 7356.5571
+24330.80115565099 3.7869439 7355.9663
+24331.80115569849 3.7870226 7355.9663
+24332.80115574598 3.7870619 7355.3765
+24333.80115579348 3.7872193 7355.5728
+24334.80115584098 3.7871406 7355.5728
+24335.80115588848 3.7872589 7355.5728
+24336.80115593597 3.7873375 7356.3604
+24337.80115598347 3.7873769 7356.1636
+24338.80115603097 3.7872589 7355.1797
+24339.80115607847 3.7875342 7356.1636
+24340.80115612596 3.7874556 7356.5571
+24341.80115617346 3.7876525 7356.1636
+24342.80115622096 3.7876132 7356.1636
+24343.80115626846 3.7876132 7356.1636
+24344.80115631595 3.7878098 7356.5571
+24345.80115636345 3.7877705 7355.3765
+24346.80115641095 3.7879281 7355.9663
+24347.80115645844 3.7878494 7355.9663
+24348.80115650594 3.7878888 7356.3604
+24349.80115655344 3.7879281 7356.3604
+24350.80115660094 3.7880068 7355.7695
+24351.80115664843 3.7881644 7355.3765
+24352.80115669593 3.7882037 7355.5728
+24353.80115674343 3.7881644 7355.9663
+24354.80115679093 3.7882037 7356.1636
+24355.80115683842 3.7882824 7355.9663
+24356.80115688592 3.7884793 7355.9663
+24357.80115693342 3.7883217 7355.5728
+24358.80115698092 3.7884004 7356.1636
+24359.80115702841 3.788558 7355.7695
+24360.80115707591 3.7885973 7356.5571
+24361.80115712341 3.7885973 7356.9502
+24362.80115717091 3.788676 7356.1636
+24363.8011572184 3.788676 7355.7695
+24364.8011572659 3.7887154 7355.9663
+24365.8011573134 3.788873 7355.9663
+24366.8011573609 3.7887943 7357.1475
+24367.80115740839 3.788991 7356.7539
+24368.80115745589 3.788991 7356.9502
+24369.80115750339 3.7891879 7356.7539
+24370.80115755089 3.7891092 7355.5728
+24371.80115759838 3.7891486 7356.3604
+24372.80115764588 3.7891879 7356.5571
+24373.80115769338 3.7893848 7355.9663
+24374.80115774088 3.7894242 7355.9663
+24375.80115778837 3.7895815 7355.7695
+24376.80115783587 3.7895422 7355.7695
+24377.80115788337 3.7896209 7356.1636
+24378.80115793087 3.7897391 7356.3604
+24379.80115797836 3.7897785 7357.1475
+24380.80115802586 3.7898178 7355.9663
+24381.80115807336 3.7898965 7356.1636
+24382.80115812086 3.7899358 7355.7695
+24383.80115816835 3.7899752 7355.5728
+24384.80115821585 3.7900934 7356.3604
+24385.80115826335 3.7901721 7356.1636
+24386.80115831085 3.7901328 7355.3765
+24387.80115835834 3.7901721 7355.5728
+24388.80115840584 3.790369 7356.7539
+24389.80115845334 3.790369 7355.5728
+24390.80115850084 3.7905264 7356.3604
+24391.80115854833 3.7904477 7355.7695
+24392.80115859583 3.7905657 7355.1797
+24393.80115864333 3.7906051 7355.9663
+24394.80115869083 3.790684 7355.1797
+24395.80115873832 3.7907233 7355.7695
+24396.80115878582 3.7908413 7355.7695
+24397.80115883332 3.7908413 7356.5571
+24398.80115888081 3.7908807 7355.3765
+24399.80115892831 3.7909596 7356.5571
+24400.80115897581 3.7909989 7355.7695
+24401.80115902331 3.7911956 7355.9663
+24402.8011590708 3.7912352 7355.5728
+24403.8011591183 3.7913139 7355.3765
+24404.8011591658 3.7913926 7355.3765
+24405.8011592133 3.7915106 7355.7695
+24406.80115926079 3.7915106 7355.9663
+24407.80115930829 3.7916682 7356.3604
+24408.80115935579 3.7916682 7355.7695
+24409.80115940329 3.7917075 7356.1636
+24410.80115945078 3.7917469 7356.9502
+24411.80115949828 3.7917862 7356.5571
+24412.80115954578 3.7919044 7356.1636
+24413.80115959328 3.7919831 7355.5728
+24414.80115964077 3.7920225 7355.9663
+24415.80115968827 3.7921405 7356.3604
+24416.80115973577 3.7922194 7356.5571
+24417.80115978327 3.7921011 7355.9663
+24418.80115983076 3.7923374 7355.9663
+24419.80115987826 3.7923768 7355.7695
+24420.80115992576 3.792495 7356.5571
+24421.80115997326 3.792495 7356.1636
+24422.80116002075 3.792613 7355.7695
+24423.80116006825 3.792613 7355.7695
+24424.80116011575 3.7926524 7355.7695
+24425.80116016325 3.792731 7356.1636
+24426.80116021074 3.79281 7356.5571
+24427.80116025824 3.7928493 7356.7539
+24428.80116030574 3.793046 7355.9663
+24429.80116035324 3.7930067 7355.5728
+24430.80116040073 3.793046 7356.1636
+24431.80116044823 3.7931249 7356.3604
+24432.80116049573 3.7931643 7355.9663
+24433.80116054323 3.7933609 7356.5571
+24434.80116059072 3.7933609 7355.3765
+24435.80116063822 3.7934399 7355.9663
+24436.80116068572 3.7934005 7356.3604
+24437.80116073322 3.7934792 7355.7695
+24438.80116078071 3.7935579 7355.9663
+24439.80116082821 3.7936366 7355.3765
+24440.80116087571 3.7936366 7355.9663
+24441.80116092321 3.7937155 7355.5728
+24442.8011609707 3.7936759 7356.7539
+24443.8011610182 3.7936759 7356.3604
+24444.8011610657 3.7939122 7356.5571
+24445.8011611132 3.7938335 7355.3765
+24446.80116116069 3.7939515 7356.1636
+24447.80116120819 3.7939909 7355.7695
+24448.80116125569 3.7940698 7356.1636
+24449.80116130318 3.7941484 7354.9824
+24450.80116135068 3.7943058 7356.3604
+24451.80116139818 3.7942665 7356.1636
+24452.80116144568 3.7943058 7355.5728
+24453.80116149317 3.7944634 7355.9663
+24454.80116154067 3.7944241 7356.1636
+24455.80116158817 3.7945421 7356.3604
+24456.80116163567 3.7945421 7355.9663
+24457.80116168316 3.7946603 7355.7695
+24458.80116173066 3.794739 7356.7539
+24459.80116177816 3.7947783 7356.1636
+24460.80116182566 3.794857 7357.1475
+24461.80116187315 3.7949359 7355.5728
+24462.80116192065 3.7948964 7357.1475
+24463.80116196815 3.7949753 7357.1475
+24464.80116201565 3.7950933 7355.7695
+24465.80116206314 3.7950933 7355.9663
+24466.80116211064 3.7952509 7356.5571
+24467.80116215814 3.7953296 7355.9663
+24468.80116220564 3.7954082 7356.1636
+24469.80116225313 3.7954476 7355.9663
+24470.80116230063 3.7955658 7356.3604
+24471.80116234813 3.7956839 7355.7695
+24472.80116239563 3.7956839 7355.7695
+24473.80116244312 3.7957232 7355.5728
+24474.80116249062 3.7957625 7356.1636
+24475.80116253812 3.7958412 7355.9663
+24476.80116258562 3.7958808 7356.3604
+24477.80116263311 3.7959595 7355.7695
+24478.80116268061 3.7960775 7356.1636
+24479.80116272811 3.7960382 7356.7539
+24480.80116277561 3.7960775 7356.3604
+24481.8011628231 3.7961957 7356.5571
+24482.8011628706 3.7962744 7356.1636
+24483.8011629181 3.7963138 7356.5571
+24484.8011629656 3.7963531 7355.5728
+24485.80116301309 3.7964711 7356.5571
+24486.80116306059 3.7965107 7355.7695
+24487.80116310809 3.79655 7355.7695
+24488.80116315559 3.79655 7356.5571
+24489.80116320308 3.7967467 7355.7695
+24490.80116325058 3.7967074 7355.9663
+24491.80116329808 3.7967863 7355.7695
+24492.80116334558 3.7968256 7355.5728
+24493.80116339307 3.7969043 7356.1636
+24494.80116344057 3.796983 7355.3765
+24495.80116348807 3.7970223 7355.5728
+24496.80116353557 3.7970617 7355.1797
+24497.80116358306 3.7972193 7356.1636
+24498.80116363056 3.7972586 7355.5728
+24499.80116367806 3.7973373 7355.7695
+24500.80116372555 3.7974555 7356.5571
+24501.80116377305 3.7973373 7355.3765
+24502.80116382055 3.7974162 7356.3604
+24503.80116386805 3.7976129 7356.3604
+24504.80116391554 3.7975342 7356.3604
+24505.80116396304 3.7976129 7355.9663
+24506.80116401054 3.7976522 7356.1636
+24507.80116405804 3.7977705 7356.5571
+24508.80116410553 3.7978098 7355.9663
+24509.80116415303 3.7978098 7356.1636
+24510.80116420053 3.7979279 7355.7695
+24511.80116424803 3.7980065 7355.9663
+24512.80116429552 3.7980461 7355.9663
+24513.80116434302 3.7980065 7355.5728
+24514.80116439052 3.7982428 7356.3604
+24515.80116443802 3.7981641 7356.3604
+24516.80116448551 3.7982428 7355.7695
+24517.80116453301 3.7983611 7355.5728
+24518.80116458051 3.7983611 7356.5571
+24519.80116462801 3.7984791 7355.9663
+24520.8011646755 3.7984791 7356.5571
+24521.801164723 3.7985578 7356.1636
+24522.8011647705 3.7986367 7356.3604
+24523.801164818 3.798676 7356.1636
+24524.80116486549 3.798794 7356.1636
+24525.80116491299 3.7988727 7355.7695
+24526.80116496049 3.798912 7356.5571
+24527.80116500799 3.7990696 7355.7695
+24528.80116505548 3.7990696 7355.1797
+24529.80116510298 3.799109 7356.7539
+24530.80116515048 3.799227 7355.7695
+24531.80116519798 3.7991877 7355.9663
+24532.80116524547 3.7993059 7355.5728
+24533.80116529297 3.7993846 7355.7695
+24534.80116534047 3.7994633 7355.9663
+24535.80116538797 3.7994239 7355.9663
+24536.80116543546 3.7995026 7355.1797
+24537.80116548296 3.7996209 7356.5571
+24538.80116553046 3.7996995 7356.1636
+24539.80116557796 3.7998569 7355.9663
+24540.80116562545 3.7998965 7355.7695
+24541.80116567295 3.7998965 7356.1636
+24542.80116572045 3.7999358 7356.3604
+24543.80116576795 3.8000145 7355.7695
+24544.80116581544 3.8001721 7356.1636
+24545.80116586294 3.8001325 7356.1636
+24546.80116591044 3.8000932 7355.7695
+24547.80116595794 3.8003294 7356.1636
+24548.80116600543 3.8004081 7356.1636
+24549.80116605293 3.8003688 7356.5571
+24550.80116610043 3.8004081 7355.7695
+24551.80116614793 3.8005264 7355.7695
+24552.80116619542 3.8006051 7356.1636
+24553.80116624292 3.8006837 7356.5571
+24554.80116629042 3.8007231 7355.5728
+24555.80116633791 3.8009593 7354.9824
+24556.80116638541 3.8008413 7354.9824
+24557.80116643291 3.80092 7355.7695
+24558.80116648041 3.801038 7355.7695
+24559.8011665279 3.8009987 7356.5571
+24560.8011665754 3.8011956 7355.5728
+24561.8011666229 3.8011563 7355.7695
+24562.8011666704 3.801353 7356.3604
+24563.80116671789 3.8014712 7355.9663
+24564.80116676539 3.8014712 7356.1636
+24565.80116681289 3.8014319 7356.1636
+24566.80116686039 3.8015499 7355.3765
+24567.80116690788 3.8016286 7355.5728
+24568.80116695538 3.8016679 7356.1636
+24569.80116700288 3.8017862 7356.1636
+24570.80116705038 3.8018649 7356.3604
+24571.80116709787 3.8018649 7356.7539
+24572.80116714537 3.8019042 7355.5728
+24573.80116719287 3.8019435 7355.3765
+24574.80116724037 3.8020225 7357.3442
+24575.80116728786 3.8021405 7355.5728
+24576.80116733536 3.8022192 7355.7695
+24577.80116738286 3.8022978 7356.3604
+24578.80116743036 3.8022978 7356.3604
+24579.80116747785 3.8024161 7355.5728
+24580.80116752535 3.8024948 7355.3765
+24581.80116757285 3.8024948 7356.7539
+24582.80116762035 3.8026128 7355.5728
+24583.80116766784 3.8026524 7356.1636
+24584.80116771534 3.802731 7355.9663
+24585.80116776284 3.8027704 7356.5571
+24586.80116781034 3.8028097 7356.3604
+24587.80116785783 3.8028884 7356.5571
+24588.80116790533 3.8030066 7355.1797
+24589.80116795283 3.8030066 7356.3604
+24590.80116800033 3.8030853 7355.5728
+24591.80116804782 3.803164 7355.7695
+24592.80116809532 3.8032427 7356.1636
+24593.80116814282 3.8032427 7356.1636
+24594.80116819032 3.8034003 7355.9663
+24595.80116823781 3.8034003 7355.7695
+24596.80116828531 3.8035972 7356.1636
+24597.80116833281 3.8035183 7355.9663
+24598.80116838031 3.8035972 7356.1636
+24599.8011684278 3.8037152 7356.3604
+24600.8011684753 3.8037939 7355.5728
+24601.8011685228 3.8038332 7355.7695
+24602.8011685703 3.8039122 7355.5728
+24603.80116861779 3.8038728 7355.5728
+24604.80116866529 3.8041089 7355.7695
+24605.80116871279 3.8041482 7355.5728
+24606.80116876028 3.8042271 7356.5571
+24607.80116880778 3.8043058 7355.7695
+24608.80116885528 3.8043058 7355.9663
+24609.80116890278 3.8043451 7356.3604
+24610.80116895027 3.8045027 7355.7695
+24611.80116899777 3.8045027 7355.9663
+24612.80116904527 3.8046207 7355.9663
+24613.80116909277 3.8046601 7356.3604
+24614.80116914026 3.8048177 7356.3604
+24615.80116918776 3.8047781 7355.5728
+24616.80116923526 3.8050144 7355.5728
+24617.80116928276 3.804975 7355.5728
+24618.80116933025 3.8049357 7355.3765
+24619.80116937775 3.8051326 7354.9824
+24620.80116942525 3.8051326 7355.7695
+24621.80116947275 3.8052506 7355.9663
+24622.80116952024 3.8052506 7356.5571
+24623.80116956774 3.80529 7355.9663
+24624.80116961524 3.8054869 7355.9663
+24625.80116966274 3.8055263 7356.3604
+24626.80116971023 3.8055263 7355.7695
+24627.80116975773 3.8056049 7355.9663
+24628.80116980523 3.8056049 7355.7695
+24629.80116985273 3.8057232 7355.9663
+24630.80116990022 3.8057625 7356.3604
+24631.80116994772 3.8058019 7356.1636
+24632.80116999522 3.8059986 7355.9663
+24633.80117004272 3.8059986 7355.9663
+24634.80117009021 3.8059592 7355.9663
+24635.80117013771 3.8060775 7356.1636
+24636.80117018521 3.8061955 7355.9663
+24637.80117023271 3.8061955 7355.9663
+24638.8011702802 3.8062348 7356.5571
+24639.8011703277 3.8062742 7355.5728
+24640.8011703752 3.8064711 7356.1636
+24641.8011704227 3.8064318 7356.3604
+24642.80117047019 3.8065498 7355.9663
+24643.80117051769 3.8065891 7355.5728
+24644.80117056519 3.8066285 7355.9663
+24645.80117061269 3.806668 7355.7695
+24646.80117066018 3.8067467 7356.1636
+24647.80117070768 3.8068647 7356.3604
+24648.80117075518 3.8067467 7355.5728
+24649.80117080268 3.806983 7356.1636
+24650.80117085017 3.806983 7356.1636
+24651.80117089767 3.8070617 7355.9663
+24652.80117094517 3.807101 7355.7695
+24653.80117099267 3.8071404 7356.3604
+24654.80117104016 3.8072979 7356.3604
+24655.80117108766 3.8073766 7355.5728
+24656.80117113516 3.8073373 7355.9663
+24657.80117118265 3.8073373 7356.1636
+24658.80117123015 3.807416 7356.3604
+24659.80117127765 3.8074553 7356.3604
+24660.80117132515 3.807534 7356.1636
+24661.80117137264 3.8076129 7355.3765
+24662.80117142014 3.8077703 7356.1636
+24663.80117146764 3.8076522 7355.7695
+24664.80117151514 3.8078096 7355.3765
+24665.80117156263 3.8079278 7356.1636
+24666.80117161013 3.8079278 7355.9663
+24667.80117165763 3.8080065 7355.1797
+24668.80117170513 3.8080065 7355.7695
+24669.80117175262 3.8081639 7356.9502
+24670.80117180012 3.8082428 7355.9663
+24671.80117184762 3.8082428 7356.3604
+24672.80117189512 3.8083215 7355.1797
+24673.80117194261 3.8084002 7355.5728
+24674.80117199011 3.8084395 7356.5571
+24675.80117203761 3.8085971 7356.5571
+24676.80117208511 3.8086758 7356.1636
+24677.8011721326 3.8085577 7355.9663
+24678.8011721801 3.8086364 7356.3604
+24679.8011722276 3.8087544 7355.9663
+24680.8011722751 3.8088727 7355.5728
+24681.80117232259 3.8088334 7355.9663
+24682.80117237009 3.808912 7356.1636
+24683.80117241759 3.8089907 7356.5571
+24684.80117246509 3.8090694 7355.9663
+24685.80117251258 3.8091483 7356.3604
+24686.80117256008 3.8093057 7356.1636
+24687.80117260758 3.809109 7355.3765
+24688.80117265508 3.8093843 7354.9824
+24689.80117270257 3.8092663 7355.7695
+24690.80117275007 3.8093057 7355.7695
+24691.80117279757 3.8094239 7355.5728
+24692.80117284507 3.8095419 7356.1636
+24693.80117289256 3.8095026 7355.3765
+24694.80117294006 3.80966 7355.3765
+24695.80117298756 3.80966 7356.3604
+24696.80117303506 3.8097782 7356.1636
+24697.80117308255 3.8098569 7356.3604
+24698.80117313005 3.8099356 7355.9663
+24699.80117317755 3.8099356 7355.9663
+24700.80117322505 3.8100538 7356.3604
+24701.80117327254 3.8101718 7356.9502
+24702.80117332004 3.8101718 7356.1636
+24703.80117336754 3.8102899 7355.3765
+24704.80117341504 3.8102899 7355.7695
+24705.80117346253 3.8102899 7355.1797
+24706.80117351003 3.8103292 7356.5571
+24707.80117355753 3.8104868 7355.3765
+24708.80117360502 3.8105261 7355.3765
+24709.80117365252 3.8106441 7356.3604
+24710.80117370002 3.8106441 7355.9663
+24711.80117374752 3.8107624 7355.9663
+24712.80117379501 3.8109198 7355.9663
+24713.80117384251 3.8108017 7355.9663
+24714.80117389001 3.8109198 7356.5571
+24715.80117393751 3.8108804 7355.7695
+24716.801173985 3.8109593 7355.9663
+24717.8011740325 3.8110774 7355.9663
+24718.80117408 3.8111167 7356.3604
+24719.8011741275 3.8110774 7355.3765
+24720.80117417499 3.811353 7355.5728
+24721.80117422249 3.8112743 7356.3604
+24722.80117426999 3.8113923 7356.1636
+24723.80117431749 3.811471 7355.7695
+24724.80117436498 3.8115103 7356.5571
+24725.80117441248 3.8116286 7356.3604
+24726.80117445998 3.8116286 7355.7695
+24727.80117450748 3.8117466 7356.1636
+24728.80117455497 3.8117859 7355.5728
+24729.80117460247 3.8119435 7356.5571
+24730.80117464997 3.8119042 7355.1797
+24731.80117469747 3.8120615 7356.1636
+24732.80117474496 3.8121402 7356.1636
+24733.80117479246 3.8121796 7356.5571
+24734.80117483996 3.8122191 7356.5571
+24735.80117488746 3.8121796 7355.5728
+24736.80117493495 3.8122978 7355.3765
+24737.80117498245 3.8123765 7356.3604
+24738.80117502995 3.8124552 7355.5728
+24739.80117507745 3.8124945 7355.5728
+24740.80117512494 3.8126128 7355.3765
+24741.80117517244 3.8128097 7355.9663
+24742.80117521994 3.8128097 7355.5728
+24743.80117526744 3.8128097 7355.7695
+24744.80117531493 3.8129671 7355.9663
+24745.80117536243 3.8130851 7355.7695
+24746.80117540993 3.8130851 7355.9663
+24747.80117545743 3.8130851 7355.7695
+24748.80117550492 3.813164 7356.1636
+24749.80117555242 3.813282 7356.7539
+24750.80117559992 3.8132427 7355.9663
+24751.80117564742 3.8134 7356.5571
+24752.80117569491 3.8134396 7356.5571
+24753.80117574241 3.8135183 7355.5728
+24754.80117578991 3.813715 7355.9663
+24755.80117583741 3.813715 7356.3604
+24756.8011758849 3.8137546 7355.5728
+24757.8011759324 3.8138726 7355.3765
+24758.8011759799 3.8139513 7356.1636
+24759.80117602739 3.8139513 7355.9663
+24760.80117607489 3.8140695 7355.7695
+24761.80117612239 3.8140695 7355.1797
+24762.80117616989 3.8141482 7355.1797
+24763.80117621738 3.8142269 7355.3765
+24764.80117626488 3.8143055 7356.5571
+24765.80117631238 3.8143055 7356.5571
+24766.80117635988 3.8145025 7355.7695
+24767.80117640737 3.8145025 7356.1636
+24768.80117645487 3.8146205 7355.5728
+24769.80117650237 3.8145812 7356.1636
+24770.80117654987 3.8148568 7355.5728
+24771.80117659736 3.8147781 7355.7695
+24772.80117664486 3.814975 7355.5728
+24773.80117669236 3.8149354 7356.3604
+24774.80117673986 3.8150537 7355.5728
+24775.80117678735 3.815093 7355.5728
+24776.80117683485 3.8151717 7356.1636
+24777.80117688235 3.8152111 7356.3604
+24778.80117692985 3.8152504 7356.3604
+24779.80117697734 3.8153293 7355.3765
+24780.80117702484 3.8154473 7355.9663
+24781.80117707234 3.815408 7356.1636
+24782.80117711984 3.8154867 7356.3604
+24783.80117716733 3.8156049 7355.9663
+24784.80117721483 3.8157229 7356.1636
+24785.80117726233 3.815841 7356.3604
+24786.80117730983 3.8158016 7355.9663
+24787.80117735732 3.8159592 7356.3604
+24788.80117740482 3.8159199 7355.9663
+24789.80117745232 3.8160772 7356.3604
+24790.80117749982 3.8160379 7355.7695
+24791.80117754731 3.8162348 7355.1797
+24792.80117759481 3.8162742 7356.7539
+24793.80117764231 3.8163922 7357.1475
+24794.80117768981 3.8164709 7356.5571
+24795.8011777373 3.8164315 7355.5728
+24796.8011777848 3.8165104 7356.5571
+24797.8011778323 3.8167858 7356.5571
+24798.8011778798 3.8166678 7355.7695
+24799.80117792729 3.8167858 7355.9663
+24800.80117797479 3.8167858 7356.3604
+24801.80117802229 3.8169827 7356.3604
+24802.80117806979 3.8169041 7356.1636
+24803.80117811728 3.8170221 7355.5728
+24804.80117816478 3.8171008 7356.5571
+24805.80117821228 3.8171008 7356.1636
+24806.80117825978 3.8172584 7356.7539
+24807.80117830727 3.8172977 7356.5571
+24808.80117835477 3.8172977 7355.5728
+24809.80117840227 3.8174946 7357.1475
+24810.80117844976 3.8174157 7355.7695
+24811.80117849726 3.8174946 7356.1636
+24812.80117854476 3.8175733 7355.9663
+24813.80117859226 3.8177702 7355.9663
+24814.80117863975 3.8176913 7355.9663
+24815.80117868725 3.8178883 7356.3604
+24816.80117873475 3.8177702 7356.5571
+24817.80117878225 3.8178883 7356.9502
+24818.80117882974 3.8179669 7355.9663
+24819.80117887724 3.8180459 7355.3765
+24820.80117892474 3.8180852 7355.9663
+24821.80117897224 3.8181639 7355.9663
+24822.80117901973 3.8182819 7356.3604
+24823.80117906723 3.8184001 7355.3765
+24824.80117911473 3.8183212 7355.5728
+24825.80117916223 3.8184395 7355.7695
+24826.80117920972 3.8186362 7355.7695
+24827.80117925722 3.8185575 7355.5728
+24828.80117930472 3.8186362 7356.1636
+24829.80117935222 3.8187938 7355.7695
+24830.80117939971 3.8187938 7355.5728
+24831.80117944721 3.8189118 7356.5571
+24832.80117949471 3.8189511 7356.5571
+24833.80117954221 3.8189118 7356.5571
+24834.8011795897 3.8189907 7355.5728
+24835.8011796372 3.8191481 7356.5571
+24836.8011796847 3.8191087 7355.9663
+24837.8011797322 3.8191874 7355.5728
+24838.80117977969 3.8193057 7356.1636
+24839.80117982719 3.8193057 7355.7695
+24840.80117987469 3.8195417 7354.9824
+24841.80117992219 3.819463 7355.5728
+24842.80117996968 3.8196993 7355.5728
+24843.80118001718 3.8196599 7355.3765
+24844.80118006468 3.8197386 7356.1636
+24845.80118011218 3.819778 7356.1636
+24846.80118015967 3.8198962 7356.3604
+24847.80118020717 3.8199749 7356.3604
+24848.80118025467 3.8200536 7355.1797
+24849.80118030217 3.8201716 7355.9663
+24850.80118034966 3.8201716 7356.1636
+24851.80118039716 3.8202899 7356.1636
+24852.80118044466 3.8204472 7356.5571
+24853.80118049216 3.8204472 7356.3604
+24854.80118053965 3.8204472 7355.9663
+24855.80118058715 3.8206441 7355.7695
+24856.80118063465 3.8206835 7356.1636
+24857.80118068215 3.8208411 7355.9663
+24858.80118072964 3.8208804 7355.9663
+24859.80118077714 3.8209198 7356.5571
+24860.80118082464 3.8210378 7355.9663
+24861.80118087213 3.821156 7356.5571
+24862.80118091963 3.8211164 7356.5571
+24863.80118096713 3.8212347 7356.1636
+24864.80118101463 3.8211954 7355.7695
+24865.80118106212 3.8213921 7355.7695
+24866.80118110962 3.821471 7355.9663
+24867.80118115712 3.8215103 7356.1636
+24868.80118120462 3.8216283 7355.9663
+24869.80118125211 3.8216677 7355.9663
+24870.80118129961 3.8217859 7355.3765
+24871.80118134711 3.8219039 7355.3765
+24872.80118139461 3.8219826 7356.7539
+24873.8011814421 3.8220615 7356.1636
+24874.8011814896 3.8219826 7355.7695
+24875.8011815371 3.8221796 7356.3604
+24876.8011815846 3.8222582 7356.3604
+24877.80118163209 3.8223369 7356.1636
+24878.80118167959 3.8223369 7355.7695
+24879.80118172709 3.8224945 7355.3765
+24880.80118177459 3.8226125 7355.7695
+24881.80118182208 3.8226125 7356.3604
+24882.80118186958 3.8226914 7355.1797
+24883.80118191708 3.8228095 7356.1636
+24884.80118196458 3.8229275 7355.9663
+24885.80118201207 3.8230457 7355.7695
+24886.80118205957 3.8229668 7355.7695
+24887.80118210707 3.8230851 7356.1636
+24888.80118215457 3.8231637 7355.5728
+24889.80118220206 3.8233607 7355.1797
+24890.80118224956 3.8233607 7355.3765
+24891.80118229706 3.8233607 7356.1636
+24892.80118234456 3.8234787 7356.3604
+24893.80118239205 3.823518 7356.1636
+24894.80118243955 3.8236756 7355.5728
+24895.80118248705 3.823715 7356.1636
+24896.80118253455 3.8237543 7356.1636
+24897.80118258204 3.8237936 7355.5728
+24898.80118262954 3.8238723 7355.9663
+24899.80118267704 3.8239512 7355.9663
+24900.80118272454 3.8240693 7355.9663
+24901.80118277203 3.8240299 7356.1636
+24902.80118281953 3.8241873 7355.7695
+24903.80118286703 3.8241479 7355.3765
+24904.80118291453 3.8243449 7355.5728
+24905.80118296202 3.8243842 7356.9502
+24906.80118300952 3.8244629 7356.3604
+24907.80118305702 3.8243449 7355.9663
+24908.80118310452 3.8245418 7356.1636
+24909.80118315201 3.8246205 7356.3604
+24910.80118319951 3.8245811 7356.1636
+24911.80118324701 3.8246992 7355.3765
+24912.8011832945 3.8247385 7355.3765
+24913.801183342 3.8247778 7356.9502
+24914.8011833895 3.8249748 7355.5728
+24915.801183437 3.8250928 7356.3604
+24916.80118348449 3.8250535 7356.3604
+24917.80118353199 3.825211 7355.1797
+24918.80118357949 3.8252504 7355.9663
+24919.80118362699 3.8252897 7356.3604
+24920.80118367448 3.8254077 7356.1636
+24921.80118372198 3.8254077 7356.1636
+24922.80118376948 3.8256047 7355.9663
+24923.80118381698 3.8256047 7355.5728
+24924.80118386447 3.8257623 7355.5728
+24925.80118391197 3.8257623 7355.9663
+24926.80118395947 3.8258803 7354.9824
+24927.80118400697 3.8259983 7355.9663
+24928.80118405446 3.8260376 7356.7539
+24929.80118410196 3.8260772 7356.1636
+24930.80118414946 3.8261559 7356.3604
+24931.80118419696 3.8262346 7354.9824
+24932.80118424445 3.8263922 7356.5571
+24933.80118429195 3.8263526 7355.7695
+24934.80118433945 3.8264315 7355.9663
+24935.80118438695 3.8265889 7355.9663
+24936.80118443444 3.8267071 7356.1636
+24937.80118448194 3.8267858 7355.5728
+24938.80118452944 3.8267071 7356.3604
+24939.80118457694 3.8268251 7356.3604
+24940.80118462443 3.8269432 7355.5728
+24941.80118467193 3.8269432 7354.5889
+24942.80118471943 3.8271008 7355.9663
+24943.80118476693 3.8271794 7356.7539
+24944.80118481442 3.8271008 7356.1636
+24945.80118486192 3.8272977 7356.3604
+24946.80118490942 3.8272977 7354.9824
+24947.80118495692 3.8274157 7356.1636
+24948.80118500441 3.8275337 7355.7695
+24949.80118505191 3.827652 7356.1636
+24950.80118509941 3.8276913 7355.7695
+24951.80118514691 3.8278487 7355.7695
+24952.8011851944 3.827888 7355.7695
+24953.8011852419 3.8280456 7355.1797
+24954.8011852894 3.8280456 7356.1636
+24955.8011853369 3.828203 7356.3604
+24956.80118538439 3.8282819 7356.5571
+24957.80118543189 3.8283212 7355.9663
+24958.80118547939 3.8283212 7356.5571
+24959.80118552689 3.8284392 7355.7695
+24960.80118557438 3.8285968 7355.9663
+24961.80118562188 3.8286362 7356.1636
+24962.80118566938 3.8287935 7356.3604
+24963.80118571687 3.8287542 7355.9663
+24964.80118576437 3.8288331 7355.7695
+24965.80118581187 3.8289905 7356.1636
+24966.80118585937 3.8290298 7355.5728
+24967.80118590686 3.8289905 7355.3765
+24968.80118595436 3.8291481 7355.7695
+24969.80118600186 3.8293841 7356.7539
+24970.80118604936 3.8292661 7356.3604
+24971.80118609685 3.829463 7356.1636
+24972.80118614435 3.829581 7355.9663
+24973.80118619185 3.829581 7355.7695
+24974.80118623935 3.8296204 7355.5728
+24975.80118628684 3.829699 7355.5728
+24976.80118633434 3.8298173 7355.7695
+24977.80118638184 3.8298566 7355.7695
+24978.80118642934 3.829896 7355.9663
+24979.80118647683 3.8299747 7355.7695
+24980.80118652433 3.830014 7356.5571
+24981.80118657183 3.8301322 7356.7539
+24982.80118661933 3.8301716 7355.9663
+24983.80118666682 3.8301716 7355.7695
+24984.80118671432 3.8303289 7355.3765
+24985.80118676182 3.8304079 7356.3604
+24986.80118680932 3.8305652 7356.1636
+24987.80118685681 3.8305652 7355.9663
+24988.80118690431 3.8306439 7356.3604
+24989.80118695181 3.8307228 7356.9502
+24990.80118699931 3.8308408 7355.9663
+24991.8011870468 3.8309195 7355.5728
+24992.8011870943 3.8309195 7355.3765
+24993.8011871418 3.8309984 7355.3765
+24994.8011871893 3.8309588 7356.1636
+24995.80118723679 3.8311558 7355.9663
+24996.80118728429 3.8312738 7356.1636
+24997.80118733179 3.8313134 7355.7695
+24998.80118737929 3.831392 7356.1636
+24999.80118742678 3.8314707 7356.5571
+25000.80118747428 3.8316283 7356.5571
+25001.80118752178 3.8316283 7356.1636
+25002.80118756928 3.831707 7355.3765
+25003.80118761677 3.8317463 7356.9502
+25004.80118766427 3.8318644 7355.5728
+25005.80118771177 3.8319037 7355.7695
+25006.80118775927 3.832022 7355.3765
+25007.80118780676 3.8321006 7355.9663
+25008.80118785426 3.8322186 7356.5571
+25009.80118790176 3.8322582 7355.1797
+25010.80118794926 3.8324156 7355.7695
+25011.80118799675 3.8323762 7356.3604
+25012.80118804425 3.8324156 7355.3765
+25013.80118809175 3.8326125 7355.5728
+25014.80118813924 3.8326519 7355.5728
+25015.80118818674 3.8326912 7354.9824
+25016.80118823424 3.8328881 7356.9502
+25017.80118828174 3.8329275 7355.5728
+25018.80118832923 3.8330061 7356.1636
+25019.80118837673 3.8330848 7355.7695
+25020.80118842423 3.8332031 7356.1636
+25021.80118847173 3.8333211 7356.3604
+25022.80118851922 3.8333998 7355.7695
+25023.80118856672 3.8333211 7356.5571
+25024.80118861422 3.8335574 7356.1636
+25025.80118866172 3.8336754 7356.3604
+25026.80118870921 3.8337147 7356.7539
+25027.80118875671 3.8337541 7355.5728
+25028.80118880421 3.8338723 7355.5728
+25029.80118885171 3.8339903 7356.3604
+25030.8011888992 3.834069 7356.1636
+25031.8011889467 3.8341873 7355.3765
+25032.8011889942 3.8341479 7355.7695
+25033.8011890417 3.8342266 7355.3765
+25034.80118908919 3.8343053 7355.9663
+25035.80118913669 3.8344629 7356.1636
+25036.80118918419 3.8345022 7355.9663
+25037.80118923169 3.8346992 7356.1636
+25038.80118927918 3.8346596 7355.5728
+25039.80118932668 3.8346596 7356.5571
+25040.80118937418 3.8349352 7356.7539
+25041.80118942168 3.8349745 7355.9663
+25042.80118946917 3.8350928 7355.9663
+25043.80118951667 3.8350928 7356.1636
+25044.80118956417 3.8352501 7356.1636
+25045.80118961167 3.8354864 7355.9663
+25046.80118965916 3.8354471 7355.3765
+25047.80118970666 3.8355258 7356.1636
+25048.80118975416 3.8354864 7356.1636
+25049.80118980166 3.835644 7355.9663
+25050.80118984915 3.8356833 7355.3765
+25051.80118989665 3.8358014 7356.5571
+25052.80118994415 3.835762 7356.1636
+25053.80118999165 3.835959 7356.1636
+25054.80119003914 3.836077 7355.7695
+25055.80119008664 3.8361163 7356.1636
+25056.80119013414 3.836195 7355.3765
+25057.80119018164 3.8363526 7355.5728
+25058.80119022913 3.8362739 7356.1636
+25059.80119027663 3.8363919 7355.9663
+25060.80119032413 3.8365099 7356.3604
+25061.80119037163 3.8365099 7355.7695
+25062.80119041912 3.8366282 7356.3604
+25063.80119046662 3.8368249 7356.1636
+25064.80119051412 3.8368249 7355.7695
+25065.80119056161 3.8367856 7356.1636
+25066.80119060911 3.8369825 7355.5728
+25067.80119065661 3.8369038 7356.3604
+25068.80119070411 3.8371398 7355.9663
+25069.8011907516 3.8372581 7356.7539
+25070.8011907991 3.8372188 7355.7695
+25071.8011908466 3.8373368 7355.9663
+25072.8011908941 3.8374155 7356.5571
+25073.80119094159 3.8375731 7356.3604
+25074.80119098909 3.8376124 7356.1636
+25075.80119103659 3.8377304 7356.3604
+25076.80119108409 3.83777 7355.5728
+25077.80119113158 3.8378093 7355.3765
+25078.80119117908 3.8378093 7356.3604
+25079.80119122658 3.838006 7356.1636
+25080.80119127408 3.8380454 7356.3604
+25081.80119132157 3.8380454 7355.9663
+25082.80119136907 3.838321 7356.7539
+25083.80119141657 3.838321 7356.3604
+25084.80119146407 3.8383999 7355.9663
+25085.80119151156 3.8383999 7356.1636
+25086.80119155906 3.8385179 7355.5728
+25087.80119160656 3.8386359 7355.1797
+25088.80119165406 3.8387542 7355.7695
+25089.80119170155 3.8387935 7356.3604
+25090.80119174905 3.8389115 7355.7695
+25091.80119179655 3.8389115 7355.7695
+25092.80119184405 3.8389902 7355.9663
+25093.80119189154 3.8391478 7357.3442
+25094.80119193904 3.8391871 7356.7539
+25095.80119198654 3.8393052 7355.9663
+25096.80119203404 3.8393447 7355.9663
+25097.80119208153 3.8393841 7354.7856
+25098.80119212903 3.8395414 7355.9663
+25099.80119217653 3.8395808 7354.9824
+25100.80119222403 3.8396597 7356.1636
+25101.80119227152 3.8396597 7357.1475
+25102.80119231902 3.8397777 7355.9663
+25103.80119236652 3.8398957 7355.9663
+25104.80119241402 3.840014 7356.5571
+25105.80119246151 3.840014 7356.1636
+25106.80119250901 3.8400927 7355.3765
+25107.80119255651 3.8402503 7356.7539
+25108.80119260401 3.8402107 7355.7695
+25109.8011926515 3.8403289 7355.5728
+25110.801192699 3.8403289 7355.7695
+25111.8011927465 3.8404863 7355.5728
+25112.801192794 3.8406439 7355.9663
+25113.80119284149 3.8407226 7356.3604
+25114.80119288899 3.8408406 7355.7695
+25115.80119293649 3.8408802 7356.5571
+25116.80119298398 3.8408406 7355.7695
+25117.80119303148 3.8409588 7355.7695
+25118.80119307898 3.8410769 7355.1797
+25119.80119312648 3.8411555 7356.1636
+25120.80119317397 3.8412344 7356.3604
+25121.80119322147 3.8413131 7355.7695
+25122.80119326897 3.8413918 7356.1636
+25123.80119331647 3.8414707 7355.5728
+25124.80119336396 3.8415101 7356.3604
+25125.80119341146 3.8417068 7356.1636
+25126.80119345896 3.8417068 7356.3604
+25127.80119350646 3.8418643 7355.5728
+25128.80119355395 3.841943 7355.1797
+25129.80119360145 3.8420217 7355.7695
+25130.80119364895 3.842061 7355.9663
+25131.80119369645 3.8421006 7356.7539
+25132.80119374394 3.842258 7356.1636
+25133.80119379144 3.8423367 7356.3604
+25134.80119383894 3.842258 7355.7695
+25135.80119388644 3.842376 7355.3765
+25136.80119393393 3.8425336 7356.1636
+25137.80119398143 3.8425336 7355.9663
+25138.80119402893 3.8426909 7355.3765
+25139.80119407643 3.8426516 7355.9663
+25140.80119412392 3.8427699 7355.1797
+25141.80119417142 3.8428879 7355.9663
+25142.80119421892 3.8428879 7355.5728
+25143.80119426642 3.8429666 7356.9502
+25144.80119431391 3.8430848 7357.3442
+25145.80119436141 3.8432422 7356.3604
+25146.80119440891 3.8432028 7355.3765
+25147.80119445641 3.8433604 7355.7695
+25148.8011945039 3.8433998 7355.9663
+25149.8011945514 3.8434784 7354.7856
+25150.8011945989 3.8435965 7355.9663
+25151.8011946464 3.8436754 7356.5571
+25152.80119469389 3.8437934 7356.3604
+25153.80119474139 3.8437147 7356.1636
+25154.80119478889 3.8438721 7355.9663
+25155.80119483639 3.8439903 7356.1636
+25156.80119488388 3.8439903 7356.1636
+25157.80119493138 3.8441083 7355.5728
+25158.80119497888 3.8442264 7355.9663
+25159.80119502638 3.8442264 7355.5728
+25160.80119507387 3.8443446 7356.1636
+25161.80119512137 3.8443446 7356.1636
+25162.80119516887 3.8444233 7355.5728
+25163.80119521637 3.8445809 7355.3765
+25164.80119526386 3.8446202 7355.9663
+25165.80119531136 3.8445413 7356.1636
+25166.80119535886 3.8448169 7356.5571
+25167.80119540636 3.8447382 7355.7695
+25168.80119545385 3.8449745 7356.3604
+25169.80119550135 3.8448958 7356.3604
+25170.80119554885 3.8451319 7354.9824
+25171.80119559634 3.8450925 7355.3765
+25172.80119564384 3.8452108 7355.9663
+25173.80119569134 3.8452501 7355.7695
+25174.80119573884 3.8453288 7356.5571
+25175.80119578633 3.8454075 7356.1636
+25176.80119583383 3.8454468 7356.1636
+25177.80119588133 3.8455651 7355.1797
+25178.80119592883 3.8456044 7355.9663
+25179.80119597632 3.8456438 7355.5728
+25180.80119602382 3.8458014 7355.7695
+25181.80119607132 3.84588 7356.3604
+25182.80119611882 3.8460374 7356.1636
+25183.80119616631 3.845998 7357.3442
+25184.80119621381 3.8460374 7355.9663
+25185.80119626131 3.8461556 7356.9502
+25186.80119630881 3.8462343 7355.3765
+25187.8011963563 3.846313 7355.9663
+25188.8011964038 3.8463523 7355.7695
+25189.8011964513 3.8464313 7355.9663
+25190.8011964988 3.846628 7355.1797
+25191.80119654629 3.8465099 7356.1636
+25192.80119659379 3.8466673 7355.7695
+25193.80119664129 3.8467855 7356.1636
+25194.80119668879 3.8469036 7356.5571
+25195.80119673628 3.8468642 7356.1636
+25196.80119678378 3.8469429 7355.5728
+25197.80119683128 3.8470612 7356.7539
+25198.80119687878 3.8471398 7356.9502
+25199.80119692627 3.8473368 7355.9663
+25200.80119697377 3.8473761 7355.7695
+25201.80119702127 3.8473368 7355.9663
+25202.80119706877 3.8474548 7355.9663
+25203.80119711626 3.8476517 7355.3765
+25204.80119716376 3.8476517 7355.5728
+25205.80119721126 3.8476911 7355.9663
+25206.80119725876 3.8477304 7354.9824
+25207.80119730625 3.8478484 7355.3765
+25208.80119735375 3.8479667 7356.1636
+25209.80119740125 3.8479667 7356.3604
+25210.80119744875 3.8480847 7355.7695
+25211.80119749624 3.8482027 7356.3604
+25212.80119754374 3.848242 7356.3604
+25213.80119759124 3.8483603 7355.1797
+25214.80119763874 3.8484783 7355.5728
+25215.80119768623 3.8485177 7354.7856
+25216.80119773373 3.8485177 7356.7539
+25217.80119778123 3.8486753 7356.1636
+25218.80119782873 3.8487539 7356.1636
+25219.80119787622 3.8489509 7355.5728
+25220.80119792372 3.8488722 7355.9663
+25221.80119797122 3.8490295 7356.1636
+25222.80119801871 3.8490295 7355.7695
+25223.80119806621 3.8490689 7356.3604
+25224.80119811371 3.8491476 7355.7695
+25225.80119816121 3.8493052 7356.5571
+25226.8011982087 3.8493838 7355.9663
+25227.8011982562 3.8495021 7355.9663
+25228.8011983037 3.8495808 7356.5571
+25229.8011983512 3.8495808 7356.1636
+25230.80119839869 3.8496201 7355.5728
+25231.80119844619 3.849817 7355.9663
+25232.80119849369 3.849817 7357.3442
+25233.80119854119 3.8498564 7356.5571
+25234.80119858868 3.8499744 7356.7539
+25235.80119863618 3.8500924 7355.9663
+25236.80119868368 3.850132 7355.7695
+25237.80119873118 3.850132 7355.7695
+25238.80119877867 3.850368 7356.1636
+25239.80119882617 3.8504076 7355.1797
+25240.80119887367 3.8506043 7356.5571
+25241.80119892117 3.8506043 7355.5728
+25242.80119896866 3.8506043 7355.9663
+25243.80119901616 3.8507226 7355.3765
+25244.80119906366 3.8508799 7356.1636
+25245.80119911116 3.8509192 7356.5571
+25246.80119915865 3.8509979 7356.1636
+25247.80119920615 3.8511162 7356.5571
+25248.80119925365 3.8512735 7355.9663
+25249.80119930115 3.8512735 7356.9502
+25250.80119934864 3.8513918 7356.1636
+25251.80119939614 3.8514311 7355.5728
+25252.80119944364 3.8515491 7356.5571
+25253.80119949114 3.8515885 7355.3765
+25254.80119953863 3.8515885 7356.1636
+25255.80119958613 3.8517461 7356.9502
+25256.80119963363 3.8519034 7355.9663
+25257.80119968113 3.8519428 7356.3604
+25258.80119972862 3.852061 7356.3604
+25259.80119977612 3.8522184 7356.9502
+25260.80119982362 3.8522184 7356.1636
+25261.80119987112 3.8523366 7355.5728
+25262.80119991861 3.8524153 7355.7695
+25263.80119996611 3.8525333 7355.3765
+25264.80120001361 3.852494 7356.1636
+25265.80120006111 3.8527303 7356.5571
+25266.8012001086 3.8527303 7355.7695
+25267.8012001561 3.852809 7355.9663
+25268.8012002036 3.8528879 7355.9663
+25269.8012002511 3.8530452 7356.5571
+25270.80120029859 3.8530452 7356.5571
+25271.80120034609 3.8530846 7355.7695
+25272.80120039359 3.8532422 7355.5728
+25273.80120044108 3.8533208 7356.3604
+25274.80120048858 3.8533995 7356.1636
+25275.80120053608 3.8534782 7355.7695
+25276.80120058358 3.8535964 7355.9663
+25277.80120063107 3.8536358 7355.7695
+25278.80120067857 3.8537145 7356.3604
+25279.80120072607 3.8538721 7355.9663
+25280.80120077357 3.8539507 7355.1797
+25281.80120082106 3.8539901 7356.1636
+25282.80120086856 3.8539507 7355.1797
+25283.80120091606 3.8541477 7354.9824
+25284.80120096356 3.8542264 7355.7695
+25285.80120101105 3.854305 7356.7539
+25286.80120105855 3.854502 7355.7695
+25287.80120110605 3.854502 7355.9663
+25288.80120115355 3.85462 7355.7695
+25289.80120120104 3.85462 7355.5728
+25290.80120124854 3.8547776 7355.7695
+25291.80120129604 3.8548563 7354.9824
+25292.80120134354 3.8548956 7355.5728
+25293.80120139103 3.8550532 7355.5728
+25294.80120143853 3.8550925 7356.3604
+25295.80120148603 3.8553286 7356.1636
+25296.80120153353 3.8553681 7356.3604
+25297.80120158102 3.8554075 7356.3604
+25298.80120162852 3.8555255 7355.7695
+25299.80120167602 3.8557224 7355.5728
+25300.80120172352 3.8557618 7356.1636
+25301.80120177101 3.8558798 7355.5728
+25302.80120181851 3.8559191 7356.1636
+25303.80120186601 3.8560374 7356.7539
+25304.80120191351 3.8561161 7355.7695
+25305.801201961 3.8561947 7355.9663
+25306.8012020085 3.8562737 7356.3604
+25307.801202056 3.856431 7356.1636
+25308.8012021035 3.8565886 7355.9663
+25309.80120215099 3.856549 7356.1636
+25310.80120219849 3.8566673 7356.1636
+25311.80120224599 3.856746 7356.1636
+25312.80120229349 3.8569036 7356.1636
+25313.80120234098 3.8569036 7355.1797
+25314.80120238848 3.8570216 7356.9502
+25315.80120243598 3.8570609 7355.9663
+25316.80120248348 3.8571396 7355.9663
+25317.80120253097 3.8572185 7355.9663
+25318.80120257847 3.8573365 7356.3604
+25319.80120262597 3.8573759 7355.1797
+25320.80120267347 3.8574941 7355.1797
+25321.80120272096 3.8576121 7355.7695
+25322.80120276846 3.8576121 7355.7695
+25323.80120281596 3.8577302 7355.7695
+25324.80120286345 3.8577695 7355.7695
+25325.80120291095 3.8578484 7356.1636
+25326.80120295845 3.8579664 7355.9663
+25327.80120300595 3.8580844 7356.3604
+25328.80120305344 3.858242 7356.5571
+25329.80120310094 3.858242 7355.7695
+25330.80120314844 3.8583207 7356.1636
+25331.80120319594 3.8583601 7356.3604
+25332.80120324343 3.8585176 7355.7695
+25333.80120329093 3.8585963 7355.9663
+25334.80120333843 3.8587539 7356.1636
+25335.80120338593 3.8587933 7356.5571
+25336.80120343342 3.8588719 7356.3604
+25337.80120348092 3.8589506 7355.9663
+25338.80120352842 3.85899 7356.5571
+25339.80120357592 3.8591475 7356.5571
+25340.80120362341 3.8591869 7355.9663
+25341.80120367091 3.8592656 7355.9663
+25342.80120371841 3.8593445 7355.9663
+25343.80120376591 3.8594625 7355.7695
+25344.8012038134 3.8595412 7356.1636
+25345.8012038609 3.8595805 7356.5571
+25346.8012039084 3.8596988 7355.9663
+25347.8012039559 3.8597381 7355.7695
+25348.80120400339 3.8598955 7355.7695
+25349.80120405089 3.8599348 7355.5728
+25350.80120409839 3.8600531 7356.3604
+25351.80120414589 3.8601711 7355.9663
+25352.80120419338 3.8602893 7356.7539
+25353.80120424088 3.8602498 7355.7695
+25354.80120428838 3.8602893 7355.5728
+25355.80120433588 3.8605647 7355.7695
+25356.80120438337 3.8606043 7355.9663
+25357.80120443087 3.8606043 7356.3604
+25358.80120447837 3.860683 7356.3604
+25359.80120452587 3.8608403 7356.7539
+25360.80120457336 3.8608797 7355.9663
+25361.80120462086 3.8609979 7355.9663
+25362.80120466836 3.8610766 7354.9824
+25363.80120471586 3.8611948 7356.1636
+25364.80120476335 3.8610766 7354.9824
+25365.80120481085 3.8613915 7356.5571
+25366.80120485835 3.8614309 7355.3765
+25367.80120490585 3.8615491 7356.5571
+25368.80120495334 3.8615491 7356.3604
+25369.80120500084 3.8616278 7355.3765
+25370.80120504834 3.8617458 7356.3604
+25371.80120509584 3.8618248 7356.1636
+25372.80120514333 3.8618641 7355.3765
+25373.80120519083 3.8618248 7355.5728
+25374.80120523833 3.8621001 7356.1636
+25375.80120528582 3.8620214 7355.3765
+25376.80120533332 3.8622184 7356.1636
+25377.80120538082 3.8622184 7355.9663
+25378.80120542832 3.862494 7355.7695
+25379.80120547581 3.862494 7356.5571
+25380.80120552331 3.8625727 7356.3604
+25381.80120557081 3.8625727 7356.1636
+25382.80120561831 3.8626907 7355.5728
+25383.8012056658 3.8627696 7356.5571
+25384.8012057133 3.862927 7356.1636
+25385.8012057608 3.8629663 7355.3765
+25386.8012058083 3.862927 7356.5571
+25387.80120585579 3.8631632 7356.3604
+25388.80120590329 3.8631632 7355.3765
+25389.80120595079 3.8633206 7355.9663
+25390.80120599829 3.8633602 7356.1636
+25391.80120604578 3.8633995 7355.9663
+25392.80120609328 3.8635175 7355.3765
+25393.80120614078 3.8636751 7356.3604
+25394.80120618828 3.8637145 7355.7695
+25395.80120623577 3.8638325 7355.9663
+25396.80120628327 3.8638325 7355.9663
+25397.80120633077 3.8639901 7355.9663
+25398.80120637827 3.8640294 7355.9663
+25399.80120642576 3.8640687 7356.1636
+25400.80120647326 3.8641474 7356.1636
+25401.80120652076 3.864305 7355.7695
+25402.80120656826 3.8643837 7355.9663
+25403.80120661575 3.8643837 7355.9663
+25404.80120666325 3.8644624 7355.3765
+25405.80120671075 3.8645411 7356.5571
+25406.80120675825 3.8646593 7356.7539
+25407.80120680574 3.8648167 7355.7695
+25408.80120685324 3.864856 7356.5571
+25409.80120690074 3.8649743 7354.9824
+25410.80120694824 3.8649743 7355.9663
+25411.80120699573 3.8649743 7356.7539
+25412.80120704323 3.8650923 7355.7695
+25413.80120709073 3.8652499 7356.5571
+25414.80120713823 3.8652892 7356.3604
+25415.80120718572 3.8653286 7355.9663
+25416.80120723322 3.8655255 7355.1797
+25417.80120728072 3.8656435 7356.1636
+25418.80120732822 3.8656042 7355.9663
+25419.80120737571 3.8657615 7355.7695
+25420.80120742321 3.8659191 7355.9663
+25421.80120747071 3.8659191 7355.7695
+25422.80120751821 3.8661158 7356.1636
+25423.8012075657 3.8660765 7355.5728
+25424.8012076132 3.8662341 7355.7695
+25425.8012076607 3.8664703 7355.7695
+25426.80120770819 3.8665097 7355.3765
+25427.80120775569 3.866549 7356.3604
+25428.80120780319 3.8666277 7355.7695
+25429.80120785069 3.8667064 7355.1797
+25430.80120789818 3.8669033 7355.5728
+25431.80120794568 3.8667853 7355.9663
+25432.80120799318 3.8670213 7355.7695
+25433.80120804068 3.8671002 7356.9502
+25434.80120808817 3.8672183 7356.1636
+25435.80120813567 3.8672576 7356.3604
+25436.80120818317 3.8673363 7355.9663
+25437.80120823067 3.8674939 7355.9663
+25438.80120827816 3.8674939 7355.3765
+25439.80120832566 3.8676512 7356.1636
+25440.80120837316 3.8677695 7355.7695
+25441.80120842066 3.8678875 7355.5728
+25442.80120846815 3.8679268 7355.9663
+25443.80120851565 3.8679662 7356.3604
+25444.80120856315 3.8680844 7356.1636
+25445.80120861065 3.8681238 7355.7695
+25446.80120865814 3.8682024 7356.3604
+25447.80120870564 3.86836 7356.1636
+25448.80120875314 3.8684781 7356.5571
+25449.80120880064 3.8685567 7356.1636
+25450.80120884813 3.8685567 7356.1636
+25451.80120889563 3.868675 7356.1636
+25452.80120894313 3.8687143 7355.7695
+25453.80120899063 3.8688323 7355.3765
+25454.80120903812 3.8690293 7356.7539
+25455.80120908562 3.8690686 7355.1797
+25456.80120913312 3.8691473 7355.5728
+25457.80120918062 3.8691473 7355.3765
+25458.80120922811 3.8692262 7355.9663
+25459.80120927561 3.8691866 7355.5728
+25460.80120932311 3.8693442 7356.5571
+25461.80120937061 3.8695805 7356.3604
+25462.8012094181 3.8695805 7355.7695
+25463.8012094656 3.8696985 7355.9663
+25464.8012095131 3.8696592 7356.1636
+25465.8012095606 3.8698561 7355.1797
+25466.80120960809 3.8699348 7355.5728
+25467.80120965559 3.8699348 7355.7695
+25468.80120970309 3.8700922 7356.1636
+25469.80120975059 3.8702104 7355.9663
+25470.80120979808 3.8701711 7356.3604
+25471.80120984558 3.8703284 7356.1636
+25472.80120989308 3.8703678 7355.5728
+25473.80120994058 3.870486 7355.5728
+25474.80120998807 3.870486 7356.1636
+25475.80121003557 3.8706827 7356.1636
+25476.80121008307 3.8707616 7355.7695
+25477.80121013056 3.8708403 7355.3765
+25478.80121017806 3.8708403 7356.7539
+25479.80121022556 3.8709977 7355.7695
+25480.80121027306 3.8710766 7355.5728
+25481.80121032055 3.8711159 7356.1636
+25482.80121036805 3.8711946 7356.5571
+25483.80121041555 3.8713126 7356.5571
+25484.80121046305 3.8714309 7355.7695
+25485.80121051054 3.8714702 7356.5571
+25486.80121055804 3.8716276 7356.5571
+25487.80121060554 3.8715489 7356.3604
+25488.80121065304 3.8716669 7355.3765
+25489.80121070053 3.8717458 7355.9663
+25490.80121074803 3.8719425 7355.9663
+25491.80121079553 3.8720608 7356.7539
+25492.80121084303 3.8722575 7355.7695
+25493.80121089052 3.8721395 7355.1797
+25494.80121093802 3.8723364 7356.9502
+25495.80121098552 3.8723757 7355.9663
+25496.80121103302 3.8725331 7356.3604
+25497.80121108051 3.872612 7355.9663
+25498.80121112801 3.8726513 7357.3442
+25499.80121117551 3.87273 7356.1636
+25500.80121122301 3.8728087 7356.3604
+25501.8012112705 3.8728874 7356.9502
+25502.801211318 3.8729663 7355.1797
+25503.8012113655 3.8730843 7355.9663
+25504.801211413 3.873163 7355.9663
+25505.80121146049 3.8732023 7356.1636
+25506.80121150799 3.8733206 7355.9663
+25507.80121155549 3.8734386 7356.1636
+25508.80121160299 3.8734779 7356.3604
+25509.80121165048 3.8736355 7356.3604
+25510.80121169798 3.8736749 7356.7539
+25511.80121174548 3.8737535 7356.1636
+25512.80121179298 3.8738718 7355.9663
+25513.80121184047 3.8740292 7356.5571
+25514.80121188797 3.8739505 7355.5728
+25515.80121193547 3.8740685 7356.5571
+25516.80121198297 3.8741868 7355.1797
+25517.80121203046 3.8742654 7356.5571
+25518.80121207796 3.8743441 7356.3604
+25519.80121212546 3.8743834 7356.1636
+25520.80121217296 3.8745804 7354.9824
+25521.80121222045 3.8746591 7355.7695
+25522.80121226795 3.8746984 7355.9663
+25523.80121231545 3.8748167 7355.5728
+25524.80121236295 3.8748167 7355.9663
+25525.80121241044 3.8748953 7356.5571
+25526.80121245794 3.8751316 7356.3604
+25527.80121250544 3.8750527 7355.5728
+25528.80121255293 3.8752103 7355.7695
+25529.80121260043 3.8753679 7356.1636
+25530.80121264793 3.8753679 7356.1636
+25531.80121269543 3.8754466 7356.1636
+25532.80121274292 3.8755646 7356.3604
+25533.80121279042 3.8755646 7355.9663
+25534.80121283792 3.8757222 7356.1636
+25535.80121288542 3.8758008 7355.1797
+25536.80121293291 3.8758795 7355.9663
+25537.80121298041 3.8758795 7356.3604
+25538.80121302791 3.8760371 7355.7695
+25539.80121307541 3.8761158 7355.9663
+25540.8012131229 3.8761551 7355.5728
+25541.8012131704 3.8762732 7355.9663
+25542.8012132179 3.8763521 7355.7695
+25543.8012132654 3.8765094 7355.9663
+25544.80121331289 3.8765488 7356.7539
+25545.80121336039 3.8765881 7356.1636
+25546.80121340789 3.876667 7355.9663
+25547.80121345539 3.8767457 7355.7695
+25548.80121350288 3.8769031 7355.9663
+25549.80121355038 3.876982 7356.7539
+25550.80121359788 3.8770213 7355.5728
+25551.80121364538 3.8771787 7355.5728
+25552.80121369287 3.8772182 7355.9663
+25553.80121374037 3.8772969 7356.3604
+25554.80121378787 3.8774149 7354.9824
+25555.80121383537 3.8775332 7355.9663
+25556.80121388286 3.8775725 7355.3765
+25557.80121393036 3.8776119 7355.5728
+25558.80121397786 3.8776906 7355.7695
+25559.80121402536 3.8776512 7355.7695
+25560.80121407285 3.8778481 7355.9663
+25561.80121412035 3.8779268 7355.5728
+25562.80121416785 3.8779268 7355.1797
+25563.80121421535 3.8781631 7356.1636
+25564.80121426284 3.8782024 7356.1636
+25565.80121431034 3.8783205 7356.3604
+25566.80121435784 3.8784781 7355.7695
+25567.80121440534 3.8784385 7355.7695
+25568.80121445283 3.8785174 7356.1636
+25569.80121450033 3.8785961 7355.5728
+25570.80121454783 3.878793 7355.7695
+25571.80121459533 3.8788323 7356.9502
+25572.80121464282 3.8789504 7356.3604
+25573.80121469032 3.8789897 7356.5571
+25574.80121473782 3.879029 7356.7539
+25575.80121478532 3.8791473 7355.9663
+25576.80121483281 3.879344 7355.5728
+25577.80121488031 3.8792653 7355.9663
+25578.80121492781 3.8794229 7355.7695
+25579.8012149753 3.8795016 7356.7539
+25580.8012150228 3.8796196 7355.9663
+25581.8012150703 3.8797772 7356.7539
+25582.8012151178 3.8797772 7356.3604
+25583.80121516529 3.8798952 7355.5728
+25584.80121521279 3.8799739 7356.1636
+25585.80121526029 3.8800135 7355.5728
+25586.80121530779 3.8800921 7356.1636
+25587.80121535528 3.8803678 7356.9502
+25588.80121540278 3.8804071 7356.7539
+25589.80121545028 3.8803678 7355.7695
+25590.80121549778 3.8805251 7356.1636
+25591.80121554527 3.8806827 7355.5728
+25592.80121559277 3.880722 7355.5728
+25593.80121564027 3.8808007 7355.9663
+25594.80121568777 3.8809583 7356.3604
+25595.80121573526 3.881037 7355.9663
+25596.80121578276 3.8811944 7356.1636
+25597.80121583026 3.8812339 7356.1636
+25598.80121587776 3.8813519 7355.9663
+25599.80121592525 3.8813913 7355.5728
+25600.80121597275 3.88147 7356.7539
+25601.80121602025 3.8815093 7356.5571
+25602.80121606775 3.8818243 7356.3604
+25603.80121611524 3.8817849 7355.9663
+25604.80121616274 3.8819425 7356.1636
+25605.80121621024 3.8819425 7356.3604
+25606.80121625774 3.8820212 7355.9663
+25607.80121630523 3.8820999 7355.7695
+25608.80121635273 3.8822575 7355.7695
+25609.80121640023 3.8822575 7356.1636
+25610.80121644773 3.8823361 7355.9663
+25611.80121649522 3.8825331 7355.9663
+25612.80121654272 3.8824937 7355.7695
+25613.80121659022 3.8826511 7355.1797
+25614.80121663772 3.8826118 7355.5728
+25615.80121668521 3.8826904 7356.1636
+25616.80121673271 3.8828874 7355.3765
+25617.80121678021 3.8830054 7355.7695
+25618.80121682771 3.8830447 7355.7695
+25619.8012168752 3.8831236 7355.9663
+25620.8012169227 3.8831236 7355.7695
+25621.8012169702 3.883281 7355.9663
+25622.8012170177 3.8833597 7356.1636
+25623.80121706519 3.8834386 7355.7695
+25624.80121711269 3.8836746 7355.9663
+25625.80121716019 3.8835566 7355.7695
+25626.80121720769 3.8837142 7355.5728
+25627.80121725518 3.8837929 7355.9663
+25628.80121730268 3.8839109 7355.7695
+25629.80121735018 3.8840292 7356.5571
+25630.80121739767 3.8840292 7355.5728
+25631.80121744517 3.8841472 7356.1636
+25632.80121749267 3.8842652 7355.9663
+25633.80121754017 3.8844228 7355.9663
+25634.80121758766 3.8843834 7355.7695
+25635.80121763516 3.8844621 7355.5728
+25636.80121768266 3.8845015 7356.1636
+25637.80121773016 3.8846591 7356.7539
+25638.80121777765 3.8847771 7356.1636
+25639.80121782515 3.8848557 7355.5728
+25640.80121787265 3.884974 7355.7695
+25641.80121792015 3.8850133 7355.9663
+25642.80121796764 3.8850527 7355.9663
+25643.80121801514 3.8851314 7355.9663
+25644.80121806264 3.88521 7355.9663
+25645.80121811014 3.885289 7355.9663
+25646.80121815763 3.8853676 7356.7539
+25647.80121820513 3.8854463 7356.3604
+25648.80121825263 3.885525 7356.1636
+25649.80121830013 3.8856826 7356.1636
+25650.80121834762 3.8856432 7356.1636
+25651.80121839512 3.8857613 7355.9663
+25652.80121844262 3.8859189 7356.5571
+25653.80121849012 3.8859189 7355.3765
+25654.80121853761 3.8860762 7356.3604
+25655.80121858511 3.8861156 7356.3604
+25656.80121863261 3.8860762 7355.1797
+25657.80121868011 3.8861945 7355.3765
+25658.8012187276 3.8863518 7355.9663
+25659.8012187751 3.8865094 7356.3604
+25660.8012188226 3.8865094 7355.1797
+25661.8012188701 3.8865488 7356.5571
+25662.80121891759 3.8866668 7356.5571
+25663.80121896509 3.8867455 7356.1636
+25664.80121901259 3.8869424 7356.3604
+25665.80121906009 3.8870211 7356.3604
+25666.80121910758 3.8871 7356.3604
+25667.80121915508 3.8871393 7355.7695
+25668.80121920258 3.8871787 7356.1636
+25669.80121925008 3.887336 7355.9663
+25670.80121929757 3.8873754 7356.5571
+25671.80121934507 3.8874543 7356.1636
+25672.80121939257 3.8875723 7355.7695
+25673.80121944007 3.8877299 7355.5728
+25674.80121948756 3.8877299 7355.5728
+25675.80121953506 3.8877692 7355.7695
+25676.80121958256 3.8879659 7355.7695
+25677.80121963006 3.8879659 7356.1636
+25678.80121967755 3.8880842 7356.3604
+25679.80121972505 3.8881629 7355.9663
+25680.80121977255 3.8882415 7356.5571
+25681.80121982004 3.8883204 7355.9663
+25682.80121986754 3.8882809 7356.3604
+25683.80121991504 3.8884385 7356.1636
+25684.80121996254 3.8885171 7355.9663
+25685.80122001003 3.8885958 7356.7539
+25686.80122005753 3.8887141 7355.7695
+25687.80122010503 3.8887534 7356.5571
+25688.80122015253 3.8888321 7354.9824
+25689.80122020002 3.8888321 7356.5571
+25690.80122024752 3.8890684 7356.3604
+25691.80122029502 3.889147 7356.5571
+25692.80122034252 3.889147 7356.1636
+25693.80122039001 3.8891864 7356.1636
+25694.80122043751 3.8892653 7355.9663
+25695.80122048501 3.8895013 7355.5728
+25696.80122053251 3.889462 7355.9663
+25697.80122058 3.8896196 7355.3765
+25698.8012206275 3.8896983 7355.7695
+25699.801220675 3.8898163 7356.1636
+25700.8012207225 3.8897769 7356.7539
+25701.80122076999 3.8898559 7355.9663
+25702.80122081749 3.8900919 7356.3604
+25703.80122086499 3.8900132 7354.9824
+25704.80122091249 3.8901708 7355.9663
+25705.80122095998 3.8902102 7355.3765
+25706.80122100748 3.8904462 7356.1636
+25707.80122105498 3.8904068 7356.5571
+25708.80122110248 3.8904462 7355.5728
+25709.80122114997 3.8905644 7355.9663
+25710.80122119747 3.8906431 7355.9663
+25711.80122124497 3.8907611 7355.9663
+25712.80122129247 3.8908007 7356.3604
+25713.80122133996 3.8908794 7356.1636
+25714.80122138746 3.8909187 7356.3604
+25715.80122143496 3.8911157 7355.7695
+25716.80122148246 3.8911943 7356.9502
+25717.80122152995 3.891273 7354.9824
+25718.80122157745 3.891391 7355.9663
+25719.80122162495 3.891391 7355.7695
+25720.80122167245 3.8914306 7356.1636
+25721.80122171994 3.8916667 7356.1636
+25722.80122176744 3.8915486 7356.1636
+25723.80122181494 3.8917456 7355.5728
+25724.80122186244 3.8918242 7355.9663
+25725.80122190993 3.8919816 7355.7695
+25726.80122195743 3.8919029 7356.3604
+25727.80122200493 3.8921392 7355.3765
+25728.80122205243 3.8922179 7355.3765
+25729.80122209992 3.8922966 7355.5728
+25730.80122214742 3.8922572 7356.1636
+25731.80122219492 3.8924541 7355.9663
+25732.80122224242 3.8924541 7355.9663
+25733.80122228991 3.8925328 7355.9663
+25734.80122233741 3.8926904 7356.5571
+25735.80122238491 3.8926904 7356.1636
+25736.8012224324 3.8927298 7357.1475
+25737.8012224799 3.892966 7355.9663
+25738.8012225274 3.8928871 7356.3604
+25739.8012225749 3.892966 7356.1636
+25740.80122262239 3.893084 7356.3604
+25741.80122266989 3.8931627 7356.5571
+25742.80122271739 3.893281 7355.7695
+25743.80122276489 3.8933203 7355.9663
+25744.80122281238 3.8933597 7355.7695
+25745.80122285988 3.8934777 7356.5571
+25746.80122290738 3.893517 7354.9824
+25747.80122295488 3.8936746 7355.9663
+25748.80122300237 3.8936353 7356.3604
+25749.80122304987 3.8937926 7356.3604
+25750.80122309737 3.8937926 7355.7695
+25751.80122314487 3.8939109 7355.7695
+25752.80122319236 3.8939109 7355.5728
+25753.80122323986 3.8940289 7355.7695
+25754.80122328736 3.8940682 7356.1636
+25755.80122333486 3.8941469 7355.9663
+25756.80122338235 3.8942652 7356.5571
+25757.80122342985 3.8943832 7356.5571
+25758.80122347735 3.8943439 7355.9663
+25759.80122352485 3.8945801 7355.9663
+25760.80122357234 3.8946588 7354.9824
+25761.80122361984 3.8946195 7355.7695
+25762.80122366734 3.8947375 7355.9663
+25763.80122371484 3.8948164 7356.7539
+25764.80122376233 3.8949344 7355.7695
+25765.80122380983 3.8950131 7356.7539
+25766.80122385733 3.895092 7355.9663
+25767.80122390483 3.8951707 7356.9502
+25768.80122395232 3.8953674 7354.7856
+25769.80122399982 3.8952494 7355.5728
+25770.80122404732 3.895407 7356.1636
+25771.80122409482 3.8954463 7355.1797
+25772.80122414231 3.8956037 7355.7695
+25773.80122418981 3.8955643 7356.1636
+25774.80122423731 3.8958006 7355.3765
+25775.80122428481 3.8957613 7355.9663
+25776.8012243323 3.8959579 7355.1797
+25777.8012243798 3.8959973 7355.7695
+25778.8012244273 3.8960762 7356.9502
+25779.8012244748 3.8961155 7355.7695
+25780.80122452229 3.8961942 7356.1636
+25781.80122456979 3.8963122 7355.7695
+25782.80122461729 3.8964305 7356.3604
+25783.80122466479 3.8965092 7356.3604
+25784.80122471228 3.8966668 7355.3765
+25785.80122475978 3.8967454 7355.9663
+25786.80122480728 3.8967454 7357.1475
+25787.80122485477 3.8969817 7356.3604
+25788.80122490227 3.8969424 7356.3604
+25789.80122494977 3.8970604 7355.1797
+25790.80122499727 3.8971784 7356.5571
+25791.80122504476 3.8972178 7356.1636
+25792.80122509226 3.8972967 7356.3604
+25793.80122513976 3.897454 7356.3604
+25794.80122518726 3.8976116 7355.9663
+25795.80122523475 3.8975723 7355.1797
+25796.80122528225 3.8977296 7355.9663
+25797.80122532975 3.8977296 7356.1636
+25798.80122537725 3.8979659 7355.7695
+25799.80122542474 3.8980052 7356.1636
+25800.80122547224 3.8980839 7355.9663
+25801.80122551974 3.8982022 7356.7539
+25802.80122556724 3.8981626 7356.5571
+25803.80122561473 3.8983989 7356.5571
+25804.80122566223 3.8983595 7356.3604
+25805.80122570973 3.8984382 7355.7695
+25806.80122575723 3.8986745 7355.3765
+25807.80122580472 3.8986351 7355.9663
+25808.80122585222 3.8987138 7356.1636
+25809.80122589972 3.8987927 7356.1636
+25810.80122594722 3.8988714 7355.7695
+25811.80122599471 3.8989894 7355.7695
+25812.80122604221 3.899147 7355.5728
+25813.80122608971 3.8991077 7356.7539
+25814.80122613721 3.8992257 7356.3604
+25815.8012261847 3.8992257 7356.5571
+25816.8012262322 3.8993437 7354.9824
+25817.8012262797 3.899462 7355.5728
+25818.8012263272 3.8996193 7355.7695
+25819.80122637469 3.8996193 7355.9663
+25820.80122642219 3.8997769 7355.9663
+25821.80122646969 3.8998556 7356.9502
+25822.80122651719 3.899895 7356.1636
+25823.80122656468 3.900013 7356.3604
+25824.80122661218 3.900013 7356.3604
+25825.80122665968 3.9002099 7355.1797
+25826.80122670718 3.9003279 7355.5728
+25827.80122675467 3.9004462 7355.7695
+25828.80122680217 3.9004855 7356.1636
+25829.80122684967 3.9004855 7356.1636
+25830.80122689717 3.9006431 7356.1636
+25831.80122694466 3.9007218 7356.3604
+25832.80122699216 3.9008791 7356.5571
+25833.80122703966 3.9008791 7354.9824
+25834.80122708716 3.9010367 7356.1636
+25835.80122713465 3.9010761 7355.9663
+25836.80122718215 3.9010761 7355.9663
+25837.80122722965 3.9011941 7356.1636
+25838.80122727714 3.9013124 7355.9663
+25839.80122732464 3.9014304 7356.7539
+25840.80122737214 3.9014697 7356.1636
+25841.80122741964 3.901509 7356.1636
+25842.80122746713 3.901706 7355.7695
+25843.80122751463 3.9016666 7355.5728
+25844.80122756213 3.9017453 7354.9824
+25845.80122760963 3.9019029 7355.9663
+25846.80122765712 3.9020209 7356.3604
+25847.80122770462 3.9020996 7355.9663
+25848.80122775212 3.9022179 7355.3765
+25849.80122779962 3.9022965 7355.9663
+25850.80122784711 3.9023752 7355.9663
+25851.80122789461 3.9024146 7355.7695
+25852.80122794211 3.9026115 7355.9663
+25853.80122798961 3.9025722 7355.7695
+25854.8012280371 3.9026902 7355.5728
+25855.8012280846 3.9028871 7355.9663
+25856.8012281321 3.9028478 7356.5571
+25857.8012281796 3.9030051 7355.9663
+25858.80122822709 3.9030445 7355.9663
+25859.80122827459 3.9032021 7356.1636
+25860.80122832209 3.9031234 7355.5728
+25861.80122836959 3.9032807 7355.5728
+25862.80122841708 3.9033594 7356.1636
+25863.80122846458 3.903517 7356.5571
+25864.80122851208 3.903517 7356.3604
+25865.80122855958 3.903635 7355.9663
+25866.80122860707 3.9035957 7355.7695
+25867.80122865457 3.9039106 7355.7695
+25868.80122870207 3.9037926 7356.3604
+25869.80122874957 3.9039106 7356.1636
+25870.80122879706 3.9042256 7356.1636
+25871.80122884456 3.9041469 7355.9663
+25872.80122889206 3.9042256 7355.7695
+25873.80122893956 3.9043438 7355.7695
+25874.80122898705 3.9044619 7355.9663
+25875.80122903455 3.9045012 7355.7695
+25876.80122908205 3.9046192 7355.5728
+25877.80122912955 3.9047375 7356.1636
+25878.80122917704 3.9047375 7355.7695
+25879.80122922454 3.9048555 7355.7695
+25880.80122927204 3.9048162 7355.7695
+25881.80122931954 3.9051311 7355.5728
+25882.80122936703 3.9049737 7356.1636
+25883.80122941453 3.9052887 7356.3604
+25884.80122946203 3.9052887 7356.5571
+25885.80122950953 3.9054461 7355.5728
+25886.80122955702 3.9055247 7356.3604
+25887.80122960452 3.9056036 7356.3604
+25888.80122965202 3.9057217 7355.7695
+25889.80122969951 3.9058003 7356.3604
+25890.80122974701 3.9058003 7355.3765
+25891.80122979451 3.9059186 7356.1636
+25892.80122984201 3.9059973 7355.7695
+25893.8012298895 3.906076 7356.3604
+25894.801229937 3.9061153 7355.3765
+25895.8012299845 3.9061942 7355.7695
+25896.801230032 3.9063909 7355.1797
+25897.80123007949 3.9064696 7356.1636
+25898.80123012699 3.9065485 7356.3604
+25899.80123017449 3.9066665 7355.1797
+25900.80123022199 3.9067059 7355.7695
+25901.80123026948 3.9067452 7355.3765
+25902.80123031698 3.9069815 7355.5728
+25903.80123036448 3.9070601 7355.5728
+25904.80123041198 3.9070601 7356.3604
+25905.80123045947 3.9071391 7356.1636
+25906.80123050697 3.9072964 7356.1636
+25907.80123055447 3.9073751 7355.5728
+25908.80123060197 3.9074144 7354.9824
+25909.80123064946 3.907572 7356.1636
+25910.80123069696 3.9076507 7356.7539
+25911.80123074446 3.90769 7356.1636
+25912.80123079196 3.9078083 7356.3604
+25913.80123083945 3.907887 7356.3604
+25914.80123088695 3.9078083 7355.3765
+25915.80123093445 3.9080446 7356.1636
+25916.80123098195 3.9080446 7354.9824
+25917.80123102944 3.9082806 7355.1797
+25918.80123107694 3.9082413 7355.9663
+25919.80123112444 3.90832 7355.5728
+25920.80123117194 3.9084382 7355.9663
+25921.80123121943 3.9085956 7355.5728
+25922.80123126693 3.9085562 7355.9663
+25923.80123131443 3.9087532 7354.9824
+25924.80123136193 3.9087925 7355.3765
+25925.80123140942 3.9088318 7355.3765
+25926.80123145692 3.9089499 7356.3604
+25927.80123150442 3.9091468 7355.5728
+25928.80123155192 3.9091861 7355.1797
+25929.80123159941 3.9093044 7355.7695
+25930.80123164691 3.9093044 7357.1475
+25931.80123169441 3.9094617 7356.3604
+25932.80123174191 3.9094617 7355.9663
+25933.8012317894 3.909698 7356.1636
+25934.8012318369 3.9097767 7356.1636
+25935.8012318844 3.909816 7355.5728
+25936.8012319319 3.9099343 7356.7539
+25937.80123197939 3.9100523 7356.1636
+25938.80123202689 3.910131 7355.9663
+25939.80123207439 3.9101703 7355.9663
+25940.80123212188 3.9102886 7356.1636
+25941.80123216938 3.9103673 7354.3921
+25942.80123221688 3.9103279 7356.3604
+25943.80123226438 3.9105642 7354.9824
+25944.80123231187 3.9105642 7356.3604
+25945.80123235937 3.9106822 7355.1797
+25946.80123240687 3.9107609 7355.9663
+25947.80123245437 3.9108791 7355.9663
+25948.80123250186 3.9109185 7356.5571
+25949.80123254936 3.9110758 7355.5728
+25950.80123259686 3.9111152 7356.9502
+25951.80123264436 3.9111152 7355.9663
+25952.80123269185 3.9112728 7355.9663
+25953.80123273935 3.9113908 7355.7695
+25954.80123278685 3.911509 7356.7539
+25955.80123283435 3.9115484 7356.1636
+25956.80123288184 3.9115877 7355.7695
+25957.80123292934 3.9117453 7356.3604
+25958.80123297684 3.9117846 7355.5728
+25959.80123302434 3.9118633 7355.3765
+25960.80123307183 3.9118633 7356.5571
+25961.80123311933 3.9120603 7355.1797
+25962.80123316683 3.9119813 7355.7695
+25963.80123321433 3.9121783 7355.7695
+25964.80123326182 3.9122176 7355.9663
+25965.80123330932 3.9124146 7355.5728
+25966.80123335682 3.9122963 7356.1636
+25967.80123340432 3.9124932 7356.3604
+25968.80123345181 3.9125326 7355.5728
+25969.80123349931 3.9125326 7355.5728
+25970.80123354681 3.9126506 7355.9663
+25971.80123359431 3.9127688 7355.9663
+25972.8012336418 3.9127688 7355.5728
+25973.8012336893 3.9128475 7356.1636
+25974.8012337368 3.9130051 7356.5571
+25975.8012337843 3.9130838 7356.3604
+25976.80123383179 3.9132018 7355.9663
+25977.80123387929 3.9132018 7356.3604
+25978.80123392679 3.9133987 7355.7695
+25979.80123397429 3.9134381 7356.3604
+25980.80123402178 3.9135957 7354.9824
+25981.80123406928 3.9137137 7355.9663
+25982.80123411678 3.9136744 7355.7695
+25983.80123416428 3.9137137 7355.3765
+25984.80123421177 3.9137924 7356.5571
+25985.80123425927 3.9140286 7355.5728
+25986.80123430677 3.9141073 7356.5571
+25987.80123435427 3.9141073 7355.9663
+25988.80123440176 3.9143043 7355.7695
+25989.80123444926 3.9143829 7355.7695
+25990.80123449676 3.9143829 7355.9663
+25991.80123454425 3.9145799 7356.3604
+25992.80123459175 3.9146979 7355.9663
+25993.80123463925 3.9148161 7355.9663
+25994.80123468675 3.9148555 7356.1636
+25995.80123473424 3.9149342 7355.9663
+25996.80123478174 3.9150522 7356.1636
+25997.80123482924 3.9151311 7355.1797
+25998.80123487674 3.9151704 7356.1636
+25999.80123492423 3.9152884 7355.7695
+26000.80123497173 3.9153671 7356.3604
+26001.80123501923 3.9154854 7355.9663
+26002.80123506673 3.9155247 7355.3765
+26003.80123511422 3.9156427 7356.1636
+26004.80123516172 3.9157214 7355.9663
+26005.80123520922 3.9158397 7356.1636
+26006.80123525672 3.915879 7355.7695
+26007.80123530421 3.9159577 7356.7539
+26008.80123535171 3.915997 7355.7695
+26009.80123539921 3.9161546 7356.1636
+26010.80123544671 3.9161546 7356.5571
+26011.8012354942 3.9163909 7356.5571
+26012.8012355417 3.9164302 7355.7695
+26013.8012355892 3.9164696 7355.3765
+26014.8012356367 3.9165483 7356.3604
+26015.80123568419 3.9165483 7355.9663
+26016.80123573169 3.9166665 7356.3604
+26017.80123577919 3.9168239 7355.3765
+26018.80123582669 3.9169025 7356.5571
+26019.80123587418 3.9168632 7356.3604
+26020.80123592168 3.9169025 7355.9663
+26021.80123596918 3.9170601 7355.5728
+26022.80123601668 3.9171782 7356.3604
+26023.80123606417 3.9172175 7356.5571
+26024.80123611167 3.9173357 7355.9663
+26025.80123615917 3.9173751 7355.7695
+26026.80123620667 3.9173357 7355.9663
+26027.80123625416 3.9175718 7356.3604
+26028.80123630166 3.9175718 7355.9663
+26029.80123634916 3.9176114 7356.3604
+26030.80123639666 3.9176114 7356.3604
+26031.80123644415 3.9178867 7355.9663
+26032.80123649165 3.9178867 7355.1797
+26033.80123653915 3.9180837 7356.1636
+26034.80123658665 3.9180443 7355.5728
+26035.80123663414 3.9181623 7356.1636
+26036.80123668164 3.9182017 7355.5728
+26037.80123672914 3.9183199 7355.9663
+26038.80123677664 3.9183593 7355.9663
+26039.80123682413 3.9184773 7355.5728
+26040.80123687163 3.918438 7356.1636
+26041.80123691913 3.9186742 7355.5728
+26042.80123696662 3.9185562 7355.9663
+26043.80123701412 3.9186742 7356.7539
+26044.80123706162 3.9188318 7356.1636
+26045.80123710912 3.9190285 7355.3765
+26046.80123715661 3.9190679 7355.9663
+26047.80123720411 3.9190679 7356.1636
+26048.80123725161 3.9192648 7355.7695
+26049.80123729911 3.9192255 7356.1636
+26050.8012373466 3.9194221 7355.7695
+26051.8012373941 3.9194221 7355.9663
+26052.8012374416 3.9195404 7355.9663
+26053.8012374891 3.9195797 7355.7695
+26054.80123753659 3.9196191 7355.9663
+26055.80123758409 3.919816 7356.3604
+26056.80123763159 3.9198947 7356.5571
+26057.80123767909 3.9198554 7355.5728
+26058.80123772658 3.9200521 7356.1636
+26059.80123777408 3.9200916 7355.9663
+26060.80123782158 3.9202096 7356.1636
+26061.80123786908 3.920249 7355.1797
+26062.80123791657 3.9203277 7355.5728
+26063.80123796407 3.9204066 7355.9663
+26064.80123801157 3.9206033 7356.9502
+26065.80123805907 3.9204853 7355.9663
+26066.80123810656 3.9206033 7356.3604
+26067.80123815406 3.9206822 7355.7695
+26068.80123820156 3.9207609 7356.3604
+26069.80123824906 3.9208789 7356.5571
+26070.80123829655 3.9209182 7356.5571
+26071.80123834405 3.9210758 7356.5571
+26072.80123839155 3.9210365 7356.1636
+26073.80123843905 3.9211938 7356.1636
+26074.80123848654 3.9211545 7356.1636
+26075.80123853404 3.9213514 7356.7539
+26076.80123858154 3.9213908 7355.9663
+26077.80123862904 3.9214301 7355.9663
+26078.80123867653 3.9215481 7356.1636
+26079.80123872403 3.9215875 7356.3604
+26080.80123877153 3.9216664 7354.9824
+26081.80123881903 3.9217057 7356.3604
+26082.80123886652 3.9218237 7356.3604
+26083.80123891402 3.9218237 7356.1636
+26084.80123896152 3.921942 7356.1636
+26085.80123900902 3.92206 7355.9663
+26086.80123905651 3.9221387 7355.7695
+26087.80123910401 3.922178 7355.7695
+26088.80123915151 3.9223356 7355.7695
+26089.80123919901 3.922375 7356.1636
+26090.8012392465 3.9224536 7355.5728
+26091.801239294 3.9224536 7356.7539
+26092.8012393415 3.9226112 7356.3604
+26093.80123938899 3.9226112 7355.5728
+26094.80123943649 3.9226899 7356.1636
+26095.80123948399 3.9228079 7356.3604
+26096.80123953149 3.9228079 7356.5571
+26097.80123957898 3.9229262 7356.1636
+26098.80123962648 3.9230049 7355.7695
+26099.80123967398 3.9231229 7356.1636
+26100.80123972148 3.9231229 7355.9663
+26101.80123976897 3.9232411 7355.7695
+26102.80123981647 3.9233198 7356.3604
+26103.80123986397 3.9234774 7356.3604
+26104.80123991147 3.9233985 7356.9502
+26105.80123995896 3.9235561 7356.1636
+26106.80124000646 3.9236741 7355.7695
+26107.80124005396 3.923753 7355.7695
+26108.80124010146 3.9238317 7356.9502
+26109.80124014895 3.923871 7355.9663
+26110.80124019645 3.923871 7355.5728
+26111.80124024395 3.9239891 7356.5571
+26112.80124029145 3.9241467 7356.1636
+26113.80124033894 3.9241073 7356.1636
+26114.80124038644 3.9241467 7355.9663
+26115.80124043394 3.9243433 7356.1636
+26116.80124048144 3.9243433 7355.1797
+26117.80124052893 3.9245009 7356.1636
+26118.80124057643 3.9245796 7355.9663
+26119.80124062393 3.9245403 7355.7695
+26120.80124067143 3.9246979 7355.3765
+26121.80124071892 3.9246583 7356.1636
+26122.80124076642 3.9247372 7356.3604
+26123.80124081392 3.9248552 7355.5728
+26124.80124086142 3.9249339 7355.9663
+26125.80124090891 3.9249339 7355.9663
+26126.80124095641 3.9250522 7356.3604
+26127.80124100391 3.9252489 7355.7695
+26128.80124105141 3.9251308 7355.7695
+26129.8012410989 3.9251702 7356.1636
+26130.8012411464 3.9254065 7356.3604
+26131.8012411939 3.9254458 7355.7695
+26132.8012412414 3.9254851 7355.5728
+26133.80124128889 3.9255638 7354.9824
+26134.80124133639 3.9256821 7355.9663
+26135.80124138389 3.9258001 7355.5728
+26136.80124143139 3.9258394 7355.7695
+26137.80124147888 3.9259577 7356.5571
+26138.80124152638 3.9259577 7356.5571
+26139.80124157388 3.9261544 7356.3604
+26140.80124162138 3.926115 7356.3604
+26141.80124166887 3.9261544 7355.7695
+26142.80124171637 3.926312 7356.1636
+26143.80124176387 3.9263906 7355.5728
+26144.80124181136 3.9265087 7355.5728
+26145.80124185886 3.9265482 7355.7695
+26146.80124190636 3.9266663 7355.3765
+26147.80124195386 3.9266269 7355.9663
+26148.80124200135 3.9268236 7355.5728
+26149.80124204885 3.9269025 7356.5571
+26150.80124209635 3.9268632 7355.7695
+26151.80124214385 3.9270599 7355.9663
+26152.80124219134 3.9271386 7355.9663
+26153.80124223884 3.9272175 7356.5571
+26154.80124228634 3.9272568 7355.5728
+26155.80124233384 3.9272568 7355.9663
+26156.80124238133 3.9274142 7355.3765
+26157.80124242883 3.9275718 7356.9502
+26158.80124247633 3.9276505 7356.3604
+26159.80124252383 3.9276505 7355.3765
+26160.80124257132 3.9277291 7356.9502
+26161.80124261882 3.927808 7356.3604
+26162.80124266632 3.9278867 7355.9663
+26163.80124271382 3.9280837 7356.5571
+26164.80124276131 3.9280837 7356.3604
+26165.80124280881 3.9281623 7356.1636
+26166.80124285631 3.928359 7356.3604
+26167.80124290381 3.928241 7355.9663
+26168.8012429513 3.9283986 7356.5571
+26169.8012429988 3.9284379 7355.5728
+26170.8012430463 3.9285166 7355.7695
+26171.8012430938 3.9287922 7355.3765
+26172.80124314129 3.9287136 7355.9663
+26173.80124318879 3.9289103 7355.7695
+26174.80124323629 3.9289496 7355.7695
+26175.80124328379 3.9289889 7356.5571
+26176.80124333128 3.9291072 7355.1797
+26177.80124337878 3.9292645 7355.7695
+26178.80124342628 3.9292645 7356.7539
+26179.80124347378 3.9294221 7356.1636
+26180.80124352127 3.9295008 7355.7695
+26181.80124356877 3.9295402 7356.5571
+26182.80124361627 3.9296191 7355.1797
+26183.80124366377 3.9297371 7356.5571
+26184.80124371126 3.9298551 7355.9663
+26185.80124375876 3.9298551 7355.9663
+26186.80124380626 3.9299734 7355.5728
+26187.80124385376 3.929934 7355.9663
+26188.80124390125 3.9300914 7355.3765
+26189.80124394875 3.9301307 7356.5571
+26190.80124399625 3.9303277 7355.7695
+26191.80124404375 3.930367 7356.1636
+26192.80124409124 3.930367 7355.9663
+26193.80124413874 3.9304457 7355.9663
+26194.80124418624 3.9305243 7355.7695
+26195.80124423373 3.9306426 7356.1636
+26196.80124428123 3.9307213 7356.1636
+26197.80124432873 3.9308393 7356.7539
+26198.80124437623 3.9309576 7356.3604
+26199.80124442372 3.9310362 7355.5728
+26200.80124447122 3.9311149 7356.3604
+26201.80124451872 3.9312332 7356.1636
+26202.80124456622 3.9311938 7355.9663
+26203.80124461371 3.9313118 7356.3604
+26204.80124466121 3.9313905 7355.9663
+26205.80124470871 3.9314694 7355.9663
+26206.80124475621 3.9315875 7355.7695
+26207.8012448037 3.9316268 7356.1636
+26208.8012448512 3.9317055 7355.5728
+26209.8012448987 3.9319024 7355.3765
+26210.8012449462 3.9319024 7356.3604
+26211.80124499369 3.9319024 7355.3765
+26212.80124504119 3.9320598 7355.5728
+26213.80124508869 3.9320993 7355.9663
+26214.80124513619 3.9323747 7355.7695
+26215.80124518368 3.9323354 7355.5728
+26216.80124523118 3.9324536 7355.9663
+26217.80124527868 3.932493 7356.3604
+26218.80124532618 3.9325716 7356.5571
+26219.80124537367 3.9326503 7355.7695
+26220.80124542117 3.9328473 7355.7695
+26221.80124546867 3.9328473 7356.9502
+26222.80124551617 3.9329653 7355.7695
+26223.80124556366 3.9330835 7355.9663
+26224.80124561116 3.9331229 7355.5728
+26225.80124565866 3.9331229 7356.1636
+26226.80124570616 3.9332409 7355.7695
+26227.80124575365 3.9333985 7356.3604
+26228.80124580115 3.9335165 7355.9663
+26229.80124584865 3.9334772 7356.7539
+26230.80124589615 3.9337134 7355.7695
+26231.80124594364 3.9338708 7355.7695
+26232.80124599114 3.9338315 7355.5728
+26233.80124603864 3.9340284 7355.5728
+26234.80124608614 3.9339497 7355.9663
+26235.80124613363 3.9340677 7355.7695
+26236.80124618113 3.9341857 7356.5571
+26237.80124622863 3.9342647 7356.3604
+26238.80124627613 3.934422 7356.3604
+26239.80124632362 3.934422 7356.5571
+26240.80124637112 3.9344614 7355.9663
+26241.80124641862 3.9346976 7356.5571
+26242.80124646612 3.9346189 7356.3604
+26243.80124651361 3.9346583 7355.7695
+26244.80124656111 3.9348156 7355.5728
+26245.80124660861 3.9348946 7355.9663
+26246.8012466561 3.9350126 7355.9663
+26247.8012467036 3.9350913 7357.1475
+26248.8012467511 3.9350519 7356.7539
+26249.8012467986 3.9352489 7356.3604
+26250.80124684609 3.9352882 7356.1636
+26251.80124689359 3.9354062 7355.5728
+26252.80124694109 3.9354455 7356.1636
+26253.80124698859 3.9355638 7355.7695
+26254.80124703608 3.9356425 7355.7695
+26255.80124708358 3.9358394 7355.9663
+26256.80124713108 3.9359181 7356.3604
+26257.80124717858 3.9359574 7356.1636
+26258.80124722607 3.9360361 7356.7539
+26259.80124727357 3.9360754 7355.9663
+26260.80124732107 3.936115 7356.7539
+26261.80124736857 3.9363511 7355.1797
+26262.80124741606 3.93643 7356.3604
+26263.80124746356 3.9365087 7355.9663
+26264.80124751106 3.936548 7356.1636
+26265.80124755856 3.936666 7355.7695
+26266.80124760605 3.9367843 7355.9663
+26267.80124765355 3.9368236 7356.5571
+26268.80124770105 3.9368629 7356.1636
+26269.80124774855 3.9370205 7355.7695
+26270.80124779604 3.9370992 7355.9663
+26271.80124784354 3.9371779 7356.3604
+26272.80124789104 3.9372959 7356.3604
+26273.80124793854 3.9373355 7356.1636
+26274.80124798603 3.9373748 7356.5571
+26275.80124803353 3.9376109 7356.5571
+26276.80124808103 3.9376109 7356.3604
+26277.80124812853 3.9376504 7355.9663
+26278.80124817602 3.9377685 7355.5728
+26279.80124822352 3.9378865 7356.3604
+26280.80124827102 3.9378865 7355.5728
+26281.80124831852 3.9380047 7356.5571
+26282.80124836601 3.9380441 7355.3765
+26283.80124841351 3.9382803 7356.7539
+26284.80124846101 3.9383984 7356.3604
+26285.80124850851 3.9382803 7356.1636
+26286.801248556 3.9384377 7355.3765
+26287.8012486035 3.9385953 7356.1636
+26288.801248651 3.9385953 7356.1636
+26289.8012486985 3.9386346 7356.7539
+26290.80124874599 3.9387527 7355.7695
+26291.80124879349 3.9388313 7356.3604
+26292.80124884099 3.9390283 7355.7695
+26293.80124888849 3.9390283 7356.9502
+26294.80124893598 3.9390676 7356.3604
+26295.80124898348 3.9390676 7355.9663
+26296.80124903098 3.9392645 7357.1475
+26297.80124907847 3.9393039 7355.5728
+26298.80124912597 3.9394219 7355.3765
+26299.80124917347 3.9395008 7355.9663
+26300.80124922097 3.9395401 7356.3604
+26301.80124926846 3.9397368 7356.3604
+26302.80124931596 3.9396582 7356.3604
+26303.80124936346 3.9397762 7355.7695
+26304.80124941096 3.9398551 7355.1797
+26305.80124945845 3.9399731 7356.7539
+26306.80124950595 3.9400125 7355.7695
+26307.80124955345 3.9400914 7355.3765
+26308.80124960095 3.9402094 7354.9824
+26309.80124964844 3.9403274 7356.3604
+26310.80124969594 3.9402881 7356.7539
+26311.80124974344 3.9402881 7355.9663
+26312.80124979094 3.940485 7356.3604
+26313.80124983843 3.940603 7356.7539
+26314.80124988593 3.9406817 7356.3604
+26315.80124993343 3.9407606 7356.7539
+26316.80124998093 3.9407606 7356.7539
+26317.80125002842 3.9408 7355.5728
+26318.80125007592 3.940918 7356.5571
+26319.80125012342 3.9410362 7355.9663
+26320.80125017092 3.9410756 7355.9663
+26321.80125021841 3.9411542 7355.9663
+26322.80125026591 3.9412723 7356.3604
+26323.80125031341 3.9414299 7354.9824
+26324.80125036091 3.9414299 7355.9663
+26325.8012504084 3.9416265 7355.7695
+26326.8012504559 3.9417055 7356.1636
+26327.8012505034 3.9417448 7356.7539
+26328.8012505509 3.9418628 7355.9663
+26329.80125059839 3.9419022 7356.7539
+26330.80125064589 3.9420204 7356.1636
+26331.80125069339 3.9420598 7356.5571
+26332.80125074089 3.9421384 7356.3604
+26333.80125078838 3.9421778 7356.1636
+26334.80125083588 3.942296 7356.5571
+26335.80125088338 3.9424534 7355.7695
+26336.80125093088 3.9425321 7355.9663
+26337.80125097837 3.9425321 7355.7695
+26338.80125102587 3.9425716 7356.1636
+26339.80125107337 3.9426897 7355.9663
+26340.80125112087 3.942729 7355.9663
+26341.80125116836 3.9427683 7355.9663
+26342.80125121586 3.9428866 7355.7695
+26343.80125126336 3.9430833 7355.9663
+26344.80125131086 3.9430046 7355.5728
+26345.80125135835 3.9431226 7355.1797
+26346.80125140585 3.9431226 7355.9663
+26347.80125145335 3.9433196 7356.1636
+26348.80125150085 3.9432802 7356.5571
+26349.80125154834 3.9434772 7355.5728
+26350.80125159584 3.9435165 7355.5728
+26351.80125164334 3.9434772 7355.9663
+26352.80125169083 3.9436738 7355.9663
+26353.80125173833 3.9436738 7355.5728
+26354.80125178583 3.9437525 7356.1636
+26355.80125183333 3.9439495 7356.3604
+26356.80125188082 3.9439888 7356.1636
+26357.80125192832 3.9441464 7354.9824
+26358.80125197582 3.9440675 7356.7539
+26359.80125202332 3.9441464 7356.1636
+26360.80125207081 3.9443431 7356.1636
+26361.80125211831 3.9443038 7355.9663
+26362.80125216581 3.9443038 7355.9663
+26363.80125221331 3.94454 7356.3604
+26364.8012522608 3.944658 7356.1636
+26365.8012523083 3.9447763 7355.9663
+26366.8012523558 3.9448156 7355.7695
+26367.8012524033 3.944973 7355.3765
+26368.80125245079 3.9450123 7355.7695
+26369.80125249829 3.9450519 7356.3604
+26370.80125254579 3.9450912 7355.5728
+26371.80125259329 3.9452486 7356.1636
+26372.80125264078 3.9452093 7354.7856
+26373.80125268828 3.9453275 7355.5728
+26374.80125273578 3.9455636 7356.5571
+26375.80125278328 3.9454849 7355.3765
+26376.80125283077 3.9456818 7355.9663
+26377.80125287827 3.9457211 7355.5728
+26378.80125292577 3.9457605 7356.9502
+26379.80125297327 3.9458785 7355.5728
+26380.80125302076 3.9459178 7356.3604
+26381.80125306826 3.9459178 7356.3604
+26382.80125311576 3.9460754 7355.5728
+26383.80125316326 3.9461148 7355.5728
+26384.80125321075 3.9461935 7356.7539
+26385.80125325825 3.9463117 7355.9663
+26386.80125330575 3.9463904 7355.7695
+26387.80125335325 3.9465084 7354.5889
+26388.80125340074 3.9464691 7355.7695
+26389.80125344824 3.9465477 7355.1797
+26390.80125349574 3.9467053 7355.5728
+26391.80125354324 3.9468234 7356.5571
+26392.80125359073 3.946784 7355.7695
+26393.80125363823 3.9469023 7355.9663
+26394.80125368573 3.9468627 7356.5571
+26395.80125373323 3.946981 7356.9502
+26396.80125378072 3.9472566 7355.5728
+26397.80125382822 3.9472172 7355.3765
+26398.80125387572 3.9472566 7356.1636
+26399.80125392322 3.9474533 7355.7695
+26400.80125397071 3.9474533 7355.5728
+26401.80125401821 3.9475322 7355.5728
+26402.80125406571 3.9475715 7356.3604
+26403.8012541132 3.9475715 7355.9663
+26404.8012541607 3.9478078 7355.3765
+26405.8012542082 3.9478471 7355.9663
+26406.8012542557 3.9479651 7355.5728
+26407.80125430319 3.9478865 7355.5728
+26408.80125435069 3.9480832 7356.1636
+26409.80125439819 3.9482014 7355.9663
+26410.80125444569 3.9482801 7355.7695
+26411.80125449318 3.9483588 7355.9663
+26412.80125454068 3.9483588 7356.1636
+26413.80125458818 3.948595 7356.3604
+26414.80125463568 3.9485164 7356.5571
+26415.80125468317 3.9486737 7355.3765
+26416.80125473067 3.9487131 7355.5728
+26417.80125477817 3.9488313 7356.5571
+26418.80125482567 3.948792 7355.5728
+26419.80125487316 3.9490283 7356.5571
+26420.80125492066 3.9489493 7356.1636
+26421.80125496816 3.9491069 7355.5728
+26422.80125501566 3.9491463 7355.7695
+26423.80125506315 3.9493036 7356.5571
+26424.80125511065 3.9493432 7355.5728
+26425.80125515815 3.9494219 7356.5571
+26426.80125520565 3.9494612 7355.7695
+26427.80125525314 3.9496582 7355.3765
+26428.80125530064 3.9497368 7356.7539
+26429.80125534814 3.9496975 7356.3604
+26430.80125539564 3.9499335 7354.9824
+26431.80125544313 3.9499335 7355.9663
+26432.80125549063 3.9500911 7355.9663
+26433.80125553813 3.9501305 7356.1636
+26434.80125558563 3.9501698 7356.1636
+26435.80125563312 3.9503667 7355.9663
+26436.80125568062 3.9502881 7355.3765
+26437.80125572812 3.9503274 7355.9663
+26438.80125577562 3.9504848 7355.3765
+26439.80125582311 3.950603 7355.1797
+26440.80125587061 3.9506423 7356.3604
+26441.80125591811 3.950721 7355.5728
+26442.80125596561 3.9507997 7356.3604
+26443.8012560131 3.950839 7355.5728
+26444.8012560606 3.9509573 7355.9663
+26445.8012561081 3.951036 7356.1636
+26446.8012561556 3.951154 7356.3604
+26447.80125620309 3.9511936 7356.1636
+26448.80125625059 3.9512722 7356.1636
+26449.80125629809 3.9513509 7355.9663
+26450.80125634559 3.9514296 7356.5571
+26451.80125639308 3.9515872 7356.1636
+26452.80125644058 3.9516265 7356.1636
+26453.80125648808 3.9517052 7355.9663
+26454.80125653557 3.9518235 7356.1636
+26455.80125658307 3.9518628 7356.5571
+26456.80125663057 3.9519808 7355.7695
+26457.80125667807 3.9520202 7356.1636
+26458.80125672556 3.9521384 7356.3604
+26459.80125677306 3.9522564 7355.9663
+26460.80125682056 3.9523351 7355.3765
+26461.80125686806 3.9523745 7356.3604
+26462.80125691555 3.9523745 7356.5571
+26463.80125696305 3.952414 7356.1636
+26464.80125701055 3.9525714 7356.5571
+26465.80125705805 3.9526107 7356.1636
+26466.80125710554 3.9526894 7355.7695
+26467.80125715304 3.9528863 7356.3604
+26468.80125720054 3.9529257 7355.9663
+26469.80125724804 3.9530833 7356.7539
+26470.80125729553 3.9531226 7356.3604
+26471.80125734303 3.953162 7356.3604
+26472.80125739053 3.9531226 7356.3604
+26473.80125743803 3.9533193 7356.3604
+26474.80125748552 3.9533982 7356.3604
+26475.80125753302 3.9533982 7355.7695
+26476.80125758052 3.9534769 7356.7539
+26477.80125762802 3.9535556 7355.5728
+26478.80125767551 3.9537919 7356.3604
+26479.80125772301 3.9538312 7355.1797
+26480.80125777051 3.9538312 7355.3765
+26481.80125781801 3.9539888 7356.5571
+26482.8012578655 3.9540281 7355.9663
+26483.801257913 3.9541461 7356.3604
+26484.8012579605 3.9541855 7355.5728
+26485.801258008 3.9542644 7355.9663
+26486.80125805549 3.9543431 7356.1636
+26487.80125810299 3.9544611 7355.9663
+26488.80125815049 3.9545794 7356.1636
+26489.80125819799 3.9545794 7356.1636
+26490.80125824548 3.954658 7355.3765
+26491.80125829298 3.9547367 7355.5728
+26492.80125834048 3.9548154 7356.1636
+26493.80125838798 3.9549336 7355.3765
+26494.80125843547 3.9549336 7356.3604
+26495.80125848297 3.9551697 7355.7695
+26496.80125853047 3.9551303 7356.5571
+26497.80125857797 3.9552486 7355.9663
+26498.80125862546 3.9552879 7356.1636
+26499.80125867296 3.9553273 7355.9663
+26500.80125872046 3.955406 7356.5571
+26501.80125876796 3.9554453 7355.3765
+26502.80125881545 3.9556029 7356.1636
+26503.80125886295 3.9557602 7356.1636
+26504.80125891045 3.9557996 7356.3604
+26505.80125895794 3.9558785 7355.9663
+26506.80125900544 3.9559178 7356.3604
+26507.80125905294 3.9560359 7355.7695
+26508.80125910044 3.9559965 7357.1475
+26509.80125914793 3.9561541 7355.7695
+26510.80125919543 3.9562328 7355.3765
+26511.80125924293 3.9562328 7355.9663
+26512.80125929043 3.9563901 7356.7539
+26513.80125933792 3.9563901 7355.5728
+26514.80125938542 3.9565084 7356.3604
+26515.80125943292 3.9565084 7356.5571
+26516.80125948042 3.9566264 7355.7695
+26517.80125952791 3.9566658 7356.5571
+26518.80125957541 3.9568627 7355.9663
+26519.80125962291 3.9569414 7356.5571
+26520.80125967041 3.9569414 7355.1797
+26521.8012597179 3.9570596 7356.3604
+26522.8012597654 3.9571776 7355.5728
+26523.8012598129 3.957217 7355.9663
+26524.8012598604 3.9573746 7355.9663
+26525.80125990789 3.9574139 7355.7695
+26526.80125995539 3.9575319 7355.9663
+26527.80126000289 3.9575713 7355.9663
+26528.80126005039 3.9576895 7355.5728
+26529.80126009788 3.9578075 7355.9663
+26530.80126014538 3.9578469 7356.1636
+26531.80126019288 3.9578469 7355.1797
+26532.80126024038 3.9580438 7355.9663
+26533.80126028787 3.9581225 7356.3604
+26534.80126033537 3.9581225 7356.1636
+26535.80126038287 3.9582405 7355.5728
+26536.80126043037 3.9583194 7355.5728
+26537.80126047786 3.9583981 7356.1636
+26538.80126052536 3.9584768 7356.3604
+26539.80126057286 3.958595 7356.3604
+26540.80126062036 3.958595 7356.1636
+26541.80126066785 3.9587131 7355.9663
+26542.80126071535 3.9587917 7355.9663
+26543.80126076285 3.9587917 7355.1797
+26544.80126081035 3.9589887 7356.1636
+26545.80126085784 3.959028 7355.9663
+26546.80126090534 3.9591067 7355.3765
+26547.80126095284 3.9591067 7356.3604
+26548.80126100034 3.9593036 7355.5728
+26549.80126104783 3.9592643 7355.5728
+26550.80126109533 3.959343 7355.9663
+26551.80126114283 3.959461 7355.9663
+26552.80126119033 3.9596186 7356.1636
+26553.80126123782 3.9595792 7356.3604
+26554.80126128532 3.9597366 7355.9663
+26555.80126133282 3.9597759 7356.1636
+26556.80126138031 3.9598155 7355.3765
+26557.80126142781 3.9599335 7355.9663
+26558.80126147531 3.9600122 7355.1797
+26559.80126152281 3.9600515 7356.1636
+26560.8012615703 3.9600909 7355.3765
+26561.8012616178 3.9602485 7355.9663
+26562.8012616653 3.9602485 7356.7539
+26563.8012617128 3.9603271 7355.7695
+26564.80126176029 3.9604058 7355.9663
+26565.80126180779 3.9604847 7355.5728
+26566.80126185529 3.9606028 7356.3604
+26567.80126190279 3.9606028 7356.7539
+26568.80126195028 3.9606028 7355.7695
+26569.80126199778 3.9607208 7355.3765
+26570.80126204528 3.9609177 7356.5571
+26571.80126209278 3.9610753 7355.7695
+26572.80126214027 3.9609571 7355.9663
+26573.80126218777 3.9611146 7356.3604
+26574.80126223527 3.9610753 7355.7695
+26575.80126228277 3.9613113 7356.1636
+26576.80126233026 3.961272 7356.5571
+26577.80126237776 3.9614296 7355.7695
+26578.80126242526 3.9613903 7355.9663
+26579.80126247276 3.9615476 7355.7695
+26580.80126252025 3.961587 7355.9663
+26581.80126256775 3.9616659 7356.5571
+26582.80126261525 3.9617839 7356.9502
+26583.80126266275 3.9618626 7355.1797
+26584.80126271024 3.9619019 7355.9663
+26585.80126275774 3.9620202 7356.3604
+26586.80126280524 3.9620202 7356.1636
+26587.80126285274 3.9620595 7355.9663
+26588.80126290023 3.9621382 7356.5571
+26589.80126294773 3.9622958 7355.3765
+26590.80126299523 3.9622562 7355.9663
+26591.80126304273 3.9623744 7355.7695
+26592.80126309022 3.9624925 7355.3765
+26593.80126313772 3.9626501 7356.3604
+26594.80126318522 3.9626501 7355.9663
+26595.80126323272 3.9626501 7356.3604
+26596.80126328021 3.9627681 7355.9663
+26597.80126332771 3.962965 7355.5728
+26598.80126337521 3.9629257 7355.5728
+26599.80126342271 3.9630044 7355.9663
+26600.8012634702 3.963083 7355.9663
+26601.8012635177 3.96328 7354.9824
+26602.8012635652 3.9632406 7355.9663
+26603.8012636127 3.9633193 7355.5728
+26604.80126366019 3.9634373 7355.9663
+26605.80126370769 3.9635556 7355.5728
+26606.80126375519 3.9635162 7356.1636
+26607.80126380268 3.9637523 7356.3604
+26608.80126385018 3.9638705 7356.5571
+26609.80126389768 3.9639492 7356.3604
+26610.80126394518 3.9640279 7355.7695
+26611.80126399267 3.9640672 7355.7695
+26612.80126404017 3.9640279 7356.3604
+26613.80126408767 3.9642248 7356.7539
+26614.80126413517 3.9644215 7355.9663
+26615.80126418266 3.9643428 7355.7695
+26616.80126423016 3.9644215 7355.7695
+26617.80126427766 3.9645791 7355.9663
+26618.80126432516 3.9646578 7355.5728
+26619.80126437265 3.9647365 7355.5728
+26620.80126442015 3.9648547 7355.9663
+26621.80126446765 3.965091 7356.3604
+26622.80126451515 3.9649727 7355.7695
+26623.80126456264 3.9650517 7356.3604
+26624.80126461014 3.9650517 7355.9663
+26625.80126465764 3.9652483 7354.9824
+26626.80126470514 3.965327 7356.1636
+26627.80126475263 3.9654059 7355.7695
+26628.80126480013 3.9654059 7355.1797
+26629.80126484763 3.9656026 7355.7695
+26630.80126489513 3.9656026 7356.1636
+26631.80126494262 3.965642 7355.3765
+26632.80126499012 3.9657209 7355.5728
+26633.80126503762 3.9658782 7355.9663
+26634.80126508512 3.9659176 7355.9663
+26635.80126513261 3.9659569 7355.9663
+26636.80126518011 3.9661145 7355.9663
+26637.80126522761 3.9661145 7355.7695
+26638.80126527511 3.9662325 7356.5571
+26639.8012653226 3.9662719 7356.5571
+26640.8012653701 3.9663508 7355.9663
+26641.8012654176 3.9664295 7355.5728
+26642.8012654651 3.9667051 7355.5728
+26643.80126551259 3.9666657 7355.1797
+26644.80126556009 3.9667444 7355.5728
+26645.80126560759 3.9668231 7355.1797
+26646.80126565509 3.966902 7355.9663
+26647.80126570258 3.9670594 7355.9663
+26648.80126575008 3.96702 7356.7539
+26649.80126579758 3.9670987 7356.3604
+26650.80126584508 3.967335 7356.3604
+26651.80126589257 3.9673743 7355.3765
+26652.80126594007 3.967335 7355.9663
+26653.80126598757 3.967453 7355.3765
+26654.80126603507 3.9676106 7356.7539
+26655.80126608256 3.9676499 7355.9663
+26656.80126613006 3.9677286 7356.3604
+26657.80126617756 3.9678073 7355.9663
+26658.80126622505 3.9678862 7356.7539
+26659.80126627255 3.9680042 7355.9663
+26660.80126632005 3.9679649 7356.1636
+26661.80126636755 3.9680436 7355.9663
+26662.80126641504 3.9680829 7356.3604
+26663.80126646254 3.9682012 7356.1636
+26664.80126651004 3.9682798 7357.1475
+26665.80126655754 3.9683585 7355.1797
+26666.80126660503 3.9684372 7355.9663
+26667.80126665253 3.9685555 7355.5728
+26668.80126670003 3.9685948 7356.1636
+26669.80126674753 3.9685948 7356.1636
+26670.80126679502 3.9687128 7356.3604
+26671.80126684252 3.9687917 7355.5728
+26672.80126689002 3.9688704 7355.3765
+26673.80126693752 3.9689884 7355.7695
+26674.80126698501 3.9689884 7355.5728
+26675.80126703251 3.9691854 7355.9663
+26676.80126708001 3.9692247 7355.9663
+26677.80126712751 3.9693427 7356.1636
+26678.801267175 3.9693427 7355.9663
+26679.8012672225 3.9694216 7355.9663
+26680.80126727 3.969461 7356.3604
+26681.8012673175 3.969579 7356.5571
+26682.80126736499 3.9695396 7356.1636
+26683.80126741249 3.9697366 7355.5728
+26684.80126745999 3.9698546 7355.7695
+26685.80126750749 3.9698546 7355.9663
+26686.80126755498 3.9700515 7356.3604
+26687.80126760248 3.9702089 7355.7695
+26688.80126764998 3.9701695 7356.3604
+26689.80126769748 3.9701695 7356.1636
+26690.80126774497 3.9702482 7356.3604
+26691.80126779247 3.9704845 7356.5571
+26692.80126783997 3.9705238 7356.3604
+26693.80126788747 3.9706814 7355.7695
+26694.80126793496 3.9706814 7356.3604
+26695.80126798246 3.9707208 7355.7695
+26696.80126802996 3.9708781 7355.7695
+26697.80126807746 3.970957 7356.5571
+26698.80126812495 3.9710751 7356.5571
+26699.80126817245 3.9711537 7355.9663
+26700.80126821995 3.9713113 7356.1636
+26701.80126826745 3.971272 7355.3765
+26702.80126831494 3.9714293 7356.1636
+26703.80126836244 3.97139 7355.3765
+26704.80126840994 3.9715476 7356.3604
+26705.80126845744 3.9715869 7355.5728
+26706.80126850493 3.9717443 7355.9663
+26707.80126855243 3.971705 7355.7695
+26708.80126859993 3.971823 7356.1636
+26709.80126864742 3.9719412 7355.5728
+26710.80126869492 3.9719806 7356.3604
+26711.80126874242 3.9720199 7355.3765
+26712.80126878992 3.9722168 7355.9663
+26713.80126883741 3.9722562 7356.9502
+26714.80126888491 3.9722562 7356.5571
+26715.80126893241 3.9723742 7355.7695
+26716.80126897991 3.9724531 7356.3604
+26717.8012690274 3.9725711 7355.7695
+26718.8012690749 3.9726892 7356.3604
+26719.8012691224 3.9725711 7355.9663
+26720.8012691699 3.9727681 7356.1636
+26721.80126921739 3.9728861 7355.5728
+26722.80126926489 3.9728467 7355.9663
+26723.80126931239 3.9729648 7356.1636
+26724.80126935989 3.9729254 7355.9663
+26725.80126940738 3.9731617 7355.9663
+26726.80126945488 3.973201 7356.3604
+26727.80126950238 3.973201 7355.9663
+26728.80126954988 3.973398 7355.9663
+26729.80126959737 3.9734373 7355.5728
+26730.80126964487 3.9734766 7355.9663
+26731.80126969237 3.973634 7356.1636
+26732.80126973987 3.9735947 7355.9663
+26733.80126978736 3.9738309 7355.9663
+26734.80126983486 3.9737523 7355.9663
+26735.80126988236 3.9739885 7356.3604
+26736.80126992986 3.973949 7355.3765
+26737.80126997735 3.9740672 7355.7695
+26738.80127002485 3.9740672 7356.3604
+26739.80127007235 3.9742639 7356.1636
+26740.80127011985 3.9743035 7354.9824
+26741.80127016734 3.9743035 7356.5571
+26742.80127021484 3.9745002 7355.5728
+26743.80127026234 3.9746578 7355.1797
+26744.80127030984 3.9746971 7355.9663
+26745.80127035733 3.9746578 7355.7695
+26746.80127040483 3.9747758 7355.9663
+26747.80127045233 3.9747758 7355.7695
+26748.80127049983 3.9748938 7355.5728
+26749.80127054732 3.9750514 7355.5728
+26750.80127059482 3.9750907 7355.5728
+26751.80127064232 3.9752877 7355.9663
+26752.80127068982 3.9752877 7356.1636
+26753.80127073731 3.9753664 7355.5728
+26754.80127078481 3.9756026 7356.3604
+26755.80127083231 3.9755237 7355.5728
+26756.80127087981 3.9756813 7356.3604
+26757.8012709273 3.9757206 7355.3765
+26758.8012709748 3.9757993 7355.7695
+26759.8012710223 3.9759176 7355.9663
+26760.80127106979 3.9758782 7355.7695
+26761.80127111729 3.9759569 7355.5728
+26762.80127116479 3.9760749 7354.7856
+26763.80127121229 3.9760356 7355.1797
+26764.80127125978 3.9762719 7355.7695
+26765.80127130728 3.9763505 7356.3604
+26766.80127135478 3.9763112 7356.3604
+26767.80127140228 3.9765868 7356.3604
+26768.80127144977 3.9765475 7355.5728
+26769.80127149727 3.9766262 7355.9663
+26770.80127154477 3.9767838 7356.3604
+26771.80127159227 3.9768231 7356.3604
+26772.80127163976 3.9769804 7356.5571
+26773.80127168726 3.9770198 7356.3604
+26774.80127173476 3.977138 7355.9663
+26775.80127178226 3.9770987 7356.1636
+26776.80127182975 3.977138 7355.9663
+26777.80127187725 3.9771774 7356.5571
+26778.80127192475 3.9772954 7355.9663
+26779.80127197225 3.977453 7356.1636
+26780.80127201974 3.9775317 7356.1636
+26781.80127206724 3.9776103 7355.5728
+26782.80127211474 3.9777286 7355.7695
+26783.80127216224 3.9777286 7356.3604
+26784.80127220973 3.9777679 7356.5571
+26785.80127225723 3.9778073 7356.1636
+26786.80127230473 3.977886 7355.7695
+26787.80127235223 3.9780436 7356.3604
+26788.80127239972 3.9780829 7355.9663
+26789.80127244722 3.9780829 7355.9663
+26790.80127249472 3.9782403 7356.3604
+26791.80127254222 3.9783585 7355.9663
+26792.80127258971 3.9782796 7355.7695
+26793.80127263721 3.9784372 7356.3604
+26794.80127268471 3.9785159 7356.5571
+26795.80127273221 3.9786341 7356.7539
+26796.8012727797 3.9787128 7355.7695
+26797.8012728272 3.9787128 7355.3765
+26798.8012728747 3.9788308 7355.9663
+26799.8012729222 3.9788702 7355.7695
+26800.80127296969 3.9789095 7355.1797
+26801.80127301719 3.9789884 7356.1636
+26802.80127306469 3.9791064 7355.9663
+26803.80127311219 3.9790277 7355.5728
+26804.80127315968 3.9792244 7355.5728
+26805.80127320718 3.979264 7356.1636
+26806.80127325468 3.979382 7356.5571
+26807.80127330218 3.9794607 7355.7695
+26808.80127334967 3.9794214 7356.1636
+26809.80127339717 3.9795396 7356.3604
+26810.80127344467 3.9796576 7355.7695
+26811.80127349216 3.979697 7355.7695
+26812.80127353966 3.9797757 7356.3604
+26813.80127358716 3.979815 7355.9663
+26814.80127363466 3.9799333 7355.9663
+26815.80127368215 3.9800513 7356.1636
+26816.80127372965 3.98013 7354.9824
+26817.80127377715 3.9800513 7355.7695
+26818.80127382465 3.9802482 7354.7856
+26819.80127387214 3.9802089 7355.9663
+26820.80127391964 3.9803662 7356.3604
+26821.80127396714 3.9805238 7355.5728
+26822.80127401464 3.9805632 7355.7695
+26823.80127406213 3.9804845 7355.9663
+26824.80127410963 3.9807205 7355.7695
+26825.80127415713 3.9807994 7355.7695
+26826.80127420463 3.9807994 7356.3604
+26827.80127425212 3.9808781 7356.3604
+26828.80127429962 3.9809175 7355.5728
+26829.80127434712 3.9809568 7356.3604
+26830.80127439462 3.9811537 7356.5571
+26831.80127444211 3.9811537 7355.9663
+26832.80127448961 3.9812717 7355.7695
+26833.80127453711 3.9812324 7355.9663
+26834.80127458461 3.98139 7355.7695
+26835.8012746321 3.9814687 7355.7695
+26836.8012746796 3.981626 7356.3604
+26837.8012747271 3.9816654 7355.9663
+26838.8012747746 3.9817836 7356.1636
+26839.80127482209 3.9818623 7356.7539
+26840.80127486959 3.9818623 7355.3765
+26841.80127491709 3.9819016 7355.7695
+26842.80127496459 3.9819803 7356.1636
+26843.80127501208 3.9819803 7356.1636
+26844.80127505958 3.9821379 7355.5728
+26845.80127510708 3.9822166 7356.1636
+26846.80127515458 3.9822953 7355.5728
+26847.80127520207 3.9823742 7356.1636
+26848.80127524957 3.9824922 7355.1797
+26849.80127529707 3.9824922 7355.9663
+26850.80127534457 3.9826102 7356.3604
+26851.80127539206 3.9826498 7355.9663
+26852.80127543956 3.9827285 7356.5571
+26853.80127548706 3.9827285 7356.1636
+26854.80127553456 3.9828858 7355.9663
+26855.80127558205 3.9829254 7356.3604
+26856.80127562955 3.9830434 7356.5571
+26857.80127567705 3.9830828 7356.3604
+26858.80127572455 3.9831614 7356.9502
+26859.80127577204 3.9831221 7355.9663
+26860.80127581954 3.983319 7356.1636
+26861.80127586704 3.9832797 7355.5728
+26862.80127591453 3.9833584 7356.3604
+26863.80127596203 3.9834764 7356.3604
+26864.80127600953 3.9834371 7355.7695
+26865.80127605703 3.9835947 7355.5728
+26866.80127610452 3.9835947 7356.5571
+26867.80127615202 3.9837127 7356.1636
+26868.80127619952 3.9838703 7356.5571
+26869.80127624702 3.9839096 7356.3604
+26870.80127629451 3.9839883 7355.9663
+26871.80127634201 3.9840276 7355.9663
+26872.80127638951 3.9841456 7355.7695
+26873.80127643701 3.9841063 7355.5728
+26874.8012764845 3.9841852 7355.9663
+26875.801276532 3.9843426 7356.1636
+26876.8012765795 3.9844213 7355.1797
+26877.801276627 3.9844606 7356.1636
+26878.80127667449 3.9845002 7356.5571
+26879.80127672199 3.9846575 7355.5728
+26880.80127676949 3.9846575 7355.9663
+26881.80127681699 3.9846575 7355.9663
+26882.80127686448 3.9848545 7355.3765
+26883.80127691198 3.9849331 7355.9663
+26884.80127695948 3.9850512 7356.1636
+26885.80127700698 3.9851301 7355.7695
+26886.80127705447 3.9852087 7355.9663
+26887.80127710197 3.9853268 7355.9663
+26888.80127714947 3.9854057 7355.9663
+26889.80127719697 3.9854844 7356.1636
+26890.80127724446 3.9855237 7356.3604
+26891.80127729196 3.9855237 7356.5571
+26892.80127733946 3.9856811 7355.7695
+26893.80127738696 3.98576 7355.9663
+26894.80127743445 3.9859173 7355.7695
+26895.80127748195 3.9857993 7355.5728
+26896.80127752945 3.9859173 7355.7695
+26897.80127757695 3.9860356 7356.1636
+26898.80127762444 3.9860749 7355.9663
+26899.80127767194 3.9860356 7355.9663
+26900.80127771944 3.986311 7356.3604
+26901.80127776694 3.986311 7355.3765
+26902.80127781443 3.9862323 7355.9663
+26903.80127786193 3.9864686 7355.9663
+26904.80127790943 3.9865472 7356.5571
+26905.80127795693 3.9866261 7356.1636
+26906.80127800442 3.9867048 7356.1636
+26907.80127805192 3.9868228 7356.5571
+26908.80127809942 3.9868228 7356.7539
+26909.80127814692 3.9868622 7355.3765
+26910.80127819441 3.9869804 7356.3604
+26911.80127824191 3.9870198 7355.9663
+26912.80127828941 3.9871378 7355.7695
+26913.8012783369 3.9870591 7355.9663
+26914.8012783844 3.9872561 7356.5571
+26915.8012784319 3.9872561 7356.9502
+26916.8012784794 3.9874134 7356.1636
+26917.80127852689 3.9874527 7355.7695
+26918.80127857439 3.987571 7355.7695
+26919.80127862189 3.9876103 7355.7695
+26920.80127866939 3.987689 7355.9663
+26921.80127871688 3.9877677 7355.9663
+26922.80127876438 3.9878464 7356.7539
+26923.80127881188 3.988004 7355.9663
+26924.80127885938 3.9880433 7355.3765
+26925.80127890687 3.988122 7356.5571
+26926.80127895437 3.9881613 7355.1797
+26927.80127900187 3.9882009 7356.7539
+26928.80127904937 3.9883189 7355.9663
+26929.80127909686 3.9883583 7355.7695
+26930.80127914436 3.9884765 7355.3765
+26931.80127919186 3.9884765 7355.5728
+26932.80127923936 3.9885159 7356.3604
+26933.80127928685 3.9886732 7356.1636
+26934.80127933435 3.9887125 7355.5728
+26935.80127938185 3.9887915 7355.7695
+26936.80127942935 3.9889488 7355.7695
+26937.80127947684 3.9889095 7355.5728
+26938.80127952434 3.9890275 7355.7695
+26939.80127957184 3.9892244 7356.5571
+26940.80127961934 3.9892244 7355.9663
+26941.80127966683 3.9894607 7356.1636
+26942.80127971433 3.9893425 7356.3604
+26943.80127976183 3.9894214 7356.9502
+26944.80127980933 3.9895 7355.9663
+26945.80127985682 3.9895 7356.1636
+26946.80127990432 3.9897363 7355.5728
+26947.80127995182 3.9897363 7356.1636
+26948.80127999932 3.9898543 7356.3604
+26949.80128004681 3.9900117 7355.9663
+26950.80128009431 3.9900117 7356.9502
+26951.80128014181 3.9900513 7355.9663
+26952.80128018931 3.9902873 7355.3765
+26953.8012802368 3.9902873 7355.9663
+26954.8012802843 3.9902873 7355.7695
+26955.8012803318 3.9904842 7356.1636
+26956.8012803793 3.9904842 7355.3765
+26957.80128042679 3.9906023 7355.9663
+26958.80128047429 3.9904842 7356.1636
+26959.80128052179 3.9907598 7355.7695
+26960.80128056929 3.9907598 7356.5571
+26961.80128061678 3.9907205 7356.1636
+26962.80128066428 3.9909568 7355.9663
+26963.80128071178 3.9907992 7355.3765
+26964.80128075928 3.9910355 7355.7695
+26965.80128080677 3.9911141 7355.7695
+26966.80128085427 3.9911535 7356.1636
+26967.80128090177 3.9911535 7355.5728
+26968.80128094926 3.9912717 7354.5889
+26969.80128099676 3.9912717 7356.3604
+26970.80128104426 3.9912717 7356.3604
+26971.80128109176 3.9913898 7355.9663
+26972.80128113925 3.9914684 7355.9663
+26973.80128118675 3.991626 7356.1636
+26974.80128123425 3.9916654 7356.1636
+26975.80128128175 3.9917834 7356.1636
+26976.80128132924 3.9917047 7355.9663
+26977.80128137674 3.9918623 7355.9663
+26978.80128142424 3.991941 7356.3604
+26979.80128147174 3.991941 7356.7539
+26980.80128151923 3.9920197 7356.3604
+26981.80128156673 3.9920983 7355.3765
+26982.80128161423 3.9922559 7356.1636
+26983.80128166173 3.9923739 7355.5728
+26984.80128170922 3.9923739 7356.5571
+26985.80128175672 3.9924526 7356.1636
+26986.80128180422 3.9925709 7356.3604
+26987.80128185172 3.9925315 7355.7695
+26988.80128189921 3.9926889 7356.3604
+26989.80128194671 3.9926889 7356.3604
+26990.80128199421 3.9928465 7356.7539
+26991.80128204171 3.9928858 7355.1797
+26992.8012820892 3.9928465 7355.7695
+26993.8012821367 3.9930038 7355.5728
+26994.8012821842 3.9930825 7355.5728
+26995.8012822317 3.9932008 7356.7539
+26996.80128227919 3.9933581 7356.1636
+26997.80128232669 3.9933581 7356.1636
+26998.80128237419 3.9933975 7355.5728
+26999.80128242169 3.9933581 7356.1636
+27000.80128246918 3.9934764 7355.7695
+27001.80128251668 3.9935157 7356.5571
+27002.80128256418 3.9936731 7355.9663
+27003.80128261168 3.9936731 7355.9663
+27004.80128265917 3.9938307 7355.1797
+27005.80128270667 3.99387 7355.9663
+27006.80128275417 3.993988 7356.9502
+27007.80128280167 3.994067 7356.3604
+27008.80128284916 3.9941063 7356.3604
+27009.80128289666 3.9941456 7355.9663
+27010.80128294416 3.9942636 7356.3604
+27011.80128299166 3.9942636 7356.1636
+27012.80128303915 3.994303 7355.5728
+27013.80128308665 3.9943426 7355.5728
+27014.80128313415 3.9945786 7356.3604
+27015.80128318165 3.9946575 7356.3604
+27016.80128322914 3.9946969 7356.5571
+27017.80128327664 3.9948149 7355.9663
+27018.80128332414 3.9948542 7355.7695
+27019.80128337163 3.9948936 7355.5728
+27020.80128341913 3.9949725 7355.5728
+27021.80128346663 3.9950905 7355.7695
+27022.80128351413 3.9950118 7355.3765
+27023.80128356162 3.9952478 7355.7695
+27024.80128360912 3.9952085 7356.7539
+27025.80128365662 3.9952478 7356.3604
+27026.80128370412 3.9954448 7356.3604
+27027.80128375161 3.9954841 7354.9824
+27028.80128379911 3.995563 7355.5728
+27029.80128384661 3.995563 7355.9663
+27030.80128389411 3.9956417 7355.9663
+27031.8012839416 3.9957991 7355.7695
+27032.8012839891 3.9958384 7355.9663
+27033.8012840366 3.995996 7356.5571
+27034.8012840841 3.9960747 7355.5728
+27035.80128413159 3.9961929 7356.1636
+27036.80128417909 3.9962323 7355.7695
+27037.80128422659 3.9962323 7355.9663
+27038.80128427409 3.9963503 7355.9663
+27039.80128432158 3.996429 7356.7539
+27040.80128436908 3.9964683 7355.9663
+27041.80128441658 3.9965866 7355.3765
+27042.80128446408 3.9965472 7355.5728
+27043.80128451157 3.9966652 7356.7539
+27044.80128455907 3.9967439 7355.9663
+27045.80128460657 3.9968228 7355.1797
+27046.80128465407 3.9967833 7355.5728
+27047.80128470156 3.9969802 7355.7695
+27048.80128474906 3.9969802 7356.3604
+27049.80128479656 3.9970589 7355.5728
+27050.80128484406 3.9969802 7355.5728
+27051.80128489155 3.9970982 7356.1636
+27052.80128493905 3.9972165 7355.3765
+27053.80128498655 3.9973345 7356.1636
+27054.80128503405 3.9974527 7356.1636
+27055.80128508154 3.9974527 7356.3604
+27056.80128512904 3.9975314 7355.5728
+27057.80128517654 3.9976888 7355.5728
+27058.80128522404 3.9976101 7355.9663
+27059.80128527153 3.9976888 7356.5571
+27060.80128531903 3.9978857 7355.7695
+27061.80128536653 3.9978464 7356.1636
+27062.80128541403 3.997925 7355.7695
+27063.80128546152 3.9980433 7355.9663
+27064.80128550902 3.9980826 7355.7695
+27065.80128555652 3.998122 7355.9663
+27066.80128560402 3.9981613 7356.1636
+27067.80128565151 3.9983582 7355.7695
+27068.80128569901 3.9984369 7355.3765
+27069.80128574651 3.9983976 7356.3604
+27070.801285794 3.9985156 7355.9663
+27071.8012858415 3.9986336 7355.3765
+27072.801285889 3.9987912 7355.7695
+27073.8012859365 3.9987912 7356.1636
+27074.80128598399 3.9988699 7355.9663
+27075.80128603149 3.9987912 7356.3604
+27076.80128607899 3.9990275 7355.5728
+27077.80128612649 3.9989486 7355.9663
+27078.80128617398 3.9992638 7356.5571
+27079.80128622148 3.9992638 7355.9663
+27080.80128626898 3.9994211 7355.1797
+27081.80128631648 3.9993818 7355.7695
+27082.80128636397 3.9993818 7354.9824
+27083.80128641147 3.9994998 7355.9663
+27084.80128645897 3.9996181 7356.3604
+27085.80128650647 3.9996967 7356.1636
+27086.80128655396 3.9997361 7355.7695
+27087.80128660146 3.9998541 7355.3765
+27088.80128664896 3.999933 7355.1797
+27089.80128669646 3.999933 7355.9663
+27090.80128674395 4.000051 7355.7695
+27091.80128679145 4.0001688 7356.5571
+27092.80128683895 4.000248 7356.5571
+27093.80128688645 4.000248 7356.1636
+27094.80128693394 4.0003657 7356.5571
+27095.80128698144 4.0004053 7356.3604
+27096.80128702894 4.000484 7356.1636
+27097.80128707644 4.000484 7356.5571
+27098.80128712393 4.0005627 7356.1636
+27099.80128717143 4.0006413 7356.7539
+27100.80128721893 4.0007596 7355.9663
+27101.80128726643 4.0008779 7356.3604
+27102.80128731392 4.0008383 7355.9663
+27103.80128736142 4.0009565 7354.9824
+27104.80128740892 4.0009956 7356.7539
+27105.80128745642 4.0009956 7355.5728
+27106.80128750391 4.0010743 7355.9663
+27107.80128755141 4.0011926 7356.3604
+27108.80128759891 4.0012712 7355.7695
+27109.80128764641 4.0012321 7355.7695
+27110.8012876939 4.0013895 7356.3604
+27111.8012877414 4.0015078 7355.9663
+27112.8012877889 4.0015469 7357.1475
+27113.8012878364 4.0016651 7355.5728
+27114.80128788389 4.0016651 7356.1636
+27115.80128793139 4.001862 7355.7695
+27116.80128797889 4.0018225 7356.7539
+27117.80128802639 4.001862 7356.1636
+27118.80128807388 4.0019798 7356.1636
+27119.80128812138 4.001862 7355.3765
+27120.80128816888 4.0020194 7356.1636
+27121.80128821637 4.0021768 7356.7539
+27122.80128826387 4.0022554 7356.1636
+27123.80128831137 4.002295 7356.3604
+27124.80128835887 4.0023737 7355.9663
+27125.80128840636 4.0024133 7356.5571
+27126.80128845386 4.0025311 7356.1636
+27127.80128850136 4.0026889 7356.3604
+27128.80128854886 4.0025706 7356.7539
+27129.80128859635 4.0026097 7356.3604
+27130.80128864385 4.0026493 7356.3604
+27131.80128869135 4.0027676 7356.5571
+27132.80128873885 4.0028462 7355.7695
+27133.80128878634 4.0029249 7356.5571
+27134.80128883384 4.0030432 7355.9663
+27135.80128888134 4.0030432 7356.1636
+27136.80128892884 4.003161 7355.7695
+27137.80128897633 4.0032396 7355.3765
+27138.80128902383 4.0032396 7355.7695
+27139.80128907133 4.0032792 7356.1636
+27140.80128911883 4.0033579 7356.3604
+27141.80128916632 4.0033975 7355.5728
+27142.80128921382 4.0035548 7356.1636
+27143.80128926132 4.0036335 7355.5728
+27144.80128930882 4.0036731 7355.7695
+27145.80128935631 4.0037909 7355.7695
+27146.80128940381 4.0039091 7356.3604
+27147.80128945131 4.0039091 7355.9663
+27148.80128949881 4.004106 7355.7695
+27149.8012895463 4.0041451 7356.1636
+27150.8012895938 4.0041451 7355.1797
+27151.8012896413 4.0042243 7355.9663
+27152.8012896888 4.004303 7356.1636
+27153.80128973629 4.0043817 7355.3765
+27154.80128978379 4.004539 7356.3604
+27155.80128983129 4.0046573 7356.7539
+27156.80128987879 4.0046177 7356.1636
+27157.80128992628 4.004775 7356.3604
+27158.80128997378 4.0048542 7355.9663
+27159.80129002128 4.0049329 7355.7695
+27160.80129006878 4.0048933 7356.1636
+27161.80129011627 4.0050507 7355.7695
+27162.80129016377 4.0050507 7355.9663
+27163.80129021127 4.0050902 7355.5728
+27164.80129025877 4.0052872 7356.1636
+27165.80129030626 4.0052085 7356.5571
+27166.80129035376 4.0053658 7356.1636
+27167.80129040126 4.0054445 7356.3604
+27168.80129044876 4.0055628 7356.1636
+27169.80129049625 4.0054445 7355.7695
+27170.80129054375 4.0056019 7356.7539
+27171.80129059125 4.0056806 7355.5728
+27172.80129063874 4.0058384 7357.1475
+27173.80129068624 4.0058384 7355.5728
+27174.80129073374 4.0059562 7355.5728
+27175.80129078124 4.0060349 7356.7539
+27176.80129082873 4.0060744 7355.3765
+27177.80129087623 4.0062318 7356.7539
+27178.80129092373 4.0061531 7355.7695
+27179.80129097123 4.0063896 7355.3765
+27180.80129101872 4.00635 7356.1636
+27181.80129106622 4.006547 7355.7695
+27182.80129111372 4.006547 7356.7539
+27183.80129116122 4.0066257 7356.1636
+27184.80129120871 4.0066652 7356.1636
+27185.80129125621 4.0068617 7355.3765
+27186.80129130371 4.006783 7355.3765
+27187.80129135121 4.0069013 7356.7539
+27188.8012913987 4.0069013 7356.1636
+27189.8012914462 4.0070982 7356.3604
+27190.8012914937 4.0070982 7356.3604
+27191.8012915412 4.0072556 7355.7695
+27192.80129158869 4.0073738 7355.7695
+27193.80129163619 4.0074525 7355.5728
+27194.80129168369 4.0075312 7356.5571
+27195.80129173119 4.0075703 7355.7695
+27196.80129177868 4.0077672 7356.3604
+27197.80129182618 4.0078459 7356.1636
+27198.80129187368 4.0078459 7356.3604
+27199.80129192118 4.0078459 7356.1636
+27200.80129196867 4.0079641 7355.5728
+27201.80129201617 4.0080428 7356.3604
+27202.80129206367 4.0081215 7356.1636
+27203.80129211117 4.0081611 7355.7695
+27204.80129215866 4.0082793 7357.1475
+27205.80129220616 4.008358 7356.5571
+27206.80129225366 4.0083184 7357.3442
+27207.80129230116 4.0084367 7356.7539
+27208.80129234865 4.0085549 7355.7695
+27209.80129239615 4.0086336 7355.9663
+27210.80129244365 4.0086727 7355.5728
+27211.80129249115 4.0087123 7356.3604
+27212.80129253864 4.008791 7355.9663
+27213.80129258614 4.0089092 7355.5728
+27214.80129263364 4.0089879 7355.7695
+27215.80129268114 4.009027 7354.9824
+27216.80129272863 4.009027 7356.3604
+27217.80129277613 4.0091453 7355.9663
+27218.80129282363 4.0091057 7356.1636
+27219.80129287113 4.0092635 7355.5728
+27220.80129291862 4.0093422 7355.5728
+27221.80129296612 4.0094209 7355.3765
+27222.80129301362 4.0094604 7356.3604
+27223.80129306111 4.0094604 7355.5728
+27224.80129310861 4.0095391 7356.3604
+27225.80129315611 4.0096965 7355.9663
+27226.80129320361 4.0097356 7355.5728
+27227.8012932511 4.0097752 7356.1636
+27228.8012932986 4.0098934 7354.9824
+27229.8012933461 4.0098934 7355.7695
+27230.8012933936 4.0100508 7356.3604
+27231.80129344109 4.0101295 7356.3604
+27232.80129348859 4.0101295 7355.7695
+27233.80129353609 4.0102081 7354.9824
+27234.80129358359 4.0102477 7355.9663
+27235.80129363108 4.010366 7355.9663
+27236.80129367858 4.0104446 7356.1636
+27237.80129372608 4.0104446 7356.1636
+27238.80129377358 4.0105624 7355.5728
+27239.80129382107 4.0106411 7356.3604
+27240.80129386857 4.0107203 7355.7695
+27241.80129391607 4.0107594 7355.7695
+27242.80129396357 4.0108776 7355.9663
+27243.80129401106 4.0109959 7355.5728
+27244.80129405856 4.011035 7354.9824
+27245.80129410606 4.0110745 7356.5571
+27246.80129415356 4.0111136 7355.9663
+27247.80129420105 4.0111923 7356.9502
+27248.80129424855 4.0113106 7355.7695
+27249.80129429605 4.0113893 7356.1636
+27250.80129434355 4.0114288 7356.1636
+27251.80129439104 4.0114679 7355.3765
+27252.80129443854 4.0115466 7356.3604
+27253.80129448604 4.0115075 7356.5571
+27254.80129453354 4.0117831 7355.3765
+27255.80129458103 4.0117831 7355.9663
+27256.80129462853 4.0119405 7355.9663
+27257.80129467603 4.0118618 7355.9663
+27258.80129472353 4.0120192 7355.9663
+27259.80129477102 4.0121374 7355.5728
+27260.80129481852 4.0120978 7356.3604
+27261.80129486602 4.0121765 7356.3604
+27262.80129491352 4.0122948 7355.9663
+27263.80129496101 4.0124917 7355.7695
+27264.80129500851 4.012413 7355.5728
+27265.80129505601 4.01261 7356.5571
+27266.80129510351 4.0126491 7355.5728
+27267.801295151 4.0126886 7355.9663
+27268.8012951985 4.0127673 7356.1636
+27269.801295246 4.012846 7356.3604
+27270.8012952935 4.0126886 7356.3604
+27271.80129534099 4.0128856 7356.3604
+27272.80129538849 4.0130429 7356.9502
+27273.80129543599 4.0130429 7356.1636
+27274.80129548348 4.0132003 7355.9663
+27275.80129553098 4.0132399 7355.7695
+27276.80129557848 4.0132003 7356.3604
+27277.80129562598 4.0134368 7356.1636
+27278.80129567347 4.0134368 7354.9824
+27279.80129572097 4.0135546 7356.5571
+27280.80129576847 4.0135942 7356.7539
+27281.80129581597 4.0137119 7356.9502
+27282.80129586346 4.0137515 7355.7695
+27283.80129591096 4.0138698 7355.5728
+27284.80129595846 4.0139089 7356.5571
+27285.80129600596 4.0139875 7354.9824
+27286.80129605345 4.0140271 7355.5728
+27287.80129610095 4.0140667 7355.7695
+27288.80129614845 4.0141058 7355.7695
+27289.80129619595 4.0142632 7356.1636
+27290.80129624344 4.0142632 7356.3604
+27291.80129629094 4.014421 7355.1797
+27292.80129633844 4.0144601 7356.1636
+27293.80129638594 4.0144601 7356.7539
+27294.80129643343 4.0147753 7356.3604
+27295.80129648093 4.0146966 7356.7539
+27296.80129652843 4.0147357 7356.1636
+27297.80129657593 4.0148931 7355.9663
+27298.80129662342 4.014854 7355.7695
+27299.80129667092 4.0150113 7355.5728
+27300.80129671842 4.0151296 7355.9663
+27301.80129676592 4.0152082 7355.7695
+27302.80129681341 4.0152473 7356.1636
+27303.80129686091 4.0152869 7356.7539
+27304.80129690841 4.0153656 7355.7695
+27305.80129695591 4.0153656 7355.7695
+27306.8012970034 4.0155625 7355.7695
+27307.8012970509 4.0156021 7355.5728
+27308.8012970984 4.0156021 7354.9824
+27309.8012971459 4.0157199 7356.3604
+27310.80129719339 4.0158381 7355.5728
+27311.80129724089 4.0159564 7355.9663
+27312.80129728839 4.0160351 7356.3604
+27313.80129733589 4.0160742 7356.1636
+27314.80129738338 4.0160742 7355.7695
+27315.80129743088 4.0161924 7355.9663
+27316.80129747838 4.0163107 7354.9824
+27317.80129752588 4.0163498 7356.3604
+27318.80129757337 4.0163498 7355.3765
+27319.80129762087 4.016468 7355.9663
+27320.80129766837 4.016468 7355.9663
+27321.80129771587 4.0165863 7356.7539
+27322.80129776336 4.0166254 7356.1636
+27323.80129781086 4.0167828 7355.5728
+27324.80129785836 4.0167437 7355.7695
+27325.80129790585 4.0169406 7356.3604
+27326.80129795335 4.0169406 7355.7695
+27327.80129800085 4.0170193 7355.7695
+27328.80129804835 4.0171375 7355.7695
+27329.80129809584 4.0171375 7356.3604
+27330.80129814334 4.0172553 7355.5728
+27331.80129819084 4.017334 7355.9663
+27332.80129823834 4.017334 7355.7695
+27333.80129828583 4.0174127 7355.9663
+27334.80129833333 4.0174918 7356.1636
+27335.80129838083 4.0175705 7356.3604
+27336.80129842833 4.0176492 7356.1636
+27337.80129847582 4.0176883 7356.5571
+27338.80129852332 4.0177674 7356.1636
+27339.80129857082 4.0178852 7355.7695
+27340.80129861832 4.0178852 7356.1636
+27341.80129866581 4.0180035 7355.9663
+27342.80129871331 4.0180821 7356.7539
+27343.80129876081 4.0180821 7355.9663
+27344.80129880831 4.0181608 7355.1797
+27345.8012988558 4.0182791 7356.5571
+27346.8012989033 4.0183973 7356.5571
+27347.8012989508 4.0184364 7356.1636
+27348.8012989983 4.0184364 7355.5728
+27349.80129904579 4.0185547 7356.7539
+27350.80129909329 4.0186334 7356.3604
+27351.80129914079 4.0186334 7355.9663
+27352.80129918829 4.018712 7356.1636
+27353.80129923578 4.0188694 7355.9663
+27354.80129928328 4.0187907 7356.5571
+27355.80129933078 4.0189481 7355.9663
+27356.80129937828 4.0188694 7356.7539
+27357.80129942577 4.0190663 7355.9663
+27358.80129947327 4.0191846 7355.9663
+27359.80129952077 4.019145 7356.3604
+27360.80129956827 4.0191846 7355.3765
+27361.80129961576 4.0194206 7355.7695
+27362.80129966326 4.0194602 7355.5728
+27363.80129971076 4.0194602 7356.7539
+27364.80129975826 4.0194993 7355.5728
+27365.80129980575 4.019578 7356.3604
+27366.80129985325 4.0196571 7355.5728
+27367.80129990075 4.0197358 7356.5571
+27368.80129994825 4.0197749 7356.5571
+27369.80129999574 4.0198932 7356.3604
+27370.80130004324 4.0199327 7356.3604
+27371.80130009074 4.0199718 7356.3604
+27372.80130013824 4.0200901 7356.5571
+27373.80130018573 4.0201688 7356.3604
+27374.80130023323 4.0202475 7356.3604
+27375.80130028073 4.0202475 7356.3604
+27376.80130032822 4.0203261 7355.3765
+27377.80130037572 4.0204444 7355.5728
+27378.80130042322 4.0204444 7355.9663
+27379.80130047072 4.0205626 7356.5571
+27380.80130051821 4.02072 7356.9502
+27381.80130056571 4.02072 7355.9663
+27382.80130061321 4.0207591 7355.5728
+27383.80130066071 4.0208774 7355.7695
+27384.8013007082 4.0208383 7355.7695
+27385.8013007557 4.0210347 7356.7539
+27386.8013008032 4.0210743 7356.1636
+27387.8013008507 4.0211134 7355.9663
+27388.80130089819 4.0211926 7355.5728
+27389.80130094569 4.0212712 7355.9663
+27390.80130099319 4.0213103 7355.9663
+27391.80130104069 4.0214286 7355.9663
+27392.80130108818 4.0215468 7356.7539
+27393.80130113568 4.0215859 7356.5571
+27394.80130118318 4.0217433 7356.3604
+27395.80130123068 4.0216646 7355.5728
+27396.80130127817 4.0217433 7356.3604
+27397.80130132567 4.0220189 7356.5571
+27398.80130137317 4.0219798 7356.1636
+27399.80130142067 4.0221372 7355.7695
+27400.80130146816 4.0221372 7356.3604
+27401.80130151566 4.0222158 7356.1636
+27402.80130156316 4.0223341 7356.1636
+27403.80130161066 4.0223341 7356.1636
+27404.80130165815 4.0224915 7356.7539
+27405.80130170565 4.0225701 7356.1636
+27406.80130175315 4.0226884 7355.7695
+27407.80130180065 4.0226884 7356.3604
+27408.80130184814 4.0226884 7356.3604
+27409.80130189564 4.022728 7356.1636
+27410.80130194314 4.0227671 7356.5571
+27411.80130199064 4.0229244 7355.7695
+27412.80130203813 4.0230823 7355.9663
+27413.80130208563 4.0230823 7356.3604
+27414.80130213313 4.0231609 7355.7695
+27415.80130218063 4.0232787 7356.3604
+27416.80130222812 4.0233579 7356.5571
+27417.80130227562 4.0234365 7356.1636
+27418.80130232312 4.0235543 7356.3604
+27419.80130237062 4.0235939 7356.1636
+27420.80130241811 4.0236335 7356.1636
+27421.80130246561 4.0237513 7356.3604
+27422.80130251311 4.0238299 7355.7695
+27423.80130256061 4.0237908 7355.5728
+27424.8013026081 4.0238299 7356.3604
+27425.8013026556 4.0239878 7356.3604
+27426.8013027031 4.0241055 7356.1636
+27427.80130275059 4.0241451 7356.7539
+27428.80130279809 4.0242634 7355.9663
+27429.80130284559 4.0243421 7356.1636
+27430.80130289309 4.0244207 7356.3604
+27431.80130294058 4.0244994 7356.3604
+27432.80130298808 4.024539 7355.3765
+27433.80130303558 4.0246568 7355.7695
+27434.80130308308 4.024775 7355.7695
+27435.80130313057 4.0246964 7356.1636
+27436.80130317807 4.0248933 7354.9824
+27437.80130322557 4.024972 7355.7695
+27438.80130327307 4.0251689 7355.9663
+27439.80130332056 4.0252476 7356.5571
+27440.80130336806 4.0252867 7356.5571
+27441.80130341556 4.025208 7356.3604
+27442.80130346306 4.0253654 7355.7695
+27443.80130351055 4.0254049 7355.9663
+27444.80130355805 4.0255623 7355.7695
+27445.80130360555 4.0256019 7355.7695
+27446.80130365305 4.0256019 7355.7695
+27447.80130370054 4.0257988 7356.5571
+27448.80130374804 4.0257988 7356.1636
+27449.80130379554 4.0259166 7356.1636
+27450.80130384304 4.0259953 7356.7539
+27451.80130389053 4.0260744 7356.3604
+27452.80130393803 4.0260348 7355.3765
+27453.80130398553 4.0262709 7356.1636
+27454.80130403303 4.0262709 7356.1636
+27455.80130408052 4.0263495 7356.9502
+27456.80130412802 4.0263891 7355.7695
+27457.80130417552 4.0264678 7356.3604
+27458.80130422302 4.0265861 7356.3604
+27459.80130427051 4.0266252 7355.3765
+27460.80130431801 4.0265861 7356.3604
+27461.80130436551 4.026783 7355.9663
+27462.80130441301 4.0268617 7356.3604
+27463.8013044605 4.0268617 7355.5728
+27464.801304508 4.027019 7356.7539
+27465.8013045555 4.0270586 7356.1636
+27466.801304603 4.0271764 7356.1636
+27467.80130465049 4.027216 7356.5571
+27468.80130469799 4.0273342 7355.9663
+27469.80130474549 4.0274129 7356.1636
+27470.80130479299 4.027452 7355.1797
+27471.80130484048 4.0276093 7355.9663
+27472.80130488798 4.0274916 7355.5728
+27473.80130493548 4.0277276 7355.9663
+27474.80130498298 4.0278459 7355.5728
+27475.80130503047 4.0278459 7355.5728
+27476.80130507797 4.027885 7355.1797
+27477.80130512547 4.0280428 7356.3604
+27478.80130517296 4.0280819 7355.9663
+27479.80130522046 4.0282001 7355.5728
+27480.80130526796 4.0282397 7355.9663
+27481.80130531546 4.0283184 7356.3604
+27482.80130536295 4.0284362 7356.9502
+27483.80130541045 4.0283971 7355.5728
+27484.80130545795 4.028594 7355.7695
+27485.80130550545 4.0286727 7356.3604
+27486.80130555294 4.0287514 7355.7695
+27487.80130560044 4.0289087 7356.5571
+27488.80130564794 4.0288696 7356.1636
+27489.80130569544 4.0289874 7355.9663
+27490.80130574293 4.0289483 7355.9663
+27491.80130579043 4.0291448 7355.9663
+27492.80130583793 4.029263 7356.3604
+27493.80130588543 4.0293026 7356.9502
+27494.80130593292 4.0293417 7356.1636
+27495.80130598042 4.0294995 7355.3765
+27496.80130602792 4.0295782 7355.1797
+27497.80130607542 4.0296569 7355.7695
+27498.80130612291 4.029696 7356.3604
+27499.80130617041 4.0297356 7356.5571
+27500.80130621791 4.0298538 7355.3765
+27501.80130626541 4.0299325 7355.9663
+27502.8013063129 4.0299325 7355.7695
+27503.8013063604 4.0300899 7355.9663
+27504.8013064079 4.0300112 7355.7695
+27505.8013064554 4.0301294 7356.1636
+27506.80130650289 4.0303259 7355.5728
+27507.80130655039 4.0302868 7355.1797
+27508.80130659789 4.030405 7355.3765
+27509.80130664539 4.0304441 7355.5728
+27510.80130669288 4.0305228 7357.1475
+27511.80130674038 4.0306411 7356.5571
+27512.80130678788 4.0307593 7355.7695
+27513.80130683538 4.0307593 7355.9663
+27514.80130688287 4.0308771 7355.7695
+27515.80130693037 4.0309167 7356.9502
+27516.80130697787 4.0308771 7355.7695
+27517.80130702537 4.0311527 7355.7695
+27518.80130707286 4.0311527 7356.7539
+27519.80130712036 4.0312314 7356.1636
+27520.80130716786 4.031271 7355.5728
+27521.80130721536 4.031507 7356.1636
+27522.80130726285 4.0315466 7356.1636
+27523.80130731035 4.0314679 7355.7695
+27524.80130735785 4.0316648 7355.1797
+27525.80130740535 4.0317435 7356.1636
+27526.80130745284 4.0318222 7356.1636
+27527.80130750034 4.0317826 7356.1636
+27528.80130754784 4.0319009 7356.1636
+27529.80130759533 4.0319009 7356.3604
+27530.80130764283 4.0319796 7356.5571
+27531.80130769033 4.0320191 7355.3765
+27532.80130773783 4.0320978 7356.7539
+27533.80130778532 4.0322156 7355.9663
+27534.80130783282 4.0322552 7356.3604
+27535.80130788032 4.0323339 7355.3765
+27536.80130792782 4.0324912 7355.9663
+27537.80130797531 4.0325308 7356.7539
+27538.80130802281 4.0325308 7355.5728
+27539.80130807031 4.0327277 7356.5571
+27540.80130811781 4.0326881 7356.5571
+27541.8013081653 4.0327277 7356.3604
+27542.8013082128 4.0328455 7355.5728
+27543.8013082603 4.0329638 7356.3604
+27544.8013083078 4.0331211 7356.5571
+27545.80130835529 4.033082 7356.3604
+27546.80130840279 4.0331607 7355.7695
+27547.80130845029 4.0332394 7356.1636
+27548.80130849779 4.033318 7355.7695
+27549.80130854528 4.033318 7356.5571
+27550.80130859278 4.0333576 7355.9663
+27551.80130864028 4.0334363 7355.5728
+27552.80130868778 4.033515 7355.7695
+27553.80130873527 4.0335937 7355.9663
+27554.80130878277 4.0335937 7356.3604
+27555.80130883027 4.033751 7355.5728
+27556.80130887777 4.0337906 7355.7695
+27557.80130892526 4.0338302 7356.1636
+27558.80130897276 4.0339479 7356.5571
+27559.80130902026 4.0340662 7355.9663
+27560.80130906776 4.0341449 7355.9663
+27561.80130911525 4.0342236 7355.9663
+27562.80130916275 4.0343022 7355.9663
+27563.80130921025 4.0343809 7356.9502
+27564.80130925775 4.0344205 7356.5571
+27565.80130930524 4.0345387 7356.3604
+27566.80130935274 4.0344992 7355.9663
+27567.80130940024 4.0346565 7355.7695
+27568.80130944774 4.0346174 7355.5728
+27569.80130949523 4.0347748 7355.9663
+27570.80130954273 4.0348535 7356.5571
+27571.80130959023 4.0350504 7356.1636
+27572.80130963773 4.0350504 7355.3765
+27573.80130968522 4.0350504 7356.3604
+27574.80130973272 4.0351686 7356.3604
+27575.80130978022 4.0351291 7354.9824
+27576.80130982772 4.0352473 7355.9663
+27577.80130987521 4.0353656 7356.3604
+27578.80130992271 4.035326 7355.5728
+27579.80130997021 4.0355229 7355.7695
+27580.80131001771 4.0357199 7356.1636
+27581.8013100652 4.0356016 7356.3604
+27582.8013101127 4.0358377 7355.9663
+27583.8013101602 4.0358377 7355.3765
+27584.80131020769 4.0358772 7355.9663
+27585.80131025519 4.0359559 7355.7695
+27586.80131030269 4.0360742 7355.5728
+27587.80131035019 4.0362315 7355.9663
+27588.80131039768 4.0362315 7356.1636
+27589.80131044518 4.0363102 7356.7539
+27590.80131049268 4.0364285 7355.9663
+27591.80131054018 4.0364676 7356.7539
+27592.80131058767 4.0365858 7355.9663
+27593.80131063517 4.0365462 7355.1797
+27594.80131068267 4.0367041 7356.7539
+27595.80131073017 4.0368218 7354.9824
+27596.80131077766 4.0368614 7355.9663
+27597.80131082516 4.0369797 7355.7695
+27598.80131087266 4.0370584 7355.5728
+27599.80131092016 4.0370188 7356.3604
+27600.80131096765 4.0372553 7355.7695
+27601.80131101515 4.0372553 7355.9663
+27602.80131106265 4.0372944 7356.3604
+27603.80131111015 4.0374517 7355.9663
+27604.80131115764 4.0375309 7355.9663
+27605.80131120514 4.03757 7356.1636
+27606.80131125264 4.0376883 7356.3604
+27607.80131130014 4.0377274 7355.9663
+27608.80131134763 4.0378065 7355.9663
+27609.80131139513 4.0378456 7356.1636
+27610.80131144263 4.0378852 7355.1797
+27611.80131149013 4.0380816 7356.1636
+27612.80131153762 4.0380816 7355.5728
+27613.80131158512 4.0381999 7355.9663
+27614.80131163262 4.0381999 7356.3604
+27615.80131168012 4.0383182 7355.9663
+27616.80131172761 4.0383968 7356.7539
+27617.80131177511 4.0384755 7356.1636
+27618.80131182261 4.0385938 7355.5728
+27619.80131187011 4.0386724 7355.9663
+27620.8013119176 4.0387511 7356.1636
+27621.8013119651 4.0389085 7355.3765
+27622.8013120126 4.0388694 7355.7695
+27623.8013120601 4.0389872 7356.3604
+27624.80131210759 4.0390267 7355.5728
+27625.80131215509 4.0390663 7355.3765
+27626.80131220259 4.039145 7356.1636
+27627.80131225009 4.0391841 7355.9663
+27628.80131229758 4.0393419 7355.9663
+27629.80131234508 4.0394597 7355.7695
+27630.80131239258 4.0394206 7355.5728
+27631.80131244008 4.0394597 7356.5571
+27632.80131248757 4.0394993 7355.5728
+27633.80131253507 4.0396962 7356.1636
+27634.80131258257 4.0397353 7356.3604
+27635.80131263006 4.0398536 7355.3765
+27636.80131267756 4.0398927 7355.7695
+27637.80131272506 4.0400505 7356.5571
+27638.80131277256 4.0399323 7355.5728
+27639.80131282005 4.0401683 7356.9502
+27640.80131286755 4.0401683 7355.7695
+27641.80131291505 4.0404048 7356.3604
+27642.80131296255 4.0403652 7355.9663
+27643.80131301004 4.0404835 7356.1636
+27644.80131305754 4.0405226 7355.9663
+27645.80131310504 4.0406017 7356.1636
+27646.80131315254 4.0406408 7355.9663
+27647.80131320003 4.0407195 7355.9663
+27648.80131324753 4.0407591 7356.5571
+27649.80131329503 4.0407591 7356.1636
+27650.80131334253 4.0409164 7356.5571
+27651.80131339002 4.0410738 7355.9663
+27652.80131343752 4.0410738 7355.7695
+27653.80131348502 4.0411134 7355.1797
+27654.80131353252 4.0412316 7356.3604
+27655.80131358001 4.0413494 7355.5728
+27656.80131362751 4.041389 7356.1636
+27657.80131367501 4.0414281 7355.5728
+27658.80131372251 4.0414281 7355.9663
+27659.80131377 4.0414677 7356.1636
+27660.8013138175 4.041625 7356.3604
+27661.801313865 4.0416646 7356.1636
+27662.8013139125 4.041625 7355.9663
+27663.80131395999 4.041822 7355.9663
+27664.80131400749 4.0417824 7355.7695
+27665.80131405499 4.0419006 7356.3604
+27666.80131410249 4.042058 7355.9663
+27667.80131414998 4.0420976 7355.7695
+27668.80131419748 4.0421371 7356.1636
+27669.80131424498 4.0422158 7355.7695
+27670.80131429248 4.0422945 7355.7695
+27671.80131433997 4.0423732 7357.1475
+27672.80131438747 4.0423336 7356.1636
+27673.80131443497 4.0424914 7355.7695
+27674.80131448247 4.0425305 7355.5728
+27675.80131452996 4.0426488 7355.9663
+27676.80131457746 4.0426488 7355.7695
+27677.80131462496 4.0428061 7355.9663
+27678.80131467246 4.0428848 7356.1636
+27679.80131471995 4.0429635 7355.9663
+27680.80131476745 4.0430031 7356.1636
+27681.80131481495 4.0430427 7356.7539
+27682.80131486245 4.0430818 7355.7695
+27683.80131490994 4.0431604 7355.3765
+27684.80131495744 4.0432787 7355.9663
+27685.80131500494 4.0433574 7355.1797
+27686.80131505243 4.0433969 7355.9663
+27687.80131509993 4.0434756 7356.1636
+27688.80131514743 4.0435934 7355.9663
+27689.80131519493 4.0436726 7355.5728
+27690.80131524242 4.0436726 7356.3604
+27691.80131528992 4.0437117 7355.5728
+27692.80131533742 4.043869 7355.9663
+27693.80131538492 4.0439873 7355.7695
+27694.80131543241 4.0439482 7355.7695
+27695.80131547991 4.0441055 7356.5571
+27696.80131552741 4.0441446 7356.1636
+27697.80131557491 4.0443025 7355.9663
+27698.8013156224 4.0443025 7356.5571
+27699.8013156699 4.0443416 7356.1636
+27700.8013157174 4.0445385 7355.5728
+27701.8013157649 4.0445385 7355.9663
+27702.80131581239 4.0446959 7356.1636
+27703.80131585989 4.0445781 7356.5571
+27704.80131590739 4.0448141 7355.9663
+27705.80131595489 4.0448928 7356.1636
+27706.80131600238 4.0449324 7356.1636
+27707.80131604988 4.0449715 7356.9502
+27708.80131609738 4.0450501 7355.9663
+27709.80131614488 4.0452471 7356.3604
+27710.80131619237 4.0452471 7356.3604
+27711.80131623987 4.0453258 7355.3765
+27712.80131628737 4.0453258 7355.5728
+27713.80131633487 4.0454831 7356.1636
+27714.80131638236 4.0455227 7356.7539
+27715.80131642986 4.0455227 7355.3765
+27716.80131647736 4.0457196 7357.1475
+27717.80131652486 4.0457587 7356.1636
+27718.80131657235 4.0457983 7355.1797
+27719.80131661985 4.0458379 7355.7695
+27720.80131666735 4.0459166 7356.1636
+27721.80131671485 4.0459952 7355.5728
+27722.80131676234 4.0461526 7355.9663
+27723.80131680984 4.0461526 7355.9663
+27724.80131685734 4.0463099 7357.1475
+27725.80131690484 4.0463886 7356.3604
+27726.80131695233 4.0464282 7355.5728
+27727.80131699983 4.0464678 7355.9663
+27728.80131704733 4.0465465 7355.7695
+27729.80131709483 4.0466251 7355.9663
+27730.80131714232 4.0467038 7356.3604
+27731.80131718982 4.0468221 7355.9663
+27732.80131723732 4.0468221 7355.7695
+27733.80131728482 4.0468221 7355.5728
+27734.80131733231 4.0469794 7356.1636
+27735.80131737981 4.0470977 7355.7695
+27736.80131742731 4.0471368 7355.3765
+27737.8013174748 4.0471764 7355.5728
+27738.8013175223 4.0473337 7356.1636
+27739.8013175698 4.0473337 7355.7695
+27740.8013176173 4.0474911 7355.3765
+27741.80131766479 4.0475307 7355.9663
+27742.80131771229 4.0475307 7356.1636
+27743.80131775979 4.0477276 7355.9663
+27744.80131780729 4.0478063 7355.9663
+27745.80131785478 4.0478454 7355.9663
+27746.80131790228 4.0478454 7355.7695
+27747.80131794978 4.0480423 7355.7695
+27748.80131799728 4.048121 7355.1797
+27749.80131804477 4.0481606 7356.3604
+27750.80131809227 4.0484362 7356.5571
+27751.80131813977 4.0483575 7356.7539
+27752.80131818727 4.0484362 7356.1636
+27753.80131823476 4.0485148 7357.1475
+27754.80131828226 4.0486722 7355.5728
+27755.80131832976 4.0487509 7356.7539
+27756.80131837726 4.0488296 7355.7695
+27757.80131842475 4.0488691 7356.1636
+27758.80131847225 4.0489874 7355.9663
+27759.80131851975 4.0490265 7356.1636
+27760.80131856725 4.0491052 7356.1636
+27761.80131861474 4.049263 7356.5571
+27762.80131866224 4.049263 7356.1636
+27763.80131870974 4.0493808 7355.7695
+27764.80131875724 4.0494204 7356.7539
+27765.80131880473 4.0495777 7356.5571
+27766.80131885223 4.0496564 7356.1636
+27767.80131889973 4.049696 7356.1636
+27768.80131894723 4.0498533 7356.1636
+27769.80131899472 4.049932 7356.3604
+27770.80131904222 4.049932 7356.5571
+27771.80131908972 4.0501289 7356.5571
+27772.80131913722 4.0502076 7355.1797
+27773.80131918471 4.0502076 7354.9824
+27774.80131923221 4.0502076 7355.5728
+27775.80131927971 4.0502472 7355.5728
+27776.80131932721 4.0504441 7355.7695
+27777.8013193747 4.0504832 7356.3604
+27778.8013194222 4.0506015 7356.7539
+27779.8013194697 4.0506406 7355.7695
+27780.8013195172 4.0507588 7356.1636
+27781.80131956469 4.0508375 7356.5571
+27782.80131961219 4.0508771 7356.1636
+27783.80131965969 4.0509558 7356.5571
+27784.80131970719 4.0510345 7355.5728
+27785.80131975468 4.0511131 7355.9663
+27786.80131980218 4.0511527 7357.541
+27787.80131984968 4.0512705 7356.1636
+27788.80131989717 4.0513101 7356.3604
+27789.80131994467 4.0512705 7355.9663
+27790.80131999217 4.051507 7357.1475
+27791.80132003967 4.051507 7355.9663
+27792.80132008716 4.0515857 7356.1636
+27793.80132013466 4.0517039 7355.9663
+27794.80132018216 4.0519004 7355.7695
+27795.80132022966 4.0518613 7356.5571
+27796.80132027715 4.05194 7356.1636
+27797.80132032465 4.0519795 7356.7539
+27798.80132037215 4.0520186 7355.7695
+27799.80132041965 4.052176 7356.9502
+27800.80132046714 4.052176 7355.3765
+27801.80132051464 4.0522156 7356.3604
+27802.80132056214 4.0523338 7355.7695
+27803.80132060964 4.0523729 7355.9663
+27804.80132065713 4.0525699 7356.5571
+27805.80132070463 4.0525699 7355.9663
+27806.80132075213 4.0526881 7355.9663
+27807.80132079963 4.0526881 7356.3604
+27808.80132084712 4.0527668 7356.7539
+27809.80132089462 4.0529242 7356.9502
+27810.80132094212 4.0530424 7355.7695
+27811.80132098962 4.0530028 7356.1636
+27812.80132103711 4.0529637 7355.9663
+27813.80132108461 4.0531602 7355.7695
+27814.80132113211 4.0532393 7356.1636
+27815.80132117961 4.0533571 7355.9663
+27816.8013212271 4.0534754 7355.7695
+27817.8013212746 4.053515 7355.7695
+27818.8013213221 4.0536723 7355.7695
+27819.8013213696 4.053751 7355.5728
+27820.80132141709 4.053751 7355.9663
+27821.80132146459 4.0538692 7356.3604
+27822.80132151209 4.0539083 7355.7695
+27823.80132155959 4.0539479 7357.1475
+27824.80132160708 4.0541053 7355.7695
+27825.80132165458 4.0541053 7355.9663
+27826.80132170208 4.0542626 7355.9663
+27827.80132174958 4.05442 7356.7539
+27828.80132179707 4.05442 7356.3604
+27829.80132184457 4.0543809 7356.1636
+27830.80132189207 4.0545778 7355.9663
+27831.80132193957 4.0546956 7356.1636
+27832.80132198706 4.0547748 7355.9663
+27833.80132203456 4.0548534 7355.9663
+27834.80132208206 4.0549321 7356.1636
+27835.80132212956 4.0550108 7356.3604
+27836.80132217705 4.0550504 7355.9663
+27837.80132222455 4.0551682 7356.3604
+27838.80132227205 4.0552864 7356.3604
+27839.80132231954 4.0554438 7355.7695
+27840.80132236704 4.0553651 7356.3604
+27841.80132241454 4.0555224 7356.3604
+27842.80132246204 4.0555224 7356.1636
+27843.80132250953 4.0556803 7355.1797
+27844.80132255703 4.0557194 7355.5728
+27845.80132260453 4.0559163 7355.3765
+27846.80132265203 4.0559163 7355.9663
+27847.80132269952 4.055995 7355.7695
+27848.80132274702 4.0561523 7355.7695
+27849.80132279452 4.0561919 7355.9663
+27850.80132284202 4.0562706 7356.3604
+27851.80132288951 4.0563493 7356.1636
+27852.80132293701 4.0562706 7355.9663
+27853.80132298451 4.0565858 7355.7695
+27854.80132303201 4.0565462 7355.9663
+27855.8013230795 4.0567431 7356.7539
+27856.801323127 4.0568218 7355.9663
+27857.8013231745 4.0568609 7356.3604
+27858.801323222 4.0570188 7355.5728
+27859.80132326949 4.0570579 7355.3765
+27860.80132331699 4.0571365 7355.1797
+27861.80132336449 4.0572548 7355.9663
+27862.80132341199 4.0572157 7355.9663
+27863.80132345948 4.0572944 7356.5571
+27864.80132350698 4.0574121 7355.7695
+27865.80132355448 4.0574908 7355.9663
+27866.80132360198 4.0576091 7356.3604
+27867.80132364947 4.0576487 7355.9663
+27868.80132369697 4.057806 7356.5571
+27869.80132374447 4.057806 7356.1636
+27870.80132379197 4.0579243 7356.1636
+27871.80132383946 4.058042 7356.1636
+27872.80132388696 4.0580029 7355.9663
+27873.80132393446 4.0581212 7356.1636
+27874.80132398196 4.0582786 7356.1636
+27875.80132402945 4.0582786 7355.3765
+27876.80132407695 4.0584359 7355.7695
+27877.80132412445 4.0584359 7355.9663
+27878.80132417195 4.0586329 7356.5571
+27879.80132421944 4.0585542 7355.9663
+27880.80132426694 4.0587511 7356.1636
+27881.80132431444 4.0587115 7356.5571
+27882.80132436194 4.0588298 7355.5728
+27883.80132440943 4.0588689 7354.7856
+27884.80132445693 4.0587902 7355.9663
+27885.80132450443 4.0590262 7356.1636
+27886.80132455193 4.0590658 7355.1797
+27887.80132459942 4.0591445 7356.5571
+27888.80132464692 4.0593019 7356.3604
+27889.80132469442 4.059381 7356.3604
+27890.80132474191 4.0594597 7356.1636
+27891.80132478941 4.0594988 7355.9663
+27892.80132483691 4.0595775 7355.9663
+27893.80132488441 4.0596561 7356.1636
+27894.8013249319 4.0596561 7355.7695
+27895.8013249794 4.059814 7355.9663
+27896.8013250269 4.0598927 7355.9663
+27897.8013250744 4.0600109 7355.7695
+27898.80132512189 4.06005 7356.1636
+27899.80132516939 4.0601683 7355.3765
+27900.80132521689 4.0602469 7356.7539
+27901.80132526439 4.0603256 7356.3604
+27902.80132531188 4.060483 7355.9663
+27903.80132535938 4.0605226 7357.1475
+27904.80132540688 4.0606408 7356.5571
+27905.80132545438 4.0606408 7355.5728
+27906.80132550187 4.0607982 7355.9663
+27907.80132554937 4.0608768 7355.7695
+27908.80132559687 4.0609164 7354.9824
+27909.80132564437 4.0610342 7356.1636
+27910.80132569186 4.0611916 7355.1797
+27911.80132573936 4.0612707 7356.1636
+27912.80132578686 4.0613098 7356.1636
+27913.80132583436 4.0612311 7355.7695
+27914.80132588185 4.0614281 7355.9663
+27915.80132592935 4.0615067 7355.5728
+27916.80132597685 4.061625 7355.1797
+27917.80132602435 4.061625 7355.9663
+27918.80132607184 4.0617824 7356.3604
+27919.80132611934 4.0617824 7356.5571
+27920.80132616684 4.061861 7356.5571
+27921.80132621434 4.0619793 7355.9663
+27922.80132626183 4.062058 7356.1636
+27923.80132630933 4.0620971 7355.7695
+27924.80132635683 4.0621762 7356.1636
+27925.80132640433 4.0622549 7355.9663
+27926.80132645182 4.062294 7356.9502
+27927.80132649932 4.0623727 7356.3604
+27928.80132654682 4.0624909 7355.9663
+27929.80132659432 4.0626483 7355.3765
+27930.80132664181 4.0626879 7356.5571
+27931.80132668931 4.0626879 7355.9663
+27932.80132673681 4.0627666 7356.5571
+27933.80132678431 4.0628452 7355.5728
+27934.8013268318 4.0630026 7356.3604
+27935.8013268793 4.0630422 7356.5571
+27936.8013269268 4.0631208 7356.5571
+27937.8013269743 4.0632391 7356.7539
+27938.80132702179 4.0632391 7355.1797
+27939.80132706929 4.0633965 7356.5571
+27940.80132711679 4.0633965 7356.5571
+27941.80132716428 4.0634751 7356.3604
+27942.80132721178 4.0635934 7355.9663
+27943.80132725928 4.0636721 7355.7695
+27944.80132730678 4.0637903 7355.5728
+27945.80132735427 4.0638294 7355.7695
+27946.80132740177 4.063869 7356.7539
+27947.80132744927 4.0639477 7355.9663
+27948.80132749677 4.064105 7355.1797
+27949.80132754426 4.0640659 7356.3604
+27950.80132759176 4.0641446 7355.3765
+27951.80132763926 4.0643415 7355.3765
+27952.80132768676 4.0643806 7355.7695
+27953.80132773425 4.0643806 7356.1636
+27954.80132778175 4.0644593 7355.9663
+27955.80132782925 4.0644989 7356.5571
+27956.80132787675 4.0647349 7355.5728
+27957.80132792424 4.0648136 7356.5571
+27958.80132797174 4.0648532 7355.7695
+27959.80132801924 4.0649319 7356.7539
+27960.80132806674 4.0648923 7356.1636
+27961.80132811423 4.0650501 7356.7539
+27962.80132816173 4.0651288 7355.3765
+27963.80132820923 4.0652075 7355.5728
+27964.80132825673 4.0652075 7356.7539
+27965.80132830422 4.0654044 7355.5728
+27966.80132835172 4.0654435 7356.7539
+27967.80132839922 4.0654831 7356.3604
+27968.80132844672 4.0656013 7356.1636
+27969.80132849421 4.0655618 7355.9663
+27970.80132854171 4.0657978 7356.1636
+27971.80132858921 4.0658374 7356.1636
+27972.80132863671 4.0659161 7355.5728
+27973.8013286842 4.0659161 7355.7695
+27974.8013287317 4.0660734 7355.9663
+27975.8013287792 4.0661526 7356.9502
+27976.8013288267 4.0662313 7354.9824
+27977.80132887419 4.0663099 7356.3604
+27978.80132892169 4.0663099 7356.7539
+27979.80132896919 4.0664277 7356.3604
+27980.80132901669 4.066546 7356.5571
+27981.80132906418 4.0665855 7355.5728
+27982.80132911168 4.0667033 7356.3604
+27983.80132915918 4.0667429 7355.9663
+27984.80132920668 4.0668612 7355.5728
+27985.80132925417 4.0669003 7355.5728
+27986.80132930167 4.0669398 7355.9663
+27987.80132934917 4.0670972 7356.7539
+27988.80132939667 4.0671759 7355.9663
+27989.80132944416 4.0672941 7356.1636
+27990.80132949166 4.0672941 7355.7695
+27991.80132953916 4.0674911 7355.9663
+27992.80132958665 4.0673728 7356.3604
+27993.80132963415 4.0676088 7355.9663
+27994.80132968165 4.0677271 7355.3765
+27995.80132972915 4.0677271 7356.9502
+27996.80132977664 4.0678453 7356.1636
+27997.80132982414 4.0679631 7356.3604
+27998.80132987164 4.0680027 7356.3604
+27999.80132991914 4.0680027 7355.3765
+28000.80132996663 4.0681601 7355.3765
+28001.80133001413 4.068357 7356.3604
+28002.80133006163 4.068357 7356.7539
+28003.80133010913 4.068357 7356.1636
+28004.80133015662 4.0685539 7355.7695
+28005.80133020412 4.0686722 7355.9663
+28006.80133025162 4.0687113 7356.1636
+28007.80133029912 4.06879 7355.9663
+28008.80133034661 4.0689082 7356.1636
+28009.80133039411 4.0688686 7356.1636
+28010.80133044161 4.0689869 7355.1797
+28011.80133048911 4.0689869 7356.5571
+28012.8013305366 4.0692234 7355.5728
+28013.8013305841 4.0692234 7356.5571
+28014.8013306316 4.0692625 7356.5571
+28015.8013306791 4.0694199 7355.7695
+28016.80133072659 4.0695777 7355.9663
+28017.80133077409 4.0695777 7355.7695
+28018.80133082159 4.0697742 7356.5571
+28019.80133086909 4.0697351 7356.1636
+28020.80133091658 4.0698533 7357.1475
+28021.80133096408 4.0697742 7356.3604
+28022.80133101158 4.0700107 7355.7695
+28023.80133105908 4.0701284 7356.3604
+28024.80133110657 4.0701284 7356.3604
+28025.80133115407 4.0702467 7356.5571
+28026.80133120157 4.070365 7356.7539
+28027.80133124907 4.0704436 7356.1636
+28028.80133129656 4.0705223 7355.9663
+28029.80133134406 4.0705619 7356.1636
+28030.80133139156 4.0705223 7354.7856
+28031.80133143906 4.0708375 7355.9663
+28032.80133148655 4.0707588 7355.9663
+28033.80133153405 4.0708375 7355.9663
+28034.80133158155 4.071034 7355.3765
+28035.80133162905 4.0710735 7356.5571
+28036.80133167654 4.0711522 7355.9663
+28037.80133172404 4.0713491 7355.7695
+28038.80133177154 4.0713887 7355.9663
+28039.80133181904 4.0714674 7355.9663
+28040.80133186653 4.0715065 7356.1636
+28041.80133191403 4.0716248 7355.5728
+28042.80133196153 4.0717034 7355.3765
+28043.80133200902 4.0718217 7356.3604
+28044.80133205652 4.0719395 7356.1636
+28045.80133210402 4.0720577 7356.3604
+28046.80133215152 4.0722547 7355.1797
+28047.80133219901 4.0720973 7356.3604
+28048.80133224651 4.072176 7356.9502
+28049.80133229401 4.0723333 7356.7539
+28050.80133234151 4.0723729 7355.5728
+28051.801332389 4.0725303 7356.3604
+28052.8013324365 4.0727272 7356.3604
+28053.801332484 4.0726485 7355.9663
+28054.8013325315 4.0728846 7355.9663
+28055.80133257899 4.0729241 7355.9663
+28056.80133262649 4.0728846 7355.5728
+28057.80133267399 4.0730028 7356.7539
+28058.80133272149 4.0731602 7356.5571
+28059.80133276898 4.0731206 7356.3604
+28060.80133281648 4.0733175 7356.7539
+28061.80133286398 4.0733962 7356.1636
+28062.80133291148 4.073554 7356.1636
+28063.80133295897 4.073554 7355.7695
+28064.80133300647 4.0737114 7356.1636
+28065.80133305397 4.0737505 7356.3604
+28066.80133310147 4.0739083 7355.7695
+28067.80133314896 4.0739474 7355.5728
+28068.80133319646 4.073987 7355.7695
+28069.80133324396 4.073987 7356.5571
+28070.80133329146 4.0741839 7356.7539
+28071.80133333895 4.074223 7355.5728
+28072.80133338645 4.0743413 7355.7695
+28073.80133343395 4.0743413 7355.7695
+28074.80133348145 4.07442 7355.7695
+28075.80133352894 4.0745773 7355.7695
+28076.80133357644 4.0746169 7356.7539
+28077.80133362394 4.0747347 7355.3765
+28078.80133367144 4.0748925 7355.7695
+28079.80133371893 4.0749316 7356.1636
+28080.80133376643 4.0751286 7355.1797
+28081.80133381393 4.0751681 7356.3604
+28082.80133386143 4.0753646 7356.9502
+28083.80133390892 4.0753646 7355.7695
+28084.80133395642 4.0754437 7355.7695
+28085.80133400392 4.0755224 7356.3604
+28086.80133405142 4.0756798 7356.1636
+28087.80133409891 4.0757194 7355.9663
+28088.80133414641 4.075798 7356.7539
+28089.80133419391 4.0758767 7355.9663
+28090.80133424141 4.0759945 7356.1636
+28091.8013342889 4.0760736 7355.9663
+28092.8013343364 4.0761914 7356.3604
+28093.8013343839 4.076231 7355.7695
+28094.80133443139 4.0764279 7355.7695
+28095.80133447889 4.0764279 7355.5728
+28096.80133452639 4.0765457 7355.9663
+28097.80133457389 4.0766249 7355.7695
+28098.80133462138 4.0767822 7356.3604
+28099.80133466888 4.0768213 7356.1636
+28100.80133471638 4.0768609 7355.9663
+28101.80133476388 4.0770969 7355.9663
+28102.80133481137 4.0771756 7356.1636
+28103.80133485887 4.0771756 7356.1636
+28104.80133490637 4.0772939 7355.7695
+28105.80133495387 4.0772548 7356.1636
+28106.80133500136 4.0774121 7356.7539
+28107.80133504886 4.0774908 7355.7695
+28108.80133509636 4.0775695 7355.7695
+28109.80133514386 4.0777268 7356.1636
+28110.80133519135 4.0778451 7356.1636
+28111.80133523885 4.0778847 7356.7539
+28112.80133528635 4.0779238 7355.7695
+28113.80133533385 4.078042 7355.5728
+28114.80133538134 4.0781603 7356.3604
+28115.80133542884 4.0783567 7355.7695
+28116.80133547634 4.0783567 7356.1636
+28117.80133552384 4.0784354 7355.9663
+28118.80133557133 4.078475 7355.9663
+28119.80133561883 4.0786324 7355.9663
+28120.80133566633 4.0786324 7355.5728
+28121.80133571383 4.0787902 7356.1636
+28122.80133576132 4.0787902 7356.1636
+28123.80133580882 4.0788689 7355.7695
+28124.80133585632 4.0789475 7355.3765
+28125.80133590382 4.0791445 7355.9663
+28126.80133595131 4.0792623 7355.7695
+28127.80133599881 4.0792623 7354.7856
+28128.80133604631 4.0794592 7355.7695
+28129.80133609381 4.0795379 7355.9663
+28130.8013361413 4.0795379 7355.5728
+28131.8013361888 4.0795774 7355.5728
+28132.8013362363 4.0797348 7355.5728
+28133.8013362838 4.0798922 7355.3765
+28134.80133633129 4.0800104 7355.5728
+28135.80133637879 4.0800891 7355.3765
+28136.80133642629 4.0801287 7355.7695
+28137.80133647379 4.0801678 7356.3604
+28138.80133652128 4.0802073 7355.9663
+28139.80133656878 4.0803647 7356.1636
+28140.80133661628 4.0804434 7355.7695
+28141.80133666378 4.0806007 7356.3604
+28142.80133671127 4.080719 7355.5728
+28143.80133675877 4.080719 7356.3604
+28144.80133680627 4.0810342 7355.7695
+28145.80133685377 4.0809159 7355.7695
+28146.80133690126 4.0810733 7355.9663
+28147.80133694876 4.081152 7356.7539
+28148.80133699626 4.081152 7357.1475
+28149.80133704375 4.0812702 7355.3765
+28150.80133709125 4.0813098 7356.5571
+28151.80133713875 4.0814276 7355.9663
+28152.80133718625 4.0815063 7355.7695
+28153.80133723374 4.0816245 7356.5571
+28154.80133728124 4.081861 7355.7695
+28155.80133732874 4.081861 7356.7539
+28156.80133737624 4.081861 7356.1636
+28157.80133742373 4.0820184 7356.9502
+28158.80133747123 4.0821362 7355.7695
+28159.80133751873 4.082294 7357.3442
+28160.80133756623 4.0822544 7355.7695
+28161.80133761372 4.08253 7356.1636
+28162.80133766122 4.0824909 7355.7695
+28163.80133770872 4.08253 7355.1797
+28164.80133775622 4.08253 7356.3604
+28165.80133780371 4.0827661 7356.5571
+28166.80133785121 4.0828056 7355.5728
+28167.80133789871 4.082963 7356.7539
+28168.80133794621 4.0830417 7355.3765
+28169.8013379937 4.0831208 7356.5571
+28170.8013380412 4.0831208 7355.7695
+28171.8013380887 4.0833173 7355.5728
+28172.8013381362 4.0833964 7354.7856
+28173.80133818369 4.0833964 7355.7695
+28174.80133823119 4.0835538 7355.3765
+28175.80133827869 4.0835929 7356.3604
+28176.80133832619 4.0837898 7355.7695
+28177.80133837368 4.0838685 7355.3765
+28178.80133842118 4.0839472 7355.5728
+28179.80133846868 4.0839868 7356.9502
+28180.80133851618 4.0840263 7356.3604
+28181.80133856367 4.0841837 7355.3765
+28182.80133861117 4.0841441 7356.5571
+28183.80133865867 4.084341 7356.3604
+28184.80133870617 4.0844593 7355.1797
+28185.80133875366 4.0844984 7355.5728
+28186.80133880116 4.0846167 7355.9663
+28187.80133884866 4.0847349 7355.9663
+28188.80133889616 4.0848527 7354.7856
+28189.80133894365 4.0849314 7356.3604
+28190.80133899115 4.084971 7355.9663
+28191.80133903865 4.0850496 7355.9663
+28192.80133908615 4.0851679 7355.9663
+28193.80133913364 4.0850892 7355.9663
+28194.80133918114 4.0852466 7356.3604
+28195.80133922864 4.0854435 7355.9663
+28196.80133927614 4.0855222 7355.5728
+28197.80133932363 4.0855222 7355.9663
+28198.80133937113 4.0857191 7355.9663
+28199.80133941863 4.0857191 7356.1636
+28200.80133946612 4.0858369 7356.5571
+28201.80133951362 4.0858765 7355.3765
+28202.80133956112 4.0859947 7355.3765
+28203.80133960862 4.0860338 7355.3765
+28204.80133965611 4.0861521 7356.9502
+28205.80133970361 4.0862703 7355.9663
+28206.80133975111 4.0864277 7355.3765
+28207.80133979861 4.0865064 7356.7539
+28208.8013398461 4.0866246 7356.7539
+28209.8013398936 4.0867033 7355.7695
+28210.8013399411 4.086782 7355.5728
+28211.8013399886 4.0868216 7356.1636
+28212.80134003609 4.0869393 7355.3765
+28213.80134008359 4.0870576 7355.9663
+28214.80134013109 4.0871758 7355.7695
+28215.80134017859 4.0871363 7356.1636
+28216.80134022608 4.0872545 7355.7695
+28217.80134027358 4.0874119 7355.9663
+28218.80134032108 4.0874515 7355.5728
+28219.80134036858 4.0876088 7356.7539
+28220.80134041607 4.0878057 7355.7695
+28221.80134046357 4.0878057 7356.3604
+28222.80134051107 4.0879235 7355.9663
+28223.80134055857 4.0879235 7355.9663
+28224.80134060606 4.0880022 7354.7856
+28225.80134065356 4.0880418 7355.7695
+28226.80134070106 4.0880814 7354.9824
+28227.80134074856 4.088357 7355.9663
+28228.80134079605 4.0883961 7355.9663
+28229.80134084355 4.0884748 7356.1636
+28230.80134089105 4.088593 7355.3765
+28231.80134093855 4.0886717 7355.5728
+28232.80134098604 4.0887899 7355.3765
+28233.80134103354 4.0888686 7355.3765
+28234.80134108104 4.089026 7354.9824
+28235.80134112854 4.0890656 7355.5728
+28236.80134117603 4.0891442 7355.3765
+28237.80134122353 4.0892625 7356.3604
+28238.80134127103 4.0893016 7354.9824
+28239.80134131853 4.0894198 7355.5728
+28240.80134136602 4.0895376 7355.7695
+28241.80134141352 4.0895772 7355.7695
+28242.80134146102 4.0897346 7356.1636
+28243.80134150852 4.0897741 7356.7539
+28244.80134155601 4.0899711 7355.5728
+28245.80134160351 4.0900102 7356.1636
+28246.80134165101 4.0902071 7355.7695
+28247.80134169851 4.0902071 7356.3604
+28248.801341746 4.0902858 7356.5571
+28249.8013417935 4.0903645 7355.1797
+28250.801341841 4.090404 7355.9663
+28251.80134188849 4.090601 7355.5728
+28252.80134193599 4.0906401 7356.1636
+28253.80134198349 4.090601 7355.5728
+28254.80134203099 4.0907187 7356.3604
+28255.80134207848 4.0908766 7356.5571
+28256.80134212598 4.0909553 7356.3604
+28257.80134217348 4.091073 7355.9663
+28258.80134222098 4.0911913 7355.5728
+28259.80134226847 4.0912309 7356.3604
+28260.80134231597 4.09127 7355.7695
+28261.80134236347 4.0914669 7355.9663
+28262.80134241097 4.0915456 7356.7539
+28263.80134245846 4.0916243 7356.5571
+28264.80134250596 4.0916638 7356.5571
+28265.80134255346 4.0918608 7355.9663
+28266.80134260096 4.0919785 7356.3604
+28267.80134264845 4.0920181 7355.9663
+28268.80134269595 4.0921364 7356.1636
+28269.80134274345 4.0922542 7357.1475
+28270.80134279095 4.0921755 7356.5571
+28271.80134283844 4.0922151 7355.1797
+28272.80134288594 4.0923724 7355.9663
+28273.80134293344 4.0924907 7355.7695
+28274.80134298094 4.0926085 7355.9663
+28275.80134302843 4.0927663 7356.1636
+28276.80134307593 4.0927663 7356.5571
+28277.80134312343 4.0928841 7356.5571
+28278.80134317093 4.0928841 7355.7695
+28279.80134321842 4.093081 7355.7695
+28280.80134326592 4.0932384 7355.5728
+28281.80134331342 4.0933175 7355.3765
+28282.80134336092 4.0933566 7355.9663
+28283.80134340841 4.0935535 7355.9663
+28284.80134345591 4.0935535 7356.5571
+28285.80134350341 4.0936718 7356.5571
+28286.80134355091 4.0937896 7355.7695
+28287.8013435984 4.0937896 7355.9663
+28288.8013436459 4.0939865 7356.3604
+28289.8013436934 4.0940261 7355.9663
+28290.8013437409 4.0940652 7356.5571
+28291.80134378839 4.0943017 7356.7539
+28292.80134383589 4.0942621 7355.7695
+28293.80134388339 4.0944195 7355.9663
+28294.80134393089 4.0944591 7356.7539
+28295.80134397838 4.0945773 7356.3604
+28296.80134402588 4.094656 7356.1636
+28297.80134407338 4.0947738 7355.9663
+28298.80134412088 4.094892 7356.3604
+28299.80134416837 4.0949707 7355.9663
+28300.80134421587 4.095089 7355.9663
+28301.80134426337 4.0950494 7355.9663
+28302.80134431086 4.0952463 7356.1636
+28303.80134435836 4.095325 7356.3604
+28304.80134440586 4.0954828 7356.3604
+28305.80134445336 4.0954828 7355.7695
+28306.80134450085 4.0956402 7355.5728
+28307.80134454835 4.0958371 7355.5728
+28308.80134459585 4.0959158 7356.1636
+28309.80134464335 4.0959945 7356.7539
+28310.80134469084 4.0960732 7355.9663
+28311.80134473834 4.0961914 7356.3604
+28312.80134478584 4.0961518 7355.5728
+28313.80134483334 4.0963092 7355.9663
+28314.80134488083 4.0965061 7355.9663
+28315.80134492833 4.0965457 7356.7539
+28316.80134497583 4.096664 7356.5571
+28317.80134502333 4.0967817 7356.7539
+28318.80134507082 4.0969391 7355.9663
+28319.80134511832 4.0969 7356.3604
+28320.80134516582 4.0969787 7355.9663
+28321.80134521332 4.0970969 7356.1636
+28322.80134526081 4.0970573 7356.3604
+28323.80134530831 4.097333 7355.9663
+28324.80134535581 4.0974116 7355.7695
+28325.80134540331 4.0975299 7356.3604
+28326.8013454508 4.0974903 7356.7539
+28327.8013454983 4.0976481 7354.9824
+28328.8013455458 4.0978446 7356.9502
+28329.8013455933 4.0978446 7356.5571
+28330.80134564079 4.0979629 7355.9663
+28331.80134568829 4.0979629 7355.7695
+28332.80134573579 4.0980811 7355.9663
+28333.80134578329 4.0982385 7356.1636
+28334.80134583078 4.0983171 7355.9663
+28335.80134587828 4.0984354 7356.7539
+28336.80134592578 4.0985141 7354.7856
+28337.80134597328 4.0985141 7355.7695
+28338.80134602077 4.0985928 7356.1636
+28339.80134606827 4.0987501 7356.3604
+28340.80134611577 4.0988684 7355.5728
+28341.80134616327 4.0989079 7355.1797
+28342.80134621076 4.0991044 7356.1636
+28343.80134625826 4.099144 7355.5728
+28344.80134630576 4.0993013 7356.5571
+28345.80134635326 4.0993409 7356.3604
+28346.80134640075 4.0994196 7355.7695
+28347.80134644825 4.0995378 7356.7539
+28348.80134649575 4.099577 7355.5728
+28349.80134654325 4.0996165 7356.1636
+28350.80134659074 4.0997739 7355.9663
+28351.80134663824 4.0997739 7355.3765
+28352.80134668574 4.0999312 7356.1636
+28353.80134673323 4.1001282 7355.9663
+28354.80134678073 4.1000495 7356.7539
+28355.80134682823 4.1002069 7355.7695
+28356.80134687573 4.1002855 7356.5571
+28357.80134692322 4.1003251 7356.3604
+28358.80134697072 4.1004434 7356.1636
+28359.80134701822 4.1006007 7356.3604
+28360.80134706572 4.1006007 7355.3765
+28361.80134711321 4.1006007 7356.1636
+28362.80134716071 4.100719 7355.7695
+28363.80134720821 4.1008368 7356.5571
+28364.80134725571 4.1008763 7355.9663
+28365.8013473032 4.1009946 7356.5571
+28366.8013473507 4.1010337 7355.3765
+28367.8013473982 4.1011124 7356.3604
+28368.8013474457 4.1013093 7356.3604
+28369.80134749319 4.1014276 7355.5728
+28370.80134754069 4.1015062 7356.1636
+28371.80134758819 4.1015453 7356.1636
+28372.80134763569 4.1016245 7356.7539
+28373.80134768318 4.1017423 7355.7695
+28374.80134773068 4.1018209 7354.9824
+28375.80134777818 4.1017818 7356.7539
+28376.80134782568 4.1019788 7356.7539
+28377.80134787317 4.1020966 7355.9663
+28378.80134792067 4.1022148 7355.7695
+28379.80134796817 4.1022935 7355.7695
+28380.80134801567 4.1023331 7355.9663
+28381.80134806316 4.1023722 7355.5728
+28382.80134811066 4.1025691 7355.7695
+28383.80134815816 4.1026087 7355.7695
+28384.80134820566 4.102766 7356.3604
+28385.80134825315 4.1028843 7356.1636
+28386.80134830065 4.1029234 7356.1636
+28387.80134834815 4.1030021 7355.7695
+28388.80134839565 4.1030021 7355.3765
+28389.80134844314 4.103199 7356.9502
+28390.80134849064 4.1033173 7355.5728
+28391.80134853814 4.1034355 7355.3765
+28392.80134858564 4.1034355 7355.7695
+28393.80134863313 4.1035533 7355.7695
+28394.80134868063 4.1036716 7355.7695
+28395.80134872813 4.1037107 7355.9663
+28396.80134877563 4.1037898 7356.7539
+28397.80134882312 4.1039472 7355.7695
+28398.80134887062 4.1039863 7355.5728
+28399.80134891812 4.1043015 7356.5571
+28400.80134896562 4.1042228 7355.9663
+28401.80134901311 4.1043406 7355.1797
+28402.80134906061 4.1043801 7356.1636
+28403.80134910811 4.1045375 7356.3604
+28404.8013491556 4.1045375 7355.3765
+28405.8013492031 4.1046953 7355.5728
+28406.8013492506 4.1048131 7355.7695
+28407.8013492981 4.1048918 7355.3765
+28408.80134934559 4.1049314 7356.1636
+28409.80134939309 4.1050887 7355.5728
+28410.80134944059 4.1051674 7355.9663
+28411.80134948809 4.1052856 7356.1636
+28412.80134953558 4.1054826 7355.7695
+28413.80134958308 4.1054039 7355.3765
+28414.80134963058 4.1056399 7355.9663
+28415.80134967808 4.1056399 7356.7539
+28416.80134972557 4.1057582 7356.7539
+28417.80134977307 4.1057973 7356.9502
+28418.80134982057 4.105876 7355.7695
+28419.80134986807 4.1060338 7355.5728
+28420.80134991556 4.1061125 7355.7695
+28421.80134996306 4.1062698 7355.9663
+28422.80135001056 4.1063094 7356.3604
+28423.80135005806 4.1064272 7355.7695
+28424.80135010555 4.1065063 7356.5571
+28425.80135015305 4.1066241 7355.5728
+28426.80135020055 4.1067028 7356.1636
+28427.80135024805 4.1068997 7355.9663
+28428.80135029554 4.1068997 7356.1636
+28429.80135034304 4.1069393 7355.9663
+28430.80135039054 4.1071362 7356.1636
+28431.80135043804 4.1071754 7355.1797
+28432.80135048553 4.107254 7356.1636
+28433.80135053303 4.1073327 7356.7539
+28434.80135058053 4.107451 7356.1636
+28435.80135062803 4.1074905 7355.9663
+28436.80135067552 4.1076083 7354.5889
+28437.80135072302 4.107687 7356.1636
+28438.80135077052 4.1078448 7355.1797
+28439.80135081802 4.1078448 7356.3604
+28440.80135086551 4.1079235 7356.5571
+28441.80135091301 4.1080413 7356.3604
+28442.80135096051 4.1081204 7356.3604
+28443.80135100801 4.1082382 7355.9663
+28444.8013510555 4.1082778 7355.9663
+28445.801351103 4.1085138 7355.9663
+28446.8013511505 4.1085138 7355.3765
+28447.801351198 4.1087108 7356.5571
+28448.80135124549 4.108829 7356.1636
+28449.80135129299 4.1087894 7355.3765
+28450.80135134049 4.1088681 7356.3604
+28451.80135138799 4.109026 7355.5728
+28452.80135143548 4.1091046 7355.9663
+28453.80135148298 4.1091437 7354.7856
+28454.80135153048 4.1093016 7355.7695
+28455.80135157797 4.1093407 7355.5728
+28456.80135162547 4.109498 7356.3604
+28457.80135167297 4.1095767 7356.1636
+28458.80135172047 4.1096559 7355.9663
+28459.80135176796 4.109695 7355.7695
+28460.80135181546 4.1098132 7355.7695
+28461.80135186296 4.1098919 7356.1636
+28462.80135191046 4.1099315 7356.3604
+28463.80135195795 4.1100888 7356.1636
+28464.80135200545 4.1101279 7355.5728
+28465.80135205295 4.1103644 7354.7856
+28466.80135210045 4.1103249 7355.7695
+28467.80135214794 4.1104822 7356.1636
+28468.80135219544 4.1105218 7354.9824
+28469.80135224294 4.11064 7356.5571
+28470.80135229044 4.1106791 7355.7695
+28471.80135233793 4.1107578 7356.1636
+28472.80135238543 4.1108761 7356.1636
+28473.80135243293 4.1109548 7355.7695
+28474.80135248043 4.1111121 7355.9663
+28475.80135252792 4.1111913 7356.1636
+28476.80135257542 4.1112304 7356.1636
+28477.80135262292 4.1114669 7355.5728
+28478.80135267042 4.1115847 7356.3604
+28479.80135271791 4.1116633 7356.1636
+28480.80135276541 4.1117029 7356.1636
+28481.80135281291 4.1118212 7356.3604
+28482.80135286041 4.1119785 7356.9502
+28483.8013529079 4.1119785 7357.3442
+28484.8013529554 4.1120572 7355.5728
+28485.8013530029 4.1122541 7356.5571
+28486.8013530504 4.1123328 7355.3765
+28487.80135309789 4.1124115 7356.3604
+28488.80135314539 4.1125298 7356.5571
+28489.80135319289 4.1126475 7355.7695
+28490.80135324039 4.1127267 7355.9663
+28491.80135328788 4.1128054 7356.7539
+28492.80135333538 4.1129231 7355.5728
+28493.80135338288 4.1130414 7356.7539
+28494.80135343038 4.1131597 7356.3604
+28495.80135347787 4.113081 7356.1636
+28496.80135352537 4.1132774 7357.3442
+28497.80135357287 4.1134353 7355.7695
+28498.80135362037 4.1133957 7355.7695
+28499.80135366786 4.1135926 7356.3604
+28500.80135371536 4.1137896 7356.1636
+28501.80135376286 4.1137896 7355.5728
+28502.80135381036 4.1139078 7355.3765
+28503.80135385785 4.1139469 7356.1636
+28504.80135390535 4.1141043 7355.7695
+28505.80135395285 4.1141829 7355.3765
+28506.80135400034 4.1142225 7355.3765
+28507.80135404784 4.1143408 7356.3604
+28508.80135409534 4.1143799 7355.3765
+28509.80135414284 4.1145377 7356.1636
+28510.80135419033 4.1146555 7356.5571
+28511.80135423783 4.1147342 7357.1475
+28512.80135428533 4.1148129 7356.3604
+28513.80135433283 4.1149311 7355.9663
+28514.80135438032 4.1150494 7356.1636
+28515.80135442782 4.1150098 7355.9663
+28516.80135447532 4.1152067 7355.9663
+28517.80135452282 4.1152854 7356.3604
+28518.80135457031 4.1154428 7356.5571
+28519.80135461781 4.1156006 7357.3442
+28520.80135466531 4.1155219 7356.3604
+28521.80135471281 4.1157579 7356.1636
+28522.8013547603 4.1158366 7356.7539
+28523.8013548078 4.1159549 7355.9663
+28524.8013548553 4.1159549 7355.9663
+28525.8013549028 4.1160731 7355.5728
+28526.80135495029 4.1161122 7356.5571
+28527.80135499779 4.1163483 7356.1636
+28528.80135504529 4.1163483 7355.3765
+28529.80135509279 4.1165061 7355.5728
+28530.80135514028 4.1166635 7356.7539
+28531.80135518778 4.1166239 7355.9663
+28532.80135523528 4.1168604 7355.7695
+28533.80135528278 4.1168208 7355.7695
+28534.80135533027 4.1169782 7355.3765
+28535.80135537777 4.1170964 7355.5728
+28536.80135542527 4.1172538 7356.1636
+28537.80135547277 4.1172934 7356.1636
+28538.80135552026 4.117372 7355.5728
+28539.80135556776 4.1174507 7356.7539
+28540.80135561526 4.1176476 7355.9663
+28541.80135566276 4.1176872 7355.7695
+28542.80135571025 4.1177263 7356.1636
+28543.80135575775 4.1178446 7355.9663
+28544.80135580525 4.1179628 7355.7695
+28545.80135585275 4.1181593 7355.3765
+28546.80135590024 4.1182384 7356.1636
+28547.80135594774 4.1182775 7355.5728
+28548.80135599524 4.1183171 7355.3765
+28549.80135604274 4.1185136 7356.5571
+28550.80135609023 4.1186714 7355.3765
+28551.80135613773 4.1185927 7356.1636
+28552.80135618523 4.1187105 7356.5571
+28553.80135623273 4.1188288 7355.9663
+28554.80135628022 4.1188684 7356.5571
+28555.80135632772 4.119144 7356.1636
+28556.80135637522 4.1191831 7356.1636
+28557.80135642271 4.1192617 7355.5728
+28558.80135647021 4.11938 7355.3765
+28559.80135651771 4.11938 7355.3765
+28560.80135656521 4.1195769 7355.5728
+28561.8013566127 4.1196947 7355.9663
+28562.8013566602 4.119813 7356.5571
+28563.8013567077 4.1198916 7355.5728
+28564.8013567552 4.1199703 7355.7695
+28565.80135680269 4.1201282 7355.1797
+28566.80135685019 4.1201282 7355.9663
+28567.80135689769 4.1202459 7355.7695
+28568.80135694519 4.1203246 7355.9663
+28569.80135699268 4.1204824 7356.5571
+28570.80135704018 4.1204429 7355.7695
+28571.80135708768 4.1206398 7355.7695
+28572.80135713518 4.1207185 7356.5571
+28573.80135718267 4.1208758 7356.1636
+28574.80135723017 4.1208758 7356.1636
+28575.80135727767 4.1210337 7355.7695
+28576.80135732517 4.1209545 7355.9663
+28577.80135737266 4.1212697 7355.7695
+28578.80135742016 4.1212697 7355.7695
+28579.80135746766 4.1213484 7356.3604
+28580.80135751516 4.1213484 7355.1797
+28581.80135756265 4.1215057 7355.7695
+28582.80135761015 4.121624 7355.7695
+28583.80135765765 4.1217027 7355.3765
+28584.80135770515 4.1217813 7356.1636
+28585.80135775264 4.1218996 7355.7695
+28586.80135780014 4.1219392 7356.3604
+28587.80135784764 4.1220179 7355.3765
+28588.80135789514 4.122057 7355.7695
+28589.80135794263 4.1221752 7356.1636
+28590.80135799013 4.1223326 7354.9824
+28591.80135803763 4.1222539 7355.7695
+28592.80135808513 4.1224899 7356.5571
+28593.80135813262 4.1224899 7355.5728
+28594.80135818012 4.1227264 7356.7539
+28595.80135822762 4.1227264 7356.1636
+28596.80135827512 4.1226869 7355.7695
+28597.80135832261 4.1229234 7356.1636
+28598.80135837011 4.1229625 7355.9663
+28599.80135841761 4.1230021 7356.1636
+28600.80135846511 4.1232381 7356.9502
+28601.8013585126 4.1232381 7355.3765
+28602.8013585601 4.123435 7355.9663
+28603.8013586076 4.1235137 7356.5571
+28604.8013586551 4.1235137 7355.1797
+28605.80135870259 4.1236711 7355.9663
+28606.80135875009 4.1237106 7355.9663
+28607.80135879759 4.1238289 7355.9663
+28608.80135884508 4.1239076 7355.7695
+28609.80135889258 4.1240253 7356.5571
+28610.80135894008 4.1241436 7357.1475
+28611.80135898758 4.1241832 7357.1475
+28612.80135903507 4.1243405 7355.9663
+28613.80135908257 4.124301 7356.5571
+28614.80135913007 4.1244192 7355.5728
+28615.80135917757 4.1245766 7355.3765
+28616.80135922506 4.1246552 7356.3604
+28617.80135927256 4.1248522 7355.9663
+28618.80135932006 4.1248522 7355.1797
+28619.80135936756 4.1249309 7355.3765
+28620.80135941505 4.1250491 7356.1636
+28621.80135946255 4.1250887 7355.5728
+28622.80135951005 4.1252851 7356.3604
+28623.80135955755 4.125246 7355.7695
+28624.80135960504 4.1254034 7356.1636
+28625.80135965254 4.1254821 7356.3604
+28626.80135970004 4.1256003 7356.1636
+28627.80135974754 4.1256003 7356.5571
+28628.80135979503 4.1258759 7355.3765
+28629.80135984253 4.1259151 7356.3604
+28630.80135989003 4.1259151 7355.7695
+28631.80135993753 4.1260729 7356.7539
+28632.80135998502 4.126112 7355.9663
+28633.80136003252 4.1262302 7355.9663
+28634.80136008002 4.1264272 7355.5728
+28635.80136012752 4.1264272 7357.1475
+28636.80136017501 4.1264663 7355.9663
+28637.80136022251 4.1266241 7355.5728
+28638.80136027001 4.1267028 7355.9663
+28639.80136031751 4.1268206 7356.3604
+28640.801360365 4.1268997 7356.3604
+28641.8013604125 4.1269388 7355.9663
+28642.80136046 4.1271358 7356.1636
+28643.8013605075 4.1272931 7355.1797
+28644.80136055499 4.1273718 7356.1636
+28645.80136060249 4.12749 7356.1636
+28646.80136064999 4.1275687 7355.9663
+28647.80136069749 4.1276083 7357.3442
+28648.80136074498 4.1277261 7355.9663
+28649.80136079248 4.1278443 7355.7695
+28650.80136083998 4.1278443 7356.1636
+28651.80136088748 4.1279626 7355.1797
+28652.80136093497 4.1281199 7356.3604
+28653.80136098247 4.1281595 7356.9502
+28654.80136102997 4.1282382 7356.1636
+28655.80136107747 4.1283956 7355.9663
+28656.80136112496 4.1285138 7355.9663
+28657.80136117246 4.1285925 7355.9663
+28658.80136121996 4.1287498 7355.3765
+28659.80136126745 4.1287894 7355.9663
+28660.80136131495 4.1287498 7355.5728
+28661.80136136245 4.1289468 7355.7695
+28662.80136140995 4.1289468 7356.1636
+28663.80136145744 4.1290255 7355.5728
+28664.80136150494 4.1291828 7355.9663
+28665.80136155244 4.1292224 7356.1636
+28666.80136159994 4.1293797 7356.3604
+28667.80136164743 4.1293406 7355.3765
+28668.80136169493 4.129498 7356.1636
+28669.80136174243 4.1296158 7356.7539
+28670.80136178993 4.129734 7355.5728
+28671.80136183742 4.1298914 7355.5728
+28672.80136188492 4.1298523 7355.9663
+28673.80136193242 4.1299706 7356.5571
+28674.80136197992 4.130167 7355.5728
+28675.80136202741 4.130167 7356.5571
+28676.80136207491 4.1302853 7355.7695
+28677.80136212241 4.1303639 7355.9663
+28678.80136216991 4.1304822 7355.9663
+28679.8013622174 4.1305609 7356.3604
+28680.8013622649 4.1306396 7355.1797
+28681.8013623124 4.1307182 7356.1636
+28682.8013623599 4.1308365 7355.9663
+28683.80136240739 4.1307969 7356.3604
+28684.80136245489 4.1309547 7356.1636
+28685.80136250239 4.1311121 7356.3604
+28686.80136254989 4.1310725 7355.7695
+28687.80136259738 4.1311512 7355.7695
+28688.80136264488 4.1313877 7356.3604
+28689.80136269238 4.1313877 7355.9663
+28690.80136273988 4.1315451 7356.5571
+28691.80136278737 4.1316633 7355.5728
+28692.80136283487 4.1316633 7356.7539
+28693.80136288237 4.1317816 7356.9502
+28694.80136292987 4.1318207 7356.5571
+28695.80136297736 4.1319389 7355.9663
+28696.80136302486 4.1320176 7355.3765
+28697.80136307236 4.1320963 7355.5728
+28698.80136311986 4.1321359 7355.3765
+28699.80136316735 4.1322932 7355.5728
+28700.80136321485 4.1322536 7355.5728
+28701.80136326235 4.1324506 7356.3604
+28702.80136330985 4.1324506 7355.9663
+28703.80136335734 4.1326866 7356.5571
+28704.80136340484 4.1326475 7355.7695
+28705.80136345234 4.1328444 7355.3765
+28706.80136349984 4.1328444 7356.7539
+28707.80136354733 4.1330018 7355.7695
+28708.80136359483 4.1331592 7356.1636
+28709.80136364233 4.1332774 7355.7695
+28710.80136368982 4.1333165 7355.7695
+28711.80136373732 4.1333165 7355.3765
+28712.80136378482 4.133553 7356.3604
+28713.80136383232 4.133553 7356.1636
+28714.80136387981 4.13375 7355.5728
+28715.80136392731 4.1336317 7355.7695
+28716.80136397481 4.13375 7356.3604
+28717.80136402231 4.1337891 7355.7695
+28718.8013640698 4.133986 7355.9663
+28719.8013641173 4.1341043 7357.1475
+28720.8013641648 4.1341043 7356.7539
+28721.8013642123 4.1341434 7355.3765
+28722.80136425979 4.134222 7355.5728
+28723.80136430729 4.1343799 7356.1636
+28724.80136435479 4.1344976 7356.1636
+28725.80136440229 4.1344976 7355.9663
+28726.80136444978 4.1347342 7355.9663
+28727.80136449728 4.1348519 7355.9663
+28728.80136454478 4.1347733 7355.5728
+28729.80136459228 4.1348915 7355.3765
+28730.80136463977 4.1350489 7355.5728
+28731.80136468727 4.1351671 7356.5571
+28732.80136473477 4.1352854 7355.9663
+28733.80136478227 4.1354032 7355.9663
+28734.80136482976 4.1353641 7355.5728
+28735.80136487726 4.1355214 7356.9502
+28736.80136492476 4.1356788 7356.9502
+28737.80136497226 4.135561 7355.9663
+28738.80136501975 4.1358366 7356.3604
+28739.80136506725 4.1359153 7355.9663
+28740.80136511475 4.1359544 7355.5728
+28741.80136516225 4.1360726 7356.7539
+28742.80136520974 4.1361122 7356.3604
+28743.80136525724 4.1362696 7354.7856
+28744.80136530474 4.1363087 7355.7695
+28745.80136535224 4.1365056 7355.9663
+28746.80136539973 4.1366239 7355.9663
+28747.80136544723 4.1365452 7356.3604
+28748.80136549473 4.1366239 7355.9663
+28749.80136554223 4.1367812 7355.3765
+28750.80136558972 4.1369386 7355.9663
+28751.80136563722 4.1369386 7355.5728
+28752.80136568472 4.1371355 7355.7695
+28753.80136573222 4.1372142 7355.9663
+28754.80136577971 4.1372142 7355.5728
+28755.80136582721 4.137372 7355.7695
+28756.80136587471 4.1375294 7356.5571
+28757.80136592221 4.1375685 7356.1636
+28758.8013659697 4.1376476 7355.5728
+28759.8013660172 4.1376867 7355.7695
+28760.8013660647 4.137805 7355.9663
+28761.8013661122 4.1378441 7356.7539
+28762.80136615969 4.1380019 7355.5728
+28763.80136620719 4.1381197 7356.3604
+28764.80136625469 4.1381593 7355.7695
+28765.80136630218 4.1382775 7355.9663
+28766.80136634968 4.138474 7356.9502
+28767.80136639718 4.1384349 7356.5571
+28768.80136644468 4.1386318 7356.1636
+28769.80136649217 4.1386709 7356.1636
+28770.80136653967 4.1387105 7356.9502
+28771.80136658717 4.1387892 7356.3604
+28772.80136663467 4.1389465 7355.9663
+28773.80136668216 4.1389074 7355.9663
+28774.80136672966 4.1389861 7355.9663
+28775.80136677716 4.139183 7355.9663
+28776.80136682466 4.1391039 7355.5728
+28777.80136687215 4.1394191 7357.1475
+28778.80136691965 4.1394582 7355.7695
+28779.80136696715 4.1394191 7356.3604
+28780.80136701465 4.1394978 7355.7695
+28781.80136706214 4.1396551 7355.5728
+28782.80136710964 4.1397734 7355.9663
+28783.80136715714 4.1396947 7356.5571
+28784.80136720464 4.1398916 7355.9663
+28785.80136725213 4.1399703 7356.5571
+28786.80136729963 4.1400881 7355.9663
+28787.80136734713 4.1401672 7355.7695
+28788.80136739463 4.1402063 7355.9663
+28789.80136744212 4.140285 7355.5728
+28790.80136748962 4.1403246 7355.9663
+28791.80136753712 4.1404819 7355.7695
+28792.80136758462 4.1405215 7355.3765
+28793.80136763211 4.1406393 7356.1636
+28794.80136767961 4.1406393 7355.7695
+28795.80136772711 4.1407971 7355.9663
+28796.80136777461 4.1408758 7355.3765
+28797.8013678221 4.1409545 7356.7539
+28798.8013678696 4.1409936 7356.3604
+28799.8013679171 4.1411119 7356.3604
+28800.8013679646 4.1412692 7355.7695
+28801.80136801209 4.1412692 7356.1636
+28802.80136805959 4.1413875 7355.9663
+28803.80136810709 4.1414661 7356.3604
+28804.80136815459 4.1415057 7355.9663
+28805.80136820208 4.1415844 7356.3604
+28806.80136824958 4.1417813 7355.9663
+28807.80136829708 4.1418204 7355.7695
+28808.80136834458 4.142096 7355.7695
+28809.80136839207 4.1420569 7355.1797
+28810.80136843957 4.1421747 7356.7539
+28811.80136848707 4.142293 7355.7695
+28812.80136853457 4.1423326 7355.9663
+28813.80136858206 4.1423717 7357.1475
+28814.80136862956 4.142529 7356.1636
+28815.80136867706 4.1424899 7356.3604
+28816.80136872455 4.1425686 7356.7539
+28817.80136877205 4.1428046 7355.7695
+28818.80136881955 4.1428838 7355.9663
+28819.80136886705 4.1430016 7355.9663
+28820.80136891454 4.1429625 7356.1636
+28821.80136896204 4.1431198 7355.5728
+28822.80136900954 4.1432772 7355.9663
+28823.80136905704 4.1433558 7355.7695
+28824.80136910453 4.1433558 7355.7695
+28825.80136915203 4.1433954 7355.5728
+28826.80136919953 4.143671 7355.9663
+28827.80136924703 4.1435924 7356.1636
+28828.80136929452 4.143671 7355.3765
+28829.80136934202 4.1439466 7356.5571
+28830.80136938952 4.1439857 7356.1636
+28831.80136943702 4.144104 7356.3604
+28832.80136948451 4.1440253 7356.1636
+28833.80136953201 4.1441827 7356.3604
+28834.80136957951 4.1442223 7356.5571
+28835.80136962701 4.1443796 7356.5571
+28836.8013696745 4.1444583 7355.9663
+28837.801369722 4.1444979 7355.7695
+28838.8013697695 4.1446157 7355.5728
+28839.801369817 4.1447339 7356.3604
+28840.80136986449 4.1447735 7355.3765
+28841.80136991199 4.1448126 7356.9502
+28842.80136995949 4.1449308 7355.9663
+28843.80137000699 4.1450095 7355.7695
+28844.80137005448 4.1450095 7356.3604
+28845.80137010198 4.1452456 7355.7695
+28846.80137014948 4.1453638 7355.7695
+28847.80137019698 4.1452851 7355.9663
+28848.80137024447 4.1454821 7356.7539
+28849.80137029197 4.1454425 7355.3765
+28850.80137033947 4.145679 7355.5728
+28851.80137038697 4.1457968 7356.1636
+28852.80137043446 4.1458364 7356.3604
+28853.80137048196 4.1459546 7355.5728
+28854.80137052946 4.1458755 7355.7695
+28855.80137057696 4.1461511 7355.7695
+28856.80137062445 4.1460724 7355.7695
+28857.80137067195 4.1463089 7355.5728
+28858.80137071945 4.1462297 7355.7695
+28859.80137076695 4.1463876 7355.9663
+28860.80137081444 4.1464663 7355.9663
+28861.80137086194 4.1464663 7356.9502
+28862.80137090944 4.1466236 7356.1636
+28863.80137095694 4.1466632 7354.7856
+28864.80137100443 4.1469388 7355.7695
+28865.80137105193 4.1467419 7355.9663
+28866.80137109943 4.1468992 7355.5728
+28867.80137114692 4.1469388 7355.9663
+28868.80137119442 4.1471748 7355.9663
+28869.80137124192 4.1472144 7356.3604
+28870.80137128942 4.1472144 7355.9663
+28871.80137133691 4.1472931 7356.7539
+28872.80137138441 4.1474109 7355.9663
+28873.80137143191 4.1473718 7356.5571
+28874.80137147941 4.1475687 7355.5728
+28875.8013715269 4.1477261 7354.9824
+28876.8013715744 4.1477261 7355.5728
+28877.8013716219 4.1478443 7356.3604
+28878.8013716694 4.1478443 7355.7695
+28879.80137171689 4.1480017 7356.5571
+28880.80137176439 4.1480017 7356.5571
+28881.80137181189 4.1481199 7355.3765
+28882.80137185939 4.1482773 7356.5571
+28883.80137190688 4.1482773 7356.7539
+28884.80137195438 4.1483164 7355.5728
+28885.80137200188 4.1484742 7356.5571
+28886.80137204938 4.1485529 7355.7695
+28887.80137209687 4.1487103 7355.9663
+28888.80137214437 4.1487103 7355.9663
+28889.80137219187 4.1487498 7355.9663
+28890.80137223937 4.149025 7356.5571
+28891.80137228686 4.1489463 7356.3604
+28892.80137233436 4.1491041 7355.5728
+28893.80137238186 4.1491828 7355.5728
+28894.80137242936 4.1492219 7355.3765
+28895.80137247685 4.1493402 7356.5571
+28896.80137252435 4.1494188 7355.7695
+28897.80137257185 4.1494975 7355.9663
+28898.80137261935 4.1496553 7356.1636
+28899.80137266684 4.1496158 7355.7695
+28900.80137271434 4.1497731 7356.3604
+28901.80137276184 4.1498914 7355.7695
+28902.80137280934 4.1499701 7355.9663
+28903.80137285683 4.1499701 7356.3604
+28904.80137290433 4.1500487 7356.1636
+28905.80137295183 4.1502061 7356.3604
+28906.80137299933 4.1503243 7355.1797
+28907.80137304682 4.1504426 7355.7695
+28908.80137309432 4.1505213 7356.7539
+28909.80137314182 4.1506395 7355.5728
+28910.80137318932 4.1507182 7356.7539
+28911.80137323681 4.1506786 7355.7695
+28912.80137328431 4.150836 7355.9663
+28913.80137333181 4.1509542 7355.9663
+28914.80137337931 4.1509938 7355.5728
+28915.8013734268 4.1511512 7356.7539
+28916.8013734743 4.1512299 7356.3604
+28917.8013735218 4.1512694 7356.1636
+28918.80137356929 4.1514268 7355.9663
+28919.80137361679 4.1514268 7356.1636
+28920.80137366429 4.1516237 7356.7539
+28921.80137371179 4.1516237 7354.9824
+28922.80137375928 4.1517024 7356.1636
+28923.80137380678 4.1518598 7356.1636
+28924.80137385428 4.1518207 7356.7539
+28925.80137390178 4.1519384 7356.3604
+28926.80137394927 4.1520171 7355.7695
+28927.80137399677 4.1521749 7356.1636
+28928.80137404427 4.1520958 7355.7695
+28929.80137409177 4.1523323 7355.7695
+28930.80137413926 4.1523323 7356.3604
+28931.80137418676 4.1524506 7356.1636
+28932.80137423426 4.1524897 7355.1797
+28933.80137428176 4.152647 7356.1636
+28934.80137432925 4.1527257 7355.5728
+28935.80137437675 4.1528049 7355.1797
+28936.80137442425 4.1529226 7356.1636
+28937.80137447175 4.1529226 7356.3604
+28938.80137451924 4.1530013 7356.1636
+28939.80137456674 4.1530409 7356.3604
+28940.80137461424 4.1531196 7356.1636
+28941.80137466174 4.1532378 7356.3604
+28942.80137470923 4.1533952 7355.5728
+28943.80137475673 4.1533952 7355.7695
+28944.80137480423 4.1535525 7356.3604
+28945.80137485173 4.1535525 7355.9663
+28946.80137489922 4.1535525 7355.5728
+28947.80137494672 4.1536708 7355.9663
+28948.80137499422 4.1537495 7355.3765
+28949.80137504172 4.1538677 7355.5728
+28950.80137508921 4.1538677 7355.9663
+28951.80137513671 4.1539464 7356.5571
+28952.80137518421 4.1541038 7355.9663
+28953.80137523171 4.1541824 7355.3765
+28954.8013752792 4.1543403 7355.3765
+28955.8013753267 4.1543007 7356.5571
+28956.8013753742 4.1544189 7355.7695
+28957.8013754217 4.154458 7355.9663
+28958.80137546919 4.154458 7355.9663
+28959.80137551669 4.1546159 7355.9663
+28960.80137556419 4.1547337 7355.9663
+28961.80137561169 4.1548519 7355.9663
+28962.80137565918 4.1550093 7356.7539
+28963.80137570668 4.1549306 7355.9663
+28964.80137575418 4.1550879 7356.5571
+28965.80137580168 4.1552062 7355.3765
+28966.80137584917 4.1551666 7355.7695
+28967.80137589667 4.1553245 7355.1797
+28968.80137594417 4.1553636 7356.9502
+28969.80137599166 4.1555605 7354.9824
+28970.80137603916 4.1556001 7356.3604
+28971.80137608666 4.1556001 7354.9824
+28972.80137613416 4.1556787 7356.7539
+28973.80137618165 4.1557965 7356.3604
+28974.80137622915 4.1559544 7356.7539
+28975.80137627665 4.1559544 7355.5728
+28976.80137632415 4.1560721 7355.9663
+28977.80137637164 4.156033 7356.1636
+28978.80137641914 4.1563478 7356.1636
+28979.80137646664 4.1563478 7356.5571
+28980.80137651414 4.1563873 7355.7695
+28981.80137656163 4.1563478 7356.1636
+28982.80137660913 4.156466 7355.5728
+28983.80137665663 4.1565056 7355.9663
+28984.80137670413 4.1566629 7356.3604
+28985.80137675162 4.1567416 7356.1636
+28986.80137679912 4.1567812 7355.9663
+28987.80137684662 4.1568599 7355.5728
+28988.80137689412 4.1569386 7356.1636
+28989.80137694161 4.1570959 7355.9663
+28990.80137698911 4.1570568 7355.9663
+28991.80137703661 4.1571355 7355.5728
+28992.80137708411 4.1572928 7355.9663
+28993.8013771316 4.1574502 7355.9663
+28994.8013771791 4.1574502 7356.5571
+28995.8013772266 4.1575289 7355.7695
+28996.8013772741 4.1574898 7355.7695
+28997.80137732159 4.1576471 7356.3604
+28998.80137736909 4.1577654 7356.3604
+28999.80137741659 4.1578441 7355.7695
+29000.80137746409 4.1579227 7355.9663
+29001.80137751158 4.1579618 7355.3765
+29002.80137755908 4.158041 7355.9663
+29003.80137760658 4.1581197 7355.9663
+29004.80137765408 4.1581588 7355.5728
+29005.80137770157 4.1581984 7356.1636
+29006.80137774907 4.1583166 7356.1636
+29007.80137779657 4.1584344 7356.1636
+29008.80137784407 4.1585131 7356.1636
+29009.80137789156 4.1585131 7355.9663
+29010.80137793906 4.1585922 7355.7695
+29011.80137798656 4.1587496 7356.1636
+29012.80137803406 4.1588283 7356.1636
+29013.80137808155 4.1588674 7355.7695
+29014.80137812905 4.1589069 7355.3765
+29015.80137817655 4.1590252 7356.1636
+29016.80137822405 4.1592221 7356.3604
+29017.80137827154 4.1591825 7355.9663
+29018.80137831904 4.1593795 7356.3604
+29019.80137836654 4.1593795 7356.3604
+29020.80137841403 4.1594186 7355.9663
+29021.80137846153 4.1594582 7356.1636
+29022.80137850903 4.1594973 7356.3604
+29023.80137855653 4.1596551 7356.1636
+29024.80137860402 4.1596942 7355.5728
+29025.80137865152 4.159852 7357.1475
+29026.80137869902 4.1598911 7356.3604
+29027.80137874652 4.1599698 7355.7695
+29028.80137879401 4.1599698 7356.1636
+29029.80137884151 4.1601272 7356.9502
+29030.80137888901 4.1600094 7355.7695
+29031.80137893651 4.1601667 7356.1636
+29032.801378984 4.1603241 7355.1797
+29033.8013790315 4.1603637 7356.3604
+29034.801379079 4.1604028 7355.3765
+29035.8013791265 4.1605606 7356.3604
+29036.80137917399 4.160521 7356.1636
+29037.80137922149 4.1605997 7356.7539
+29038.80137926899 4.1607575 7355.5728
+29039.80137931649 4.1607966 7355.5728
+29040.80137936398 4.1609149 7355.9663
+29041.80137941148 4.1609149 7356.7539
+29042.80137945898 4.1610327 7356.1636
+29043.80137950648 4.1610723 7355.7695
+29044.80137955397 4.1612296 7355.9663
+29045.80137960147 4.1611118 7355.9663
+29046.80137964897 4.1612692 7355.9663
+29047.80137969647 4.1614661 7356.3604
+29048.80137974396 4.1615052 7356.7539
+29049.80137979146 4.1615052 7356.3604
+29050.80137983896 4.1615839 7355.3765
+29051.80137988646 4.1616626 7356.1636
+29052.80137993395 4.1617022 7355.3765
+29053.80137998145 4.1617808 7356.7539
+29054.80138002895 4.1619382 7355.9663
+29055.80138007645 4.1619778 7355.7695
+29056.80138012394 4.1620564 7356.7539
+29057.80138017144 4.1620564 7356.3604
+29058.80138021894 4.1621351 7354.7856
+29059.80138026644 4.1624107 7355.7695
+29060.80138031393 4.1623321 7355.9663
+29061.80138036143 4.1624894 7356.3604
+29062.80138040893 4.1626077 7355.5728
+29063.80138045643 4.1626077 7356.3604
+29064.80138050392 4.1626472 7356.1636
+29065.80138055142 4.162765 7356.1636
+29066.80138059892 4.1628046 7355.9663
+29067.80138064642 4.1629229 7355.9663
+29068.80138069391 4.162962 7355.7695
+29069.80138074141 4.162962 7356.5571
+29070.80138078891 4.163198 7355.9663
+29071.8013808364 4.1631193 7355.9663
+29072.8013808839 4.1632771 7355.7695
+29073.8013809314 4.1632771 7356.5571
+29074.8013809789 4.1632771 7355.9663
+29075.80138102639 4.1633949 7356.5571
+29076.80138107389 4.1635132 7355.9663
+29077.80138112139 4.1636705 7356.7539
+29078.80138116889 4.1635919 7356.3604
+29079.80138121638 4.1637888 7356.1636
+29080.80138126388 4.1637492 7356.7539
+29081.80138131138 4.1639071 7356.1636
+29082.80138135888 4.1639857 7356.3604
+29083.80138140637 4.1640644 7355.7695
+29084.80138145387 4.1640644 7355.7695
+29085.80138150137 4.1641827 7356.1636
+29086.80138154887 4.1643004 7356.9502
+29087.80138159636 4.16434 7356.1636
+29088.80138164386 4.1644583 7355.1797
+29089.80138169136 4.164537 7355.9663
+29090.80138173886 4.164537 7355.9663
+29091.80138178635 4.1646156 7355.1797
+29092.80138183385 4.1646547 7356.7539
+29093.80138188135 4.1648912 7356.1636
+29094.80138192885 4.1649699 7355.7695
+29095.80138197634 4.1649699 7356.1636
+29096.80138202384 4.1649303 7355.5728
+29097.80138207134 4.1650486 7356.7539
+29098.80138211884 4.1651273 7356.7539
+29099.80138216633 4.1652846 7356.1636
+29100.80138221383 4.1652455 7354.9824
+29101.80138226133 4.1654029 7356.5571
+29102.80138230883 4.1654029 7356.1636
+29103.80138235632 4.1654816 7356.3604
+29104.80138240382 4.1656389 7355.9663
+29105.80138245132 4.1656389 7356.5571
+29106.80138249882 4.1656785 7356.1636
+29107.80138254631 4.1657968 7356.1636
+29108.80138259381 4.1658754 7355.1797
+29109.80138264131 4.1659541 7355.7695
+29110.80138268881 4.1660328 7356.1636
+29111.8013827363 4.166151 7355.9663
+29112.8013827838 4.1661901 7355.1797
+29113.8013828313 4.1662297 7355.9663
+29114.8013828788 4.1662688 7355.1797
+29115.80138292629 4.166348 7356.3604
+29116.80138297379 4.1663871 7356.3604
+29117.80138302129 4.1665053 7355.3765
+29118.80138306879 4.1665444 7355.5728
+29119.80138311628 4.1666627 7355.9663
+29120.80138316378 4.1666627 7356.3604
+29121.80138321128 4.1668596 7357.3442
+29122.80138325877 4.1668596 7356.5571
+29123.80138330627 4.1668987 7355.9663
+29124.80138335377 4.167017 7357.3442
+29125.80138340127 4.1670957 7356.7539
+29126.80138344876 4.1671352 7356.7539
+29127.80138349626 4.1671743 7356.1636
+29128.80138354376 4.1672139 7356.1636
+29129.80138359126 4.1672926 7356.1636
+29130.80138363875 4.1672926 7355.5728
+29131.80138368625 4.1674109 7355.9663
+29132.80138373375 4.1675682 7356.1636
+29133.80138378125 4.1676078 7355.7695
+29134.80138382874 4.1676865 7356.3604
+29135.80138387624 4.1677651 7356.1636
+29136.80138392374 4.1677651 7355.5728
+29137.80138397124 4.1678834 7355.9663
+29138.80138401873 4.1678834 7357.3442
+29139.80138406623 4.1680799 7356.7539
+29140.80138411373 4.1680408 7355.3765
+29141.80138416123 4.1680408 7355.5728
+29142.80138420872 4.1680799 7355.7695
+29143.80138425622 4.168159 7356.3604
+29144.80138430372 4.1682377 7356.1636
+29145.80138435122 4.1683555 7356.3604
+29146.80138439871 4.1684341 7355.3765
+29147.80138444621 4.1684341 7356.1636
+29148.80138449371 4.1685133 7356.1636
+29149.80138454121 4.1685524 7355.7695
+29150.8013845887 4.1685524 7356.1636
+29151.8013846362 4.1687098 7356.3604
+29152.8013846837 4.1687493 7355.7695
+29153.8013847312 4.168828 7355.7695
+29154.80138477869 4.1689067 7356.3604
+29155.80138482619 4.1689463 7356.3604
+29156.80138487369 4.169064 7356.7539
+29157.80138492119 4.1691036 7356.7539
+29158.80138496868 4.1691823 7355.9663
+29159.80138501618 4.1691823 7356.5571
+29160.80138506368 4.169261 7355.9663
+29161.80138511118 4.1693397 7356.5571
+29162.80138515867 4.1693792 7355.1797
+29163.80138520617 4.1694975 7355.7695
+29164.80138525367 4.1696153 7356.5571
+29165.80138530117 4.1695762 7355.7695
+29166.80138534866 4.1696548 7356.3604
+29167.80138539616 4.1697731 7356.3604
+29168.80138544366 4.1698518 7355.7695
+29169.80138549116 4.1698518 7355.7695
+29170.80138553865 4.1698909 7356.7539
+29171.80138558615 4.1700091 7355.7695
+29172.80138563365 4.1700487 7356.1636
+29173.80138568114 4.1700878 7355.5728
+29174.80138572864 4.1700878 7356.3604
+29175.80138577614 4.1702452 7355.5728
+29176.80138582364 4.1702452 7355.7695
+29177.80138587113 4.1703243 7355.9663
+29178.80138591863 4.1705208 7355.5728
+29179.80138596613 4.170403 7355.5728
+29180.80138601363 4.1705604 7355.5728
+29181.80138606112 4.1705995 7356.5571
+29182.80138610862 4.170639 7355.5728
+29183.80138615612 4.1707177 7354.7856
+29184.80138620362 4.1707573 7356.5571
+29185.80138625111 4.1709146 7355.7695
+29186.80138629861 4.170836 7355.5728
+29187.80138634611 4.1709542 7355.5728
+29188.80138639361 4.1709542 7355.9663
+29189.8013864411 4.1711507 7356.1636
+29190.8013864886 4.1711116 7355.9663
+29191.8013865361 4.1711903 7356.7539
+29192.8013865836 4.1713476 7356.3604
+29193.80138663109 4.1713476 7356.5571
+29194.80138667859 4.1713085 7356.3604
+29195.80138672609 4.1713872 7356.1636
+29196.80138677359 4.1714659 7356.3604
+29197.80138682108 4.1715446 7357.1475
+29198.80138686858 4.1717019 7355.9663
+29199.80138691608 4.1716232 7355.1797
+29200.80138696358 4.1717415 7356.3604
+29201.80138701107 4.1716628 7355.9663
+29202.80138705857 4.1718202 7356.5571
+29203.80138710607 4.1719384 7356.1636
+29204.80138715357 4.1720171 7355.9663
+29205.80138720106 4.1719775 7355.5728
+29206.80138724856 4.1720562 7355.1797
+29207.80138729606 4.1721745 7355.7695
+29208.80138734356 4.1721745 7355.3765
+29209.80138739105 4.172214 7356.5571
+29210.80138743855 4.1722927 7356.1636
+29211.80138748605 4.1722927 7356.3604
+29212.80138753355 4.1724501 7356.3604
+29213.80138758104 4.1724896 7356.7539
+29214.80138762854 4.172647 7355.9663
+29215.80138767604 4.172647 7356.9502
+29216.80138772354 4.1726861 7356.5571
+29217.80138777103 4.1727257 7355.9663
+29218.80138781853 4.1727648 7356.3604
+29219.80138786603 4.1729226 7355.9663
+29220.80138791353 4.1728439 7355.5728
+29221.80138796102 4.1730404 7355.9663
+29222.80138800852 4.1729617 7356.7539
+29223.80138805602 4.1730013 7355.9663
+29224.80138810351 4.1731586 7356.1636
+29225.80138815101 4.1731982 7355.3765
+29226.80138819851 4.1731982 7356.9502
+29227.80138824601 4.1732373 7356.5571
+29228.8013882935 4.1731982 7355.9663
+29229.801388341 4.1733556 7355.5728
+29230.8013883885 4.1734738 7356.1636
+29231.801388436 4.1735129 7355.9663
+29232.80138848349 4.1735129 7355.7695
+29233.80138853099 4.1735916 7356.7539
+29234.80138857849 4.1737885 7355.9663
+29235.80138862599 4.1737494 7355.1797
+29236.80138867348 4.1739459 7355.5728
+29237.80138872098 4.1738281 7355.9663
+29238.80138876848 4.1737885 7355.5728
+29239.80138881598 4.1738672 7355.9663
+29240.80138886347 4.1740251 7355.7695
+29241.80138891097 4.1739855 7356.5571
+29242.80138895847 4.1740642 7356.1636
+29243.80138900597 4.1742611 7356.9502
+29244.80138905346 4.1743398 7356.1636
+29245.80138910096 4.1743398 7355.7695
+29246.80138914846 4.1744184 7355.9663
+29247.80138919596 4.1744184 7355.5728
+29248.80138924345 4.1744184 7356.1636
+29249.80138929095 4.1746154 7356.7539
+29250.80138933845 4.1744971 7355.9663
+29251.80138938595 4.174655 7355.5728
+29252.80138943344 4.1746941 7356.1636
+29253.80138948094 4.174891 7355.5728
+29254.80138952844 4.174891 7356.3604
+29255.80138957594 4.174891 7355.9663
+29256.80138962343 4.1749306 7355.7695
+29257.80138967093 4.1749697 7356.3604
+29258.80138971843 4.175127 7355.5728
+29259.80138976593 4.1752057 7356.5571
+29260.80138981342 4.175127 7355.9663
+29261.80138986092 4.1752849 7356.1636
+29262.80138990842 4.1752453 7356.3604
+29263.80138995592 4.175324 7355.5728
+29264.80139000341 4.175324 7355.3765
+29265.80139005091 4.1754026 7356.7539
+29266.80139009841 4.1755605 7355.3765
+29267.80139014591 4.1755605 7355.5728
+29268.8013901934 4.1756783 7355.3765
+29269.8013902409 4.1757178 7356.9502
+29270.8013902884 4.1757178 7355.3765
+29271.8013903359 4.1758356 7356.9502
+29272.80139038339 4.1758752 7356.1636
+29273.80139043089 4.1759539 7356.1636
+29274.80139047839 4.1760325 7356.3604
+29275.80139052588 4.1761112 7355.7695
+29276.80139057338 4.1761112 7356.5571
+29277.80139062088 4.1761508 7355.9663
+29278.80139066838 4.1762295 7356.1636
+29279.80139071587 4.1762295 7355.9663
+29280.80139076337 4.1762691 7356.7539
+29281.80139081087 4.176466 7355.5728
+29282.80139085837 4.1764264 7355.5728
+29283.80139090586 4.1765051 7355.9663
+29284.80139095336 4.1766624 7355.9663
+29285.80139100086 4.176702 7355.5728
+29286.80139104836 4.1768203 7355.5728
+29287.80139109585 4.1766624 7355.5728
+29288.80139114335 4.176899 7355.5728
+29289.80139119085 4.176899 7356.3604
+29290.80139123835 4.1769381 7355.5728
+29291.80139128584 4.1769776 7354.9824
+29292.80139133334 4.1769381 7356.5571
+29293.80139138084 4.1770167 7356.5571
+29294.80139142834 4.177135 7356.1636
+29295.80139147583 4.1773319 7355.1797
+29296.80139152333 4.1772137 7356.1636
+29297.80139157083 4.1772137 7356.3604
+29298.80139161833 4.1774502 7356.5571
+29299.80139166582 4.177371 7355.5728
+29300.80139171332 4.1773319 7356.3604
+29301.80139176082 4.1774893 7356.7539
+29302.80139180832 4.1775289 7356.5571
+29303.80139185581 4.1776466 7356.5571
+29304.80139190331 4.1777258 7356.1636
+29305.80139195081 4.1776862 7355.5728
+29306.80139199831 4.1776466 7355.9663
+29307.8013920458 4.1779222 7355.7695
+29308.8013920933 4.1778831 7356.1636
+29309.8013921408 4.1778045 7355.9663
+29310.8013921883 4.1779222 7355.7695
+29311.80139223579 4.1781588 7355.5728
+29312.80139228329 4.1781588 7356.3604
+29313.80139233079 4.1781979 7356.3604
+29314.80139237829 4.1781979 7355.5728
+29315.80139242578 4.1783161 7355.5728
+29316.80139247328 4.1783557 7355.9663
+29317.80139252078 4.1783161 7355.7695
+29318.80139256828 4.1785131 7355.7695
+29319.80139261577 4.1785131 7355.5728
+29320.80139266327 4.1785917 7356.3604
+29321.80139271077 4.1786313 7355.7695
+29322.80139275827 4.1786313 7355.7695
+29323.80139280576 4.1786313 7355.9663
+29324.80139285326 4.1787887 7355.9663
+29325.80139290076 4.1787887 7356.1636
+29326.80139294825 4.178946 7356.5571
+29327.80139299575 4.1789064 7354.9824
+29328.80139304325 4.1788278 7355.9663
+29329.80139309075 4.1789856 7355.9663
+29330.80139313824 4.1790643 7356.5571
+29331.80139318574 4.179143 7356.7539
+29332.80139323324 4.1791034 7354.7856
+29333.80139328074 4.1792612 7355.7695
+29334.80139332823 4.1793003 7356.1636
+29335.80139337573 4.179379 7355.9663
+29336.80139342323 4.179379 7355.3765
+29337.80139347073 4.1795759 7356.3604
+29338.80139351822 4.1794577 7355.9663
+29339.80139356572 4.1795363 7356.3604
+29340.80139361322 4.1797333 7356.3604
+29341.80139366072 4.1796155 7356.7539
+29342.80139370821 4.1797333 7356.1636
+29343.80139375571 4.1797729 7355.9663
+29344.80139380321 4.179812 7356.7539
+29345.80139385071 4.1799698 7356.3604
+29346.8013938982 4.1799698 7355.9663
+29347.8013939457 4.1800876 7356.1636
+29348.8013939932 4.1800485 7355.9663
+29349.8013940407 4.1801667 7356.1636
+29350.80139408819 4.1801271 7356.7539
+29351.80139413569 4.1802058 7355.7695
+29352.80139418319 4.1802454 7357.3442
+29353.80139423069 4.1804028 7355.3765
+29354.80139427818 4.1804028 7355.3765
+29355.80139432568 4.1804814 7354.9824
+29356.80139437318 4.1803632 7356.3604
+29357.80139442068 4.1806388 7355.9663
+29358.80139446817 4.1805601 7355.3765
+29359.80139451567 4.1807175 7355.7695
+29360.80139456317 4.1807966 7356.9502
+29361.80139461067 4.1807966 7355.3765
+29362.80139465816 4.1808753 7356.3604
+29363.80139470566 4.1808753 7355.7695
+29364.80139475316 4.180954 7355.7695
+29365.80139480066 4.1810327 7355.7695
+29366.80139484815 4.1810327 7356.1636
+29367.80139489565 4.1809931 7356.1636
+29368.80139494315 4.1811113 7355.9663
+29369.80139499065 4.1811113 7355.7695
+29370.80139503814 4.1814265 7355.1797
+29371.80139508564 4.1813474 7356.1636
+29372.80139513314 4.1813474 7356.1636
+29373.80139518064 4.1813474 7355.9663
+29374.80139522813 4.1814265 7355.1797
+29375.80139527563 4.1814265 7355.5728
+29376.80139532313 4.1814265 7355.9663
+29377.80139537063 4.1815839 7355.1797
+29378.80139541812 4.181623 7355.7695
+29379.80139546562 4.181623 7355.9663
+29380.80139551312 4.1817412 7355.7695
+29381.80139556061 4.1817017 7355.7695
+29382.80139560811 4.1818199 7355.9663
+29383.80139565561 4.1818986 7356.1636
+29384.80139570311 4.1818986 7355.9663
+29385.8013957506 4.1819773 7356.9502
+29386.8013957981 4.1819382 7356.3604
+29387.8013958456 4.1820564 7355.1797
+29388.8013958931 4.1820955 7356.1636
+29389.80139594059 4.1820955 7355.9663
+29390.80139598809 4.1821351 7355.9663
+29391.80139603559 4.1822138 7356.7539
+29392.80139608309 4.182332 7355.3765
+29393.80139613058 4.1823711 7355.5728
+29394.80139617808 4.1824107 7355.5728
+29395.80139622558 4.1824498 7355.9663
+29396.80139627308 4.1824498 7356.3604
+29397.80139632057 4.1823711 7355.7695
+29398.80139636807 4.1824894 7355.5728
+29399.80139641557 4.1826468 7357.3442
+29400.80139646307 4.1827254 7356.5571
+29401.80139651056 4.1827254 7355.3765
+29402.80139655806 4.1826863 7355.7695
+29403.80139660556 4.1828828 7356.1636
+29404.80139665306 4.1828828 7355.5728
+29405.80139670055 4.1828437 7355.9663
+29406.80139674805 4.1829619 7355.5728
+29407.80139679555 4.1830797 7355.1797
+29408.80139684305 4.183001 7355.9663
+29409.80139689054 4.1831193 7355.3765
+29410.80139693804 4.1831584 7355.9663
+29411.80139698554 4.1832371 7355.7695
+29412.80139703304 4.1831584 7356.3604
+29413.80139708053 4.1832767 7356.5571
+29414.80139712803 4.1833553 7356.1636
+29415.80139717553 4.1833553 7355.9663
+29416.80139722303 4.1833553 7356.3604
+29417.80139727052 4.1835127 7355.7695
+29418.80139731802 4.1835523 7356.5571
+29419.80139736552 4.1835918 7356.9502
+29420.80139741302 4.1836309 7355.7695
+29421.80139746051 4.1836309 7355.5728
+29422.80139750801 4.1836705 7356.1636
+29423.80139755551 4.1837883 7356.1636
+29424.80139760301 4.1839066 7356.7539
+29425.8013976505 4.1839066 7355.5728
+29426.801397698 4.1840248 7354.9824
+29427.8013977455 4.1839461 7356.5571
+29428.801397793 4.1840248 7356.1636
+29429.80139784049 4.1840248 7355.3765
+29430.80139788799 4.1841822 7356.3604
+29431.80139793549 4.1841035 7354.9824
+29432.80139798298 4.1841426 7355.7695
+29433.80139803048 4.1842608 7355.9663
+29434.80139807798 4.1842608 7355.5728
+29435.80139812548 4.1843791 7355.5728
+29436.80139817297 4.1843004 7355.9663
+29437.80139822047 4.1844182 7355.9663
+29438.80139826797 4.1843791 7355.9663
+29439.80139831547 4.1844974 7356.5571
+29440.80139836296 4.1844974 7355.3765
+29441.80139841046 4.184576 7355.3765
+29442.80139845796 4.1846151 7356.3604
+29443.80139850546 4.1846547 7355.7695
+29444.80139855295 4.1848121 7355.3765
+29445.80139860045 4.1846547 7356.1636
+29446.80139864795 4.1847334 7355.9663
+29447.80139869545 4.1848121 7354.9824
+29448.80139874294 4.1848121 7356.1636
+29449.80139879044 4.1849303 7355.5728
+29450.80139883794 4.1849694 7355.9663
+29451.80139888544 4.185009 7356.3604
+29452.80139893293 4.1850481 7356.7539
+29453.80139898043 4.1851273 7356.1636
+29454.80139902793 4.1851273 7355.9663
+29455.80139907543 4.1852846 7356.1636
+29456.80139912292 4.1853633 7355.3765
+29457.80139917042 4.185245 7355.7695
+29458.80139921792 4.1854815 7355.9663
+29459.80139926542 4.1854815 7356.3604
+29460.80139931291 4.1854029 7356.3604
+29461.80139936041 4.1855993 7355.7695
+29462.80139940791 4.1855206 7356.5571
+29463.80139945541 4.1855602 7356.3604
+29464.8013995029 4.1855206 7356.3604
+29465.8013995504 4.1857572 7355.7695
+29466.8013995979 4.1857176 7356.5571
+29467.8013996454 4.185678 7355.7695
+29468.80139969289 4.1858749 7356.1636
+29469.80139974039 4.1858358 7355.9663
+29470.80139978789 4.1859536 7356.1636
+29471.80139983539 4.1859536 7355.7695
+29472.80139988288 4.1859932 7356.1636
+29473.80139993038 4.1859932 7356.5571
+29474.80139997788 4.1859932 7354.9824
+29475.80140002538 4.1861901 7355.7695
+29476.80140007287 4.1862292 7355.9663
+29477.80140012037 4.1862688 7355.9663
+29478.80140016787 4.1863871 7355.9663
+29479.80140021537 4.1864262 7355.5728
+29480.80140026286 4.1863871 7356.5571
+29481.80140031036 4.1865444 7356.5571
+29482.80140035786 4.1864262 7356.1636
+29483.80140040535 4.1865444 7356.7539
+29484.80140045285 4.1865835 7355.9663
+29485.80140050035 4.1867018 7356.1636
+29486.80140054785 4.1867414 7356.5571
+29487.80140059534 4.1867805 7357.1475
+29488.80140064284 4.18682 7356.1636
+29489.80140069034 4.1868591 7355.7695
+29490.80140073784 4.1868591 7355.3765
+29491.80140078533 4.1869774 7356.5571
+29492.80140083283 4.1870561 7356.1636
+29493.80140088033 4.1870561 7355.3765
+29494.80140092783 4.1870956 7356.3604
+29495.80140097532 4.187253 7355.7695
+29496.80140102282 4.1872926 7355.7695
+29497.80140107032 4.1872926 7357.3442
+29498.80140111782 4.1872134 7355.7695
+29499.80140116531 4.1874499 7356.7539
+29500.80140121281 4.1873713 7356.3604
+29501.80140126031 4.1874499 7355.9663
+29502.80140130781 4.1875286 7356.7539
+29503.8014013553 4.1876469 7356.3604
+29504.8014014028 4.1876073 7356.3604
+29505.8014014503 4.187686 7356.3604
+29506.8014014978 4.1876469 7356.1636
+29507.80140154529 4.187686 7355.7695
+29508.80140159279 4.1878433 7356.3604
+29509.80140164029 4.1879616 7356.9502
+29510.80140168779 4.1879616 7355.7695
+29511.80140173528 4.1881189 7355.9663
+29512.80140178278 4.1880403 7355.7695
+29513.80140183028 4.1880798 7355.5728
+29514.80140187778 4.1881981 7356.1636
+29515.80140192527 4.1882372 7355.9663
+29516.80140197277 4.1882372 7355.3765
+29517.80140202027 4.1883554 7356.1636
+29518.80140206777 4.1883159 7356.1636
+29519.80140211526 4.1883554 7356.9502
+29520.80140216276 4.1884341 7356.5571
+29521.80140221026 4.1884732 7355.5728
+29522.80140225776 4.1883945 7356.1636
+29523.80140230525 4.1885524 7355.5728
+29524.80140235275 4.1885524 7355.9663
+29525.80140240025 4.1886702 7356.1636
+29526.80140244775 4.1887097 7355.9663
+29527.80140249524 4.188828 7355.5728
+29528.80140254274 4.1887884 7356.7539
+29529.80140259024 4.188828 7356.3604
+29530.80140263774 4.1889067 7355.9663
+29531.80140268523 4.1889458 7356.3604
+29532.80140273273 4.1889853 7356.1636
+29533.80140278023 4.1891427 7355.9663
+29534.80140282772 4.1889853 7355.7695
+29535.80140287522 4.189064 7355.5728
+29536.80140292272 4.1891823 7355.1797
+29537.80140297022 4.1892214 7355.1797
+29538.80140301771 4.189261 7355.9663
+29539.80140306521 4.1893396 7356.1636
+29540.80140311271 4.1894183 7356.7539
+29541.80140316021 4.1895366 7355.9663
+29542.8014032077 4.1894579 7355.7695
+29543.8014032552 4.189497 7354.9824
+29544.8014033027 4.1896544 7355.5728
+29545.8014033502 4.1896544 7356.1636
+29546.80140339769 4.1896544 7355.9663
+29547.80140344519 4.1896939 7356.3604
+29548.80140349269 4.1897335 7355.9663
+29549.80140354019 4.1898122 7355.5728
+29550.80140358768 4.1898513 7355.5728
+29551.80140363518 4.1897726 7356.7539
+29552.80140368268 4.1898513 7354.5889
+29553.80140373018 4.1899695 7355.7695
+29554.80140377767 4.18993 7356.3604
+29555.80140382517 4.1899695 7355.1797
+29556.80140387267 4.1900878 7355.5728
+29557.80140392017 4.1900878 7355.9663
+29558.80140396766 4.1902056 7356.3604
+29559.80140401516 4.1902056 7356.1636
+29560.80140406266 4.1902843 7356.1636
+29561.80140411016 4.1903634 7354.9824
+29562.80140415765 4.1903238 7356.3604
+29563.80140420515 4.1904025 7356.1636
+29564.80140425265 4.1904812 7356.5571
+29565.80140430015 4.1905599 7355.5728
+29566.80140434764 4.1905599 7356.3604
+29567.80140439514 4.1905994 7356.1636
+29568.80140444264 4.1905599 7355.7695
+29569.80140449014 4.1905994 7355.9663
+29570.80140453763 4.1907177 7355.7695
+29571.80140458513 4.1908355 7355.9663
+29572.80140463263 4.1909537 7356.9502
+29573.80140468013 4.1908355 7355.5728
+29574.80140472762 4.1909537 7356.1636
+29575.80140477512 4.1909933 7355.5728
+29576.80140482262 4.1910324 7356.7539
+29577.80140487012 4.1912689 7356.1636
+29578.80140491761 4.1912293 7356.3604
+29579.80140496511 4.1911898 7355.3765
+29580.80140501261 4.1912689 7355.7695
+29581.80140506011 4.191308 7356.5571
+29582.8014051076 4.1913476 7356.7539
+29583.8014051551 4.1914263 7355.3765
+29584.8014052026 4.1914263 7355.9663
+29585.80140525009 4.1915836 7356.1636
+29586.80140529759 4.1915836 7356.3604
+29587.80140534509 4.191505 7355.9663
+29588.80140539259 4.1916232 7356.3604
+29589.80140544008 4.191741 7355.9663
+29590.80140548758 4.191741 7355.5728
+29591.80140553508 4.1917019 7355.5728
+29592.80140558258 4.1917019 7355.7695
+29593.80140563007 4.1917806 7356.3604
+29594.80140567757 4.1918197 7356.1636
+29595.80140572507 4.1919379 7356.3604
+29596.80140577257 4.1920562 7356.9502
+29597.80140582006 4.1920953 7356.5571
+29598.80140586756 4.192174 7356.3604
+29599.80140591506 4.1920953 7355.7695
+29600.80140596256 4.1920953 7355.9663
+29601.80140601005 4.1922135 7356.9502
+29602.80140605755 4.1922922 7355.9663
+29603.80140610505 4.1922531 7356.3604
+29604.80140615255 4.1923318 7354.9824
+29605.80140620004 4.1923709 7356.9502
+29606.80140624754 4.1924105 7356.3604
+29607.80140629504 4.1924105 7356.5571
+29608.80140634254 4.1926074 7355.7695
+29609.80140639003 4.1925287 7356.5571
+29610.80140643753 4.1925678 7354.9824
+29611.80140648503 4.1926861 7356.3604
+29612.80140653253 4.1926074 7355.9663
+29613.80140658002 4.1927252 7356.7539
+29614.80140662752 4.1927648 7356.1636
+29615.80140667502 4.1928043 7356.9502
+29616.80140672252 4.1928434 7356.3604
+29617.80140677001 4.1928043 7356.5571
+29618.80140681751 4.192883 7356.1636
+29619.80140686501 4.1930404 7356.1636
+29620.80140691251 4.1931586 7355.9663
+29621.80140696 4.193119 7355.5728
+29622.8014070075 4.1930404 7356.5571
+29623.801407055 4.1931977 7355.5728
+29624.8014071025 4.1931977 7356.1636
+29625.80140714999 4.193316 7356.1636
+29626.80140719749 4.1932764 7355.7695
+29627.80140724499 4.1933551 7356.3604
+29628.80140729249 4.193316 7356.7539
+29629.80140733998 4.1934342 7355.3765
+29630.80140738748 4.1934733 7355.9663
+29631.80140743498 4.1935129 7356.1636
+29632.80140748248 4.193552 7356.5571
+29633.80140752997 4.1936307 7356.5571
+29634.80140757747 4.193749 7355.7695
+29635.80140762497 4.1936703 7356.1636
+29636.80140767246 4.1938672 7355.3765
+29637.80140771996 4.1938276 7356.1636
+29638.80140776746 4.1938276 7356.1636
+29639.80140781496 4.1938276 7355.1797
+29640.80140786245 4.1939063 7355.5728
+29641.80140790995 4.193985 7355.1797
+29642.80140795745 4.1939459 7355.1797
+29643.80140800495 4.1940246 7356.9502
+29644.80140805244 4.1940641 7355.7695
+29645.80140809994 4.1941819 7355.3765
+29646.80140814744 4.1942215 7356.3604
+29647.80140819494 4.1941819 7356.1636
+29648.80140824243 4.1943398 7355.9663
+29649.80140828993 4.1943398 7355.1797
+29650.80140833743 4.1943398 7355.9663
+29651.80140838493 4.1944184 7356.1636
+29652.80140843242 4.1944971 7355.5728
+29653.80140847992 4.1944971 7356.1636
+29654.80140852742 4.1945362 7355.9663
+29655.80140857492 4.1945758 7356.1636
+29656.80140862241 4.1946149 7355.3765
+29657.80140866991 4.194694 7356.5571
+29658.80140871741 4.1947331 7355.7695
+29659.80140876491 4.1946545 7355.9663
+29660.8014088124 4.1948514 7356.1636
+29661.8014088599 4.1948514 7356.3604
+29662.8014089074 4.1948514 7356.1636
+29663.8014089549 4.1948905 7355.5728
+29664.80140900239 4.1949301 7355.1797
+29665.80140904989 4.1950483 7355.3765
+29666.80140909739 4.1950874 7356.1636
+29667.80140914489 4.1950874 7355.9663
+29668.80140919238 4.1951661 7355.3765
+29669.80140923988 4.1951661 7355.7695
+29670.80140928738 4.1952057 7355.9663
+29671.80140933488 4.1953239 7355.3765
+29672.80140938237 4.1952448 7356.9502
+29673.80140942987 4.195363 7357.1475
+29674.80140947737 4.1954417 7355.7695
+29675.80140952487 4.1955204 7356.1636
+29676.80140957236 4.1954813 7355.9663
+29677.80140961986 4.1954813 7356.3604
+29678.80140966736 4.19556 7356.3604
+29679.80140971486 4.1955204 7355.7695
+29680.80140976235 4.1956387 7356.1636
+29681.80140980985 4.1956782 7355.5728
+29682.80140985735 4.1956782 7356.3604
+29683.80140990485 4.1957569 7356.3604
+29684.80140995234 4.195796 7355.5728
+29685.80140999984 4.1958356 7355.7695
+29686.80141004734 4.1959143 7356.7539
+29687.80141009483 4.1958356 7355.5728
+29688.80141014233 4.1959538 7356.1636
+29689.80141018983 4.1960716 7356.1636
+29690.80141023733 4.1960716 7355.5728
+29691.80141028482 4.1961503 7355.7695
+29692.80141033232 4.1961112 7356.5571
+29693.80141037982 4.1961112 7356.1636
+29694.80141042732 4.1962686 7356.3604
+29695.80141047481 4.1963472 7356.1636
+29696.80141052231 4.1962686 7355.7695
+29697.80141056981 4.1963472 7356.3604
+29698.80141061731 4.1964655 7355.7695
+29699.8014106648 4.1966228 7356.5571
+29700.8014107123 4.1965837 7356.3604
+29701.8014107598 4.1965837 7355.7695
+29702.8014108073 4.1965837 7355.9663
+29703.80141085479 4.1965442 7356.5571
+29704.80141090229 4.1967015 7355.7695
+29705.80141094979 4.1968198 7356.1636
+29706.80141099729 4.1968594 7355.7695
+29707.80141104478 4.1968594 7355.3765
+29708.80141109228 4.1968198 7355.7695
+29709.80141113978 4.1970558 7355.9663
+29710.80141118728 4.1970558 7355.3765
+29711.80141123477 4.1970954 7356.5571
+29712.80141128227 4.197135 7356.1636
+29713.80141132977 4.1970954 7356.9502
+29714.80141137727 4.1971741 7355.5728
+29715.80141142476 4.1972136 7355.5728
+29716.80141147226 4.1973314 7355.7695
+29717.80141151976 4.197371 7355.5728
+29718.80141156726 4.1974101 7355.9663
+29719.80141161475 4.1974101 7355.7695
+29720.80141166225 4.1974101 7355.7695
+29721.80141170975 4.1975679 7355.3765
+29722.80141175725 4.1975679 7355.9663
+29723.80141180474 4.1976857 7355.3765
+29724.80141185224 4.1976857 7355.5728
+29725.80141189974 4.1977253 7355.7695
+29726.80141194724 4.197804 7355.9663
+29727.80141199473 4.1978827 7356.3604
+29728.80141204223 4.1978827 7357.1475
+29729.80141208973 4.1979222 7355.9663
+29730.80141213723 4.1980405 7355.3765
+29731.80141218472 4.1980009 7356.7539
+29732.80141223222 4.1981192 7356.3604
+29733.80141227972 4.1981192 7356.1636
+29734.80141232722 4.1982369 7356.3604
+29735.80141237471 4.1982369 7356.1636
+29736.80141242221 4.1983552 7355.9663
+29737.80141246971 4.1983156 7355.9663
+29738.8014125172 4.1983156 7356.9502
+29739.8014125647 4.1984339 7356.9502
+29740.8014126122 4.1984735 7356.1636
+29741.8014126597 4.1985912 7356.7539
+29742.80141270719 4.1985912 7355.9663
+29743.80141275469 4.1985521 7355.5728
+29744.80141280219 4.1987095 7356.3604
+29745.80141284969 4.1988277 7356.1636
+29746.80141289718 4.1987882 7355.3765
+29747.80141294468 4.1988277 7356.1636
+29748.80141299218 4.1988277 7355.1797
+29749.80141303968 4.1989455 7356.3604
+29750.80141308717 4.1989064 7355.9663
+29751.80141313467 4.1989455 7355.3765
+29752.80141318217 4.1990247 7355.9663
+29753.80141322967 4.1989851 7355.7695
+29754.80141327716 4.1992211 7355.7695
+29755.80141332466 4.199182 7356.1636
+29756.80141337216 4.1992607 7355.9663
+29757.80141341966 4.1992607 7355.7695
+29758.80141346715 4.1993394 7355.5728
+29759.80141351465 4.1994181 7355.5728
+29760.80141356215 4.1994967 7355.7695
+29761.80141360965 4.1994576 7355.9663
+29762.80141365714 4.1995363 7356.3604
+29763.80141370464 4.1995754 7355.5728
+29764.80141375214 4.199615 7355.9663
+29765.80141379964 4.1996546 7355.5728
+29766.80141384713 4.199851 7355.7695
+29767.80141389463 4.1997724 7355.9663
+29768.80141394213 4.199851 7355.9663
+29769.80141398963 4.1999693 7356.3604
+29770.80141403712 4.1999302 7355.3765
+29771.02141404757 4.2000875 7356.1636
+29771.02341404767 4.2000089 7355.9663
+29771.04141404852 4.2002449 7378.0098
+29772.04141409602 4.2001266 7372.4995
+29773.04141414352 4.2001662 7366.0044
+29774.04141419102 4.200048 7358.9185
+29775.04141423851 4.2002058 7352.8174
+29776.04141428601 4.2001662 7347.5034
+29777.04141433351 4.2002058 7338.6465
+29778.041414381 4.2002058 7334.3169
+29779.0414144285 4.1999693 7329.3965
+29780.041414476 4.2000875 7324.2788
+29781.0414145235 4.2001662 7319.7524
+29782.04141457099 4.2001662 7314.6348
+29783.04141461849 4.2000875 7309.9111
+29784.04141466599 4.2002845 7305.7778
+29785.04141471349 4.200048 7299.0864
+29786.04141476098 4.2001662 7292.001
+29787.04141480848 4.2000875 7287.8682
+29788.04141485598 4.2001662 7284.1284
+29789.04141490348 4.2001266 7279.7983
+29790.04141495097 4.2002058 7273.8936
+29791.04141499847 4.2001266 7267.7925
+29792.04141504597 4.2001662 7260.5103
+29793.04141509347 4.2002449 7257.1646
+29794.04141514096 4.2001662 7251.8501
+29795.04141518846 4.2001266 7248.5044
+29796.04141523596 4.2000875 7241.4189
+29797.04141528346 4.2002058 7239.2539
+29798.04141533095 4.2002845 7233.5459
+29799.04141537845 4.2001662 7231.5781
+29800.04141542595 4.2002058 7225.8701
+29801.04141547345 4.2002058 7220.7534
+29802.04141552094 4.2001662 7216.6196
+29803.04141556844 4.2002449 7213.8647
+29804.04141561594 4.2000089 7209.5342
+29805.04141566344 4.2001662 7204.0234
+29806.04141571093 4.2002058 7198.5127
+29807.04141575843 4.2002058 7195.1665
+29808.04141580593 4.2002058 7191.4272
+29809.04141585343 4.2001266 7187.4907
+29810.04141590092 4.2001662 7183.3579
+29811.04141594842 4.2001662 7177.4536
+29812.04141599592 4.2001662 7173.3198
+29813.04141604342 4.2002058 7173.3198
+29814.04141609091 4.2001662 7168.3994
+29815.04141613841 4.2001662 7164.2666
+29816.04141618591 4.2001662 7157.7715
+29817.04141623341 4.2001662 7153.6382
+29818.0414162809 4.2001662 7154.0317
+29819.0414163284 4.2002058 7149.7021
+29820.0414163759 4.2002058 7143.4038
+29821.0414164234 4.200048 7139.6641
+29822.04141647089 4.2002058 7133.3662
+29823.04141651839 4.2001662 7131.2012
+29824.04141656589 4.2001662 7126.8711
+29825.04141661339 4.2002449 7121.9507
+29826.04141666088 4.2001662 7123.1313
+29827.04141670838 4.2002058 7117.0303
+29828.04141675588 4.2001266 7110.5352
+29829.04141680337 4.2002058 7108.9609
+29830.04141685087 4.2002058 7103.0562
+29831.04141689837 4.2002449 7101.0879
+29832.04141694587 4.2001662 7097.1519
+29833.04141699336 4.2001266 7090.854
+29834.04141704086 4.2001662 7085.7363
+29835.04141708836 4.2001662 7080.2256
+29836.04141713586 4.2001266 7075.3052
+29837.04141718335 4.2001662 7070.3843
+29838.04141723085 4.2001662 7065.4639
+29839.04141727835 4.2001662 7063.2993
+29840.04141732585 4.2002058 7059.166
+29841.04141737334 4.2002058 7055.23
+29842.04141742084 4.2001662 7050.5063
+29843.04141746834 4.2001266 7048.5381
+29844.04141751584 4.2002449 7044.6016
+29845.04141756333 4.2002058 7036.1387
+29846.04141761083 4.2001662 7037.1226
+29847.04141765833 4.2001662 7030.0366
+29848.04141770583 4.2001266 7026.6914
+29849.04141775332 4.2002058 7023.1484
+29850.04141780082 4.2001662 7019.8027
+29851.04141784832 4.2001266 7017.0474
+29852.04141789582 4.2002058 7013.7012
+29853.04141794331 4.2001266 7008.978
+29854.04141799081 4.2001662 7006.6157
+29855.04141803831 4.2002058 7000.5146
+29856.04141808581 4.2002058 6996.5781
+29857.0414181333 4.2002058 6991.8545
+29858.0414181808 4.2002058 6989.6899
+29859.0414182283 4.2001662 6984.9663
+29860.0414182758 4.2002449 6978.8643
+29861.04141832329 4.2001266 6977.6836
+29862.04141837079 4.2002449 6973.1567
+29863.04141841829 4.2001266 6967.0557
+29864.04141846579 4.2001662 6962.5288
+29865.04141851328 4.2001662 6957.2148
+29866.04141856078 4.2001662 6957.0181
+29867.04141860828 4.2002058 6949.145
+29868.04141865578 4.2001266 6947.1768
+29869.04141870327 4.2001662 6944.4214
+29870.04141875077 4.2001662 6936.7456
+29871.04141879827 4.2001266 6937.1392
+29872.04141884577 4.2001662 6933.2031
+29873.04141889326 4.2002058 6927.1016
+29874.04141894076 4.2001662 6922.1812
+29875.04141898826 4.2002449 6919.8193
+29876.04141903576 4.2002449 6917.4575
+29877.04141908325 4.2002058 6910.9629
+29878.04141913075 4.200048 6908.9946
+29879.04141917825 4.2001662 6903.0898
+29880.04141922574 4.2000875 6899.9409
+29881.04141927324 4.2001266 6895.6108
+29882.04141932074 4.2001266 6894.8237
+29883.04141936824 4.2000875 6888.9194
+29884.04141941573 4.2001662 6887.541
+29885.04141946323 4.2002058 6881.8335
+29886.04141951073 4.2002058 6878.4878
+29887.04141955823 4.2001662 6872.5835
+29888.04141960572 4.2001662 6866.8755
+29889.04141965322 4.2002449 6866.8755
+29890.04141970072 4.2001662 6859.5933
+29891.04141974822 4.2001662 6857.2314
+29892.04141979571 4.2002058 6852.7046
+29893.04141984321 4.2002058 6847.7842
+29894.04141989071 4.2002058 6845.0288
+29895.04141993821 4.2002058 6841.2891
+29896.0414199857 4.2000875 6834.7939
+29897.0414200332 4.2001266 6831.645
+29898.0414200807 4.2001662 6829.2837
+29899.0414201282 4.2001662 6825.1499
+29900.04142017569 4.2002058 6818.8521
+29901.04142022319 4.2002058 6818.2617
+29902.04142027069 4.2002449 6811.9639
+29903.04142031819 4.2001662 6805.4688
+29904.04142036568 4.2002845 6806.0591
+29905.04142041318 4.2001662 6799.564
+29906.04142046068 4.2000875 6795.6279
+29907.04142050818 4.2001266 6791.8882
+29908.04142055567 4.2001266 6785.7871
+29909.04142060317 4.2002449 6780.0796
+29910.04142065067 4.2002058 6778.7012
+29911.04142069817 4.2001266 6772.2061
+29912.04142074566 4.2001266 6770.6318
+29913.04142079316 4.2002449 6768.0732
+29914.04142084066 4.2001662 6761.7754
+29915.04142088816 4.2000875 6759.4131
+29916.04142093565 4.2001266 6756.6577
+29917.04142098315 4.2001266 6747.9976
+29918.04142103065 4.2000875 6748.3916
+29919.04142107815 4.2002058 6743.2739
+29920.04142112564 4.2002058 6739.7319
+29921.04142117314 4.2001266 6734.0239
+29922.04142122064 4.2001662 6732.8433
+29923.04142126814 4.2001662 6725.5605
+29924.04142131563 4.2001662 6722.6084
+29925.04142136313 4.2000875 6720.0498
+29926.04142141063 4.2002058 6712.374
+29927.04142145813 4.2001662 6710.4058
+29928.04142150562 4.2002449 6706.666
+29929.04142155312 4.2001266 6704.5015
+29930.04142160062 4.2002058 6699.3843
+29931.04142164811 4.2002058 6696.0381
+29932.04142169561 4.2001266 6689.1494
+29933.04142174311 4.2000089 6689.543
+29934.04142179061 4.2001266 6683.2451
+29935.0414218381 4.200048 6679.8989
+29936.0414218856 4.2000089 6673.7979
+29937.0414219331 4.2001662 6672.2231
+29938.0414219806 4.2002449 6669.4683
+29939.04142202809 4.2002449 6664.7441
+29940.04142207559 4.2001662 6661.9888
+29941.04142212309 4.2001662 6653.1323
+29942.04142217059 4.2002058 6652.9351
+29943.04142221808 4.2001266 6647.4243
+29944.04142226558 4.2002449 6646.834
+29945.04142231308 4.2001662 6642.7007
+29946.04142236058 4.2002449 6638.1738
+29947.04142240807 4.2001662 6633.2534
+29948.04142245557 4.2001662 6627.5459
+29949.04142250307 4.2002058 6623.4126
+29950.04142255057 4.2001266 6622.4287
+29951.04142259806 4.2000875 6619.0825
+29952.04142264556 4.2000089 6613.1782
+29953.04142269306 4.2001662 6610.2256
+29954.04142274056 4.2001266 6608.6509
+29955.04142278805 4.2001662 6605.502
+29956.04142283555 4.2001266 6598.8105
+29957.04142288305 4.2002058 6597.0391
+29958.04142293055 4.2001662 6595.2676
+29959.04142297804 4.2001662 6592.9058
+29960.04142302554 4.2001662 6586.8047
+29961.04142307304 4.2001266 6582.0811
+29962.04142312054 4.2002058 6583.0649
+29963.04142316803 4.2002058 6578.7349
+29964.04142321553 4.2001662 6572.437
+29965.04142326303 4.2001662 6570.4688
+29966.04142331053 4.2001266 6566.1387
+29967.04142335802 4.2002449 6562.793
+29968.04142340552 4.2002058 6560.2344
+29969.04142345302 4.200048 6557.2817
+29970.04142350052 4.2001266 6549.8027
+29971.04142354801 4.2001266 6548.4253
+29972.04142359551 4.2002449 6541.1426
+29973.04142364301 4.2002845 6539.3716
+29974.04142369051 4.2001662 6534.8452
+29975.041423738 4.2001662 6531.3022
+29976.0414237855 4.2000875 6527.7593
+29977.041423833 4.2001662 6525.3975
+29978.0414238805 4.2002058 6517.9185
+29979.04142392799 4.2002058 6516.541
+29980.04142397549 4.2001266 6512.8013
+29981.04142402299 4.2002058 6507.4868
+29982.04142407048 4.2002058 6503.354
+29983.04142411798 4.2001266 6497.8433
+29984.04142416548 4.2002449 6496.269
+29985.04142421298 4.2000875 6490.9546
+29986.04142426047 4.2001662 6486.0342
+29987.04142430797 4.2001662 6483.4751
+29988.04142435547 4.2001662 6480.1299
+29989.04142440297 4.2001662 6473.0439
+29990.04142445046 4.2002058 6471.0757
+29991.04142449796 4.2001662 6467.9268
+29992.04142454546 4.2001266 6462.6133
+29993.04142459296 4.2001266 6459.6602
+29994.04142464045 4.2001662 6456.708
+29995.04142468795 4.2002058 6451.1978
+29996.04142473545 4.2001662 6446.6714
+29997.04142478295 4.2002058 6442.144
+29998.04142483044 4.2001266 6442.144
+29999.04142487794 4.2001266 6434.0752
+30000.04142492544 4.2000875 6430.729
+30001.04142497294 4.2002058 6427.186
+30002.04142502043 4.2001662 6424.2339
+30003.04142506793 4.2002058 6420.8882
+30004.04142511543 4.2000089 6413.9995
+30005.04142516293 4.2002058 6413.8022
+30006.04142521042 4.2001266 6408.8818
+30007.04142525792 4.2001266 6405.1421
+30008.04142530542 4.2000875 6401.0093
+30009.04142535292 4.2001266 6395.8921
+30010.04142540041 4.2002449 6394.7114
+30011.04142544791 4.2000875 6387.2324
+30012.04142549541 4.2002058 6387.6255
+30013.04142554291 4.2000875 6383.0991
+30014.0414255904 4.2001662 6379.5566
+30015.0414256379 4.2002058 6378.1782
+30016.0414256854 4.2001662 6375.0293
+30017.0414257329 4.2001266 6367.9443
+30018.04142578039 4.200048 6364.2046
+30019.04142582789 4.2001662 6363.4175
+30020.04142587539 4.2001662 6359.0874
+30021.04142592289 4.2001662 6356.1353
+30022.04142597038 4.200048 6353.7734
+30023.04142601788 4.2001662 6350.4277
+30024.04142606538 4.2002058 6347.6719
+30025.04142611288 4.2000875 6343.3418
+30026.04142616037 4.2000875 6338.6182
+30027.04142620787 4.2001662 6336.2568
+30028.04142625537 4.2001662 6335.8628
+30029.04142630287 4.2001662 6329.5649
+30030.04142635036 4.2003236 6326.022
+30031.04142639786 4.2002449 6322.873
+30032.04142644536 4.2001266 6318.5425
+30033.04142649286 4.2001662 6315.7876
+30034.04142654035 4.2002449 6314.6064
+30035.04142658785 4.2002449 6310.4736
+30036.04142663535 4.2002449 6303.7817
+30037.04142668284 4.2001662 6302.7974
+30038.04142673034 4.2001266 6299.4521
+30039.04142677784 4.2001266 6293.1533
+30040.04142682534 4.2002845 6294.3345
+30041.04142687283 4.2001662 6286.0684
+30042.04142692033 4.2000875 6283.9028
+30043.04142696783 4.2001266 6283.313
+30044.04142701533 4.2002449 6279.1792
+30045.04142706282 4.2001662 6274.8496
+30046.04142711032 4.2001662 6269.3384
+30047.04142715782 4.2002449 6267.5669
+30048.04142720532 4.2002058 6263.2373
+30049.04142725281 4.2001266 6262.2534
+30050.04142730031 4.2001662 6256.7422
+30051.04142734781 4.2001662 6251.8218
+30052.04142739531 4.2001662 6248.4761
+30053.0414274428 4.2001266 6243.7524
+30054.0414274903 4.2000875 6240.603
+30055.0414275378 4.2001266 6234.6987
+30056.0414275853 4.2002449 6231.5498
+30057.04142763279 4.2000875 6228.4009
+30058.04142768029 4.2001266 6221.9058
+30059.04142772779 4.2001266 6218.7568
+30060.04142777529 4.2000875 6215.8047
+30061.04142782278 4.2001662 6210.687
+30062.04142787028 4.2001662 6207.7349
+30063.04142791778 4.2002449 6202.2236
+30064.04142796528 4.2002449 6197.3032
+30065.04142801277 4.2001662 6194.1543
+30066.04142806027 4.2000875 6189.2339
+30067.04142810777 4.2001662 6185.1011
+30068.04142815527 4.2000875 6183.3296
+30069.04142820276 4.2001662 6180.1807
+30070.04142825026 4.2000875 6175.457
+30071.04142829776 4.2001662 6171.7173
+30072.04142834526 4.2001662 6168.1743
+30073.04142839275 4.2001662 6162.6636
+30074.04142844025 4.2001266 6162.0732
+30075.04142848775 4.2000875 6155.7749
+30076.04142853525 4.2001662 6152.0352
+30077.04142858274 4.2002449 6147.7056
+30078.04142863024 4.2002058 6145.7373
+30079.04142867774 4.2001266 6142.3911
+30080.04142872524 4.2002449 6139.0459
+30081.04142877273 4.2002058 6131.96
+30082.04142882023 4.2001662 6130.3857
+30083.04142886773 4.2002058 6126.646
+30084.04142891523 4.2001266 6123.8906
+30085.04142896272 4.2001662 6119.7578
+30086.04142901022 4.2002845 6112.8691
+30087.04142905772 4.2001266 6109.7197
+30088.04142910521 4.2002058 6108.5391
+30089.04142915271 4.2001662 6103.8154
+30090.04142920021 4.2002449 6096.1392
+30091.04142924771 4.2000875 6092.7935
+30092.0414292952 4.2002058 6090.4316
+30093.0414293427 4.2000875 6085.9053
+30094.0414293902 4.2002058 6081.9683
+30095.0414294377 4.2002449 6079.4102
+30096.04142948519 4.2000875 6074.6865
+30097.04142953269 4.2001266 6069.3721
+30098.04142958019 4.2001662 6066.0264
+30099.04142962769 4.2002449 6062.8774
+30100.04142967518 4.2002449 6060.1221
+30101.04142972268 4.2001662 6058.5474
+30102.04142977018 4.2001662 6051.8555
+30103.04142981768 4.2001662 6047.7227
+30104.04142986517 4.2001662 6044.5737
+30105.04142991267 4.2001662 6038.8657
+30106.04142996017 4.2001662 6034.7324
+30107.04143000767 4.2003236 6030.9927
+30108.04143005516 4.2001662 6026.8599
+30109.04143010266 4.200048 6023.9072
+30110.04143015016 4.2001266 6018.5938
+30111.04143019766 4.200048 6017.2158
+30112.04143024515 4.2001266 6011.1143
+30113.04143029265 4.2002058 6008.1621
+30114.04143034015 4.2001662 6006.3906
+30115.04143038765 4.200048 6002.6514
+30116.04143043514 4.2002058 5997.3369
+30117.04143048264 4.2002449 5993.5977
+30118.04143053014 4.2001266 5992.4165
+30119.04143057764 4.2002449 5988.48
+30120.04143062513 4.2000875 5980.8042
+30121.04143067263 4.2001662 5979.0327
+30122.04143072013 4.2002058 5973.1284
+30123.04143076763 4.2001266 5969.7827
+30124.04143081512 4.2002058 5965.0591
+30125.04143086262 4.2001662 5958.564
+30126.04143091012 4.2002058 5957.7769
+30127.04143095762 4.2002449 5954.2344
+30128.04143100511 4.2002058 5948.5269
+30129.04143105261 4.2001662 5946.7554
+30130.04143110011 4.2001662 5940.4565
+30131.04143114761 4.2002058 5935.9302
+30132.0414311951 4.2002058 5934.5522
+30133.0414312426 4.2002058 5931.2065
+30134.0414312901 4.2002449 5925.6958
+30135.0414313376 4.2001662 5920.1846
+30136.04143138509 4.2001662 5914.6743
+30137.04143143259 4.2001266 5912.1152
+30138.04143148009 4.2000875 5907.3916
+30139.04143152758 4.2001662 5904.6362
+30140.04143157508 4.2002058 5902.4712
+30141.04143162258 4.2002058 5896.5669
+30142.04143167008 4.2001266 5890.4653
+30143.04143171757 4.2001662 5886.7256
+30144.04143176507 4.2001662 5882.9863
+30145.04143181257 4.2000875 5879.6401
+30146.04143186007 4.2002845 5877.2788
+30147.04143190756 4.2000875 5872.752
+30148.04143195506 4.2001662 5868.8154
+30149.04143200256 4.2002449 5863.6982
+30150.04143205006 4.2001662 5861.9272
+30151.04143209755 4.2002058 5858.7773
+30152.04143214505 4.2001662 5853.4639
+30153.04143219255 4.2000875 5850.5117
+30154.04143224005 4.2001662 5847.7559
+30155.04143228754 4.2001266 5843.623
+30156.04143233504 4.2001662 5838.5054
+30157.04143238254 4.2000875 5836.5371
+30158.04143243004 4.2001266 5832.4043
+30159.04143247753 4.2001662 5830.2393
+30160.04143252503 4.2002058 5824.5317
+30161.04143257253 4.2001662 5819.8081
+30162.04143262003 4.2001266 5817.0522
+30163.04143266752 4.2001266 5811.9355
+30164.04143271502 4.2001662 5809.1797
+30165.04143276252 4.2000875 5801.5039
+30166.04143281002 4.2001266 5799.9292
+30167.04143285751 4.2001662 5795.9932
+30168.04143290501 4.2001662 5791.0728
+30169.04143295251 4.2001266 5784.5776
+30170.04143300001 4.2002845 5782.019
+30171.0414330475 4.2001662 5778.4766
+30172.041433095 4.2001662 5772.1777
+30173.0414331425 4.2002449 5770.9971
+30174.04143319 4.2001662 5767.2573
+30175.04143323749 4.2001266 5760.96
+30176.04143328499 4.2001662 5758.4009
+30177.04143333249 4.2002058 5756.4326
+30178.04143337999 4.2001662 5751.5122
+30179.04143342748 4.2001266 5745.8047
+30180.04143347498 4.200048 5741.8682
+30181.04143352248 4.2001662 5739.7036
+30182.04143356998 4.2001662 5736.3574
+30183.04143361747 4.2000875 5733.4053
+30184.04143366497 4.200048 5725.1387
+30185.04143371247 4.2002449 5724.9419
+30186.04143375997 4.2001266 5720.6123
+30187.04143380746 4.2000875 5715.6919
+30188.04143385496 4.2002449 5713.3296
+30189.04143390246 4.2001662 5708.2124
+30190.04143394995 4.2002449 5704.6699
+30191.04143399745 4.2001266 5699.7495
+30192.04143404495 4.2002058 5697.7813
+30193.04143409245 4.2001662 5692.4673
+30194.04143413994 4.2002449 5689.5146
+30195.04143418744 4.2002058 5682.4292
+30196.04143423494 4.2001266 5677.5093
+30197.04143428244 4.2001662 5676.9185
+30198.04143432993 4.2001662 5671.2104
+30199.04143437743 4.2001662 5665.897
+30200.04143442493 4.2000875 5660.189
+30201.04143447243 4.2001662 5658.0244
+30202.04143451992 4.2002058 5653.6938
+30203.04143456742 4.2000875 5649.1675
+30204.04143461492 4.2000089 5647.0024
+30205.04143466242 4.2000875 5643.6567
+30206.04143470991 4.2001662 5638.5391
+30207.04143475741 4.2000875 5634.2095
+30208.04143480491 4.2000875 5628.1079
+30209.04143485241 4.2001662 5628.6982
+30210.0414348999 4.2002845 5622.7939
+30211.0414349474 4.2001662 5619.251
+30212.0414349949 4.2002058 5614.9214
+30213.0414350424 4.2002449 5610.9849
+30214.04143508989 4.2001266 5606.458
+30215.04143513739 4.2001266 5605.2773
+30216.04143518489 4.2001662 5597.4048
+30217.04143523239 4.2001662 5594.2549
+30218.04143527988 4.2001662 5591.6968
+30219.04143532738 4.2001662 5583.4302
+30220.04143537488 4.2002449 5583.4302
+30221.04143542238 4.2002058 5580.478
+30222.04143546987 4.200048 5573.1963
+30223.04143551737 4.200048 5573.3931
+30224.04143556487 4.2002058 5569.2593
+30225.04143561237 4.2002058 5565.3228
+30226.04143565986 4.2001662 5555.8765
+30227.04143570736 4.2001662 5555.8765
+30228.04143575486 4.2001662 5548.9873
+30229.04143580236 4.2001266 5545.8384
+30230.04143584985 4.2001662 5543.4766
+30231.04143589735 4.2001662 5539.9336
+30232.04143594485 4.2001662 5535.4067
+30233.04143599235 4.2001662 5528.5186
+30234.04143603984 4.2001266 5528.3218
+30235.04143608734 4.2001266 5522.417
+30236.04143613484 4.2001266 5523.2046
+30237.04143618234 4.2002058 5517.2993
+30238.04143622983 4.2002058 5513.5605
+30239.04143627733 4.2001266 5506.4746
+30240.04143632483 4.2002449 5505.6875
+30241.04143637232 4.2000875 5500.3735
+30242.04143641982 4.2001662 5498.6021
+30243.04143646732 4.2001266 5493.0913
+30244.04143651482 4.2001266 5489.3516
+30245.04143656231 4.2000875 5486.9897
+30246.04143660981 4.2001662 5482.8569
+30247.04143665731 4.2002058 5478.9209
+30248.04143670481 4.2001662 5471.835
+30249.0414367523 4.2001266 5469.4731
+30250.0414367998 4.2001266 5464.9463
+30251.0414368473 4.2002058 5461.6006
+30252.0414368948 4.200048 5456.6797
+30253.04143694229 4.2002058 5453.5308
+30254.04143698979 4.2002058 5449.5947
+30255.04143703729 4.2002058 5444.2803
+30256.04143708479 4.2002058 5441.5254
+30257.04143713228 4.2000875 5433.2588
+30258.04143717978 4.2002058 5431.0938
+30259.04143722728 4.2001266 5424.9922
+30260.04143727478 4.2002058 5424.0083
+30261.04143732227 4.2001662 5416.5293
+30262.04143736977 4.2001662 5413.3799
+30263.04143741727 4.2001662 5409.8379
+30264.04143746477 4.2001662 5406.0981
+30265.04143751226 4.2002058 5399.603
+30266.04143755976 4.2002058 5397.6348
+30267.04143760726 4.2002449 5390.7466
+30268.04143765476 4.2002449 5387.7939
+30269.04143770225 4.2001662 5383.2671
+30270.04143774975 4.2000875 5378.9375
+30271.04143779725 4.2001662 5370.4741
+30272.04143784475 4.2002449 5369.8833
+30273.04143789224 4.2001266 5363.7822
+30274.04143793974 4.2002058 5361.0269
+30275.04143798724 4.2001266 5355.5156
+30276.04143803474 4.2002449 5351.186
+30277.04143808223 4.2001662 5347.25
+30278.04143812973 4.2001266 5344.8877
+30279.04143817723 4.200048 5335.2437
+30280.04143822473 4.2001266 5333.0786
+30281.04143827222 4.2001266 5329.7324
+30282.04143831972 4.200048 5323.041
+30283.04143836722 4.2002058 5320.876
+30284.04143841472 4.2002058 5314.3809
+30285.04143846221 4.2001662 5310.6421
+30286.04143850971 4.2001266 5309.2637
+30287.04143855721 4.2001662 5303.1626
+30288.04143860471 4.2001266 5296.0767
+30289.0414386522 4.2001662 5294.5029
+30290.0414386997 4.2002058 5288.9917
+30291.0414387472 4.2001266 5286.8267
+30292.04143879469 4.2002449 5282.6938
+30293.04143884219 4.2001266 5278.167
+30294.04143888969 4.2002058 5274.8208
+30295.04143893719 4.2002058 5269.1128
+30296.04143898468 4.2002058 5265.3735
+30297.04143903218 4.2001662 5261.437
+30298.04143907968 4.2001266 5253.9585
+30299.04143912718 4.2001266 5252.9746
+30300.04143917467 4.2002058 5248.2505
+30301.04143922217 4.2002058 5245.4951
+30302.04143926967 4.2001266 5237.6226
+30303.04143931717 4.2000875 5237.0317
+30304.04143936466 4.2001266 5229.356
+30305.04143941216 4.2001266 5226.7974
+30306.04143945966 4.2001662 5224.0425
+30307.04143950716 4.2001662 5220.3027
+30308.04143955465 4.2002058 5215.1851
+30309.04143960215 4.2002449 5209.084
+30310.04143964965 4.2001266 5205.9351
+30311.04143969715 4.2001662 5203.7695
+30312.04143974464 4.2001266 5197.0776
+30313.04143979214 4.2001662 5197.2749
+30314.04143983964 4.2002449 5189.9927
+30315.04143988714 4.2000875 5188.812
+30316.04143993463 4.2001662 5184.0879
+30317.04143998213 4.2000875 5177.7896
+30318.04144002963 4.200048 5173.6567
+30319.04144007713 4.2002058 5170.9014
+30320.04144012462 4.2001266 5169.1299
+30321.04144017212 4.2002449 5163.2251
+30322.04144021962 4.2001266 5158.3047
+30323.04144026712 4.2000875 5155.1563
+30324.04144031461 4.2001662 5152.9912
+30325.04144036211 4.2002058 5147.48
+30326.04144040961 4.2001266 5141.7725
+30327.04144045711 4.2002058 5139.4106
+30328.0414405046 4.2001266 5134.293
+30329.0414405521 4.2001662 5127.6016
+30330.0414405996 4.2002058 5127.9956
+30331.0414406471 4.2001662 5122.4844
+30332.04144069459 4.2001266 5117.564
+30333.04144074209 4.2001266 5115.7925
+30334.04144078959 4.2000875 5110.478
+30335.04144083709 4.2001662 5106.3452
+30336.04144088458 4.2001662 5102.2124
+30337.04144093208 4.2002845 5098.2759
+30338.04144097958 4.2001662 5090.9932
+30339.04144102708 4.200048 5090.6001
+30340.04144107457 4.2001662 5086.0732
+30341.04144112207 4.2000875 5081.7432
+30342.04144116957 4.2001266 5078.397
+30343.04144121706 4.2002058 5074.6577
+30344.04144126456 4.2001266 5070.918
+30345.04144131206 4.2002449 5067.1782
+30346.04144135956 4.2002058 5065.4077
+30347.04144140705 4.2000875 5059.6997
+30348.04144145455 4.200048 5052.0239
+30349.04144150205 4.2002058 5050.646
+30350.04144154955 4.2001662 5046.7095
+30351.04144159704 4.2001662 5041.396
+30352.04144164454 4.2000875 5038.4434
+30353.04144169204 4.2001266 5033.7197
+30354.04144173954 4.2001266 5027.8154
+30355.04144178703 4.2001662 5024.0757
+30356.04144183453 4.2001662 5020.5332
+30357.04144188203 4.2002058 5017.9741
+30358.04144192953 4.2000875 5011.6763
+30359.04144197702 4.2001266 5011.2822
+30360.04144202452 4.2000875 5003.4097
+30361.04144207202 4.2001662 5000.2607
+30362.04144211952 4.2002058 4995.7344
+30363.04144216701 4.2002449 4991.4043
+30364.04144221451 4.200048 4986.4839
+30365.04144226201 4.2001266 4983.9248
+30366.04144230951 4.2001266 4979.9888
+30367.041442357 4.2002058 4975.4619
+30368.0414424045 4.2001662 4968.9668
+30369.041442452 4.2001662 4968.5732
+30370.0414424995 4.2000875 4961.291
+30371.04144254699 4.2001662 4959.126
+30372.04144259449 4.2001266 4954.7964
+30373.04144264199 4.2001662 4952.6309
+30374.04144268949 4.2001266 4947.5142
+30375.04144273698 4.2001266 4943.1841
+30376.04144278448 4.2002058 4936.689
+30377.04144283198 4.2002449 4935.7046
+30378.04144287948 4.2000875 4931.5718
+30379.04144292697 4.2001266 4927.0449
+30380.04144297447 4.2001662 4923.8955
+30381.04144302197 4.2001662 4917.4009
+30382.04144306947 4.2000875 4912.4805
+30383.04144311696 4.2001662 4911.4966
+30384.04144316446 4.2000875 4902.0488
+30385.04144321196 4.2001662 4900.0811
+30386.04144325946 4.2001662 4897.5225
+30387.04144330695 4.2002058 4893.7827
+30388.04144335445 4.2001266 4887.4849
+30389.04144340195 4.2001662 4884.3354
+30390.04144344945 4.2002058 4881.7769
+30391.04144349694 4.2000875 4875.479
+30392.04144354444 4.2001662 4873.1172
+30393.04144359194 4.2001266 4867.9995
+30394.04144363943 4.2001662 4865.0474
+30395.04144368693 4.2001662 4858.9458
+30396.04144373443 4.2001662 4856.1909
+30397.04144378193 4.2001662 4850.0894
+30398.04144382942 4.2001266 4845.5625
+30399.04144387692 4.2000875 4842.4136
+30400.04144392442 4.2001662 4839.2642
+30401.04144397192 4.2002058 4833.3599
+30402.04144401941 4.2001662 4827.6519
+30403.04144406691 4.2001266 4825.4873
+30404.04144411441 4.2001662 4821.1572
+30405.04144416191 4.2002449 4818.2051
+30406.0414442094 4.2001662 4811.1196
+30407.0414442569 4.2000875 4809.1514
+30408.0414443044 4.2001266 4802.853
+30409.0414443519 4.2000089 4800.4912
+30410.04144439939 4.2000875 4795.1772
+30411.04144444689 4.2002449 4791.2412
+30412.04144449439 4.200048 4787.1079
+30413.04144454189 4.2001662 4785.5332
+30414.04144458938 4.2001266 4780.0225
+30415.04144463688 4.2000875 4775.6924
+30416.04144468438 4.2002449 4770.772
+30417.04144473188 4.2002058 4765.064
+30418.04144477937 4.2001266 4764.2769
+30419.04144482687 4.2002058 4760.144
+30420.04144487437 4.2002449 4753.0581
+30421.04144492187 4.2001662 4751.2871
+30422.04144496936 4.2001266 4746.1699
+30423.04144501686 4.2001266 4741.6431
+30424.04144506436 4.2001266 4738.6904
+30425.04144511186 4.2002058 4735.3447
+30426.04144515935 4.2002058 4728.8501
+30427.04144520685 4.2000875 4725.3071
+30428.04144525435 4.2001662 4721.5679
+30429.04144530185 4.2002449 4716.4502
+30430.04144534934 4.200048 4714.6787
+30431.04144539684 4.2000875 4708.7744
+30432.04144544434 4.2000875 4706.8062
+30433.04144549184 4.2001662 4702.8701
+30434.04144553933 4.2001266 4699.1304
+30435.04144558683 4.2001662 4693.4229
+30436.04144563433 4.2000875 4688.1084
+30437.04144568183 4.2001662 4683.582
+30438.04144572932 4.2002845 4680.0391
+30439.04144577682 4.2002058 4677.0869
+30440.04144582432 4.2002058 4669.6079
+30441.04144587182 4.2001662 4666.2622
+30442.04144591931 4.2002058 4665.4746
+30443.04144596681 4.2002058 4658.3892
+30444.04144601431 4.2002058 4657.0117
+30445.0414460618 4.2000875 4649.5327
+30446.0414461093 4.2000875 4645.5962
+30447.0414461568 4.2000875 4645.0059
+30448.0414462043 4.200048 4638.9043
+30449.04144625179 4.2001662 4636.936
+30450.04144629929 4.2001266 4629.2603
+30451.04144634679 4.2001266 4624.1431
+30452.04144639429 4.2001662 4621.1909
+30453.04144644178 4.2001266 4619.2227
+30454.04144648928 4.2000875 4614.6958
+30455.04144653678 4.2000875 4608.9883
+30456.04144658428 4.2001266 4606.4292
+30457.04144663177 4.2001662 4601.5088
+30458.04144667927 4.2002058 4597.9663
+30459.04144672677 4.2001662 4594.0303
+30460.04144677427 4.2001662 4590.4873
+30461.04144682176 4.2000875 4584.7793
+30462.04144686926 4.2001266 4579.2686
+30463.04144691676 4.2001266 4576.1196
+30464.04144696426 4.2000875 4574.7417
+30465.04144701175 4.2001662 4568.2471
+30466.04144705925 4.2002449 4565.2949
+30467.04144710675 4.2001266 4559.1934
+30468.04144715425 4.2003236 4556.6348
+30469.04144720174 4.2001266 4550.3364
+30470.04144724924 4.2002058 4547.9746
+30471.04144729674 4.2001266 4543.0547
+30472.04144734424 4.2000875 4539.5117
+30473.04144739173 4.2001662 4536.5596
+30474.04144743923 4.2000875 4531.0488
+30475.04144748673 4.2001662 4527.1118
+30476.04144753423 4.2001266 4525.144
+30477.04144758172 4.2000089 4517.8618
+30478.04144762922 4.2002058 4514.3188
+30479.04144767672 4.2001266 4510.7764
+30480.04144772422 4.2002449 4509.0049
+30481.04144777171 4.2002058 4503.4941
+30482.04144781921 4.2001266 4498.9673
+30483.04144786671 4.2001266 4494.0469
+30484.04144791421 4.2002058 4490.8979
+30485.0414479617 4.2001266 4488.5356
+30486.0414480092 4.2001266 4482.041
+30487.0414480567 4.2001662 4477.9077
+30488.0414481042 4.2002449 4475.9395
+30489.04144815169 4.2002058 4472.397
+30490.04144819919 4.2001266 4465.9019
+30491.04144824669 4.2001662 4461.769
+30492.04144829419 4.2001662 4460.1943
+30493.04144834168 4.2001662 4453.896
+30494.04144838918 4.2001662 4451.3374
+30495.04144843668 4.2000875 4445.6299
+30496.04144848417 4.2002449 4441.6934
+30497.04144853167 4.2002058 4437.7573
+30498.04144857917 4.2000875 4433.624
+30499.04144862667 4.2002449 4432.0493
+30500.04144867416 4.2002058 4425.7515
+30501.04144872166 4.2002449 4423.98
+30502.04144876916 4.2001662 4417.0913
+30503.04144881666 4.2000875 4410.7935
+30504.04144886415 4.2001662 4409.022
+30505.04144891165 4.2001662 4406.6602
+30506.04144895915 4.2001662 4400.5586
+30507.04144900665 4.2000875 4397.4097
+30508.04144905414 4.2001662 4393.8667
+30509.04144910164 4.2001662 4387.1748
+30510.04144914914 4.2001662 4385.4038
+30511.04144919664 4.2002058 4380.6802
+30512.04144924413 4.2002058 4374.9722
+30513.04144929163 4.2001266 4372.6104
+30514.04144933913 4.2001266 4367.8867
+30515.04144938663 4.2001266 4363.3604
+30516.04144943412 4.2001662 4362.376
+30517.04144948162 4.200048 4354.3066
+30518.04144952912 4.2002449 4352.5352
+30519.04144957662 4.2002058 4349.7798
+30520.04144962411 4.2002058 4341.1201
+30521.04144967161 4.2002449 4337.7739
+30522.04144971911 4.2001266 4333.6406
+30523.04144976661 4.2001266 4330.4917
+30524.0414498141 4.2001266 4325.1777
+30525.0414498616 4.2001662 4321.438
+30526.0414499091 4.2001266 4316.124
+30527.0414499566 4.2001266 4311.9907
+30528.04145000409 4.2001266 4306.0864
+30529.04145005159 4.2001266 4305.8892
+30530.04145009909 4.2000875 4302.1499
+30531.04145014659 4.2001662 4296.6392
+30532.04145019408 4.2001662 4294.2773
+30533.04145024158 4.2001662 4288.7666
+30534.04145028908 4.2000875 4285.0269
+30535.04145033658 4.2002058 4280.3032
+30536.04145038407 4.2002449 4275.5796
+30537.04145043157 4.2002058 4275.186
+30538.04145047907 4.2001662 4268.1006
+30539.04145052657 4.2001266 4264.9512
+30540.04145057406 4.2001266 4261.2119
+30541.04145062156 4.2002449 4258.2598
+30542.04145066906 4.2001662 4256.4883
+30543.04145071656 4.2002058 4250.7808
+30544.04145076405 4.2000875 4247.041
+30545.04145081155 4.2000875 4240.7432
+30546.04145085905 4.2001266 4238.5776
+30547.04145090654 4.2002449 4237.2002
+30548.04145095404 4.2002058 4231.4927
+30549.04145100154 4.2002058 4227.9497
+30550.04145104904 4.2001266 4222.8325
+30551.04145109653 4.2001662 4219.2896
+30552.04145114403 4.2001662 4213.1885
+30553.04145119153 4.2001662 4212.2046
+30554.04145123903 4.2002449 4209.2524
+30555.04145128652 4.2000875 4201.9697
+30556.04145133402 4.2001266 4199.4111
+30557.04145138152 4.200048 4198.8208
+30558.04145142902 4.2001662 4193.1133
+30559.04145147651 4.2001266 4185.2407
+30560.04145152401 4.2001266 4182.0913
+30561.04145157151 4.2001662 4180.123
+30562.04145161901 4.2001662 4174.4155
+30563.0414516665 4.2002058 4172.4473
+30564.041451714 4.2000875 4165.165
+30565.0414517615 4.2001662 4164.7715
+30566.041451809 4.2000875 4158.4731
+30567.04145185649 4.2001266 4153.9468
+30568.04145190399 4.200048 4153.9468
+30569.04145195149 4.2001266 4149.6167
+30570.04145199899 4.2001266 4142.5313
+30571.04145204648 4.2001662 4140.9565
+30572.04145209398 4.2001266 4138.0044
+30573.04145214148 4.2002058 4132.4937
+30574.04145218898 4.2002058 4128.1636
+30575.04145223647 4.2000875 4125.8018
+30576.04145228397 4.2001662 4118.7163
+30577.04145233147 4.2002449 4118.7163
+30578.04145237897 4.2001662 4114.1895
+30579.04145242646 4.2000875 4109.0723
+30580.04145247396 4.2002449 4105.9233
+30581.04145252146 4.2001266 4098.8379
+30582.04145256896 4.2000875 4096.082
+30583.04145261645 4.2001662 4096.4761
+30584.04145266395 4.2000875 4088.6035
+30585.04145271145 4.2002058 4085.0605
+30586.04145275895 4.2001266 4080.9275
+30587.04145280644 4.200048 4075.8103
+30588.04145285394 4.2001662 4070.8899
+30589.04145290144 4.2001662 4069.9058
+30590.04145294894 4.2002449 4064.7883
+30591.04145299643 4.2001266 4063.8044
+30592.04145304393 4.2001266 4057.3096
+30593.04145309143 4.2001266 4055.1443
+30594.04145313893 4.2001266 4050.8145
+30595.04145318642 4.2001662 4047.4685
+30596.04145323392 4.2001266 4044.5164
+30597.04145328142 4.2001662 4040.3831
+30598.04145332891 4.2000875 4038.0212
+30599.04145337641 4.2002449 4033.4944
+30600.04145342391 4.2002845 4029.5581
+30601.04145347141 4.2000875 4024.4409
+30602.0414535189 4.2001266 4019.3237
+30603.0414535664 4.2002058 4017.1587
+30604.0414536139 4.2002058 4014.9939
+30605.0414536614 4.2000875 4009.4827
+30606.04145370889 4.2001266 4003.9719
+30607.04145375639 4.2002058 4000.8228
+30608.04145380389 4.2001662 3998.658
+30609.04145385139 4.2002058 3994.3279
+30610.04145389888 4.2002058 3991.5725
+30611.04145394638 4.2000875 3987.0454
+30612.04145399388 4.2001266 3983.8965
+30613.04145404138 4.2002058 3980.7473
+30614.04145408887 4.2000875 3975.4333
+30615.04145413637 4.2001662 3970.5129
+30616.04145418387 4.2001266 3967.9543
+30617.04145423137 4.2001662 3965.7893
+30618.04145427886 4.2001662 3959.8848
+30619.04145432636 4.2000875 3957.3262
+30620.04145437386 4.2001662 3952.4055
+30621.04145442136 4.2001266 3949.0598
+30622.04145446885 4.200048 3945.9109
+30623.04145451635 4.2001266 3942.1711
+30624.04145456385 4.2001266 3939.0222
+30625.04145461135 4.200048 3934.1016
+30626.04145465884 4.2001266 3932.1335
+30627.04145470634 4.2001266 3925.0483
+30628.04145475384 4.2001266 3922.2927
+30629.04145480134 4.2001662 3916.585
+30630.04145484883 4.2000875 3915.0105
+30631.04145489633 4.2001266 3910.6807
+30632.04145494383 4.2001266 3908.5154
+30633.04145499133 4.2002449 3905.3665
+30634.04145503882 4.2001662 3898.8713
+30635.04145508632 4.2000875 3895.1318
+30636.04145513382 4.2001662 3892.5732
+30637.04145518132 4.2002058 3888.637
+30638.04145522881 4.2001662 3885.094
+30639.04145527631 4.2001266 3881.3547
+30640.04145532381 4.2001266 3878.2056
+30641.04145537131 4.2001266 3874.4661
+30642.0414554188 4.2001662 3872.3013
+30643.0414554663 4.2001266 3867.1838
+30644.0414555138 4.2001662 3864.2317
+30645.0414555613 4.2001266 3860.8857
+30646.04145560879 4.2001266 3853.0132
+30647.04145565629 4.2000875 3853.9971
+30648.04145570379 4.2002058 3846.5181
+30649.04145575129 4.2001662 3845.3372
+30650.04145579878 4.2002845 3840.8103
+30651.04145584628 4.2002449 3837.4644
+30652.04145589378 4.2001662 3834.9058
+30653.04145594127 4.2001266 3829.5918
+30654.04145598877 4.2001662 3827.23
+30655.04145603627 4.2002058 3825.0652
+30656.04145608377 4.2001662 3821.1284
+30657.04145613126 4.2002058 3817.783
+30658.04145617876 4.2000875 3812.8623
+30659.04145622626 4.2002449 3811.2878
+30660.04145627376 4.2001662 3807.1545
+30661.04145632125 4.2002449 3800.0693
+30662.04145636875 4.2001662 3796.9202
+30663.04145641625 4.2000875 3790.6218
+30664.04145646375 4.2001266 3790.2283
+30665.04145651124 4.2001266 3784.7175
+30666.04145655874 4.2001662 3784.3237
+30667.04145660624 4.2000875 3778.813
+30668.04145665374 4.2001266 3773.6958
+30669.04145670123 4.2002449 3770.1528
+30670.04145674873 4.200048 3769.3657
+30671.04145679623 4.2002058 3767.0039
+30672.04145684373 4.2002058 3759.5247
+30673.04145689122 4.2001662 3756.9661
+30674.04145693872 4.2001266 3754.0139
+30675.04145698622 4.2002058 3750.668
+30676.04145703372 4.2001662 3744.5667
+30677.04145708121 4.2001266 3739.6462
+30678.04145712871 4.2002058 3740.6304
+30679.04145717621 4.2001662 3735.3162
+30680.04145722371 4.2001266 3731.3799
+30681.0414572712 4.2001662 3727.2466
+30682.0414573187 4.2002449 3722.1296
+30683.0414573662 4.2001266 3717.209
+30684.0414574137 4.2001662 3717.209
+30685.04145746119 4.2001662 3713.4697
+30686.04145750869 4.2000875 3706.9746
+30687.04145755619 4.2002845 3706.5808
+30688.04145760369 4.2000875 3699.8892
+30689.04145765118 4.2001266 3698.3147
+30690.04145769868 4.2002058 3693.7878
+30691.04145774618 4.2001266 3690.2451
+30692.04145779368 4.2000875 3687.6865
+30693.04145784117 4.2001662 3681.9788
+30694.04145788867 4.2001266 3677.8457
+30695.04145793617 4.200048 3672.7285
+30696.04145798367 4.2002058 3672.1379
+30697.04145803116 4.2001266 3668.5952
+30698.04145807866 4.2000875 3664.6589
+30699.04145812616 4.2001266 3662.4939
+30700.04145817366 4.2001662 3654.6211
+30701.04145822115 4.200048 3653.0466
+30702.04145826865 4.2002058 3651.4722
+30703.04145831615 4.2001266 3645.9612
+30704.04145836364 4.2002449 3641.4346
+30705.04145841114 4.2002449 3638.4822
+30706.04145845864 4.2002449 3634.9395
+30707.04145850614 4.2000875 3631.2
+30708.04145855363 4.2000875 3627.6572
+30709.04145860113 4.2000875 3625.0986
+30710.04145864863 4.2001662 3618.6035
+30711.04145869613 4.2001662 3614.4705
+30712.04145874362 4.2001662 3609.5503
+30713.04145879112 4.2002449 3608.1724
+30714.04145883862 4.2002058 3604.8264
+30715.04145888612 4.2001266 3600.8901
+30716.04145893361 4.2002058 3597.1506
+30717.04145898111 4.2001662 3593.6077
+30718.04145902861 4.2002058 3591.0491
+30719.04145907611 4.2002058 3587.7034
+30720.0414591236 4.2000875 3583.9636
+30721.0414591711 4.2001662 3583.5703
+30722.0414592186 4.2001662 3576.8784
+30723.0414592661 4.2001266 3576.2878
+30724.04145931359 4.2001662 3571.9578
+30725.04145936109 4.2002058 3568.2185
+30726.04145940859 4.2001662 3563.2979
+30727.04145945609 4.2001266 3559.9519
+30728.04145950358 4.2002058 3558.9678
+30729.04145955108 4.2002058 3552.6697
+30730.04145959858 4.2001662 3548.3398
+30731.04145964608 4.2001266 3546.5686
+30732.04145969357 4.200048 3543.813
+30733.04145974107 4.2002058 3540.6638
+30734.04145978857 4.2002058 3535.9402
+30735.04145983607 4.2002058 3530.0359
+30736.04145988356 4.2000875 3531.2168
+30737.04145993106 4.2000089 3524.9187
+30738.04145997856 4.2002449 3522.5569
+30739.04146002606 4.2001266 3518.03
+30740.04146007355 4.2001662 3518.8174
+30741.04146012105 4.2001266 3513.5032
+30742.04146016855 4.200048 3508.583
+30743.04146021605 4.2001266 3506.2209
+30744.04146026354 4.2001662 3501.4973
+30745.04146031104 4.2001266 3498.7419
+30746.04146035854 4.2002058 3493.0342
+30747.04146040604 4.2000875 3490.6724
+30748.04146045353 4.2001266 3486.1455
+30749.04146050103 4.2001266 3483.5872
+30750.04146054853 4.2003236 3482.9963
+30751.04146059603 4.2002058 3476.6982
+30752.04146064352 4.2001266 3473.7461
+30753.04146069102 4.2000875 3469.8098
+30754.04146073852 4.2001662 3465.0862
+30755.04146078601 4.2001266 3463.7083
+30756.04146083351 4.2002058 3461.3464
+30757.04146088101 4.2001662 3456.8198
+30758.04146092851 4.2001662 3452.2932
+30759.041460976 4.200048 3448.5535
+30760.0414610235 4.2000875 3447.7661
+30761.041461071 4.2000875 3443.4363
+30762.0414611185 4.2002058 3440.6807
+30763.04146116599 4.2001266 3437.9255
+30764.04146121349 4.2002058 3431.6274
+30765.04146126099 4.2001266 3428.6748
+30766.04146130849 4.2001662 3426.1162
+30767.04146135598 4.2002449 3423.9514
+30768.04146140348 4.200048 3420.0149
+30769.04146145098 4.2001662 3417.0627
+30770.04146149848 4.2002058 3413.3232
+30771.04146154597 4.200048 3409.1899
+30772.04146159347 4.2002058 3406.2378
+30773.04146164097 4.2001662 3401.908
+30774.04146168847 4.2001662 3400.53
+30775.04146173596 4.2000875 3394.0349
+30776.04146178346 4.2000875 3391.8701
+30777.04146183096 4.2001662 3388.1306
+30778.04146187846 4.2000875 3387.54
+30779.04146192595 4.2002058 3384.1943
+30780.04146197345 4.2001266 3378.6836
+30781.04146202095 4.2002058 3376.9121
+30782.04146206845 4.2001266 3371.4011
+30783.04146211594 4.2001266 3366.2839
+30784.04146216344 4.2000875 3367.6616
+30785.04146221094 4.2001662 3363.3318
+30786.04146225844 4.2001662 3358.4111
+30787.04146230593 4.2000875 3356.0493
+30788.04146235343 4.2002449 3354.0811
+30789.04146240093 4.2001266 3347.3892
+30790.04146244843 4.2002058 3346.0117
+30791.04146249592 4.2001662 3341.4849
+30792.04146254342 4.2001662 3339.5166
+30793.04146259092 4.2002058 3334.793
+30794.04146263842 4.2002058 3334.0059
+30795.04146268591 4.200048 3327.9045
+30796.04146273341 4.2001266 3324.3618
+30797.04146278091 4.200048 3322.9841
+30798.04146282841 4.2002449 3320.2285
+30799.0414628759 4.2001266 3316.0955
+30800.0414629234 4.2000875 3314.7178
+30801.0414629709 4.2002058 3312.356
+30802.0414630184 4.2000875 3307.042
+30803.04146306589 4.2002845 3304.877
+30804.04146311339 4.2001266 3298.5789
+30805.04146316089 4.2001266 3295.8232
+30806.04146320838 4.2001266 3294.052
+30807.04146325588 4.2002058 3292.6743
+30808.04146330338 4.2001662 3288.541
+30809.04146335088 4.2002058 3282.6365
+30810.04146339837 4.2002449 3279.2908
+30811.04146344587 4.2001662 3276.929
+30812.04146349337 4.2002449 3275.551
+30813.04146354087 4.1999693 3267.4814
+30814.04146358836 4.2000875 3267.4814
+30815.04146363586 4.2001662 3263.939
+30816.04146368336 4.2001662 3262.3645
+30817.04146373086 4.2001662 3256.6567
+30818.04146377835 4.2001266 3255.8694
+30819.04146382585 4.2002058 3252.3267
+30820.04146387335 4.2001266 3249.7678
+30821.04146392085 4.2001662 3245.2412
+30822.04146396834 4.2000875 3243.2732
+30823.04146401584 4.2002449 3241.1079
+30824.04146406334 4.2002058 3236.1875
+30825.04146411084 4.2002449 3234.2195
+30826.04146415833 4.2001662 3228.5117
+30827.04146420583 4.2001266 3228.3149
+30828.04146425333 4.2001662 3221.4265
+30829.04146430083 4.2001266 3221.0327
+30830.04146434832 4.2001662 3216.5061
+30831.04146439582 4.2001662 3213.3569
+30832.04146444332 4.2001662 3213.554
+30833.04146449082 4.2002449 3209.0269
+30834.04146453831 4.2001662 3205.6809
+30835.04146458581 4.2001662 3202.5322
+30836.04146463331 4.2003236 3200.9578
+30837.04146468081 4.2001662 3196.6277
+30838.0414647283 4.2001662 3193.4785
+30839.0414647758 4.2001266 3189.5422
+30840.0414648233 4.2001266 3185.606
+30841.0414648708 4.2001662 3179.8982
+30842.04146491829 4.2001266 3180.0947
+30843.04146496579 4.200048 3178.5203
+30844.04146501329 4.2001662 3173.4031
+30845.04146506079 4.2001266 3168.6794
+30846.04146510828 4.2001662 3164.7432
+30847.04146515578 4.2001266 3165.3337
+30848.04146520328 4.2000875 3162.1846
+30849.04146525078 4.2001266 3154.7053
+30850.04146529827 4.2001662 3153.7212
+30851.04146534577 4.2002449 3152.9341
+30852.04146539327 4.2002058 3149.5884
+30853.04146544077 4.2002058 3148.2104
+30854.04146548826 4.200048 3142.8965
+30855.04146553576 4.2000875 3139.7473
+30856.04146558326 4.2000875 3135.6143
+30857.04146563075 4.200048 3131.678
+30858.04146567825 4.2002845 3130.6938
+30859.04146572575 4.2001266 3122.2307
+30860.04146577325 4.2001662 3123.6084
+30861.04146582074 4.2000875 3119.6721
+30862.04146586824 4.2001662 3115.342
+30863.04146591574 4.2001266 3111.7993
+30864.04146596324 4.2002058 3108.6504
+30865.04146601073 4.2002058 3109.0437
+30866.04146605823 4.2001662 3104.3203
+30867.04146610573 4.2001662 3100.9744
+30868.04146615323 4.2001662 3096.2507
+30869.04146620072 4.2001662 3093.2986
+30870.04146624822 4.2002449 3091.3303
+30871.04146629572 4.2001662 3087.7876
+30872.04146634322 4.2001662 3084.0481
+30873.04146639071 4.2002449 3081.6863
+30874.04146643821 4.2000875 3078.5371
+30875.04146648571 4.2001662 3075.7817
+30876.04146653321 4.2001662 3073.0264
+30877.0414665807 4.2002058 3069.2869
+30878.0414666282 4.2001662 3066.1377
+30879.0414666757 4.2001662 3063.3823
+30880.0414667232 4.2002058 3060.8235
+30881.04146677069 4.2000875 3053.9351
+30882.04146681819 4.2002449 3055.1157
+30883.04146686569 4.2001266 3052.5574
+30884.04146691319 4.2001662 3049.0146
+30885.04146696068 4.2002058 3044.6848
+30886.04146700818 4.2002449 3041.7324
+30887.04146705568 4.2001662 3040.5515
+30888.04146710318 4.2001662 3034.647
+30889.04146715067 4.2002058 3030.1201
+30890.04146719817 4.2002449 3029.7266
+30891.04146724567 4.2000875 3024.8059
+30892.04146729317 4.2002058 3025.0029
+30893.04146734066 4.2001266 3018.7048
+30894.04146738816 4.2001662 3019.2952
+30895.04146743566 4.200048 3014.3748
+30896.04146748316 4.2002058 3010.4382
+30897.04146753065 4.2001266 3005.9116
+30898.04146757815 4.2001662 3002.1719
+30899.04146762565 4.2000875 3002.3689
+30900.04146767315 4.2001266 2999.0232
+30901.04146772064 4.2001266 2993.3154
+30902.04146776814 4.200048 2994.2993
+30903.04146781564 4.2001662 2989.1821
+30904.04146786314 4.200048 2983.6714
+30905.04146791063 4.2001662 2985.0491
+30906.04146795813 4.2001266 2980.3254
+30907.04146800563 4.2001662 2978.554
+30908.04146805312 4.2000875 2976.3892
+30909.04146810062 4.2001662 2970.6814
+30910.04146814812 4.2001662 2970.2876
+30911.04146819562 4.2002449 2965.1704
+30912.04146824311 4.2001266 2962.6118
+30913.04146829061 4.2002058 2959.8562
+30914.04146833811 4.2001266 2956.9041
+30915.04146838561 4.2002058 2955.7234
+30916.0414684331 4.2001662 2952.9678
+30917.0414684806 4.2001662 2946.8662
+30918.0414685281 4.2002058 2944.7014
+30919.0414685756 4.2001662 2942.7334
+30920.04146862309 4.2002058 2940.9619
+30921.04146867059 4.2001266 2937.0256
+30922.04146871809 4.2001266 2934.0735
+30923.04146876559 4.2001266 2929.5464
+30924.04146881308 4.2001662 2927.5784
+30925.04146886058 4.2000875 2924.4294
+30926.04146890808 4.2001662 2920.8865
+30927.04146895558 4.2001662 2917.9343
+30928.04146900307 4.2001266 2916.3599
+30929.04146905057 4.2001266 2914.1946
+30930.04146909807 4.2001266 2910.6521
+30931.04146914557 4.2000875 2906.9124
+30932.04146919306 4.2002058 2905.3379
+30933.04146924056 4.2001266 2903.5667
+30934.04146928806 4.2001662 2899.8269
+30935.04146933556 4.2001662 2896.2844
+30936.04146938305 4.2001662 2895.1035
+30937.04146943055 4.2002449 2892.5447
+30938.04146947805 4.2001662 2889.0022
+30939.04146952555 4.2001266 2887.8213
+30940.04146957304 4.2002449 2881.1296
+30941.04146962054 4.2002058 2881.72
+30942.04146966804 4.2001662 2876.7996
+30943.04146971554 4.2002058 2873.8472
+30944.04146976303 4.2001662 2873.8472
+30945.04146981053 4.2002058 2867.7458
+30946.04146985803 4.2002449 2866.1711
+30947.04146990553 4.2001266 2860.2668
+30948.04146995302 4.2001662 2861.4478
+30949.04147000052 4.2000875 2855.3464
+30950.04147004802 4.2001662 2855.3464
+30951.04147009552 4.2001662 2850.0322
+30952.04147014301 4.2002449 2848.8513
+30953.04147019051 4.2002058 2845.7024
+30954.04147023801 4.2001662 2842.3564
+30955.04147028551 4.2002058 2841.7661
+30956.041470333 4.2000875 2836.4519
+30957.0414703805 4.200048 2831.1379
+30958.041470428 4.2001662 2833.4998
+30959.04147047549 4.2002058 2828.5791
+30960.04147052299 4.2001266 2826.4143
+30961.04147057049 4.200048 2821.1003
+30962.04147061799 4.2001662 2819.7224
+30963.04147066548 4.2002058 2819.7224
+30964.04147071298 4.2001266 2813.6211
+30965.04147076048 4.2001266 2811.4563
+30966.04147080798 4.2001662 2808.7007
+30967.04147085547 4.2002058 2806.3389
+30968.04147090297 4.2000089 2799.647
+30969.04147095047 4.2001662 2799.2534
+30970.04147099797 4.2001662 2798.0725
+30971.04147104546 4.2000875 2793.9392
+30972.04147109296 4.2001662 2791.1841
+30973.04147114046 4.2001662 2789.4126
+30974.04147118796 4.2002058 2785.6731
+30975.04147123545 4.2001266 2783.9016
+30976.04147128295 4.2000875 2779.5715
+30977.04147133045 4.2001662 2777.8005
+30978.04147137795 4.2002058 2776.2256
+30979.04147142544 4.2000875 2771.1086
+30980.04147147294 4.2001662 2769.5342
+30981.04147152044 4.2002058 2765.5977
+30982.04147156794 4.2001266 2760.4805
+30983.04147161543 4.2002058 2760.4805
+30984.04147166293 4.2001662 2756.3472
+30985.04147171043 4.2000875 2755.3633
+30986.04147175793 4.200048 2751.4268
+30987.04147180542 4.2002449 2747.4905
+30988.04147185292 4.2000875 2744.3413
+30989.04147190042 4.2002058 2745.1287
+30990.04147194792 4.2002058 2741.3892
+30991.04147199541 4.2002058 2738.437
+30992.04147204291 4.2000875 2733.7134
+30993.04147209041 4.2000875 2730.761
+30994.04147213791 4.2001662 2728.793
+30995.0414721854 4.2002449 2727.8088
+30996.0414722329 4.2001662 2723.2817
+30997.0414722804 4.2001266 2721.7075
+30998.0414723279 4.2001662 2715.606
+30999.04147237539 4.2001266 2718.5586
+31000.04147242289 4.2002449 2714.2285
+31001.04147247039 4.2001662 2708.1272
+31002.04147251789 4.2001662 2707.9302
+31003.04147256538 4.2001662 2705.7651
+31004.04147261288 4.2002449 2702.0256
+31005.04147266038 4.2001266 2701.2385
+31006.04147270788 4.2001662 2698.2861
+31007.04147275537 4.2001662 2693.1689
+31008.04147280287 4.2002058 2692.1848
+31009.04147285037 4.2001662 2687.2642
+31010.04147289786 4.2001266 2684.7058
+31011.04147294536 4.2002058 2682.344
+31012.04147299286 4.2001266 2680.9661
+31013.04147304036 4.2002058 2677.6201
+31014.04147308785 4.2001662 2675.6521
+31015.04147313535 4.2001266 2673.6838
+31016.04147318285 4.2001662 2669.354
+31017.04147323035 4.2001266 2665.6143
+31018.04147327784 4.2001662 2665.8113
+31019.04147332534 4.2002845 2661.0876
+31020.04147337284 4.200048 2657.1514
+31021.04147342034 4.2001662 2657.1514
+31022.04147346783 4.2002449 2653.6089
+31023.04147351533 4.2002449 2649.8691
+31024.04147356283 4.2002058 2650.6563
+31025.04147361033 4.2001266 2646.72
+31026.04147365782 4.2001266 2642.9805
+31027.04147370532 4.2000875 2639.6345
+31028.04147375282 4.2001266 2638.2571
+31029.04147380032 4.2001662 2636.2888
+31030.04147384781 4.2001662 2629.4001
+31031.04147389531 4.2001662 2629.2034
+31032.04147394281 4.2001662 2627.2354
+31033.04147399031 4.2001662 2625.8574
+31034.0414740378 4.2001266 2624.4797
+31035.0414740853 4.2001266 2618.1816
+31036.0414741328 4.200048 2618.9688
+31037.0414741803 4.2001662 2616.2134
+31038.04147422779 4.2001266 2615.0325
+31039.04147427529 4.2002058 2608.5376
+31040.04147432279 4.2000875 2608.5376
+31041.04147437029 4.2000875 2604.6013
+31042.04147441778 4.2001662 2602.2395
+31043.04147446528 4.2001662 2600.0742
+31044.04147451278 4.2001266 2596.7283
+31045.04147456028 4.2001266 2594.3665
+31046.04147460777 4.2002449 2591.4143
+31047.04147465527 4.2001266 2589.4463
+31048.04147470277 4.2000875 2585.9036
+31049.04147475027 4.2000875 2584.7224
+31050.04147479776 4.2001662 2580.7861
+31051.04147484526 4.2000875 2580.1958
+31052.04147489276 4.2001266 2575.2754
+31053.04147494026 4.200048 2573.7007
+31054.04147498775 4.2001662 2570.3547
+31055.04147503525 4.2002058 2567.9929
+31056.04147508275 4.2000875 2563.4663
+31057.04147513025 4.2001266 2563.8601
+31058.04147517774 4.2001662 2559.1362
+31059.04147522524 4.2001266 2558.5459
+31060.04147527274 4.2001662 2554.2161
+31061.04147532023 4.2001266 2550.8701
+31062.04147536773 4.2002058 2550.6731
+31063.04147541523 4.2001662 2548.1145
+31064.04147546273 4.2000875 2544.572
+31065.04147551022 4.2001266 2541.6196
+31066.04147555772 4.200048 2538.0769
+31067.04147560522 4.2001266 2536.896
+31068.04147565272 4.2001662 2535.1245
+31069.04147570021 4.2002058 2533.353
+31070.04147574771 4.2001662 2530.0076
+31071.04147579521 4.2002058 2526.8584
+31072.04147584271 4.2001266 2523.5125
+31073.0414758902 4.2002058 2519.3792
+31074.0414759377 4.2000875 2517.0176
+31075.0414759852 4.2000875 2515.0491
+31076.0414760327 4.2001662 2515.6399
+31077.04147608019 4.2001662 2511.9001
+31078.04147612769 4.200048 2509.1448
+31079.04147617519 4.2002449 2505.6021
+31080.04147622269 4.2001266 2502.6499
+31081.04147627018 4.2001662 2501.6658
+31082.04147631768 4.2000875 2495.3677
+31083.04147636518 4.2002058 2496.5486
+31084.04147641268 4.200048 2494.1868
+31085.04147646017 4.200048 2490.4473
+31086.04147650767 4.2001662 2490.0535
+31087.04147655517 4.2001662 2485.9204
+31088.04147660267 4.2001662 2484.7395
+31089.04147665016 4.2001662 2481.9841
+31090.04147669766 4.2001266 2476.4731
+31091.04147674516 4.2000875 2475.0955
+31092.04147679266 4.2001662 2472.3401
+31093.04147684015 4.200048 2470.9624
+31094.04147688765 4.2002058 2468.7974
+31095.04147693515 4.2000875 2466.8291
+31096.04147698265 4.2002058 2461.1213
+31097.04147703014 4.2000875 2461.5151
+31098.04147707764 4.2002845 2459.5469
+31099.04147712514 4.2002058 2457.5786
+31100.04147717264 4.2000875 2453.8391
+31101.04147722013 4.2001266 2451.0837
+31102.04147726763 4.2001662 2447.3442
+31103.04147731513 4.2001266 2445.9666
+31104.04147736263 4.2001662 2444.9824
+31105.04147741012 4.2002058 2441.8333
+31106.04147745762 4.2000875 2441.4397
+31107.04147750512 4.2001662 2436.9128
+31108.04147755262 4.2001266 2434.7478
+31109.04147760011 4.2001662 2432.7798
+31110.04147764761 4.2001662 2430.2212
+31111.04147769511 4.2001266 2427.8594
+31112.0414777426 4.200048 2424.907
+31113.0414777901 4.2000875 2418.2153
+31114.0414778376 4.2001266 2420.3804
+31115.0414778851 4.2001662 2414.8694
+31116.04147793259 4.2001266 2414.8694
+31117.04147798009 4.2000875 2412.3108
+31118.04147802759 4.2000875 2409.949
+31119.04147807509 4.2001266 2408.3745
+31120.04147812258 4.2000875 2405.2253
+31121.04147817008 4.2001662 2402.6667
+31122.04147821758 4.2000875 2400.5017
+31123.04147826508 4.2001662 2398.7305
+31124.04147831257 4.2001662 2398.5334
+31125.04147836007 4.2001662 2392.4321
+31126.04147840757 4.2001662 2389.0862
+31127.04147845507 4.2001662 2387.7085
+31128.04147850256 4.2000875 2386.9211
+31129.04147855006 4.2002058 2383.969
+31130.04147859756 4.200048 2380.0327
+31131.04147864506 4.2000875 2381.804
+31132.04147869255 4.2002058 2375.3091
+31133.04147874005 4.2002058 2374.9155
+31134.04147878755 4.2001266 2370.979
+31135.04147883505 4.200048 2367.4363
+31136.04147888254 4.2001266 2367.8301
+31137.04147893004 4.2002058 2365.4683
+31138.04147897754 4.2000875 2360.5479
+31139.04147902504 4.2001662 2358.9731
+31140.04147907253 4.2002058 2355.4307
+31141.04147912003 4.2000875 2353.6592
+31142.04147916753 4.2002058 2354.0527
+31143.04147921503 4.2001266 2350.707
+31144.04147926252 4.2002058 2347.5579
+31145.04147931002 4.2001662 2342.8342
+31146.04147935752 4.2000875 2341.063
+31147.04147940502 4.2001662 2341.2598
+31148.04147945251 4.2000875 2334.1743
+31149.04147950001 4.2001662 2335.552
+31150.04147954751 4.2001266 2333.5837
+31151.04147959501 4.2002058 2329.6475
+31152.0414796425 4.2002058 2328.073
+31153.04147969 4.2002058 2325.908
+31154.0414797375 4.2001662 2322.1685
+31155.041479785 4.2001662 2320.594
+31156.04147983249 4.2002058 2321.9714
+31157.04147987999 4.2001266 2315.8704
+31158.04147992749 4.2001266 2312.7212
+31159.04147997499 4.2001662 2314.4924
+31160.04148002248 4.2001662 2308.7849
+31161.04148006998 4.2002058 2310.3594
+31162.04148011748 4.2001266 2304.6516
+31163.04148016497 4.2000875 2302.4866
+31164.04148021247 4.2001266 2298.5503
+31165.04148025997 4.2001266 2297.1726
+31166.04148030747 4.2001266 2296.7791
+31167.04148035496 4.2002058 2293.4331
+31168.04148040246 4.2002058 2291.0713
+31169.04148044996 4.2000875 2286.9382
+31170.04148049746 4.2001266 2288.1191
+31171.04148054495 4.2001266 2284.3794
+31172.04148059245 4.2001662 2283.0017
+31173.04148063995 4.2001662 2280.6401
+31174.04148068745 4.2001266 2276.3101
+31175.04148073494 4.2001266 2275.5227
+31176.04148078244 4.2001662 2272.5706
+31177.04148082994 4.2001662 2270.4055
+31178.04148087744 4.2002058 2267.4534
+31179.04148092493 4.2002449 2267.6499
+31180.04148097243 4.2002449 2262.5327
+31181.04148101993 4.2002845 2263.5168
+31182.04148106743 4.200048 2258.5964
+31183.04148111492 4.2001662 2258.0059
+31184.04148116242 4.2002058 2255.0537
+31185.04148120992 4.2001662 2251.3142
+31186.04148125742 4.2001662 2248.7556
+31187.04148130491 4.2001662 2247.9683
+31188.04148135241 4.2002449 2245.0159
+31189.04148139991 4.2001662 2242.2605
+31190.04148144741 4.2001266 2240.8828
+31191.0414814949 4.2001266 2239.5051
+31192.0414815424 4.2001266 2235.5688
+31193.0414815899 4.2001662 2231.4355
+31194.0414816374 4.2001266 2232.6165
+31195.04148168489 4.2001266 2229.0737
+31196.04148173239 4.2001662 2228.2866
+31197.04148177989 4.2001662 2225.531
+31198.04148182739 4.2002058 2219.4297
+31199.04148187488 4.2002058 2220.6106
+31200.04148192238 4.2002058 2219.2329
+31201.04148196988 4.2002058 2214.1157
+31202.04148201738 4.2001662 2210.3762
+31203.04148206487 4.200048 2209.9827
+31204.04148211237 4.2002058 2209.9827
+31205.04148215987 4.2001662 2209.3921
+31206.04148220737 4.2001266 2204.6685
+31207.04148225486 4.2000875 2202.8972
+31208.04148230236 4.2001662 2202.3066
+31209.04148234986 4.2002058 2197.3862
+31210.04148239736 4.2001266 2195.8118
+31211.04148244485 4.2001662 2190.4978
+31212.04148249235 4.2000875 2190.6943
+31213.04148253985 4.2000875 2189.5137
+31214.04148258734 4.2000875 2187.3486
+31215.04148263484 4.2001266 2184.593
+31216.04148268234 4.200048 2180.2632
+31217.04148272984 4.2001266 2182.0344
+31218.04148277733 4.2002058 2179.4758
+31219.04148282483 4.2002449 2175.9331
+31220.04148287233 4.2002058 2173.1777
+31221.04148291983 4.2001662 2170.6191
+31222.04148296732 4.2002058 2170.8159
+31223.04148301482 4.2002058 2168.4541
+31224.04148306232 4.2001266 2163.7305
+31225.04148310982 4.2001662 2161.7622
+31226.04148315731 4.2001266 2160.7783
+31227.04148320481 4.2001662 2156.4482
+31228.04148325231 4.2001266 2155.6611
+31229.04148329981 4.2002845 2152.3152
+31230.0414833473 4.2000875 2150.1501
+31231.0414833948 4.2001266 2149.3628
+31232.0414834423 4.2002058 2149.5596
+31233.0414834898 4.2002449 2147.001
+31234.04148353729 4.2002058 2143.655
+31235.04148358479 4.2001662 2140.8997
+31236.04148363229 4.2001266 2139.522
+31237.04148367979 4.2001662 2135.5857
+31238.04148372728 4.2000875 2131.4524
+31239.04148377478 4.2000089 2131.0588
+31240.04148382228 4.2001266 2129.8779
+31241.04148386978 4.2001266 2124.5637
+31242.04148391727 4.2001266 2126.3352
+31243.04148396477 4.2001662 2122.7925
+31244.04148401227 4.2001662 2121.218
+31245.04148405977 4.2002058 2118.4624
+31246.04148410726 4.2000875 2112.5581
+31247.04148415476 4.2001662 2113.9358
+31248.04148420226 4.2000875 2114.1326
+31249.04148424976 4.2001662 2111.5737
+31250.04148429725 4.2001266 2107.8345
+31251.04148434475 4.2001266 2106.8503
+31252.04148439225 4.2001662 2103.7012
+31253.04148443975 4.2001266 2099.7649
+31254.04148448724 4.2001266 2097.5999
+31255.04148453474 4.2002058 2098.9775
+31256.04148458224 4.2002449 2096.6157
+31257.04148462974 4.200048 2094.4507
+31258.04148467723 4.2001662 2092.4827
+31259.04148472473 4.2000875 2085.3972
+31260.04148477223 4.2002058 2087.3655
+31261.04148481973 4.2002058 2086.7749
+31262.04148486722 4.2001266 2082.6418
+31263.04148491472 4.2001662 2081.4609
+31264.04148496222 4.2001662 2078.5085
+31265.04148500972 4.2000875 2078.5085
+31266.04148505721 4.2001662 2074.5723
+31267.04148510471 4.2002058 2072.604
+31268.04148515221 4.2000875 2067.8806
+31269.0414851997 4.2001662 2069.8486
+31270.0414852472 4.2000875 2064.5347
+31271.0414852947 4.2000875 2064.3376
+31272.0414853422 4.2001662 2063.5505
+31273.04148538969 4.200048 2059.4175
+31274.04148543719 4.2002058 2061.5823
+31275.04148548469 4.2002058 2059.0237
+31276.04148553219 4.2001662 2051.5447
+31277.04148557968 4.2003236 2052.135
+31278.04148562718 4.2002449 2049.1829
+31279.04148567468 4.2000875 2048.1987
+31280.04148572218 4.2001662 2045.837
+31281.04148576967 4.2001662 2045.2466
+31282.04148581717 4.200048 2042.6879
+31283.04148586467 4.2002058 2040.1293
+31284.04148591217 4.2001266 2038.1611
+31285.04148595966 4.2001266 2034.4216
+31286.04148600716 4.2002058 2035.6025
+31287.04148605466 4.2002058 2028.3202
+31288.04148610216 4.2001266 2029.3043
+31289.04148614965 4.2001662 2030.0917
+31290.04148619715 4.2001266 2024.9744
+31291.04148624465 4.2001266 2025.1711
+31292.04148629215 4.2001662 2022.219
+31293.04148633964 4.2002058 2021.038
+31294.04148638714 4.2001662 2015.5271
+31295.04148643464 4.2001662 2014.3462
+31296.04148648214 4.2002058 2012.9685
+31297.04148652963 4.2002449 2010.4099
+31298.04148657713 4.2001662 2010.8035
+31299.04148662463 4.2000875 2007.064
+31300.04148667213 4.200048 2006.2767
+31301.04148671962 4.2001662 2001.9468
+31302.04148676712 4.2002058 2003.7181
+31303.04148681462 4.2001266 1997.8135
+31304.04148686212 4.2001266 1998.4041
+31305.04148690961 4.2001266 1994.6644
+31306.04148695711 4.2001266 1991.1218
+31307.04148700461 4.2002058 1991.5154
+31308.04148705211 4.2000875 1988.3663
+31309.0414870996 4.2001662 1986.5951
+31310.0414871471 4.2000875 1982.6586
+31311.0414871946 4.2001266 1984.8236
+31312.0414872421 4.2000875 1982.4619
+31313.04148728959 4.2002845 1979.9032
+31314.04148733709 4.2001266 1977.3445
+31315.04148738459 4.2001266 1973.2114
+31316.04148743209 4.2001266 1974.5891
+31317.04148747958 4.2000875 1971.6368
+31318.04148752708 4.2001266 1967.7006
+31319.04148757458 4.200048 1967.3068
+31320.04148762207 4.2000875 1965.1418
+31321.04148766957 4.2001662 1964.1577
+31322.04148771707 4.2001662 1959.2374
+31323.04148776457 4.2000875 1956.4819
+31324.04148781206 4.200048 1956.6787
+31325.04148785956 4.2001266 1953.9233
+31326.04148790706 4.2001266 1953.7264
+31327.04148795456 4.2000875 1952.1519
+31328.04148800205 4.2002058 1948.6093
+31329.04148804955 4.2001662 1945.2634
+31330.04148809705 4.2001662 1945.2634
+31331.04148814455 4.2001662 1942.5078
+31332.04148819204 4.2001266 1942.1144
+31333.04148823954 4.2001266 1938.1779
+31334.04148828704 4.2000875 1937.1938
+31335.04148833454 4.2002449 1932.2734
+31336.04148838203 4.2000875 1932.8638
+31337.04148842953 4.2000875 1932.0767
+31338.04148847703 4.2001662 1929.1244
+31339.04148852453 4.2001266 1927.9435
+31340.04148857202 4.200048 1926.172
+31341.04148861952 4.2001662 1924.7944
+31342.04148866702 4.2001662 1922.8263
+31343.04148871452 4.2002449 1921.4485
+31344.04148876201 4.2001662 1919.677
+31345.04148880951 4.2002058 1915.347
+31346.04148885701 4.2000875 1914.5598
+31347.04148890451 4.2001662 1910.6235
+31348.041488952 4.2001662 1912.9854
+31349.0414889995 4.2001662 1908.4586
+31350.041489047 4.2001662 1904.719
+31351.0414890945 4.200048 1904.9158
+31352.04148914199 4.2002058 1903.1445
+31353.04148918949 4.2002449 1902.1604
+31354.04148923699 4.2002058 1902.3572
+31355.04148928449 4.2001662 1897.0431
+31356.04148933198 4.2002058 1891.729
+31357.04148937948 4.2001266 1890.745
+31358.04148942698 4.2001266 1892.3196
+31359.04148947448 4.2000875 1890.1545
+31360.04148952197 4.2001266 1887.9896
+31361.04148956947 4.2002058 1886.0212
+31362.04148961697 4.2001266 1885.0372
+31363.04148966447 4.200048 1882.6755
+31364.04148971196 4.2000875 1878.5422
+31365.04148975946 4.2001266 1876.771
+31366.04148980696 4.2000875 1875.3932
+31367.04148985446 4.2002058 1875.3932
+31368.04148990195 4.2001266 1874.4091
+31369.04148994945 4.2001266 1872.8346
+31370.04148999695 4.2001662 1871.6537
+31371.04149004444 4.2000875 1867.3237
+31372.04149009194 4.2001266 1866.7333
+31373.04149013944 4.2002058 1865.5522
+31374.04149018694 4.200048 1861.8129
+31375.04149023443 4.2001266 1862.6001
+31376.04149028193 4.2001662 1858.6638
+31377.04149032943 4.200048 1858.0732
+31378.04149037693 4.2000875 1855.5148
+31379.04149042442 4.2001662 1852.7592
+31380.04149047192 4.2000875 1849.807
+31381.04149051942 4.2001662 1848.8229
+31382.04149056692 4.2001266 1845.6738
+31383.04149061441 4.2001662 1846.658
+31384.04149066191 4.2002449 1847.0515
+31385.04149070941 4.2000875 1843.7056
+31386.04149075691 4.2001662 1840.5565
+31387.0414908044 4.2001662 1838.1948
+31388.0414908519 4.2002058 1835.6361
+31389.0414908994 4.2001266 1835.4393
+31390.0414909469 4.2001662 1833.0775
+31391.04149099439 4.2001662 1830.9125
+31392.04149104189 4.2001662 1831.1093
+31393.04149108939 4.2001662 1827.5665
+31394.04149113689 4.2001662 1825.5984
+31395.04149118438 4.2002449 1824.8112
+31396.04149123188 4.2002058 1820.8749
+31397.04149127938 4.2001266 1821.6621
+31398.04149132688 4.2001266 1817.7257
+31399.04149137437 4.2001266 1817.5289
+31400.04149142187 4.2000875 1813.199
+31401.04149146937 4.200048 1814.7734
+31402.04149151687 4.200048 1810.2467
+31403.04149156436 4.2001662 1811.0341
+31404.04149161186 4.2001266 1807.6881
+31405.04149165936 4.2002058 1806.1135
+31406.04149170686 4.2001662 1802.5708
+31407.04149175435 4.2001662 1802.7676
+31408.04149180185 4.2001266 1802.1772
+31409.04149184935 4.2002058 1798.4376
+31410.04149189685 4.2001266 1795.6823
+31411.04149194434 4.2002449 1795.4854
+31412.04149199184 4.2001266 1793.7141
+31413.04149203934 4.2000875 1791.3523
+31414.04149208684 4.2000875 1786.6287
+31415.04149213433 4.2002058 1788.9905
+31416.04149218183 4.2001266 1784.8573
+31417.04149222933 4.2002058 1785.8414
+31418.04149227683 4.2002058 1783.6764
+31419.04149232432 4.2001266 1780.7241
+31420.04149237182 4.2001662 1780.1337
+31421.04149241932 4.2001662 1777.3783
+31422.04149246681 4.2002058 1775.4099
+31423.04149251431 4.2001266 1775.8037
+31424.04149256181 4.2000875 1772.0642
+31425.04149260931 4.2000875 1769.3087
+31426.0414926568 4.2001662 1769.8992
+31427.0414927043 4.2002845 1767.7343
+31428.0414927518 4.2001266 1765.3724
+31429.0414927993 4.2002058 1759.271
+31430.04149284679 4.2001662 1762.2234
+31431.04149289429 4.200048 1758.2869
+31432.04149294179 4.2002058 1756.7124
+31433.04149298929 4.2001266 1757.106
+31434.04149303678 4.2002449 1753.5634
+31435.04149308428 4.2002058 1752.5793
+31436.04149313178 4.2001662 1750.2174
+31437.04149317928 4.2001266 1748.446
+31438.04149322677 4.2001662 1747.8556
+31439.04149327427 4.2002449 1744.7065
+31440.04149332177 4.2002449 1741.3607
+31441.04149336927 4.2002449 1739.786
+31442.04149341676 4.2002058 1739.3926
+31443.04149346426 4.2000875 1736.8339
+31444.04149351176 4.2001662 1735.8497
+31445.04149355926 4.2002058 1733.8816
+31446.04149360675 4.2001662 1732.8976
+31447.04149365425 4.2002058 1731.323
+31448.04149370175 4.2001266 1730.3389
+31449.04149374925 4.2002058 1726.5992
+31450.04149379674 4.2001266 1722.8599
+31451.04149384424 4.2002058 1724.2375
+31452.04149389174 4.2002449 1723.6471
+31453.04149393924 4.200048 1720.8917
+31454.04149398673 4.200048 1721.679
+31455.04149403423 4.2001662 1715.9712
+31456.04149408173 4.2002449 1715.5776
+31457.04149412923 4.2001662 1714.9871
+31458.04149417672 4.2002449 1713.4126
+31459.04149422422 4.2001266 1710.0668
+31460.04149427172 4.2000875 1707.1144
+31461.04149431922 4.2001266 1706.7208
+31462.04149436671 4.2002058 1703.1781
+31463.04149441421 4.2001266 1703.3749
+31464.04149446171 4.2001662 1699.6354
+31465.04149450921 4.2000875 1700.0291
+31466.0414945567 4.2002058 1696.6831
+31467.0414946042 4.2000875 1696.6831
+31468.0414946517 4.2001266 1693.7308
+31469.0414946992 4.2001662 1693.9277
+31470.04149474669 4.2001266 1689.9913
+31471.04149479419 4.2001266 1687.0391
+31472.04149484169 4.2000875 1686.4487
+31473.04149488918 4.2002449 1688.8104
+31474.04149493668 4.2000875 1686.4487
+31475.04149498418 4.2002058 1684.6772
+31476.04149503168 4.2001662 1682.7091
+31477.04149507917 4.200048 1677.9855
+31478.04149512667 4.2002058 1676.2141
+31479.04149517417 4.2001662 1676.0173
+31480.04149522167 4.2002058 1675.0332
+31481.04149526916 4.2001662 1674.0492
+31482.04149531666 4.2002058 1672.2778
+31483.04149536416 4.200048 1672.6714
+31484.04149541166 4.2001266 1669.7191
+31485.04149545915 4.2001662 1666.9636
+31486.04149550665 4.2002058 1664.6019
+31487.04149555415 4.2000875 1663.0273
+31488.04149560165 4.2001662 1662.8304
+31489.04149564914 4.2000875 1658.1069
+31490.04149569664 4.2002845 1659.8783
+31491.04149574414 4.2001266 1657.9102
+31492.04149579164 4.2002845 1655.7451
+31493.04149583913 4.2002449 1653.1865
+31494.04149588663 4.2002058 1652.3993
+31495.04149593413 4.2001662 1652.0055
+31496.04149598163 4.2001662 1649.447
+31497.04149602912 4.2002449 1647.282
+31498.04149607662 4.2000875 1640.7871
+31499.04149612412 4.2001662 1644.5265
+31500.04149617162 4.2001662 1643.5425
+31501.04149621911 4.2002058 1642.1647
+31502.04149626661 4.2001662 1639.4093
+31503.04149631411 4.2001266 1632.5206
+31504.04149636161 4.2001266 1636.8506
+31505.0414964091 4.2001266 1633.308
+31506.0414964566 4.2001266 1630.9462
+31507.0414965041 4.2002058 1631.7334
+31508.0414965516 4.2001266 1630.1588
+31509.04149659909 4.2001662 1628.1907
+31510.04149664659 4.2002449 1625.6321
+31511.04149669409 4.2001266 1622.0894
+31512.04149674159 4.2001662 1623.2703
+31513.04149678908 4.2000875 1618.9403
+31514.04149683658 4.2000875 1619.5308
+31515.04149688408 4.2001662 1619.3339
+31516.04149693158 4.2002058 1617.5625
+31517.04149697907 4.2000089 1612.6422
+31518.04149702657 4.2002058 1613.2325
+31519.04149707407 4.2001266 1609.2963
+31520.04149712157 4.2000875 1606.9344
+31521.04149716906 4.2002058 1607.7217
+31522.04149721656 4.2000875 1607.1313
+31523.04149726406 4.2001266 1604.7694
+31524.04149731155 4.2001662 1604.179
+31525.04149735905 4.200048 1602.4076
+31526.04149740655 4.200048 1602.2108
+31527.04149745405 4.2002058 1601.2267
+31528.04149750154 4.2001266 1600.0458
+31529.04149754904 4.2001662 1597.0936
+31530.04149759654 4.2002058 1596.1095
+31531.04149764404 4.2001266 1589.2208
+31532.04149769153 4.2002058 1589.8114
+31533.04149773903 4.2002449 1589.024
+31534.04149778653 4.2001266 1588.6305
+31535.04149783403 4.2001662 1586.4655
+31536.04149788152 4.2002058 1587.0559
+31537.04149792902 4.2001662 1582.7258
+31538.04149797652 4.2000875 1581.9386
+31539.04149802402 4.2001266 1579.7737
+31540.04149807151 4.2000875 1577.0182
+31541.04149811901 4.2001266 1574.4596
+31542.04149816651 4.2001662 1575.05
+31543.04149821401 4.2001662 1572.885
+31544.0414982615 4.2001266 1571.1136
+31545.041498309 4.2001662 1569.9327
+31546.0414983565 4.2001662 1569.736
+31547.041498404 4.2002845 1570.9169
+31548.04149845149 4.200048 1565.2091
+31549.04149849899 4.2000875 1563.8315
+31550.04149854649 4.2001662 1561.4697
+31551.04149859399 4.2002058 1564.4219
+31552.04149864148 4.2002058 1560.6825
+31553.04149868898 4.200048 1557.7301
+31554.04149873648 4.2001662 1558.5175
+31555.04149878398 4.2001662 1555.762
+31556.04149883147 4.200048 1555.3683
+31557.04149887897 4.2000875 1549.267
+31558.04149892647 4.200048 1551.432
+31559.04149897397 4.2001266 1551.6288
+31560.04149902146 4.2002058 1549.0701
+31561.04149906896 4.200048 1546.7083
+31562.04149911646 4.2001266 1545.1338
+31563.04149916396 4.2001662 1544.1498
+31564.04149921145 4.200048 1540.6071
+31565.04149925895 4.2001662 1538.8357
+31566.04149930645 4.2002449 1540.2133
+31567.04149935395 4.2002058 1539.0323
+31568.04149940144 4.2000089 1535.8833
+31569.04149944894 4.2001662 1533.9152
+31570.04149949644 4.2001266 1532.9312
+31571.04149954394 4.2000875 1533.1279
+31572.04149959143 4.2001266 1530.5693
+31573.04149963893 4.2000875 1528.2074
+31574.04149968643 4.2001662 1525.452
+31575.04149973392 4.2001266 1524.6648
+31576.04149978142 4.2001266 1522.303
+31577.04149982892 4.2002058 1522.303
+31578.04149987642 4.2000875 1517.1858
+31579.04149992391 4.2001662 1517.1858
+31580.04149997141 4.2001266 1518.7603
+31581.04150001891 4.2001662 1516.2018
+31582.04150006641 4.2001266 1515.4143
+31583.0415001139 4.2002449 1513.4462
+31584.0415001614 4.2001662 1511.8717
+31585.0415002089 4.2001662 1509.7068
+31586.0415002564 4.200048 1508.9194
+31587.04150030389 4.2000875 1505.9672
+31588.04150035139 4.2002449 1505.9672
+31589.04150039889 4.2000875 1503.4084
+31590.04150044639 4.2002058 1505.3768
+31591.04150049388 4.2000089 1501.2435
+31592.04150054138 4.200048 1496.9136
+31593.04150058888 4.2001266 1494.5516
+31594.04150063638 4.2002058 1498.4882
+31595.04150068387 4.2000875 1495.9294
+31596.04150073137 4.2002058 1495.1422
+31597.04150077887 4.2001662 1493.1741
+31598.04150082637 4.2002449 1491.5995
+31599.04150087386 4.2001662 1490.8123
+31600.04150092136 4.2002058 1487.6632
+31601.04150096886 4.2000089 1487.2695
+31602.04150101636 4.2000875 1483.7267
+31603.04150106385 4.2000875 1483.7267
+31604.04150111135 4.2000875 1479.7904
+31605.04150115885 4.2001662 1479.2001
+31606.04150120635 4.200048 1478.8064
+31607.04150125384 4.2001266 1477.4286
+31608.04150130134 4.2002058 1477.6255
+31609.04150134884 4.2002058 1474.4764
+31610.04150139634 4.2001266 1473.4923
+31611.04150144383 4.2001662 1472.3114
+31612.04150149133 4.2000875 1471.1305
+31613.04150153883 4.2000875 1466.6036
+31614.04150158633 4.2002449 1467.5878
+31615.04150163382 4.2002058 1465.8164
+31616.04150168132 4.2000875 1462.2737
+31617.04150172882 4.2000875 1465.0292
+31618.04150177632 4.2001266 1462.4706
+31619.04150182381 4.2001266 1462.6674
+31620.04150187131 4.2001662 1459.3214
+31621.04150191881 4.2001662 1454.9915
+31622.04150196631 4.2001266 1456.1724
+31623.0415020138 4.2002058 1456.566
+31624.0415020613 4.2001266 1452.2361
+31625.0415021088 4.2002058 1449.6775
+31626.04150215629 4.2001266 1451.252
+31627.04150220379 4.2001662 1447.9061
+31628.04150225129 4.2001662 1449.0869
+31629.04150229879 4.2000875 1443.3793
+31630.04150234628 4.2000875 1444.3634
+31631.04150239378 4.2001266 1440.427
+31632.04150244128 4.2001266 1441.0175
+31633.04150248878 4.2001662 1440.427
+31634.04150253627 4.2002058 1440.0334
+31635.04150258377 4.2001266 1435.9003
+31636.04150263127 4.2000089 1433.5385
+31637.04150267877 4.2001266 1435.3097
+31638.04150272626 4.2002058 1432.9479
+31639.04150277376 4.200048 1429.4053
+31640.04150282126 4.200048 1431.9639
+31641.04150286876 4.2001266 1424.4847
+31642.04150291625 4.2002058 1426.6498
+31643.04150296375 4.2002058 1422.9103
+31644.04150301125 4.200048 1421.9261
+31645.04150305875 4.2000875 1425.6656
+31646.04150310624 4.2002058 1421.3357
+31647.04150315374 4.2001662 1422.1229
+31648.04150320124 4.2001662 1419.3676
+31649.04150324874 4.2001266 1419.3676
+31650.04150329623 4.200048 1415.0376
+31651.04150334373 4.2002058 1413.6598
+31652.04150339123 4.2001662 1414.8407
+31653.04150343873 4.2002449 1411.4949
+31654.04150348622 4.2002058 1408.7395
+31655.04150353372 4.2001662 1409.1331
+31656.04150358122 4.2002058 1406.1808
+31657.04150362872 4.2002845 1407.9521
+31658.04150367621 4.2001266 1405.1968
+31659.04150372371 4.2001662 1404.0157
+31660.04150377121 4.2002058 1403.819
+31661.04150381871 4.2001662 1401.4572
+31662.0415038662 4.2002058 1400.2762
+31663.0415039137 4.2001266 1393.7813
+31664.0415039612 4.2002845 1396.5367
+31665.0415040087 4.2001266 1395.5527
+31666.04150405619 4.2002449 1393.7813
+31667.04150410369 4.2001662 1391.4196
+31668.04150415119 4.2002058 1393.3877
+31669.04150419869 4.2001266 1389.845
+31670.04150424618 4.2000875 1386.6959
+31671.04150429368 4.2000875 1385.1213
+31672.04150434118 4.2002058 1385.3181
+31673.04150438868 4.2001662 1386.1055
+31674.04150443617 4.2001662 1380.7913
+31675.04150448367 4.2001662 1378.2328
+31676.04150453117 4.200048 1377.4454
+31677.04150457866 4.2001266 1379.8073
+31678.04150462616 4.2001266 1376.0677
+31679.04150467366 4.2001662 1376.4613
+31680.04150472116 4.2002449 1373.5092
+31681.04150476865 4.2001662 1374.0996
+31682.04150481615 4.2002058 1370.36
+31683.04150486365 4.2002058 1370.1632
+31684.04150491115 4.2002449 1368.9823
+31685.04150495864 4.2000875 1365.046
+31686.04150500614 4.2002058 1367.6046
+31687.04150505364 4.2002449 1365.6364
+31688.04150510114 4.2002449 1364.6523
+31689.04150514863 4.2001662 1361.5033
+31690.04150519613 4.2001266 1359.1414
+31691.04150524363 4.2001266 1358.551
+31692.04150529113 4.200048 1355.2051
+31693.04150533862 4.200048 1354.4178
+31694.04150538612 4.2001266 1352.2529
+31695.04150543362 4.2001266 1353.4338
+31696.04150548112 4.2002449 1351.8593
+31697.04150552861 4.2001662 1352.056
+31698.04150557611 4.2001662 1349.8911
+31699.04150562361 4.2001662 1347.3324
+31700.04150567111 4.2001662 1349.4974
+31701.0415057186 4.2001662 1344.3801
+31702.0415057661 4.2002058 1344.3801
+31703.0415058136 4.2000875 1342.0183
+31704.0415058611 4.200048 1337.6884
+31705.04150590859 4.2001662 1338.6725
+31706.04150595609 4.2001662 1340.6406
+31707.04150600359 4.2001266 1336.7042
+31708.04150605109 4.2000089 1334.3424
+31709.04150609858 4.2001662 1336.1139
+31710.04150614608 4.2001266 1333.5552
+31711.04150619358 4.2000875 1329.8157
+31712.04150624108 4.2000875 1328.6349
+31713.04150628857 4.2001266 1329.2252
+31714.04150633607 4.2002449 1329.2252
+31715.04150638357 4.2001266 1326.2731
+31716.04150643107 4.2001266 1327.8475
+31717.04150647856 4.2000875 1321.1556
+31718.04150652606 4.2001662 1325.6825
+31719.04150657356 4.2001266 1322.3365
+31720.04150662106 4.2000875 1319.3844
+31721.04150666855 4.2001266 1320.1716
+31722.04150671605 4.2001266 1317.4163
+31723.04150676355 4.2001266 1317.613
+31724.04150681105 4.2002449 1314.6606
+31725.04150685854 4.2001662 1312.8894
+31726.04150690604 4.2001266 1310.9213
+31727.04150695354 4.2002058 1310.134
+31728.04150700103 4.2000875 1309.5435
+31729.04150704853 4.2001662 1308.5594
+31730.04150709603 4.2001266 1308.1658
+31731.04150714353 4.2001662 1303.8357
+31732.04150719102 4.2001266 1302.6548
+31733.04150723852 4.2002058 1303.8357
+31734.04150728602 4.2001266 1300.6866
+31735.04150733352 4.2001266 1298.7185
+31736.04150738101 4.2001266 1297.9313
+31737.04150742851 4.2001662 1299.1122
+31738.04150747601 4.2000875 1293.4045
+31739.04150752351 4.2001662 1295.5695
+31740.041507571 4.2000875 1293.0107
+31741.0415076185 4.200048 1292.6173
+31742.041507666 4.2001662 1290.2554
+31743.0415077135 4.2000875 1288.6808
+31744.04150776099 4.2000089 1284.5477
+31745.04150780849 4.2001266 1288.6808
+31746.04150785599 4.2002058 1285.7286
+31747.04150790349 4.2001662 1282.7764
+31748.04150795098 4.2001662 1281.2018
+31749.04150799848 4.2002058 1281.5955
+31750.04150804598 4.2001662 1281.0049
+31751.04150809348 4.2000875 1279.4304
+31752.04150814097 4.2000875 1278.84
+31753.04150818847 4.2001662 1276.0846
+31754.04150823597 4.2001662 1276.6749
+31755.04150828347 4.2000875 1273.7228
+31756.04150833096 4.2001266 1273.5259
+31757.04150837846 4.2001266 1273.3292
+31758.04150842596 4.200048 1270.5737
+31759.04150847346 4.2000875 1269.3927
+31760.04150852095 4.2001662 1268.4087
+31761.04150856845 4.2001662 1261.3234
+31762.04150861595 4.2001266 1266.2437
+31763.04150866345 4.2001266 1261.52
+31764.04150871094 4.2001662 1265.4564
+31765.04150875844 4.2000089 1262.1106
+31766.04150880594 4.2001662 1259.355
+31767.04150885344 4.2000875 1259.9456
+31768.04150890093 4.2001662 1258.7646
+31769.04150894843 4.2000089 1253.8441
+31770.04150899593 4.2001662 1255.8124
+31771.04150904343 4.2002058 1255.4187
+31772.04150909092 4.2000875 1254.041
+31773.04150913842 4.2001662 1252.4666
+31774.04150918592 4.2001662 1251.876
+31775.04150923342 4.2000875 1247.9397
+31776.04150928091 4.2001266 1246.9557
+31777.04150932841 4.2000875 1245.1842
+31778.04150937591 4.2002058 1245.1842
+31779.0415094234 4.200048 1245.7747
+31780.0415094709 4.2000875 1242.0352
+31781.0415095184 4.2001662 1241.8384
+31782.0415095659 4.2002058 1239.8702
+31783.04150961339 4.2001266 1239.083
+31784.04150966089 4.2001662 1238.2957
+31785.04150970839 4.2001662 1236.3275
+31786.04150975589 4.2001266 1235.3435
+31787.04150980338 4.2000875 1234.7531
+31788.04150985088 4.2002449 1231.4071
+31789.04150989838 4.2002449 1230.8167
+31790.04150994588 4.2000875 1229.0453
+31791.04150999337 4.2000875 1228.4548
+31792.04151004087 4.2001266 1227.4707
+31793.04151008837 4.2001266 1226.2898
+31794.04151013587 4.2001662 1223.9281
+31795.04151018336 4.2001266 1224.1249
+31796.04151023086 4.2000875 1223.1407
+31797.04151027836 4.2000875 1221.7631
+31798.04151032586 4.2002449 1219.9917
+31799.04151037335 4.2000875 1218.8108
+31800.04151042085 4.2001266 1218.0236
+31801.04151046835 4.2001266 1216.449
+31802.04151051585 4.2001266 1215.0713
+31803.04151056334 4.2001662 1209.7572
+31804.04151061084 4.2002058 1214.2839
+31805.04151065834 4.200048 1208.3794
+31806.04151070584 4.2000875 1210.9381
+31807.04151075333 4.2001662 1208.7731
+31808.04151080083 4.2001662 1208.9698
+31809.04151084833 4.2002058 1207.5922
+31810.04151089583 4.2001266 1207.7889
+31811.04151094332 4.200048 1203.8527
+31812.04151099082 4.2001662 1204.8368
+31813.04151103832 4.2001266 1196.964
+31814.04151108582 4.2002058 1200.1132
+31815.04151113331 4.2002058 1199.7195
+31816.04151118081 4.2001662 1199.9163
+31817.04151122831 4.2000875 1197.5544
+31818.04151127581 4.2002058 1194.2086
+31819.0415113233 4.2001662 1195.1927
+31820.0415113708 4.2001266 1193.2245
+31821.0415114183 4.2000875 1193.6182
+31822.0415114658 4.2000089 1190.6659
+31823.04151151329 4.2001266 1189.6819
+31824.04151156079 4.2000089 1185.5486
+31825.04151160829 4.2002058 1188.1073
+31826.04151165579 4.2001662 1183.9741
+31827.04151170328 4.2002058 1187.1232
+31828.04151175078 4.2001266 1183.1869
+31829.04151179828 4.2001266 1181.4155
+31830.04151184578 4.200048 1180.2346
+31831.04151189327 4.2000875 1178.66
+31832.04151194077 4.2000875 1180.6283
+31833.04151198827 4.2001662 1175.7078
+31834.04151203576 4.2001662 1177.2823
+31835.04151208326 4.200048 1175.3141
+31836.04151213076 4.2002058 1174.7236
+31837.04151217826 4.2002449 1172.9524
+31838.04151222575 4.2000875 1173.3459
+31839.04151227325 4.2002449 1170.1969
+31840.04151232075 4.2000875 1170.0001
+31841.04151236825 4.2001266 1165.0796
+31842.04151241574 4.2001266 1164.8828
+31843.04151246324 4.2001662 1163.5051
+31844.04151251074 4.2001266 1163.8987
+31845.04151255824 4.2002058 1161.9305
+31846.04151260573 4.2000875 1160.5529
+31847.04151265323 4.2002449 1161.537
+31848.04151270073 4.2001266 1160.1592
+31849.04151274823 4.2000089 1155.8292
+31850.04151279572 4.2002058 1157.9943
+31851.04151284322 4.2000875 1157.4038
+31852.04151289072 4.200048 1153.0737
+31853.04151293822 4.2001662 1154.4515
+31854.04151298571 4.2001662 1154.2546
+31855.04151303321 4.2002058 1150.5151
+31856.04151308071 4.200048 1149.3342
+31857.04151312821 4.2001662 1152.0897
+31858.0415131757 4.1999693 1148.3502
+31859.0415132232 4.2002058 1146.1852
+31860.0415132707 4.200048 1146.9725
+31861.0415133182 4.2001266 1145.7916
+31862.04151336569 4.2000089 1142.6425
+31863.04151341319 4.2002058 1144.217
+31864.04151346069 4.2000875 1138.1157
+31865.04151350819 4.2001662 1141.068
+31866.04151355568 4.2002449 1138.5093
+31867.04151360318 4.2001266 1138.3125
+31868.04151365068 4.2001662 1137.5253
+31869.04151369818 4.2001662 1135.5571
+31870.04151374567 4.2001266 1135.5571
+31871.04151379317 4.2000875 1134.1793
+31872.04151384067 4.2001266 1130.4398
+31873.04151388817 4.2002058 1131.0303
+31874.04151393566 4.2002058 1129.4557
+31875.04151398316 4.2000875 1128.078
+31876.04151403066 4.2001662 1127.8812
+31877.04151407816 4.200048 1122.7639
+31878.04151412565 4.2001266 1124.7322
+31879.04151417315 4.200048 1124.3385
+31880.04151422065 4.2001662 1123.3544
+31881.04151426815 4.2001266 1124.7322
+31882.04151431564 4.2000875 1121.3862
+31883.04151436314 4.2001266 1119.418
+31884.04151441064 4.2002058 1120.2053
+31885.04151445813 4.2000875 1116.2689
+31886.04151450563 4.2001662 1116.8594
+31887.04151455313 4.200048 1113.1199
+31888.04151460063 4.2001266 1115.6785
+31889.04151464812 4.2001662 1111.5454
+31890.04151469562 4.2001266 1113.3168
+31891.04151474312 4.2001662 1111.939
+31892.04151479062 4.2000875 1108.0026
+31893.04151483811 4.2001266 1106.6249
+31893.8075148745 4.2000089 1102.8854
+31893.80951487459 4.2001266 1104.0663
+31893.86151487706 4.1897726 0.0
+31894.86151492456 4.1893787 0.0
+31895.86151497206 4.1889853 0.0
+31896.86151501955 4.1889853 0.0
+31897.86151506705 4.1886702 0.0
+31898.86151511455 4.1885524 0.0
+31899.86151516205 4.1885128 0.0
+31900.86151520954 4.1882372 0.0
+31901.86151525704 4.1881981 0.0
+31902.86151530454 4.1879225 0.0
+31903.86151535204 4.1879225 0.0
+31904.86151539953 4.1877646 0.0
+31905.86151544703 4.1877255 0.0
+31906.86151549453 4.1875682 0.0
+31907.86151554203 4.1875682 0.0
+31908.86151558952 4.1873713 0.0
+31909.86151563702 4.1872926 0.0
+31910.86151568452 4.1871743 0.0
+31911.86151573202 4.1871347 0.0
+31912.86151577951 4.1871347 0.0
+31913.86151582701 4.1870561 0.0
+31914.86151587451 4.1869774 0.0
+31915.86151592201 4.18682 0.0
+31916.8615159695 4.18682 0.0
+31917.861516017 4.1867018 0.0
+31918.8615160645 4.1867018 0.0
+31919.861516112 4.1866231 0.0
+31920.86151615949 4.1864657 0.0
+31921.86151620699 4.1864262 0.0
+31922.86151625449 4.1863079 0.0
+31923.86151630199 4.1863871 0.0
+31924.86151634948 4.1861901 0.0
+31925.86151639698 4.1862292 0.0
+31926.86151644448 4.1861115 0.0
+31927.86151649198 4.1860719 0.0
+31928.86151653947 4.1861115 0.0
+31929.86151658697 4.1860328 0.0
+31930.86151663447 4.1857963 0.0
+31931.86151668197 4.1859145 0.0
+31932.86151672946 4.1857963 0.0
+31933.86151677696 4.1857176 0.0
+31934.86151682446 4.1857572 0.0
+31935.86151687196 4.1855602 0.0
+31936.86151691945 4.1855602 0.0
+31937.86151696695 4.1855206 0.0
+31938.86151701445 4.185442 0.0
+31939.86151706195 4.1854815 0.0
+31940.86151710944 4.1853237 0.0
+31941.86151715694 4.1851664 0.0
+31942.86151720444 4.1852846 0.0
+31943.86151725193 4.185245 0.0
+31944.86151729943 4.1852059 0.0
+31945.86151734693 4.1851273 0.0
+31946.86151739443 4.1850481 0.0
+31947.86151744192 4.1850481 0.0
+31948.86151748942 4.185009 0.0
+31949.86151753692 4.1848907 0.0
+31950.86151758442 4.1848516 0.0
+31951.86151763191 4.1848516 0.0
+31952.86151767941 4.1848516 0.0
+31953.86151772691 4.1846938 0.0
+31954.86151777441 4.1848121 0.0
+31955.8615178219 4.1846938 0.0
+31956.8615178694 4.1846151 0.0
+31957.8615179169 4.1847334 0.0
+31958.8615179644 4.1846151 0.0
+31959.86151801189 4.1844578 0.0
+31960.86151805939 4.1844182 0.0
+31961.86151810689 4.1844578 0.0
+31962.86151815439 4.1844974 0.0
+31963.86151820188 4.1843395 0.0
+31964.86151824938 4.1843004 0.0
+31965.86151829688 4.1843004 0.0
+31966.86151834438 4.1843004 0.0
+31967.86151839187 4.1841426 0.0
+31968.86151843937 4.1841822 0.0
+31969.86151848687 4.1841426 0.0
+31970.86151853437 4.1840639 0.0
+31971.86151858186 4.1840639 0.0
+31972.86151862936 4.1839852 0.0
+31973.86151867686 4.1839461 0.0
+31974.86151872436 4.1838675 0.0
+31975.86151877185 4.1839461 0.0
+31976.86151881935 4.1838279 0.0
+31977.86151886685 4.1837883 0.0
+31978.86151891435 4.1837492 0.0
+31979.86151896184 4.1838279 0.0
+31980.86151900934 4.1837883 0.0
+31981.86151905684 4.1837096 0.0
+31982.86151910434 4.1837096 0.0
+31983.86151915183 4.1835523 0.0
+31984.86151919933 4.1835918 0.0
+31985.86151924683 4.1835127 0.0
+31986.86151929433 4.1835127 0.0
+31987.86151934182 4.183434 0.0
+31988.86151938932 4.1835127 0.0
+31989.86151943682 4.1835523 0.0
+31990.86151948432 4.1833949 0.0
+31991.86151953181 4.183434 0.0
+31992.86151957931 4.1833949 0.0
+31993.86151962681 4.183434 0.0
+31994.8615196743 4.183198 0.0
+31995.8615197218 4.183198 0.0
+31996.8615197693 4.183198 0.0
+31997.8615198168 4.1831193 0.0
+31998.86151986429 4.1831584 0.0
+31999.86151991179 4.1830797 0.0
+32000.86151995929 4.1831193 0.0
+32001.86152000679 4.183001 0.0
+32002.86152005428 4.1830406 0.0
+32003.86152010178 4.183001 0.0
+32004.86152014928 4.1829224 0.0
+32005.86152019678 4.1828437 0.0
+32006.86152024427 4.1828828 0.0
+32007.86152029177 4.1829224 0.0
+32008.86152033927 4.1828828 0.0
+32009.86152038677 4.1828437 0.0
+32010.86152043426 4.1827254 0.0
+32011.86152048176 4.1828437 0.0
+32012.86152052926 4.1828041 0.0
+32013.86152057676 4.1827254 0.0
+32014.86152062425 4.1826863 0.0
+32015.86152067175 4.1826072 0.0
+32016.86152071925 4.1826863 0.0
+32017.86152076675 4.1826468 0.0
+32018.86152081424 4.1824894 0.0
+32019.86152086174 4.1825285 0.0
+32020.86152090924 4.1824894 0.0
+32021.86152095674 4.1825681 0.0
+32022.86152100423 4.1824107 0.0
+32023.86152105173 4.1824894 0.0
+32024.86152109923 4.1824498 0.0
+32025.86152114673 4.1824498 0.0
+32026.86152119422 4.1824107 0.0
+32027.86152124172 4.1824107 0.0
+32028.86152128922 4.1823711 0.0
+32029.86152133672 4.1822925 0.0
+32030.86152138421 4.1821742 0.0
+32031.86152143171 4.1821742 0.0
+32032.86152147921 4.1822925 0.0
+32033.86152152671 4.1820955 0.0
+32034.8615215742 4.1821351 0.0
+32035.8615216217 4.1821351 0.0
+32036.8615216692 4.1820564 0.0
+32037.8615217167 4.1820564 0.0
+32038.86152176419 4.1820955 0.0
+32039.86152181169 4.1820168 0.0
+32040.86152185919 4.1819382 0.0
+32041.86152190669 4.1819773 0.0
+32042.86152195418 4.1819773 0.0
+32043.86152200168 4.1820564 0.0
+32044.86152204918 4.1819382 0.0
+32045.86152209667 4.1819773 0.0
+32046.86152214417 4.1818986 0.0
+32047.86152219167 4.1817808 0.0
+32048.86152223917 4.1818199 0.0
+32049.86152228666 4.1818199 0.0
+32050.86152233416 4.1817412 0.0
+32051.86152238166 4.1817808 0.0
+32052.86152242916 4.1817017 0.0
+32053.86152247665 4.1816626 0.0
+32054.86152252415 4.1816626 0.0
+32055.86152257165 4.1815839 0.0
+32056.86152261915 4.1815443 0.0
+32057.86152266664 4.1817017 0.0
+32058.86152271414 4.1815443 0.0
+32059.86152276164 4.1815839 0.0
+32060.86152280914 4.1815839 0.0
+32061.86152285663 4.1815052 0.0
+32062.86152290413 4.1815443 0.0
+32063.86152295163 4.1815052 0.0
+32064.86152299913 4.1815443 0.0
+32065.86152304662 4.1815443 0.0
+32066.86152309412 4.1815052 0.0
+32067.86152314162 4.1813474 0.0
+32068.86152318912 4.1812687 0.0
+32069.86152323661 4.1814656 0.0
+32070.86152328411 4.18119 0.0
+32071.86152333161 4.1813083 0.0
+32072.86152337911 4.1812296 0.0
+32073.8615234266 4.1812296 0.0
+32074.8615234741 4.1812296 0.0
+32075.8615235216 4.1811113 0.0
+32076.8615235691 4.1810718 0.0
+32077.86152361659 4.1811509 0.0
+32078.86152366409 4.18119 0.0
+32079.86152371159 4.1811113 0.0
+32080.86152375909 4.1811113 0.0
+32081.86152380658 4.1810327 0.0
+32082.86152385408 4.1810718 0.0
+32083.86152390158 4.1810718 0.0
+32084.86152394908 4.1810327 0.0
+32085.86152399657 4.1810327 0.0
+32086.86152404407 4.180954 0.0
+32087.86152409157 4.1808357 0.0
+32088.86152413907 4.1809144 0.0
+32089.86152418656 4.1809144 0.0
+32090.86152423406 4.180954 0.0
+32091.86152428156 4.1809931 0.0
+32092.86152432906 4.1808753 0.0
+32093.86152437655 4.1808753 0.0
+32094.86152442405 4.1807966 0.0
+32095.86152447155 4.180757 0.0
+32096.86152451904 4.180757 0.0
+32097.86152456654 4.1808357 0.0
+32098.86152461404 4.1807175 0.0
+32099.86152466154 4.1807966 0.0
+32100.86152470903 4.1806388 0.0
+32101.86152475653 4.1806388 0.0
+32102.86152480403 4.1807175 0.0
+32103.86152485153 4.1805997 0.0
+32104.86152489902 4.1805601 0.0
+32105.86152494652 4.1805997 0.0
+32106.86152499402 4.180521 0.0
+32107.86152504152 4.1804814 0.0
+32108.86152508901 4.1806388 0.0
+32109.86152513651 4.180521 0.0
+32110.86152518401 4.1804814 0.0
+32111.86152523151 4.1804419 0.0
+32112.861525279 4.1804028 0.0
+32113.8615253265 4.1803632 0.0
+32114.861525374 4.1803632 0.0
+32115.8615254215 4.1804419 0.0
+32116.86152546899 4.1804028 0.0
+32117.86152551649 4.1803632 0.0
+32118.86152556399 4.1804028 0.0
+32119.86152561149 4.1802845 0.0
+32120.86152565898 4.1804028 0.0
+32121.86152570648 4.1802845 0.0
+32122.86152575398 4.1803241 0.0
+32123.86152580148 4.1802058 0.0
+32124.86152584897 4.1802058 0.0
+32125.86152589647 4.1801667 0.0
+32126.86152594397 4.1801271 0.0
+32127.86152599147 4.1800876 0.0
+32128.86152603896 4.1802058 0.0
+32129.86152608646 4.1801667 0.0
+32130.86152613396 4.1801667 0.0
+32131.86152618146 4.1799698 0.0
+32132.86152622895 4.1800089 0.0
+32133.86152627645 4.1801271 0.0
+32134.86152632395 4.1801271 0.0
+32135.86152637145 4.1800485 0.0
+32136.86152641894 4.1799698 0.0
+32137.86152646644 4.1800089 0.0
+32138.86152651394 4.1800876 0.0
+32139.86152656144 4.1800485 0.0
+32140.86152660893 4.1798515 0.0
+32141.86152665643 4.1799302 0.0
+32142.86152670393 4.1798911 0.0
+32143.86152675143 4.1799698 0.0
+32144.86152679892 4.1799302 0.0
+32145.86152684642 4.1799302 0.0
+32146.86152689392 4.1798911 0.0
+32147.86152694141 4.1797729 0.0
+32148.86152698891 4.1797729 0.0
+32149.86152703641 4.1797729 0.0
+32150.86152708391 4.1797333 0.0
+32151.8615271314 4.179812 0.0
+32152.8615271789 4.1797729 0.0
+32153.8615272264 4.1797333 0.0
+32154.8615272739 4.1797333 0.0
+32155.86152732139 4.1796942 0.0
+32156.86152736889 4.1797333 0.0
+32157.86152741639 4.1796546 0.0
+32158.86152746389 4.1796155 0.0
+32159.86152751138 4.1794972 0.0
+32160.86152755888 4.1796546 0.0
+32161.86152760638 4.1794972 0.0
+32162.86152765388 4.1795759 0.0
+32163.86152770137 4.1795759 0.0
+32164.86152774887 4.1796155 0.0
+32165.86152779637 4.179379 0.0
+32166.86152784387 4.1795759 0.0
+32167.86152789136 4.1795759 0.0
+32168.86152793886 4.1794972 0.0
+32169.86152798636 4.1794577 0.0
+32170.86152803386 4.1794186 0.0
+32171.86152808135 4.1794186 0.0
+32172.86152812885 4.179379 0.0
+32173.86152817635 4.1794186 0.0
+32174.86152822385 4.1793399 0.0
+32175.86152827134 4.1794186 0.0
+32176.86152831884 4.179379 0.0
+32177.86152836634 4.1793399 0.0
+32178.86152841384 4.1793003 0.0
+32179.86152846133 4.1793003 0.0
+32180.86152850883 4.1792216 0.0
+32181.86152855633 4.1792612 0.0
+32182.86152860383 4.1793399 0.0
+32183.86152865132 4.1792216 0.0
+32184.86152869882 4.179143 0.0
+32185.86152874632 4.1792612 0.0
+32186.86152879382 4.1792612 0.0
+32187.86152884131 4.1791821 0.0
+32188.86152888881 4.179143 0.0
+32189.86152893631 4.1791034 0.0
+32190.86152898381 4.179143 0.0
+32191.8615290313 4.1790643 0.0
+32192.8615290788 4.1791821 0.0
+32193.8615291263 4.1790247 0.0
+32194.8615291738 4.1791034 0.0
+32195.86152922129 4.178946 0.0
+32196.86152926879 4.178946 0.0
+32197.86152931629 4.1791034 0.0
+32198.86152936378 4.178946 0.0
+32199.86152941128 4.1789856 0.0
+32200.86152945878 4.1790247 0.0
+32201.86152950628 4.1789064 0.0
+32202.86152955377 4.178946 0.0
+32203.86152960127 4.1789064 0.0
+32204.86152964877 4.1789064 0.0
+32205.86152969627 4.1789064 0.0
+32206.86152974376 4.1788673 0.0
+32207.86152979126 4.1788278 0.0
+32208.86152983876 4.1788673 0.0
+32209.86152988626 4.1787887 0.0
+32210.86152993375 4.1788278 0.0
+32211.86152998125 4.1788278 0.0
+32212.86153002875 4.1788673 0.0
+32213.86153007625 4.1787887 0.0
+32214.86153012374 4.1787887 0.0
+32215.86153017124 4.1787491 0.0
+32216.86153021874 4.1787491 0.0
+32217.86153026624 4.1787491 0.0
+32218.86153031373 4.17871 0.0
+32219.86153036123 4.17871 0.0
+32220.86153040873 4.1786313 0.0
+32221.86153045623 4.1786313 0.0
+32222.86153050372 4.1785917 0.0
+32223.86153055122 4.1785917 0.0
+32224.86153059872 4.1786313 0.0
+32225.86153064622 4.1786313 0.0
+32226.86153069371 4.1786704 0.0
+32227.86153074121 4.1784735 0.0
+32228.86153078871 4.1785131 0.0
+32229.86153083621 4.1785522 0.0
+32230.8615308837 4.1785131 0.0
+32231.8615309312 4.1785522 0.0
+32232.8615309787 4.1785131 0.0
+32233.8615310262 4.1785522 0.0
+32234.86153107369 4.1785522 0.0
+32235.86153112119 4.1783948 0.0
+32236.86153116869 4.1784344 0.0
+32237.86153121619 4.1785131 0.0
+32238.86153126368 4.1784344 0.0
+32239.86153131118 4.1784344 0.0
+32240.86153135868 4.1784344 0.0
+32241.86153140618 4.1784344 0.0
+32242.86153145367 4.1783948 0.0
+32243.86153150117 4.1783557 0.0
+32244.86153154867 4.1783948 0.0
+32245.86153159617 4.1783161 0.0
+32246.86153164366 4.1783161 0.0
+32247.86153169116 4.1782765 0.0
+32248.86153173866 4.1783557 0.0
+32249.86153178616 4.1782765 0.0
+32250.86153183365 4.1782765 0.0
+32251.86153188115 4.1783161 0.0
+32252.86153192865 4.1781192 0.0
+32253.86153197614 4.1782374 0.0
+32254.86153202364 4.1782765 0.0
+32255.86153207114 4.1781979 0.0
+32256.86153211864 4.1781979 0.0
+32257.86153216613 4.1781979 0.0
+32258.86153221363 4.1781588 0.0
+32259.86153226113 4.1781588 0.0
+32260.86153230863 4.1781192 0.0
+32261.86153235612 4.1781588 0.0
+32262.86153240362 4.1780801 0.0
+32263.86153245112 4.1781192 0.0
+32264.86153249862 4.1780009 0.0
+32265.86153254611 4.1781192 0.0
+32266.86153259361 4.1781192 0.0
+32267.86153264111 4.1779618 0.0
+32268.86153268861 4.1780405 0.0
+32269.8615327361 4.1780009 0.0
+32270.8615327836 4.1780405 0.0
+32271.8615328311 4.1779222 0.0
+32272.8615328786 4.1779618 0.0
+32273.86153292609 4.1780801 0.0
+32274.86153297359 4.1779618 0.0
+32275.86153302109 4.1779618 0.0
+32276.86153306859 4.1780405 0.0
+32277.86153311608 4.1779618 0.0
+32278.86153316358 4.1778436 0.0
+32279.86153321108 4.1778045 0.0
+32280.86153325858 4.1778436 0.0
+32281.86153330607 4.1778436 0.0
+32282.86153335357 4.1778045 0.0
+32283.86153340107 4.1778045 0.0
+32284.86153344857 4.1778045 0.0
+32285.86153349606 4.1778831 0.0
+32286.86153354356 4.1778436 0.0
+32287.86153359106 4.1778045 0.0
+32288.86153363856 4.1778436 0.0
+32289.86153368605 4.1777649 0.0
+32290.86153373355 4.1778045 0.0
+32291.86153378105 4.1776862 0.0
+32292.86153382855 4.1776075 0.0
+32293.86153387604 4.1777649 0.0
+32294.86153392354 4.1777258 0.0
+32295.86153397104 4.1777649 0.0
+32296.86153401854 4.1777258 0.0
+32297.86153406603 4.1777258 0.0
+32298.86153411353 4.1776862 0.0
+32299.86153416103 4.1776466 0.0
+32300.86153420853 4.1777258 0.0
+32301.86153425602 4.1776075 0.0
+32302.86153430352 4.1776466 0.0
+32303.86153435102 4.1775289 0.0
+32304.86153439851 4.1776075 0.0
+32305.86153444601 4.1774893 0.0
+32306.86153449351 4.1776075 0.0
+32307.86153454101 4.1775289 0.0
+32308.8615345885 4.1776075 0.0
+32309.861534636 4.1775289 0.0
+32310.8615346835 4.177568 0.0
+32311.861534731 4.1775289 0.0
+32312.86153477849 4.1774106 0.0
+32313.86153482599 4.1774106 0.0
+32314.86153487349 4.1774502 0.0
+32315.86153492099 4.1775289 0.0
+32316.86153496848 4.1773319 0.0
+32317.86153501598 4.177371 0.0
+32318.86153506348 4.1774893 0.0
+32319.86153511098 4.1774106 0.0
+32320.86153515847 4.1774502 0.0
+32321.86153520597 4.177371 0.0
+32322.86153525347 4.1773319 0.0
+32323.86153530097 4.1774893 0.0
+32324.86153534846 4.1773319 0.0
+32325.86153539596 4.177371 0.0
+32326.86153544346 4.1774106 0.0
+32327.86153549096 4.1772532 0.0
+32328.86153553845 4.1773319 0.0
+32329.86153558595 4.1772923 0.0
+32330.86153563345 4.177371 0.0
+32331.86153568095 4.1772923 0.0
+32332.86153572844 4.177371 0.0
+32333.86153577594 4.1772532 0.0
+32334.86153582344 4.1772923 0.0
+32335.86153587094 4.1771746 0.0
+32336.86153591843 4.1772532 0.0
+32337.86153596593 4.1773319 0.0
+32338.86153601343 4.1773319 0.0
+32339.86153606093 4.1772137 0.0
+32340.86153610842 4.1772137 0.0
+32341.86153615592 4.1770959 0.0
+32342.86153620342 4.1772137 0.0
+32343.86153625092 4.177135 0.0
+32344.86153629841 4.1770959 0.0
+32345.86153634591 4.1770959 0.0
+32346.86153639341 4.1770563 0.0
+32347.86153644091 4.1770959 0.0
+32348.8615364884 4.1770959 0.0
+32349.8615365359 4.1770167 0.0
+32350.8615365834 4.177135 0.0
+32351.8615366309 4.177135 0.0
+32352.86153667839 4.1770167 0.0
+32353.86153672589 4.1770563 0.0
+32354.86153677339 4.1770563 0.0
+32355.86153682088 4.1770959 0.0
+32356.86153686838 4.1769776 0.0
+32357.86153691588 4.1769776 0.0
+32358.86153696338 4.1770167 0.0
+32359.86153701087 4.1769776 0.0
+32360.86153705837 4.1769776 0.0
+32361.86153710587 4.1770167 0.0
+32362.86153715337 4.176899 0.0
+32363.86153720086 4.1769776 0.0
+32364.86153724836 4.1769381 0.0
+32365.86153729586 4.176899 0.0
+32366.86153734336 4.176899 0.0
+32367.86153739085 4.1769381 0.0
+32368.86153743835 4.176899 0.0
+32369.86153748585 4.1767807 0.0
+32370.86153753335 4.1768594 0.0
+32371.86153758084 4.1769776 0.0
+32372.86153762834 4.1767807 0.0
+32373.86153767584 4.1768203 0.0
+32374.86153772334 4.1768203 0.0
+32375.86153777083 4.176702 0.0
+32376.86153781833 4.176899 0.0
+32377.86153786583 4.1767807 0.0
+32378.86153791333 4.1767807 0.0
+32379.86153796082 4.1767807 0.0
+32380.86153800832 4.176702 0.0
+32381.86153805582 4.176899 0.0
+32382.86153810332 4.176702 0.0
+32383.86153815081 4.1768203 0.0
+32384.86153819831 4.1767807 0.0
+32385.86153824581 4.1767411 0.0
+32386.86153829331 4.1767411 0.0
+32387.8615383408 4.1767411 0.0
+32388.8615383883 4.1766233 0.0
+32389.8615384358 4.1766233 0.0
+32390.8615384833 4.1765838 0.0
+32391.86153853079 4.1765447 0.0
+32392.86153857829 4.1766624 0.0
+32393.86153862579 4.1765838 0.0
+32394.86153867329 4.1765838 0.0
+32395.86153872078 4.1765838 0.0
+32396.86153876828 4.1766233 0.0
+32397.86153881578 4.1766624 0.0
+32398.86153886328 4.1765838 0.0
+32399.86153891077 4.1766233 0.0
+32400.86153895827 4.1765051 0.0
+32401.86153900577 4.1765838 0.0
+32402.86153905327 4.1765447 0.0
+32403.86153910076 4.1765838 0.0
+32404.86153914826 4.1765447 0.0
+32405.86153919576 4.176466 0.0
+32406.86153924325 4.1765447 0.0
+32407.86153929075 4.1765447 0.0
+32408.86153933825 4.176466 0.0
+32409.86153938575 4.1765447 0.0
+32410.86153943324 4.176466 0.0
+32411.86153948074 4.1765447 0.0
+32412.86153952824 4.1764264 0.0
+32413.86153957574 4.1763477 0.0
+32414.86153962323 4.1765447 0.0
+32415.86153967073 4.1763868 0.0
+32416.86153971823 4.1762691 0.0
+32417.86153976573 4.1763477 0.0
+32418.86153981322 4.1764264 0.0
+32419.86153986072 4.1762691 0.0
+32420.86153990822 4.1763868 0.0
+32421.86153995572 4.1763082 0.0
+32422.86154000321 4.1763082 0.0
+32423.86154005071 4.1763082 0.0
+32424.86154009821 4.1763082 0.0
+32425.86154014571 4.1763082 0.0
+32426.8615401932 4.1763477 0.0
+32427.8615402407 4.1763868 0.0
+32428.8615402882 4.1763477 0.0
+32429.8615403357 4.1763477 0.0
+32430.86154038319 4.1763868 0.0
+32431.86154043069 4.1762691 0.0
+32432.86154047819 4.1762691 0.0
+32433.86154052569 4.1761904 0.0
+32434.86154057318 4.1762691 0.0
+32435.86154062068 4.1762691 0.0
+32436.86154066818 4.1761112 0.0
+32437.86154071568 4.1762295 0.0
+32438.86154076317 4.1762295 0.0
+32439.86154081067 4.1762691 0.0
+32440.86154085817 4.1761904 0.0
+32441.86154090567 4.1761904 0.0
+32442.86154095316 4.1761112 0.0
+32443.86154100066 4.1762691 0.0
+32444.86154104816 4.1761112 0.0
+32445.86154109566 4.1761904 0.0
+32446.86154114315 4.1761508 0.0
+32447.86154119065 4.1761112 0.0
+32448.86154123815 4.1761508 0.0
+32449.86154128565 4.1761508 0.0
+32450.86154133314 4.1760721 0.0
+32451.86154138064 4.1761112 0.0
+32452.86154142814 4.1760721 0.0
+32453.86154147564 4.1761112 0.0
+32454.86154152313 4.1760721 0.0
+32455.86154157063 4.1759934 0.0
+32456.86154161813 4.1759539 0.0
+32457.86154166562 4.1760325 0.0
+32458.86154171312 4.1759148 0.0
+32459.86154176062 4.1759934 0.0
+32460.86154180812 4.1760721 0.0
+32461.86154185561 4.1759934 0.0
+32462.86154190311 4.1759934 0.0
+32463.86154195061 4.1759934 0.0
+32464.86154199811 4.1759148 0.0
+32465.8615420456 4.1758752 0.0
+32466.8615420931 4.1759539 0.0
+32467.8615421406 4.1759934 0.0
+32468.8615421881 4.1759148 0.0
+32469.86154223559 4.1758752 0.0
+32470.86154228309 4.1759539 0.0
+32471.86154233059 4.1759148 0.0
+32472.86154237809 4.1759539 0.0
+32473.86154242558 4.1759934 0.0
+32474.86154247308 4.1759539 0.0
+32475.86154252058 4.1759148 0.0
+32476.86154256808 4.1758752 0.0
+32477.86154261557 4.1757965 0.0
+32478.86154266307 4.1757965 0.0
+32479.86154271057 4.1758752 0.0
+32480.86154275807 4.1758356 0.0
+32481.86154280556 4.1759148 0.0
+32482.86154285306 4.1757965 0.0
+32483.86154290056 4.1757569 0.0
+32484.86154294806 4.1757178 0.0
+32485.86154299555 4.1757965 0.0
+32486.86154304305 4.1758356 0.0
+32487.86154309055 4.1757569 0.0
+32488.86154313805 4.1757178 0.0
+32489.86154318554 4.1757569 0.0
+32490.86154323304 4.1758356 0.0
+32491.86154328054 4.1757178 0.0
+32492.86154332804 4.1757569 0.0
+32493.90954337781 4.1088681 -7353.5669
+32493.91154337791 4.1083565 -7353.1738
+32494.91154342541 4.1028051 -7353.9609
+32495.9115434729 4.1011519 -7354.5513
+32496.9115435204 4.1000495 -7354.1577
+32497.9115435679 4.0989079 -7354.3545
+32498.9115436154 4.0978446 -7354.5513
+32499.91154366289 4.0969 -7354.1577
+32500.91154371039 4.0959945 -7353.7646
+32501.91154375789 4.0952463 -7354.1577
+32502.91154380539 4.0943804 -7353.9609
+32503.91154385288 4.0936718 -7354.3545
+32504.91154390038 4.0929632 -7354.5513
+32505.91154394788 4.0923333 -7353.5669
+32506.91154399537 4.0915456 -7353.5669
+32507.91154404287 4.0909553 -7353.3706
+32508.91154409037 4.0903645 -7353.9609
+32509.91154413787 4.0898132 -7353.7646
+32510.91154418536 4.0891047 -7354.1577
+32511.91154423286 4.0886717 -7353.5669
+32512.91154428036 4.0880418 -7354.5513
+32513.91154432786 4.0874906 -7354.3545
+32514.91154437535 4.0869789 -7353.9609
+32515.91154442285 4.0865064 -7353.7646
+32516.91154447035 4.0859947 -7354.3545
+32517.91154451785 4.0855222 -7353.9609
+32518.91154456534 4.0849314 -7352.9771
+32519.91154461284 4.084538 -7353.9609
+32520.91154466034 4.084105 -7353.5669
+32521.91154470784 4.0837111 -7354.1577
+32522.91154475533 4.0832386 -7354.3545
+32523.91154480283 4.0828843 -7353.3706
+32524.91154485033 4.0824118 -7353.7646
+32525.91154489783 4.0819001 -7353.9609
+32526.91154494532 4.0816245 -7353.9609
+32527.91154499282 4.0813098 -7354.3545
+32528.91154504032 4.0807586 -7354.9453
+32529.91154508782 4.0803256 -7353.7646
+32530.91154513531 4.0799317 -7354.1577
+32531.91154518281 4.0795774 -7354.7485
+32532.91154523031 4.0791836 -7353.1738
+32533.91154527781 4.078908 -7353.3706
+32534.9115453253 4.0785933 -7353.9609
+32535.9115453728 4.0781994 -7353.3706
+32536.9115454203 4.0778055 -7354.3545
+32537.9115454678 4.0774512 -7353.5669
+32538.91154551529 4.0770578 -7353.9609
+32539.91154556279 4.076664 -7354.1577
+32540.91154561029 4.0764279 -7354.1577
+32541.91154565779 4.0761523 -7353.3706
+32542.91154570528 4.075798 -7353.7646
+32543.91154575278 4.0754437 -7353.7646
+32544.91154580028 4.0751286 -7353.7646
+32545.91154584778 4.0749316 -7354.3545
+32546.91154589527 4.0744596 -7353.7646
+32547.91154594277 4.074223 -7353.9609
+32548.91154599027 4.0738688 -7353.7646
+32549.91154603777 4.0734358 -7354.1577
+32550.91154608526 4.0733175 -7353.9609
+32551.91154613276 4.0729632 -7353.3706
+32552.91154618026 4.072845 -7353.7646
+32553.91154622776 4.072412 -7353.3706
+32554.91154627525 4.0721364 -7354.5513
+32555.91154632275 4.0717821 -7353.7646
+32556.91154637025 4.0715065 -7353.7646
+32557.91154641774 4.0712309 -7354.5513
+32558.91154646524 4.0709553 -7353.9609
+32559.91154651274 4.0706797 -7354.9453
+32560.91154656024 4.0705223 -7354.3545
+32561.91154660773 4.070168 -7353.5669
+32562.91154665523 4.0700498 -7354.3545
+32563.91154670273 4.0696564 -7354.7485
+32564.91154675023 4.0693808 -7354.1577
+32565.91154679772 4.0692625 -7353.7646
+32566.91154684522 4.0688295 -7353.3706
+32567.91154689272 4.0686326 -7353.9609
+32568.91154694022 4.0683966 -7354.3545
+32569.91154698771 4.0681601 -7354.1577
+32570.91154703521 4.0678844 -7353.1738
+32571.91154708271 4.0674911 -7353.9609
+32572.91154713021 4.0672941 -7353.7646
+32573.9115471777 4.0671368 -7353.7646
+32574.9115472252 4.0669398 -7353.3706
+32575.9115472727 4.0667429 -7354.3545
+32576.9115473202 4.0663099 -7354.5513
+32577.91154736769 4.0662313 -7354.3545
+32578.91154741519 4.0659556 -7354.7485
+32579.91154746269 4.06568 -7354.3545
+32580.91154751019 4.0654831 -7354.1577
+32581.91154755768 4.0652075 -7354.5513
+32582.91154760518 4.0650105 -7354.1577
+32583.91154765268 4.0648136 -7353.3706
+32584.91154770018 4.0646172 -7353.7646
+32585.91154774767 4.0642233 -7354.1577
+32586.91154779517 4.0640264 -7353.7646
+32587.91154784267 4.0639081 -7353.1738
+32588.91154789017 4.0636325 -7353.7646
+32589.91154793766 4.063436 -7354.9453
+32590.91154798516 4.0632391 -7352.9771
+32591.91154803266 4.0629239 -7353.7646
+32592.91154808016 4.0628848 -7352.7803
+32593.91154812765 4.0626483 -7353.9609
+32594.91154817515 4.0624123 -7354.1577
+32595.91154822265 4.0621367 -7354.1577
+32596.91154827015 4.0619793 -7354.3545
+32597.91154831764 4.0617428 -7353.9609
+32598.91154836514 4.0615854 -7354.1577
+32599.91154841264 4.0614281 -7353.9609
+32600.91154846014 4.0611129 -7353.7646
+32601.91154850763 4.0609951 -7353.7646
+32602.91154855513 4.0606408 -7353.3706
+32603.91154860263 4.0605226 -7353.9609
+32604.91154865013 4.0603256 -7354.3545
+32605.91154869762 4.0602074 -7353.7646
+32606.91154874512 4.0598927 -7354.7485
+32607.91154879262 4.0597744 -7353.5669
+32608.91154884011 4.0594988 -7354.3545
+32609.91154888761 4.0593414 -7354.3545
+32610.91154893511 4.0591445 -7354.5513
+32611.91154898261 4.0589085 -7353.9609
+32612.9115490301 4.0587115 -7354.3545
+32613.9115490776 4.0586329 -7354.5513
+32614.9115491251 4.0583177 -7354.5513
+32615.9115491726 4.0583177 -7353.7646
+32616.91154922009 4.0580029 -7353.3706
+32617.91154926759 4.0578847 -7353.7646
+32618.91154931509 4.0577273 -7354.1577
+32619.91154936259 4.0575304 -7353.9609
+32620.91154941008 4.0574121 -7353.9609
+32621.91154945758 4.0571761 -7353.5669
+32622.91154950508 4.0569401 -7354.1577
+32623.91154955258 4.0568218 -7354.7485
+32624.91154960007 4.0566645 -7354.1577
+32625.91154964757 4.0563102 -7353.3706
+32626.91154969507 4.0561132 -7353.7646
+32627.91154974257 4.0561523 -7353.1738
+32628.91154979006 4.0558376 -7353.7646
+32629.91154983756 4.0558376 -7353.9609
+32630.91154988506 4.0556407 -7354.7485
+32631.91154993256 4.0554438 -7354.1577
+32632.91154998005 4.0551682 -7354.1577
+32633.91155002755 4.0550108 -7354.9453
+32634.91155007505 4.0549321 -7353.7646
+32635.91155012255 4.0545778 -7354.5513
+32636.91155017004 4.0546169 -7354.5513
+32637.91155021754 4.0543022 -7354.1577
+32638.91155026504 4.0542235 -7353.7646
+32639.91155031254 4.0540266 -7354.1577
+32640.91155036003 4.0538297 -7353.9609
+32641.91155040753 4.0536327 -7353.9609
+32642.91155045503 4.0534358 -7354.1577
+32643.91155050253 4.0533571 -7353.7646
+32644.91155055002 4.0532784 -7353.3706
+32645.91155059752 4.0530424 -7353.9609
+32646.91155064502 4.0529242 -7354.1577
+32647.91155069252 4.0528059 -7354.3545
+32648.91155074001 4.0525303 -7354.1577
+32649.91155078751 4.0523729 -7353.7646
+32650.91155083501 4.0521369 -7354.3545
+32651.91155088251 4.0520186 -7354.3545
+32652.91155093 4.0519795 -7354.1577
+32653.9115509775 4.0518613 -7353.5669
+32654.911551025 4.0516248 -7352.9771
+32655.9115510725 4.0514283 -7353.5669
+32656.91155111999 4.0513101 -7354.1577
+32657.91155116749 4.051074 -7354.5513
+32658.91155121499 4.0509162 -7354.1577
+32659.91155126248 4.0507984 -7354.1577
+32660.91155130998 4.0507193 -7354.1577
+32661.91155135748 4.0506015 -7353.5669
+32662.91155140498 4.050365 -7354.1577
+32663.91155145247 4.0501685 -7354.3545
+32664.91155149997 4.0500503 -7353.7646
+32665.91155154747 4.0500107 -7353.9609
+32666.91155159497 4.0497351 -7354.5513
+32667.91155164246 4.0495777 -7354.7485
+32668.91155168996 4.0494204 -7354.3545
+32669.91155173746 4.0493417 -7353.7646
+32670.91155178496 4.0491843 -7353.7646
+32671.91155183245 4.0489478 -7353.1738
+32672.91155187995 4.0488691 -7353.7646
+32673.91155192745 4.0486331 -7353.3706
+32674.91155197495 4.0485539 -7354.3545
+32675.91155202244 4.0483966 -7353.9609
+32676.91155206994 4.0481606 -7353.7646
+32677.91155211744 4.0482392 -7353.7646
+32678.91155216494 4.0478849 -7354.1577
+32679.91155221243 4.0478849 -7353.3706
+32680.91155225993 4.0476489 -7353.3706
+32681.91155230743 4.0475307 -7353.5669
+32682.91155235493 4.047452 -7353.9609
+32683.91155240242 4.0473337 -7354.3545
+32684.91155244992 4.0471368 -7354.1577
+32685.91155249742 4.0469398 -7354.3545
+32686.91155254492 4.0468221 -7354.5513
+32687.91155259241 4.0466642 -7353.3706
+32688.91155263991 4.0466251 -7353.7646
+32689.91155268741 4.0463886 -7353.7646
+32690.91155273491 4.0463495 -7353.9609
+32691.9115527824 4.0461526 -7353.3706
+32692.9115528299 4.0460343 -7353.9609
+32693.9115528774 4.045877 -7353.9609
+32694.9115529249 4.0457587 -7354.3545
+32695.91155297239 4.0455623 -7354.5513
+32696.91155301989 4.0456014 -7353.7646
+32697.91155306739 4.0453653 -7354.3545
+32698.91155311489 4.0453258 -7353.9609
+32699.91155316238 4.0451288 -7353.5669
+32700.91155320988 4.0449324 -7354.3545
+32701.91155325738 4.0448532 -7353.7646
+32702.91155330488 4.0446959 -7354.3545
+32703.91155335237 4.0446172 -7354.1577
+32704.91155339987 4.0445781 -7354.1577
+32705.91155344737 4.0443416 -7353.7646
+32706.91155349487 4.0442233 -7353.1738
+32707.91155354236 4.0441446 -7353.1738
+32708.91155358986 4.044066 -7353.9609
+32709.91155363736 4.0438299 -7354.1577
+32710.91155368485 4.0437117 -7353.3706
+32711.91155373235 4.043633 -7354.7485
+32712.91155377985 4.0434756 -7353.5669
+32713.91155382735 4.0433178 -7353.9609
+32714.91155387484 4.0431604 -7353.3706
+32715.91155392234 4.0431213 -7353.3706
+32716.91155396984 4.0428457 -7353.3706
+32717.91155401734 4.0428457 -7353.7646
+32718.91155406483 4.0427275 -7354.1577
+32719.91155411233 4.0426488 -7353.5669
+32720.91155415983 4.0424914 -7354.1577
+32721.91155420733 4.0423336 -7354.1577
+32722.91155425482 4.0421762 -7353.3706
+32723.91155430232 4.0420189 -7353.7646
+32724.91155434982 4.0419402 -7353.5669
+32725.91155439732 4.0418615 -7354.5513
+32726.91155444481 4.0417433 -7354.1577
+32727.91155449231 4.0415072 -7353.3706
+32728.91155453981 4.0415072 -7353.9609
+32729.91155458731 4.0411525 -7353.9609
+32730.9115546348 4.0412316 -7353.7646
+32731.9115546823 4.0411921 -7354.7485
+32732.9115547298 4.0410347 -7353.7646
+32733.9115547773 4.0408773 -7354.1577
+32734.91155482479 4.0406017 -7353.1738
+32735.91155487229 4.0406804 -7353.9609
+32736.91155491979 4.0405622 -7353.3706
+32737.91155496729 4.0404048 -7354.1577
+32738.91155501478 4.0403261 -7354.5513
+32739.91155506228 4.0400505 -7353.7646
+32740.91155510978 4.0400896 -7353.5669
+32741.91155515728 4.0399323 -7353.5669
+32742.91155520477 4.0397749 -7354.1577
+32743.91155525227 4.0397353 -7353.1738
+32744.91155529977 4.039578 -7354.3545
+32745.91155534727 4.0394993 -7353.5669
+32746.91155539476 4.0393419 -7354.1577
+32747.91155544226 4.0392628 -7352.9771
+32748.91155548976 4.0391841 -7353.3706
+32749.91155553726 4.0390663 -7353.5669
+32750.91155558475 4.0389481 -7353.5669
+32751.91155563225 4.0388298 -7354.3545
+32752.91155567975 4.038712 -7354.1577
+32753.91155572725 4.0385938 -7353.7646
+32754.91155577474 4.0385151 -7353.1738
+32755.91155582224 4.0383573 -7354.1577
+32756.91155586974 4.0382395 -7353.7646
+32757.91155591724 4.0382786 -7353.9609
+32758.91155596473 4.0380816 -7353.5669
+32759.91155601223 4.038003 -7353.7646
+32760.91155605973 4.0379243 -7353.9609
+32761.91155610722 4.0377274 -7354.1577
+32762.91155615472 4.0376883 -7353.7646
+32763.91155620222 4.0375309 -7354.5513
+32764.91155624972 4.0374517 -7353.3706
+32765.91155629721 4.037334 -7353.5669
+32766.91155634471 4.0371766 -7354.1577
+32767.91155639221 4.0370584 -7353.3706
+32768.91155643971 4.0369401 -7353.7646
+32769.9115564872 4.0368614 -7353.9609
+32770.9115565347 4.0367432 -7353.5669
+32771.9115565822 4.0367827 -7354.3545
+32772.9115566297 4.0365462 -7353.3706
+32773.91155667719 4.0364285 -7354.1577
+32774.91155672469 4.0363498 -7354.7485
+32775.91155677219 4.0362711 -7353.5669
+32776.91155681969 4.0361528 -7353.7646
+32777.91155686718 4.0359163 -7353.1738
+32778.91155691468 4.0358772 -7353.7646
+32779.91155696218 4.0358377 -7354.3545
+32780.91155700968 4.0356016 -7353.5669
+32781.91155705717 4.0356803 -7354.3545
+32782.91155710467 4.035562 -7354.5513
+32783.91155715217 4.0354443 -7354.3545
+32784.91155719967 4.0352864 -7353.5669
+32785.91155724716 4.0351686 -7353.7646
+32786.91155729466 4.0351291 -7354.1577
+32787.91155734216 4.0350113 -7353.7646
+32788.91155738966 4.034893 -7353.7646
+32789.91155743715 4.0348535 -7353.1738
+32790.91155748465 4.0346174 -7353.1738
+32791.91155753215 4.0346961 -7353.7646
+32792.91155757965 4.0345387 -7354.1577
+32793.91155762714 4.0344205 -7353.9609
+32794.91155767464 4.0343022 -7354.3545
+32795.91155772214 4.0341449 -7354.7485
+32796.91155776964 4.0341058 -7353.5669
+32797.91155781713 4.0341449 -7354.5513
+32798.91155786463 4.0340266 -7354.5513
+32799.91155791213 4.0337906 -7353.1738
+32800.91155795963 4.0337119 -7353.7646
+32801.91155800712 4.0336332 -7353.3706
+32802.91155805462 4.0335546 -7353.5669
+32803.91155810212 4.0335546 -7353.7646
+32804.91155814962 4.0334363 -7353.9609
+32805.91155819711 4.0332394 -7353.9609
+32806.91155824461 4.0332789 -7354.1577
+32807.91155829211 4.0330033 -7354.1577
+32808.91155833961 4.0329247 -7353.5669
+32809.9115583871 4.0328851 -7353.1738
+32810.9115584346 4.0327668 -7353.7646
+32811.9115584821 4.0327277 -7354.3545
+32812.91155852959 4.0325704 -7353.9609
+32813.91155857709 4.0325704 -7353.7646
+32814.91155862459 4.0324521 -7355.1421
+32815.91155867209 4.0323734 -7353.5669
+32816.91155871958 4.0321765 -7354.1577
+32817.91155876708 4.0321765 -7353.7646
+32818.91155881458 4.0319796 -7354.5513
+32819.91155886208 4.0319009 -7354.5513
+32820.91155890957 4.0318613 -7353.9609
+32821.91155895707 4.0317039 -7354.1577
+32822.91155900457 4.0316253 -7354.3545
+32823.91155905207 4.0315466 -7354.3545
+32824.91155909956 4.031507 -7353.7646
+32825.91155914706 4.031271 -7353.1738
+32826.91155919456 4.0313892 -7353.7646
+32827.91155924206 4.0311136 -7354.3545
+32828.91155928955 4.0311527 -7354.1577
+32829.91155933705 4.031074 -7353.1738
+32830.91155938455 4.030838 -7354.5513
+32831.91155943205 4.0309167 -7354.1577
+32832.91155947954 4.0306411 -7354.1577
+32833.91155952704 4.0306411 -7353.7646
+32834.91155957454 4.0306411 -7354.1577
+32835.91155962204 4.030405 -7354.1577
+32836.91155966953 4.030405 -7353.5669
+32837.91155971703 4.0302081 -7353.5669
+32838.91155976453 4.0302081 -7353.1738
+32839.91155981203 4.0301294 -7354.1577
+32840.91155985952 4.0300112 -7353.9609
+32841.91155990702 4.0299716 -7354.3545
+32842.91155995452 4.0297356 -7353.5669
+32843.91156000202 4.0297751 -7354.1577
+32844.91156004951 4.0297751 -7353.9609
+32845.91156009701 4.0295782 -7353.5669
+32846.91156014451 4.02946 -7354.1577
+32847.91156019201 4.0293813 -7353.9609
+32848.9115602395 4.0293026 -7353.7646
+32849.911560287 4.0293026 -7353.1738
+32850.9115603345 4.0292239 -7354.5513
+32851.911560382 4.0289874 -7353.7646
+32852.91156042949 4.029027 -7354.1577
+32853.91156047699 4.029027 -7353.9609
+32854.91156052449 4.0288301 -7353.5669
+32855.91156057199 4.0287514 -7353.3706
+32856.91156061948 4.028594 -7353.3706
+32857.91156066698 4.028594 -7354.1577
+32858.91156071448 4.0284758 -7354.3545
+32859.91156076198 4.0284362 -7353.5669
+32860.91156080947 4.0283971 -7354.9453
+32861.91156085697 4.0283184 -7353.3706
+32862.91156090447 4.0280819 -7353.7646
+32863.91156095196 4.0280032 -7353.3706
+32864.91156099946 4.0279641 -7353.9609
+32865.91156104696 4.0279245 -7353.9609
+32866.91156109446 4.0279245 -7354.3545
+32867.91156114195 4.0276885 -7353.9609
+32868.91156118945 4.0276093 -7353.3706
+32869.91156123695 4.0275702 -7354.5513
+32870.91156128445 4.027452 -7353.9609
+32871.91156133194 4.0274129 -7353.9609
+32872.91156137944 4.0273733 -7353.9609
+32873.91156142694 4.0272946 -7354.5513
+32874.91156147444 4.0271764 -7354.1577
+32875.91156152193 4.0270586 -7353.9609
+32876.91156156943 4.0270586 -7354.3545
+32877.91156161693 4.0269403 -7354.3545
+32878.91156166443 4.0269008 -7353.9609
+32879.91156171192 4.0268221 -7353.5669
+32880.91156175942 4.0266647 -7354.1577
+32881.91156180692 4.0265861 -7353.9609
+32882.91156185442 4.0265074 -7353.3706
+32883.91156190191 4.0265074 -7353.7646
+32884.91156194941 4.0263891 -7353.7646
+32885.91156199691 4.0262709 -7354.1577
+32886.91156204441 4.0261922 -7353.3706
+32887.9115620919 4.0261922 -7353.9609
+32888.9115621394 4.0260744 -7354.3545
+32889.9115621869 4.0260744 -7353.5669
+32890.9115622344 4.0260348 -7353.9609
+32891.91156228189 4.0258379 -7354.1577
+32892.91156232939 4.0257592 -7353.7646
+32893.91156237689 4.0257196 -7353.7646
+32894.91156242439 4.0256019 -7354.5513
+32895.91156247188 4.0254836 -7353.5669
+32896.91156251938 4.0255232 -7354.1577
+32897.91156256688 4.0253263 -7353.9609
+32898.91156261438 4.0252867 -7353.5669
+32899.91156266187 4.0252867 -7353.5669
+32900.91156270937 4.0251293 -7353.9609
+32901.91156275687 4.0250506 -7353.5669
+32902.91156280437 4.0250506 -7353.5669
+32903.91156285186 4.0248537 -7353.7646
+32904.91156289936 4.0248537 -7353.3706
+32905.91156294686 4.0248537 -7354.5513
+32906.91156299436 4.0247355 -7353.9609
+32907.91156304185 4.0247355 -7353.5669
+32908.91156308935 4.0244994 -7354.1577
+32909.91156313685 4.0244994 -7353.7646
+32910.91156318435 4.0244994 -7352.9771
+32911.91156323184 4.0243812 -7353.7646
+32912.91156327934 4.0242634 -7354.3545
+32913.91156332684 4.0241055 -7353.3706
+32914.91156337433 4.0241055 -7353.3706
+32915.91156342183 4.0239878 -7353.1738
+32916.91156346933 4.0239482 -7353.7646
+32917.91156351683 4.0239482 -7353.9609
+32918.91156356432 4.0239086 -7353.5669
+32919.91156361182 4.0237513 -7354.3545
+32920.91156365932 4.0236335 -7353.9609
+32921.91156370682 4.0236726 -7353.9609
+32922.91156375431 4.0235543 -7353.9609
+32923.91156380181 4.0235543 -7354.7485
+32924.91156384931 4.0233579 -7354.7485
+32925.91156389681 4.0233183 -7353.5669
+32926.9115639443 4.0232396 -7354.3545
+32927.9115639918 4.0232787 -7354.9453
+32928.9115640393 4.0232396 -7353.7646
+32929.9115640868 4.0230036 -7353.5669
+32930.91156413429 4.0230036 -7354.3545
+32931.91156418179 4.022964 -7354.1577
+32932.91156422929 4.0229244 -7354.3545
+32933.91156427679 4.0227671 -7353.7646
+32934.91156432428 4.0226097 -7353.3706
+32935.91156437178 4.0226884 -7354.3545
+32936.91156441928 4.0224524 -7353.5669
+32937.91156446678 4.0224915 -7353.9609
+32938.91156451427 4.0223341 -7354.1577
+32939.91156456177 4.0223341 -7353.5669
+32940.91156460927 4.0222158 -7354.7485
+32941.91156465677 4.0221372 -7353.7646
+32942.91156470426 4.0220585 -7354.1577
+32943.91156475176 4.0220189 -7353.3706
+32944.91156479926 4.0219011 -7354.1577
+32945.91156484676 4.0219011 -7354.1577
+32946.91156489425 4.0217829 -7353.5669
+32947.91156494175 4.0217433 -7353.1738
+32948.91156498925 4.0217042 -7353.9609
+32949.91156503675 4.0215859 -7353.9609
+32950.91156508424 4.0215468 -7353.7646
+32951.91156513174 4.0215073 -7354.3545
+32952.91156517924 4.0214286 -7354.3545
+32953.91156522674 4.0213499 -7353.7646
+32954.91156527423 4.0213103 -7353.5669
+32955.91156532173 4.021153 -7354.1577
+32956.91156536923 4.0210743 -7353.7646
+32957.91156541673 4.0210743 -7353.7646
+32958.91156546422 4.020956 -7354.3545
+32959.91156551172 4.0208774 -7353.1738
+32960.91156555922 4.0208383 -7353.5669
+32961.91156560672 4.0207591 -7353.9609
+32962.91156565421 4.0206413 -7353.5669
+32963.91156570171 4.0206017 -7353.5669
+32964.91156574921 4.0205626 -7354.3545
+32965.91156579671 4.0205626 -7353.5669
+32966.9115658442 4.0204444 -7353.9609
+32967.9115658917 4.0203261 -7353.9609
+32968.9115659392 4.0202079 -7353.5669
+32969.91156598669 4.0201292 -7354.1577
+32970.91156603419 4.0202475 -7354.1577
+32971.91156608169 4.0199327 -7353.7646
+32972.91156612919 4.0200114 -7353.3706
+32973.91156617668 4.0198145 -7353.1738
+32974.91156622418 4.0199718 -7353.3706
+32975.91156627168 4.0197358 -7353.3706
+32976.91156631918 4.0197358 -7354.3545
+32977.91156636667 4.0196571 -7354.1577
+32978.91156641417 4.0196176 -7353.7646
+32979.91156646167 4.0194602 -7353.9609
+32980.91156650917 4.0194206 -7353.7646
+32981.91156655666 4.0193815 -7353.1738
+32982.91156660416 4.0193815 -7354.1577
+32983.91156665166 4.0193028 -7354.3545
+32984.91156669916 4.0192633 -7353.3706
+32985.91156674665 4.019145 -7354.1577
+32986.91156679415 4.0190663 -7354.3545
+32987.91156684165 4.0189481 -7353.9609
+32988.91156688915 4.0189877 -7353.9609
+32989.91156693664 4.018909 -7354.1577
+32990.91156698414 4.0187907 -7354.5513
+32991.91156703164 4.0187516 -7353.5669
+32992.91156707914 4.0186334 -7353.3706
+32993.91156712663 4.018712 -7353.5669
+32994.91156717413 4.0185938 -7353.9609
+32995.91156722163 4.0185938 -7352.9771
+32996.91156726913 4.0184364 -7353.7646
+32997.91156731662 4.0184364 -7353.3706
+32998.91156736412 4.0183973 -7353.9609
+32999.91156741162 4.0183182 -7353.7646
+33000.91156745912 4.0182395 -7353.9609
+33001.91156750661 4.0182004 -7354.5513
+33002.91156755411 4.0181217 -7353.3706
+33003.91156760161 4.0180821 -7353.7646
+33004.91156764911 4.0180035 -7354.3545
+33005.9115676966 4.0179248 -7353.7646
+33006.9115677441 4.0178852 -7353.9609
+33007.9115677916 4.0178065 -7354.3545
+33008.9115678391 4.0177279 -7353.1738
+33009.91156788659 4.0176492 -7354.3545
+33010.91156793409 4.0176492 -7354.1577
+33011.91156798159 4.0174127 -7353.9609
+33012.91156802909 4.0175309 -7354.3545
+33013.91156807658 4.0174522 -7354.1577
+33014.91156812408 4.017334 -7353.9609
+33015.91156817158 4.017334 -7354.1577
+33016.91156821908 4.0172162 -7354.1577
+33017.91156826657 4.0171375 -7353.9609
+33018.91156831407 4.0171375 -7354.1577
+33019.91156836157 4.0170193 -7354.3545
+33020.91156840906 4.0168619 -7353.9609
+33021.91156845656 4.0168223 -7354.1577
+33022.91156850406 4.0168223 -7353.3706
+33023.91156855156 4.0167437 -7353.7646
+33024.91156859905 4.0167437 -7354.5513
+33025.91156864655 4.0167041 -7353.9609
+33026.91156869405 4.0165863 -7353.9609
+33027.91156874155 4.0163498 -7353.5669
+33028.91156878904 4.016468 -7354.1577
+33029.91156883654 4.0163107 -7353.7646
+33030.91156888404 4.0163498 -7353.7646
+33031.91156893154 4.0162711 -7354.3545
+33032.91156897903 4.0161924 -7353.9609
+33033.91156902653 4.0160351 -7353.9609
+33034.91156907403 4.0160351 -7353.7646
+33035.91156912153 4.0159168 -7353.5669
+33036.91156916902 4.0159564 -7353.9609
+33037.91156921652 4.0159564 -7353.5669
+33038.91156926402 4.0158772 -7353.3706
+33039.91156931152 4.0156808 -7354.1577
+33040.91156935901 4.0156021 -7354.3545
+33041.91156940651 4.0155625 -7353.7646
+33042.91156945401 4.0155625 -7354.1577
+33043.91156950151 4.0155625 -7354.3545
+33044.911569549 4.0154052 -7353.7646
+33045.9115695965 4.0155625 -7353.3706
+33046.911569644 4.0152473 -7354.3545
+33047.9115696915 4.0153265 -7353.9609
+33048.91156973899 4.0152869 -7354.3545
+33049.91156978649 4.0151687 -7353.3706
+33050.91156983399 4.0152082 -7353.9609
+33051.91156988149 4.0151296 -7353.9609
+33052.91156992898 4.0149326 -7353.9609
+33053.91156997648 4.0148931 -7353.5669
+33054.91157002398 4.0148931 -7353.9609
+33055.91157007148 4.014854 -7353.7646
+33056.91157011897 4.0147753 -7353.7646
+33057.91157016647 4.014657 -7354.5513
+33058.91157021397 4.0145783 -7353.5669
+33059.91157026147 4.014657 -7353.9609
+33060.91157030896 4.0145783 -7353.7646
+33061.91157035646 4.014421 -7353.5669
+33062.91157040396 4.014421 -7354.1577
+33063.91157045146 4.0143418 -7354.1577
+33064.91157049895 4.0142632 -7353.1738
+33065.91157054645 4.0142241 -7353.9609
+33066.91157059395 4.0142241 -7353.5669
+33067.91157064145 4.0140271 -7353.9609
+33068.91157068894 4.0140667 -7353.3706
+33069.91157073644 4.0139484 -7354.1577
+33070.91157078394 4.0140271 -7353.7646
+33071.91157083143 4.0139089 -7354.5513
+33072.91157087893 4.0137911 -7354.3545
+33073.91157092643 4.0137515 -7354.1577
+33074.91157097393 4.0137119 -7353.9609
+33075.91157102142 4.0137515 -7355.1421
+33076.91157106892 4.0136333 -7354.3545
+33077.91157111642 4.0135155 -7353.5669
+33078.91157116392 4.0134368 -7353.3706
+33079.91157121141 4.0133185 -7354.5513
+33080.91157125891 4.0132003 -7354.1577
+33081.91157130641 4.0133185 -7353.1738
+33082.91157135391 4.0132003 -7353.7646
+33083.9115714014 4.0131216 -7353.1738
+33084.9115714489 4.0131612 -7354.1577
+33085.9115714964 4.0130033 -7353.7646
+33086.9115715439 4.013082 -7353.9609
+33087.91157159139 4.0129642 -7354.3545
+33088.91157163889 4.012846 -7354.5513
+33089.91157168639 4.0128064 -7353.7646
+33090.91157173389 4.0128064 -7353.7646
+33091.91157178138 4.0127277 -7353.9609
+33092.91157182888 4.0127277 -7353.3706
+33093.91157187638 4.0125313 -7353.7646
+33094.91157192388 4.0125313 -7355.3384
+33095.91157197137 4.0123734 -7354.5513
+33096.91157201887 4.0124521 -7354.3545
+33097.91157206637 4.0123343 -7353.7646
+33098.91157211387 4.0122161 -7353.5669
+33099.91157216136 4.012413 -7354.1577
+33100.91157220886 4.0121374 -7353.3706
+33101.91157225636 4.0122557 -7354.1577
+33102.91157230386 4.0121374 -7353.5669
+33103.91157235135 4.0120587 -7354.5513
+33104.91157239885 4.0119801 -7354.5513
+33105.91157244635 4.0120192 -7353.5669
+33106.91157249385 4.0118618 -7353.9609
+33107.91157254134 4.0119405 -7353.9609
+33108.91157258884 4.0117044 -7353.9609
+33109.91157263634 4.0117831 -7353.5669
+33110.91157268384 4.0117435 -7353.3706
+33111.91157273133 4.0117044 -7354.1577
+33112.91157277883 4.0115862 -7355.1421
+33113.91157282633 4.0115466 -7353.9609
+33114.91157287383 4.0114679 -7353.3706
+33115.91157292132 4.0113893 -7353.5669
+33116.91157296882 4.0113893 -7353.9609
+33117.91157301632 4.0113502 -7353.3706
+33118.91157306382 4.011271 -7353.7646
+33119.91157311131 4.0111923 -7354.3545
+33120.91157315881 4.0111532 -7354.1577
+33121.91157320631 4.011035 -7354.1577
+33122.9115732538 4.0111136 -7354.3545
+33123.9115733013 4.011035 -7353.7646
+33124.9115733488 4.011035 -7353.5669
+33125.9115733963 4.0109167 -7354.3545
+33126.91157344379 4.010838 -7353.3706
+33127.91157349129 4.0107594 -7353.9609
+33128.91157353879 4.010602 -7353.3706
+33129.91157358629 4.0106807 -7354.5513
+33130.91157363378 4.010602 -7353.9609
+33131.91157368128 4.010602 -7353.9609
+33132.91157372878 4.0105233 -7353.3706
+33133.91157377628 4.010366 -7353.9609
+33134.91157382377 4.0104051 -7353.7646
+33135.91157387127 4.0103264 -7353.9609
+33136.91157391877 4.0102477 -7354.1577
+33137.91157396627 4.0102081 -7353.7646
+33138.91157401376 4.0101295 -7353.9609
+33139.91157406126 4.0100904 -7354.1577
+33140.91157410876 4.0101295 -7354.3545
+33141.91157415626 4.0100112 -7354.3545
+33142.91157420375 4.0100112 -7353.7646
+33143.91157425125 4.0099325 -7354.7485
+33144.91157429875 4.0099325 -7354.5513
+33145.91157434625 4.0097752 -7353.7646
+33146.91157439374 4.0097356 -7354.1577
+33147.91157444124 4.0097356 -7353.1738
+33148.91157448874 4.0096569 -7353.3706
+33149.91157453624 4.0094995 -7353.7646
+33150.91157458373 4.0095391 -7354.1577
+33151.91157463123 4.0096178 -7354.5513
+33152.91157467873 4.0094209 -7353.5669
+33153.91157472623 4.0094995 -7353.9609
+33154.91157477372 4.0094209 -7354.3545
+33155.91157482122 4.0093813 -7353.9609
+33156.91157486872 4.0093026 -7354.7485
+33157.91157491622 4.0092239 -7354.1577
+33158.91157496371 4.0091453 -7353.9609
+33159.91157501121 4.009027 -7354.1577
+33160.91157505871 4.0089879 -7353.7646
+33161.91157510621 4.0089879 -7353.9609
+33162.9115751537 4.0089483 -7353.9609
+33163.9115752012 4.0088696 -7354.1577
+33164.9115752487 4.008791 -7353.7646
+33165.9115752962 4.0088305 -7353.3706
+33166.91157534369 4.0087514 -7354.5513
+33167.91157539119 4.0086727 -7354.3545
+33168.91157543869 4.0086727 -7352.9771
+33169.91157548619 4.0085549 -7354.1577
+33170.91157553368 4.0083971 -7353.7646
+33171.91157558118 4.0084367 -7354.3545
+33172.91157562868 4.0083971 -7354.3545
+33173.91157567617 4.008358 -7354.5513
+33174.91157572367 4.008358 -7354.3545
+33175.91157577117 4.0082397 -7353.9609
+33176.91157581867 4.0082397 -7353.9609
+33177.91157586616 4.0081215 -7353.3706
+33178.91157591366 4.0080824 -7353.9609
+33179.91157596116 4.0080428 -7354.1577
+33180.91157600866 4.0080824 -7354.5513
+33181.91157605615 4.0080824 -7353.7646
+33182.91157610365 4.007925 -7354.1577
+33183.91157615115 4.0079641 -7353.7646
+33184.91157619865 4.0077672 -7353.5669
+33185.91157624614 4.0078068 -7353.3706
+33186.91157629364 4.0076494 -7354.1577
+33187.91157634114 4.0076885 -7353.5669
+33188.91157638864 4.0076098 -7353.5669
+33189.91157643613 4.0076098 -7353.3706
+33190.91157648363 4.0075703 -7354.3545
+33191.91157653113 4.0074129 -7353.5669
+33192.91157657863 4.0074525 -7354.3545
+33193.91157662612 4.0073738 -7353.5669
+33194.91157667362 4.0072951 -7353.7646
+33195.91157672112 4.0072556 -7354.3545
+33196.91157676862 4.0072556 -7353.9609
+33197.91157681611 4.0070982 -7353.5669
+33198.91157686361 4.0069799 -7353.9609
+33199.91157691111 4.0069799 -7353.9609
+33200.91157695861 4.0069404 -7353.9609
+33201.9115770061 4.006783 -7354.1577
+33202.9115770536 4.0068617 -7354.1577
+33203.9115771011 4.0068617 -7354.3545
+33204.9115771486 4.0067439 -7354.1577
+33205.91157719609 4.0067043 -7354.3545
+33206.91157724359 4.0067043 -7353.9609
+33207.91157729109 4.0067043 -7353.1738
+33208.91157733859 4.0065074 -7354.1577
+33209.91157738608 4.006547 -7353.9609
+33210.91157743358 4.0064287 -7353.7646
+33211.91157748108 4.0064287 -7353.1738
+33212.91157752858 4.0062714 -7353.9609
+33213.91157757607 4.0063105 -7354.3545
+33214.91157762357 4.0063105 -7353.7646
+33215.91157767107 4.0063105 -7353.1738
+33216.91157771857 4.006114 -7353.5669
+33217.91157776606 4.006114 -7353.5669
+33218.91157781356 4.0059562 -7353.9609
+33219.91157786106 4.0060349 -7352.9771
+33220.91157790856 4.0059958 -7353.9609
+33221.91157795605 4.0059171 -7354.7485
+33222.91157800355 4.0058384 -7354.5513
+33223.91157805105 4.0057597 -7353.7646
+33224.91157809854 4.0057201 -7354.1577
+33225.91157814604 4.0056806 -7353.9609
+33226.91157819354 4.0056415 -7353.5669
+33227.91157824104 4.0054841 -7354.1577
+33228.91157828853 4.0055628 -7353.9609
+33229.91157833603 4.0055628 -7353.7646
+33230.91157838353 4.0052872 -7353.9609
+33231.91157843103 4.0054445 -7353.7646
+33232.91157847852 4.0054445 -7353.7646
+33233.91157852602 4.0052476 -7353.5669
+33234.91157857352 4.0052085 -7354.1577
+33235.91157862102 4.0052085 -7354.3545
+33236.91157866851 4.0051689 -7354.5513
+33237.91157871601 4.0050902 -7353.5669
+33238.91157876351 4.0050507 -7354.1577
+33239.91157881101 4.004972 -7354.7485
+33240.9115788585 4.004775 -7353.9609
+33241.911578906 4.0048146 -7354.1577
+33242.9115789535 4.0048146 -7353.3706
+33243.911579001 4.004775 -7353.9609
+33244.91157904849 4.0046573 -7353.3706
+33245.91157909599 4.0047359 -7353.7646
+33246.91157914349 4.0046177 -7354.5513
+33247.91157919099 4.004539 -7353.5669
+33248.91157923848 4.004539 -7354.1577
+33249.91157928598 4.0044999 -7354.7485
+33250.91157933348 4.0044999 -7353.5669
+33251.91157938098 4.0044208 -7353.7646
+33252.91157942847 4.004303 -7354.1577
+33253.91157947597 4.0042243 -7353.3706
+33254.91157952347 4.0041451 -7354.1577
+33255.91157957097 4.0041847 -7354.5513
+33256.91157961846 4.0040274 -7354.1577
+33257.91157966596 4.0040274 -7353.5669
+33258.91157971346 4.0040665 -7353.9609
+33259.91157976096 4.0038695 -7354.7485
+33260.91157980845 4.0039091 -7354.1577
+33261.91157985595 4.0038304 -7353.1738
+33262.91157990345 4.0037518 -7353.1738
+33263.91157995095 4.0037909 -7353.7646
+33264.91157999844 4.0036731 -7352.9771
+33265.91158004594 4.0037122 -7353.5669
+33266.91158009344 4.0036335 -7353.3706
+33267.91158014094 4.0035944 -7353.9609
+33268.91158018843 4.0035548 -7353.7646
+33269.91158023593 4.0033579 -7353.9609
+33270.91158028343 4.0033579 -7354.1577
+33271.91158033093 4.0033579 -7353.5669
+33272.91158037842 4.0033188 -7353.7646
+33273.91158042592 4.0032396 -7354.5513
+33274.91158047342 4.0031219 -7354.1577
+33275.91158052091 4.0031219 -7353.1738
+33276.91158056841 4.0029645 -7353.3706
+33277.91158061591 4.0029645 -7354.1577
+33278.91158066341 4.0030036 -7353.9609
+33279.9115807109 4.0028462 -7353.5669
+33280.9115807584 4.0028853 -7353.3706
+33281.9115808059 4.0028462 -7353.1738
+33282.9115808534 4.0028067 -7353.7646
+33283.91158090089 4.002728 -7354.1577
+33284.91158094839 4.0026097 -7353.5669
+33285.91158099589 4.0026097 -7353.5669
+33286.91158104339 4.0024524 -7353.9609
+33287.91158109088 4.0025311 -7353.7646
+33288.91158113838 4.0024133 -7353.3706
+33289.91158118588 4.0023737 -7354.1577
+33290.91158123338 4.0021377 -7353.3706
+33291.91158128087 4.002295 -7353.1738
+33292.91158132837 4.0022554 -7354.3545
+33293.91158137587 4.0022554 -7354.7485
+33294.91158142337 4.0021377 -7353.9609
+33295.91158147086 4.0020981 -7354.3545
+33296.91158151836 4.0020194 -7353.9609
+33297.91158156586 4.0019798 -7354.3545
+33298.91158161336 4.0020194 -7353.9609
+33299.91158166085 4.0019011 -7353.7646
+33300.91158170835 4.0017438 -7353.3706
+33301.91158175585 4.0018225 -7353.3706
+33302.91158180335 4.0017834 -7353.1738
+33303.91158185084 4.0017042 -7354.1577
+33304.91158189834 4.0017042 -7354.1577
+33305.91158194584 4.0015864 -7353.3706
+33306.91158199334 4.0015469 -7354.1577
+33307.91158204083 4.0015469 -7353.5669
+33308.91158208833 4.0015469 -7353.3706
+33309.91158213583 4.0014291 -7353.3706
+33310.91158218333 4.0013108 -7354.7485
+33311.91158223082 4.0013499 -7353.3706
+33312.91158227832 4.0013499 -7353.3706
+33313.91158232582 4.0012321 -7353.7646
+33314.91158237332 4.0012321 -7354.3545
+33315.91158242081 4.0011535 -7354.3545
+33316.91158246831 4.0010743 -7354.3545
+33317.91158251581 4.0011535 -7353.5669
+33318.91158256331 4.0010743 -7353.3706
+33319.9115826108 4.0009956 -7353.3706
+33320.9115826583 4.0008779 -7353.9609
+33321.9115827058 4.000917 -7353.5669
+33322.9115827533 4.0009565 -7353.7646
+33323.91158280079 4.0008383 -7353.3706
+33324.91158284829 4.0007596 -7353.5669
+33325.91158289579 4.00072 -7353.9609
+33326.91158294328 4.0006809 -7354.3545
+33327.91158299078 4.0005627 -7353.5669
+33328.91158303828 4.0006809 -7353.1738
+33329.91158308578 4.0006413 -7353.3706
+33330.91158313327 4.0006022 -7353.7646
+33331.91158318077 4.0005627 -7353.7646
+33332.91158322827 4.0005627 -7353.7646
+33333.91158327577 4.0003657 -7353.7646
+33334.91158332326 4.000248 -7353.3706
+33335.91158337076 4.0002871 -7353.1738
+33336.91158341826 4.0004444 -7353.7646
+33337.91158346576 4.0002871 -7353.9609
+33338.91158351325 4.0001297 -7353.9609
+33339.91158356075 4.000051 -7354.9453
+33340.91158360825 4.0000901 -7352.583
+33341.91158365575 3.999933 -7353.7646
+33342.91158370324 3.9998937 -7353.7646
+33343.91158375074 3.9998937 -7353.5669
+33344.91158379824 3.9998147 -7353.3706
+33345.91158384574 3.9998147 -7353.9609
+33346.91158389323 3.9997361 -7354.3545
+33347.91158394073 3.9996967 -7354.5513
+33348.91158398823 3.9995787 -7353.3706
+33349.91158403573 3.9996574 -7353.9609
+33350.91158408322 3.9994998 -7353.7646
+33351.91158413072 3.9994605 -7353.7646
+33352.91158417822 3.9994998 -7352.9771
+33353.91158422572 3.9993424 -7353.5669
+33354.91158427321 3.9992638 -7353.7646
+33355.91158432071 3.9993818 -7353.9609
+33356.91158436821 3.9993031 -7354.7485
+33357.91158441571 3.9991455 -7353.5669
+33358.9115844632 3.9991848 -7353.3706
+33359.9115845107 3.9990275 -7353.9609
+33360.9115845582 3.9990275 -7354.1577
+33361.9115846057 3.9989486 -7354.5513
+33362.91158465319 3.9988306 -7353.9609
+33363.91158470069 3.9990275 -7354.1577
+33364.91158474819 3.9989092 -7353.3706
+33365.91158479569 3.9988306 -7353.7646
+33366.91158484318 3.9987519 -7353.7646
+33367.91158489068 3.9987912 -7354.3545
+33368.91158493818 3.9987125 -7353.7646
+33369.91158498568 3.9987519 -7353.9609
+33370.91158503317 3.9985943 -7354.3545
+33371.91158508067 3.9984763 -7353.7646
+33372.91158512817 3.9984369 -7353.3706
+33373.91158517567 3.9985156 -7354.3545
+33374.91158522316 3.9983976 -7354.1577
+33375.91158527066 3.9983187 -7353.9609
+33376.91158531816 3.9983187 -7353.5669
+33377.91158536565 3.99824 -7353.9609
+33378.91158541315 3.9982007 -7353.3706
+33379.91158546065 3.9981613 -7353.5669
+33380.91158550815 3.9981613 -7353.5669
+33381.91158555564 3.9981613 -7354.5513
+33382.91158560314 3.9980433 -7353.9609
+33383.91158565064 3.9979644 -7354.3545
+33384.91158569814 3.9978857 -7354.1577
+33385.91158574563 3.9979644 -7352.9771
+33386.91158579313 3.9978464 -7352.9771
+33387.91158584063 3.997925 -7353.7646
+33388.91158588813 3.9978464 -7353.5669
+33389.91158593562 3.9977283 -7353.9609
+33390.91158598312 3.997807 -7354.1577
+33391.91158603062 3.9976494 -7353.3706
+33392.91158607812 3.9976494 -7353.7646
+33393.91158612561 3.9975708 -7353.9609
+33394.91158617311 3.9974921 -7353.9609
+33395.91158622061 3.9974527 -7353.9609
+33396.91158626811 3.9973738 -7354.3545
+33397.9115863156 3.9973738 -7353.1738
+33398.9115863631 3.9972558 -7354.1577
+33399.9115864106 3.9972165 -7353.7646
+33400.9115864581 3.9971771 -7353.3706
+33401.91158650559 3.9972165 -7353.5669
+33402.91158655309 3.9971378 -7353.5669
+33403.91158660059 3.9970589 -7353.5669
+33404.91158664809 3.9970589 -7353.5669
+33405.91158669558 3.9970982 -7353.7646
+33406.91158674308 3.9969015 -7354.1577
+33407.91158679058 3.9969015 -7353.9609
+33408.91158683808 3.9968228 -7353.9609
+33409.91158688557 3.9967439 -7354.1577
+33410.91158693307 3.9968228 -7353.9609
+33411.91158698057 3.9967046 -7353.9609
+33412.91158702807 3.9967046 -7354.1577
+33413.91158707556 3.9965866 -7352.9771
+33414.91158712306 3.9966259 -7354.3545
+33415.91158717056 3.9964683 -7353.1738
+33416.91158721806 3.9963896 -7353.9609
+33417.91158726555 3.9965079 -7353.9609
+33418.91158731305 3.9963109 -7353.9609
+33419.91158736055 3.9963109 -7353.1738
+33420.91158740805 3.9963503 -7353.5669
+33421.91158745554 3.9961929 -7353.7646
+33422.91158750304 3.9961929 -7353.3706
+33423.91158755054 3.9960747 -7354.1577
+33424.91158759804 3.9961929 -7353.7646
+33425.91158764553 3.9961534 -7353.7646
+33426.91158769303 3.9960747 -7353.7646
+33427.91158774053 3.9959173 -7353.5669
+33428.91158778802 3.9958384 -7354.1577
+33429.91158783552 3.9960353 -7354.5513
+33430.91158788302 3.995878 -7353.7646
+33431.91158793052 3.9957991 -7353.9609
+33432.91158797801 3.9957597 -7353.9609
+33433.91158802551 3.9957597 -7354.9453
+33434.91158807301 3.9956417 -7354.3545
+33435.91158812051 3.995563 -7353.9609
+33436.911588168 3.9955235 -7353.3706
+33437.9115882155 3.9956024 -7353.1738
+33438.911588263 3.9955235 -7354.1577
+33439.9115883105 3.9953268 -7353.9609
+33440.91158835799 3.9953661 -7353.5669
+33441.91158840549 3.9953661 -7353.3706
+33442.91158845299 3.9952085 -7354.7485
+33443.91158850049 3.9953661 -7353.7646
+33444.91158854798 3.9951692 -7353.5669
+33445.91158859548 3.9952085 -7354.1577
+33446.91158864298 3.9951298 -7354.3545
+33447.91158869048 3.9950511 -7354.3545
+33448.91158873797 3.9951298 -7353.5669
+33449.91158878547 3.9950118 -7352.3862
+33450.91158883297 3.9949725 -7354.3545
+33451.91158888047 3.9949329 -7354.3545
+33452.91158892796 3.9949329 -7354.5513
+33453.91158897546 3.9948542 -7354.3545
+33454.91158902296 3.9948149 -7353.7646
+33455.91158907046 3.9946969 -7353.5669
+33456.91158911795 3.9946969 -7354.3545
+33457.91158916545 3.9945786 -7354.1577
+33458.91158921295 3.9946969 -7353.9609
+33459.91158926045 3.9945786 -7353.7646
+33460.91158930794 3.9945786 -7353.5669
+33461.91158935544 3.9945393 -7353.9609
+33462.91158940294 3.9944606 -7353.9609
+33463.91158945044 3.9943819 -7354.1577
+33464.91158949793 3.9943819 -7354.1577
+33465.91158954543 3.9942636 -7354.3545
+33466.91158959293 3.9942636 -7354.1577
+33467.91158964043 3.9941456 -7353.9609
+33468.91158968792 3.994185 -7354.1577
+33469.91158973542 3.9941456 -7353.7646
+33470.91158978292 3.993988 -7353.7646
+33471.91158983042 3.994067 -7354.3545
+33472.91158987791 3.993988 -7354.9453
+33473.91158992541 3.99387 -7353.5669
+33474.91158997291 3.99387 -7353.7646
+33475.91159002041 3.9937913 -7353.7646
+33476.9115900679 3.9937913 -7352.9771
+33477.9115901154 3.993752 -7353.3706
+33478.9115901629 3.9937913 -7353.7646
+33479.91159021039 3.993752 -7354.1577
+33480.91159025789 3.9936337 -7354.5513
+33481.91159030539 3.9935157 -7354.3545
+33482.91159035289 3.9934764 -7354.1577
+33483.91159040038 3.9934764 -7354.5513
+33484.91159044788 3.9933975 -7354.3545
+33485.91159049538 3.9933581 -7353.7646
+33486.91159054288 3.9933188 -7353.7646
+33487.91159059037 3.9932795 -7354.7485
+33488.91159063787 3.9932795 -7354.3545
+33489.91159068537 3.9932008 -7353.9609
+33490.91159073287 3.9930432 -7354.3545
+33491.91159078036 3.9930825 -7353.9609
+33492.91159082786 3.9931221 -7353.5669
+33493.91159087536 3.9930038 -7353.9609
+33494.91159092286 3.9928465 -7354.1577
+33495.91159097035 3.9928465 -7354.3545
+33496.91159101785 3.9928858 -7353.9609
+33497.91159106535 3.9928465 -7353.9609
+33498.91159111285 3.9926889 -7354.3545
+33499.91159116034 3.9926496 -7354.1577
+33500.91159120784 3.9926102 -7353.7646
+33501.91159125534 3.9926102 -7355.5352
+33502.91159130284 3.9925709 -7353.7646
+33503.91159135033 3.9923346 -7354.1577
+33504.91159139783 3.9924133 -7353.9609
+33505.91159144533 3.9923739 -7354.3545
+33506.91159149283 3.9921377 -7353.7646
+33507.91159154032 3.9922953 -7353.7646
+33508.91159158782 3.9921772 -7353.5669
+33509.91159163532 3.9920983 -7354.5513
+33510.91159168282 3.9920983 -7353.3706
+33511.91159173031 3.9919803 -7354.9453
+33512.91159177781 3.9919803 -7353.5669
+33513.91159182531 3.9919803 -7354.5513
+33514.91159187281 3.9918623 -7354.9453
+33515.9115919203 3.9918227 -7354.7485
+33516.9115919678 3.991744 -7353.9609
+33517.9115920153 3.9917047 -7354.3545
+33518.9115920628 3.9916654 -7354.1577
+33519.91159211029 3.9915867 -7353.5669
+33520.91159215779 3.9915471 -7353.9609
+33521.91159220529 3.9914291 -7353.9609
+33522.91159225279 3.9913504 -7353.7646
+33523.91159230028 3.9913898 -7353.9609
+33524.91159234778 3.9913898 -7353.1738
+33525.91159239528 3.9911928 -7353.5669
+33526.91159244278 3.9911535 -7353.5669
+33527.91159249027 3.9912322 -7354.1577
+33528.91159253777 3.9911928 -7353.3706
+33529.91159258527 3.9911141 -7353.7646
+33530.91159263277 3.9909961 -7353.3706
+33531.91159268026 3.9910355 -7353.9609
+33532.91159272776 3.9909172 -7354.5513
+33533.91159277526 3.9909961 -7353.7646
+33534.91159282275 3.9907992 -7353.9609
+33535.91159287025 3.9908779 -7354.3545
+33536.91159291775 3.9906812 -7353.3706
+33537.91159296525 3.9906418 -7353.3706
+33538.91159301274 3.9906023 -7353.5669
+33539.91159306024 3.9906023 -7354.3545
+33540.91159310774 3.9905629 -7354.3545
+33541.91159315524 3.9905236 -7353.9609
+33542.91159320273 3.9905236 -7354.3545
+33543.91159325023 3.9903662 -7353.3706
+33544.91159329773 3.9903662 -7353.7646
+33545.91159334523 3.9903662 -7353.5669
+33546.91159339272 3.9902873 -7354.1577
+33547.91159344022 3.9902873 -7353.5669
+33548.91159348772 3.990248 -7353.1738
+33549.91159353522 3.9901693 -7353.7646
+33550.91159358271 3.9900906 -7353.5669
+33551.91159363021 3.9900513 -7354.1577
+33552.91159367771 3.9900513 -7353.7646
+33553.91159372521 3.9898937 -7353.5669
+33554.9115937727 3.9899724 -7353.9609
+33555.9115938202 3.9898937 -7353.3706
+33556.9115938677 3.989815 -7354.3545
+33557.9115939152 3.9896967 -7353.5669
+33558.91159396269 3.9897757 -7353.3706
+33559.91159401019 3.9897363 -7353.9609
+33560.91159405769 3.9897363 -7355.1421
+33561.91159410519 3.9896181 -7354.3545
+33562.91159415268 3.9895787 -7354.5513
+33563.91159420018 3.9895394 -7354.5513
+33564.91159424768 3.9895 -7353.3706
+33565.91159429518 3.9895 -7353.5669
+33566.91159434267 3.9893425 -7353.5669
+33567.91159439017 3.9892638 -7354.1577
+33568.91159443767 3.9893031 -7353.7646
+33569.91159448517 3.9891064 -7353.5669
+33570.91159453266 3.9891064 -7353.7646
+33571.91159458016 3.9890668 -7353.9609
+33572.91159462766 3.9889488 -7353.9609
+33573.91159467516 3.9889488 -7353.7646
+33574.91159472265 3.9890275 -7353.3706
+33575.91159477015 3.9889882 -7353.7646
+33576.91159481765 3.9889095 -7352.9771
+33577.91159486515 3.9887915 -7354.7485
+33578.91159491264 3.9887519 -7354.1577
+33579.91159496014 3.9887125 -7353.3706
+33580.91159500764 3.9885552 -7352.9771
+33581.91159505514 3.9886339 -7352.9771
+33582.91159510263 3.9885552 -7353.5669
+33583.91159515013 3.9883976 -7353.7646
+33584.91159519763 3.9884369 -7353.5669
+33585.91159524512 3.9883189 -7354.7485
+33586.91159529262 3.9883189 -7353.5669
+33587.91159534012 3.9882402 -7353.1738
+33588.91159538762 3.9882009 -7354.3545
+33589.91159543511 3.9880826 -7353.1738
+33590.91159548261 3.9880826 -7353.7646
+33591.91159553011 3.988004 -7353.9609
+33592.91159557761 3.988004 -7354.5513
+33593.9115956251 3.9879253 -7353.7646
+33594.9115956726 3.9878464 -7353.9609
+33595.9115957201 3.987886 -7354.5513
+33596.9115957676 3.9877677 -7353.5669
+33597.91159581509 3.987689 -7354.1577
+33598.91159586259 3.987689 -7353.7646
+33599.91159591009 3.987571 -7354.3545
+33600.91159595759 3.987571 -7353.7646
+33601.91159600508 3.9874921 -7354.1577
+33602.91159605258 3.9873741 -7353.9609
+33603.91159610008 3.9873347 -7354.3545
+33604.91159614758 3.9873347 -7353.1738
+33605.91159619507 3.9872954 -7353.9609
+33606.91159624257 3.9872954 -7354.3545
+33607.91159629007 3.9871771 -7353.3706
+33608.91159633757 3.9870591 -7353.7646
+33609.91159638506 3.9870198 -7353.5669
+33610.91159643256 3.9870591 -7353.1738
+33611.91159648006 3.9869015 -7353.9609
+33612.91159652756 3.9869015 -7353.5669
+33613.91159657505 3.9869015 -7354.3545
+33614.91159662255 3.9867835 -7353.5669
+33615.91159667005 3.9867442 -7354.7485
+33616.91159671755 3.9867048 -7354.3545
+33617.91159676504 3.9865079 -7353.5669
+33618.91159681254 3.9865866 -7354.1577
+33619.91159686004 3.9865472 -7354.9453
+33620.91159690754 3.9865472 -7354.5513
+33621.91159695503 3.986311 -7353.9609
+33622.91159700253 3.986311 -7353.7646
+33623.91159705003 3.9863505 -7353.1738
+33624.91159709753 3.9861536 -7354.5513
+33625.91159714502 3.9861536 -7354.1577
+33626.91159719252 3.9862323 -7353.7646
+33627.91159724002 3.9860749 -7354.1577
+33628.91159728752 3.9860356 -7354.3545
+33629.91159733501 3.9859173 -7354.5513
+33630.91159738251 3.985878 -7353.9609
+33631.91159743001 3.9858387 -7353.7646
+33632.91159747751 3.9857993 -7352.9771
+33633.911597525 3.9858387 -7354.1577
+33634.9115975725 3.9857206 -7353.5669
+33635.91159762 3.9856024 -7353.3706
+33636.91159766749 3.985563 -7354.1577
+33637.91159771499 3.9856024 -7353.1738
+33638.91159776249 3.9854844 -7353.7646
+33639.91159780999 3.9854844 -7354.3545
+33640.91159785748 3.985445 -7353.9609
+33641.91159790498 3.9854057 -7353.9609
+33642.91159795248 3.9854057 -7353.3706
+33643.91159799998 3.9852087 -7353.7646
+33644.91159804747 3.9852087 -7354.3545
+33645.91159809497 3.9852481 -7353.9609
+33646.91159814247 3.9851694 -7353.7646
+33647.91159818997 3.9851301 -7354.1577
+33648.91159823746 3.9850907 -7353.5669
+33649.91159828496 3.9848545 -7353.3706
+33650.91159833246 3.9848545 -7354.1577
+33651.91159837996 3.9849331 -7353.3706
+33652.91159842745 3.9848151 -7354.3545
+33653.91159847495 3.9847758 -7353.5669
+33654.91159852245 3.9846575 -7353.7646
+33655.91159856995 3.9846182 -7353.9609
+33656.91159861744 3.9845395 -7353.9609
+33657.91159866494 3.9845002 -7353.1738
+33658.91159871244 3.9844606 -7354.3545
+33659.91159875994 3.9845002 -7353.3706
+33660.91159880743 3.9843819 -7354.1577
+33661.91159885493 3.9843819 -7354.5513
+33662.91159890243 3.9842246 -7353.3706
+33663.91159894993 3.9842639 -7354.1577
+33664.91159899742 3.9842246 -7354.3545
+33665.91159904492 3.984067 -7353.3706
+33666.91159909242 3.984067 -7353.3706
+33667.91159913992 3.9839489 -7353.9609
+33668.91159918741 3.9840276 -7354.1577
+33669.91159923491 3.9839489 -7353.5669
+33670.91159928241 3.9838703 -7353.9609
+33671.91159932991 3.9837914 -7353.7646
+33672.9115993774 3.9837914 -7353.7646
+33673.9115994249 3.983752 -7354.1577
+33674.9115994724 3.983634 -7353.7646
+33675.9115995199 3.9835553 -7353.1738
+33676.91159956739 3.9836733 -7354.7485
+33677.91159961489 3.9835157 -7353.3706
+33678.91159966239 3.9834764 -7354.1577
+33679.91159970989 3.9833977 -7353.3706
+33680.91159975738 3.9833584 -7354.5513
+33681.91159980488 3.983319 -7354.5513
+33682.91159985238 3.9832008 -7353.5669
+33683.91159989988 3.9831614 -7353.7646
+33684.91159994737 3.9831614 -7354.1577
+33685.91159999487 3.9830434 -7354.1577
+33686.91160004237 3.9829254 -7354.3545
+33687.91160008986 3.9830041 -7353.9609
+33688.91160013736 3.9829254 -7354.1577
+33689.91160018486 3.9829254 -7354.1577
+33690.91160023236 3.9828858 -7353.1738
+33691.91160027985 3.9828072 -7353.7646
+33692.91160032735 3.9828072 -7354.5513
+33693.91160037485 3.9827285 -7353.9609
+33694.91160042235 3.9826498 -7354.7485
+33695.91160046984 3.9825709 -7353.7646
+33696.91160051734 3.9824529 -7353.7646
+33697.91160056484 3.9824529 -7353.7646
+33698.91160061234 3.9825315 -7353.5669
+33699.91160065983 3.9823349 -7353.9609
+33700.91160070733 3.9823742 -7353.9609
+33701.91160075483 3.9822166 -7353.5669
+33702.91160080233 3.9822559 -7354.1577
+33703.91160084982 3.9821773 -7353.5669
+33704.91160089732 3.9821773 -7353.9609
+33705.91160094482 3.9821379 -7353.5669
+33706.91160099232 3.9820592 -7354.5513
+33707.91160103981 3.9820592 -7353.7646
+33708.91160108731 3.9819016 -7354.3545
+33709.91160113481 3.9817836 -7353.9609
+33710.91160118231 3.9818623 -7353.7646
+33711.9116012298 3.9818623 -7353.5669
+33712.9116012773 3.9817836 -7353.1738
+33713.9116013248 3.9817443 -7353.7646
+33714.9116013723 3.981508 -7353.9609
+33715.91160141979 3.9815474 -7354.1577
+33716.91160146729 3.9815867 -7353.7646
+33717.91160151479 3.9815474 -7353.5669
+33718.91160156229 3.9813111 -7353.5669
+33719.91160160978 3.98139 -7354.3545
+33720.91160165728 3.9813111 -7354.5513
+33721.91160170478 3.9811931 -7354.1577
+33722.91160175228 3.9811537 -7354.7485
+33723.91160179977 3.981075 -7353.7646
+33724.91160184727 3.9811144 -7353.7646
+33725.91160189477 3.9810355 -7353.5669
+33726.91160194227 3.9808388 -7353.3706
+33727.91160198976 3.9808781 -7353.9609
+33728.91160203726 3.9807994 -7354.1577
+33729.91160208476 3.9807205 -7354.3545
+33730.91160213226 3.9807599 -7353.3706
+33731.91160217975 3.9806025 -7354.3545
+33732.91160222725 3.9806418 -7354.3545
+33733.91160227475 3.9806418 -7353.9609
+33734.91160232225 3.9805238 -7354.5513
+33735.91160236974 3.9804449 -7353.5669
+33736.91160241724 3.9804845 -7353.5669
+33737.91160246474 3.9804056 -7353.9609
+33738.91160251223 3.9803269 -7354.5513
+33739.91160255973 3.9801695 -7353.5669
+33740.91160260723 3.9802089 -7353.7646
+33741.91160265473 3.9800906 -7354.1577
+33742.91160270222 3.9800119 -7353.7646
+33743.91160274972 3.9800119 -7353.3706
+33744.91160279722 3.9799726 -7354.3545
+33745.91160284472 3.9799333 -7354.1577
+33746.91160289221 3.9799333 -7353.5669
+33747.91160293971 3.9798546 -7353.3706
+33748.91160298721 3.9797757 -7353.9609
+33749.91160303471 3.9797363 -7352.583
+33750.9116030822 3.9796183 -7354.1577
+33751.9116031297 3.9796183 -7353.9609
+33752.9116031772 3.9795396 -7353.9609
+33753.9116032247 3.979382 -7353.5669
+33754.91160327219 3.979382 -7354.3545
+33755.91160331969 3.979382 -7354.5513
+33756.91160336719 3.9793034 -7354.1577
+33757.91160341469 3.9793427 -7353.7646
+33758.91160346218 3.9791458 -7354.5513
+33759.91160350968 3.9791458 -7354.1577
+33760.91160355718 3.9790671 -7353.5669
+33761.91160360468 3.9789884 -7354.1577
+33762.91160365217 3.9789491 -7353.5669
+33763.91160369967 3.9789095 -7353.9609
+33764.91160374717 3.9787128 -7354.5513
+33765.91160379467 3.9789095 -7353.7646
+33766.91160384216 3.9787128 -7353.7646
+33767.91160388966 3.9787128 -7354.1577
+33768.91160393716 3.9785552 -7354.1577
+33769.91160398466 3.9786341 -7354.1577
+33770.91160403215 3.9783978 -7353.7646
+33771.91160407965 3.9782403 -7353.9609
+33772.91160412715 3.9783978 -7354.1577
+33773.91160417465 3.9783585 -7354.5513
+33774.91160422214 3.9782403 -7353.7646
+33775.91160426964 3.9781616 -7353.9609
+33776.91160431714 3.9781222 -7354.1577
+33777.91160436464 3.9780436 -7354.3545
+33778.91160441213 3.9780436 -7354.5513
+33779.91160445963 3.9779253 -7353.5669
+33780.91160450713 3.9778073 -7354.1577
+33781.91160455463 3.9778466 -7354.3545
+33782.91160460212 3.9777286 -7353.9609
+33783.91160464962 3.9777286 -7353.9609
+33784.91160469712 3.9776497 -7353.3706
+33785.91160474462 3.9775317 -7354.1577
+33786.91160479211 3.9774923 -7354.3545
+33787.91160483961 3.9773741 -7354.1577
+33788.91160488711 3.9773741 -7353.5669
+33789.9116049346 3.9773741 -7354.1577
+33790.9116049821 3.9772954 -7353.7646
+33791.9116050296 3.9771774 -7353.3706
+33792.9116050771 3.977138 -7353.9609
+33793.91160512459 3.977138 -7353.9609
+33794.91160517209 3.9770591 -7353.7646
+33795.91160521959 3.9769804 -7354.7485
+33796.91160526709 3.9769018 -7353.7646
+33797.91160531458 3.9768231 -7353.9609
+33798.91160536208 3.9767838 -7353.7646
+33799.91160540958 3.9767048 -7353.9609
+33800.91160545708 3.9766655 -7354.3545
+33801.91160550457 3.9764688 -7354.3545
+33802.91160555207 3.9764688 -7353.5669
+33803.91160559957 3.9763899 -7354.3545
+33804.91160564707 3.9763505 -7354.3545
+33805.91160569456 3.9762325 -7353.5669
+33806.91160574206 3.9762325 -7353.3706
+33807.91160578956 3.9760749 -7353.7646
+33808.91160583706 3.9760749 -7354.1577
+33809.91160588455 3.9759569 -7354.3545
+33810.91160593205 3.9759963 -7354.1577
+33811.91160597955 3.9758782 -7354.3545
+33812.91160602705 3.9758389 -7354.3545
+33813.91160607454 3.9757993 -7354.3545
+33814.91160612204 3.975642 -7353.9609
+33815.91160616954 3.975642 -7354.1577
+33816.91160621704 3.975445 -7354.3545
+33817.91160626453 3.9754844 -7354.5513
+33818.91160631203 3.9754057 -7353.9609
+33819.91160635953 3.9753664 -7354.7485
+33820.91160640703 3.975327 -7354.3545
+33821.91160645452 3.9753664 -7354.5513
+33822.91160650202 3.9752877 -7354.5513
+33823.91160654952 3.9751694 -7353.5669
+33824.91160659702 3.9750514 -7354.1577
+33825.91160664451 3.9749334 -7354.3545
+33826.91160669201 3.9748938 -7353.3706
+33827.91160673951 3.9748545 -7353.9609
+33828.91160678701 3.9747758 -7354.3545
+33829.9116068345 3.9747365 -7354.3545
+33830.911606882 3.9746578 -7354.1577
+33831.9116069295 3.9746578 -7354.1577
+33832.911606977 3.9745789 -7354.3545
+33833.91160702449 3.9744608 -7353.9609
+33834.91160707199 3.9744215 -7355.1421
+33835.91160711949 3.9743822 -7354.3545
+33836.91160716699 3.9743035 -7353.5669
+33837.91160721448 3.9742639 -7354.3545
+33838.91160726198 3.9741852 -7353.3706
+33839.91160730948 3.9742639 -7355.1421
+33840.91160735697 3.9741459 -7353.3706
+33841.91160740447 3.9740279 -7353.9609
+33842.91160745197 3.9739096 -7353.7646
+33843.91160749947 3.9738703 -7354.7485
+33844.91160754696 3.9737916 -7354.3545
+33845.91160759446 3.9737523 -7354.1577
+33846.91160764196 3.9735947 -7354.3545
+33847.91160768946 3.973634 -7353.7646
+33848.91160773695 3.9735947 -7354.1577
+33849.91160778445 3.973398 -7353.5669
+33850.91160783195 3.973398 -7354.1577
+33851.91160787945 3.9733584 -7354.1577
+33852.91160792694 3.9732797 -7353.3706
+33853.91160797444 3.9732404 -7354.3545
+33854.91160802194 3.973201 -7353.3706
+33855.91160806944 3.9730434 -7354.1577
+33856.91160811693 3.9730041 -7353.9609
+33857.91160816443 3.9729648 -7353.9609
+33858.91160821193 3.9727285 -7353.5669
+33859.91160825943 3.9728074 -7354.3545
+33860.91160830692 3.9726892 -7353.7646
+33861.91160835442 3.9726892 -7354.5513
+33862.91160840192 3.9725318 -7353.1738
+33863.91160844942 3.9724925 -7354.5513
+33864.91160849691 3.9724531 -7354.5513
+33865.91160854441 3.9723349 -7354.3545
+33866.91160859191 3.9723349 -7353.7646
+33867.91160863941 3.9723349 -7353.5669
+33868.9116086869 3.9721775 -7354.1577
+33869.9116087344 3.9721382 -7353.9609
+33870.9116087819 3.9720199 -7354.3545
+33871.9116088294 3.9719019 -7354.5513
+33872.91160887689 3.9719806 -7354.1577
+33873.91160892439 3.9717836 -7354.7485
+33874.91160897189 3.971823 -7353.5669
+33875.91160901939 3.9716263 -7354.5513
+33876.91160906688 3.971705 -7354.5513
+33877.91160911438 3.9716263 -7354.3545
+33878.91160916188 3.9715476 -7353.5669
+33879.91160920938 3.97139 -7354.1577
+33880.91160925687 3.9713113 -7353.3706
+33881.91160930437 3.9711537 -7353.7646
+33882.91160935187 3.9712327 -7354.9453
+33883.91160939937 3.9712327 -7353.9609
+33884.91160944686 3.9711144 -7353.7646
+33885.91160949436 3.9710751 -7353.7646
+33886.91160954186 3.9709177 -7354.3545
+33887.91160958936 3.9708781 -7354.1577
+33888.91160963685 3.9707994 -7353.3706
+33889.91160968435 3.9707601 -7354.1577
+33890.91160973185 3.9707208 -7353.3706
+33891.91160977934 3.9704845 -7354.1577
+33892.91160982684 3.9705238 -7354.3545
+33893.91160987434 3.9704058 -7353.3706
+33894.91160992184 3.9703665 -7354.7485
+33895.91160996933 3.9702876 -7353.9609
+33896.91161001683 3.9701302 -7354.3545
+33897.91161006433 3.9701695 -7353.5669
+33898.91161011183 3.9700122 -7353.9609
+33899.91161015932 3.9699726 -7354.1577
+33900.91161020682 3.9699726 -7353.5669
+33901.91161025432 3.9698153 -7353.7646
+33902.91161030182 3.9698153 -7353.5669
+33903.91161034931 3.9697759 -7353.3706
+33904.91161039681 3.9696183 -7353.3706
+33905.91161044431 3.969579 -7353.3706
+33906.91161049181 3.9696183 -7353.7646
+33907.9116105393 3.9694216 -7354.1577
+33908.9116105868 3.9693823 -7353.7646
+33909.9116106343 3.9693034 -7355.1421
+33910.9116106818 3.9691854 -7354.1577
+33911.91161072929 3.9691854 -7354.1577
+33912.91161077679 3.9690278 -7353.5669
+33913.91161082429 3.9689491 -7353.5669
+33914.91161087179 3.9689491 -7354.5513
+33915.91161091928 3.9688704 -7353.9609
+33916.91161096678 3.9687524 -7354.1577
+33917.91161101428 3.9687524 -7353.5669
+33918.91161106178 3.9685948 -7353.9609
+33919.91161110927 3.9685161 -7353.9609
+33920.91161115677 3.9684372 -7353.9609
+33921.91161120427 3.9684372 -7354.1577
+33922.91161125177 3.9684372 -7354.3545
+33923.91161129926 3.9682405 -7353.9609
+33924.91161134676 3.9681222 -7353.5669
+33925.91161139426 3.9681222 -7353.7646
+33926.91161144176 3.9681222 -7354.5513
+33927.91161148925 3.9680829 -7353.5669
+33928.91161153675 3.9679255 -7354.3545
+33929.91161158425 3.9678862 -7353.7646
+33930.91161163175 3.967768 -7354.1577
+33931.91161167924 3.9676106 -7354.7485
+33932.91161172674 3.967768 -7354.1577
+33933.91161177424 3.9674923 -7354.3545
+33934.91161182174 3.9674923 -7353.7646
+33935.91161186923 3.967335 -7354.3545
+33936.91161191673 3.9673743 -7354.3545
+33937.91161196423 3.9672956 -7353.7646
+33938.91161201173 3.9672956 -7354.3545
+33939.91161205922 3.9671381 -7352.9771
+33940.91161210672 3.9670987 -7354.7485
+33941.91161215422 3.966902 -7353.7646
+33942.91161220171 3.966902 -7354.1577
+33943.91161224921 3.9667838 -7354.7485
+33944.91161229671 3.9668624 -7353.7646
+33945.91161234421 3.9667051 -7353.9609
+33946.9116123917 3.9665475 -7354.9453
+33947.9116124392 3.9665475 -7353.3706
+33948.9116124867 3.9664295 -7353.9609
+33949.9116125342 3.9663508 -7353.7646
+33950.91161258169 3.9662719 -7353.7646
+33951.91161262919 3.9661932 -7353.1738
+33952.91161267669 3.9661932 -7353.5669
+33953.91161272419 3.9661539 -7353.7646
+33954.91161277168 3.9659965 -7353.9609
+33955.91161281918 3.9659569 -7353.3706
+33956.91161286668 3.9658389 -7354.3545
+33957.91161291418 3.9657602 -7353.9609
+33958.91161296167 3.9656026 -7353.3706
+33959.91161300917 3.9656816 -7354.5513
+33960.91161305667 3.9655633 -7354.3545
+33961.91161310417 3.9654846 -7354.1577
+33962.91161315166 3.9654059 -7354.7485
+33963.91161319916 3.965327 -7354.1577
+33964.91161324666 3.9652483 -7354.3545
+33965.91161329416 3.9651303 -7353.7646
+33966.91161334165 3.9650517 -7354.1577
+33967.91161338915 3.9651303 -7353.9609
+33968.91161343665 3.9649727 -7353.1738
+33969.91161348415 3.9648154 -7352.9771
+33970.91161353164 3.964776 -7353.3706
+33971.91161357914 3.9647365 -7353.7646
+33972.91161362664 3.9646578 -7354.1577
+33973.91161367414 3.9645791 -7353.7646
+33974.91161372163 3.9643822 -7353.9609
+33975.91161376913 3.9643822 -7354.1577
+33976.91161381663 3.9644215 -7353.3706
+33977.91161386413 3.9642248 -7353.9609
+33978.91161391162 3.9641066 -7354.3545
+33979.91161395912 3.9641066 -7354.3545
+33980.91161400662 3.9640279 -7354.3545
+33981.91161405412 3.9639099 -7354.1577
+33982.91161410161 3.9638705 -7353.3706
+33983.91161414911 3.9636736 -7353.5669
+33984.91161419661 3.9637523 -7354.3545
+33985.91161424411 3.9636736 -7353.5669
+33986.9116142916 3.9635162 -7353.1738
+33987.9116143391 3.9634373 -7353.9609
+33988.9116143866 3.9634373 -7353.9609
+33989.9116144341 3.9633586 -7354.1577
+33990.91161448159 3.9631617 -7354.1577
+33991.91161452909 3.963083 -7354.5513
+33992.91161457659 3.9631224 -7354.1577
+33993.91161462408 3.9630044 -7354.1577
+33994.91161467158 3.962965 -7354.1577
+33995.91161471908 3.9628468 -7353.7646
+33996.91161476658 3.9628074 -7354.7485
+33997.91161481407 3.9627287 -7353.9609
+33998.91161486157 3.9628074 -7354.7485
+33999.91161490907 3.9626501 -7354.1577
+34000.91161495657 3.9625318 -7353.9609
+34001.91161500406 3.9624138 -7354.3545
+34002.91161505156 3.9622562 -7353.5669
+34003.91161509906 3.9623744 -7354.1577
+34004.91161514656 3.9622958 -7353.3706
+34005.91161519405 3.9621775 -7354.5513
+34006.91161524155 3.9620988 -7354.9453
+34007.91161528905 3.9620202 -7353.9609
+34008.91161533655 3.9619412 -7353.3706
+34009.91161538404 3.9617839 -7354.3545
+34010.91161543154 3.9618232 -7353.3706
+34011.91161547904 3.9616659 -7354.3545
+34012.91161552654 3.9617052 -7353.1738
+34013.91161557403 3.961587 -7354.5513
+34014.91161562153 3.9616263 -7353.9609
+34015.91161566903 3.9613113 -7354.3545
+34016.91161571653 3.9612327 -7353.9609
+34017.91161576402 3.961272 -7353.9609
+34018.91161581152 3.9610357 -7354.1577
+34019.91161585902 3.9610753 -7354.3545
+34020.91161590652 3.9609571 -7354.1577
+34021.91161595401 3.960839 -7353.7646
+34022.91161600151 3.9607604 -7354.5513
+34023.91161604901 3.9607604 -7354.1577
+34024.91161609651 3.9606814 -7354.1577
+34025.911616144 3.9606421 -7354.3545
+34026.9116161915 3.9605241 -7354.1577
+34027.911616239 3.9604058 -7353.9609
+34028.9116162865 3.9603665 -7352.9771
+34029.91161633399 3.9603665 -7353.5669
+34030.91161638149 3.9601698 -7354.1577
+34031.91161642899 3.9600515 -7353.5669
+34032.91161647649 3.9599335 -7354.1577
+34033.91161652398 3.9598155 -7354.1577
+34034.91161657148 3.9598548 -7354.7485
+34035.91161661898 3.9597366 -7354.3545
+34036.91161666648 3.9596972 -7353.7646
+34037.91161671397 3.9595399 -7354.7485
+34038.91161676147 3.9595399 -7353.7646
+34039.91161680897 3.9595003 -7354.5513
+34040.91161685647 3.9593823 -7353.3706
+34041.91161690396 3.959343 -7354.1577
+34042.91161695146 3.959146 -7353.3706
+34043.91161699896 3.9591067 -7353.3706
+34044.91161704645 3.9591067 -7354.3545
+34045.91161709395 3.9588704 -7354.3545
+34046.91161714145 3.95891 -7353.9609
+34047.91161718895 3.9587524 -7354.3545
+34048.91161723644 3.9587524 -7354.5513
+34049.91161728394 3.9586344 -7354.1577
+34050.91161733144 3.9584768 -7354.1577
+34051.91161737894 3.9585555 -7354.1577
+34052.91161742643 3.9583981 -7354.1577
+34053.91161747393 3.9583194 -7354.3545
+34054.91161752143 3.9582801 -7354.1577
+34055.91161756893 3.9580832 -7354.9453
+34056.91161761642 3.9581618 -7352.9771
+34057.91161766392 3.9580832 -7353.7646
+34058.91161771142 3.9578469 -7354.1577
+34059.91161775892 3.9578469 -7353.7646
+34060.91161780641 3.9577682 -7354.9453
+34061.91161785391 3.9576895 -7353.5669
+34062.91161790141 3.9576106 -7353.9609
+34063.91161794891 3.9574533 -7354.1577
+34064.9116179964 3.9574926 -7354.3545
+34065.9116180439 3.957335 -7353.3706
+34066.9116180914 3.957335 -7354.3545
+34067.9116181389 3.957335 -7353.3706
+34068.91161818639 3.9570596 -7354.5513
+34069.91161823389 3.9571383 -7353.7646
+34070.91161828139 3.9569807 -7354.5513
+34071.91161832889 3.9569807 -7353.7646
+34072.91161837638 3.9568233 -7353.7646
+34073.91161842388 3.9567447 -7354.5513
+34074.91161847138 3.9566264 -7354.1577
+34075.91161851888 3.9565871 -7354.3545
+34076.91161856637 3.9565477 -7354.7485
+34077.91161861387 3.9565084 -7354.1577
+34078.91161866137 3.9563115 -7354.7485
+34079.91161870887 3.9562721 -7354.1577
+34080.91161875636 3.9560752 -7354.3545
+34081.91161880386 3.9561541 -7353.9609
+34082.91161885136 3.9559965 -7353.3706
+34083.91161889886 3.9559965 -7354.9453
+34084.91161894635 3.9558392 -7355.1421
+34085.91161899385 3.9557209 -7353.5669
+34086.91161904135 3.9556422 -7354.1577
+34087.91161908885 3.9556816 -7353.5669
+34088.91161913634 3.9555635 -7353.7646
+34089.91161918384 3.955406 -7354.3545
+34090.91161923134 3.955406 -7353.7646
+34091.91161927884 3.955406 -7353.9609
+34092.91161932633 3.9551697 -7354.3545
+34093.91161937383 3.9551697 -7353.3706
+34094.91161942133 3.9550123 -7354.1577
+34095.91161946882 3.9548943 -7354.5513
+34096.91161951632 3.9548154 -7353.1738
+34097.91161956382 3.9547367 -7354.5513
+34098.91161961132 3.954658 -7354.5513
+34099.91161965881 3.9546974 -7353.9609
+34100.91161970631 3.9545004 -7354.5513
+34101.91161975381 3.9545004 -7353.1738
+34102.91161980131 3.9543431 -7354.3545
+34103.9116198488 3.9542644 -7353.5669
+34104.9116198963 3.9541461 -7354.3545
+34105.9116199438 3.9541068 -7354.1577
+34106.9116199913 3.9539888 -7353.7646
+34107.91162003879 3.9538705 -7354.1577
+34108.91162008629 3.9537919 -7354.5513
+34109.91162013379 3.9537132 -7353.5669
+34110.91162018129 3.9536738 -7353.9609
+34111.91162022878 3.9536343 -7353.9609
+34112.91162027628 3.9535556 -7354.9453
+34113.91162032378 3.9533982 -7354.3545
+34114.91162037128 3.95328 -7354.3545
+34115.91162041877 3.95328 -7353.3706
+34116.91162046627 3.9532013 -7354.5513
+34117.91162051377 3.9531226 -7353.7646
+34118.91162056127 3.9530833 -7353.3706
+34119.91162060876 3.9529257 -7354.5513
+34120.91162065626 3.9528863 -7353.5669
+34121.91162070376 3.9528077 -7353.9609
+34122.91162075126 3.9526501 -7353.9609
+34123.91162079875 3.952729 -7353.1738
+34124.91162084625 3.9524534 -7353.7646
+34125.91162089375 3.9525714 -7353.5669
+34126.91162094125 3.9522564 -7353.7646
+34127.91162098874 3.9521778 -7354.1577
+34128.91162103624 3.9521384 -7353.9609
+34129.91162108374 3.9520988 -7353.5669
+34130.91162113124 3.9520988 -7353.7646
+34131.91162117873 3.9519415 -7353.5669
+34132.91162122623 3.9518235 -7353.9609
+34133.91162127373 3.9517839 -7354.1577
+34134.91162132123 3.9517446 -7353.1738
+34135.91162136872 3.9515479 -7353.7646
+34136.91162141622 3.9515085 -7354.3545
+34137.91162146372 3.9513509 -7353.9609
+34138.91162151122 3.9512722 -7353.3706
+34139.91162155871 3.9512722 -7353.9609
+34140.91162160621 3.9512329 -7353.9609
+34141.91162165371 3.9510753 -7353.9609
+34142.91162170121 3.951036 -7354.1577
+34143.9116217487 3.950918 -7353.3706
+34144.9116217962 3.950839 -7353.9609
+34145.9116218437 3.9507604 -7353.5669
+34146.9116218912 3.9506423 -7353.7646
+34147.91162193869 3.950603 -7354.1577
+34148.91162198619 3.9504061 -7353.7646
+34149.91162203369 3.9504454 -7353.9609
+34150.91162208118 3.9503667 -7353.9609
+34151.91162212868 3.9502485 -7354.3545
+34152.91162217618 3.9501305 -7354.3545
+34153.91162222368 3.9500911 -7353.9609
+34154.91162227117 3.9498942 -7353.3706
+34155.91162231867 3.9498549 -7355.1421
+34156.91162236617 3.9496975 -7352.9771
+34157.91162241367 3.9496582 -7352.9771
+34158.91162246116 3.9496582 -7354.1577
+34159.91162250866 3.9496186 -7354.3545
+34160.91162255616 3.9493825 -7354.5513
+34161.91162260366 3.9493825 -7354.3545
+34162.91162265115 3.9491856 -7354.7485
+34163.91162269865 3.9492249 -7354.1577
+34164.91162274615 3.9491069 -7353.9609
+34165.91162279365 3.94891 -7354.7485
+34166.91162284114 3.9488707 -7354.3545
+34167.91162288864 3.948792 -7353.1738
+34168.91162293614 3.9487131 -7353.5669
+34169.91162298364 3.9486344 -7354.1577
+34170.91162303113 3.948595 -7353.9609
+34171.91162307863 3.948477 -7353.7646
+34172.91162312613 3.9483194 -7353.9609
+34173.91162317363 3.9483194 -7353.9609
+34174.91162322112 3.9481621 -7354.1577
+34175.91162326862 3.9481621 -7353.5669
+34176.91162331612 3.9479651 -7353.5669
+34177.91162336362 3.9479258 -7353.9609
+34178.91162341111 3.9478471 -7354.3545
+34179.91162345861 3.9477682 -7353.5669
+34180.91162350611 3.9476895 -7352.9771
+34181.91162355361 3.9475322 -7354.5513
+34182.9116236011 3.9474139 -7353.1738
+34183.9116236486 3.9473746 -7353.7646
+34184.9116236961 3.9472172 -7354.3545
+34185.9116237436 3.947099 -7354.5513
+34186.91162379109 3.9471383 -7354.9453
+34187.91162383859 3.9470203 -7354.3545
+34188.91162388609 3.9469416 -7353.9609
+34189.91162393359 3.9468627 -7353.9609
+34190.91162398108 3.946666 -7354.1577
+34191.91162402858 3.9465873 -7354.1577
+34192.91162407608 3.9465084 -7353.7646
+34193.91162412358 3.9464691 -7353.5669
+34194.91162417107 3.9463511 -7353.5669
+34195.91162421857 3.9462328 -7353.5669
+34196.91162426607 3.9461148 -7353.3706
+34197.91162431357 3.9459968 -7353.5669
+34198.91162436106 3.9460361 -7353.9609
+34199.91162440856 3.9459574 -7354.5513
+34200.91162445606 3.9459178 -7354.1577
+34201.91162450355 3.9457998 -7354.9453
+34202.91162455105 3.9456425 -7354.1577
+34203.91162459855 3.9455242 -7354.3545
+34204.91162464605 3.9455242 -7353.5669
+34205.91162469354 3.9454455 -7353.5669
+34206.91162474104 3.9454062 -7354.5513
+34207.91162478854 3.9451306 -7354.1577
+34208.91162483604 3.9450519 -7353.3706
+34209.91162488353 3.9450519 -7353.5669
+34210.91162493103 3.9449337 -7353.3706
+34211.91162497853 3.944855 -7353.9609
+34212.91162502603 3.9447763 -7354.3545
+34213.91162507352 3.944737 -7353.7646
+34214.91162512102 3.9446974 -7353.3706
+34215.91162516852 3.9445007 -7354.3545
+34216.91162521602 3.9444613 -7353.9609
+34217.91162526351 3.9443824 -7353.5669
+34218.91162531101 3.9443038 -7353.9609
+34219.91162535851 3.9441464 -7353.7646
+34220.91162540601 3.9441857 -7353.3706
+34221.9116254535 3.9439101 -7353.7646
+34222.911625501 3.9439101 -7353.9609
+34223.9116255485 3.9438314 -7354.5513
+34224.911625596 3.9436738 -7353.7646
+34225.91162564349 3.9436738 -7353.9609
+34226.91162569099 3.9435165 -7353.5669
+34227.91162573849 3.9435165 -7354.1577
+34228.91162578599 3.9433589 -7354.1577
+34229.91162583348 3.9432409 -7354.1577
+34230.91162588098 3.9432015 -7354.1577
+34231.91162592848 3.9430833 -7354.7485
+34232.91162597598 3.9430046 -7354.1577
+34233.91162602347 3.9428077 -7354.1577
+34234.91162607097 3.9428077 -7353.9609
+34235.91162611847 3.9428077 -7354.3545
+34236.91162616597 3.9426503 -7353.5669
+34237.91162621346 3.9425321 -7354.1577
+34238.91162626096 3.9424534 -7353.9609
+34239.91162630846 3.9423354 -7353.7646
+34240.91162635596 3.9422171 -7353.7646
+34241.91162640345 3.9421384 -7353.5669
+34242.91162645095 3.9420598 -7353.7646
+34243.91162649845 3.9420598 -7353.9609
+34244.91162654595 3.9419022 -7353.9609
+34245.91162659344 3.9419022 -7354.1577
+34246.91162664094 3.9417448 -7353.9609
+34247.91162668844 3.9416661 -7354.3545
+34248.91162673594 3.9415479 -7354.7485
+34249.91162678343 3.9415479 -7354.3545
+34250.91162683093 3.9413512 -7353.9609
+34251.91162687843 3.9411936 -7353.9609
+34252.91162692592 3.9411542 -7354.9453
+34253.91162697342 3.9411149 -7354.3545
+34254.91162702092 3.9408786 -7353.9609
+34255.91162706842 3.940918 -7353.7646
+34256.91162711591 3.9407606 -7354.5513
+34257.91162716341 3.9406817 -7353.7646
+34258.91162721091 3.9406424 -7354.3545
+34259.91162725841 3.9406424 -7354.1577
+34260.9116273059 3.9405637 -7353.9609
+34261.9116273534 3.9403274 -7353.9609
+34262.9116274009 3.9403667 -7354.5513
+34263.9116274484 3.94017 -7354.3545
+34264.91162749589 3.9400518 -7354.3545
+34265.91162754339 3.9400125 -7354.3545
+34266.91162759089 3.9398944 -7353.7646
+34267.91162763839 3.9397368 -7354.1577
+34268.91162768588 3.9396975 -7354.1577
+34269.91162773338 3.9396582 -7353.5669
+34270.91162778088 3.9394612 -7354.3545
+34271.91162782838 3.9394612 -7354.1577
+34272.91162787587 3.9393039 -7353.7646
+34273.91162792337 3.9393039 -7354.1577
+34274.91162797087 3.9391859 -7353.5669
+34275.91162801837 3.9390676 -7354.5513
+34276.91162806586 3.9389102 -7354.1577
+34277.91162811336 3.9389496 -7354.5513
+34278.91162816086 3.9388313 -7354.1577
+34279.91162820836 3.9387527 -7353.5669
+34280.91162825585 3.938674 -7353.7646
+34281.91162830335 3.9385164 -7353.5669
+34282.91162835085 3.938477 -7354.1577
+34283.91162839835 3.938359 -7353.3706
+34284.91162844584 3.938241 -7354.1577
+34285.91162849334 3.9380834 -7353.9609
+34286.91162854084 3.9379654 -7353.7646
+34287.91162858834 3.9379654 -7353.9609
+34288.91162863583 3.9378865 -7354.5513
+34289.91162868333 3.9376504 -7354.1577
+34290.91162873083 3.9376898 -7353.9609
+34291.91162877833 3.9375715 -7354.5513
+34292.91162882582 3.9374535 -7354.5513
+34293.91162887332 3.9374928 -7353.9609
+34294.91162892082 3.9372959 -7354.1577
+34295.91162896832 3.9371779 -7354.1577
+34296.91162901581 3.9370992 -7353.7646
+34297.91162906331 3.9370205 -7353.7646
+34298.91162911081 3.9368629 -7354.1577
+34299.91162915831 3.9368236 -7353.5669
+34300.9116292058 3.9367449 -7353.3706
+34301.9116292533 3.9367449 -7354.3545
+34302.9116293008 3.936548 -7354.1577
+34303.91162934829 3.9364693 -7354.1577
+34304.91162939579 3.936233 -7353.1738
+34305.91162944329 3.9363117 -7353.5669
+34306.91162949079 3.9361544 -7354.1577
+34307.91162953828 3.9359574 -7353.7646
+34308.91162958578 3.9360361 -7353.9609
+34309.91162963328 3.9359181 -7353.7646
+34310.91162968078 3.9358394 -7354.5513
+34311.91162972827 3.9356818 -7353.7646
+34312.91162977577 3.9356818 -7353.5669
+34313.91162982327 3.9356425 -7354.3545
+34314.91162987077 3.9353669 -7354.5513
+34315.91162991826 3.9354062 -7354.3545
+34316.91162996576 3.9353275 -7353.9609
+34317.91163001326 3.9352489 -7354.1577
+34318.91163006076 3.9350913 -7354.3545
+34319.91163010825 3.9349339 -7353.9609
+34320.91163015575 3.9348946 -7353.9609
+34321.91163020325 3.9348946 -7354.5513
+34322.91163025075 3.9348156 -7354.3545
+34323.91163029824 3.9346189 -7354.5513
+34324.91163034574 3.9345403 -7354.3545
+34325.91163039324 3.9344614 -7354.5513
+34326.91163044074 3.9344614 -7353.9609
+34327.91163048823 3.9343827 -7353.9609
+34328.91163053573 3.9341464 -7353.9609
+34329.91163058323 3.9340284 -7354.3545
+34330.91163063073 3.933989 -7353.9609
+34331.91163067822 3.9338708 -7353.9609
+34332.91163072572 3.9337921 -7353.9609
+34333.91163077322 3.9337134 -7353.9609
+34334.91163082072 3.9335952 -7353.7646
+34335.91163086821 3.9334378 -7354.1577
+34336.91163091571 3.9334378 -7354.7485
+34337.91163096321 3.9333198 -7353.5669
+34338.91163101071 3.9332016 -7353.9609
+34339.9116310582 3.9331622 -7353.7646
+34340.9116311057 3.9331229 -7353.3706
+34341.9116311532 3.9328866 -7353.5669
+34342.9116312007 3.9328866 -7354.5513
+34343.91163124819 3.9327686 -7354.3545
+34344.91163129569 3.9327292 -7354.7485
+34345.91163134319 3.932611 -7354.9453
+34346.91163139069 3.932493 -7354.5513
+34347.91163143818 3.9324536 -7353.7646
+34348.91163148568 3.932296 -7354.9453
+34349.91163153318 3.932178 -7353.7646
+34350.91163158068 3.9320598 -7353.7646
+34351.91163162817 3.9320598 -7353.9609
+34352.91163167567 3.9319024 -7353.7646
+34353.91163172317 3.9317055 -7354.5513
+34354.91163177066 3.9317055 -7353.9609
+34355.91163181816 3.9316661 -7353.5669
+34356.91163186566 3.9315875 -7355.1421
+34357.91163191316 3.9314694 -7353.5669
+34358.91163196065 3.9313512 -7353.3706
+34359.91163200815 3.9311938 -7353.1738
+34360.91163205565 3.9310756 -7354.5513
+34361.91163210315 3.9311545 -7353.9609
+34362.91163215064 3.9309182 -7354.5513
+34363.91163219814 3.9308789 -7353.5669
+34364.91163224564 3.9307606 -7354.1577
+34365.91163229314 3.9307213 -7353.9609
+34366.91163234063 3.9306033 -7353.7646
+34367.91163238813 3.9304063 -7353.1738
+34368.91163243563 3.9304063 -7354.1577
+34369.91163248313 3.9302094 -7354.3545
+34370.91163253062 3.930249 -7352.9771
+34371.91163257812 3.930052 -7353.5669
+34372.91163262562 3.9300914 -7354.5513
+34373.91163267312 3.9298551 -7354.7485
+34374.91163272061 3.9297371 -7353.7646
+34375.91163276811 3.9296584 -7354.1577
+34376.91163281561 3.9295402 -7353.9609
+34377.91163286311 3.9294615 -7354.9453
+34378.9116329106 3.9293828 -7354.1577
+34379.9116329581 3.9292645 -7353.9609
+34380.9116330056 3.9292645 -7354.7485
+34381.9116330531 3.9289889 -7353.9609
+34382.91163310059 3.9290679 -7354.5513
+34383.91163314809 3.9289103 -7353.1738
+34384.91163319559 3.9287922 -7353.5669
+34385.91163324309 3.9287922 -7353.9609
+34386.91163329058 3.928674 -7354.3545
+34387.91163333808 3.9285953 -7354.1577
+34388.91163338558 3.9284379 -7353.9609
+34389.91163343308 3.9285166 -7354.5513
+34390.91163348057 3.9282017 -7354.1577
+34391.91163352807 3.928241 -7353.9609
+34392.91163357557 3.9280441 -7353.3706
+34393.91163362307 3.9280441 -7354.5513
+34394.91163367056 3.927808 -7354.5513
+34395.91163371806 3.9278474 -7354.5513
+34396.91163376556 3.9276505 -7353.5669
+34397.91163381306 3.9274931 -7353.5669
+34398.91163386055 3.9276111 -7353.9609
+34399.91163390805 3.9274142 -7354.1577
+34400.91163395555 3.9273355 -7353.7646
+34401.91163400305 3.9271386 -7354.3545
+34402.91163405054 3.9271781 -7353.7646
+34403.91163409804 3.9269812 -7353.5669
+34404.91163414554 3.9270205 -7353.3706
+34405.91163419303 3.9268236 -7354.1577
+34406.91163424053 3.9267056 -7353.5669
+34407.91163428803 3.9266663 -7353.5669
+34408.91163433553 3.9265482 -7353.5669
+34409.91163438302 3.92643 -7354.3545
+34410.91163443052 3.9263513 -7354.1577
+34411.91163447802 3.9262726 -7354.3545
+34412.91163452552 3.9260757 -7354.7485
+34413.91163457301 3.925997 -7353.7646
+34414.91163462051 3.9259577 -7354.3545
+34415.91163466801 3.9258394 -7353.9609
+34416.91163471551 3.9258001 -7353.5669
+34417.911634763 3.9256821 -7354.1577
+34418.9116348105 3.9256821 -7354.3545
+34419.911634858 3.9253671 -7353.5669
+34420.9116349055 3.9254458 -7354.1577
+34421.91163495299 3.9252882 -7353.7646
+34422.91163500049 3.9252095 -7354.1577
+34423.91163504799 3.9250915 -7354.7485
+34424.91163509549 3.9250128 -7354.9453
+34425.91163514298 3.9248159 -7353.3706
+34426.91163519048 3.9248159 -7353.5669
+34427.91163523798 3.9247372 -7354.7485
+34428.91163528548 3.924619 -7354.5513
+34429.91163533297 3.9245796 -7353.3706
+34430.91163538047 3.9245009 -7354.1577
+34431.91163542797 3.9242647 -7353.9609
+34432.91163547547 3.924186 -7353.3706
+34433.91163552296 3.924068 -7353.7646
+34434.91163557046 3.9240284 -7354.7485
+34435.91163561796 3.9239497 -7353.7646
+34436.91163566546 3.9239104 -7354.5513
+34437.91163571295 3.923753 -7353.9609
+34438.91163576045 3.9236741 -7353.9609
+34439.91163580795 3.9234774 -7354.7485
+34440.91163585545 3.9235168 -7353.5669
+34441.91163590294 3.9233985 -7353.7646
+34442.91163595044 3.9233592 -7354.5513
+34443.91163599794 3.9232018 -7353.1738
+34444.91163604544 3.9230442 -7353.3706
+34445.91163609293 3.9230442 -7353.7646
+34446.91163614043 3.9228868 -7354.5513
+34447.91163618793 3.9228079 -7353.7646
+34448.91163623543 3.9226899 -7354.1577
+34449.91163628292 3.9225326 -7353.5669
+34450.91163633042 3.9225719 -7353.7646
+34451.91163637792 3.922375 -7354.1577
+34452.91163642542 3.9223356 -7354.7485
+34453.91163647291 3.9222569 -7353.7646
+34454.91163652041 3.92206 -7354.1577
+34455.91163656791 3.921942 -7354.5513
+34456.9116366154 3.9220207 -7354.1577
+34457.9116366629 3.9218237 -7353.9609
+34458.9116367104 3.9217057 -7354.5513
+34459.9116367579 3.9216664 -7353.9609
+34460.91163680539 3.9215088 -7354.1577
+34461.91163685289 3.9214301 -7354.1577
+34462.91163690039 3.9212332 -7354.1577
+34463.91163694789 3.9211938 -7353.3706
+34464.91163699538 3.9211938 -7354.7485
+34465.91163704288 3.9210758 -7354.5513
+34466.91163709038 3.9210365 -7354.3545
+34467.91163713788 3.9208395 -7354.1577
+34468.91163718537 3.9207609 -7353.9609
+34469.91163723287 3.9207215 -7353.9609
+34470.91163728037 3.9205639 -7353.9609
+34471.91163732787 3.9204459 -7353.5669
+34472.91163737536 3.9204459 -7354.1577
+34473.91163742286 3.920249 -7353.9609
+34474.91163747036 3.920131 -7354.3545
+34475.91163751786 3.9200521 -7355.1421
+34476.91163756535 3.919934 -7353.1738
+34477.91163761285 3.919934 -7354.1577
+34478.91163766035 3.919816 -7354.1577
+34479.91163770785 3.9197371 -7353.5669
+34480.91163775534 3.9195404 -7353.5669
+34481.91163780284 3.9194221 -7353.5669
+34482.91163785034 3.9193828 -7354.7485
+34483.91163789784 3.9192648 -7353.3706
+34484.91163794533 3.9190679 -7354.1577
+34485.91163799283 3.9190679 -7353.9609
+34486.91163804033 3.9190285 -7354.7485
+34487.91163808783 3.9188318 -7354.5513
+34488.91163813532 3.9187136 -7353.5669
+34489.91163818282 3.9186742 -7355.1421
+34490.91163823032 3.9185562 -7353.7646
+34491.91163827782 3.918438 -7353.9609
+34492.91163832531 3.918438 -7354.5513
+34493.91163837281 3.9183199 -7353.5669
+34494.91163842031 3.918123 -7354.1577
+34495.91163846781 3.9180443 -7353.9609
+34496.9116385153 3.9179657 -7353.5669
+34497.9116385628 3.9179263 -7353.9609
+34498.9116386103 3.9178474 -7353.5669
+34499.9116386578 3.9175324 -7353.5669
+34500.91163870529 3.91769 -7354.1577
+34501.91163875279 3.9174931 -7353.9609
+34502.91163880029 3.9175324 -7354.1577
+34503.91163884779 3.9172568 -7354.7485
+34504.91163889528 3.9172175 -7354.1577
+34505.91163894278 3.9170995 -7353.3706
+34506.91163899028 3.9170995 -7353.3706
+34507.91163903777 3.9169025 -7353.5669
+34508.91163908527 3.9167452 -7354.1577
+34509.91163913277 3.9167452 -7354.3545
+34510.91163918027 3.9165876 -7353.5669
+34511.91163922776 3.9164696 -7354.1577
+34512.91163927526 3.9164696 -7354.5513
+34513.91163932276 3.9163909 -7354.5513
+34514.91163937026 3.9161153 -7354.7485
+34515.91163941775 3.916194 -7354.1577
+34516.91163946525 3.9160364 -7354.9453
+34517.91163951275 3.9159184 -7353.9609
+34518.91163956025 3.9158003 -7354.1577
+34519.91163960774 3.9157214 -7354.3545
+34520.91163965524 3.9156034 -7353.7646
+34521.91163970274 3.9155247 -7354.5513
+34522.91163975024 3.9154065 -7354.9453
+34523.91163979773 3.9152491 -7354.3545
+34524.91163984523 3.9151704 -7354.3545
+34525.91163989273 3.9151704 -7354.5513
+34526.91163994023 3.9150522 -7353.7646
+34527.91163998772 3.9148948 -7353.5669
+34528.91164003522 3.9148161 -7354.7485
+34529.91164008272 3.9146979 -7353.3706
+34530.91164013022 3.9147372 -7353.5669
+34531.91164017771 3.9146192 -7353.7646
+34532.91164022521 3.9143829 -7354.3545
+34533.91164027271 3.9143829 -7354.3545
+34534.91164032021 3.9142649 -7354.1577
+34535.9116403677 3.9141467 -7354.3545
+34536.9116404152 3.914068 -7355.1421
+34537.9116404627 3.91395 -7354.1577
+34538.9116405102 3.9139893 -7354.3545
+34539.91164055769 3.9137137 -7354.7485
+34540.91164060519 3.9136744 -7353.9609
+34541.91164065269 3.9135561 -7354.3545
+34542.91164070019 3.9135168 -7354.5513
+34543.91164074768 3.9133594 -7354.9453
+34544.91164079518 3.9132411 -7354.1577
+34545.91164084268 3.9132018 -7353.7646
+34546.91164089018 3.9129262 -7352.9771
+34547.91164093767 3.9130051 -7354.1577
+34548.91164098517 3.9129262 -7354.9453
+34549.91164103267 3.9127688 -7354.5513
+34550.91164108017 3.9126112 -7353.3706
+34551.91164112766 3.9125719 -7354.7485
+34552.91164117516 3.9124932 -7354.5513
+34553.91164122266 3.9122963 -7354.7485
+34554.91164127016 3.9122176 -7354.5513
+34555.91164131765 3.9120996 -7354.5513
+34556.91164136515 3.9120996 -7355.3384
+34557.91164141265 3.9119027 -7354.1577
+34558.91164146014 3.9119027 -7354.3545
+34559.91164150764 3.9118633 -7353.9609
+34560.91164155514 3.9116664 -7354.1577
+34561.91164160264 3.9116664 -7353.3706
+34562.91164165013 3.9114304 -7354.9453
+34563.91164169763 3.9113121 -7353.7646
+34564.91164174513 3.9111152 -7353.9609
+34565.91164179263 3.9111941 -7354.1577
+34566.91164184012 3.9111152 -7354.9453
+34567.91164188762 3.9109972 -7353.9609
+34568.91164193512 3.9108398 -7354.3545
+34569.91164198262 3.9107609 -7354.1577
+34570.91164203011 3.9106822 -7353.9609
+34571.91164207761 3.9106035 -7353.7646
+34572.91164212511 3.9105642 -7354.3545
+34573.91164217261 3.9104066 -7355.3384
+34574.9116422201 3.9102886 -7354.3545
+34575.9116422676 3.9102492 -7354.5513
+34576.9116423151 3.9102099 -7354.5513
+34577.9116423626 3.9100916 -7354.5513
+34578.91164241009 3.9099736 -7354.5513
+34579.91164245759 3.9098949 -7354.9453
+34580.91164250509 3.9097373 -7355.3384
+34581.91164255259 3.90958 -7354.1577
+34582.91164260008 3.9095011 -7354.1577
+34583.91164264758 3.9095011 -7354.7485
+34584.91164269508 3.9094224 -7354.5513
+34585.91164274258 3.9091468 -7354.7485
+34586.91164279007 3.9091468 -7353.5669
+34587.91164283757 3.9089894 -7353.9609
+34588.91164288507 3.9089499 -7353.5669
+34589.91164293257 3.9088712 -7354.7485
+34590.91164298006 3.9087532 -7353.3706
+34591.91164302756 3.9086349 -7354.1577
+34592.91164307506 3.9085562 -7353.7646
+34593.91164312256 3.9083989 -7353.9609
+34594.91164317005 3.90832 -7353.9609
+34595.91164321755 3.9083595 -7354.7485
+34596.91164326505 3.9081233 -7354.5513
+34597.91164331255 3.9082413 -7354.3545
+34598.91164336004 3.907887 -7354.7485
+34599.91164340754 3.9078476 -7354.3545
+34600.91164345504 3.9076507 -7353.9609
+34601.91164350254 3.90769 -7354.5513
+34602.91164355003 3.907572 -7353.9609
+34603.91164359753 3.9074144 -7354.3545
+34604.91164364503 3.9072964 -7354.3545
+34605.91164369253 3.9072964 -7353.7646
+34606.91164374002 3.9070995 -7353.9609
+34607.91164378752 3.9069815 -7354.9453
+34608.91164383502 3.9070601 -7354.3545
+34609.91164388251 3.9067845 -7353.7646
+34610.91164393001 3.9067452 -7355.1421
+34611.91164397751 3.9066665 -7353.9609
+34612.91164402501 3.9067059 -7354.7485
+34613.9116440725 3.9064302 -7354.3545
+34614.91164412 3.9062335 -7354.5513
+34615.9116441675 3.9062729 -7353.9609
+34616.911644215 3.9061153 -7353.9609
+34617.91164426249 3.9061153 -7354.5513
+34618.91164430999 3.9059579 -7354.3545
+34619.91164435749 3.9058003 -7354.1577
+34620.91164440499 3.9058793 -7354.7485
+34621.91164445248 3.905643 -7353.9609
+34622.91164449998 3.9054854 -7354.1577
+34623.91164454748 3.9054067 -7354.1577
+34624.91164459498 3.9052887 -7354.1577
+34625.91164464247 3.9052098 -7354.5513
+34626.91164468997 3.9050918 -7354.1577
+34627.91164473747 3.9049737 -7354.1577
+34628.91164478497 3.9048555 -7354.1577
+34629.91164483246 3.9049342 -7354.1577
+34630.91164487996 3.9046588 -7352.9771
+34631.91164492746 3.9045405 -7354.5513
+34632.91164497496 3.9045405 -7353.9609
+34633.91164502245 3.9043438 -7354.5513
+34634.91164506995 3.9041862 -7354.5513
+34635.91164511745 3.9042256 -7353.9609
+34636.91164516495 3.9041076 -7353.9609
+34637.91164521244 3.9039893 -7354.5513
+34638.91164525994 3.9039106 -7354.7485
+34639.91164530744 3.9037533 -7354.9453
+34640.91164535494 3.9035957 -7353.9609
+34641.91164540243 3.9034777 -7354.1577
+34642.91164544993 3.9033594 -7354.9453
+34643.91164549743 3.9033594 -7353.7646
+34644.91164554493 3.9032414 -7353.7646
+34645.91164559242 3.9032021 -7354.9453
+34646.91164563992 3.9030838 -7354.7485
+34647.91164568742 3.9029264 -7353.7646
+34648.91164573492 3.9028478 -7354.1577
+34649.91164578241 3.9028084 -7354.5513
+34650.91164582991 3.9025722 -7354.1577
+34651.91164587741 3.9025722 -7354.3545
+34652.91164592491 3.9024146 -7353.7646
+34653.9116459724 3.9023752 -7354.7485
+34654.43764599739 3.9023752 -7354.3545
+34654.43964599748 3.9023359 -7354.1577
+34654.49164599995 3.969579 0.0
+34655.49164604745 3.9717836 0.0
+34656.49164609495 3.9731617 0.0
+34657.49164614244 3.9742246 0.0
+34658.49164618994 3.9752088 0.0
+34659.49164623744 3.9760356 0.0
+34660.49164628494 3.9769804 0.0
+34661.49164633243 3.9777286 0.0
+34662.49164637993 3.9785159 0.0
+34663.49164642743 3.9791064 0.0
+34664.49164647493 3.979579 0.0
+34664.51364647597 3.9796183 0.0
+34671.07164678746 3.9826102 -253.3824
+34675.48164699692 3.9756026 -243.14792
+34679.85764720477 3.9863505 -257.31876
+34684.21364741167 3.9807205 -352.38153
+34688.62564762123 3.9868622 -1380.3584
+34692.98964782851 3.9727285 -282.11774
+34697.37164803664 3.977138 -490.35046
+34701.77964824601 3.9752483 -207.32716
+34706.16964845452 3.9864292 -590.92413
+34710.53964866209 3.9814293 -223.85982
+34714.89564886899 3.9790671 -417.13443
+34719.29364907788 3.9701695 -1859.4116
+34723.68364928639 3.9872561 -1022.5446
+34727.97764949035 3.9884765 -665.32111
+34732.3536496982 3.9698939 -2403.0212
+34736.72764990595 3.9726498 -1922.3932
+34741.1056501139 3.9706421 -2559.0972
+34745.49565032241 3.9845002 -1104.4205
+34749.86165052978 3.9700122 -2612.041
+34754.2516507383 3.9891458 -364.19058
+34757.53365089418 3.9742246 -2218.2097
+34761.90965110203 3.9738703 -2066.4636
+34765.1996512583 3.981075 -1251.6399
+34768.50165141514 3.9713507 -2402.0371
+34771.84365157387 3.9872561 -624.97351
+34775.2296517347 3.9837127 -1116.0327
+34778.59165189439 3.9834764 -1068.5999
+34782.00365205645 3.9877677 -654.29932
+34785.48565222183 3.9730041 -2297.9207
+34789.08965239301 3.9845002 -982.3938
+34792.65965256258 3.9725318 -2318.1929
+34796.33765273727 3.9869804 -718.85535
+34799.93965290836 3.975445 -1994.8219
+34803.82365309284 3.9832008 -1178.0302
+34807.89765328635 3.9707994 -2531.1492
+34812.00965348165 3.9702876 -2585.8645
+34817.1476537257 3.9722562 -2379.0093
+34822.02765395748 3.9853661 -932.99268
+34828.13765424769 3.9847758 -982.59058
+34833.30965449335 3.973201 -2270.9568
+34839.65165479458 3.9770987 -1809.6169
+34847.61365517275 3.9886732 -561.79517
+34857.52765564364 3.9767442 -1878.3062
+34869.98765623546 3.9702876 -2550.2405
+34885.59365697671 3.9797363 -1490.7728
+34905.13165790471 3.9883976 -552.15112
+34929.70365907182 3.9861929 -795.81091
+34960.50766053493 3.9768624 -1787.1798
+34999.22566237394 3.9709177 -2368.5781
+35047.9116646864 3.9704845 -2356.9658
+35109.15766759543 3.9754057 -1734.4327
+35186.19967125473 3.9812324 -1038.6836
+35283.08167585637 3.9860749 -458.85971
+35404.9856816465 3.9866261 -380.13278
+35558.35968893138 3.9831614 -645.63934
+35751.39169809991 3.9700515 -1803.9092
+35994.22170963371 3.9765475 -922.75818
+36299.83972414979 3.9870985 139.26808
+36684.59774242481 3.9729648 -1131.5813
+37169.7897654702 3.9888701 566.75519
+37780.75779448962 3.9772167 -276.60687
+37780.81979449256 3.9799726 0.0
+37781.81979454006 3.9801695 0.0
+37782.81979458756 3.98013 0.0
+37783.81979463506 3.9803662 0.0
+37784.81979468255 3.9802876 0.0
+37785.81979473005 3.9804845 0.0
+37786.81979477755 3.9804449 0.0
+37787.81979482505 3.9803662 0.0
+37788.81979487254 3.9804056 0.0
+37789.81979492004 3.9804845 0.0
+37790.81979496754 3.9804845 0.0
+37791.81979501504 3.9807599 0.0
+37792.81979506253 3.9807205 0.0
+37793.81979511003 3.9808388 0.0
+37794.81979515753 3.9807599 0.0
+37795.81979520503 3.9808781 0.0
+37796.81979525252 3.9807994 0.0
+37797.81979530002 3.9810355 0.0
+37798.81979534752 3.9809175 0.0
+37799.81979539501 3.9808781 0.0
+37800.81979544251 3.9808781 0.0
+37801.81979549001 3.9808388 0.0
+37802.81979553751 3.9808388 0.0
+37803.819795585 3.9808781 0.0
+37804.8197956325 3.9811537 0.0
+37805.81979568 3.9811931 0.0
+37806.8197957275 3.9811931 0.0
+37807.81979577499 3.9811931 0.0
+37808.81979582249 3.9811931 0.0
+37809.81979586999 3.9812324 0.0
+37810.81979591749 3.9811931 0.0
+37811.81979596498 3.9811931 0.0
+37812.81979601248 3.9812324 0.0
+37813.81979605998 3.9812717 0.0
+37814.81979610748 3.9812717 0.0
+37815.81979615497 3.9811931 0.0
+37816.81979620247 3.9812324 0.0
+37817.81979624997 3.9813111 0.0
+37818.81979629747 3.9813504 0.0
+37819.81979634496 3.9812324 0.0
+37820.81979639246 3.9813504 0.0
+37821.81979643996 3.9813111 0.0
+37822.81979648746 3.98139 0.0
+37823.81979653495 3.98139 0.0
+37824.81979658245 3.98139 0.0
+37825.81979662995 3.9813111 0.0
+37826.81979667745 3.9813504 0.0
+37827.81979672494 3.9813111 0.0
+37828.81979677244 3.98139 0.0
+37829.81979681994 3.981508 0.0
+37830.81979686744 3.9813504 0.0
+37831.81979691493 3.981508 0.0
+37832.81979696243 3.981508 0.0
+37833.81979700993 3.9815474 0.0
+37834.81979705743 3.981508 0.0
+37835.81979710492 3.981508 0.0
+37836.81979715242 3.9816654 0.0
+37837.81979719992 3.9815867 0.0
+37838.81979724742 3.981626 0.0
+37839.81979729491 3.9815474 0.0
+37840.81979734241 3.9815867 0.0
+37841.81979738991 3.9815867 0.0
+37842.81979743741 3.981626 0.0
+37843.8197974849 3.9816654 0.0
+37844.8197975324 3.981626 0.0
+37845.8197975799 3.9816654 0.0
+37846.8197976274 3.9816654 0.0
+37847.81979767489 3.9817443 0.0
+37848.81979772239 3.9815867 0.0
+37849.81979776989 3.9817443 0.0
+37850.81979781738 3.9817443 0.0
+37851.81979786488 3.981705 0.0
+37852.81979791238 3.981705 0.0
+37853.81979795988 3.981705 0.0
+37854.81979800737 3.9817836 0.0
+37855.81979805487 3.981705 0.0
+37856.81979810237 3.9817443 0.0
+37857.81979814987 3.981705 0.0
+37858.81979819736 3.981705 0.0
+37859.81979824486 3.9817443 0.0
+37860.81979829236 3.9817836 0.0
+37861.81979833986 3.9817836 0.0
+37862.81979838735 3.981823 0.0
+37863.81979843485 3.9818623 0.0
+37864.81979848235 3.981823 0.0
+37865.81979852985 3.981823 0.0
+37866.81979857734 3.9817836 0.0
+37867.81979862484 3.9819016 0.0
+37868.81979867234 3.9817836 0.0
+37869.81979871984 3.9818623 0.0
+37870.81979876733 3.9817443 0.0
+37871.81979881483 3.981941 0.0
+37872.81979886233 3.9819016 0.0
+37873.81979890983 3.981823 0.0
+37874.81979895732 3.981941 0.0
+37875.81979900482 3.981941 0.0
+37876.81979905232 3.981941 0.0
+37877.81979909982 3.9819016 0.0
+37878.81979914731 3.981941 0.0
+37879.81979919481 3.9820199 0.0
+37880.81979924231 3.9818623 0.0
+37881.81979928981 3.9819803 0.0
+37882.8197993373 3.9820199 0.0
+37883.8197993848 3.981941 0.0
+37884.8197994323 3.9819803 0.0
+37885.8197994798 3.981941 0.0
+37886.81979952729 3.9820592 0.0
+37887.81979957479 3.9819803 0.0
+37888.81979962229 3.9820199 0.0
+37889.81979966979 3.9820199 0.0
+37890.81979971728 3.9818623 0.0
+37891.81979976478 3.9820199 0.0
+37892.81979981228 3.9820592 0.0
+37893.81979985978 3.9820986 0.0
+37894.81979990727 3.9820592 0.0
+37895.81979995477 3.9820199 0.0
+37896.81980000227 3.981941 0.0
+37897.81980004977 3.9819803 0.0
+37898.81980009726 3.9821379 0.0
+37899.81980014476 3.9820592 0.0
+37900.81980019226 3.9820199 0.0
+37901.81980023975 3.9820592 0.0
+37902.81980028725 3.9820199 0.0
+37903.81980033475 3.9821379 0.0
+37904.81980038225 3.9820592 0.0
+37905.81980042974 3.9820986 0.0
+37906.81980047724 3.9820592 0.0
+37907.81980052474 3.9821379 0.0
+37908.81980057224 3.9820592 0.0
+37909.81980061973 3.9820592 0.0
+37910.81980066723 3.9820592 0.0
+37911.81980071473 3.9820986 0.0
+37912.81980076223 3.9821379 0.0
+37913.81980080972 3.9819803 0.0
+37914.81980085722 3.9821773 0.0
+37915.81980090472 3.9821773 0.0
+37916.81980095222 3.9821379 0.0
+37917.81980099971 3.9821379 0.0
+37918.81980104721 3.9820986 0.0
+37919.81980109471 3.9821773 0.0
+37920.81980114221 3.9822559 0.0
+37921.8198011897 3.9820986 0.0
+37922.8198012372 3.9821773 0.0
+37923.8198012847 3.9821379 0.0
+37924.8198013322 3.9820986 0.0
+37925.81980137969 3.9821773 0.0
+37926.81980142719 3.9820592 0.0
+37927.81980147469 3.9821379 0.0
+37928.81980152219 3.9822166 0.0
+37929.81980156968 3.9821379 0.0
+37930.81980161718 3.9821379 0.0
+37931.81980166468 3.9821773 0.0
+37932.81980171218 3.9820986 0.0
+37933.81980175967 3.9821773 0.0
+37934.81980180717 3.9822166 0.0
+37935.81980185467 3.9821379 0.0
+37936.81980190217 3.9822559 0.0
+37937.81980194966 3.9822166 0.0
+37938.81980199716 3.9822166 0.0
+37939.81980204466 3.9821379 0.0
+37940.81980209216 3.9821379 0.0
+37941.81980213965 3.9822166 0.0
+37942.81980218715 3.9822953 0.0
+37943.81980223465 3.9822166 0.0
+37944.81980228215 3.9822166 0.0
+37945.81980232964 3.9822166 0.0
+37946.81980237714 3.9822166 0.0
+37947.81980242464 3.9821379 0.0
+37948.81980247214 3.9821773 0.0
+37949.81980251963 3.9820986 0.0
+37950.81980256713 3.9822559 0.0
+37951.81980261463 3.9822559 0.0
+37952.81980266212 3.9822953 0.0
+37953.81980270962 3.9822953 0.0
+37954.81980275712 3.9823349 0.0
+37955.81980280462 3.9822953 0.0
+37956.81980285211 3.9822953 0.0
+37957.81980289961 3.9822166 0.0
+37958.81980294711 3.9822953 0.0
+37959.81980299461 3.9822559 0.0
+37960.8198030421 3.9822559 0.0
+37961.8198030896 3.9822953 0.0
+37962.8198031371 3.9822559 0.0
+37963.8198031846 3.9822166 0.0
+37964.81980323209 3.9822166 0.0
+37965.81980327959 3.9822953 0.0
+37966.81980332709 3.9822953 0.0
+37967.81980337459 3.9822559 0.0
+37968.81980342208 3.9822166 0.0
+37969.81980346958 3.9822953 0.0
+37970.81980351708 3.9823349 0.0
+37971.81980356458 3.9822559 0.0
+37972.81980361207 3.9821773 0.0
+37973.81980365957 3.9823349 0.0
+37974.81980370707 3.9823349 0.0
+37975.81980375457 3.9822559 0.0
+37976.81980380206 3.9823349 0.0
+37977.81980384956 3.9822953 0.0
+37978.81980389706 3.9822559 0.0
+37979.81980394456 3.9823349 0.0
+37980.81980399205 3.9822953 0.0
+37981.81980403955 3.9823742 0.0
+37982.81980408705 3.9823349 0.0
+37983.81980413455 3.9823349 0.0
+37984.81980418204 3.9822953 0.0
+37985.81980422954 3.9823349 0.0
+37986.81980427704 3.9823742 0.0
+37987.81980432454 3.9822953 0.0
+37988.81980437203 3.9822953 0.0
+37989.81980441953 3.9823742 0.0
+37990.81980446703 3.9822953 0.0
+37991.81980451453 3.9822953 0.0
+37992.81980456202 3.9823742 0.0
+37993.81980460952 3.9823349 0.0
+37994.81980465702 3.9823742 0.0
+37995.81980470452 3.9824135 0.0
+37996.81980475201 3.9824529 0.0
+37997.81980479951 3.9823742 0.0
+37998.81980484701 3.9824922 0.0
+37999.81980489451 3.9824135 0.0
+38000.819804942 3.9823349 0.0
+38001.8198049895 3.9823349 0.0
+38002.819805037 3.9823742 0.0
+38003.81980508449 3.9824135 0.0
+38004.81980513199 3.9824135 0.0
+38005.81980517949 3.9823349 0.0
+38006.81980522699 3.9824529 0.0
+38007.81980527448 3.9823742 0.0
+38008.81980532198 3.9823349 0.0
+38009.81980536948 3.9824529 0.0
+38010.81980541698 3.9823742 0.0
+38011.81980546447 3.9823742 0.0
+38012.81980551197 3.9824529 0.0
+38013.81980555947 3.9824135 0.0
+38014.81980560697 3.9823742 0.0
+38015.81980565446 3.9825709 0.0
+38016.81980570196 3.9823349 0.0
+38017.81980574946 3.9823742 0.0
+38018.81980579696 3.9823349 0.0
+38019.81980584445 3.9823349 0.0
+38020.81980589195 3.9824922 0.0
+38021.81980593945 3.9823742 0.0
+38022.81980598695 3.9824135 0.0
+38023.81980603444 3.9824529 0.0
+38024.81980608194 3.9824135 0.0
+38025.81980612944 3.9824529 0.0
+38026.81980617694 3.9823349 0.0
+38027.81980622443 3.9824529 0.0
+38028.81980627193 3.9823742 0.0
+38029.81980631943 3.9823742 0.0
+38030.81980636693 3.9824135 0.0
+38031.81980641442 3.9822953 0.0
+38032.81980646192 3.9825709 0.0
+38033.81980650942 3.9824922 0.0
+38034.81980655692 3.9825315 0.0
+38035.81980660441 3.9824922 0.0
+38036.81980665191 3.9824135 0.0
+38037.81980669941 3.9824922 0.0
+38038.81980674691 3.9824922 0.0
+38039.8198067944 3.9823742 0.0
+38040.8198068419 3.9824529 0.0
+38041.8198068894 3.9824529 0.0
+38042.8198069369 3.9824135 0.0
+38043.81980698439 3.9824529 0.0
+38044.81980703189 3.9824922 0.0
+38045.81980707939 3.9824529 0.0
+38046.81980712689 3.9825315 0.0
+38047.81980717438 3.9823742 0.0
+38048.81980722188 3.9825315 0.0
+38049.81980726938 3.9824135 0.0
+38050.81980731688 3.9824922 0.0
+38051.81980736437 3.9824529 0.0
+38052.81980741187 3.9824529 0.0
+38053.81980745937 3.9825315 0.0
+38054.81980750686 3.9824529 0.0
+38055.81980755436 3.9824922 0.0
+38056.81980760186 3.9824135 0.0
+38057.81980764936 3.9824529 0.0
+38058.81980769685 3.9824922 0.0
+38059.81980774435 3.9824922 0.0
+38060.81980779185 3.9824529 0.0
+38061.81980783935 3.9824922 0.0
+38062.81980788684 3.9825315 0.0
+38063.81980793434 3.9824922 0.0
+38064.81980798184 3.9824922 0.0
+38065.81980802934 3.9824922 0.0
+38066.81980807683 3.9825315 0.0
+38067.81980812433 3.9825709 0.0
+38068.81980817183 3.9825315 0.0
+38069.81980821933 3.9825315 0.0
+38070.81980826682 3.9825709 0.0
+38071.81980831432 3.9825315 0.0
+38072.81980836182 3.9826102 0.0
+38073.81980840932 3.9824922 0.0
+38074.81980845681 3.9824529 0.0
+38075.81980850431 3.9825315 0.0
+38076.81980855181 3.9825315 0.0
+38077.81980859931 3.9825315 0.0
+38078.8198086468 3.9824922 0.0
+38079.8198086943 3.9825315 0.0
+38080.8198087418 3.9825709 0.0
+38081.8198087893 3.9826102 0.0
+38082.81980883679 3.9825315 0.0
+38083.81980888429 3.9826102 0.0
+38084.81980893179 3.9824922 0.0
+38085.81980897929 3.9825315 0.0
+38086.81980902678 3.9825709 0.0
+38087.81980907428 3.9824922 0.0
+38088.81980912178 3.9825709 0.0
+38089.81980916928 3.9825315 0.0
+38090.81980921677 3.9824922 0.0
+38091.81980926427 3.9826102 0.0
+38092.81980931177 3.9825315 0.0
+38093.81980935927 3.9825315 0.0
+38094.81980940676 3.9825315 0.0
+38095.81980945426 3.9824529 0.0
+38096.81980950176 3.9825709 0.0
+38097.81980954926 3.9826102 0.0
+38098.81980959675 3.9824529 0.0
+38099.81980964425 3.9824135 0.0
+38100.81980969175 3.9826102 0.0
+38101.81980973925 3.9825315 0.0
+38102.81980978674 3.9825709 0.0
+38103.81980983424 3.9825709 0.0
+38104.81980988174 3.9824922 0.0
+38105.81980992923 3.9825315 0.0
+38106.81980997673 3.9824922 0.0
+38107.81981002423 3.9825709 0.0
+38108.81981007173 3.9825709 0.0
+38109.81981011922 3.9825709 0.0
+38110.81981016672 3.9825315 0.0
+38111.81981021422 3.9825315 0.0
+38112.81981026172 3.9826498 0.0
+38113.81981030921 3.9825709 0.0
+38114.81981035671 3.9826102 0.0
+38115.81981040421 3.9825315 0.0
+38116.81981045171 3.9824922 0.0
+38117.8198104992 3.9825709 0.0
+38118.8198105467 3.9824922 0.0
+38119.8198105942 3.9825315 0.0
+38120.8198106417 3.9827285 0.0
+38121.81981068919 3.9825315 0.0
+38122.81981073669 3.9826102 0.0
+38123.81981078419 3.9826498 0.0
+38124.81981083169 3.9825709 0.0
+38125.81981087918 3.9826102 0.0
+38126.81981092668 3.9825709 0.0
+38127.81981097418 3.9826102 0.0
+38128.81981102168 3.9826102 0.0
+38129.81981106917 3.9825709 0.0
+38130.81981111667 3.9826498 0.0
+38131.81981116417 3.9824922 0.0
+38132.81981121167 3.9826102 0.0
+38133.81981125916 3.9826102 0.0
+38134.81981130666 3.9826102 0.0
+38135.81981135416 3.9825315 0.0
+38136.81981140166 3.9826102 0.0
+38137.81981144915 3.9826102 0.0
+38138.81981149665 3.9826498 0.0
+38139.81981154415 3.9825315 0.0
+38140.81981159165 3.9826498 0.0
+38141.81981163914 3.9825315 0.0
+38142.81981168664 3.9826891 0.0
+38143.81981173414 3.9825315 0.0
+38144.81981178164 3.9825315 0.0
+38145.81981182913 3.9826891 0.0
+38146.81981187663 3.9826102 0.0
+38147.81981192413 3.9825315 0.0
+38148.81981197163 3.9826102 0.0
+38149.81981201912 3.9826102 0.0
+38150.81981206662 3.9825709 0.0
+38151.81981211412 3.9826102 0.0
+38152.81981216162 3.9826891 0.0
+38153.81981220911 3.9826891 0.0
+38154.81981225661 3.9827285 0.0
+38155.81981230411 3.9826498 0.0
+38156.8198123516 3.9825315 0.0
+38157.8198123991 3.9826102 0.0
+38158.8198124466 3.9825709 0.0
+38159.8198124941 3.9825709 0.0
+38160.81981254159 3.9826498 0.0
+38161.81981258909 3.9826102 0.0
+38162.81981263659 3.9826102 0.0
+38163.81981268409 3.9826498 0.0
+38164.81981273158 3.9825315 0.0
+38165.81981277908 3.9825709 0.0
+38166.81981282658 3.9826498 0.0
+38167.81981287408 3.9826102 0.0
+38168.81981292157 3.9825709 0.0
+38169.81981296907 3.9825315 0.0
+38170.81981301657 3.9825315 0.0
+38171.81981306407 3.9825709 0.0
+38172.81981311156 3.9826102 0.0
+38173.81981315906 3.9826498 0.0
+38174.81981320656 3.9825709 0.0
+38175.81981325406 3.9827678 0.0
+38176.81981330155 3.9826102 0.0
+38177.81981334905 3.9826102 0.0
+38178.81981339655 3.9826498 0.0
+38179.81981344405 3.9825709 0.0
+38180.81981349154 3.9826498 0.0
+38181.81981353904 3.9826102 0.0
+38182.81981358654 3.9825709 0.0
+38183.81981363404 3.9826891 0.0
+38184.81981368153 3.9826498 0.0
+38185.81981372903 3.9827678 0.0
+38186.81981377653 3.9827285 0.0
+38187.81981382403 3.9826891 0.0
+38188.81981387152 3.9826102 0.0
+38189.81981391902 3.9826498 0.0
+38190.81981396652 3.9826891 0.0
+38191.81981401402 3.9826498 0.0
+38192.81981406151 3.9826891 0.0
+38193.81981410901 3.9827285 0.0
+38194.81981415651 3.9826102 0.0
+38195.81981420401 3.9827285 0.0
+38196.8198142515 3.9825709 0.0
+38197.819814299 3.9826498 0.0
+38198.8198143465 3.9826498 0.0
+38199.819814394 3.9827285 0.0
+38200.81981444149 3.9826891 0.0
+38201.81981448899 3.9826498 0.0
+38202.81981453649 3.9826498 0.0
+38203.81981458399 3.9826891 0.0
+38204.81981463148 3.9826498 0.0
+38205.81981467898 3.9827285 0.0
+38206.81981472648 3.9828072 0.0
+38207.81981477397 3.9827285 0.0
+38208.81981482147 3.9826891 0.0
+38209.81981486897 3.9826102 0.0
+38210.81981491647 3.9827285 0.0
+38211.81981496396 3.9827285 0.0
+38212.81981501146 3.9826102 0.0
+38213.81981505896 3.9826891 0.0
+38214.81981510646 3.9825709 0.0
+38215.81981515395 3.9826891 0.0
+38216.81981520145 3.9827285 0.0
+38217.81981524895 3.9826498 0.0
+38218.81981529645 3.9826891 0.0
+38219.81981534394 3.9827285 0.0
+38220.81981539144 3.9827285 0.0
+38221.81981543894 3.9827678 0.0
+38222.81981548644 3.9826891 0.0
+38223.81981553393 3.9826498 0.0
+38224.81981558143 3.9827285 0.0
+38225.81981562893 3.9827285 0.0
+38226.81981567643 3.9826102 0.0
+38227.81981572392 3.9827678 0.0
+38228.81981577142 3.9827285 0.0
+38229.81981581892 3.9826498 0.0
+38230.81981586642 3.9826891 0.0
+38231.81981591391 3.9826891 0.0
+38232.81981596141 3.9826102 0.0
+38233.81981600891 3.9826498 0.0
+38234.81981605641 3.9827285 0.0
+38235.8198161039 3.9826891 0.0
+38236.8198161514 3.9826891 0.0
+38237.8198161989 3.9827285 0.0
+38238.8198162464 3.9827285 0.0
+38239.81981629389 3.9827285 0.0
+38240.81981634139 3.9826891 0.0
+38241.81981638889 3.9827678 0.0
+38242.81981643639 3.9826891 0.0
+38243.81981648388 3.9827678 0.0
+38244.81981653138 3.9826891 0.0
+38245.81981657888 3.9827285 0.0
+38246.81981662638 3.9828072 0.0
+38247.81981667387 3.9827285 0.0
+38248.81981672137 3.9828072 0.0
+38249.81981676887 3.9827285 0.0
+38250.81981681637 3.9827285 0.0
+38251.81981686386 3.9826498 0.0
+38252.81981691136 3.9826498 0.0
+38253.81981695886 3.9826498 0.0
+38254.81981700636 3.9826498 0.0
+38255.81981705385 3.9827678 0.0
+38256.81981710135 3.9827285 0.0
+38257.81981714885 3.9827678 0.0
+38258.81981719635 3.9827678 0.0
+38259.81981724384 3.9826498 0.0
+38260.81981729134 3.9827285 0.0
+38261.81981733884 3.9827285 0.0
+38262.81981738633 3.9826891 0.0
+38263.81981743383 3.9827678 0.0
+38264.81981748133 3.9828858 0.0
+38265.81981752883 3.9827678 0.0
+38266.81981757632 3.9827678 0.0
+38267.81981762382 3.9827678 0.0
+38268.81981767132 3.9827285 0.0
+38269.81981771882 3.9826498 0.0
+38270.81981776631 3.9827285 0.0
+38271.81981781381 3.9826891 0.0
+38272.81981786131 3.9827285 0.0
+38273.81981790881 3.9827285 0.0
+38274.8198179563 3.9827678 0.0
+38275.8198180038 3.9826891 0.0
+38276.8198180513 3.9827678 0.0
+38277.8198180988 3.9827285 0.0
+38278.81981814629 3.9826891 0.0
+38279.81981819379 3.9827678 0.0
+38280.81981824129 3.9827285 0.0
+38281.81981828879 3.9827285 0.0
+38282.81981833628 3.9827285 0.0
+38283.81981838378 3.9826891 0.0
+38284.81981843128 3.9827285 0.0
+38285.81981847878 3.9827285 0.0
+38286.81981852627 3.9827285 0.0
+38287.81981857377 3.9827285 0.0
+38288.81981862127 3.9828072 0.0
+38289.81981866877 3.9827285 0.0
+38290.81981871626 3.9827285 0.0
+38291.81981876376 3.9827285 0.0
+38292.81981881126 3.9828072 0.0
+38293.81981885876 3.9827678 0.0
+38294.81981890625 3.9827285 0.0
+38295.81981895375 3.9826891 0.0
+38296.81981900125 3.9827678 0.0
+38297.81981904875 3.9828858 0.0
+38298.81981909624 3.9827678 0.0
+38299.81981914374 3.9827678 0.0
+38300.81981919124 3.9827285 0.0
+38301.81981923874 3.9828072 0.0
+38302.81981928623 3.9827678 0.0
+38303.81981933373 3.9828072 0.0
+38304.81981938123 3.9826891 0.0
+38305.81981942873 3.9827678 0.0
+38306.81981947622 3.9828072 0.0
+38307.81981952372 3.9828465 0.0
+38308.81981957122 3.9827285 0.0
+38309.81981961872 3.9827285 0.0
+38310.81981966621 3.9828072 0.0
+38311.81981971371 3.9827678 0.0
+38312.81981976121 3.9826102 0.0
+38313.8198198087 3.9828465 0.0
+38314.8198198562 3.9827678 0.0
+38315.8198199037 3.9827285 0.0
+38316.8198199512 3.9827678 0.0
+38317.81981999869 3.9827678 0.0
+38318.81982004619 3.9828072 0.0
+38319.81982009369 3.9827678 0.0
+38320.81982014119 3.9827678 0.0
+38321.81982018868 3.9828465 0.0
+38322.81982023618 3.9827678 0.0
+38323.81982028368 3.9827678 0.0
+38324.81982033118 3.9828072 0.0
+38325.81982037867 3.9828072 0.0
+38326.81982042617 3.9827678 0.0
+38327.81982047367 3.9827285 0.0
+38328.81982052117 3.9827678 0.0
+38329.81982056866 3.9828465 0.0
+38330.81982061616 3.9827678 0.0
+38331.81982066366 3.9828072 0.0
+38332.81982071116 3.9828072 0.0
+38333.81982075865 3.9827678 0.0
+38334.81982080615 3.9827285 0.0
+38335.81982085365 3.9827285 0.0
+38336.81982090115 3.9828465 0.0
+38337.81982094864 3.9829254 0.0
+38338.81982099614 3.9828072 0.0
+38339.81982104364 3.9827285 0.0
+38340.81982109114 3.9828465 0.0
+38341.81982113863 3.9828072 0.0
+38342.81982118613 3.9828072 0.0
+38343.81982123363 3.9828465 0.0
+38344.81982128113 3.9826891 0.0
+38345.81982132862 3.9827285 0.0
+38346.81982137612 3.9828465 0.0
+38347.81982142362 3.9827285 0.0
+38348.81982147112 3.9828465 0.0
+38349.81982151861 3.9828465 0.0
+38350.81982156611 3.9828072 0.0
+38351.81982161361 3.9828465 0.0
+38352.81982166111 3.9828465 0.0
+38353.8198217086 3.9828465 0.0
+38354.8198217561 3.9828465 0.0
+38355.8198218036 3.9828858 0.0
+38356.8198218511 3.9828072 0.0
+38357.81982189859 3.9828465 0.0
+38358.81982194609 3.9828072 0.0
+38359.81982199359 3.9828858 0.0
+38360.81982204109 3.9828465 0.0
+38361.81982208858 3.9828072 0.0
+38362.81982213608 3.9828465 0.0
+38363.81982218358 3.9828072 0.0
+38364.81982223107 3.9827678 0.0
+38365.81982227857 3.9828858 0.0
+38366.81982232607 3.9828465 0.0
+38367.81982237357 3.9828465 0.0
+38368.81982242106 3.9827285 0.0
+38369.81982246856 3.9828072 0.0
+38370.81982251606 3.9828072 0.0
+38371.81982256356 3.9828465 0.0
+38372.81982261105 3.9827678 0.0
+38373.81982265855 3.9827285 0.0
+38374.81982270605 3.9828465 0.0
+38375.81982275355 3.9828465 0.0
+38376.81982280104 3.9828858 0.0
+38377.81982284854 3.9828072 0.0
+38378.81982289604 3.9828858 0.0
+38379.81982294354 3.9828072 0.0
+38380.81982299103 4.0537901 7354.9824
+38380.82182299113 4.0540657 7355.3765
+38381.82182303863 4.0569401 7356.3604
+38382.82182308612 4.0580816 7357.1475
+38383.82182313362 4.0591054 7357.3442
+38384.82182318112 4.0600896 7357.1475
+38385.82182322862 4.0609555 7356.9502
+38386.82182327611 4.0616641 7356.1636
+38387.82182332361 4.0624123 7356.7539
+38388.82182337111 4.0630026 7356.7539
+38389.82182341861 4.0636325 7357.3442
+38390.8218234661 4.0642233 7356.5571
+38391.8218235136 4.0647745 7356.5571
+38392.8218235611 4.0654831 7355.9663
+38393.8218236086 4.0659161 7356.9502
+38394.82182365609 4.0663099 7356.7539
+38395.82182370359 4.0669398 7357.1475
+38396.82182375109 4.0672154 7356.9502
+38397.82182379859 4.0677271 7356.7539
+38398.82182384608 4.0682387 7356.3604
+38399.82182389358 4.0685539 7357.1475
+38400.82182394108 4.0690656 7356.5571
+38401.82182398858 4.0693808 7356.5571
+38402.82182403607 4.0698533 7357.1475
+38403.82182408357 4.070168 7356.7539
+38404.82182413107 4.0704832 7357.1475
+38405.82182417857 4.0708766 7356.7539
+38406.82182422606 4.0713096 7356.5571
+38407.82182427356 4.0716639 7356.3604
+38408.82182432106 4.071979 7357.3442
+38409.82182436856 4.0722547 7356.7539
+38410.82182441605 4.0726089 7357.3442
+38411.82182446355 4.0729241 7356.7539
+38412.82182451105 4.0732388 7356.3604
+38413.82182455854 4.0735145 7356.3604
+38414.82182460604 4.0737505 7357.3442
+38415.82182465354 4.0741444 7356.9502
+38416.82182470104 4.0743413 7357.1475
+38417.82182474853 4.0746169 7357.1475
+38418.82182479603 4.0748529 7357.1475
+38419.82182484353 4.0751681 7356.9502
+38420.82182489103 4.0754828 7355.9663
+38421.82182493852 4.0757194 7356.5571
+38422.82182498602 4.0758767 7356.1636
+38423.82182503352 4.0761914 7356.9502
+38424.82182508102 4.0764279 7356.7539
+38425.82182512851 4.0767035 7356.5571
+38426.82182517601 4.0769792 7356.7539
+38427.82182522351 4.0770969 7356.7539
+38428.82182527101 4.0774908 7355.9663
+38429.8218253185 4.0776091 7356.5571
+38430.821825366 4.0778847 7356.5571
+38431.8218254135 4.0780811 7357.1475
+38432.821825461 4.0783567 7356.7539
+38433.82182550849 4.0785146 7356.7539
+38434.82182555599 4.0788293 7357.3442
+38435.82182560349 4.0789866 7356.7539
+38436.82182565099 4.0791445 7356.7539
+38437.82182569848 4.0793805 7357.1475
+38438.82182574598 4.0796165 7356.9502
+38439.82182579348 4.0798922 7357.541
+38440.82182584098 4.0800104 7356.7539
+38441.82182588847 4.0802464 7357.1475
+38442.82182593597 4.0803647 7356.9502
+38443.82182598347 4.0806799 7356.7539
+38444.82182603097 4.080719 7356.7539
+38445.82182607846 4.0809555 7356.5571
+38446.82182612596 4.0812306 7357.541
+38447.82182617346 4.0813098 7356.5571
+38448.82182622096 4.0815458 7356.1636
+38449.82182626845 4.0817428 7356.9502
+38450.82182631595 4.0818214 7356.7539
+38451.82182636345 4.0820184 7356.5571
+38452.82182641095 4.0823727 7356.1636
+38453.82182645844 4.0824513 7356.7539
+38454.82182650594 4.0825696 7356.7539
+38455.82182655344 4.0827661 7357.1475
+38456.82182660094 4.0829239 7356.3604
+38457.82182664843 4.0831208 7356.9502
+38458.82182669593 4.0833569 7356.5571
+38459.82182674343 4.0834355 7356.3604
+38460.82182679093 4.0836716 7356.7539
+38461.82182683842 4.0837898 7356.9502
+38462.82182688592 4.0839472 7356.1636
+38463.82182693342 4.084105 7356.1636
+38464.82182698091 4.0844197 7356.5571
+38465.82182702841 4.0844197 7356.5571
+38466.82182707591 4.084538 7356.1636
+38467.82182712341 4.0848136 7356.7539
+38468.8218271709 4.0849314 7356.7539
+38469.8218272184 4.0850496 7356.7539
+38470.8218272659 4.0852466 7356.7539
+38471.8218273134 4.0853648 7356.3604
+38472.82182736089 4.0855222 7356.7539
+38473.82182740839 4.0856404 7356.5571
+38474.82182745589 4.0858765 7357.1475
+38475.82182750339 4.085916 7356.9502
+38476.82182755088 4.0860734 7357.541
+38477.82182759838 4.0862703 7357.541
+38478.82182764588 4.0864277 7357.1475
+38479.82182769338 4.0865459 7356.7539
+38480.82182774087 4.0867033 7356.5571
+38481.82182778837 4.0869002 7356.9502
+38482.82182783587 4.0869393 7356.9502
+38483.82182788337 4.0870576 7356.9502
+38484.82182793086 4.0872936 7355.9663
+38485.82182797836 4.0874119 7356.7539
+38486.82182802586 4.0874906 7356.5571
+38487.82182807336 4.0876875 7356.9502
+38488.82182812085 4.0878057 7356.7539
+38489.82182816835 4.0880814 7356.9502
+38490.82182821585 4.08816 7356.9502
+38491.82182826335 4.0881991 7357.1475
+38492.82182831084 4.0885143 7356.9502
+38493.82182835834 4.0885534 7357.3442
+38494.82182840584 4.0885143 7356.1636
+38495.82182845334 4.0888686 7356.7539
+38496.82182850083 4.0889473 7356.9502
+38497.82182854833 4.0890656 7356.3604
+38498.82182859583 4.0891047 7357.7378
+38499.82182864333 4.0892625 7356.9502
+38500.82182869082 4.0894985 7356.9502
+38501.82182873832 4.0894985 7356.7539
+38502.82182878582 4.0896559 7356.5571
+38503.82182883332 4.0898528 7356.9502
+38504.82182888081 4.0900102 7357.3442
+38505.82182892831 4.0902071 7356.5571
+38506.82182897581 4.0902467 7357.541
+38507.82182902331 4.090404 7355.9663
+38508.8218290708 4.0905223 7356.7539
+38509.8218291183 4.0906401 7356.7539
+38510.8218291658 4.0907187 7356.5571
+38511.8218292133 4.0908766 7357.3442
+38512.82182926079 4.0909944 7356.9502
+38513.82182930829 4.091073 7357.1475
+38514.82182935579 4.0912309 7357.1475
+38515.82182940328 4.0915456 7357.7378
+38516.82182945078 4.0915065 7356.7539
+38517.82182949828 4.0915852 7356.7539
+38518.82182954578 4.0917821 7356.9502
+38519.82182959327 4.0918999 7356.9502
+38520.82182964077 4.0919785 7356.5571
+38521.82182968827 4.0920181 7356.9502
+38522.82182973577 4.0922542 7355.7695
+38523.82182978326 4.0922937 7357.7378
+38524.82182983076 4.0925694 7357.1475
+38525.82182987826 4.0925298 7356.3604
+38526.82182992576 4.0927663 7356.7539
+38527.82182997325 4.0927663 7356.9502
+38528.82183002075 4.0930023 7356.7539
+38529.82183006825 4.093081 7356.3604
+38530.82183011575 4.0931993 7356.7539
+38531.82183016324 4.0933175 7355.9663
+38532.82183021074 4.0933962 7356.7539
+38533.82183025824 4.0935535 7356.9502
+38534.82183030574 4.0936718 7357.541
+38535.82183035323 4.0937109 7357.541
+38536.82183040073 4.0939078 7357.1475
+38537.82183044823 4.0939474 7356.5571
+38538.82183049573 4.094223 7356.5571
+38539.82183054322 4.094223 7357.3442
+38540.82183059072 4.0944986 7356.9502
+38541.82183063822 4.0945377 7356.3604
+38542.82183068572 4.0946164 7356.9502
+38543.82183073321 4.0947738 7356.9502
+38544.82183078071 4.094892 7357.541
+38545.82183082821 4.094892 7356.5571
+38546.82183087571 4.0950494 7357.1475
+38547.8218309232 4.0952072 7356.5571
+38548.8218309707 4.0952463 7356.3604
+38549.8218310182 4.0953646 7356.5571
+38550.8218310657 4.0954828 7356.7539
+38551.82183111319 4.0956793 7356.9502
+38552.82183116069 4.0957189 7357.1475
+38553.82183120819 4.0959549 7357.1475
+38554.82183125569 4.0959945 7355.7695
+38555.82183130318 4.0960732 7357.1475
+38556.82183135068 4.0963092 7356.7539
+38557.82183139818 4.0963488 7356.5571
+38558.82183144568 4.0964274 7357.9346
+38559.82183149317 4.0966244 7356.9502
+38560.82183154067 4.0967031 7357.3442
+38561.82183158817 4.0967031 7356.5571
+38562.82183163567 4.0969 7355.9663
+38563.82183168316 4.0970182 7356.5571
+38564.82183173066 4.0971756 7357.1475
+38565.82183177816 4.0972543 7356.9502
+38566.82183182566 4.097333 7356.7539
+38567.82183187315 4.0974512 7356.9502
+38568.82183192065 4.0976481 7356.7539
+38569.82183196815 4.0976481 7357.1475
+38570.82183201564 4.0976872 7355.7695
+38571.82183206314 4.0979238 7357.541
+38572.82183211064 4.0980024 7357.7378
+38573.82183215814 4.0981598 7356.9502
+38574.82183220563 4.0981202 7356.3604
+38575.82183225313 4.0983567 7356.5571
+38576.82183230063 4.0985928 7357.1475
+38577.82183234813 4.0985537 7356.9502
+38578.82183239562 4.0986323 7356.1636
+38579.82183244312 4.0987897 7356.3604
+38580.82183249062 4.0988684 7356.9502
+38581.82183253812 4.0989866 7356.3604
+38582.82183258561 4.0990653 7357.3442
+38583.82183263311 4.0992227 7356.9502
+38584.82183268061 4.09938 7356.9502
+38585.82183272811 4.0994196 7357.3442
+38586.8218327756 4.099577 7357.541
+38587.8218328231 4.0995378 7356.5571
+38588.8218328706 4.0997739 7356.1636
+38589.8218329181 4.0998135 7356.5571
+38590.82183296559 4.0998921 7356.9502
+38591.82183301309 4.1000495 7356.1636
+38592.82183306059 4.1002069 7356.1636
+38593.82183310809 4.1003647 7357.1475
+38594.82183315558 4.1003647 7356.3604
+38595.82183320308 4.100522 7357.1475
+38596.82183325058 4.1005611 7356.3604
+38597.82183329808 4.1007977 7357.1475
+38598.82183334557 4.1008368 7356.7539
+38599.82183339307 4.100955 7355.9663
+38600.82183344057 4.1010337 7356.7539
+38601.82183348807 4.101191 7357.541
+38602.82183353556 4.1012702 7357.1475
+38603.82183358306 4.101388 7356.1636
+38604.82183363056 4.1014667 7357.1475
+38605.82183367806 4.1015453 7355.7695
+38606.82183372555 4.1015849 7356.9502
+38607.82183377305 4.1017423 7356.9502
+38608.82183382055 4.1018605 7356.1636
+38609.82183386805 4.1020179 7357.1475
+38610.82183391554 4.1021752 7357.1475
+38611.82183396304 4.1022148 7357.1475
+38612.82183401054 4.1023722 7357.1475
+38613.82183405804 4.1024508 7356.5571
+38614.82183410553 4.1025691 7357.3442
+38615.82183415303 4.1026478 7356.3604
+38616.82183420053 4.1026478 7356.7539
+38617.82183424803 4.1028447 7356.7539
+38618.82183429552 4.102963 7356.7539
+38619.82183434302 4.1031599 7356.7539
+38620.82183439052 4.103199 7356.9502
+38621.82183443801 4.1033173 7357.1475
+38622.82183448551 4.1033959 7356.9502
+38623.82183453301 4.1035533 7357.1475
+38624.82183458051 4.1035533 7356.3604
+38625.821834628 4.1037898 7357.541
+38626.8218346755 4.1037898 7356.1636
+38627.821834723 4.1039076 7356.9502
+38628.8218347705 4.1040654 7357.1475
+38629.82183481799 4.1041441 7356.3604
+38630.82183486549 4.1041832 7356.9502
+38631.82183491299 4.1044197 7356.5571
+38632.82183496049 4.1044197 7356.9502
+38633.82183500798 4.1044588 7356.9502
+38634.82183505548 4.104774 7356.9502
+38635.82183510298 4.1046162 7355.9663
+38636.82183515048 4.1048918 7357.9346
+38637.82183519797 4.10501 7357.1475
+38638.82183524547 4.1051674 7356.7539
+38639.82183529297 4.1051283 7356.9502
+38640.82183534047 4.1053643 7356.5571
+38641.82183538796 4.1054826 7356.5571
+38642.82183543546 4.1054826 7357.1475
+38643.82183548296 4.1056008 7356.5571
+38644.82183553046 4.1057186 7356.7539
+38645.82183557795 4.1057186 7357.1475
+38646.82183562545 4.1059942 7356.9502
+38647.82183567295 4.1059551 7356.5571
+38648.82183572045 4.1060729 7356.7539
+38649.82183576794 4.1063094 7357.1475
+38650.82183581544 4.1064272 7357.1475
+38651.82183586294 4.1064272 7356.7539
+38652.82183591044 4.1065454 7357.1475
+38653.82183595793 4.1066637 7357.3442
+38654.82183600543 4.1067424 7356.9502
+38655.82183605293 4.1068211 7356.9502
+38656.82183610043 4.1069784 7356.3604
+38657.82183614792 4.107018 7356.3604
+38658.82183619542 4.1071362 7356.9502
+38659.82183624292 4.1072149 7356.3604
+38660.82183629042 4.1074114 7357.1475
+38661.82183633791 4.1073723 7357.3442
+38662.82183638541 4.1075692 7356.9502
+38663.82183643291 4.107687 7356.1636
+38664.82183648041 4.1078053 7356.5571
+38665.8218365279 4.1079235 7357.1475
+38666.8218365754 4.1079626 7357.1475
+38667.8218366229 4.1081204 7356.9502
+38668.8218366704 4.1081595 7356.7539
+38669.82183671789 4.1082778 7356.7539
+38670.82183676539 4.1083565 7355.9663
+38671.82183681289 4.1085138 7356.9502
+38672.82183686038 4.1086321 7357.1475
+38673.82183690788 4.1087108 7356.7539
+38674.82183695538 4.1089077 7356.3604
+38675.82183700288 4.1089468 7356.5571
+38676.82183705037 4.1089864 7356.7539
+38677.82183709787 4.1091046 7356.7539
+38678.82183714537 4.1091437 7356.5571
+38679.82183719287 4.1093016 7356.9502
+38680.82183724036 4.1094589 7357.3442
+38681.82183728786 4.1095376 7357.3442
+38682.82183733536 4.1096163 7356.7539
+38683.82183738286 4.1097736 7356.3604
+38684.82183743035 4.1098523 7356.7539
+38685.82183747785 4.1099315 7357.1475
+38686.82183752535 4.1099706 7356.7539
+38687.82183757285 4.1102071 7357.541
+38688.82183762034 4.1102858 7357.541
+38689.82183766784 4.1104035 7356.9502
+38690.82183771534 4.1104431 7356.7539
+38691.82183776284 4.1105218 7356.5571
+38692.82183781033 4.11064 7357.7378
+38693.82183785783 4.1107187 7356.9502
+38694.82183790533 4.110837 7356.9502
+38695.82183795283 4.1109943 7355.9663
+38696.82183800032 4.111073 7356.9502
+38697.82183804782 4.11127 7356.7539
+38698.82183809532 4.11127 7356.9502
+38699.82183814282 4.1114669 7356.7539
+38700.82183819031 4.1116242 7356.5571
+38701.82183823781 4.1115847 7356.5571
+38702.82183828531 4.1117029 7356.9502
+38703.82183833281 4.1118212 7356.7539
+38704.8218383803 4.111939 7357.1475
+38705.8218384278 4.1119785 7357.1475
+38706.8218384753 4.1121359 7357.1475
+38707.8218385228 4.1121755 7356.3604
+38708.82183857029 4.1122932 7356.7539
+38709.82183861779 4.1123328 7357.541
+38710.82183866529 4.1124115 7356.7539
+38711.82183871279 4.1124902 7357.1475
+38712.82183876028 4.1126475 7356.9502
+38713.82183880778 4.1127658 7357.3442
+38714.82183885528 4.1129627 7356.9502
+38715.82183890278 4.1130023 7357.1475
+38716.82183895027 4.1130023 7356.9502
+38717.82183899777 4.1132383 7356.1636
+38718.82183904527 4.1133566 7355.9663
+38719.82183909277 4.1133957 7356.5571
+38720.82183914026 4.113553 7356.7539
+38721.82183918776 4.1136322 7357.1475
+38722.82183923526 4.11375 7356.9502
+38723.82183928275 4.1137896 7356.5571
+38724.82183933025 4.1139078 7356.7539
+38725.82183937775 4.1140256 7356.5571
+38726.82183942525 4.1143012 7357.1475
+38727.82183947274 4.1141829 7357.7378
+38728.82183952024 4.1143012 7357.1475
+38729.82183956774 4.1144586 7356.7539
+38730.82183961524 4.1144586 7356.7539
+38731.82183966273 4.1145768 7356.5571
+38732.82183971023 4.1146951 7356.3604
+38733.82183975773 4.1147738 7356.7539
+38734.82183980523 4.114892 7356.9502
+38735.82183985272 4.1150098 7356.9502
+38736.82183990022 4.1150098 7356.9502
+38737.82183994772 4.1152067 7356.3604
+38738.82183999522 4.1152854 7357.1475
+38739.82184004271 4.1154823 7357.7378
+38740.82184009021 4.1154428 7357.1475
+38741.82184013771 4.1156006 7357.9346
+38742.82184018521 4.1157184 7356.9502
+38743.8218402327 4.1157975 7356.1636
+38744.8218402802 4.1159153 7356.9502
+38745.8218403277 4.1160336 7356.9502
+38746.8218403752 4.1161518 7356.3604
+38747.82184042269 4.1162305 7356.5571
+38748.82184047019 4.1163092 7356.1636
+38749.82184051769 4.1164274 7356.7539
+38750.82184056519 4.1166239 7356.5571
+38751.82184061268 4.1166635 7356.9502
+38752.82184066018 4.1165452 7357.1475
+38753.82184070768 4.1168995 7357.3442
+38754.82184075518 4.1168995 7356.9502
+38755.82184080267 4.1169391 7356.7539
+38756.82184085017 4.117136 7356.5571
+38757.82184089767 4.1171751 7356.5571
+38758.82184094517 4.1172934 7356.9502
+38759.82184099266 4.117372 7356.9502
+38760.82184104016 4.117569 7357.1475
+38761.82184108766 4.1175294 7356.1636
+38762.82184113516 4.117805 7356.5571
+38763.82184118265 4.1177263 7356.9502
+38764.82184123015 4.1179233 7356.5571
+38765.82184127765 4.1179628 7356.3604
+38766.82184132515 4.1181202 7356.3604
+38767.82184137264 4.1181593 7356.7539
+38768.82184142014 4.1183171 7357.1475
+38769.82184146764 4.1185136 7356.9502
+38770.82184151514 4.1184349 7357.1475
+38771.82184156263 4.1187105 7356.7539
+38772.82184161013 4.1185927 7357.3442
+38773.82184165763 4.1187501 7357.3442
+38774.82184170512 4.1188288 7357.7378
+38775.82184175262 4.1189861 7356.7539
+38776.82184180012 4.1190648 7356.3604
+38777.82184184762 4.1192617 7356.7539
+38778.82184189511 4.1193013 7356.1636
+38779.82184194261 4.11938 7356.7539
+38780.82184199011 4.1195374 7356.7539
+38781.82184203761 4.1196556 7357.9346
+38782.8218420851 4.119616 7355.3765
+38783.8218421326 4.1197343 7356.9502
+38784.8218421801 4.1200099 7356.3604
+38785.8218422276 4.120049 7356.9502
+38786.82184227509 4.1201282 7355.9663
+38787.82184232259 4.1202459 7357.541
+38788.82184237009 4.1203246 7356.7539
+38789.82184241759 4.1204824 7357.3442
+38790.82184246508 4.1206002 7357.3442
+38791.82184251258 4.1205611 7356.7539
+38792.82184256008 4.1206398 7356.3604
+38793.82184260758 4.1208367 7357.541
+38794.82184265507 4.1209545 7356.7539
+38795.82184270257 4.1210337 7356.9502
+38796.82184275007 4.1211123 7357.3442
+38797.82184279757 4.121191 7357.1475
+38798.82184284506 4.1213093 7357.3442
+38799.82184289256 4.1214271 7356.7539
+38800.82184294006 4.121388 7356.7539
+38801.82184298756 4.1215453 7356.7539
+38802.82184303505 4.1217422 7356.7539
+38803.82184308255 4.1217422 7356.3604
+38804.82184313005 4.12186 7356.5571
+38805.82184317755 4.1220179 7357.1475
+38806.82184322504 4.122057 7357.7378
+38807.82184327254 4.1222143 7357.3442
+38808.82184332004 4.1222935 7357.541
+38809.82184336754 4.1224113 7357.7378
+38810.82184341503 4.1224899 7357.541
+38811.82184346253 4.1226869 7356.5571
+38812.82184351003 4.1226869 7356.7539
+38813.82184355753 4.1228051 7356.9502
+38814.82184360502 4.1228051 7356.9502
+38815.82184365252 4.1230021 7356.9502
+38816.82184370002 4.1231198 7357.1475
+38817.82184374752 4.123199 7356.7539
+38818.82184379501 4.1232381 7356.5571
+38819.82184384251 4.1234746 7357.1475
+38820.82184389001 4.1233954 7356.7539
+38821.82184393751 4.1235137 7356.5571
+38822.821843985 4.1236711 7356.5571
+38823.8218440325 4.1238289 7356.7539
+38824.82184408 4.1237893 7356.1636
+38825.82184412749 4.1240253 7357.1475
+38826.82184417499 4.1241045 7357.1475
+38827.82184422249 4.1242223 7356.5571
+38828.82184426999 4.1242619 7356.5571
+38829.82184431748 4.1242223 7356.5571
+38830.82184436498 4.1244588 7357.1475
+38831.82184441248 4.1244588 7356.9502
+38832.82184445998 4.1246552 7357.1475
+38833.82184450747 4.1248131 7356.5571
+38834.82184455497 4.1247344 7357.1475
+38835.82184460247 4.1249704 7356.3604
+38836.82184464997 4.1249704 7356.7539
+38837.82184469746 4.1251278 7356.7539
+38838.82184474496 4.125246 7356.1636
+38839.82184479246 4.1252851 7356.3604
+38840.82184483996 4.125443 7356.3604
+38841.82184488745 4.1254034 7357.3442
+38842.82184493495 4.1257186 7356.7539
+38843.82184498245 4.125679 7356.9502
+38844.82184502995 4.1257577 7356.7539
+38845.82184507744 4.1258364 7356.5571
+38846.82184512494 4.1259942 7356.3604
+38847.82184517244 4.1260333 7356.9502
+38848.82184521994 4.1261907 7356.3604
+38849.82184526743 4.1263089 7357.541
+38850.82184531493 4.1263089 7356.5571
+38851.82184536243 4.1264272 7356.9502
+38852.82184540993 4.1265454 7356.9502
+38853.82184545742 4.1266241 7356.7539
+38854.82184550492 4.1267419 7357.7378
+38855.82184555242 4.1268206 7356.5571
+38856.82184559992 4.1269388 7356.3604
+38857.82184564741 4.1270571 7357.1475
+38858.82184569491 4.1270962 7356.7539
+38859.82184574241 4.1272144 7356.7539
+38860.82184578991 4.1273718 7357.1475
+38861.8218458374 4.1273718 7357.3442
+38862.8218458849 4.1275687 7356.9502
+38863.8218459324 4.1276474 7356.9502
+38864.8218459799 4.1278052 7356.5571
+38865.82184602739 4.1278443 7356.7539
+38866.82184607489 4.1278443 7357.3442
+38867.82184612239 4.1280017 7356.9502
+38868.82184616989 4.1281595 7356.7539
+38869.82184621738 4.1281986 7356.7539
+38870.82184626488 4.1282773 7356.3604
+38871.82184631238 4.1282773 7356.5571
+38872.82184635988 4.1285138 7357.1475
+38873.82184640737 4.1285529 7356.9502
+38874.82184645487 4.1287498 7356.7539
+38875.82184650237 4.1288285 7356.5571
+38876.82184654986 4.1287894 7356.9502
+38877.82184659736 4.1290255 7356.9502
+38878.82184664486 4.1289859 7356.3604
+38879.82184669236 4.1291437 7357.1475
+38880.82184673985 4.1291828 7356.5571
+38881.82184678735 4.1293797 7356.3604
+38882.82184683485 4.1293797 7356.9502
+38883.82184688235 4.1295371 7357.3442
+38884.82184692984 4.1296158 7356.5571
+38885.82184697734 4.1297736 7356.1636
+38886.82184702484 4.1298523 7356.9502
+38887.82184707234 4.1298523 7356.9502
+38888.82184711983 4.1300492 7357.1475
+38889.82184716733 4.1301279 7356.9502
+38890.82184721483 4.130167 7356.5571
+38891.82184726233 4.1304035 7356.7539
+38892.82184730982 4.1304035 7356.7539
+38893.82184735732 4.1304426 7357.3442
+38894.82184740482 4.1305213 7356.5571
+38895.82184745232 4.1306791 7356.7539
+38896.82184749981 4.1307969 7356.9502
+38897.82184754731 4.1309152 7357.3442
+38898.82184759481 4.1309152 7356.1636
+38899.82184764231 4.1309547 7356.3604
+38900.8218476898 4.1311908 7356.9502
+38901.8218477373 4.1312304 7356.3604
+38902.8218477848 4.1314268 7357.1475
+38903.8218478323 4.1313877 7356.7539
+38904.82184787979 4.1315451 7356.9502
+38905.82184792729 4.1315451 7356.7539
+38906.82184797479 4.1316237 7357.7378
+38907.82184802229 4.1318603 7357.1475
+38908.82184806978 4.1319389 7356.7539
+38909.82184811728 4.1319389 7356.7539
+38910.82184816478 4.1321359 7356.3604
+38911.82184821228 4.1320963 7356.3604
+38912.82184825977 4.1322536 7356.7539
+38913.82184830727 4.1323719 7357.1475
+38914.82184835477 4.1324902 7356.7539
+38915.82184840227 4.1325293 7357.1475
+38916.82184844976 4.1326079 7356.7539
+38917.82184849726 4.1326866 7356.7539
+38918.82184854476 4.1328049 7356.7539
+38919.82184859226 4.1328835 7356.9502
+38920.82184863975 4.1329231 7356.5571
+38921.82184868725 4.1330805 7357.3442
+38922.82184873475 4.1331201 7357.1475
+38923.82184878225 4.1333957 7356.5571
+38924.82184882974 4.1333957 7356.5571
+38925.82184887724 4.1333957 7356.7539
+38926.82184892474 4.1335135 7356.7539
+38927.82184897223 4.133553 7357.3442
+38928.82184901973 4.13375 7357.541
+38929.82184906723 4.1338286 7357.541
+38930.82184911473 4.133986 7356.5571
+38931.82184916222 4.133986 7356.5571
+38932.82184920972 4.1341829 7357.1475
+38933.82184925722 4.134222 7356.7539
+38934.82184930472 4.1343403 7357.541
+38935.82184935221 4.134419 7356.9502
+38936.82184939971 4.1344976 7356.9502
+38937.82184944721 4.1344976 7356.9502
+38938.82184949471 4.1346555 7356.9502
+38939.8218495422 4.1348128 7357.1475
+38940.8218495897 4.1349311 7357.1475
+38941.8218496372 4.1348915 7357.3442
+38942.8218496847 4.1350098 7356.5571
+38943.82184973219 4.1350884 7355.9663
+38944.82184977969 4.1351275 7356.7539
+38945.82184982719 4.1353641 7356.3604
+38946.82184987469 4.1353641 7356.7539
+38947.82184992218 4.1355214 7356.9502
+38948.82184996968 4.1356001 7356.7539
+38949.82185001718 4.1356788 7356.1636
+38950.82185006468 4.1357183 7356.3604
+38951.82185011217 4.1358757 7356.7539
+38952.82185015967 4.1359153 7356.9502
+38953.82185020717 4.1360331 7357.1475
+38954.82185025467 4.1360726 7357.1475
+38955.82185030216 4.1361122 7357.541
+38956.82185034966 4.1362696 7356.9502
+38957.82185039716 4.1363087 7357.541
+38958.82185044466 4.1365056 7356.9502
+38959.82185049215 4.1365452 7356.5571
+38960.82185053965 4.1367025 7356.7539
+38961.82185058715 4.1368995 7356.7539
+38962.82185063465 4.1368208 7356.1636
+38963.82185068214 4.1368995 7356.3604
+38964.82185072964 4.1370964 7356.3604
+38965.82185077714 4.1371355 7356.5571
+38966.82185082464 4.1372142 7356.5571
+38967.82185087213 4.1373324 7356.7539
+38968.82185091963 4.1374898 7356.9502
+38969.82185096713 4.1374507 7357.3442
+38970.82185101463 4.1375685 7357.7378
+38971.82185106212 4.1377654 7357.1475
+38972.82185110962 4.1377654 7356.7539
+38973.82185115712 4.1378837 7356.1636
+38974.82185120462 4.1378837 7356.9502
+38975.82185125211 4.1381197 7356.9502
+38976.82185129961 4.1380806 7356.7539
+38977.82185134711 4.1381984 7357.3442
+38978.8218513946 4.1383166 7356.7539
+38979.8218514421 4.1383953 7356.9502
+38980.8218514896 4.1385136 7356.7539
+38981.8218515371 4.1386318 7357.541
+38982.82185158459 4.1385527 7356.5571
+38983.82185163209 4.1387105 7356.1636
+38984.82185167959 4.1388679 7356.9502
+38985.82185172709 4.1388283 7357.1475
+38986.82185177458 4.1389074 7356.7539
+38987.82185182208 4.1391039 7356.9502
+38988.82185186958 4.1391039 7356.9502
+38989.82185191708 4.1392617 7356.9502
+38990.82185196457 4.1393008 7357.541
+38991.82185201207 4.1395764 7357.1475
+38992.82185205957 4.1395764 7357.1475
+38993.82185210707 4.1396947 7356.9502
+38994.82185215456 4.1396947 7356.9502
+38995.82185220206 4.139852 7357.541
+38996.82185224956 4.1398916 7356.9502
+38997.82185229706 4.1399703 7356.1636
+38998.82185234455 4.1400881 7357.3442
+38999.82185239205 4.1402459 7357.541
+39000.82185243955 4.1402063 7357.3442
+39001.82185248705 4.1403637 7357.541
+39002.82185253454 4.1403637 7356.3604
+39003.82185258204 4.1404819 7356.9502
+39004.82185262954 4.1405215 7356.9502
+39005.82185267704 4.1406789 7356.9502
+39006.82185272453 4.1406789 7356.9502
+39007.82185277203 4.1407185 7357.7378
+39008.82185281953 4.1409149 7357.7378
+39009.82185286703 4.1409149 7357.1475
+39010.82185291452 4.1410332 7356.9502
+39011.82185296202 4.1411119 7357.1475
+39012.82185300952 4.1411905 7356.7539
+39013.82185305702 4.1413088 7356.7539
+39014.82185310451 4.141427 7357.1475
+39015.82185315201 4.1414661 7357.1475
+39016.82185319951 4.1416631 7357.3442
+39017.82185324701 4.1417027 7356.7539
+39018.8218532945 4.1417813 7356.9502
+39019.821853342 4.1419387 7356.7539
+39020.8218533895 4.1420174 7356.7539
+39021.821853437 4.142096 7356.3604
+39022.82185348449 4.1421747 7356.9502
+39023.82185353199 4.1421747 7356.5571
+39024.82185357949 4.1424112 7357.1475
+39025.82185362699 4.1423326 7356.7539
+39026.82185367448 4.1424899 7356.5571
+39027.82185372198 4.142529 7357.3442
+39028.82185376948 4.142529 7356.9502
+39029.82185381697 4.1427655 7357.1475
+39030.82185386447 4.1428046 7356.5571
+39031.82185391197 4.1428838 7356.5571
+39032.82185395947 4.1430016 7356.7539
+39033.82185400696 4.1430016 7357.541
+39034.82185405446 4.1431198 7356.9502
+39035.82185410196 4.1431985 7357.1475
+39036.82185414946 4.1433167 7356.5571
+39037.82185419695 4.1433167 7356.3604
+39038.82185424445 4.1434741 7356.7539
+39039.82185429195 4.1435924 7356.5571
+39040.82185433945 4.1437101 7357.3442
+39041.82185438694 4.1437497 7357.1475
+39042.82185443444 4.1439071 7356.9502
+39043.82185448194 4.1439857 7357.1475
+39044.82185452944 4.1439857 7356.7539
+39045.82185457693 4.144104 7357.3442
+39046.82185462443 4.1441827 7356.9502
+39047.82185467193 4.1443796 7357.1475
+39048.82185471943 4.1443009 7356.9502
+39049.82185476692 4.1444192 7356.9502
+39050.82185481442 4.144537 7356.1636
+39051.82185486192 4.1446552 7358.1318
+39052.82185490942 4.1447339 7356.9502
+39053.82185495691 4.1447735 7357.1475
+39054.82185500441 4.1448522 7357.541
+39055.82185505191 4.1449308 7357.1475
+39056.82185509941 4.1450882 7356.7539
+39057.8218551469 4.1450491 7356.7539
+39058.8218551944 4.1451278 7356.7539
+39059.8218552419 4.1452851 7356.9502
+39060.8218552894 4.1453242 7356.7539
+39061.82185533689 4.1454034 7355.9663
+39062.82185538439 4.1455607 7356.5571
+39063.82185543189 4.1456394 7356.7539
+39064.82185547939 4.1457577 7356.7539
+39065.82185552688 4.1457577 7356.9502
+39066.82185557438 4.1459546 7356.9502
+39067.82185562188 4.1460724 7356.7539
+39068.82185566938 4.145915 7357.1475
+39069.82185571687 4.1461906 7357.1475
+39070.82185576437 4.146112 7356.3604
+39071.82185581187 4.1462693 7356.7539
+39072.82185585937 4.1463089 7357.3442
+39073.82185590686 4.1463876 7357.3442
+39074.82185595436 4.1465449 7356.7539
+39075.82185600186 4.1466632 7356.7539
+39076.82185604936 4.1467419 7356.7539
+39077.82185609685 4.146781 7356.7539
+39078.82185614435 4.1468205 7357.9346
+39079.82185619185 4.1468992 7357.3442
+39080.82185623934 4.1469779 7356.7539
+39081.82185628684 4.1470175 7357.1475
+39082.82185633434 4.1470566 7356.3604
+39083.82185638184 4.1472535 7356.5571
+39084.82185642933 4.1472931 7356.9502
+39085.82185647683 4.1474109 7356.9502
+39086.82185652433 4.1474895 7356.5571
+39087.82185657183 4.1474504 7356.9502
+39088.82185661932 4.1476865 7356.9502
+39089.82185666682 4.1477652 7356.9502
+39090.82185671432 4.1478443 7357.1475
+39091.82185676182 4.1480408 7356.9502
+39092.82185680931 4.1479621 7356.9502
+39093.82185685681 4.1481199 7357.3442
+39094.82185690431 4.1480803 7356.9502
+39095.82185695181 4.1482377 7357.3442
+39096.8218569993 4.1481986 7357.1475
+39097.8218570468 4.1484346 7357.7378
+39098.8218570943 4.1484742 7356.1636
+39099.8218571418 4.1485529 7356.9502
+39100.82185718929 4.1486316 7356.7539
+39101.82185723679 4.1487103 7356.3604
+39102.82185728429 4.1487103 7356.1636
+39103.82185733179 4.1488285 7356.3604
+39104.82185737928 4.1488285 7357.7378
+39105.82185742678 4.1489859 7357.1475
+39106.82185747428 4.1489463 7356.7539
+39107.82185752178 4.1491828 7356.9502
+39108.82185756927 4.1492615 7357.1475
+39109.82185761677 4.1493402 7356.9502
+39110.82185766427 4.1493797 7357.1475
+39111.82185771177 4.1494975 7357.1475
+39112.82185775926 4.1495762 7357.3442
+39113.82185780676 4.1495371 7356.5571
+39114.82185785426 4.1496944 7357.3442
+39115.82185790176 4.1497731 7356.5571
+39116.82185794925 4.1498914 7357.1475
+39117.82185799675 4.1499701 7356.9502
+39118.82185804425 4.1500883 7357.7378
+39119.82185809175 4.150167 7357.3442
+39120.82185813924 4.150167 7356.9502
+39121.82185818674 4.1502457 7355.9663
+39122.82185823424 4.150403 7356.7539
+39123.82185828174 4.1503639 7357.3442
+39124.82185832923 4.1504817 7357.1475
+39125.82185837673 4.1505604 7357.1475
+39126.82185842423 4.1507573 7357.3442
+39127.82185847173 4.1507969 7356.3604
+39128.82185851922 4.1507182 7357.3442
+39129.82185856672 4.1508756 7356.3604
+39130.82185861422 4.1509151 7356.7539
+39131.82185866171 4.1510725 7357.3442
+39132.82185870921 4.1510725 7356.7539
+39133.82185875671 4.1512299 7356.9502
+39134.82185880421 4.1513481 7356.9502
+39135.8218588517 4.1513481 7356.7539
+39136.8218588992 4.1514659 7356.5571
+39137.8218589467 4.1515055 7355.9663
+39138.8218589942 4.1516628 7356.3604
+39139.82185904169 4.1516237 7357.1475
+39140.82185908919 4.1517811 7356.5571
+39141.82185913669 4.1517811 7356.7539
+39142.82185918419 4.151978 7356.7539
+39143.82185923168 4.1520171 7356.9502
+39144.82185927918 4.1520567 7357.3442
+39145.82185932668 4.1521354 7356.7539
+39146.82185937418 4.1521749 7356.3604
+39147.82185942167 4.1522536 7357.9346
+39148.82185946917 4.1524506 7356.5571
+39149.82185951667 4.1524897 7356.7539
+39150.82185956417 4.1525683 7356.9502
+39151.82185961166 4.1526866 7357.3442
+39152.82185965916 4.1526866 7357.1475
+39153.82185970666 4.1528049 7356.7539
+39154.82185975416 4.1528835 7357.1475
+39155.82185980165 4.1530409 7356.9502
+39156.82185984915 4.1530013 7357.541
+39157.82185989665 4.1531196 7356.7539
+39158.82185994415 4.1531196 7356.1636
+39159.82185999164 4.1531982 7357.3442
+39160.82186003914 4.1531982 7356.7539
+39161.82186008664 4.1533561 7357.1475
+39162.82186013414 4.1534739 7356.7539
+39163.82186018163 4.1535134 7356.1636
+39164.82186022913 4.1536312 7356.9502
+39165.82186027663 4.1535921 7357.3442
+39166.82186032413 4.1536708 7357.1475
+39167.82186037162 4.1538281 7356.7539
+39168.82186041912 4.1538281 7356.9502
+39169.82186046662 4.1539068 7356.9502
+39170.82186051412 4.1541038 7356.7539
+39171.82186056161 4.1541038 7357.1475
+39172.82186060911 4.1543794 7357.3442
+39173.82186065661 4.1543794 7357.1475
+39174.82186070411 4.154222 7356.7539
+39175.8218607516 4.1543403 7356.7539
+39176.8218607991 4.1545763 7357.3442
+39177.8218608466 4.1544189 7356.9502
+39178.8218608941 4.154655 7357.541
+39179.82186094159 4.1547337 7357.1475
+39180.82186098909 4.1548519 7356.1636
+39181.82186103659 4.1548519 7357.1475
+39182.82186108409 4.1548915 7357.1475
+39183.82186113158 4.1548915 7357.3442
+39184.82186117908 4.1551275 7356.3604
+39185.82186122658 4.1552062 7357.1475
+39186.82186127407 4.1552062 7356.5571
+39187.82186132157 4.1552062 7357.3442
+39188.82186136907 4.1554031 7357.3442
+39189.82186141657 4.1554422 7356.7539
+39190.82186146406 4.1556001 7355.7695
+39191.82186151156 4.1557178 7357.1475
+39192.82186155906 4.1556787 7356.7539
+39193.82186160656 4.1557178 7356.9502
+39194.82186165405 4.1557965 7357.3442
+39195.82186170155 4.1559935 7357.1475
+39196.82186174905 4.1558757 7356.9502
+39197.82186179655 4.1559935 7357.1475
+39198.82186184404 4.15623 7356.9502
+39199.82186189154 4.1561904 7357.3442
+39200.82186193904 4.15623 7356.9502
+39201.82186198654 4.1563478 7357.1475
+39202.82186203403 4.1564264 7356.3604
+39203.82186208153 4.156466 7355.9663
+39204.82186212903 4.1565447 7356.3604
+39205.82186217653 4.1565843 7356.9502
+39206.82186222402 4.1567416 7356.7539
+39207.82186227152 4.1567416 7357.541
+39208.82186231902 4.1568599 7356.9502
+39209.82186236652 4.156899 7356.5571
+39210.82186241401 4.1569386 7357.1475
+39211.82186246151 4.1571355 7356.3604
+39212.82186250901 4.1570959 7356.3604
+39213.82186255651 4.1572533 7357.1475
+39214.821862604 4.1573319 7356.1636
+39215.8218626515 4.1572928 7356.5571
+39216.821862699 4.1572928 7356.7539
+39217.8218627465 4.1573715 7356.9502
+39218.82186279399 4.1574898 7357.1475
+39219.82186284149 4.1575289 7356.5571
+39220.82186288899 4.1576471 7356.7539
+39221.82186293649 4.1578045 7356.7539
+39222.82186298398 4.1578832 7357.1475
+39223.82186303148 4.1577654 7356.3604
+39224.82186307898 4.1579227 7356.9502
+39225.82186312648 4.1580014 7357.1475
+39226.82186317397 4.1580801 7356.9502
+39227.82186322147 4.1581588 7356.7539
+39228.82186326897 4.1582375 7357.1475
+39229.82186331647 4.158277 7356.3604
+39230.82186336396 4.1584344 7356.9502
+39231.82186341146 4.1585131 7356.5571
+39232.82186345896 4.158474 7356.7539
+39233.82186350646 4.1585922 7357.3442
+39234.82186355395 4.1586313 7357.7378
+39235.82186360145 4.1588283 7356.7539
+39236.82186364895 4.1587496 7356.7539
+39237.82186369644 4.1588674 7356.7539
+39238.82186374394 4.1589465 7356.9502
+39239.82186379144 4.1590252 7357.1475
+39240.82186383894 4.1590252 7357.3442
+39241.82186388643 4.1591825 7357.1475
+39242.82186393393 4.159143 7357.3442
+39243.82186398143 4.1592612 7357.1475
+39244.82186402893 4.1593795 7356.7539
+39245.82186407642 4.1594186 7356.3604
+39246.82186412392 4.1594973 7356.3604
+39247.82186417142 4.1594973 7356.1636
+39248.82186421892 4.1595764 7357.9346
+39249.82186426641 4.1596551 7357.1475
+39250.82186431391 4.1596942 7357.541
+39251.82186436141 4.1598125 7356.9502
+39252.82186440891 4.1598125 7358.1318
+39253.8218644564 4.1599698 7357.3442
+39254.8218645039 4.1600094 7357.7378
+39255.8218645514 4.1600094 7356.9502
+39256.8218645989 4.1600485 7356.7539
+39257.82186464639 4.1601667 7356.7539
+39258.82186469389 4.1603241 7356.9502
+39259.82186474139 4.1603241 7356.3604
+39260.82186478889 4.1604028 7356.9502
+39261.82186483638 4.1604028 7356.9502
+39262.82186488388 4.160521 7356.7539
+39263.82186493138 4.1606393 7356.3604
+39264.82186497888 4.160718 7357.3442
+39265.82186502637 4.160718 7356.5571
+39266.82186507387 4.1607966 7357.1475
+39267.82186512137 4.1609149 7357.1475
+39268.82186516887 4.1608362 7357.541
+39269.82186521636 4.1609149 7357.1475
+39270.82186526386 4.1610723 7356.5571
+39271.82186531136 4.1611509 7357.1475
+39272.82186535886 4.1611118 7356.5571
+39273.82186540635 4.1613083 7356.9502
+39274.82186545385 4.1612692 7357.1475
+39275.82186550135 4.1613083 7356.5571
+39276.82186554885 4.1613874 7357.1475
+39277.82186559634 4.1615052 7356.3604
+39278.82186564384 4.1615448 7356.7539
+39279.82186569134 4.1615448 7356.3604
+39280.82186573884 4.1616626 7356.5571
+39281.82186578633 4.1617417 7356.7539
+39282.82186583383 4.1617808 7356.3604
+39283.82186588133 4.1618204 7357.1475
+39284.82186592883 4.1619778 7356.7539
+39285.82186597632 4.1619382 7356.5571
+39286.82186602382 4.1620564 7356.9502
+39287.82186607132 4.162096 7356.7539
+39288.82186611881 4.1621747 7356.9502
+39289.82186616631 4.1621747 7356.7539
+39290.82186621381 4.1622138 7357.1475
+39291.82186626131 4.1623716 7357.7378
+39292.8218663088 4.162293 7357.3442
+39293.8218663563 4.1624894 7357.541
+39294.8218664038 4.1626472 7356.7539
+39295.8218664513 4.1626863 7356.9502
+39296.82186649879 4.1626863 7357.1475
+39297.82186654629 4.1627259 7357.1475
+39298.82186659379 4.1628046 7356.5571
+39299.82186664129 4.1628437 7357.1475
+39300.82186668878 4.1629229 7356.9502
+39301.82186673628 4.162962 7356.7539
+39302.82186678378 4.1630802 7356.3604
+39303.82186683128 4.163198 7356.5571
+39304.82186687877 4.1632376 7356.7539
+39305.82186692627 4.1632376 7356.5571
+39306.82186697377 4.1632771 7357.1475
+39307.82186702127 4.1632771 7357.1475
+39308.82186706876 4.1633558 7356.1636
+39309.82186711626 4.1633558 7356.3604
+39310.82186716376 4.1635132 7356.9502
+39311.82186721126 4.1635919 7357.1475
+39312.82186725875 4.1636705 7356.5571
+39313.82186730625 4.1637492 7356.3604
+39314.82186735375 4.1637101 7357.3442
+39315.82186740125 4.1637492 7357.1475
+39316.82186744874 4.1638279 7357.3442
+39317.82186749624 4.1639462 7357.1475
+39318.82186754374 4.1639857 7356.9502
+39319.82186759124 4.1639857 7356.7539
+39320.82186763873 4.1641431 7357.7378
+39321.82186768623 4.1641431 7357.1475
+39322.82186773373 4.1641035 7356.1636
+39323.82186778123 4.16434 7356.5571
+39324.82186782872 4.1642218 7357.1475
+39325.82186787622 4.1644187 7357.1475
+39326.82186792372 4.1644583 7356.3604
+39327.82186797122 4.1644974 7356.5571
+39328.82186801871 4.1644974 7357.3442
+39329.82186806621 4.1646156 7356.7539
+39330.82186811371 4.1646547 7357.1475
+39331.82186816121 4.164773 7356.7539
+39332.8218682087 4.164773 7356.9502
+39333.8218682562 4.1648517 7357.1475
+39334.8218683037 4.1649303 7357.3442
+39335.8218683512 4.165009 7355.9663
+39336.82186839869 4.1649699 7357.3442
+39337.82186844619 4.1650486 7356.7539
+39338.82186849369 4.1651273 7356.7539
+39339.82186854118 4.1652455 7356.3604
+39340.82186858868 4.1653242 7357.3442
+39341.82186863618 4.1652846 7356.3604
+39342.82186868368 4.1653242 7357.7378
+39343.82186873117 4.1654425 7357.1475
+39344.82186877867 4.1655602 7356.5571
+39345.82186882617 4.1655211 7356.1636
+39346.82186887367 4.1656389 7356.7539
+39347.82186892116 4.1656389 7356.7539
+39348.82186896866 4.1656389 7357.1475
+39349.82186901616 4.1657181 7356.7539
+39350.82186906366 4.1657181 7357.7378
+39351.82186911115 4.1657968 7356.9502
+39352.82186915865 4.1659145 7356.9502
+39353.82186920615 4.1659541 7356.9502
+39354.82186925365 4.1659937 7356.9502
+39355.82186930114 4.1660328 7356.7539
+39356.82186934864 4.166151 7357.1475
+39357.82186939614 4.1661115 7357.3442
+39358.82186944364 4.166151 7356.9502
+39359.82186949113 4.1662297 7357.1475
+39360.82186953863 4.1663871 7356.9502
+39361.82186958613 4.1663871 7357.9346
+39362.82186963363 4.1664267 7356.5571
+39363.82186968112 4.1663871 7356.7539
+39364.82186972862 4.166584 7357.3442
+39365.82186977612 4.166584 7356.9502
+39366.82186982362 4.1667023 7356.9502
+39367.82186987111 4.1667414 7357.1475
+39368.82186991861 4.1667023 7356.7539
+39369.82186996611 4.1667414 7357.541
+39370.82187001361 4.1669383 7357.3442
+39371.8218700611 4.1669779 7356.9502
+39372.8218701086 4.1669779 7357.1475
+39373.8218701561 4.167017 7357.1475
+39374.8218702036 4.1671743 7357.1475
+39375.82187025109 4.1671743 7356.9502
+39376.82187029859 4.1672139 7356.5571
+39377.82187034609 4.1672535 7357.3442
+39378.82187039359 4.1674109 7356.5571
+39379.82187044108 4.16745 7356.9502
+39380.82187048858 4.1674895 7356.9502
+39381.82187053608 4.1676078 7356.5571
+39382.82187058358 4.1676078 7356.5571
+39383.82187063107 4.1675682 7356.3604
+39384.82187067857 4.1676865 7357.1475
+39385.82187072607 4.1677651 7356.9502
+39386.82187077357 4.1678042 7356.7539
+39387.82187082106 4.1678438 7357.7378
+39388.82187086856 4.1680012 7357.1475
+39389.82187091606 4.1680012 7356.7539
+39390.82187096355 4.1681194 7356.9502
+39391.82187101105 4.1680799 7356.3604
+39392.82187105855 4.1680799 7356.9502
+39393.82187110605 4.1680799 7356.5571
+39394.82187115354 4.1682768 7356.9502
+39395.82187120104 4.1682768 7356.9502
+39396.82187124854 4.1683555 7356.9502
+39397.82187129604 4.1684737 7356.5571
+39398.82187134353 4.1684737 7357.7378
+39399.82187139103 4.1685524 7356.5571
+39400.82187143853 4.1685524 7356.7539
+39401.82187148603 4.1686707 7356.9502
+39402.82187153352 4.1686707 7357.7378
+39403.82187158102 4.1687493 7356.5571
+39404.82187162852 4.168828 7356.9502
+39405.82187167602 4.1689067 7357.3442
+39406.82187172351 4.1689463 7357.541
+39407.82187177101 4.1690249 7356.5571
+39408.82187181851 4.1689854 7356.9502
+39409.82187186601 4.1691432 7357.1475
+39410.8218719135 4.1691036 7356.1636
+39411.821871961 4.1692219 7357.1475
+39412.8218720085 4.169261 7356.9502
+39413.821872056 4.1693006 7357.1475
+39414.82187210349 4.1694579 7356.9502
+39415.82187215099 4.1694579 7356.9502
+39416.82187219849 4.1694188 7356.5571
+39417.82187224599 4.1695762 7357.1475
+39418.82187229348 4.1695366 7356.9502
+39419.82187234098 4.1695762 7357.3442
+39420.82187238848 4.1697731 7356.3604
+39421.82187243598 4.1697335 7357.1475
+39422.82187248347 4.1698518 7356.7539
+39423.82187253097 4.1698518 7356.9502
+39424.82187257847 4.1699305 7357.1475
+39425.82187262597 4.1699696 7356.3604
+39426.82187267346 4.1699696 7356.9502
+39427.82187272096 4.1701274 7356.7539
+39428.82187276846 4.1700878 7356.9502
+39429.82187281596 4.1701665 7356.9502
+39430.82187286345 4.1702061 7356.7539
+39431.82187291095 4.1703243 7356.9502
+39432.82187295845 4.1703634 7356.7539
+39433.82187300595 4.1704421 7356.5571
+39434.82187305344 4.1705208 7356.7539
+39435.82187310094 4.1705208 7356.3604
+39436.82187314844 4.1704817 7356.9502
+39437.82187319594 4.1705995 7356.7539
+39438.82187324343 4.1707177 7356.9502
+39439.82187329093 4.1707573 7356.5571
+39440.82187333843 4.1707177 7357.1475
+39441.82187338592 4.1708751 7357.1475
+39442.82187343342 4.1709146 7356.5571
+39443.82187348092 4.1709542 7357.3442
+39444.82187352842 4.1709146 7356.9502
+39445.82187357591 4.1710329 7357.3442
+39446.82187362341 4.1712298 7356.7539
+39447.82187367091 4.1711507 7356.1636
+39448.82187371841 4.1712689 7356.7539
+39449.8218737659 4.1713085 7356.9502
+39450.8218738134 4.1713476 7356.3604
+39451.8218738609 4.1713476 7357.1475
+39452.8218739084 4.1714263 7357.3442
+39453.82187395589 4.171505 7356.5571
+39454.82187400339 4.1716628 7355.9663
+39455.82187405089 4.1716232 7357.1475
+39456.82187409839 4.1717806 7356.9502
+39457.82187414588 4.1717019 7356.9502
+39458.82187419338 4.1717806 7356.3604
+39459.82187424088 4.1717806 7357.9346
+39460.82187428838 4.1720171 7356.7539
+39461.82187433587 4.1720171 7357.7378
+39462.82187438337 4.1721349 7357.3442
+39463.82187443087 4.1720958 7357.3442
+39464.82187447837 4.1720562 7356.7539
+39465.82187452586 4.1722531 7356.5571
+39466.82187457336 4.1720958 7357.1475
+39467.82187462086 4.1721349 7356.7539
+39468.82187466836 4.1722927 7356.7539
+39469.82187471585 4.1724105 7356.3604
+39470.82187476335 4.1724501 7356.3604
+39471.82187481085 4.1724501 7357.1475
+39472.82187485835 4.1725287 7356.9502
+39473.82187490584 4.172647 7357.541
+39474.82187495334 4.1726861 7357.3442
+39475.82187500084 4.1727257 7356.7539
+39476.82187504834 4.1726861 7356.9502
+39477.82187509583 4.1727257 7356.3604
+39478.82187514333 4.172883 7356.7539
+39479.82187519083 4.1728044 7356.7539
+39480.82187523833 4.172883 7357.1475
+39481.82187528582 4.172883 7356.3604
+39482.82187533332 4.1730013 7356.7539
+39483.82187538082 4.1731586 7356.7539
+39484.82187542832 4.17308 7357.7378
+39485.82187547581 4.1731586 7356.9502
+39486.82187552331 4.1732373 7356.9502
+39487.82187557081 4.1731982 7356.3604
+39488.82187561831 4.1732769 7357.1475
+39489.8218756658 4.173316 7357.1475
+39490.8218757133 4.1735129 7357.541
+39491.8218757608 4.1733952 7357.7378
+39492.82187580829 4.1735916 7357.1475
+39493.82187585579 4.1735129 7357.1475
+39494.82187590329 4.1735525 7356.3604
+39495.82187595079 4.1736703 7357.9346
+39496.82187599828 4.1736703 7357.541
+39497.82187604578 4.1737494 7356.9502
+39498.82187609328 4.1738672 7356.5571
+39499.82187614078 4.1738672 7356.7539
+39500.82187618827 4.1739459 7356.7539
+39501.82187623577 4.1739068 7356.9502
+39502.82187628327 4.1740251 7356.7539
+39503.82187633077 4.1740251 7357.3442
+39504.82187637826 4.1741824 7356.9502
+39505.82187642576 4.1741428 7356.9502
+39506.82187647326 4.1743002 7356.9502
+39507.82187652076 4.1743398 7356.1636
+39508.82187656825 4.1743002 7356.7539
+39509.82187661575 4.1743793 7356.5571
+39510.82187666325 4.1743793 7356.3604
+39511.82187671075 4.1744971 7357.7378
+39512.82187675824 4.174458 7356.5571
+39513.82187680574 4.1746154 7356.3604
+39514.82187685324 4.1747336 7357.3442
+39515.82187690074 4.1746154 7356.7539
+39516.82187694823 4.1747336 7356.7539
+39517.82187699573 4.1747336 7357.541
+39518.82187704323 4.1746941 7357.1475
+39519.82187709073 4.1749306 7356.9502
+39520.82187713822 4.174891 7357.541
+39521.82187718572 4.1749306 7356.9502
+39522.82187723322 4.1750093 7356.7539
+39523.82187728072 4.1750484 7357.541
+39524.82187732821 4.175127 7356.3604
+39525.82187737571 4.1752057 7357.1475
+39526.82187742321 4.175324 7356.9502
+39527.82187747071 4.1751666 7357.9346
+39528.8218775182 4.1753635 7356.1636
+39529.8218775657 4.1754422 7357.3442
+39530.8218776132 4.1754813 7357.1475
+39531.8218776607 4.1755209 7357.3442
+39532.82187770819 4.1755605 7356.9502
+39533.82187775569 4.1756392 7356.9502
+39534.82187780319 4.1755605 7356.9502
+39535.82187785069 4.1756783 7357.3442
+39536.82187789818 4.1758356 7357.1475
+39537.82187794568 4.1757569 7357.7378
+39538.82187799318 4.1758752 7357.1475
+39539.82187804068 4.1758752 7356.9502
+39540.82187808817 4.1758752 7356.5571
+39541.82187813567 4.1760325 7356.9502
+39542.82187818317 4.1760325 7356.7539
+39543.82187823066 4.1761508 7356.7539
+39544.82187827816 4.1762691 7356.5571
+39545.82187832566 4.1761508 7355.9663
+39546.82187837316 4.1763082 7355.7695
+39547.82187842065 4.1762691 7357.3442
+39548.82187846815 4.1763477 7356.9502
+39549.82187851565 4.1764264 7356.5571
+39550.82187856315 4.1765051 7357.3442
+39551.82187861064 4.1764264 7356.7539
+39552.82187865814 4.1765051 7356.7539
+39553.82187870564 4.1765838 7357.3442
+39554.82187875314 4.1766624 7356.9502
+39555.82187880063 4.1766624 7357.3442
+39556.82187884813 4.1767807 7356.9502
+39557.82187889563 4.1767807 7356.5571
+39558.82187894313 4.1768203 7356.1636
+39559.82187899062 4.1769381 7355.9663
+39560.82187903812 4.176899 7356.9502
+39561.82187908562 4.1770563 7356.3604
+39562.82187913312 4.1770167 7356.3604
+39563.82187918061 4.1770959 7356.9502
+39564.82187922811 4.1772137 7356.9502
+39565.82187927561 4.177135 7356.5571
+39566.82187932311 4.1771746 7356.9502
+39567.8218793706 4.1772923 7357.1475
+39568.8218794181 4.177371 7356.7539
+39569.8218794656 4.1773319 7356.9502
+39570.8218795131 4.1774106 7356.7539
+39571.82187956059 4.1774502 7357.1475
+39572.82187960809 4.1775289 7356.3604
+39573.82187965559 4.1775289 7356.7539
+39574.82187970309 4.1776466 7356.7539
+39575.82187975058 4.1776466 7356.7539
+39576.82187979808 4.1777258 7356.1636
+39577.82187984558 4.1777258 7356.9502
+39578.82187989308 4.1777649 7357.541
+39579.82187994057 4.1778831 7356.5571
+39580.82187998807 4.1780009 7356.3604
+39581.82188003557 4.1778831 7356.9502
+39582.82188008307 4.1780009 7356.3604
+39583.82188013056 4.1780801 7356.7539
+39584.82188017806 4.1781588 7357.3442
+39585.82188022556 4.1781979 7357.1475
+39586.82188027306 4.1781979 7357.3442
+39587.82188032055 4.1782765 7357.3442
+39588.82188036805 4.1783557 7356.7539
+39589.82188041555 4.1783948 7356.5571
+39590.82188046305 4.1784344 7356.9502
+39591.82188051054 4.1784735 7357.1475
+39592.82188055804 4.1785522 7357.3442
+39593.82188060554 4.1785917 7357.9346
+39594.82188065303 4.1785917 7357.1475
+39595.82188070053 4.1786313 7356.1636
+39596.82188074803 4.1787491 7355.9663
+39597.82188079553 4.1788278 7357.9346
+39598.82188084302 4.1787887 7356.3604
+39599.82188089052 4.1789064 7357.7378
+39600.82188093802 4.1788673 7356.5571
+39601.82188098552 4.178946 7356.9502
+39602.82188103301 4.1790247 7356.5571
+39603.82188108051 4.1791034 7356.5571
+39604.82188112801 4.1791034 7358.3286
+39605.82188117551 4.179143 7357.541
+39606.821881223 4.1792216 7356.9502
+39607.8218812705 4.1792612 7356.5571
+39608.821881318 4.1792612 7356.9502
+39609.8218813655 4.1793399 7357.7378
+39610.82188141299 4.179379 7356.9502
+39611.82188146049 4.1794972 7357.3442
+39612.82188150799 4.1795363 7356.7539
+39613.82188155549 4.1795759 7356.9502
+39614.82188160298 4.1796546 7356.7539
+39615.82188165048 4.1796942 7356.9502
+39616.82188169798 4.1796546 7357.3442
+39617.82188174548 4.1797333 7357.3442
+39618.82188179297 4.1797729 7356.9502
+39619.82188184047 4.1798515 7356.5571
+39620.82188188797 4.179812 7356.9502
+39621.82188193547 4.1798515 7356.9502
+39622.82188198296 4.1800089 7357.1475
+39623.82188203046 4.1800485 7357.1475
+39624.82188207796 4.1800876 7356.5571
+39625.82188212546 4.1801271 7356.9502
+39626.82188217295 4.1801667 7357.1475
+39627.82188222045 4.1802845 7357.1475
+39628.82188226795 4.1802454 7356.9502
+39629.82188231545 4.1803241 7356.7539
+39630.82188236294 4.1804028 7356.7539
+39631.82188241044 4.180521 7357.3442
+39632.82188245794 4.180521 7356.1636
+39633.82188250544 4.1804814 7357.1475
+39634.82188255293 4.1805997 7356.7539
+39635.82188260043 4.1806388 7356.7539
+39636.82188264793 4.1806784 7357.7378
+39637.82188269543 4.1805997 7356.7539
+39638.82188274292 4.180757 7357.3442
+39639.82188279042 4.1808357 7356.3604
+39640.82188283792 4.1808357 7356.7539
+39641.82188288542 4.1809144 7356.9502
+39642.82188293291 4.1809931 7356.5571
+39643.82188298041 4.1810327 7356.9502
+39644.82188302791 4.18119 7356.7539
+39645.8218830754 4.1811509 7356.5571
+39646.8218831229 4.1811509 7356.7539
+39647.8218831704 4.1811509 7356.9502
+39648.8218832179 4.1813083 7357.1475
+39649.82188326539 4.1813869 7356.5571
+39650.82188331289 4.1813474 7357.3442
+39651.82188336039 4.1813869 7357.1475
+39652.82188340789 4.1814656 7357.541
+39653.82188345538 4.1815052 7357.3442
+39654.82188350288 4.1815443 7356.5571
+39655.82188355038 4.181623 7356.1636
+39656.82188359788 4.1817412 7356.7539
+39657.82188364537 4.1817808 7356.7539
+39658.82188369287 4.1816626 7356.5571
+39659.82188374037 4.1817412 7356.7539
+39660.82188378787 4.1819382 7356.9502
+39661.82188383536 4.1818986 7357.3442
+39662.82188388286 4.1818986 7356.5571
+39663.82188393036 4.1819773 7356.9502
+39664.82188397786 4.1821351 7356.5571
+39665.82188402535 4.1821742 7357.1475
+39666.82188407285 4.1821742 7356.9502
+39667.82188412035 4.1822138 7356.9502
+39668.82188416785 4.1822529 7356.5571
+39669.82188421534 4.1823711 7356.7539
+39670.82188426284 4.1822925 7357.541
+39671.82188431034 4.1824894 7356.9502
+39672.82188435784 4.1823711 7357.1475
+39673.82188440533 4.1824498 7356.3604
+39674.82188445283 4.1826072 7356.7539
+39675.82188450033 4.1826072 7356.5571
+39676.82188454783 4.1826468 7356.9502
+39677.82188459532 4.182765 7356.7539
+39678.82188464282 4.182765 7356.9502
+39679.82188469032 4.1828437 7357.1475
+39680.82188473782 4.1828437 7356.7539
+39681.82188478531 4.1829224 7357.541
+39682.82188483281 4.1829619 7356.1636
+39683.82188488031 4.183001 7357.3442
+39684.82188492781 4.1830797 7357.1475
+39685.8218849753 4.1831584 7356.7539
+39686.8218850228 4.1830406 7357.541
+39687.8218850703 4.1831584 7357.541
+39688.8218851178 4.183198 7357.7378
+39689.82188516529 4.1833162 7356.9502
+39690.82188521279 4.1833162 7357.541
+39691.82188526029 4.1832767 7357.541
+39692.82188530779 4.1835127 7356.5571
+39693.82188535528 4.1834736 7356.9502
+39694.82188540278 4.1835918 7356.7539
+39695.82188545028 4.1834736 7356.9502
+39696.82188549777 4.1836705 7356.7539
+39697.82188554527 4.1836705 7356.9502
+39698.82188559277 4.1838279 7356.7539
+39699.82188564027 4.1837096 7357.3442
+39700.82188568776 4.1838675 7357.1475
+39701.82188573526 4.1838675 7357.3442
+39702.82188578276 4.1838675 7357.1475
+39703.82188583026 4.1839852 7357.3442
+39704.82188587775 4.1841035 7356.3604
+39705.82188592525 4.1841035 7357.3442
+39706.82188597275 4.1841822 7356.5571
+39707.82188602025 4.1841822 7357.1475
+39708.82188606774 4.1842217 7356.7539
+39709.82188611524 4.1842608 7356.3604
+39710.82188616274 4.1843004 7356.9502
+39711.82188621024 4.1844578 7356.7539
+39712.82188625773 4.1843395 7356.3604
+39713.82188630523 4.1844974 7356.7539
+39714.82188635273 4.1845365 7356.5571
+39715.82188640023 4.184576 7356.7539
+39716.82188644772 4.1846151 7356.7539
+39717.82188649522 4.1847334 7357.3442
+39718.82188654272 4.1847725 7357.1475
+39719.82188659022 4.1848121 7357.1475
+39720.82188663771 4.1849303 7356.7539
+39721.82188668521 4.1849303 7357.3442
+39722.82188673271 4.185009 7356.7539
+39723.82188678021 4.1849694 7357.3442
+39724.8218868277 4.1850481 7356.7539
+39725.8218868752 4.1851273 7356.5571
+39726.8218869227 4.1852059 7357.1475
+39727.8218869702 4.1850481 7356.3604
+39728.82188701769 4.1853237 7356.3604
+39729.82188706519 4.1853633 7357.1475
+39730.82188711269 4.1853633 7356.1636
+39731.82188716019 4.185442 7357.3442
+39732.82188720768 4.185442 7356.5571
+39733.82188725518 4.185442 7356.9502
+39734.82188730268 4.1855206 7358.1318
+39735.82188735018 4.1855206 7357.541
+39736.82188739767 4.1855993 7356.9502
+39737.82188744517 4.1857176 7356.9502
+39738.82188749267 4.1857572 7356.5571
+39739.82188754017 4.1857963 7357.1475
+39740.82188758766 4.1858358 7356.7539
+39741.82188763516 4.1858749 7357.7378
+39742.82188768266 4.1858358 7357.1475
+39743.82188773016 4.1859145 7356.5571
+39744.82188777765 4.1859932 7356.5571
+39745.82188782515 4.1861115 7356.7539
+39746.82188787265 4.1861506 7356.1636
+39747.82188792014 4.1861115 7356.9502
+39748.82188796764 4.1863871 7356.5571
+39749.82188801514 4.1863475 7356.7539
+39750.82188806264 4.1863871 7356.5571
+39751.82188811013 4.1863475 7357.3442
+39752.82188815763 4.1865835 7356.3604
+39753.82188820513 4.1866627 7356.7539
+39754.82188825263 4.1865444 7357.3442
+39755.82188830012 4.1865835 7356.7539
+39756.82188834762 4.1867805 7356.9502
+39757.82188839512 4.1867805 7356.9502
+39758.82188844262 4.1868591 7357.7378
+39759.82188849011 4.1868591 7356.5571
+39760.82188853761 4.1868591 7356.5571
+39761.82188858511 4.1869774 7356.7539
+39762.82188863261 4.1869378 7356.3604
+39763.8218886801 4.1869378 7356.9502
+39764.8218887276 4.1870956 7356.7539
+39765.8218887751 4.1871347 7356.7539
+39766.8218888226 4.187253 7357.1475
+39767.82188887009 4.1873317 7357.541
+39768.82188891759 4.1872926 7356.7539
+39769.82188896509 4.1873317 7357.3442
+39770.82188901259 4.187489 7356.9502
+39771.82188906008 4.1874499 7356.7539
+39772.82188910758 4.187489 7356.7539
+39773.82188915508 4.1874499 7356.5571
+39774.82188920258 4.1877255 7357.3442
+39775.82188925007 4.1877255 7357.7378
+39776.82188929757 4.1877646 7357.1475
+39777.82188934507 4.1877255 7357.3442
+39778.82188939257 4.1878433 7357.1475
+39779.82188944006 4.1878829 7356.3604
+39780.82188948756 4.1880403 7357.541
+39781.82188953506 4.1880403 7356.7539
+39782.82188958256 4.1880403 7356.7539
+39783.82188963005 4.1880798 7356.7539
+39784.82188967755 4.1881585 7356.3604
+39785.82188972505 4.1880798 7357.7378
+39786.82188977255 4.1882372 7356.9502
+39787.82188982004 4.1882768 7356.5571
+39788.82188986754 4.1884341 7356.5571
+39789.82188991504 4.1884732 7357.3442
+39790.82188996254 4.1884341 7356.9502
+39791.82189001003 4.1885915 7357.541
+39792.82189005753 4.1886311 7356.3604
+39793.82189010503 4.1886702 7357.1475
+39794.82189015253 4.1887488 7356.9502
+39795.82189020002 4.188828 7357.7378
+39796.82189024752 4.1887884 7357.3442
+39797.82189029502 4.1889458 7356.1636
+39798.82189034252 4.1889067 7356.3604
+39799.82189039001 4.1889853 7357.541
+39800.82189043751 4.1891036 7357.3442
+39801.82189048501 4.1892214 7356.9502
+39802.8218905325 4.1891427 7356.5571
+39803.82189058 4.189261 7356.3604
+39804.8218906275 4.1892214 7356.1636
+39805.821890675 4.189261 7356.9502
+39806.82189072249 4.1893787 7356.1636
+39807.82189076999 4.1894579 7356.7539
+39808.82189081749 4.189497 7357.541
+39809.82189086499 4.1895366 7357.3442
+39810.82189091248 4.1895366 7356.5571
+39811.82189095998 4.1896939 7356.7539
+39812.82189100748 4.1897335 7356.9502
+39813.82189105498 4.18993 7357.1475
+39814.82189110247 4.1898122 7356.3604
+39815.82189114997 4.18993 7357.541
+39816.82189119747 4.1899695 7356.3604
+39817.82189124497 4.1900482 7356.7539
+39818.82189129246 4.1900482 7356.3604
+39819.82189133996 4.1900482 7356.9502
+39820.82189138746 4.1900878 7356.3604
+39821.82189143496 4.1902452 7357.7378
+39822.82189148245 4.1902452 7357.1475
+39823.82189152995 4.1902056 7357.3442
+39824.82189157745 4.1903634 7357.541
+39825.82189162495 4.1903634 7357.1475
+39826.82189167244 4.1904812 7356.3604
+39827.82189171994 4.1905599 7356.7539
+39828.82189176744 4.1905208 7356.9502
+39829.82189181494 4.1905208 7357.541
+39830.82189186243 4.1906385 7357.3442
+39831.82189190993 4.1907177 7356.7539
+39832.82189195743 4.1907568 7357.3442
+39833.82189200493 4.1907568 7356.5571
+39834.82189205242 4.1908751 7356.9502
+39835.82189209992 4.1908751 7357.3442
+39836.82189214742 4.1910324 7356.5571
+39837.82189219492 4.1909933 7356.3604
+39838.82189224241 4.1910324 7356.5571
+39839.82189228991 4.1911507 7356.9502
+39840.82189233741 4.1911507 7356.9502
+39841.82189238491 4.1911898 7357.1475
+39842.8218924324 4.191308 7356.9502
+39843.8218924799 4.1912689 7357.1475
+39844.8218925274 4.191308 7356.9502
+39845.8218925749 4.191308 7356.9502
+39846.82189262239 4.1914654 7356.5571
+39847.82189266989 4.191505 7356.7539
+39848.82189271739 4.1915836 7355.9663
+39849.82189276489 4.1916623 7356.9502
+39850.82189281238 4.1917806 7356.5571
+39851.82189285988 4.1916623 7357.3442
+39852.82189290738 4.1918197 7356.9502
+39853.82189295487 4.1919379 7356.7539
+39854.82189300237 4.1918592 7357.1475
+39855.82189304987 4.1918988 7357.3442
+39856.82189309737 4.1920562 7356.9502
+39857.82189314486 4.1920562 7356.9502
+39858.82189319236 4.1920953 7357.3442
+39859.82189323986 4.192174 7356.7539
+39860.82189328736 4.1922135 7357.1475
+39861.82189333485 4.1922922 7357.1475
+39862.82189338235 4.1922531 7356.3604
+39863.82189342985 4.1923709 7356.7539
+39864.82189347735 4.1925678 7356.9502
+39865.82189352484 4.1925287 7357.3442
+39866.82189357234 4.1925678 7356.7539
+39867.82189361984 4.1926465 7356.9502
+39868.82189366734 4.1926861 7357.1475
+39869.82189371483 4.1927648 7357.1475
+39870.82189376233 4.1927648 7357.7378
+39871.82189380983 4.1928434 7356.7539
+39872.82189385733 4.192883 7356.9502
+39873.82189390482 4.1929617 7357.1475
+39874.82189395232 4.1930008 7356.3604
+39875.82189399982 4.1930795 7356.3604
+39876.82189404732 4.1930795 7357.541
+39877.82189409481 4.1931586 7355.7695
+39878.82189414231 4.1932764 7357.3442
+39879.82189418981 4.1933551 7356.9502
+39880.82189423731 4.1934342 7356.9502
+39881.8218942848 4.1935129 7356.3604
+39882.8218943323 4.1934342 7356.7539
+39883.8218943798 4.193552 7356.9502
+39884.8218944273 4.1935916 7357.541
+39885.82189447479 4.193552 7357.541
+39886.82189452229 4.1937094 7356.5571
+39887.82189456979 4.1937885 7357.1475
+39888.82189461729 4.1938276 7357.1475
+39889.82189466478 4.1938672 7357.1475
+39890.82189471228 4.1938672 7356.7539
+39891.82189475978 4.193985 7357.9346
+39892.82189480728 4.193985 7357.1475
+39893.82189485477 4.1940246 7357.3442
+39894.82189490227 4.1941819 7355.9663
+39895.82189494977 4.1941032 7357.1475
+39896.82189499727 4.1943398 7357.541
+39897.82189504476 4.1941819 7357.1475
+39898.82189509226 4.1943002 7356.7539
+39899.82189513976 4.1943789 7356.5571
+39900.82189518726 4.1943789 7356.9502
+39901.82189523475 4.1944971 7357.3442
+39902.82189528225 4.1945362 7356.7539
+39903.82189532975 4.1945758 7357.3442
+39904.82189537724 4.194694 7356.5571
+39905.82189542474 4.1948118 7356.5571
+39906.82189547224 4.1947727 7356.7539
+39907.82189551974 4.1949301 7355.9663
+39908.82189556723 4.1948905 7356.9502
+39909.82189561473 4.1948905 7357.3442
+39910.82189566223 4.1950483 7357.541
+39911.82189570973 4.1949697 7357.1475
+39912.82189575722 4.1951661 7357.3442
+39913.82189580472 4.1952448 7357.1475
+39914.82189585222 4.1952448 7356.3604
+39915.82189589972 4.195363 7356.9502
+39916.82189594721 4.1953239 7356.9502
+39917.82189599471 4.1954026 7357.9346
+39918.82189604221 4.1955204 7356.3604
+39919.82189608971 4.19556 7356.7539
+39920.8218961372 4.1955996 7356.9502
+39921.8218961847 4.1955996 7356.5571
+39922.8218962322 4.1957173 7356.7539
+39923.8218962797 4.1957569 7356.1636
+39924.82189632719 4.195796 7356.7539
+39925.82189637469 4.1959143 7357.541
+39926.82189642219 4.1959143 7356.7539
+39927.82189646969 4.1959929 7357.3442
+39928.82189651718 4.1959143 7357.7378
+39929.82189656468 4.1960716 7356.9502
+39930.82189661218 4.1961503 7356.9502
+39931.82189665968 4.1961112 7356.9502
+39932.82189670717 4.1963472 7356.3604
+39933.82189675467 4.1962686 7357.3442
+39934.82189680217 4.1964259 7356.9502
+39935.82189684967 4.1964655 7356.7539
+39936.82189689716 4.1965837 7356.7539
+39937.82189694466 4.1965442 7357.541
+39938.82189699216 4.1966624 7356.3604
+39939.82189703966 4.1968198 7357.1475
+39940.82189708715 4.1967411 7357.7378
+39941.82189713465 4.1967802 7356.7539
+39942.82189718215 4.1968985 7356.7539
+39943.82189722965 4.1968985 7356.9502
+39944.82189727714 4.1970167 7356.3604
+39945.82189732464 4.1970954 7357.3442
+39946.82189737214 4.1970558 7357.3442
+39947.82189741964 4.197135 7356.3604
+39948.82189746713 4.1971741 7356.7539
+39949.82189751463 4.1973314 7356.9502
+39950.82189756213 4.1973314 7355.9663
+39951.82189760963 4.1973314 7357.1475
+39952.82189765712 4.1974497 7357.541
+39953.82189770462 4.1976466 7355.7695
+39954.82189775212 4.1976466 7356.7539
+39955.82189779961 4.1976857 7356.5571
+39956.82189784711 4.197804 7356.7539
+39957.82189789461 4.1978436 7356.1636
+39958.82189794211 4.1978827 7356.1636
+39959.8218979896 4.1979613 7356.3604
+39960.8218980371 4.1979613 7357.3442
+39961.8218980846 4.1980796 7356.5571
+39962.8218981321 4.1981583 7356.5571
+39963.82189817959 4.1980796 7357.1475
+39964.82189822709 4.1983156 7355.9663
+39965.82189827459 4.1982765 7356.7539
+39966.82189832209 4.1983948 7356.7539
+39967.82189836958 4.1984339 7357.3442
+39968.82189841708 4.1985126 7356.9502
+39969.82189846458 4.1985521 7356.7539
+39970.82189851208 4.1986704 7356.5571
+39971.82189855957 4.1987095 7357.3442
+39972.82189860707 4.1986704 7357.7378
+39973.82189865457 4.1987882 7357.1475
+39974.82189870207 4.1988277 7356.9502
+39975.82189874956 4.1990247 7356.1636
+39976.82189879706 4.1989851 7357.541
+39977.82189884456 4.1990638 7356.9502
+39978.82189889206 4.199182 7357.7378
+39979.82189893955 4.1992211 7356.9502
+39980.82189898705 4.1992607 7356.9502
+39981.82189903455 4.199379 7356.7539
+39982.82189908205 4.1994181 7356.7539
+39983.82189912954 4.1995363 7356.3604
+39984.82189917704 4.1995754 7356.1636
+39985.82189922454 4.1997724 7356.9502
+39986.82189927204 4.1996937 7356.9502
+39987.82189931953 4.1997724 7356.9502
+39988.82189936703 4.1998906 7357.3442
+39989.82189941453 4.1999302 7356.7539
+39990.82189946203 4.1999693 7356.5571
+39991.64989950135 4.1999693 7356.9502
+39991.65189950145 4.2000089 7357.1475
+39991.66789950221 4.2002058 7372.8931
+39992.66789954971 4.2001662 7367.7759
+39993.6678995972 4.2001662 7362.4614
+39994.6678996447 4.200048 7355.3765
+39995.6678996922 4.2002058 7350.4561
+39996.6678997397 4.2001266 7341.5986
+39997.66789978719 4.2002058 7335.6943
+39998.66789983469 4.2002058 7328.4121
+39999.66789988219 4.2002058 7321.917
+40000.66789992969 4.2002449 7315.8159
+40001.66789997718 4.2001266 7311.6826
+40002.66790002468 4.2002058 7304.0063
+40003.66790007218 4.2002058 7299.0864
+40004.66790011968 4.2000875 7285.8994
+40005.66790016717 4.2000875 7282.3569
+40006.66790021467 4.2001266 7279.7983
+40007.66790026217 4.2002058 7271.1382
+40008.66790030967 4.2002058 7264.2495
+40009.66790035716 4.2000875 7259.5259
+40010.66790040466 4.2001662 7254.4092
+40011.66790045216 4.2002058 7245.5522
+40012.66790049965 4.2001266 7239.8447
+40013.66790054715 4.2001662 7231.9712
+40014.66790059465 4.2000875 7228.8223
+40015.66790064215 4.2001662 7223.1147
+40016.66790068964 4.2002058 7217.9976
+40017.66790073714 4.200048 7209.9282
+40018.66790078464 4.2002058 7204.8105
+40019.66790083214 4.2001662 7196.3477
+40020.66790087963 4.2001266 7192.6079
+40021.66790092713 4.2002449 7189.459
+40022.66790097463 4.2002449 7181.5864
+40023.66790102213 4.2001266 7174.6978
+40024.66790106962 4.200048 7166.4312
+40025.66790111712 4.2001266 7163.6758
+40026.66790116462 4.2001662 7154.229
+40027.66790121212 4.2001266 7151.4736
+40028.66790125961 4.2002058 7143.7979
+40029.66790130711 4.2002449 7143.6011
+40030.66790135461 4.2001662 7135.9253
+40031.66790140211 4.2001662 7131.7915
+40032.6679014496 4.2002058 7124.7061
+40033.6679014971 4.2001662 7118.0146
+40034.6679015446 4.2001662 7109.1577
+40035.6679015921 4.2001266 7107.3862
+40036.66790163959 4.2001266 7099.3169
+40037.66790168709 4.2001662 7096.3643
+40038.66790173459 4.2001266 7092.4277
+40039.66790178209 4.2001266 7086.7202
+40040.66790182958 4.2001662 7082.3906
+40041.66790187708 4.2002058 7076.4863
+40042.66790192458 4.2000875 7066.0547
+40043.66790197208 4.2002845 7068.0229
+40044.66790201957 4.2001266 7060.7402
+40045.66790206707 4.2001266 7056.0166
+40046.66790211457 4.2002449 7051.0962
+40047.66790216207 4.2001662 7039.0908
+40048.66790220956 4.2001662 7039.2876
+40049.66790225706 4.2002058 7031.6113
+40050.66790230456 4.2001662 7027.8721
+40051.66790235206 4.2002449 7024.9199
+40052.66790239955 4.200048 7017.6377
+40053.66790244705 4.2001662 7011.3394
+40054.66790249455 4.2002845 7005.041
+40055.66790254205 4.2002058 7002.0889
+40056.66790258954 4.2002845 6995.791
+40057.66790263704 4.2001662 6989.2959
+40058.66790268454 4.2000875 6983.7847
+40059.66790273204 4.2001266 6978.2744
+40060.66790277953 4.2002449 6974.1406
+40061.66790282703 4.2002058 6969.0239
+40062.66790287453 4.2002058 6965.2842
+40063.66790292203 4.2001662 6958.0024
+40064.66790296952 4.2001266 6956.8208
+40065.66790301702 4.2001266 6949.145
+40066.66790306452 4.2001266 6944.6187
+40067.66790311201 4.2001662 6941.4692
+40068.66790315951 4.2001662 6933.0063
+40069.66790320701 4.2001266 6931.8252
+40070.66790325451 4.2001662 6923.9526
+40071.667903302 4.2000875 6918.4414
+40072.6679033495 4.2000875 6914.7026
+40073.667903397 4.2002845 6907.6167
+40074.6679034445 4.2001266 6903.2871
+40075.66790349199 4.200048 6898.5635
+40076.66790353949 4.2001662 6894.0361
+40077.66790358699 4.2002058 6888.9194
+40078.66790363449 4.2001266 6881.6367
+40079.66790368198 4.2001266 6876.5195
+40080.66790372948 4.2002058 6871.0088
+40081.66790377698 4.2000875 6865.3008
+40082.66790382448 4.2001662 6859.5933
+40083.66790387197 4.2000875 6856.2476
+40084.66790391947 4.2002058 6852.9014
+40085.66790396697 4.2000875 6848.1777
+40086.66790401447 4.2000875 6841.8799
+40087.66790406196 4.2001662 6836.1719
+40088.66790410946 4.2000089 6829.4805
+40089.66790415696 4.2002058 6824.9531
+40090.66790420446 4.2000875 6818.459
+40091.66790425195 4.2000875 6816.0967
+40092.66790429945 4.2001266 6807.8301
+40093.66790434695 4.2001662 6808.814
+40094.66790439445 4.2001662 6800.5483
+40095.66790444194 4.2001662 6796.415
+40096.66790448944 4.2000875 6788.3452
+40097.66790453694 4.2003236 6788.7393
+40098.66790458444 4.2000875 6779.0952
+40099.66790463193 4.2001662 6774.3716
+40100.66790467943 4.2000089 6769.2539
+40101.66790472693 4.2000875 6763.3496
+40102.66790477443 4.2002058 6758.4292
+40103.66790482192 4.2002058 6752.5249
+40104.66790486942 4.2002058 6747.9976
+40105.66790491692 4.2001662 6742.4873
+40106.66790496442 4.2002058 6738.7476
+40107.66790501191 4.2001266 6730.8745
+40108.66790505941 4.2001266 6728.5132
+40109.66790510691 4.2002058 6724.9702
+40110.66790515441 4.2000875 6713.5547
+40111.6679052019 4.2002058 6711.7837
+40112.6679052494 4.2002058 6707.0601
+40113.6679052969 4.2002449 6702.73
+40114.6679053444 4.2001266 6694.4639
+40115.66790539189 4.2002058 6689.1494
+40116.66790543939 4.2000875 6687.1812
+40117.66790548689 4.2001662 6677.144
+40118.66790553438 4.2001662 6674.1919
+40119.66790558188 4.2001266 6668.8774
+40120.66790562938 4.2001662 6662.7764
+40121.66790567688 4.2002058 6659.4302
+40122.66790572437 4.2002449 6651.3608
+40123.66790577187 4.2002449 6646.0464
+40124.66790581937 4.2002058 6641.7168
+40125.66790586687 4.2001662 6636.0088
+40126.66790591436 4.2001662 6629.7104
+40127.66790596186 4.2002058 6625.3809
+40128.66790600936 4.2001662 6621.0508
+40129.66790605686 4.2002058 6612.7847
+40130.66790610435 4.2001662 6607.8643
+40131.66790615185 4.2000875 6602.1567
+40132.66790619935 4.2001266 6599.9912
+40133.66790624685 4.2002058 6590.9375
+40134.66790629434 4.2001266 6586.0176
+40135.66790634184 4.2000089 6577.5542
+40136.66790638934 4.200048 6575.9795
+40137.66790643684 4.2001662 6569.4849
+40138.66790648433 4.2002449 6568.1069
+40139.66790653183 4.2001662 6560.8247
+40140.66790657933 4.2001266 6557.2817
+40141.66790662683 4.2001662 6550.3936
+40142.66790667432 4.2001662 6545.2759
+40143.66790672182 4.2001662 6534.4512
+40144.66790676932 4.2002449 6535.2383
+40145.66790681682 4.2001662 6531.3022
+40146.66790686431 4.2001662 6523.4297
+40147.66790691181 4.2001266 6516.147
+40148.66790695931 4.2002449 6516.147
+40149.66790700681 4.2001266 6507.6836
+40150.6679070543 4.2000875 6501.7793
+40151.6679071018 4.2001662 6497.8433
+40152.6679071493 4.200048 6492.332
+40153.6679071968 4.2000875 6484.0659
+40154.66790724429 4.2001662 6482.688
+40155.66790729179 4.2001266 6478.5552
+40156.66790733929 4.2001266 6472.6504
+40157.66790738679 4.2000875 6467.3359
+40158.66790743428 4.2002058 6464.1875
+40159.66790748178 4.2002449 6458.8735
+40160.66790752928 4.2001266 6452.9692
+40161.66790757678 4.2001266 6447.458
+40162.66790762427 4.2002058 6441.3569
+40163.66790767177 4.2001266 6436.8301
+40164.66790771927 4.2000875 6430.1382
+40165.66790776677 4.2000875 6423.6436
+40166.66790781426 4.2001266 6422.0688
+40167.66790786176 4.2002058 6414.5898
+40168.66790790926 4.2002449 6413.0156
+40169.66790795675 4.200048 6405.9297
+40170.66790800425 4.2001266 6400.2222
+40171.66790805175 4.2002058 6396.2856
+40172.66790809925 4.2000875 6392.3491
+40173.66790814674 4.2000875 6384.6733
+40174.66790819424 4.2002449 6381.5244
+40175.66790824174 4.2000875 6373.0615
+40176.66790828924 4.2001662 6371.6836
+40177.66790833673 4.2002845 6366.7637
+40178.66790838423 4.2001662 6361.4492
+40179.66790843173 4.2001662 6354.1665
+40180.66790847923 4.2002058 6349.8369
+40181.66790852672 4.2000875 6342.1611
+40182.66790857422 4.2002058 6340.3896
+40183.66790862172 4.2001266 6334.0918
+40184.66790866922 4.2002449 6330.5488
+40185.66790871671 4.2001662 6324.8413
+40186.66790876421 4.2001662 6318.5425
+40187.66790881171 4.2002058 6313.8198
+40188.66790885921 4.2002058 6309.0962
+40189.6679089067 4.2001662 6306.1436
+40190.6679089542 4.2001266 6300.6328
+40191.6679090017 4.2000875 6293.1533
+40192.6679090492 4.2002058 6288.4297
+40193.66790909669 4.2002058 6285.4775
+40194.66790914419 4.2000875 6279.9668
+40195.66790919169 4.2001266 6273.8652
+40196.66790923919 4.2002058 6270.9131
+40197.66790928668 4.2002058 6262.4502
+40198.66790933418 4.2001662 6259.3013
+40199.66790938168 4.2001266 6252.8062
+40200.66790942918 4.2002058 6248.6729
+40201.66790947667 4.2001266 6242.7686
+40202.66790952417 4.2000875 6239.4224
+40203.66790957167 4.2001662 6232.7305
+40204.66790961917 4.2002058 6227.8101
+40205.66790966666 4.2002449 6224.8579
+40206.66790971416 4.2002449 6219.9375
+40207.66790976166 4.2001662 6212.6553
+40208.66790980916 4.2002058 6205.373
+40209.66790985665 4.2002058 6203.4048
+40210.66790990415 4.2002058 6198.0908
+40211.66790995165 4.2002058 6193.9575
+40212.66790999915 4.2001662 6184.707
+40213.66791004664 4.2001266 6178.2124
+40214.66791009414 4.2002058 6173.4888
+40215.66791014164 4.2001266 6169.5527
+40216.66791018914 4.2001662 6165.2222
+40217.66791023663 4.2002058 6162.6636
+40218.66791028413 4.2001266 6155.1851
+40219.66791033163 4.200048 6153.8066
+40220.66791037912 4.2001266 6147.3115
+40221.66791042662 4.2002845 6143.7695
+40222.66791047412 4.2001266 6131.3696
+40223.66791052162 4.2001266 6132.354
+40224.66791056911 4.2000875 6120.3477
+40225.66791061661 4.2002449 6121.332
+40226.66791066411 4.2001266 6112.8691
+40227.66791071161 4.2001662 6108.1455
+40228.6679107591 4.2002058 6099.8789
+40229.6679108066 4.2000875 6097.3203
+40230.6679108541 4.2000875 6091.6123
+40231.6679109016 4.2001266 6081.9683
+40232.66791094909 4.2001266 6078.6226
+40233.66791099659 4.2002845 6075.6704
+40234.66791104409 4.2000875 6070.1597
+40235.66791109159 4.2000875 6062.2866
+40236.66791113908 4.2001662 6054.8076
+40237.66791118658 4.2002058 6054.4141
+40238.66791123408 4.2002058 6050.6748
+40239.66791128158 4.2002058 6043.3921
+40240.66791132907 4.2001662 6038.6685
+40241.66791137657 4.2001662 6033.5513
+40242.66791142407 4.2001662 6027.2534
+40243.66791147157 4.2000875 6023.5142
+40244.66791151906 4.2001662 6018.5938
+40245.66791156656 4.2002449 6015.4443
+40246.66791161406 4.2002449 6007.7681
+40247.66791166156 4.2000875 6007.375
+40248.66791170905 4.2000875 5998.124
+40249.66791175655 4.2000875 5995.1719
+40250.66791180405 4.2002845 5991.8262
+40251.66791185155 4.2001266 5985.5278
+40252.66791189904 4.200048 5981.001
+40253.66791194654 4.2002058 5975.8838
+40254.66791199404 4.2001266 5968.6021
+40255.66791204154 4.2001266 5968.208
+40256.66791208903 4.2002449 5960.9263
+40257.66791213653 4.2001662 5956.9897
+40258.66791218403 4.2001662 5948.1328
+40259.66791223153 4.2002058 5948.1328
+40260.66791227902 4.2001266 5939.4727
+40261.66791232652 4.2002449 5938.292
+40262.66791237402 4.2001266 5927.8604
+40263.66791242152 4.2002058 5929.0415
+40264.66791246901 4.2001266 5922.5469
+40265.66791251651 4.2002449 5916.8389
+40266.66791256401 4.2000875 5910.5405
+40267.66791261151 4.2001662 5905.0303
+40268.667912659 4.2001266 5903.8486
+40269.6679127065 4.2001266 5894.9922
+40270.667912754 4.2001662 5891.2524
+40271.66791280149 4.2002058 5887.1196
+40272.66791284899 4.2002449 5882.7891
+40273.66791289649 4.2001662 5874.7202
+40274.66791294399 4.2001266 5870.1929
+40275.66791299148 4.2000875 5864.2886
+40276.66791303898 4.2001266 5859.959
+40277.66791308648 4.2001662 5854.4478
+40278.66791313398 4.2001662 5849.9209
+40279.66791318147 4.200048 5839.6865
+40280.66791322897 4.2001662 5835.9473
+40281.66791327647 4.2000875 5834.3726
+40282.66791332397 4.2002058 5825.3188
+40283.66791337146 4.2002058 5821.9727
+40284.66791341896 4.2000875 5817.4458
+40285.66791346646 4.2002845 5811.9355
+40286.66791351396 4.2001662 5803.4722
+40287.66791356145 4.2002058 5800.7168
+40288.66791360895 4.2001662 5796.1895
+40289.66791365645 4.2001662 5788.9077
+40290.66791370395 4.2002058 5782.6094
+40291.66791375144 4.2001662 5776.9014
+40292.66791379894 4.2001662 5770.0132
+40293.66791384644 4.2000875 5761.7471
+40294.66791389394 4.2001662 5756.4326
+40295.66791394143 4.2001266 5752.8896
+40296.66791398893 4.2001662 5747.3794
+40297.66791403643 4.2001266 5741.8682
+40298.66791408393 4.2001266 5735.1768
+40299.66791413142 4.2001662 5729.272
+40300.66791417892 4.2000089 5726.7134
+40301.66791422642 4.2003632 5721.3994
+40302.66791427392 4.2000875 5716.8726
+40303.66791432141 4.2001266 5709.9839
+40304.66791436891 4.2002058 5706.4409
+40305.66791441641 4.2002058 5699.5527
+40306.66791446391 4.2001266 5694.2383
+40307.6679145114 4.2002449 5689.5146
+40308.6679145589 4.2002449 5684.5942
+40309.6679146064 4.2002449 5680.0679
+40310.6679146539 4.2002058 5671.998
+40311.66791470139 4.2002058 5669.6367
+40312.66791474889 4.2002449 5662.748
+40313.66791479639 4.2002058 5658.0244
+40314.66791484389 4.2001662 5652.1196
+40315.66791489138 4.2002058 5648.5771
+40316.66791493888 4.2001266 5646.0181
+40317.66791498638 4.2002449 5637.5547
+40318.66791503388 4.2000875 5633.6187
+40319.66791508137 4.2001266 5626.1401
+40320.66791512887 4.2002058 5623.187
+40321.66791517637 4.2002845 5617.8735
+40322.66791522386 4.2002058 5611.9688
+40323.66791527136 4.2002058 5605.6704
+40324.66791531886 4.2001662 5601.5376
+40325.66791536636 4.2002058 5595.8301
+40326.66791541385 4.2001266 5589.5322
+40327.66791546135 4.2001266 5585.3984
+40328.66791550885 4.2001662 5579.2974
+40329.66791555635 4.2002058 5575.9512
+40330.66791560384 4.2001266 5570.834
+40331.66791565134 4.2001266 5562.5674
+40332.66791569884 4.2000875 5559.4185
+40333.66791574634 4.2001662 5550.3652
+40334.66791579383 4.2001662 5548.2002
+40335.66791584133 4.2002058 5539.9336
+40336.66791588883 4.2002058 5533.2422
+40337.66791593633 4.2001662 5530.4863
+40338.66791598382 4.2000875 5525.9595
+40339.66791603132 4.2001266 5517.6934
+40340.66791607882 4.2001266 5512.9697
+40341.66791612632 4.2001266 5508.0493
+40342.66791617381 4.2001662 5501.5542
+40343.66791622131 4.200048 5495.8467
+40344.66791626881 4.2001662 5493.6816
+40345.66791631631 4.2000875 5486.2026
+40346.6679163638 4.2002058 5480.1016
+40347.6679164113 4.2001266 5477.7393
+40348.6679164588 4.2002449 5472.229
+40349.6679165063 4.2002058 5466.127
+40350.66791655379 4.2001662 5459.4355
+40351.66791660129 4.2002058 5457.2705
+40352.66791664879 4.2002449 5451.3662
+40353.66791669629 4.2002449 5447.0356
+40354.66791674378 4.2001266 5441.9189
+40355.66791679128 4.200048 5434.2427
+40356.66791683878 4.2002058 5429.519
+40357.66791688628 4.2000875 5425.583
+40358.66791693377 4.2001662 5421.6465
+40359.66791698127 4.2001662 5416.7261
+40360.66791702877 4.2001662 5408.6563
+40361.66791707627 4.2001662 5404.3267
+40362.66791712376 4.2000875 5400.3906
+40363.66791717126 4.2002449 5396.8477
+40364.66791721876 4.2001662 5387.9907
+40365.66791726626 4.2002449 5385.8262
+40366.66791731375 4.2002058 5377.3628
+40367.66791736125 4.2001662 5372.0483
+40368.66791740875 4.2000875 5369.0962
+40369.66791745625 4.2001662 5360.043
+40370.66791750374 4.2002449 5363.7822
+40371.66791755124 4.2001662 5353.9419
+40372.66791759874 4.2001662 5352.7603
+40373.66791764623 4.2001662 5346.856
+40374.66791769373 4.2001662 5341.3447
+40375.66791774123 4.2001266 5332.8823
+40376.66791778873 4.2001662 5330.7168
+40377.66791783622 4.2001266 5326.5835
+40378.66791788372 4.2001662 5324.0249
+40379.66791793122 4.2002058 5317.5303
+40380.66791797872 4.2002058 5314.7749
+40381.66791802621 4.2001662 5307.4922
+40382.66791807371 4.2001662 5303.3594
+40383.66791812121 4.2001662 5297.2583
+40384.66791816871 4.2002449 5291.9438
+40385.6679182162 4.2002058 5289.3853
+40386.6679182637 4.2001266 5285.8428
+40387.6679183112 4.2002449 5279.3477
+40388.6679183587 4.2001662 5272.2622
+40389.66791840619 4.2000875 5269.3101
+40390.66791845369 4.2001662 5263.7993
+40391.66791850119 4.2001662 5256.7134
+40392.66791854869 4.2002058 5257.1074
+40393.66791859618 4.200048 5252.187
+40394.66791864368 4.2000875 5247.8569
+40395.66791869118 4.2002058 5240.5747
+40396.66791873868 4.200048 5233.6865
+40397.66791878617 4.2001266 5231.1274
+40398.66791883367 4.2002449 5227.1914
+40399.66791888117 4.2002845 5221.6802
+40400.66791892867 4.1999693 5212.0361
+40401.66791897616 4.2001266 5212.2329
+40402.66791902366 4.2000875 5206.5249
+40403.66791907116 4.2002449 5202.3921
+40404.66791911866 4.2000875 5195.897
+40405.66791916615 4.2001662 5190.7798
+40406.66791921365 4.2001662 5188.6152
+40407.66791926115 4.2002058 5181.9233
+40408.66791930865 4.2002058 5175.625
+40409.66791935614 4.2001266 5173.0664
+40410.66791940364 4.2002058 5167.3589
+40411.66791945114 4.2001266 5161.6514
+40412.66791949864 4.2002058 5154.3687
+40413.66791954613 4.2000875 5148.6611
+40414.66791959363 4.2002449 5145.3154
+40415.66791964113 4.2001662 5142.5596
+40416.66791968863 4.2001662 5137.2456
+40417.66791973612 4.2002058 5131.3408
+40418.66791978362 4.2000875 5123.665
+40419.66791983112 4.2001266 5121.6968
+40420.66791987862 4.2002845 5118.7446
+40421.66791992611 4.2000089 5106.542
+40422.66791997361 4.2002058 5105.3613
+40423.66792002111 4.2002058 5101.4248
+40424.6679200686 4.2000875 5095.9136
+40425.6679201161 4.2001662 5089.6157
+40426.6679201636 4.200048 5084.498
+40427.6679202111 4.2002449 5077.6099
+40428.66792025859 4.2001662 5073.6733
+40429.66792030609 4.200048 5069.1465
+40430.66792035359 4.2001266 5062.4551
+40431.66792040109 4.2000875 5058.7158
+40432.66792044858 4.2000875 5050.8423
+40433.66792049608 4.2001266 5048.0874
+40434.66792054358 4.2001662 5042.7734
+40435.66792059108 4.2001662 5040.8052
+40436.66792063857 4.2002058 5032.7358
+40437.66792068607 4.2001662 5028.7993
+40438.66792073357 4.2001266 5024.0757
+40439.66792078107 4.2000875 5017.1865
+40440.66792082856 4.2001662 5013.0537
+40441.66792087606 4.2001266 5006.3618
+40442.66792092356 4.2001662 5004.5903
+40443.66792097106 4.2000089 4996.7183
+40444.66792101855 4.2001662 4992.9785
+40445.66792106605 4.2001266 4986.6807
+40446.66792111355 4.2001266 4979.5952
+40447.66792116105 4.2000875 4977.2334
+40448.66792120854 4.2000875 4971.1318
+40449.66792125604 4.2001266 4964.6367
+40450.66792130354 4.2001662 4964.834
+40451.66792135104 4.2001662 4959.7168
+40452.66792139853 4.2001266 4952.2373
+40453.66792144603 4.2001662 4950.0728
+40454.66792149353 4.2002449 4946.7266
+40455.66792154103 4.2002449 4940.4287
+40456.66792158852 4.2002058 4932.9492
+40457.66792163602 4.2001266 4927.4385
+40458.66792168352 4.2002058 4924.4863
+40459.66792173102 4.2001662 4918.3848
+40460.66792177851 4.2002058 4913.4644
+40461.66792182601 4.2002449 4911.1025
+40462.66792187351 4.200048 4904.6074
+40463.66792192101 4.2000875 4895.3574
+40464.6679219685 4.2001266 4894.7671
+40465.667922016 4.2001662 4889.0591
+40466.6679220635 4.2002449 4884.3354
+40467.667922111 4.2001266 4875.8726
+40468.66792215849 4.2001266 4873.5107
+40469.66792220599 4.2001662 4871.7393
+40470.66792225349 4.2001266 4868.3931
+40471.66792230099 4.2001266 4858.9458
+40472.66792234848 4.2001266 4857.5684
+40473.66792239598 4.2002449 4851.8608
+40474.66792244348 4.2001266 4847.9243
+40475.66792249097 4.2002058 4841.4292
+40476.66792253847 4.2002058 4837.8867
+40477.66792258597 4.2002449 4834.541
+40478.66792263347 4.2002845 4828.4395
+40479.66792268096 4.2001266 4821.9443
+40480.66792272846 4.2001266 4818.2051
+40481.66792277596 4.2001662 4814.2686
+40482.66792282346 4.2001266 4806.5928
+40483.66792287095 4.2000875 4803.8374
+40484.66792291845 4.2002058 4795.9644
+40485.66792296595 4.2000875 4794.5869
+40486.66792301345 4.2001662 4787.895
+40487.66792306094 4.2002058 4782.1875
+40488.66792310844 4.2001266 4774.3145
+40489.66792315594 4.2000875 4771.9531
+40490.66792320344 4.2001266 4764.0801
+40491.66792325093 4.2002058 4760.5376
+40492.66792329843 4.2002058 4752.6646
+40493.66792334593 4.2002449 4752.0742
+40494.66792339343 4.2001662 4747.5474
+40495.66792344092 4.2000875 4739.2813
+40496.66792348842 4.2001266 4730.8179
+40497.66792353592 4.2002449 4728.4561
+40498.66792358342 4.2001266 4723.1421
+40499.66792363091 4.2002449 4721.9614
+40500.66792367841 4.2000875 4710.1523
+40501.66792372591 4.2000875 4705.8223
+40502.66792377341 4.2000875 4702.6729
+40503.6679238209 4.2002058 4701.0986
+40504.6679238684 4.2001266 4693.4229
+40505.6679239159 4.2002058 4693.2261
+40506.6679239634 4.2001266 4682.4009
+40507.66792401089 4.2000875 4680.6299
+40508.66792405839 4.2001662 4676.6934
+40509.66792410589 4.2002058 4672.7568
+40510.66792415339 4.2002058 4665.6719
+40511.66792420088 4.2001662 4663.3096
+40512.66792424838 4.2002449 4657.4053
+40513.66792429588 4.2000089 4652.4849
+40514.66792434338 4.2001266 4645.0059
+40515.66792439087 4.2001266 4640.479
+40516.66792443837 4.2001266 4635.3618
+40517.66792448587 4.2000875 4632.6064
+40518.66792453337 4.2000875 4626.8984
+40519.66792458086 4.2001662 4623.1587
+40520.66792462836 4.2000875 4617.0576
+40521.66792467586 4.2001662 4612.334
+40522.66792472336 4.2001662 4609.7754
+40523.66792477085 4.2002058 4605.0518
+40524.66792481835 4.2001662 4600.5249
+40525.66792486585 4.2001266 4594.0303
+40526.66792491334 4.2001266 4591.6685
+40527.66792496084 4.2002449 4585.3701
+40528.66792500834 4.2000875 4581.8271
+40529.66792505584 4.2000875 4577.6943
+40530.66792510333 4.2001266 4572.9707
+40531.66792515083 4.2001266 4568.4438
+40532.66792519833 4.2000875 4563.3267
+40533.66792524583 4.2001266 4559.5869
+40534.66792529332 4.2002058 4555.4536
+40535.66792534082 4.2002058 4549.5493
+40536.66792538832 4.2000875 4546.9907
+40537.66792543582 4.2001662 4539.3149
+40538.66792548331 4.2001266 4535.3784
+40539.66792553081 4.2002449 4531.8354
+40540.66792557831 4.2001266 4527.1118
+40541.66792562581 4.2001662 4522.3887
+40542.6679256733 4.2001662 4515.8936
+40543.6679257208 4.2001266 4508.4146
+40544.6679257683 4.2001662 4507.0366
+40545.6679258158 4.2000875 4496.999
+40546.66792586329 4.2001662 4496.6055
+40547.66792591079 4.2002058 4493.2598
+40548.66792595829 4.2000875 4482.6313
+40549.66792600579 4.2001662 4480.6631
+40550.66792605328 4.2001266 4475.1523
+40551.66792610078 4.2000875 4474.168
+40552.66792614828 4.2000875 4467.6733
+40553.66792619578 4.2002058 4463.3433
+40554.66792624327 4.2001662 4458.0293
+40555.66792629077 4.2002058 4455.0771
+40556.66792633827 4.2001266 4449.5659
+40557.66792638577 4.2002058 4443.4648
+40558.66792643326 4.2001266 4438.5444
+40559.66792648076 4.2002845 4435.5923
+40560.66792652826 4.2000875 4429.0972
+40561.66792657576 4.2001266 4426.1445
+40562.66792662325 4.2001662 4420.6338
+40563.66792667075 4.2000875 4415.9102
+40564.66792671825 4.2001662 4413.3516
+40565.66792676575 4.2000875 4405.0854
+40566.66792681324 4.2002058 4403.5107
+40567.66792686074 4.2001662 4400.165
+40568.66792690824 4.2001266 4391.7017
+40569.66792695574 4.2001662 4390.521
+40570.66792700323 4.2001662 4384.6162
+40571.66792705073 4.2001266 4378.7119
+40572.66792709823 4.2002058 4374.5786
+40573.66792714573 4.2002058 4371.6265
+40574.66792719322 4.2001266 4366.5093
+40575.66792724072 4.2001266 4359.4238
+40576.66792728822 4.2002058 4353.519
+40577.66792733571 4.2002449 4355.6841
+40578.66792738321 4.2001266 4347.0244
+40579.66792743071 4.2001266 4342.3008
+40580.66792747821 4.2002058 4337.7739
+40581.6679275257 4.2002845 4334.231
+40582.6679275732 4.2002449 4330.4917
+40583.6679276207 4.2000875 4322.6187
+40584.6679276682 4.2001266 4320.2568
+40585.66792771569 4.2002449 4316.9111
+40586.66792776319 4.2001662 4311.5972
+40587.66792781069 4.2002058 4306.0864
+40588.66792785819 4.2001266 4299.1978
+40589.66792790568 4.2000875 4294.4741
+40590.66792795318 4.2002058 4290.9312
+40591.66792800068 4.2000875 4286.6011
+40592.66792804818 4.2001662 4282.2715
+40593.66792809567 4.2002058 4279.3193
+40594.66792814317 4.200048 4271.8403
+40595.66792819067 4.2002058 4266.5264
+40596.66792823817 4.2001266 4266.5264
+40597.66792828566 4.2001266 4261.8022
+40598.66792833316 4.2000875 4251.1743
+40599.66792838066 4.2001662 4250.9775
+40600.66792842816 4.2001662 4248.6157
+40601.66792847565 4.2001662 4245.0728
+40602.66792852315 4.2001266 4234.0513
+40603.66792857065 4.2001662 4235.8228
+40604.66792861815 4.2002058 4229.1309
+40605.66792866564 4.2001662 4223.6196
+40606.66792871314 4.2001662 4220.4707
+40607.66792876064 4.2002449 4216.7314
+40608.66792880814 4.2000875 4210.2363
+40609.66792885563 4.2001662 4206.8906
+40610.66792890313 4.2002058 4200.9858
+40611.66792895063 4.200048 4196.0654
+40612.66792899813 4.200048 4192.3257
+40613.66792904562 4.2001266 4187.6021
+40614.66792909312 4.2002058 4185.6338
+40615.66792914062 4.2001662 4180.9106
+40616.66792918812 4.2001266 4174.2188
+40617.66792923561 4.2002449 4171.2666
+40618.66792928311 4.2001266 4162.8032
+40619.66792933061 4.2002058 4160.4414
+40620.66792937811 4.2001662 4159.6543
+40621.6679294256 4.2001662 4152.9624
+40622.6679294731 4.1999693 4145.2866
+40623.6679295206 4.2002058 4143.5151
+40624.6679295681 4.200048 4137.02
+40625.66792961559 4.2001662 4129.7378
+40626.66792966309 4.2001662 4130.7222
+40627.66792971059 4.2001662 4123.4399
+40628.66792975808 4.2002449 4118.7163
+40629.66792980558 4.2002058 4114.1895
+40630.66792985308 4.2001266 4110.6465
+40631.66792990058 4.2001266 4104.1519
+40632.66792994807 4.2001266 4102.1836
+40633.66792999557 4.2000875 4098.6411
+40634.66793004307 4.2000875 4095.2952
+40635.66793009057 4.2000875 4089.5874
+40636.66793013806 4.2001662 4085.2576
+40637.66793018556 4.2002449 4078.5657
+40638.66793023306 4.2001662 4076.7942
+40639.66793028056 4.2001662 4072.6609
+40640.66793032805 4.2001662 4065.3787
+40641.66793037555 4.2000875 4058.4902
+40642.66793042305 4.2001662 4060.0647
+40643.66793047055 4.2001266 4055.3411
+40644.66793051804 4.2002058 4049.24
+40645.66793056554 4.2000875 4044.9099
+40646.66793061304 4.2001266 4037.6277
+40647.66793066054 4.2001662 4035.6597
+40648.66793070803 4.2000875 4033.1008
+40649.66793075553 4.2001662 4028.1804
+40650.66793080303 4.2000875 4022.8665
+40651.66793085053 4.2000875 4019.3237
+40652.66793089802 4.2001662 4014.9939
+40653.66793094552 4.2002058 4010.6638
+40654.66793099302 4.2001662 4008.105
+40655.66793104052 4.2001266 4003.5784
+40656.66793108801 4.2002058 3996.8865
+40657.66793113551 4.2001662 3991.769
+40658.66793118301 4.200048 3988.0298
+40659.66793123051 4.2001266 3984.2903
+40660.667931278 4.2001662 3977.4014
+40661.6679313255 4.2001662 3977.2048
+40662.667931373 4.2001266 3971.6941
+40663.6679314205 4.2002058 3968.9385
+40664.66793146799 4.2001662 3963.821
+40665.66793151549 4.2002058 3959.6882
+40666.66793156299 4.2000089 3957.72
+40667.66793161049 4.2002058 3950.4375
+40668.66793165798 4.2002449 3948.863
+40669.66793170548 4.2001266 3941.9746
+40670.66793175298 4.2000089 3939.6128
+40671.66793180048 4.2001662 3934.1016
+40672.66793184797 4.2000875 3928.1973
+40673.66793189547 4.200048 3923.6704
+40674.66793194297 4.2002449 3923.4736
+40675.66793199047 4.2001266 3917.1753
+40676.66793203796 4.2002058 3914.6169
+40677.66793208546 4.2002449 3908.7124
+40678.66793213296 4.200048 3904.7759
+40679.66793218046 4.2001266 3901.2332
+40680.66793222795 4.2001266 3895.5254
+40681.66793227545 4.2001662 3890.8018
+40682.66793232295 4.2002058 3888.0466
+40683.66793237044 4.2002449 3881.5515
+40684.66793241794 4.2000875 3876.8279
+40685.66793246544 4.2001662 3873.8757
+40686.66793251294 4.2001266 3868.9553
+40687.66793256043 4.2001662 3866.0029
+40688.66793260793 4.2001266 3862.2634
+40689.66793265543 4.2000875 3857.9333
+40690.66793270293 4.2001266 3851.832
+40691.66793275042 4.2000875 3847.8958
+40692.66793279792 4.2002058 3842.7786
+40693.66793284542 4.2001662 3839.4329
+40694.66793289292 4.2001662 3833.9216
+40695.66793294041 4.2000875 3826.8362
+40696.66793298791 4.2001266 3829.0015
+40697.66793303541 4.2001266 3824.2776
+40698.66793308291 4.2000875 3820.7351
+40699.6679331304 4.2001662 3815.2241
+40700.6679331779 4.1999693 3810.1069
+40701.6679332254 4.2002449 3804.9897
+40702.6679332729 4.2001662 3801.0532
+40703.66793332039 4.2001662 3797.3137
+40704.66793336789 4.2000089 3790.6218
+40705.66793341539 4.200048 3789.0474
+40706.66793346289 4.200048 3786.6855
+40707.66793351038 4.2001662 3782.7493
+40708.66793355788 4.2002058 3776.8447
+40709.66793360538 4.2001662 3775.6638
+40710.66793365288 4.2001266 3770.9402
+40711.66793370037 4.2001662 3763.2644
+40712.66793374787 4.2001266 3759.5247
+40713.66793379537 4.2001662 3754.2107
+40714.66793384287 4.2001266 3751.2585
+40715.66793389036 4.2001662 3748.1096
+40716.66793393786 4.2000875 3744.5667
+40717.66793398536 4.2001662 3739.843
+40718.66793403286 4.2001266 3736.3003
+40719.66793408035 4.2000875 3730.9863
+40720.66793412785 4.2002058 3730.396
+40721.66793417535 4.2001266 3724.2944
+40722.66793422285 4.200048 3720.1614
+40723.66793427034 4.2000089 3717.0122
+40724.66793431784 4.2001266 3709.5332
+40725.66793436534 4.2001662 3707.1716
+40726.66793441284 4.2000875 3707.1716
+40727.66793446033 4.2000089 3702.0542
+40728.66793450783 4.2001662 3697.1338
+40729.66793455533 4.2001662 3694.3784
+40730.66793460283 4.2002058 3690.6387
+40731.66793465032 4.200048 3686.8992
+40732.66793469782 4.2000875 3679.6169
+40733.66793474532 4.2001662 3677.6487
+40734.66793479281 4.2002058 3671.5474
+40735.66793484031 4.2000875 3666.0366
+40736.66793488781 4.2000875 3665.8398
+40737.66793493531 4.2002058 3662.8875
+40738.6679349828 4.2001266 3657.1799
+40739.6679350303 4.2000875 3650.488
+40740.6679350778 4.200048 3645.7644
+40741.6679351253 4.2000875 3642.4185
+40742.66793517279 4.2001662 3643.009
+40743.66793522029 4.2001266 3639.4663
+40744.66793526779 4.2001662 3632.5776
+40745.66793531529 4.2002058 3630.6094
+40746.66793536278 4.2000875 3625.886
+40747.66793541028 4.200048 3621.3591
+40748.66793545778 4.2002058 3617.0291
+40749.66793550528 4.2002058 3614.0769
+40750.66793555277 4.2002449 3608.9595
+40751.66793560027 4.2002058 3606.2043
+40752.66793564777 4.2001266 3600.8901
+40753.66793569527 4.2000875 3594.5918
+40754.66793574276 4.2001662 3594.5918
+40755.66793579026 4.2001662 3587.1128
+40756.66793583776 4.2001662 3581.7988
+40757.66793588526 4.2002058 3579.8308
+40758.66793593275 4.2001266 3578.2559
+40759.66793598025 4.2000875 3570.7771
+40760.66793602775 4.2001662 3567.825
+40761.66793607525 4.2001662 3563.4949
+40762.66793612274 4.2001662 3558.9678
+40763.66793617024 4.200048 3553.2605
+40764.66793621774 4.2001662 3550.8987
+40765.66793626524 4.2001266 3551.6858
+40766.66793631273 4.2002449 3544.7971
+40767.66793636023 4.2001662 3540.6638
+40768.66793640773 4.2000875 3532.0039
+40769.66793645523 4.2002058 3533.9722
+40770.66793650272 4.2001662 3530.0359
+40771.66793655022 4.200048 3525.1155
+40772.66793659772 4.2001266 3519.8013
+40773.66793664522 4.2001266 3511.7317
+40774.66793669271 4.2000875 3514.0938
+40775.66793674021 4.2001266 3508.583
+40776.66793678771 4.2001266 3504.0559
+40777.66793683521 4.2002058 3501.4973
+40778.6679368827 4.2000875 3497.364
+40779.6679369302 4.2002449 3494.4119
+40780.6679369777 4.2001662 3491.8533
+40781.6679370252 4.200048 3484.571
+40782.66793707269 4.2002058 3481.6189
+40783.66793712019 4.2002058 3478.8635
+40784.66793716769 4.2002845 3475.1238
+40785.66793721518 4.2001266 3469.416
+40786.66793726268 4.2002058 3466.8577
+40787.66793731018 4.2001266 3460.3625
+40788.66793735768 4.2000875 3458.3943
+40789.66793740517 4.2001266 3456.623
+40790.66793745267 4.2002058 3450.9153
+40791.66793750017 4.2001266 3449.3406
+40792.66793754767 4.2001662 3444.0266
+40793.66793759516 4.2000875 3441.0745
+40794.66793764266 4.200048 3436.7444
+40795.66793769016 4.2001266 3428.8718
+40796.66793773766 4.2002058 3426.9036
+40797.66793778515 4.2001662 3421.9834
+40798.66793783265 4.2000875 3420.0149
+40799.66793788015 4.2001662 3416.2756
+40800.66793792765 4.2002449 3414.7007
+40801.66793797514 4.2002058 3409.1899
+40802.66793802264 4.2002058 3405.4504
+40803.66793807014 4.2001266 3400.53
+40804.66793811764 4.2001662 3398.1682
+40805.66793816513 4.2001662 3394.2319
+40806.66793821263 4.2001662 3390.689
+40807.66793826013 4.2002058 3388.1306
+40808.66793830763 4.2002058 3383.6038
+40809.66793835512 4.2001266 3380.061
+40810.66793840262 4.2002058 3377.5024
+40811.66793845012 4.2001662 3371.0076
+40812.66793849762 4.2001662 3364.9063
+40813.66793854511 4.2001266 3360.3792
+40814.66793859261 4.2001662 3356.6399
+40815.66793864011 4.2002058 3355.8525
+40816.66793868761 4.2002449 3352.3101
+40817.6679387351 4.200048 3350.5386
+40818.6679387826 4.200048 3343.0593
+40819.6679388301 4.2001662 3339.3201
+40820.6679388776 4.2001662 3335.1868
+40821.66793892509 4.2000875 3335.5803
+40822.66793897259 4.2001662 3330.6602
+40823.66793902009 4.2001266 3327.1172
+40824.66793906759 4.2001662 3324.165
+40825.66793911508 4.2001266 3319.2446
+40826.66793916258 4.2002058 3313.7334
+40827.66793921008 4.2001662 3312.356
+40828.66793925758 4.2000875 3309.0103
+40829.66793930507 4.1999693 3303.8928
+40830.66793935257 4.2002058 3299.9565
+40831.66793940007 4.2002449 3297.5947
+40832.66793944757 4.2002845 3293.855
+40833.66793949506 4.2001266 3291.0996
+40834.66793954256 4.2001266 3288.1472
+40835.66793959006 4.2001266 3282.4397
+40836.66793963755 4.2001662 3278.5034
+40837.66793968505 4.2001266 3273.9766
+40838.66793973255 4.2001266 3271.6147
+40839.66793978005 4.2001662 3268.2688
+40840.66793982754 4.2002058 3265.5134
+40841.66793987504 4.2001662 3262.561
+40842.66793992254 4.2002449 3258.0344
+40843.66793997004 4.2002058 3252.1296
+40844.66794001753 4.2002058 3248.9807
+40845.66794006503 4.2001662 3245.0444
+40846.66794011253 4.2001662 3240.5176
+40847.66794016003 4.200048 3238.7463
+40848.66794020752 4.2001662 3237.5654
+40849.66794025502 4.2002058 3230.4797
+40850.66794030252 4.200048 3230.8735
+40851.66794035002 4.2002058 3227.134
+40852.66794039751 4.2001266 3223.5916
+40853.66794044501 4.200048 3218.4744
+40854.66794049251 4.2001662 3216.7029
+40855.66794054001 4.2002845 3212.7666
+40856.6679405875 4.2002449 3206.4685
+40857.667940635 4.2001266 3204.894
+40858.6679406825 4.2001266 3201.9417
+40859.66794073 4.2001662 3198.3989
+40860.66794077749 4.2002058 3195.25
+40861.66794082499 4.2001266 3192.4944
+40862.66794087249 4.2001662 3188.9519
+40863.66794091999 4.2001662 3186.1963
+40864.66794096748 4.200048 3177.9299
+40865.66794101498 4.2001662 3174.7808
+40866.66794106248 4.2001266 3172.8127
+40867.66794110998 4.2001266 3168.4827
+40868.66794115747 4.2002058 3166.1208
+40869.66794120497 4.2001662 3163.3652
+40870.66794125247 4.2002449 3159.626
+40871.66794129997 4.2002058 3155.6895
+40872.66794134746 4.2000875 3148.9978
+40873.66794139496 4.2002449 3148.801
+40874.66794144246 4.2001266 3146.2424
+40875.66794148996 4.2001662 3140.7314
+40876.66794153745 4.2002058 3136.7949
+40877.66794158495 4.2002058 3134.8269
+40878.66794163245 4.2001662 3131.2842
+40879.66794167995 4.2001662 3125.7732
+40880.66794172744 4.2001662 3122.4272
+40881.66794177494 4.2001662 3117.7039
+40882.66794182244 4.2000875 3115.5388
+40883.66794186994 4.2001662 3114.5547
+40884.66794191743 4.2001662 3112.3896
+40885.66794196493 4.2002058 3109.6343
+40886.66794201243 4.2001662 3106.4851
+40887.66794205992 4.2000875 3100.9744
+40888.66794210742 4.2001266 3096.0537
+40889.66794215492 4.200048 3093.2986
+40890.66794220242 4.2001662 3089.7556
+40891.66794224991 4.2001266 3087.197
+40892.66794229741 4.200048 3084.0481
+40893.66794234491 4.2002058 3079.1274
+40894.66794239241 4.2002449 3076.7656
+40895.6679424399 4.2001266 3070.074
+40896.6679424874 4.2001266 3067.9092
+40897.6679425349 4.2001662 3064.1694
+40898.6679425824 4.2000875 3062.7917
+40899.66794262989 4.2001662 3059.249
+40900.66794267739 4.2001662 3051.1794
+40901.66794272489 4.2001662 3051.9668
+40902.66794277239 4.2002058 3049.605
+40903.66794281988 4.2001266 3043.5037
+40904.66794286738 4.2001662 3041.7324
+40905.66794291488 4.2001662 3037.2056
+40906.66794296238 4.2000875 3034.2534
+40907.66794300987 4.2002058 3030.5137
+40908.66794305737 4.2002449 3028.9392
+40909.66794310487 4.2001266 3024.2156
+40910.66794315237 4.200048 3020.2793
+40911.66794319986 4.200048 3017.5237
+40912.66794324736 4.2000089 3011.8159
+40913.66794329486 4.2001266 3009.6511
+40914.66794334236 4.2001266 3007.0928
+40915.66794338985 4.2000089 3002.1719
+40916.66794343735 4.2001662 2998.2356
+40917.66794348485 4.2000875 2995.8738
+40918.66794353235 4.2000875 2989.7725
+40919.66794357984 4.200048 2989.5757
+40920.66794362734 4.2001266 2985.6394
+40921.66794367484 4.2001662 2982.6873
+40922.66794372234 4.2002058 2979.5381
+40923.66794376983 4.2001662 2978.3572
+40924.66794381733 4.200048 2973.6335
+40925.66794386483 4.2000875 2966.3513
+40926.66794391233 4.2000875 2968.1226
+40927.66794395982 4.200048 2965.1704
+40928.66794400732 4.2002058 2959.6597
+40929.66794405482 4.2002058 2958.4785
+40930.66794410232 4.2001662 2957.1011
+40931.66794414981 4.2001266 2950.0156
+40932.66794419731 4.2001662 2946.6697
+40933.66794424481 4.2001266 2946.6697
+40934.66794429231 4.2002058 2940.9619
+40935.6679443398 4.2002058 2938.0098
+40936.6679443873 4.2001266 2936.6318
+40937.6679444348 4.2001266 2933.2859
+40938.66794448229 4.2001662 2931.5146
+40939.66794452979 4.2000875 2925.2166
+40940.66794457729 4.2000875 2921.4768
+40941.66794462479 4.200048 2919.7056
+40942.66794467228 4.2001662 2915.9661
+40943.66794471978 4.2000875 2911.8328
+40944.66794476728 4.2002058 2909.0776
+40945.66794481478 4.2001662 2906.7158
+40946.66794486227 4.200048 2902.7795
+40947.66794490977 4.2000875 2899.4336
+40948.66794495727 4.2001266 2897.6621
+40949.66794500477 4.2001266 2895.1035
+40950.66794505226 4.2001662 2893.332
+40951.66794509976 4.2001266 2888.4119
+40952.66794514726 4.2001266 2886.8369
+40953.66794519476 4.2001266 2879.3582
+40954.66794524225 4.2001662 2877.9805
+40955.66794528975 4.2000875 2873.2566
+40956.66794533725 4.2002845 2873.2566
+40957.66794538475 4.2002058 2868.9268
+40958.66794543224 4.2001266 2865.5808
+40959.66794547974 4.2001266 2861.8413
+40960.66794552724 4.2001662 2858.4956
+40961.66794557474 4.2002058 2857.1179
+40962.66794562223 4.200048 2853.575
+40963.66794566973 4.2002058 2849.6387
+40964.66794571723 4.2001662 2847.6704
+40965.66794576473 4.2000875 2844.3247
+40966.66794581222 4.200048 2841.1758
+40967.66794585972 4.2000875 2835.468
+40968.66794590722 4.2001662 2835.8613
+40969.66794595472 4.200048 2827.792
+40970.66794600221 4.200048 2829.7603
+40971.66794604971 4.2001266 2825.2332
+40972.66794609721 4.2001662 2824.8398
+40973.66794614471 4.2000875 2820.1162
+40974.6679461922 4.2001266 2816.1799
+40975.6679462397 4.2001266 2813.6211
+40976.6679462872 4.2001266 2812.637
+40977.6679463347 4.200048 2807.323
+40978.66794638219 4.2001662 2804.9612
+40979.66794642969 4.200048 2800.6311
+40980.66794647719 4.2000089 2791.9712
+40981.66794652469 4.2002058 2795.5142
+40982.66794657218 4.2002449 2793.1521
+40983.66794661968 4.2002449 2787.8381
+40984.66794666718 4.2002845 2786.0667
+40985.66794671468 4.200048 2779.1782
+40986.66794676217 4.2001266 2778.9812
+40987.66794680967 4.2001662 2771.1086
+40988.66794685717 4.2001266 2773.4705
+40989.66794690466 4.2002058 2770.9116
+40990.66794695216 4.2001662 2765.5977
+40991.66794699966 4.200048 2762.2517
+40992.66794704716 4.2001662 2760.2834
+40993.66794709465 4.2002449 2761.2676
+40994.66794714215 4.2000875 2755.7568
+40995.66794718965 4.2002058 2754.7727
+40996.66794723715 4.2002449 2746.8999
+40997.66794728464 4.2001266 2744.9316
+40998.66794733214 4.200048 2743.9478
+40999.66794737964 4.2001662 2740.6018
+41000.66794742714 4.2001662 2735.6814
+41001.66794747463 4.2001662 2732.7292
+41002.66794752213 4.2001266 2731.7451
+41003.66794756963 4.2000875 2725.447
+41004.66794761713 4.2000875 2724.0693
+41005.66794766462 4.2000875 2722.1011
+41006.66794771212 4.2001662 2718.3616
+41007.66794775962 4.2001662 2717.1807
+41008.66794780712 4.200048 2709.5049
+41009.66794785461 4.2001662 2708.7175
+41010.66794790211 4.2001662 2706.3557
+41011.66794794961 4.2001662 2704.3875
+41012.66794799711 4.2001662 2700.4512
+41013.6679480446 4.2001266 2694.9402
+41014.6679480921 4.2001266 2694.3499
+41015.6679481396 4.2002058 2687.4612
+41016.6679481871 4.2001662 2688.6421
+41017.66794823459 4.2002449 2684.312
+41018.66794828209 4.2001662 2681.1631
+41019.66794832959 4.2000089 2674.668
+41020.66794837709 4.2000875 2673.0935
+41021.66794842458 4.2001662 2675.0618
+41022.66794847208 4.2002058 2668.3699
+41023.66794851958 4.2000875 2661.678
+41024.66794856708 4.2001266 2659.71
+41025.66794861457 4.2000875 2660.4973
+41026.66794866207 4.2002058 2657.5452
+41027.66794870957 4.2000875 2655.5769
+41028.66794875707 4.2002058 2650.8533
+41029.66794880456 4.2001266 2646.72
+41030.66794885206 4.2001266 2644.9487
+41031.66794889956 4.2001662 2642.3899
+41032.66794894706 4.2002449 2638.6504
+41033.66794899455 4.2000875 2637.0759
+41034.66794904205 4.2002058 2634.1238
+41035.66794908955 4.2002058 2630.1875
+41036.66794913705 4.2000875 2625.6604
+41037.66794918454 4.2000875 2623.8894
+41038.66794923204 4.2002058 2619.1658
+41039.66794927954 4.2001266 2616.6072
+41040.66794932703 4.2001266 2615.623
+41041.66794937453 4.2002058 2612.2771
+41042.66794942203 4.2002058 2610.1121
+41043.66794946953 4.2000875 2602.2395
+41044.66794951702 4.2002058 2597.7124
+41045.66794956452 4.2001266 2601.4521
+41046.66794961202 4.2000875 2592.2017
+41047.66794965952 4.2000875 2593.3826
+41048.66794970701 4.2000875 2592.5955
+41049.66794975451 4.2000875 2587.0842
+41050.66794980201 4.2001266 2583.1479
+41051.66794984951 4.2001266 2581.7703
+41052.667949897 4.2000875 2578.6213
+41053.6679499445 4.200048 2575.866
+41054.667949992 4.2002058 2572.7166
+41055.6679500395 4.2001266 2571.7327
+41056.66795008699 4.2001266 2569.9614
+41057.66795013449 4.2000875 2564.2537
+41058.66795018199 4.2001266 2562.2856
+41059.66795022949 4.2001266 2556.9714
+41060.66795027698 4.200048 2552.6416
+41061.66795032448 4.2002058 2552.2478
+41062.66795037198 4.2000875 2549.886
+41063.66795041948 4.2001266 2548.3115
+41064.66795046697 4.2000875 2545.3591
+41065.66795051447 4.2001266 2541.6196
+41066.66795056197 4.2001662 2540.0449
+41067.66795060947 4.2000875 2533.9438
+41068.66795065696 4.2001266 2533.55
+41069.66795070446 4.200048 2527.6458
+41070.66795075196 4.2001662 2528.0391
+41071.66795079946 4.2000875 2523.1187
+41072.66795084695 4.2001266 2517.2144
+41073.66795089445 4.2000875 2518.395
+41074.66795094195 4.200048 2515.4429
+41075.66795098945 4.2002058 2515.8364
+41076.66795103694 4.2002058 2507.5703
+41077.66795108444 4.2000875 2509.1448
+41078.66795113194 4.200048 2502.6499
+41079.66795117944 4.2001266 2499.1072
+41080.66795122693 4.2001266 2503.2402
+41081.66795127443 4.2001266 2498.7134
+41082.66795132193 4.2002058 2494.9741
+41083.66795136943 4.2001662 2492.6121
+41084.66795141692 4.2000875 2489.2664
+41085.66795146442 4.2001266 2485.5269
+41086.66795151192 4.2001662 2482.1809
+41087.66795155942 4.2000875 2478.835
+41088.66795160691 4.200048 2473.521
+41089.66795165441 4.2002058 2476.0796
+41090.66795170191 4.2002058 2474.1113
+41091.6679517494 4.2001266 2467.8132
+41092.6679517969 4.2001266 2467.6165
+41093.6679518444 4.2001266 2463.2864
+41094.6679518919 4.2001662 2460.7278
+41095.66795193939 4.2001662 2459.3501
+41096.66795198689 4.2001266 2454.8232
+41097.66795203439 4.2001662 2455.8074
+41098.66795208189 4.2001662 2451.2805
+41099.66795212938 4.2001662 2447.3442
+41100.66795217688 4.2002058 2445.376
+41101.66795222438 4.2001662 2439.4714
+41102.66795227188 4.2000875 2437.897
+41103.66795231937 4.2002058 2435.9287
+41104.66795236687 4.200048 2433.9607
+41105.66795241437 4.2000089 2432.5828
+41106.66795246187 4.200048 2425.8911
+41107.66795250936 4.2000875 2425.6943
+41108.66795255686 4.2001266 2422.3484
+41109.66795260436 4.2002058 2421.5613
+41110.66795265186 4.200048 2419.0024
+41111.66795269935 4.2002449 2416.2471
+41112.66795274685 4.2000875 2414.082
+41113.66795279435 4.2001662 2411.5234
+41114.66795284185 4.2001662 2407.9807
+41115.66795288934 4.2001266 2406.603
+41116.66795293684 4.2001266 2399.3208
+41117.66795298434 4.2001662 2400.1079
+41118.66795303184 4.2001662 2394.7939
+41119.66795307933 4.2001266 2393.613
+41120.66795312683 4.2000875 2392.4321
+41121.66795317433 4.2001266 2388.8894
+41122.66795322183 4.2001266 2382.001
+41123.66795326932 4.2000089 2380.4263
+41124.66795331682 4.2001662 2378.0645
+41125.66795336432 4.2002058 2376.8835
+41126.66795341182 4.2001266 2373.144
+41127.66795345931 4.200048 2368.814
+41128.66795350681 4.2001266 2370.1919
+41129.66795355431 4.2001662 2365.2712
+41130.66795360181 4.2002058 2364.0906
+41131.6679536493 4.2001662 2357.2019
+41132.6679536968 4.2001662 2357.989
+41133.6679537443 4.2002058 2355.6272
+41134.6679537918 4.2001662 2350.707
+41135.66795383929 4.2001662 2351.1006
+41136.66795388679 4.2001662 2349.5261
+41137.66795393429 4.200048 2343.2278
+41138.66795398179 4.2001662 2343.8184
+41139.66795402928 4.2000089 2338.1106
+41140.66795407678 4.2002449 2337.3232
+41141.66795412428 4.2001662 2335.9458
+41142.66795417177 4.200048 2332.2061
+41143.66795421927 4.2000875 2326.8921
+41144.66795426677 4.200048 2324.3333
+41145.66795431427 4.2001662 2323.7429
+41146.66795436176 4.2001266 2321.7749
+41147.66795440926 4.2000875 2320.0034
+41148.66795445676 4.2001662 2314.6895
+41149.66795450426 4.2001662 2313.5083
+41150.66795455175 4.2001662 2310.1626
+41151.66795459925 4.2001662 2310.7529
+41152.66795464675 4.2001266 2303.0771
+41153.66795469425 4.200048 2298.1567
+41154.66795474174 4.2000875 2301.1091
+41155.66795478924 4.200048 2297.5662
+41156.66795483674 4.2002058 2295.4014
+41157.66795488424 4.2001662 2291.6616
+41158.66795493173 4.2001662 2290.4807
+41159.66795497923 4.2000875 2289.103
+41160.66795502673 4.2001266 2287.135
+41161.66795507423 4.2001266 2284.5764
+41162.66795512172 4.2001266 2276.7036
+41163.66795516922 4.200048 2272.5706
+41164.66795521672 4.2001266 2271.5864
+41165.66795526422 4.2001266 2271.5864
+41166.66795531171 4.2002845 2270.6023
+41167.66795535921 4.2001662 2268.4373
+41168.66795540671 4.2000875 2261.9424
+41169.66795545421 4.2001662 2263.3201
+41170.6679555017 4.2000875 2257.8093
+41171.6679555492 4.2000875 2257.2188
+41172.6679555967 4.2001662 2255.8408
+41173.6679556442 4.2001266 2251.9045
+41174.66795569169 4.2001662 2248.165
+41175.66795573919 4.2000875 2248.5588
+41176.66795578669 4.2001266 2247.9683
+41177.66795583419 4.2001266 2241.6702
+41178.66795588168 4.2001266 2238.9148
+41179.66795592918 4.2001662 2238.3242
+41180.66795597668 4.2001662 2235.175
+41181.66795602418 4.2001266 2234.5847
+41182.66795607167 4.2001266 2225.3345
+41183.66795611917 4.2001662 2228.877
+41184.66795616667 4.200048 2221.9885
+41185.66795621417 4.2002058 2223.7598
+41186.66795626166 4.2002449 2220.6106
+41187.66795630916 4.2002058 2216.084
+41188.66795635666 4.2001662 2216.6743
+41189.66795640416 4.2000875 2214.1157
+41190.66795645165 4.2001662 2212.541
+41191.66795649915 4.200048 2208.8018
+41192.66795654665 4.2002449 2203.094
+41193.66795659414 4.2001266 2203.6843
+41194.66795664164 4.2001662 2200.5352
+41195.66795668914 4.2000875 2194.6309
+41196.66795673664 4.2001266 2196.7959
+41197.66795678413 4.2000875 2193.6467
+41198.66795683163 4.200048 2191.4817
+41199.66795687913 4.2001662 2186.7581
+41200.66795692663 4.2000875 2184.0027
+41201.66795697412 4.2002058 2187.3486
+41202.66795702162 4.2001266 2184.593
+41203.66795706912 4.2001662 2179.4758
+41204.66795711662 4.2001266 2174.7522
+41205.66795716411 4.2001266 2173.7681
+41206.66795721161 4.2001266 2172.3904
+41207.66795725911 4.200048 2167.2732
+41208.66795730661 4.200048 2166.6829
+41209.6679573541 4.2001662 2164.321
+41210.6679574016 4.2002058 2162.7463
+41211.6679574491 4.2001266 2157.0388
+41212.6679574966 4.200048 2158.8101
+41213.66795754409 4.2001662 2155.4641
+41214.66795759159 4.2001266 2152.3152
+41215.66795763909 4.200048 2148.5754
+41216.66795768659 4.2000875 2149.5596
+41217.66795773408 4.2002449 2143.655
+41218.66795778158 4.2001266 2141.4902
+41219.66795782908 4.2000875 2140.7029
+41220.66795787658 4.2001266 2133.8142
+41221.66795792407 4.200048 2135.3887
+41222.66795797157 4.2001266 2133.2236
+41223.66795801907 4.2001662 2131.8462
+41224.66795806657 4.2000875 2125.3511
+41225.66795811406 4.2001662 2123.3831
+41226.66795816156 4.2002058 2123.3831
+41227.66795820906 4.2001266 2120.4307
+41228.66795825656 4.2002058 2119.8403
+41229.66795830405 4.2002058 2115.9038
+41230.66795835155 4.2000875 2113.5422
+41231.66795839905 4.200048 2110.7866
+41232.66795844655 4.2001266 2109.2122
+41233.66795849404 4.200048 2104.6853
+41234.66795854154 4.2000875 2103.7012
+41235.66795858904 4.2001266 2103.8982
+41236.66795863654 4.2000875 2101.7332
+41237.66795868403 4.2000875 2092.8762
+41238.66795873153 4.2001266 2092.2859
+41239.66795877903 4.2000089 2093.6636
+41240.66795882653 4.200048 2088.9399
+41241.66795887402 4.2001662 2085.3972
+41242.66795892152 4.2001266 2083.429
+41243.66795896902 4.2001266 2084.6099
+41244.66795901651 4.2001266 2081.2639
+41245.66795906401 4.200048 2078.9023
+41246.66795911151 4.2002058 2072.2104
+41247.66795915901 4.200048 2073.3914
+41248.6679592065 4.2001266 2074.1787
+41249.667959254 4.200048 2066.5027
+41250.6679593015 4.2001662 2069.6519
+41251.667959349 4.2002449 2061.9758
+41252.66795939649 4.2002058 2063.7473
+41253.66795944399 4.2001662 2060.4014
+41254.66795949149 4.2002058 2057.646
+41255.66795953899 4.200048 2057.0557
+41256.66795958648 4.2001266 2055.2842
+41257.66795963398 4.200048 2045.837
+41258.66795968148 4.200048 2047.8052
+41259.66795972898 4.2000875 2049.1829
+41260.66795977647 4.2002058 2044.0657
+41261.66795982397 4.2001662 2039.9325
+41262.66795987147 4.2001266 2038.3579
+41263.66795991897 4.2001662 2039.7357
+41264.66795996646 4.2001266 2034.8152
+41265.66796001396 4.2000875 2032.0598
+41266.66796006146 4.2001662 2029.1074
+41267.66796010896 4.200048 2028.1234
+41268.66796015645 4.2001266 2023.9902
+41269.66796020395 4.2000875 2023.3999
+41270.66796025145 4.2001266 2017.6921
+41271.66796029895 4.2000875 2018.6761
+41272.66796034644 4.2001266 2019.4634
+41273.66796039394 4.2002058 2010.2131
+41274.66796044144 4.2000875 2009.4259
+41275.66796048894 4.200048 2011.0002
+41276.66796053643 4.2001266 2010.0162
+41277.66796058393 4.2001662 2001.9468
+41278.66796063143 4.2001266 2000.7659
+41279.66796067893 4.2001266 2001.3563
+41280.66796072642 4.2000089 1999.1913
+41281.66796077392 4.2001662 1997.8135
+41282.66796082142 4.2001662 1996.0422
+41283.66796086892 4.2001662 1994.2709
+41284.66796091641 4.2000875 1987.3822
+41285.66796096391 4.2001662 1989.5472
+41286.66796101141 4.2001266 1981.6746
+41287.66796105891 4.2000875 1985.2173
+41288.6679611064 4.2000875 1979.5095
+41289.6679611539 4.2002058 1980.2969
+41290.6679612014 4.2001266 1977.9351
+41291.6679612489 4.2001662 1976.5574
+41292.66796129639 4.2000875 1972.621
+41293.66796134389 4.2001266 1972.621
+41294.66796139139 4.2001266 1969.2751
+41295.66796143889 4.2001662 1964.5514
+41296.66796148638 4.2000875 1964.7483
+41297.66796153388 4.2001662 1961.2056
+41298.66796158138 4.2000875 1953.1361
+41299.66796162887 4.2001266 1957.2693
+41300.66796167637 4.200048 1956.8756
+41301.66796172387 4.200048 1952.5455
+41302.66796177137 4.2001662 1952.5455
+41303.66796181886 4.2000875 1949.9869
+41304.66796186636 4.2001266 1948.6093
+41305.66796191386 4.2001266 1944.6729
+41306.66796196136 4.2001662 1944.2793
+41307.66796200885 4.2000875 1941.9175
+41308.66796205635 4.2001662 1938.5715
+41309.66796210385 4.2001266 1935.6194
+41310.66796215135 4.2001662 1931.6829
+41311.66796219884 4.2001662 1930.502
+41312.66796224634 4.2001662 1931.2894
+41313.66796229384 4.2001266 1928.9275
+41314.66796234134 4.200048 1922.0389
+41315.66796238883 4.2001266 1919.4803
+41316.66796243633 4.2000875 1922.2357
+41317.66796248383 4.2001266 1919.8739
+41318.66796253133 4.2000875 1915.1504
+41319.66796257882 4.200048 1914.5598
+41320.66796262632 4.2001266 1913.5758
+41321.66796267382 4.2002058 1912.0012
+41322.66796272132 4.2001266 1903.3412
+41323.66796276881 4.200048 1904.5221
+41324.66796281631 4.2000875 1902.9476
+41325.66796286381 4.2001266 1900.1921
+41326.66796291131 4.2001662 1899.7986
+41327.6679629588 4.2000875 1894.8781
+41328.6679630063 4.2001266 1894.6813
+41329.6679630538 4.2000875 1893.6971
+41330.6679631013 4.2001266 1889.9578
+41331.66796314879 4.2001662 1890.1545
+41332.66796319629 4.2001266 1886.2181
+41333.66796324379 4.2001266 1883.2659
+41334.66796329129 4.1999693 1882.8722
+41335.66796333878 4.2001266 1878.1487
+41336.66796338628 4.2002058 1880.5105
+41337.66796343378 4.2001266 1874.0156
+41338.66796348128 4.2002058 1874.4091
+41339.66796352877 4.2001662 1871.8506
+41340.66796357627 4.2001662 1869.0951
+41341.66796362377 4.2001266 1868.8982
+41342.66796367127 4.2001662 1862.2064
+41343.66796371876 4.2001266 1866.9301
+41344.66796376626 4.2001662 1860.632
+41345.66796381376 4.2000875 1859.2542
+41346.66796386126 4.2001266 1856.8923
+41347.66796390875 4.2000875 1854.9242
+41348.66796395625 4.200048 1851.3815
+41349.66796400375 4.2000875 1851.5782
+41350.66796405124 4.2001266 1849.807
+41351.66796409874 4.2000875 1845.0834
+41352.66796414624 4.2001266 1844.6898
+41353.66796419374 4.200048 1838.9821
+41354.66796424123 4.2002058 1841.1471
+41355.66796428873 4.2002058 1840.5565
+41356.66796433623 4.2001662 1838.3915
+41357.66796438373 4.2000875 1835.4393
+41358.66796443122 4.200048 1832.2903
+41359.66796447872 4.2000875 1830.5189
+41360.66796452622 4.200048 1827.7634
+41361.66796457372 4.200048 1826.5825
+41362.66796462121 4.2001662 1822.843
+41363.66796466871 4.200048 1821.2684
+41364.66796471621 4.2001662 1817.9225
+41365.66796476371 4.2001266 1819.3003
+41366.6679648112 4.2001662 1817.5289
+41367.6679648587 4.2001662 1813.7894
+41368.6679649062 4.2001662 1813.5925
+41369.6679649537 4.2001662 1811.6244
+41370.66796500119 4.2001662 1809.4595
+41371.66796504869 4.2001266 1806.7041
+41372.66796509619 4.2001662 1805.1294
+41373.66796514369 4.2001266 1796.6664
+41374.66796519118 4.2001662 1799.8154
+41375.66796523868 4.2002058 1796.6664
+41376.66796528618 4.2000875 1793.9108
+41377.66796533368 4.2001662 1794.6981
+41378.66796538117 4.2000875 1791.3523
+41379.66796542867 4.2002058 1789.1873
+41380.66796547617 4.2000875 1787.4158
+41381.66796552367 4.2000875 1784.0699
+41382.66796557116 4.2001662 1784.0699
+41383.66796561866 4.200048 1782.1018
+41384.66796566616 4.200048 1777.9686
+41385.66796571366 4.2001662 1777.3783
+41386.66796576115 4.200048 1775.6068
+41387.66796580865 4.2001266 1771.4736
+41388.66796585615 4.2002058 1771.8673
+41389.66796590365 4.2000875 1764.9788
+41390.66796595114 4.2001266 1766.3564
+41391.66796599864 4.2000089 1764.585
+41392.66796604614 4.2002058 1760.255
+41393.66796609364 4.2001266 1761.6328
+41394.66796614113 4.2001662 1759.0742
+41395.66796618863 4.2001266 1757.106
+41396.66796623613 4.200048 1753.1697
+41397.66796628363 4.2001266 1754.3506
+41398.66796633112 4.2001662 1751.0046
+41399.66796637862 4.2001662 1749.627
+41400.66796642612 4.2001662 1747.6588
+41401.66796647361 4.2001266 1742.7384
+41402.66796652111 4.2001662 1743.5256
+41403.66796656861 4.2000875 1739.786
+41404.66796661611 4.2001662 1736.637
+41405.6679666636 4.2001662 1739.1957
+41406.6679667111 4.2000875 1735.8497
+41407.6679667586 4.2000875 1735.8497
+41408.6679668061 4.2001662 1729.7485
+41409.66796685359 4.200048 1726.0089
+41410.66796690109 4.2001662 1728.3707
+41411.66796694859 4.2001662 1727.9771
+41412.66796699609 4.2001662 1724.0408
+41413.66796704358 4.2001662 1721.4821
+41414.66796709108 4.2000875 1716.7585
+41415.66796713858 4.2001266 1715.9712
+41416.66796718608 4.2000875 1716.5616
+41417.66796723357 4.2000875 1713.6094
+41418.66796728107 4.2000875 1711.6412
+41419.66796732857 4.2001266 1711.838
+41420.66796737607 4.2002449 1709.4762
+41421.66796742356 4.200048 1704.5558
+41422.66796747106 4.2001266 1704.1621
+41423.66796751856 4.2001266 1702.5876
+41424.66796756606 4.2000875 1700.8163
+41425.66796761355 4.2000875 1700.4227
+41426.66796766105 4.2000875 1694.5181
+41427.66796770855 4.2002058 1696.2894
+41428.66796775605 4.2000875 1691.9595
+41429.66796780354 4.2002058 1693.3372
+41430.66796785104 4.2000875 1690.5818
+41431.66796789854 4.2000089 1688.0232
+41432.66796794604 4.2001662 1686.6454
+41433.66796799353 4.2000875 1684.0869
+41434.66796804103 4.2000875 1678.7728
+41435.66796808853 4.2000875 1680.741
+41436.66796813603 4.2001266 1677.9855
+41437.66796818352 4.2002058 1677.1982
+41438.66796823102 4.2001266 1673.4586
+41439.66796827852 4.2000875 1668.7351
+41440.66796832602 4.2001266 1672.2778
+41441.66796837351 4.2000875 1668.1445
+41442.66796842101 4.2002058 1668.9319
+41443.66796846851 4.2002058 1667.5542
+41444.66796851601 4.2002058 1664.2083
+41445.6679685635 4.2001662 1663.0273
+41446.667968611 4.2002449 1660.6655
+41447.6679686585 4.2001662 1660.8623
+41448.667968706 4.200048 1657.1229
+41449.66796875349 4.2002058 1655.1547
+41450.66796880099 4.2001662 1652.793
+41451.66796884849 4.2001662 1651.8087
+41452.66796889598 4.2000875 1649.447
+41453.66796894348 4.200048 1649.8406
+41454.66796899098 4.2002058 1645.5106
+41455.66796903848 4.2001662 1642.952
+41456.66796908597 4.2000089 1641.3774
+41457.66796913347 4.2001266 1634.4888
+41458.66796918097 4.2000875 1635.2761
+41459.66796922847 4.2000875 1636.2603
+41460.66796927596 4.2001662 1634.4888
+41461.66796932346 4.2001266 1632.1271
+41462.66796937096 4.2001662 1631.7334
+41463.66796941846 4.2001662 1628.7813
+41464.66796946595 4.2001266 1624.0575
+41465.66796951345 4.2001266 1625.4353
+41466.66796956095 4.2001266 1623.4672
+41467.66796960845 4.2000875 1622.2863
+41468.66796965594 4.1999693 1618.9403
+41469.66796970344 4.2000875 1616.3816
+41470.66796975094 4.2000875 1613.2325
+41471.66796979844 4.2002449 1610.8707
+41472.66796984593 4.2000875 1611.8549
+41473.66796989343 4.2001662 1610.674
+41474.66796994093 4.2000089 1605.9504
+41475.66796998843 4.2001662 1606.9344
+41476.66797003592 4.2001662 1603.9822
+41477.66797008342 4.2001266 1604.179
+41478.66797013092 4.2001266 1598.4713
+41479.66797017842 4.2001662 1600.0458
+41480.66797022591 4.200048 1595.9127
+41481.66797027341 4.2001266 1595.3223
+41482.66797032091 4.2001266 1591.3859
+41483.66797036841 4.2001662 1593.354
+41484.6679704159 4.2001266 1590.5986
+41485.6679704634 4.2001266 1588.6305
+41486.6679705109 4.2002058 1586.2687
+41487.6679705584 4.2001266 1582.7258
+41488.66797060589 4.2001662 1583.5131
+41489.66797065339 4.2001662 1582.1355
+41490.66797070089 4.2001662 1581.7418
+41491.66797074839 4.2000875 1577.6086
+41492.66797079588 4.2001662 1578.3959
+41493.66797084338 4.2002058 1574.6565
+41494.66797089088 4.200048 1571.5074
+41495.66797093838 4.2000089 1570.72
+41496.66797098587 4.2001662 1570.9169
+41497.66797103337 4.2000875 1564.0282
+41498.66797108087 4.2000875 1568.5551
+41499.66797112837 4.2000875 1561.8632
+41500.66797117586 4.2001266 1563.8315
+41501.66797122336 4.2001662 1560.8792
+41502.66797127086 4.2000875 1558.1238
+41503.66797131835 4.2000875 1553.9906
+41504.66797136585 4.2000875 1556.3523
+41505.66797141335 4.200048 1552.8097
+41506.66797146085 4.2001662 1553.9906
+41507.66797150834 4.2001662 1550.6448
+41508.66797155584 4.2000875 1546.3147
+41509.66797160334 4.2001266 1547.6924
+41510.66797165084 4.200048 1546.5116
+41511.66797169833 4.2001662 1540.6071
+41512.66797174583 4.2001266 1539.6229
+41513.66797179333 4.2000875 1535.293
+41514.66797184083 4.2001662 1541.1974
+41515.66797188832 4.2001662 1537.4579
+41516.66797193582 4.2000875 1532.3407
+41517.66797198332 4.2002058 1535.0961
+41518.66797203082 4.200048 1529.7821
+41519.66797207831 4.2002058 1529.5852
+41520.66797212581 4.2001266 1527.2234
+41521.66797217331 4.2001266 1527.814
+41522.66797222081 4.2002058 1525.6489
+41523.6679722683 4.2001266 1523.8774
+41524.6679723158 4.2000089 1517.5793
+41525.6679723633 4.2002449 1518.5635
+41526.6679724108 4.2001266 1517.973
+41527.66797245829 4.2000875 1514.0367
+41528.66797250579 4.2001662 1515.2175
+41529.66797255329 4.2001266 1513.0525
+41530.66797260079 4.2001662 1511.0844
+41531.66797264828 4.2001662 1507.345
+41532.66797269578 4.2002058 1505.5735
+41533.66797274328 4.2000875 1505.5735
+41534.66797279078 4.2001266 1503.999
+41535.66797283827 4.2001266 1502.0309
+41536.66797288577 4.2001662 1502.6212
+41537.66797293327 4.2001662 1498.4882
+41538.66797298077 4.2001266 1494.1582
+41539.66797302826 4.2002058 1495.9294
+41540.66797307576 4.2001662 1493.9613
+41541.66797312326 4.2000875 1492.3867
+41542.66797317076 4.2002449 1490.4186
+41543.66797321825 4.2001662 1489.0409
+41544.66797326575 4.2000875 1488.4504
+41545.66797331325 4.2000875 1483.7267
+41546.66797336075 4.2001662 1485.6951
+41547.66797340824 4.2000875 1480.7745
+41548.66797345574 4.2000875 1478.4127
+41549.66797350324 4.2000875 1478.0192
+41550.66797355074 4.2001266 1475.0668
+41551.66797359823 4.2001662 1477.035
+41552.66797364573 4.2000875 1475.2637
+41553.66797369323 4.2001266 1470.5402
+41554.66797374072 4.2001266 1470.7368
+41555.66797378822 4.2002449 1469.3591
+41556.66797383572 4.2000875 1466.4069
+41557.66797388322 4.2001662 1465.8164
+41558.66797393071 4.2002058 1466.0133
+41559.66797397821 4.2001266 1463.4546
+41560.66797402571 4.2000875 1454.2042
+41561.66797407321 4.2000875 1460.8961
+41562.6679741207 4.2000875 1455.3851
+41563.6679741682 4.2001266 1453.6138
+41564.6679742157 4.200048 1454.9915
+41565.6679742632 4.2001266 1451.8424
+41566.66797431069 4.2001662 1452.2361
+41567.66797435819 4.2001266 1447.7094
+41568.66797440569 4.2001662 1448.1028
+41569.66797445319 4.2001266 1441.8047
+41570.66797450068 4.2001662 1443.9697
+41571.66797454818 4.2002058 1442.5919
+41572.66797459568 4.2000875 1439.0493
+41573.66797464318 4.2001266 1439.0493
+41574.66797469067 4.2002058 1438.262
+41575.66797473817 4.2002449 1435.7034
+41576.66797478567 4.2001662 1434.1288
+41577.66797483317 4.2001266 1433.932
+41578.66797488066 4.2002845 1434.3257
+41579.66797492816 4.2001266 1429.9957
+41580.66797497566 4.2002058 1427.437
+41581.66797502316 4.200048 1426.6498
+41582.66797507065 4.2001266 1426.0594
+41583.66797511815 4.2001662 1421.7294
+41584.66797516565 4.2001266 1420.942
+41585.66797521315 4.2001266 1421.9261
+41586.66797526064 4.2000875 1415.8248
+41587.66797530814 4.2000875 1415.0376
+41588.66797535564 4.2000089 1414.6439
+41589.66797540314 4.2001266 1410.5107
+41590.66797545063 4.2000089 1412.0853
+41591.66797549813 4.2000875 1407.9521
+41592.66797554563 4.2001266 1409.9204
+41593.66797559313 4.2000875 1408.7395
+41594.66797564062 4.2001662 1404.6062
+41595.66797568812 4.2001266 1405.7871
+41596.66797573562 4.2001266 1403.0317
+41597.66797578312 4.2001266 1403.2286
+41598.66797583061 4.2001266 1398.3081
+41599.66797587811 4.2001266 1400.6699
+41600.66797592561 4.2002058 1396.9304
+41601.66797597311 4.2001662 1394.7655
+41602.6679760206 4.200048 1391.4196
+41603.6679760681 4.2000875 1389.4513
+41604.6679761156 4.2001662 1388.2705
+41605.66797616309 4.200048 1388.6641
+41606.66797621059 4.2000875 1386.6959
+41607.66797625809 4.2001662 1387.2863
+41608.66797630559 4.2001662 1387.0896
+41609.66797635308 4.2001662 1382.9563
+41610.66797640058 4.200048 1380.9882
+41611.66797644808 4.2001662 1379.2168
+41612.66797649558 4.2000875 1378.2328
+41613.66797654307 4.2001662 1376.2646
+41614.66797659057 4.2001662 1372.1313
+41615.66797663807 4.2000875 1373.5092
+41616.66797668557 4.200048 1372.3282
+41617.66797673306 4.2001266 1372.1313
+41618.66797678056 4.2001662 1367.4078
+41619.66797682806 4.2000875 1368.7854
+41620.66797687556 4.2001266 1367.9982
+41621.66797692305 4.2001662 1365.8333
+41622.66797697055 4.2000875 1360.1255
+41623.66797701805 4.2001266 1361.1097
+41624.66797706555 4.2002058 1359.1414
+41625.66797711304 4.2001662 1356.7797
+41626.66797716054 4.2001266 1357.3701
+41627.66797720804 4.2000089 1353.4338
+41628.66797725554 4.2002449 1354.6147
+41629.66797730303 4.2001266 1347.923
+41630.66797735053 4.2001662 1350.4814
+41631.66797739803 4.2000875 1350.2848
+41632.66797744553 4.2001662 1347.3324
+41633.66797749302 4.2001662 1346.9388
+41634.66797754052 4.2001266 1343.5929
+41635.66797758802 4.2002058 1344.3801
+41636.66797763552 4.2000875 1341.8215
+41637.66797768301 4.2001266 1337.8853
+41638.66797773051 4.2001266 1338.8693
+41639.66797777801 4.2000875 1334.7361
+41640.66797782551 4.2001662 1334.7361
+41641.667977873 4.2001266 1331.1934
+41642.6679779205 4.2000089 1331.587
+41643.667977968 4.2000875 1332.1775
+41644.6679780155 4.2001662 1327.454
+41645.66797806299 4.2002058 1328.0443
+41646.66797811049 4.2001266 1326.0762
+41647.66797815799 4.2001266 1325.4856
+41648.66797820549 4.2001662 1321.943
+41649.66797825298 4.2001662 1322.3365
+41650.66797830048 4.2001266 1321.3525
+41651.66797834798 4.2002058 1319.1875
+41652.66797839548 4.2000875 1316.8257
+41653.66797844297 4.2001266 1315.0544
+41654.66797849047 4.200048 1310.7244
+41655.66797853797 4.2002058 1314.6606
+41656.66797858546 4.2000875 1308.7562
+41657.66797863296 4.2001662 1309.1498
+41658.66797868046 4.2001662 1311.5116
+41659.66797872796 4.2001662 1304.6232
+41660.66797877545 4.2002058 1307.3785
+41661.66797882295 4.2000875 1304.8198
+41662.66797887045 4.2000875 1302.6548
+41663.66797891795 4.2001662 1304.8198
+41664.66797896544 4.2000875 1300.2931
+41665.66797901294 4.2001266 1300.2931
+41666.66797906044 4.2000875 1300.0963
+41667.66797910794 4.2002058 1297.5376
+41668.66797915543 4.2001266 1292.8141
+41669.66797920293 4.2001662 1294.1918
+41670.66797925043 4.2000875 1293.6013
+41671.66797929793 4.2002058 1290.2554
+41672.66797934542 4.2001266 1290.4523
+41673.66797939292 4.2000875 1288.6808
+41674.66797944042 4.2001266 1285.7286
+41675.66797948792 4.2002058 1285.335
+41676.66797953541 4.2001266 1280.6115
+41677.66797958291 4.2001266 1283.1699
+41678.66797963041 4.2001662 1277.6592
+41679.66797967791 4.2001266 1278.2495
+41680.6679797254 4.2001266 1274.9037
+41681.6679797729 4.2001662 1275.6909
+41682.6679798204 4.2000875 1272.9355
+41683.6679798679 4.2002058 1274.9037
+41684.66797991539 4.2003236 1269.5896
+41685.66797996289 4.2002449 1272.7386
+41686.66798001039 4.2001266 1268.2118
+41687.66798005789 4.2000875 1268.9993
+41688.66798010538 4.2002058 1266.6373
+41689.66798015288 4.2002058 1264.6692
+41690.66798020038 4.2001266 1264.4724
+41691.66798024788 4.2001662 1261.1265
+41692.66798029537 4.2001662 1261.3234
+41693.66798034287 4.2001266 1256.5996
+41694.66798039037 4.2000875 1254.041
+41695.66798043787 4.2002058 1253.6475
+41696.66798048536 4.2000875 1249.908
+41697.66798053286 4.2002058 1252.2697
+41698.66798058036 4.200048 1249.5143
+41699.66798062786 4.200048 1245.9716
+41700.66798067535 4.2000875 1247.7429
+41701.66798072285 4.2002058 1246.3651
+41702.66798077035 4.2000875 1243.8065
+41703.66798081785 4.2001266 1244.7906
+41704.66798086534 4.200048 1241.0511
+41705.66798091284 4.2001266 1243.0193
+41706.66798096034 4.2002058 1240.4607
+41707.66798100783 4.2001266 1235.7371
+41708.66798105533 4.2001662 1233.1785
+41709.66798110283 4.2002058 1234.3593
+41710.66798115033 4.2001662 1233.3752
+41711.66798119782 4.2001662 1231.2102
+41712.66798124532 4.2002449 1229.2421
+41713.66798129282 4.2002058 1231.4071
+41714.66798134032 4.200048 1229.439
+41715.66798138781 4.2000875 1226.8802
+41716.66798143531 4.2002058 1220.3853
+41717.66798148281 4.2000875 1222.3535
+41718.66798153031 4.2001662 1222.3535
+41719.6679815778 4.2001662 1221.9598
+41720.6679816253 4.2001266 1218.8108
+41721.6679816728 4.2001266 1217.2362
+41722.6679817203 4.2001662 1220.1885
+41723.66798176779 4.2000089 1214.6776
+41724.66798181529 4.2001266 1214.6776
+41725.66798186279 4.2001662 1214.8744
+41726.66798191029 4.2001662 1211.3317
+41727.66798195778 4.2002058 1210.5444
+41728.66798200528 4.2001266 1207.1986
+41729.66798205278 4.2001662 1207.1986
+41730.66798210028 4.2000875 1206.8049
+41731.66798214777 4.2001266 1202.8687
+41732.66798219527 4.2002845 1205.8208
+41733.66798224277 4.2002058 1203.2622
+41734.66798229027 4.2001662 1198.7354
+41735.66798233776 4.2001266 1201.8845
+41736.66798238526 4.2002058 1196.7672
+41737.66798243276 4.2001266 1196.3735
+41738.66798248026 4.2001662 1192.4373
+41739.66798252775 4.2001266 1196.3735
+41740.66798257525 4.200048 1192.4373
+41741.66798262275 4.2000875 1188.1073
+41742.66798267025 4.2002058 1191.2563
+41743.66798271774 4.2001662 1188.8945
+41744.66798276524 4.2000089 1186.3359
+41745.66798281274 4.2002058 1185.7455
+41746.66798286024 4.2001662 1184.9583
+41747.66798290773 4.2001266 1183.5804
+41748.66798295523 4.2001266 1180.8251
+41749.66798300273 4.200048 1179.0536
+41750.66798305023 4.2002058 1179.0536
+41751.66798309772 4.2001266 1177.4791
+41752.66798314522 4.2002449 1174.9205
+41753.66798319272 4.2001266 1179.2505
+41754.66798324022 4.200048 1171.9683
+41755.66798328771 4.200048 1170.3937
+41756.66798333521 4.2000089 1170.3937
+41757.66798338271 4.2001266 1165.4733
+41758.6679834302 4.2002845 1168.4255
+41759.6679834777 4.2001662 1166.2605
+41760.6679835252 4.2001266 1166.4574
+41761.6679835727 4.2002449 1165.2765
+41762.66798362019 4.200048 1157.207
+41763.66798366769 4.2002449 1159.9624
+41764.66798371519 4.2002449 1159.9624
+41765.66798376269 4.2000089 1157.0101
+41766.66798381018 4.2002058 1157.4038
+41767.66798385768 4.2001662 1156.6166
+41768.66798390518 4.2001662 1156.0261
+41769.66798395268 4.2001266 1155.042
+41770.66798400017 4.2001266 1155.042
+41771.66798404767 4.2001266 1150.712
+41772.66798409517 4.2002058 1150.5151
+41773.66798414267 4.2000875 1147.1693
+41774.66798419016 4.2000089 1146.7756
+41775.66798423766 4.2001662 1147.9565
+41776.66798428516 4.2000875 1145.7916
+41777.66798433266 4.2001266 1143.6266
+41778.66798438015 4.2000875 1140.2806
+41779.66798442765 4.2001662 1139.8871
+41780.66798447515 4.2001266 1141.6583
+41781.66798452265 4.2001662 1139.6902
+41782.66798457014 4.2001266 1136.9348
+41783.66798461764 4.200048 1135.1635
+41784.66798466514 4.2001662 1136.1476
+41785.66798471264 4.2002449 1134.3762
+41786.66798476013 4.2002058 1134.1793
+41787.66798480763 4.2001266 1131.8175
+41788.66798485513 4.2000875 1129.0621
+41789.66798490263 4.2001662 1130.4398
+41790.66798495012 4.2002449 1129.4557
+41791.66798499762 4.2000875 1125.3226
+41792.66798504512 4.2000875 1127.6843
+41793.66798509262 4.2001266 1122.3704
+41794.66798514011 4.2002058 1122.5671
+41795.66798518761 4.2000875 1122.7639
+41796.66798523511 4.2001662 1118.8276
+41797.66798528261 4.2001662 1121.9767
+41798.6679853301 4.2002449 1119.8116
+41799.6679853776 4.200048 1115.4817
+41800.6679854251 4.2001662 1115.8754
+41801.6679854726 4.2001266 1112.5294
+41802.66798552009 4.2001662 1112.5294
+41803.66798556759 4.2001266 1109.9708
+41804.66798561509 4.2000875 1109.5771
+41805.66798566259 4.2002058 1108.593
+41806.66798571008 4.2001266 1106.6249
+41807.07798572956 4.2001662 1102.8854
+41807.07998572965 4.2000875 1103.4758
+41807.12998573203 4.189497 0.0
+41808.12998577952 4.1889067 0.0
+41809.12998582702 4.1886311 0.0
+41810.12998587452 4.1884341 0.0
+41811.12998592202 4.1882768 0.0
+41812.12998596951 4.1881189 0.0
+41813.12998601701 4.1879225 0.0
+41814.12998606451 4.1878433 0.0
+41815.12998611201 4.187686 0.0
+41816.1299861595 4.1876469 0.0
+41817.129986207 4.187489 0.0
+41818.1299862545 4.187253 0.0
+41819.129986302 4.1873317 0.0
+41820.12998634949 4.1871743 0.0
+41821.12998639699 4.1870956 0.0
+41822.12998644449 4.1869774 0.0
+41823.12998649199 4.1868591 0.0
+41824.12998653948 4.1868591 0.0
+41825.12998658698 4.1867018 0.0
+41826.12998663448 4.1866627 0.0
+41827.12998668198 4.1866231 0.0
+41828.12998672947 4.1864657 0.0
+41829.12998677697 4.1865048 0.0
+41830.12998682447 4.1863475 0.0
+41831.12998687197 4.1862688 0.0
+41832.12998691946 4.1862292 0.0
+41833.12998696696 4.1861901 0.0
+41834.12998701446 4.1861115 0.0
+41835.12998706196 4.1860328 0.0
+41836.12998710945 4.1860328 0.0
+41837.12998715695 4.1858358 0.0
+41838.12998720445 4.1858358 0.0
+41839.12998725194 4.1857963 0.0
+41840.12998729944 4.185678 0.0
+41841.12998734694 4.1856389 0.0
+41842.12998739444 4.1855602 0.0
+41843.12998744193 4.1855206 0.0
+41844.12998748943 4.1855993 0.0
+41845.12998753693 4.1854029 0.0
+41846.12998758443 4.1853633 0.0
+41847.12998763192 4.1854029 0.0
+41848.12998767942 4.1853237 0.0
+41849.12998772692 4.185245 0.0
+41850.12998777442 4.1851664 0.0
+41851.12998782191 4.1850481 0.0
+41852.12998786941 4.1850877 0.0
+41853.12998791691 4.185009 0.0
+41854.12998796441 4.1849694 0.0
+41855.1299880119 4.1848121 0.0
+41856.1299880594 4.1849303 0.0
+41857.1299881069 4.1848121 0.0
+41858.1299881544 4.1847725 0.0
+41859.12998820189 4.1846938 0.0
+41860.12998824939 4.1846938 0.0
+41861.12998829689 4.1846547 0.0
+41862.12998834439 4.184576 0.0
+41863.12998839188 4.184576 0.0
+41864.12998843938 4.1844578 0.0
+41865.12998848688 4.1845365 0.0
+41866.12998853438 4.184576 0.0
+41867.12998858187 4.1844182 0.0
+41868.12998862937 4.1844578 0.0
+41869.12998867687 4.1843004 0.0
+41870.12998872437 4.1841822 0.0
+41871.12998877186 4.1841426 0.0
+41872.12998881936 4.1841426 0.0
+41873.12998886686 4.1841035 0.0
+41874.12998891436 4.1839852 0.0
+41875.12998896185 4.1841035 0.0
+41876.12998900935 4.1840248 0.0
+41877.12998905685 4.1840248 0.0
+41878.12998910435 4.1839066 0.0
+41879.12998915184 4.1839066 0.0
+41880.12998919934 4.1839461 0.0
+41881.12998924684 4.1837492 0.0
+41882.12998929434 4.1837883 0.0
+41883.12998934183 4.1838279 0.0
+41884.12998938933 4.1838279 0.0
+41885.12998943683 4.1836705 0.0
+41886.12998948433 4.1835523 0.0
+41887.12998953182 4.1835127 0.0
+41888.12998957932 4.1836309 0.0
+41889.12998962682 4.1834736 0.0
+41890.12998967431 4.1835523 0.0
+41891.12998972181 4.1835523 0.0
+41892.12998976931 4.1834736 0.0
+41893.12998981681 4.1834736 0.0
+41894.1299898643 4.1833949 0.0
+41895.1299899118 4.1833553 0.0
+41896.1299899593 4.1833162 0.0
+41897.1299900068 4.1833553 0.0
+41898.12999005429 4.1832767 0.0
+41899.12999010179 4.1833162 0.0
+41900.12999014929 4.1832371 0.0
+41901.12999019679 4.1831584 0.0
+41902.12999024428 4.1830797 0.0
+41903.12999029178 4.1831584 0.0
+41904.12999033928 4.1831193 0.0
+41905.12999038678 4.1831584 0.0
+41906.12999043427 4.183001 0.0
+41907.12999048177 4.1830797 0.0
+41908.12999052927 4.183001 0.0
+41909.12999057677 4.1829224 0.0
+41910.12999062426 4.183001 0.0
+41911.12999067176 4.1828041 0.0
+41912.12999071926 4.1829224 0.0
+41913.12999076676 4.1828437 0.0
+41914.12999081425 4.1828041 0.0
+41915.12999086175 4.1828437 0.0
+41916.12999090925 4.182765 0.0
+41917.12999095675 4.1828437 0.0
+41918.12999100424 4.1826468 0.0
+41919.12999105174 4.1827254 0.0
+41920.12999109924 4.1826863 0.0
+41921.12999114674 4.1825681 0.0
+41922.12999119423 4.1825681 0.0
+41923.12999124173 4.1825285 0.0
+41924.12999128923 4.1824498 0.0
+41925.12999133673 4.1824498 0.0
+41926.12999138422 4.1824107 0.0
+41927.12999143172 4.1824498 0.0
+41928.12999147922 4.1825285 0.0
+41929.12999152672 4.1823711 0.0
+41930.12999157421 4.1824498 0.0
+41931.12999162171 4.1824107 0.0
+41932.12999166921 4.1822925 0.0
+41933.12999171671 4.182332 0.0
+41934.1299917642 4.1822925 0.0
+41935.1299918117 4.1822529 0.0
+41936.1299918592 4.1822529 0.0
+41937.1299919067 4.1821351 0.0
+41938.12999195419 4.1822138 0.0
+41939.12999200169 4.1822138 0.0
+41940.12999204919 4.1820955 0.0
+41941.12999209668 4.1820564 0.0
+41942.12999214418 4.1820564 0.0
+41943.12999219168 4.1820564 0.0
+41944.12999223918 4.1820168 0.0
+41945.12999228667 4.1820168 0.0
+41946.12999233417 4.1819773 0.0
+41947.12999238167 4.1819382 0.0
+41948.12999242917 4.1819773 0.0
+41949.12999247666 4.1818595 0.0
+41950.12999252416 4.1819382 0.0
+41951.12999257166 4.1818595 0.0
+41952.12999261916 4.1818199 0.0
+41953.12999266665 4.1818595 0.0
+41954.12999271415 4.1818595 0.0
+41955.12999276165 4.1817412 0.0
+41956.12999280915 4.1817017 0.0
+41957.12999285664 4.1816626 0.0
+41958.12999290414 4.1817412 0.0
+41959.12999295164 4.181623 0.0
+41960.12999299914 4.1815839 0.0
+41961.12999304663 4.1815443 0.0
+41962.12999309413 4.1816626 0.0
+41963.12999314163 4.1815839 0.0
+41964.12999318913 4.1815443 0.0
+41965.12999323662 4.1815443 0.0
+41966.12999328412 4.1814265 0.0
+41967.12999333162 4.1814656 0.0
+41968.12999337912 4.1814656 0.0
+41969.12999342661 4.1814656 0.0
+41970.12999347411 4.1815052 0.0
+41971.12999352161 4.1815839 0.0
+41972.12999356911 4.1813869 0.0
+41973.1299936166 4.1814656 0.0
+41974.1299936641 4.1813474 0.0
+41975.1299937116 4.1813083 0.0
+41976.1299937591 4.18119 0.0
+41977.12999380659 4.1812296 0.0
+41978.12999385409 4.1813474 0.0
+41979.12999390159 4.1811509 0.0
+41980.12999394909 4.18119 0.0
+41981.12999399658 4.1811509 0.0
+41982.12999404408 4.1813083 0.0
+41983.12999409158 4.1812296 0.0
+41984.12999413908 4.1810718 0.0
+41985.12999418657 4.1812296 0.0
+41986.12999423407 4.18119 0.0
+41987.12999428157 4.1811509 0.0
+41988.12999432907 4.1810327 0.0
+41989.12999437656 4.1810718 0.0
+41990.12999442406 4.1810718 0.0
+41991.12999447156 4.180954 0.0
+41992.12999451905 4.1809144 0.0
+41993.12999456655 4.1809931 0.0
+41994.12999461405 4.180954 0.0
+41995.12999466155 4.1809144 0.0
+41996.12999470904 4.180954 0.0
+41997.12999475654 4.1807966 0.0
+41998.12999480404 4.180954 0.0
+41999.12999485154 4.1808357 0.0
+42000.12999489903 4.1808753 0.0
+42001.12999494653 4.1807966 0.0
+42002.12999499403 4.1808357 0.0
+42003.12999504153 4.1808753 0.0
+42004.12999508902 4.1807966 0.0
+42005.12999513652 4.180757 0.0
+42006.12999518402 4.1807966 0.0
+42007.12999523152 4.180757 0.0
+42008.12999527901 4.1806388 0.0
+42009.12999532651 4.1806388 0.0
+42010.12999537401 4.1806784 0.0
+42011.12999542151 4.1805997 0.0
+42012.129995469 4.1807175 0.0
+42013.1299955165 4.1806784 0.0
+42014.129995564 4.1806388 0.0
+42015.1299956115 4.1805601 0.0
+42016.12999565899 4.1805601 0.0
+42017.12999570649 4.1805601 0.0
+42018.12999575399 4.1804028 0.0
+42019.12999580149 4.1805601 0.0
+42020.12999584898 4.180521 0.0
+42021.12999589648 4.1804419 0.0
+42022.12999594398 4.180521 0.0
+42023.12999599148 4.1804814 0.0
+42024.12999603897 4.1804419 0.0
+42025.12999608647 4.1804028 0.0
+42026.12999613397 4.1804028 0.0
+42027.12999618147 4.1804419 0.0
+42028.12999622896 4.1803241 0.0
+42029.12999627646 4.1804028 0.0
+42030.12999632396 4.1803241 0.0
+42031.12999637146 4.1802058 0.0
+42032.12999641895 4.1802454 0.0
+42033.12999646645 4.1803632 0.0
+42034.12999651395 4.1802454 0.0
+42035.12999656145 4.1803241 0.0
+42036.12999660894 4.1802058 0.0
+42037.12999665644 4.1802454 0.0
+42038.12999670394 4.1802058 0.0
+42039.12999675144 4.1801667 0.0
+42040.12999679893 4.1802058 0.0
+42041.12999684643 4.1800876 0.0
+42042.12999689393 4.1801667 0.0
+42043.12999694142 4.1800485 0.0
+42044.12999698892 4.1800485 0.0
+42045.12999703642 4.1800876 0.0
+42046.12999708392 4.1800485 0.0
+42047.12999713141 4.1800876 0.0
+42048.12999717891 4.1800485 0.0
+42049.12999722641 4.1800485 0.0
+42050.12999727391 4.1799698 0.0
+42051.1299973214 4.1799302 0.0
+42052.1299973689 4.1800485 0.0
+42053.1299974164 4.1799698 0.0
+42054.1299974639 4.1800089 0.0
+42055.12999751139 4.1800485 0.0
+42056.12999755889 4.1798911 0.0
+42057.12999760639 4.1798911 0.0
+42058.12999765389 4.179812 0.0
+42059.12999770138 4.1798515 0.0
+42060.12999774888 4.1797729 0.0
+42061.12999779638 4.1796942 0.0
+42062.12999784388 4.1797729 0.0
+42063.12999789137 4.1797333 0.0
+42064.12999793887 4.1797333 0.0
+42065.12999798637 4.1797729 0.0
+42066.12999803387 4.179812 0.0
+42067.12999808136 4.1798515 0.0
+42068.12999812886 4.1797729 0.0
+42069.12999817636 4.1796942 0.0
+42070.12999822386 4.1797333 0.0
+42071.12999827135 4.1796942 0.0
+42072.12999831885 4.1796546 0.0
+42073.12999836635 4.1796155 0.0
+42074.12999841385 4.1795759 0.0
+42075.12999846134 4.1795759 0.0
+42076.12999850884 4.1795759 0.0
+42077.12999855634 4.1794577 0.0
+42078.12999860384 4.1795363 0.0
+42079.12999865133 4.1796546 0.0
+42080.12999869883 4.1796155 0.0
+42081.12999874633 4.1795363 0.0
+42082.12999879383 4.1794972 0.0
+42083.12999884132 4.179379 0.0
+42084.12999888882 4.1794577 0.0
+42085.12999893632 4.1795759 0.0
+42086.12999898382 4.1795363 0.0
+42087.12999903131 4.1794972 0.0
+42088.12999907881 4.1793003 0.0
+42089.12999912631 4.1793003 0.0
+42090.12999917381 4.1794186 0.0
+42091.1299992213 4.179379 0.0
+42092.1299992688 4.1792612 0.0
+42093.1299993163 4.1793003 0.0
+42094.12999936379 4.1793003 0.0
+42095.12999941129 4.1793003 0.0
+42096.12999945879 4.1793003 0.0
+42097.12999950629 4.1793003 0.0
+42098.12999955378 4.1792216 0.0
+42099.12999960128 4.1792612 0.0
+42100.12999964878 4.1792216 0.0
+42101.12999969628 4.1793003 0.0
+42102.12999974377 4.1792612 0.0
+42103.12999979127 4.179143 0.0
+42104.12999983877 4.1791821 0.0
+42105.12999988627 4.179143 0.0
+42106.12999993376 4.1793399 0.0
+42107.12999998126 4.1791034 0.0
+42108.13000002876 4.1791821 0.0
+42109.13000007626 4.1791034 0.0
+42110.13000012375 4.1791821 0.0
+42111.13000017125 4.1790643 0.0
+42112.13000021875 4.1790247 0.0
+42113.13000026625 4.1791034 0.0
+42114.13000031374 4.179143 0.0
+42115.13000036124 4.1790247 0.0
+42116.13000040874 4.1789856 0.0
+42117.13000045624 4.1790643 0.0
+42118.13000050373 4.1790643 0.0
+42119.13000055123 4.1789064 0.0
+42120.13000059873 4.1790643 0.0
+42121.13000064623 4.1790643 0.0
+42122.13000069372 4.1789064 0.0
+42123.13000074122 4.1789856 0.0
+42124.13000078872 4.1790643 0.0
+42125.13000083622 4.1789064 0.0
+42126.13000088371 4.178946 0.0
+42127.13000093121 4.1789856 0.0
+42128.13000097871 4.1787887 0.0
+42129.13000102621 4.1788278 0.0
+42130.1300010737 4.1788278 0.0
+42131.1300011212 4.1788278 0.0
+42132.1300011687 4.1789064 0.0
+42133.1300012162 4.1787887 0.0
+42134.13000126369 4.1788278 0.0
+42135.13000131119 4.1787887 0.0
+42136.13000135869 4.1787887 0.0
+42137.13000140619 4.1787491 0.0
+42138.13000145368 4.17871 0.0
+42139.13000150118 4.1786313 0.0
+42140.13000154868 4.1787887 0.0
+42141.13000159618 4.1786313 0.0
+42142.13000164367 4.1787491 0.0
+42143.13000169117 4.1787491 0.0
+42144.13000173867 4.17871 0.0
+42145.13000178616 4.17871 0.0
+42146.13000183366 4.1787887 0.0
+42147.13000188116 4.1786704 0.0
+42148.13000192866 4.1785522 0.0
+42149.13000197615 4.1786313 0.0
+42150.13000202365 4.1785131 0.0
+42151.13000207115 4.1785522 0.0
+42152.13000211865 4.1785917 0.0
+42153.13000216614 4.1785917 0.0
+42154.13000221364 4.1785522 0.0
+42155.13000226114 4.1785522 0.0
+42156.13000230864 4.1784735 0.0
+42157.13000235613 4.1785522 0.0
+42158.13000240363 4.1785131 0.0
+42159.13000245113 4.1785522 0.0
+42160.13000249863 4.1784344 0.0
+42161.13000254612 4.1784735 0.0
+42162.13000259362 4.1783948 0.0
+42163.13000264112 4.1784735 0.0
+42164.13000268862 4.1785131 0.0
+42165.13000273611 4.1784344 0.0
+42166.13000278361 4.1783948 0.0
+42167.13000283111 4.1783948 0.0
+42168.13000287861 4.1785131 0.0
+42169.1300029261 4.1784344 0.0
+42170.1300029736 4.1783557 0.0
+42171.1300030211 4.1783557 0.0
+42172.1300030686 4.1783161 0.0
+42173.13000311609 4.1782765 0.0
+42174.13000316359 4.1782765 0.0
+42175.13000321109 4.1783557 0.0
+42176.13000325859 4.1781979 0.0
+42177.13000330608 4.1784344 0.0
+42178.13000335358 4.1783557 0.0
+42179.13000340108 4.1782374 0.0
+42180.13000344858 4.1783161 0.0
+42181.13000349607 4.1782765 0.0
+42182.13000354357 4.1782765 0.0
+42183.13000359107 4.1783161 0.0
+42184.13000363857 4.1782374 0.0
+42185.13000368606 4.1781588 0.0
+42186.13000373356 4.1782374 0.0
+42187.13000378106 4.1781192 0.0
+42188.13000382856 4.1781979 0.0
+42189.13000387605 4.1782374 0.0
+42190.13000392355 4.1781192 0.0
+42191.13000397105 4.1781192 0.0
+42192.13000401855 4.1780009 0.0
+42193.13000406604 4.1780801 0.0
+42194.13000411354 4.1780801 0.0
+42195.13000416104 4.1781192 0.0
+42196.13000420854 4.1780009 0.0
+42197.13000425603 4.1780405 0.0
+42198.13000430353 4.1781192 0.0
+42199.13000435103 4.1780405 0.0
+42200.13000439852 4.1780405 0.0
+42201.13000444602 4.1780801 0.0
+42202.13000449352 4.1779618 0.0
+42203.13000454102 4.1779618 0.0
+42204.13000458851 4.1780405 0.0
+42205.13000463601 4.1779222 0.0
+42206.13000468351 4.1780405 0.0
+42207.13000473101 4.1780009 0.0
+42208.1300047785 4.1780405 0.0
+42209.130004826 4.1778831 0.0
+42210.1300048735 4.1780009 0.0
+42211.130004921 4.1780405 0.0
+42212.13000496849 4.1779222 0.0
+42213.13000501599 4.1780405 0.0
+42214.13000506349 4.1778831 0.0
+42215.13000511099 4.1778831 0.0
+42216.13000515848 4.1778045 0.0
+42217.13000520598 4.1777649 0.0
+42218.13000525348 4.1780009 0.0
+42219.13000530098 4.1779618 0.0
+42220.13000534847 4.1778831 0.0
+42221.13000539597 4.1777649 0.0
+42222.13000544347 4.1777258 0.0
+42223.13000549097 4.1778045 0.0
+42224.13000553846 4.1777649 0.0
+42225.13000558596 4.1777649 0.0
+42226.13000563346 4.1778045 0.0
+42227.13000568096 4.1777258 0.0
+42228.13000572845 4.1777649 0.0
+42229.13000577595 4.1777258 0.0
+42230.13000582345 4.1777649 0.0
+42231.13000587095 4.1776862 0.0
+42232.13000591844 4.1776862 0.0
+42233.13000596594 4.1776075 0.0
+42234.13000601344 4.1777649 0.0
+42235.13000606094 4.1774893 0.0
+42236.13000610843 4.1777258 0.0
+42237.13000615593 4.1776466 0.0
+42238.13000620343 4.1776466 0.0
+42239.13000625093 4.1776862 0.0
+42240.13000629842 4.1774893 0.0
+42241.13000634592 4.1775289 0.0
+42242.13000639342 4.1776862 0.0
+42243.13000644092 4.177568 0.0
+42244.13000648841 4.177568 0.0
+42245.13000653591 4.1776075 0.0
+42246.13000658341 4.177568 0.0
+42247.13000663091 4.177568 0.0
+42248.1300066784 4.177568 0.0
+42249.1300067259 4.1775289 0.0
+42250.1300067734 4.1775289 0.0
+42251.13000682089 4.1774502 0.0
+42252.13000686839 4.1774106 0.0
+42253.13000691589 4.1776075 0.0
+42254.13000696339 4.1774502 0.0
+42255.13000701088 4.1776075 0.0
+42256.13000705838 4.1774893 0.0
+42257.13000710588 4.1775289 0.0
+42258.13000715338 4.1774106 0.0
+42259.13000720087 4.1773319 0.0
+42260.13000724837 4.1774106 0.0
+42261.13000729587 4.1774502 0.0
+42262.13000734337 4.1774106 0.0
+42263.13000739086 4.177371 0.0
+42264.13000743836 4.177371 0.0
+42265.13000748586 4.1773319 0.0
+42266.13000753336 4.1774106 0.0
+42267.13000758085 4.1774106 0.0
+42268.13000762835 4.1774502 0.0
+42269.13000767585 4.1774106 0.0
+42270.13000772335 4.177371 0.0
+42271.13000777084 4.177371 0.0
+42272.13000781834 4.1773319 0.0
+42273.13000786584 4.1772923 0.0
+42274.13000791334 4.1772923 0.0
+42275.13000796083 4.1773319 0.0
+42276.13000800833 4.1772923 0.0
+42277.13000805583 4.1772923 0.0
+42278.13000810333 4.1772532 0.0
+42279.13000815082 4.1772532 0.0
+42280.13000819832 4.1771746 0.0
+42281.13000824582 4.1772137 0.0
+42282.13000829332 4.1771746 0.0
+42283.13000834081 4.1772137 0.0
+42284.13000838831 4.1771746 0.0
+42285.13000843581 4.1771746 0.0
+42286.13000848331 4.1772923 0.0
+42287.1300085308 4.177135 0.0
+42288.1300085783 4.1772137 0.0
+42289.1300086258 4.1772137 0.0
+42290.1300086733 4.1772137 0.0
+42291.13000872079 4.1770959 0.0
+42292.13000876829 4.1771746 0.0
+42293.13000881579 4.1770563 0.0
+42294.13000886329 4.1772137 0.0
+42295.13000891078 4.177135 0.0
+42296.13000895828 4.1770167 0.0
+42297.13000900578 4.1770959 0.0
+42298.13000905328 4.1770959 0.0
+42299.13000910077 4.176899 0.0
+42300.13000914827 4.1770563 0.0
+42301.13000919577 4.1769381 0.0
+42302.13000924326 4.1770959 0.0
+42303.13000929076 4.1770959 0.0
+42304.13000933826 4.176899 0.0
+42305.13000938576 4.1770563 0.0
+42306.13000943325 4.1770563 0.0
+42307.13000948075 4.1770167 0.0
+42308.13000952825 4.1769776 0.0
+42309.13000957575 4.1769381 0.0
+42310.13000962324 4.1770959 0.0
+42311.13000967074 4.1769776 0.0
+42312.13000971824 4.1769776 0.0
+42313.13000976574 4.1769381 0.0
+42314.13000981323 4.1769381 0.0
+42315.13000986073 4.1769381 0.0
+42316.13000990823 4.1770167 0.0
+42317.13000995573 4.1769381 0.0
+42318.13001000322 4.176899 0.0
+42319.13001005072 4.1769381 0.0
+42320.13001009822 4.176899 0.0
+42321.13001014572 4.1770563 0.0
+42322.13001019321 4.1768594 0.0
+42323.13001024071 4.1768203 0.0
+42324.13001028821 4.1769381 0.0
+42325.13001033571 4.176899 0.0
+42326.1300103832 4.1767411 0.0
+42327.1300104307 4.1767807 0.0
+42328.1300104782 4.1767807 0.0
+42329.1300105257 4.1767411 0.0
+42330.13001057319 4.1768594 0.0
+42331.13001062069 4.1768203 0.0
+42332.13001066819 4.1767411 0.0
+42333.13001071569 4.1767411 0.0
+42334.13001076318 4.1768203 0.0
+42335.13001081068 4.1767807 0.0
+42336.13001085818 4.1767807 0.0
+42337.13001090568 4.1767807 0.0
+42338.13001095317 4.1766624 0.0
+42339.13001100067 4.1768203 0.0
+42340.13001104817 4.176702 0.0
+42341.13001109567 4.1768203 0.0
+42342.13001114316 4.1767411 0.0
+42343.13001119066 4.1767807 0.0
+42344.13001123816 4.176702 0.0
+42345.13001128566 4.176702 0.0
+42346.13001133315 4.1767411 0.0
+42347.13001138065 4.176702 0.0
+42348.13001142815 4.176702 0.0
+42349.13001147565 4.1767411 0.0
+42350.13001152314 4.1766624 0.0
+42351.13001157064 4.1766233 0.0
+42352.13001161814 4.1766624 0.0
+42353.13001166563 4.1766233 0.0
+42354.13001171313 4.1766624 0.0
+42355.13001176063 4.1766624 0.0
+42356.13001180813 4.1765838 0.0
+42357.13001185562 4.176702 0.0
+42358.13001190312 4.1765051 0.0
+42359.13001195062 4.1766233 0.0
+42360.13001199812 4.1765051 0.0
+42361.13001204561 4.1766233 0.0
+42362.13001209311 4.1765051 0.0
+42363.13001214061 4.1766233 0.0
+42364.13001218811 4.1766624 0.0
+42365.1300122356 4.1765447 0.0
+42366.1300122831 4.1765838 0.0
+42367.1300123306 4.1765447 0.0
+42368.1300123781 4.176466 0.0
+42369.13001242559 4.1765447 0.0
+42370.13001247309 4.176466 0.0
+42371.13001252059 4.1765447 0.0
+42372.13001256809 4.1764264 0.0
+42373.13001261558 4.1764264 0.0
+42374.13001266308 4.1764264 0.0
+42375.13001271058 4.176466 0.0
+42376.13001275808 4.1764264 0.0
+42377.13001280557 4.1764264 0.0
+42378.13001285307 4.1765051 0.0
+42379.13001290057 4.1765051 0.0
+42380.13001294807 4.1763477 0.0
+42381.13001299556 4.1765051 0.0
+42382.13001304306 4.176466 0.0
+42383.13001309056 4.1764264 0.0
+42384.13001313806 4.1763477 0.0
+42385.13001318555 4.176466 0.0
+42386.13001323305 4.176466 0.0
+42387.13001328055 4.176466 0.0
+42388.13001332805 4.1763082 0.0
+42389.13001337554 4.1764264 0.0
+42390.13001342304 4.1763477 0.0
+42391.13001347054 4.1763477 0.0
+42392.13001351804 4.176466 0.0
+42393.13001356553 4.1763868 0.0
+42394.13001361303 4.1763082 0.0
+42395.13001366053 4.1762295 0.0
+42396.13001370803 4.1762295 0.0
+42397.13001375552 4.1762691 0.0
+42398.13001380302 4.1762295 0.0
+42399.13001385052 4.1763082 0.0
+42400.13001389802 4.1762295 0.0
+42401.13001394551 4.1762295 0.0
+42402.13001399301 4.1763477 0.0
+42403.13001404051 4.1762295 0.0
+42404.130014088 4.1761904 0.0
+42405.1300141355 4.1763082 0.0
+42406.130014183 4.1763477 0.0
+42407.1300142305 4.1073327 -7353.5669
+42407.13201423059 4.1067424 -7354.1577
+42408.13201427809 4.100719 -7353.9609
+42409.13201432559 4.0993013 -7354.5513
+42410.13201437308 4.0979629 -7354.3545
+42411.13201442058 4.0967031 -7354.5513
+42412.13201446808 4.0958762 -7354.3545
+42413.13201451558 4.0948133 -7354.3545
+42414.13201456307 4.0939078 -7354.5513
+42415.13201461057 4.0931206 -7353.7646
+42416.13201465807 4.0923724 -7354.5513
+42417.13201470557 4.0915852 -7353.7646
+42418.13201475306 4.0908766 -7354.1577
+42419.13201480056 4.0902071 -7354.7485
+42420.13201484806 4.0894589 -7354.1577
+42421.13201489556 4.0889077 -7354.3545
+42422.13201494305 4.0882778 -7354.3545
+42423.13201499055 4.0876088 -7354.7485
+42424.13201503805 4.087018 -7354.1577
+42425.13201508555 4.0864277 -7353.7646
+42426.13201513304 4.0858765 -7354.5513
+42427.13201518054 4.0854039 -7354.1577
+42428.13201522804 4.0848923 -7353.7646
+42429.13201527554 4.0842624 -7354.1577
+42430.13201532303 4.0839472 -7353.9609
+42431.13201537053 4.0832782 -7353.9609
+42432.13201541803 4.0828056 -7353.5669
+42433.13201546553 4.0823727 -7353.5669
+42434.13201551302 4.0819788 -7353.9609
+42435.13201556052 4.0813885 -7354.9453
+42436.13201560802 4.0811129 -7354.5513
+42437.13201565552 4.0805616 -7354.3545
+42438.13201570301 4.0801678 -7354.3545
+42439.13201575051 4.0798135 -7353.5669
+42440.13201579801 4.0793018 -7354.5513
+42441.13201584551 4.0788689 -7354.5513
+42442.132015893 4.0785146 -7354.9453
+42443.1320159405 4.0781207 -7354.3545
+42444.132015988 4.0777268 -7354.9453
+42445.1320160355 4.0773726 -7354.1577
+42446.13201608299 4.0769792 -7354.3545
+42447.13201613049 4.0765457 -7353.7646
+42448.13201617799 4.076231 -7354.3545
+42449.13201622549 4.0758371 -7353.3706
+42450.13201627298 4.0756011 -7354.7485
+42451.13201632048 4.0751286 -7353.7646
+42452.13201636798 4.0748925 -7354.1577
+42453.13201641547 4.0744596 -7354.1577
+42454.13201646297 4.0741048 -7353.9609
+42455.13201651047 4.0737901 -7354.1577
+42456.13201655797 4.0734749 -7354.1577
+42457.13201660546 4.0732388 -7354.1577
+42458.13201665296 4.0728059 -7353.5669
+42459.13201670046 4.0725694 -7353.5669
+42460.13201674796 4.072176 -7354.1577
+42461.13201679545 4.0718217 -7353.9609
+42462.13201684295 4.0716639 -7354.3545
+42463.13201689045 4.0712705 -7353.5669
+42464.13201693795 4.0709162 -7354.1577
+42465.13201698544 4.0705223 -7354.1577
+42466.13201703294 4.0704041 -7354.3545
+42467.13201708044 4.0701284 -7353.9609
+42468.13201712794 4.0697351 -7354.3545
+42469.13201717543 4.0693808 -7354.1577
+42470.13201722293 4.0692234 -7354.7485
+42471.13201727043 4.0689082 -7354.3545
+42472.13201731793 4.0687113 -7353.7646
+42473.13201736542 4.068357 -7354.3545
+42474.13201741292 4.0680814 -7354.1577
+42475.13201746042 4.0678058 -7355.1421
+42476.13201750792 4.0674515 -7354.5513
+42477.13201755541 4.0672154 -7353.5669
+42478.13201760291 4.0670185 -7353.7646
+42479.13201765041 4.0666246 -7354.5513
+42480.13201769791 4.0664277 -7354.1577
+42481.1320177454 4.0661917 -7354.3545
+42482.1320177929 4.0659556 -7354.3545
+42483.1320178404 4.0656404 -7353.9609
+42484.1320178879 4.0653648 -7353.7646
+42485.13201793539 4.0652075 -7354.3545
+42486.13201798289 4.0649319 -7354.3545
+42487.13201803039 4.0647745 -7354.1577
+42488.13201807789 4.0644202 -7354.3545
+42489.13201812538 4.0643415 -7354.9453
+42490.13201817288 4.063869 -7353.3706
+42491.13201822038 4.0637116 -7354.1577
+42492.13201826788 4.063436 -7353.7646
+42493.13201831537 4.0632782 -7353.3706
+42494.13201836287 4.0630817 -7354.7485
+42495.13201841037 4.0627666 -7354.5513
+42496.13201845787 4.0625696 -7354.1577
+42497.13201850536 4.0623336 -7353.3706
+42498.13201855286 4.0621762 -7353.9609
+42499.13201860036 4.0619006 -7354.7485
+42500.13201864786 4.061625 -7353.7646
+42501.13201869535 4.0614281 -7354.1577
+42502.13201874285 4.0612311 -7353.5669
+42503.13201879035 4.0609164 -7353.9609
+42504.13201883785 4.0609164 -7354.3545
+42505.13201888534 4.0606012 -7353.3706
+42506.13201893284 4.0603256 -7353.9609
+42507.13201898034 4.0600896 -7354.3545
+42508.13201902783 4.0599318 -7353.9609
+42509.13201907533 4.059814 -7354.3545
+42510.13201912283 4.0594597 -7354.1577
+42511.13201917033 4.059381 -7354.3545
+42512.13201921782 4.0591054 -7354.7485
+42513.13201926532 4.0588689 -7354.3545
+42514.13201931282 4.0587115 -7353.9609
+42515.13201936032 4.0584755 -7353.9609
+42516.13201940781 4.058239 -7354.3545
+42517.13201945531 4.0580029 -7354.1577
+42518.13201950281 4.057806 -7354.3545
+42519.13201955031 4.0577273 -7353.7646
+42520.1320195978 4.0574908 -7353.7646
+42521.1320196453 4.0572157 -7353.7646
+42522.1320196928 4.0570974 -7353.9609
+42523.1320197403 4.0569401 -7354.5513
+42524.13201978779 4.0567822 -7353.9609
+42525.13201983529 4.0565066 -7354.1577
+42526.13201988279 4.056231 -7354.5513
+42527.13201993029 4.0560737 -7353.5669
+42528.13201997778 4.0560346 -7354.7485
+42529.13202002528 4.0557981 -7353.9609
+42530.13202007278 4.0555224 -7353.7646
+42531.13202012028 4.0552468 -7354.3545
+42532.13202016777 4.0552077 -7354.3545
+42533.13202021527 4.0550504 -7354.3545
+42534.13202026277 4.0548925 -7354.1577
+42535.13202031027 4.0546169 -7354.1577
+42536.13202035776 4.05442 -7353.7646
+42537.13202040526 4.0543022 -7353.7646
+42538.13202045276 4.054184 -7354.3545
+42539.13202050026 4.0539083 -7354.5513
+42540.13202054775 4.0537114 -7353.7646
+42541.13202059525 4.0535541 -7354.7485
+42542.13202064275 4.0534358 -7354.5513
+42543.13202069025 4.0531211 -7353.3706
+42544.13202073774 4.0531211 -7353.5669
+42545.13202078524 4.0529242 -7353.9609
+42546.13202083274 4.0527272 -7354.7485
+42547.13202088024 4.0525303 -7354.5513
+42548.13202092773 4.0523729 -7353.9609
+42549.13202097523 4.0522156 -7353.9609
+42550.13202102273 4.05194 -7354.1577
+42551.13202107023 4.05194 -7352.9771
+42552.13202111772 4.0517039 -7353.5669
+42553.13202116522 4.0515857 -7353.7646
+42554.13202121272 4.0513496 -7354.3545
+42555.13202126022 4.0512705 -7354.3545
+42556.13202130771 4.0510345 -7354.1577
+42557.13202135521 4.0509162 -7354.3545
+42558.13202140271 4.0507588 -7354.3545
+42559.1320214502 4.0506406 -7354.7485
+42560.1320214977 4.0504832 -7354.1577
+42561.1320215452 4.0502472 -7353.1738
+42562.1320215927 4.0500894 -7354.3545
+42563.13202164019 4.0499716 -7353.5669
+42564.13202168769 4.049696 -7354.3545
+42565.13202173519 4.049696 -7354.1577
+42566.13202178269 4.0494204 -7354.7485
+42567.13202183018 4.0493417 -7354.9453
+42568.13202187768 4.0491052 -7354.1577
+42569.13202192518 4.0489087 -7353.9609
+42570.13202197268 4.0488691 -7353.9609
+42571.13202202017 4.0485935 -7353.5669
+42572.13202206767 4.0485148 -7354.1577
+42573.13202211517 4.0484753 -7354.5513
+42574.13202216267 4.0481997 -7354.7485
+42575.13202221016 4.0480032 -7354.3545
+42576.13202225766 4.047924 -7353.9609
+42577.13202230516 4.047688 -7354.5513
+42578.13202235266 4.0475307 -7354.7485
+42579.13202240015 4.0474911 -7354.1577
+42580.13202244765 4.0472155 -7354.3545
+42581.13202249515 4.0470581 -7354.1577
+42582.13202254265 4.0470977 -7353.9609
+42583.13202259014 4.0468612 -7354.5513
+42584.13202263764 4.0467434 -7353.3706
+42585.13202268514 4.0467038 -7354.7485
+42586.13202273264 4.0464282 -7354.3545
+42587.13202278013 4.0462313 -7353.9609
+42588.13202282763 4.0461922 -7354.1577
+42589.13202287513 4.0459557 -7354.3545
+42590.13202292263 4.0457983 -7354.9453
+42591.13202297012 4.04568 -7353.9609
+42592.13202301762 4.0455227 -7354.5513
+42593.13202306512 4.0454831 -7353.7646
+42594.13202311262 4.0454044 -7353.7646
+42595.13202316011 4.0451684 -7354.1577
+42596.13202320761 4.0450897 -7353.3706
+42597.13202325511 4.0448928 -7354.5513
+42598.13202330261 4.0445781 -7354.5513
+42599.1320233501 4.0446172 -7353.7646
+42600.1320233976 4.0444598 -7354.1577
+42601.1320234451 4.0443025 -7353.5669
+42602.1320234926 4.0441842 -7353.5669
+42603.13202354009 4.0439482 -7353.9609
+42604.13202358759 4.0439086 -7354.5513
+42605.13202363509 4.0437903 -7354.3545
+42606.13202368259 4.0435934 -7354.1577
+42607.13202373008 4.0435543 -7354.3545
+42608.13202377758 4.0433574 -7354.3545
+42609.13202382508 4.0432391 -7354.3545
+42610.13202387257 4.0430818 -7354.5513
+42611.13202392007 4.0428457 -7354.1577
+42612.13202396757 4.0429244 -7353.1738
+42613.13202401507 4.0427275 -7354.9453
+42614.13202406256 4.0426092 -7354.5513
+42615.13202411006 4.0423336 -7354.1577
+42616.13202415756 4.0422945 -7354.1577
+42617.13202420506 4.0421371 -7353.7646
+42618.13202425255 4.0419402 -7354.7485
+42619.13202430005 4.0420189 -7355.1421
+42620.13202434755 4.041822 -7354.5513
+42621.13202439505 4.041625 -7353.9609
+42622.13202444254 4.041625 -7353.7646
+42623.13202449004 4.0414281 -7354.3545
+42624.13202453754 4.0411921 -7354.1577
+42625.13202458504 4.0411921 -7353.7646
+42626.13202463253 4.0410347 -7354.7485
+42627.13202468003 4.0408378 -7354.3545
+42628.13202472753 4.0408773 -7353.5669
+42629.13202477503 4.0406408 -7354.9453
+42630.13202482252 4.0405622 -7354.9453
+42631.13202487002 4.0403652 -7353.9609
+42632.13202491752 4.0401683 -7353.9609
+42633.13202496502 4.0400505 -7354.3545
+42634.13202501251 4.0398536 -7354.1577
+42635.13202506001 4.0398536 -7354.1577
+42636.13202510751 4.0396962 -7353.9609
+42637.13202515501 4.0394993 -7353.9609
+42638.1320252025 4.0393419 -7354.1577
+42639.13202525 4.0394206 -7353.9609
+42640.1320252975 4.0392237 -7354.7485
+42641.132025345 4.0390663 -7354.1577
+42642.13202539249 4.0389481 -7353.7646
+42643.13202543999 4.0387907 -7354.1577
+42644.13202548749 4.0387511 -7354.3545
+42645.13202553499 4.0385938 -7353.3706
+42646.13202558248 4.0384364 -7354.1577
+42647.13202562998 4.0383573 -7354.1577
+42648.13202567748 4.0381999 -7354.1577
+42649.13202572498 4.0380816 -7353.9609
+42650.13202577247 4.038003 -7354.5513
+42651.13202581997 4.0379243 -7353.7646
+42652.13202586747 4.0378065 -7354.1577
+42653.13202591497 4.0376883 -7353.9609
+42654.13202596246 4.03757 -7354.3545
+42655.13202600996 4.0373731 -7354.1577
+42656.13202605746 4.0374126 -7354.1577
+42657.13202610496 4.0371766 -7354.1577
+42658.13202615245 4.0370584 -7354.1577
+42659.13202619995 4.0370188 -7354.9453
+42660.13202624745 4.036901 -7353.9609
+42661.13202629494 4.0368218 -7354.3545
+42662.13202634244 4.0367041 -7354.7485
+42663.13202638994 4.0365462 -7354.3545
+42664.13202643744 4.0364676 -7353.5669
+42665.13202648493 4.0363102 -7354.1577
+42666.13202653243 4.0361919 -7354.3545
+42667.13202657993 4.0361133 -7354.3545
+42668.13202662743 4.0359955 -7353.1738
+42669.13202667492 4.0359163 -7354.3545
+42670.13202672242 4.0358377 -7353.9609
+42671.13202676992 4.0356803 -7354.3545
+42672.13202681742 4.0356016 -7353.7646
+42673.13202686491 4.0354443 -7354.7485
+42674.13202691241 4.0354047 -7353.7646
+42675.13202695991 4.0352077 -7353.5669
+42676.13202700741 4.0352077 -7353.7646
+42677.1320270549 4.03509 -7353.9609
+42678.1320271024 4.0349321 -7354.5513
+42679.1320271499 4.0349321 -7354.5513
+42680.1320271974 4.0346961 -7353.5669
+42681.13202724489 4.0346174 -7353.3706
+42682.13202729239 4.0345778 -7353.7646
+42683.13202733989 4.0344205 -7354.1577
+42684.13202738739 4.0343418 -7354.9453
+42685.13202743488 4.0342236 -7354.3545
+42686.13202748238 4.0340662 -7353.5669
+42687.13202752988 4.0340266 -7354.3545
+42688.13202757738 4.0337906 -7353.7646
+42689.13202762487 4.0337119 -7354.7485
+42690.13202767237 4.0336723 -7354.3545
+42691.13202771987 4.0335546 -7354.3545
+42692.13202776737 4.033515 -7354.3545
+42693.13202781486 4.0333967 -7353.5669
+42694.13202786236 4.033318 -7354.3545
+42695.13202790986 4.0331211 -7353.9609
+42696.13202795736 4.0331607 -7354.7485
+42697.13202800485 4.0330033 -7354.9453
+42698.13202805235 4.0328851 -7354.5513
+42699.13202809985 4.0327277 -7354.5513
+42700.13202814735 4.032649 -7354.3545
+42701.13202819484 4.0325704 -7353.7646
+42702.13202824234 4.0324521 -7355.1421
+42703.13202828984 4.0322948 -7354.7485
+42704.13202833734 4.0322948 -7354.1577
+42705.13202838483 4.0322156 -7354.7485
+42706.13202843233 4.0320978 -7354.3545
+42707.13202847983 4.0319405 -7354.5513
+42708.13202852733 4.0318222 -7354.7485
+42709.13202857482 4.0317826 -7354.1577
+42710.13202862232 4.0317826 -7353.9609
+42711.13202866982 4.0316253 -7353.9609
+42712.13202871731 4.0314283 -7354.5513
+42713.13202876481 4.0314283 -7354.5513
+42714.13202881231 4.0313497 -7353.7646
+42715.13202885981 4.0311923 -7353.9609
+42716.1320289073 4.0311136 -7354.9453
+42717.1320289548 4.0309167 -7353.5669
+42718.1320290023 4.0308771 -7353.5669
+42719.1320290498 4.0307198 -7354.5513
+42720.13202909729 4.0305624 -7353.5669
+42721.13202914479 4.0305228 -7354.5513
+42722.13202919229 4.0305228 -7353.1738
+42723.13202923979 4.0303259 -7354.3545
+42724.13202928728 4.0303259 -7354.7485
+42725.13202933478 4.0301685 -7354.3545
+42726.13202938228 4.0300503 -7354.3545
+42727.13202942978 4.0300503 -7353.9609
+42728.13202947727 4.0299325 -7354.5513
+42729.13202952477 4.0297356 -7354.3545
+42730.13202957227 4.0297356 -7354.3545
+42731.13202961977 4.0296569 -7353.7646
+42732.13202966726 4.0295782 -7354.9453
+42733.13202971476 4.02946 -7354.5513
+42734.13202976226 4.0293813 -7354.1577
+42735.13202980976 4.0292239 -7354.1577
+42736.13202985725 4.0291448 -7354.5513
+42737.13202990475 4.0290661 -7354.3545
+42738.13202995225 4.0289874 -7354.1577
+42739.13202999975 4.0288301 -7353.7646
+42740.13203004724 4.0287118 -7354.3545
+42741.13203009474 4.0286727 -7354.3545
+42742.13203014224 4.0285544 -7354.1577
+42743.13203018974 4.0285149 -7354.7485
+42744.13203023723 4.0283575 -7353.1738
+42745.13203028473 4.0283184 -7354.3545
+42746.13203033223 4.0282397 -7354.1577
+42747.13203037973 4.0280819 -7354.1577
+42748.13203042722 4.0280428 -7354.1577
+42749.13203047472 4.0279245 -7354.9453
+42750.13203052222 4.027885 -7353.3706
+42751.13203056972 4.0278063 -7353.9609
+42752.13203061721 4.0276489 -7354.3545
+42753.13203066471 4.0276489 -7354.1577
+42754.13203071221 4.0274916 -7353.5669
+42755.13203075971 4.0274129 -7352.7803
+42756.1320308072 4.0273342 -7354.1577
+42757.1320308547 4.0272551 -7353.9609
+42758.1320309022 4.0270977 -7354.1577
+42759.1320309497 4.0269794 -7353.9609
+42760.13203099719 4.0269794 -7353.5669
+42761.13203104469 4.0269403 -7354.1577
+42762.13203109219 4.0268617 -7353.9609
+42763.13203113968 4.0266647 -7353.7646
+42764.13203118718 4.0266647 -7354.3545
+42765.13203123468 4.0265861 -7354.7485
+42766.13203128218 4.0265074 -7353.9609
+42767.13203132967 4.0263495 -7354.3545
+42768.13203137717 4.0263891 -7353.3706
+42769.13203142467 4.0261922 -7353.9609
+42770.13203147217 4.0262709 -7353.9609
+42771.13203151966 4.0259953 -7354.7485
+42772.13203156716 4.0259166 -7354.3545
+42773.13203161466 4.0259166 -7353.3706
+42774.13203166216 4.0257592 -7354.1577
+42775.13203170965 4.0257196 -7353.9609
+42776.13203175715 4.025641 -7353.5669
+42777.13203180465 4.025641 -7354.1577
+42778.13203185215 4.0254836 -7354.3545
+42779.13203189964 4.0254836 -7354.7485
+42780.13203194714 4.0253263 -7353.9609
+42781.13203199464 4.0253263 -7354.1577
+42782.13203204214 4.025208 -7354.1577
+42783.13203208963 4.0251689 -7354.1577
+42784.13203213713 4.0250506 -7354.7485
+42785.13203218463 4.024972 -7354.3545
+42786.13203223213 4.0248141 -7354.1577
+42787.13203227962 4.024775 -7353.7646
+42788.13203232712 4.0248141 -7354.1577
+42789.13203237462 4.0246177 -7354.1577
+42790.13203242212 4.0244994 -7354.1577
+42791.13203246961 4.0245781 -7354.5513
+42792.13203251711 4.0244994 -7354.5513
+42793.13203256461 4.0242634 -7354.3545
+42794.13203261211 4.0243421 -7354.7485
+42795.1320326596 4.0243421 -7353.9609
+42796.1320327071 4.0242238 -7353.5669
+42797.1320327546 4.0241842 -7353.5669
+42798.1320328021 4.0239482 -7354.1577
+42799.13203284959 4.0240269 -7354.1577
+42800.13203289709 4.0238695 -7354.3545
+42801.13203294459 4.0238299 -7353.7646
+42802.13203299209 4.0237908 -7354.3545
+42803.13203303958 4.0236726 -7353.5669
+42804.13203308708 4.0235543 -7354.1577
+42805.13203313458 4.0235543 -7353.7646
+42806.13203318208 4.0233579 -7353.9609
+42807.13203322957 4.0233579 -7354.1577
+42808.13203327707 4.023397 -7354.5513
+42809.13203332457 4.0232 -7353.9609
+42810.13203337207 4.0231214 -7353.5669
+42811.13203341956 4.0231214 -7354.3545
+42812.13203346706 4.0230036 -7353.7646
+42813.13203351456 4.0230036 -7354.3545
+42814.13203356205 4.0228066 -7354.3545
+42815.13203360955 4.022728 -7354.5513
+42816.13203365705 4.0226884 -7353.9609
+42817.13203370455 4.022531 -7353.9609
+42818.13203375204 4.0225701 -7354.1577
+42819.13203379954 4.022531 -7353.9609
+42820.13203384704 4.0224128 -7354.3545
+42821.13203389454 4.0222945 -7354.1577
+42822.13203394203 4.0222554 -7353.5669
+42823.13203398953 4.0222158 -7354.1577
+42824.13203403703 4.0220981 -7354.7485
+42825.13203408453 4.0220585 -7354.5513
+42826.13203413202 4.0220981 -7353.9609
+42827.13203417952 4.0218616 -7352.9771
+42828.13203422702 4.0217829 -7353.9609
+42829.13203427452 4.0218225 -7354.1577
+42830.13203432201 4.0216646 -7353.5669
+42831.13203436951 4.0215468 -7353.5669
+42832.13203441701 4.0215073 -7354.1577
+42833.13203446451 4.0214286 -7353.7646
+42834.132034512 4.0214286 -7353.7646
+42835.1320345595 4.0213103 -7353.9609
+42836.132034607 4.0213103 -7353.9609
+42837.1320346545 4.021153 -7353.9609
+42838.13203470199 4.0210743 -7354.1577
+42839.13203474949 4.0210347 -7353.7646
+42840.13203479699 4.0210347 -7353.9609
+42841.13203484449 4.0208774 -7354.5513
+42842.13203489198 4.0209169 -7353.3706
+42843.13203493948 4.0207591 -7353.5669
+42844.13203498698 4.0206804 -7354.1577
+42845.13203503448 4.0206413 -7354.3545
+42846.13203508197 4.0206017 -7354.3545
+42847.13203512947 4.0204835 -7353.9609
+42848.13203517697 4.0204048 -7353.5669
+42849.13203522447 4.020287 -7354.3545
+42850.13203527196 4.0202475 -7354.1577
+42851.13203531946 4.0202475 -7354.3545
+42852.13203536696 4.0201688 -7354.5513
+42853.13203541446 4.0200114 -7353.9609
+42854.13203546195 4.0199718 -7353.9609
+42855.13203550945 4.0199327 -7353.5669
+42856.13203555695 4.0198932 -7354.1577
+42857.13203560445 4.0198932 -7353.5669
+42858.13203565194 4.0197749 -7354.3545
+42859.13203569944 4.0197749 -7354.7485
+42860.13203574694 4.0195389 -7354.3545
+42861.13203579444 4.019578 -7354.3545
+42862.13203584193 4.0195389 -7355.3384
+42863.13203588943 4.0194602 -7353.7646
+42864.13203593693 4.0193028 -7354.5513
+42865.13203598442 4.0193419 -7353.9609
+42866.13203603192 4.0191846 -7354.1577
+42867.13203607942 4.0191059 -7354.9453
+42868.13203612692 4.0190663 -7353.7646
+42869.13203617441 4.018909 -7354.7485
+42870.13203622191 4.0187907 -7354.3545
+42871.13203626941 4.0187907 -7354.1577
+42872.13203631691 4.0188694 -7354.1577
+42873.1320363644 4.0185547 -7354.9453
+42874.1320364119 4.0185938 -7353.3706
+42875.1320364594 4.0186334 -7354.1577
+42876.1320365069 4.0184364 -7354.7485
+42877.13203655439 4.0183973 -7354.3545
+42878.13203660189 4.0183578 -7353.7646
+42879.13203664939 4.0183182 -7354.1577
+42880.13203669689 4.0182395 -7353.9609
+42881.13203674438 4.0182395 -7353.9609
+42882.13203679188 4.0180426 -7353.7646
+42883.13203683938 4.0180035 -7353.9609
+42884.13203688688 4.0179639 -7353.7646
+42885.13203693437 4.0178852 -7354.7485
+42886.13203698187 4.0178065 -7354.9453
+42887.13203702937 4.0177674 -7354.7485
+42888.13203707687 4.0175705 -7354.5513
+42889.13203712436 4.0175705 -7354.3545
+42890.13203717186 4.0173736 -7353.9609
+42891.13203721936 4.0174522 -7353.5669
+42892.13203726686 4.017334 -7354.7485
+42893.13203731435 4.0172553 -7354.3545
+42894.13203736185 4.0170979 -7354.1577
+42895.13203740935 4.0170584 -7353.7646
+42896.13203745685 4.0170584 -7353.7646
+42897.13203750434 4.0169797 -7354.5513
+42898.13203755184 4.0168619 -7354.7485
+42899.13203759934 4.016901 -7354.9453
+42900.13203764684 4.0168223 -7353.9609
+42901.13203769433 4.0167437 -7354.9453
+42902.13203774183 4.0165863 -7354.3545
+42903.13203778933 4.0165467 -7354.3545
+42904.13203783683 4.0165071 -7353.7646
+42905.13203788432 4.0163894 -7354.3545
+42906.13203793182 4.0163894 -7354.7485
+42907.13203797932 4.0162711 -7354.3545
+42908.13203802682 4.0161924 -7354.3545
+42909.13203807431 4.0161529 -7354.3545
+42910.13203812181 4.0159564 -7354.5513
+42911.13203816931 4.0161138 -7353.9609
+42912.13203821681 4.0159564 -7354.1577
+42913.1320382643 4.0159168 -7354.1577
+42914.1320383118 4.0158381 -7353.7646
+42915.1320383593 4.0158381 -7353.9609
+42916.13203840679 4.0156808 -7354.1577
+42917.13203845429 4.0157986 -7354.5513
+42918.13203850179 4.0156808 -7354.5513
+42919.13203854929 4.0155625 -7354.5513
+42920.13203859678 4.0154839 -7354.3545
+42921.13203864428 4.0153265 -7354.1577
+42922.13203869178 4.0153656 -7354.5513
+42923.13203873928 4.0153265 -7354.3545
+42924.13203878677 4.0152082 -7355.3384
+42925.13203883427 4.0151687 -7354.9453
+42926.13203888177 4.01509 -7354.3545
+42927.13203892927 4.01509 -7353.3706
+42928.13203897676 4.0150113 -7354.1577
+42929.13203902426 4.0148931 -7354.9453
+42930.13203907176 4.0149717 -7353.9609
+42931.13203911926 4.0147753 -7354.3545
+42932.13203916675 4.0147753 -7354.5513
+42933.13203921425 4.0146966 -7353.5669
+42934.13203926175 4.0145783 -7354.9453
+42935.13203930925 4.0146174 -7354.3545
+42936.13203935674 4.0144601 -7353.9609
+42937.13203940424 4.0143027 -7353.7646
+42938.13203945174 4.0143814 -7355.1421
+42939.13203949924 4.0143814 -7354.1577
+42940.13203954673 4.0142632 -7354.3545
+42941.13203959423 4.0142241 -7355.3384
+42942.13203964173 4.0142241 -7355.1421
+42943.13203968923 4.0141058 -7354.9453
+42944.13203973672 4.0139875 -7354.3545
+42945.13203978422 4.0139875 -7354.5513
+42946.13203983172 4.0139089 -7353.9609
+42947.13203987922 4.0138698 -7354.5513
+42948.13203992671 4.0136728 -7353.9609
+42949.13203997421 4.0136728 -7354.3545
+42950.13204002171 4.0136333 -7354.7485
+42951.13204006921 4.0135546 -7354.1577
+42952.1320401167 4.0135546 -7353.9609
+42953.1320401642 4.0133972 -7354.5513
+42954.1320402117 4.0134759 -7354.5513
+42955.1320402592 4.0132399 -7354.1577
+42956.13204030669 4.0133185 -7354.5513
+42957.13204035419 4.0131216 -7354.3545
+42958.13204040169 4.0132003 -7355.3384
+42959.13204044919 4.0130429 -7354.1577
+42960.13204049668 4.013082 -7354.3545
+42961.13204054418 4.0129247 -7354.3545
+42962.13204059168 4.0129642 -7354.3545
+42963.13204063918 4.0128064 -7353.9609
+42964.13204068667 4.0128064 -7354.3545
+42965.13204073417 4.0128064 -7353.7646
+42966.13204078167 4.0127277 -7353.9609
+42967.13204082916 4.0125704 -7354.3545
+42968.13204087666 4.01261 -7353.9609
+42969.13204092416 4.0125704 -7354.5513
+42970.13204097166 4.0125313 -7353.9609
+42971.13204101915 4.0124521 -7354.1577
+42972.13204106665 4.0123734 -7354.5513
+42973.13204111415 4.0123343 -7354.1577
+42974.13204116165 4.0122161 -7354.5513
+42975.13204120914 4.0121374 -7354.5513
+42976.13204125664 4.0121765 -7354.7485
+42977.13204130414 4.0121374 -7354.1577
+42978.13204135164 4.0119801 -7354.3545
+42979.13204139913 4.0119405 -7353.7646
+42980.13204144663 4.0118618 -7354.5513
+42981.13204149413 4.0117831 -7354.1577
+42982.13204154163 4.0117831 -7354.7485
+42983.13204158912 4.0117044 -7354.3545
+42984.13204163662 4.0115862 -7354.5513
+42985.13204168412 4.0115075 -7353.9609
+42986.13204173162 4.0116258 -7354.9453
+42987.13204177911 4.0113893 -7353.5669
+42988.13204182661 4.0113893 -7354.7485
+42989.13204187411 4.0113106 -7354.1577
+42990.13204192161 4.0111923 -7354.1577
+42991.1320419691 4.0111532 -7353.7646
+42992.1320420166 4.0109959 -7353.9609
+42993.1320420641 4.0111136 -7354.3545
+42994.1320421116 4.011035 -7353.5669
+42995.13204215909 4.0109167 -7353.9609
+42996.13204220659 4.0109563 -7354.7485
+42997.13204225409 4.0107203 -7354.1577
+42998.13204230159 4.0107203 -7354.7485
+42999.13204234908 4.0106807 -7354.1577
+43000.13204239658 4.010602 -7354.3545
+43001.13204244408 4.0105624 -7353.7646
+43002.13204249158 4.0104446 -7353.9609
+43003.13204253907 4.0105233 -7354.1577
+43004.13204258657 4.0104446 -7354.1577
+43005.13204263407 4.0103264 -7354.7485
+43006.13204268157 4.0102477 -7354.1577
+43007.13204272906 4.0102477 -7354.7485
+43008.13204277656 4.0101295 -7354.5513
+43009.13204282406 4.0100904 -7354.3545
+43010.13204287156 4.0100904 -7353.7646
+43011.13204291905 4.0100112 -7353.5669
+43012.13204296655 4.0100508 -7354.3545
+43013.13204301405 4.0099325 -7353.9609
+43014.13204306155 4.0097356 -7354.1577
+43015.13204310904 4.0097752 -7354.1577
+43016.13204315654 4.0096569 -7354.3545
+43017.13204320404 4.0096178 -7353.7646
+43018.13204325153 4.0097356 -7353.9609
+43019.13204329903 4.0094995 -7354.1577
+43020.13204334653 4.0095391 -7354.5513
+43021.13204339403 4.0093813 -7354.3545
+43022.13204344152 4.0093813 -7354.1577
+43023.13204348902 4.0093813 -7354.1577
+43024.13204353652 4.0092239 -7354.1577
+43025.13204358402 4.0092239 -7354.3545
+43026.13204363151 4.0092239 -7355.5352
+43027.13204367901 4.0091453 -7354.3545
+43028.13204372651 4.0091057 -7354.1577
+43029.13204377401 4.0090666 -7354.3545
+43030.1320438215 4.0089879 -7354.3545
+43031.132043869 4.0089092 -7354.3545
+43032.1320439165 4.008791 -7353.7646
+43033.132043964 4.0087123 -7354.3545
+43034.13204401149 4.0086727 -7354.7485
+43035.13204405899 4.008594 -7353.9609
+43036.13204410649 4.0084758 -7354.3545
+43037.13204415399 4.0085549 -7354.5513
+43038.13204420148 4.0083971 -7354.9453
+43039.13204424898 4.0084367 -7355.1421
+43040.13204429648 4.0083184 -7354.1577
+43041.13204434398 4.0082006 -7354.1577
+43042.13204439147 4.0082397 -7354.7485
+43043.13204443897 4.0081611 -7354.1577
+43044.13204448647 4.0082006 -7354.3545
+43045.13204453397 4.0080824 -7354.3545
+43046.13204458146 4.007925 -7354.7485
+43047.13204462896 4.0078855 -7354.3545
+43048.13204467646 4.0078855 -7354.7485
+43049.13204472396 4.0078068 -7354.5513
+43050.13204477145 4.0076494 -7354.3545
+43051.13204481895 4.0076494 -7354.7485
+43052.13204486645 4.0076098 -7354.1577
+43053.13204491395 4.0075312 -7355.1421
+43054.13204496144 4.0074525 -7354.1577
+43055.13204500894 4.0074129 -7353.9609
+43056.13204505644 4.0074525 -7353.9609
+43057.13204510394 4.0073342 -7354.1577
+43058.13204515143 4.007216 -7354.7485
+43059.13204519893 4.0071769 -7354.1577
+43060.13204524643 4.0071373 -7355.1421
+43061.13204529393 4.0070982 -7354.9453
+43062.13204534142 4.0070195 -7354.5513
+43063.13204538892 4.0070195 -7353.3706
+43064.13204543642 4.0069404 -7353.9609
+43065.13204548392 4.0068617 -7354.3545
+43066.13204553141 4.0068226 -7354.3545
+43067.13204557891 4.0067043 -7354.7485
+43068.13204562641 4.0067439 -7354.1577
+43069.1320456739 4.0066652 -7354.5513
+43070.1320457214 4.0065861 -7354.1577
+43071.1320457689 4.0065074 -7354.5513
+43072.1320458164 4.0065074 -7353.7646
+43073.13204586389 4.0063105 -7354.5513
+43074.13204591139 4.0063105 -7353.9609
+43075.13204595889 4.0063105 -7354.5513
+43076.13204600639 4.0062318 -7354.9453
+43077.13204605388 4.0061927 -7354.1577
+43078.13204610138 4.0061531 -7354.1577
+43079.13204614888 4.0061531 -7354.3545
+43080.13204619638 4.0060349 -7354.3545
+43081.13204624387 4.0058775 -7354.5513
+43082.13204629137 4.0059171 -7354.1577
+43083.13204633887 4.0059562 -7355.5352
+43084.13204638637 4.0057597 -7353.3706
+43085.13204643386 4.0057201 -7354.1577
+43086.13204648136 4.0057201 -7354.1577
+43087.13204652886 4.0056415 -7354.1577
+43088.13204657636 4.0056019 -7355.1421
+43089.13204662385 4.0054841 -7355.1421
+43090.13204667135 4.0054445 -7353.9609
+43091.13204671885 4.0054445 -7354.1577
+43092.13204676635 4.0052476 -7353.9609
+43093.13204681384 4.0053263 -7355.3384
+43094.13204686134 4.0053658 -7354.1577
+43095.13204690884 4.0052872 -7354.1577
+43096.13204695634 4.0051298 -7354.3545
+43097.13204700383 4.0051689 -7354.7485
+43098.13204705133 4.0050902 -7354.1577
+43099.13204709883 4.0050116 -7354.3545
+43100.13204714633 4.0048933 -7354.3545
+43101.13204719382 4.0048933 -7354.3545
+43102.13204724132 4.0048146 -7353.3706
+43103.13204728882 4.0048933 -7354.1577
+43104.13204733632 4.0047359 -7353.7646
+43105.13204738381 4.0046573 -7354.3545
+43106.13204743131 4.0046573 -7354.3545
+43107.13204747881 4.0046573 -7354.7485
+43108.13204752631 4.0044999 -7354.7485
+43109.1320475738 4.0044999 -7353.9609
+43110.1320476213 4.0046177 -7354.5513
+43111.1320476688 4.0044999 -7355.1421
+43112.1320477163 4.004303 -7353.5669
+43113.13204776379 4.0043421 -7354.5513
+43114.13204781129 4.004303 -7354.1577
+43115.13204785879 4.004303 -7354.1577
+43116.13204790629 4.0042634 -7354.9453
+43117.13204795378 4.0042243 -7353.5669
+43118.13204800128 4.0041847 -7354.1577
+43119.13204804878 4.004106 -7354.5513
+43120.13204809628 4.004106 -7353.9609
+43121.13204814377 4.0039487 -7354.5513
+43122.13204819127 4.0039091 -7354.7485
+43123.13204823877 4.0037909 -7354.1577
+43124.13204828626 4.0037909 -7354.1577
+43125.13204833376 4.0037122 -7354.9453
+43126.13204838126 4.0037122 -7354.9453
+43127.13204842876 4.0036731 -7353.9609
+43128.13204847625 4.0035152 -7354.1577
+43129.13204852375 4.0035944 -7354.3545
+43130.13204857125 4.0036335 -7353.9609
+43131.13204861875 4.0034761 -7355.1421
+43132.13204866624 4.0033975 -7354.3545
+43133.13204871374 4.0034366 -7353.7646
+43134.13204876124 4.0033188 -7354.1577
+43135.13204880874 4.0032396 -7354.5513
+43136.13204885623 4.0032005 -7354.7485
+43137.13204890373 4.003161 -7354.7485
+43138.13204895123 4.0030432 -7354.1577
+43139.13204899873 4.0029645 -7355.1421
+43140.13204904622 4.0029645 -7354.5513
+43141.13204909372 4.0029249 -7354.3545
+43142.13204914122 4.0028853 -7354.5513
+43143.13204918872 4.0028462 -7354.7485
+43144.13204923621 4.0028462 -7353.5669
+43145.13204928371 4.0027676 -7354.7485
+43146.13204933121 4.002728 -7354.1577
+43147.13204937871 4.0026097 -7354.3545
+43148.1320494262 4.0026097 -7354.5513
+43149.1320494737 4.002492 -7353.5669
+43150.1320495212 4.0024133 -7354.9453
+43151.1320495687 4.002492 -7354.5513
+43152.13204961619 4.0023341 -7354.5513
+43153.13204966369 4.0023341 -7353.7646
+43154.13204971119 4.002295 -7354.1577
+43155.13204975869 4.0022554 -7354.3545
+43156.13204980618 4.0021768 -7353.9609
+43157.13204985368 4.0020981 -7354.3545
+43158.13204990118 4.0021377 -7354.9453
+43159.13204994868 4.0020194 -7354.1577
+43160.13204999617 4.002059 -7353.5669
+43161.13205004367 4.0019011 -7354.3545
+43162.13205009117 4.001862 -7354.3545
+43163.13205013867 4.0017042 -7354.1577
+43164.13205018616 4.0017834 -7354.3545
+43165.13205023366 4.0017042 -7354.9453
+43166.13205028116 4.0017438 -7354.3545
+43167.13205032866 4.0016255 -7354.3545
+43168.13205037615 4.0015864 -7354.7485
+43169.13205042365 4.0015469 -7354.1577
+43170.13205047115 4.0015469 -7354.7485
+43171.13205051865 4.0013499 -7353.5669
+43172.13205056614 4.0013895 -7353.9609
+43173.13205061364 4.0013108 -7354.3545
+43174.13205066114 4.0011926 -7353.7646
+43175.13205070863 4.0011926 -7355.1421
+43176.13205075613 4.0010743 -7354.3545
+43177.13205080363 4.0010743 -7354.3545
+43178.13205085113 4.0009565 -7354.9453
+43179.13205089862 4.0010352 -7354.1577
+43180.13205094612 4.000917 -7353.9609
+43181.13205099362 4.000917 -7353.7646
+43182.13205104112 4.0007596 -7354.1577
+43183.13205108861 4.0008779 -7354.1577
+43184.13205113611 4.0006413 -7354.7485
+43185.13205118361 4.0006809 -7354.7485
+43186.13205123111 4.0006022 -7353.5669
+43187.1320512786 4.0006022 -7353.9609
+43188.1320513261 4.0005236 -7353.9609
+43189.1320513736 4.0003657 -7353.9609
+43190.1320514211 4.0002871 -7355.1421
+43191.13205146859 4.000248 -7353.9609
+43192.13205151609 4.0002871 -7354.7485
+43193.13205156359 4.0001688 -7354.1577
+43194.13205161109 4.0001297 -7353.9609
+43195.13205165858 4.000051 -7354.3545
+43196.13205170608 4.0000114 -7354.3545
+43197.13205175358 4.000051 -7354.3545
+43198.13205180108 3.9998937 -7354.5513
+43199.13205184857 3.9998541 -7353.9609
+43200.13205189607 3.9996967 -7355.1421
+43201.13205194357 3.9997754 -7354.3545
+43202.13205199107 3.9997754 -7354.5513
+43203.13205203856 3.9996967 -7353.5669
+43204.13205208606 3.9996574 -7354.3545
+43205.13205213356 3.9995787 -7354.1577
+43206.13205218106 3.9995391 -7354.3545
+43207.13205222855 3.9995391 -7354.5513
+43208.13205227605 3.9995391 -7354.7485
+43209.13205232355 3.9994998 -7354.5513
+43210.13205237105 3.9994211 -7354.1577
+43211.13205241854 3.9992638 -7354.7485
+43212.13205246604 3.9992638 -7354.7485
+43213.13205251354 3.9992242 -7354.7485
+43214.13205256104 3.9992242 -7354.5513
+43215.13205260853 3.9991455 -7354.1577
+43216.13205265603 3.9991455 -7354.3545
+43217.13205270353 3.9989486 -7354.3545
+43218.13205275103 3.9989486 -7354.3545
+43219.13205279852 3.9988306 -7354.9453
+43220.13205284602 3.9988306 -7354.1577
+43221.13205289352 3.9987912 -7354.5513
+43222.13205294102 3.9987912 -7353.7646
+43223.13205298851 3.9985549 -7354.1577
+43224.13205303601 3.9986732 -7354.5513
+43225.13205308351 3.9986336 -7355.1421
+43226.132053131 3.9985549 -7354.7485
+43227.1320531785 3.9985156 -7353.9609
+43228.132053226 3.9983976 -7354.3545
+43229.1320532735 3.9983582 -7354.3545
+43230.13205332099 3.9982793 -7354.3545
+43231.13205336849 3.9982793 -7354.3545
+43232.13205341599 3.9981613 -7354.3545
+43233.13205346349 3.998122 -7354.5513
+43234.13205351098 3.9980826 -7355.1421
+43235.13205355848 3.9980826 -7353.5669
+43236.13205360598 3.9978464 -7354.3545
+43237.13205365348 3.9978857 -7354.5513
+43238.13205370097 3.9978464 -7354.1577
+43239.13205374847 3.9976888 -7354.5513
+43240.13205379597 3.9976494 -7353.5669
+43241.13205384347 3.9975708 -7354.3545
+43242.13205389096 3.9976494 -7354.1577
+43243.13205393846 3.9976494 -7354.5513
+43244.13205398596 3.9975314 -7354.1577
+43245.13205403346 3.9975314 -7354.5513
+43246.13205408095 3.9974134 -7354.7485
+43247.13205412845 3.9974134 -7354.1577
+43248.13205417595 3.9971378 -7354.3545
+43249.13205422345 3.9973738 -7354.5513
+43250.13205427094 3.9972165 -7354.7485
+43251.13205431844 3.9970589 -7354.5513
+43252.13205436594 3.9971771 -7354.3545
+43253.13205441344 3.9971378 -7354.1577
+43254.13205446093 3.9969802 -7354.7485
+43255.13205450843 3.9969409 -7353.9609
+43256.13205455593 3.9968622 -7354.5513
+43257.13205460343 3.9968622 -7354.3545
+43258.13205465092 3.9967439 -7354.1577
+43259.13205469842 3.9967833 -7355.1421
+43260.13205474592 3.9965866 -7353.7646
+43261.13205479342 3.9965866 -7354.7485
+43262.13205484091 3.9965079 -7354.7485
+43263.13205488841 3.9964683 -7354.1577
+43264.13205493591 3.9964683 -7354.3545
+43265.13205498341 3.9964683 -7354.5513
+43266.1320550309 3.996429 -7354.5513
+43267.1320550784 3.9963109 -7354.3545
+43268.1320551259 3.9962323 -7355.1421
+43269.1320551734 3.9963503 -7354.1577
+43270.13205522089 3.9962323 -7355.3384
+43271.13205526839 3.9962716 -7354.5513
+43272.13205531589 3.9960747 -7354.7485
+43273.13205536339 3.9960353 -7354.3545
+43274.13205541088 3.995996 -7353.9609
+43275.13205545838 3.995878 -7354.7485
+43276.13205550588 3.9958384 -7354.5513
+43277.13205555337 3.9958384 -7354.5513
+43278.13205560087 3.9958384 -7354.3545
+43279.13205564837 3.9957204 -7354.9453
+43280.13205569587 3.9956024 -7353.9609
+43281.13205574336 3.995563 -7354.7485
+43282.13205579086 3.9954841 -7353.7646
+43283.13205583836 3.9954841 -7354.9453
+43284.13205588586 3.9954054 -7354.7485
+43285.13205593335 3.9953268 -7354.7485
+43286.13205598085 3.9953268 -7354.7485
+43287.13205602835 3.9952085 -7352.7803
+43288.13205607585 3.9950905 -7353.1738
+43289.13205612334 3.9951692 -7354.7485
+43290.13205617084 3.9951298 -7354.1577
+43291.13205621834 3.9949725 -7354.3545
+43292.13205626584 3.9949725 -7353.3706
+43293.13205631333 3.9947755 -7353.3706
+43294.13205636083 3.9948542 -7354.5513
+43295.13205640833 3.9948149 -7354.3545
+43296.13205645583 3.9947362 -7354.3545
+43297.13205650332 3.9946969 -7354.7485
+43298.13205655082 3.9946969 -7354.5513
+43299.13205659832 3.9945393 -7353.9609
+43300.13205664582 3.9945393 -7354.3545
+43301.13205669331 3.9944212 -7354.3545
+43302.13205674081 3.9944212 -7354.1577
+43303.13205678831 3.9942636 -7354.5513
+43304.13205683581 3.9942243 -7354.7485
+43305.1320568833 3.994303 -7354.7485
+43306.1320569308 3.994185 -7353.7646
+43307.1320569783 3.9941063 -7354.7485
+43308.1320570258 3.9941063 -7354.1577
+43309.13205707329 3.994067 -7354.7485
+43310.13205712079 3.9939487 -7354.9453
+43311.13205716829 3.9939487 -7354.7485
+43312.13205721579 3.993988 -7354.3545
+43313.13205726328 3.9938307 -7353.9609
+43314.13205731078 3.99387 -7354.5513
+43315.13205735828 3.9938307 -7354.5513
+43316.13205740578 3.9936731 -7354.1577
+43317.13205745327 3.9936337 -7354.7485
+43318.13205750077 3.9936731 -7354.5513
+43319.13205754827 3.9935551 -7354.5513
+43320.13205759577 3.9935157 -7354.7485
+43321.13205764326 3.9933581 -7353.7646
+43322.13205769076 3.9933581 -7354.3545
+43323.13205773826 3.9933188 -7354.9453
+43324.13205778576 3.9933975 -7354.1577
+43325.13205783325 3.9932795 -7354.1577
+43326.13205788075 3.9932401 -7353.1738
+43327.13205792825 3.9931614 -7354.3545
+43328.13205797574 3.9931221 -7354.7485
+43329.13205802324 3.9930432 -7354.1577
+43330.13205807074 3.9930432 -7354.3545
+43331.13205811824 3.9930432 -7354.5513
+43332.13205816573 3.9929645 -7354.9453
+43333.13205821323 3.9928858 -7354.5513
+43334.13205826073 3.9928071 -7354.7485
+43335.13205830823 3.9928071 -7354.7485
+43336.13205835572 3.9927676 -7353.3706
+43337.13205840322 3.9927282 -7354.3545
+43338.13205845072 3.9926102 -7354.3545
+43339.13205849822 3.9926496 -7354.5513
+43340.13205854571 3.9925709 -7353.5669
+43341.13205859321 3.9925709 -7354.3545
+43342.13205864071 3.9926102 -7353.9609
+43343.13205868821 3.9923739 -7354.9453
+43344.1320587357 3.9924526 -7354.3545
+43345.1320587832 3.9923346 -7353.7646
+43346.1320588307 3.9922166 -7353.9609
+43347.1320588782 3.9922559 -7354.1577
+43348.13205892569 3.9922166 -7354.9453
+43349.13205897319 3.9922166 -7354.5513
+43350.13205902069 3.9920983 -7353.9609
+43351.13205906819 3.9920197 -7353.9609
+43352.13205911568 3.9920197 -7354.1577
+43353.13205916318 3.992059 -7353.7646
+43354.13205921068 3.9918623 -7354.1577
+43355.13205925818 3.991744 -7353.7646
+43356.13205930567 3.9919016 -7354.3545
+43357.13205935317 3.991744 -7354.7485
+43358.13205940067 3.991744 -7354.5513
+43359.13205944817 3.9917047 -7354.3545
+43360.13205949566 3.9915867 -7353.9609
+43361.13205954316 3.9915078 -7354.3545
+43362.13205959066 3.9915078 -7354.7485
+43363.13205963816 3.9914684 -7354.7485
+43364.13205968565 3.9914684 -7353.7646
+43365.13205973315 3.9913504 -7353.5669
+43366.13205978065 3.9913111 -7354.5513
+43367.13205982815 3.9912717 -7354.7485
+43368.13205987564 3.9912322 -7354.3545
+43369.13205992314 3.9911928 -7353.9609
+43370.13205997064 3.9911535 -7354.5513
+43371.13206001814 3.9910748 -7354.5513
+43372.13206006563 3.9909961 -7354.1577
+43373.13206011313 3.9909961 -7354.9453
+43374.13206016063 3.9910355 -7355.1421
+43375.13206020813 3.9909172 -7353.5669
+43376.13206025562 3.9908385 -7354.7485
+43377.13206030312 3.9907992 -7353.5669
+43378.13206035062 3.9907598 -7354.3545
+43379.13206039811 3.9906023 -7354.7485
+43380.13206044561 3.9906812 -7354.9453
+43381.13206049311 3.9906812 -7354.5513
+43382.13206054061 3.9905236 -7354.7485
+43383.1320605881 3.9904842 -7354.3545
+43384.1320606356 3.9904056 -7354.1577
+43385.1320606831 3.9902873 -7354.3545
+43386.1320607306 3.9904449 -7354.5513
+43387.13206077809 3.9902873 -7353.5669
+43388.13206082559 3.990248 -7354.3545
+43389.13206087309 3.9901299 -7353.5669
+43390.13206092059 3.9901693 -7354.1577
+43391.13206096808 3.9901299 -7354.3545
+43392.13206101558 3.9900513 -7354.7485
+43393.13206106308 3.9900117 -7354.5513
+43394.13206111058 3.989933 -7354.5513
+43395.13206115807 3.9898937 -7354.5513
+43396.13206120557 3.9898937 -7354.3545
+43397.13206125307 3.989815 -7354.5513
+43398.13206130057 3.9898543 -7354.1577
+43399.13206134806 3.9896967 -7354.3545
+43400.13206139556 3.9896967 -7354.3545
+43401.13206144306 3.9896967 -7353.9609
+43402.13206149056 3.9896967 -7354.1577
+43403.13206153805 3.9895394 -7354.3545
+43404.13206158555 3.9894607 -7354.5513
+43405.13206163305 3.9894607 -7354.5513
+43406.13206168055 3.9895394 -7355.1421
+43407.13206172804 3.9893031 -7353.9609
+43408.13206177554 3.9893425 -7354.7485
+43409.13206182304 3.9892638 -7354.3545
+43410.13206187054 3.9891458 -7354.3545
+43411.13206191803 3.9892638 -7353.9609
+43412.13206196553 3.9891458 -7354.1577
+43413.13206201303 3.9890668 -7354.9453
+43414.13206206053 3.9889882 -7354.3545
+43415.13206210802 3.9890668 -7354.1577
+43416.13206215552 3.9889882 -7354.5513
+43417.13206220302 3.9888308 -7354.5513
+43418.13206225052 3.9889095 -7354.7485
+43419.13206229801 3.9887125 -7354.7485
+43420.13206234551 3.9888701 -7354.5513
+43421.13206239301 3.9886732 -7354.3545
+43422.13206244051 3.9887519 -7354.3545
+43423.132062488 3.9885552 -7353.9609
+43424.1320625355 3.9885159 -7354.3545
+43425.132062583 3.9884765 -7353.9609
+43426.1320626305 3.9883583 -7354.7485
+43427.13206267799 3.9883583 -7354.7485
+43428.13206272549 3.9883189 -7354.1577
+43429.13206277299 3.9882402 -7354.5513
+43430.13206282048 3.9882796 -7354.3545
+43431.13206286798 3.9882402 -7354.3545
+43432.13206291548 3.9881613 -7354.1577
+43433.13206296298 3.9880826 -7355.5352
+43434.13206301047 3.988122 -7354.5513
+43435.13206305797 3.988004 -7354.5513
+43436.13206310547 3.9879253 -7354.1577
+43437.13206315297 3.987886 -7354.3545
+43438.13206320046 3.987886 -7354.7485
+43439.13206324796 3.9878464 -7354.3545
+43440.13206329546 3.987807 -7354.5513
+43441.13206334296 3.9877284 -7354.3545
+43442.13206339045 3.9877284 -7354.5513
+43443.13206343795 3.9876497 -7354.1577
+43444.13206348545 3.9876103 -7354.5513
+43445.13206353295 3.9875314 -7353.9609
+43446.13206358044 3.987571 -7354.3545
+43447.13206362794 3.9874527 -7354.3545
+43448.13206367544 3.9874134 -7354.3545
+43449.13206372294 3.9874527 -7354.1577
+43450.13206377043 3.9872954 -7354.3545
+43451.13206381793 3.9873347 -7354.1577
+43452.13206386543 3.9871771 -7354.5513
+43453.13206391293 3.9870591 -7353.7646
+43454.13206396042 3.9870198 -7354.3545
+43455.13206400792 3.9870591 -7354.3545
+43456.13206405542 3.9869411 -7354.7485
+43457.13206410292 3.9870198 -7354.3545
+43458.13206415041 3.9869411 -7353.7646
+43459.13206419791 3.9869015 -7354.5513
+43460.13206424541 3.9868228 -7354.5513
+43461.13206429291 3.9867835 -7354.7485
+43462.1320643404 3.9868622 -7353.9609
+43463.1320643879 3.9867048 -7354.3545
+43464.1320644354 3.9866261 -7354.3545
+43465.1320644829 3.9866261 -7354.1577
+43466.13206453039 3.9865079 -7354.3545
+43467.13206457789 3.9865079 -7354.5513
+43468.13206462539 3.9865079 -7353.3706
+43469.13206467289 3.9864292 -7354.5513
+43470.13206472038 3.9863899 -7354.3545
+43471.13206476788 3.986311 -7355.1421
+43472.13206481538 3.9862716 -7354.3545
+43473.13206486288 3.9862323 -7354.1577
+43474.13206491037 3.9861929 -7354.3545
+43475.13206495787 3.9861929 -7354.1577
+43476.13206500537 3.9860356 -7354.5513
+43477.13206505287 3.985996 -7354.5513
+43478.13206510036 3.9859173 -7354.1577
+43479.13206514786 3.985878 -7354.5513
+43480.13206519536 3.9858387 -7353.9609
+43481.13206524285 3.9858387 -7354.5513
+43482.13206529035 3.9857993 -7355.1421
+43483.13206533785 3.98576 -7353.5669
+43484.13206538535 3.9856417 -7353.9609
+43485.13206543284 3.9856417 -7354.3545
+43486.13206548034 3.985563 -7353.5669
+43487.13206552784 3.9854844 -7355.1421
+43488.13206557534 3.9854057 -7353.3706
+43489.13206562283 3.9854057 -7354.3545
+43490.13206567033 3.9852874 -7353.5669
+43491.13206571783 3.9852874 -7354.7485
+43492.13206576533 3.9852087 -7354.3545
+43493.13206581282 3.9851694 -7354.3545
+43494.13206586032 3.9850907 -7354.5513
+43495.13206590782 3.9849725 -7354.5513
+43496.13206595532 3.9850118 -7353.5669
+43497.13206600281 3.9848938 -7354.5513
+43498.13206605031 3.9848545 -7354.3545
+43499.13206609781 3.9849331 -7354.1577
+43500.13206614531 3.9846969 -7354.3545
+43501.1320661928 3.9847362 -7354.1577
+43502.1320662403 3.9847362 -7353.9609
+43503.1320662878 3.9846182 -7353.9609
+43504.1320663353 3.9846182 -7354.7485
+43505.13206638279 3.9845395 -7354.1577
+43506.13206643029 3.9846182 -7354.5513
+43507.13206647779 3.9845002 -7353.5669
+43508.13206652529 3.9844213 -7354.3545
+43509.13206657278 3.9843032 -7353.9609
+43510.13206662028 3.9843426 -7353.9609
+43511.13206666778 3.9843032 -7353.9609
+43512.13206671528 3.9841852 -7354.1577
+43513.13206676277 3.9841063 -7354.3545
+43514.13206681027 3.9841063 -7354.7485
+43515.13206685777 3.9840276 -7354.7485
+43516.13206690527 3.9839096 -7353.9609
+43517.13206695276 3.9839096 -7354.3545
+43518.13206700026 3.9838703 -7354.5513
+43519.13206704776 3.9838307 -7354.3545
+43520.13206709526 3.983752 -7354.5513
+43521.13206714275 3.9837127 -7355.3384
+43522.13206719025 3.9836733 -7353.7646
+43523.13206723775 3.9836733 -7354.5513
+43524.13206728525 3.9835947 -7354.7485
+43525.13206733274 3.9835157 -7354.1577
+43526.13206738024 3.9835553 -7354.5513
+43527.13206742774 3.9835157 -7354.5513
+43528.13206747524 3.983319 -7354.7485
+43529.13206752273 3.9832797 -7354.5513
+43530.13206757023 3.983319 -7355.3384
+43531.13206761773 3.9832404 -7354.5513
+43532.13206766522 3.9832404 -7354.9453
+43533.13206771272 3.9831614 -7354.9453
+43534.13206776022 3.9831614 -7354.9453
+43535.13206780772 3.9830828 -7354.7485
+43536.13206785521 3.9829648 -7353.3706
+43537.13206790271 3.9829254 -7354.7485
+43538.13206795021 3.9829648 -7354.3545
+43539.13206799771 3.9828858 -7354.1577
+43540.1320680452 3.9828465 -7354.3545
+43541.1320680927 3.9827285 -7353.9609
+43542.1320681402 3.9827285 -7354.1577
+43543.1320681877 3.9826102 -7354.9453
+43544.13206823519 3.9824922 -7354.3545
+43545.13206828269 3.9825315 -7354.3545
+43546.13206833019 3.9824922 -7353.9609
+43547.13206837769 3.9824135 -7353.9609
+43548.13206842518 3.9822953 -7353.9609
+43549.13206847268 3.9823349 -7353.7646
+43550.13206852018 3.9822953 -7354.3545
+43551.13206856768 3.9821773 -7354.3545
+43552.13206861517 3.9823349 -7354.5513
+43553.13206866267 3.9821379 -7354.7485
+43554.13206871017 3.9821379 -7353.5669
+43555.13206875767 3.9819803 -7354.1577
+43556.13206880516 3.9820592 -7354.1577
+43557.13206885266 3.9819803 -7354.3545
+43558.13206890016 3.981823 -7353.7646
+43559.13206894766 3.9818623 -7354.7485
+43560.13206899515 3.9817836 -7354.5513
+43561.13206904265 3.9817443 -7354.9453
+43562.13206909015 3.9816654 -7354.7485
+43563.13206913765 3.981626 -7354.9453
+43564.13206918514 3.981508 -7354.5513
+43565.13206923264 3.9815474 -7354.5513
+43566.13206928014 3.9814687 -7354.1577
+43567.13206932764 3.9814293 -7354.3545
+43568.13206937513 3.9813111 -7354.3545
+43569.13206942263 3.9813111 -7354.3545
+43570.13206947013 3.9811537 -7354.5513
+43571.13206951763 3.9812324 -7354.3545
+43572.13206956512 3.9811144 -7354.1577
+43573.13206961262 3.9811537 -7354.3545
+43574.13206966012 3.9809961 -7354.5513
+43575.13206970762 3.9810355 -7355.1421
+43576.13206975511 3.9809568 -7354.5513
+43577.13206980261 3.9809175 -7354.9453
+43578.13206985011 3.9807994 -7354.1577
+43579.13206989761 3.9807599 -7354.5513
+43580.1320699451 3.9807205 -7354.7485
+43581.1320699926 3.9806025 -7353.3706
+43582.1320700401 3.9806025 -7354.9453
+43583.13207008759 3.9806025 -7353.9609
+43584.13207013509 3.9806025 -7353.9609
+43585.13207018259 3.9805238 -7354.3545
+43586.13207023009 3.9803662 -7353.9609
+43587.13207027758 3.9803662 -7353.9609
+43588.13207032508 3.9802482 -7354.3545
+43589.13207037258 3.9802089 -7353.7646
+43590.13207042008 3.9801695 -7354.5513
+43591.13207046757 3.9801695 -7354.1577
+43592.13207051507 3.9800906 -7355.1421
+43593.13207056257 3.9800906 -7354.5513
+43594.13207061007 3.9799726 -7354.7485
+43595.13207065756 3.9799726 -7354.3545
+43596.13207070506 3.9800119 -7354.5513
+43597.13207075256 3.9797757 -7354.9453
+43598.13207080006 3.979815 -7354.1577
+43599.13207084755 3.9796576 -7354.5513
+43600.13207089505 3.9796183 -7354.5513
+43601.13207094255 3.979579 -7354.1577
+43602.13207099005 3.9795396 -7354.3545
+43603.13207103754 3.9794607 -7354.7485
+43604.13207108504 3.9794607 -7355.3384
+43605.13207113254 3.9793427 -7354.1577
+43606.13207118004 3.9793034 -7354.5513
+43607.13207122753 3.9792244 -7354.3545
+43608.13207127503 3.9791851 -7354.9453
+43609.13207132253 3.9791851 -7354.1577
+43610.13207137003 3.9791064 -7354.5513
+43611.13207141752 3.9790277 -7354.7485
+43612.13207146502 3.9789884 -7354.1577
+43613.13207151252 3.9789095 -7354.1577
+43614.13207156002 3.9789095 -7353.5669
+43615.13207160751 3.9789095 -7354.3545
+43616.13207165501 3.9788308 -7354.5513
+43617.13207170251 3.9787128 -7354.5513
+43618.13207175001 3.9787128 -7354.7485
+43619.1320717975 3.9786341 -7355.5352
+43620.132071845 3.9785552 -7355.1421
+43621.1320718925 3.9785552 -7354.7485
+43622.13207194 3.9783978 -7354.7485
+43623.13207198749 3.9783585 -7354.3545
+43624.13207203499 3.9783192 -7353.9609
+43625.13207208249 3.9782009 -7354.7485
+43626.13207212999 3.9781616 -7354.1577
+43627.13207217748 3.9781222 -7353.9609
+43628.13207222498 3.9780436 -7354.5513
+43629.13207227248 3.9779253 -7354.7485
+43630.13207231998 3.9779646 -7354.3545
+43631.13207236747 3.977886 -7354.7485
+43632.13207241497 3.9777679 -7353.9609
+43633.13207246247 3.9776893 -7354.1577
+43634.13207250996 3.9776103 -7353.9609
+43635.13207255746 3.977571 -7354.3545
+43636.13207260496 3.9774923 -7354.9453
+43637.13207265246 3.977571 -7354.1577
+43638.13207269995 3.9774137 -7354.9453
+43639.13207274745 3.9773347 -7355.1421
+43640.13207279495 3.9772561 -7354.3545
+43641.13207284245 3.9772561 -7354.9453
+43642.13207288994 3.977138 -7354.5513
+43643.13207293744 3.9770987 -7354.5513
+43644.13207298494 3.9770198 -7354.7485
+43645.13207303244 3.9769018 -7354.1577
+43646.13207307993 3.9767838 -7353.9609
+43647.13207312743 3.9767442 -7353.9609
+43648.13207317493 3.9768231 -7354.5513
+43649.13207322243 3.9767048 -7354.3545
+43650.13207326992 3.9766262 -7354.3545
+43651.13207331742 3.9766262 -7354.9453
+43652.13207336492 3.9765081 -7353.7646
+43653.13207341242 3.9763505 -7354.3545
+43654.13207345991 3.9763112 -7354.1577
+43655.13207350741 3.9763112 -7354.5513
+43656.13207355491 3.9762325 -7354.7485
+43657.13207360241 3.9761932 -7354.9453
+43658.1320736499 3.9760356 -7354.3545
+43659.1320736974 3.9760356 -7354.5513
+43660.1320737449 3.9759569 -7354.1577
+43661.1320737924 3.9758782 -7354.5513
+43662.13207383989 3.9759569 -7353.9609
+43663.13207388739 3.9758389 -7353.3706
+43664.13207393489 3.9758389 -7354.7485
+43665.13207398239 3.9756026 -7353.7646
+43666.13207402988 3.9757206 -7354.3545
+43667.13207407738 3.9755633 -7354.5513
+43668.13207412488 3.9754844 -7354.1577
+43669.13207417238 3.9754057 -7354.5513
+43670.13207421987 3.9752877 -7354.7485
+43671.13207426737 3.975327 -7354.9453
+43672.13207431487 3.9752088 -7353.7646
+43673.13207436237 3.9751694 -7354.3545
+43674.13207440986 3.9750121 -7354.7485
+43675.13207445736 3.9751301 -7354.7485
+43676.13207450486 3.9750121 -7355.1421
+43677.13207455236 3.9750121 -7353.9609
+43678.13207459985 3.9748545 -7354.5513
+43679.13207464735 3.9748545 -7354.3545
+43680.13207469485 3.9748151 -7353.9609
+43681.13207474235 3.9748151 -7354.5513
+43682.13207478984 3.9746578 -7354.1577
+43683.13207483734 3.9745789 -7354.9453
+43684.13207488484 3.9746184 -7354.7485
+43685.13207493233 3.9744608 -7354.9453
+43686.13207497983 3.9743822 -7354.7485
+43687.13207502733 3.9743822 -7354.5513
+43688.13207507483 3.9743428 -7353.9609
+43689.13207512232 3.9742246 -7354.7485
+43690.13207516982 3.9741852 -7354.3545
+43691.13207521732 3.9741459 -7353.5669
+43692.13207526482 3.9740672 -7355.1421
+43693.13207531231 3.9740672 -7354.1577
+43694.13207535981 3.9740279 -7354.3545
+43695.13207540731 3.9738703 -7354.5513
+43696.13207545481 3.9739885 -7354.1577
+43697.1320755023 3.9737916 -7354.5513
+43698.1320755498 3.9737129 -7354.7485
+43699.1320755973 3.9737129 -7354.3545
+43700.1320756448 3.973634 -7354.5513
+43701.13207569229 3.9735553 -7354.3545
+43702.13207573979 3.9735553 -7354.9453
+43703.13207578729 3.973398 -7354.3545
+43704.13207583479 3.9733584 -7353.7646
+43705.13207588228 3.9734373 -7354.1577
+43706.13207592978 3.9732797 -7353.9609
+43707.13207597728 3.9732797 -7354.5513
+43708.13207602478 3.973201 -7354.9453
+43709.13207607227 3.9730434 -7353.9609
+43710.13207611977 3.9729648 -7354.3545
+43711.13207616727 3.9729648 -7354.1577
+43712.13207621477 3.9729648 -7355.1421
+43713.13207626226 3.9728074 -7354.1577
+43714.13207630976 3.9727681 -7354.1577
+43715.13207635726 3.9726105 -7354.5513
+43716.13207640476 3.9726498 -7354.7485
+43717.13207645225 3.9726105 -7354.1577
+43718.13207649975 3.9725711 -7354.1577
+43719.13207654725 3.9724925 -7353.7646
+43720.13207659475 3.9724531 -7354.9453
+43721.13207664224 3.9723349 -7354.9453
+43722.13207668974 3.9721775 -7354.5513
+43723.13207673724 3.9722955 -7355.1421
+43724.13207678474 3.9720986 -7353.9609
+43725.13207683223 3.9720199 -7354.5513
+43726.13207687973 3.9719412 -7354.5513
+43727.13207692723 3.971823 -7354.7485
+43728.13207697473 3.9718626 -7353.9609
+43729.13207702222 3.971823 -7354.7485
+43730.13207706972 3.9716263 -7354.3545
+43731.13207711722 3.9715869 -7354.7485
+43732.13207716472 3.9715869 -7354.7485
+43733.13207721221 3.9714687 -7354.9453
+43734.13207725971 3.97139 -7354.7485
+43735.13207730721 3.97139 -7353.9609
+43736.13207735471 3.971272 -7354.5513
+43737.1320774022 3.9711537 -7354.5513
+43738.1320774497 3.9711931 -7354.1577
+43739.1320774972 3.9711144 -7354.5513
+43740.13207754469 3.9711144 -7354.3545
+43741.13207759219 3.9709177 -7353.9609
+43742.13207763969 3.9707601 -7354.3545
+43743.13207768719 3.9708388 -7353.7646
+43744.13207773468 3.9707994 -7354.3545
+43745.13207778218 3.9707208 -7354.7485
+43746.13207782968 3.9706028 -7354.5513
+43747.13207787718 3.9705238 -7354.7485
+43748.13207792467 3.9704452 -7354.5513
+43749.13207797217 3.9703665 -7354.9453
+43750.13207801967 3.9704058 -7354.5513
+43751.13207806717 3.9702876 -7354.5513
+43752.13207811466 3.9701302 -7354.3545
+43753.13207816216 3.9701695 -7354.5513
+43754.13207820966 3.9701302 -7354.5513
+43755.13207825716 3.9700515 -7354.1577
+43756.13207830465 3.9699726 -7354.5513
+43757.13207835215 3.9699726 -7354.5513
+43758.13207839965 3.9698939 -7354.3545
+43759.13207844715 3.9697759 -7354.3545
+43760.13207849464 3.9698153 -7354.3545
+43761.13207854214 3.9696183 -7354.1577
+43762.13207858964 3.9695396 -7354.3545
+43763.13207863714 3.9695396 -7354.5513
+43764.13207868463 3.9695396 -7354.7485
+43765.13207873213 3.9693823 -7354.1577
+43766.13207877963 3.9693427 -7354.3545
+43767.13207882713 3.969264 -7353.7646
+43768.13207887462 3.9693034 -7353.5669
+43769.13207892212 3.9691067 -7355.1421
+43770.13207896962 3.9691067 -7354.3545
+43771.13207901712 3.9689097 -7354.1577
+43772.13207906461 3.9690673 -7354.1577
+43773.13207911211 3.9688311 -7354.7485
+43774.13207915961 3.9688311 -7355.3384
+43775.13207920711 3.9687524 -7353.7646
+43776.1320792546 3.9686341 -7352.9771
+43777.1320793021 3.9686735 -7354.1577
+43778.1320793496 3.9685161 -7353.9609
+43779.1320793971 3.9685555 -7353.3706
+43780.13207944459 3.9683585 -7354.1577
+43781.13207949209 3.9682798 -7354.1577
+43782.13207953959 3.9683192 -7354.3545
+43783.13207958709 3.9681222 -7354.1577
+43784.13207963458 3.9680829 -7354.5513
+43785.13207968208 3.9681222 -7354.1577
+43786.13207972958 3.9680436 -7353.9609
+43787.13207977708 3.9679649 -7353.7646
+43788.13207982457 3.9678469 -7354.3545
+43789.13207987207 3.9678073 -7354.9453
+43790.13207991957 3.967768 -7352.9771
+43791.13207996706 3.9677286 -7354.1577
+43792.13208001456 3.9674923 -7354.9453
+43793.13208006206 3.9675713 -7354.9453
+43794.13208010956 3.9674923 -7354.9453
+43795.13208015705 3.9672956 -7354.5513
+43796.13208020455 3.9673743 -7354.7485
+43797.13208025205 3.967335 -7354.3545
+43798.13208029955 3.9671381 -7354.3545
+43799.13208034704 3.9670987 -7354.1577
+43800.13208039454 3.9670987 -7355.5352
+43801.13208044204 3.9671381 -7354.1577
+43802.13208048954 3.9669414 -7354.7485
+43803.13208053703 3.9669807 -7354.3545
+43804.13208058453 3.9668624 -7353.7646
+43805.13208063203 3.9667838 -7353.1738
+43806.13208067953 3.9667051 -7354.9453
+43807.13208072702 3.9667051 -7353.9609
+43808.13208077452 3.9665868 -7354.3545
+43809.13208082202 3.9665082 -7354.9453
+43810.13208086952 3.9664688 -7355.1421
+43811.13208091701 3.9663508 -7354.7485
+43812.13208096451 3.9661932 -7353.7646
+43813.13208101201 3.9661539 -7354.7485
+43814.13208105951 3.9661145 -7354.1577
+43815.132081107 3.9661539 -7354.3545
+43816.1320811545 3.9659965 -7354.3545
+43817.132081202 3.9659569 -7354.7485
+43818.1320812495 3.9659176 -7354.1577
+43819.13208129699 3.9657996 -7353.9609
+43820.13208134449 3.9657209 -7354.5513
+43821.13208139199 3.965642 -7354.3545
+43822.13208143949 3.9656026 -7354.5513
+43823.13208148698 3.965524 -7353.3706
+43824.13208153448 3.9654059 -7354.9453
+43825.13208158198 3.9652877 -7354.3545
+43826.13208162948 3.9652877 -7354.7485
+43827.13208167697 3.9652877 -7353.5669
+43828.13208172447 3.965209 -7354.5513
+43829.13208177197 3.9650121 -7354.5513
+43830.13208181947 3.9650121 -7355.1421
+43831.13208186696 3.9649727 -7354.1577
+43832.13208191446 3.964776 -7353.5669
+43833.13208196196 3.964776 -7355.5352
+43834.13208200946 3.9647365 -7353.7646
+43835.13208205695 3.9646578 -7354.3545
+43836.13208210445 3.9645398 -7353.9609
+43837.13208215195 3.9645398 -7354.3545
+43838.13208219945 3.9644611 -7353.5669
+43839.13208224694 3.9644215 -7354.3545
+43840.13208229444 3.9643822 -7354.3545
+43841.13208234194 3.9642642 -7354.9453
+43842.13208238943 3.9640279 -7354.3545
+43843.13208243693 3.9641461 -7354.7485
+43844.13208248443 3.9640672 -7354.9453
+43845.13208253193 3.9639885 -7354.7485
+43846.13208257942 3.9639885 -7353.9609
+43847.13208262692 3.9638705 -7354.3545
+43848.13208267442 3.9638312 -7353.5669
+43849.13208272192 3.9637129 -7354.9453
+43850.13208276941 3.9637523 -7353.7646
+43851.13208281691 3.9635556 -7354.5513
+43852.13208286441 3.9634373 -7354.3545
+43853.13208291191 3.9634373 -7355.1421
+43854.1320829594 3.9633193 -7354.5513
+43855.1320830069 3.9631224 -7353.7646
+43856.1320830544 3.9631224 -7354.7485
+43857.1320831019 3.9630044 -7354.9453
+43858.13208314939 3.9630044 -7354.9453
+43859.13208319689 3.9629257 -7354.5513
+43860.13208324439 3.9627287 -7355.1421
+43861.13208329189 3.9626894 -7353.5669
+43862.13208333938 3.9627287 -7353.9609
+43863.13208338688 3.9626107 -7354.3545
+43864.13208343438 3.9625318 -7354.3545
+43865.13208348188 3.9624531 -7354.5513
+43866.13208352937 3.9623744 -7354.5513
+43867.13208357687 3.9624925 -7354.5513
+43868.13208362437 3.9622562 -7354.5513
+43869.13208367187 3.9621382 -7354.9453
+43870.13208371936 3.9621775 -7354.1577
+43871.13208376686 3.9619808 -7354.5513
+43872.13208381436 3.9619412 -7354.5513
+43873.13208386186 3.9617839 -7354.3545
+43874.13208390935 3.9617445 -7354.3545
+43875.13208395685 3.9617052 -7354.3545
+43876.13208400435 3.9615476 -7354.5513
+43877.13208405185 3.9614689 -7353.9609
+43878.13208409934 3.9613507 -7353.9609
+43879.13208414684 3.9613903 -7354.5513
+43880.13208419434 3.961272 -7354.3545
+43881.13208424184 3.9612327 -7353.7646
+43882.13208428933 3.961154 -7355.3384
+43883.13208433683 3.9609571 -7354.7485
+43884.13208438433 3.9610753 -7354.3545
+43885.13208443183 3.9609177 -7354.3545
+43886.13208447932 3.9608784 -7354.7485
+43887.13208452682 3.9607208 -7354.7485
+43888.13208457432 3.9607604 -7354.5513
+43889.13208462182 3.9605634 -7354.7485
+43890.13208466931 3.9605241 -7354.3545
+43891.13208471681 3.9604058 -7354.5513
+43892.13208476431 3.9603271 -7355.1421
+43893.1320848118 3.9602878 -7354.5513
+43894.1320848593 3.9602091 -7353.9609
+43895.1320849068 3.9601698 -7353.9609
+43896.1320849543 3.9601305 -7355.1421
+43897.13208500179 3.9599335 -7354.1577
+43898.13208504929 3.9598942 -7354.1577
+43899.13208509679 3.9598548 -7354.5513
+43900.13208514429 3.9598942 -7354.1577
+43901.13208519178 3.9597366 -7354.7485
+43902.13208523928 3.9596972 -7354.1577
+43903.13208528678 3.9595399 -7353.5669
+43904.13208533428 3.959461 -7353.5669
+43905.13208538177 3.9593036 -7354.3545
+43906.13208542927 3.9593823 -7354.5513
+43907.13208547677 3.9591854 -7354.3545
+43908.13208552427 3.9592249 -7354.7485
+43909.13208557176 3.959028 -7354.9453
+43910.13208561926 3.9589887 -7354.5513
+43911.13208566676 3.9589493 -7354.7485
+43912.13208571426 3.95891 -7353.5669
+43913.13208576175 3.9587917 -7354.7485
+43914.13208580925 3.9586737 -7354.9453
+43915.13208585675 3.9585161 -7354.1577
+43916.13208590425 3.9585555 -7354.3545
+43917.13208595174 3.9585161 -7355.1421
+43918.13208599924 3.9583981 -7354.1577
+43919.13208604674 3.9583194 -7354.3545
+43920.13208609424 3.9582012 -7354.5513
+43921.13208614173 3.9582012 -7354.5513
+43922.13208618923 3.9580832 -7354.5513
+43923.13208623673 3.9580045 -7354.1577
+43924.13208628423 3.9579256 -7355.1421
+43925.13208633172 3.9578862 -7355.1421
+43926.13208637922 3.9576895 -7354.5513
+43927.13208642672 3.9576895 -7354.3545
+43928.13208647422 3.9577289 -7353.9609
+43929.13208652171 3.9576106 -7353.9609
+43930.13208656921 3.9574139 -7353.5669
+43931.13208661671 3.9573746 -7354.1577
+43932.13208666421 3.9572563 -7354.5513
+43933.1320867117 3.957217 -7355.1421
+43934.1320867592 3.9571383 -7354.5513
+43935.1320868067 3.9570596 -7355.3384
+43936.1320868542 3.9569414 -7354.3545
+43937.13208690169 3.956902 -7354.9453
+43938.13208694919 3.956784 -7354.5513
+43939.13208699669 3.956784 -7354.3545
+43940.13208704419 3.9566658 -7354.7485
+43941.13208709168 3.9565084 -7354.5513
+43942.13208713918 3.9564297 -7354.5513
+43943.13208718668 3.9564297 -7354.5513
+43944.13208723417 3.9563115 -7353.7646
+43945.13208728167 3.9562721 -7354.3545
+43946.13208732917 3.9561148 -7353.9609
+43947.13208737667 3.9560752 -7354.3545
+43948.13208742416 3.9559965 -7354.1577
+43949.13208747166 3.9558785 -7354.3545
+43950.13208751916 3.9557602 -7353.9609
+43951.13208756666 3.9557209 -7354.3545
+43952.13208761415 3.9557996 -7354.9453
+43953.13208766165 3.9556422 -7354.5513
+43954.13208770915 3.9556029 -7354.7485
+43955.13208775665 3.9553666 -7354.5513
+43956.13208780414 3.9552879 -7354.5513
+43957.13208785164 3.955406 -7354.3545
+43958.13208789914 3.9552879 -7353.9609
+43959.13208794664 3.955091 -7354.7485
+43960.13208799413 3.955091 -7354.7485
+43961.13208804163 3.954973 -7354.3545
+43962.13208808913 3.9548547 -7354.3545
+43963.13208813663 3.9548154 -7354.5513
+43964.13208818412 3.9547367 -7354.3545
+43965.13208823162 3.954658 -7354.5513
+43966.13208827912 3.9546187 -7354.7485
+43967.13208832662 3.9544611 -7354.7485
+43968.13208837411 3.9543431 -7354.7485
+43969.13208842161 3.9543431 -7354.1577
+43970.13208846911 3.9541461 -7354.1577
+43971.13208851661 3.9542248 -7354.5513
+43972.1320885641 3.9540281 -7354.5513
+43973.1320886116 3.9539888 -7354.3545
+43974.1320886591 3.9538312 -7354.7485
+43975.1320887066 3.9538312 -7353.7646
+43976.13208875409 3.9537919 -7354.1577
+43977.13208880159 3.9536343 -7354.7485
+43978.13208884909 3.9535556 -7354.3545
+43979.13208889659 3.9533982 -7354.9453
+43980.13208894408 3.9534769 -7355.1421
+43981.13208899158 3.9533193 -7354.5513
+43982.13208903908 3.9532406 -7354.3545
+43983.13208908658 3.9531226 -7355.1421
+43984.13208913407 3.9530439 -7354.3545
+43985.13208918157 3.9530044 -7354.7485
+43986.13208922907 3.952847 -7354.7485
+43987.13208927657 3.9528077 -7354.3545
+43988.13208932406 3.9527683 -7354.1577
+43989.13208937156 3.9527683 -7353.9609
+43990.13208941906 3.9526501 -7354.5513
+43991.13208946656 3.9525714 -7353.5669
+43992.13208951405 3.9523745 -7354.5513
+43993.13208956155 3.9522958 -7354.5513
+43994.13208960905 3.9522564 -7354.7485
+43995.13208965654 3.9521778 -7355.1421
+43996.13208970404 3.9520988 -7354.1577
+43997.13208975154 3.9519022 -7354.5513
+43998.13208979904 3.9518628 -7354.1577
+43999.13208984653 3.9518235 -7353.9609
+44000.13208989403 3.9516659 -7353.9609
+44001.13208994153 3.9517052 -7354.1577
+44002.13208998903 3.9515872 -7354.5513
+44003.13209003652 3.9515872 -7354.7485
+44004.13209008402 3.9513903 -7354.9453
+44005.13209013152 3.9513116 -7353.3706
+44006.13209017902 3.9511936 -7354.9453
+44007.13209022651 3.9512329 -7354.3545
+44008.13209027401 3.9509966 -7353.7646
+44009.13209032151 3.9509966 -7354.3545
+44010.13209036901 3.950918 -7354.7485
+44011.1320904165 3.950839 -7354.1577
+44012.132090464 3.9507997 -7354.1577
+44013.1320905115 3.9505634 -7354.5513
+44014.132090559 3.950603 -7354.1577
+44015.13209060649 3.9504848 -7354.7485
+44016.13209065399 3.9503667 -7354.1577
+44017.13209070149 3.9504061 -7355.1421
+44018.13209074899 3.9501698 -7354.3545
+44019.13209079648 3.9500911 -7354.9453
+44020.13209084398 3.9501698 -7355.3384
+44021.13209089148 3.9500124 -7354.9453
+44022.13209093898 3.9500124 -7354.7485
+44023.13209098647 3.9498155 -7354.3545
+44024.13209103397 3.9496582 -7354.1577
+44025.13209108147 3.9496582 -7354.7485
+44026.13209112897 3.9495006 -7354.7485
+44027.13209117646 3.9494219 -7354.9453
+44028.13209122396 3.9493825 -7354.3545
+44029.13209127146 3.9492249 -7354.9453
+44030.13209131896 3.9492249 -7353.3706
+44031.13209136645 3.9491463 -7354.3545
+44032.13209141395 3.9491069 -7353.7646
+44033.13209146145 3.9489887 -7354.1577
+44034.13209150895 3.948792 -7353.1738
+44035.13209155644 3.9488313 -7355.1421
+44036.13209160394 3.948792 -7353.7646
+44037.13209165144 3.948595 -7354.1577
+44038.13209169894 3.9485557 -7354.1577
+44039.13209174643 3.9485164 -7353.9609
+44040.13209179393 3.9483981 -7354.5513
+44041.13209184143 3.9482801 -7354.7485
+44042.13209188893 3.9481227 -7353.7646
+44043.13209193642 3.9480832 -7354.5513
+44044.13209198392 3.9480438 -7354.5513
+44045.13209203142 3.9479258 -7354.5513
+44046.13209207891 3.9478078 -7354.7485
+44047.13209212641 3.9477682 -7353.9609
+44048.13209217391 3.9476895 -7354.5513
+44049.13209222141 3.9475322 -7354.7485
+44050.1320922689 3.9474139 -7354.3545
+44051.1320923164 3.9473746 -7355.3384
+44052.1320923639 3.9474139 -7355.1421
+44053.1320924114 3.9472172 -7354.1577
+44054.13209245889 3.9472172 -7353.9609
+44055.13209250639 3.947099 -7353.9609
+44056.13209255389 3.9468627 -7354.7485
+44057.13209260139 3.9469023 -7354.7485
+44058.13209264888 3.9468234 -7355.1421
+44059.13209269638 3.9466267 -7354.3545
+44060.13209274388 3.9465873 -7353.9609
+44061.13209279138 3.9465477 -7354.5513
+44062.13209283887 3.9463904 -7354.3545
+44063.13209288637 3.9462724 -7353.9609
+44064.13209293387 3.9461541 -7354.7485
+44065.13209298137 3.9461148 -7353.9609
+44066.13209302886 3.9460754 -7353.7646
+44067.13209307636 3.9460361 -7355.1421
+44068.13209312386 3.9457998 -7354.1577
+44069.13209317136 3.9458392 -7354.3545
+44070.13209321885 3.9457211 -7354.1577
+44071.13209326635 3.9456425 -7353.9609
+44072.13209331385 3.9455636 -7353.9609
+44073.13209336135 3.9453275 -7354.3545
+44074.13209340884 3.9453669 -7354.7485
+44075.13209345634 3.9452486 -7354.1577
+44076.13209350384 3.9452879 -7354.5513
+44077.13209355134 3.9451699 -7354.5513
+44078.13209359883 3.944973 -7354.3545
+44079.13209364633 3.9449337 -7354.1577
+44080.13209369383 3.9448156 -7354.3545
+44081.13209374133 3.9447763 -7354.5513
+44082.13209378882 3.944658 -7355.1421
+44083.13209383632 3.94454 -7354.5513
+44084.13209388382 3.9445794 -7354.5513
+44085.13209393132 3.9443038 -7354.1577
+44086.13209397881 3.9442251 -7354.1577
+44087.13209402631 3.9442251 -7355.3384
+44088.13209407381 3.9441071 -7353.9609
+44089.13209412131 3.9439888 -7353.7646
+44090.1320941688 3.9439101 -7354.1577
+44091.1320942163 3.9438708 -7354.3545
+44092.1320942638 3.9436738 -7355.1421
+44093.1320943113 3.9435952 -7354.7485
+44094.13209435879 3.9435952 -7354.1577
+44095.13209440629 3.9435165 -7354.1577
+44096.13209445379 3.9433982 -7354.5513
+44097.13209450128 3.9433196 -7354.5513
+44098.13209454878 3.9432015 -7353.5669
+44099.13209459628 3.9430833 -7354.7485
+44100.13209464378 3.9430046 -7355.1421
+44101.13209469127 3.9428866 -7354.9453
+44102.13209473877 3.9429259 -7354.5513
+44103.13209478627 3.9428077 -7354.7485
+44104.13209483377 3.9426897 -7354.1577
+44105.13209488126 3.9425716 -7353.7646
+44106.13209492876 3.9425321 -7354.3545
+44107.13209497626 3.942414 -7354.3545
+44108.13209502376 3.9422567 -7354.7485
+44109.13209507125 3.9422567 -7355.1421
+44110.13209511875 3.9420991 -7354.5513
+44111.13209516625 3.9420204 -7354.1577
+44112.13209521375 3.9419811 -7354.5513
+44113.13209526124 3.9419022 -7354.1577
+44114.13209530874 3.9418235 -7355.5352
+44115.13209535624 3.9417055 -7354.3545
+44116.13209540374 3.9415479 -7354.7485
+44117.13209545123 3.9414299 -7354.3545
+44118.13209549873 3.9413512 -7354.1577
+44119.13209554623 3.9412329 -7353.9609
+44120.13209559373 3.9412329 -7354.5513
+44121.13209564122 3.9411542 -7355.5352
+44122.13209568872 3.9409573 -7354.1577
+44123.13209573622 3.940918 -7354.7485
+44124.13209578372 3.9408393 -7353.9609
+44125.13209583121 3.9407606 -7354.5513
+44126.13209587871 3.9406424 -7354.1577
+44127.13209592621 3.9405637 -7354.5513
+44128.13209597371 3.9404063 -7354.3545
+44129.1320960212 3.9404063 -7353.7646
+44130.1320960687 3.9403274 -7354.5513
+44131.1320961162 3.9401307 -7354.1577
+44132.1320961637 3.9402094 -7354.1577
+44133.13209621119 3.9399338 -7354.1577
+44134.13209625869 3.9398551 -7354.3545
+44135.13209630619 3.9398551 -7354.7485
+44136.13209635369 3.9397762 -7355.5352
+44137.13209640118 3.9396975 -7354.3545
+44138.13209644868 3.9395795 -7354.1577
+44139.13209649618 3.9394612 -7354.1577
+44140.13209654368 3.9393826 -7354.3545
+44141.13209659117 3.9393039 -7354.1577
+44142.13209663867 3.9390676 -7354.7485
+44143.13209668617 3.9391069 -7354.7485
+44144.13209673367 3.9389102 -7354.7485
+44145.13209678116 3.938792 -7354.5513
+44146.13209682866 3.938792 -7355.1421
+44147.13209687616 3.9386346 -7354.1577
+44148.13209692365 3.9385953 -7354.5513
+44149.13209697115 3.9383984 -7355.1421
+44150.13209701865 3.9383984 -7353.3706
+44151.13209706615 3.9384377 -7354.3545
+44152.13209711364 3.9382014 -7354.3545
+44153.13209716114 3.9380834 -7354.3545
+44154.13209720864 3.9379654 -7354.9453
+44155.13209725614 3.9378078 -7354.7485
+44156.13209730363 3.9378078 -7355.1421
+44157.13209735113 3.9377685 -7354.5513
+44158.13209739863 3.9376898 -7354.3545
+44159.13209744613 3.9375322 -7354.9453
+44160.13209749362 3.9374142 -7355.1421
+44161.13209754112 3.9374142 -7354.3545
+44162.13209758862 3.9372959 -7354.1577
+44163.13209763612 3.9372172 -7355.3384
+44164.13209768361 3.9370205 -7354.9453
+44165.13209773111 3.9370205 -7353.5669
+44166.13209777861 3.9368236 -7354.3545
+44167.13209782611 3.9368236 -7354.5513
+44168.1320978736 3.9367449 -7354.3545
+44169.1320979211 3.9366267 -7354.9453
+44170.1320979686 3.936548 -7354.3545
+44171.1320980161 3.9363906 -7355.1421
+44172.13209806359 3.9363117 -7354.9453
+44173.13209811109 3.9363117 -7354.3545
+44174.13209815859 3.9361544 -7354.5513
+44175.13209820609 3.9359181 -7354.1577
+44176.13209825358 3.9359181 -7354.1577
+44177.13209830108 3.9359574 -7354.7485
+44178.13209834858 3.9357605 -7354.7485
+44179.13209839608 3.9357212 -7355.1421
+44180.13209844357 3.9355245 -7354.3545
+44181.13209849107 3.9355245 -7354.5513
+44182.13209853857 3.9354455 -7354.3545
+44183.13209858607 3.9353275 -7353.7646
+44184.13209863356 3.9351702 -7354.3545
+44185.13209868106 3.9350913 -7354.1577
+44186.13209872856 3.9350126 -7353.7646
+44187.13209877606 3.9349339 -7354.1577
+44188.13209882355 3.9348156 -7354.7485
+44189.13209887105 3.9347763 -7354.7485
+44190.13209891855 3.9346583 -7354.1577
+44191.13209896605 3.9344614 -7354.9453
+44192.13209901354 3.934422 -7355.1421
+44193.13209906104 3.9342251 -7354.5513
+44194.13209910854 3.9342647 -7354.5513
+44195.13209915604 3.9341464 -7354.3545
+44196.13209920353 3.9341071 -7354.7485
+44197.13209925103 3.9338315 -7354.3545
+44198.13209929853 3.9337921 -7354.1577
+44199.13209934602 3.9337528 -7354.5513
+44200.13209939352 3.9335952 -7355.3384
+44201.13209944102 3.9335558 -7354.3545
+44202.13209948852 3.9335165 -7354.5513
+44203.13209953601 3.9333591 -7354.9453
+44204.13209958351 3.9332802 -7354.1577
+44205.13209963101 3.9332016 -7353.5669
+44206.13209967851 3.9329653 -7354.7485
+44207.132099726 3.9330049 -7354.7485
+44208.1320997735 3.9328866 -7354.3545
+44209.132099821 3.9327686 -7354.3545
+44210.1320998685 3.9325323 -7354.3545
+44211.13209991599 3.9325323 -7354.1577
+44212.13209996349 3.9324143 -7354.1577
+44213.13210001099 3.9323354 -7354.5513
+44214.13210005849 3.932296 -7354.3545
+44215.13210010598 3.9321387 -7354.7485
+44216.13210015348 3.9321387 -7353.5669
+44217.13210020098 3.9319417 -7354.7485
+44218.13210024848 3.9319811 -7354.7485
+44219.13210029597 3.9317844 -7354.5513
+44220.13210034347 3.9317844 -7354.1577
+44221.13210039097 3.9315088 -7354.7485
+44222.13210043847 3.9315088 -7354.7485
+44223.13210048596 3.9313512 -7355.1421
+44224.13210053346 3.9313118 -7354.7485
+44225.13210058096 3.9310756 -7354.7485
+44226.13210062846 3.9309969 -7354.3545
+44227.13210067595 3.9309576 -7354.7485
+44228.13210072345 3.9308393 -7354.1577
+44229.13210077095 3.9307606 -7355.3384
+44230.13210081845 3.9307213 -7354.3545
+44231.13210086594 3.9306033 -7354.3545
+44232.13210091344 3.9305243 -7355.1421
+44233.13210096094 3.9304457 -7354.5513
+44234.13210100844 3.9302883 -7354.5513
+44235.13210105593 3.930249 -7354.9453
+44236.13210110343 3.9301307 -7354.7485
+44237.13210115093 3.9300127 -7353.7646
+44238.13210119843 3.9298944 -7355.1421
+44239.13210124592 3.9298158 -7354.7485
+44240.13210129342 3.9297371 -7354.1577
+44241.13210134092 3.9296191 -7354.1577
+44242.13210138842 3.9295402 -7354.3545
+44243.13210143591 3.9293828 -7354.5513
+44244.13210148341 3.9293041 -7354.3545
+44245.13210153091 3.9291859 -7354.9453
+44246.13210157841 3.9291465 -7354.7485
+44247.1321016259 3.9289889 -7353.7646
+44248.1321016734 3.9289496 -7354.3545
+44249.1321017209 3.9289103 -7354.5513
+44250.13210176839 3.928674 -7354.3545
+44251.13210181589 3.928674 -7354.3545
+44252.13210186339 3.9285166 -7354.1577
+44253.13210191089 3.9284379 -7354.3545
+44254.13210195838 3.928359 -7354.1577
+44255.13210200588 3.9281623 -7354.7485
+44256.13210205338 3.9280837 -7354.9453
+44257.13210210088 3.928123 -7354.5513
+44258.13210214837 3.9279654 -7354.5513
+44259.13210219587 3.9278474 -7354.1577
+44260.13210224337 3.9277291 -7354.5513
+44261.13210229087 3.9276505 -7354.9453
+44262.13210233836 3.9274931 -7355.1421
+44263.13210238586 3.9274142 -7353.9609
+44264.13210243336 3.9272962 -7354.5513
+44265.13210248086 3.9273355 -7354.5513
+44266.13210252835 3.9271781 -7353.3706
+44267.13210257585 3.9269419 -7355.1421
+44268.13210262335 3.9269812 -7354.7485
+44269.13210267085 3.9269419 -7354.1577
+44270.13210271834 3.9268236 -7355.1421
+44271.13210276584 3.9267056 -7354.9453
+44272.13210281334 3.9265482 -7354.7485
+44273.13210286084 3.9264693 -7354.9453
+44274.13210290833 3.9264693 -7353.7646
+44275.13210295583 3.926312 -7354.5513
+44276.13210300333 3.9262726 -7354.7485
+44277.13210305083 3.926115 -7353.9609
+44278.13210309832 3.9260757 -7354.3545
+44279.13210314582 3.9259183 -7354.9453
+44280.13210319332 3.9258788 -7354.3545
+44281.13210324082 3.9257607 -7353.9609
+44282.13210328831 3.9256034 -7353.5669
+44283.13210333581 3.9256427 -7353.7646
+44284.13210338331 3.9255245 -7354.7485
+44285.13210343081 3.9254458 -7353.7646
+44286.1321034783 3.9252882 -7354.5513
+44287.1321035258 3.9251702 -7354.1577
+44288.1321035733 3.9250128 -7353.7646
+44289.1321036208 3.9248946 -7354.5513
+44290.13210366829 3.9249339 -7354.1577
+44291.13210371579 3.9247372 -7354.3545
+44292.13210376329 3.9247372 -7354.3545
+44293.13210381079 3.9248159 -7354.9453
+44294.13210385828 3.9245009 -7354.3545
+44295.13210390578 3.9243829 -7354.3545
+44296.13210395328 3.9243829 -7354.3545
+44297.13210400078 3.9242253 -7354.5513
+44298.13210404827 3.924186 -7353.9609
+44299.13210409577 3.9240284 -7354.3545
+44300.13210414327 3.9239497 -7354.1577
+44301.13210419077 3.9238317 -7353.9609
+44302.13210423826 3.9236741 -7354.5513
+44303.13210428576 3.9236348 -7354.1577
+44304.13210433326 3.9235168 -7353.9609
+44305.13210438075 3.9234774 -7355.5352
+44306.13210442825 3.9232018 -7354.9453
+44307.13210447575 3.9231625 -7354.7485
+44308.13210452325 3.9231229 -7354.1577
+44309.13210457074 3.9230049 -7354.1577
+44310.13210461824 3.9228079 -7354.9453
+44311.13210466574 3.9228475 -7354.3545
+44312.13210471324 3.9226506 -7354.7485
+44313.13210476073 3.9226112 -7355.5352
+44314.13210480823 3.9224536 -7353.5669
+44315.13210485573 3.9222963 -7354.7485
+44316.13210490323 3.9222176 -7354.3545
+44317.13210495072 3.9220994 -7354.5513
+44318.13210499822 3.9220207 -7354.7485
+44319.13210504572 3.921942 -7354.1577
+44320.13210509322 3.9218237 -7354.3545
+44321.13210514071 3.9217844 -7354.3545
+44322.13210518821 3.9217057 -7354.5513
+44323.13210523571 3.9215875 -7353.9609
+44324.13210528321 3.9214694 -7354.7485
+44325.1321053307 3.9214301 -7353.3706
+44326.1321053782 3.9212332 -7354.3545
+44327.1321054257 3.9211152 -7355.1421
+44328.1321054732 3.9209576 -7355.5352
+44329.13210552069 3.9209576 -7354.9453
+44330.13210556819 3.9208002 -7354.1577
+44331.13210561569 3.9208002 -7354.7485
+44332.13210566319 3.9205639 -7354.5513
+44333.13210571068 3.9204853 -7353.7646
+44334.13210575818 3.9203672 -7354.5513
+44335.13210580568 3.9203277 -7354.1577
+44336.13210585318 3.920249 -7354.3545
+44337.13210590067 3.9200521 -7355.1421
+44338.13210594817 3.9199734 -7354.5513
+44339.13210599567 3.9199734 -7354.1577
+44340.13210604317 3.9197767 -7355.1421
+44341.13210609066 3.9197371 -7353.9609
+44342.13210613816 3.9196191 -7354.1577
+44343.13210618566 3.9195404 -7353.9609
+44344.13210623316 3.9193041 -7354.3545
+44345.13210628065 3.9193435 -7354.7485
+44346.13210632815 3.9191468 -7354.3545
+44347.13210637565 3.9190679 -7354.1577
+44348.13210642315 3.9190285 -7354.1577
+44349.13210647064 3.9188712 -7354.1577
+44350.13210651814 3.9188712 -7354.7485
+44351.13210656564 3.9186349 -7354.5513
+44352.13210661314 3.9186742 -7354.5513
+44353.13210666063 3.9185562 -7354.9453
+44354.13210670813 3.918438 -7354.7485
+44355.13210675563 3.9182806 -7354.3545
+44356.13210680312 3.9182017 -7354.9453
+44357.13210685062 3.9181623 -7354.1577
+44358.13210689812 3.9180443 -7354.7485
+44359.13210694562 3.9178081 -7354.3545
+44360.13210699311 3.9178474 -7354.7485
+44361.13210704061 3.9177687 -7354.1577
+44362.13210708811 3.9174931 -7353.7646
+44363.13210713561 3.9175324 -7354.7485
+44364.1321071831 3.9172964 -7354.9453
+44365.1321072306 3.9172568 -7354.7485
+44366.1321072781 3.9172175 -7353.5669
+44367.1321073256 3.9170208 -7354.3545
+44368.13210737309 3.9168239 -7354.5513
+44369.13210742059 3.9168239 -7354.3545
+44370.13210746809 3.9168632 -7354.5513
+44371.13210751559 3.9167058 -7354.5513
+44372.13210756308 3.9165089 -7355.1421
+44373.13210761058 3.9162726 -7354.7485
+44374.13210765808 3.916312 -7354.5513
+44375.13210770558 3.9162726 -7354.3545
+44376.13210775307 3.9161546 -7353.9609
+44377.13210780057 3.9159577 -7353.9609
+44378.13210784807 3.9159184 -7353.9609
+44379.13210789557 3.9157214 -7354.5513
+44380.13210794306 3.9156821 -7354.3545
+44381.13210799056 3.9156034 -7355.3384
+44382.13210803806 3.9155247 -7355.1421
+44383.13210808556 3.9153671 -7353.7646
+44384.13210813305 3.9152884 -7354.3545
+44385.13210818055 3.9151311 -7354.1577
+44386.13210822805 3.9150915 -7354.1577
+44387.13210827555 3.9149735 -7354.5513
+44388.13210832304 3.9148555 -7354.3545
+44389.13210837054 3.9146585 -7354.1577
+44390.13210841804 3.9147372 -7353.7646
+44391.13210846554 3.9145799 -7354.9453
+44392.13210851303 3.9144223 -7354.3545
+44393.13210856053 3.9143436 -7354.3545
+44394.13210860803 3.9142256 -7354.1577
+44395.13210865553 3.914068 -7354.9453
+44396.13210870302 3.9141073 -7353.9609
+44397.13210875052 3.9139106 -7354.7485
+44398.13210879802 3.913753 -7355.1421
+44399.13210884552 3.9137137 -7354.5513
+44400.13210889301 3.9135957 -7355.1421
+44401.13210894051 3.9135561 -7353.9609
+44402.13210898801 3.9133201 -7354.5513
+44403.13210903551 3.9132411 -7354.7485
+44404.132109083 3.9131625 -7354.3545
+44405.1321091305 3.9130445 -7354.1577
+44406.132109178 3.9129655 -7354.3545
+44407.13210922549 3.9129262 -7353.9609
+44408.13210927299 3.9128475 -7354.3545
+44409.13210932049 3.9126506 -7354.3545
+44410.13210936799 3.9124932 -7354.3545
+44411.13210941548 3.9124932 -7354.5513
+44412.13210946298 3.9123356 -7354.5513
+44413.13210951048 3.9121783 -7354.3545
+44414.13210955798 3.9120996 -7354.5513
+44415.13210960547 3.9119813 -7354.3545
+44416.13210965297 3.9119027 -7354.3545
+44417.13210970047 3.9118633 -7354.3545
+44418.13210974797 3.9116664 -7354.5513
+44419.13210979546 3.9115484 -7354.7485
+44420.13210984296 3.9114697 -7354.5513
+44421.13210989046 3.9114697 -7354.1577
+44422.13210993796 3.9113121 -7353.7646
+44423.13210998545 3.9113121 -7353.3706
+44424.13211003295 3.9110758 -7354.5513
+44425.13211008045 3.9109972 -7354.3545
+44426.13211012795 3.9108002 -7354.9453
+44427.13211017544 3.9106429 -7353.9609
+44428.13211022294 3.9106822 -7353.7646
+44429.13211027044 3.9104853 -7354.7485
+44430.13211031794 3.9104066 -7353.5669
+44431.13211036543 3.9103279 -7354.9453
+44432.13211041293 3.9102099 -7354.1577
+44433.13211046043 3.910131 -7354.1577
+44434.13211050793 3.9099736 -7354.5513
+44435.13211055542 3.9098949 -7353.3706
+44436.13211060292 3.909698 -7354.5513
+44437.13211065042 3.90958 -7354.1577
+44438.13211069792 3.9096193 -7353.9609
+44439.13211074541 3.9095404 -7353.5669
+44440.13211079291 3.9093437 -7354.9453
+44441.13211084041 3.9092255 -7354.7485
+44442.13211088791 3.9091074 -7355.3384
+44443.1321109354 3.9090681 -7354.3545
+44444.1321109829 3.9087925 -7354.3545
+44445.1321110304 3.9087925 -7354.1577
+44446.1321110779 3.9087138 -7354.9453
+44447.13211112539 3.9086349 -7354.5513
+44448.13211117289 3.9084382 -7354.9453
+44449.13211122039 3.90832 -7354.7485
+44450.13211126789 3.90832 -7354.5513
+44451.13211131538 3.9081233 -7354.9453
+44452.13211136288 3.908005 -7353.3706
+44453.13211141038 3.9079657 -7354.5513
+44454.13211145788 3.907887 -7354.5513
+44455.13211150537 3.9078083 -7354.7485
+44456.13211155287 3.9076114 -7355.1421
+44457.13211160037 3.9074934 -7354.7485
+44458.13211164786 3.9074144 -7354.1577
+44459.13211169536 3.9073358 -7354.3545
+44460.13211174286 3.9071784 -7354.7485
+44461.13211179036 3.9070601 -7354.9453
+44462.13211183785 3.9069421 -7354.7485
+44463.13211188535 3.9068635 -7354.3545
+44464.13211193285 3.9067845 -7354.9453
+44465.13211198035 3.9066272 -7353.5669
+44466.13211202784 3.9067059 -7354.3545
+44467.13211207534 3.9065485 -7354.5513
+44468.13211212284 3.9063516 -7354.9453
+44469.13211217034 3.9062335 -7353.7646
+44470.13211221783 3.9060366 -7353.9609
+44471.13211226533 3.9059579 -7354.1577
+44472.13211231283 3.9059973 -7354.5513
+44473.13211236033 3.9058397 -7354.1577
+44474.13211240782 3.905761 -7353.9609
+44475.13211245532 3.9055641 -7353.9609
+44476.13211250282 3.9055247 -7353.9609
+44477.13211255032 3.9054854 -7354.5513
+44478.13211259781 3.9054067 -7354.5513
+44479.13211264531 3.9052098 -7354.3545
+44480.13211269281 3.9050918 -7353.9609
+44481.13211274031 3.9049342 -7354.7485
+44482.1321127878 3.9049342 -7353.9609
+44483.1321128353 3.9047768 -7354.1577
+44484.1321128828 3.9045799 -7354.5513
+44485.1321129303 3.9045799 -7354.3545
+44486.13211297779 3.9044225 -7354.5513
+44487.13211302529 3.9043438 -7354.1577
+44488.13211307279 3.9042649 -7355.5352
+44489.13211312029 3.9041076 -7354.1577
+44490.13211316778 3.9040682 -7354.5513
+44491.13211321528 3.9039106 -7354.7485
+44492.13211326278 3.903832 -7354.1577
+44493.13211331028 3.9036744 -7354.5513
+44494.13211335777 3.9035957 -7354.7485
+44495.13211340527 3.9034777 -7353.9609
+44496.13211345277 3.9032807 -7353.5669
+44497.13211350027 3.9032021 -7354.5513
+44498.13211354776 3.9032021 -7355.1421
+44499.13211359526 3.9030051 -7354.7485
+44500.13211364276 3.9028871 -7353.9609
+44501.13211369026 3.9028478 -7353.7646
+44502.13211373775 3.9027689 -7354.3545
+44503.13211378525 3.9026902 -7354.5513
+44504.13211383275 3.9025328 -7353.7646
+44505.13211388025 3.9024146 -7354.7485
+44506.13211392774 3.9022179 -7354.9453
+44507.13211397524 3.9022572 -7354.9453
+44508.13211402274 3.9021783 -7354.3545
+44509.13211407023 3.9019816 -7353.7646
+44510.13211411773 3.9017847 -7355.1421
+44511.13211416523 3.9019029 -7354.9453
+44512.13211421273 3.901706 -7355.5352
+44513.13211426022 3.901588 -7354.1577
+44514.13211430772 3.901509 -7354.5513
+44515.13211435522 3.9013517 -7353.9609
+44516.13211440272 3.901273 -7353.3706
+44517.13211445021 3.9011154 -7354.5513
+44518.13211449771 3.9010761 -7353.9609
+44519.13211454521 3.9008398 -7354.9453
+44520.13211459271 3.9008398 -7355.1421
+44521.1321146402 3.9008005 -7355.3384
+44522.1321146877 3.9006035 -7354.3545
+44523.1321147352 3.9005249 -7354.5513
+44524.1321147827 3.9004068 -7354.9453
+44525.13211483019 3.9002886 -7355.9292
+44526.13211487769 3.9001312 -7355.5352
+44527.13211492519 3.9000919 -7353.9609
+44528.13211497269 3.8999736 -7355.1421
+44529.13211502018 3.8997769 -7354.5513
+44530.13211506768 3.8996587 -7354.5513
+44531.13211511518 3.8997769 -7354.1577
+44532.13211516268 3.8995013 -7354.5513
+44533.13211521017 3.8994226 -7354.9453
+44534.13211525767 3.8992257 -7353.9609
+44535.13211530517 3.8992651 -7354.5513
+44536.13211535267 3.899147 -7353.9609
+44537.13211540016 3.8990681 -7354.3545
+44538.13211544766 3.8989108 -7353.7646
+44539.13211549516 3.8987532 -7354.3545
+44540.13211554266 3.8986745 -7354.3545
+44541.13211559015 3.8986351 -7355.5352
+44542.13211563765 3.8985171 -7354.7485
+44543.13211568515 3.8983202 -7354.9453
+44544.13211573265 3.8982415 -7354.5513
+44545.13211578014 3.8981233 -7354.1577
+44546.13211582764 3.8980839 -7354.5513
+44547.13211587514 3.8979659 -7353.9609
+44548.13211592264 3.8978477 -7355.3384
+44549.13211597013 3.897769 -7354.1577
+44550.13211601763 3.8975723 -7354.3545
+44551.13211606513 3.8974934 -7354.1577
+44552.13211611263 3.8973753 -7355.1421
+44553.13211616012 3.8972573 -7354.7485
+44554.13211620762 3.8971784 -7354.7485
+44555.13211625512 3.8970604 -7355.1421
+44556.13211630262 3.8969817 -7354.9453
+44557.13211635011 3.8969028 -7354.3545
+44558.13211639761 3.8968241 -7354.3545
+44559.13211644511 3.8966272 -7355.1421
+44560.1321164926 3.8965878 -7354.5513
+44561.1321165401 3.8965092 -7354.5513
+44562.1321165876 3.8962729 -7353.7646
+44563.1321166351 3.8961549 -7354.3545
+44564.13211668259 3.8960762 -7354.3545
+44565.13211673009 3.8960762 -7354.7485
+44566.13211677759 3.8959579 -7353.7646
+44567.13211682509 3.8958399 -7354.3545
+44568.13211687258 3.895643 -7354.5513
+44569.13211692008 3.8956037 -7354.7485
+44570.13211696758 3.8954856 -7354.9453
+44571.13211701508 3.895328 -7353.9609
+44572.13211706257 3.8952887 -7354.7485
+44573.13211711007 3.8951313 -7354.5513
+44574.13211715757 3.89521 -7354.7485
+44575.13211720507 3.8950131 -7354.5513
+44576.13211725256 3.8948164 -7354.5513
+44577.13211730006 3.8946981 -7354.7485
+44578.13211734756 3.8946588 -7354.1577
+44579.13211739506 3.8945801 -7354.9453
+44580.13211744255 3.8944619 -7354.3545
+44581.13211749005 3.8943439 -7354.9453
+44582.13211753755 3.8941469 -7353.5669
+44583.13211758505 3.8939896 -7354.3545
+44584.13211763254 3.8939502 -7354.1577
+44585.13211768004 3.893832 -7354.1577
+44586.13211772754 3.8936746 -7354.5513
+44587.13211777504 3.8935959 -7354.7485
+44588.13211782253 3.8935566 -7354.1577
+44589.13211787003 3.8934383 -7354.5513
+44590.13211791753 3.893281 -7354.5513
+44591.13211796503 3.8932021 -7355.1421
+44592.13211801252 3.8931234 -7354.1577
+44593.13211806002 3.893084 -7354.9453
+44594.13211810752 3.8928084 -7354.7485
+44595.13211815502 3.8926904 -7354.3545
+44596.13211820251 3.8926115 -7354.3545
+44597.13211825001 3.8925328 -7355.1421
+44598.13211829751 3.8924148 -7354.9453
+44599.13211834501 3.8922966 -7354.3545
+44600.1321183925 3.8922179 -7354.3545
+44601.13211844 3.8921785 -7354.5513
+44602.1321184875 3.8919423 -7354.1577
+44603.132118535 3.8919423 -7354.3545
+44604.13211858249 3.8917849 -7354.3545
+44605.13211862999 3.8916273 -7355.5352
+44606.13211867749 3.891588 -7354.1577
+44607.13211872499 3.891391 -7353.9609
+44608.13211877248 3.891273 -7354.5513
+44609.13211881998 3.8911943 -7354.3545
+44610.13211886748 3.8910367 -7353.7646
+44611.13211891497 3.8909974 -7353.9609
+44612.13211896247 3.8909187 -7354.3545
+44613.13211900997 3.8908007 -7354.9453
+44614.13211905747 3.8906825 -7354.3545
+44615.13211910496 3.8905644 -7354.9453
+44616.13211915246 3.8905251 -7353.7646
+44617.13211919996 3.8903675 -7354.7485
+44618.13211924746 3.8902888 -7354.1577
+44619.13211929495 3.8900526 -7354.5513
+44620.13211934245 3.8899345 -7355.1421
+44621.13211938995 3.8900132 -7354.1577
+44622.13211943745 3.8898559 -7355.3384
+44623.13211948494 3.8897769 -7354.5513
+44624.13211953244 3.8896589 -7355.1421
+44625.13211957994 3.889462 -7354.7485
+44626.13211962744 3.8895407 -7354.3545
+44627.13211967493 3.889147 -7353.9609
+44628.13211972243 3.889147 -7354.3545
+44629.13211976993 3.8891864 -7354.5513
+44630.13211981743 3.8889897 -7354.1577
+44631.13211986492 3.8889503 -7353.9609
+44632.13211991242 3.8886747 -7353.9609
+44633.13211995992 3.8886747 -7354.5513
+44634.13212000742 3.8885565 -7354.5513
+44635.13212005491 3.8885958 -7354.3545
+44636.13212010241 3.8883598 -7354.5513
+44637.13212014991 3.8882415 -7355.1421
+44638.13212019741 3.8880842 -7353.9609
+44639.1321202449 3.8882415 -7354.3545
+44640.1321202924 3.8880055 -7355.1421
+44641.1321203399 3.8878086 -7354.7485
+44642.1321203874 3.8877299 -7354.7485
+44643.13212043489 3.8876116 -7354.3545
+44644.13212048239 3.8875329 -7354.3545
+44645.13212052989 3.887336 -7354.7485
+44646.13212057739 3.887336 -7354.1577
+44647.13212062488 3.8872573 -7354.7485
+44648.13212067238 3.8870604 -7354.7485
+44649.13212071988 3.8869817 -7354.3545
+44650.13212076738 3.8868637 -7353.9609
+44651.13212081487 3.8868244 -7353.9609
+44652.13212086237 3.8866668 -7353.5669
+44653.13212090987 3.8864701 -7354.7485
+44654.13212095737 3.8863912 -7354.7485
+44655.13212100486 3.8864305 -7354.5513
+44656.13212105236 3.8862338 -7354.1577
+44657.13212109986 3.8861551 -7354.3545
+44658.13212114736 3.8860762 -7354.5513
+44659.13212119485 3.8860369 -7354.7485
+44660.13212124235 3.8858399 -7354.1577
+44661.13212128985 3.8857219 -7354.3545
+44662.13212133734 3.8856826 -7354.1577
+44663.13212138484 3.8855646 -7354.7485
+44664.13212143234 3.8853676 -7353.7646
+44665.13212147984 3.8853283 -7354.5513
+44666.13212152733 3.8851707 -7354.5513
+44667.13212157483 3.885092 -7354.3545
+44668.13212162233 3.884974 -7354.5513
+44669.13212166983 3.8848557 -7354.7485
+44670.13212171732 3.8847377 -7354.7485
+44671.13212176482 3.8847377 -7354.5513
+44672.13212181232 3.8845801 -7354.9453
+44673.13212185982 3.8844228 -7354.1577
+44674.13212190731 3.8844228 -7354.3545
+44675.13212195481 3.8841078 -7354.1577
+44676.13212200231 3.8839896 -7354.5513
+44677.13212204981 3.8839502 -7354.7485
+44678.1321220973 3.8839109 -7354.1577
+44679.1321221448 3.8837535 -7354.5513
+44680.1321221923 3.8837142 -7353.7646
+44681.1321222398 3.8835959 -7354.3545
+44682.13212228729 3.8835566 -7354.9453
+44683.13212233479 3.8833597 -7354.9453
+44684.13212238229 3.883281 -7353.9609
+44685.13212242979 3.8830843 -7354.3545
+44686.13212247728 3.8830447 -7354.1577
+44687.13212252478 3.8828874 -7354.5513
+44688.13212257228 3.8828087 -7354.5513
+44689.13212261978 3.8827298 -7354.3545
+44690.13212266727 3.8826118 -7354.7485
+44691.13212271477 3.8824937 -7355.1421
+44692.13212276227 3.8823361 -7354.1577
+44693.13212280977 3.8823755 -7353.5669
+44694.13212285726 3.8821788 -7354.3545
+44695.13212290476 3.8820605 -7354.5513
+44696.13212295226 3.8820212 -7354.5513
+44697.13212299976 3.8818638 -7354.1577
+44698.13212304725 3.8818243 -7354.3545
+44699.13212309475 3.8816669 -7353.9609
+44700.13212314225 3.8816276 -7353.9609
+44701.13212318975 3.8814306 -7354.3545
+44702.13212323724 3.8813519 -7355.1421
+44703.13212328474 3.8811944 -7355.3384
+44704.13212333224 3.8811157 -7354.7485
+44705.13212337974 3.8810763 -7354.7485
+44706.13212342723 3.8808794 -7354.3545
+44707.13212347473 3.8808007 -7354.9453
+44708.13212352223 3.8808007 -7354.9453
+44709.13212356973 3.8806827 -7354.3545
+44710.13212361722 3.8805645 -7354.3545
+44711.13212366472 3.8804464 -7354.9453
+44712.13212371222 3.8803284 -7354.5513
+44713.13212375971 3.8802102 -7354.1577
+44714.13212380721 3.8800921 -7354.1577
+44715.13212385471 3.8800135 -7354.5513
+44716.13212390221 3.8798952 -7354.7485
+44717.1321239497 3.8798952 -7354.3545
+44718.1321239972 3.8796985 -7354.9453
+44719.1321240447 3.8795803 -7354.5513
+44720.1321240922 3.8795016 -7353.5669
+44721.13212413969 3.8794229 -7354.3545
+44722.13212418719 3.879226 -7354.7485
+44723.13212423469 3.879226 -7354.7485
+44724.13212428219 3.879108 -7354.3545
+44725.13212432968 3.8789897 -7354.3545
+44726.13212437718 3.8788323 -7354.3545
+44727.13212442468 3.878793 -7354.5513
+44728.13212447218 3.8786747 -7354.7485
+44729.13212451967 3.8784781 -7354.1577
+44730.13212456717 3.8785174 -7354.5513
+44731.13212461467 3.8782811 -7353.5669
+44732.13212466217 3.8782024 -7353.7646
+44733.13212470966 3.8781235 -7353.7646
+44734.13212475716 3.8779662 -7354.5513
+44735.13212480466 3.8778086 -7354.3545
+44736.13212485216 3.8778481 -7353.9609
+44737.13212489965 3.8778086 -7354.5513
+44738.13212494715 3.8775332 -7354.9453
+44739.13212499465 3.8774149 -7354.9453
+44740.13212504215 3.8774543 -7354.7485
+44741.13212508964 3.8772182 -7354.7485
+44742.13212513714 3.8771787 -7354.1577
+44743.13212518464 3.876982 -7354.1577
+44744.13212523214 3.876982 -7354.9453
+44745.13212527963 3.8768637 -7354.3545
+44746.13212532713 3.8768637 -7354.7485
+44747.13212537463 3.8765488 -7353.9609
+44748.13212542213 3.8765881 -7354.7485
+44749.13212546962 3.8763914 -7355.1421
+44750.13212551712 3.8763127 -7354.5513
+44751.13212556462 3.8761551 -7354.1577
+44752.13212561212 3.8761945 -7354.3545
+44753.13212565961 3.8759189 -7354.9453
+44754.13212570711 3.8759582 -7354.5513
+44755.13212575461 3.8758402 -7354.5513
+44756.13212580211 3.8756828 -7353.7646
+44757.1321258496 3.8755252 -7353.9609
+44758.1321258971 3.8753679 -7353.9609
+44759.1321259446 3.8754072 -7354.1577
+44760.1321259921 3.8751709 -7354.5513
+44761.13212603959 3.8751316 -7354.3545
+44762.13212608709 3.874974 -7354.9453
+44763.13212613459 3.874856 -7354.5513
+44764.13212618208 3.8746984 -7354.1577
+44765.13212622958 3.8745804 -7354.5513
+44766.13212627708 3.8746197 -7355.1421
+44767.13212632458 3.8745017 -7355.3384
+44768.13212637207 3.8742654 -7354.3545
+44769.13212641957 3.8743048 -7354.5513
+44770.13212646707 3.8741078 -7354.5513
+44771.13212651457 3.8739505 -7354.5513
+44772.13212656206 3.8738718 -7353.9609
+44773.13212660956 3.8739111 -7354.3545
+44774.13212665706 3.8735962 -7355.1421
+44775.13212670456 3.8735569 -7354.7485
+44776.13212675205 3.8736355 -7354.7485
+44777.13212679955 3.8734779 -7354.5513
+44778.13212684705 3.8732419 -7354.3545
+44779.13212689455 3.8732023 -7354.9453
+44780.13212694204 3.873045 -7354.3545
+44781.13212698954 3.8728874 -7354.1577
+44782.13212703704 3.872848 -7354.9453
+44783.13212708454 3.8727694 -7355.3384
+44784.13212713203 3.8726513 -7354.5513
+44785.13212717953 3.872612 -7354.3545
+44786.13212722703 3.8724544 -7354.5513
+44787.13212727453 3.8722181 -7354.9453
+44788.13212732202 3.8722181 -7354.5513
+44789.13212736952 3.8721395 -7355.1421
+44790.13212741702 3.8720214 -7354.5513
+44791.13212746452 3.8719032 -7354.5513
+44792.13212751201 3.8718245 -7354.7485
+44793.13212755951 3.8717458 -7354.9453
+44794.13212760701 3.8715882 -7354.5513
+44795.13212765451 3.8715096 -7354.3545
+44796.132127702 3.8714309 -7354.5513
+44797.1321277495 3.8713915 -7354.3545
+44798.132127797 3.8711553 -7354.7485
+44799.1321278445 3.8711159 -7354.3545
+44800.13212789199 3.871037 -7354.9453
+44801.13212793949 3.870919 -7354.1577
+44802.13212798699 3.870801 -7354.3545
+44803.13212803449 3.8706827 -7354.7485
+44804.13212808198 3.8705647 -7354.5513
+44805.13212812948 3.8706434 -7354.7485
+44806.13212817698 3.8704071 -7354.1577
+44807.13212822448 3.8703284 -7354.5513
+44808.13212827197 3.8702104 -7354.7485
+44809.13212831947 3.8701317 -7354.7485
+44810.13212836697 3.8699741 -7354.7485
+44811.13212841447 3.8697772 -7354.3545
+44812.13212846196 3.8698561 -7354.5513
+44813.13212850946 3.8697379 -7354.3545
+44814.13212855696 3.8695805 -7354.5513
+44815.13212860445 3.8694623 -7354.7485
+44816.13212865195 3.8692656 -7353.7646
+44817.13212869945 3.8693049 -7355.3384
+44818.13212874695 3.8691473 -7354.9453
+44819.13212879444 3.8690686 -7355.1421
+44820.13212884194 3.8689506 -7354.3545
+44821.13212888944 3.8689506 -7354.9453
+44822.13212893694 3.868793 -7354.5513
+44823.13212898443 3.8687143 -7354.5513
+44824.13212903193 3.8685963 -7354.5513
+44825.13212907943 3.86836 -7355.3384
+44826.13212912693 3.8683207 -7354.7485
+44827.13212917442 3.8682814 -7354.5513
+44828.13212922192 3.8681631 -7354.7485
+44829.13212926942 3.8680844 -7354.3545
+44830.13212931692 3.8679268 -7354.9453
+44831.13212936441 3.8677301 -7354.7485
+44832.13212941191 3.8677695 -7354.5513
+44833.13212945941 3.8676908 -7354.1577
+44834.13212950691 3.8674939 -7354.9453
+44835.1321295544 3.8673363 -7354.7485
+44836.1321296019 3.8672576 -7354.3545
+44837.1321296494 3.8671789 -7354.5513
+44838.1321296969 3.866982 -7354.1577
+44839.13212974439 3.866982 -7354.7485
+44840.13212979189 3.8668246 -7354.9453
+44841.13212983939 3.8667853 -7354.7485
+44842.13212988689 3.8667064 -7355.1421
+44843.13212993438 3.8665884 -7354.7485
+44844.13212998188 3.866431 -7354.1577
+44845.13213002938 3.8663521 -7354.7485
+44846.13213007688 3.8661554 -7354.9453
+44847.13213012437 3.8660371 -7353.1738
+44848.13213017187 3.8659978 -7354.1577
+44849.13213021937 3.8658404 -7354.3545
+44850.13213026687 3.8657222 -7354.5513
+44851.13213031436 3.8656435 -7354.7485
+44852.13213036186 3.8654466 -7354.7485
+44853.13213040936 3.8654466 -7355.1421
+44854.13213045686 3.8653679 -7354.3545
+44855.13213050435 3.8652105 -7354.7485
+44856.13213055185 3.8651316 -7354.5513
+44857.13213059935 3.8650529 -7353.9609
+44858.13213064685 3.8649349 -7354.7485
+44859.13213069434 3.864856 -7354.1577
+44860.13213074184 3.8646986 -7354.1577
+44861.13213078934 3.86462 -7354.7485
+44862.13213083684 3.8644624 -7353.5669
+44863.13213088433 3.8643444 -7354.1577
+44864.13213093183 3.8641868 -7354.5513
+44865.13213097933 3.8641081 -7354.3545
+44866.13213102682 3.8641474 -7354.5513
+44867.13213107432 3.8639112 -7354.5513
+44868.13213112182 3.8637145 -7354.1577
+44869.13213116932 3.8636751 -7354.5513
+44870.13213121681 3.8635962 -7353.9609
+44871.13213126431 3.8635569 -7354.9453
+44872.13213131181 3.8634388 -7354.5513
+44873.13213135931 3.8632813 -7354.5513
+44874.1321314068 3.8631632 -7354.7485
+44875.1321314543 3.8630846 -7354.5513
+44876.1321315018 3.8630452 -7353.9609
+44877.1321315493 3.8628089 -7354.7485
+44878.13213159679 3.8628089 -7354.5513
+44879.13213164429 3.8625727 -7354.3545
+44880.13213169179 3.8626907 -7354.7485
+44881.13213173929 3.8623757 -7354.9453
+44882.13213178678 3.8623364 -7354.1577
+44883.13213183428 3.8621397 -7354.3545
+44884.13213188178 3.8621397 -7355.3384
+44885.13213192928 3.8620608 -7355.3384
+44886.13213197677 3.8618641 -7354.5513
+44887.13213202427 3.8618248 -7354.5513
+44888.13213207177 3.8617852 -7354.7485
+44889.13213211927 3.8615098 -7354.3545
+44890.13213216676 3.8613129 -7354.1577
+44891.13213221426 3.8612342 -7353.9609
+44892.13213226176 3.8611948 -7354.5513
+44893.13213230926 3.8611948 -7354.9453
+44894.13213235675 3.8609192 -7354.5513
+44895.13213240425 3.8608403 -7355.3384
+44896.13213245175 3.8608797 -7355.3384
+44897.13213249925 3.8607223 -7354.5513
+44898.13213254674 3.8605254 -7354.3545
+44899.13213259424 3.860486 -7354.9453
+44900.13213264174 3.8603287 -7354.3545
+44901.13213268924 3.8602893 -7354.3545
+44902.13213273673 3.8601317 -7354.1577
+44903.13213278423 3.8600531 -7354.3545
+44904.13213283173 3.8600531 -7354.1577
+44905.13213287923 3.8597775 -7354.5513
+44906.13213292672 3.8597381 -7354.3545
+44907.13213297422 3.8596988 -7354.5513
+44908.13213302172 3.8595412 -7353.7646
+44909.13213306922 3.8593838 -7354.3545
+44910.13213311671 3.8593049 -7354.5513
+44911.13213316421 3.8591475 -7354.5513
+44912.13213321171 3.8591475 -7354.9453
+44913.13213325921 3.8588719 -7354.7485
+44914.1321333067 3.8589113 -7354.9453
+44915.1321333542 3.8587143 -7354.1577
+44916.1321334017 3.858675 -7355.1421
+44917.1321334492 3.858557 -7354.3545
+44918.13213349669 3.858439 -7353.7646
+44919.13213354419 3.8583994 -7355.1421
+44920.13213359169 3.8582027 -7354.7485
+44921.13213363918 3.8580451 -7354.5513
+44922.13213368668 3.8579271 -7354.7485
+44923.13213373418 3.8578484 -7354.1577
+44924.13213378168 3.8577695 -7353.7646
+44925.13213382917 3.8575728 -7354.9453
+44926.13213387667 3.8575335 -7354.3545
+44927.13213392417 3.8573759 -7355.5352
+44928.13213397167 3.8573365 -7354.9453
+44929.13213401916 3.8572185 -7354.9453
+44930.13213406666 3.8571396 -7354.5513
+44931.13213411416 3.8569822 -7354.1577
+44932.13213416166 3.856864 -7354.3545
+44933.13213420915 3.8568246 -7354.5513
+44934.13213425665 3.8566673 -7354.9453
+44935.13213430415 3.856549 -7355.1421
+44936.13213435165 3.856431 -7354.3545
+44937.13213439914 3.856313 -7354.9453
+44938.13213444664 3.8562341 -7354.7485
+44939.13213449414 3.8561161 -7354.5513
+44940.13213454164 3.8560374 -7353.5669
+44941.13213458913 3.8558011 -7354.3545
+44942.13213463663 3.8558011 -7354.7485
+44943.13213468413 3.8556831 -7353.9609
+44944.13213473163 3.8556042 -7354.7485
+44945.13213477912 3.8554468 -7354.1577
+44946.13213482662 3.8552892 -7354.9453
+44947.13213487412 3.8551712 -7354.1577
+44948.13213492162 3.8551319 -7354.3545
+44949.13213496911 3.8550925 -7353.9609
+44950.13213501661 3.8548956 -7354.7485
+44951.13213506411 3.8548956 -7354.1577
+44952.13213511161 3.85462 -7354.7485
+44953.1321351591 3.854502 -7355.3384
+44954.1321352066 3.85462 -7354.1577
+44955.1321352541 3.8544626 -7354.7485
+44956.1321353016 3.854305 -7355.3384
+44957.13213534909 3.8540688 -7354.3545
+44958.13213539659 3.8540688 -7354.7485
+44959.13213544409 3.8539507 -7354.9453
+44960.13213549159 3.8538327 -7355.1421
+44961.13213553908 3.8536751 -7354.3545
+44962.13213558658 3.8537145 -7354.5513
+44963.13213563408 3.8535571 -7354.1577
+44964.13213568158 3.8534782 -7354.5513
+44965.13213572907 3.8533602 -7354.7485
+44966.13213577657 3.8533208 -7354.3545
+44967.13213582407 3.8532028 -7354.5513
+44968.13213587157 3.8529665 -7354.1577
+44969.13213591906 3.8529272 -7354.5513
+44970.13213596656 3.8529665 -7354.9453
+44971.13213601406 3.8527696 -7354.1577
+44972.13213606155 3.8525729 -7354.1577
+44973.13213610905 3.8524153 -7354.7485
+44974.13213615655 3.8523366 -7354.3545
+44975.13213620405 3.852258 -7353.7646
+44976.13213625154 3.8522184 -7354.1577
+44977.13213629904 3.8521791 -7354.1577
+44978.13213634654 3.8521004 -7354.3545
+44979.13213639404 3.8519428 -7354.1577
+44980.13213644153 3.8517461 -7353.7646
+44981.13213648903 3.8516278 -7355.3384
+44982.13213653653 3.8515491 -7354.3545
+44983.13213658403 3.8514705 -7354.3545
+44984.13213663152 3.8513129 -7354.9453
+44985.13213667902 3.8511555 -7353.9609
+44986.13213672652 3.8510768 -7353.7646
+44987.13213677402 3.8509979 -7354.7485
+44988.13213682151 3.8508012 -7355.5352
+44989.13213686901 3.8508799 -7355.1421
+44990.13213691651 3.8506436 -7354.3545
+44991.13213696401 3.850565 -7354.7485
+44992.1321370115 3.8504076 -7354.1577
+44993.132137059 3.8503287 -7353.7646
+44994.1321371065 3.8502107 -7354.5513
+44995.132137154 3.8501713 -7354.7485
+44996.13213720149 3.8500137 -7354.7485
+44997.13213724899 3.8498564 -7354.1577
+44998.13213729649 3.8497775 -7355.1421
+44999.13213734399 3.8496594 -7354.7485
+45000.13213739148 3.8495021 -7354.3545
+45001.13213743898 3.8495021 -7354.7485
+45002.13213748648 3.8493445 -7354.5513
+45003.13213753398 3.8492265 -7353.3706
+45004.13213758147 3.8490295 -7354.7485
+45005.13213762897 3.8489509 -7354.9453
+45006.13213767647 3.8489115 -7354.5513
+45007.13213772397 3.8487933 -7354.3545
+45008.13213777146 3.8485572 -7354.3545
+45009.13213781896 3.8485177 -7354.5513
+45010.13213786646 3.8484783 -7353.3706
+45011.13213791396 3.848242 -7354.7485
+45012.13213796145 3.848242 -7354.5513
+45013.13213800895 3.8480847 -7354.9453
+45014.13213805645 3.8479667 -7354.9453
+45015.13213810395 3.8478878 -7355.3384
+45016.13213815144 3.8478484 -7354.7485
+45017.13213819894 3.8476517 -7354.7485
+45018.13213824644 3.8475728 -7354.3545
+45019.13213829394 3.8474941 -7354.3545
+45020.13213834143 3.8472579 -7355.1421
+45021.13213838893 3.8472185 -7353.9609
+45022.13213843643 3.8470612 -7354.9453
+45023.13213848392 3.8470612 -7354.3545
+45024.13213853142 3.8468249 -7354.1577
+45025.13213857892 3.8468249 -7354.3545
+45026.13213862642 3.8465493 -7354.9453
+45027.13213867391 3.8465493 -7354.3545
+45028.13213872141 3.8464706 -7354.9453
+45029.13213876891 3.8462737 -7354.3545
+45030.13213881641 3.8462737 -7354.9453
+45031.1321388639 3.8460767 -7354.5513
+45032.1321389114 3.8459587 -7354.5513
+45033.1321389589 3.8458407 -7354.1577
+45034.1321390064 3.8457618 -7354.3545
+45035.13213905389 3.8457224 -7355.3384
+45036.13213910139 3.8455257 -7355.1421
+45037.13213914889 3.8453681 -7354.5513
+45038.13213919639 3.8453681 -7354.9453
+45039.13213924388 3.8452895 -7354.3545
+45040.13213929138 3.8450925 -7354.9453
+45041.13213933888 3.8450139 -7353.9609
+45042.13213938638 3.8449745 -7354.3545
+45043.13213943387 3.8446989 -7353.7646
+45044.13213948137 3.8446596 -7354.9453
+45045.13213952887 3.8445413 -7354.7485
+45046.13213957637 3.8443053 -7354.5513
+45047.13213962386 3.8443446 -7353.9609
+45048.13213967136 3.8441477 -7354.5513
+45049.13213971886 3.844069 -7354.7485
+45050.13213976636 3.843951 -7355.1421
+45051.13213981385 3.8437934 -7354.5513
+45052.13213986135 3.8436754 -7355.3384
+45053.13213990885 3.8435571 -7354.5513
+45054.13213995635 3.8434391 -7354.9453
+45055.13214000384 3.8433604 -7354.3545
+45056.13214005134 3.8433211 -7354.9453
+45057.13214009884 3.8432028 -7354.3545
+45058.13214014634 3.8430059 -7354.9453
+45059.13214019383 3.8427699 -7355.3384
+45060.13214024133 3.8428092 -7354.3545
+45061.13214028883 3.8426516 -7354.7485
+45062.13214033633 3.8425729 -7354.3545
+45063.13214038382 3.8424156 -7353.7646
+45064.13214043132 3.8422973 -7354.3545
+45065.13214047882 3.8422186 -7353.9609
+45066.13214052632 3.8420217 -7353.9609
+45067.13214057381 3.841943 -7354.9453
+45068.13214062131 3.841825 -7354.3545
+45069.13214066881 3.8417068 -7354.5513
+45070.13214071631 3.8415494 -7355.1421
+45071.1321407638 3.8413918 -7355.1421
+45072.1321408113 3.8413525 -7353.9609
+45073.1321408588 3.8411951 -7354.7485
+45074.13214090629 3.8410769 -7354.7485
+45075.13214095379 3.8409195 -7354.7485
+45076.13214100129 3.8408406 -7354.5513
+45077.13214104879 3.8406832 -7354.3545
+45078.13214109628 3.8406045 -7354.9453
+45079.13214114378 3.8405256 -7354.3545
+45080.13214119128 3.8402896 -7354.7485
+45081.13214123878 3.8402503 -7354.9453
+45082.13214128627 3.840132 -7354.3545
+45083.13214133377 3.8399353 -7354.1577
+45084.13214138127 3.839817 -7354.1577
+45085.13214142877 3.8396597 -7354.1577
+45086.13214147626 3.8395021 -7354.7485
+45087.13214152376 3.8394234 -7354.9453
+45088.13214157126 3.8393052 -7354.5513
+45089.13214161876 3.8391478 -7353.9609
+45090.13214166625 3.8390298 -7355.1421
+45091.13214171375 3.8389509 -7354.3545
+45092.13214176125 3.8389115 -7354.1577
+45093.13214180875 3.8387148 -7355.1421
+45094.13214185624 3.8386359 -7354.5513
+45095.13214190374 3.8383603 -7355.3384
+45096.13214195124 3.8382423 -7354.9453
+45097.13214199874 3.8381243 -7354.3545
+45098.13214204623 3.8380849 -7354.1577
+45099.13214209373 3.8379667 -7354.1577
+45100.13214214123 3.837888 -7354.5513
+45101.13214218873 3.83777 -7354.3545
+45102.13214223622 3.8376517 -7354.7485
+45103.13214228372 3.8374944 -7354.3545
+45104.13214233122 3.8373368 -7354.9453
+45105.13214237872 3.8372974 -7354.3545
+45106.13214242621 3.8371005 -7354.7485
+45107.13214247371 3.8370218 -7354.7485
+45108.13214252121 3.8368645 -7354.5513
+45109.13214256871 3.8367462 -7354.7485
+45110.1321426162 3.8365889 -7355.1421
+45111.1321426637 3.8364706 -7355.1421
+45112.1321427112 3.8364313 -7353.7646
+45113.1321427587 3.8362346 -7354.5513
+45114.13214280619 3.836077 -7354.5513
+45115.13214285369 3.8359194 -7354.9453
+45116.13214290119 3.83588 -7354.5513
+45117.13214294869 3.835762 -7354.7485
+45118.13214299618 3.8356044 -7354.3545
+45119.13214304368 3.8354077 -7354.3545
+45120.13214309118 3.8354864 -7354.3545
+45121.13214313868 3.8352501 -7354.7485
+45122.13214318617 3.8350928 -7355.3384
+45123.13214323367 3.8350534 -7354.7485
+45124.13214328117 3.8348958 -7354.3545
+45125.13214332866 3.8346596 -7354.3545
+45126.13214337616 3.8346202 -7354.1577
+45127.13214342366 3.8344629 -7354.1577
+45128.13214347116 3.8343446 -7354.3545
+45129.13214351865 3.8343446 -7354.3545
+45130.13214356615 3.8342266 -7354.3545
+45131.13214361365 3.8341086 -7354.3545
+45132.13214366115 3.8339903 -7354.3545
+45133.13214370864 3.8337541 -7354.1577
+45134.13214375614 3.8337147 -7355.3384
+45135.13214380364 3.8335574 -7355.3384
+45136.13214385114 3.8335967 -7354.7485
+45137.13214389863 3.8334391 -7354.5513
+45138.13214394613 3.8332424 -7354.3545
+45139.13214399363 3.8330848 -7354.7485
+45140.13214404113 3.8329275 -7354.9453
+45141.13214408862 3.8327699 -7354.5513
+45142.13214413612 3.8326125 -7355.1421
+45143.13214418362 3.8325732 -7354.5513
+45144.13214423112 3.8323762 -7354.1577
+45145.13214427861 3.8321793 -7354.1577
+45146.13214432611 3.8320613 -7354.5513
+45147.13214437361 3.8319037 -7354.5513
+45148.13214442111 3.831825 -7354.7485
+45149.1321444686 3.8316283 -7354.1577
+45150.1321445161 3.8315494 -7354.5513
+45151.1321445636 3.831392 -7354.7485
+45152.1321446111 3.8314314 -7353.9609
+45153.13214465859 3.8311951 -7354.3545
+45154.13214470609 3.8311558 -7355.1421
+45155.13214475359 3.8309195 -7353.9609
+45156.13214480109 3.8308408 -7354.5513
+45157.13214484858 3.8307621 -7354.5513
+45158.13214489608 3.8305652 -7354.3545
+45159.13214494358 3.8303683 -7353.9609
+45160.13214499108 3.8302503 -7354.3545
+45161.13214503857 3.8300533 -7354.5513
+45162.13214508607 3.8298566 -7354.1577
+45163.13214513357 3.829778 -7354.1577
+45164.13214518107 3.829699 -7353.9609
+45165.13214522856 3.8293841 -7354.3545
+45166.13214527606 3.8292661 -7353.5669
+45167.13214532356 3.8293054 -7354.3545
+45168.13214537106 3.8289905 -7354.7485
+45169.13214541855 3.8289511 -7354.3545
+45170.13214546605 3.8285968 -7354.7485
+45171.13214551355 3.8285575 -7354.5513
+45172.13214556105 3.8283999 -7354.3545
+45173.13214560854 3.8282425 -7355.3384
+45174.13214565604 3.8282425 -7354.9453
+45175.13214570354 3.8281243 -7353.7646
+45176.13214575103 3.8279276 -7354.3545
+45177.13214579853 3.8278487 -7354.7485
+45178.13214584603 3.8277307 -7354.3545
+45179.13214589353 3.8276126 -7354.7485
+45180.13214594102 3.827455 -7353.7646
+45181.13214598852 3.8271794 -7354.5513
+45182.13214603602 3.8270614 -7354.3545
+45183.13214608352 3.8269038 -7354.1577
+45184.13214613101 3.8269038 -7354.5513
+45185.13214617851 3.8267071 -7354.9453
+45186.13214622601 3.8264315 -7355.1421
+45187.13214627351 3.8263133 -7354.5513
+45188.132146321 3.8261952 -7354.3545
+45189.1321463685 3.8260772 -7354.3545
+45190.132146416 3.825959 -7354.3545
+45191.1321464635 3.8258016 -7354.9453
+45192.13214651099 3.8258016 -7354.5513
+45193.13214655849 3.8256834 -7355.5352
+45194.13214660599 3.8254867 -7354.7485
+45195.13214665349 3.8253291 -7354.5513
+45196.13214670098 3.825211 -7354.3545
+45197.13214674848 3.8251717 -7354.3545
+45198.13214679598 3.8250141 -7353.9609
+45199.13214684348 3.8247385 -7354.7485
+45200.13214689097 3.8245811 -7354.5513
+45201.13214693847 3.8244629 -7354.3545
+45202.13214698597 3.8244629 -7354.1577
+45203.13214703347 3.8244236 -7354.5513
+45204.13214708096 3.8242662 -7354.9453
+45205.13214712846 3.8242269 -7354.1577
+45206.13214717596 3.8241873 -7354.9453
+45207.13214722346 3.8240693 -7354.7485
+45208.13214727095 3.8240299 -7353.7646
+45209.13214731845 3.823833 -7354.1577
+45210.13214736595 3.8236756 -7354.7485
+45211.13214741345 3.8236756 -7354.1577
+45212.13214746094 3.823518 -7354.3545
+45213.13214750844 3.8234787 -7353.9609
+45214.13214755594 3.8233607 -7353.7646
+45215.13214760344 3.8232424 -7354.5513
+45216.13214765093 3.8230851 -7354.5513
+45217.13214769843 3.8230064 -7354.1577
+45218.13214774593 3.8230064 -7355.3384
+45219.13214779343 3.8228095 -7354.7485
+45220.13214784092 3.8229275 -7354.9453
+45221.13214788842 3.8226914 -7354.3545
+45222.13214793592 3.8227701 -7354.3545
+45223.13214798342 3.8224945 -7355.1421
+45224.13214803091 3.8224158 -7354.7485
+45225.13214807841 3.8224945 -7354.7485
+45226.13214812591 3.8222582 -7354.3545
+45227.1321481734 3.8221402 -7354.7485
+45228.1321482209 3.8221009 -7354.9453
+45229.1321482684 3.8220615 -7353.9609
+45230.1321483159 3.8218646 -7354.9453
+45231.13214836339 3.8218646 -7354.7485
+45232.13214841089 3.8216677 -7353.7646
+45233.13214845839 3.8216677 -7354.9453
+45234.13214850589 3.8213921 -7354.5513
+45235.13214855338 3.8214314 -7355.1421
+45236.13214860088 3.8212347 -7354.3545
+45237.13214864838 3.821156 -7354.1577
+45238.13214869588 3.8210771 -7354.5513
+45239.13214874337 3.8209984 -7354.5513
+45240.13214879087 3.8209591 -7353.9609
+45241.13214883837 3.8208411 -7355.1421
+45242.13214888587 3.8207228 -7353.9609
+45243.13214893336 3.8206048 -7354.5513
+45244.13214898086 3.8205261 -7354.3545
+45245.13214902836 3.8204472 -7354.1577
+45246.13214907586 3.8203685 -7355.1421
+45247.13214912335 3.8202112 -7354.7485
+45248.13214917085 3.8200142 -7354.5513
+45249.13214921835 3.8199356 -7355.1421
+45250.13214926585 3.8198962 -7354.7485
+45251.13214931334 3.8197386 -7354.5513
+45252.13214936084 3.8196206 -7354.9453
+45253.13214940834 3.819581 -7354.1577
+45254.13214945584 3.819463 -7354.5513
+45255.13214950333 3.819345 -7354.3545
+45256.13214955083 3.8192267 -7354.1577
+45257.13214959833 3.8191481 -7354.1577
+45258.13214964583 3.8189907 -7353.1738
+45259.13214969332 3.8189907 -7354.5513
+45260.13214974082 3.8187938 -7354.3545
+45261.13214978832 3.8187151 -7355.1421
+45262.13214983582 3.8187151 -7355.1421
+45263.13214988331 3.8185968 -7355.1421
+45264.13214993081 3.8184788 -7354.3545
+45265.13214997831 3.8183212 -7353.9609
+45266.13215002581 3.8183212 -7354.3545
+45267.1321500733 3.8181639 -7354.5513
+45268.1321501208 3.8181245 -7354.5513
+45269.1321501683 3.8180852 -7354.7485
+45270.1321502158 3.8178489 -7354.7485
+45271.13215026329 3.8178489 -7354.5513
+45272.13215031079 3.8177307 -7354.9453
+45273.13215035829 3.817652 -7353.9609
+45274.13215040579 3.8176126 -7354.7485
+45275.13215045328 3.8173764 -7353.5669
+45276.13215050078 3.8174157 -7354.7485
+45277.13215054828 3.8174157 -7354.7485
+45278.13215059577 3.8172977 -7355.1421
+45279.13215064327 3.8171403 -7355.1421
+45280.13215069077 3.8170614 -7355.1421
+45281.13215073827 3.8170614 -7354.5513
+45282.13215078576 3.8169827 -7354.3545
+45283.13215083326 3.8169434 -7354.3545
+45284.13215088076 3.8168647 -7353.7646
+45285.13215092826 3.8166678 -7354.5513
+45286.13215097575 3.8166678 -7355.1421
+45287.13215102325 3.8166285 -7354.9453
+45288.13215107075 3.8164709 -7354.7485
+45289.13215111825 3.8163922 -7354.9453
+45290.13215116574 3.8163135 -7354.5513
+45291.13215121324 3.8162348 -7354.7485
+45292.13215126074 3.8160772 -7354.7485
+45293.13215130824 3.8160379 -7355.1421
+45294.13215135573 3.8160379 -7354.1577
+45295.13215140323 3.8159199 -7354.3545
+45296.13215145073 3.8157229 -7353.9609
+45297.13215149823 3.8157229 -7354.3545
+45298.13215154572 3.8156049 -7354.7485
+45299.13215159322 3.8156049 -7354.1577
+45300.13215164072 3.8154473 -7354.1577
+45301.13215168822 3.8153293 -7354.9453
+45302.13215173571 3.81529 -7354.3545
+45303.13215178321 3.8152111 -7354.9453
+45304.13215183071 3.8151324 -7353.5669
+45305.13215187821 3.8150537 -7354.9453
+45306.1321519257 3.8149354 -7353.7646
+45307.1321519732 3.8147781 -7354.7485
+45308.1321520207 3.8147781 -7355.1421
+45309.1321520682 3.8145025 -7354.7485
+45310.13215211569 3.8145418 -7353.3706
+45311.13215216319 3.8143449 -7354.1577
+45312.13215221069 3.8142662 -7354.3545
+45313.13215225819 3.8142269 -7354.7485
+45314.13215230568 3.8140695 -7354.5513
+45315.13215235318 3.8140299 -7354.5513
+45316.13215240068 3.8139513 -7353.7646
+45317.13215244818 3.813715 -7354.7485
+45318.13215249567 3.813715 -7353.9609
+45319.13215254317 3.8136756 -7354.7485
+45320.13215259067 3.8135183 -7354.3545
+45321.13215263817 3.8135576 -7354.7485
+45322.13215268566 3.8133607 -7354.9453
+45323.13215273316 3.8132033 -7354.3545
+45324.13215278066 3.8131247 -7354.3545
+45325.13215282816 3.8130064 -7354.7485
+45326.13215287565 3.8130064 -7354.9453
+45327.13215292315 3.8128097 -7354.9453
+45328.13215297065 3.8128884 -7354.1577
+45329.13215301814 3.8127308 -7354.3545
+45330.13215306564 3.8126521 -7354.9453
+45331.13215311314 3.8124552 -7354.5513
+45332.13215316064 3.8124552 -7354.1577
+45333.13215320813 3.8122978 -7355.5352
+45334.13215325563 3.8122191 -7355.1421
+45335.13215330313 3.8122585 -7354.3545
+45336.13215335063 3.8120222 -7355.3384
+45337.13215339812 3.8119042 -7354.9453
+45338.13215344562 3.8118646 -7354.5513
+45339.13215349312 3.8117859 -7354.1577
+45340.13215354062 3.8117466 -7354.3545
+45341.13215358811 3.8116679 -7353.5669
+45342.13215363561 3.811471 -7354.7485
+45343.13215368311 3.8115103 -7354.3545
+45344.13215373061 3.811353 -7355.1421
+45345.1321537781 3.8112347 -7354.7485
+45346.1321538256 3.8111167 -7354.5513
+45347.1321538731 3.811038 -7354.5513
+45348.1321539206 3.811038 -7354.3545
+45349.13215396809 3.8108411 -7354.9453
+45350.13215401559 3.8108017 -7354.1577
+45351.13215406309 3.8107231 -7354.9453
+45352.13215411059 3.8106441 -7354.1577
+45353.13215415808 3.8105655 -7354.5513
+45354.13215420558 3.8104475 -7353.7646
+45355.13215425308 3.8103688 -7353.7646
+45356.13215430058 3.8102112 -7354.3545
+45357.13215434807 3.8102899 -7354.5513
+45358.13215439557 3.8099356 -7354.5513
+45359.13215444307 3.8098962 -7355.1421
+45360.13215449057 3.8098569 -7353.7646
+45361.13215453806 3.8098962 -7354.7485
+45362.13215458556 3.80966 -7354.7485
+45363.13215463306 3.8095813 -7354.5513
+45364.13215468056 3.8095419 -7354.5513
+45365.13215472805 3.8095026 -7354.5513
+45366.13215477555 3.8093843 -7354.3545
+45367.13215482305 3.8092663 -7354.3545
+45368.13215487055 3.8090301 -7354.1577
+45369.13215491804 3.8089907 -7354.1577
+45370.13215496554 3.8088727 -7354.9453
+45371.13215501304 3.8088727 -7353.9609
+45372.13215506054 3.8086758 -7354.1577
+45373.13215510803 3.8086758 -7353.7646
+45374.13215515553 3.8084788 -7355.3384
+45375.13215520303 3.8084788 -7355.1421
+45376.13215525053 3.8084002 -7354.1577
+45377.13215529802 3.8084002 -7355.1421
+45378.13215534552 3.8082035 -7355.1421
+45379.13215539302 3.8081639 -7353.9609
+45380.13215544051 3.8080852 -7354.1577
+45381.13215548801 3.8079278 -7354.7485
+45382.13215553551 3.8078489 -7355.1421
+45383.13215558301 3.8077703 -7354.9453
+45384.1321556305 3.8076522 -7354.9453
+45385.132155678 3.8075736 -7354.1577
+45386.1321557255 3.8075736 -7355.1421
+45387.132155773 3.8073766 -7353.7646
+45388.13215582049 3.8072979 -7354.9453
+45389.13215586799 3.8073373 -7355.1421
+45390.13215591549 3.8070223 -7354.9453
+45391.13215596299 3.807101 -7354.3545
+45392.13215601048 3.8069434 -7354.7485
+45393.13215605798 3.8069041 -7354.5513
+45394.13215610548 3.8067074 -7355.1421
+45395.13215615298 3.8067074 -7355.1421
+45396.13215620047 3.806668 -7353.3706
+45397.13215624797 3.8065104 -7354.1577
+45398.13215629547 3.8064711 -7355.5352
+45399.13215634297 3.8063135 -7354.7485
+45400.13215639046 3.8062348 -7354.7485
+45401.13215643796 3.8061955 -7354.5513
+45402.13215648546 3.8059986 -7354.1577
+45403.13215653296 3.8059592 -7353.9609
+45404.13215658045 3.8058019 -7354.1577
+45405.13215662795 3.8058019 -7354.7485
+45406.13215667545 3.8057625 -7354.7485
+45407.13215672295 3.8056443 -7354.7485
+45408.13215677044 3.8055263 -7354.9453
+45409.13215681794 3.8054476 -7354.1577
+45410.13215686544 3.8054476 -7355.1421
+45411.13215691294 3.805172 -7354.5513
+45412.13215696043 3.805172 -7354.9453
+45413.13215700793 3.8050537 -7354.3545
+45414.13215705543 3.804975 -7354.1577
+45415.13215710293 3.804975 -7355.3384
+45416.13215715042 3.8047388 -7354.1577
+45417.13215719792 3.8046601 -7354.3545
+45418.13215724542 3.8046601 -7354.9453
+45419.13215729292 3.8045814 -7354.5513
+45420.13215734041 3.8044238 -7354.7485
+45421.13215738791 3.8043058 -7354.7485
+45422.13215743541 3.8042271 -7353.7646
+45423.13215748291 3.8041089 -7354.1577
+45424.1321575304 3.8040302 -7353.7646
+45425.1321575779 3.8037546 -7354.9453
+45426.1321576254 3.8037546 -7354.9453
+45427.1321576729 3.8037152 -7354.5513
+45428.13215772039 3.8036759 -7354.7485
+45429.13215776789 3.8035183 -7354.5513
+45430.13215781539 3.8034003 -7355.3384
+45431.13215786288 3.8032823 -7355.3384
+45432.13215791038 3.803164 -7354.7485
+45433.13215795788 3.803164 -7354.9453
+45434.13215800538 3.803046 -7355.1421
+45435.13215805287 3.8029673 -7354.1577
+45436.13215810037 3.8028491 -7354.5513
+45437.13215814787 3.8026917 -7355.3384
+45438.13215819537 3.8027704 -7354.3545
+45439.13215824286 3.8026128 -7354.1577
+45440.13215829036 3.8024161 -7354.1577
+45441.13215833786 3.8022978 -7354.5513
+45442.13215838536 3.8022192 -7354.7485
+45443.13215843285 3.8022192 -7354.1577
+45444.13215848035 3.8020618 -7354.1577
+45445.13215852785 3.8019829 -7353.9609
+45446.13215857535 3.8017862 -7354.3545
+45447.13215862284 3.8017073 -7355.3384
+45448.13215867034 3.8016679 -7354.3545
+45449.13215871784 3.8014712 -7354.3545
+45450.13215876534 3.8014319 -7354.9453
+45451.13215881283 3.8013923 -7354.5513
+45452.13215886033 3.8011956 -7354.5513
+45453.13215890783 3.8011563 -7354.3545
+45454.13215895533 3.801038 -7354.3545
+45455.13215900282 3.80092 -7354.3545
+45456.13215905032 3.80092 -7354.3545
+45457.13215909782 3.8007624 -7354.3545
+45458.13215914532 3.8007624 -7354.3545
+45459.13215919281 3.8004475 -7354.5513
+45460.13215924031 3.8005264 -7354.1577
+45461.13215928781 3.8004081 -7354.7485
+45462.13215933531 3.8002508 -7354.9453
+45463.1321593828 3.8002114 -7354.9453
+45464.1321594303 3.8000932 -7354.7485
+45465.1321594778 3.7999752 -7354.1577
+45466.1321595253 3.7998176 -7354.7485
+45467.13215957279 3.7998965 -7354.9453
+45468.13215962029 3.7996209 -7354.1577
+45469.13215966779 3.7996209 -7353.9609
+45470.13215971529 3.7995026 -7354.1577
+45471.13215976278 3.7994239 -7354.9453
+45472.13215981028 3.799227 -7354.3545
+45473.13215985778 3.799109 -7355.1421
+45474.13215990528 3.7990696 -7354.1577
+45475.13215995277 3.7989516 -7354.3545
+45476.13216000027 3.798794 -7354.7485
+45477.13216004777 3.798794 -7354.5513
+45478.13216009527 3.7985578 -7354.3545
+45479.13216014276 3.7985971 -7354.7485
+45480.13216019026 3.7983217 -7354.3545
+45481.13216023776 3.7983217 -7354.9453
+45482.13216028525 3.7982821 -7355.3384
+45483.13216033275 3.7981641 -7353.9609
+45484.13216038025 3.7980461 -7354.5513
+45485.13216042775 3.7978885 -7354.7485
+45486.13216047524 3.7978492 -7354.9453
+45487.13216052274 3.7977312 -7354.7485
+45488.13216057024 3.7976522 -7354.9453
+45489.13216061774 3.7974555 -7355.3384
+45490.13216066523 3.7974162 -7354.5513
+45491.13216071273 3.7972193 -7354.5513
+45492.13216076023 3.7972193 -7354.9453
+45493.13216080773 3.7971799 -7354.5513
+45494.13216085522 3.796865 -7354.7485
+45495.13216090272 3.7969437 -7354.5513
+45496.13216095022 3.7968256 -7354.7485
+45497.13216099772 3.7966681 -7354.3545
+45498.13216104521 3.79655 -7354.5513
+45499.13216109271 3.7963138 -7354.3545
+45500.13216114021 3.7963924 -7354.1577
+45501.13216118771 3.7962744 -7354.1577
+45502.1321612352 3.7961168 -7354.1577
+45503.1321612827 3.7960382 -7354.5513
+45504.1321613302 3.7959201 -7354.7485
+45505.1321613777 3.7959595 -7354.5513
+45506.13216142519 3.7958412 -7355.1421
+45507.13216147269 3.7957232 -7354.7485
+45508.13216152019 3.7956445 -7355.1421
+45509.13216156769 3.7955658 -7354.3545
+45510.13216161518 3.7954869 -7354.3545
+45511.13216166268 3.7954082 -7354.5513
+45512.13216171018 3.7953296 -7354.5513
+45513.13216175768 3.7952113 -7353.7646
+45514.13216180517 3.7950146 -7355.1421
+45515.13216185267 3.7949359 -7355.1421
+45516.13216190017 3.7949359 -7354.3545
+45517.13216194767 3.794739 -7355.1421
+45518.13216199516 3.7947783 -7354.1577
+45519.13216204266 3.7946208 -7354.1577
+45520.13216209016 3.7946208 -7353.9609
+45521.13216213766 3.7943847 -7354.3545
+45522.13216218515 3.7944241 -7354.3545
+45523.13216223265 3.7943058 -7354.1577
+45524.13216228015 3.7942271 -7354.9453
+45525.13216232765 3.7941091 -7354.5513
+45526.13216237514 3.7940698 -7354.7485
+45527.13216242264 3.7940304 -7354.1577
+45528.13216247014 3.7938728 -7353.7646
+45529.13216251764 3.7939122 -7354.9453
+45530.13216256513 3.7936759 -7354.1577
+45531.13216261263 3.7936366 -7354.3545
+45532.13216266013 3.7935185 -7354.9453
+45533.13216270763 3.7934005 -7353.9609
+45534.13216275512 3.7932823 -7354.7485
+45535.13216280262 3.7931643 -7354.9453
+45536.13216285012 3.7931643 -7354.3545
+45537.13216289761 3.7930856 -7354.7485
+45538.13216294511 3.7930067 -7354.7485
+45539.13216299261 3.7928493 -7354.7485
+45540.13216304011 3.792731 -7353.9609
+45541.1321630876 3.792731 -7355.3384
+45542.1321631351 3.792495 -7355.3384
+45543.1321631826 3.7924161 -7354.9453
+45544.1321632301 3.7922981 -7355.3384
+45545.13216327759 3.7923768 -7354.9453
+45546.13216332509 3.7921011 -7353.9609
+45547.13216337259 3.7920618 -7355.1421
+45548.13216342009 3.7919831 -7354.9453
+45549.13216346758 3.7918651 -7353.9609
+45550.13216351508 3.7918255 -7354.3545
+45551.13216356258 3.7917075 -7354.7485
+45552.13216361008 3.7916288 -7355.3384
+45553.13216365757 3.7915502 -7354.1577
+45554.13216370507 3.7915106 -7353.9609
+45555.13216375257 3.7913926 -7354.5513
+45556.13216380007 3.7913139 -7354.7485
+45557.13216384756 3.7913139 -7354.5513
+45558.13216389506 3.7910776 -7354.1577
+45559.13216394256 3.7910776 -7354.5513
+45560.13216399006 3.7909989 -7355.3384
+45561.13216403755 3.7909596 -7354.5513
+45562.13216408505 3.7906051 -7354.5513
+45563.13216413255 3.7906051 -7354.5513
+45564.13216418005 3.7905657 -7354.5513
+45565.13216422754 3.7904477 -7355.3384
+45566.13216427504 3.7904084 -7354.7485
+45567.13216432254 3.7902508 -7355.1421
+45568.13216437004 3.7901328 -7354.3545
+45569.13216441753 3.7898965 -7354.9453
+45570.13216446503 3.7899358 -7354.5513
+45571.13216451253 3.7898178 -7354.7485
+45572.13216456003 3.7896998 -7354.9453
+45573.13216460752 3.7895422 -7355.1421
+45574.13216465502 3.7895422 -7354.3545
+45575.13216470252 3.7893453 -7354.3545
+45576.13216475002 3.7893453 -7355.7324
+45577.13216479751 3.7892666 -7354.5513
+45578.13216484501 3.7891879 -7354.3545
+45579.13216489251 3.7890697 -7354.7485
+45580.13216494001 3.7890303 -7355.3384
+45581.1321649875 3.7889123 -7354.1577
+45582.132165035 3.7889123 -7354.9453
+45583.1321650825 3.7888336 -7354.5513
+45584.13216513 3.7885973 -7354.1577
+45585.13216517749 3.7886367 -7354.5513
+45586.13216522499 3.788558 -7353.9609
+45587.13216527249 3.7884793 -7355.3384
+45588.13216531998 3.7884398 -7353.9609
+45589.13216536748 3.7883611 -7354.7485
+45590.13216541498 3.7882037 -7354.5513
+45591.13216546248 3.7880855 -7354.3545
+45592.13216550997 3.7880068 -7354.5513
+45593.13216555747 3.7879281 -7354.1577
+45594.13216560497 3.7878494 -7354.3545
+45595.13216565247 3.7878098 -7354.1577
+45596.13216569996 3.7877312 -7355.1421
+45597.13216574746 3.7876132 -7354.3545
+45598.13216579496 3.7874162 -7353.9609
+45599.13216584246 3.7874949 -7354.3545
+45600.13216588995 3.7873375 -7354.3545
+45601.13216593745 3.7872982 -7354.3545
+45602.13216598495 3.7871406 -7355.1421
+45603.13216603245 3.7870619 -7354.5513
+45604.13216607994 3.7870619 -7354.9453
+45605.13216612744 3.7869043 -7354.7485
+45606.13216617494 3.786865 -7354.7485
+45607.13216622244 3.786629 -7355.1421
+45608.13216626993 3.786629 -7353.9609
+45609.13216631743 3.7865107 -7353.7646
+45610.13216636493 3.7864714 -7354.5513
+45611.13216641243 3.7863533 -7354.9453
+45612.13216645992 3.7861958 -7354.5513
+45613.13216650742 3.7861958 -7354.7485
+45614.13216655492 3.7861171 -7354.5513
+45615.13216660242 3.7859595 -7354.5513
+45616.13216664991 3.7858021 -7355.3384
+45617.13216669741 3.7857628 -7354.1577
+45618.13216674491 3.7856839 -7354.5513
+45619.13216679241 3.7856052 -7355.1421
+45620.1321668399 3.7855265 -7354.1577
+45621.1321668874 3.7854478 -7353.9609
+45622.1321669349 3.7852509 -7354.5513
+45623.1321669824 3.7853296 -7354.9453
+45624.13216702989 3.7852116 -7353.9609
+45625.13216707739 3.7850935 -7354.9453
+45626.13216712489 3.7849753 -7354.3545
+45627.13216717239 3.7848573 -7355.1421
+45628.13216721988 3.7848179 -7354.1577
+45629.13216726738 3.7846997 -7354.3545
+45630.13216731488 3.7847786 -7354.3545
+45631.13216736238 3.7845817 -7354.7485
+45632.13216740987 3.7844241 -7354.5513
+45633.13216745737 3.7844241 -7354.9453
+45634.13216750487 3.784188 -7354.5513
+45635.13216755237 3.7841487 -7355.1421
+45636.13216759986 3.7841091 -7354.7485
+45637.13216764736 3.7841091 -7354.5513
+45638.13216769486 3.7839911 -7353.7646
+45639.13216774235 3.7838335 -7354.9453
+45640.13216778985 3.7837548 -7354.5513
+45641.13216783735 3.7837155 -7355.1421
+45642.13216788485 3.7836368 -7354.3545
+45643.13216793234 3.7834792 -7354.7485
+45644.13216797984 3.7834005 -7354.3545
+45645.13216802734 3.7834005 -7354.1577
+45646.13216807484 3.7832825 -7354.5513
+45647.13216812233 3.7832036 -7354.5513
+45648.13216816983 3.7830069 -7355.3384
+45649.13216821733 3.7830462 -7354.5513
+45650.13216826483 3.7828887 -7354.5513
+45651.13216831232 3.7828493 -7354.5513
+45652.13216835982 3.78281 -7354.3545
+45653.13216840732 3.7826526 -7354.9453
+45654.13216845482 3.7825344 -7355.1421
+45655.13216850231 3.7824557 -7354.9453
+45656.13216854981 3.7823377 -7354.1577
+45657.13216859731 3.782377 -7354.3545
+45658.13216864481 3.7822194 -7354.5513
+45659.1321686923 3.7821014 -7354.5513
+45660.1321687398 3.7820227 -7354.7485
+45661.1321687873 3.7819438 -7355.5352
+45662.1321688348 3.7819045 -7354.5513
+45663.13216888229 3.7817471 -7354.1577
+45664.13216892979 3.7816682 -7354.5513
+45665.13216897729 3.7816288 -7354.5513
+45666.13216902479 3.7814715 -7354.5513
+45667.13216907228 3.7814322 -7354.3545
+45668.13216911978 3.7813532 -7354.3545
+45669.13216916728 3.7811959 -7354.5513
+45670.13216921478 3.7811172 -7354.9453
+45671.13216926227 3.7809989 -7354.1577
+45672.13216930977 3.7809989 -7354.5513
+45673.13216935727 3.7809596 -7354.7485
+45674.13216940477 3.7808809 -7354.5513
+45675.13216945226 3.7808022 -7355.1421
+45676.13216949976 3.780566 -7354.5513
+45677.13216954726 3.780566 -7355.1421
+45678.13216959476 3.7806447 -7355.1421
+45679.13216964225 3.7804084 -7354.5513
+45680.13216968975 3.780369 -7354.3545
+45681.13216973725 3.7802904 -7354.1577
+45682.13216978475 3.7801328 -7354.1577
+45683.13216983224 3.7800148 -7354.9453
+45684.13216987974 3.7799361 -7354.3545
+45685.13216992724 3.7799754 -7354.7485
+45686.13216997474 3.7798967 -7353.9609
+45687.13217002223 3.7797391 -7354.3545
+45688.13217006973 3.7796211 -7354.5513
+45689.13217011723 3.7795818 -7354.1577
+45690.13217016472 3.7794242 -7354.1577
+45691.13217021222 3.7794635 -7354.3545
+45692.13217025972 3.7793062 -7355.1421
+45693.13217030722 3.7792275 -7353.9609
+45694.13217035471 3.7790699 -7354.1577
+45695.13217040221 3.7789912 -7354.5513
+45696.13217044971 3.778873 -7354.7485
+45697.13217049721 3.7787156 -7353.9609
+45698.1321705447 3.7787549 -7354.5513
+45699.1321705922 3.7785974 -7355.1421
+45700.1321706397 3.7785187 -7354.1577
+45701.1321706872 3.77844 -7355.3384
+45702.13217073469 3.7783613 -7354.7485
+45703.13217078219 3.7783613 -7354.7485
+45704.13217082969 3.7781644 -7354.3545
+45705.13217087719 3.7781644 -7354.1577
+45706.13217092468 3.7780464 -7354.3545
+45707.13217097218 3.778007 -7355.1421
+45708.13217101968 3.7777708 -7354.3545
+45709.13217106718 3.7777314 -7355.7324
+45710.13217111467 3.7776921 -7354.1577
+45711.13217116217 3.7776132 -7354.5513
+45712.13217120967 3.7774951 -7354.5513
+45713.13217125717 3.7773771 -7354.3545
+45714.13217130466 3.7773771 -7355.1421
+45715.13217135216 3.7771409 -7354.7485
+45716.13217139966 3.7772589 -7353.7646
+45717.13217144716 3.7769833 -7354.5513
+45718.13217149465 3.7769439 -7354.5513
+45719.13217154215 3.7768259 -7354.5513
+45720.13217158965 3.776747 -7355.1421
+45721.13217163715 3.7766683 -7354.7485
+45722.13217168464 3.7765896 -7355.7324
+45723.13217173214 3.7763927 -7354.1577
+45724.13217177964 3.776432 -7354.5513
+45725.13217182714 3.7762747 -7355.1421
+45726.13217187463 3.7762353 -7354.7485
+45727.13217192213 3.7760777 -7355.1421
+45728.13217196963 3.7760384 -7354.7485
+45729.13217201713 3.7759204 -7354.5513
+45730.13217206462 3.7758021 -7355.3384
+45731.13217211212 3.7757235 -7354.5513
+45732.13217215962 3.7756448 -7354.5513
+45733.13217220712 3.7755661 -7355.5352
+45734.13217225461 3.7754872 -7354.3545
+45735.13217230211 3.7754478 -7354.5513
+45736.13217234961 3.7752512 -7354.1577
+45737.13217239711 3.7751722 -7354.7485
+45738.1321724446 3.7750542 -7354.7485
+45739.1321724921 3.7750936 -7354.9453
+45740.1321725396 3.7748966 -7354.5513
+45741.13217258709 3.7747393 -7355.1421
+45742.13217263459 3.7746999 -7354.3545
+45743.13217268209 3.7745817 -7353.9609
+45744.13217272959 3.7744637 -7354.3545
+45745.13217277708 3.7744243 -7354.3545
+45746.13217282458 3.774385 -7354.5513
+45747.13217287208 3.7742667 -7355.1421
+45748.13217291958 3.7741487 -7354.9453
+45749.13217296707 3.7741094 -7355.3384
+45750.13217301457 3.77407 -7354.5513
+45751.13217306207 3.77407 -7354.7485
+45752.13217310957 3.7738338 -7354.3545
+45753.13217315706 3.7738338 -7354.1577
+45754.13217320456 3.7737551 -7354.7485
+45755.13217325206 3.7736764 -7354.3545
+45756.13217329956 3.7736764 -7354.3545
+45757.13217334705 3.7735975 -7354.5513
+45758.13217339455 3.7734401 -7354.7485
+45759.13217344205 3.7732825 -7354.5513
+45760.13217348955 3.7732432 -7354.1577
+45761.13217353704 3.7731252 -7354.9453
+45762.13217358454 3.7730463 -7354.7485
+45763.13217363204 3.7730463 -7354.5513
+45764.13217367954 3.7728102 -7354.1577
+45765.13217372703 3.7728496 -7354.7485
+45766.13217377453 3.7728102 -7354.1577
+45767.13217382203 3.7726526 -7354.9453
+45768.13217386953 3.7725346 -7354.7485
+45769.13217391702 3.7724953 -7355.3384
+45770.13217396452 3.7724559 -7354.5513
+45771.13217401202 3.772377 -7355.5352
+45772.13217405952 3.7722197 -7353.9609
+45773.13217410701 3.772141 -7354.1577
+45774.13217415451 3.772141 -7354.5513
+45775.13217420201 3.7721014 -7354.3545
+45776.13217424951 3.7719047 -7354.3545
+45777.132174297 3.771826 -7354.7485
+45778.1321743445 3.7718654 -7354.5513
+45779.132174392 3.7717078 -7355.1421
+45780.1321744395 3.7716684 -7354.3545
+45781.13217448699 3.7715111 -7354.1577
+45782.13217453449 3.7715504 -7354.9453
+45783.13217458199 3.7713928 -7354.3545
+45784.13217462949 3.7713535 -7353.9609
+45785.13217467698 3.7712748 -7354.7485
+45786.13217472448 3.7711959 -7354.9453
+45787.13217477198 3.7711565 -7354.7485
+45788.13217481948 3.7709992 -7354.5513
+45789.13217486697 3.7709205 -7354.9453
+45790.13217491447 3.7709205 -7354.5513
+45791.13217496197 3.7709205 -7354.9453
+45792.13217500946 3.7706842 -7354.1577
+45793.13217505696 3.7706449 -7354.3545
+45794.13217510446 3.7705266 -7354.3545
+45795.13217515196 3.7704873 -7355.1421
+45796.13217519945 3.77033 -7354.5513
+45797.13217524695 3.770251 -7354.5513
+45798.13217529445 3.7702117 -7354.5513
+45799.13217534195 3.7700937 -7354.1577
+45800.13217538944 3.7700543 -7354.9453
+45801.13217543694 3.770015 -7354.3545
+45802.13217548444 3.7698967 -7354.7485
+45803.13217553194 3.7697787 -7354.7485
+45804.13217557943 3.7697787 -7354.3545
+45805.13217562693 3.7696607 -7354.3545
+45806.13217567443 3.7695818 -7355.5352
+45807.13217572193 3.7695031 -7354.5513
+45808.13217576942 3.7694244 -7353.9609
+45809.13217581692 3.7693062 -7354.5513
+45810.13217586442 3.7692668 -7354.1577
+45811.13217591192 3.7692275 -7354.5513
+45812.13217595941 3.7690701 -7355.3384
+45813.13217600691 3.7690701 -7354.7485
+45814.13217605441 3.7689126 -7354.5513
+45815.13217610191 3.7688339 -7355.3384
+45816.1321761494 3.7687156 -7354.3545
+45817.1321761969 3.7686763 -7354.9453
+45818.1321762444 3.7685189 -7355.3384
+45819.1321762919 3.7686369 -7355.1421
+45820.13217633939 3.7684402 -7354.7485
+45821.13217638689 3.768322 -7354.5513
+45822.13217643439 3.7682433 -7355.1421
+45823.13217648189 3.7681253 -7354.1577
+45824.13217652938 3.7680464 -7354.5513
+45825.13217657688 3.768007 -7354.5513
+45826.13217662438 3.7678101 -7354.3545
+45827.13217667188 3.7677708 -7354.9453
+45828.13217671937 3.7676921 -7355.1421
+45829.13217676687 3.7675741 -7355.1421
+45830.13217681437 3.7676528 -7354.3545
+45831.13217686187 3.7673771 -7354.1577
+45832.13217690936 3.7674165 -7354.3545
+45833.13217695686 3.7673378 -7353.9609
+45834.13217700436 3.7672591 -7354.7485
+45835.13217705186 3.7670622 -7354.9453
+45836.13217709935 3.7670228 -7354.9453
+45837.13217714685 3.7669835 -7354.1577
+45838.13217719435 3.7668653 -7354.7485
+45839.13217724185 3.7668653 -7354.3545
+45840.13217728934 3.7667079 -7354.9453
+45841.13217733684 3.7666686 -7354.1577
+45842.13217738434 3.7665503 -7354.3545
+45843.13217743183 3.7664323 -7354.9453
+45844.13217747933 3.7664716 -7354.3545
+45845.13217752683 3.7662354 -7354.3545
+45846.13217757433 3.7661173 -7354.3545
+45847.13217762182 3.7659597 -7354.1577
+45848.13217766932 3.7659204 -7354.3545
+45849.13217771682 3.7658024 -7354.3545
+45850.13217776432 3.7658417 -7354.5513
+45851.13217781181 3.7657237 -7354.5513
+45852.13217785931 3.7655661 -7353.9609
+45853.13217790681 3.7655268 -7354.5513
+45854.13217795431 3.7653298 -7354.3545
+45855.1321780018 3.7653694 -7354.1577
+45856.1321780493 3.7651331 -7353.7646
+45857.1321780968 3.7650149 -7354.3545
+45858.1321781443 3.7650149 -7354.1577
+45859.13217819179 3.7649362 -7355.7324
+45860.13217823929 3.7647395 -7354.1577
+45861.13217828679 3.7646606 -7354.3545
+45862.13217833429 3.7646213 -7354.3545
+45863.13217838178 3.7645819 -7354.3545
+45864.13217842928 3.764385 -7354.3545
+45865.13217847678 3.7644639 -7355.1421
+45866.13217852428 3.764267 -7353.9609
+45867.13217857177 3.764149 -7354.5513
+45868.13217861927 3.7640307 -7354.1577
+45869.13217866677 3.7639914 -7354.7485
+45870.13217871427 3.7638733 -7354.7485
+45871.13217876176 3.7637157 -7355.3384
+45872.13217880926 3.7637551 -7354.1577
+45873.13217885676 3.7637157 -7354.9453
+45874.13217890426 3.763519 -7354.5513
+45875.13217895175 3.7634795 -7354.3545
+45876.13217899925 3.7632041 -7355.1421
+45877.13217904675 3.7633221 -7354.1577
+45878.13217909425 3.7632434 -7354.1577
+45879.13217914174 3.7630465 -7354.5513
+45880.13217918924 3.7630858 -7354.9453
+45881.13217923674 3.7628891 -7354.3545
+45882.13217928424 3.7627709 -7354.5513
+45883.13217933173 3.7627316 -7354.9453
+45884.13217937923 3.7626135 -7354.7485
+45885.13217942673 3.7626135 -7354.3545
+45886.13217947423 3.7623773 -7353.7646
+45887.13217952172 3.7624166 -7353.5669
+45888.13217956922 3.7621803 -7354.5513
+45889.13217961672 3.7621803 -7353.7646
+45890.13217966422 3.7621017 -7354.5513
+45891.13217971171 3.7619441 -7355.5352
+45892.13217975921 3.7619836 -7354.7485
+45893.13217980671 3.7618654 -7355.3384
+45894.1321798542 3.761826 -7355.1421
+45895.1321799017 3.7617867 -7354.3545
+45896.1321799492 3.7616687 -7354.3545
+45897.1321799967 3.7615898 -7353.5669
+45898.13218004419 3.7616291 -7354.1577
+45899.13218009169 3.7614717 -7353.7646
+45900.13218013919 3.7613537 -7354.1577
+45901.13218018669 3.7612748 -7354.7485
+45902.13218023418 3.7611961 -7354.5513
+45903.13218028168 3.7610388 -7355.3384
+45904.13218032918 3.7610388 -7354.5513
+45905.13218037668 3.7609599 -7355.1421
+45906.13218042417 3.7608025 -7354.3545
+45907.13218047167 3.7608812 -7355.1421
+45908.13218051917 3.7606843 -7354.5513
+45909.13218056667 3.7606843 -7354.1577
+45910.13218061416 3.7605269 -7354.3545
+45911.13218066166 3.7605269 -7355.3384
+45912.13218070916 3.7604086 -7354.7485
+45913.13218075666 3.7602906 -7354.3545
+45914.13218080415 3.7602513 -7355.7324
+45915.13218085165 3.7601726 -7354.3545
+45916.13218089915 3.7600937 -7354.7485
+45917.13218094665 3.7601726 -7354.3545
+45918.13218099414 3.760015 -7354.5513
+45919.13218104164 3.7598577 -7354.9453
+45920.13218108914 3.7597394 -7354.5513
+45921.13218113664 3.7597394 -7354.9453
+45922.13218118413 3.7596607 -7354.5513
+45923.13218123163 3.7595034 -7355.1421
+45924.13218127913 3.7593458 -7354.9453
+45925.13218132663 3.7592671 -7355.1421
+45926.13218137412 3.7591884 -7354.9453
+45927.13218142162 3.7591095 -7354.7485
+45928.13218146912 3.7590308 -7355.3384
+45929.13218151662 3.7590308 -7354.9453
+45930.13218156411 3.7587945 -7355.5352
+45931.13218161161 3.7587552 -7354.9453
+45932.13218165911 3.7586372 -7354.7485
+45933.13218170661 3.7586372 -7354.7485
+45934.1321817541 3.7584796 -7354.7485
+45935.1321818016 3.7583616 -7355.1421
+45936.1321818491 3.7582829 -7355.3384
+45937.1321818966 3.7582433 -7354.7485
+45938.13218194409 3.7580073 -7354.5513
+45939.13218199159 3.7579679 -7355.1421
+45940.13218203909 3.7579679 -7354.5513
+45941.13218208659 3.7578497 -7354.5513
+45942.13218213408 3.757771 -7354.3545
+45943.13218218158 3.7576923 -7354.9453
+45944.13218222908 3.7575741 -7355.1421
+45945.13218227657 3.7574954 -7354.9453
+45946.13218232407 3.7572985 -7354.9453
+45947.13218237157 3.7572591 -7355.1421
+45948.13218241907 3.7572198 -7354.5513
+45949.13218246656 3.7569835 -7354.9453
+45950.13218251406 3.7569835 -7354.7485
+45951.13218256156 3.7569048 -7355.3384
+45952.13218260906 3.7568655 -7354.5513
+45953.13218265655 3.7568262 -7354.5513
+45954.13218270405 3.7566292 -7355.3384
+45955.13218275155 3.7565112 -7354.5513
+45956.13218279905 3.7564719 -7355.3384
+45957.13218284654 3.7562749 -7354.1577
+45958.13218289404 3.7561963 -7354.7485
+45959.13218294154 3.7561569 -7355.3384
+45960.13218298904 3.756078 -7354.3545
+45961.13218303653 3.7559206 -7353.7646
+45962.13218308403 3.755842 -7354.9453
+45963.13218313153 3.7557237 -7354.1577
+45964.13218317903 3.7556057 -7354.5513
+45965.13218322652 3.755527 -7354.7485
+45966.13218327402 3.7554088 -7354.9453
+45967.13218332152 3.7553694 -7354.9453
+45968.13218336902 3.7552907 -7355.3384
+45969.13218341651 3.7551725 -7354.5513
+45970.13218346401 3.7549758 -7354.9453
+45971.13218351151 3.7549758 -7354.7485
+45972.13218355901 3.7548971 -7354.3545
+45973.1321836065 3.7548182 -7355.1421
+45974.132183654 3.7547002 -7354.5513
+45975.1321837015 3.7546215 -7354.5513
+45976.132183749 3.7545033 -7354.5513
+45977.13218379649 3.7544639 -7354.5513
+45978.13218384399 3.7544246 -7354.5513
+45979.13218389149 3.7542276 -7354.5513
+45980.13218393899 3.7541096 -7354.5513
+45981.13218398648 3.7540309 -7354.9453
+45982.13218403398 3.754149 -7354.3545
+45983.13218408148 3.7538733 -7354.5513
+45984.13218412898 3.7537553 -7354.5513
+45985.13218417647 3.7536767 -7354.3545
+45986.13218422397 3.7536767 -7354.1577
+45987.13218427147 3.7535584 -7353.9609
+45988.13218431897 3.753401 -7355.1421
+45989.13218436646 3.753401 -7354.9453
+45990.13218441396 3.7532041 -7354.3545
+45991.13218446146 3.7531648 -7353.7646
+45992.13218450896 3.7530072 -7354.1577
+45993.13218455645 3.7530468 -7354.9453
+45994.13218460395 3.7530072 -7354.5513
+45995.13218465145 3.7528498 -7353.9609
+45996.13218469894 3.7528105 -7354.3545
+45997.13218474644 3.7526922 -7355.7324
+45998.13218479394 3.7526135 -7355.3384
+45999.13218484144 3.7525742 -7354.9453
+46000.13218488893 3.7524955 -7354.7485
+46001.13218493643 3.7523773 -7354.7485
+46002.13218498393 3.7522593 -7354.3545
+46003.13218503143 3.7521412 -7354.1577
+46004.13218507892 3.7521412 -7354.7485
+46005.13218512642 3.7519443 -7354.1577
+46006.13218517392 3.7518656 -7355.1421
+46007.13218522142 3.7517869 -7355.1421
+46008.13218526891 3.751708 -7354.7485
+46009.13218531641 3.75159 -7354.7485
+46010.13218536391 3.7516294 -7355.3384
+46011.13218541141 3.7514718 -7353.9609
+46012.1321854589 3.7513537 -7355.1421
+46013.1321855064 3.7513144 -7354.9453
+46014.1321855539 3.7512751 -7355.1421
+46015.1321856014 3.7511175 -7354.9453
+46016.13218564889 3.7509208 -7354.5513
+46017.13218569639 3.7510388 -7354.7485
+46018.13218574389 3.7508025 -7355.5352
+46019.13218579139 3.7508025 -7354.7485
+46020.13218583888 3.7508025 -7353.9609
+46021.13218588638 3.7507238 -7354.7485
+46022.13218593388 3.7504876 -7355.1421
+46023.13218598138 3.7504482 -7354.7485
+46024.13218602887 3.7502909 -7354.5513
+46025.13218607637 3.7502909 -7354.1577
+46026.13218612387 3.7502515 -7354.1577
+46027.13218617137 3.750212 -7355.9292
+46028.13218621886 3.7500939 -7354.3545
+46029.13218626636 3.7500153 -7354.7485
+46030.13218631386 3.7499759 -7354.5513
+46031.13218636136 3.7499759 -7354.3545
+46032.13218640885 3.7497003 -7354.9453
+46033.13218645635 3.7497003 -7354.1577
+46034.13218650385 3.7497003 -7354.7485
+46035.13218655135 3.7495034 -7353.9609
+46036.13218659884 3.7495821 -7355.1421
+46037.13218664634 3.749346 -7354.9453
+46038.13218669384 3.7493064 -7354.5513
+46039.13218674134 3.7492671 -7355.1421
+46040.13218678883 3.7491097 -7353.5669
+46041.13218683633 3.7490311 -7354.5513
+46042.13218688383 3.7489915 -7355.1421
+46043.13218693133 3.7488341 -7354.7485
+46044.13218697882 3.7487555 -7354.7485
+46045.13218702632 3.7487161 -7354.3545
+46046.13218707382 3.7485979 -7354.9453
+46047.13218712131 3.7485585 -7355.1421
+46048.13218716881 3.7483616 -7353.9609
+46049.13218721631 3.7484012 -7355.1421
+46050.13218726381 3.7482042 -7355.1421
+46051.1321873113 3.7482042 -7354.3545
+46052.1321873588 3.7479286 -7354.9453
+46053.1321874063 3.7478893 -7354.7485
+46054.1321874538 3.7478893 -7355.1421
+46055.13218750129 3.7477317 -7354.7485
+46056.13218754879 3.7476137 -7354.3545
+46057.13218759629 3.7476137 -7355.1421
+46058.13218764379 3.7474957 -7355.1421
+46059.13218769128 3.7473774 -7354.5513
+46060.13218773878 3.7472594 -7354.3545
+46061.13218778628 3.74722 -7354.7485
+46062.13218783378 3.7471411 -7354.5513
+46063.13218788127 3.7471411 -7354.7485
+46064.13218792877 3.7470231 -7354.5513
+46065.13218797627 3.7468657 -7354.9453
+46066.13218802377 3.7468262 -7356.126
+46067.13218807126 3.7466688 -7354.9453
+46068.13218811876 3.7465901 -7354.3545
+46069.13218816626 3.7465112 -7353.9609
+46070.13218821376 3.7464325 -7354.3545
+46071.13218826125 3.7462752 -7355.1421
+46072.13218830875 3.7462752 -7354.5513
+46073.13218835625 3.7461176 -7354.5513
+46074.13218840375 3.7459602 -7354.1577
+46075.13218845124 3.7458813 -7353.7646
+46076.13218849874 3.7457633 -7354.3545
+46077.13218854624 3.745724 -7354.1577
+46078.13218859374 3.7456453 -7354.3545
+46079.13218864123 3.7454484 -7353.7646
+46080.13218868873 3.7453697 -7354.7485
+46081.13218873623 3.745409 -7354.9453
+46082.13218878373 3.7452908 -7354.7485
+46083.13218883122 3.7450941 -7354.9453
+46084.13218887872 3.7450154 -7354.7485
+46085.13218892622 3.7449758 -7354.3545
+46086.13218897372 3.7448184 -7354.3545
+46087.13218902121 3.7447791 -7355.1421
+46088.13218906871 3.7447004 -7354.5513
+46089.13218911621 3.7445822 -7354.7485
+46090.13218916371 3.7445035 -7354.3545
+46091.1321892112 3.7442672 -7354.9453
+46092.1321892587 3.7442672 -7354.1577
+46093.1321893062 3.7441885 -7354.7485
+46094.1321893537 3.744031 -7354.5513
+46095.13218940119 3.7440703 -7354.3545
+46096.13218944869 3.7439523 -7355.3384
+46097.13218949619 3.7438343 -7354.1577
+46098.13218954368 3.7436767 -7354.9453
+46099.13218959118 3.7436373 -7354.7485
+46100.13218963868 3.7436373 -7354.9453
+46101.13218968618 3.7435193 -7354.9453
+46102.13218973367 3.7434011 -7354.9453
+46103.13218978117 3.7433224 -7355.1421
+46104.13218982867 3.7432437 -7354.7485
+46105.13218987617 3.743165 -7354.5513
+46106.13218992366 3.7430468 -7355.3384
+46107.13218997116 3.7429681 -7354.5513
+46108.13219001866 3.7429287 -7354.3545
+46109.13219006616 3.7428105 -7354.1577
+46110.13219011365 3.7428105 -7354.7485
+46111.13219016115 3.7425745 -7354.9453
+46112.13219020865 3.7424955 -7354.7485
+46113.13219025615 3.7425349 -7353.9609
+46114.13219030364 3.7423382 -7354.3545
+46115.13219035114 3.7422988 -7354.5513
+46116.13219039864 3.7422595 -7354.1577
+46117.13219044614 3.7421412 -7354.7485
+46118.13219049363 3.7421412 -7355.3384
+46119.13219054113 3.7419839 -7355.1421
+46120.13219058863 3.7420232 -7355.3384
+46121.13219063613 3.7417476 -7354.7485
+46122.13219068362 3.7417476 -7355.3384
+46123.13219073112 3.7415507 -7355.3384
+46124.13219077862 3.74159 -7354.1577
+46125.13219082612 3.741472 -7354.9453
+46126.13219087361 3.741354 -7354.3545
+46127.13219092111 3.7411964 -7353.7646
+46128.13219096861 3.7411964 -7354.1577
+46129.13219101611 3.7410784 -7354.5513
+46130.1321910636 3.7411177 -7354.9453
+46131.1321911111 3.7409601 -7355.3384
+46132.1321911586 3.7408028 -7354.5513
+46133.1321912061 3.7407634 -7354.1577
+46134.13219125359 3.7406452 -7355.1421
+46135.13219130109 3.7404878 -7355.5352
+46136.13219134859 3.7405272 -7355.5352
+46137.13219139609 3.7404878 -7354.9453
+46138.13219144358 3.7403302 -7354.7485
+46139.13219149108 3.7402122 -7353.9609
+46140.13219153858 3.7401335 -7355.1421
+46141.13219158608 3.7399366 -7355.1421
+46142.13219163357 3.7400546 -7353.9609
+46143.13219168107 3.7399366 -7354.5513
+46144.13219172857 3.7397397 -7354.1577
+46145.13219177607 3.7395823 -7354.3545
+46146.13219182356 3.7395823 -7353.9609
+46147.13219187106 3.7393854 -7354.5513
+46148.13219191856 3.739346 -7354.1577
+46149.13219196606 3.739346 -7354.5513
+46150.13219201355 3.7391887 -7355.5352
+46151.13219206105 3.739228 -7354.7485
+46152.13219210855 3.7391491 -7355.3384
+46153.13219215604 3.7390704 -7354.5513
+46154.13219220354 3.7388737 -7354.9453
+46155.13219225104 3.7388341 -7354.9453
+46156.13219229854 3.7387161 -7355.1421
+46157.13219234603 3.7386768 -7354.3545
+46158.13219239353 3.7385588 -7354.7485
+46159.13219244103 3.7384799 -7354.1577
+46160.13219248853 3.7384405 -7354.1577
+46161.13219253602 3.7383225 -7354.3545
+46162.13219258352 3.7382042 -7354.5513
+46163.13219263102 3.7381649 -7355.1421
+46164.13219267852 3.7380075 -7355.1421
+46165.13219272601 3.7379289 -7354.1577
+46166.13219277351 3.7378106 -7354.7485
+46167.13219282101 3.7377713 -7353.5669
+46168.13219286851 3.7377319 -7354.9453
+46169.132192916 3.7374957 -7354.5513
+46170.1321929635 3.7374957 -7354.9453
+46171.132193011 3.7373776 -7354.3545
+46172.1321930585 3.7372987 -7355.3384
+46173.13219310599 3.7372594 -7354.5513
+46174.13219315349 3.7371807 -7354.9453
+46175.13219320099 3.7370234 -7354.1577
+46176.13219324849 3.7369051 -7354.3545
+46177.13219329598 3.7369444 -7354.9453
+46178.13219334348 3.7367871 -7353.7646
+46179.13219339098 3.7367477 -7354.7485
+46180.13219343848 3.7367084 -7354.3545
+46181.13219348597 3.7365508 -7353.9609
+46182.13219353347 3.7365508 -7354.5513
+46183.13219358097 3.7363935 -7354.1577
+46184.13219362847 3.7362359 -7354.5513
+46185.13219367596 3.7362752 -7354.3545
+46186.13219372346 3.7360785 -7354.7485
+46187.13219377096 3.7360389 -7354.5513
+46188.13219381846 3.7359209 -7354.5513
+46189.13219386595 3.7357635 -7354.1577
+46190.13219391345 3.7357635 -7354.9453
+46191.13219396095 3.7358029 -7354.1577
+46192.13219400845 3.7356453 -7354.7485
+46193.13219405594 3.7354879 -7354.5513
+46194.13219410344 3.7353303 -7354.1577
+46195.13219415094 3.7352517 -7355.3384
+46196.13219419844 3.7352123 -7354.9453
+46197.13219424593 3.7351334 -7355.1421
+46198.13219429343 3.7350547 -7354.7485
+46199.13219434093 3.734858 -7354.3545
+46200.13219438843 3.7348974 -7354.3545
+46201.13219443592 3.734858 -7354.5513
+46202.13219448342 3.7347004 -7354.3545
+46203.13219453092 3.7345431 -7354.5513
+46204.13219457841 3.7345035 -7354.7485
+46205.13219462591 3.7344642 -7355.1421
+46206.13219467341 3.7343462 -7355.1421
+46207.13219472091 3.7342281 -7354.5513
+46208.1321947684 3.7341886 -7355.1421
+46209.1321948159 3.7341099 -7354.3545
+46210.1321948634 3.7339919 -7353.5669
+46211.1321949109 3.7338736 -7355.3384
+46212.13219495839 3.7337949 -7355.3384
+46213.13219500589 3.7336769 -7353.9609
+46214.13219505339 3.7337162 -7354.9453
+46215.13219510089 3.7335193 -7354.1577
+46216.13219514838 3.7336376 -7354.7485
+46217.13219519588 3.733362 -7354.9453
+46218.13219524338 3.733362 -7354.5513
+46219.13219529088 3.7332044 -7355.1421
+46220.13219533837 3.733047 -7353.9609
+46221.13219538587 3.7330863 -7354.1577
+46222.13219543337 3.7329288 -7354.7485
+46223.13219548087 3.7329288 -7354.7485
+46224.13219552836 3.7328501 -7353.7646
+46225.13219557586 3.7326927 -7354.7485
+46226.13219562336 3.7326138 -7354.3545
+46227.13219567086 3.7325351 -7354.3545
+46228.13219571835 3.7323778 -7354.1577
+46229.13219576585 3.7324564 -7354.5513
+46230.13219581335 3.7323382 -7355.5352
+46231.13219586085 3.7322202 -7355.1421
+46232.13219590834 3.7321415 -7354.1577
+46233.13219595584 3.7320232 -7354.9453
+46234.13219600334 3.7320232 -7355.3384
+46235.13219605084 3.7319052 -7354.5513
+46236.13219609833 3.7317872 -7355.3384
+46237.13219614583 3.7316689 -7354.5513
+46238.13219619333 3.7315509 -7354.3545
+46239.13219624083 3.7315903 -7354.5513
+46240.13219628832 3.731354 -7354.1577
+46241.13219633582 3.7313147 -7354.9453
+46242.13219638332 3.7311966 -7354.1577
+46243.13219643082 3.7310784 -7354.7485
+46244.13219647831 3.731039 -7354.9453
+46245.13219652581 3.730921 -7354.3545
+46246.13219657331 3.7308028 -7355.7324
+46247.13219662081 3.7307241 -7355.3384
+46248.1321966683 3.7306848 -7354.7485
+46249.1321967158 3.7306061 -7354.3545
+46250.1321967633 3.7303698 -7354.1577
+46251.1321968108 3.7303305 -7354.1577
+46252.13219685829 3.7303305 -7354.1577
+46253.13219690579 3.7301729 -7354.1577
+46254.13219695329 3.7300942 -7354.3545
+46255.13219700078 3.7300549 -7354.9453
+46256.13219704828 3.7299762 -7354.7485
+46257.13219709578 3.7298579 -7354.7485
+46258.13219714328 3.7298186 -7354.9453
+46259.13219719077 3.7297006 -7354.5513
+46260.13219723827 3.7296612 -7354.9453
+46261.13219728577 3.7295823 -7355.1421
+46262.13219733327 3.7294643 -7353.7646
+46263.13219738076 3.7293463 -7355.1421
+46264.13219742826 3.7293856 -7354.3545
+46265.13219747576 3.729228 -7354.1577
+46266.13219752326 3.7289524 -7353.9609
+46267.13219757075 3.728992 -7354.1577
+46268.13219761825 3.7289524 -7354.3545
+46269.13219766575 3.7287951 -7354.3545
+46270.13219771325 3.7287951 -7354.9453
+46271.13219776074 3.7286375 -7354.7485
+46272.13219780824 3.7285981 -7354.1577
+46273.13219785574 3.7284408 -7354.1577
+46274.13219790324 3.7284014 -7354.9453
+46275.13219795073 3.7283618 -7354.1577
+46276.13219799823 3.7282045 -7354.9453
+46277.13219804573 3.7281651 -7354.1577
+46278.13219809323 3.7281651 -7353.9609
+46279.13219814072 3.7279682 -7354.3545
+46280.13219818822 3.7279682 -7354.1577
+46281.13219823572 3.7279682 -7354.7485
+46282.13219828322 3.7277715 -7354.1577
+46283.13219833071 3.7276139 -7354.9453
+46284.13219837821 3.7275352 -7354.1577
+46285.13219842571 3.7276926 -7353.5669
+46286.13219847321 3.7273777 -7354.3545
+46287.1321985207 3.7275352 -7354.5513
+46288.1321985682 3.7273383 -7353.9609
+46289.1321986157 3.7272596 -7353.9609
+46290.1321986632 3.7272596 -7354.7485
+46291.13219871069 3.727102 -7354.1577
+46292.13219875819 3.726984 -7354.7485
+46293.13219880569 3.7270234 -7354.3545
+46294.13219885319 3.7269053 -7355.1421
+46295.13219890068 3.7267871 -7354.5513
+46296.13219894818 3.7266297 -7355.7324
+46297.13219899568 3.7266691 -7354.9453
+46298.13219904318 3.7265115 -7355.3384
+46299.13219909067 3.7264328 -7353.9609
+46300.13219913817 3.7264328 -7354.1577
+46301.13219918567 3.7264328 -7354.1577
+46302.13219923317 3.7262361 -7354.9453
+46303.13219928066 3.7261572 -7354.9453
+46304.13219932816 3.7260392 -7354.5513
+46305.13219937566 3.7259605 -7355.1421
+46306.13219942315 3.7257242 -7354.1577
+46307.13219947065 3.7258029 -7354.1577
+46308.13219951815 3.7257636 -7354.1577
+46309.13219956565 3.7257242 -7354.1577
+46310.13219961314 3.7256455 -7354.5513
+46311.13219966064 3.7254879 -7354.1577
+46312.13219970814 3.7254879 -7353.7646
+46313.13219975564 3.7253306 -7354.5513
+46314.13219980313 3.7252913 -7354.3545
+46315.13219985063 3.7250943 -7355.1421
+46316.13219989813 3.7250156 -7355.1421
+46317.13219994563 3.725055 -7354.9453
+46318.13219999312 3.7248974 -7354.7485
+46319.13220004062 3.7250156 -7354.3545
+46320.13220008812 3.7248974 -7355.1421
+46321.13220013562 3.7247794 -7355.3384
+46322.13220018311 3.7248187 -7354.7485
+46323.13220023061 3.7246218 -7355.1421
+46324.13220027811 3.7245038 -7354.1577
+46325.13220032561 3.7244251 -7354.7485
+46326.1322003731 3.7244251 -7354.7485
+46327.1322004206 3.7243857 -7354.9453
+46328.1322004681 3.7242281 -7354.5513
+46329.1322005156 3.7241495 -7355.1421
+46330.13220056309 3.7240312 -7355.1421
+46331.13220061059 3.7239525 -7354.9453
+46332.13220065809 3.7239132 -7354.3545
+46333.13220070559 3.7238739 -7355.5352
+46334.13220075308 3.7237558 -7355.1421
+46335.13220080058 3.7237558 -7354.1577
+46336.13220084808 3.7237163 -7353.7646
+46337.13220089558 3.7234802 -7354.5513
+46338.13220094307 3.7234013 -7355.3384
+46339.13220099057 3.7232833 -7354.3545
+46340.13220103807 3.7233226 -7354.7485
+46341.13220108557 3.723244 -7354.9453
+46342.13220113306 3.723047 -7354.9453
+46343.13220118056 3.723047 -7354.3545
+46344.13220122806 3.7230077 -7354.3545
+46345.13220127556 3.722929 -7355.1421
+46346.13220132305 3.7228897 -7354.9453
+46347.13220137055 3.722614 -7355.3384
+46348.13220141805 3.722614 -7354.1577
+46349.13220146555 3.7224958 -7354.5513
+46350.13220151304 3.7224958 -7354.5513
+46351.13220156054 3.7223778 -7353.9609
+46352.13220160804 3.7222598 -7353.9609
+46353.13220165554 3.7221808 -7354.3545
+46354.13220170303 3.7221022 -7354.5513
+46355.13220175053 3.7219841 -7354.7485
+46356.13220179803 3.7219448 -7354.5513
+46357.13220184552 3.7218659 -7355.7324
+46358.13220189302 3.7217872 -7355.5352
+46359.13220194052 3.7217479 -7354.9453
+46360.13220198802 3.7216692 -7354.1577
+46361.13220203551 3.7214723 -7354.7485
+46362.13220208301 3.7214723 -7353.7646
+46363.13220213051 3.7212756 -7355.1421
+46364.13220217801 3.7212756 -7354.9453
+46365.1322022255 3.7212756 -7354.5513
+46366.132202273 3.7211573 -7355.1421
+46367.1322023205 3.7210786 -7355.1421
+46368.132202368 3.720921 -7354.7485
+46369.13220241549 3.720921 -7355.7324
+46370.13220246299 3.720803 -7354.5513
+46371.13220251049 3.720685 -7354.9453
+46372.13220255799 3.7207243 -7354.5513
+46373.13220260548 3.7205667 -7354.7485
+46374.13220265298 3.7204487 -7354.9453
+46375.13220270048 3.7204487 -7354.3545
+46376.13220274798 3.7203305 -7354.1577
+46377.13220279547 3.7202911 -7354.1577
+46378.13220284297 3.7200944 -7354.3545
+46379.13220289047 3.7201338 -7355.3384
+46380.13220293797 3.7200551 -7354.7485
+46381.13220298546 3.7198975 -7354.7485
+46382.13220303296 3.7198975 -7354.7485
+46383.13220308046 3.7198582 -7354.9453
+46384.13220312796 3.7197402 -7354.9453
+46385.13220317545 3.7197795 -7355.1421
+46386.13220322295 3.7195432 -7355.1421
+46387.13220327045 3.719425 -7354.7485
+46388.13220331795 3.7193856 -7354.3545
+46389.13220336544 3.7192283 -7354.5513
+46390.13220341294 3.7191496 -7353.9609
+46391.13220346044 3.7190313 -7354.1577
+46392.13220350794 3.7190313 -7353.9609
+46393.13220355543 3.7189527 -7353.9609
+46394.13220360293 3.7187557 -7354.1577
+46395.13220365043 3.7187951 -7353.7646
+46396.13220369793 3.718677 -7354.9453
+46397.13220374542 3.718559 -7354.7485
+46398.13220379292 3.7185197 -7355.3384
+46399.13220384042 3.7185197 -7353.9609
+46400.13220388792 3.7182834 -7354.9453
+46401.13220393541 3.7183228 -7354.3545
+46402.13220398291 3.7182047 -7353.7646
+46403.13220403041 3.7180865 -7355.3384
+46404.13220407791 3.7178502 -7354.3545
+46405.1322041254 3.7178502 -7354.3545
+46406.1322041729 3.7179291 -7354.7485
+46407.1322042204 3.7176929 -7354.9453
+46408.13220426789 3.7176929 -7354.3545
+46409.13220431539 3.7175746 -7354.7485
+46410.13220436289 3.7174566 -7355.5352
+46411.13220441039 3.7173779 -7354.5513
+46412.13220445788 3.7172203 -7354.9453
+46413.13220450538 3.7173386 -7354.5513
+46414.13220455288 3.7171416 -7354.7485
+46415.13220460038 3.717063 -7355.1421
+46416.13220464787 3.717063 -7355.7324
+46417.13220469537 3.7169843 -7353.9609
+46418.13220474287 3.7169843 -7355.3384
+46419.13220479037 3.7168267 -7353.7646
+46420.13220483786 3.7166693 -7353.7646
+46421.13220488536 3.7166693 -7354.5513
+46422.13220493286 3.7165904 -7355.3384
+46423.13220498036 3.7165117 -7355.1421
+46424.13220502785 3.7163544 -7354.3545
+46425.13220507535 3.7163937 -7354.5513
+46426.13220512285 3.7163937 -7354.3545
+46427.13220517035 3.7163148 -7354.7485
+46428.13220521784 3.7161574 -7354.9453
+46429.13220526534 3.7161574 -7354.1577
+46430.13220531284 3.7160394 -7354.7485
+46431.13220536034 3.7159605 -7353.7646
+46432.13220540783 3.7159605 -7355.3384
+46433.13220545533 3.7158031 -7355.3384
+46434.13220550283 3.7157242 -7354.7485
+46435.13220555033 3.7158031 -7354.7485
+46436.13220559782 3.7155669 -7353.3706
+46437.13220564532 3.7156062 -7353.5669
+46438.13220569282 3.7154882 -7354.3545
+46439.13220574032 3.7154093 -7354.1577
+46440.13220578781 3.7153306 -7354.3545
+46441.13220583531 3.7152913 -7354.7485
+46442.13220588281 3.7151339 -7354.3545
+46443.13220593031 3.7150943 -7355.3384
+46444.1322059778 3.7149763 -7354.7485
+46445.1322060253 3.714937 -7354.3545
+46446.1322060728 3.7147794 -7355.3384
+46447.1322061203 3.7147007 -7354.7485
+46448.13220616779 3.714622 -7354.9453
+46449.13220621529 3.714622 -7354.3545
+46450.13220626279 3.7145433 -7354.1577
+46451.13220631029 3.7144644 -7354.5513
+46452.13220635778 3.7143464 -7354.3545
+46453.13220640528 3.7143071 -7354.3545
+46454.13220645278 3.7140708 -7354.3545
+46455.13220650028 3.7140315 -7354.7485
+46456.13220654777 3.7139921 -7354.5513
+46457.13220659527 3.7138739 -7355.3384
+46458.13220664277 3.7137558 -7354.7485
+46459.13220669026 3.7137952 -7355.1421
+46460.13220673776 3.7137165 -7354.9453
+46461.13220678526 3.7135985 -7353.9609
+46462.13220683276 3.7134409 -7354.3545
+46463.13220688025 3.7134802 -7355.1421
+46464.13220692775 3.7134016 -7355.3384
+46465.13220697525 3.7132046 -7354.3545
+46466.13220702275 3.7131653 -7354.9453
+46467.13220707024 3.7130866 -7355.1421
+46468.13220711774 3.7130079 -7354.7485
+46469.13220716524 3.7128897 -7354.5513
+46470.13220721274 3.7127717 -7355.1421
+46471.13220726023 3.7127323 -7354.5513
+46472.13220730773 3.7125354 -7354.9453
+46473.13220735523 3.712378 -7354.1577
+46474.13220740273 3.7124174 -7354.7485
+46475.13220745022 3.7122991 -7354.7485
+46476.13220749772 3.7121024 -7354.7485
+46477.13220754522 3.7121418 -7354.3545
+46478.13220759272 3.7120235 -7354.7485
+46479.13220764021 3.7119055 -7355.1421
+46480.13220768771 3.7118661 -7354.5513
+46481.13220773521 3.7117085 -7354.9453
+46482.13220778271 3.7116692 -7354.9453
+46483.1322078302 3.7113543 -7354.9453
+46484.1322078777 3.7114332 -7354.3545
+46485.1322079252 3.7113149 -7354.5513
+46486.1322079727 3.7112362 -7354.7485
+46487.13220802019 3.7110786 -7354.1577
+46488.13220806769 3.7110786 -7354.3545
+46489.13220811519 3.711 -7354.5513
+46490.13220816269 3.7108819 -7354.1577
+46491.13220821018 3.7108819 -7353.9609
+46492.13220825768 3.7108033 -7354.3545
+46493.13220830518 3.7106457 -7355.3384
+46494.13220835268 3.710567 -7353.9609
+46495.13220840017 3.7104094 -7354.5513
+46496.13220844767 3.7103307 -7354.9453
+46497.13220849517 3.7103701 -7354.5513
+46498.13220854267 3.7102127 -7354.7485
+46499.13220859016 3.7100945 -7354.1577
+46500.13220863766 3.7100551 -7354.7485
+46501.13220868516 3.7099764 -7355.1421
+46502.13220873266 3.7099764 -7354.1577
+46503.13220878015 3.7097795 -7354.1577
+46504.13220882765 3.7096615 -7354.5513
+46505.13220887515 3.7097008 -7354.5513
+46506.13220892265 3.7095432 -7355.7324
+46507.13220897014 3.7095828 -7354.7485
+46508.13220901764 3.7094252 -7354.1577
+46509.13220906514 3.7093859 -7354.7485
+46510.13220911263 3.7093072 -7354.1577
+46511.13220916013 3.7092283 -7354.7485
+46512.13220920763 3.7091496 -7355.1421
+46513.13220925513 3.7091103 -7353.7646
+46514.13220930262 3.708874 -7354.3545
+46515.13220935012 3.7089529 -7354.7485
+46516.13220939762 3.7087953 -7354.5513
+46517.13220944512 3.708756 -7354.9453
+46518.13220949261 3.7085984 -7354.5513
+46519.13220954011 3.7086377 -7354.9453
+46520.13220958761 3.7083623 -7354.3545
+46521.13220963511 3.7082834 -7354.5513
+46522.1322096826 3.7082441 -7354.3545
+46523.1322097301 3.7081654 -7354.1577
+46524.1322097776 3.7081261 -7354.7485
+46525.1322098251 3.7078898 -7354.5513
+46526.13220987259 3.7079685 -7354.5513
+46527.13220992009 3.7078111 -7355.1421
+46528.13220996759 3.7077324 -7354.1577
+46529.13221001509 3.7076929 -7354.7485
+46530.13221006258 3.7076142 -7354.5513
+46531.13221011008 3.7073779 -7354.5513
+46532.13221015758 3.7072599 -7354.7485
+46533.13221020508 3.7072206 -7354.5513
+46534.13221025257 3.7071025 -7353.5669
+46535.13221030007 3.7071419 -7353.7646
+46536.13221034757 3.7069843 -7354.3545
+46537.13221039507 3.7070236 -7354.1577
+46538.13221044256 3.7069056 -7353.7646
+46539.13221049006 3.7068269 -7354.9453
+46540.13221053756 3.7065907 -7354.9453
+46541.13221058506 3.7065513 -7354.5513
+46542.13221063255 3.706512 -7355.7324
+46543.13221068005 3.706512 -7354.1577
+46544.13221072755 3.7064331 -7354.9453
+46545.13221077505 3.7062364 -7354.7485
+46546.13221082254 3.7061574 -7353.9609
+46547.13221087004 3.7061574 -7353.7646
+46548.13221091754 3.7061181 -7353.9609
+46549.13221096504 3.7059608 -7354.5513
+46550.13221101253 3.7058821 -7354.5513
+46551.13221106003 3.7058821 -7353.5669
+46552.13221110753 3.7056851 -7354.3545
+46553.13221115503 3.7055671 -7353.9609
+46554.13221120252 3.7056458 -7354.9453
+46555.13221125002 3.7054882 -7354.3545
+46556.13221129752 3.7053702 -7354.7485
+46557.13221134502 3.7052915 -7354.7485
+46558.13221139251 3.7052522 -7353.3706
+46559.13221144001 3.7050946 -7354.7485
+46560.13221148751 3.7050159 -7355.1421
+46561.132211535 3.7048976 -7353.7646
+46562.1322115825 3.7048976 -7354.9453
+46563.13221163 3.7047796 -7354.7485
+46564.1322116775 3.7047009 -7354.3545
+46565.13221172499 3.7045827 -7354.5513
+46566.13221177249 3.7045827 -7354.3545
+46567.13221181999 3.704386 -7354.5513
+46568.13221186749 3.7042677 -7354.1577
+46569.13221191498 3.7042677 -7354.9453
+46570.13221196248 3.7041891 -7354.9453
+46571.13221200998 3.7039921 -7353.9609
+46572.13221205748 3.7039135 -7354.7485
+46573.13221210497 3.7037561 -7354.9453
+46574.13221215247 3.7037561 -7354.3545
+46575.13221219997 3.7036772 -7354.7485
+46576.13221224747 3.7036378 -7355.1421
+46577.13221229496 3.7034018 -7353.9609
+46578.13221234246 3.7033622 -7355.1421
+46579.13221238996 3.7033622 -7353.9609
+46580.13221243746 3.7031655 -7354.5513
+46581.13221248495 3.7030473 -7354.9453
+46582.13221253245 3.7030866 -7354.1577
+46583.13221257995 3.7028506 -7354.7485
+46584.13221262745 3.7029686 -7354.3545
+46585.13221267494 3.7027717 -7354.5513
+46586.13221272244 3.7026143 -7354.1577
+46587.13221276994 3.7025356 -7355.5352
+46588.13221281744 3.702378 -7354.1577
+46589.13221286493 3.7023387 -7354.5513
+46590.13221291243 3.70226 -7353.7646
+46591.13221295993 3.7022207 -7354.3545
+46592.13221300743 3.7021024 -7354.3545
+46593.13221305492 3.7019844 -7354.3545
+46594.13221310242 3.7019057 -7354.9453
+46595.13221314992 3.7019057 -7354.5513
+46596.13221319742 3.7017481 -7354.1577
+46597.13221324491 3.7016695 -7353.3706
+46598.13221329241 3.7016695 -7353.7646
+46599.13221333991 3.7015119 -7354.5513
+46600.13221338741 3.7013545 -7354.1577
+46601.1322134349 3.7013545 -7354.9453
+46602.1322134824 3.7011969 -7355.1421
+46603.1322135299 3.7011576 -7353.9609
+46604.1322135774 3.7011182 -7354.7485
+46605.13221362489 3.7010396 -7354.9453
+46606.13221367239 3.700882 -7354.5513
+46607.13221371989 3.7008426 -7353.5669
+46608.13221376739 3.7006853 -7354.5513
+46609.13221381488 3.7006063 -7354.5513
+46610.13221386238 3.700567 -7354.3545
+46611.13221390988 3.700567 -7354.3545
+46612.13221395737 3.700449 -7354.3545
+46613.13221400487 3.7002914 -7354.3545
+46614.13221405237 3.7002521 -7354.3545
+46615.13221409987 3.7001734 -7354.1577
+46616.13221414736 3.7000947 -7354.1577
+46617.13221419486 3.7000554 -7354.7485
+46618.13221424236 3.6999371 -7354.5513
+46619.13221428986 3.6998584 -7353.5669
+46620.13221433735 3.6997008 -7353.9609
+46621.13221438485 3.6996615 -7354.5513
+46622.13221443235 3.6995041 -7354.5513
+46623.13221447985 3.6993859 -7353.7646
+46624.13221452734 3.6994648 -7354.5513
+46625.13221457484 3.6993859 -7354.3545
+46626.13221462234 3.6993465 -7354.5513
+46627.13221466984 3.6991892 -7354.7485
+46628.13221471733 3.6991892 -7354.7485
+46629.13221476483 3.6988349 -7354.5513
+46630.13221481233 3.6989529 -7354.7485
+46631.13221485983 3.6987166 -7355.3384
+46632.13221490732 3.6986773 -7354.1577
+46633.13221495482 3.6985593 -7353.7646
+46634.13221500232 3.698638 -7354.9453
+46635.13221504982 3.698441 -7354.3545
+46636.13221509731 3.6982837 -7354.1577
+46637.13221514481 3.6982443 -7354.7485
+46638.13221519231 3.698205 -7354.7485
+46639.13221523981 3.6980474 -7354.5513
+46640.1322152873 3.6980474 -7355.5352
+46641.1322153348 3.6980081 -7354.3545
+46642.1322153823 3.6978111 -7354.3545
+46643.1322154298 3.6977324 -7354.9453
+46644.13221547729 3.6977718 -7354.1577
+46645.13221552479 3.6976144 -7354.7485
+46646.13221557229 3.6975751 -7353.7646
+46647.13221561979 3.6973388 -7354.7485
+46648.13221566728 3.6973782 -7354.3545
+46649.13221571478 3.6971812 -7354.9453
+46650.13221576228 3.6971419 -7354.9453
+46651.13221580978 3.6971025 -7354.9453
+46652.13221585727 3.6969056 -7353.7646
+46653.13221590477 3.6969452 -7354.5513
+46654.13221595227 3.6967483 -7354.1577
+46655.13221599977 3.6966696 -7354.3545
+46656.13221604726 3.6967876 -7354.3545
+46657.13221609476 3.6966302 -7354.5513
+46658.13221614226 3.6964333 -7354.1577
+46659.13221618976 3.6963546 -7354.1577
+46660.13221623725 3.6964333 -7353.9609
+46661.13221628475 3.6962364 -7354.7485
+46662.13221633225 3.6961577 -7354.5513
+46663.13221637974 3.6959608 -7354.5513
+46664.13221642724 3.6959214 -7353.7646
+46665.13221647474 3.6958034 -7354.3545
+46666.13221652224 3.6958034 -7354.7485
+46667.13221656973 3.6957641 -7354.1577
+46668.13221661723 3.6956065 -7354.9453
+46669.13221666473 3.6955278 -7354.1577
+46670.13221671223 3.6953702 -7354.5513
+46671.13221675972 3.6952915 -7354.5513
+46672.13221680722 3.6952522 -7353.7646
+46673.13221685472 3.6951735 -7354.3545
+46674.13221690222 3.6950948 -7354.9453
+46675.13221694971 3.6949766 -7354.5513
+46676.13221699721 3.6949372 -7354.3545
+46677.13221704471 3.6947403 -7353.9609
+46678.13221709221 3.694701 -7354.5513
+46679.1322171397 3.6944253 -7354.5513
+46680.1322171872 3.6944649 -7354.9453
+46681.1322172347 3.694268 -7354.7485
+46682.1322172822 3.6942286 -7353.9609
+46683.13221732969 3.6941497 -7354.3545
+46684.13221737719 3.6940711 -7354.3545
+46685.13221742469 3.693953 -7353.7646
+46686.13221747219 3.6939137 -7353.5669
+46687.13221751968 3.6937954 -7354.3545
+46688.13221756718 3.6935987 -7354.5513
+46689.13221761468 3.6934805 -7353.9609
+46690.13221766218 3.6935594 -7354.5513
+46691.13221770967 3.6933231 -7353.1738
+46692.13221775717 3.6932445 -7353.7646
+46693.13221780467 3.6932838 -7354.9453
+46694.13221785217 3.6931655 -7354.1577
+46695.13221789966 3.6929295 -7354.5513
+46696.13221794716 3.6929688 -7354.3545
+46697.13221799466 3.6928899 -7355.1421
+46698.13221804216 3.6926932 -7354.5513
+46699.13221808965 3.6926539 -7354.5513
+46700.13221813715 3.6925356 -7353.9609
+46701.13221818465 3.6924176 -7353.7646
+46702.13221823215 3.69226 -7354.3545
+46703.13221827964 3.6922207 -7354.3545
+46704.13221832714 3.692142 -7353.3706
+46705.13221837464 3.692142 -7355.1421
+46706.13221842214 3.6919844 -7353.9609
+46707.13221846963 3.6919451 -7354.5513
+46708.13221851713 3.6917484 -7354.7485
+46709.13221856463 3.691709 -7355.1421
+46710.13221861213 3.6916301 -7354.3545
+46711.13221865962 3.6915121 -7354.5513
+46712.13221870712 3.6914334 -7354.3545
+46713.13221875462 3.6913152 -7354.3545
+46714.13221880212 3.6911185 -7353.7646
+46715.13221884961 3.6912758 -7354.5513
+46716.13221889711 3.6911185 -7354.7485
+46717.13221894461 3.6909215 -7354.1577
+46718.1322189921 3.6910002 -7354.5513
+46719.1322190396 3.690764 -7353.7646
+46720.1322190871 3.690764 -7354.3545
+46721.1322191346 3.6906066 -7354.3545
+46722.13221918209 3.6905673 -7354.1577
+46723.13221922959 3.6904886 -7355.1421
+46724.13221927709 3.6903703 -7354.5513
+46725.13221932459 3.6904097 -7354.7485
+46726.13221937208 3.690213 -7354.9453
+46727.13221941958 3.6900554 -7354.9453
+46728.13221946708 3.6900554 -7353.7646
+46729.13221951458 3.690016 -7353.9609
+46730.13221956207 3.6898191 -7354.1577
+46731.13221960957 3.6897404 -7354.5513
+46732.13221965707 3.6896617 -7354.3545
+46733.13221970457 3.6897011 -7354.9453
+46734.13221975206 3.6895041 -7354.3545
+46735.13221979956 3.6894255 -7354.7485
+46736.13221984706 3.6893861 -7354.9453
+46737.13221989456 3.6892681 -7355.3384
+46738.13221994205 3.6892288 -7354.5513
+46739.13221998955 3.6890318 -7353.9609
+46740.13222003705 3.6890318 -7353.9609
+46741.13222008455 3.6889136 -7354.3545
+46742.13222013204 3.6888349 -7354.3545
+46743.13222017954 3.6888349 -7354.3545
+46744.13222022704 3.6886775 -7353.9609
+46745.13222027454 3.6885986 -7354.7485
+46746.13222032203 3.6884806 -7354.5513
+46747.13222036953 3.6883626 -7353.7646
+46748.13222041703 3.6882837 -7354.1577
+46749.13222046453 3.6882443 -7354.7485
+46750.13222051202 3.6880476 -7355.3384
+46751.13222055952 3.6880476 -7354.1577
+46752.13222060702 3.6879294 -7353.9609
+46753.13222065452 3.6878507 -7354.7485
+46754.13222070201 3.6877327 -7353.9609
+46755.13222074951 3.6876934 -7354.3545
+46756.13222079701 3.6876538 -7355.1421
+46757.13222084451 3.6874571 -7354.5513
+46758.132220892 3.6874177 -7354.5513
+46759.1322209395 3.6872995 -7354.3545
+46760.132220987 3.6872208 -7354.9453
+46761.1322210345 3.6871815 -7354.9453
+46762.13222108199 3.6870632 -7354.3545
+46763.13222112949 3.6869452 -7355.7324
+46764.13222117699 3.6867483 -7354.3545
+46765.13222122449 3.6867089 -7354.3545
+46766.13222127198 3.6866302 -7354.1577
+46767.13222131948 3.6865909 -7354.3545
+46768.13222136698 3.6865122 -7354.7485
+46769.13222141447 3.686394 -7354.1577
+46770.13222146197 3.686276 -7354.3545
+46771.13222150947 3.6861973 -7355.1421
+46772.13222155697 3.6860397 -7353.3706
+46773.13222160446 3.685961 -7354.5513
+46774.13222165196 3.685961 -7353.3706
+46775.13222169946 3.685843 -7354.1577
+46776.13222174696 3.6857641 -7354.1577
+46777.13222179445 3.6856067 -7354.7485
+46778.13222184195 3.6856067 -7355.1421
+46779.13222188945 3.6854491 -7354.1577
+46780.13222193695 3.6853704 -7354.9453
+46781.13222198444 3.6852524 -7354.7485
+46782.13222203194 3.6851735 -7354.7485
+46783.13222207944 3.6850948 -7353.3706
+46784.13222212694 3.6848979 -7354.5513
+46785.13222217443 3.6848192 -7353.5669
+46786.13222222193 3.6847799 -7354.3545
+46787.13222226943 3.6847405 -7354.3545
+46788.13222231693 3.6846619 -7354.3545
+46789.13222236442 3.6845436 -7353.7646
+46790.13222241192 3.6843863 -7354.5513
+46791.13222245942 3.6843076 -7354.1577
+46792.13222250692 3.6842287 -7354.7485
+46793.13222255441 3.684032 -7354.3545
+46794.13222260191 3.6840713 -7354.5513
+46795.13222264941 3.6839926 -7354.3545
+46796.13222269691 3.6838744 -7354.3545
+46797.1322227444 3.6837564 -7354.1577
+46798.1322227919 3.6836381 -7354.9453
+46799.1322228394 3.6834807 -7354.5513
+46800.1322228869 3.6834414 -7354.7485
+46801.13222293439 3.6834021 -7354.1577
+46802.13222298189 3.6832051 -7353.7646
+46803.13222302939 3.6831658 -7354.3545
+46804.13222307689 3.6829689 -7354.5513
+46805.13222312438 3.6829689 -7353.9609
+46806.13222317188 3.6828115 -7354.1577
+46807.13222321938 3.6827722 -7354.5513
+46808.13222326688 3.6826539 -7354.9453
+46809.13222331437 3.6826146 -7354.5513
+46810.13222336187 3.6824965 -7354.9453
+46811.13222340937 3.6824176 -7353.5669
+46812.13222345687 3.6823783 -7353.9609
+46813.13222350436 3.6822603 -7354.3545
+46814.13222355186 3.6821423 -7354.3545
+46815.13222359936 3.6821423 -7353.7646
+46816.13222364686 3.6821027 -7353.7646
+46817.13222369435 3.681906 -7354.7485
+46818.13222374185 3.6819453 -7353.7646
+46819.13222378935 3.6817091 -7353.3706
+46820.13222383684 3.6817484 -7355.3384
+46821.13222388434 3.6815517 -7354.5513
+46822.13222393184 3.6815121 -7354.7485
+46823.13222397934 3.6813154 -7354.7485
+46824.13222402683 3.6813154 -7354.9453
+46825.13222407433 3.6812761 -7354.1577
+46826.13222412183 3.6811972 -7354.1577
+46827.13222416933 3.6810791 -7354.7485
+46828.13222421682 3.6810398 -7354.3545
+46829.13222426432 3.6809218 -7354.3545
+46830.13222431182 3.6808429 -7354.7485
+46831.13222435932 3.6806855 -7354.5513
+46832.13222440681 3.6805673 -7354.1577
+46833.13222445431 3.6806462 -7354.5513
+46834.13222450181 3.6805279 -7353.5669
+46835.13222454931 3.6804492 -7354.9453
+46836.1322245968 3.6803312 -7353.9609
+46837.1322246443 3.6803312 -7354.7485
+46838.1322246918 3.680213 -7354.5513
+46839.1322247393 3.6801343 -7354.3545
+46840.13222478679 3.6799374 -7353.9609
+46841.13222483429 3.6798587 -7354.3545
+46842.13222488179 3.67978 -7354.3545
+46843.13222492929 3.6797013 -7354.1577
+46844.13222497678 3.6795437 -7354.1577
+46845.13222502428 3.6794257 -7354.1577
+46846.13222507178 3.6794651 -7354.3545
+46847.13222511928 3.6793468 -7354.3545
+46848.13222516677 3.6793075 -7353.7646
+46849.13222521427 3.6792288 -7355.1421
+46850.13222526177 3.6791501 -7354.9453
+46851.13222530927 3.6790318 -7355.3384
+46852.13222535676 3.6789138 -7355.1421
+46853.13222540426 3.6789138 -7354.3545
+46854.13222545176 3.6787169 -7354.9453
+46855.13222549926 3.6785989 -7354.1577
+46856.13222554675 3.6784809 -7354.3545
+46857.13222559425 3.6784415 -7353.9609
+46858.13222564175 3.6783626 -7354.5513
+46859.13222568925 3.6782446 -7354.1577
+46860.13222573674 3.6781659 -7354.9453
+46861.13222578424 3.6780477 -7354.3545
+46862.13222583174 3.6780477 -7354.9453
+46863.13222587924 3.6779296 -7354.1577
+46864.13222592673 3.6778114 -7354.1577
+46865.13222597423 3.6778114 -7354.1577
+46866.13222602173 3.677654 -7355.1421
+46867.13222606923 3.677536 -7354.1577
+46868.13222611672 3.6773784 -7354.3545
+46869.13222616422 3.6773391 -7354.7485
+46870.13222621172 3.6772997 -7354.3545
+46871.13222625921 3.6771815 -7355.3384
+46872.13222630671 3.6769848 -7353.5669
+46873.13222635421 3.6769848 -7353.9609
+46874.13222640171 3.6769061 -7353.9609
+46875.1322264492 3.6768665 -7354.5513
+46876.1322264967 3.6765912 -7353.9609
+46877.1322265442 3.6765912 -7353.9609
+46878.1322265917 3.6763942 -7354.1577
+46879.13222663919 3.6763942 -7354.1577
+46880.13222668669 3.6763155 -7355.1421
+46881.13222673419 3.6762366 -7354.5513
+46882.13222678169 3.6761186 -7354.7485
+46883.13222682918 3.6759217 -7354.1577
+46884.13222687668 3.6759217 -7354.5513
+46885.13222692418 3.6757643 -7355.1421
+46886.13222697168 3.675725 -7354.5513
+46887.13222701917 3.6755674 -7354.7485
+46888.13222706667 3.675528 -7353.7646
+46889.13222711417 3.6754494 -7353.9609
+46890.13222716167 3.6752918 -7354.7485
+46891.13222720916 3.6752918 -7354.3545
+46892.13222725666 3.6750951 -7354.9453
+46893.13222730416 3.6750951 -7353.9609
+46894.13222735166 3.6749375 -7353.7646
+46895.13222739915 3.6748588 -7353.3706
+46896.13222744665 3.6747801 -7355.1421
+46897.13222749415 3.6746225 -7353.9609
+46898.13222754165 3.6745832 -7353.9609
+46899.13222758914 3.6744652 -7354.5513
+46900.13222763664 3.6743076 -7354.3545
+46901.13222768414 3.6743076 -7353.7646
+46902.13222773164 3.6742682 -7354.7485
+46903.13222777913 3.6741107 -7353.7646
+46904.13222782663 3.673914 -7353.9609
+46905.13222787413 3.6739533 -7355.3384
+46906.13222792163 3.6738353 -7353.5669
+46907.13222796912 3.673717 -7354.5513
+46908.13222801662 3.6736383 -7353.5669
+46909.13222806412 3.673599 -7354.7485
+46910.13222811162 3.6734807 -7353.5669
+46911.13222815911 3.6734807 -7354.3545
+46912.13222820661 3.6732841 -7353.9609
+46913.13222825411 3.6733234 -7354.5513
+46914.13222830161 3.6732054 -7355.1421
+46915.1322283491 3.6729691 -7353.7646
+46916.1322283966 3.6729298 -7354.3545
+46917.1322284441 3.6728902 -7354.7485
+46918.1322284916 3.6727722 -7353.9609
+46919.13222853909 3.6727328 -7354.7485
+46920.13222858659 3.6726542 -7354.3545
+46921.13222863409 3.6724966 -7354.5513
+46922.13222868158 3.6724572 -7354.3545
+46923.13222872908 3.6722603 -7355.1421
+46924.13222877658 3.6722603 -7354.1577
+46925.13222882408 3.6721423 -7354.1577
+46926.13222887157 3.6720243 -7353.9609
+46927.13222891907 3.6719453 -7353.7646
+46928.13222896657 3.6718667 -7354.3545
+46929.13222901407 3.67167 -7354.7485
+46930.13222906156 3.671591 -7354.9453
+46931.13222910906 3.6715517 -7354.7485
+46932.13222915656 3.6714337 -7354.7485
+46933.13222920406 3.6713943 -7354.1577
+46934.13222925155 3.6713154 -7354.9453
+46935.13222929905 3.6711581 -7354.3545
+46936.13222934655 3.6710398 -7354.1577
+46937.13222939405 3.6709611 -7354.7485
+46938.13222944154 3.6707644 -7354.7485
+46939.13222948904 3.6707249 -7354.5513
+46940.13222953654 3.6708038 -7354.7485
+46941.13222958404 3.6705282 -7353.5669
+46942.13222963153 3.6704888 -7355.7324
+46943.13222967903 3.6703706 -7354.3545
+46944.13222972653 3.6702132 -7355.1421
+46945.13222977403 3.6701345 -7353.9609
+46946.13222982152 3.6700556 -7353.7646
+46947.13222986902 3.6699376 -7355.1421
+46948.13222991652 3.6698983 -7353.7646
+46949.13222996402 3.6697013 -7354.5513
+46950.13223001151 3.6695833 -7354.5513
+46951.13223005901 3.6696227 -7354.9453
+46952.13223010651 3.669544 -7355.3384
+46953.13223015401 3.6694257 -7353.9609
+46954.1322302015 3.669347 -7355.1421
+46955.132230249 3.6692684 -7354.5513
+46956.1322302965 3.6691108 -7355.3384
+46957.132230344 3.6689928 -7354.3545
+46958.13223039149 3.6689534 -7354.3545
+46959.13223043899 3.6688745 -7354.5513
+46960.13223048649 3.6687171 -7354.3545
+46961.13223053399 3.6685991 -7353.9609
+46962.13223058148 3.6687565 -7353.3706
+46963.13223062898 3.6685596 -7354.3545
+46964.13223067648 3.6682842 -7354.9453
+46965.13223072398 3.6682446 -7354.3545
+46966.13223077147 3.6682842 -7354.3545
+46967.13223081897 3.6680086 -7354.5513
+46968.13223086647 3.6679692 -7354.3545
+46969.13223091397 3.6679692 -7354.5513
+46970.13223096146 3.6677723 -7354.1577
+46971.13223100896 3.6677723 -7354.9453
+46972.13223105646 3.667536 -7354.7485
+46973.13223110395 3.6676147 -7353.9609
+46974.13223115145 3.6674573 -7354.3545
+46975.13223119895 3.6673391 -7354.3545
+46976.13223124645 3.6672997 -7354.1577
+46977.13223129394 3.6671424 -7354.3545
+46978.13223134144 3.6671031 -7354.5513
+46979.13223138894 3.6670241 -7354.3545
+46980.13223143644 3.6669455 -7354.9453
+46981.13223148393 3.6667092 -7354.7485
+46982.13223153143 3.6667092 -7354.7485
+46983.13223157893 3.6665518 -7354.1577
+46984.13223162643 3.6664338 -7354.5513
+46985.13223167392 3.6663549 -7354.5513
+46986.13223172142 3.6662369 -7353.5669
+46987.13223176892 3.6661189 -7354.9453
+46988.13223181642 3.6659613 -7354.3545
+46989.13223186391 3.6660399 -7354.9453
+46990.13223191141 3.6658039 -7354.7485
+46991.13223195891 3.6658039 -7354.1577
+46992.13223200641 3.6656857 -7353.9609
+46993.1322320539 3.6655676 -7354.5513
+46994.1322321014 3.6654494 -7354.1577
+46995.1322321489 3.6653707 -7354.3545
+46996.1322321964 3.6652527 -7354.5513
+46997.13223224389 3.6652527 -7354.3545
+46998.13223229139 3.6650951 -7355.5352
+46999.13223233889 3.6650558 -7354.9453
+47000.13223238639 3.6650164 -7354.7485
+47001.13223243388 3.6648588 -7353.9609
+47002.13223248138 3.6647408 -7354.3545
+47003.13223252888 3.6647015 -7354.7485
+47004.13223257638 3.6645834 -7354.3545
+47005.13223262387 3.6645045 -7354.3545
+47006.13223267137 3.6643865 -7354.5513
+47007.13223271887 3.6642685 -7354.5513
+47008.13223276637 3.6641896 -7355.3384
+47009.13223281386 3.6641502 -7354.7485
+47010.13223286136 3.6639535 -7354.5513
+47011.13223290886 3.6638746 -7353.9609
+47012.13223295636 3.6638353 -7354.3545
+47013.13223300385 3.6636779 -7354.7485
+47014.13223305135 3.663481 -7354.9453
+47015.13223309885 3.663481 -7354.7485
+47016.13223314635 3.6634023 -7354.7485
+47017.13223319384 3.6632841 -7354.5513
+47018.13223324134 3.6632447 -7354.3545
+47019.13223328884 3.6632054 -7353.9609
+47020.13223333634 3.663048 -7354.3545
+47021.13223338383 3.6628904 -7353.7646
+47022.13223343133 3.6628118 -7353.7646
+47023.13223347883 3.6627724 -7353.9609
+47024.13223352632 3.6626542 -7354.1577
+47025.13223357382 3.6626148 -7354.5513
+47026.13223362132 3.6625361 -7354.7485
+47027.13223366882 3.6624575 -7354.3545
+47028.13223371631 3.6623785 -7354.7485
+47029.13223376381 3.6622999 -7354.3545
+47030.13223381131 3.6621029 -7354.7485
+47031.13223385881 3.6620636 -7354.9453
+47032.1322339063 3.6619849 -7354.7485
+47033.1322339538 3.6618276 -7354.3545
+47034.1322340013 3.6617486 -7354.9453
+47035.1322340488 3.6617093 -7355.3384
+47036.13223409629 3.661552 -7354.7485
+47037.13223414379 3.6615126 -7354.5513
+47038.13223419129 3.661552 -7354.7485
+47039.13223423879 3.661355 -7354.3545
+47040.13223428628 3.6611977 -7354.3545
+47041.13223433378 3.6611977 -7354.7485
+47042.13223438128 3.6610794 -7353.5669
+47043.13223442878 3.6609614 -7354.5513
+47044.13223447627 3.6608827 -7354.7485
+47045.13223452377 3.6608827 -7354.9453
+47046.13223457127 3.6608038 -7352.9771
+47047.13223461877 3.6607251 -7354.9453
+47048.13223466626 3.6606858 -7355.1421
+47049.13223471376 3.6606071 -7354.9453
+47050.13223476126 3.6604495 -7354.7485
+47051.13223480876 3.6603708 -7354.5513
+47052.13223485625 3.6602921 -7354.3545
+47053.13223490375 3.6602132 -7353.5669
+47054.13223495125 3.6601346 -7354.3545
+47055.13223499875 3.6599772 -7354.3545
+47056.13223504624 3.6599376 -7353.9609
+47057.13223509374 3.6598196 -7354.1577
+47058.13223514124 3.6598196 -7354.1577
+47059.13223518874 3.6596622 -7354.1577
+47060.13223523623 3.6596622 -7354.7485
+47061.13223528373 3.6596227 -7354.9453
+47062.13223533123 3.659544 -7354.7485
+47063.13223537873 3.659426 -7354.9453
+47064.13223542622 3.6593473 -7354.5513
+47065.13223547372 3.659229 -7354.7485
+47066.13223552122 3.6591897 -7354.1577
+47067.13223556872 3.6590323 -7354.5513
+47068.13223561621 3.6589141 -7354.7485
+47069.13223566371 3.6589141 -7354.9453
+47070.13223571121 3.6589534 -7354.7485
+47071.13223575871 3.6586385 -7354.7485
+47072.1322358062 3.6586778 -7354.3545
+47073.1322358537 3.6585991 -7354.1577
+47074.1322359012 3.6585205 -7353.9609
+47075.13223594869 3.6584022 -7354.5513
+47076.13223599619 3.6583629 -7354.9453
+47077.13223604369 3.6582055 -7354.7485
+47078.13223609119 3.6580873 -7354.1577
+47079.13223613868 3.6580086 -7354.3545
+47080.13223618618 3.6578906 -7354.3545
+47081.13223623368 3.6576936 -7354.7485
+47082.13223628118 3.6577723 -7354.5513
+47083.13223632867 3.6575363 -7354.7485
+47084.13223637617 3.6575756 -7354.5513
+47085.13223642367 3.6576149 -7353.9609
+47086.13223647117 3.6574574 -7354.7485
+47087.13223651866 3.6573 -7354.7485
+47088.13223656616 3.6572213 -7354.7485
+47089.13223661366 3.6570637 -7354.5513
+47090.13223666116 3.6570244 -7354.3545
+47091.13223670865 3.6569064 -7354.3545
+47092.13223675615 3.6567881 -7354.1577
+47093.13223680365 3.6567094 -7354.7485
+47094.13223685115 3.6565518 -7354.3545
+47095.13223689864 3.6564338 -7354.7485
+47096.13223694614 3.6563945 -7354.3545
+47097.13223699364 3.6562369 -7354.7485
+47098.13223704114 3.6561582 -7354.7485
+47099.13223708863 3.6561189 -7354.3545
+47100.13223713613 3.6559615 -7354.5513
+47101.13223718363 3.6559219 -7354.7485
+47102.13223723113 3.6558039 -7354.3545
+47103.13223727862 3.6557646 -7355.3384
+47104.13223732612 3.655607 -7354.1577
+47105.13223737362 3.655489 -7354.3545
+47106.13223742112 3.6554103 -7354.9453
+47107.13223746861 3.655292 -7354.5513
+47108.13223751611 3.655174 -7354.3545
+47109.13223756361 3.655056 -7354.1577
+47110.13223761111 3.6550953 -7354.9453
+47111.1322376586 3.6548984 -7354.5513
+47112.1322377061 3.654741 -7354.5513
+47113.1322377536 3.6546621 -7354.9453
+47114.1322378011 3.6546228 -7354.5513
+47115.13223784859 3.6545441 -7354.3545
+47116.13223789609 3.6545048 -7353.9609
+47117.13223794359 3.6543078 -7354.7485
+47118.13223799109 3.6543078 -7354.5513
+47119.13223803858 3.6541111 -7355.1421
+47120.13223808608 3.6541111 -7354.7485
+47121.13223813358 3.6539929 -7353.7646
+47122.13223818108 3.6539142 -7354.7485
+47123.13223822857 3.6539536 -7354.1577
+47124.13223827607 3.6537566 -7354.3545
+47125.13223832357 3.6536386 -7354.1577
+47126.13223837106 3.6535599 -7354.1577
+47127.13223841856 3.6536386 -7354.5513
+47128.13223846606 3.6535206 -7354.3545
+47129.13223851356 3.6532843 -7354.3545
+47130.13223856105 3.653245 -7354.3545
+47131.13223860855 3.6531267 -7354.3545
+47132.13223865605 3.6530087 -7354.5513
+47133.13223870355 3.6530087 -7354.3545
+47134.13223875104 3.65293 -7354.5513
+47135.13223879854 3.6527724 -7353.7646
+47136.13223884604 3.6527724 -7354.5513
+47137.13223889354 3.6526151 -7355.1421
+47138.13223894103 3.6526544 -7353.9609
+47139.13223898853 3.6524575 -7354.5513
+47140.13223903603 3.6523788 -7354.1577
+47141.13223908353 3.6521819 -7355.3384
+47142.13223913102 3.6522212 -7354.3545
+47143.13223917852 3.6519458 -7355.7324
+47144.13223922602 3.6519458 -7353.9609
+47145.13223927352 3.6518276 -7355.1421
+47146.13223932101 3.6517489 -7354.3545
+47147.13223936851 3.6515913 -7354.3545
+47148.13223941601 3.6515913 -7354.9453
+47149.13223946351 3.6514733 -7354.7485
+47150.132239511 3.6512764 -7354.1577
+47151.1322395585 3.651237 -7354.5513
+47152.132239606 3.6511977 -7353.9609
+47153.1322396535 3.6509614 -7354.3545
+47154.13223970099 3.6508434 -7354.5513
+47155.13223974849 3.6507647 -7353.5669
+47156.13223979599 3.6507254 -7354.7485
+47157.13223984349 3.6506071 -7355.1421
+47158.13223989098 3.6505678 -7354.7485
+47159.13223993848 3.6503708 -7354.9453
+47160.13223998598 3.6503315 -7354.9453
+47161.13224003348 3.6502922 -7354.1577
+47162.13224008097 3.6501741 -7354.9453
+47163.13224012847 3.6500165 -7354.3545
+47164.13224017597 3.6499772 -7353.7646
+47165.13224022347 3.6497805 -7354.3545
+47166.13224027096 3.6497805 -7354.1577
+47167.13224031846 3.6497409 -7355.5352
+47168.13224036596 3.6495836 -7354.1577
+47169.13224041346 3.6494653 -7355.5352
+47170.13224046095 3.6493473 -7353.9609
+47171.13224050845 3.6492686 -7354.9453
+47172.13224055595 3.6491899 -7355.1421
+47173.13224060345 3.649111 -7354.1577
+47174.13224065094 3.6490324 -7353.7646
+47175.13224069844 3.648875 -7353.7646
+47176.13224074594 3.6487961 -7354.9453
+47177.13224079343 3.6487174 -7354.5513
+47178.13224084093 3.6486781 -7354.5513
+47179.13224088843 3.6485205 -7354.7485
+47180.13224093593 3.6484418 -7354.5513
+47181.13224098342 3.6484025 -7354.9453
+47182.13224103092 3.6482055 -7354.1577
+47183.13224107842 3.6480875 -7354.7485
+47184.13224112592 3.6479695 -7354.5513
+47185.13224117341 3.6479301 -7355.1421
+47186.13224122091 3.6478119 -7354.3545
+47187.13224126841 3.6476939 -7354.7485
+47188.13224131591 3.6476545 -7353.7646
+47189.1322413634 3.6475363 -7354.7485
+47190.1322414109 3.6474576 -7354.5513
+47191.1322414584 3.6473789 -7354.9453
+47192.1322415059 3.6471426 -7354.7485
+47193.13224155339 3.6471033 -7353.5669
+47194.13224160089 3.6470246 -7353.7646
+47195.13224164839 3.6468277 -7354.3545
+47196.13224169589 3.646867 -7355.1421
+47197.13224174338 3.6468277 -7353.9609
+47198.13224179088 3.6466308 -7355.1421
+47199.13224183838 3.6465914 -7354.9453
+47200.13224188588 3.6465127 -7354.1577
+47201.13224193337 3.6464341 -7354.7485
+47202.13224198087 3.6463947 -7353.7646
+47203.13224202837 3.6463158 -7354.9453
+47204.13224207587 3.6461585 -7354.3545
+47205.13224212336 3.6461585 -7354.1577
+47206.13224217086 3.6459222 -7354.7485
+47207.13224221836 3.6458042 -7354.3545
+47208.13224226586 3.6457646 -7354.3545
+47209.13224231335 3.6455679 -7353.7646
+47210.13224236085 3.6455679 -7354.1577
+47211.13224240835 3.6455679 -7354.7485
+47212.13224245585 3.6452923 -7353.3706
+47213.13224250334 3.6452136 -7354.7485
+47214.13224255084 3.6450953 -7354.7485
+47215.13224259834 3.645056 -7354.1577
+47216.13224264584 3.6448987 -7354.5513
+47217.13224269333 3.6448987 -7354.9453
+47218.13224274083 3.6447804 -7353.3706
+47219.13224278833 3.644623 -7354.9453
+47220.13224283583 3.6445444 -7354.1577
+47221.13224288332 3.6443474 -7355.3384
+47222.13224293082 3.6441898 -7354.7485
+47223.13224297832 3.6442688 -7354.3545
+47224.13224302582 3.6441112 -7355.1421
+47225.13224307331 3.6439538 -7354.1577
+47226.13224312081 3.6438355 -7355.1421
+47227.13224316831 3.6438355 -7354.1577
+47228.1322432158 3.6436782 -7354.7485
+47229.1322432633 3.6436782 -7353.9609
+47230.1322433108 3.6435599 -7354.5513
+47231.1322433583 3.6434813 -7354.7485
+47232.13224340579 3.6433632 -7354.3545
+47233.13224345329 3.6433239 -7354.1577
+47234.13224350079 3.6430876 -7354.1577
+47235.13224354829 3.6430483 -7354.1577
+47236.13224359578 3.6428907 -7354.5513
+47237.13224364328 3.642812 -7354.1577
+47238.13224369078 3.6426544 -7354.1577
+47239.13224373828 3.6426151 -7353.9609
+47240.13224378577 3.6424971 -7356.126
+47241.13224383327 3.6423788 -7354.7485
+47242.13224388077 3.6423395 -7354.7485
+47243.13224392827 3.6421821 -7353.1738
+47244.13224397576 3.6421821 -7353.9609
+47245.13224402326 3.6419458 -7355.5352
+47246.13224407076 3.6419065 -7355.1421
+47247.13224411826 3.6419065 -7354.1577
+47248.13224416575 3.6417489 -7354.5513
+47249.13224421325 3.6417489 -7355.3384
+47250.13224426075 3.6415522 -7354.1577
+47251.13224430825 3.6413159 -7354.5513
+47252.13224435574 3.6413159 -7354.1577
+47253.13224440324 3.6411586 -7354.1577
+47254.13224445074 3.6411586 -7355.3384
+47255.13224449824 3.6409223 -7354.3545
+47256.13224454573 3.6409616 -7353.9609
+47257.13224459323 3.640883 -7354.9453
+47258.13224464073 3.6408041 -7354.1577
+47259.13224468823 3.640686 -7354.5513
+47260.13224473572 3.6404891 -7353.9609
+47261.13224478322 3.6405284 -7354.3545
+47262.13224483072 3.6404498 -7354.5513
+47263.13224487822 3.6402924 -7354.5513
+47264.13224492571 3.6401348 -7354.3545
+47265.13224497321 3.6401348 -7354.3545
+47266.13224502071 3.6399381 -7354.5513
+47267.13224506821 3.6399775 -7353.9609
+47268.1322451157 3.6398592 -7353.5669
+47269.1322451632 3.6397018 -7354.3545
+47270.1322452107 3.6395836 -7353.1738
+47271.1322452582 3.6394656 -7354.1577
+47272.13224530569 3.6393869 -7354.7485
+47273.13224535319 3.6393476 -7354.3545
+47274.13224540069 3.6391506 -7355.1421
+47275.13224544819 3.6390719 -7354.5513
+47276.13224549568 3.6390326 -7353.7646
+47277.13224554318 3.638875 -7354.3545
+47278.13224559068 3.638757 -7354.7485
+47279.13224563817 3.638757 -7354.3545
+47280.13224568567 3.6385994 -7354.9453
+47281.13224573317 3.6385207 -7354.5513
+47282.13224578067 3.6384027 -7353.5669
+47283.13224582816 3.6382451 -7354.5513
+47284.13224587566 3.6382844 -7354.5513
+47285.13224592316 3.6380482 -7354.5513
+47286.13224597066 3.6380482 -7354.5513
+47287.13224601815 3.6379695 -7354.3545
+47288.13224606565 3.6378515 -7354.5513
+47289.13224611315 3.6376939 -7354.1577
+47290.13224616065 3.6376939 -7354.7485
+47291.13224620814 3.6375759 -7353.7646
+47292.13224625564 3.6375759 -7354.3545
+47293.13224630314 3.6373789 -7354.5513
+47294.13224635064 3.6371429 -7354.1577
+47295.13224639813 3.6371429 -7353.7646
+47296.13224644563 3.6369853 -7354.5513
+47297.13224649313 3.6369066 -7354.3545
+47298.13224654063 3.6368277 -7354.7485
+47299.13224658812 3.6367884 -7354.1577
+47300.13224663562 3.6365917 -7353.9609
+47301.13224668312 3.636631 -7354.9453
+47302.13224673062 3.6364341 -7354.7485
+47303.13224677811 3.6363161 -7353.9609
+47304.13224682561 3.6362374 -7354.5513
+47305.13224687311 3.6361585 -7354.3545
+47306.13224692061 3.6361978 -7353.5669
+47307.1322469681 3.6360011 -7353.1738
+47308.1322470156 3.6359618 -7354.7485
+47309.1322470631 3.6357255 -7354.9453
+47310.1322471106 3.6356468 -7354.7485
+47311.13224715809 3.6356468 -7354.3545
+47312.13224720559 3.6355286 -7354.3545
+47313.13224725309 3.6353712 -7354.5513
+47314.13224730059 3.635253 -7354.1577
+47315.13224734808 3.6352136 -7354.1577
+47316.13224739558 3.6350956 -7353.7646
+47317.13224744308 3.6350169 -7354.5513
+47318.13224749058 3.6349773 -7354.9453
+47319.13224753807 3.6348987 -7354.1577
+47320.13224758557 3.6347413 -7354.5513
+47321.13224763307 3.6346624 -7354.5513
+47322.13224768057 3.6346231 -7355.3384
+47323.13224772806 3.634505 -7354.7485
+47324.13224777556 3.6344264 -7354.5513
+47325.13224782306 3.6343081 -7354.1577
+47326.13224787056 3.6342688 -7355.5352
+47327.13224791805 3.6341507 -7354.7485
+47328.13224796555 3.6339538 -7354.9453
+47329.13224801305 3.6340325 -7354.5513
+47330.13224806055 3.6338358 -7354.9453
+47331.13224810804 3.6338358 -7353.5669
+47332.13224815554 3.6336389 -7354.9453
+47333.13224820304 3.6334419 -7354.5513
+47334.13224825053 3.6335602 -7354.5513
+47335.13224829803 3.6334026 -7354.7485
+47336.13224834553 3.6332452 -7354.3545
+47337.13224839303 3.6331666 -7354.5513
+47338.13224844052 3.633127 -7354.1577
+47339.13224848802 3.6330483 -7354.3545
+47340.13224853552 3.6329696 -7354.5513
+47341.13224858302 3.6328516 -7354.9453
+47342.13224863051 3.6327727 -7354.3545
+47343.13224867801 3.6326547 -7353.9609
+47344.13224872551 3.6326547 -7354.3545
+47345.13224877301 3.6324971 -7354.7485
+47346.1322488205 3.632261 -7355.5352
+47347.132248868 3.632261 -7354.5513
+47348.1322489155 3.6321428 -7353.5669
+47349.132248963 3.6321428 -7354.1577
+47350.13224901049 3.6319461 -7354.5513
+47351.13224905799 3.6319461 -7353.9609
+47352.13224910549 3.6317492 -7354.3545
+47353.13224915299 3.6317098 -7354.5513
+47354.13224920048 3.6316311 -7354.1577
+47355.13224924798 3.6315129 -7353.9609
+47356.13224929548 3.6314735 -7353.5669
+47357.13224934298 3.6312373 -7354.5513
+47358.13224939047 3.6311586 -7354.9453
+47359.13224943797 3.6311193 -7354.3545
+47360.13224948547 3.6310406 -7354.1577
+47361.13224953297 3.6309617 -7353.7646
+47362.13224958046 3.6308436 -7354.1577
+47363.13224962796 3.6308436 -7354.7485
+47364.13224967546 3.6307256 -7354.3545
+47365.13224972296 3.6306074 -7353.9609
+47366.13224977045 3.630568 -7354.7485
+47367.13224981795 3.6305287 -7355.1421
+47368.13224986545 3.6303318 -7354.5513
+47369.13224991295 3.6302137 -7354.1577
+47370.13224996044 3.6301351 -7354.5513
+47371.13225000794 3.6301351 -7354.5513
+47372.13225005544 3.6300168 -7354.9453
+47373.13225010294 3.6297808 -7354.5513
+47374.13225015043 3.6298201 -7354.7485
+47375.13225019793 3.6297019 -7354.7485
+47376.13225024543 3.6295445 -7354.7485
+47377.13225029293 3.6294658 -7354.7485
+47378.13225034042 3.6293869 -7353.9609
+47379.13225038792 3.6292689 -7354.3545
+47380.13225043542 3.6291902 -7354.3545
+47381.13225048292 3.6290326 -7354.9453
+47382.13225053041 3.6290326 -7354.1577
+47383.13225057791 3.6288753 -7353.9609
+47384.13225062541 3.6288359 -7354.7485
+47385.1322506729 3.6286783 -7355.1421
+47386.1322507204 3.6286783 -7354.5513
+47387.1322507679 3.6284814 -7354.3545
+47388.1322508154 3.6284814 -7354.3545
+47389.13225086289 3.628324 -7354.9453
+47390.13225091039 3.6282847 -7354.1577
+47391.13225095789 3.628206 -7354.5513
+47392.13225100539 3.6280878 -7354.1577
+47393.13225105288 3.6278908 -7353.9609
+47394.13225110038 3.6277335 -7354.7485
+47395.13225114788 3.6277335 -7354.9453
+47396.13225119538 3.6275759 -7354.5513
+47397.13225124287 3.6275759 -7354.7485
+47398.13225129037 3.6274972 -7354.3545
+47399.13225133787 3.6273398 -7353.9609
+47400.13225138537 3.6273005 -7354.3545
+47401.13225143286 3.6271036 -7354.9453
+47402.13225148036 3.6270642 -7354.3545
+47403.13225152786 3.6269855 -7354.5513
+47404.13225157536 3.626946 -7355.1421
+47405.13225162285 3.6268673 -7354.1577
+47406.13225167035 3.6267099 -7353.9609
+47407.13225171785 3.6265917 -7354.7485
+47408.13225176535 3.6265917 -7354.5513
+47409.13225181284 3.626513 -7354.9453
+47410.13225186034 3.626395 -7354.1577
+47411.13225190784 3.6262374 -7354.9453
+47412.13225195534 3.6261981 -7354.9453
+47413.13225200283 3.6262374 -7354.1577
+47414.13225205033 3.6260405 -7355.3384
+47415.13225209783 3.6260405 -7354.1577
+47416.13225214533 3.6259224 -7354.1577
+47417.13225219282 3.6257651 -7354.5513
+47418.13225224032 3.6257651 -7355.5352
+47419.13225228782 3.6256468 -7354.7485
+47420.13225233532 3.6256075 -7355.1421
+47421.13225238281 3.6254501 -7355.1421
+47422.13225243031 3.6253712 -7354.3545
+47423.13225247781 3.6252139 -7354.7485
+47424.13225252531 3.6251352 -7353.9609
+47425.1322525728 3.6250563 -7354.3545
+47426.1322526203 3.6249382 -7354.7485
+47427.1322526678 3.6248989 -7354.7485
+47428.1322527153 3.6248596 -7354.5513
+47429.13225276279 3.624702 -7354.1577
+47430.13225281029 3.6246233 -7353.9609
+47431.13225285779 3.624505 -7353.7646
+47432.13225290529 3.6244264 -7354.3545
+47433.13225295278 3.6243083 -7355.1421
+47434.13225300028 3.6242297 -7354.5513
+47435.13225304778 3.6240327 -7354.3545
+47436.13225309527 3.6241508 -7354.5513
+47437.13225314277 3.6241114 -7354.9453
+47438.13225319027 3.6239147 -7355.3384
+47439.13225323777 3.6239541 -7354.7485
+47440.13225328526 3.6238751 -7354.1577
+47441.13225333276 3.6237571 -7354.3545
+47442.13225338026 3.6235998 -7355.1421
+47443.13225342776 3.6235602 -7354.1577
+47444.13225347525 3.6233635 -7354.7485
+47445.13225352275 3.6233635 -7353.9609
+47446.13225357025 3.6232452 -7354.9453
+47447.13225361775 3.6231272 -7353.5669
+47448.13225366524 3.6231272 -7354.5513
+47449.13225371274 3.6229699 -7354.5513
+47450.13225376024 3.6228909 -7354.3545
+47451.13225380774 3.6228123 -7354.7485
+47452.13225385523 3.6226153 -7354.3545
+47453.13225390273 3.622576 -7353.9609
+47454.13225395023 3.6224973 -7354.5513
+47455.13225399773 3.622458 -7354.5513
+47456.13225404522 3.622261 -7354.3545
+47457.13225409272 3.6221824 -7353.3706
+47458.13225414022 3.6219854 -7354.9453
+47459.13225418772 3.6219068 -7354.5513
+47460.13225423521 3.6218674 -7354.9453
+47461.13225428271 3.6216705 -7354.1577
+47462.13225433021 3.6217098 -7355.1421
+47463.13225437771 3.6215131 -7354.1577
+47464.1322544252 3.6215131 -7354.3545
+47465.1322544727 3.6213162 -7355.1421
+47466.1322545202 3.6211982 -7354.5513
+47467.1322545677 3.6211588 -7354.1577
+47468.13225461519 3.6210012 -7353.7646
+47469.13225466269 3.6209226 -7354.5513
+47470.13225471019 3.6208439 -7354.7485
+47471.13225475769 3.6207256 -7354.1577
+47472.13225480518 3.6205683 -7353.5669
+47473.13225485268 3.6206076 -7353.5669
+47474.13225490018 3.620332 -7353.9609
+47475.13225494768 3.6203713 -7354.3545
+47476.13225499517 3.6202533 -7354.3545
+47477.13225504267 3.6201351 -7354.3545
+47478.13225509017 3.6200564 -7354.3545
+47479.13225513767 3.6199777 -7353.9609
+47480.13225518516 3.619899 -7353.7646
+47481.13225523266 3.6198201 -7353.5669
+47482.13225528016 3.6195445 -7354.9453
+47483.13225532766 3.6196628 -7353.3706
+47484.13225537515 3.6194265 -7354.9453
+47485.13225542265 3.6192691 -7355.1421
+47486.13225547015 3.6193478 -7355.3384
+47487.13225551764 3.6191115 -7355.5352
+47488.13225556514 3.6190722 -7354.5513
+47489.13225561264 3.6189539 -7354.5513
+47490.13225566014 3.6189539 -7355.3384
+47491.13225570763 3.6187966 -7354.9453
+47492.13225575513 3.618639 -7354.3545
+47493.13225580263 3.6185997 -7354.5513
+47494.13225585013 3.6185603 -7354.1577
+47495.13225589762 3.6184423 -7353.5669
+47496.13225594512 3.618403 -7356.126
+47497.13225599262 3.6182454 -7354.5513
+47498.13225604012 3.618324 -7354.3545
+47499.13225608761 3.6181273 -7354.5513
+47500.13225613511 3.6180091 -7353.7646
+47501.13225618261 3.6180091 -7355.3384
+47502.13225623011 3.6178911 -7353.5669
+47503.1322562776 3.6177731 -7353.9609
+47504.1322563251 3.6176155 -7353.7646
+47505.1322563726 3.6176155 -7354.3545
+47506.1322564201 3.6174581 -7354.5513
+47507.13225646759 3.6174581 -7353.9609
+47508.13225651509 3.6173792 -7354.3545
+47509.13225656259 3.6172218 -7353.9609
+47510.13225661009 3.6171432 -7354.7485
+47511.13225665758 3.6171432 -7354.5513
+47512.13225670508 3.6169856 -7354.5513
+47513.13225675258 3.6168282 -7354.9453
+47514.13225680008 3.6168675 -7354.3545
+47515.13225684757 3.6166706 -7354.1577
+47516.13225689507 3.6165526 -7353.9609
+47517.13225694257 3.6165526 -7354.9453
+47518.13225699007 3.6165526 -7355.1421
+47519.13225703756 3.6163557 -7354.5513
+47520.13225708506 3.6163163 -7353.7646
+47521.13225713256 3.6161194 -7354.9453
+47522.13225718006 3.61608 -7354.3545
+47523.13225722755 3.615962 -7354.5513
+47524.13225727505 3.6158834 -7355.1421
+47525.13225732255 3.6157651 -7353.3706
+47526.13225737005 3.6156864 -7353.9609
+47527.13225741754 3.6155288 -7353.7646
+47528.13225746504 3.6154501 -7354.7485
+47529.13225751254 3.6153715 -7354.3545
+47530.13225756004 3.6152532 -7354.9453
+47531.13225760753 3.6151745 -7353.9609
+47532.13225765503 3.6150565 -7355.5352
+47533.13225770253 3.6150959 -7355.1421
+47534.13225775003 3.6149383 -7354.5513
+47535.13225779752 3.6148202 -7353.5669
+47536.13225784502 3.6147809 -7355.3384
+47537.13225789252 3.6146233 -7354.3545
+47538.13225794001 3.614584 -7354.9453
+47539.13225798751 3.6143479 -7354.3545
+47540.13225803501 3.6143479 -7354.7485
+47541.13225808251 3.6143479 -7354.5513
+47542.13225813 3.614151 -7354.1577
+47543.1322581775 3.6140723 -7354.5513
+47544.132258225 3.614033 -7354.7485
+47545.1322582725 3.6138361 -7355.1421
+47546.13225831999 3.6137574 -7354.9453
+47547.13225836749 3.6137178 -7354.9453
+47548.13225841499 3.6136391 -7353.7646
+47549.13225846249 3.6137178 -7355.1421
+47550.13225850998 3.6135211 -7353.7646
+47551.13225855748 3.6132455 -7354.1577
+47552.13225860498 3.6133242 -7353.5669
+47553.13225865248 3.6132455 -7354.3545
+47554.13225869997 3.6132061 -7353.7646
+47555.13225874747 3.6130092 -7354.3545
+47556.13225879497 3.6129699 -7353.9609
+47557.13225884247 3.6128912 -7354.1577
+47558.13225888996 3.6128125 -7354.5513
+47559.13225893746 3.6126156 -7354.3545
+47560.13225898496 3.6126943 -7353.9609
+47561.13225903246 3.6125369 -7354.3545
+47562.13225907995 3.6124976 -7354.3545
+47563.13225912745 3.6122613 -7354.3545
+47564.13225917495 3.6121826 -7354.3545
+47565.13225922245 3.612222 -7355.5352
+47566.13225926994 3.6121826 -7355.3384
+47567.13225931744 3.6119857 -7354.7485
+47568.13225936494 3.6120644 -7354.7485
+47569.13225941244 3.611907 -7353.9609
+47570.13225945993 3.611907 -7354.9453
+47571.13225950743 3.6117101 -7354.1577
+47572.13225955493 3.6115921 -7355.7324
+47573.13225960243 3.6115921 -7354.3545
+47574.13225964992 3.6115525 -7353.9609
+47575.13225969742 3.6114345 -7353.9609
+47576.13225974492 3.6113164 -7354.7485
+47577.13225979242 3.6112375 -7354.5513
+47578.13225983991 3.6110802 -7353.9609
+47579.13225988741 3.6110802 -7354.7485
+47580.13225993491 3.6108832 -7354.3545
+47581.13225998241 3.6110015 -7354.9453
+47582.1322600299 3.6108439 -7354.7485
+47583.1322600774 3.6106076 -7353.9609
+47584.1322601249 3.6106472 -7354.7485
+47585.1322601724 3.6105289 -7354.7485
+47586.13226021989 3.6104896 -7354.7485
+47587.13226026739 3.6103323 -7354.9453
+47588.13226031489 3.610214 -7353.3706
+47589.13226036238 3.610096 -7354.5513
+47590.13226040988 3.610096 -7354.5513
+47591.13226045738 3.6100171 -7354.3545
+47592.13226050488 3.6099384 -7353.9609
+47593.13226055237 3.6098204 -7354.3545
+47594.13226059987 3.6097021 -7355.5352
+47595.13226064737 3.6096628 -7354.1577
+47596.13226069487 3.6095448 -7354.1577
+47597.13226074236 3.6094267 -7354.9453
+47598.13226078986 3.6093872 -7353.9609
+47599.13226083736 3.6092298 -7354.9453
+47600.13226088486 3.6091905 -7354.1577
+47601.13226093235 3.6091118 -7354.5513
+47602.13226097985 3.6089542 -7353.7646
+47603.13226102735 3.6089149 -7354.3545
+47604.13226107485 3.6088362 -7354.3545
+47605.13226112234 3.6086786 -7354.5513
+47606.13226116984 3.6086392 -7354.5513
+47607.13226121734 3.6084423 -7355.3384
+47608.13226126484 3.6083636 -7354.3545
+47609.13226131233 3.608403 -7354.3545
+47610.13226135983 3.608285 -7354.5513
+47611.13226140733 3.6081274 -7354.9453
+47612.13226145483 3.6080487 -7353.9609
+47613.13226150232 3.60797 -7353.9609
+47614.13226154982 3.6078517 -7354.7485
+47615.13226159732 3.6076944 -7353.7646
+47616.13226164482 3.607655 -7355.3384
+47617.13226169231 3.6075368 -7354.3545
+47618.13226173981 3.6073794 -7354.3545
+47619.13226178731 3.6074188 -7353.9609
+47620.13226183481 3.6073008 -7354.5513
+47621.1322618823 3.6071432 -7354.5513
+47622.1322619298 3.6070251 -7354.9453
+47623.1322619773 3.6069858 -7354.9453
+47624.1322620248 3.6068676 -7354.3545
+47625.13226207229 3.6068676 -7354.1577
+47626.13226211979 3.6066709 -7353.7646
+47627.13226216729 3.6066315 -7353.7646
+47628.13226221479 3.6064739 -7354.3545
+47629.13226226228 3.6063559 -7354.1577
+47630.13226230978 3.6063163 -7354.7485
+47631.13226235728 3.606159 -7354.9453
+47632.13226240478 3.606041 -7354.3545
+47633.13226245227 3.6060014 -7353.7646
+47634.13226249977 3.6059227 -7353.7646
+47635.13226254727 3.6056864 -7354.1577
+47636.13226259477 3.6056471 -7353.3706
+47637.13226264226 3.6056077 -7354.5513
+47638.13226268976 3.6055684 -7354.3545
+47639.13226273726 3.6053321 -7354.5513
+47640.13226278475 3.6053715 -7354.7485
+47641.13226283225 3.6052141 -7354.7485
+47642.13226287975 3.6051748 -7354.3545
+47643.13226292725 3.6050172 -7354.5513
+47644.13226297474 3.6049385 -7353.9609
+47645.13226302224 3.6048205 -7354.7485
+47646.13226306974 3.6048205 -7353.9609
+47647.13226311724 3.6046629 -7354.1577
+47648.13226316473 3.6047022 -7354.7485
+47649.13226321223 3.6046629 -7355.3384
+47650.13226325973 3.6045842 -7354.3545
+47651.13226330723 3.6044266 -7354.3545
+47652.13226335472 3.6043479 -7354.1577
+47653.13226340222 3.604151 -7354.3545
+47654.13226344972 3.6041906 -7355.5352
+47655.13226349722 3.604033 -7354.9453
+47656.13226354471 3.6039937 -7354.9453
+47657.13226359221 3.603915 -7354.3545
+47658.13226363971 3.6038361 -7354.5513
+47659.13226368721 3.6037967 -7354.1577
+47660.1322637347 3.6036394 -7355.3384
+47661.1322637822 3.6036 -7353.9609
+47662.1322638297 3.6035211 -7354.1577
+47663.1322638772 3.6034818 -7355.1421
+47664.13226392469 3.6034818 -7354.7485
+47665.13226397219 3.6033244 -7354.3545
+47666.13226401969 3.6031668 -7354.9453
+47667.13226406719 3.6032062 -7353.9609
+47668.13226411468 3.6031668 -7355.1421
+47669.13226416218 3.6029701 -7354.1577
+47670.13226420968 3.6028519 -7354.9453
+47671.13226425718 3.6028125 -7353.9609
+47672.13226430467 3.6027732 -7354.7485
+47673.13226435217 3.6026552 -7354.7485
+47674.13226439967 3.6026156 -7354.3545
+47675.13226444717 3.6023796 -7353.5669
+47676.13226449466 3.6023006 -7354.7485
+47677.13226454216 3.6022613 -7354.5513
+47678.13226458966 3.6021433 -7354.5513
+47679.13226463716 3.6020646 -7354.9453
+47680.13226468465 3.601907 -7354.7485
+47681.13226473215 3.6018677 -7355.1421
+47682.13226477965 3.6017103 -7354.9453
+47683.13226482715 3.6015921 -7354.5513
+47684.13226487464 3.6015527 -7353.7646
+47685.13226492214 3.6013954 -7354.7485
+47686.13226496964 3.6013558 -7354.5513
+47687.13226501714 3.6012378 -7354.5513
+47688.13226506463 3.6011591 -7355.1421
+47689.13226511213 3.6011198 -7354.3545
+47690.13226515963 3.6009622 -7354.5513
+47691.13226520712 3.6008441 -7353.9609
+47692.13226525462 3.6007652 -7354.5513
+47693.13226530212 3.6005292 -7354.7485
+47694.13226534962 3.6005685 -7354.3545
+47695.13226539711 3.6004899 -7354.1577
+47696.13226544461 3.6003716 -7354.5513
+47697.13226549211 3.6002929 -7354.1577
+47698.13226553961 3.6002142 -7353.9609
+47699.1322655871 3.6002536 -7354.5513
+47700.1322656346 3.6000173 -7354.9453
+47701.1322656821 3.5999386 -7353.5669
+47702.1322657296 3.5998204 -7355.3384
+47703.13226577709 3.5997024 -7354.3545
+47704.13226582459 3.5996237 -7354.5513
+47705.13226587209 3.5995054 -7354.5513
+47706.13226591959 3.599545 -7354.1577
+47707.13226596708 3.5993087 -7353.7646
+47708.13226601458 3.5993481 -7355.1421
+47709.13226606208 3.5991511 -7354.5513
+47710.13226610958 3.5990725 -7354.1577
+47711.13226615707 3.5989544 -7354.3545
+47712.13226620457 3.5987575 -7353.7646
+47713.13226625207 3.5987182 -7355.1421
+47714.13226629957 3.5985999 -7354.1577
+47715.13226634706 3.5985212 -7354.3545
+47716.13226639456 3.5984819 -7354.5513
+47717.13226644206 3.5983245 -7354.9453
+47718.13226648956 3.598285 -7354.3545
+47719.13226653705 3.5981276 -7353.9609
+47720.13226658455 3.5981276 -7354.3545
+47721.13226663205 3.59797 -7355.1421
+47722.13226667955 3.5978127 -7353.7646
+47723.13226672704 3.5978127 -7354.1577
+47724.13226677454 3.597734 -7353.9609
+47725.13226682204 3.5975764 -7354.3545
+47726.13226686954 3.5974977 -7354.3545
+47727.13226691703 3.5974584 -7354.7485
+47728.13226696453 3.597419 -7354.5513
+47729.13226701203 3.5972614 -7353.5669
+47730.13226705953 3.5973008 -7354.3545
+47731.13226710702 3.5972221 -7354.1577
+47732.13226715452 3.5969858 -7354.1577
+47733.13226720202 3.5968285 -7353.5669
+47734.13226724952 3.5968285 -7355.3384
+47735.13226729701 3.5966315 -7354.1577
+47736.13226734451 3.5966709 -7354.3545
+47737.13226739201 3.5966315 -7354.9453
+47738.13226743951 3.5965528 -7354.7485
+47739.132267487 3.5964742 -7353.9609
+47740.1322675345 3.5964346 -7353.5669
+47741.132267582 3.5963559 -7354.9453
+47742.13226762949 3.5961986 -7354.5513
+47743.13226767699 3.5961592 -7354.3545
+47744.13226772449 3.5959229 -7354.9453
+47745.13226777199 3.5960803 -7354.7485
+47746.13226781948 3.595844 -7354.9453
+47747.13226786698 3.5959229 -7353.9609
+47748.13226791448 3.5956867 -7354.7485
+47749.13226796198 3.595608 -7354.5513
+47750.13226800947 3.5954897 -7353.3706
+47751.13226805697 3.5954504 -7354.5513
+47752.13226810447 3.5953717 -7354.3545
+47753.13226815197 3.5952537 -7353.7646
+47754.13226819946 3.5951748 -7354.9453
+47755.13226824696 3.5951355 -7354.1577
+47756.13226829446 3.5950568 -7354.9453
+47757.13226834196 3.5950174 -7353.7646
+47758.13226838945 3.5948205 -7354.1577
+47759.13226843695 3.5947812 -7354.5513
+47760.13226848445 3.5947812 -7353.9609
+47761.13226853195 3.5945842 -7354.3545
+47762.13226857944 3.5945842 -7354.9453
+47763.13226862694 3.5944662 -7354.9453
+47764.13226867444 3.5943482 -7354.7485
+47765.13226872194 3.5941906 -7354.3545
+47766.13226876943 3.5942299 -7353.9609
+47767.13226881693 3.5941119 -7353.7646
+47768.13226886443 3.5939937 -7354.3545
+47769.13226891193 3.5939543 -7354.5513
+47770.13226895942 3.5939543 -7354.3545
+47771.13226900692 3.5938363 -7355.1421
+47772.13226905442 3.5936787 -7354.1577
+47773.13226910192 3.5936394 -7354.1577
+47774.13226914941 3.5935214 -7354.9453
+47775.13226919691 3.5935214 -7354.7485
+47776.13226924441 3.5934033 -7354.9453
+47777.13226929191 3.5932851 -7354.5513
+47778.1322693394 3.5930884 -7354.3545
+47779.1322693869 3.5931277 -7354.7485
+47780.1322694344 3.5929701 -7354.7485
+47781.1322694819 3.5930488 -7354.3545
+47782.13226952939 3.5928521 -7354.5513
+47783.13226957689 3.5927734 -7354.9453
+47784.13226962439 3.5926158 -7354.3545
+47785.13226967189 3.5925765 -7354.1577
+47786.13226971938 3.5924189 -7354.3545
+47787.13226976688 3.5923796 -7354.3545
+47788.13226981438 3.5922616 -7353.9609
+47789.13226986188 3.5922222 -7354.7485
+47790.13226990937 3.5920253 -7354.1577
+47791.13226995687 3.5920253 -7353.9609
+47792.13227000437 3.5918283 -7354.7485
+47793.13227005186 3.591671 -7354.5513
+47794.13227009936 3.5916317 -7353.9609
+47795.13227014686 3.591553 -7353.9609
+47796.13227019436 3.5913167 -7355.1421
+47797.13227024185 3.5913167 -7354.1577
+47798.13227028935 3.5911984 -7355.1421
+47799.13227033685 3.5910804 -7353.5669
+47800.13227038435 3.5909624 -7354.3545
+47801.13227043184 3.5908835 -7354.3545
+47802.13227047934 3.5908442 -7354.5513
+47803.13227052684 3.5906081 -7353.9609
+47804.13227057434 3.5906081 -7354.3545
+47805.13227062183 3.5904899 -7353.9609
+47806.13227066933 3.5904112 -7355.1421
+47807.13227071683 3.5902536 -7354.5513
+47808.08427076205 3.5901749 -7354.7485
+47808.08627076214 3.5901749 -7354.7485
+47808.13627076452 3.6785202 0.0
+47809.13627081201 3.680213 0.0
+47810.13627085951 3.6811185 0.0
+47811.13627090701 3.6819453 0.0
+47812.13627095451 3.6827326 0.0
+47813.136271002 3.6833231 0.0
+47814.1362710495 3.6839926 0.0
+47815.136271097 3.6845043 0.0
+47816.1362711445 3.6850162 0.0
+47817.13627119199 3.6854885 0.0
+47818.13627123949 3.6861184 0.0
+47818.15827124054 3.6860397 0.0
+47824.69827155117 3.6875751 -59.910999
+47829.08627175959 3.6802523 -119.15302
+47833.44227196649 3.6914728 -499.99451
+47837.78427217272 3.6911185 -16.217554
+47842.17427238123 3.6893861 -118.36574
+47846.52427258785 3.6817484 -166.97963
+47850.89027279522 3.6781659 -287.03818
+47855.28027300374 3.6774571 -623.00531
+47859.65427321149 3.6848192 -1505.9279
+47864.01627341867 3.6940317 -1055.2162
+47868.36627362529 3.6951342 -577.9342
+47872.75427383371 3.6920633 -82.15136
+47877.13627404184 3.6788745 -1727.3473
+47881.42227424541 3.6812761 -1642.9127
+47885.79027445288 3.6775753 -1420.5092
+47890.15627466026 3.690134 -878.67108
+47894.52427486773 3.676276 -1844.4536
+47898.90827507596 3.6955278 -201.81628
+47903.27427528333 3.6827326 -1440.5846
+47906.55627543922 3.6811185 -1549.8181
+47910.94027564744 3.6935594 -469.48785
+47914.21427580295 3.6934018 -381.90411
+47917.50627595931 3.6912758 -672.20966
+47920.80627611605 3.6912365 -589.34961
+47924.15227627498 3.6800163 -1614.3741
+47927.53827643581 3.6788745 -1652.7535
+47930.90027659549 3.6850948 -1205.9783
+47934.31427675765 3.6771421 -1833.4318
+47937.79827692313 3.6930082 -524.79352
+47941.40027709422 3.6814334 -1513.8005
+47944.96827726369 3.6941104 -465.35468
+47948.64627743838 3.6795831 -1659.6421
+47952.25027760956 3.6910002 -727.51532
+47956.13427779404 3.6808822 -1545.8817
+47960.21027798764 3.6941893 -458.6629
+47964.32227818295 3.6947403 -415.36307
+47969.460278427 3.6926539 -601.94586
+47974.33627865859 3.6789532 -1733.6454
+47980.45227894909 3.6810791 -1569.4999
+47985.62827919493 3.6919057 -671.81604
+47991.97227949626 3.6883233 -979.44153
+47999.93227987434 3.6764336 -1948.9636
+48009.84628034523 3.6882837 -980.81927
+48022.30428093695 3.6950159 -433.47028
+48037.9082816781 3.6858823 -1198.1056
+48057.44628260611 3.6770635 -1923.3773
+48082.01828377321 3.6787169 -1769.8599
+48112.82228523633 3.6879294 -1006.2087
+48151.54028707533 3.6940317 -499.20724
+48200.22628938779 3.6949372 -418.31537
+48261.47029229673 3.6901736 -792.8587
+48338.51229595602 3.6844649 -1228.4154
+48435.39430055767 3.6795831 -1570.0902
+48557.3003063479 3.6784415 -1567.5316
+48710.67431363277 3.6817091 -1213.0636
+48903.71032280149 3.6951735 -81.36409
+49146.5383343352 3.6892288 -495.46771
+49452.15634885128 3.6780083 -1213.0636
+49836.91836712649 3.6920633 10.746415
+50322.12239017244 3.6763549 -1118.5913
+50933.10641919263 3.6884019 -174.45866
+50933.17041919567 3.6906459 0.0
+50934.17041924316 3.6906459 0.0
+50935.17041929066 3.6905673 0.0
+50936.17041933816 3.6905673 0.0
+50937.17041938566 3.6906459 0.0
+50938.17041943315 3.6906459 0.0
+50939.17041948065 3.6906459 0.0
+50940.17041952815 3.6906066 0.0
+50941.17041957565 3.6905673 0.0
+50942.17041962314 3.6905673 0.0
+50943.17041967064 3.6906853 0.0
+50944.17041971814 3.6906066 0.0
+50945.17041976564 3.6906459 0.0
+50946.17041981313 3.6907246 0.0
+50947.17041986063 3.6906853 0.0
+50948.17041990813 3.6906853 0.0
+50949.17041995563 3.6907246 0.0
+50950.17042000312 3.6906853 0.0
+50951.17042005062 3.6905279 0.0
+50952.17042009812 3.6906853 0.0
+50953.17042014562 3.6906853 0.0
+50954.17042019311 3.6908035 0.0
+50955.17042024061 3.6906459 0.0
+50956.17042028811 3.6908429 0.0
+50957.17042033561 3.690764 0.0
+50958.1704203831 3.6908822 0.0
+50959.1704204306 3.6905673 0.0
+50960.1704204781 3.690764 0.0
+50961.1704205256 3.6906853 0.0
+50962.17042057309 3.6907246 0.0
+50963.17042062059 3.6908035 0.0
+50964.17042066809 3.690764 0.0
+50965.17042071559 3.6906853 0.0
+50966.17042076308 3.6906853 0.0
+50967.17042081058 3.690764 0.0
+50968.17042085808 3.690764 0.0
+50969.17042090558 3.6908035 0.0
+50970.17042095307 3.6908035 0.0
+50971.17042100057 3.6908822 0.0
+50972.17042104807 3.6909215 0.0
+50973.17042109557 3.6908429 0.0
+50974.17042114306 3.690764 0.0
+50975.17042119056 3.690764 0.0
+50976.17042123806 3.6908822 0.0
+50977.17042128555 3.6908429 0.0
+50978.17042133305 3.690764 0.0
+50979.17042138055 3.6908429 0.0
+50980.17042142805 3.6908035 0.0
+50981.17042147554 3.6908035 0.0
+50982.17042152304 3.6908429 0.0
+50983.17042157054 3.6908822 0.0
+50984.17042161804 3.6908429 0.0
+50985.17042166553 3.6909215 0.0
+50986.17042171303 3.6908429 0.0
+50987.17042176053 3.6909215 0.0
+50988.17042180803 3.6908035 0.0
+50989.17042185552 3.6909215 0.0
+50990.17042190302 3.6908822 0.0
+50991.17042195052 3.6908822 0.0
+50992.17042199802 3.6909609 0.0
+50993.17042204551 3.6908035 0.0
+50994.17042209301 3.6908822 0.0
+50995.17042214051 3.6909609 0.0
+50996.17042218801 3.6909609 0.0
+50997.1704222355 3.6909609 0.0
+50998.170422283 3.6909609 0.0
+50999.1704223305 3.6908035 0.0
+51000.170422378 3.6908429 0.0
+51001.17042242549 3.6909609 0.0
+51002.17042247299 3.6910002 0.0
+51003.17042252049 3.6909609 0.0
+51004.17042256799 3.6909215 0.0
+51005.17042261548 3.6909609 0.0
+51006.17042266298 3.6908822 0.0
+51007.17042271048 3.6908429 0.0
+51008.17042275798 3.6909609 0.0
+51009.17042280547 3.6910396 0.0
+51010.17042285297 3.6910002 0.0
+51011.17042290047 3.6909609 0.0
+51012.17042294797 3.6910002 0.0
+51013.17042299546 3.6910002 0.0
+51014.17042304296 3.6910002 0.0
+51015.17042309046 3.6910396 0.0
+51016.17042313796 3.6910002 0.0
+51017.17042318545 3.6910002 0.0
+51018.17042323295 3.6910002 0.0
+51019.17042328045 3.6910002 0.0
+51020.17042332795 3.6910002 0.0
+51021.17042337544 3.6909609 0.0
+51022.17042342294 3.6910002 0.0
+51023.17042347044 3.6910396 0.0
+51024.17042351794 3.6910002 0.0
+51025.17042356543 3.6910002 0.0
+51026.17042361293 3.6911185 0.0
+51027.17042366043 3.6909215 0.0
+51028.17042370792 3.6910396 0.0
+51029.17042375542 3.6909609 0.0
+51030.17042380292 3.6910002 0.0
+51031.17042385042 3.6910396 0.0
+51032.17042389791 3.6910396 0.0
+51033.17042394541 3.6910002 0.0
+51034.17042399291 3.6910396 0.0
+51035.17042404041 3.6910791 0.0
+51036.1704240879 3.6910396 0.0
+51037.1704241354 3.6910002 0.0
+51038.1704241829 3.6910396 0.0
+51039.1704242304 3.6909609 0.0
+51040.17042427789 3.6911185 0.0
+51041.17042432539 3.6910396 0.0
+51042.17042437289 3.6910396 0.0
+51043.17042442039 3.6910002 0.0
+51044.17042446788 3.6910002 0.0
+51045.17042451538 3.6910791 0.0
+51046.17042456288 3.6910002 0.0
+51047.17042461038 3.6910791 0.0
+51048.17042465787 3.6910396 0.0
+51049.17042470537 3.6910791 0.0
+51050.17042475287 3.6910396 0.0
+51051.17042480037 3.6911185 0.0
+51052.17042484786 3.6911578 0.0
+51053.17042489536 3.6911578 0.0
+51054.17042494286 3.6911185 0.0
+51055.17042499036 3.6911578 0.0
+51056.17042503785 3.6910791 0.0
+51057.17042508535 3.6911972 0.0
+51058.17042513285 3.6910791 0.0
+51059.17042518035 3.6910396 0.0
+51060.17042522784 3.6910791 0.0
+51061.17042527534 3.6911185 0.0
+51062.17042532284 3.6911578 0.0
+51063.17042537034 3.6911578 0.0
+51064.17042541783 3.6910791 0.0
+51065.17042546533 3.6911972 0.0
+51066.17042551283 3.6911972 0.0
+51067.17042556033 3.6911185 0.0
+51068.17042560782 3.6911185 0.0
+51069.17042565532 3.6911578 0.0
+51070.17042570282 3.6911578 0.0
+51071.17042575032 3.6912365 0.0
+51072.17042579781 3.6911578 0.0
+51073.17042584531 3.6911578 0.0
+51074.17042589281 3.6910791 0.0
+51075.17042594031 3.6911578 0.0
+51076.1704259878 3.6911578 0.0
+51077.1704260353 3.6911972 0.0
+51078.1704260828 3.6911972 0.0
+51079.17042613029 3.6911185 0.0
+51080.17042617779 3.6911972 0.0
+51081.17042622529 3.6911578 0.0
+51082.17042627279 3.6911972 0.0
+51083.17042632028 3.6912365 0.0
+51084.17042636778 3.6912758 0.0
+51085.17042641528 3.6911578 0.0
+51086.17042646278 3.6911972 0.0
+51087.17042651027 3.6911972 0.0
+51088.17042655777 3.6911972 0.0
+51089.17042660527 3.6912365 0.0
+51090.17042665277 3.6912365 0.0
+51091.17042670026 3.6911972 0.0
+51092.17042674776 3.6912365 0.0
+51093.17042679526 3.6911185 0.0
+51094.17042684276 3.6913152 0.0
+51095.17042689025 3.6911972 0.0
+51096.17042693775 3.6911972 0.0
+51097.17042698525 3.6912365 0.0
+51098.17042703275 3.6913152 0.0
+51099.17042708024 3.6912758 0.0
+51100.17042712774 3.6911972 0.0
+51101.17042717524 3.6913152 0.0
+51102.17042722274 3.6912758 0.0
+51103.17042727023 3.6912758 0.0
+51104.17042731773 3.6912758 0.0
+51105.17042736523 3.6914728 0.0
+51106.17042741273 3.6912365 0.0
+51107.17042746022 3.6912758 0.0
+51108.17042750772 3.6912365 0.0
+51109.17042755522 3.6911972 0.0
+51110.17042760272 3.6912365 0.0
+51111.17042765021 3.6913545 0.0
+51112.17042769771 3.6912365 0.0
+51113.17042774521 3.6912758 0.0
+51114.17042779271 3.6912758 0.0
+51115.1704278402 3.6913545 0.0
+51116.1704278877 3.6912365 0.0
+51117.1704279352 3.6912365 0.0
+51118.1704279827 3.6913152 0.0
+51119.17042803019 3.6911972 0.0
+51120.17042807769 3.6913152 0.0
+51121.17042812519 3.6912758 0.0
+51122.17042817269 3.6913152 0.0
+51123.17042822018 3.6913152 0.0
+51124.17042826768 3.6912758 0.0
+51125.17042831518 3.6912758 0.0
+51126.17042836268 3.6912758 0.0
+51127.17042841017 3.6913545 0.0
+51128.17042845767 3.6913152 0.0
+51129.17042850517 3.6912365 0.0
+51130.17042855266 3.6913152 0.0
+51131.17042860016 3.6912758 0.0
+51132.17042864766 3.6912365 0.0
+51133.17042869516 3.6913545 0.0
+51134.17042874265 3.6913152 0.0
+51135.17042879015 3.6913941 0.0
+51136.17042883765 3.6913152 0.0
+51137.17042888515 3.6913545 0.0
+51138.17042893264 3.6913152 0.0
+51139.17042898014 3.6913545 0.0
+51140.17042902764 3.6913941 0.0
+51141.17042907514 3.6912758 0.0
+51142.17042912263 3.6913545 0.0
+51143.17042917013 3.6913152 0.0
+51144.17042921763 3.6912365 0.0
+51145.17042926513 3.6914334 0.0
+51146.17042931262 3.6913152 0.0
+51147.17042936012 3.6913152 0.0
+51148.17042940762 3.6913545 0.0
+51149.17042945512 3.6913545 0.0
+51150.17042950261 3.6913545 0.0
+51151.17042955011 3.6913941 0.0
+51152.17042959761 3.6913545 0.0
+51153.17042964511 3.6913941 0.0
+51154.1704296926 3.6912758 0.0
+51155.1704297401 3.6913545 0.0
+51156.1704297876 3.6913545 0.0
+51157.1704298351 3.6912758 0.0
+51158.17042988259 3.6914334 0.0
+51159.17042993009 3.6914334 0.0
+51160.17042997759 3.6912758 0.0
+51161.17043002509 3.6914334 0.0
+51162.17043007258 3.6913941 0.0
+51163.17043012008 3.6914334 0.0
+51164.17043016758 3.6913545 0.0
+51165.17043021508 3.6914334 0.0
+51166.17043026257 3.6913941 0.0
+51167.17043031007 3.6914728 0.0
+51168.17043035757 3.6913152 0.0
+51169.17043040507 3.6913545 0.0
+51170.17043045256 3.6914334 0.0
+51171.17043050006 3.6913941 0.0
+51172.17043054756 3.6914334 0.0
+51173.17043059506 3.6913152 0.0
+51174.17043064255 3.6913545 0.0
+51175.17043069005 3.6914334 0.0
+51176.17043073755 3.6914728 0.0
+51177.17043078505 3.6913941 0.0
+51178.17043083254 3.6913941 0.0
+51179.17043088004 3.6913545 0.0
+51180.17043092754 3.6915121 0.0
+51181.17043097503 3.6914334 0.0
+51182.17043102253 3.6913941 0.0
+51183.17043107003 3.6913545 0.0
+51184.17043111753 3.6914334 0.0
+51185.17043116502 3.6914334 0.0
+51186.17043121252 3.6914728 0.0
+51187.17043126002 3.6913545 0.0
+51188.17043130752 3.6914728 0.0
+51189.17043135501 3.6913941 0.0
+51190.17043140251 3.6915121 0.0
+51191.17043145001 3.6913941 0.0
+51192.17043149751 3.6914334 0.0
+51193.170431545 3.6913941 0.0
+51194.1704315925 3.6913545 0.0
+51195.17043164 3.6914334 0.0
+51196.1704316875 3.6914728 0.0
+51197.17043173499 3.6914334 0.0
+51198.17043178249 3.6914334 0.0
+51199.17043182999 3.6915121 0.0
+51200.17043187749 3.6914334 0.0
+51201.17043192498 3.6914334 0.0
+51202.17043197248 3.6914334 0.0
+51203.17043201998 3.6914728 0.0
+51204.17043206748 3.6913941 0.0
+51205.17043211497 3.6915514 0.0
+51206.17043216247 3.6915121 0.0
+51207.17043220997 3.6914728 0.0
+51208.17043225747 3.6915121 0.0
+51209.17043230496 3.6915121 0.0
+51210.17043235246 3.6914728 0.0
+51211.17043239996 3.6913545 0.0
+51212.17043244746 3.6914334 0.0
+51213.17043249495 3.6913941 0.0
+51214.17043254245 3.6914728 0.0
+51215.17043258995 3.6915121 0.0
+51216.17043263745 3.6914728 0.0
+51217.17043268494 3.6914334 0.0
+51218.17043273244 3.6915908 0.0
+51219.17043277994 3.6915121 0.0
+51220.17043282744 3.6915908 0.0
+51221.17043287493 3.6915908 0.0
+51222.17043292243 3.6915121 0.0
+51223.17043296993 3.6914728 0.0
+51224.17043301743 3.6914728 0.0
+51225.17043306492 3.6915121 0.0
+51226.17043311242 3.6914334 0.0
+51227.17043315992 3.6915514 0.0
+51228.17043320742 3.6916301 0.0
+51229.17043325491 3.6914728 0.0
+51230.17043330241 3.6914728 0.0
+51231.17043334991 3.6915121 0.0
+51232.1704333974 3.6915121 0.0
+51233.1704334449 3.6914728 0.0
+51234.1704334924 3.6915121 0.0
+51235.1704335399 3.6914728 0.0
+51236.17043358739 3.6915121 0.0
+51237.17043363489 3.6916301 0.0
+51238.17043368239 3.6915121 0.0
+51239.17043372989 3.6914334 0.0
+51240.17043377738 3.6915514 0.0
+51241.17043382488 3.6914728 0.0
+51242.17043387238 3.6914728 0.0
+51243.17043391988 3.6915514 0.0
+51244.17043396737 3.6914728 0.0
+51245.17043401487 3.6914728 0.0
+51246.17043406237 3.6915514 0.0
+51247.17043410987 3.6914728 0.0
+51248.17043415736 3.6915121 0.0
+51249.17043420486 3.6916301 0.0
+51250.17043425236 3.6914334 0.0
+51251.17043429986 3.6915908 0.0
+51252.17043434735 3.6914728 0.0
+51253.17043439485 3.6915514 0.0
+51254.17043444235 3.6915908 0.0
+51255.17043448985 3.6915908 0.0
+51256.17043453734 3.6916301 0.0
+51257.17043458484 3.6915908 0.0
+51258.17043463234 3.6915908 0.0
+51259.17043467984 3.6915908 0.0
+51260.17043472733 3.6915514 0.0
+51261.17043477483 3.6916301 0.0
+51262.17043482233 3.6915514 0.0
+51263.17043486983 3.6916301 0.0
+51264.17043491732 3.6915514 0.0
+51265.17043496482 3.6915908 0.0
+51266.17043501232 3.6916301 0.0
+51267.17043505982 3.6916301 0.0
+51268.17043510731 3.6915514 0.0
+51269.17043515481 3.6916301 0.0
+51270.17043520231 3.6915514 0.0
+51271.17043524981 3.6915514 0.0
+51272.1704352973 3.6915908 0.0
+51273.1704353448 3.6915908 0.0
+51274.1704353923 3.6916695 0.0
+51275.1704354398 3.6916301 0.0
+51276.17043548729 3.6916301 0.0
+51277.17043553479 3.691709 0.0
+51278.17043558229 3.6916301 0.0
+51279.17043562979 3.6915514 0.0
+51280.17043567728 3.6915514 0.0
+51281.17043572478 3.6915908 0.0
+51282.17043577228 3.6916301 0.0
+51283.17043581977 3.6915908 0.0
+51284.17043586727 3.6916301 0.0
+51285.17043591477 3.6915514 0.0
+51286.17043596227 3.6916695 0.0
+51287.17043600976 3.6915908 0.0
+51288.17043605726 3.6916695 0.0
+51289.17043610476 3.6916301 0.0
+51290.17043615226 3.6916301 0.0
+51291.17043619975 3.6916301 0.0
+51292.17043624725 3.6915908 0.0
+51293.17043629475 3.6915514 0.0
+51294.17043634225 3.6915908 0.0
+51295.17043638974 3.6916695 0.0
+51296.17043643724 3.6917484 0.0
+51297.17043648474 3.6916301 0.0
+51298.17043653224 3.6915514 0.0
+51299.17043657973 3.6916301 0.0
+51300.17043662723 3.6915908 0.0
+51301.17043667473 3.6915908 0.0
+51302.17043672223 3.6916301 0.0
+51303.17043676972 3.6915514 0.0
+51304.17043681722 3.691709 0.0
+51305.17043686472 3.6915908 0.0
+51306.17043691222 3.6915514 0.0
+51307.17043695971 3.6915908 0.0
+51308.17043700721 3.691709 0.0
+51309.17043705471 3.6916695 0.0
+51310.17043710221 3.6916301 0.0
+51311.1704371497 3.6916301 0.0
+51312.1704371972 3.6915908 0.0
+51313.1704372447 3.6916301 0.0
+51314.1704372922 3.6917484 0.0
+51315.17043733969 3.6916301 0.0
+51316.17043738719 3.691709 0.0
+51317.17043743469 3.6917484 0.0
+51318.17043748219 3.6916695 0.0
+51319.17043752968 3.691709 0.0
+51320.17043757718 3.6915908 0.0
+51321.17043762468 3.6915908 0.0
+51322.17043767218 3.6915908 0.0
+51323.17043771967 3.6916695 0.0
+51324.17043776717 3.691709 0.0
+51325.17043781467 3.691709 0.0
+51326.17043786217 3.6917877 0.0
+51327.17043790966 3.6916301 0.0
+51328.17043795716 3.6916301 0.0
+51329.17043800466 3.691709 0.0
+51330.17043805216 3.6916301 0.0
+51331.17043809965 3.6917877 0.0
+51332.17043814715 3.6916695 0.0
+51333.17043819465 3.6916301 0.0
+51334.17043824214 3.691709 0.0
+51335.17043828964 3.6915908 0.0
+51336.17043833714 3.6916695 0.0
+51337.17043838464 3.6916301 0.0
+51338.17043843213 3.6916301 0.0
+51339.17043847963 3.6916301 0.0
+51340.17043852713 3.6916695 0.0
+51341.17043857463 3.691709 0.0
+51342.17043862212 3.6916301 0.0
+51343.17043866962 3.691709 0.0
+51344.17043871712 3.691709 0.0
+51345.17043876462 3.6916695 0.0
+51346.17043881211 3.6916695 0.0
+51347.17043885961 3.6916301 0.0
+51348.17043890711 3.691709 0.0
+51349.17043895461 3.6916695 0.0
+51350.1704390021 3.691709 0.0
+51351.1704390496 3.691709 0.0
+51352.1704390971 3.6916301 0.0
+51353.1704391446 3.691709 0.0
+51354.17043919209 3.691709 0.0
+51355.17043923959 3.691709 0.0
+51356.17043928709 3.691709 0.0
+51357.17043933459 3.6917877 0.0
+51358.17043938208 3.6916301 0.0
+51359.17043942958 3.6917877 0.0
+51360.17043947708 3.6917484 0.0
+51361.17043952458 3.6916695 0.0
+51362.17043957207 3.6917484 0.0
+51363.17043961957 3.6918271 0.0
+51364.17043966707 3.6917877 0.0
+51365.17043971457 3.6916301 0.0
+51366.17043976206 3.6917484 0.0
+51367.17043980956 3.6915908 0.0
+51368.17043985706 3.6918271 0.0
+51369.17043990456 3.691709 0.0
+51370.17043995205 3.6917877 0.0
+51371.17043999955 3.6917484 0.0
+51372.17044004705 3.6917484 0.0
+51373.17044009455 3.6917877 0.0
+51374.17044014204 3.691709 0.0
+51375.17044018954 3.6916695 0.0
+51376.17044023704 3.6917484 0.0
+51377.17044028454 3.6916695 0.0
+51378.17044033203 3.6917877 0.0
+51379.17044037953 3.691709 0.0
+51380.17044042703 3.6918271 0.0
+51381.17044047453 3.6917877 0.0
+51382.17044052202 3.691709 0.0
+51383.17044056952 3.6917877 0.0
+51384.17044061702 3.6917484 0.0
+51385.17044066451 3.6917877 0.0
+51386.17044071201 3.6917484 0.0
+51387.17044075951 3.6918271 0.0
+51388.17044080701 3.6917877 0.0
+51389.1704408545 3.691709 0.0
+51390.170440902 3.6917877 0.0
+51391.1704409495 3.6917877 0.0
+51392.170440997 3.6918271 0.0
+51393.17044104449 3.6917877 0.0
+51394.17044109199 3.6917484 0.0
+51395.17044113949 3.6918271 0.0
+51396.17044118699 3.691709 0.0
+51397.17044123448 3.6917484 0.0
+51398.17044128198 3.6918664 0.0
+51399.17044132948 3.6918271 0.0
+51400.17044137698 3.6918271 0.0
+51401.17044142447 3.6917484 0.0
+51402.17044147197 3.6917484 0.0
+51403.17044151947 3.6917877 0.0
+51404.17044156697 3.6917877 0.0
+51405.17044161446 3.6917484 0.0
+51406.17044166196 3.6917484 0.0
+51407.17044170946 3.6917484 0.0
+51408.17044175696 3.6917484 0.0
+51409.17044180445 3.6918271 0.0
+51410.17044185195 3.6916695 0.0
+51411.17044189945 3.6918271 0.0
+51412.17044194695 3.6917877 0.0
+51413.17044199444 3.6918271 0.0
+51414.17044204194 3.6917484 0.0
+51415.17044208944 3.6917877 0.0
+51416.17044213694 3.6918664 0.0
+51417.17044218443 3.6916695 0.0
+51418.17044223193 3.6918271 0.0
+51419.17044227943 3.6919057 0.0
+51420.17044232693 3.6918271 0.0
+51421.17044237442 3.6918271 0.0
+51422.17044242192 3.6917484 0.0
+51423.17044246942 3.6917877 0.0
+51424.17044251692 3.6917877 0.0
+51425.17044256441 3.6917877 0.0
+51426.17044261191 3.6918664 0.0
+51427.17044265941 3.6919057 0.0
+51428.17044270691 3.6918664 0.0
+51429.1704427544 3.6918664 0.0
+51430.1704428019 3.6918664 0.0
+51431.1704428494 3.6919451 0.0
+51432.1704428969 3.6919057 0.0
+51433.17044294439 3.6917877 0.0
+51434.17044299189 3.6917484 0.0
+51435.17044303939 3.6918271 0.0
+51436.17044308688 3.6918664 0.0
+51437.17044313438 3.6917877 0.0
+51438.17044318188 3.6918271 0.0
+51439.17044322938 3.6918271 0.0
+51440.17044327687 3.6918271 0.0
+51441.17044332437 3.6917877 0.0
+51442.17044337187 3.6918664 0.0
+51443.17044341937 3.6918664 0.0
+51444.17044346686 3.6917877 0.0
+51445.17044351436 3.6918271 0.0
+51446.17044356186 3.6919057 0.0
+51447.17044360936 3.6917877 0.0
+51448.17044365685 3.6919844 0.0
+51449.17044370435 3.6918271 0.0
+51450.17044375185 3.6918664 0.0
+51451.17044379935 3.6917877 0.0
+51452.17044384684 3.6917484 0.0
+51453.17044389434 3.6918271 0.0
+51454.17044394184 3.6917877 0.0
+51455.17044398934 3.6917877 0.0
+51456.17044403683 3.6918271 0.0
+51457.17044408433 3.6919057 0.0
+51458.17044413183 3.6919451 0.0
+51459.17044417933 3.6918271 0.0
+51460.17044422682 3.6919057 0.0
+51461.17044427432 3.691709 0.0
+51462.17044432182 3.6918271 0.0
+51463.17044436932 3.6919057 0.0
+51464.17044441681 3.6918271 0.0
+51465.17044446431 3.6919057 0.0
+51466.17044451181 3.6917484 0.0
+51467.17044455931 3.6919057 0.0
+51468.1704446068 3.6917877 0.0
+51469.1704446543 3.6919451 0.0
+51470.1704447018 3.6918664 0.0
+51471.1704447493 3.6918271 0.0
+51472.17044479679 3.6917484 0.0
+51473.17044484429 3.6917484 0.0
+51474.17044489179 3.6918664 0.0
+51475.17044493929 3.6918664 0.0
+51476.17044498678 3.6917877 0.0
+51477.17044503428 3.6918271 0.0
+51478.17044508178 3.6919451 0.0
+51479.17044512928 3.6919451 0.0
+51480.17044517677 3.6919057 0.0
+51481.17044522427 3.6919057 0.0
+51482.17044527177 3.6918664 0.0
+51483.17044531927 3.6918664 0.0
+51484.17044536676 3.6918664 0.0
+51485.17044541426 3.6918271 0.0
+51486.17044546176 3.6919057 0.0
+51487.17044550925 3.6919451 0.0
+51488.17044555675 3.6919057 0.0
+51489.17044560425 3.6918664 0.0
+51490.17044565175 3.6918664 0.0
+51491.17044569924 3.6918664 0.0
+51492.17044574674 3.6917484 0.0
+51493.17044579424 3.6919057 0.0
+51494.17044584174 3.6919844 0.0
+51495.17044588923 3.6919057 0.0
+51496.17044593673 3.6919451 0.0
+51497.17044598423 3.6919057 0.0
+51498.17044603173 3.6919057 0.0
+51499.17044607922 3.6919844 0.0
+51500.17044612672 3.6919451 0.0
+51501.17044617422 3.6918271 0.0
+51502.17044622172 3.6919844 0.0
+51503.17044626921 3.6919057 0.0
+51504.17044631671 3.6919844 0.0
+51505.17044636421 3.6919451 0.0
+51506.17044641171 3.6919057 0.0
+51507.1704464592 3.6919451 0.0
+51508.1704465067 3.6919057 0.0
+51509.1704465542 3.6918271 0.0
+51510.1704466017 3.6919057 0.0
+51511.17044664919 3.6919451 0.0
+51512.17044669669 3.6919451 0.0
+51513.17044674419 3.6918664 0.0
+51514.17044679169 3.6918664 0.0
+51515.17044683918 3.6918664 0.0
+51516.17044688668 3.6919057 0.0
+51517.17044693418 3.6919057 0.0
+51518.17044698168 3.6918664 0.0
+51519.17044702917 3.6918664 0.0
+51520.17044707667 3.6919057 0.0
+51521.17044712417 3.6919844 0.0
+51522.17044717167 3.6919057 0.0
+51523.17044721916 3.6919057 0.0
+51524.17044726666 3.692024 0.0
+51525.17044731416 3.6919057 0.0
+51526.17044736166 3.6919057 0.0
+51527.17044740915 3.6919451 0.0
+51528.17044745665 3.6919057 0.0
+51529.17044750415 3.6919451 0.0
+51530.17044755165 3.6919451 0.0
+51531.17044759914 3.6919057 0.0
+51532.17044764664 3.6919451 0.0
+51533.16644769395 3.7837155 7355.7695
+51533.16844769404 3.7839518 7354.7856
+51534.16844774154 3.7862744 7357.3442
+51535.16844778904 3.7872193 7356.9502
+51536.16844783654 3.7879674 7356.7539
+51537.16844788403 3.788558 7356.7539
+51538.16844793153 3.7892272 7356.3604
+51539.16844797903 3.7898965 7356.5571
+51540.16844802652 3.7904084 7356.3604
+51541.16844807402 3.7909596 7356.3604
+51542.16844812152 3.7915106 7357.3442
+51543.16844816902 3.7919044 7356.3604
+51544.16844821651 3.7923374 7356.3604
+51545.16844826401 3.7928886 7356.7539
+51546.16844831151 3.7932823 7356.7539
+51547.16844835901 3.7937155 7357.1475
+51548.1684484065 3.7940698 7356.9502
+51549.168448454 3.7945027 7357.3442
+51550.1684485015 3.7949753 7356.1636
+51551.168448549 3.7952902 7356.9502
+51552.16844859649 3.7956445 7356.3604
+51553.16844864399 3.7960775 7357.541
+51554.16844869149 3.7962351 7356.7539
+51555.16844873899 3.7967467 7356.5571
+51556.16844878648 3.7970223 7357.3442
+51557.16844883398 3.7974162 7356.7539
+51558.16844888148 3.7976129 7356.7539
+51559.16844892898 3.7979672 7356.3604
+51560.16844897647 3.7982821 7355.7695
+51561.16844902397 3.7985184 7355.9663
+51562.16844907147 3.798912 7357.3442
+51563.16844911897 3.7991877 7356.5571
+51564.16844916646 3.7994239 7356.7539
+51565.16844921396 3.7996602 7356.5571
+51566.16844926146 3.7998569 7356.9502
+51567.16844930896 3.8002114 7356.3604
+51568.16844935645 3.8004081 7356.5571
+51569.16844940395 3.8006837 7356.9502
+51570.16844945145 3.8009987 7356.3604
+51571.16844949895 3.8011563 7356.3604
+51572.16844954644 3.8014712 7356.1636
+51573.16844959394 3.8017073 7356.5571
+51574.16844964144 3.8019042 7356.3604
+51575.16844968894 3.8021798 7357.1475
+51576.16844973643 3.8024161 7357.1475
+51577.16844978393 3.8026524 7356.3604
+51578.16844983143 3.8028097 7355.7695
+51579.16844987893 3.803046 7356.5571
+51580.16844992642 3.8032823 7356.7539
+51581.16844997392 3.8036366 7356.1636
+51582.16845002142 3.8036759 7356.5571
+51583.16845006892 3.8038332 7356.3604
+51584.16845011641 3.8041089 7356.7539
+51585.16845016391 3.8043058 7355.9663
+51586.16845021141 3.8045027 7356.3604
+51587.16845025891 3.8046207 7355.9663
+51588.1684503064 3.804975 7356.9502
+51589.1684503539 3.8051326 7357.3442
+51590.1684504014 3.80529 7357.3442
+51591.16845044889 3.8055263 7356.5571
+51592.16845049639 3.8056443 7356.1636
+51593.16845054389 3.8058019 7356.5571
+51594.16845059139 3.8060775 7356.9502
+51595.16845063888 3.8063531 7357.1475
+51596.16845068638 3.8064318 7356.3604
+51597.16845073388 3.8066285 7356.3604
+51598.16845078138 3.8067467 7356.5571
+51599.16845082887 3.8069041 7356.3604
+51600.16845087637 3.807101 7356.5571
+51601.16845092387 3.807219 7356.5571
+51602.16845097137 3.8073766 7356.1636
+51603.16845101886 3.8075736 7355.9663
+51604.16845106636 3.8077703 7355.9663
+51605.16845111386 3.8078885 7356.3604
+51606.16845116136 3.8081245 7356.1636
+51607.16845120885 3.8083215 7356.5571
+51608.16845125635 3.8084788 7356.5571
+51609.16845130385 3.8085184 7357.1475
+51610.16845135135 3.8086364 7356.9502
+51611.16845139884 3.808912 7357.541
+51612.16845144634 3.809109 7356.5571
+51613.16845149384 3.809227 7356.7539
+51614.16845154134 3.8093843 7356.5571
+51615.16845158883 3.8095419 7356.7539
+51616.16845163633 3.80966 7357.541
+51617.16845168383 3.8097782 7356.9502
+51618.16845173133 3.8099749 7356.1636
+51619.16845177882 3.8101718 7356.9502
+51620.16845182632 3.8102112 7356.1636
+51621.16845187382 3.8104475 7356.1636
+51622.16845192132 3.8105261 7356.9502
+51623.16845196881 3.8105655 7357.1475
+51624.16845201631 3.8108411 7356.3604
+51625.16845206381 3.8109593 7357.1475
+51626.16845211131 3.8110774 7356.5571
+51627.1684521588 3.8112347 7356.1636
+51628.1684522063 3.8113136 7356.7539
+51629.1684522538 3.8114316 7356.1636
+51630.1684523013 3.8115497 7356.5571
+51631.16845234879 3.8117859 7356.3604
+51632.16845239629 3.8118253 7357.3442
+51633.16845244379 3.8119829 7356.1636
+51634.16845249129 3.8121009 7356.9502
+51635.16845253878 3.8122585 7356.9502
+51636.16845258628 3.8123765 7356.3604
+51637.16845263378 3.8124552 7356.7539
+51638.16845268128 3.8126128 7356.7539
+51639.16845272877 3.8126915 7356.1636
+51640.16845277627 3.8129277 7357.7378
+51641.16845282377 3.8130457 7356.1636
+51642.16845287126 3.813164 7356.7539
+51643.16845291876 3.8132033 7356.1636
+51644.16845296626 3.8134 7356.5571
+51645.16845301376 3.8135183 7356.3604
+51646.16845306125 3.8136363 7356.9502
+51647.16845310875 3.8137939 7356.9502
+51648.16845315625 3.8139119 7356.9502
+51649.16845320375 3.8139906 7356.9502
+51650.16845325124 3.8141088 7356.5571
+51651.16845329874 3.8142269 7356.5571
+51652.16845334624 3.8143845 7357.541
+51653.16845339374 3.8145025 7356.7539
+51654.16845344123 3.8146601 7356.5571
+51655.16845348873 3.8146205 7357.1475
+51656.16845353623 3.8148568 7356.5571
+51657.16845358373 3.8149354 7356.9502
+51658.16845363122 3.8151324 7357.1475
+51659.16845367872 3.8151717 7356.7539
+51660.16845372622 3.81529 7357.1475
+51661.16845377372 3.8152504 7356.7539
+51662.16845382121 3.8154473 7356.9502
+51663.16845386871 3.8156049 7356.9502
+51664.16845391621 3.8157229 7356.7539
+51665.16845396371 3.815841 7356.5571
+51666.1684540112 3.8159986 7356.3604
+51667.1684540587 3.8161166 7356.7539
+51668.1684541062 3.8161559 7356.7539
+51669.1684541537 3.8163528 7356.9502
+51670.16845420119 3.8164315 7356.3604
+51671.16845424869 3.8165498 7356.5571
+51672.16845429619 3.8167071 7356.1636
+51673.16845434369 3.8166678 7356.1636
+51674.16845439118 3.8168647 7356.1636
+51675.16845443868 3.8170221 7356.7539
+51676.16845448618 3.8171403 7357.3442
+51677.16845453368 3.8171797 7356.7539
+51678.16845458117 3.8173764 7357.1475
+51679.16845462867 3.8174157 7356.7539
+51680.16845467617 3.8174946 7357.3442
+51681.16845472367 3.8175733 7356.7539
+51682.16845477116 3.8176913 7356.9502
+51683.16845481866 3.8177702 7357.1475
+51684.16845486616 3.8179669 7357.1475
+51685.16845491366 3.8180459 7357.3442
+51686.16845496115 3.8180852 7357.3442
+51687.16845500865 3.8182032 7356.9502
+51688.16845505615 3.8183608 7356.5571
+51689.16845510365 3.8184001 7356.3604
+51690.16845515114 3.8184788 7356.7539
+51691.16845519864 3.8185575 7356.3604
+51692.16845524614 3.8187151 7356.3604
+51693.16845529363 3.8187938 7357.1475
+51694.16845534113 3.8189511 7356.3604
+51695.16845538863 3.81903 7356.9502
+51696.16845543613 3.8191087 7356.9502
+51697.16845548362 3.8192661 7356.7539
+51698.16845553112 3.8193843 7356.1636
+51699.16845557862 3.819345 7356.5571
+51700.16845562612 3.8195024 7357.3442
+51701.16845567361 3.8196206 7357.1475
+51702.16845572111 3.8196993 7355.9663
+51703.16845576861 3.8198173 7356.3604
+51704.16845581611 3.8199356 7356.9502
+51705.1684558636 3.8200142 7356.9502
+51706.1684559111 3.8201323 7356.3604
+51707.1684559586 3.8201323 7356.1636
+51708.1684560061 3.8202899 7356.3604
+51709.16845605359 3.8203292 7356.7539
+51710.16845610109 3.8204472 7356.1636
+51711.16845614859 3.8205261 7356.7539
+51712.16845619609 3.8206835 7356.9502
+51713.16845624358 3.8207228 7356.5571
+51714.16845629108 3.8208411 7356.3604
+51715.16845633858 3.8209198 7356.1636
+51716.16845638608 3.8210771 7357.3442
+51717.16845643357 3.8210771 7356.7539
+51718.16845648107 3.821274 7356.9502
+51719.16845652857 3.821274 7356.3604
+51720.16845657607 3.8214314 7356.3604
+51721.16845662356 3.8214314 7356.5571
+51722.16845667106 3.821589 7356.7539
+51723.16845671856 3.8216677 7356.5571
+51724.16845676606 3.821707 7356.3604
+51725.16845681355 3.8219433 7357.1475
+51726.16845686105 3.8219039 7357.3442
+51727.16845690855 3.822022 7356.7539
+51728.16845695605 3.8221402 7356.9502
+51729.16845700354 3.8222582 7356.3604
+51730.16845705104 3.8222976 7356.9502
+51731.16845709854 3.8223765 7356.5571
+51732.16845714604 3.8224945 7357.3442
+51733.16845719353 3.8225338 7356.7539
+51734.16845724103 3.8228488 7356.9502
+51735.16845728853 3.8228095 7356.5571
+51736.16845733603 3.8228095 7356.5571
+51737.16845738352 3.8229668 7356.3604
+51738.16845743102 3.8231637 7356.3604
+51739.16845747852 3.8232031 7357.1475
+51740.16845752602 3.8232818 7356.3604
+51741.16845757351 3.8233213 7357.541
+51742.16845762101 3.8234394 7355.9663
+51743.16845766851 3.823518 7357.3442
+51744.168457716 3.823715 7356.9502
+51745.1684577635 3.8237936 7356.7539
+51746.168457811 3.823715 7357.3442
+51747.1684578585 3.823833 7357.541
+51748.16845790599 3.8239512 7356.5571
+51749.16845795349 3.8240299 7356.1636
+51750.16845800099 3.8241479 7356.5571
+51751.16845804849 3.8243055 7356.5571
+51752.16845809598 3.8241873 7356.5571
+51753.16845814348 3.8244236 7356.9502
+51754.16845819098 3.8245418 7356.7539
+51755.16845823848 3.8246205 7356.7539
+51756.16845828597 3.8246205 7356.5571
+51757.16845833347 3.8246598 7356.3604
+51758.16845838097 3.8248172 7357.1475
+51759.16845842847 3.8249748 7356.7539
+51760.16845847596 3.8248961 7356.9502
+51761.16845852346 3.8250141 7356.7539
+51762.16845857096 3.8251717 7356.5571
+51763.16845861846 3.8253291 7356.5571
+51764.16845866595 3.8253684 7356.1636
+51765.16845871345 3.8254867 7356.7539
+51766.16845876095 3.8255653 7357.1475
+51767.16845880845 3.8255653 7356.7539
+51768.16845885594 3.8256834 7356.3604
+51769.16845890344 3.8257623 7356.5571
+51770.16845895094 3.825959 7355.9663
+51771.16845899844 3.8259983 7356.3604
+51772.16845904593 3.8260376 7356.9502
+51773.16845909343 3.8261166 7357.1475
+51774.16845914093 3.8262346 7356.9502
+51775.16845918843 3.8263133 7356.5571
+51776.16845923592 3.8264315 7356.3604
+51777.16845928342 3.8264709 7356.7539
+51778.16845933092 3.8265102 7356.9502
+51779.16845937842 3.8266675 7356.1636
+51780.16845942591 3.8267071 7357.1475
+51781.16845947341 3.8267858 7356.9502
+51782.16845952091 3.8268251 7355.9663
+51783.16845956841 3.8269825 7356.5571
+51784.1684596159 3.8271008 7356.7539
+51785.1684596634 3.8271008 7356.7539
+51786.1684597109 3.8272188 7356.7539
+51787.1684597584 3.8273764 7355.9663
+51788.16845980589 3.8272977 7356.7539
+51789.16845985339 3.8274157 7357.1475
+51790.16845990089 3.8275731 7357.3442
+51791.16845994839 3.827652 7356.5571
+51792.16845999588 3.8276913 7357.1475
+51793.16846004338 3.82777 7356.3604
+51794.16846009088 3.8279276 7356.7539
+51795.16846013837 3.827888 7356.3604
+51796.16846018587 3.8280456 7357.1475
+51797.16846023337 3.8280456 7356.7539
+51798.16846028087 3.8282425 7356.5571
+51799.16846032836 3.828203 7356.7539
+51800.16846037586 3.8283999 7356.7539
+51801.16846042336 3.8283999 7357.3442
+51802.16846047086 3.8285968 7357.9346
+51803.16846051835 3.8285575 7357.1475
+51804.16846056585 3.8287148 7357.1475
+51805.16846061335 3.8287542 7356.7539
+51806.16846066085 3.8288331 7356.7539
+51807.16846070834 3.8287935 7356.3604
+51808.16846075584 3.8290298 7356.3604
+51809.16846080334 3.8291874 7356.3604
+51810.16846085084 3.8292267 7356.7539
+51811.16846089833 3.8293841 7356.9502
+51812.16846094583 3.8293447 7356.5571
+51813.16846099333 3.8294234 7356.1636
+51814.16846104083 3.829463 7356.5571
+51815.16846108832 3.8296597 7356.9502
+51816.16846113582 3.8298173 7356.1636
+51817.16846118332 3.8298566 7357.3442
+51818.16846123082 3.8298566 7356.5571
+51819.16846127831 3.830014 7356.9502
+51820.16846132581 3.8300929 7356.9502
+51821.16846137331 3.8300929 7356.5571
+51822.16846142081 3.8303289 7356.7539
+51823.1684614683 3.8304079 7357.3442
+51824.1684615158 3.8304472 7356.7539
+51825.1684615633 3.8304865 7356.7539
+51826.1684616108 3.8304865 7356.5571
+51827.16846165829 3.8307621 7356.3604
+51828.16846170579 3.8308408 7356.9502
+51829.16846175329 3.8307621 7356.5571
+51830.16846180079 3.8308802 7356.5571
+51831.16846184828 3.8309588 7357.1475
+51832.16846189578 3.8310771 7356.3604
+51833.16846194328 3.8311164 7356.5571
+51834.16846199078 3.8311558 7356.7539
+51835.16846203827 3.8313134 7356.5571
+51836.16846208577 3.8313527 7357.1475
+51837.16846213327 3.8315101 7356.5571
+51838.16846218077 3.8315101 7357.3442
+51839.16846222826 3.8317463 7356.9502
+51840.16846227576 3.8317857 7355.9663
+51841.16846232326 3.831825 7357.3442
+51842.16846237076 3.8319433 7356.7539
+51843.16846241825 3.832022 7356.9502
+51844.16846246575 3.83214 7357.1475
+51845.16846251325 3.8322186 7357.1475
+51846.16846256075 3.8322186 7355.7695
+51847.16846260824 3.8323762 7356.5571
+51848.16846265574 3.8324943 7356.3604
+51849.16846270324 3.8325732 7356.9502
+51850.16846275073 3.8326125 7356.1636
+51851.16846279823 3.8326519 7356.9502
+51852.16846284573 3.8328488 7357.3442
+51853.16846289323 3.8328881 7356.3604
+51854.16846294072 3.8329275 7355.3765
+51855.16846298822 3.8330455 7356.9502
+51856.16846303572 3.8331637 7357.1475
+51857.16846308322 3.8332818 7356.7539
+51858.16846313071 3.8334391 7356.9502
+51859.16846317821 3.8334391 7356.9502
+51860.16846322571 3.8335574 7356.3604
+51861.16846327321 3.833636 7356.1636
+51862.1684633207 3.8337147 7356.1636
+51863.1684633682 3.8337541 7357.7378
+51864.1684634157 3.833833 7356.3604
+51865.1684634632 3.833951 7356.7539
+51866.16846351069 3.8341086 7356.9502
+51867.16846355819 3.8341479 7356.9502
+51868.16846360569 3.8342266 7356.9502
+51869.16846365319 3.8343446 7356.7539
+51870.16846370068 3.8344629 7356.7539
+51871.16846374818 3.8345022 7356.7539
+51872.16846379568 3.8346202 7356.1636
+51873.16846384318 3.8346596 7356.5571
+51874.16846389067 3.8348172 7356.7539
+51875.16846393817 3.8348172 7356.3604
+51876.16846398567 3.8350141 7356.9502
+51877.16846403317 3.8350534 7357.1475
+51878.16846408066 3.8352895 7356.9502
+51879.16846412816 3.8352895 7356.9502
+51880.16846417566 3.8353291 7356.1636
+51881.16846422316 3.8354471 7356.5571
+51882.16846427065 3.8355258 7356.5571
+51883.16846431815 3.8356833 7356.1636
+51884.16846436565 3.8356833 7356.9502
+51885.16846441315 3.835762 7356.7539
+51886.16846446064 3.8358014 7356.1636
+51887.16846450814 3.8359983 7356.7539
+51888.16846455564 3.8361163 7356.7539
+51889.16846460314 3.836077 7356.7539
+51890.16846465063 3.8361557 7356.5571
+51891.16846469813 3.8363919 7357.1475
+51892.16846474563 3.8363919 7356.5571
+51893.16846479313 3.8365099 7356.9502
+51894.16846484062 3.8365889 7356.1636
+51895.16846488812 3.8366282 7356.9502
+51896.16846493562 3.8367856 7356.5571
+51897.16846498312 3.8368249 7356.7539
+51898.16846503061 3.8369038 7357.541
+51899.16846507811 3.8370612 7357.1475
+51900.16846512561 3.8371398 7357.1475
+51901.1684651731 3.8372188 7355.5728
+51902.1684652206 3.8373761 7356.9502
+51903.1684652681 3.8374155 7356.7539
+51904.1684653156 3.8376517 7356.3604
+51905.16846536309 3.8374944 7356.7539
+51906.16846541059 3.8376911 7357.1475
+51907.16846545809 3.8376911 7355.9663
+51908.16846550559 3.837888 7356.3604
+51909.16846555308 3.8379667 7356.9502
+51910.16846560058 3.8381243 7356.3604
+51911.16846564808 3.838203 7357.1475
+51912.16846569558 3.8382423 7356.1636
+51913.16846574307 3.8382423 7357.541
+51914.16846579057 3.8384392 7356.9502
+51915.16846583807 3.8385179 7356.7539
+51916.16846588557 3.8387148 7356.5571
+51917.16846593306 3.8387542 7356.9502
+51918.16846598056 3.8388329 7357.1475
+51919.16846602806 3.8388329 7356.7539
+51920.16846607556 3.8389115 7356.5571
+51921.16846612305 3.8389902 7356.9502
+51922.16846617055 3.8392658 7356.5571
+51923.16846621805 3.8391478 7356.7539
+51924.16846626555 3.8393052 7356.9502
+51925.16846631304 3.8394628 7356.7539
+51926.16846636054 3.8395414 7357.1475
+51927.16846640804 3.8395808 7357.3442
+51928.16846645554 3.8396204 7356.7539
+51929.16846650303 3.8397384 7356.9502
+51930.16846655053 3.8397777 7355.7695
+51931.16846659803 3.8399746 7356.3604
+51932.16846664553 3.8400533 7356.7539
+51933.16846669302 3.8399746 7356.1636
+51934.16846674052 3.8401713 7356.7539
+51935.16846678802 3.8403289 7356.9502
+51936.16846683552 3.8403289 7356.5571
+51937.16846688301 3.8404863 7356.9502
+51938.16846693051 3.8404469 7355.9663
+51939.16846697801 3.8406045 7355.7695
+51940.16846702551 3.8406832 7357.3442
+51941.168467073 3.8408406 7357.3442
+51942.1684671205 3.8408406 7356.5571
+51943.168467168 3.8409982 7356.5571
+51944.1684672155 3.8410375 7355.5728
+51945.16846726299 3.8411951 7357.1475
+51946.16846731049 3.8412344 7356.3604
+51947.16846735799 3.8413918 7357.1475
+51948.16846740549 3.8414707 7357.541
+51949.16846745298 3.8415494 7357.3442
+51950.16846750048 3.8415887 7355.9663
+51951.16846754798 3.8417857 7356.5571
+51952.16846759547 3.841825 7356.3604
+51953.16846764297 3.8418643 7356.5571
+51954.16846769047 3.8419037 7356.3604
+51955.16846773797 3.842061 7356.7539
+51956.16846778546 3.8421793 7356.5571
+51957.16846783296 3.842258 7356.7539
+51958.16846788046 3.842376 7357.3442
+51959.16846792796 3.8424549 7357.3442
+51960.16846797545 3.8425729 7356.1636
+51961.16846802295 3.8426909 7356.5571
+51962.16846807045 3.8427699 7355.9663
+51963.16846811795 3.8428485 7356.9502
+51964.16846816544 3.8430059 7357.9346
+51965.16846821294 3.8430455 7356.9502
+51966.16846826044 3.8432422 7356.7539
+51967.16846830794 3.8431635 7356.7539
+51968.16846835543 3.8433604 7356.1636
+51969.16846840293 3.8434391 7356.5571
+51970.16846845043 3.8434391 7357.1475
+51971.16846849793 3.8435571 7356.7539
+51972.16846854542 3.8437541 7356.3604
+51973.16846859292 3.8437541 7356.7539
+51974.16846864042 3.8438721 7357.541
+51975.16846868792 3.8440297 7357.541
+51976.16846873541 3.844069 7357.1475
+51977.16846878291 3.8442264 7356.7539
+51978.16846883041 3.8441477 7356.7539
+51979.16846887791 3.8443053 7357.3442
+51980.1684689254 3.8444233 7356.9502
+51981.1684689729 3.8445413 7356.9502
+51982.1684690204 3.8445809 7356.1636
+51983.1684690679 3.8447382 7357.3442
+51984.16846911539 3.8448958 7355.9663
+51985.16846916289 3.8450925 7356.9502
+51986.16846921039 3.8449352 7356.7539
+51987.16846925789 3.8451319 7356.5571
+51988.16846930538 3.8452895 7357.541
+51989.16846935288 3.8453288 7355.9663
+51990.16846940038 3.8454075 7355.9663
+51991.16846944788 3.8455651 7356.7539
+51992.16846949537 3.8454864 7355.9663
+51993.16846954287 3.8456831 7356.1636
+51994.16846959037 3.8457618 7356.3604
+51995.16846963787 3.8458407 7356.3604
+51996.16846968536 3.8459587 7356.3604
+51997.16846973286 3.8460374 7356.7539
+51998.16846978036 3.846195 7356.3604
+51999.16846982786 3.8462737 7356.7539
+52000.16846987535 3.8463917 7356.9502
+52001.16846992285 3.8465099 7356.1636
+52002.16846997035 3.8465493 7356.7539
+52003.16847001784 3.8467462 7357.1475
+52004.16847006534 3.8467462 7356.1636
+52005.16847011284 3.8469036 7356.9502
+52006.16847016034 3.8470218 7356.9502
+52007.16847020783 3.8471005 7356.5571
+52008.16847025533 3.8472579 7356.5571
+52009.16847030283 3.8472972 7356.7539
+52010.16847035033 3.8474548 7356.5571
+52011.16847039782 3.8474941 7356.5571
+52012.16847044532 3.8475335 7356.3604
+52013.16847049282 3.8476517 7356.9502
+52014.16847054032 3.8478878 7356.1636
+52015.16847058781 3.8478878 7356.7539
+52016.16847063531 3.848006 7356.3604
+52017.16847068281 3.848124 7356.9502
+52018.16847073031 3.8481634 7356.3604
+52019.1684707778 3.848321 7356.1636
+52020.1684708253 3.848439 7355.9663
+52021.1684708728 3.8484783 7355.9663
+52022.1684709203 3.8485966 7355.9663
+52023.16847096779 3.8486359 7356.9502
+52024.16847101529 3.8487539 7357.541
+52025.16847106279 3.8489509 7356.3604
+52026.16847111029 3.8489902 7356.7539
+52027.16847115778 3.8491082 7356.7539
+52028.16847120528 3.8491871 7355.9663
+52029.16847125278 3.8492265 7356.3604
+52030.16847130028 3.8494625 7356.7539
+52031.16847134777 3.8494625 7355.9663
+52032.16847139527 3.8496988 7355.9663
+52033.16847144277 3.8496988 7356.9502
+52034.16847149027 3.8497775 7356.3604
+52035.16847153776 3.8498957 7355.7695
+52036.16847158526 3.8500531 7356.5571
+52037.16847163276 3.8500531 7357.1475
+52038.16847168026 3.8503287 7356.9502
+52039.16847172775 3.8502893 7356.5571
+52040.16847177525 3.8504863 7356.5571
+52041.16847182275 3.850565 7356.5571
+52042.16847187025 3.8507619 7357.3442
+52043.16847191774 3.8507226 7356.9502
+52044.16847196524 3.8508012 7356.5571
+52045.16847201274 3.8509979 7356.3604
+52046.16847206024 3.8510768 7356.7539
+52047.16847210773 3.8510375 7356.9502
+52048.16847215523 3.8511949 7356.5571
+52049.16847220273 3.8513525 7356.5571
+52050.16847225023 3.8513129 7356.9502
+52051.16847229772 3.8514705 7356.7539
+52052.16847234522 3.8516278 7355.5728
+52053.16847239272 3.8516278 7357.1475
+52054.16847244021 3.8518641 7356.5571
+52055.16847248771 3.8518248 7355.9663
+52056.16847253521 3.8519428 7356.3604
+52057.16847258271 3.8521791 7357.1475
+52058.1684726302 3.8521791 7356.3604
+52059.1684726777 3.8523366 7356.5571
+52060.1684727252 3.8522973 7356.3604
+52061.1684727727 3.8524547 7356.7539
+52062.16847282019 3.8526516 7357.1475
+52063.16847286769 3.8526123 7356.1636
+52064.16847291519 3.8527303 7357.1475
+52065.16847296269 3.8527696 7357.1475
+52066.16847301018 3.8529665 7356.7539
+52067.16847305768 3.8530452 7356.3604
+52068.16847310518 3.8532028 7356.7539
+52069.16847315268 3.8532815 7355.7695
+52070.16847320017 3.8534389 7355.9663
+52071.16847324767 3.8534389 7357.1475
+52072.16847329517 3.8535964 7356.9502
+52073.16847334267 3.8537931 7356.5571
+52074.16847339016 3.8537145 7356.9502
+52075.16847343766 3.8539114 7355.9663
+52076.16847348516 3.8539507 7356.3604
+52077.16847353266 3.8541083 7356.3604
+52078.16847358015 3.8539901 7356.3604
+52079.16847362765 3.8542264 7356.3604
+52080.16847367515 3.8542657 7356.1636
+52081.16847372265 3.8544233 7357.1475
+52082.16847377014 3.8544626 7356.5571
+52083.16847381764 3.8545806 7355.9663
+52084.16847386514 3.8546987 7356.5571
+52085.16847391264 3.8548169 7356.5571
+52086.16847396013 3.8548169 7356.3604
+52087.16847400763 3.8549743 7356.1636
+52088.16847405513 3.8550532 7356.1636
+52089.16847410263 3.8551712 7356.5571
+52090.16847415012 3.8553286 7356.1636
+52091.16847419762 3.8553681 7355.9663
+52092.16847424512 3.8554862 7357.1475
+52093.16847429262 3.8554862 7356.7539
+52094.16847434011 3.8557224 7356.9502
+52095.16847438761 3.8558798 7355.7695
+52096.16847443511 3.8558011 7357.1475
+52097.16847448261 3.8559191 7357.3442
+52098.1684745301 3.8561161 7356.3604
+52099.1684745776 3.8562341 7355.9663
+52100.1684746251 3.856313 7357.1475
+52101.1684746726 3.856313 7356.9502
+52102.16847472009 3.8563917 7356.5571
+52103.16847476759 3.8565886 7357.541
+52104.16847481509 3.8566279 7355.9663
+52105.16847486258 3.8566673 7355.7695
+52106.16847491008 3.8569429 7356.3604
+52107.16847495758 3.8571002 7356.7539
+52108.16847500508 3.8570609 7356.5571
+52109.16847505257 3.8571396 7356.3604
+52110.16847510007 3.8572972 7357.1475
+52111.16847514757 3.8574152 7356.3604
+52112.16847519507 3.8576908 7357.1475
+52113.16847524256 3.8576908 7356.1636
+52114.16847529006 3.8576908 7356.3604
+52115.16847533756 3.8578877 7355.5728
+52116.16847538506 3.8579271 7356.3604
+52117.16847543255 3.858124 7356.3604
+52118.16847548005 3.858242 7356.5571
+52119.16847552755 3.8583994 7356.7539
+52120.16847557505 3.8583994 7356.7539
+52121.16847562254 3.858439 7357.1475
+52122.16847567004 3.8585963 7357.3442
+52123.16847571754 3.8587539 7356.9502
+52124.16847576504 3.8589113 7356.9502
+52125.16847581253 3.8590689 7355.5728
+52126.16847586003 3.8590689 7356.3604
+52127.16847590753 3.8591475 7356.3604
+52128.16847595503 3.8592262 7356.3604
+52129.16847600252 3.8593049 7355.9663
+52130.16847605002 3.8594232 7356.9502
+52131.16847609752 3.8595805 7356.3604
+52132.16847614502 3.8596199 7356.3604
+52133.16847619251 3.8597775 7356.3604
+52134.16847624001 3.8598168 7356.9502
+52135.16847628751 3.8599348 7356.5571
+52136.16847633501 3.8600531 7356.1636
+52137.1684763825 3.8602498 7357.3442
+52138.16847643 3.8601711 7355.9663
+52139.1684764775 3.860368 7355.9663
+52140.168476525 3.8603287 7356.5571
+52141.16847657249 3.8604467 7356.7539
+52142.16847661999 3.8606043 7356.7539
+52143.16847666749 3.8607616 7356.5571
+52144.16847671499 3.8607616 7355.9663
+52145.16847676248 3.8608403 7356.5571
+52146.16847680998 3.8609586 7355.7695
+52147.16847685748 3.8610373 7355.7695
+52148.16847690498 3.8611553 7356.1636
+52149.16847695247 3.8612342 7356.9502
+52150.16847699997 3.8612735 7356.3604
+52151.16847704747 3.8615098 7356.3604
+52152.16847709497 3.8614309 7356.1636
+52153.16847714246 3.8616278 7356.5571
+52154.16847718996 3.8617458 7355.9663
+52155.16847723746 3.8618641 7356.5571
+52156.16847728495 3.8619821 7356.9502
+52157.16847733245 3.8619821 7356.5571
+52158.16847737995 3.862179 7356.9502
+52159.16847742745 3.8622184 7356.5571
+52160.16847747494 3.8622971 7355.7695
+52161.16847752244 3.8624547 7356.5571
+52162.16847756994 3.8625333 7355.9663
+52163.16847761744 3.8626513 7355.3765
+52164.16847766493 3.8626907 7356.5571
+52165.16847771243 3.8628483 7356.1636
+52166.16847775993 3.8630056 7355.9663
+52167.16847780743 3.8631239 7356.1636
+52168.16847785492 3.8630452 7356.3604
+52169.16847790242 3.8632419 7356.7539
+52170.16847794992 3.8633602 7356.9502
+52171.16847799742 3.8635569 7356.7539
+52172.16847804491 3.8634782 7356.7539
+52173.16847809241 3.8636355 7356.5571
+52174.16847813991 3.8638718 7355.9663
+52175.16847818741 3.8638718 7356.1636
+52176.1684782349 3.8639901 7355.9663
+52177.1684782824 3.8641868 7356.1636
+52178.1684783299 3.8642261 7356.3604
+52179.1684783774 3.8642261 7355.9663
+52180.16847842489 3.8643837 7356.3604
+52181.16847847239 3.8645804 7355.9663
+52182.16847851989 3.8645804 7356.9502
+52183.16847856739 3.8646593 7356.1636
+52184.16847861488 3.864856 7356.9502
+52185.16847866238 3.8649349 7356.5571
+52186.16847870988 3.8650529 7355.9663
+52187.16847875738 3.8651316 7356.3604
+52188.16847880487 3.865171 7355.9663
+52189.16847885237 3.8652892 7356.3604
+52190.16847889987 3.8655255 7356.9502
+52191.16847894737 3.8654859 7356.7539
+52192.16847899486 3.8656435 7355.9663
+52193.16847904236 3.8658404 7356.3604
+52194.16847908986 3.8658798 7356.7539
+52195.16847913736 3.8659585 7356.5571
+52196.16847918485 3.8659585 7356.7539
+52197.16847923235 3.8661554 7356.3604
+52198.16847927985 3.8662341 7356.1636
+52199.16847932735 3.866431 7356.3604
+52200.16847937484 3.8665097 7356.5571
+52201.16847942234 3.8665884 7355.5728
+52202.16847946984 3.8667459 7356.3604
+52203.16847951734 3.8667459 7355.7695
+52204.16847956483 3.8669033 7355.9663
+52205.16847961233 3.866982 7355.9663
+52206.16847965983 3.8671396 7355.9663
+52207.16847970732 3.8671789 7356.1636
+52208.16847975482 3.8674152 7356.1636
+52209.16847980232 3.8674939 7355.9663
+52210.16847984982 3.8674939 7356.1636
+52211.16847989731 3.8675725 7355.5728
+52212.16847994481 3.8678482 7356.3604
+52213.16847999231 3.8678875 7356.1636
+52214.16848003981 3.8680451 7355.7695
+52215.1684800873 3.8682418 7356.9502
+52216.1684801348 3.8680844 7355.9663
+52217.1684801823 3.8682814 7355.3765
+52218.1684802298 3.8683994 7355.7695
+52219.16848027729 3.8685567 7355.3765
+52220.16848032479 3.8686357 7356.1636
+52221.16848037229 3.8687537 7355.7695
+52222.16848041979 3.8688717 7355.9663
+52223.16848046728 3.8689899 7355.9663
+52224.16848051478 3.869108 7356.5571
+52225.16848056228 3.8691866 7355.9663
+52226.16848060978 3.8692262 7356.1636
+52227.16848065727 3.8695016 7356.1636
+52228.16848070477 3.8695016 7356.1636
+52229.16848075227 3.8696985 7356.1636
+52230.16848079977 3.8697379 7356.1636
+52231.16848084726 3.8699348 7356.3604
+52232.16848089476 3.8699741 7355.3765
+52233.16848094226 3.8700922 7356.1636
+52234.16848098976 3.8701711 7356.3604
+52235.16848103725 3.8703284 7356.3604
+52236.16848108475 3.8703284 7355.9663
+52237.16848113225 3.8705254 7356.3604
+52238.16848117975 3.8707616 7356.5571
+52239.16848122724 3.8706827 7355.9663
+52240.16848127474 3.8708797 7355.3765
+52241.16848132224 3.8709583 7356.1636
+52242.16848136974 3.871037 7356.3604
+52243.16848141723 3.8711946 7355.9663
+52244.16848146473 3.8712339 7355.5728
+52245.16848151223 3.8713915 7355.5728
+52246.16848155973 3.8714309 7356.1636
+52247.16848160722 3.8716276 7356.1636
+52248.16848165472 3.8715882 7357.3442
+52249.16848170222 3.8717852 7355.7695
+52250.16848174972 3.8718245 7355.7695
+52251.16848179721 3.8719032 7356.7539
+52252.16848184471 3.8720214 7355.9663
+52253.16848189221 3.8720608 7355.7695
+52254.16848193971 3.8722181 7355.1797
+52255.1684819872 3.8722575 7356.1636
+52256.1684820347 3.8724937 7356.5571
+52257.1684820822 3.8725331 7356.7539
+52258.16848212969 3.872612 7356.3604
+52259.16848217719 3.8726907 7356.7539
+52260.16848222469 3.8727694 7356.5571
+52261.16848227219 3.872848 7355.7695
+52262.16848231968 3.872927 7354.7856
+52263.16848236718 3.8731236 7356.3604
+52264.16848241468 3.8731236 7356.5571
+52265.16848246218 3.8732023 7356.1636
+52266.16848250967 3.8733206 7355.7695
+52267.16848255717 3.8734386 7355.9663
+52268.16848260467 3.8735173 7355.9663
+52269.16848265217 3.8736355 7356.1636
+52270.16848269966 3.8737929 7356.1636
+52271.16848274716 3.8737929 7355.5728
+52272.16848279466 3.8739505 7355.7695
+52273.16848284216 3.8739898 7356.1636
+52274.16848288965 3.8741078 7356.7539
+52275.16848293715 3.8741078 7356.3604
+52276.16848298465 3.8743441 7356.1636
+52277.16848303215 3.8743834 7356.5571
+52278.16848307964 3.8744624 7355.9663
+52279.16848312714 3.8745017 7356.1636
+52280.16848317464 3.8745804 7355.9663
+52281.16848322214 3.8747773 7356.5571
+52282.16848326963 3.8748953 7355.5728
+52283.16848331713 3.8748953 7355.3765
+52284.16848336463 3.8751709 7355.9663
+52285.16848341213 3.8751316 7354.9824
+52286.16848345962 3.8752496 7356.3604
+52287.16848350712 3.8753679 7355.9663
+52288.16848355462 3.8754859 7356.5571
+52289.16848360212 3.8756039 7355.9663
+52290.16848364961 3.8756433 7356.5571
+52291.16848369711 3.8757615 7355.9663
+52292.16848374461 3.8759582 7355.9663
+52293.16848379211 3.8759978 7355.9663
+52294.1684838396 3.8760765 7355.3765
+52295.1684838871 3.8761551 7356.1636
+52296.1684839346 3.8762338 7356.1636
+52297.1684839821 3.8764701 7356.1636
+52298.16848402959 3.8765881 7355.5728
+52299.16848407709 3.8765488 7355.7695
+52300.16848412459 3.8767457 7356.5571
+52301.16848417209 3.876785 7355.3765
+52302.16848421958 3.876982 7355.7695
+52303.16848426708 3.876982 7356.3604
+52304.16848431458 3.8771787 7356.3604
+52305.16848436208 3.8773363 7356.7539
+52306.16848440957 3.8774149 7355.9663
+52307.16848445707 3.8773363 7355.7695
+52308.16848450457 3.8775332 7356.1636
+52309.16848455206 3.8775725 7355.9663
+52310.16848459956 3.8777299 7356.3604
+52311.16848464706 3.8778875 7355.9663
+52312.16848469456 3.8780055 7356.5571
+52313.16848474205 3.8780448 7355.3765
+52314.16848478955 3.8781235 7356.1636
+52315.16848483705 3.8782024 7355.3765
+52316.16848488455 3.8783598 7355.9663
+52317.16848493204 3.8784385 7355.7695
+52318.16848497954 3.8785567 7355.9663
+52319.16848502704 3.8785961 7355.7695
+52320.16848507454 3.8787534 7356.1636
+52321.16848512203 3.8787534 7356.9502
+52322.16848516953 3.8789504 7356.3604
+52323.16848521703 3.879108 7355.7695
+52324.16848526453 3.8791473 7356.3604
+52325.16848531202 3.8793836 7356.1636
+52326.16848535952 3.8793836 7355.3765
+52327.16848540702 3.8794622 7355.5728
+52328.16848545452 3.8795409 7356.7539
+52329.16848550201 3.8796196 7355.7695
+52330.16848554951 3.8797772 7355.9663
+52331.16848559701 3.8797772 7355.9663
+52332.16848564451 3.8798952 7356.3604
+52333.168485692 3.8801708 7356.7539
+52334.1684857395 3.8800921 7356.1636
+52335.168485787 3.8803284 7356.3604
+52336.1684858345 3.8804071 7356.5571
+52337.16848588199 3.8805645 7355.9663
+52338.16848592949 3.8806434 7355.7695
+52339.16848597699 3.880722 7356.5571
+52340.16848602449 3.8808007 7356.7539
+52341.16848607198 3.8808794 7355.9663
+52342.16848611948 3.8810763 7355.5728
+52343.16848616698 3.8811944 7356.1636
+52344.16848621448 3.8812339 7355.7695
+52345.16848626197 3.8812733 7355.5728
+52346.16848630947 3.88147 7355.9663
+52347.16848635697 3.8816276 7356.1636
+52348.16848640447 3.8816276 7356.1636
+52349.16848645196 3.8818638 7355.9663
+52350.16848649946 3.8819032 7355.9663
+52351.16848654696 3.8819818 7355.5728
+52352.16848659446 3.8820999 7355.5728
+52353.16848664195 3.8822575 7355.9663
+52354.16848668945 3.8823361 7356.1636
+52355.16848673695 3.8825331 7356.1636
+52356.16848678445 3.8825724 7355.7695
+52357.16848683194 3.8826904 7355.9663
+52358.16848687944 3.8827693 7356.3604
+52359.16848692694 3.8828087 7356.3604
+52360.16848697443 3.882966 7355.3765
+52361.16848702193 3.8830054 7356.1636
+52362.16848706943 3.8832417 7355.7695
+52363.16848711693 3.8833597 7356.3604
+52364.16848716442 3.883281 7356.3604
+52365.16848721192 3.8833992 7355.9663
+52366.16848725942 3.8835959 7355.5728
+52367.16848730692 3.8836746 7355.5728
+52368.16848735441 3.8837142 7355.7695
+52369.16848740191 3.8837929 7356.3604
+52370.16848744941 3.8839109 7356.3604
+52371.16848749691 3.8841078 7356.1636
+52372.1684875444 3.8841472 7355.9663
+52373.1684875919 3.8841865 7355.7695
+52374.1684876394 3.8843045 7356.3604
+52375.1684876869 3.8844621 7356.3604
+52376.16848773439 3.8845015 7356.7539
+52377.16848778189 3.8846591 7356.9502
+52378.16848782939 3.8847771 7356.1636
+52379.16848787689 3.8848164 7356.3604
+52380.16848792438 3.8849347 7355.1797
+52381.16848797188 3.885092 7356.7539
+52382.16848801938 3.8850527 7355.7695
+52383.16848806688 3.8852496 7355.5728
+52384.16848811437 3.8853676 7356.1636
+52385.16848816187 3.885525 7355.7695
+52386.16848820937 3.8856039 7355.9663
+52387.16848825687 3.8856826 7355.5728
+52388.16848830436 3.8858006 7355.7695
+52389.16848835186 3.8858795 7356.1636
+52390.16848839936 3.8859189 7355.1797
+52391.16848844686 3.8860762 7355.3765
+52392.16848849435 3.8862338 7356.3604
+52393.16848854185 3.8861945 7355.7695
+52394.16848858935 3.8864305 7356.1636
+52395.16848863685 3.8864305 7355.3765
+52396.16848868434 3.8865881 7355.9663
+52397.16848873184 3.8867061 7355.3765
+52398.16848877934 3.886785 7355.3765
+52399.16848882684 3.8868637 7356.3604
+52400.16848887433 3.8869817 7355.9663
+52401.16848892183 3.8871787 7355.9663
+52402.16848896933 3.887218 7354.9824
+52403.16848901683 3.8874149 7356.3604
+52404.16848906432 3.8875329 7356.3604
+52405.16848911182 3.887651 7356.1636
+52406.16848915932 3.8878086 7355.5728
+52407.16848920682 3.8878086 7355.1797
+52408.16848925431 3.8878479 7355.5728
+52409.16848930181 3.8880055 7356.1636
+52410.16848934931 3.8881235 7356.5571
+52411.1684893968 3.8882809 7356.1636
+52412.1684894443 3.8883598 7356.5571
+52413.1684894918 3.8885171 7355.7695
+52414.1684895393 3.8885565 7356.3604
+52415.16848958679 3.8886354 7355.7695
+52416.16848963429 3.8888714 7355.9663
+52417.16848968179 3.8889503 7355.1797
+52418.16848972929 3.8889897 7355.9663
+52419.16848977678 3.889147 7356.9502
+52420.16848982428 3.8892653 7356.5571
+52421.16848987178 3.8894227 7356.7539
+52422.16848991928 3.8894227 7356.1636
+52423.16848996677 3.8895802 7356.5571
+52424.16849001427 3.8898163 7355.9663
+52425.16849006177 3.8898952 7355.5728
+52426.16849010927 3.8900526 7355.1797
+52427.16849015676 3.8900526 7356.1636
+52428.16849020426 3.8901708 7355.9663
+52429.16849025176 3.8902102 7355.9663
+52430.16849029926 3.8903675 7356.1636
+52431.16849034675 3.8904462 7355.7695
+52432.16849039425 3.8906431 7355.9663
+52433.16849044175 3.8907611 7356.1636
+52434.16849048925 3.8907218 7356.3604
+52435.16849053674 3.8910367 7355.7695
+52436.16849058424 3.8909974 7356.1636
+52437.16849063174 3.8911943 7355.7695
+52438.16849067924 3.891273 7356.3604
+52439.16849072673 3.89147 7355.5728
+52440.16849077423 3.8915093 7356.1636
+52441.16849082173 3.8916667 7356.1636
+52442.16849086923 3.8917062 7356.1636
+52443.16849091672 3.8918636 7357.3442
+52444.16849096422 3.8919423 7356.3604
+52445.16849101172 3.8920212 7355.5728
+52446.16849105922 3.8921785 7356.1636
+52447.16849110671 3.8922966 7356.3604
+52448.16849115421 3.8924541 7355.5728
+52449.16849120171 3.8925328 7356.5571
+52450.16849124921 3.8926115 7356.7539
+52451.1684912967 3.8926904 7356.3604
+52452.1684913442 3.8928084 7355.3765
+52453.1684913917 3.892966 7356.3604
+52454.1684914392 3.893084 7356.1636
+52455.16849148669 3.8931627 7354.7856
+52456.16849153419 3.8932021 7356.5571
+52457.16849158169 3.8933597 7355.9663
+52458.16849162919 3.8935959 7356.5571
+52459.16849167668 3.8936353 7355.5728
+52460.16849172418 3.8936353 7356.5571
+52461.16849177168 3.893832 7355.9663
+52462.16849181918 3.8939896 7356.1636
+52463.16849186667 3.8941865 7356.9502
+52464.16849191417 3.8941469 7355.9663
+52465.16849196167 3.8942258 7356.1636
+52466.16849200916 3.8943045 7356.5571
+52467.16849205666 3.8945408 7356.7539
+52468.16849210416 3.8945801 7355.9663
+52469.16849215166 3.8947375 7356.1636
+52470.16849219915 3.8948951 7356.3604
+52471.16849224665 3.8950131 7356.3604
+52472.16849229415 3.8949738 7356.1636
+52473.16849234165 3.8951313 7355.7695
+52474.16849238914 3.89521 7356.1636
+52475.16849243664 3.8953674 7356.5571
+52476.16849248414 3.8955643 7355.5728
+52477.16849253164 3.895525 7356.1636
+52478.16849257913 3.8957219 7355.9663
+52479.16849262663 3.8958006 7355.9663
+52480.16849267413 3.8959186 7355.7695
+52481.16849272163 3.8960369 7356.1636
+52482.16849276912 3.8961942 7356.1636
+52483.16849281662 3.8962336 7356.3604
+52484.16849286412 3.8963912 7355.9663
+52485.16849291162 3.8964698 7355.9663
+52486.16849295911 3.8965878 7356.5571
+52487.16849300661 3.8967061 7355.7695
+52488.16849305411 3.8968241 7355.5728
+52489.16849310161 3.8969817 7355.3765
+52490.1684931491 3.8970997 7355.3765
+52491.1684931966 3.8971391 7355.5728
+52492.1684932441 3.8972573 7356.1636
+52493.1684932916 3.8974147 7356.5571
+52494.16849333909 3.8974934 7357.3442
+52495.16849338659 3.897651 7355.9663
+52496.16849343409 3.897769 7355.9663
+52497.16849348159 3.8979659 7355.3765
+52498.16849352908 3.8980839 7355.9663
+52499.16849357658 3.8982022 7355.5728
+52500.16849362408 3.8982415 7356.1636
+52501.16849367158 3.8983202 7355.7695
+52502.16849371907 3.8984382 7355.5728
+52503.16849376657 3.8985565 7355.3765
+52504.16849381407 3.8987532 7356.1636
+52505.16849386157 3.8987927 7356.1636
+52506.16849390906 3.8989501 7355.1797
+52507.16849395656 3.8989501 7355.7695
+52508.16849400406 3.899147 7355.7695
+52509.16849405156 3.8992257 7357.1475
+52510.16849409905 3.8993437 7355.9663
+52511.16849414655 3.8995013 7355.9663
+52512.16849419405 3.8995407 7355.5728
+52513.16849424155 3.899698 7356.5571
+52514.16849428904 3.8998556 7355.1797
+52515.16849433654 3.8998556 7356.1636
+52516.16849438404 3.9000919 7356.9502
+52517.16849443153 3.9001706 7355.7695
+52518.16849447903 3.9003279 7356.1636
+52519.16849452653 3.9004462 7356.3604
+52520.16849457403 3.9004068 7355.9663
+52521.16849462152 3.9006431 7356.7539
+52522.16849466902 3.9006824 7355.9663
+52523.16849471652 3.9008791 7356.1636
+52524.16849476402 3.9009581 7355.7695
+52525.16849481151 3.9010761 7356.3604
+52526.16849485901 3.901273 7356.5571
+52527.16849490651 3.9012334 7354.9824
+52528.16849495401 3.9014697 7355.3765
+52529.1684950015 3.901588 7355.9663
+52530.168495049 3.9015484 7356.3604
+52531.1684950965 3.901824 7356.1636
+52532.168495144 3.9017847 7356.5571
+52533.16849519149 3.9020209 7356.5571
+52534.16849523899 3.9020603 7356.3604
+52535.16849528649 3.9022179 7356.3604
+52536.16849533399 3.9023752 7356.1636
+52537.16849538148 3.9024146 7356.5571
+52538.16849542898 3.9025722 7356.1636
+52539.16849547648 3.9026115 7355.7695
+52540.16849552398 3.9027689 7355.3765
+52541.16849557147 3.9028478 7357.3442
+52542.16849561897 3.9029658 7355.7695
+52543.16849566647 3.9030838 7357.1475
+52544.16849571397 3.9032414 7355.3765
+52545.16849576146 3.9033201 7356.5571
+52546.16849580896 3.9033594 7355.3765
+52547.16849585646 3.9034383 7356.1636
+52548.16849590396 3.903635 7355.7695
+52549.16849595145 3.9037137 7355.9663
+52550.16849599895 3.903832 7356.3604
+52551.16849604645 3.9039106 7355.5728
+52552.16849609395 3.9041076 7356.1636
+52553.16849614144 3.9041862 7356.7539
+52554.16849618894 3.9043438 7355.9663
+52555.16849623644 3.9045012 7355.7695
+52556.16849628394 3.9045405 7356.1636
+52557.16849633143 3.9045799 7356.3604
+52558.16849637893 3.9048948 7356.9502
+52559.16849642643 3.9048555 7355.9663
+52560.16849647393 3.9050131 7356.5571
+52561.16849652142 3.9050131 7355.7695
+52562.16849656892 3.9051704 7356.5571
+52563.16849661642 3.9052887 7355.7695
+52564.16849666392 3.9054461 7356.7539
+52565.16849671141 3.9055247 7356.1636
+52566.16849675891 3.9056823 7355.5728
+52567.16849680641 3.9058397 7356.3604
+52568.1684968539 3.9058397 7355.7695
+52569.1684969014 3.9059973 7356.3604
+52570.1684969489 3.9060366 7356.3604
+52571.1684969964 3.9062335 7356.1636
+52572.16849704389 3.9064302 7356.1636
+52573.16849709139 3.9065485 7356.5571
+52574.16849713889 3.9066272 7356.1636
+52575.16849718639 3.9066665 7356.1636
+52576.16849723388 3.9068241 7355.1797
+52577.16849728138 3.9069421 7355.9663
+52578.16849732888 3.9070208 7356.7539
+52579.16849737638 3.9071391 7356.3604
+52580.16849742387 3.9074934 7355.5728
+52581.16849747137 3.9074144 7355.7695
+52582.16849751887 3.907572 7356.7539
+52583.16849756637 3.9076507 7355.7695
+52584.16849761386 3.9077296 7355.3765
+52585.16849766136 3.9079263 7355.5728
+52586.16849770886 3.907887 7355.5728
+52587.16849775636 3.9080839 7356.3604
+52588.16849780385 3.9082413 7356.3604
+52589.16849785135 3.9083989 7356.1636
+52590.16849789885 3.9085956 7356.3604
+52591.16849794635 3.9086745 7356.5571
+52592.16849799384 3.9087138 7356.3604
+52593.16849804134 3.9087532 7356.1636
+52594.16849808884 3.9089894 7356.5571
+52595.16849813634 3.9089894 7356.1636
+52596.16849818383 3.9092648 7356.1636
+52597.16849823133 3.9093044 7355.7695
+52598.16849827883 3.9094224 7355.7695
+52599.16849832633 3.9095011 7355.9663
+52600.16849837382 3.9096587 7355.7695
+52601.16849842132 3.9097767 7356.5571
+52602.16849846882 3.9097767 7356.1636
+52603.16849851632 3.9099343 7354.9824
+52604.16849856381 3.9100916 7356.1636
+52605.16849861131 3.910131 7355.9663
+52606.16849865881 3.9103279 7356.1636
+52607.16849870631 3.9104853 7356.7539
+52608.1684987538 3.9104066 7356.1636
+52609.1684988013 3.9106822 7356.1636
+52610.1684988488 3.9108398 7356.3604
+52611.1684988963 3.9109185 7356.3604
+52612.16849894379 3.9110365 7355.5728
+52613.16849899129 3.9110365 7355.5728
+52614.16849903879 3.9112334 7356.5571
+52615.16849908629 3.9113908 7355.7695
+52616.16849913378 3.9114304 7356.3604
+52617.16849918128 3.9116271 7356.3604
+52618.16849922878 3.911824 7355.7695
+52619.16849927627 3.9119027 7355.3765
+52620.16849932377 3.9119027 7356.9502
+52621.16849937127 3.9120996 7356.5571
+52622.16849941877 3.9122963 7356.1636
+52623.16849946626 3.9123752 7356.9502
+52624.16849951376 3.9124932 7354.9824
+52625.16849956126 3.9126112 7356.1636
+52626.16849960876 3.9126902 7355.7695
+52627.16849965625 3.9127688 7356.3604
+52628.16849970375 3.9128475 7355.3765
+52629.16849975125 3.9130051 7356.3604
+52630.16849979875 3.9132018 7355.7695
+52631.16849984624 3.9133201 7355.5728
+52632.16849989374 3.9134381 7356.7539
+52633.16849994124 3.9135168 7356.1636
+52634.16849998874 3.9137137 7356.5571
+52635.16850003623 3.9137137 7355.7695
+52636.16850008373 3.9137924 7355.3765
+52637.16850013123 3.9139893 7356.3604
+52638.16850017873 3.9141467 7356.1636
+52639.16850022622 3.9142256 7355.9663
+52640.16850027372 3.9143043 7355.9663
+52641.16850032122 3.9144616 7356.3604
+52642.16850036872 3.9146585 7355.5728
+52643.16850041621 3.9146585 7355.5728
+52644.16850046371 3.9148555 7355.7695
+52645.16850051121 3.9148555 7356.3604
+52646.16850055871 3.9150128 7356.5571
+52647.1685006062 3.9151704 7356.3604
+52648.1685006537 3.9152491 7356.5571
+52649.1685007012 3.9152884 7356.3604
+52650.1685007487 3.9154854 7355.7695
+52651.16850079619 3.9156034 7356.1636
+52652.16850084369 3.9157214 7356.1636
+52653.16850089119 3.915879 7356.5571
+52654.16850093869 3.915997 7355.3765
+52655.16850098618 3.9160759 7355.5728
+52656.16850103368 3.9161546 7355.3765
+52657.16850108118 3.916312 7356.5571
+52658.16850112868 3.9164302 7355.9663
+52659.16850117617 3.9165089 7355.7695
+52660.16850122367 3.9166269 7356.1636
+52661.16850127117 3.9169025 7355.1797
+52662.16850131867 3.9169815 7355.7695
+52663.16850136616 3.9170995 7355.9663
+52664.16850141366 3.9172175 7355.7695
+52665.16850146116 3.9172964 7355.9663
+52666.16850150866 3.9174538 7356.5571
+52667.16850155615 3.9176114 7356.5571
+52668.16850160365 3.91769 7355.9663
+52669.16850165115 3.9177687 7356.1636
+52670.16850169864 3.9179657 7355.3765
+52671.16850174614 3.9180837 7356.3604
+52672.16850179364 3.9180443 7355.9663
+52673.16850184114 3.9182017 7356.3604
+52674.16850188863 3.918438 7356.3604
+52675.16850193613 3.9184773 7355.3765
+52676.16850198363 3.9184773 7355.5728
+52677.16850203113 3.9187136 7356.3604
+52678.16850207862 3.9187922 7356.5571
+52679.16850212612 3.9188712 7355.7695
+52680.16850217362 3.9189892 7355.9663
+52681.16850222112 3.9191861 7356.5571
+52682.16850226861 3.9193435 7356.7539
+52683.16850231611 3.9194221 7356.3604
+52684.16850236361 3.9195011 7356.3604
+52685.16850241111 3.9195797 7356.5571
+52686.1685024586 3.9197767 7356.1636
+52687.1685025061 3.9198554 7355.7695
+52688.1685025536 3.919934 7356.3604
+52689.1685026011 3.920131 7356.9502
+52690.16850264859 3.9203277 7355.3765
+52691.16850269609 3.9203672 7356.5571
+52692.16850274359 3.9204459 7356.7539
+52693.16850279109 3.9207215 7356.3604
+52694.16850283858 3.9206822 7356.3604
+52695.16850288608 3.9208789 7356.5571
+52696.16850293358 3.9209576 7354.9824
+52697.16850298108 3.9211545 7355.7695
+52698.16850302857 3.9212725 7355.5728
+52699.16850307607 3.9213908 7355.7695
+52700.16850312357 3.9214694 7355.7695
+52701.16850317107 3.9216664 7355.9663
+52702.16850321856 3.9217057 7355.9663
+52703.16850326606 3.9218631 7355.5728
+52704.16850331356 3.921942 7356.5571
+52705.16850336106 3.922178 7356.3604
+52706.16850340855 3.9222963 7355.3765
+52707.16850345605 3.922375 7356.5571
+52708.16850350355 3.9224536 7356.3604
+52709.16850355105 3.922493 7355.5728
+52710.16850359854 3.9226899 7356.5571
+52711.16850364604 3.9227686 7356.7539
+52712.16850369354 3.9228868 7356.5571
+52713.16850374104 3.9230442 7355.9663
+52714.16850378853 3.9232411 7355.7695
+52715.16850383603 3.9233592 7355.7695
+52716.16850388353 3.9233985 7355.3765
+52717.16850393103 3.9236741 7355.9663
+52718.16850397852 3.9235954 7356.1636
+52719.16850402602 3.9237924 7355.9663
+52720.16850407352 3.923871 7356.3604
+52721.16850412101 3.9240284 7355.7695
+52722.16850416851 3.9241467 7357.1475
+52723.16850421601 3.9242647 7355.5728
+52724.16850426351 3.9244223 7355.9663
+52725.168504311 3.9244616 7355.9663
+52726.1685043585 3.9245796 7356.1636
+52727.168504406 3.9246583 7355.9663
+52728.1685044535 3.9248552 7355.9663
+52729.16850450099 3.9249732 7356.1636
+52730.16850454849 3.9250128 7356.5571
+52731.16850459599 3.9251308 7356.3604
+52732.16850464349 3.9252489 7356.1636
+52733.16850469098 3.9254065 7356.1636
+52734.16850473848 3.9254458 7356.7539
+52735.16850478598 3.9256034 7356.3604
+52736.16850483348 3.9257607 7355.7695
+52737.16850488097 3.9257607 7356.3604
+52738.16850492847 3.9259183 7356.3604
+52739.16850497597 3.926115 7355.1797
+52740.16850502347 3.9262726 7356.3604
+52741.16850507096 3.9263513 7356.9502
+52742.16850511846 3.9265482 7355.3765
+52743.16850516596 3.9266269 7355.9663
+52744.16850521346 3.9267449 7356.7539
+52745.16850526095 3.9269025 7356.7539
+52746.16850530845 3.9269812 7355.5728
+52747.16850535595 3.9270205 7355.5728
+52748.16850540345 3.9271386 7356.7539
+52749.16850545094 3.9272175 7356.1636
+52750.16850549844 3.9274142 7356.3604
+52751.16850554594 3.9274931 7355.9663
+52752.16850559344 3.9275718 7356.7539
+52753.16850564093 3.927808 7356.3604
+52754.16850568843 3.9278474 7356.1636
+52755.16850573593 3.9280441 7355.1797
+52756.16850578343 3.928123 7356.1636
+52757.16850583092 3.9283197 7355.9663
+52758.16850587842 3.9283197 7356.3604
+52759.16850592592 3.9285166 7355.3765
+52760.16850597342 3.9285953 7356.7539
+52761.16850602091 3.928674 7355.9663
+52762.16850606841 3.9288709 7356.5571
+52763.16850611591 3.9289889 7356.5571
+52764.16850616341 3.9291072 7355.5728
+52765.1685062109 3.9291859 7355.9663
+52766.1685062584 3.9293041 7356.7539
+52767.1685063059 3.9294615 7355.9663
+52768.1685063534 3.9295402 7356.5571
+52769.16850640089 3.9297371 7355.7695
+52770.16850644839 3.9298158 7355.5728
+52771.16850649589 3.9299734 7356.1636
+52772.16850654338 3.9299734 7355.5728
+52773.16850659088 3.9301307 7355.7695
+52774.16850663838 3.9303277 7355.7695
+52775.16850668588 3.9304063 7355.9663
+52776.16850673337 3.9305243 7356.1636
+52777.16850678087 3.9307213 7355.3765
+52778.16850682837 3.9308 7355.7695
+52779.16850687587 3.9309576 7355.7695
+52780.16850692336 3.9310756 7355.7695
+52781.16850697086 3.9311545 7356.3604
+52782.16850701836 3.9313512 7355.9663
+52783.16850706586 3.9313512 7356.3604
+52784.16850711335 3.9315481 7356.1636
+52785.16850716085 3.9317055 7356.3604
+52786.16850720835 3.9317844 7354.9824
+52787.16850725585 3.9319024 7355.9663
+52788.16850730334 3.9320204 7355.9663
+52789.16850735084 3.9320598 7356.1636
+52790.16850739834 3.932178 7356.3604
+52791.16850744584 3.9323747 7356.5571
+52792.16850749333 3.9324536 7356.5571
+52793.16850754083 3.9326897 7355.9663
+52794.16850758833 3.9327292 7356.3604
+52795.16850763583 3.9328473 7356.1636
+52796.16850768332 3.9329653 7356.3604
+52797.16850773082 3.9330442 7355.3765
+52798.16850777832 3.9331229 7355.3765
+52799.16850782582 3.9333198 7356.3604
+52800.16850787331 3.9334378 7356.1636
+52801.16850792081 3.9335558 7356.3604
+52802.16850796831 3.9337134 7355.9663
+52803.16850801581 3.9338708 7356.5571
+52804.1685080633 3.9338708 7355.9663
+52805.1685081108 3.9340284 7355.5728
+52806.1685081583 3.9341071 7355.3765
+52807.1685082058 3.9341857 7355.9663
+52808.16850825329 3.934422 7355.7695
+52809.16850830079 3.9344614 7356.5571
+52810.16850834829 3.9345007 7355.3765
+52811.16850839579 3.9348156 7356.3604
+52812.16850844328 3.9348552 7356.1636
+52813.16850849078 3.9349732 7355.7695
+52814.16850853828 3.9350913 7356.1636
+52815.16850858578 3.9351702 7355.9663
+52816.16850863327 3.9354062 7356.1636
+52817.16850868077 3.9354455 7355.7695
+52818.16850872827 3.9356031 7356.1636
+52819.16850877577 3.9357212 7356.5571
+52820.16850882326 3.9357605 7355.7695
+52821.16850887076 3.9359181 7356.3604
+52822.16850891826 3.9359968 7356.3604
+52823.16850896575 3.936115 7355.3765
+52824.16850901325 3.9362724 7356.1636
+52825.16850906075 3.9363906 7355.9663
+52826.16850910825 3.9365087 7355.5728
+52827.16850915574 3.9366267 7355.9663
+52828.16850920324 3.9367843 7355.9663
+52829.16850925074 3.9368236 7355.7695
+52830.16850929824 3.9370205 7356.3604
+52831.16850934573 3.9370599 7355.1797
+52832.16850939323 3.9372566 7355.5728
+52833.16850944073 3.9374142 7354.9824
+52834.16850948823 3.9374142 7355.3765
+52835.16850953572 3.9375322 7355.7695
+52836.16850958322 3.9376898 7355.9663
+52837.16850963072 3.9377685 7355.7695
+52838.16850967822 3.9380047 7356.5571
+52839.16850972571 3.9380834 7356.5571
+52840.16850977321 3.9381621 7355.9663
+52841.16850982071 3.9382014 7356.5571
+52842.16850986821 3.938359 7355.5728
+52843.1685099157 3.9385164 7356.3604
+52844.1685099632 3.938674 7356.1636
+52845.1685100107 3.9387527 7356.3604
+52846.1685100582 3.9388313 7356.5571
+52847.16851010569 3.9389889 7355.9663
+52848.16851015319 3.9391463 7354.9824
+52849.16851020069 3.9392645 7355.9663
+52850.16851024819 3.9393826 7356.5571
+52851.16851029568 3.9395401 7355.7695
+52852.16851034318 3.9396188 7356.1636
+52853.16851039068 3.9397762 7356.5571
+52854.16851043818 3.9396975 7356.1636
+52855.16851048567 3.9400125 7356.5571
+52856.16851053317 3.9400518 7356.1636
+52857.16851058067 3.9400914 7356.7539
+52858.16851062817 3.9402094 7355.7695
+52859.16851067566 3.9403667 7355.5728
+52860.16851072316 3.9405243 7355.9663
+52861.16851077066 3.9405637 7355.7695
+52862.16851081816 3.9407213 7355.7695
+52863.16851086565 3.9408 7356.1636
+52864.16851091315 3.9409573 7356.1636
+52865.16851096065 3.9410362 7355.9663
+52866.16851100815 3.9412723 7355.9663
+52867.16851105564 3.9413116 7355.7695
+52868.16851110314 3.9413905 7355.5728
+52869.16851115064 3.9415872 7356.3604
+52870.16851119814 3.9416661 7356.3604
+52871.16851124563 3.9419022 7355.9663
+52872.16851129313 3.9420991 7356.7539
+52873.16851134063 3.9420598 7356.5571
+52874.16851138812 3.9420598 7355.7695
+52875.16851143562 3.942296 7356.7539
+52876.16851148312 3.9423354 7356.3604
+52877.16851153062 3.9426503 7355.7695
+52878.16851157811 3.9425716 7355.7695
+52879.16851162561 3.9428077 7356.7539
+52880.16851167311 3.9429259 7356.1636
+52881.16851172061 3.9430833 7356.5571
+52882.1685117681 3.943162 7356.5571
+52883.1685118156 3.943162 7355.9663
+52884.1685118631 3.9433589 7355.5728
+52885.1685119106 3.9435165 7355.7695
+52886.16851195809 3.9435952 7355.7695
+52887.16851200559 3.9437921 7355.7695
+52888.16851205309 3.9437921 7356.1636
+52889.16851210059 3.9439101 7355.9663
+52890.16851214808 3.9441464 7356.5571
+52891.16851219558 3.9441464 7355.9663
+52892.16851224308 3.9443431 7355.5728
+52893.16851229058 3.944422 7355.9663
+52894.16851233807 3.94454 7355.9663
+52895.16851238557 3.9447763 7356.5571
+52896.16851243307 3.9447763 7355.9663
+52897.16851248057 3.9448943 7355.3765
+52898.16851252806 3.9450519 7356.1636
+52899.16851257556 3.9451699 7355.7695
+52900.16851262306 3.9452486 7356.1636
+52901.16851267056 3.9452879 7355.3765
+52902.16851271805 3.9455242 7355.7695
+52903.16851276555 3.9456029 7355.7695
+52904.16851281305 3.9457211 7356.5571
+52905.16851286055 3.9458392 7356.1636
+52906.16851290804 3.9459968 7355.5728
+52907.16851295554 3.9461935 7356.1636
+52908.16851300304 3.9462328 7356.9502
+52909.16851305054 3.9463117 7355.5728
+52910.16851309803 3.9464297 7355.3765
+52911.16851314553 3.9465477 7356.5571
+52912.16851319303 3.9467053 7355.9663
+52913.16851324053 3.9467447 7355.3765
+52914.16851328802 3.9469416 7355.7695
+52915.16851333552 3.947099 7356.3604
+52916.16851338302 3.9472172 7355.9663
+52917.16851343052 3.9472566 7355.5728
+52918.16851347801 3.9473746 7356.5571
+52919.16851352551 3.9475322 7355.5728
+52920.16851357301 3.9477289 7355.7695
+52921.16851362051 3.9477682 7355.9663
+52922.168513668 3.9479651 7356.1636
+52923.1685137155 3.9480438 7355.1797
+52924.168513763 3.9481621 7356.5571
+52925.16851381049 3.9482014 7356.3604
+52926.16851385799 3.9483981 7356.1636
+52927.16851390549 3.9484377 7355.9663
+52928.16851395299 3.9485557 7355.5728
+52929.16851400048 3.9487131 7356.3604
+52930.16851404798 3.948792 7356.3604
+52931.16851409548 3.9489493 7356.3604
+52932.16851414298 3.9491069 7355.9663
+52933.16851419047 3.9491463 7355.9663
+52934.16851423797 3.9493036 7355.7695
+52935.16851428547 3.9495006 7355.9663
+52936.16851433297 3.9495399 7355.7695
+52937.16851438046 3.9495792 7356.5571
+52938.16851442796 3.9496975 7356.3604
+52939.16851447546 3.9498942 7356.1636
+52940.16851452296 3.9499731 7355.7695
+52941.16851457045 3.9500911 7356.3604
+52942.16851461795 3.9502485 7354.9824
+52943.16851466545 3.9504061 7357.1475
+52944.16851471295 3.9504061 7356.3604
+52945.16851476044 3.9504848 7355.7695
+52946.16851480794 3.9507604 7355.7695
+52947.16851485544 3.9507604 7355.9663
+52948.16851490294 3.9507997 7355.7695
+52949.16851495043 3.9509966 7356.5571
+52950.16851499793 3.9511147 7355.9663
+52951.16851504543 3.9513116 7355.9663
+52952.16851509293 3.9513903 7355.9663
+52953.16851514042 3.9516265 7356.3604
+52954.16851518792 3.9516265 7355.5728
+52955.16851523542 3.9517446 7355.5728
+52956.16851528292 3.9518235 7355.5728
+52957.16851533041 3.9519022 7355.9663
+52958.16851537791 3.9520202 7355.9663
+52959.16851542541 3.9521778 7356.3604
+52960.16851547291 3.9522564 7355.7695
+52961.1685155204 3.952414 7355.9663
+52962.1685155679 3.9525714 7355.9663
+52963.1685156154 3.9526501 7356.3604
+52964.1685156629 3.9529257 7355.5728
+52965.16851571039 3.9529257 7356.3604
+52966.16851575789 3.9530439 7356.9502
+52967.16851580539 3.9530833 7355.3765
+52968.16851585289 3.9532406 7356.1636
+52969.16851590038 3.95328 7356.3604
+52970.16851594788 3.9533589 7355.7695
+52971.16851599538 3.9535162 7355.5728
+52972.16851604288 3.9537132 7355.9663
+52973.16851609037 3.9537132 7355.5728
+52974.16851613787 3.9539099 7355.9663
+52975.16851618537 3.9539888 7356.7539
+52976.16851623286 3.9540675 7355.7695
+52977.16851628036 3.9542248 7355.7695
+52978.16851632786 3.9543037 7356.3604
+52979.16851637536 3.9544611 7355.5728
+52980.16851642285 3.9545398 7355.7695
+52981.16851647035 3.9547367 7356.3604
+52982.16851651785 3.9548154 7356.3604
+52983.16851656535 3.9548154 7355.9663
+52984.16851661284 3.954973 7355.5728
+52985.16851666034 3.9550517 7355.9663
+52986.16851670784 3.9552093 7356.1636
+52987.16851675534 3.9553666 7356.1636
+52988.16851680283 3.9554846 7356.3604
+52989.16851685033 3.9554846 7356.3604
+52990.16851689783 3.9555242 7356.7539
+52991.16851694533 3.9557602 7355.7695
+52992.16851699282 3.9558785 7356.1636
+52993.16851704032 3.9559572 7356.9502
+52994.16851708782 3.9559965 7355.7695
+52995.16851713532 3.9561541 7356.3604
+52996.16851718281 3.9563115 7356.3604
+52997.16851723031 3.9563508 7356.3604
+52998.16851727781 3.9564691 7356.5571
+52999.16851732531 3.9566658 7355.7695
+53000.1685173728 3.9567051 7356.7539
+53001.1685174203 3.9567051 7355.9663
+53002.1685174678 3.956902 7354.9824
+53003.1685175153 3.9569807 7356.5571
+53004.16851756279 3.9571383 7355.7695
+53005.16851761029 3.9572957 7356.3604
+53006.16851765779 3.9572957 7355.1797
+53007.16851770529 3.9574926 7356.7539
+53008.16851775278 3.9576106 7355.7695
+53009.16851780028 3.9576499 7355.9663
+53010.16851784778 3.9577289 7355.9663
+53011.16851789528 3.9578075 7356.7539
+53012.16851794277 3.9579651 7355.5728
+53013.16851799027 3.9581225 7355.9663
+53014.16851803777 3.9581225 7356.9502
+53015.16851808527 3.9583194 7355.5728
+53016.16851813276 3.9583588 7356.1636
+53017.16851818026 3.9585161 7355.9663
+53018.16851822776 3.9586344 7355.9663
+53019.16851827526 3.9587131 7355.5728
+53020.16851832275 3.9587917 7356.9502
+53021.16851837025 3.95891 7356.5571
+53022.16851841775 3.9591067 7356.3604
+53023.16851846525 3.9591067 7355.7695
+53024.16851851274 3.9593036 7355.9663
+53025.16851856024 3.9594216 7355.9663
+53026.16851860774 3.959461 7356.1636
+53027.16851865523 3.9596186 7355.9663
+53028.16851870273 3.9597759 7355.9663
+53029.16851875023 3.9598155 7356.5571
+53030.16851879773 3.9599729 7356.1636
+53031.16851884522 3.9600909 7355.3765
+53032.16851889272 3.9600515 7356.3604
+53033.16851894022 3.9602091 7356.1636
+53034.16851898772 3.9603271 7355.9663
+53035.16851903521 3.9604454 7356.5571
+53036.16851908271 3.9606028 7356.7539
+53037.16851913021 3.9605634 7356.3604
+53038.16851917771 3.9607997 7356.7539
+53039.1685192252 3.9608784 7355.7695
+53040.1685192727 3.9610753 7356.1636
+53041.1685193202 3.9610357 7355.5728
+53042.1685193677 3.9611146 7355.9663
+53043.16851941519 3.961272 7356.1636
+53044.16851946269 3.9613507 7355.9663
+53045.16851951019 3.961587 7355.9663
+53046.16851955769 3.9615476 7355.1797
+53047.16851960518 3.9617839 7355.9663
+53048.16851965268 3.9618232 7355.9663
+53049.16851970018 3.9618626 7356.3604
+53050.16851974768 3.9620202 7356.5571
+53051.16851979517 3.9620988 7356.1636
+53052.16851984267 3.9621775 7356.5571
+53053.16851989017 3.9623351 7356.1636
+53054.16851993767 3.9624138 7356.5571
+53055.16851998516 3.9625711 7355.9663
+53056.16852003266 3.9625711 7355.9663
+53057.16852008016 3.9627681 7356.3604
+53058.16852012766 3.9629257 7355.5728
+53059.16852017515 3.9630437 7357.3442
+53060.16852022265 3.9630044 7356.1636
+53061.16852027015 3.9630044 7355.5728
+53062.16852031765 3.9632406 7355.9663
+53063.16852036514 3.963398 7356.3604
+53064.16852041264 3.9634767 7355.3765
+53065.16852046014 3.9635949 7356.3604
+53066.16852050764 3.9636343 7355.7695
+53067.16852055513 3.9637916 7356.3604
+53068.16852060263 3.9638312 7355.9663
+53069.16852065013 3.9640279 7356.1636
+53070.16852069763 3.9641461 7355.9663
+53071.16852074512 3.9642248 7356.5571
+53072.16852079262 3.9643428 7355.9663
+53073.16852084012 3.9643822 7355.9663
+53074.16852088762 3.9645004 7355.3765
+53075.16852093511 3.9645791 7355.9663
+53076.16852098261 3.9646578 7356.5571
+53077.16852103011 3.964776 7355.7695
+53078.16852107761 3.9649334 7355.3765
+53079.1685211251 3.9650517 7355.7695
+53080.1685211726 3.9650517 7355.7695
+53081.1685212201 3.9651697 7355.3765
+53082.16852126759 3.9652877 7356.1636
+53083.16852131509 3.9654453 7356.1636
+53084.16852136259 3.965524 7355.9663
+53085.16852141009 3.9654846 7355.5728
+53086.16852145758 3.9657209 7356.1636
+53087.16852150508 3.9658782 7356.3604
+53088.16852155258 3.9659176 7355.9663
+53089.16852160008 3.9659569 7356.1636
+53090.16852164757 3.9660752 7355.9663
+53091.16852169507 3.9661539 7356.9502
+53092.16852174257 3.9662325 7355.5728
+53093.16852179007 3.9663901 7356.1636
+53094.16852183756 3.9665868 7355.7695
+53095.16852188506 3.9665475 7356.5571
+53096.16852193256 3.9667051 7356.1636
+53097.16852198006 3.9668231 7355.9663
+53098.16852202755 3.9669807 7355.9663
+53099.16852207505 3.9669807 7355.9663
+53100.16852212255 3.9670987 7356.3604
+53101.16852217005 3.9672956 7355.5728
+53102.16852221754 3.967453 7355.9663
+53103.16852226504 3.9674137 7355.9663
+53104.16852231254 3.9676106 7356.7539
+53105.16852236004 3.9676893 7356.3604
+53106.16852240753 3.9678073 7355.3765
+53107.16852245503 3.9678469 7355.7695
+53108.16852250253 3.9679649 7356.1636
+53109.16852255003 3.9680436 7356.9502
+53110.16852259752 3.9681618 7355.9663
+53111.16852264502 3.9683585 7356.1636
+53112.16852269252 3.9683585 7356.3604
+53113.16852274002 3.9685161 7355.7695
+53114.16852278751 3.9685555 7355.9663
+53115.16852283501 3.9687524 7355.5728
+53116.16852288251 3.9687917 7355.7695
+53117.16852293001 3.9688704 7355.9663
+53118.1685229775 3.9689491 7355.7695
+53119.168523025 3.9691067 7356.3604
+53120.1685230725 3.9692247 7356.5571
+53121.16852312 3.9693427 7355.7695
+53122.16852316749 3.9693823 7356.1636
+53123.16852321499 3.9695003 7355.1797
+53124.16852326249 3.969579 7355.7695
+53125.16852330999 3.9696972 7356.3604
+53126.16852335748 3.9697759 7356.3604
+53127.16852340498 3.9699726 7355.3765
+53128.16852345248 3.9700909 7356.1636
+53129.16852349998 3.9700909 7356.3604
+53130.16852354747 3.9701695 7356.3604
+53131.16852359497 3.9702089 7357.3442
+53132.16852364247 3.9704452 7356.7539
+53133.16852368996 3.9705632 7354.9824
+53134.16852373746 3.9707208 7355.7695
+53135.16852378496 3.9707208 7355.9663
+53136.16852383246 3.9707994 7356.5571
+53137.16852387995 3.9709964 7356.1636
+53138.16852392745 3.9709964 7355.7695
+53139.16852397495 3.9712327 7356.3604
+53140.16852402245 3.9713113 7355.7695
+53141.16852406994 3.9714293 7356.3604
+53142.16852411744 3.9714687 7355.9663
+53143.16852416494 3.9714687 7354.9824
+53144.16852421244 3.9715869 7355.7695
+53145.16852425993 3.9717443 7355.3765
+53146.16852430743 3.9719412 7355.7695
+53147.16852435493 3.9719412 7356.3604
+53148.16852440243 3.9720592 7356.5571
+53149.16852444992 3.9720986 7355.7695
+53150.16852449742 3.9720986 7354.9824
+53151.16852454492 3.9724135 7356.9502
+53152.16852459242 3.9724925 7355.1797
+53153.16852463991 3.9724925 7355.9663
+53154.16852468741 3.9726105 7356.3604
+53155.16852473491 3.9727681 7355.9663
+53156.16852478241 3.9728074 7356.5571
+53157.1685248299 3.9728467 7355.3765
+53158.1685248774 3.9730434 7355.5728
+53159.1685249249 3.9730434 7356.7539
+53160.1685249724 3.9732404 7355.9663
+53161.16852501989 3.9732404 7356.5571
+53162.16852506739 3.9734373 7355.9663
+53163.16852511489 3.9734766 7356.3604
+53164.16852516239 3.973634 7356.3604
+53165.16852520988 3.9737523 7355.7695
+53166.16852525738 3.9738309 7356.3604
+53167.16852530488 3.9738703 7355.7695
+53168.16852535238 3.9740279 7355.3765
+53169.16852539987 3.9741852 7355.9663
+53170.16852544737 3.9741852 7356.3604
+53171.16852549487 3.9742246 7355.9663
+53172.16852554237 3.9743035 7355.9663
+53173.16852558986 3.9744215 7356.3604
+53174.16852563736 3.9745002 7355.5728
+53175.16852568486 3.9745395 7356.1636
+53176.16852573236 3.9746971 7355.7695
+53177.16852577985 3.9748151 7355.3765
+53178.16852582735 3.9748938 7356.1636
+53179.16852587485 3.9750121 7355.9663
+53180.16852592235 3.9751694 7356.3604
+53181.16852596984 3.9751694 7356.3604
+53182.16852601734 3.975327 7355.9663
+53183.16852606484 3.975327 7355.9663
+53184.16852611233 3.9756026 7355.3765
+53185.16852615983 3.975642 7355.3765
+53186.16852620733 3.9756813 7355.9663
+53187.16852625483 3.9757993 7356.3604
+53188.16852630232 3.9758389 7355.5728
+53189.16852634982 3.9759963 7355.5728
+53190.16852639732 3.9760749 7355.5728
+53191.16852644482 3.9761539 7356.3604
+53192.16852649231 3.9763112 7356.1636
+53193.16852653981 3.9763112 7355.7695
+53194.16852658731 3.9764688 7355.3765
+53195.16852663481 3.9764688 7356.3604
+53196.1685266823 3.9767048 7355.9663
+53197.1685267298 3.9767048 7356.1636
+53198.1685267773 3.9766655 7356.5571
+53199.1685268248 3.9769804 7356.3604
+53200.16852687229 3.9770198 7355.7695
+53201.16852691979 3.9771774 7355.9663
+53202.16852696729 3.9772954 7355.9663
+53203.16852701479 3.9773347 7355.7695
+53204.16852706228 3.9773741 7356.1636
+53205.16852710978 3.977453 7356.1636
+53206.16852715728 3.9776103 7356.7539
+53207.16852720478 3.9777286 7356.1636
+53208.16852725227 3.9779253 7355.7695
+53209.16852729977 3.9779253 7356.1636
+53210.16852734727 3.9779253 7355.3765
+53211.16852739477 3.9781616 7355.9663
+53212.16852744226 3.9781222 7356.3604
+53213.16852748976 3.9782796 7355.9663
+53214.16852753726 3.9782796 7356.3604
+53215.16852758476 3.9783585 7355.9663
+53216.16852763225 3.9785552 7355.5728
+53217.16852767975 3.9785159 7356.1636
+53218.16852772725 3.9786341 7356.1636
+53219.16852777475 3.9787128 7355.9663
+53220.16852782224 3.9789095 7355.7695
+53221.16852786974 3.9789491 7356.3604
+53222.16852791724 3.9791064 7356.9502
+53223.16852796474 3.9791851 7355.5728
+53224.16852801223 3.9792244 7356.1636
+53225.16852805973 3.979264 7356.3604
+53226.16852810723 3.9794214 7356.7539
+53227.16852815473 3.9794607 7356.3604
+53228.16852820222 3.9796183 7356.1636
+53229.16852824972 3.9796576 7356.3604
+53230.16852829722 3.9797363 7356.3604
+53231.16852834472 3.9798939 7356.1636
+53232.16852839221 3.9799726 7355.9663
+53233.16852843971 3.9800906 7355.7695
+53234.16852848721 3.9802089 7356.1636
+53235.1685285347 3.9803269 7355.9663
+53236.1685285822 3.9803662 7355.3765
+53237.1685286297 3.9804845 7355.7695
+53238.1685286772 3.9805632 7356.1636
+53239.16852872469 3.9806812 7355.5728
+53240.16852877219 3.9808388 7355.9663
+53241.16852881969 3.9808388 7355.5728
+53242.16852886719 3.9809961 7356.3604
+53243.16852891468 3.9808781 7356.5571
+53244.16852896218 3.9811144 7356.3604
+53245.16852900968 3.9812324 7355.9663
+53246.16852905718 3.9813111 7356.1636
+53247.16852910467 3.9813504 7355.7695
+53248.16852915217 3.9814293 7355.3765
+53249.16852919967 3.9815474 7355.5728
+53250.16852924717 3.981705 7355.5728
+53251.16852929466 3.981705 7356.3604
+53252.16852934216 3.9817443 7355.5728
+53253.16852938966 3.9819803 7356.1636
+53254.16852943716 3.9819803 7355.7695
+53255.16852948465 3.9821773 7355.9663
+53256.16852953215 3.9821773 7355.5728
+53257.16852957965 3.9821773 7355.9663
+53258.16852962715 3.9823349 7356.3604
+53259.16852967464 3.9824529 7355.7695
+53260.16852972214 3.9824922 7355.5728
+53261.16852976964 3.9827285 7356.9502
+53262.16852981714 3.9827285 7355.7695
+53263.16852986463 3.9828072 7355.9663
+53264.16852991213 3.9829254 7355.7695
+53265.16852995963 3.9829648 7356.5571
+53266.16853000713 3.9829648 7355.7695
+53267.16853005462 3.9831221 7355.9663
+53268.16853010212 3.9831221 7355.7695
+53269.16853014962 3.9832797 7356.3604
+53270.16853019712 3.983319 7355.9663
+53271.16853024461 3.9835553 7355.9663
+53272.16853029211 3.9835157 7355.9663
+53273.16853033961 3.9835947 7356.7539
+53274.16853038711 3.9836733 7356.9502
+53275.1685304346 3.9838307 7356.1636
+53276.1685304821 3.9839489 7356.7539
+53277.1685305296 3.9839489 7355.9663
+53278.1685305771 3.9840276 7356.7539
+53279.16853062459 3.9841063 7356.1636
+53280.16853067209 3.9842639 7356.1636
+53281.16853071959 3.9843819 7356.9502
+53282.16853076709 3.9844606 7355.5728
+53283.16853081458 3.9845002 7356.1636
+53284.16853086208 3.9845002 7355.7695
+53285.16853090958 3.9846575 7355.3765
+53286.16853095707 3.9848151 7356.3604
+53287.16853100457 3.9849725 7355.7695
+53288.16853105207 3.9849725 7356.1636
+53289.16853109957 3.9850907 7355.9663
+53290.16853114706 3.9851301 7356.7539
+53291.16853119456 3.9852481 7356.1636
+53292.16853124206 3.9853268 7355.9663
+53293.16853128956 3.985445 7356.3604
+53294.16853133705 3.9856024 7356.5571
+53295.16853138455 3.9856811 7356.5571
+53296.16853143205 3.9856811 7355.7695
+53297.16853147955 3.9857993 7356.5571
+53298.16853152704 3.9859567 7357.3442
+53299.16853157454 3.985996 7355.9663
+53300.16853162204 3.985996 7356.1636
+53301.16853166954 3.9861536 7356.3604
+53302.16853171703 3.9862716 7355.3765
+53303.16853176453 3.9862716 7356.1636
+53304.16853181203 3.9864292 7356.3604
+53305.16853185953 3.9865472 7355.9663
+53306.16853190702 3.9867048 7355.9663
+53307.16853195452 3.9867048 7356.3604
+53308.16853200202 3.9867835 7355.7695
+53309.16853204952 3.9869015 7356.7539
+53310.16853209701 3.9870198 7355.7695
+53311.16853214451 3.9870985 7356.3604
+53312.16853219201 3.9871771 7355.9663
+53313.16853223951 3.9872954 7355.1797
+53314.168532287 3.9874921 7356.3604
+53315.1685323345 3.9874527 7355.5728
+53316.168532382 3.9876497 7355.9663
+53317.1685324295 3.9877284 7356.1636
+53318.16853247699 3.9877677 7356.3604
+53319.16853252449 3.987886 7355.5728
+53320.16853257199 3.988004 7355.9663
+53321.16853261949 3.988004 7355.3765
+53322.16853266698 3.9882402 7355.9663
+53323.16853271448 3.9882009 7356.5571
+53324.16853276198 3.9883583 7356.1636
+53325.16853280948 3.9884765 7356.1636
+53326.16853285697 3.9885159 7355.3765
+53327.16853290447 3.9885552 7356.1636
+53328.16853295197 3.9887125 7355.7695
+53329.16853299947 3.9887519 7356.1636
+53330.16853304696 3.9888701 7356.7539
+53331.16853309446 3.9889882 7356.3604
+53332.16853314196 3.9891064 7355.9663
+53333.16853318946 3.9890668 7356.3604
+53334.16853323695 3.9893425 7356.3604
+53335.16853328445 3.9894214 7355.9663
+53336.16853333195 3.9894607 7355.1797
+53337.16853337944 3.9895787 7355.9663
+53338.16853342694 3.9896574 7356.3604
+53339.16853347444 3.9896967 7356.1636
+53340.16853352194 3.9898937 7356.3604
+53341.16853356943 3.989933 7356.7539
+53342.16853361693 3.9900117 7355.5728
+53343.16853366443 3.9900906 7356.5571
+53344.16853371193 3.9902086 7355.9663
+53345.16853375942 3.990248 7356.3604
+53346.16853380692 3.9902873 7356.3604
+53347.16853385442 3.9905629 7355.7695
+53348.16853390192 3.9905236 7356.3604
+53349.16853394941 3.9905629 7356.9502
+53350.16853399691 3.9907205 7355.7695
+53351.16853404441 3.9907598 7355.9663
+53352.16853409191 3.9908779 7355.5728
+53353.1685341394 3.9909961 7356.3604
+53354.1685341869 3.9909568 7355.9663
+53355.1685342344 3.9911535 7356.3604
+53356.1685342819 3.9911928 7356.7539
+53357.16853432939 3.9913504 7355.9663
+53358.16853437689 3.9913898 7355.7695
+53359.16853442439 3.9915078 7355.3765
+53360.16853447189 3.991626 7355.9663
+53361.16853451938 3.991744 7356.5571
+53362.16853456688 3.9918227 7356.3604
+53363.16853461438 3.9917834 7355.7695
+53364.16853466188 3.9919016 7356.3604
+53365.16853470937 3.9919016 7356.5571
+53366.16853475687 3.992059 7356.3604
+53367.16853480437 3.9922166 7356.1636
+53368.16853485187 3.9922166 7355.9663
+53369.16853489936 3.9923346 7356.3604
+53370.16853494686 3.9924526 7356.9502
+53371.16853499436 3.9925709 7356.3604
+53372.16853504186 3.9925709 7356.9502
+53373.16853508935 3.9927676 7356.1636
+53374.16853513685 3.9927282 7356.1636
+53375.16853518435 3.9928465 7356.1636
+53376.16853523185 3.9929252 7355.9663
+53377.16853527934 3.9930432 7355.9663
+53378.16853532684 3.9931221 7355.3765
+53379.16853537434 3.9931221 7356.7539
+53380.16853542184 3.9932401 7356.9502
+53381.16853546933 3.9933188 7356.5571
+53382.16853551683 3.9934764 7356.5571
+53383.16853556433 3.9935551 7355.9663
+53384.16853561183 3.9935551 7356.1636
+53385.16853565932 3.9936731 7355.7695
+53386.16853570682 3.9937913 7354.9824
+53387.16853575432 3.99387 7356.5571
+53388.16853580181 3.99387 7356.9502
+53389.16853584931 3.9939487 7356.5571
+53390.16853589681 3.9941063 7355.7695
+53391.16853594431 3.994185 7356.1636
+53392.1685359918 3.9942243 7355.9663
+53393.1685360393 3.9943426 7356.1636
+53394.1685360868 3.9943426 7355.5728
+53395.1685361343 3.9945393 7356.7539
+53396.16853618179 3.9946179 7356.3604
+53397.16853622929 3.9946969 7355.3765
+53398.16853627679 3.9948542 7355.7695
+53399.16853632429 3.9948149 7355.9663
+53400.16853637178 3.9949725 7355.9663
+53401.16853641928 3.9949329 7355.5728
+53402.16853646678 3.9952085 7355.5728
+53403.16853651428 3.9952478 7355.9663
+53404.16853656177 3.9952085 7355.9663
+53405.16853660927 3.9953661 7356.5571
+53406.16853665677 3.9954054 7355.7695
+53407.16853670427 3.9953661 7356.3604
+53408.16853675176 3.9955235 7357.1475
+53409.16853679926 3.995681 7356.7539
+53410.16853684676 3.995681 7355.9663
+53411.16853689426 3.9958384 7356.7539
+53412.16853694175 3.995878 7356.1636
+53413.16853698925 3.9959173 7355.3765
+53414.16853703675 3.9961534 7356.3604
+53415.16853708425 3.9961534 7356.1636
+53416.16853713174 3.9962323 7356.3604
+53417.16853717924 3.9963896 7355.9663
+53418.16853722674 3.9964683 7355.9663
+53419.16853727424 3.9963896 7356.1636
+53420.16853732173 3.9965866 7355.9663
+53421.16853736923 3.9966259 7356.1636
+53422.16853741673 3.9967046 7355.9663
+53423.16853746423 3.9968622 7356.1636
+53424.16853751172 3.9968622 7355.9663
+53425.16853755922 3.9969409 7356.3604
+53426.16853760672 3.9969409 7355.3765
+53427.16853765422 3.9970982 7355.7695
+53428.16853770171 3.9972165 7356.3604
+53429.16853774921 3.9972558 7356.9502
+53430.16853779671 3.9973345 7355.9663
+53431.16853784421 3.9974527 7356.5571
+53432.1685378917 3.9975708 7355.9663
+53433.1685379392 3.9975708 7355.7695
+53434.1685379867 3.9976494 7355.9663
+53435.1685380342 3.9977283 7356.7539
+53436.16853808169 3.997807 7355.9663
+53437.16853812919 3.9978857 7356.1636
+53438.16853817669 3.9979644 7356.5571
+53439.16853822418 3.9980826 7355.9663
+53440.16853827168 3.9980826 7356.3604
+53441.16853831918 3.998122 7355.9663
+53442.16853836668 3.9982793 7356.1636
+53443.16853841417 3.9983582 7356.1636
+53444.16853846167 3.9982793 7355.7695
+53445.16853850917 3.9985549 7356.1636
+53446.16853855667 3.9985943 7356.3604
+53447.16853860416 3.9986732 7355.7695
+53448.16853865166 3.9986336 7357.541
+53449.16853869916 3.9988306 7355.9663
+53450.16853874666 3.9989882 7355.9663
+53451.16853879415 3.9989882 7356.7539
+53452.16853884165 3.9991848 7355.5728
+53453.16853888915 3.9991455 7356.7539
+53454.16853893665 3.9992242 7356.1636
+53455.16853898414 3.9993818 7356.3604
+53456.16853903164 3.9994211 7355.9663
+53457.16853907914 3.9994998 7355.3765
+53458.16853912664 3.9995787 7356.5571
+53459.16853917413 3.9996181 7355.1797
+53460.16853922163 3.9995787 7356.7539
+53461.16853926913 3.9998937 7355.5728
+53462.16853931663 3.9999723 7356.1636
+53463.16853936412 3.9999723 7356.5571
+53464.16853941162 4.0001297 7355.5728
+53465.16853945912 4.0002084 7355.5728
+53466.16853950662 4.0001688 7356.3604
+53467.16853955411 4.0002871 7355.1797
+53468.16853960161 4.0004053 7356.7539
+53469.16853964911 4.0003657 7356.1636
+53470.16853969661 4.0006809 7355.5728
+53471.1685397441 4.0006413 7356.3604
+53472.1685397916 4.0006809 7355.7695
+53473.1685398391 4.0007596 7356.5571
+53474.1685398866 4.0009565 7356.1636
+53475.16853993409 4.0009565 7355.9663
+53476.16853998159 4.0011535 7356.5571
+53477.16854002909 4.0011139 7355.9663
+53478.16854007659 4.0012321 7356.3604
+53479.16854012408 4.0013108 7355.7695
+53480.16854017158 4.0013895 7356.9502
+53481.16854021908 4.0014682 7356.3604
+53482.16854026658 4.0015864 7356.7539
+53483.16854031407 4.0017042 7355.9663
+53484.16854036157 4.0017834 7356.1636
+53485.16854040907 4.0017042 7355.5728
+53486.16854045657 4.001862 7355.7695
+53487.16854050406 4.0019407 7355.9663
+53488.16854055156 4.002059 7355.3765
+53489.16854059906 4.002059 7355.9663
+53490.16854064655 4.0022163 7356.3604
+53491.16854069405 4.0022163 7355.7695
+53492.16854074155 4.0024133 7356.3604
+53493.16854078905 4.0024133 7356.7539
+53494.16854083654 4.0025311 7355.5728
+53495.16854088404 4.0025311 7355.9663
+53496.16854093154 4.0026493 7356.3604
+53497.16854097904 4.0028462 7355.9663
+53498.16854102653 4.0029249 7356.3604
+53499.16854107403 4.0030036 7356.1636
+53500.16854112153 4.0030036 7356.7539
+53501.16854116903 4.0031219 7356.3604
+53502.16854121652 4.0032396 7356.3604
+53503.16854126402 4.0032792 7357.3442
+53504.16854131152 4.0033579 7355.1797
+53505.16854135902 4.0034761 7356.3604
+53506.16854140651 4.0035944 7355.5728
+53507.16854145401 4.0035152 7355.5728
+53508.16854150151 4.0035944 7356.5571
+53509.16854154901 4.0037909 7356.3604
+53510.1685415965 4.0038304 7356.1636
+53511.168541644 4.0038304 7356.5571
+53512.1685416915 4.0039878 7355.5728
+53513.168541739 4.0039878 7355.7695
+53514.16854178649 4.0041451 7356.3604
+53515.16854183399 4.0041847 7356.1636
+53516.16854188149 4.0043421 7356.5571
+53517.16854192899 4.0043421 7356.3604
+53518.16854197648 4.0044208 7355.9663
+53519.16854202398 4.0043817 7355.9663
+53520.16854207148 4.004539 7356.3604
+53521.16854211898 4.0047359 7355.7695
+53522.16854216647 4.0047359 7356.3604
+53523.16854221397 4.0048146 7355.3765
+53524.16854226147 4.0049329 7355.5728
+53525.16854230897 4.0050116 7356.1636
+53526.16854235646 4.0051689 7356.7539
+53527.16854240396 4.0051298 7356.1636
+53528.16854245146 4.0051689 7356.1636
+53529.16854249896 4.0052872 7355.7695
+53530.16854254645 4.0053658 7356.1636
+53531.16854259395 4.0054841 7355.3765
+53532.16854264145 4.0055232 7356.1636
+53533.16854268895 4.0055232 7356.1636
+53534.16854273644 4.0057597 7355.3765
+53535.16854278394 4.0058775 7355.9663
+53536.16854283144 4.0058775 7356.1636
+53537.16854287894 4.0058775 7356.1636
+53538.16854292643 4.0060744 7356.1636
+53539.16854297393 4.006114 7355.7695
+53540.16854302143 4.0061531 7355.7695
+53541.16854306892 4.0062714 7355.9663
+53542.16854311642 4.0062318 7355.7695
+53543.16854316392 4.00635 7356.5571
+53544.16854321142 4.006547 7356.3604
+53545.16854325891 4.006547 7355.9663
+53546.16854330641 4.0065861 7356.3604
+53547.16854335391 4.0066652 7355.1797
+53548.16854340141 4.0066652 7355.9663
+53549.1685434489 4.0068226 7356.1636
+53550.1685434964 4.0070195 7356.1636
+53551.1685435439 4.0069799 7356.3604
+53552.1685435914 4.0070982 7356.3604
+53553.16854363889 4.0072951 7356.3604
+53554.16854368639 4.0072556 7356.9502
+53555.16854373389 4.0072556 7355.9663
+53556.16854378139 4.0074916 7356.7539
+53557.16854382888 4.0075703 7355.5728
+53558.16854387638 4.0076885 7355.3765
+53559.16854392388 4.0076494 7355.9663
+53560.16854397138 4.0078068 7355.7695
+53561.16854401887 4.0078459 7355.7695
+53562.16854406637 4.007925 7355.9663
+53563.16854411387 4.007925 7356.3604
+53564.16854416137 4.0080428 7355.7695
+53565.16854420886 4.0082006 7355.9663
+53566.16854425636 4.0082006 7355.3765
+53567.16854430386 4.0083184 7355.9663
+53568.16854435136 4.008358 7355.5728
+53569.16854439885 4.0085154 7355.7695
+53570.16854444635 4.008594 7355.9663
+53571.16854449385 4.0087123 7356.5571
+53572.16854454135 4.0087514 7356.3604
+53573.16854458884 4.008791 7356.5571
+53574.16854463634 4.0089879 7355.7695
+53575.16854468384 4.0089483 7356.7539
+53576.16854473134 4.0089879 7356.7539
+53577.16854477883 4.009027 7356.1636
+53578.16854482633 4.0092239 7356.1636
+53579.16854487383 4.0093026 7355.7695
+53580.16854492133 4.0093813 7355.3765
+53581.16854496882 4.0095391 7355.7695
+53582.16854501632 4.0095391 7355.3765
+53583.16854506382 4.0096178 7355.3765
+53584.16854511132 4.0096569 7355.9663
+53585.16854515881 4.0097752 7355.5728
+53586.16854520631 4.0098934 7356.1636
+53587.16854525381 4.0100112 7355.7695
+53588.16854530131 4.0101295 7355.9663
+53589.1685453488 4.0101295 7356.5571
+53590.1685453963 4.0101295 7355.9663
+53591.1685454438 4.010366 7356.3604
+53592.16854549129 4.0104051 7356.3604
+53593.16854553879 4.0105233 7355.3765
+53594.16854558629 4.010602 7355.7695
+53595.16854563379 4.0106411 7356.5571
+53596.16854568128 4.010838 7356.5571
+53597.16854572878 4.0109167 7356.1636
+53598.16854577628 4.0109167 7355.1797
+53599.16854582378 4.0109167 7355.7695
+53600.16854587127 4.0109563 7355.1797
+53601.16854591877 4.0111136 7355.9663
+53602.16854596627 4.011271 7356.5571
+53603.16854601377 4.0113106 7355.9663
+53604.16854606126 4.0113502 7355.5728
+53605.16854610876 4.0114679 7356.1636
+53606.16854615626 4.0115862 7355.7695
+53607.16854620376 4.0115075 7355.9663
+53608.16854625125 4.0116649 7356.1636
+53609.16854629875 4.0117044 7355.5728
+53610.16854634625 4.0118222 7356.3604
+53611.16854639375 4.0118618 7356.3604
+53612.16854644124 4.0119801 7355.3765
+53613.16854648874 4.0120587 7355.7695
+53614.16854653624 4.0120192 7356.1636
+53615.16854658374 4.0121374 7356.5571
+53616.16854663123 4.0122948 7354.9824
+53617.16854667873 4.0122948 7355.1797
+53618.16854672623 4.0123734 7356.7539
+53619.16854677373 4.0124917 7356.5571
+53620.16854682122 4.01261 7355.9663
+53621.16854686872 4.0125704 7356.5571
+53622.16854691622 4.0127673 7355.7695
+53623.16854696372 4.0128064 7356.5571
+53624.16854701121 4.012846 7355.7695
+53625.16854705871 4.0129642 7355.7695
+53626.16854710621 4.0130033 7355.7695
+53627.16854715371 4.013082 7355.1797
+53628.1685472012 4.013082 7355.5728
+53629.1685472487 4.013082 7357.3442
+53630.1685472962 4.0133576 7355.5728
+53631.1685473437 4.0133972 7355.5728
+53632.16854739119 4.0135155 7355.9663
+53633.16854743869 4.0133972 7355.7695
+53634.16854748619 4.0135546 7356.3604
+53635.16854753369 4.0135942 7355.9663
+53636.16854758118 4.0137515 7355.7695
+53637.16854762868 4.0137119 7355.5728
+53638.16854767618 4.0137515 7355.7695
+53639.16854772368 4.0139089 7356.1636
+53640.16854777117 4.0139875 7356.1636
+53641.16854781867 4.0140667 7356.5571
+53642.16854786617 4.0141058 7355.9663
+53643.16854791367 4.0141845 7355.7695
+53644.16854796116 4.0142632 7355.5728
+53645.16854800866 4.0143027 7355.7695
+53646.16854805616 4.0143418 7355.5728
+53647.16854810365 4.0144601 7355.5728
+53648.16854815115 4.0144601 7355.7695
+53649.16854819865 4.0146174 7356.3604
+53650.16854824615 4.014657 7355.1797
+53651.16854829364 4.0147753 7355.5728
+53652.16854834114 4.0148931 7355.7695
+53653.16854838864 4.0149326 7355.7695
+53654.16854843614 4.0150509 7356.5571
+53655.16854848363 4.0150113 7355.3765
+53656.16854853113 4.01509 7355.9663
+53657.16854857863 4.0151687 7355.9663
+53658.16854862613 4.0153656 7356.3604
+53659.16854867362 4.0153265 7356.3604
+53660.16854872112 4.015523 7356.1636
+53661.16854876862 4.0154443 7355.9663
+53662.16854881612 4.0155625 7356.3604
+53663.16854886361 4.0156021 7356.1636
+53664.16854891111 4.0157199 7355.9663
+53665.16854895861 4.0158381 7355.5728
+53666.16854900611 4.0158772 7354.9824
+53667.1685490536 4.0159955 7355.9663
+53668.1685491011 4.0160351 7356.1636
+53669.1685491486 4.0161138 7355.9663
+53670.1685491961 4.0161529 7356.3604
+53671.16854924359 4.0161529 7355.5728
+53672.16854929109 4.0164285 7356.7539
+53673.16854933859 4.0163498 7356.1636
+53674.16854938609 4.0165863 7356.3604
+53675.16854943358 4.0166254 7356.3604
+53676.16854948108 4.016665 7356.1636
+53677.16854952858 4.0167437 7355.9663
+53678.16854957608 4.016901 7356.1636
+53679.16854962357 4.016901 7356.7539
+53680.16854967107 4.0169406 7356.1636
+53681.16854971857 4.0171375 7356.3604
+53682.16854976607 4.0171375 7355.3765
+53683.16854981356 4.0171766 7356.1636
+53684.16854986106 4.0172949 7356.3604
+53685.16854990856 4.017334 7355.9663
+53686.16854995606 4.0176096 7355.7695
+53687.16855000355 4.0175309 7355.1797
+53688.16855005105 4.0175705 7356.9502
+53689.16855009855 4.0176492 7356.3604
+53690.16855014605 4.0177674 7355.9663
+53691.16855019354 4.0178461 7356.5571
+53692.16855024104 4.0177674 7355.3765
+53693.16855028854 4.0178852 7355.9663
+53694.16855033604 4.0180035 7355.5728
+53695.16855038353 4.0180035 7356.3604
+53696.16855043103 4.0182004 7355.9663
+53697.16855047853 4.0182004 7356.5571
+53698.16855052602 4.0182791 7355.9663
+53699.16855057352 4.0183973 7356.1636
+53700.16855062102 4.0183578 7356.1636
+53701.16855066852 4.0184364 7355.3765
+53702.16855071601 4.018476 7355.3765
+53703.16855076351 4.0185547 7356.1636
+53704.16855081101 4.0187516 7355.7695
+53705.16855085851 4.0187516 7356.3604
+53706.168550906 4.0188303 7355.1797
+53707.1685509535 4.0188694 7355.9663
+53708.168551001 4.0190272 7355.5728
+53709.1685510485 4.0190272 7355.9663
+53710.16855109599 4.0191846 7356.1636
+53711.16855114349 4.0193028 7355.7695
+53712.16855119099 4.0193419 7356.7539
+53713.16855123849 4.0193815 7355.1797
+53714.16855128598 4.0194993 7354.9824
+53715.16855133348 4.0196571 7356.7539
+53716.16855138098 4.0196962 7356.1636
+53717.16855142848 4.0197749 7356.5571
+53718.16855147597 4.0198145 7355.1797
+53719.16855152347 4.0199327 7355.5728
+53720.16855157097 4.0200114 7355.9663
+53721.16855161847 4.0199327 7356.1636
+53722.16855166596 4.0201292 7356.3604
+53723.16855171346 4.0201688 7355.9663
+53724.16855176096 4.0202079 7355.9663
+53725.16855180846 4.0203261 7355.7695
+53726.16855185595 4.0204444 7356.1636
+53727.16855190345 4.0205231 7355.7695
+53728.16855195095 4.0206017 7356.3604
+53729.16855199845 4.02072 7355.7695
+53730.16855204594 4.0208383 7355.1797
+53731.16855209344 4.0208774 7356.1636
+53732.16855214094 4.020956 7355.7695
+53733.16855218844 4.0210743 7356.3604
+53734.16855223593 4.0210743 7356.5571
+53735.16855228343 4.0213103 7356.7539
+53736.16855233093 4.021389 7356.7539
+53737.16855237843 4.0213103 7356.1636
+53738.16855242592 4.0215073 7356.7539
+53739.16855247342 4.0215859 7355.3765
+53740.16855252092 4.0217433 7356.3604
+53741.16855256842 4.0218616 7355.7695
+53742.16855261591 4.0219402 7355.5728
+53743.16855266341 4.0219011 7355.9663
+53744.16855271091 4.0219798 7355.7695
+53745.16855275841 4.0221372 7355.9663
+53746.1685528059 4.0221767 7355.9663
+53747.1685528534 4.0223341 7356.5571
+53748.1685529009 4.0222945 7356.1636
+53749.16855294839 4.0223341 7356.1636
+53750.16855299589 4.0224915 7355.3765
+53751.16855304339 4.0225701 7356.1636
+53752.16855309089 4.0226097 7356.3604
+53753.16855313838 4.0226884 7356.3604
+53754.16855318588 4.0226488 7356.7539
+53755.16855323338 4.0228457 7355.9663
+53756.16855328088 4.0228853 7355.5728
+53757.16855332837 4.022964 7355.9663
+53758.16855337587 4.0230823 7355.5728
+53759.16855342337 4.0231214 7355.7695
+53760.16855347087 4.0232787 7356.1636
+53761.16855351836 4.0232396 7355.7695
+53762.16855356586 4.0233579 7356.7539
+53763.16855361336 4.0234365 7356.3604
+53764.16855366086 4.0235543 7355.1797
+53765.16855370835 4.0235939 7356.3604
+53766.16855375585 4.0237908 7355.9663
+53767.16855380335 4.0237122 7355.9663
+53768.16855385085 4.0238299 7355.9663
+53769.16855389834 4.0239878 7355.3765
+53770.16855394584 4.0240664 7355.9663
+53771.16855399334 4.0241055 7356.1636
+53772.16855404084 4.0242634 7356.1636
+53773.16855408833 4.0243025 7356.3604
+53774.16855413583 4.0243812 7356.1636
+53775.16855418333 4.0243812 7355.9663
+53776.16855423083 4.024539 7356.1636
+53777.16855427832 4.024539 7355.9663
+53778.16855432582 4.0246568 7355.9663
+53779.16855437332 4.0247355 7356.1636
+53780.16855442082 4.0248537 7355.9663
+53781.16855446831 4.024972 7356.5571
+53782.16855451581 4.0250897 7356.1636
+53783.16855456331 4.0251689 7356.1636
+53784.16855461081 4.0252867 7355.9663
+53785.1685546583 4.0253654 7356.1636
+53786.1685547058 4.0254049 7355.9663
+53787.1685547533 4.0255232 7356.3604
+53788.1685548008 4.0256805 7356.3604
+53789.16855484829 4.0256805 7355.9663
+53790.16855489579 4.0257592 7356.1636
+53791.16855494329 4.0258775 7356.3604
+53792.16855499079 4.0259166 7356.1636
+53793.16855503828 4.0261135 7356.3604
+53794.16855508578 4.0260744 7355.9663
+53795.16855513328 4.0262318 7356.3604
+53796.16855518078 4.0263104 7356.1636
+53797.16855522827 4.0263104 7356.3604
+53798.16855527577 4.0264678 7356.1636
+53799.16855532327 4.0265861 7356.1636
+53800.16855537076 4.0267043 7356.7539
+53801.16855541826 4.0267434 7356.1636
+53802.16855546576 4.026783 7355.9663
+53803.16855551326 4.0268221 7356.1636
+53804.16855556075 4.0269403 7356.5571
+53805.16855560825 4.0270977 7356.3604
+53806.16855565575 4.0269794 7355.5728
+53807.16855570325 4.0271373 7355.7695
+53808.16855575074 4.0273342 7355.3765
+53809.16855579824 4.0273733 7355.9663
+53810.16855584574 4.0273733 7355.9663
+53811.16855589324 4.0274916 7356.3604
+53812.16855594073 4.0275702 7356.5571
+53813.16855598823 4.0275702 7356.9502
+53814.16855603573 4.0276093 7356.3604
+53815.16855608323 4.0276489 7355.7695
+53816.16855613072 4.0278459 7356.1636
+53817.16855617822 4.027885 7355.9663
+53818.16855622572 4.0279245 7356.1636
+53819.16855627322 4.0280428 7355.5728
+53820.16855632071 4.0282001 7355.3765
+53821.16855636821 4.0281215 7355.9663
+53822.16855641571 4.0282001 7355.9663
+53823.16855646321 4.0282788 7355.3765
+53824.1685565107 4.0283184 7354.9824
+53825.1685565582 4.0283575 7356.1636
+53826.1685566057 4.0285149 7356.1636
+53827.1685566532 4.0286727 7355.9663
+53828.16855670069 4.0286727 7355.5728
+53829.16855674819 4.0287514 7355.9663
+53830.16855679569 4.0288696 7355.5728
+53831.16855684319 4.0289483 7355.9663
+53832.16855689068 4.0289483 7356.5571
+53833.16855693818 4.0290661 7356.3604
+53834.16855698568 4.0292239 7355.9663
+53835.16855703318 4.0293026 7356.1636
+53836.16855708067 4.0293813 7355.3765
+53837.16855712817 4.0293813 7355.7695
+53838.16855717567 4.02946 7355.9663
+53839.16855722317 4.0295782 7356.1636
+53840.16855727066 4.0295386 7356.5571
+53841.16855731816 4.029696 7356.1636
+53842.16855736566 4.0297751 7355.7695
+53843.16855741316 4.0298142 7356.1636
+53844.16855746065 4.0299325 7355.1797
+53845.16855750815 4.0300899 7356.5571
+53846.16855755565 4.0300112 7356.5571
+53847.16855760315 4.0301294 7355.7695
+53848.16855765064 4.0302472 7355.5728
+53849.16855769814 4.030405 7356.5571
+53850.16855774564 4.0304441 7356.1636
+53851.16855779313 4.0304837 7355.5728
+53852.16855784063 4.0307198 7356.5571
+53853.16855788813 4.0306015 7355.1797
+53854.16855793563 4.0307593 7355.1797
+53855.16855798312 4.030838 7355.7695
+53856.16855803062 4.0309558 7356.1636
+53857.16855807812 4.0309954 7356.1636
+53858.16855812562 4.0311136 7355.9663
+53859.16855817311 4.0311527 7355.7695
+53860.16855822061 4.0311527 7355.7695
+53861.16855826811 4.0312314 7355.7695
+53862.16855831561 4.0313106 7356.5571
+53863.1685583631 4.0313497 7356.7539
+53864.1685584106 4.031507 7356.1636
+53865.1685584581 4.0316253 7355.3765
+53866.1685585056 4.0316648 7356.5571
+53867.16855855309 4.0317039 7355.9663
+53868.16855860059 4.0317435 7355.9663
+53869.16855864809 4.0319009 7355.7695
+53870.16855869559 4.0320978 7356.3604
+53871.16855874308 4.0320582 7356.1636
+53872.16855879058 4.0321369 7355.7695
+53873.16855883808 4.0323734 7355.9663
+53874.16855888558 4.0321765 7355.9663
+53875.16855893307 4.0323734 7355.7695
+53876.16855898057 4.0325308 7356.1636
+53877.16855902807 4.0324912 7355.5728
+53878.16855907557 4.0326095 7356.5571
+53879.16855912306 4.032649 7356.7539
+53880.16855917056 4.0328064 7356.5571
+53881.16855921806 4.0328455 7356.5571
+53882.16855926556 4.0328455 7356.1636
+53883.16855931305 4.0330033 7355.3765
+53884.16855936055 4.033082 7356.1636
+53885.16855940805 4.0331211 7355.9663
+53886.16855945555 4.0332789 7355.5728
+53887.16855950304 4.033318 7355.7695
+53888.16855955054 4.033318 7356.3604
+53889.16855959804 4.0334363 7356.3604
+53890.16855964554 4.0334363 7356.3604
+53891.16855969303 4.033515 7356.5571
+53892.16855974053 4.0336332 7356.5571
+53893.16855978803 4.0336723 7355.7695
+53894.16855983553 4.0336332 7356.7539
+53895.16855988302 4.0337119 7356.5571
+53896.16855993052 4.0337906 7356.1636
+53897.16855997802 4.0339479 7355.9663
+53898.16856002552 4.0339875 7355.9663
+53899.16856007301 4.0340662 7356.1636
+53900.16856012051 4.0341058 7355.5728
+53901.16856016801 4.0341058 7356.3604
+53902.1685602155 4.0341449 7356.3604
+53903.168560263 4.0342631 7355.9663
+53904.1685603105 4.0344205 7355.7695
+53905.168560358 4.0343418 7355.5728
+53906.16856040549 4.0344601 7355.9663
+53907.16856045299 4.0345387 7356.5571
+53908.16856050049 4.0345387 7355.3765
+53909.16856054799 4.0348144 7355.7695
+53910.16856059548 4.0347748 7356.3604
+53911.16856064298 4.034893 7355.9663
+53912.16856069048 4.0350113 7355.3765
+53913.16856073798 4.0349321 7356.5571
+53914.16856078547 4.03509 7355.9663
+53915.16856083297 4.0351686 7355.9663
+53916.16856088047 4.0352864 7356.5571
+53917.16856092797 4.035326 7355.5728
+53918.16856097546 4.035326 7356.7539
+53919.16856102296 4.0354047 7355.9663
+53920.16856107046 4.0354834 7356.1636
+53921.16856111796 4.0355229 7356.3604
+53922.16856116545 4.0358377 7355.7695
+53923.16856121295 4.0358377 7355.3765
+53924.16856126045 4.0358377 7355.7695
+53925.16856130795 4.0360742 7356.1636
+53926.16856135544 4.0360346 7355.7695
+53927.16856140294 4.0361528 7355.3765
+53928.16856145044 4.0362315 7356.1636
+53929.16856149794 4.0363498 7355.7695
+53930.16856154543 4.0362711 7356.1636
+53931.16856159293 4.0362711 7356.7539
+53932.16856164043 4.0364676 7355.9663
+53933.16856168793 4.0365858 7356.1636
+53934.16856173542 4.0366645 7356.1636
+53935.16856178292 4.0365858 7356.9502
+53936.16856183042 4.0367827 7356.1636
+53937.16856187792 4.036901 7356.5571
+53938.16856192541 4.036901 7356.7539
+53939.16856197291 4.036901 7356.5571
+53940.16856202041 4.0369797 7355.9663
+53941.16856206791 4.0371766 7356.5571
+53942.1685621154 4.0372553 7355.9663
+53943.1685621629 4.0372944 7356.1636
+53944.1685622104 4.037334 7356.5571
+53945.1685622579 4.037334 7355.9663
+53946.16856230539 4.0374517 7356.3604
+53947.16856235289 4.0376096 7355.9663
+53948.16856240039 4.0377669 7356.9502
+53949.16856244789 4.0378065 7355.9663
+53950.16856249538 4.0378456 7356.7539
+53951.16856254288 4.0379243 7356.1636
+53952.16856259038 4.0380816 7356.1636
+53953.16856263787 4.0381212 7356.3604
+53954.16856268537 4.0381608 7356.3604
+53955.16856273287 4.0381212 7356.1636
+53956.16856278037 4.0383182 7356.3604
+53957.16856282786 4.0384755 7356.1636
+53958.16856287536 4.0383968 7356.1636
+53959.16856292286 4.0385542 7355.9663
+53960.16856297036 4.0386724 7356.7539
+53961.16856301785 4.0386724 7355.9663
+53962.16856306535 4.0388298 7356.3604
+53963.16856311285 4.0388694 7355.1797
+53964.16856316035 4.0389085 7355.9663
+53965.16856320784 4.0389872 7356.7539
+53966.16856325534 4.0391054 7355.7695
+53967.16856330284 4.0390663 7355.5728
+53968.16856335034 4.039145 7356.3604
+53969.16856339783 4.0393023 7356.1636
+53970.16856344533 4.0393419 7355.7695
+53971.16856349283 4.0394206 7355.3765
+53972.16856354033 4.039578 7355.9663
+53973.16856358782 4.0396962 7355.9663
+53974.16856363532 4.0397353 7355.9663
+53975.16856368282 4.0397353 7355.9663
+53976.16856373032 4.0398536 7355.5728
+53977.16856377781 4.039814 7356.5571
+53978.16856382531 4.0400109 7356.1636
+53979.16856387281 4.0400109 7356.1636
+53980.16856392031 4.0400896 7355.5728
+53981.1685639678 4.0402474 7355.9663
+53982.1685640153 4.0401683 7355.7695
+53983.1685640628 4.0403652 7356.1636
+53984.1685641103 4.0404439 7355.9663
+53985.16856415779 4.0406017 7356.3604
+53986.16856420529 4.0406017 7356.5571
+53987.16856425279 4.0407591 7355.9663
+53988.16856430029 4.0407982 7355.7695
+53989.16856434778 4.0407591 7356.1636
+53990.16856439528 4.0407982 7356.3604
+53991.16856444278 4.040956 7356.1636
+53992.16856449028 4.0410347 7355.7695
+53993.16856453777 4.0410738 7355.5728
+53994.16856458527 4.0412707 7355.9663
+53995.16856463277 4.0413103 7355.7695
+53996.16856468027 4.0414281 7355.7695
+53997.16856472776 4.0414281 7356.3604
+53998.16856477526 4.0415859 7356.5571
+53999.16856482276 4.041625 7356.1636
+54000.16856487026 4.0416646 7356.5571
+54001.16856491775 4.041822 7355.1797
+54002.16856496525 4.0418615 7356.1636
+54003.16856501275 4.042058 7355.7695
+54004.16856506024 4.0420189 7356.1636
+54005.16856510774 4.0421371 7355.9663
+54006.16856515524 4.0421762 7356.3604
+54007.16856520274 4.0422549 7356.3604
+54008.16856525023 4.0424128 7355.7695
+54009.16856529773 4.0424519 7355.7695
+54010.16856534523 4.0424128 7356.3604
+54011.16856539273 4.0426879 7355.5728
+54012.16856544022 4.0425305 7356.1636
+54013.16856548772 4.0426879 7356.3604
+54014.16856553522 4.042767 7356.1636
+54015.16856558272 4.0429635 7356.1636
+54016.16856563021 4.0429244 7356.1636
+54017.16856567771 4.0429635 7356.3604
+54018.16856572521 4.0430031 7356.3604
+54019.16856577271 4.0431213 7356.3604
+54020.1685658202 4.0432391 7355.7695
+54021.1685658677 4.0432787 7356.7539
+54022.1685659152 4.0434361 7355.9663
+54023.1685659627 4.0434756 7355.9663
+54024.16856601019 4.0435934 7356.3604
+54025.16856605769 4.043633 7356.1636
+54026.16856610519 4.0438299 7356.1636
+54027.16856615269 4.0437903 7355.5728
+54028.16856620018 4.0439482 7354.9824
+54029.16856624768 4.0439873 7355.7695
+54030.16856629518 4.0440269 7355.9663
+54031.16856634268 4.0443025 7355.7695
+54032.16856639017 4.0443416 7356.1636
+54033.16856643767 4.0444598 7355.9663
+54034.16856648517 4.0444598 7355.9663
+54035.16856653267 4.0446568 7355.3765
+54036.16856658016 4.0446568 7356.1636
+54037.16856662766 4.0448532 7356.5571
+54038.16856667516 4.0448141 7355.7695
+54039.16856672266 4.0448141 7356.1636
+54040.16856677015 4.0449715 7356.1636
+54041.16856681765 4.0450501 7356.1636
+54042.16856686515 4.0451288 7356.5571
+54043.16856691265 4.0452867 7356.3604
+54044.16856696014 4.0453258 7355.5728
+54045.16856700764 4.0454044 7355.9663
+54046.16856705514 4.0455227 7356.1636
+54047.16856710264 4.0456014 7355.9663
+54048.16856715013 4.0457196 7356.9502
+54049.16856719763 4.0457196 7356.1636
+54050.16856724513 4.045877 7355.1797
+54051.16856729263 4.0459166 7356.5571
+54052.16856734012 4.0461526 7356.5571
+54053.16856738762 4.0461135 7356.3604
+54054.16856743512 4.0462708 7356.1636
+54055.16856748261 4.0462313 7355.9663
+54056.16856753011 4.0463099 7355.3765
+54057.16856757761 4.0464282 7355.7695
+54058.16856762511 4.0466251 7356.5571
+54059.1685676726 4.0465856 7356.3604
+54060.1685677201 4.0467434 7355.9663
+54061.1685677676 4.0467825 7356.5571
+54062.1685678151 4.0469007 7356.3604
+54063.16856786259 4.0469007 7355.9663
+54064.16856791009 4.0470581 7355.5728
+54065.16856795759 4.0471764 7357.3442
+54066.16856800509 4.047255 7356.5571
+54067.16856805258 4.047255 7356.1636
+54068.16856810008 4.0475307 7356.1636
+54069.16856814758 4.0476093 7355.9663
+54070.16856819508 4.0475307 7356.3604
+54071.16856824257 4.047688 7356.1636
+54072.16856829007 4.0478454 7355.7695
+54073.16856833757 4.0478849 7355.9663
+54074.16856838507 4.0479636 7356.3604
+54075.16856843256 4.0480819 7356.5571
+54076.16856848006 4.0480819 7355.9663
+54077.16856852756 4.0482392 7356.5571
+54078.16856857506 4.0483575 7356.3604
+54079.16856862255 4.0483966 7355.7695
+54080.16856867005 4.0486331 7356.3604
+54081.16856871755 4.0486331 7356.7539
+54082.16856876505 4.0487905 7355.9663
+54083.16856881254 4.0488296 7356.3604
+54084.16856886004 4.0488296 7355.5728
+54085.16856890754 4.0488691 7355.9663
+54086.16856895504 4.0490661 7355.7695
+54087.16856900253 4.0492234 7355.1797
+54088.16856905003 4.0491843 7355.7695
+54089.16856909753 4.0493021 7355.9663
+54090.16856914503 4.0494204 7356.7539
+54091.16856919252 4.0494204 7355.9663
+54092.16856924002 4.0495386 7356.1636
+54093.16856928752 4.0495777 7356.1636
+54094.16856933502 4.0497351 7355.5728
+54095.16856938251 4.0496173 7355.3765
+54096.16856943001 4.0497351 7355.9663
+54097.16856947751 4.0497351 7356.3604
+54098.16856952501 4.0498929 7356.5571
+54099.1685695725 4.0500107 7355.3765
+54100.16856962 4.0500107 7356.1636
+54101.1685696675 4.0499716 7356.3604
+54102.168569715 4.0500894 7355.5728
+54103.16856976249 4.0502076 7355.9663
+54104.16856980999 4.0503259 7356.7539
+54105.16856985749 4.0503259 7355.5728
+54106.16856990498 4.0504441 7355.9663
+54107.16856995248 4.0505228 7355.9663
+54108.16856999998 4.0505228 7355.9663
+54109.16857004748 4.0506406 7355.5728
+54110.16857009497 4.0507193 7355.7695
+54111.16857014247 4.0507588 7355.9663
+54112.16857018997 4.0508375 7356.7539
+54113.16857023747 4.0508771 7355.5728
+54114.16857028496 4.0509558 7354.9824
+54115.16857033246 4.0510345 7355.9663
+54116.16857037996 4.0509162 7355.5728
+54117.16857042746 4.0511131 7356.3604
+54118.16857047495 4.0511918 7355.9663
+54119.16857052245 4.0513496 7355.3765
+54120.16857056995 4.0513101 7355.9663
+54121.16857061745 4.0514283 7355.7695
+54122.16857066494 4.0514674 7355.9663
+54123.16857071244 4.0515461 7355.7695
+54124.16857075994 4.0516248 7356.7539
+54125.16857080744 4.0516644 7355.9663
+54126.16857085493 4.0519004 7355.7695
+54127.16857090243 4.0518613 7355.1797
+54128.16857094993 4.0519795 7355.7695
+54129.16857099743 4.0520973 7354.9824
+54130.16857104492 4.052176 7356.1636
+54131.16857109242 4.0523338 7356.5571
+54132.16857113992 4.0522943 7356.3604
+54133.16857118742 4.0526094 7356.5571
+54134.16857123491 4.0525303 7356.5571
+54135.16857128241 4.0527272 7355.3765
+54136.16857132991 4.0527272 7356.1636
+54137.16857137741 4.0528851 7355.7695
+54138.1685714249 4.0530028 7356.3604
+54139.1685714724 4.0530815 7356.3604
+54140.1685715199 4.0531211 7355.3765
+54141.1685715674 4.0531602 7355.5728
+54142.16857161489 4.053318 7356.7539
+54143.16857166239 4.0533571 7356.5571
+54144.16857170989 4.0534358 7355.5728
+54145.16857175739 4.0536723 7356.3604
+54146.16857180488 4.0537901 7356.7539
+54147.16857185238 4.0537901 7356.1636
+54148.16857189988 4.0539083 7355.3765
+54149.16857194738 4.0539479 7356.9502
+54150.16857199487 4.0541053 7355.5728
+54151.16857204237 4.0541449 7355.5728
+54152.16857208987 4.0542626 7356.1636
+54153.16857213737 4.0543809 7355.5728
+54154.16857218486 4.0543809 7355.7695
+54155.16857223236 4.0544596 7355.9663
+54156.16857227986 4.0546169 7355.7695
+54157.16857232735 4.0547352 7356.1636
+54158.16857237485 4.0547352 7356.1636
+54159.16857242235 4.0548139 7356.7539
+54160.16857246985 4.0549712 7355.9663
+54161.16857251734 4.0549712 7356.5571
+54162.16857256484 4.0550108 7356.5571
+54163.16857261234 4.0551682 7357.3442
+54164.16857265984 4.0552864 7355.1797
+54165.16857270733 4.0554047 7355.9663
+54166.16857275483 4.0554833 7356.3604
+54167.16857280233 4.0555224 7355.5728
+54168.16857284983 4.0556407 7355.3765
+54169.16857289732 4.055759 7355.9663
+54170.16857294482 4.0556803 7354.9824
+54171.16857299232 4.0559554 7356.1636
+54172.16857303982 4.0559554 7356.3604
+54173.16857308731 4.0561523 7356.5571
+54174.16857313481 4.056231 7355.9663
+54175.16857318231 4.0561919 7355.9663
+54176.16857322981 4.0562706 7356.7539
+54177.1685732773 4.0563493 7356.1636
+54178.1685733248 4.056428 7355.5728
+54179.1685733723 4.0565858 7356.5571
+54180.1685734198 4.0566645 7356.5571
+54181.16857346729 4.0566249 7356.7539
+54182.16857351479 4.0567431 7355.3765
+54183.16857356229 4.0569005 7355.9663
+54184.16857360979 4.0569401 7355.7695
+54185.16857365728 4.0569792 7356.3604
+54186.16857370478 4.0570974 7355.3765
+54187.16857375228 4.0570974 7356.9502
+54188.16857379978 4.0571761 7356.5571
+54189.16857384727 4.0573335 7356.3604
+54190.16857389477 4.0574517 7356.1636
+54191.16857394227 4.0574908 7355.1797
+54192.16857398977 4.0574908 7356.1636
+54193.16857403726 4.0576487 7356.1636
+54194.16857408476 4.0577273 7355.1797
+54195.16857413226 4.0577664 7356.1636
+54196.16857417976 4.0578456 7355.9663
+54197.16857422725 4.0578847 7356.5571
+54198.16857427475 4.058042 7355.5728
+54199.16857432225 4.0580816 7355.3765
+54200.16857436975 4.058239 7355.3765
+54201.16857441724 4.0583177 7355.7695
+54202.16857446474 4.0583963 7355.9663
+54203.16857451224 4.0585542 7356.1636
+54204.16857455974 4.0587115 7355.9663
+54205.16857460723 4.058672 7356.7539
+54206.16857465473 4.0588298 7356.1636
+54207.16857470223 4.0589085 7356.3604
+54208.16857474972 4.0589476 7355.9663
+54209.16857479722 4.0591054 7355.5728
+54210.16857484472 4.0590658 7356.3604
+54211.16857489222 4.0591841 7355.9663
+54212.16857493971 4.0593019 7356.3604
+54213.16857498721 4.0594201 7355.7695
+54214.16857503471 4.0594597 7356.3604
+54215.16857508221 4.0594988 7355.3765
+54216.1685751297 4.0597353 7355.7695
+54217.1685751772 4.0596957 7355.5728
+54218.1685752247 4.0598531 7355.9663
+54219.1685752722 4.0599713 7356.3604
+54220.16857531969 4.06005 7355.9663
+54221.16857536719 4.0599713 7355.9663
+54222.16857541469 4.0600896 7355.7695
+54223.16857546219 4.0602469 7355.3765
+54224.16857550968 4.0603256 7356.3604
+54225.16857555718 4.0603652 7355.7695
+54226.16857560468 4.0604043 7355.9663
+54227.16857565218 4.0605617 7355.7695
+54228.16857569967 4.0607586 7355.9663
+54229.16857574717 4.0606799 7355.7695
+54230.16857579467 4.0608768 7356.3604
+54231.16857584217 4.0608373 7356.3604
+54232.16857588966 4.0609555 7356.7539
+54233.16857593716 4.0609555 7355.9663
+54234.16857598466 4.0611525 7355.5728
+54235.16857603216 4.0612707 7356.1636
+54236.16857607965 4.0614281 7355.7695
+54237.16857612715 4.0614672 7356.1636
+54238.16857617465 4.061625 7356.3604
+54239.16857622215 4.0615463 7355.3765
+54240.16857626964 4.0617428 7356.3604
+54241.16857631714 4.0619006 7355.9663
+54242.16857636464 4.061861 7356.1636
+54243.16857641214 4.0619006 7356.3604
+54244.16857645963 4.0620184 7355.7695
+54245.16857650713 4.0620971 7356.5571
+54246.16857655463 4.0622153 7356.1636
+54247.16857660213 4.0623727 7355.5728
+54248.16857664962 4.0624123 7355.5728
+54249.16857669712 4.0626092 7355.5728
+54250.16857674462 4.0626092 7355.3765
+54251.16857679212 4.0626483 7355.5728
+54252.16857683961 4.0627666 7356.5571
+54253.16857688711 4.062727 7356.3604
+54254.16857693461 4.0628452 7356.1636
+54255.16857698211 4.0630422 7355.5728
+54256.1685770296 4.0630817 7355.7695
+54257.1685770771 4.0631995 7355.7695
+54258.1685771246 4.0632782 7354.7856
+54259.1685771721 4.0633965 7355.3765
+54260.16857721959 4.0634751 7354.9824
+54261.16857726709 4.0636721 7355.9663
+54262.16857731459 4.0636721 7356.3604
+54263.16857736208 4.0637903 7356.9502
+54264.16857740958 4.0638294 7356.7539
+54265.16857745708 4.0639477 7355.7695
+54266.16857750458 4.0640264 7355.9663
+54267.16857755207 4.0641446 7355.9663
+54268.16857759957 4.064302 7356.5571
+54269.16857764707 4.0643415 7356.3604
+54270.16857769457 4.0644202 7356.3604
+54271.16857774206 4.0645776 7356.3604
+54272.16857778956 4.0646563 7356.1636
+54273.16857783706 4.0647745 7355.9663
+54274.16857788456 4.0647745 7355.5728
+54275.16857793205 4.0649319 7355.9663
+54276.16857797955 4.0649319 7356.7539
+54277.16857802705 4.0650892 7355.7695
+54278.16857807455 4.0652862 7356.1636
+54279.16857812204 4.0653257 7355.9663
+54280.16857816954 4.0655227 7356.3604
+54281.16857821704 4.0656404 7355.5728
+54282.16857826454 4.0657191 7356.1636
+54283.16857831203 4.0657587 7355.3765
+54284.16857835953 4.0657191 7355.9663
+54285.16857840703 4.0660343 7355.9663
+54286.16857845453 4.066113 7356.1636
+54287.16857850202 4.066113 7356.9502
+54288.16857854952 4.0661917 7355.7695
+54289.16857859702 4.066349 7356.1636
+54290.16857864452 4.0663886 7355.5728
+54291.16857869201 4.0665069 7355.3765
+54292.16857873951 4.0666246 7356.1636
+54293.16857878701 4.0667429 7356.1636
+54294.16857883451 4.0668612 7355.9663
+54295.168578882 4.0669003 7356.3604
+54296.1685789295 4.0669398 7355.7695
+54297.168578977 4.0670972 7355.7695
+54298.1685790245 4.0671368 7355.9663
+54299.16857907199 4.0673332 7355.9663
+54300.16857911949 4.0674124 7356.1636
+54301.16857916699 4.0675697 7356.5571
+54302.16857921449 4.067688 7356.3604
+54303.16857926198 4.0677667 7355.3765
+54304.16857930948 4.0678058 7355.9663
+54305.16857935698 4.0680423 7356.3604
+54306.16857940448 4.068121 7356.1636
+54307.16857945197 4.0680423 7356.1636
+54308.16857949947 4.0682387 7355.7695
+54309.16857954697 4.068357 7355.7695
+54310.16857959447 4.0685143 7355.9663
+54311.16857964196 4.068593 7355.3765
+54312.16857968946 4.0686326 7356.7539
+54313.16857973696 4.0686326 7354.9824
+54314.16857978445 4.0687509 7355.7695
+54315.16857983195 4.0688295 7355.7695
+54316.16857987945 4.0689478 7355.5728
+54317.16857992695 4.0689869 7355.9663
+54318.16857997444 4.0690265 7355.9663
+54319.16858002194 4.0691442 7356.3604
+54320.16858006944 4.0693021 7355.1797
+54321.16858011694 4.0693808 7355.5728
+54322.16858016443 4.0693412 7356.3604
+54323.16858021193 4.0694985 7356.1636
+54324.16858025943 4.0694594 7356.5571
+54325.16858030693 4.0696168 7356.3604
+54326.16858035442 4.0697351 7356.1636
+54327.16858040192 4.0697351 7355.9663
+54328.16858044942 4.0698924 7355.5728
+54329.16858049692 4.069932 7355.3765
+54330.16858054441 4.0701284 7355.9663
+54331.16858059191 4.0700893 7356.3604
+54332.16858063941 4.0702863 7355.7695
+54333.16858068691 4.0702076 7356.3604
+54334.1685807344 4.0704436 7356.3604
+54335.1685807819 4.0705223 7355.3765
+54336.1685808294 4.0705619 7355.9663
+54337.1685808769 4.0706406 7355.7695
+54338.16858092439 4.070601 7355.3765
+54339.16858097189 4.0708766 7355.9663
+54340.16858101939 4.0708375 7355.7695
+54341.16858106689 4.0709553 7356.7539
+54342.16858111438 4.0710735 7355.9663
+54343.16858116188 4.0711918 7355.9663
+54344.16858120938 4.0712309 7356.9502
+54345.16858125688 4.0712705 7356.1636
+54346.16858130437 4.0715065 7356.3604
+54347.16858135187 4.0715065 7355.9663
+54348.16858139937 4.0716248 7355.9663
+54349.16858144687 4.0715852 7355.9663
+54350.16858149436 4.0718217 7356.5571
+54351.16858154186 4.0718217 7356.5571
+54352.16858158936 4.0719395 7355.3765
+54353.16858163686 4.0719395 7356.3604
+54354.16858168435 4.0720577 7355.7695
+54355.16858173185 4.0720973 7356.1636
+54356.16858177935 4.0720973 7356.7539
+54357.16858182685 4.0722547 7355.9663
+54358.16858187434 4.0723729 7356.9502
+54359.16858192184 4.0723333 7355.7695
+54360.16858196934 4.072412 7356.9502
+54361.16858201684 4.0724516 7355.5728
+54362.16858206433 4.0726089 7356.1636
+54363.16858211183 4.0726876 7356.3604
+54364.16858215933 4.0728059 7355.3765
+54365.16858220682 4.0728846 7356.5571
+54366.16858225432 4.0728846 7355.9663
+54367.16858230182 4.0729632 7356.1636
+54368.16858234932 4.0731206 7355.5728
+54369.16858239681 4.0731993 7356.1636
+54370.16858244431 4.0732388 7355.9663
+54371.16858249181 4.0733175 7356.9502
+54372.16858253931 4.0733962 7355.7695
+54373.1685825868 4.0734358 7355.5728
+54374.1685826343 4.0734749 7356.1636
+54375.1685826818 4.0735931 7356.3604
+54376.1685827293 4.0735931 7356.7539
+54377.16858277679 4.0737505 7356.1636
+54378.16858282429 4.0738292 7355.7695
+54379.16858287179 4.0738688 7355.9663
+54380.16858291929 4.0740261 7356.1636
+54381.16858296678 4.0741048 7356.3604
+54382.16858301428 4.0741444 7356.1636
+54383.16858306178 4.0742626 7356.3604
+54384.16858310928 4.0743804 7355.9663
+54385.16858315677 4.0744987 7355.7695
+54386.16858320427 4.0745773 7356.5571
+54387.16858325177 4.074656 7355.5728
+54388.16858329927 4.0746956 7355.3765
+54389.16858334676 4.0747743 7355.5728
+54390.16858339426 4.0750103 7355.9663
+54391.16858344176 4.0749712 7356.7539
+54392.16858348926 4.0750499 7356.1636
+54393.16858353675 4.0752468 7356.7539
+54394.16858358425 4.0752468 7356.7539
+54395.16858363175 4.0753646 7357.1475
+54396.16858367925 4.0755615 7355.9663
+54397.16858372674 4.0754828 7355.3765
+54398.16858377424 4.0756402 7355.5728
+54399.16858382174 4.0757194 7356.1636
+54400.16858386924 4.0758371 7355.5728
+54401.16858391673 4.0758767 7356.1636
+54402.16858396423 4.0759945 7356.1636
+54403.16858401173 4.0760736 7356.9502
+54404.16858405923 4.0761523 7355.7695
+54405.16858410672 4.076231 7355.9663
+54406.16858415422 4.076231 7355.9663
+54407.16858420172 4.0763493 7356.3604
+54408.16858424922 4.0763884 7355.9663
+54409.16858429671 4.076467 7355.5728
+54410.16858434421 4.076467 7356.3604
+54411.16858439171 4.0765853 7355.5728
+54412.16858443921 4.0765853 7355.7695
+54413.1685844867 4.0767035 7355.5728
+54414.1685845342 4.0768213 7356.7539
+54415.1685845817 4.0768213 7356.1636
+54416.16858462919 4.0768609 7355.9663
+54417.16858467669 4.0770578 7356.1636
+54418.16858472419 4.0770969 7356.1636
+54419.16858477169 4.0771365 7355.3765
+54420.16858481918 4.0772152 7355.5728
+54421.16858486668 4.0772152 7356.3604
+54422.16858491418 4.0773726 7355.3765
+54423.16858496168 4.0774908 7355.7695
+54424.16858500917 4.0775695 7355.9663
+54425.16858505667 4.0777268 7356.1636
+54426.16858510417 4.0777268 7356.7539
+54427.16858515167 4.0779634 7356.3604
+54428.16858519916 4.0780025 7355.9663
+54429.16858524666 4.0781207 7355.5728
+54430.16858529416 4.0781994 7356.3604
+54431.16858534166 4.0783176 7356.1636
+54432.16858538915 4.078475 7355.5728
+54433.16858543665 4.0785537 7356.5571
+54434.16858548415 4.0786719 7356.5571
+54435.16858553165 4.078711 7356.3604
+54436.16858557914 4.0788293 7355.9663
+54437.16858562664 4.078908 7355.7695
+54438.16858567414 4.0789866 7355.9663
+54439.16858572164 4.0791445 7356.5571
+54440.16858576913 4.0792232 7355.9663
+54441.16858581663 4.0793409 7355.3765
+54442.16858586413 4.0793805 7356.7539
+54443.16858591163 4.0794988 7356.3604
+54444.16858595912 4.0795774 7355.5728
+54445.16858600662 4.0797744 7355.7695
+54446.16858605412 4.0797348 7355.3765
+54447.16858610162 4.0798922 7356.5571
+54448.16858614911 4.0800104 7355.7695
+54449.16858619661 4.0800104 7355.9663
+54450.16858624411 4.0800891 7355.1797
+54451.16858629161 4.0801678 7356.3604
+54452.1685863391 4.080286 7356.5571
+54453.1685863866 4.0804043 7356.7539
+54454.1685864341 4.0804434 7356.7539
+54455.1685864816 4.0806007 7355.5728
+54456.16858652909 4.080719 7356.5571
+54457.16858657659 4.0807586 7356.5571
+54458.16858662409 4.0809159 7354.9824
+54459.16858667159 4.0808764 7356.9502
+54460.16858671908 4.0812306 7355.5728
+54461.16858676658 4.0812306 7356.1636
+54462.16858681408 4.0813489 7356.5571
+54463.16858686158 4.0813885 7355.5728
+54464.16858690907 4.0814672 7355.7695
+54465.16858695657 4.0816641 7354.9824
+54466.16858700407 4.0817819 7356.1636
+54467.16858705156 4.0819001 7356.5571
+54468.16858709906 4.0819397 7355.9663
+54469.16858714656 4.0820971 7355.9663
+54470.16858719406 4.0821362 7355.7695
+54471.16858724155 4.0822544 7355.1797
+54472.16858728905 4.0824513 7356.3604
+54473.16858733655 4.0824513 7355.5728
+54474.16858738405 4.0826087 7355.3765
+54475.16858743154 4.082727 7356.3604
+54476.16858747904 4.0828452 7356.5571
+54477.16858752654 4.0829239 7355.9663
+54478.16858757404 4.0829239 7355.9663
+54479.16858762153 4.0831599 7356.3604
+54480.16858766903 4.0831599 7356.5571
+54481.16858771653 4.0832386 7356.5571
+54482.16858776403 4.0833569 7356.5571
+54483.16858781152 4.0833569 7355.9663
+54484.16858785902 4.0833964 7355.9663
+54485.16858790652 4.0835929 7356.9502
+54486.16858795402 4.0836325 7355.9663
+54487.16858800151 4.0837111 7356.5571
+54488.16858804901 4.0838294 7356.5571
+54489.16858809651 4.0837507 7355.7695
+54490.16858814401 4.0839081 7355.9663
+54491.1685881915 4.084105 7355.9663
+54492.168588239 4.0841441 7355.9663
+54493.1685882865 4.084341 7356.3604
+54494.168588334 4.0842624 7356.3604
+54495.16858838149 4.084341 7356.1636
+54496.16858842899 4.0844197 7356.3604
+54497.16858847649 4.084538 7355.5728
+54498.16858852399 4.0847349 7356.3604
+54499.16858857148 4.084774 7356.7539
+54500.16858861898 4.0848136 7356.5571
+54501.16858866648 4.0848923 7354.9824
+54502.16858871398 4.0851283 7356.9502
+54503.16858876147 4.0851283 7355.5728
+54504.16858880897 4.0852861 7356.9502
+54505.16858885647 4.0852861 7355.5728
+54506.16858890397 4.0853252 7355.7695
+54507.16858895146 4.0854435 7356.9502
+54508.16858899896 4.0856404 7355.9663
+54509.16858904646 4.0856795 7355.9663
+54510.16858909396 4.0857978 7355.9663
+54511.16858914145 4.0858765 7356.7539
+54512.16858918895 4.0859551 7356.3604
+54513.16858923645 4.0859947 7355.3765
+54514.16858928395 4.0862308 7356.3604
+54515.16858933144 4.086349 7355.5728
+54516.16858937894 4.0863881 7355.5728
+54517.16858942644 4.0864668 7356.1636
+54518.16858947393 4.086585 7355.9663
+54519.16858952143 4.0867424 7355.7695
+54520.16858956893 4.0868216 7355.3765
+54521.16858961643 4.0867424 7355.9663
+54522.16858966392 4.0869393 7355.5728
+54523.16858971142 4.0870576 7355.9663
+54524.16858975892 4.0870972 7355.7695
+54525.16858980642 4.0871758 7356.1636
+54526.16858985391 4.0872936 7356.1636
+54527.16858990141 4.0873332 7356.3604
+54528.16858994891 4.0875301 7355.9663
+54529.16858999641 4.0874906 7355.7695
+54530.1685900439 4.0876479 7356.5571
+54531.1685900914 4.0877662 7355.9663
+54532.1685901389 4.0876875 7356.1636
+54533.1685901864 4.0877662 7356.3604
+54534.16859023389 4.0879631 7355.5728
+54535.16859028139 4.0880418 7355.9663
+54536.16859032889 4.0882387 7356.5571
+54537.16859037639 4.0881205 7355.1797
+54538.16859042388 4.0882387 7355.5728
+54539.16859047138 4.0884748 7355.9663
+54540.16859051888 4.0885143 7356.1636
+54541.16859056638 4.0887113 7355.7695
+54542.16859061387 4.0887504 7356.9502
+54543.16859066137 4.088829 7355.5728
+54544.16859070887 4.0889473 7355.9663
+54545.16859075637 4.089026 7355.9663
+54546.16859080386 4.089026 7355.9663
+54547.16859085136 4.0891442 7356.7539
+54548.16859089886 4.0892625 7355.7695
+54549.16859094636 4.0893016 7355.5728
+54550.16859099385 4.0894589 7355.7695
+54551.16859104135 4.0896559 7356.7539
+54552.16859108885 4.0895772 7355.7695
+54553.16859113635 4.0896955 7355.7695
+54554.16859118384 4.0898132 7355.7695
+54555.16859123134 4.0898528 7354.9824
+54556.16859127884 4.0898132 7356.1636
+54557.16859132634 4.0899711 7355.5728
+54558.16859137383 4.0900497 7355.9663
+54559.16859142133 4.0901675 7355.1797
+54560.16859146883 4.0901675 7355.7695
+54561.16859151633 4.0903254 7355.1797
+54562.16859156382 4.090404 7354.9824
+54563.16859161132 4.0905614 7354.7856
+54564.16859165882 4.0905614 7354.1948
+54565.16859170632 4.0907583 7353.998
+54566.16859175381 4.0907187 7353.998
+54567.16859180131 4.0907979 7355.9663
+54568.16859184881 4.0908766 7355.7695
+54569.1685918963 4.0910339 7355.1797
+54570.1685919438 4.091073 7354.9824
+54571.1685919913 4.0912309 7356.3604
+54572.1685920388 4.0913095 7355.7695
+54573.16859208629 4.0913486 7354.9824
+54574.16859213379 4.0913882 7355.7695
+54575.16859218129 4.0916243 7354.5889
+54576.16859222879 4.0916243 7356.3604
+54577.16859227628 4.0917821 7356.9502
+54578.16859232378 4.0918212 7357.541
+54579.16859237128 4.0918999 7356.9502
+54580.16859241878 4.0919785 7356.5571
+54581.16859246627 4.0921755 7356.1636
+54582.16859251377 4.0922542 7355.9663
+54583.16859256127 4.0922542 7356.5571
+54584.16859260877 4.0923724 7357.3442
+54585.16859265626 4.0924511 7356.1636
+54586.16859270376 4.0926876 7356.7539
+54587.16859275126 4.0927663 7357.3442
+54588.16859279876 4.0927663 7357.1475
+54589.16859284625 4.0929632 7356.1636
+54590.16859289375 4.0929236 7356.3604
+54591.16859294125 4.093081 7355.9663
+54592.16859298875 4.0931993 7355.5728
+54593.16859303624 4.0931993 7355.7695
+54594.16859308374 4.0933962 7356.5571
+54595.16859313124 4.0933566 7355.7695
+54596.16859317874 4.0935535 7356.3604
+54597.16859322623 4.0936322 7355.9663
+54598.16859327373 4.0937896 7355.7695
+54599.16859332123 4.0939078 7356.3604
+54600.16859336873 4.0939474 7356.5571
+54601.16859341622 4.0941439 7356.7539
+54602.16859346372 4.0940652 7355.3765
+54603.16859351122 4.0942621 7356.1636
+54604.16859355872 4.0943408 7356.1636
+54605.16859360621 4.0943017 7355.5728
+54606.16859365371 4.0944986 7355.5728
+54607.16859370121 4.0945773 7356.5571
+54608.16859374871 4.094656 7356.1636
+54609.1685937962 4.0947347 7355.5728
+54610.1685938437 4.0948133 7356.1636
+54611.1685938912 4.0948529 7355.9663
+54612.1685939387 4.0950103 7354.9824
+54613.16859398619 4.0951676 7356.1636
+54614.16859403369 4.0951285 7356.7539
+54615.16859408119 4.0952072 7356.3604
+54616.16859412869 4.0952859 7355.7695
+54617.16859417618 4.0953646 7355.9663
+54618.16859422368 4.0954828 7356.7539
+54619.16859427118 4.0955219 7356.1636
+54620.16859431867 4.0956793 7355.9663
+54621.16859436617 4.0956793 7356.1636
+54622.16859441367 4.0958762 7356.1636
+54623.16859446117 4.0959158 7355.7695
+54624.16859450866 4.096034 7356.7539
+54625.16859455616 4.0960732 7355.9663
+54626.16859460366 4.0961914 7355.7695
+54627.16859465116 4.0963092 7356.9502
+54628.16859469865 4.0963092 7356.3604
+54629.16859474615 4.0963883 7355.5728
+54630.16859479365 4.0965457 7356.5571
+54631.16859484115 4.0966244 7355.3765
+54632.16859488864 4.0966244 7356.1636
+54633.16859493614 4.0967817 7356.3604
+54634.16859498364 4.0968604 7355.7695
+54635.16859503114 4.0969391 7356.3604
+54636.16859507863 4.0970182 7355.7695
+54637.16859512613 4.0970969 7355.7695
+54638.16859517363 4.0971756 7355.7695
+54639.16859522113 4.0972939 7357.1475
+54640.16859526862 4.0974116 7355.9663
+54641.16859531612 4.0974512 7356.9502
+54642.16859536362 4.0974512 7355.7695
+54643.16859541112 4.0975695 7355.3765
+54644.16859545861 4.0976481 7356.3604
+54645.16859550611 4.0978446 7356.5571
+54646.16859555361 4.0978055 7355.7695
+54647.16859560111 4.0980024 7356.3604
+54648.1685956486 4.0980415 7355.9663
+54649.1685956961 4.098278 7356.5571
+54650.1685957436 4.0983958 7356.1636
+54651.1685957911 4.0983958 7356.1636
+54652.16859583859 4.0985537 7355.7695
+54653.16859588609 4.0985537 7356.3604
+54654.16859593359 4.0986323 7355.9663
+54655.16859598109 4.0987897 7355.9663
+54656.16859602858 4.0988684 7355.9663
+54657.16859607608 4.098947 7355.5728
+54658.16859612358 4.0990653 7356.3604
+54659.16859617108 4.099144 7356.1636
+54660.16859621857 4.0992622 7356.3604
+54661.16859626607 4.0993409 7355.7695
+54662.16859631357 4.0994983 7356.1636
+54663.16859636107 4.099577 7356.9502
+54664.16859640856 4.0996952 7355.7695
+54665.16859645606 4.0996952 7356.1636
+54666.16859650356 4.0999312 7355.5728
+54667.16859655106 4.1000495 7356.5571
+54668.16859659855 4.1000495 7355.7695
+54669.16859664605 4.1000495 7355.9663
+54670.16859669355 4.1002464 7356.3604
+54671.16859674104 4.1002855 7355.7695
+54672.16859678854 4.1004038 7355.5728
+54673.16859683604 4.1004038 7355.9663
+54674.16859688354 4.1006398 7356.1636
+54675.16859693103 4.100719 7355.5728
+54676.16859697853 4.100719 7355.9663
+54677.16859702603 4.1009946 7356.5571
+54678.16859707353 4.1010733 7355.9663
+54679.16859712102 4.1011124 7355.7695
+54680.16859716852 4.101191 7356.1636
+54681.16859721602 4.1012306 7355.5728
+54682.16859726352 4.101388 7356.7539
+54683.16859731101 4.101388 7356.3604
+54684.16859735851 4.1015062 7355.3765
+54685.16859740601 4.1016636 7355.7695
+54686.16859745351 4.1017032 7356.5571
+54687.168597501 4.1017818 7356.1636
+54688.1685975485 4.1017818 7356.5571
+54689.168597596 4.1019788 7356.3604
+54690.1685976435 4.1020966 7356.5571
+54691.16859769099 4.1020966 7355.9663
+54692.16859773849 4.1022544 7355.9663
+54693.16859778599 4.1023722 7356.3604
+54694.16859783349 4.1024117 7355.9663
+54695.16859788098 4.1026478 7355.9663
+54696.16859792848 4.1027265 7355.3765
+54697.16859797598 4.1028447 7355.7695
+54698.16859802348 4.1030416 7356.1636
+54699.16859807097 4.1030416 7356.9502
+54700.16859811847 4.1032386 7356.1636
+54701.16859816597 4.1033173 7356.5571
+54702.16859821347 4.1034746 7355.7695
+54703.16859826096 4.1035929 7355.9663
+54704.16859830846 4.1036716 7356.3604
+54705.16859835596 4.1037502 7356.7539
+54706.16859840346 4.1037502 7356.1636
+54707.16859845095 4.1037898 7356.3604
+54708.16859849845 4.1039863 7356.1636
+54709.16859854595 4.1040654 7355.9663
+54710.16859859345 4.1042228 7356.1636
+54711.16859864094 4.1042619 7356.1636
+54712.16859868844 4.1043406 7356.3604
+54713.16859873594 4.1043801 7355.1797
+54714.16859878344 4.1044588 7356.3604
+54715.16859883093 4.1046162 7356.3604
+54716.16859887843 4.1046557 7356.1636
+54717.16859892593 4.1048131 7356.3604
+54718.16859897343 4.1049314 7356.3604
+54719.16859902092 4.1049314 7356.5571
+54720.16859906842 4.1048918 7356.7539
+54721.16859911592 4.1051283 7355.9663
+54722.16859916341 4.105207 7356.5571
+54723.16859921091 4.1053252 7355.7695
+54724.16859925841 4.1052856 7356.5571
+54725.16859930591 4.1055217 7355.9663
+54726.1685993534 4.1055613 7356.3604
+54727.1685994009 4.1056795 7355.9663
+54728.1685994484 4.1057582 7356.5571
+54729.1685994959 4.1059551 7355.9663
+54730.16859954339 4.1059551 7355.3765
+54731.16859959089 4.1060338 7355.7695
+54732.16859963839 4.1060729 7355.7695
+54733.16859968589 4.1062307 7355.7695
+54734.16859973338 4.1062698 7356.1636
+54735.16859978088 4.1064668 7355.9663
+54736.16859982838 4.1065454 7356.3604
+54737.16859987588 4.106585 7355.9663
+54738.16859992337 4.1067815 7355.9663
+54739.16859997087 4.1068606 7355.7695
+54740.16860001837 4.1069784 7356.3604
+54741.16860006587 4.1069393 7356.1636
+54742.16860011336 4.1070571 7356.7539
+54743.16860016086 4.1070967 7355.7695
+54744.16860020836 4.1071754 7356.1636
+54745.16860025586 4.107254 7356.5571
+54746.16860030335 4.1073327 7355.5728
+54747.16860035085 4.1075296 7355.5728
+54748.16860039835 4.1076479 7355.7695
+54749.16860044585 4.1076479 7356.5571
+54750.16860049334 4.1077266 7355.7695
+54751.16860054084 4.1078053 7355.7695
+54752.16860058834 4.1078839 7356.5571
+54753.16860063584 4.1079235 7356.5571
+54754.16860068333 4.1080809 7356.9502
+54755.16860073083 4.1081204 7356.3604
+54756.16860077833 4.1082382 7355.3765
+54757.16860082583 4.1083169 7355.5728
+54758.16860087332 4.1083961 7355.7695
+54759.16860092082 4.1084352 7355.5728
+54760.16860096832 4.1083961 7356.5571
+54761.16860101582 4.1086717 7356.3604
+54762.16860106331 4.1087503 7356.3604
+54763.16860111081 4.1089468 7356.3604
+54764.16860115831 4.1089864 7355.9663
+54765.16860120581 4.1091046 7356.3604
+54766.1686012533 4.1092224 7355.5728
+54767.1686013008 4.1093016 7355.9663
+54768.1686013483 4.1094193 7356.1636
+54769.1686013958 4.1094589 7355.9663
+54770.16860144329 4.109695 7355.9663
+54771.16860149079 4.1098132 7355.9663
+54772.16860153829 4.1098523 7356.1636
+54773.16860158578 4.1100101 7356.3604
+54774.16860163328 4.1100888 7356.3604
+54775.16860168078 4.1101675 7356.9502
+54776.16860172828 4.1102858 7356.1636
+54777.16860177577 4.1103644 7355.9663
+54778.16860182327 4.1104822 7356.3604
+54779.16860187077 4.11064 7356.3604
+54780.16860191827 4.11064 7356.1636
+54781.16860196576 4.110837 7356.7539
+54782.16860201326 4.1108761 7356.3604
+54783.16860206076 4.1110334 7356.7539
+54784.16860210826 4.1110334 7356.3604
+54785.16860215575 4.111073 7356.1636
+54786.16860220325 4.11127 7356.9502
+54787.16860225075 4.1113486 7356.1636
+54788.16860229825 4.1114273 7356.3604
+54789.16860234574 4.111506 7355.9663
+54790.16860239324 4.1115847 7356.7539
+54791.16860244074 4.111742 7355.7695
+54792.16860248824 4.1118212 7355.3765
+54793.16860253573 4.1118999 7355.5728
+54794.16860258323 4.1118999 7355.9663
+54795.16860263073 4.1120968 7356.3604
+54796.16860267823 4.1121755 7355.5728
+54797.16860272572 4.1121755 7356.7539
+54798.16860277322 4.1122932 7356.5571
+54799.16860282072 4.1123724 7355.7695
+54800.16860286822 4.1124511 7355.9663
+54801.16860291571 4.1125689 7355.9663
+54802.16860296321 4.1126475 7355.9663
+54803.16860301071 4.1128445 7356.3604
+54804.16860305821 4.1128445 7357.541
+54805.1686031057 4.1129627 7356.5571
+54806.1686031532 4.1131201 7356.5571
+54807.1686032007 4.1131201 7356.1636
+54808.1686032482 4.1131988 7356.3604
+54809.16860329569 4.1133566 7356.9502
+54810.16860334319 4.113317 7356.1636
+54811.16860339069 4.1136322 7356.3604
+54812.16860343819 4.1136713 7356.9502
+54813.16860348568 4.113553 7355.9663
+54814.16860353318 4.1138287 7356.9502
+54815.16860358068 4.1138287 7356.3604
+54816.16860362818 4.1139078 7356.7539
+54817.16860367567 4.1139865 7356.1636
+54818.16860372317 4.1141043 7355.7695
+54819.16860377067 4.1141829 7355.9663
+54820.16860381817 4.1143408 7356.5571
+54821.16860386566 4.1143408 7355.9663
+54822.16860391316 4.1144981 7355.9663
+54823.16860396066 4.1145377 7356.1636
+54824.16860400815 4.1146164 7355.7695
+54825.16860405565 4.1146555 7356.3604
+54826.16860410315 4.1147738 7355.5728
+54827.16860415065 4.1149311 7355.1797
+54828.16860419814 4.1150098 7356.1636
+54829.16860424564 4.1150885 7356.1636
+54830.16860429314 4.1150885 7356.5571
+54831.16860434064 4.1152463 7356.5571
+54832.16860438813 4.1152463 7355.5728
+54833.16860443563 4.1154823 7355.3765
+54834.16860448313 4.1155219 7356.3604
+54835.16860453063 4.1156006 7356.3604
+54836.16860457812 4.1156397 7355.7695
+54837.16860462562 4.1157975 7355.7695
+54838.16860467312 4.1158366 7356.3604
+54839.16860472062 4.1158762 7356.7539
+54840.16860476811 4.1160731 7356.1636
+54841.16860481561 4.1160336 7355.9663
+54842.16860486311 4.1163092 7356.1636
+54843.16860491061 4.1164274 7356.3604
+54844.1686049581 4.1165452 7356.9502
+54845.1686050056 4.1165452 7355.3765
+54846.1686050531 4.1166239 7356.3604
+54847.1686051006 4.1166635 7355.7695
+54848.16860514809 4.1168208 7356.3604
+54849.16860519559 4.1168604 7356.3604
+54850.16860524309 4.1170573 7355.3765
+54851.16860529059 4.1172147 7355.5728
+54852.16860533808 4.1172934 7356.3604
+54853.16860538558 4.1173329 7355.9663
+54854.16860543308 4.1174116 7356.3604
+54855.16860548058 4.1174903 7356.3604
+54856.16860552807 4.1176476 7355.7695
+54857.16860557557 4.1176872 7355.3765
+54858.16860562307 4.1177263 7355.7695
+54859.16860567057 4.1179233 7356.1636
+54860.16860571806 4.1180019 7356.1636
+54861.16860576556 4.1181593 7355.7695
+54862.16860581306 4.1181593 7355.5728
+54863.16860586056 4.1182775 7356.1636
+54864.16860590805 4.1184349 7356.3604
+54865.16860595555 4.1184745 7356.1636
+54866.16860600305 4.1185136 7356.1636
+54867.16860605055 4.1185927 7356.1636
+54868.16860609804 4.1187892 7356.5571
+54869.16860614554 4.1188288 7356.3604
+54870.16860619304 4.118947 7355.7695
+54871.16860624054 4.1190257 7356.5571
+54872.16860628803 4.1191044 7356.1636
+54873.16860633553 4.119144 7355.5728
+54874.16860638303 4.1193013 7355.3765
+54875.16860643053 4.1194587 7356.1636
+54876.16860647802 4.1194983 7356.3604
+54877.16860652552 4.119616 7356.5571
+54878.16860657302 4.1195769 7355.7695
+54879.16860662051 4.1198525 7355.9663
+54880.16860666801 4.1199312 7355.1797
+54881.16860671551 4.1198916 7356.3604
+54882.16860676301 4.1201282 7356.3604
+54883.1686068105 4.1201673 7356.7539
+54884.168606858 4.1202855 7356.1636
+54885.1686069055 4.1203246 7356.3604
+54886.168606953 4.1204429 7356.3604
+54887.16860700049 4.1205215 7356.3604
+54888.16860704799 4.1205611 7355.5728
+54889.16860709549 4.1206398 7356.3604
+54890.16860714299 4.1207581 7356.5571
+54891.16860719048 4.1208367 7355.5728
+54892.16860723798 4.1209154 7356.1636
+54893.16860728548 4.1209545 7355.5728
+54894.16860733298 4.1211123 7355.7695
+54895.16860738047 4.1211514 7355.3765
+54896.16860742797 4.121191 7355.9663
+54897.16860747547 4.1214271 7355.9663
+54898.16860752297 4.1214271 7356.7539
+54899.16860757046 4.1215057 7355.3765
+54900.16860761796 4.1217027 7355.9663
+54901.16860766546 4.1217422 7356.3604
+54902.16860771296 4.1218996 7355.7695
+54903.16860776045 4.1220179 7355.3765
+54904.16860780795 4.1220179 7355.7695
+54905.16860785545 4.1221752 7355.9663
+54906.16860790295 4.1222143 7356.3604
+54907.16860795044 4.1223326 7356.1636
+54908.16860799794 4.1224113 7356.5571
+54909.16860804544 4.1225295 7356.9502
+54910.16860809294 4.1226478 7355.9663
+54911.16860814043 4.1226478 7356.3604
+54912.16860818793 4.1229234 7355.5728
+54913.16860823543 4.1229234 7356.1636
+54914.16860828293 4.1230412 7355.7695
+54915.16860833042 4.1232381 7356.3604
+54916.16860837792 4.1232381 7356.9502
+54917.16860842542 4.1232777 7356.1636
+54918.16860847292 4.123435 7355.9663
+54919.16860852041 4.1235137 7356.3604
+54920.16860856791 4.1235137 7355.7695
+54921.16860861541 4.1237893 7356.5571
+54922.16860866291 4.1237893 7356.3604
+54923.1686087104 4.1239076 7355.1797
+54924.1686087579 4.1241045 7356.5571
+54925.1686088054 4.1240649 7356.1636
+54926.1686088529 4.1241832 7355.7695
+54927.16860890039 4.1243405 7356.9502
+54928.16860894789 4.1244588 7356.3604
+54929.16860899539 4.1244979 7355.9663
+54930.16860904288 4.1245766 7356.3604
+54931.16860909038 4.1246948 7355.5728
+54932.16860913788 4.1247344 7356.1636
+54933.16860918538 4.1248522 7356.1636
+54934.16860923287 4.12501 7355.9663
+54935.16860928037 4.12501 7356.1636
+54936.16860932787 4.1252065 7356.1636
+54937.16860937537 4.1253643 7355.9663
+54938.16860942286 4.1254821 7355.3765
+54939.16860947036 4.125443 7356.1636
+54940.16860951786 4.1255608 7355.7695
+54941.16860956536 4.125679 7356.7539
+54942.16860961285 4.1258364 7355.9663
+54943.16860966035 4.1259151 7356.1636
+54944.16860970785 4.1260333 7356.9502
+54945.16860975535 4.1261516 7356.5571
+54946.16860980284 4.1261907 7356.7539
+54947.16860985034 4.1263876 7356.1636
+54948.16860989784 4.1264272 7355.5728
+54949.16860994534 4.1264663 7356.5571
+54950.16860999283 4.1266632 7355.9663
+54951.16861004033 4.1267419 7356.7539
+54952.16861008783 4.1268206 7355.3765
+54953.16861013533 4.1268997 7356.3604
+54954.16861018282 4.1269784 7356.1636
+54955.16861023032 4.1270571 7355.9663
+54956.16861027782 4.1271753 7356.1636
+54957.16861032532 4.127254 7356.3604
+54958.16861037281 4.1273718 7356.5571
+54959.16861042031 4.1274505 7356.7539
+54960.16861046781 4.1275296 7355.9663
+54961.16861051531 4.1277261 7355.9663
+54962.1686105628 4.1277261 7356.3604
+54963.1686106103 4.1278052 7356.1636
+54964.1686106578 4.1280413 7355.9663
+54965.1686107053 4.1280017 7355.3765
+54966.16861075279 4.1281595 7356.7539
+54967.16861080029 4.1282382 7356.1636
+54968.16861084779 4.128356 7355.9663
+54969.16861089529 4.128356 7356.3604
+54970.16861094278 4.1284742 7357.1475
+54971.16861099028 4.1285925 7355.9663
+54972.16861103778 4.1286712 7356.5571
+54973.16861108528 4.1288285 7355.7695
+54974.16861113277 4.1288681 7355.9663
+54975.16861118027 4.1289072 7355.9663
+54976.16861122777 4.1290255 7355.7695
+54977.16861127527 4.1291437 7356.7539
+54978.16861132276 4.1292224 7356.3604
+54979.16861137026 4.1293797 7356.1636
+54980.16861141776 4.1293797 7356.7539
+54981.16861146525 4.1295371 7355.9663
+54982.16861151275 4.1295767 7355.7695
+54983.16861156025 4.129734 7355.5728
+54984.16861160775 4.1297736 7356.3604
+54985.16861165524 4.1298914 7355.3765
+54986.16861170274 4.129931 7356.3604
+54987.16861175024 4.1300097 7356.9502
+54988.16861179774 4.1301279 7355.9663
+54989.16861184523 4.1302066 7355.9663
+54990.16861189273 4.1303639 7356.5571
+54991.16861194023 4.1304822 7356.7539
+54992.16861198773 4.1306396 7355.5728
+54993.16861203522 4.1306005 7355.5728
+54994.16861208272 4.1307182 7356.3604
+54995.16861213022 4.1307578 7357.1475
+54996.16861217772 4.1309547 7356.3604
+54997.16861222521 4.1309938 7356.1636
+54998.16861227271 4.1309938 7355.9663
+54999.16861232021 4.1311512 7356.3604
+55000.16861236771 4.1312304 7355.9663
+55001.1686124152 4.1313877 7356.7539
+55002.1686124627 4.1314664 7355.7695
+55003.1686125102 4.131506 7356.1636
+55004.1686125577 4.1315846 7355.9663
+55005.16861260519 4.1318207 7356.9502
+55006.16861265269 4.1318603 7356.1636
+55007.16861270019 4.1318603 7356.7539
+55008.16861274769 4.1321359 7356.5571
+55009.16861279518 4.1320176 7356.1636
+55010.16861284268 4.1322932 7356.5571
+55011.16861289018 4.1322932 7356.7539
+55012.16861293768 4.1323323 7355.9663
+55013.16861298517 4.1324902 7356.5571
+55014.16861303267 4.1326866 7356.9502
+55015.16861308017 4.1326866 7356.3604
+55016.16861312767 4.1328049 7356.5571
+55017.16861317516 4.1329622 7356.1636
+55018.16861322266 4.1330414 7356.3604
+55019.16861327016 4.1331592 7354.9824
+55020.16861331766 4.1331592 7355.9663
+55021.16861336515 4.1333561 7356.1636
+55022.16861341265 4.1335135 7356.9502
+55023.16861346015 4.133553 7355.9663
+55024.16861350765 4.1335921 7355.7695
+55025.16861355514 4.1336713 7356.1636
+55026.16861360264 4.1337891 7356.5571
+55027.16861365014 4.1339073 7356.5571
+55028.16861369764 4.1340647 7355.9663
+55029.16861374513 4.1341043 7355.5728
+55030.16861379263 4.1341434 7355.7695
+55031.16861384013 4.1342616 7356.1636
+55032.16861388762 4.1343403 7355.7695
+55033.16861393512 4.134419 7356.3604
+55034.16861398262 4.134419 7356.5571
+55035.16861403012 4.1344585 7356.1636
+55036.16861407761 4.1346159 7355.7695
+55037.16861412511 4.1346946 7356.3604
+55038.16861417261 4.1347733 7356.1636
+55039.16861422011 4.1348519 7356.3604
+55040.1686142676 4.1348915 7356.1636
+55041.1686143151 4.1350884 7356.3604
+55042.1686143626 4.1352067 7356.3604
+55043.1686144101 4.1353641 7355.9663
+55044.16861445759 4.1353245 7355.9663
+55045.16861450509 4.1354032 7356.5571
+55046.16861455259 4.1354427 7356.3604
+55047.16861460009 4.1356788 7356.3604
+55048.16861464758 4.1357183 7355.7695
+55049.16861469508 4.1357574 7356.3604
+55050.16861474258 4.1358757 7355.5728
+55051.16861479008 4.1360726 7356.9502
+55052.16861483757 4.13623 7355.5728
+55053.16861488507 4.1362696 7356.7539
+55054.16861493257 4.1362696 7356.3604
+55055.16861498007 4.1365056 7356.5571
+55056.16861502756 4.136663 7355.7695
+55057.16861507506 4.136663 7355.3765
+55058.16861512256 4.1367812 7356.3604
+55059.16861517006 4.1369386 7355.5728
+55060.16861521755 4.1368995 7355.7695
+55061.16861526505 4.1370964 7356.1636
+55062.16861531255 4.1371355 7355.7695
+55063.16861536005 4.1372142 7355.7695
+55064.16861540754 4.1374111 7355.7695
+55065.16861545504 4.1374507 7355.5728
+55066.16861550254 4.1376476 7356.3604
+55067.16861555004 4.1376867 7355.9663
+55068.16861559753 4.1378837 7355.3765
+55069.16861564503 4.1378441 7356.3604
+55070.16861569253 4.1380019 7355.7695
+55071.16861574003 4.1379623 7356.5571
+55072.16861578752 4.1381593 7355.5728
+55073.16861583502 4.138238 7356.1636
+55074.16861588252 4.1382775 7355.7695
+55075.16861593002 4.1383166 7356.9502
+55076.16861597751 4.1385136 7356.3604
+55077.16861602501 4.1385527 7356.3604
+55078.16861607251 4.1386709 7355.9663
+55079.16861612001 4.1387105 7356.3604
+55080.1686161675 4.1387892 7355.3765
+55081.168616215 4.1389465 7356.3604
+55082.1686162625 4.1389861 7355.7695
+55083.16861630999 4.1390252 7356.5571
+55084.16861635749 4.139183 7355.7695
+55085.16861640499 4.1393008 7355.5728
+55086.16861645249 4.1393404 7356.1636
+55087.16861649998 4.1394191 7355.9663
+55088.16861654748 4.139616 7355.9663
+55089.16861659498 4.1397734 7355.9663
+55090.16861664248 4.1397338 7356.5571
+55091.16861668997 4.139852 7356.3604
+55092.16861673747 4.1399307 7356.7539
+55093.16861678497 4.1399703 7356.5571
+55094.16861683247 4.1400881 7356.5571
+55095.16861687996 4.1401672 7355.9663
+55096.16861692746 4.1403637 7356.3604
+55097.16861697496 4.140285 7355.7695
+55098.16861702246 4.1403246 7356.7539
+55099.16861706995 4.1404819 7355.7695
+55100.16861711745 4.1406393 7355.9663
+55101.16861716495 4.1406789 7355.7695
+55102.16861721245 4.1407576 7356.3604
+55103.16861725994 4.1408758 7355.5728
+55104.16861730744 4.1408362 7356.9502
+55105.16861735494 4.1410332 7355.9663
+55106.16861740244 4.1411119 7355.5728
+55107.16861744993 4.1411119 7356.3604
+55108.16861749743 4.1412301 7356.3604
+55109.16861754493 4.1413875 7355.3765
+55110.16861759243 4.1415844 7355.9663
+55111.16861763992 4.1415057 7356.1636
+55112.16861768742 4.1415844 7355.5728
+55113.16861773492 4.1417813 7356.1636
+55114.16861778242 4.1418991 7356.3604
+55115.16861782991 4.1418204 7356.3604
+55116.16861787741 4.1419387 7356.3604
+55117.16861792491 4.1419783 7355.9663
+55118.16861797241 4.1421356 7355.9663
+55119.1686180199 4.1422143 7355.9663
+55120.1686180674 4.1423326 7355.3765
+55121.1686181149 4.1423326 7356.5571
+55122.1686181624 4.1424503 7355.1797
+55123.16861820989 4.1424899 7356.1636
+55124.16861825739 4.1425686 7355.5728
+55125.16861830489 4.1427259 7356.3604
+55126.16861835239 4.1428046 7355.3765
+55127.16861839988 4.1429229 7356.7539
+55128.16861844738 4.1430016 7356.3604
+55129.16861849488 4.1430802 7356.1636
+55130.16861854238 4.1431985 7356.3604
+55131.16861858987 4.1433558 7355.5728
+55132.16861863737 4.1434345 7356.1636
+55133.16861868487 4.1435137 7356.3604
+55134.16861873236 4.1435528 7356.3604
+55135.16861877986 4.1437101 7355.7695
+55136.16861882736 4.1437101 7356.9502
+55137.16861887486 4.1437497 7356.3604
+55138.16861892235 4.1439071 7355.7695
+55139.16861896985 4.1439857 7356.1636
+55140.16861901735 4.144104 7356.5571
+55141.16861906485 4.1441827 7356.7539
+55142.16861911234 4.1443009 7356.5571
+55143.16861915984 4.1443796 7355.3765
+55144.16861920734 4.1443796 7356.3604
+55145.16861925484 4.1444583 7356.1636
+55146.16861930233 4.1445765 7356.1636
+55147.16861934983 4.1447339 7355.3765
+55148.16861939733 4.1448522 7356.3604
+55149.16861944483 4.1448522 7356.5571
+55150.16861949232 4.1450095 7356.3604
+55151.16861953982 4.1450491 7356.5571
+55152.16861958732 4.1452456 7356.7539
+55153.16861963482 4.1452851 7356.9502
+55154.16861968231 4.1454034 7355.7695
+55155.16861972981 4.1454425 7355.5728
+55156.16861977731 4.1455212 7355.7695
+55157.16861982481 4.1457181 7355.9663
+55158.1686198723 4.145679 7356.7539
+55159.1686199198 4.1458364 7357.1475
+55160.1686199673 4.1458755 7356.5571
+55161.1686200148 4.1459937 7355.7695
+55162.16862006229 4.1460724 7355.7695
+55163.16862010979 4.1462297 7355.5728
+55164.16862015729 4.1462693 7355.9663
+55165.16862020479 4.146348 7355.9663
+55166.16862025228 4.146348 7356.3604
+55167.16862029978 4.1464663 7355.5728
+55168.16862034728 4.1465054 7356.1636
+55169.16862039478 4.1466632 7356.3604
+55170.16862044227 4.1467419 7356.3604
+55171.16862048977 4.1468205 7356.5571
+55172.16862053727 4.1469779 7355.9663
+55173.16862058477 4.1470175 7356.9502
+55174.16862063226 4.1470962 7354.9824
+55175.16862067976 4.1471748 7356.5571
+55176.16862072726 4.1472931 7356.5571
+55177.16862077476 4.1472931 7355.7695
+55178.16862082225 4.1473718 7354.9824
+55179.16862086975 4.1476474 7356.7539
+55180.16862091725 4.1477261 7355.7695
+55181.16862096475 4.1477261 7355.9663
+55182.16862101224 4.1478047 7356.3604
+55183.16862105974 4.1478443 7355.3765
+55184.16862110724 4.1481199 7356.3604
+55185.16862115473 4.1481199 7355.7695
+55186.16862120223 4.1482773 7355.1797
+55187.16862124973 4.1483164 7355.3765
+55188.16862129723 4.1484346 7355.9663
+55189.16862134472 4.1485529 7356.9502
+55190.16862139222 4.1484742 7355.9663
+55191.16862143972 4.1487498 7356.1636
+55192.16862148722 4.1487498 7355.3765
+55193.16862153471 4.1488285 7356.5571
+55194.16862158221 4.149025 7355.9663
+55195.16862162971 4.1491041 7355.9663
+55196.16862167721 4.1492219 7356.9502
+55197.1686217247 4.1493402 7356.7539
+55198.1686217722 4.1494975 7356.1636
+55199.1686218197 4.1494975 7355.9663
+55200.1686218672 4.1494975 7356.3604
+55201.16862191469 4.1496158 7356.1636
+55202.16862196219 4.149734 7356.9502
+55203.16862200969 4.1498127 7355.9663
+55204.16862205719 4.1498518 7356.3604
+55205.16862210468 4.1500096 7355.7695
+55206.16862215218 4.1501274 7356.7539
+55207.16862219968 4.1501274 7355.5728
+55208.16862224718 4.150403 7355.7695
+55209.16862229467 4.150403 7355.9663
+55210.16862234217 4.1504817 7356.9502
+55211.16862238967 4.1506395 7356.3604
+55212.16862243717 4.1506786 7356.1636
+55213.16862248466 4.1506786 7356.3604
+55214.16862253216 4.1507182 7356.1636
+55215.16862257966 4.1509938 7355.9663
+55216.16862262716 4.1509542 7356.3604
+55217.16862267465 4.1511512 7356.3604
+55218.16862272215 4.1511116 7356.3604
+55219.16862276965 4.1513481 7355.5728
+55220.16862281715 4.1513085 7356.5571
+55221.16862286464 4.1514659 7356.3604
+55222.16862291214 4.1515055 7355.5728
+55223.16862295964 4.1515841 7356.5571
+55224.16862300714 4.1516628 7355.5728
+55225.16862305463 4.1517415 7355.9663
+55226.16862310213 4.1519384 7355.3765
+55227.16862314963 4.1519384 7356.7539
+55228.16862319713 4.1520171 7356.7539
+55229.16862324462 4.1521749 7355.7695
+55230.16862329212 4.1521749 7356.1636
+55231.16862333962 4.1522927 7356.3604
+55232.16862338712 4.1523714 7356.3604
+55233.16862343461 4.1524897 7355.7695
+55234.16862348211 4.1526866 7356.5571
+55235.16862352961 4.1527257 7356.3604
+55236.1686235771 4.1527653 7356.1636
+55237.1686236246 4.152844 7355.9663
+55238.1686236721 4.1529226 7355.9663
+55239.1686237196 4.1528835 7356.3604
+55240.16862376709 4.1530805 7355.7695
+55241.16862381459 4.1533165 7355.7695
+55242.16862386209 4.1533561 7355.7695
+55243.16862390959 4.1533165 7356.5571
+55244.16862395708 4.1535134 7355.9663
+55245.16862400458 4.1536708 7357.3442
+55246.16862405208 4.1535921 7356.1636
+55247.16862409958 4.1537495 7355.7695
+55248.16862414707 4.1538677 7356.3604
+55249.16862419457 4.1538281 7356.7539
+55250.16862424207 4.1540647 7355.9663
+55251.16862428957 4.1541038 7355.9663
+55252.16862433706 4.1542611 7355.7695
+55253.16862438456 4.1543794 7356.1636
+55254.16862443206 4.1543403 7356.1636
+55255.16862447956 4.1544189 7356.1636
+55256.16862452705 4.154655 7356.1636
+55257.16862457455 4.1547337 7356.9502
+55258.16862462205 4.1546159 7355.1797
+55259.16862466955 4.1548519 7355.9663
+55260.16862471704 4.1549306 7355.7695
+55261.16862476454 4.1550093 7356.3604
+55262.16862481204 4.1550093 7355.9663
+55263.16862485954 4.1550488 7356.5571
+55264.16862490703 4.1552458 7356.5571
+55265.16862495453 4.1553245 7355.9663
+55266.16862500203 4.1554422 7356.5571
+55267.16862504953 4.1554818 7356.1636
+55268.16862509702 4.1555214 7356.9502
+55269.16862514452 4.1557178 7355.3765
+55270.16862519202 4.1556001 7355.3765
+55271.16862523952 4.1557574 7356.3604
+55272.16862528701 4.1558757 7356.5571
+55273.16862533451 4.1559544 7355.7695
+55274.16862538201 4.156033 7355.9663
+55275.16862542951 4.1561904 7356.3604
+55276.168625477 4.1561904 7355.9663
+55277.1686255245 4.1563478 7356.7539
+55278.168625572 4.1563873 7356.3604
+55279.1686256195 4.1564264 7356.1636
+55280.16862566699 4.1565056 7355.5728
+55281.16862571449 4.1566234 7356.5571
+55282.16862576199 4.1566234 7355.1797
+55283.16862580949 4.1567416 7355.9663
+55284.16862585698 4.1567812 7355.9663
+55285.16862590448 4.156899 7355.9663
+55286.16862595198 4.156899 7355.9663
+55287.16862599947 4.1570172 7356.7539
+55288.16862604697 4.1570568 7356.5571
+55289.16862609447 4.1572533 7355.9663
+55290.16862614197 4.1573715 7356.3604
+55291.16862618946 4.1572928 7355.7695
+55292.16862623696 4.1574898 7355.9663
+55293.16862628446 4.1575289 7356.1636
+55294.16862633196 4.1575289 7356.1636
+55295.16862637945 4.1576471 7355.7695
+55296.16862642695 4.1577654 7356.3604
+55297.16862647445 4.1578045 7356.5571
+55298.16862652195 4.1578045 7355.5728
+55299.16862656944 4.1579618 7356.1636
+55300.16862661694 4.1581588 7356.5571
+55301.16862666444 4.1581588 7356.5571
+55302.16862671194 4.1583166 7355.7695
+55303.16862675943 4.1583557 7356.1636
+55304.16862680693 4.1583166 7356.3604
+55305.16862685443 4.1583953 7356.3604
+55306.16862690193 4.158474 7356.5571
+55307.16862694942 4.1585922 7356.1636
+55308.16862699692 4.1586709 7355.7695
+55309.16862704442 4.15871 7355.5728
+55310.16862709192 4.1588283 7356.3604
+55311.16862713941 4.1589069 7355.7695
+55312.16862718691 4.1589465 7355.9663
+55313.16862723441 4.159143 7355.9663
+55314.16862728191 4.1591825 7355.7695
+55315.1686273294 4.1591825 7355.9663
+55316.1686273769 4.1592221 7355.7695
+55317.1686274244 4.1593008 7355.9663
+55318.1686274719 4.1594186 7355.9663
+55319.16862751939 4.1595368 7356.3604
+55320.16862756689 4.1596155 7355.5728
+55321.16862761439 4.1596155 7356.1636
+55322.16862766189 4.1597729 7356.1636
+55323.16862770938 4.1598911 7356.1636
+55324.16862775688 4.1598125 7355.3765
+55325.16862780438 4.159852 7355.9663
+55326.16862785188 4.1600094 7355.9663
+55327.16862789937 4.1600881 7356.5571
+55328.16862794687 4.1602063 7355.9663
+55329.16862799437 4.1602063 7356.3604
+55330.16862804187 4.1603637 7355.3765
+55331.16862808936 4.1604424 7356.1636
+55332.16862813686 4.1605606 7356.7539
+55333.16862818436 4.1605606 7356.3604
+55334.16862823186 4.1606393 7355.7695
+55335.16862827935 4.160718 7356.9502
+55336.16862832685 4.160718 7356.3604
+55337.16862837435 4.1608753 7356.1636
+55338.16862842184 4.1608753 7355.7695
+55339.16862846934 4.1610723 7355.9663
+55340.16862851684 4.1610723 7355.7695
+55341.16862856434 4.1611905 7356.1636
+55342.16862861183 4.1613083 7356.5571
+55343.16862865933 4.1613479 7355.5728
+55344.16862870683 4.1615839 7355.5728
+55345.16862875433 4.1615052 7356.3604
+55346.16862880182 4.1614661 7355.9663
+55347.16862884932 4.1616626 7356.3604
+55348.16862889682 4.1617417 7356.5571
+55349.16862894432 4.1618204 7356.7539
+55350.16862899181 4.1619778 7355.9663
+55351.16862903931 4.1620564 7356.1636
+55352.16862908681 4.162096 7355.9663
+55353.16862913431 4.1622138 7356.1636
+55354.1686291818 4.1623321 7355.5728
+55355.1686292293 4.1624107 7355.3765
+55356.1686292768 4.1624503 7356.7539
+55357.1686293243 4.1625681 7356.1636
+55358.16862937179 4.1626863 7355.5728
+55359.16862941929 4.1628437 7356.1636
+55360.16862946679 4.1628046 7355.3765
+55361.16862951429 4.1629229 7355.9663
+55362.16862956178 4.1630802 7356.5571
+55363.16862960928 4.163198 7356.3604
+55364.16862965678 4.1632771 7355.9663
+55365.16862970428 4.1632376 7355.9663
+55366.16862975177 4.1634736 7355.9663
+55367.16862979927 4.1634345 7355.9663
+55368.16862984677 4.1635919 7356.1636
+55369.16862989427 4.1636705 7355.9663
+55370.16862994176 4.1637492 7356.3604
+55371.16862998926 4.1637888 7355.9663
+55372.16863003676 4.1638675 7356.1636
+55373.16863008426 4.1639462 7355.5728
+55374.16863013175 4.1640248 7356.1636
+55375.16863017925 4.1640248 7355.9663
+55376.16863022675 4.1642613 7356.9502
+55377.16863027425 4.1643004 7355.9663
+55378.16863032174 4.1644187 7355.9663
+55379.16863036924 4.1643791 7356.7539
+55380.16863041674 4.164537 7355.9663
+55381.16863046424 4.1645761 7356.3604
+55382.16863051173 4.1646943 7356.7539
+55383.16863055923 4.1647334 7356.3604
+55384.16863060673 4.1648912 7356.1636
+55385.16863065423 4.1649303 7355.9663
+55386.16863070172 4.165009 7355.9663
+55387.16863074922 4.1650486 7355.9663
+55388.16863079672 4.1651273 7355.9663
+55389.16863084421 4.1652455 7357.1475
+55390.16863089171 4.1654425 7355.9663
+55391.16863093921 4.1655602 7355.3765
+55392.16863098671 4.1655211 7356.9502
+55393.1686310342 4.1655998 7356.1636
+55394.1686310817 4.1657572 7355.7695
+55395.1686311292 4.1657968 7356.9502
+55396.1686311767 4.1658754 7355.7695
+55397.16863122419 4.1659541 7357.1475
+55398.16863127169 4.1660724 7356.1636
+55399.16863131919 4.166151 7355.5728
+55400.16863136669 4.1663084 7355.7695
+55401.16863141418 4.1665053 7355.7695
+55402.16863146168 4.1665053 7356.3604
+55403.16863150918 4.1666236 7356.3604
+55404.16863155668 4.1666236 7356.7539
+55405.16863160417 4.1667809 7356.7539
+55406.16863165167 4.1669383 7356.5571
+55407.16863169917 4.1669779 7356.7539
+55408.16863174667 4.1670566 7355.7695
+55409.16863179416 4.1669779 7356.5571
+55410.16863184166 4.1670957 7355.9663
+55411.16863188916 4.1672926 7356.7539
+55412.16863193666 4.1673713 7356.1636
+55413.16863198415 4.1674109 7356.7539
+55414.16863203165 4.1675682 7356.1636
+55415.16863207915 4.1676078 7356.5571
+55416.16863212665 4.1676469 7356.1636
+55417.16863217414 4.1676865 7356.3604
+55418.16863222164 4.1678438 7356.9502
+55419.16863226914 4.1679225 7357.1475
+55420.16863231664 4.1679621 7356.1636
+55421.16863236413 4.168159 7355.1797
+55422.16863241163 4.1682377 7356.1636
+55423.16863245913 4.1683164 7355.1797
+55424.16863250663 4.1684341 7356.1636
+55425.16863255412 4.1684737 7356.1636
+55426.16863260162 4.168592 7356.3604
+55427.16863264912 4.168592 7356.3604
+55428.16863269662 4.1687493 7355.7695
+55429.16863274411 4.168828 7355.1797
+55430.16863279161 4.1689463 7356.3604
+55431.16863283911 4.1689067 7355.1797
+55432.16863288661 4.1689854 7356.7539
+55433.1686329341 4.1691036 7355.9663
+55434.1686329816 4.169261 7355.9663
+55435.1686330291 4.1692219 7355.3765
+55436.1686330766 4.1693397 7356.1636
+55437.16863312409 4.1693792 7355.9663
+55438.16863317159 4.1694975 7356.3604
+55439.16863321909 4.1694975 7355.9663
+55440.16863326658 4.1696944 7356.1636
+55441.16863331408 4.1697335 7356.1636
+55442.16863336158 4.1697335 7356.3604
+55443.16863340908 4.1698122 7356.1636
+55444.16863345657 4.1699305 7356.3604
+55445.16863350407 4.1700487 7356.7539
+55446.16863355157 4.1700878 7355.3765
+55447.16863359907 4.1701274 7355.9663
+55448.16863364656 4.1702061 7355.9663
+55449.16863369406 4.1703634 7356.1636
+55450.16863374156 4.1704421 7355.5728
+55451.16863378906 4.1704421 7356.7539
+55452.16863383655 4.1705604 7356.3604
+55453.16863388405 4.170639 7356.7539
+55454.16863393155 4.1706786 7355.9663
+55455.16863397905 4.1707964 7355.9663
+55456.16863402654 4.1709933 7356.3604
+55457.16863407404 4.1709542 7355.5728
+55458.16863412154 4.1711116 7356.3604
+55459.16863416904 4.1711903 7356.1636
+55460.16863421653 4.1711507 7356.7539
+55461.16863426403 4.1713872 7356.1636
+55462.16863431153 4.1713476 7356.5571
+55463.16863435903 4.1715841 7356.1636
+55464.16863440652 4.1715841 7356.5571
+55465.16863445402 4.1717415 7356.3604
+55466.16863450152 4.1717806 7355.7695
+55467.16863454902 4.1718597 7355.9663
+55468.16863459651 4.1718597 7355.7695
+55469.16863464401 4.1719384 7355.9663
+55470.16863469151 4.1720171 7356.1636
+55471.16863473901 4.1721745 7355.7695
+55472.1686347865 4.1720958 7355.5728
+55473.168634834 4.1722531 7356.7539
+55474.1686348815 4.172214 7355.5728
+55475.168634929 4.1725287 7356.1636
+55476.16863497649 4.1725287 7356.3604
+55477.16863502399 4.1725683 7355.7695
+55478.16863507149 4.1726861 7356.3604
+55479.16863511899 4.1727648 7355.5728
+55480.16863516648 4.1727648 7355.5728
+55481.16863521398 4.1730013 7355.9663
+55482.16863526148 4.172883 7356.5571
+55483.16863530898 4.1730404 7355.7695
+55484.16863535647 4.1731195 7355.7695
+55485.16863540397 4.1731195 7356.3604
+55486.16863545147 4.1732373 7355.7695
+55487.16863549897 4.1733556 7356.5571
+55488.16863554646 4.1734343 7356.5571
+55489.16863559396 4.1733952 7356.5571
+55490.16863564146 4.1735525 7355.3765
+55491.16863568896 4.1735525 7356.1636
+55492.16863573645 4.1736312 7356.1636
+55493.16863578395 4.1737099 7356.3604
+55494.16863583145 4.1737885 7355.9663
+55495.16863587894 4.1738672 7355.7695
+55496.16863592644 4.1739068 7356.1636
+55497.16863597394 4.1740251 7355.7695
+55498.16863602144 4.1740642 7355.7695
+55499.16863606893 4.1742215 7356.3604
+55500.16863611643 4.1742215 7356.3604
+55501.16863616393 4.1744184 7355.5728
+55502.16863621143 4.174458 7356.3604
+55503.16863625892 4.1744184 7356.1636
+55504.16863630642 4.1744971 7355.7695
+55505.16863635392 4.1746154 7355.7695
+55506.16863640142 4.1747336 7355.3765
+55507.16863644891 4.1747336 7355.1797
+55508.16863649641 4.1748123 7356.1636
+55509.16863654391 4.174891 7356.1636
+55510.16863659141 4.1749697 7356.3604
+55511.1686366389 4.175127 7356.3604
+55512.1686366864 4.1751666 7356.7539
+55513.1686367339 4.175324 7356.1636
+55514.1686367814 4.175324 7355.9663
+55515.16863682889 4.1754026 7356.1636
+55516.16863687639 4.1753635 7355.7695
+55517.16863692389 4.1755605 7356.7539
+55518.16863697139 4.1754813 7355.7695
+55519.16863701888 4.1755996 7356.1636
+55520.16863706638 4.1757178 7355.9663
+55521.16863711388 4.1757178 7356.3604
+55522.16863716138 4.1758356 7355.9663
+55523.16863720887 4.1759934 7357.1475
+55524.16863725637 4.1759934 7355.7695
+55525.16863730387 4.1761112 7356.9502
+55526.16863735137 4.1760325 7355.7695
+55527.16863739886 4.1761112 7355.7695
+55528.16863744636 4.1761904 7356.3604
+55529.16863749386 4.1763477 7355.7695
+55530.16863754136 4.1763082 7356.3604
+55531.16863758885 4.1763868 7356.5571
+55532.16863763635 4.1765838 7355.7695
+55533.16863768385 4.176702 7355.1797
+55534.16863773135 4.1766624 7356.1636
+55535.16863777884 4.1768203 7355.7695
+55536.16863782634 4.1768594 7356.1636
+55537.16863787384 4.1768594 7356.3604
+55538.16863792134 4.1769381 7355.9663
+55539.16863796883 4.1770167 7355.9663
+55540.16863801633 4.1770959 7356.3604
+55541.16863806383 4.1770563 7355.7695
+55542.16863811133 4.1772923 7356.1636
+55543.16863815882 4.1772923 7356.1636
+55544.16863820632 4.1773319 7356.3604
+55545.16863825382 4.1774502 7355.7695
+55546.16863830131 4.1774106 7355.3765
+55547.16863834881 4.1774893 7356.5571
+55548.16863839631 4.1776075 7356.3604
+55549.16863844381 4.1778045 7356.9502
+55550.1686384913 4.1778436 7356.3604
+55551.1686385388 4.1778831 7355.9663
+55552.1686385863 4.1778831 7354.9824
+55553.1686386338 4.1779618 7356.5571
+55554.16863868129 4.1780801 7355.5728
+55555.16863872879 4.1780801 7355.3765
+55556.16863877629 4.1782374 7356.5571
+55557.16863882379 4.1782765 7356.5571
+55558.16863887128 4.1783557 7355.1797
+55559.16863891878 4.1783948 7356.1636
+55560.16863896628 4.1785131 7356.9502
+55561.16863901378 4.1785917 7356.7539
+55562.16863906127 4.1787491 7356.3604
+55563.16863910877 4.1786704 7355.5728
+55564.16863915627 4.1787887 7356.7539
+55565.16863920377 4.1788278 7356.5571
+55566.16863925126 4.1789856 7356.1636
+55567.16863929876 4.1790643 7355.7695
+55568.16863934626 4.179143 7355.9663
+55569.16863939376 4.1791821 7356.9502
+55570.16863944125 4.1792216 7355.5728
+55571.16863948875 4.1793003 7356.3604
+55572.16863953625 4.1794577 7355.3765
+55573.16863958375 4.1795363 7355.9663
+55574.16863963124 4.1795363 7356.3604
+55575.16863967874 4.1796155 7356.3604
+55576.16863972624 4.1796546 7355.1797
+55577.16863977374 4.1797729 7356.1636
+55578.16863982123 4.1797729 7355.7695
+55579.16863986873 4.179812 7356.3604
+55580.16863991623 4.1799302 7356.3604
+55581.16863996373 4.1799302 7355.7695
+55582.16864001122 4.1800485 7356.3604
+55583.16864005872 4.1802058 7356.5571
+55584.16864010622 4.1800485 7356.7539
+55585.16864015372 4.1803241 7356.1636
+55586.16864020121 4.1803241 7356.3604
+55587.16864024871 4.1803241 7355.7695
+55588.16864029621 4.1804419 7355.9663
+55589.16864034371 4.180521 7356.1636
+55590.1686403912 4.1806388 7355.9663
+55591.1686404387 4.1805997 7356.3604
+55592.1686404862 4.1808357 7355.7695
+55593.1686405337 4.1808357 7356.3604
+55594.16864058119 4.1809931 7355.5728
+55595.16864062869 4.1809144 7355.7695
+55596.16864067619 4.1809931 7355.5728
+55597.16864072368 4.1810327 7355.3765
+55598.16864077118 4.1812687 7356.3604
+55599.16864081868 4.1813083 7355.9663
+55600.16864086618 4.1814265 7355.7695
+55601.16864091367 4.1813869 7356.1636
+55602.16864096117 4.1814656 7356.7539
+55603.16864100867 4.1815839 7356.3604
+55604.16864105617 4.1817412 7355.9663
+55605.16864110366 4.1817808 7356.1636
+55606.16864115116 4.1817808 7356.1636
+55607.16864119866 4.1817808 7355.7695
+55608.16864124616 4.1818986 7355.9663
+55609.16864129365 4.1819382 7356.1636
+55610.16864134115 4.1821351 7356.1636
+55611.16864138865 4.1820564 7356.9502
+55612.16864143615 4.1822529 7356.3604
+55613.16864148364 4.1822138 7356.1636
+55614.16864153114 4.1823711 7355.7695
+55615.16864157864 4.1823711 7355.1797
+55616.16864162614 4.1824894 7355.9663
+55617.16864167363 4.1825681 7355.9663
+55618.16864172113 4.1824894 7356.7539
+55619.16864176863 4.1826468 7355.7695
+55620.16864181613 4.1827254 7356.9502
+55621.16864186362 4.1827254 7356.3604
+55622.16864191112 4.1828041 7355.9663
+55623.16864195862 4.1829224 7355.9663
+55624.16864200612 4.1829224 7356.1636
+55625.16864205361 4.1830406 7355.5728
+55626.16864210111 4.1831193 7355.7695
+55627.16864214861 4.183198 7356.3604
+55628.16864219611 4.1832371 7355.9663
+55629.1686422436 4.1833162 7356.5571
+55630.1686422911 4.1832767 7356.3604
+55631.1686423386 4.1833553 7355.7695
+55632.1686423861 4.1834736 7356.3604
+55633.16864243359 4.1835523 7356.1636
+55634.16864248109 4.1835127 7355.7695
+55635.16864252859 4.1836309 7355.9663
+55636.16864257609 4.1837492 7355.5728
+55637.16864262358 4.1838279 7356.5571
+55638.16864267108 4.1838675 7355.9663
+55639.16864271858 4.1838279 7355.3765
+55640.16864276608 4.1840248 7356.3604
+55641.16864281357 4.1840248 7355.1797
+55642.16864286107 4.1841426 7355.9663
+55643.16864290857 4.1841822 7356.1636
+55644.16864295607 4.1842608 7356.3604
+55645.16864300356 4.1841822 7356.3604
+55646.16864305106 4.1842608 7356.1636
+55647.16864309856 4.1843395 7356.1636
+55648.16864314605 4.1843395 7355.3765
+55649.16864319355 4.184576 7355.9663
+55650.16864324105 4.1845365 7355.7695
+55651.16864328855 4.1846151 7355.7695
+55652.16864333604 4.1846938 7355.9663
+55653.16864338354 4.1848121 7356.1636
+55654.16864343104 4.1848121 7356.1636
+55655.16864347854 4.1849303 7355.9663
+55656.16864352603 4.185009 7356.1636
+55657.16864357353 4.1849303 7355.9663
+55658.16864362103 4.1850481 7356.3604
+55659.16864366853 4.1851664 7356.5571
+55660.16864371602 4.1851664 7355.3765
+55661.16864376352 4.185245 7356.1636
+55662.16864381102 4.1853237 7356.1636
+55663.16864385852 4.185245 7355.9663
+55664.16864390601 4.1853633 7355.9663
+55665.16864395351 4.1854029 7355.3765
+55666.16864400101 4.1854815 7355.9663
+55667.16864404851 4.1855602 7356.7539
+55668.168644096 4.1855602 7356.1636
+55669.1686441435 4.185678 7356.3604
+55670.168644191 4.1855993 7355.9663
+55671.1686442385 4.1857963 7355.7695
+55672.16864428599 4.1857963 7355.9663
+55673.16864433349 4.1859145 7356.1636
+55674.16864438099 4.1859145 7356.3604
+55675.16864442849 4.1859536 7356.3604
+55676.16864447598 4.1859932 7355.7695
+55677.16864452348 4.1861506 7355.7695
+55678.16864457098 4.1861115 7355.3765
+55679.16864461848 4.1862292 7356.3604
+55680.16864466597 4.1863079 7356.3604
+55681.16864471347 4.1864262 7355.9663
+55682.16864476097 4.1864657 7356.1636
+55683.16864480847 4.1865444 7355.7695
+55684.16864485596 4.1864262 7355.9663
+55685.16864490346 4.1866231 7355.7695
+55686.16864495096 4.1866231 7356.1636
+55687.16864499846 4.1866627 7356.1636
+55688.16864504595 4.1867018 7354.9824
+55689.16864509345 4.1868591 7356.1636
+55690.16864514095 4.1868987 7355.7695
+55691.16864518845 4.1868591 7355.9663
+55692.16864523594 4.1870561 7356.1636
+55693.16864528344 4.1871347 7355.9663
+55694.16864533094 4.1871347 7355.9663
+55695.16864537844 4.187253 7355.9663
+55696.16864542593 4.1872926 7356.1636
+55697.16864547343 4.1874104 7356.1636
+55698.16864552093 4.1873713 7357.541
+55699.16864556842 4.1874499 7356.5571
+55700.16864561592 4.187489 7355.5728
+55701.16864566342 4.1875682 7356.3604
+55702.16864571092 4.187686 7355.9663
+55703.16864575841 4.1877255 7356.5571
+55704.16864580591 4.1878042 7355.9663
+55705.16864585341 4.1878042 7355.5728
+55706.16864590091 4.1879225 7356.5571
+55707.1686459484 4.1879225 7355.5728
+55708.1686459959 4.1880403 7355.9663
+55709.1686460434 4.1880798 7355.9663
+55710.1686460909 4.1881585 7355.9663
+55711.16864613839 4.1882372 7356.3604
+55712.16864618589 4.1882768 7355.9663
+55713.16864623339 4.1883159 7356.3604
+55714.16864628089 4.1883945 7355.7695
+55715.16864632838 4.1884732 7355.7695
+55716.16864637588 4.1884732 7355.9663
+55717.16864642338 4.1886311 7355.9663
+55718.16864647088 4.1886311 7356.3604
+55719.16864651837 4.1886702 7355.3765
+55720.16864656587 4.1886702 7356.3604
+55721.16864661337 4.188828 7356.5571
+55722.16864666087 4.1888671 7355.7695
+55723.16864670836 4.1890244 7357.1475
+55724.16864675586 4.1891036 7355.7695
+55725.16864680336 4.189064 7355.9663
+55726.16864685086 4.1891823 7355.5728
+55727.16864689835 4.189064 7356.1636
+55728.16864694585 4.1892214 7355.9663
+55729.16864699335 4.1893001 7356.1636
+55730.16864704085 4.1893787 7355.3765
+55731.16864708834 4.1894579 7356.3604
+55732.16864713584 4.189497 7355.7695
+55733.16864718334 4.1895366 7355.9663
+55734.16864723084 4.1896152 7356.5571
+55735.16864727833 4.1896939 7355.7695
+55736.16864732583 4.1896544 7356.7539
+55737.16864737333 4.1898513 7355.7695
+55738.16864742083 4.18993 7355.9663
+55739.16864746832 4.1898513 7355.5728
+55740.16864751582 4.1899695 7355.7695
+55741.16864756332 4.18993 7355.3765
+55742.16864761082 4.1901269 7356.3604
+55743.16864765831 4.1901665 7356.7539
+55744.16864770581 4.1901269 7356.7539
+55745.16864775331 4.1903634 7356.3604
+55746.16864780081 4.1902843 7355.7695
+55747.1686478483 4.1904421 7355.9663
+55748.1686478958 4.1904812 7356.3604
+55749.1686479433 4.1905994 7355.9663
+55750.16864799079 4.1905994 7355.5728
+55751.16864803829 4.1905994 7355.9663
+55752.16864808579 4.1907177 7356.5571
+55753.16864813329 4.1907177 7356.5571
+55754.16864818078 4.1907568 7355.9663
+55755.16864822828 4.1908355 7355.9663
+55756.16864827578 4.1908751 7355.5728
+55757.16864832328 4.1909537 7356.3604
+55758.16864837077 4.1909537 7355.9663
+55759.16864841827 4.1910324 7356.7539
+55760.16864846577 4.1911507 7355.9663
+55761.16864851327 4.1911507 7356.7539
+55762.16864856076 4.191308 7355.7695
+55763.16864860826 4.191308 7356.3604
+55764.16864865576 4.1913867 7356.1636
+55765.16864870326 4.191505 7355.7695
+55766.16864875075 4.191505 7356.1636
+55767.16864879825 4.1915836 7356.1636
+55768.16864884575 4.191505 7355.5728
+55769.16864889325 4.1915441 7356.3604
+55770.16864894074 4.1916232 7356.7539
+55771.16864898824 4.1917019 7356.1636
+55772.16864903574 4.1917019 7356.7539
+55773.16864908324 4.1918592 7356.3604
+55774.16864913073 4.1918592 7356.3604
+55775.16864917823 4.1918988 7355.7695
+55776.16864922573 4.1920953 7355.5728
+55777.16864927323 4.1919775 7355.7695
+55778.16864932072 4.1919775 7356.1636
+55779.16864936822 4.1921349 7355.9663
+55780.16864941572 4.1922135 7356.1636
+55781.16864946322 4.1922135 7356.5571
+55782.16864951071 4.1922531 7356.1636
+55783.16864955821 4.1923709 7355.9663
+55784.16864960571 4.1923318 7357.1475
+55785.16864965321 4.1926074 7356.1636
+55786.1686497007 4.1924891 7355.7695
+55787.1686497482 4.1926074 7356.5571
+55788.1686497957 4.1925287 7355.1797
+55789.1686498432 4.1926465 7356.7539
+55790.16864989069 4.1927648 7355.7695
+55791.16864993819 4.1928434 7356.5571
+55792.16864998569 4.1927648 7356.1636
+55793.16865003319 4.192883 7356.1636
+55794.16865008068 4.1930404 7355.7695
+55795.16865012818 4.1930404 7356.1636
+55796.16865017568 4.1931977 7355.7695
+55797.16865022318 4.193119 7356.1636
+55798.16865027067 4.1931977 7356.5571
+55799.16865031817 4.1932764 7356.7539
+55800.16865036567 4.1933551 7355.9663
+55801.16865041316 4.1932764 7356.1636
+55802.16865046066 4.1934342 7355.9663
+55803.16865050816 4.1935129 7355.9663
+55804.16865055566 4.1935916 7356.9502
+55805.16865060315 4.1935916 7355.5728
+55806.16865065065 4.1935916 7355.9663
+55807.16865069815 4.193749 7355.9663
+55808.16865074565 4.1937885 7355.5728
+55809.16865079314 4.1938276 7355.9663
+55810.16865084064 4.1939063 7355.9663
+55811.16865088814 4.1939063 7356.5571
+55812.16865093564 4.193985 7355.9663
+55813.16865098313 4.1939063 7356.3604
+55814.16865103063 4.1941032 7355.7695
+55815.16865107813 4.1941819 7356.7539
+55816.16865112563 4.1941428 7356.3604
+55817.16865117312 4.1943002 7355.5728
+55818.16865122062 4.1943002 7356.3604
+55819.16865126812 4.1943789 7357.1475
+55820.16865131562 4.1944575 7355.9663
+55821.16865136311 4.1944575 7356.5571
+55822.16865141061 4.1944971 7355.7695
+55823.16865145811 4.1944971 7355.5728
+55824.16865150561 4.1946149 7356.3604
+55825.1686515531 4.1945362 7355.7695
+55826.1686516006 4.194694 7355.5728
+55827.1686516481 4.194694 7356.1636
+55828.1686516956 4.1948514 7355.9663
+55829.16865174309 4.1949697 7355.5728
+55830.16865179059 4.1950088 7356.1636
+55831.16865183809 4.1950483 7355.9663
+55832.16865188559 4.1950483 7356.3604
+55833.16865193308 4.1949301 7356.1636
+55834.16865198058 4.195127 7356.1636
+55835.16865202808 4.1952057 7355.3765
+55836.16865207558 4.1951661 7356.5571
+55837.16865212307 4.1953239 7355.9663
+55838.16865217057 4.1952844 7357.1475
+55839.16865221807 4.1954417 7356.3604
+55840.16865226557 4.195363 7356.3604
+55841.16865231306 4.1954813 7356.3604
+55842.16865236056 4.1955996 7356.3604
+55843.16865240806 4.1956387 7356.5571
+55844.16865245556 4.1956387 7355.7695
+55845.16865250305 4.1955996 7355.7695
+55846.16865255055 4.1956387 7355.5728
+55847.16865259805 4.1957569 7356.7539
+55848.16865264555 4.1957173 7355.5728
+55849.16865269304 4.195796 7355.5728
+55850.16865274054 4.195796 7356.1636
+55851.16865278804 4.1958747 7355.9663
+55852.16865283553 4.1960325 7356.1636
+55853.16865288303 4.1959538 7355.7695
+55854.16865293053 4.1959929 7356.9502
+55855.16865297803 4.1960716 7356.5571
+55856.16865302552 4.1961112 7355.7695
+55857.16865307302 4.1962295 7355.5728
+55858.16865312052 4.1960716 7356.5571
+55859.16865316802 4.1962295 7356.3604
+55860.16865321551 4.1963472 7355.7695
+55861.16865326301 4.1963472 7355.9663
+55862.16865331051 4.1963081 7355.9663
+55863.16865335801 4.1965051 7356.7539
+55864.1686534055 4.1964259 7356.1636
+55865.168653453 4.1966228 7355.3765
+55866.1686535005 4.1965442 7355.9663
+55867.168653548 4.1966624 7355.9663
+55868.16865359549 4.1966228 7355.1797
+55869.16865364299 4.1968198 7356.1636
+55870.16865369049 4.1967802 7356.3604
+55871.16865373799 4.1967411 7356.1636
+55872.16865378548 4.196938 7355.9663
+55873.16865383298 4.1968198 7356.7539
+55874.16865388048 4.1968594 7356.3604
+55875.16865392798 4.1969771 7356.1636
+55876.16865397547 4.1970167 7355.9663
+55877.16865402297 4.197135 7355.9663
+55878.16865407047 4.1970954 7355.9663
+55879.16865411797 4.1972136 7355.9663
+55880.16865416546 4.1973314 7355.9663
+55881.16865421296 4.1972528 7356.5571
+55882.16865426046 4.1973314 7355.9663
+55883.16865430796 4.1974893 7356.1636
+55884.16865435545 4.1974101 7356.1636
+55885.16865440295 4.1974497 7356.1636
+55886.16865445045 4.1974101 7355.9663
+55887.16865449795 4.1974497 7354.9824
+55888.16865454544 4.1975679 7355.9663
+55889.16865459294 4.1976857 7355.9663
+55890.16865464044 4.1977253 7355.7695
+55891.16865468794 4.1976466 7356.5571
+55892.16865473543 4.197804 7356.1636
+55893.16865478293 4.1977649 7355.5728
+55894.16865483043 4.1978436 7355.5728
+55895.16865487793 4.1980009 7355.9663
+55896.16865492542 4.1980009 7355.7695
+55897.16865497292 4.1979222 7355.9663
+55898.16865502042 4.1980796 7356.9502
+55899.16865506792 4.1981192 7355.3765
+55900.16865511541 4.1981192 7355.3765
+55901.16865516291 4.1980796 7355.5728
+55902.16865521041 4.1983552 7355.9663
+55903.1686552579 4.1982765 7355.7695
+55904.1686553054 4.1983552 7355.7695
+55905.1686553529 4.1983552 7356.5571
+55906.1686554004 4.1984339 7355.7695
+55907.16865544789 4.1983948 7356.1636
+55908.16865549539 4.1985521 7355.9663
+55909.16865554289 4.1985126 7356.1636
+55910.16865559039 4.1985126 7357.3442
+55911.16865563788 4.1986704 7355.7695
+55912.16865568538 4.1985912 7355.9663
+55913.16865573288 4.1987882 7355.9663
+55914.16865578038 4.1987491 7356.1636
+55915.16865582787 4.1987491 7356.3604
+55916.16865587537 4.1987882 7356.7539
+55917.16865592287 4.1989064 7355.7695
+55918.16865597037 4.1989455 7355.3765
+55919.16865601786 4.1989455 7355.3765
+55920.16865606536 4.1989064 7355.5728
+55921.16865611286 4.1991034 7356.5571
+55922.16865616036 4.1990247 7355.5728
+55923.16865620785 4.1991034 7355.9663
+55924.16865625535 4.199182 7355.9663
+55925.16865630285 4.1993003 7357.1475
+55926.16865635035 4.1992607 7356.7539
+55927.16865639784 4.1993394 7355.7695
+55928.16865644534 4.199379 7355.9663
+55929.16865649284 4.1994967 7355.7695
+55930.16865654034 4.199379 7355.9663
+55931.16865658783 4.1995363 7355.7695
+55932.16865663533 4.1994181 7356.1636
+55933.16865668283 4.1994967 7355.5728
+55934.16865673033 4.1995754 7355.9663
+55935.16865677782 4.1994967 7356.1636
+55936.16865682532 4.1997724 7356.5571
+55937.16865687282 4.1996546 7355.7695
+55938.16865692032 4.1996937 7356.5571
+55939.16865696781 4.1997333 7355.9663
+55940.16865701531 4.1998119 7356.9502
+55941.16865706281 4.199851 7356.1636
+55942.16865711031 4.199851 7355.9663
+55943.1686571578 4.2000089 7355.1797
+55943.87865719153 4.1999693 7356.3604
+55943.88065719162 4.1998906 7355.9663
+55943.89665719238 4.2000875 7372.6963
+55944.89665723988 4.2001266 7370.728
+55945.89665728738 4.2000875 7367.3818
+55946.89665733487 4.2000875 7363.249
+55947.89665738237 4.2001662 7357.9346
+55948.89665742987 4.2001266 7358.3286
+55949.89665747737 4.2001266 7354.9824
+55950.89665752486 4.2000875 7351.4399
+55951.89665757236 4.2001662 7350.062
+55952.89665761986 4.2000875 7340.0244
+55953.89665766736 4.2002058 7340.418
+55954.89665771485 4.2001266 7338.6465
+55955.89665776235 4.2001266 7333.1357
+55956.89665780985 4.2001266 7331.7578
+55957.89665785735 4.2001266 7326.2471
+55958.89665790484 4.2001662 7322.1138
+55959.89665795234 4.2001266 7320.9331
+55960.89665799984 4.2002058 7317.5869
+55961.89665804734 4.2002845 7314.832
+55962.89665809483 4.2001662 7313.0605
+55963.89665814233 4.2002058 7307.5493
+55964.89665818983 4.2001662 7303.0225
+55965.89665823733 4.2001266 7298.1021
+55966.89665828482 4.2002058 7298.1021
+55967.89665833232 4.2000875 7294.166
+55968.89665837982 4.2000875 7291.2139
+55969.89665842731 4.2000875 7285.8994
+55970.89665847481 4.2001662 7285.3091
+55971.89665852231 4.2001662 7282.3569
+55972.89665856981 4.2001662 7279.7983
+55973.8966586173 4.2000875 7275.4683
+55974.8966586648 4.2002058 7272.5161
+55975.8966587123 4.2001662 7271.335
+55976.8966587598 4.2002058 7266.021
+55977.89665880729 4.2002058 7262.8721
+55978.89665885479 4.2000875 7260.7065
+55979.89665890229 4.2001662 7257.7544
+55980.89665894979 4.2000875 7254.0151
+55981.89665899728 4.2000875 7252.2437
+55982.89665904478 4.2001662 7249.0947
+55983.89665909228 4.2001266 7245.1582
+55984.89665913978 4.2002449 7243.9775
+55985.89665918727 4.2002058 7240.6313
+55986.89665923477 4.2002058 7236.3018
+55987.89665928227 4.2002058 7234.7271
+55988.89665932977 4.2001266 7231.5781
+55989.89665937726 4.2002449 7228.8223
+55990.89665942476 4.2001662 7222.3271
+55991.89665947226 4.2001662 7225.6733
+55992.89665951976 4.2001662 7217.8008
+55993.89665956725 4.2000875 7213.8647
+55994.89665961475 4.2002449 7214.6514
+55995.89665966225 4.2002058 7211.6992
+55996.89665970975 4.2001266 7208.5503
+55997.89665975724 4.2002058 7205.9917
+55998.89665980474 4.2000875 7203.2368
+55999.89665985224 4.2002449 7197.9224
+56000.89665989974 4.2001662 7194.5767
+56001.89665994723 4.2001266 7192.8052
+56002.89665999473 4.2001662 7187.8848
+56003.89666004223 4.2001266 7182.7671
+56004.89666008973 4.2001266 7181.1929
+56005.89666013722 4.2000875 7176.4692
+56006.89666018472 4.2001662 7173.7139
+56007.89666023222 4.2000875 7169.9741
+56008.89666027972 4.2001662 7164.4634
+56009.89666032721 4.2001662 7160.1333
+56010.89666037471 4.2000875 7157.1812
+56011.89666042221 4.200048 7154.8193
+56012.89666046971 4.2001266 7151.6704
+56013.8966605172 4.2001662 7149.3081
+56014.8966605647 4.200048 7143.207
+56015.8966606122 4.2002449 7141.2388
+56016.8966606597 4.2001662 7139.8613
+56017.89666070719 4.2002058 7136.5151
+56018.89666075469 4.2000875 7134.5469
+56019.89666080219 4.2002058 7131.3979
+56020.89666084968 4.2002058 7124.7061
+56021.89666089718 4.2002449 7123.9189
+56022.89666094468 4.2002449 7118.8018
+56023.89666099218 4.2002449 7111.9131
+56024.89666103967 4.2001266 7110.7319
+56025.89666108717 4.2001662 7106.4023
+56026.89666113467 4.2001266 7103.2534
+56027.89666118217 4.2002058 7100.104
+56028.89666122966 4.2000875 7095.1836
+56029.89666127716 4.200048 7090.854
+56030.89666132466 4.2001662 7091.8379
+56031.89666137216 4.2001662 7086.1304
+56032.89666141965 4.2002058 7084.5552
+56033.89666146715 4.2001662 7081.21
+56034.89666151465 4.2001662 7076.8794
+56035.89666156215 4.2002449 7074.5181
+56036.89666160964 4.2002449 7072.3525
+56037.89666165714 4.2001662 7068.6133
+56038.89666170464 4.2001662 7066.6455
+56039.89666175214 4.2001266 7062.3149
+56040.89666179963 4.2000875 7057.9854
+56041.89666184713 4.2001266 7053.6553
+56042.89666189463 4.2001662 7051.0962
+56043.89666194213 4.2001266 7048.3413
+56044.89666198962 4.2002058 7046.3726
+56045.89666203712 4.2002449 7042.2397
+56046.89666208462 4.2002058 7041.0591
+56047.89666213212 4.2001662 7038.894
+56048.89666217961 4.200048 7035.1543
+56049.89666222711 4.2001266 7033.1865
+56050.89666227461 4.2001266 7031.0215
+56051.89666232211 4.2001662 7027.8721
+56052.8966623696 4.2001266 7023.7388
+56053.8966624171 4.2002058 7021.5742
+56054.8966624646 4.2001266 7018.6221
+56055.8966625121 4.2001662 7014.8823
+56056.89666255959 4.2001266 7013.5044
+56057.89666260709 4.2002449 7009.1748
+56058.89666265459 4.2001266 7005.8286
+56059.89666270209 4.2000875 7005.2383
+56060.89666274958 4.2001662 7002.2861
+56061.89666279708 4.2000875 6997.3657
+56062.89666284458 4.2002058 6995.791
+56063.89666289208 4.2001662 6992.0513
+56064.89666293957 4.2002058 6989.8867
+56065.89666298707 4.2002058 6985.1631
+56066.89666303457 4.2002058 6982.2104
+56067.89666308207 4.2002058 6976.5029
+56068.89666312956 4.2001662 6976.1089
+56069.89666317706 4.2001662 6973.1567
+56070.89666322456 4.2002449 6971.3857
+56071.89666327205 4.200048 6968.4331
+56072.89666331955 4.2001662 6966.8589
+56073.89666336705 4.2002449 6965.875
+56074.89666341455 4.2002058 6961.7412
+56075.89666346204 4.2001662 6960.167
+56076.89666350954 4.2001662 6956.624
+56077.89666355704 4.2002845 6954.4595
+56078.89666360454 4.2002058 6950.7197
+56079.89666365203 4.2001662 6946.98
+56080.89666369953 4.200048 6941.0757
+56081.89666374703 4.200048 6940.2881
+56082.89666379453 4.2002058 6937.5327
+56083.89666384202 4.2001662 6934.7773
+56084.89666388952 4.2001662 6932.0225
+56085.89666393702 4.2002845 6930.251
+56086.89666398452 4.2001662 6922.9683
+56087.89666403201 4.2002058 6921.1968
+56088.89666407951 4.2001266 6919.229
+56089.89666412701 4.2002058 6916.2764
+56090.89666417451 4.2001266 6912.9312
+56091.896664222 4.2000875 6909.3882
+56092.8966642695 4.2001662 6908.9946
+56093.896664317 4.2001266 6904.8613
+56094.8966643645 4.2001266 6901.3188
+56095.89666441199 4.2001266 6897.9727
+56096.89666445949 4.2001266 6896.0044
+56097.89666450699 4.2000875 6890.2969
+56098.89666455449 4.2002058 6891.8716
+56099.89666460198 4.2001266 6886.9512
+56100.89666464948 4.2001266 6884.5889
+56101.89666469698 4.200048 6878.291
+56102.89666474448 4.2000875 6877.1099
+56103.89666479197 4.2001662 6875.3389
+56104.89666483947 4.2001662 6873.1733
+56105.89666488697 4.2001266 6868.8438
+56106.89666493447 4.2001266 6868.0566
+56107.89666498196 4.2001266 6861.7588
+56108.89666502946 4.2002058 6860.7744
+56109.89666507696 4.2001266 6858.4126
+56110.89666512446 4.2000875 6856.4443
+56111.89666517195 4.200048 6851.5239
+56112.89666521945 4.2001266 6846.8003
+56113.89666526695 4.2002058 6847.3911
+56114.89666531445 4.2002449 6843.4541
+56115.89666536194 4.2001662 6843.4541
+56116.89666540944 4.2001266 6838.9277
+56117.89666545694 4.2001662 6837.1563
+56118.89666550444 4.2001266 6834.0073
+56119.89666555193 4.2002058 6831.252
+56120.89666559943 4.2000875 6827.1187
+56121.89666564693 4.2001266 6822.1978
+56122.89666569442 4.2001662 6824.7568
+56123.89666574192 4.2001266 6819.8364
+56124.89666578942 4.2001662 6816.4902
+56125.89666583692 4.2000875 6815.3091
+56126.89666588441 4.2001662 6812.9478
+56127.89666593191 4.2000089 6805.4688
+56128.89666597941 4.2001266 6806.0591
+56129.89666602691 4.2001266 6804.2876
+56130.8966660744 4.2002058 6800.7451
+56131.8966661219 4.2001662 6797.9893
+56132.8966661694 4.2002449 6794.0532
+56133.8966662169 4.2000875 6791.1011
+56134.89666626439 4.2001266 6787.1646
+56135.89666631189 4.2000875 6785.3931
+56136.89666635939 4.2001662 6786.9678
+56137.89666640689 4.2001266 6783.0317
+56138.89666645438 4.2002449 6778.3081
+56139.89666650188 4.2001266 6777.127
+56140.89666654938 4.2000875 6771.2222
+56141.89666659688 4.2002845 6771.6162
+56142.89666664437 4.2001662 6768.4673
+56143.89666669187 4.2001662 6764.1367
+56144.89666673937 4.2002058 6762.1689
+56145.89666678687 4.2001266 6759.4131
+56146.89666683436 4.2001662 6753.5088
+56147.89666688186 4.2001662 6751.7373
+56148.89666692936 4.2000875 6747.0137
+56149.89666697686 4.2001662 6747.8013
+56150.89666702435 4.2002058 6743.0771
+56151.89666707185 4.200048 6737.3696
+56152.89666711935 4.2001662 6737.1729
+56153.89666716685 4.2000875 6734.6143
+56154.89666721434 4.2002058 6728.3164
+56155.89666726184 4.2000875 6727.9224
+56156.89666730934 4.2000875 6722.6084
+56157.89666735684 4.2001662 6717.4917
+56158.89666740433 4.2001266 6715.9165
+56159.89666745183 4.2000875 6713.9487
+56160.89666749933 4.2002058 6710.0122
+56161.89666754683 4.2001266 6706.0762
+56162.89666759432 4.2001266 6701.5488
+56163.89666764182 4.2001266 6697.8096
+56164.89666768932 4.2002058 6696.0381
+56165.89666773682 4.2001266 6694.4639
+56166.89666778431 4.2001662 6688.9526
+56167.89666783181 4.2001662 6690.7241
+56168.89666787931 4.2001662 6685.6064
+56169.89666792681 4.2001662 6682.2607
+56170.8966679743 4.2001266 6680.293
+56171.8966680218 4.2001266 6674.1919
+56172.8966680693 4.2002058 6676.75
+56173.89666811679 4.2000875 6671.042
+56174.89666816429 4.2000875 6666.5156
+56175.89666821179 4.2002058 6664.3506
+56176.89666825929 4.2000875 6662.9731
+56177.89666830678 4.2002845 6660.2173
+56178.89666835428 4.2002058 6655.8872
+56179.89666840178 4.2001662 6655.6904
+56180.89666844928 4.2001266 6649.7861
+56181.89666849677 4.2001662 6647.6211
+56182.89666854427 4.2001662 6643.291
+56183.89666859177 4.2001662 6643.4883
+56184.89666863927 4.2002449 6637.3862
+56185.89666868676 4.2002058 6633.4502
+56186.89666873426 4.2001266 6628.5298
+56187.89666878176 4.2001662 6625.9712
+56188.89666882926 4.2001266 6623.0186
+56189.89666887675 4.2001662 6621.0508
+56190.89666892425 4.2001266 6612.5874
+56191.89666897175 4.2001266 6611.8008
+56192.89666901925 4.2001662 6606.8804
+56193.89666906674 4.2001662 6606.4863
+56194.89666911424 4.2001266 6603.9272
+56195.89666916174 4.200048 6599.7944
+56196.89666920924 4.2002058 6597.4326
+56197.89666925673 4.2001266 6592.709
+56198.89666930423 4.2001266 6587.7886
+56199.89666935173 4.2003236 6584.0493
+56200.89666939923 4.2001266 6581.8843
+56201.89666944672 4.2002058 6577.751
+56202.89666949422 4.2001662 6576.5698
+56203.89666954172 4.2001266 6569.8784
+56204.89666958922 4.2001662 6569.8784
+56205.89666963671 4.2001266 6568.1069
+56206.89666968421 4.2002058 6562.9897
+56207.89666973171 4.2002058 6562.2021
+56208.89666977921 4.2001662 6557.4785
+56209.8966698267 4.2001266 6550.5903
+56210.8966698742 4.2002058 6551.1807
+56211.8966699217 4.200048 6546.2603
+56212.8966699692 4.2001662 6545.0791
+56213.89667001669 4.2000875 6543.7017
+56214.89667006419 4.2000875 6536.813
+56215.89667011169 4.200048 6537.2065
+56216.89667015919 4.2002449 6530.3179
+56217.89667020668 4.2002449 6528.5464
+56218.89667025418 4.2002058 6525.5942
+56219.89667030168 4.2000875 6523.4297
+56220.89667034918 4.2002058 6518.5093
+56221.89667039667 4.2001266 6516.7378
+56222.89667044417 4.2001662 6510.4395
+56223.89667049167 4.2001662 6506.6997
+56224.89667053916 4.2002058 6500.9917
+56225.89667058666 4.2001266 6501.9761
+56226.89667063416 4.2002058 6496.6621
+56227.89667068166 4.2001662 6492.1353
+56228.89667072915 4.2000875 6489.7739
+56229.89667077665 4.2002845 6489.1831
+56230.89667082415 4.2001266 6481.5073
+56231.89667087165 4.2002058 6483.082
+56232.89667091914 4.2001662 6479.1455
+56233.89667096664 4.2001662 6472.2573
+56234.89667101414 4.2002058 6470.6826
+56235.89667106164 4.2000875 6465.9585
+56236.89667110913 4.2001266 6461.4316
+56237.89667115663 4.2001266 6457.8896
+56238.89667120413 4.2002058 6455.7241
+56239.89667125163 4.2002058 6449.623
+56240.89667129912 4.2002449 6448.4419
+56241.89667134662 4.2001266 6442.9316
+56242.89667139412 4.2001266 6440.7661
+56243.89667144162 4.200048 6436.4365
+56244.89667148911 4.2002058 6433.8779
+56245.89667153661 4.2001266 6429.5479
+56246.89667158411 4.2000875 6428.7607
+56247.89667163161 4.2001662 6423.4463
+56248.8966716791 4.2001662 6422.0688
+56249.8966717266 4.2001266 6418.1323
+56250.8966717741 4.2002058 6414.1963
+56251.8966718216 4.2001266 6410.2598
+56252.89667186909 4.2001662 6408.292
+56253.89667191659 4.2002058 6404.1582
+56254.89667196409 4.2001266 6401.0093
+56255.89667201159 4.2001266 6397.4663
+56256.89667205908 4.200048 6392.7432
+56257.89667210658 4.2001662 6389.2007
+56258.89667215408 4.2001662 6387.4292
+56259.89667220158 4.2002058 6386.248
+56260.89667224907 4.2000875 6380.7373
+56261.89667229657 4.2000089 6379.3599
+56262.89667234407 4.2000875 6376.0137
+56263.89667239157 4.2001662 6371.6836
+56264.89667243906 4.2000875 6369.7158
+56265.89667248656 4.2001266 6369.5186
+56266.89667253406 4.2002058 6363.8105
+56267.89667258156 4.2002449 6361.646
+56268.89667262905 4.2001266 6359.6777
+56269.89667267655 4.2002058 6357.5127
+56270.89667272405 4.2002058 6356.1353
+56271.89667277155 4.2001266 6347.2783
+56272.89667281904 4.2001662 6345.7041
+56273.89667286654 4.2002058 6346.0972
+56274.89667291404 4.2001266 6340.9805
+56275.89667296153 4.2001266 6340.5864
+56276.89667300903 4.2001662 6339.0122
+56277.89667305653 4.2000875 6335.2725
+56278.89667310403 4.2001266 6332.5171
+56279.89667315152 4.2001266 6328.5806
+56280.89667319902 4.200048 6323.8569
+56281.89667324652 4.2001266 6321.6924
+56282.89667329402 4.2001266 6320.9048
+56283.89667334151 4.2001266 6315.394
+56284.89667338901 4.2000875 6314.4097
+56285.89667343651 4.2002058 6309.8828
+56286.89667348401 4.2000875 6308.1118
+56287.8966735315 4.2000875 6301.8135
+56288.896673579 4.2001662 6301.6167
+56289.8966736265 4.2001662 6299.4521
+56290.896673674 4.2001266 6298.8613
+56291.89667372149 4.2002058 6291.9727
+56292.89667376899 4.2002058 6291.5786
+56293.89667381649 4.2001266 6286.2651
+56294.89667386399 4.2002449 6286.0684
+56295.89667391148 4.2001266 6281.3447
+56296.89667395898 4.2000875 6277.9985
+56297.89667400648 4.2002058 6276.6211
+56298.89667405398 4.2001662 6273.8652
+56299.89667410147 4.2000875 6268.5513
+56300.89667414897 4.2001266 6265.7964
+56301.89667419647 4.2001662 6265.0088
+56302.89667424397 4.2001662 6260.2852
+56303.89667429146 4.2000875 6257.9229
+56304.89667433896 4.2000875 6254.9707
+56305.89667438646 4.2001662 6251.8218
+56306.89667443396 4.2001662 6248.2788
+56307.89667448145 4.2001662 6243.3584
+56308.89667452895 4.2000875 6239.2256
+56309.89667457645 4.2002449 6238.2417
+56310.89667462395 4.2002058 6232.5337
+56311.89667467144 4.2001266 6224.8579
+56312.89667471894 4.200048 6222.8896
+56313.89667476644 4.2001662 6223.0864
+56314.89667481394 4.2001266 6222.8896
+56315.89667486143 4.2000875 6216.0015
+56316.89667490893 4.2001662 6214.0332
+56317.89667495643 4.2001662 6209.3096
+56318.89667500393 4.1999693 6208.9155
+56319.89667505142 4.2001266 6206.1606
+56320.89667509892 4.2000875 6203.0112
+56321.89667514642 4.2001662 6199.6655
+56322.89667519392 4.2001662 6197.1064
+56323.89667524141 4.2002058 6193.5635
+56324.89667528891 4.200048 6188.25
+56325.89667533641 4.200048 6183.1328
+56326.89667538391 4.2001662 6182.542
+56327.8966754314 4.2001266 6178.9995
+56328.8966754789 4.2002058 6178.9995
+56329.8966755264 4.2000875 6172.3076
+56330.89667557389 4.2001662 6169.9458
+56331.89667562139 4.2001662 6171.7173
+56332.89667566889 4.2000875 6165.813
+56333.89667571639 4.2002058 6164.2383
+56334.89667576388 4.2001266 6159.9077
+56335.89667581138 4.2001266 6158.9238
+56336.89667585888 4.2001662 6155.7749
+56337.89667590638 4.2000875 6151.0513
+56338.89667595387 4.2001662 6149.8706
+56339.89667600137 4.2001266 6145.3438
+56340.89667604887 4.2001662 6142.9819
+56341.89667609637 4.2002449 6138.8491
+56342.89667614386 4.2001662 6135.5029
+56343.89667619136 4.2000875 6128.2207
+56344.89667623886 4.2001662 6130.3857
+56345.89667628636 4.2001662 6124.6782
+56346.89667633385 4.2001662 6121.7256
+56347.89667638135 4.2001266 6117.9863
+56348.89667642885 4.2002058 6113.2627
+56349.89667647635 4.2000875 6107.3579
+56350.89667652384 4.2000875 6106.7676
+56351.89667657134 4.2001662 6102.4375
+56352.89667661884 4.2001662 6100.4697
+56353.89667666634 4.200048 6098.1074
+56354.89667671383 4.2001662 6096.1392
+56355.89667676133 4.2001662 6090.2349
+56356.89667680883 4.2002449 6088.0698
+56357.89667685633 4.2001662 6082.1655
+56358.89667690382 4.2002449 6082.1655
+56359.89667695132 4.2000875 6078.0322
+56360.89667699882 4.2001662 6074.6865
+56361.89667704632 4.200048 6071.9307
+56362.89667709381 4.2002058 6070.75
+56363.89667714131 4.2001266 6067.6011
+56364.89667718881 4.2000875 6060.7119
+56365.89667723631 4.2001662 6058.1538
+56366.8966772838 4.200048 6058.1538
+56367.8966773313 4.2001662 6055.3984
+56368.8966773788 4.2001266 6052.4463
+56369.8966774263 4.2000875 6048.5098
+56370.89667747379 4.2001266 6045.5576
+56371.89667752129 4.2002845 6042.999
+56372.89667756879 4.2001662 6039.2593
+56373.89667761629 4.2001266 6030.5991
+56374.89667766378 4.2001266 6030.2061
+56375.89667771128 4.2001266 6024.104
+56376.89667775878 4.2002058 6026.0723
+56377.89667780628 4.2002058 6024.6948
+56378.89667785377 4.2001266 6023.1201
+56379.89667790127 4.2002058 6016.4282
+56380.89667794877 4.2001662 6012.6885
+56381.89667799626 4.2001266 6010.3271
+56382.89667804376 4.2002058 6007.1782
+56383.89667809126 4.2001266 6006.5874
+56384.89667813876 4.200048 6001.667
+56385.89667818625 4.2001266 5998.124
+56386.89667823375 4.2002058 5998.5181
+56387.89667828125 4.2000875 5993.4004
+56388.89667832875 4.2001662 5993.9912
+56389.89667837624 4.2001266 5990.2515
+56390.89667842374 4.2000875 5986.5122
+56391.89667847124 4.2001662 5985.5278
+56392.89667851874 4.2001662 5983.3633
+56393.89667856623 4.2001662 5977.8521
+56394.89667861373 4.2002449 5974.3096
+56395.89667866123 4.2001662 5972.9316
+56396.89667870873 4.2001266 5971.1602
+56397.89667875622 4.2001266 5967.0273
+56398.89667880372 4.2001266 5964.272
+56399.89667885122 4.2001662 5961.5161
+56400.89667889872 4.2001662 5958.564
+56401.89667894621 4.2001662 5955.6118
+56402.89667899371 4.2001662 5953.8403
+56403.89667904121 4.2001266 5951.085
+56404.89667908871 4.2001662 5944.9839
+56405.8966791362 4.200048 5942.6221
+56406.8966791837 4.2001662 5943.2124
+56407.8966792312 4.2001662 5936.9146
+56408.8966792787 4.2001662 5935.9302
+56409.89667932619 4.2002449 5935.1431
+56410.89667937369 4.2001266 5932.1909
+56411.89667942119 4.2002058 5928.6479
+56412.89667946869 4.2001662 5926.0889
+56413.89667951618 4.2001662 5924.5146
+56414.89667956368 4.2002449 5922.5469
+56415.89667961118 4.2000875 5919.9878
+56416.89667965868 4.200048 5914.0835
+56417.89667970617 4.2001662 5912.7056
+56418.89667975367 4.2001662 5913.2959
+56419.89667980117 4.2001266 5910.147
+56420.89667984867 4.2002058 5906.6045
+56421.89667989616 4.2001662 5905.0303
+56422.89667994366 4.2001266 5902.0771
+56423.89667999116 4.2001662 5896.7637
+56424.89668003866 4.2002058 5893.2207
+56425.89668008615 4.2001662 5891.6465
+56426.89668013365 4.2001662 5890.6626
+56427.89668018115 4.2001662 5886.7256
+56428.89668022865 4.2002845 5885.5449
+56429.89668027614 4.2001266 5882.0024
+56430.89668032364 4.200048 5878.6563
+56431.89668037114 4.2001662 5875.1133
+56432.89668041863 4.2001662 5871.5713
+56433.89668046613 4.2000875 5866.8472
+56434.89668051363 4.2000875 5862.1235
+56435.89668056113 4.2001266 5859.5649
+56436.89668060862 4.2001662 5856.416
+56437.89668065612 4.2002058 5855.6284
+56438.89668070362 4.2001266 5848.7402
+56439.89668075112 4.2000875 5846.5752
+56440.89668079861 4.2001662 5842.4419
+56441.89668084611 4.2002058 5840.6709
+56442.89668089361 4.2000875 5836.3403
+56443.89668094111 4.2001662 5832.2075
+56444.8966809886 4.2000875 5833.585
+56445.8966810361 4.2002058 5825.3188
+56446.8966810836 4.2001662 5824.9253
+56447.8966811311 4.200048 5817.0522
+56448.89668117859 4.2000875 5816.2651
+56449.89668122609 4.2000875 5813.9038
+56450.89668127359 4.2002058 5810.9512
+56451.89668132109 4.2001662 5806.8179
+56452.89668136858 4.2001266 5805.2437
+56453.89668141608 4.2000875 5798.9453
+56454.89668146358 4.2001266 5799.9292
+56455.89668151108 4.2002449 5793.8281
+56456.89668155857 4.2001266 5791.2695
+56457.89668160607 4.2001662 5788.3169
+56458.89668165357 4.2002449 5786.9395
+56459.89668170107 4.2001662 5784.3809
+56460.89668174856 4.2000875 5779.6572
+56461.89668179606 4.2001266 5775.9175
+56462.89668184356 4.2001266 5774.54
+56463.89668189106 4.2000875 5770.9971
+56464.89668193855 4.2002058 5770.21
+56465.89668198605 4.2001266 5763.9121
+56466.89668203355 4.2000875 5760.7632
+56467.89668208105 4.2002058 5759.5815
+56468.89668212854 4.2002058 5753.2837
+56469.89668217604 4.2000875 5751.709
+56470.89668222354 4.2001266 5747.7729
+56471.89668227104 4.2002058 5745.6079
+56472.89668231853 4.2002058 5744.23
+56473.89668236603 4.2002058 5739.3096
+56474.89668241353 4.2002449 5739.1128
+56475.89668246103 4.2002058 5734.5859
+56476.89668250852 4.2001662 5734.3892
+56477.89668255602 4.2002449 5732.2241
+56478.89668260352 4.2001266 5729.0752
+56479.89668265102 4.200048 5725.1387
+56480.89668269851 4.2001266 5722.5801
+56481.89668274601 4.200048 5719.2339
+56482.89668279351 4.2000089 5718.8408
+56483.896682841 4.2001266 5712.5425
+56484.8966828885 4.2001662 5712.3457
+56485.896682936 4.2001266 5710.9683
+56486.8966829835 4.2002058 5706.6377
+56487.89668303099 4.2002058 5705.0635
+56488.89668307849 4.2001266 5701.3242
+56489.89668312599 4.2002058 5700.1436
+56490.89668317349 4.2001662 5697.1904
+56491.89668322098 4.2001266 5688.9243
+56492.89668326848 4.2000875 5690.1055
+56493.89668331598 4.2001266 5686.3657
+56494.89668336348 4.2002058 5683.6104
+56495.89668341097 4.2001662 5680.6582
+56496.89668345847 4.2001266 5678.4932
+56497.89668350597 4.2002058 5676.7217
+56498.89668355347 4.2000875 5671.6045
+56499.89668360096 4.2001662 5670.4238
+56500.89668364846 4.2002058 5667.6685
+56501.89668369596 4.2000875 5662.1572
+56502.89668374346 4.2001662 5658.4175
+56503.89668379095 4.2001266 5658.4175
+56504.89668383845 4.2002058 5655.8589
+56505.89668388595 4.200048 5654.0879
+56506.89668393345 4.2002058 5648.1831
+56507.89668398094 4.2002058 5645.6245
+56508.89668402844 4.2001266 5643.2627
+56509.89668407594 4.2001662 5638.5391
+56510.89668412344 4.2000875 5637.752
+56511.89668417093 4.2000875 5633.8159
+56512.89668421843 4.2000875 5631.4536
+56513.89668426593 4.2001662 5627.5176
+56514.89668431343 4.2001266 5625.9429
+56515.89668436092 4.2002449 5622.4004
+56516.89668440842 4.2002058 5618.2666
+56517.89668445592 4.200048 5615.3145
+56518.89668450342 4.2000875 5611.5752
+56519.89668455091 4.2000875 5605.8672
+56520.89668459841 4.2001662 5604.293
+56521.89668464591 4.2001266 5600.75
+56522.89668469341 4.2001662 5596.814
+56523.8966847409 4.2001662 5593.271
+56524.8966847884 4.2001266 5590.5161
+56525.8966848359 4.2001662 5584.4146
+56526.8966848834 4.2001266 5581.856
+56527.89668493089 4.2001662 5583.4302
+56528.89668497839 4.2001266 5579.6909
+56529.89668502589 4.2002449 5576.3452
+56530.89668507339 4.2001266 5571.2275
+56531.89668512088 4.2000875 5568.2754
+56532.89668516838 4.2002845 5566.8979
+56533.89668521588 4.2001662 5563.1582
+56534.89668526337 4.2001266 5558.8286
+56535.89668531087 4.2002058 5555.6792
+56536.89668535837 4.2002058 5553.7109
+56537.89668540587 4.2001662 5549.1846
+56538.89668545336 4.2001266 5546.8223
+56539.89668550086 4.2001266 5544.0669
+56540.89668554836 4.2001662 5539.7373
+56541.89668559586 4.2002058 5539.3433
+56542.89668564335 4.2001266 5532.8486
+56543.89668569085 4.2001662 5532.4546
+56544.89668573835 4.200048 5529.3057
+56545.89668578585 4.2001662 5523.7944
+56546.89668583334 4.2001662 5523.0073
+56547.89668588084 4.2001266 5520.4492
+56548.89668592834 4.2001266 5517.8901
+56549.89668597584 4.2001662 5513.1665
+56550.89668602333 4.2001266 5509.8208
+56551.89668607083 4.2001266 5505.0972
+56552.89668611833 4.2001662 5505.6875
+56553.89668616583 4.200048 5496.8306
+56554.89668621332 4.2000875 5498.6021
+56555.89668626082 4.2002058 5495.0591
+56556.89668630832 4.2001662 5492.8945
+56557.89668635582 4.2001266 5487.5806
+56558.89668640331 4.2000875 5483.0537
+56559.89668645081 4.2001266 5483.0537
+56560.89668649831 4.2002058 5478.7236
+56561.89668654581 4.2002449 5475.3779
+56562.8966865933 4.2001266 5469.8667
+56563.8966866408 4.2000875 5472.0317
+56564.8966866883 4.2002058 5468.4893
+56565.8966867358 4.2000875 5467.3081
+56566.89668678329 4.2000089 5462.3877
+56567.89668683079 4.2001266 5458.6479
+56568.89668687829 4.2001266 5460.4194
+56569.89668692579 4.2001662 5456.4829
+56570.89668697328 4.2001662 5453.7275
+56571.89668702078 4.2001662 5451.7593
+56572.89668706828 4.2002449 5447.8232
+56573.89668711578 4.2001266 5443.8867
+56574.89668716327 4.2000875 5444.6743
+56575.89668721077 4.2001266 5441.7222
+56576.89668725827 4.2002058 5440.3438
+56577.89668730577 4.2001266 5435.2271
+56578.89668735326 4.2002058 5434.0464
+56579.89668740076 4.2002058 5432.4712
+56580.89668744826 4.1999693 5422.6309
+56581.89668749576 4.2001266 5425.7798
+56582.89668754325 4.2002845 5423.0239
+56583.89668759075 4.2000875 5420.8594
+56584.89668763825 4.2001266 5417.3164
+56585.89668768574 4.2002058 5414.7583
+56586.89668773324 4.2001266 5412.0024
+56587.89668778074 4.2001266 5406.688
+56588.89668782824 4.2001662 5406.0981
+56589.89668787573 4.2001266 5401.9653
+56590.89668792323 4.2001266 5399.7998
+56591.89668797073 4.2001266 5398.4224
+56592.89668801823 4.2002058 5393.3052
+56593.89668806572 4.2001266 5390.5498
+56594.89668811322 4.2000875 5387.0068
+56595.89668816072 4.2002449 5387.0068
+56596.89668820822 4.2001662 5381.4956
+56597.89668825571 4.2001266 5378.3467
+56598.89668830321 4.2001266 5377.3628
+56599.89668835071 4.2002058 5375.5913
+56600.89668839821 4.2001662 5371.0645
+56601.8966884457 4.2000875 5367.9155
+56602.8966884932 4.2002058 5365.1597
+56603.8966885407 4.2000089 5358.8618
+56604.8966885882 4.200048 5357.6807
+56605.89668863569 4.2001266 5354.7285
+56606.89668868319 4.2000875 5350.5957
+56607.89668873069 4.2001662 5350.0049
+56608.89668877819 4.2001662 5344.2979
+56609.89668882568 4.2002449 5341.3447
+56610.89668887318 4.2002058 5338.1958
+56611.89668892068 4.2001662 5332.8823
+56612.89668896818 4.2000875 5327.7646
+56613.89668901567 4.2002058 5328.5518
+56614.89668906317 4.2001662 5322.0566
+56615.89668911067 4.2001266 5323.8281
+56616.89668915817 4.2000089 5314.9717
+56617.89668920566 4.2001266 5313.791
+56618.89668925316 4.2000875 5311.0352
+56619.89668930066 4.2001662 5305.7207
+56620.89668934816 4.2001662 5305.3276
+56621.89668939565 4.2001662 5302.5718
+56622.89668944315 4.2001266 5299.4229
+56623.89668949065 4.2001662 5296.8643
+56624.89668953815 4.2001662 5292.3379
+56625.89668958564 4.2002449 5288.5981
+56626.89668963314 4.200048 5284.0713
+56627.89668968064 4.2002449 5282.4966
+56628.89668972814 4.2000875 5277.9702
+56629.89668977563 4.2001662 5275.2148
+56630.89668982313 4.2002058 5272.459
+56631.89668987063 4.2001662 5268.1289
+56632.89668991813 4.2002449 5265.3735
+56633.89668996562 4.2001662 5263.0117
+56634.89669001312 4.2002058 5259.272
+56635.89669006062 4.2000875 5252.5806
+56636.89669010811 4.2001266 5249.8247
+56637.89669015561 4.2001266 5246.6758
+56638.89669020311 4.2002449 5245.2983
+56639.89669025061 4.2001662 5241.5591
+56640.8966902981 4.2000875 5235.064
+56641.8966903456 4.2002449 5233.8828
+56642.8966903931 4.2001266 5229.1592
+56643.8966904406 4.2001662 5226.207
+56644.89669048809 4.2000875 5224.0425
+56645.89669053559 4.2001662 5220.1055
+56646.89669058309 4.2000875 5216.1689
+56647.89669063059 4.2000875 5208.6904
+56648.89669067808 4.2001662 5209.2808
+56649.89669072558 4.2000875 5201.8013
+56650.89669077308 4.2000875 5202.3921
+56651.89669082058 4.2001266 5198.8491
+56652.89669086807 4.2002058 5194.3228
+56653.89669091557 4.2001266 5190.3867
+56654.89669096307 4.2001662 5189.0083
+56655.89669101057 4.200048 5182.5132
+56656.89669105806 4.2000875 5178.3804
+56657.89669110556 4.2001662 5176.4121
+56658.89669115306 4.2001662 5171.6885
+56659.89669120056 4.2000875 5169.7202
+56660.89669124805 4.2001662 5164.9966
+56661.89669129555 4.2002058 5159.4858
+56662.89669134305 4.2001662 5156.9272
+56663.89669139055 4.2001266 5151.6133
+56664.89669143804 4.2001662 5148.4644
+56665.89669148554 4.2001662 5145.1182
+56666.89669153304 4.2002058 5143.1499
+56667.89669158054 4.2002058 5140.9849
+56668.89669162803 4.2001662 5133.8999
+56669.89669167553 4.200048 5134.293
+56670.89669172303 4.2000875 5128.7822
+56671.89669177053 4.2000875 5125.4365
+56672.89669181802 4.2001266 5122.8779
+56673.89669186552 4.2001662 5118.3516
+56674.89669191302 4.2000875 5115.7925
+56675.89669196052 4.2001662 5111.2656
+56676.89669200801 4.2002058 5111.4624
+56677.89669205551 4.2001266 5106.542
+56678.89669210301 4.2002058 5103.1963
+56679.89669215051 4.200048 5096.3076
+56680.896692198 4.2001662 5094.5361
+56681.8966922455 4.2000875 5092.5684
+56682.896692293 4.2002449 5090.4033
+56683.8966923405 4.2000875 5082.9243
+56684.89669238799 4.2002058 5082.3335
+56685.89669243549 4.2002449 5079.7754
+56686.89669248299 4.2002449 5074.8545
+56687.89669253048 4.2001662 5072.4927
+56688.89669257798 4.2000875 5068.9497
+56689.89669262548 4.2002058 5066.5884
+56690.89669267298 4.2000875 5060.4863
+56691.89669272047 4.2001266 5057.1411
+56692.89669276797 4.2001266 5050.8423
+56693.89669281547 4.2000089 5055.1729
+56694.89669286297 4.2001266 5046.9063
+56695.89669291046 4.200048 5045.1353
+56696.89669295796 4.2000875 5040.4116
+56697.89669300546 4.2002449 5038.2461
+56698.89669305296 4.2001662 5033.3257
+56699.89669310045 4.2002058 5030.5703
+56700.89669314795 4.2001662 5028.7993
+56701.89669319545 4.2000875 5024.4692
+56702.89669324295 4.2001266 5023.8784
+56703.89669329044 4.2002058 5019.5488
+56704.89669333794 4.2001662 5017.5806
+56705.89669338544 4.2002058 5015.6128
+56706.89669343294 4.2001266 5009.9048
+56707.89669348043 4.2000875 5007.1494
+56708.89669352793 4.2002058 5003.6064
+56709.89669357543 4.2000875 4997.8989
+56710.89669362293 4.2002449 4998.4897
+56711.89669367042 4.2001266 4995.3403
+56712.89669371792 4.2001266 4990.6167
+56713.89669376542 4.2001662 4988.4521
+56714.89669381292 4.2002449 4984.3188
+56715.89669386041 4.2000875 4979.9888
+56716.89669390791 4.2001662 4978.8081
+56717.89669395541 4.2000875 4972.5098
+56718.89669400291 4.2001266 4971.5254
+56719.8966940504 4.2001266 4969.3604
+56720.8966940979 4.2000875 4966.2114
+56721.8966941454 4.2001266 4963.6528
+56722.8966941929 4.2001662 4961.4878
+56723.89669424039 4.2001266 4957.1582
+56724.89669428789 4.2000875 4949.8755
+56725.89669433539 4.2001266 4953.4185
+56726.89669438289 4.2001662 4948.498
+56727.89669443038 4.2001266 4945.7427
+56728.89669447788 4.2002058 4940.4287
+56729.89669452538 4.2001662 4939.0508
+56730.89669457288 4.2001266 4934.1304
+56731.89669462037 4.2001662 4932.5557
+56732.89669466787 4.2001266 4927.832
+56733.89669471537 4.2002845 4925.2734
+56734.89669476287 4.2001266 4923.8955
+56735.89669481036 4.2001266 4918.9751
+56736.89669485786 4.2000875 4913.8584
+56737.89669490536 4.2002449 4912.874
+56738.89669495285 4.2001266 4908.3472
+56739.89669500035 4.200048 4906.3789
+56740.89669504785 4.2000875 4904.2144
+56741.89669509535 4.2000875 4901.6553
+56742.89669514284 4.2001266 4896.1445
+56743.89669519034 4.2001266 4892.6016
+56744.89669523784 4.2001662 4887.8784
+56745.89669528534 4.2001662 4889.8467
+56746.89669533283 4.2002058 4884.9258
+56747.89669538033 4.2002449 4880.0054
+56748.89669542783 4.2001662 4876.8564
+56749.89669547533 4.2000875 4867.8027
+56750.89669552282 4.2002058 4868.9839
+56751.89669557032 4.2001266 4864.0635
+56752.89669561782 4.2001266 4860.7173
+56753.89669566532 4.2001266 4858.5527
+56754.89669571281 4.2001266 4855.7969
+56755.89669576031 4.2001662 4851.4673
+56756.89669580781 4.2001662 4850.0894
+56757.89669585531 4.2002058 4844.9722
+56758.8966959028 4.2001266 4841.4292
+56759.8966959503 4.2001662 4836.7056
+56760.8966959978 4.2002058 4835.1313
+56761.8966960453 4.2002058 4830.0137
+56762.89669609279 4.2001662 4825.4873
+56763.89669614029 4.200048 4823.519
+56764.89669618779 4.2000875 4823.7158
+56765.89669623529 4.2002058 4818.2051
+56766.89669628278 4.2001266 4811.3164
+56767.89669633028 4.2001662 4813.0874
+56768.89669637778 4.2001266 4806.7896
+56769.89669642528 4.2001662 4803.2471
+56770.89669647277 4.200048 4797.9326
+56771.89669652027 4.2001662 4796.1616
+56772.89669656777 4.2001662 4793.603
+56773.89669661527 4.200048 4785.9268
+56774.89669666276 4.200048 4783.3682
+56775.89669671026 4.2002058 4782.7778
+56776.89669675776 4.2001662 4777.6606
+56777.89669680526 4.200048 4772.937
+56778.89669685275 4.2000875 4770.1816
+56779.89669690025 4.2001266 4765.458
+56780.89669694775 4.200048 4763.293
+56781.89669699525 4.2002058 4761.1279
+56782.89669704274 4.2001266 4756.9946
+56783.89669709024 4.2002058 4754.0425
+56784.89669713774 4.2000089 4748.1382
+56785.89669718524 4.2001266 4746.957
+56786.89669723273 4.2002058 4743.8081
+56787.89669728023 4.2001266 4738.2974
+56788.89669732773 4.2001266 4738.6904
+56789.89669737522 4.2002058 4734.1641
+56790.89669742272 4.2001662 4730.6211
+56791.89669747022 4.200048 4725.3071
+56792.89669751772 4.2001266 4720.5835
+56793.89669756521 4.2001662 4718.0249
+56794.89669761271 4.2000875 4717.6313
+56795.89669766021 4.2002058 4713.498
+56796.89669770771 4.1999693 4707.7905
+56797.8966977552 4.2002449 4707.2002
+56798.8966978027 4.2001662 4703.854
+56799.8966978502 4.2002449 4700.7051
+56800.8966978977 4.2001266 4695.3906
+56801.89669794519 4.2001662 4691.4546
+56802.89669799269 4.2001266 4688.5024
+56803.89669804019 4.2002058 4687.9121
+56804.89669808769 4.2001662 4683.7788
+56805.89669813518 4.2001266 4679.252
+56806.89669818268 4.2001662 4676.4966
+56807.89669823018 4.2000875 4672.7568
+56808.89669827768 4.2001662 4667.8364
+56809.89669832517 4.2000875 4666.6558
+56810.89669837267 4.2000875 4661.3418
+56811.89669842017 4.2001266 4657.2085
+56812.89669846767 4.2001662 4652.8784
+56813.89669851516 4.2002449 4652.0908
+56814.89669856266 4.200048 4643.0376
+56815.89669861016 4.2001266 4643.8247
+56816.89669865766 4.2000875 4638.1172
+56817.89669870515 4.200048 4633.5903
+56818.89669875265 4.2002058 4634.9683
+56819.89669880015 4.2002058 4630.0474
+56820.89669884765 4.2000875 4625.7173
+56821.89669889514 4.2001662 4623.9463
+56822.89669894264 4.2001662 4621.978
+56823.89669899014 4.2002058 4619.2227
+56824.89669903764 4.2001662 4617.8447
+56825.89669908513 4.2001266 4611.1528
+56826.89669913263 4.2002058 4609.5786
+56827.89669918013 4.2001662 4607.6104
+56828.89669922763 4.2002449 4604.6582
+56829.89669927512 4.2002449 4601.7061
+56830.89669932262 4.2002058 4597.376
+56831.89669937012 4.2001266 4594.6206
+56832.89669941762 4.2002058 4594.4233
+56833.89669946511 4.2001266 4588.1255
+56834.89669951261 4.2001662 4586.5508
+56835.89669956011 4.2002449 4582.8115
+56836.89669960761 4.2002449 4580.6465
+56837.8966996551 4.2000875 4573.3643
+56838.8966997026 4.2000089 4572.5771
+56839.8966997501 4.2001266 4571.0024
+56840.89669979759 4.2000875 4566.2788
+56841.89669984509 4.2002058 4564.3105
+56842.89669989259 4.2001266 4560.1772
+56843.89669994009 4.2001266 4554.4697
+56844.89669998758 4.2001662 4550.7305
+56845.89670003508 4.2000875 4551.3208
+56846.89670008258 4.2001662 4546.9907
+56847.89670013008 4.2002058 4541.8735
+56848.89670017757 4.2001266 4539.9053
+56849.89670022507 4.2000089 4533.0166
+56850.89670027257 4.2001266 4531.6392
+56851.89670032007 4.2001662 4529.2773
+56852.89670036756 4.2001266 4524.3569
+56853.89670041506 4.2000875 4519.043
+56854.89670046256 4.2001662 4517.8618
+56855.89670051006 4.2001266 4513.335
+56856.89670055755 4.2001662 4511.5635
+56857.89670060505 4.2002058 4508.021
+56858.89670065255 4.2002058 4503.2974
+56859.89670070005 4.2002449 4501.9194
+56860.89670074754 4.2002449 4497.1958
+56861.89670079504 4.2001266 4494.2437
+56862.89670084254 4.2002058 4490.3071
+56863.89670089004 4.2001266 4485.9775
+56864.89670093753 4.2000089 4480.6631
+56865.89670098503 4.2000089 4477.1206
+56866.89670103253 4.2001266 4472.2002
+56867.89670108003 4.200048 4469.6416
+56868.89670112752 4.2001662 4471.2158
+56869.89670117502 4.200048 4466.2954
+56870.89670122252 4.2000875 4461.375
+56871.89670127002 4.2000875 4463.3433
+56872.89670131751 4.2001662 4457.8325
+56873.89670136501 4.2001662 4455.0771
+56874.89670141251 4.1999693 4450.1563
+56875.89670146001 4.200048 4444.252
+56876.8967015075 4.2001662 4445.0396
+56877.896701555 4.2000875 4441.6934
+56878.8967016025 4.2001266 4440.7095
+56879.89670165 4.2002058 4436.5762
+56880.89670169749 4.2001662 4431.6558
+56881.89670174499 4.2001662 4430.2778
+56882.89670179249 4.2002058 4428.7036
+56883.89670183999 4.1999693 4424.7671
+56884.89670188748 4.2001266 4423.3896
+56885.89670193498 4.2001662 4418.0752
+56886.89670198248 4.2002449 4414.5327
+56887.89670202998 4.2001266 4412.5645
+56888.89670207747 4.200048 4407.4473
+56889.89670212497 4.2002058 4404.6919
+56890.89670217247 4.200048 4402.1333
+56891.89670221996 4.2001266 4398.0
+56892.89670226746 4.2002058 4398.0
+56893.89670231496 4.2001662 4393.4731
+56894.89670236246 4.2000875 4392.2925
+56895.89670240995 4.2001662 4389.1436
+56896.89670245745 4.2002058 4385.6006
+56897.89670250495 4.2002058 4383.2388
+56898.89670255245 4.2001662 4377.728
+56899.89670259994 4.200048 4375.3662
+56900.89670264744 4.2001662 4373.3979
+56901.89670269494 4.2001662 4369.2646
+56902.89670274244 4.2001662 4363.7539
+56903.89670278993 4.1999693 4361.3921
+56904.89670283743 4.2002058 4358.6367
+56905.89670288493 4.2001662 4356.6685
+56906.89670293243 4.200048 4350.3701
+56907.89670297992 4.2002449 4348.0083
+56908.89670302742 4.2000875 4344.8594
+56909.89670307492 4.2001266 4340.7261
+56910.89670312242 4.2001266 4337.5771
+56911.89670316991 4.2001266 4331.4761
+56912.89670321741 4.200048 4331.082
+56913.89670326491 4.2002058 4325.3745
+56914.89670331241 4.2001662 4323.4063
+56915.8967033599 4.2000875 4316.9111
+56916.8967034074 4.2001662 4318.2891
+56917.8967034549 4.2001662 4312.5811
+56918.8967035024 4.2001662 4309.4321
+56919.89670354989 4.2001266 4304.9053
+56920.89670359739 4.2001662 4303.5278
+56921.89670364489 4.2002058 4298.4106
+56922.89670369239 4.2001266 4295.2612
+56923.89670373988 4.2002449 4292.5059
+56924.89670378738 4.2001266 4290.5381
+56925.89670383488 4.2002449 4285.8145
+56926.89670388238 4.2002058 4281.0903
+56927.89670392987 4.2001266 4281.2871
+56928.89670397737 4.2000875 4276.7607
+56929.89670402487 4.2002058 4274.3989
+56930.89670407237 4.2002449 4269.6753
+56931.89670411986 4.2000875 4263.5737
+56932.89670416736 4.2000875 4263.377
+56933.89670421486 4.2000875 4254.5205
+56934.89670426236 4.2002058 4258.4565
+56935.89670430985 4.2002058 4253.9297
+56936.89670435735 4.2002058 4249.7964
+56937.89670440485 4.2001266 4246.0571
+56938.89670445235 4.200048 4241.7271
+56939.89670449984 4.2001266 4238.3813
+56940.89670454734 4.2001662 4235.8228
+56941.89670459484 4.2001662 4233.2637
+56942.89670464234 4.2001266 4228.1465
+56943.89670468983 4.2000875 4223.8169
+56944.89670473733 4.200048 4223.4229
+56945.89670478483 4.2000875 4220.2739
+56946.89670483232 4.2002058 4216.3374
+56947.89670487982 4.2001662 4213.9756
+56948.89670492732 4.2001662 4210.2363
+56949.89670497482 4.2001662 4204.9224
+56950.89670502231 4.2002058 4204.3315
+56951.89670506981 4.2001266 4200.1987
+56952.89670511731 4.2001662 4197.4434
+56953.89670516481 4.2002058 4194.4907
+56954.8967052123 4.2001662 4191.145
+56955.8967052598 4.2001662 4188.3896
+56956.8967053073 4.2001266 4186.2246
+56957.8967053548 4.2001662 4182.6816
+56958.89670540229 4.2002058 4177.958
+56959.89670544979 4.2001662 4178.5488
+56960.89670549729 4.2002058 4172.4473
+56961.89670554479 4.2000875 4169.4951
+56962.89670559228 4.2001662 4167.7236
+56963.89670563978 4.2001266 4164.1812
+56964.89670568728 4.2002449 4161.0317
+56965.89670573478 4.2001662 4157.4893
+56966.89670578227 4.2001266 4155.1274
+56967.89670582977 4.2000875 4150.0103
+56968.89670587727 4.2000875 4147.6484
+56969.89670592477 4.2001662 4145.2866
+56970.89670597226 4.2001662 4141.1533
+56971.89670601976 4.2000875 4136.0361
+56972.89670606726 4.2001662 4136.0361
+56973.89670611476 4.2002058 4131.9033
+56974.89670616225 4.2001662 4129.7378
+56975.89670620975 4.200048 4124.6211
+56976.89670625725 4.2001266 4123.2432
+56977.89670630475 4.2001662 4117.7319
+56978.89670635224 4.2001662 4115.1733
+56979.89670639974 4.2000089 4113.9927
+56980.89670644724 4.2002058 4108.4819
+56981.89670649474 4.2000089 4105.3325
+56982.89670654223 4.2001662 4102.9712
+56983.89670658973 4.2001662 4102.7739
+56984.89670663723 4.200048 4097.46
+56985.89670668473 4.2001662 4095.6887
+56986.89670673222 4.2002058 4092.5398
+56987.89670677972 4.2001662 4087.8162
+56988.89670682722 4.2000875 4086.6353
+56989.89670687472 4.2002058 4083.4861
+56990.89670692221 4.2002058 4078.9595
+56991.89670696971 4.2001662 4075.8103
+56992.89670701721 4.2002058 4074.2358
+56993.89670706471 4.2001662 4069.512
+56994.8967071122 4.2001662 4065.5757
+56995.8967071597 4.2001266 4063.2139
+56996.8967072072 4.2002058 4059.6711
+56997.89670725469 4.2002845 4060.0647
+56998.89670730219 4.2003236 4056.1284
+56999.89670734969 4.2000875 4050.8145
+57000.89670739719 4.2001266 4048.6497
+57001.89670744468 4.2001266 4042.9419
+57002.89670749218 4.2000875 4042.3511
+57003.89670753968 4.2001662 4042.7449
+57004.89670758718 4.2002058 4038.218
+57005.89670763467 4.2002449 4034.085
+57006.89670768217 4.2002449 4032.5105
+57007.89670772967 4.2000089 4024.4409
+57008.89670777717 4.2002845 4027.7866
+57009.89670782466 4.2002058 4023.6538
+57010.89670787216 4.2001266 4019.3237
+57011.89670791966 4.2001266 4018.5364
+57012.89670796716 4.2002058 4013.4189
+57013.89670801465 4.2002058 4010.0732
+57014.89670806215 4.2001266 4007.5146
+57015.89670810965 4.2001266 4003.3813
+57016.89670815715 4.2002058 4002.0039
+57017.89670820464 4.2000089 3993.7373
+57018.89670825214 4.2001662 3995.312
+57019.89670829964 4.2001266 3989.801
+57020.89670834714 4.2000875 3987.8328
+57021.89670839463 4.2002058 3983.3062
+57022.89670844213 4.2001662 3980.5505
+57023.89670848963 4.2002058 3979.5667
+57024.89670853713 4.2001662 3975.8269
+57025.89670858462 4.2000875 3971.4971
+57026.89670863212 4.200048 3966.5767
+57027.89670867962 4.2001266 3966.1829
+57028.89670872712 4.2002058 3960.6721
+57029.89670877461 4.2002058 3958.5071
+57030.89670882211 4.2002058 3955.5549
+57031.89670886961 4.2000875 3951.4216
+57032.89670891711 4.2002058 3949.6504
+57033.8967089646 4.2001662 3944.9268
+57034.8967090121 4.2000875 3941.7776
+57035.8967090596 4.2001266 3939.4158
+57036.8967091071 4.2001662 3933.905
+57037.89670915459 4.2001662 3932.3306
+57038.89670920209 4.2001662 3927.6069
+57039.89670924959 4.2001662 3925.0483
+57040.89670929709 4.2002449 3923.2769
+57041.89670934458 4.2001662 3916.1914
+57042.89670939208 4.2001662 3915.6011
+57043.89670943958 4.2000875 3911.271
+57044.89670948708 4.200048 3906.1536
+57045.89670953457 4.2001266 3905.3665
+57046.89670958207 4.200048 3903.3984
+57047.89670962957 4.2000875 3897.2969
+57048.89670967706 4.2002058 3893.5574
+57049.89670972456 4.2001266 3890.6052
+57050.89670977206 4.2001662 3888.637
+57051.89670981956 4.2000875 3883.126
+57052.89670986705 4.2002058 3881.1577
+57053.89670991455 4.2001266 3879.78
+57054.89670996205 4.2001662 3879.1897
+57055.89671000955 4.2001662 3874.4661
+57056.89671005704 4.200048 3868.9553
+57057.89671010454 4.2001662 3865.8062
+57058.89671015204 4.2002058 3863.4441
+57059.89671019954 4.2000875 3857.7368
+57060.89671024703 4.2001266 3853.4067
+57061.89671029453 4.2001266 3854.9812
+57062.89671034203 4.2001662 3849.8638
+57063.89671038953 4.2001266 3849.6672
+57064.89671043702 4.2000875 3846.5181
+57065.89671048452 4.2000875 3843.3691
+57066.89671053202 4.2002058 3840.0232
+57067.89671057952 4.2001266 3836.2834
+57068.89671062701 4.2002058 3832.5439
+57069.89671067451 4.2001266 3830.1821
+57070.89671072201 4.2002058 3826.8362
+57071.89671076951 4.2002058 3825.0652
+57072.896710817 4.2000875 3819.9478
+57073.8967108645 4.2002845 3820.1445
+57074.896710912 4.2002449 3815.6177
+57075.8967109595 4.2002058 3811.2878
+57076.89671100699 4.2000875 3809.9099
+57077.89671105449 4.200048 3804.0056
+57078.89671110199 4.2001662 3801.0532
+57079.89671114949 4.2000875 3798.2979
+57080.89671119698 4.2001662 3798.2979
+57081.89671124448 4.2001266 3794.5581
+57082.89671129198 4.2002449 3792.3933
+57083.89671133948 4.2002058 3789.4412
+57084.89671138697 4.2001662 3787.2761
+57085.89671143447 4.2000875 3783.3398
+57086.89671148197 4.200048 3776.8447
+57087.89671152947 4.2001662 3776.0576
+57088.89671157696 4.2002058 3774.0894
+57089.89671162446 4.2000089 3770.3499
+57090.89671167196 4.2002845 3767.2007
+57091.89671171946 4.2001266 3764.2483
+57092.89671176695 4.2000875 3761.0994
+57093.89671181445 4.2002058 3757.3599
+57094.89671186195 4.200048 3756.3757
+57095.89671190945 4.2001662 3751.4553
+57096.89671195694 4.2002058 3748.5029
+57097.89671200444 4.2002058 3746.7317
+57098.89671205194 4.2000875 3744.3699
+57099.89671209943 4.2000089 3739.6462
+57100.89671214693 4.2001662 3736.4973
+57101.89671219443 4.2000875 3734.1355
+57102.89671224193 4.2002058 3733.1514
+57103.89671228942 4.2001266 3725.6724
+57104.89671233692 4.200048 3725.6724
+57105.89671238442 4.200048 3721.1455
+57106.89671243192 4.2001266 3717.6028
+57107.89671247941 4.2001266 3716.0283
+57108.89671252691 4.2001266 3710.9109
+57109.89671257441 4.2001662 3711.1079
+57110.89671262191 4.2001266 3706.7778
+57111.8967126694 4.2001266 3700.2827
+57112.8967127169 4.2001662 3700.873
+57113.8967127644 4.2001662 3696.7402
+57114.8967128119 4.2001662 3693.3943
+57115.89671285939 4.2001266 3690.8357
+57116.89671290689 4.2001266 3689.458
+57117.89671295439 4.2001662 3686.3088
+57118.89671300189 4.2000875 3682.3726
+57119.89671304938 4.2001266 3678.0425
+57120.89671309688 4.2000875 3674.303
+57121.89671314438 4.2001266 3672.925
+57122.89671319188 4.2001662 3668.7922
+57123.89671323937 4.2001662 3666.0366
+57124.89671328687 4.2001266 3665.6428
+57125.89671333437 4.200048 3661.9033
+57126.89671338187 4.2002058 3657.7703
+57127.89671342936 4.2001266 3653.2434
+57128.89671347686 4.2001662 3650.8816
+57129.89671352436 4.2000875 3643.9929
+57130.89671357186 4.2001266 3646.7485
+57131.89671361935 4.2000875 3643.5994
+57132.89671366685 4.2000089 3640.2534
+57133.89671371435 4.2001266 3633.5615
+57134.89671376185 4.2000875 3633.365
+57135.89671380934 4.2000875 3628.2476
+57136.89671385684 4.2001662 3628.2476
+57137.89671390434 4.2001662 3624.9016
+57138.89671395184 4.200048 3620.375
+57139.89671399933 4.2000875 3617.8164
+57140.89671404683 4.2001662 3614.6672
+57141.89671409433 4.2001662 3614.0769
+57142.89671414183 4.2001266 3609.7468
+57143.89671418932 4.2001266 3604.0391
+57144.89671423682 4.200048 3602.6614
+57145.89671428432 4.2001266 3600.8901
+57146.89671433182 4.2001662 3594.7888
+57147.89671437931 4.2000089 3591.4429
+57148.89671442681 4.2001266 3591.2458
+57149.89671447431 4.2001266 3586.916
+57150.8967145218 4.2001662 3586.5225
+57151.8967145693 4.2000875 3578.0593
+57152.8967146168 4.2001662 3578.4529
+57153.8967146643 4.2001662 3576.2878
+57154.89671471179 4.2000875 3573.926
+57155.89671475929 4.2001266 3568.4153
+57156.89671480679 4.2001662 3567.6279
+57157.89671485429 4.2001662 3565.0693
+57158.89671490178 4.2000875 3562.9045
+57159.89671494928 4.2001662 3560.1489
+57160.89671499678 4.2000875 3556.803
+57161.89671504428 4.2000875 3548.1431
+57162.89671509177 4.2001662 3547.7495
+57163.89671513927 4.2002058 3546.7654
+57164.89671518677 4.2002058 3546.5686
+57165.89671523427 4.2001266 3541.845
+57166.89671528176 4.2001662 3537.7117
+57167.89671532926 4.2000875 3531.8071
+57168.89671537676 4.2000089 3531.8071
+57169.89671542426 4.2001662 3531.8071
+57170.89671547175 4.2000875 3523.344
+57171.89671551925 4.2001266 3523.344
+57172.89671556675 4.2002058 3517.2429
+57173.89671561425 4.1999693 3515.0776
+57174.89671566174 4.2001266 3515.865
+57175.89671570924 4.200048 3511.5352
+57176.89671575674 4.2001662 3509.3699
+57177.89671580424 4.2001266 3503.8591
+57178.89671585173 4.2001266 3500.71
+57179.89671589923 4.200048 3497.1675
+57180.89671594673 4.2000089 3493.2312
+57181.89671599423 4.2002845 3493.0342
+57182.89671604172 4.2001662 3489.2949
+57183.89671608922 4.2001662 3488.5076
+57184.89671613672 4.2001662 3484.1775
+57185.89671618422 4.2002449 3479.4539
+57186.89671623171 4.2001662 3477.6824
+57187.89671627921 4.2001662 3475.5176
+57188.89671632671 4.2001662 3473.5493
+57189.89671637421 4.2000875 3470.0063
+57190.8967164217 4.200048 3468.0383
+57191.8967164692 4.2000875 3463.7083
+57192.8967165167 4.2001266 3461.3464
+57193.8967165642 4.2001266 3458.7881
+57194.89671661169 4.2001266 3453.2773
+57195.89671665919 4.2001662 3450.3247
+57196.89671670669 4.200048 3448.3564
+57197.89671675419 4.2001266 3442.4521
+57198.89671680168 4.200048 3442.4521
+57199.89671684918 4.2000875 3440.2874
+57200.89671689668 4.2001266 3437.3347
+57201.89671694417 4.2001662 3433.7922
+57202.89671699167 4.2002845 3428.8718
+57203.89671703917 4.200048 3426.1162
+57204.89671708667 4.2001266 3426.3132
+57205.89671713416 4.2001662 3421.1958
+57206.89671718166 4.2001266 3418.0466
+57207.89671722916 4.2002058 3414.8977
+57208.89671727666 4.2001266 3415.2915
+57209.89671732415 4.2001266 3407.8123
+57210.89671737165 4.2001662 3407.4187
+57211.89671741915 4.2000875 3402.6948
+57212.89671746665 4.200048 3400.9238
+57213.89671751414 4.2001266 3400.53
+57214.89671756164 4.2002058 3395.2161
+57215.89671760914 4.2001662 3393.6416
+57216.89671765664 4.2002058 3388.7209
+57217.89671770413 4.200048 3385.1782
+57218.89671775163 4.2002058 3383.0134
+57219.89671779913 4.2001662 3380.061
+57220.89671784663 4.2001266 3376.3218
+57221.89671789412 4.200048 3370.417
+57222.89671794162 4.2000875 3371.9917
+57223.89671798912 4.2001662 3369.6299
+57224.89671803662 4.2001662 3366.4807
+57225.89671808411 4.2002058 3364.5125
+57226.89671813161 4.2001266 3361.1665
+57227.89671817911 4.2000875 3357.8208
+57228.89671822661 4.2001266 3352.9004
+57229.8967182741 4.2001662 3353.6877
+57230.8967183216 4.2001662 3349.5544
+57231.8967183691 4.2002058 3346.9958
+57232.8967184166 4.200048 3344.634
+57233.89671846409 4.2001662 3340.5007
+57234.89671851159 4.2002058 3338.5327
+57235.89671855909 4.2000875 3333.2185
+57236.89671860659 4.2001662 3330.4631
+57237.89671865408 4.2001266 3327.9045
+57238.89671870158 4.2001266 3326.1331
+57239.89671874908 4.2001662 3321.4094
+57240.89671879658 4.2001662 3318.4573
+57241.89671884407 4.2000875 3315.5049
+57242.89671889157 4.2001662 3315.7019
+57243.89671893907 4.2001662 3312.1592
+57244.89671898657 4.200048 3306.845
+57245.89671903406 4.2003236 3305.0735
+57246.89671908156 4.2001662 3304.0896
+57247.89671912906 4.2002058 3300.9407
+57248.89671917656 4.2002845 3298.3821
+57249.89671922405 4.2000875 3293.855
+57250.89671927155 4.2001266 3291.2966
+57251.89671931905 4.2001662 3289.3284
+57252.89671936654 4.2000875 3286.7695
+57253.89671941404 4.2001662 3284.2109
+57254.89671946154 4.2002058 3281.8491
+57255.89671950904 4.2001266 3277.9128
+57256.89671955653 4.2001266 3276.7322
+57257.89671960403 4.2001266 3272.2051
+57258.89671965153 4.2000875 3271.0244
+57259.89671969903 4.2000875 3266.1038
+57260.89671974652 4.2001662 3261.5771
+57261.89671979402 4.2001662 3261.7737
+57262.89671984152 4.200048 3257.4438
+57263.89671988902 4.2001662 3254.8853
+57264.89671993651 4.2000875 3252.3267
+57265.89671998401 4.2001662 3250.1616
+57266.89672003151 4.200048 3244.0605
+57267.89672007901 4.2001266 3246.2253
+57268.8967201265 4.2002058 3241.8953
+57269.896720174 4.2001266 3237.1716
+57270.8967202215 4.2000875 3234.4165
+57271.896720269 4.2002058 3231.2671
+57272.89672031649 4.2001266 3230.4797
+57273.89672036399 4.2002058 3228.5117
+57274.89672041149 4.2001662 3226.7405
+57275.89672045899 4.2000089 3218.8679
+57276.89672050648 4.200048 3219.0647
+57277.89672055398 4.2001662 3214.7346
+57278.89672060148 4.2001266 3213.7505
+57279.89672064898 4.2001266 3211.7825
+57280.89672069647 4.2001266 3208.4365
+57281.89672074397 4.2001662 3205.2876
+57282.89672079147 4.2001266 3202.1384
+57283.89672083897 4.2000089 3198.5957
+57284.89672088646 4.2001662 3194.8562
+57285.89672093396 4.2002449 3193.675
+57286.89672098146 4.2002058 3192.4944
+57287.89672102896 4.2000089 3186.9836
+57288.89672107645 4.2001266 3185.8025
+57289.89672112395 4.2001662 3184.4248
+57290.89672117145 4.2001662 3178.717
+57291.89672121895 4.2002449 3177.7329
+57292.89672126644 4.2001662 3173.7966
+57293.89672131394 4.2001662 3168.2859
+57294.89672136144 4.1999693 3168.8765
+57295.89672140894 4.2001266 3167.6953
+57296.89672145643 4.2000875 3163.5623
+57297.89672150393 4.2001266 3162.9719
+57298.89672155143 4.2001266 3158.8386
+57299.89672159893 4.2001266 3156.28
+57300.89672164642 4.2001266 3153.3279
+57301.89672169392 4.2002449 3150.769
+57302.89672174142 4.2001662 3144.2742
+57303.89672178891 4.2001662 3145.8486
+57304.89672183641 4.2000875 3137.7791
+57305.89672188391 4.2001662 3138.9602
+57306.89672193141 4.2001266 3133.4492
+57307.8967219789 4.2001662 3135.2207
+57308.8967220264 4.2001662 3128.9224
+57309.8967220739 4.2002058 3129.1191
+57310.8967221214 4.2001662 3123.6084
+57311.89672216889 4.2002058 3122.821
+57312.89672221639 4.2002058 3119.8689
+57313.89672226389 4.2001662 3117.3103
+57314.89672231139 4.2001266 3111.7993
+57315.89672235888 4.2002449 3109.0437
+57316.89672240638 4.200048 3104.7136
+57317.89672245388 4.2001662 3102.9426
+57318.89672250138 4.2001266 3100.187
+57319.89672254887 4.2001266 3098.219
+57320.89672259637 4.2001662 3095.4634
+57321.89672264387 4.2001662 3092.7083
+57322.89672269137 4.2000875 3087.7876
+57323.89672273886 4.2002058 3088.7715
+57324.89672278636 4.2002058 3084.2449
+57325.89672283386 4.2001662 3082.8672
+57326.89672288136 4.2001266 3079.7183
+57327.89672292885 4.2000875 3075.585
+57328.89672297635 4.2001266 3074.4038
+57329.89672302385 4.2001662 3072.0422
+57330.89672307135 4.2001266 3066.3347
+57331.89672311884 4.2000875 3067.5154
+57332.89672316634 4.2000875 3064.7598
+57333.89672321384 4.2001266 3060.0364
+57334.89672326134 4.2002058 3055.9031
+57335.89672330883 4.2000875 3051.77
+57336.89672335633 4.2001662 3054.3289
+57337.89672340383 4.2002058 3051.5732
+57338.89672345133 4.2000875 3046.8496
+57339.89672349882 4.2000875 3041.5354
+57340.89672354632 4.2001662 3042.3228
+57341.89672359382 4.2002449 3039.3706
+57342.89672364132 4.2001662 3036.0247
+57343.89672368881 4.2002058 3036.0247
+57344.89672373631 4.2000875 3031.6948
+57345.89672378381 4.2002449 3028.9392
+57346.89672383131 4.2001266 3025.3967
+57347.8967238788 4.2002058 3023.4282
+57348.8967239263 4.2001662 3021.46
+57349.8967239738 4.2001662 3017.7207
+57350.8967240213 4.2001662 3015.3589
+57351.89672406879 4.200048 3011.0291
+57352.89672411629 4.2000875 3010.832
+57353.89672416379 4.2001662 3005.7148
+57354.89672421128 4.2001662 3005.9116
+57355.89672425878 4.2001266 3001.5815
+57356.89672430628 4.2000875 2995.2834
+57357.89672435378 4.2002058 2999.2197
+57358.89672440127 4.2000875 2995.4802
+57359.89672444877 4.2000875 2991.741
+57360.89672449627 4.2001266 2989.1821
+57361.89672454377 4.2001662 2987.2139
+57362.89672459126 4.2002058 2983.4744
+57363.89672463876 4.2001662 2982.4902
+57364.89672468626 4.2001266 2977.7668
+57365.89672473376 4.2001662 2972.8462
+57366.89672478125 4.2001662 2975.405
+57367.89672482875 4.2002058 2969.6973
+57368.89672487625 4.2001266 2966.1543
+57369.89672492375 4.2000089 2968.5161
+57370.89672497124 4.2001662 2963.3992
+57371.89672501874 4.2001662 2959.8562
+57372.89672506624 4.2000875 2955.1326
+57373.89672511374 4.200048 2955.9199
+57374.89672516123 4.2001662 2955.3296
+57375.89672520873 4.2001266 2949.6218
+57376.89672525623 4.2001662 2949.6218
+57377.89672530373 4.2001662 2947.457
+57378.89672535122 4.2001662 2945.0952
+57379.89672539872 4.2001266 2941.3555
+57380.89672544622 4.2002058 2937.2224
+57381.89672549372 4.2001662 2933.2859
+57382.89672554121 4.2001662 2932.1052
+57383.89672558871 4.2002058 2930.3337
+57384.89672563621 4.2001662 2928.7593
+57385.89672568371 4.2000875 2924.4294
+57386.8967257312 4.2001662 2919.9023
+57387.8967257787 4.2001662 2919.1152
+57388.8967258262 4.2000875 2915.9661
+57389.8967258737 4.2001266 2916.3599
+57390.89672592119 4.2002058 2913.8013
+57391.89672596869 4.2002058 2911.0457
+57392.89672601619 4.2002845 2907.1094
+57393.89672606369 4.2001662 2906.1252
+57394.89672611118 4.2001662 2901.4016
+57395.89672615868 4.2000875 2896.4814
+57396.89672620618 4.2001662 2898.2524
+57397.89672625368 4.2001266 2893.1355
+57398.89672630117 4.2000875 2892.1514
+57399.89672634867 4.2002058 2890.9702
+57400.89672639617 4.2002058 2884.6721
+57401.89672644367 4.2001266 2885.0659
+57402.89672649116 4.2001662 2880.7358
+57403.89672653866 4.2001266 2880.3423
+57404.89672658616 4.2002449 2877.7837
+57405.89672663365 4.2001266 2873.8472
+57406.89672668115 4.2001266 2871.2886
+57407.89672672865 4.2002058 2866.3682
+57408.89672677615 4.2001662 2868.3364
+57409.89672682364 4.2002058 2864.4001
+57410.89672687114 4.2002449 2862.0381
+57411.89672691864 4.2001662 2858.4956
+57412.89672696614 4.2001662 2856.7241
+57413.89672701363 4.2001266 2854.5591
+57414.89672706113 4.2001266 2851.4102
+57415.89672710863 4.2001662 2848.8513
+57416.89672715613 4.2000875 2847.8672
+57417.89672720362 4.2000875 2843.3406
+57418.89672725112 4.2000875 2839.0105
+57419.89672729862 4.2001662 2837.239
+57420.89672734612 4.2000875 2834.6807
+57421.89672739361 4.2001662 2835.6646
+57422.89672744111 4.2001662 2829.7603
+57423.89672748861 4.2002058 2829.9568
+57424.89672753611 4.2001266 2827.2014
+57425.8967275836 4.2002058 2824.2493
+57426.8967276311 4.2002058 2822.8713
+57427.8967276786 4.2002058 2817.7544
+57428.8967277261 4.2001662 2815.5891
+57429.89672777359 4.2002058 2815.1958
+57430.89672782109 4.2001266 2810.6689
+57431.89672786859 4.2001266 2809.0945
+57432.89672791609 4.2002449 2804.3706
+57433.89672796358 4.200048 2803.5833
+57434.89672801108 4.2001662 2802.7961
+57435.89672805858 4.200048 2798.8599
+57436.89672810608 4.2000875 2797.4822
+57437.89672815357 4.2001266 2795.7107
+57438.89672820107 4.2000089 2790.0029
+57439.89672824857 4.2001266 2790.7903
+57440.89672829607 4.2001266 2788.0349
+57441.89672834356 4.2002845 2785.4763
+57442.89672839106 4.2002058 2780.3589
+57443.89672843856 4.2001662 2780.9495
+57444.89672848606 4.2000089 2775.4387
+57445.89672853355 4.2000875 2774.0608
+57446.89672858105 4.2001266 2771.1086
+57447.89672862855 4.2002058 2768.9436
+57448.89672867605 4.2002058 2768.55
+57449.89672872354 4.2001662 2765.7947
+57450.89672877104 4.2000875 2762.8423
+57451.89672881854 4.2002449 2762.6453
+57452.89672886604 4.200048 2756.741
+57453.89672891353 4.2000875 2754.9695
+57454.89672896103 4.2001266 2753.0012
+57455.89672900853 4.200048 2749.2617
+57456.89672905602 4.2000875 2746.7031
+57457.89672910352 4.2001266 2747.2937
+57458.89672915102 4.2001266 2743.9478
+57459.89672919852 4.2000875 2739.2244
+57460.89672924601 4.2002058 2737.8464
+57461.89672929351 4.2000875 2733.3196
+57462.89672934101 4.2001662 2731.1548
+57463.89672938851 4.2000875 2727.2185
+57464.896729436 4.200048 2727.2185
+57465.8967294835 4.200048 2724.4629
+57466.896729531 4.2002845 2722.6914
+57467.8967295785 4.2001662 2720.7234
+57468.89672962599 4.2001266 2715.9998
+57469.89672967349 4.2002058 2715.2126
+57470.89672972099 4.2000875 2715.2126
+57471.89672976849 4.2002058 2709.8984
+57472.89672981598 4.2001662 2707.3396
+57473.89672986348 4.2001266 2703.7971
+57474.89672991098 4.200048 2702.616
+57475.89672995848 4.2001662 2699.0735
+57476.89673000597 4.200048 2698.2861
+57477.89673005347 4.200048 2696.1211
+57478.89673010097 4.2001266 2696.3179
+57479.89673014847 4.2002058 2692.3816
+57480.89673019596 4.2001266 2688.2485
+57481.89673024346 4.2001266 2686.6738
+57482.89673029096 4.2001662 2685.6897
+57483.89673033846 4.2001662 2682.9343
+57484.89673038595 4.2001662 2678.4077
+57485.89673043345 4.2001266 2678.0139
+57486.89673048095 4.2001266 2674.4714
+57487.89673052845 4.2002058 2675.8491
+57488.89673057594 4.2002058 2670.5349
+57489.89673062344 4.2001662 2665.8113
+57490.89673067094 4.2002058 2665.6143
+57491.89673071844 4.2002058 2661.875
+57492.89673076593 4.2001662 2658.3323
+57493.89673081343 4.2001266 2656.7578
+57494.89673086093 4.2001662 2655.7737
+57495.89673090843 4.2002449 2653.8054
+57496.89673095592 4.200048 2649.6721
+57497.89673100342 4.200048 2645.3423
+57498.89673105092 4.2002058 2647.1138
+57499.89673109842 4.2001266 2643.571
+57500.89673114591 4.2001662 2642.9805
+57501.89673119341 4.2001266 2641.2092
+57502.89673124091 4.2001662 2637.4697
+57503.89673128841 4.2001266 2633.927
+57504.8967313359 4.2000875 2630.9746
+57505.8967313834 4.2001266 2629.0063
+57506.8967314309 4.2002058 2627.8257
+57507.89673147839 4.2001662 2625.4639
+57508.89673152589 4.2002058 2623.4956
+57509.89673157339 4.2002058 2622.7083
+57510.89673162089 4.2000875 2619.1658
+57511.89673166838 4.2001266 2614.2454
+57512.89673171588 4.2001662 2612.0801
+57513.89673176338 4.2002058 2610.1121
+57514.89673181088 4.2000089 2607.9473
+57515.89673185837 4.2001662 2607.5535
+57516.89673190587 4.200048 2603.4202
+57517.89673195337 4.2000875 2602.6331
+57518.89673200087 4.2000875 2599.6807
+57519.89673204836 4.2001662 2599.8777
+57520.89673209586 4.200048 2595.3506
+57521.89673214336 4.2001266 2592.9888
+57522.89673219086 4.2000875 2587.0842
+57523.89673223835 4.2002058 2589.8398
+57524.89673228585 4.2001266 2588.0684
+57525.89673233335 4.2002058 2585.1162
+57526.89673238085 4.2000875 2583.5417
+57527.89673242834 4.200048 2582.7544
+57528.89673247584 4.2000875 2577.2437
+57529.89673252334 4.2002058 2576.8499
+57530.89673257084 4.2001266 2573.5039
+57531.89673261833 4.2000875 2567.4026
+57532.89673266583 4.2001662 2567.9929
+57533.89673271333 4.2001266 2568.3867
+57534.89673276083 4.2001266 2563.8601
+57535.89673280832 4.2000875 2563.4663
+57536.89673285582 4.2001266 2557.1682
+57537.89673290332 4.2001662 2556.5779
+57538.89673295082 4.2001266 2555.2
+57539.89673299831 4.2001266 2551.0667
+57540.89673304581 4.2001266 2550.6731
+57541.89673309331 4.2001266 2548.9019
+57542.89673314081 4.2001662 2547.9177
+57543.8967331883 4.2001266 2544.1782
+57544.8967332358 4.200048 2541.4226
+57545.8967332833 4.2001266 2539.0608
+57546.8967333308 4.2002449 2537.4863
+57547.89673337829 4.200048 2535.1245
+57548.89673342579 4.2001266 2529.4167
+57549.89673347329 4.2001266 2530.7947
+57550.89673352079 4.2001266 2526.071
+57551.89673356828 4.2002058 2526.071
+57552.89673361578 4.2002058 2519.3792
+57553.89673366328 4.2001266 2523.3157
+57554.89673371078 4.2000875 2516.0332
+57555.89673375827 4.2002058 2514.4587
+57556.89673380577 4.2002058 2511.5066
+57557.89673385327 4.2002058 2510.3257
+57558.89673390077 4.2001662 2507.7668
+57559.89673394826 4.2002449 2507.9639
+57560.89673399576 4.2000875 2506.3892
+57561.89673404326 4.2001662 2503.437
+57562.89673409075 4.2000875 2500.0911
+57563.89673413825 4.2001266 2498.9104
+57564.89673418575 4.2002058 2495.7612
+57565.89673423325 4.2002058 2494.1868
+57566.89673428074 4.2000875 2492.0217
+57567.89673432824 4.2001266 2490.8408
+57568.89673437574 4.2001662 2487.2981
+57569.89673442324 4.2001266 2483.5586
+57570.89673447073 4.2000089 2481.7874
+57571.89673451823 4.2001662 2479.8191
+57572.89673456573 4.200048 2474.1113
+57573.89673461323 4.2002449 2477.6541
+57574.89673466072 4.2001662 2474.7019
+57575.89673470822 4.2000875 2472.1433
+57576.89673475572 4.2001266 2470.175
+57577.89673480322 4.200048 2468.7974
+57578.89673485071 4.200048 2463.877
+57579.89673489821 4.2000875 2463.0896
+57580.89673494571 4.2000875 2461.1213
+57581.89673499321 4.2002058 2459.9404
+57582.8967350407 4.2001662 2457.7754
+57583.8967350882 4.2001662 2455.02
+57584.8967351357 4.2001662 2450.4934
+57585.8967351832 4.2000089 2451.4773
+57586.89673523069 4.2000875 2448.3284
+57587.89673527819 4.2001662 2445.376
+57588.89673532569 4.2002449 2444.5886
+57589.89673537319 4.2000875 2440.4556
+57590.89673542068 4.2002449 2440.4556
+57591.89673546818 4.2002058 2440.062
+57592.89673551568 4.2002058 2435.9287
+57593.89673556318 4.200048 2434.3542
+57594.89673561067 4.2001662 2431.4019
+57595.89673565817 4.2001662 2427.8594
+57596.89673570567 4.2001266 2426.0879
+57597.89673575317 4.2001266 2423.7263
+57598.89673580066 4.2002058 2422.3484
+57599.89673584816 4.2001662 2419.9866
+57600.89673589566 4.200048 2417.6248
+57601.89673594316 4.2001266 2412.9014
+57602.89673599065 4.2002058 2411.917
+57603.89673603815 4.2001662 2409.752
+57604.89673608565 4.2000875 2408.7681
+57605.89673613315 4.2000875 2406.603
+57606.89673618064 4.2001266 2403.6509
+57607.89673622814 4.200048 2400.5017
+57608.89673627564 4.2002058 2399.3208
+57609.89673632314 4.2001266 2395.5813
+57610.89673637063 4.2001266 2394.9907
+57611.89673641813 4.2001662 2392.6289
+57612.89673646563 4.2001662 2390.6609
+57613.89673651312 4.2002058 2389.6768
+57614.89673656062 4.2002058 2383.5754
+57615.89673660812 4.2002058 2384.7563
+57616.89673665562 4.2001266 2381.2136
+57617.89673670311 4.2000875 2379.8359
+57618.89673675061 4.2001266 2378.2612
+57619.89673679811 4.2000875 2372.7505
+57620.89673684561 4.2001662 2372.5537
+57621.8967368931 4.2001266 2369.9951
+57622.8967369406 4.200048 2370.5854
+57623.8967369881 4.2001266 2363.8938
+57624.8967370356 4.2002058 2363.3032
+57625.89673708309 4.200048 2363.3032
+57626.89673713059 4.2001662 2360.7446
+57627.89673717809 4.2002058 2359.3669
+57628.89673722559 4.2001266 2356.6113
+57629.89673727308 4.2000875 2353.856
+57630.89673732058 4.2002058 2352.675
+57631.89673736808 4.2000875 2349.3291
+57632.89673741558 4.1999693 2345.9832
+57633.89673746307 4.2002058 2345.7864
+57634.89673751057 4.2001266 2344.2119
+57635.89673755807 4.2001662 2340.866
+57636.89673760557 4.2000875 2339.2915
+57637.89673765306 4.2001266 2336.9297
+57638.89673770056 4.2001662 2333.5837
+57639.89673774806 4.2001266 2332.9934
+57640.89673779556 4.2001662 2330.8284
+57641.89673784305 4.2000875 2327.2856
+57642.89673789055 4.2002058 2326.4983
+57643.89673793805 4.2002058 2325.3174
+57644.89673798555 4.2001662 2321.1843
+57645.89673803304 4.2002058 2319.8066
+57646.89673808054 4.2000875 2317.0513
+57647.89673812804 4.2000875 2318.2322
+57648.89673817554 4.2001662 2310.95
+57649.89673822303 4.2002449 2311.1465
+57650.89673827053 4.2001662 2308.7849
+57651.89673831803 4.2000875 2307.9976
+57652.89673836553 4.2001662 2304.0613
+57653.89673841302 4.2000875 2300.9121
+57654.89673846052 4.200048 2299.5344
+57655.89673850802 4.2001662 2301.8962
+57656.89673855552 4.2001662 2296.1885
+57657.89673860301 4.2001662 2295.7949
+57658.89673865051 4.2001266 2293.6299
+57659.89673869801 4.2001662 2291.8586
+57660.89673874551 4.2001662 2289.4966
+57661.896738793 4.2000875 2284.7732
+57662.8967388405 4.2002449 2285.1667
+57663.896738888 4.2002058 2281.4272
+57664.89673893549 4.2002449 2280.6401
+57665.89673898299 4.2001266 2277.2942
+57666.89673903049 4.2001662 2274.9324
+57667.89673907799 4.2000875 2274.9324
+57668.89673912548 4.2001662 2270.6023
+57669.89673917298 4.200048 2270.0117
+57670.89673922048 4.200048 2267.8467
+57671.89673926798 4.2001266 2267.0596
+57672.89673931547 4.2001662 2264.1074
+57673.89673936297 4.2002058 2259.5806
+57674.89673941047 4.2001266 2260.5647
+57675.89673945797 4.2000875 2257.0217
+57676.89673950546 4.2000875 2255.8408
+57677.89673955296 4.2001266 2252.1016
+57678.89673960046 4.2001662 2247.5747
+57679.89673964796 4.2001266 2245.2129
+57680.89673969545 4.2001662 2245.8035
+57681.89673974295 4.2000875 2245.0159
+57682.89673979045 4.2001662 2242.0637
+57683.89673983795 4.2002058 2240.686
+57684.89673988544 4.2001266 2234.3879
+57685.89673993294 4.2001662 2233.6006
+57686.89673998044 4.2002058 2235.175
+57687.89674002794 4.2000875 2230.0579
+57688.89674007543 4.2000875 2229.6643
+57689.89674012293 4.2002058 2225.531
+57690.89674017043 4.2001662 2227.8928
+57691.89674021793 4.2002449 2225.531
+57692.89674026542 4.200048 2220.4138
+57693.89674031292 4.2001662 2218.6426
+57694.89674036042 4.2001266 2216.084
+57695.89674040792 4.2001266 2216.4775
+57696.89674045541 4.200048 2210.1792
+57697.89674050291 4.2002058 2209.7856
+57698.89674055041 4.200048 2208.9985
+57699.89674059791 4.2000089 2205.4558
+57700.8967406454 4.2002058 2205.8494
+57701.8967406929 4.2000875 2198.5671
+57702.8967407404 4.2001266 2200.3386
+57703.8967407879 4.2000875 2196.7959
+57704.89674083539 4.2001266 2194.6309
+57705.89674088289 4.2000875 2195.2212
+57706.89674093039 4.2000089 2194.0403
+57707.89674097789 4.2002058 2190.3008
+57708.89674102538 4.2000875 2187.7422
+57709.89674107288 4.2000875 2186.9548
+57710.89674112038 4.2001266 2181.4441
+57711.89674116788 4.200048 2180.46
+57712.89674121537 4.2001662 2178.2949
+57713.89674126287 4.2002845 2178.6887
+57714.89674131037 4.2001662 2174.1619
+57715.89674135786 4.200048 2174.949
+57716.89674140536 4.2000875 2171.6033
+57717.89674145286 4.2000875 2168.2573
+57718.89674150036 4.2002058 2167.667
+57719.89674154785 4.2000089 2164.7146
+57720.89674159535 4.2001266 2163.1401
+57721.89674164285 4.2001266 2159.7942
+57722.89674169035 4.2001266 2161.9592
+57723.89674173784 4.2000875 2160.5813
+57724.89674178534 4.200048 2153.4961
+57725.89674183284 4.2001266 2154.48
+57726.89674188034 4.2002058 2153.6929
+57727.89674192783 4.2000875 2148.5754
+57728.89674197533 4.200048 2150.3469
+57729.89674202283 4.2001662 2147.7883
+57730.89674207033 4.200048 2146.8042
+57731.89674211782 4.200048 2143.4583
+57732.89674216532 4.2001266 2142.6711
+57733.89674221282 4.2002058 2137.1602
+57734.89674226032 4.2000875 2137.5537
+57735.89674230781 4.2001662 2135.3887
+57736.89674235531 4.2002058 2131.2556
+57737.89674240281 4.2000875 2131.2556
+57738.89674245031 4.2001266 2127.7129
+57739.8967424978 4.200048 2125.3511
+57740.8967425453 4.2002058 2125.9417
+57741.8967425928 4.2001266 2124.1702
+57742.8967426403 4.2001662 2117.8721
+57743.89674268779 4.2000875 2119.2498
+57744.89674273529 4.2001662 2115.707
+57745.89674278279 4.2000875 2112.7546
+57746.89674283029 4.2001266 2111.3772
+57747.89674287778 4.2002058 2112.5581
+57748.89674292528 4.2001266 2108.6216
+57749.89674297278 4.2001266 2108.0313
+57750.89674302028 4.2001662 2106.4565
+57751.89674306777 4.2000089 2099.5681
+57752.89674311527 4.2000875 2099.3713
+57753.89674316277 4.200048 2096.6157
+57754.89674321027 4.2001266 2096.2222
+57755.89674325776 4.2001266 2092.4827
+57756.89674330526 4.2000875 2090.908
+57757.89674335276 4.2001662 2092.0889
+57758.89674340026 4.2001266 2087.1685
+57759.89674344775 4.2000089 2085.2004
+57760.89674349525 4.2001266 2085.594
+57761.89674354275 4.2000875 2083.8228
+57762.89674359025 4.2001266 2080.28
+57763.89674363774 4.2001662 2080.4768
+57764.89674368524 4.2001662 2078.115
+57765.89674373274 4.2001266 2074.9658
+57766.89674378023 4.2001266 2071.4231
+57767.89674382773 4.2000875 2072.604
+57768.89674387523 4.2001662 2068.8645
+57769.89674392273 4.2000089 2065.7156
+57770.89674397022 4.200048 2061.9758
+57771.89674401772 4.2001266 2064.9282
+57772.89674406522 4.200048 2060.4014
+57773.89674411272 4.2002058 2061.5823
+57774.89674416021 4.2001662 2058.2366
+57775.89674420771 4.2001266 2054.6938
+57776.89674425521 4.2002449 2053.3159
+57777.89674430271 4.2001266 2054.4968
+57778.8967443502 4.2000089 2048.5925
+57779.8967443977 4.2001662 2049.97
+57780.8967444452 4.200048 2046.0338
+57781.8967444927 4.2001266 2047.0179
+57782.89674454019 4.2000875 2042.8848
+57783.89674458769 4.2002058 2040.9166
+57784.89674463519 4.2001266 2037.7676
+57785.89674468269 4.2001266 2039.1451
+57786.89674473018 4.2000875 2033.0439
+57787.89674477768 4.200048 2036.5867
+57788.89674482518 4.2001266 2029.5011
+57789.89674487268 4.2001266 2030.2883
+57790.89674492017 4.2001662 2029.8948
+57791.89674496767 4.2002449 2027.533
+57792.89674501517 4.2000089 2022.0221
+57793.89674506267 4.2001662 2019.4634
+57794.89674511016 4.2000875 2021.038
+57795.89674515766 4.2001266 2016.5112
+57796.89674520516 4.2001266 2015.1334
+57797.89674525266 4.2001662 2016.9049
+57798.89674530015 4.2001266 2014.1494
+57799.89674534765 4.2000875 2009.0321
+57800.89674539515 4.2001662 2010.0162
+57801.89674544265 4.2000875 2009.4259
+57802.89674549014 4.2000875 2004.7021
+57803.89674553764 4.2001266 2003.9149
+57804.89674558514 4.2000089 2003.1276
+57805.89674563264 4.2000875 2001.5531
+57806.89674568013 4.2000089 1997.8135
+57807.89674572763 4.2001662 1998.0104
+57808.89674577513 4.2000875 1994.0741
+57809.89674582263 4.2001662 1995.8453
+57810.89674587012 4.2001266 1992.3026
+57811.89674591762 4.2001662 1989.9409
+57812.89674596512 4.2001266 1988.9569
+57813.89674601262 4.200048 1985.2173
+57814.89674606011 4.200048 1985.4141
+57815.89674610761 4.2002058 1981.0841
+57816.89674615511 4.2000875 1979.3127
+57817.8967462026 4.2002058 1978.5255
+57818.8967462501 4.2001266 1976.3605
+57819.8967462976 4.2001266 1973.9987
+57820.8967463451 4.200048 1970.8496
+57821.89674639259 4.2001266 1973.2114
+57822.89674644009 4.2002058 1971.0464
+57823.89674648759 4.2000875 1969.2751
+57824.89674653509 4.2002058 1967.8973
+57825.89674658258 4.2002058 1962.5833
+57826.89674663008 4.2000875 1961.9928
+57827.89674667758 4.2002449 1960.8119
+57828.89674672508 4.2001266 1957.6628
+57829.89674677257 4.2000875 1956.4819
+57830.89674682007 4.2002449 1956.0884
+57831.89674686757 4.2001662 1951.1678
+57832.89674691507 4.2001266 1949.9869
+57833.89674696256 4.2000875 1948.4125
+57834.89674701006 4.2002058 1948.0188
+57835.89674705756 4.2000875 1948.2156
+57836.89674710506 4.200048 1945.2634
+57837.89674715255 4.2000875 1941.9175
+57838.89674720005 4.2000089 1941.3269
+57839.89674724755 4.2001662 1938.9652
+57840.89674729505 4.2001662 1938.1779
+57841.89674734254 4.2001266 1936.9969
+57842.89674739004 4.200048 1933.8479
+57843.89674743754 4.2001662 1932.667
+57844.89674748504 4.2002058 1929.5179
+57845.89674753253 4.2000875 1931.2894
+57846.89674758003 4.2000875 1926.3689
+57847.89674762753 4.200048 1922.0389
+57848.89674767503 4.200048 1922.0389
+57849.89674772252 4.2000875 1923.2198
+57850.89674777002 4.2001266 1921.0548
+57851.89674781752 4.2000875 1917.7089
+57852.89674786502 4.200048 1917.3153
+57853.89674791251 4.2001662 1913.5758
+57854.89674796001 4.2001662 1909.6395
+57855.89674800751 4.2001662 1911.0171
+57856.89674805501 4.2000875 1910.033
+57857.8967481025 4.2002058 1907.4745
+57858.89674815 4.2000875 1906.4904
+57859.8967481975 4.2001662 1904.9158
+57860.896748245 4.2000875 1901.5699
+57861.89674829249 4.1998906 1901.373
+57862.89674833999 4.1999693 1896.8462
+57863.89674838749 4.2000875 1895.2717
+57864.89674843499 4.2000875 1896.2559
+57865.89674848248 4.2000875 1895.6654
+57866.89674852998 4.2000875 1891.729
+57867.89674857748 4.2002058 1890.9418
+57868.89674862497 4.2002845 1889.9578
+57869.89674867247 4.2001266 1888.9736
+57870.89674871997 4.200048 1888.1863
+57871.89674876747 4.2001662 1884.25
+57872.89674881496 4.2002845 1883.8563
+57873.89674886246 4.200048 1882.4786
+57874.89674890996 4.2001266 1879.1328
+57875.89674895746 4.2001266 1878.5422
+57876.89674900495 4.2000875 1874.606
+57877.89674905245 4.2000875 1874.0156
+57878.89674909995 4.2000875 1871.6537
+57879.89674914745 4.2000089 1869.2919
+57880.89674919494 4.2000875 1868.5046
+57881.89674924244 4.2000875 1867.5206
+57882.89674928994 4.200048 1862.4032
+57883.89674933744 4.2001266 1862.0096
+57884.89674938493 4.2001662 1863.781
+57885.89674943243 4.2002449 1862.0096
+57886.89674947993 4.2001662 1860.632
+57887.89674952743 4.2001662 1859.8447
+57888.89674957492 4.2001662 1854.7274
+57889.89674962242 4.2001266 1851.3815
+57890.89674966992 4.2000875 1850.3973
+57891.89674971742 4.2000875 1849.6101
+57892.89674976491 4.2001662 1848.2324
+57893.89674981241 4.2002058 1847.642
+57894.89674985991 4.2001662 1848.6261
+57895.89674990741 4.2000875 1843.1152
+57896.8967499549 4.2000875 1843.1152
+57897.8967500024 4.2001266 1838.7852
+57898.8967500499 4.2000875 1839.7693
+57899.8967500974 4.200048 1835.0457
+57900.89675014489 4.2002449 1836.817
+57901.89675019239 4.2000875 1832.684
+57902.89675023989 4.2000089 1828.5507
+57903.89675028739 4.2001662 1831.1093
+57904.89675033488 4.2001266 1830.7156
+57905.89675038238 4.2001266 1829.338
+57906.89675042988 4.2002058 1826.3856
+57907.89675047738 4.2002058 1824.2207
+57908.89675052487 4.2000875 1823.8271
+57909.89675057237 4.2000089 1819.3003
+57910.89675061987 4.200048 1819.4972
+57911.89675066737 4.2001266 1817.3322
+57912.89675071486 4.2001266 1818.3162
+57913.89675076236 4.2000875 1812.8053
+57914.89675080986 4.2001266 1812.6085
+57915.89675085736 4.2001662 1812.215
+57916.89675090485 4.200048 1807.885
+57917.89675095235 4.2000875 1810.6404
+57918.89675099985 4.2001266 1806.3103
+57919.89675104734 4.2001662 1803.5549
+57920.89675109484 4.2000875 1803.1613
+57921.89675114234 4.2001266 1802.1772
+57922.89675118984 4.2001266 1800.7994
+57923.89675123733 4.2001266 1798.6345
+57924.89675128483 4.2000875 1796.4695
+57925.89675133233 4.2002058 1795.8792
+57926.89675137983 4.2000875 1794.5013
+57927.89675142732 4.2000875 1794.6981
+57928.89675147482 4.2001662 1791.1554
+57929.89675152232 4.2000875 1789.9745
+57930.89675156982 4.2000875 1785.4476
+57931.89675161731 4.2000875 1784.2667
+57932.89675166481 4.2000875 1781.7083
+57933.89675171231 4.2001662 1780.9209
+57934.89675175981 4.2001662 1782.2986
+57935.8967518073 4.2001662 1780.3304
+57936.8967518548 4.2001662 1775.8037
+57937.8967519023 4.2001662 1775.2133
+57938.8967519498 4.2000875 1772.0642
+57939.89675199729 4.200048 1773.4418
+57940.89675204479 4.2001662 1771.2769
+57941.89675209229 4.2001266 1768.7183
+57942.89675213979 4.2002058 1767.5374
+57943.89675218728 4.2002449 1766.9469
+57944.89675223478 4.2001266 1763.4043
+57945.89675228228 4.2000875 1764.7819
+57946.89675232978 4.2001662 1762.6168
+57947.89675237727 4.2001662 1760.0583
+57948.89675242477 4.2002058 1757.3029
+57949.89675247227 4.2000875 1757.106
+57950.89675251977 4.2001662 1755.925
+57951.89675256726 4.2001662 1753.5634
+57952.89675261476 4.2000875 1752.776
+57953.89675266226 4.2000875 1749.627
+57954.89675270976 4.2000875 1746.0844
+57955.89675275725 4.2001266 1748.0525
+57956.89675280475 4.2000089 1745.297
+57957.89675285225 4.2001662 1743.7225
+57958.89675289975 4.2001266 1743.132
+57959.89675294724 4.2001266 1740.9669
+57960.89675299474 4.2000089 1739.786
+57961.89675304224 4.2002058 1737.2275
+57962.89675308974 4.2001662 1736.0466
+57963.89675313723 4.2002058 1732.307
+57964.89675318473 4.2000875 1732.307
+57965.89675323223 4.2001266 1731.323
+57966.89675327973 4.2002449 1731.1261
+57967.89675332722 4.2001266 1727.9771
+57968.89675337472 4.2001662 1725.6152
+57969.89675342222 4.2001662 1725.2217
+57970.89675346971 4.2000875 1724.6311
+57971.89675351721 4.200048 1721.2853
+57972.89675356471 4.2002449 1721.2853
+57973.89675361221 4.2001266 1715.9712
+57974.8967536597 4.2000875 1716.9552
+57975.8967537072 4.2001266 1714.9871
+57976.8967537547 4.200048 1711.6412
+57977.8967538022 4.2000875 1711.0508
+57978.89675384969 4.2001662 1711.838
+57979.89675389719 4.2001266 1709.8699
+57980.89675394469 4.200048 1708.2953
+57981.89675399219 4.2001266 1705.5399
+57982.89675403968 4.2002058 1702.9812
+57983.89675408718 4.2001266 1702.194
+57984.89675413468 4.200048 1700.2258
+57985.89675418218 4.2002449 1700.4227
+57986.89675422967 4.2002058 1699.8322
+57987.89675427717 4.2001266 1697.0768
+57988.89675432467 4.2001662 1695.699
+57989.89675437217 4.2000875 1693.3372
+57990.89675441966 4.200048 1692.1563
+57991.89675446716 4.2001266 1689.7944
+57992.89675451466 4.2001662 1686.6454
+57993.89675456216 4.2001662 1687.4327
+57994.89675460965 4.2001662 1685.4645
+57995.89675465715 4.2001662 1680.741
+57996.89675470465 4.2000089 1682.5122
+57997.89675475215 4.2001662 1678.9695
+57998.89675479964 4.200048 1678.5759
+57999.89675484714 4.2001266 1677.1982
+58000.89675489464 4.2000875 1677.7887
+58001.89675494214 4.2002449 1674.246
+58002.89675498963 4.2002058 1672.8682
+58003.89675503713 4.2000875 1671.2936
+58004.89675508463 4.2001266 1672.2778
+58005.89675513213 4.2000875 1667.1605
+58006.89675517962 4.2002449 1668.7351
+58007.89675522712 4.2000875 1668.7351
+58008.89675527462 4.2000875 1663.2242
+58009.89675532212 4.2000875 1661.2561
+58010.89675536961 4.2001266 1662.437
+58011.89675541711 4.2002058 1658.1069
+58012.89675546461 4.2000089 1655.1547
+58013.89675551211 4.2001662 1656.1387
+58014.8967555596 4.2000875 1653.9738
+58015.8967556071 4.2001266 1653.3833
+58016.8967556546 4.2002449 1653.3833
+58017.8967557021 4.200048 1649.0533
+58018.89675574959 4.2001266 1647.6755
+58019.89675579709 4.2001662 1642.5583
+58020.89675584459 4.2001266 1644.3297
+58021.89675589208 4.2002058 1644.1329
+58022.89675593958 4.2000875 1642.952
+58023.89675598708 4.2001662 1637.4412
+58024.89675603458 4.2001266 1635.2761
+58025.89675608207 4.2001662 1636.6538
+58026.89675612957 4.2001662 1632.9143
+58027.89675617707 4.2001266 1632.5206
+58028.89675622457 4.2000875 1633.7015
+58029.89675627206 4.2001662 1631.5366
+58030.89675631956 4.2000875 1630.5525
+58031.89675636706 4.2000875 1628.1907
+58032.89675641456 4.2000875 1627.9938
+58033.89675646205 4.2001266 1623.0735
+58034.89675650955 4.2001662 1623.8607
+58035.89675655705 4.2001662 1621.4989
+58036.89675660455 4.2001662 1621.4989
+58037.89675665204 4.2001662 1618.3497
+58038.89675669954 4.2001662 1616.7754
+58039.89675674704 4.2001662 1616.5785
+58040.89675679454 4.200048 1614.0198
+58041.89675684203 4.2002058 1615.0039
+58042.89675688953 4.2000089 1610.4772
+58043.89675693703 4.2002058 1610.0835
+58044.89675698453 4.2000875 1608.3123
+58045.89675703202 4.2001266 1607.9186
+58046.89675707952 4.2000875 1602.6045
+58047.89675712702 4.2001662 1606.1472
+58048.89675717452 4.2001266 1601.6204
+58049.89675722201 4.2001266 1599.4554
+58050.89675726951 4.2002058 1597.4873
+58051.89675731701 4.2001266 1598.6681
+58052.89675736451 4.200048 1593.9445
+58053.896757412 4.2001662 1594.1414
+58054.8967574595 4.2001266 1592.5668
+58055.896757507 4.2000875 1594.7317
+58056.8967575545 4.2001662 1590.5986
+58057.89675760199 4.2001266 1590.0081
+58058.89675764949 4.2001662 1587.8431
+58059.89675769699 4.2002058 1586.6624
+58060.89675774449 4.2001266 1585.6781
+58061.89675779198 4.2001662 1583.1196
+58062.89675783948 4.2001266 1581.7418
+58063.89675788698 4.2000875 1579.38
+58064.89675793448 4.2001266 1579.5768
+58065.89675798197 4.2000089 1577.215
+58066.89675802947 4.2001662 1576.6246
+58067.89675807697 4.2001662 1576.4277
+58068.89675812447 4.2002058 1574.0659
+58069.89675817196 4.2001266 1571.1136
+58070.89675821946 4.2001662 1571.9009
+58071.89675826696 4.2001266 1565.406
+58072.89675831445 4.2000875 1565.6028
+58073.89675836195 4.2002058 1566.1932
+58074.89675840945 4.2001662 1563.6346
+58075.89675845695 4.2002449 1561.0759
+58076.89675850444 4.2001266 1561.4697
+58077.89675855194 4.2001266 1560.0919
+58078.89675859944 4.2001662 1559.6982
+58079.89675864694 4.2000875 1556.746
+58080.89675869443 4.2001266 1555.5651
+58081.89675874193 4.2002058 1555.762
+58082.89675878943 4.200048 1552.0223
+58083.89675883693 4.200048 1550.0542
+58084.89675888442 4.2001266 1550.251
+58085.89675893192 4.2002058 1547.4956
+58086.89675897942 4.2001266 1546.7083
+58087.89675902692 4.2001662 1545.5273
+58088.89675907441 4.2001662 1545.5273
+58089.89675912191 4.2000875 1540.8038
+58090.89675916941 4.2000875 1541.5911
+58091.89675921691 4.2001266 1541.3943
+58092.8967592644 4.2001266 1540.2133
+58093.8967593119 4.200048 1538.0483
+58094.8967593594 4.2001662 1535.4897
+58095.8967594069 4.2002449 1536.4739
+58096.89675945439 4.200048 1530.963
+58097.89675950189 4.2001266 1531.947
+58098.89675954939 4.2001266 1528.9949
+58099.89675959689 4.2000875 1529.3884
+58100.89675964438 4.2001662 1527.4202
+58101.89675969188 4.2002449 1527.0267
+58102.89675973938 4.2000875 1524.2711
+58103.89675978688 4.200048 1521.319
+58104.89675983437 4.2001266 1521.9093
+58105.89675988187 4.200048 1521.1221
+58106.89675992937 4.2000875 1517.973
+58107.89675997687 4.2001662 1517.1858
+58108.89676002436 4.2001266 1517.1858
+58109.89676007186 4.2000875 1515.2175
+58110.89676011936 4.2002058 1514.824
+58111.89676016686 4.2002058 1513.2494
+58112.89676021435 4.2001266 1510.8876
+58113.89676026185 4.2000875 1512.8558
+58114.89676030935 4.2001266 1507.5417
+58115.89676035685 4.2001266 1508.329
+58116.89676040434 4.2000089 1506.5575
+58117.89676045184 4.2001662 1505.9672
+58118.89676049934 4.2001266 1502.6212
+58119.89676054684 4.2000875 1503.6053
+58120.89676059433 4.2001662 1499.2754
+58121.89676064183 4.2001662 1496.52
+58122.89676068933 4.2000089 1499.4722
+58123.89676073682 4.2001662 1496.52
+58124.89676078432 4.2001662 1493.9613
+58125.89676083182 4.2001662 1494.7485
+58126.89676087932 4.2000875 1491.9932
+58127.89676092681 4.2001662 1488.8441
+58128.89676097431 4.2001266 1491.2059
+58129.89676102181 4.2002058 1488.8441
+58130.89676106931 4.2002058 1487.6632
+58131.8967611168 4.2002058 1485.3014
+58132.8967611643 4.2001662 1483.53
+58133.8967612118 4.1999693 1480.9713
+58134.8967612593 4.2001662 1480.7745
+58135.89676130679 4.2001662 1480.5776
+58136.89676135429 4.2001266 1476.6414
+58137.89676140179 4.2001662 1478.4127
+58138.89676144929 4.2001266 1475.6573
+58139.89676149678 4.2001266 1470.7368
+58140.89676154428 4.2002058 1475.6573
+58141.89676159178 4.2000875 1470.9336
+58142.89676163928 4.2001266 1470.3433
+58143.89676168677 4.2001266 1469.9496
+58144.89676173427 4.2001266 1466.4069
+58145.89676178177 4.200048 1464.6355
+58146.89676182927 4.200048 1462.4706
+58147.89676187676 4.2001662 1463.061
+58148.89676192426 4.2002449 1462.8643
+58149.89676197176 4.2001266 1462.8643
+58150.89676201926 4.2001266 1458.1405
+58151.89676206675 4.2001662 1458.1405
+58152.89676211425 4.2000875 1454.7947
+58153.89676216175 4.2000875 1456.7628
+58154.89676220925 4.2000875 1452.4329
+58155.89676225674 4.2001266 1452.2361
+58156.89676230424 4.2001266 1452.6296
+58157.89676235174 4.2001662 1451.4487
+58158.89676239924 4.2001266 1447.7094
+58159.89676244673 4.2000875 1448.1028
+58160.89676249423 4.2002058 1448.2997
+58161.89676254173 4.2002058 1446.3315
+58162.89676258923 4.2001662 1444.3634
+58163.89676263672 4.2000875 1442.1984
+58164.89676268422 4.200048 1437.0811
+58165.89676273172 4.2001266 1437.4747
+58166.89676277922 4.2000089 1438.262
+58167.89676282671 4.2000875 1436.6875
+58168.89676287421 4.2001662 1436.2938
+58169.89676292171 4.2000875 1433.7352
+58170.89676296921 4.2001662 1429.2085
+58171.8967630167 4.2000875 1431.5703
+58172.8967630642 4.2001266 1430.3894
+58173.8967631117 4.2001266 1429.9957
+58174.8967631592 4.2001266 1428.6179
+58175.89676320669 4.2000875 1425.272
+58176.89676325419 4.200048 1425.8625
+58177.89676330169 4.2001266 1424.288
+58178.89676334918 4.2001662 1419.5645
+58179.89676339668 4.2001266 1420.942
+58180.89676344418 4.2001266 1419.1708
+58181.89676349168 4.2001266 1417.793
+58182.89676353917 4.2001266 1418.3835
+58183.89676358667 4.2000875 1414.6439
+58184.89676363417 4.2000875 1413.8567
+58185.89676368167 4.2002449 1410.5107
+58186.89676372916 4.2001266 1410.314
+58187.89676377666 4.2001662 1408.9362
+58188.89676382416 4.2001662 1410.1171
+58189.89676387166 4.2002449 1408.1489
+58190.89676391915 4.200048 1404.9999
+58191.89676396665 4.2001266 1404.803
+58192.89676401415 4.2001662 1403.2286
+58193.89676406165 4.2000089 1403.4254
+58194.89676410914 4.2001662 1402.6381
+58195.89676415664 4.2001662 1399.0955
+58196.89676420414 4.2000875 1400.0795
+58197.89676425164 4.2002058 1398.3081
+58198.89676429913 4.2000875 1396.34
+58199.89676434663 4.2000875 1394.7655
+58200.89676439413 4.2000875 1390.6322
+58201.89676444163 4.2001662 1392.994
+58202.89676448912 4.200048 1390.6322
+58203.89676453662 4.2001266 1390.829
+58204.89676458412 4.2002058 1386.6959
+58205.89676463162 4.2000875 1387.8768
+58206.89676467911 4.2000875 1386.1055
+58207.89676472661 4.2002058 1384.7278
+58208.89676477411 4.200048 1385.3181
+58209.89676482161 4.2001266 1383.7437
+58210.8967648691 4.2001662 1379.02
+58211.8967649166 4.200048 1377.4454
+58212.8967649641 4.2002449 1379.2168
+58213.8967650116 4.2000875 1378.0359
+58214.89676505909 4.1999693 1374.4932
+58215.89676510659 4.2000875 1373.3123
+58216.89676515409 4.2000875 1372.525
+58217.89676520159 4.2000875 1371.7378
+58218.89676524908 4.2001266 1369.376
+58219.89676529658 4.2001266 1365.046
+58220.89676534408 4.200048 1367.8014
+58221.89676539158 4.2001266 1367.4078
+58222.89676543907 4.200048 1365.4397
+58223.89676548657 4.2000875 1366.03
+58224.89676553407 4.2001662 1361.5033
+58225.89676558157 4.200048 1361.7001
+58226.89676562906 4.2001662 1359.1414
+58227.89676567656 4.2001662 1359.1414
+58228.89676572406 4.2000875 1355.7955
+58229.89676577155 4.2001266 1357.1732
+58230.89676581905 4.2001662 1356.386
+58231.89676586655 4.2000875 1354.4178
+58232.89676591405 4.2001662 1351.4656
+58233.89676596154 4.2001662 1355.2051
+58234.89676600904 4.2000875 1350.8751
+58235.89676605654 4.2002058 1349.1039
+58236.89676610404 4.2001662 1348.3164
+58237.89676615153 4.2001662 1348.3164
+58238.89676619903 4.2001266 1345.1674
+58239.89676624653 4.2002058 1346.7419
+58240.89676629403 4.200048 1341.0343
+58241.89676634152 4.200048 1343.3961
+58242.89676638902 4.2000875 1341.428
+58243.89676643652 4.2000875 1340.4438
+58244.89676648402 4.2000875 1338.082
+58245.89676653151 4.200048 1337.4915
+58246.89676657901 4.2001662 1335.5233
+58247.89676662651 4.2001266 1336.9011
+58248.89676667401 4.2000875 1332.7679
+58249.8967667215 4.200048 1332.1775
+58250.896766769 4.2001266 1329.4221
+58251.8967668165 4.1999693 1330.4061
+58252.896766864 4.2000875 1326.2731
+58253.89676691149 4.2001662 1326.2731
+58254.89676695899 4.2001266 1326.8634
+58255.89676700649 4.200048 1322.9271
+58256.89676705399 4.2000875 1323.7144
+58257.89676710148 4.2001266 1322.9271
+58258.89676714898 4.2001266 1319.7781
+58259.89676719648 4.2000089 1318.0066
+58260.89676724398 4.2001662 1320.1716
+58261.89676729147 4.2001266 1313.0862
+58262.89676733897 4.2002058 1317.0226
+58263.89676738647 4.2002449 1312.4957
+58264.89676743397 4.2001662 1314.2672
+58265.89676748146 4.2001266 1312.8894
+58266.89676752896 4.2001266 1313.4797
+58267.89676757646 4.2002058 1310.134
+58268.89676762396 4.2001662 1308.9531
+58269.89676767145 4.2001662 1307.7722
+58270.89676771895 4.200048 1304.6232
+58271.89676776645 4.2000875 1304.0326
+58272.89676781395 4.2001266 1303.8357
+58273.89676786144 4.2001266 1302.2614
+58274.89676790894 4.2001662 1301.8676
+58275.89676795644 4.2001662 1299.1122
+58276.89676800394 4.2001662 1299.1122
+58277.89676805143 4.2002449 1295.3727
+58278.89676809893 4.2000875 1295.3727
+58279.89676814643 4.2001662 1296.1599
+58280.89676819392 4.2000875 1294.3885
+58281.89676824142 4.2001662 1292.0267
+58282.89676828892 4.2000089 1290.8458
+58283.89676833642 4.200048 1289.6649
+58284.89676838391 4.200048 1285.335
+58285.89676843141 4.2001266 1290.0586
+58286.89676847891 4.2000089 1284.7445
+58287.89676852641 4.2000089 1283.3668
+58288.8967685739 4.2001662 1283.5636
+58289.8967686214 4.2002058 1284.1542
+58290.8967686689 4.2001662 1279.6273
+58291.8967687164 4.2001266 1281.5955
+58292.89676876389 4.2001662 1280.6115
+58293.89676881139 4.2001266 1277.2655
+58294.89676885889 4.2000875 1275.6909
+58295.89676890639 4.2000875 1274.7068
+58296.89676895388 4.1999693 1273.9196
+58297.89676900138 4.2000875 1272.7386
+58298.89676904888 4.2000875 1268.8024
+58299.89676909638 4.2001662 1270.5737
+58300.89676914387 4.2001662 1269.1959
+58301.89676919137 4.2000875 1268.8024
+58302.89676923887 4.2001266 1268.015
+58303.89676928637 4.2002449 1267.2278
+58304.89676933386 4.2000875 1265.85
+58305.89676938136 4.200048 1262.5043
+58306.89676942886 4.2001266 1263.8818
+58307.89676947636 4.2001266 1259.7488
+58308.89676952385 4.2001266 1261.3234
+58309.89676957135 4.2002058 1260.1425
+58310.89676961885 4.200048 1257.7806
+58311.89676966635 4.2001266 1256.2059
+58312.89676971384 4.2002845 1255.4187
+58313.89676976134 4.2001266 1253.8441
+58314.89676980884 4.2001266 1248.9238
+58315.89676985634 4.2000875 1252.0729
+58316.89676990383 4.2001662 1250.3015
+58317.89676995133 4.2001662 1247.9397
+58318.89676999883 4.2001662 1248.3334
+58319.89677004633 4.2001266 1246.562
+58320.89677009382 4.200048 1246.7589
+58321.89677014132 4.200048 1243.6097
+58322.89677018882 4.2001662 1242.2321
+58323.89677023632 4.2002058 1241.8384
+58324.89677028381 4.2000089 1241.2479
+58325.89677033131 4.2002058 1240.067
+58326.89677037881 4.200048 1237.9021
+58327.89677042631 4.2002058 1238.0989
+58328.8967704738 4.200048 1235.5403
+58329.8967705213 4.2000875 1235.7371
+58330.8967705688 4.2001662 1232.7848
+58331.89677061629 4.2000875 1230.6198
+58332.89677066379 4.200048 1228.2581
+58333.89677071129 4.2001662 1232.588
+58334.89677075879 4.2001266 1225.6993
+58335.89677080628 4.2002058 1230.0293
+58336.89677085378 4.2001662 1228.2581
+58337.89677090128 4.2001266 1226.4867
+58338.89677094878 4.2001266 1224.3217
+58339.89677099627 4.2001662 1226.8802
+58340.89677104377 4.2000089 1219.9917
+58341.89677109127 4.2000875 1221.1726
+58342.89677113877 4.2002845 1222.3535
+58343.89677118626 4.2001662 1219.2043
+58344.89677123376 4.2001662 1218.8108
+58345.89677128126 4.2000875 1213.6936
+58346.89677132876 4.2001266 1211.3317
+58347.89677137625 4.2002058 1213.1031
+58348.89677142375 4.2001266 1214.4808
+58349.89677147125 4.2000875 1212.3158
+58350.89677151875 4.2001266 1212.5127
+58351.89677156624 4.200048 1208.9698
+58352.89677161374 4.2000089 1211.7253
+58353.89677166124 4.2000875 1208.3794
+58354.89677170874 4.2001266 1206.6082
+58355.89677175623 4.2001266 1207.5922
+58356.89677180373 4.2002058 1203.6559
+58357.89677185123 4.2001266 1201.4908
+58358.89677189873 4.2002845 1202.2782
+58359.89677194622 4.2001266 1200.1132
+58360.89677199372 4.2000089 1200.5068
+58361.89677204122 4.200048 1197.9481
+58362.89677208872 4.2002058 1199.129
+58363.89677213621 4.2002058 1194.4054
+58364.89677218371 4.2000875 1195.3895
+58365.89677223121 4.2002058 1194.2086
+58366.89677227871 4.2000875 1193.8149
+58367.8967723262 4.2001662 1188.3041
+58368.8967723737 4.2002058 1192.634
+58369.8967724212 4.2002058 1192.4373
+58370.8967724687 4.2001662 1188.1073
+58371.89677251619 4.2000875 1188.6978
+58372.89677256369 4.2000875 1186.3359
+58373.89677261119 4.2001266 1185.7455
+58374.89677265869 4.2002058 1183.9741
+58375.89677270618 4.2002058 1182.2028
+58376.89677275368 4.2001266 1182.2028
+58377.89677280118 4.2001662 1178.4633
+58378.89677284868 4.2001662 1179.4474
+58379.89677289617 4.1999693 1176.495
+58380.89677294367 4.2001266 1174.9205
+58381.89677299117 4.2001662 1178.0696
+58382.89677303866 4.2001266 1173.9364
+58383.89677308616 4.2001662 1172.165
+58384.89677313366 4.2001662 1175.1173
+58385.89677318116 4.2000875 1170.3937
+58386.89677322865 4.2001662 1172.3619
+58387.89677327615 4.200048 1168.2288
+58388.89677332365 4.2001266 1169.016
+58389.89677337115 4.2001662 1165.8669
+58390.89677341864 4.2000875 1164.2924
+58391.89677346614 4.2000875 1161.7338
+58392.89677351364 4.200048 1159.5687
+58393.89677356114 4.200048 1163.3082
+58394.89677360863 4.2001662 1161.1433
+58395.89677365613 4.2000089 1162.9147
+58396.89677370363 4.2002058 1159.7656
+58397.89677375113 4.2000875 1157.6006
+58398.89677379862 4.2001266 1156.0261
+58399.89677384612 4.2001266 1154.8451
+58400.89677389362 4.2000875 1152.877
+58401.89677394112 4.2000875 1154.4515
+58402.89677398861 4.2002058 1151.1056
+58403.89677403611 4.2001662 1153.2706
+58404.89677408361 4.2001266 1151.3025
+58405.89677413111 4.2001662 1149.9247
+58406.8967741786 4.2000875 1146.9725
+58407.8967742261 4.2001266 1149.5311
+58408.8967742736 4.2000875 1147.1693
+58409.8967743211 4.2000875 1144.0201
+58410.89677436859 4.2001662 1144.6107
+58411.89677441609 4.2001266 1145.7916
+58412.89677446359 4.2001266 1140.2806
+58413.89677451109 4.2000089 1138.7062
+58414.89677455858 4.2002058 1139.4934
+58415.89677460608 4.2001266 1137.9188
+58416.89677465358 4.200048 1138.3125
+58417.89677470108 4.2001662 1134.5729
+58418.89677474857 4.2000875 1132.2112
+58419.89677479607 4.200048 1131.4238
+58420.89677484357 4.2001662 1133.1952
+58421.89677489107 4.2001266 1130.0461
+58422.89677493856 4.2001662 1133.3921
+58423.89677498606 4.2000875 1128.078
+58424.89677503356 4.2002449 1131.2271
+58425.89677508106 4.2001662 1126.8971
+58426.89677512855 4.2001662 1126.5034
+58427.89677517605 4.2002058 1125.913
+58428.89677522355 4.2000089 1122.3704
+58429.89677527105 4.2000875 1123.1576
+58430.89677531854 4.2001266 1122.3704
+58431.89677536604 4.2001662 1121.9767
+58432.89677541354 4.2001266 1121.9767
+58433.89677546103 4.2001662 1120.2053
+58434.89677550853 4.2000875 1119.418
+58435.89677555603 4.2001662 1116.0721
+58436.89677560353 4.2001266 1115.2849
+58437.89677565102 4.2000875 1117.4498
+58438.89677569852 4.2001662 1114.104
+58439.89677574602 4.2001266 1111.3485
+58440.89677579352 4.200048 1108.7899
+58441.89677584101 4.200048 1108.0026
+58442.89677588851 4.2002058 1111.3485
+58443.89677593601 4.2000875 1107.609
+58444.89677598351 4.2002058 1109.1835
+58445.896776031 4.2000875 1106.4281
+58446.01077603642 4.200048 1102.0981
+58446.01277603651 4.2001266 1102.2949
+58446.0567760386 4.1878042 0.0
+58447.0567760861 4.1872926 0.0
+58448.0567761336 4.187017 0.0
+58449.0567761811 4.1868987 0.0
+58450.05677622859 4.18682 0.0
+58451.05677627609 4.1865048 0.0
+58452.05677632359 4.1864262 0.0
+58453.05677637109 4.1863079 0.0
+58454.05677641858 4.1860719 0.0
+58455.05677646608 4.1859932 0.0
+58456.05677651358 4.1859536 0.0
+58457.05677656108 4.1857572 0.0
+58458.05677660857 4.1857963 0.0
+58459.05677665607 4.1855993 0.0
+58460.05677670357 4.1855602 0.0
+58461.05677675107 4.185442 0.0
+58462.05677679856 4.1853237 0.0
+58463.05677684606 4.185245 0.0
+58464.05677689356 4.1852059 0.0
+58465.05677694106 4.1850481 0.0
+58466.05677698855 4.185009 0.0
+58467.05677703605 4.1849694 0.0
+58468.05677708355 4.1849303 0.0
+58469.05677713105 4.1847725 0.0
+58470.05677717854 4.1846938 0.0
+58471.05677722604 4.1847334 0.0
+58472.05677727354 4.1846151 0.0
+58473.05677732104 4.1845365 0.0
+58474.05677736853 4.1844182 0.0
+58475.05677741603 4.1844182 0.0
+58476.05677746353 4.1843004 0.0
+58477.05677751102 4.1842217 0.0
+58478.05677755852 4.1841426 0.0
+58479.05677760602 4.1842217 0.0
+58480.05677765352 4.1840248 0.0
+58481.05677770101 4.1841035 0.0
+58482.05677774851 4.1840248 0.0
+58483.05677779601 4.1838675 0.0
+58484.05677784351 4.1838675 0.0
+58485.056777891 4.1838675 0.0
+58486.0567779385 4.1837096 0.0
+58487.056777986 4.1837096 0.0
+58488.0567780335 4.1836705 0.0
+58489.05677808099 4.1836309 0.0
+58490.05677812849 4.1835523 0.0
+58491.05677817599 4.1833553 0.0
+58492.05677822349 4.1834736 0.0
+58493.05677827098 4.1833162 0.0
+58494.05677831848 4.1832767 0.0
+58495.05677836598 4.1832767 0.0
+58496.05677841348 4.183198 0.0
+58497.05677846097 4.1832371 0.0
+58498.05677850847 4.1831584 0.0
+58499.05677855597 4.1831193 0.0
+58500.05677860347 4.183001 0.0
+58501.05677865096 4.183001 0.0
+58502.05677869846 4.1830797 0.0
+58503.05677874596 4.1830406 0.0
+58504.05677879346 4.1828041 0.0
+58505.05677884095 4.1827254 0.0
+58506.05677888845 4.1828828 0.0
+58507.05677893595 4.1826468 0.0
+58508.05677898345 4.1827254 0.0
+58509.05677903094 4.1826072 0.0
+58510.05677907844 4.1826072 0.0
+58511.05677912594 4.1826468 0.0
+58512.05677917344 4.1826072 0.0
+58513.05677922093 4.1825285 0.0
+58514.05677926843 4.1825681 0.0
+58515.05677931593 4.1824894 0.0
+58516.05677936343 4.182332 0.0
+58517.05677941092 4.1823711 0.0
+58518.05677945842 4.1822529 0.0
+58519.05677950592 4.182332 0.0
+58520.05677955342 4.1821742 0.0
+58521.05677960091 4.182332 0.0
+58522.05677964841 4.1820955 0.0
+58523.05677969591 4.1821742 0.0
+58524.05677974341 4.1821351 0.0
+58525.0567797909 4.1821742 0.0
+58526.0567798384 4.1820955 0.0
+58527.0567798859 4.1820168 0.0
+58528.05677993339 4.1819382 0.0
+58529.05677998089 4.1818595 0.0
+58530.05678002839 4.1819773 0.0
+58531.05678007589 4.1818986 0.0
+58532.05678012338 4.1818199 0.0
+58533.05678017088 4.1817808 0.0
+58534.05678021838 4.1817808 0.0
+58535.05678026588 4.1817808 0.0
+58536.05678031337 4.1816626 0.0
+58537.05678036087 4.181623 0.0
+58538.05678040837 4.181623 0.0
+58539.05678045587 4.1816626 0.0
+58540.05678050336 4.1815443 0.0
+58541.05678055086 4.1814656 0.0
+58542.05678059836 4.1815839 0.0
+58543.05678064586 4.1815443 0.0
+58544.05678069335 4.1814265 0.0
+58545.05678074085 4.1814656 0.0
+58546.05678078835 4.1813869 0.0
+58547.05678083585 4.1813474 0.0
+58548.05678088334 4.1813869 0.0
+58549.05678093084 4.1813083 0.0
+58550.05678097834 4.1812296 0.0
+58551.05678102584 4.1813083 0.0
+58552.05678107333 4.1812296 0.0
+58553.05678112083 4.1812687 0.0
+58554.05678116833 4.18119 0.0
+58555.05678121583 4.1811113 0.0
+58556.05678126332 4.1811113 0.0
+58557.05678131082 4.1810327 0.0
+58558.05678135832 4.1811113 0.0
+58559.05678140582 4.1810327 0.0
+58560.05678145331 4.1811113 0.0
+58561.05678150081 4.1809931 0.0
+58562.05678154831 4.1809144 0.0
+58563.05678159581 4.1808357 0.0
+58564.0567816433 4.180954 0.0
+58565.0567816908 4.1809144 0.0
+58566.0567817383 4.1808357 0.0
+58567.0567817858 4.1808753 0.0
+58568.05678183329 4.180757 0.0
+58569.05678188079 4.1806784 0.0
+58570.05678192829 4.180757 0.0
+58571.05678197579 4.1805997 0.0
+58572.05678202328 4.1806388 0.0
+58573.05678207078 4.180757 0.0
+58574.05678211828 4.1805997 0.0
+58575.05678216578 4.1805997 0.0
+58576.05678221327 4.1805601 0.0
+58577.05678226077 4.1805601 0.0
+58578.05678230827 4.180521 0.0
+58579.05678235576 4.1804028 0.0
+58580.05678240326 4.1804028 0.0
+58581.05678245076 4.1804028 0.0
+58582.05678249826 4.1804028 0.0
+58583.05678254575 4.1803632 0.0
+58584.05678259325 4.1803241 0.0
+58585.05678264075 4.1804419 0.0
+58586.05678268825 4.1803632 0.0
+58587.05678273574 4.1803241 0.0
+58588.05678278324 4.1803241 0.0
+58589.05678283074 4.1802454 0.0
+58590.05678287824 4.1801667 0.0
+58591.05678292573 4.1802058 0.0
+58592.05678297323 4.1801667 0.0
+58593.05678302073 4.1802058 0.0
+58594.05678306823 4.1801271 0.0
+58595.05678311572 4.1801271 0.0
+58596.05678316322 4.1802058 0.0
+58597.05678321072 4.1801667 0.0
+58598.05678325822 4.1800089 0.0
+58599.05678330571 4.1800876 0.0
+58600.05678335321 4.1800089 0.0
+58601.05678340071 4.1800485 0.0
+58602.05678344821 4.1799302 0.0
+58603.0567834957 4.1799698 0.0
+58604.0567835432 4.1799698 0.0
+58605.0567835907 4.1798911 0.0
+58606.0567836382 4.1798515 0.0
+58607.05678368569 4.1797729 0.0
+58608.05678373319 4.1797729 0.0
+58609.05678378069 4.1799302 0.0
+58610.05678382819 4.1797333 0.0
+58611.05678387568 4.1797333 0.0
+58612.05678392318 4.1796942 0.0
+58613.05678397068 4.1796546 0.0
+58614.05678401818 4.1796546 0.0
+58615.05678406567 4.1795363 0.0
+58616.05678411317 4.1796155 0.0
+58617.05678416067 4.1795759 0.0
+58618.05678420817 4.1796942 0.0
+58619.05678425566 4.1795759 0.0
+58620.05678430316 4.1796155 0.0
+58621.05678435066 4.1794577 0.0
+58622.05678439816 4.1794972 0.0
+58623.05678444565 4.1794972 0.0
+58624.05678449315 4.1794186 0.0
+58625.05678454065 4.1794972 0.0
+58626.05678458815 4.1792612 0.0
+58627.05678463564 4.1794972 0.0
+58628.05678468314 4.1793003 0.0
+58629.05678473064 4.1793003 0.0
+58630.05678477813 4.1793399 0.0
+58631.05678482563 4.1792612 0.0
+58632.05678487313 4.1793399 0.0
+58633.05678492063 4.1791821 0.0
+58634.05678496812 4.1792216 0.0
+58635.05678501562 4.1793003 0.0
+58636.05678506312 4.1792612 0.0
+58637.05678511062 4.1792612 0.0
+58638.05678515811 4.1790643 0.0
+58639.05678520561 4.179143 0.0
+58640.05678525311 4.1791821 0.0
+58641.05678530061 4.1789856 0.0
+58642.0567853481 4.1791821 0.0
+58643.0567853956 4.1790643 0.0
+58644.0567854431 4.1791034 0.0
+58645.0567854906 4.1791034 0.0
+58646.05678553809 4.1791034 0.0
+58647.05678558559 4.1790643 0.0
+58648.05678563309 4.1789856 0.0
+58649.05678568059 4.1789064 0.0
+58650.05678572808 4.1789856 0.0
+58651.05678577558 4.1789064 0.0
+58652.05678582308 4.1789064 0.0
+58653.05678587058 4.1788278 0.0
+58654.05678591807 4.1789064 0.0
+58655.05678596557 4.1788673 0.0
+58656.05678601307 4.1788278 0.0
+58657.05678606057 4.1788278 0.0
+58658.05678610806 4.1788673 0.0
+58659.05678615556 4.1787887 0.0
+58660.05678620306 4.1785917 0.0
+58661.05678625056 4.17871 0.0
+58662.05678629805 4.1787491 0.0
+58663.05678634555 4.17871 0.0
+58664.05678639305 4.1786704 0.0
+58665.05678644055 4.1786704 0.0
+58666.05678648804 4.17871 0.0
+58667.05678653554 4.1785917 0.0
+58668.05678658304 4.1786313 0.0
+58669.05678663054 4.1785917 0.0
+58670.05678667803 4.1785131 0.0
+58671.05678672553 4.1785522 0.0
+58672.05678677303 4.1785522 0.0
+58673.05678682053 4.1784735 0.0
+58674.05678686802 4.1784735 0.0
+58675.05678691552 4.1786313 0.0
+58676.05678696302 4.1785131 0.0
+58677.05678701052 4.1784344 0.0
+58678.05678705801 4.1783948 0.0
+58679.05678710551 4.1785131 0.0
+58680.05678715301 4.1784735 0.0
+58681.0567872005 4.1783948 0.0
+58682.056787248 4.1783161 0.0
+58683.0567872955 4.1781979 0.0
+58684.056787343 4.1783948 0.0
+58685.05678739049 4.1783161 0.0
+58686.05678743799 4.1783557 0.0
+58687.05678748549 4.1783161 0.0
+58688.05678753299 4.1782374 0.0
+58689.05678758048 4.1782765 0.0
+58690.05678762798 4.1782374 0.0
+58691.05678767548 4.1781979 0.0
+58692.05678772298 4.1781192 0.0
+58693.05678777047 4.1781192 0.0
+58694.05678781797 4.1781979 0.0
+58695.05678786547 4.1782765 0.0
+58696.05678791297 4.1781192 0.0
+58697.05678796046 4.1781192 0.0
+58698.05678800796 4.1781588 0.0
+58699.05678805546 4.1780405 0.0
+58700.05678810296 4.1780801 0.0
+58701.05678815045 4.1781588 0.0
+58702.05678819795 4.1780405 0.0
+58703.05678824545 4.1780009 0.0
+58704.05678829295 4.1781192 0.0
+58705.05678834044 4.1780405 0.0
+58706.05678838794 4.1779618 0.0
+58707.05678843544 4.1779222 0.0
+58708.05678848294 4.1779222 0.0
+58709.05678853043 4.1779222 0.0
+58710.05678857793 4.1779222 0.0
+58711.05678862543 4.1778831 0.0
+58712.05678867293 4.1778436 0.0
+58713.05678872042 4.1778436 0.0
+58714.05678876792 4.1778436 0.0
+58715.05678881542 4.1777649 0.0
+58716.05678886292 4.1778436 0.0
+58717.05678891041 4.1778831 0.0
+58718.05678895791 4.1778045 0.0
+58719.05678900541 4.1776862 0.0
+58720.05678905291 4.1777649 0.0
+58721.0567891004 4.1778436 0.0
+58722.0567891479 4.1776466 0.0
+58723.0567891954 4.1777258 0.0
+58724.0567892429 4.1776466 0.0
+58725.05678929039 4.177568 0.0
+58726.05678933789 4.1777258 0.0
+58727.05678938539 4.1776466 0.0
+58728.05678943289 4.1776466 0.0
+58729.05678948038 4.1776075 0.0
+58730.05678952788 4.1776862 0.0
+58731.05678957538 4.1776466 0.0
+58732.05678962287 4.177568 0.0
+58733.05678967037 4.1776075 0.0
+58734.05678971787 4.177568 0.0
+58735.05678976537 4.1775289 0.0
+58736.05678981286 4.177568 0.0
+58737.05678986036 4.1774893 0.0
+58738.05678990786 4.1774893 0.0
+58739.05678995536 4.1774106 0.0
+58740.05679000285 4.1774502 0.0
+58741.05679005035 4.1775289 0.0
+58742.05679009785 4.177371 0.0
+58743.05679014535 4.1774502 0.0
+58744.05679019284 4.177371 0.0
+58745.05679024034 4.1774106 0.0
+58746.05679028784 4.1774502 0.0
+58747.05679033534 4.177371 0.0
+58748.05679038283 4.1773319 0.0
+58749.05679043033 4.1774106 0.0
+58750.05679047783 4.1772923 0.0
+58751.05679052533 4.177371 0.0
+58752.05679057282 4.1772923 0.0
+58753.05679062032 4.1773319 0.0
+58754.05679066782 4.1773319 0.0
+58755.05679071532 4.1772532 0.0
+58756.05679076281 4.1773319 0.0
+58757.05679081031 4.1772532 0.0
+58758.05679085781 4.1772923 0.0
+58759.05679090531 4.1772137 0.0
+58760.0567909528 4.177135 0.0
+58761.0567910003 4.177135 0.0
+58762.0567910478 4.1771746 0.0
+58763.0567910953 4.1771746 0.0
+58764.05679114279 4.1770959 0.0
+58765.05679119029 4.1771746 0.0
+58766.05679123779 4.1770563 0.0
+58767.05679128529 4.1770563 0.0
+58768.05679133278 4.177135 0.0
+58769.05679138028 4.1770563 0.0
+58770.05679142778 4.1770563 0.0
+58771.05679147528 4.1770167 0.0
+58772.05679152277 4.1770167 0.0
+58773.05679157027 4.1770167 0.0
+58774.05679161777 4.1769381 0.0
+58775.05679166527 4.1769776 0.0
+58776.05679171276 4.1769381 0.0
+58777.05679176026 4.1769776 0.0
+58778.05679180776 4.1769381 0.0
+58779.05679185526 4.1769381 0.0
+58780.05679190275 4.1769381 0.0
+58781.05679195025 4.1768594 0.0
+58782.05679199775 4.1769381 0.0
+58783.05679204525 4.1768203 0.0
+58784.05679209274 4.176899 0.0
+58785.05679214024 4.1768203 0.0
+58786.05679218774 4.176899 0.0
+58787.05679223523 4.1768203 0.0
+58788.05679228273 4.1768594 0.0
+58789.05679233023 4.1767807 0.0
+58790.05679237773 4.176899 0.0
+58791.05679242522 4.1767411 0.0
+58792.05679247272 4.1768203 0.0
+58793.05679252022 4.1767411 0.0
+58794.05679256772 4.1767807 0.0
+58795.05679261521 4.1767807 0.0
+58796.05679266271 4.1767807 0.0
+58797.05679271021 4.1767411 0.0
+58798.05679275771 4.1766233 0.0
+58799.0567928052 4.176702 0.0
+58800.0567928527 4.1766624 0.0
+58801.0567929002 4.1767411 0.0
+58802.0567929477 4.1766233 0.0
+58803.05679299519 4.1766624 0.0
+58804.05679304269 4.1765838 0.0
+58805.05679309019 4.1766624 0.0
+58806.05679313769 4.1766233 0.0
+58807.05679318518 4.1765447 0.0
+58808.05679323268 4.1766233 0.0
+58809.05679328018 4.1765447 0.0
+58810.05679332768 4.1766233 0.0
+58811.05679337517 4.1765051 0.0
+58812.05679342267 4.1765051 0.0
+58813.05679347017 4.1765051 0.0
+58814.05679351767 4.176466 0.0
+58815.05679356516 4.1764264 0.0
+58816.05679361266 4.1764264 0.0
+58817.05679366016 4.176466 0.0
+58818.05679370766 4.1765051 0.0
+58819.05679375515 4.1765051 0.0
+58820.05679380265 4.1763868 0.0
+58821.05679385015 4.176466 0.0
+58822.05679389765 4.1763477 0.0
+58823.05679394514 4.1763477 0.0
+58824.05679399264 4.1763082 0.0
+58825.05679404014 4.1763477 0.0
+58826.05679408764 4.1762691 0.0
+58827.05679413513 4.1763477 0.0
+58828.05679418263 4.1763082 0.0
+58829.05679423013 4.1763477 0.0
+58830.05679427763 4.1761508 0.0
+58831.05679432512 4.1763477 0.0
+58832.05679437262 4.1762295 0.0
+58833.05679442012 4.1762295 0.0
+58834.05679446762 4.1763082 0.0
+58835.05679451511 4.1762691 0.0
+58836.05679456261 4.1763082 0.0
+58837.05679461011 4.1762295 0.0
+58838.0567946576 4.1760721 0.0
+58839.0567947051 4.1762295 0.0
+58840.0567947526 4.1761904 0.0
+58841.0567948001 4.1761508 0.0
+58842.05679484759 4.1761112 0.0
+58843.05679489509 4.1761904 0.0
+58844.05679494259 4.1761904 0.0
+58845.05679499009 4.1760721 0.0
+58846.05679503758 4.1760325 0.0
+58847.05679508508 4.1761904 0.0
+58848.05679513258 4.1760325 0.0
+58849.05679518008 4.1760721 0.0
+58850.05679522757 4.1760325 0.0
+58851.05679527507 4.1761112 0.0
+58852.05679532257 4.1759539 0.0
+58853.05679537007 4.1760325 0.0
+58854.05679541756 4.1760325 0.0
+58855.05679546506 4.1759934 0.0
+58856.05679551256 4.1759934 0.0
+58857.05679556006 4.1759148 0.0
+58858.05679560755 4.1760721 0.0
+58859.05679565505 4.1759934 0.0
+58860.05679570255 4.1760721 0.0
+58861.05679575005 4.1758752 0.0
+58862.05679579754 4.1758752 0.0
+58863.05679584504 4.1758752 0.0
+58864.05679589254 4.1759148 0.0
+58865.05679594004 4.1759148 0.0
+58866.05679598753 4.1758752 0.0
+58867.05679603503 4.1759148 0.0
+58868.05679608253 4.1758356 0.0
+58869.05679613003 4.1757178 0.0
+58870.05679617752 4.1758356 0.0
+58871.05679622502 4.1757569 0.0
+58872.05679627252 4.1758752 0.0
+58873.05679632002 4.1757178 0.0
+58874.05679636751 4.1757965 0.0
+58875.05679641501 4.1756783 0.0
+58876.05679646251 4.1757569 0.0
+58877.05679651001 4.1758752 0.0
+58878.0567965575 4.1758356 0.0
+58879.056796605 4.1756392 0.0
+58880.0567966525 4.1757178 0.0
+58881.0567967 4.1755996 0.0
+58882.05679674749 4.1756783 0.0
+58883.05679679499 4.1755996 0.0
+58884.05679684249 4.1756392 0.0
+58885.05679688999 4.1757569 0.0
+58886.05679693748 4.1757569 0.0
+58887.05679698498 4.1757965 0.0
+58888.05679703248 4.1757178 0.0
+58889.05679707997 4.1756783 0.0
+58890.05679712747 4.1755605 0.0
+58891.05679717497 4.1755605 0.0
+58892.05679722247 4.1755209 0.0
+58893.05679726996 4.1755209 0.0
+58894.05679731746 4.1755605 0.0
+58895.05679736496 4.1755605 0.0
+58896.05679741246 4.1756783 0.0
+58897.05679745995 4.1755605 0.0
+58898.05679750745 4.1754813 0.0
+58899.05679755495 4.1754422 0.0
+58900.05679760245 4.1755605 0.0
+58901.05679764994 4.1754422 0.0
+58902.05679769744 4.1755209 0.0
+58903.05679774494 4.1756392 0.0
+58904.05679779244 4.1755605 0.0
+58905.05679783993 4.1754422 0.0
+58906.05679788743 4.1753635 0.0
+58907.05679793493 4.1754026 0.0
+58908.05679798243 4.1754026 0.0
+58909.05679802992 4.1754813 0.0
+58910.05679807742 4.1754813 0.0
+58911.05679812492 4.1754422 0.0
+58912.05679817242 4.175324 0.0
+58913.05679821991 4.1754422 0.0
+58914.05679826741 4.1754026 0.0
+58915.05679831491 4.1753635 0.0
+58916.05679836241 4.175324 0.0
+58917.0567984099 4.1754422 0.0
+58918.0567984574 4.175324 0.0
+58919.0567985049 4.1752453 0.0
+58920.0567985524 4.175324 0.0
+58921.05679859989 4.175324 0.0
+58922.05679864739 4.1752453 0.0
+58923.05679869489 4.175324 0.0
+58924.05679874239 4.1752849 0.0
+58925.05679878988 4.1752453 0.0
+58926.05679883738 4.175324 0.0
+58927.05679888488 4.1751666 0.0
+58928.05679893238 4.1752849 0.0
+58929.05679897987 4.1751666 0.0
+58930.05679902737 4.1752057 0.0
+58931.05679907487 4.1752849 0.0
+58932.05679912237 4.1752057 0.0
+58933.05679916986 4.1752057 0.0
+58934.05679921736 4.1752057 0.0
+58935.05679926486 4.1752453 0.0
+58936.05679931236 4.1751666 0.0
+58937.05679935985 4.1751666 0.0
+58938.05679940735 4.175127 0.0
+58939.05679945485 4.1752057 0.0
+58940.05679950234 4.1750484 0.0
+58941.05679954984 4.175127 0.0
+58942.05679959734 4.1750879 0.0
+58943.05679964484 4.1750879 0.0
+58944.05679969233 4.1750879 0.0
+58945.05679973983 4.175127 0.0
+58946.05679978733 4.1750879 0.0
+58947.05679983483 4.1750484 0.0
+58948.05679988232 4.1752057 0.0
+58949.05679992982 4.1749697 0.0
+58950.05679997732 4.175127 0.0
+58951.05680002482 4.1750093 0.0
+58952.05680007231 4.175127 0.0
+58953.05680011981 4.1750879 0.0
+58954.05680016731 4.1750484 0.0
+58955.05680021481 4.1749697 0.0
+58956.0568002623 4.1750484 0.0
+58957.0568003098 4.1749697 0.0
+58958.0568003573 4.1749697 0.0
+58959.0568004048 4.1749697 0.0
+58960.05680045229 4.174891 0.0
+58961.05680049979 4.1749697 0.0
+58962.05680054729 4.1748514 0.0
+58963.05680059479 4.174891 0.0
+58964.05680064228 4.1749306 0.0
+58965.05680068978 4.174891 0.0
+58966.05680073728 4.1749306 0.0
+58967.05680078478 4.1749697 0.0
+58968.05680083227 4.1748514 0.0
+58969.05680087977 4.174891 0.0
+58970.05680092727 4.1748514 0.0
+58971.05680097477 4.1748514 0.0
+58972.05680102226 4.1748514 0.0
+58973.05680106976 4.174891 0.0
+58974.05680111726 4.1747727 0.0
+58975.05680116476 4.1748514 0.0
+58976.05680121225 4.174891 0.0
+58977.05680125975 4.1748123 0.0
+58978.05680130725 4.1748123 0.0
+58979.05680135475 4.1747727 0.0
+58980.05680140224 4.1748123 0.0
+58981.05680144974 4.1748123 0.0
+58982.05680149724 4.1748123 0.0
+58983.05680154474 4.1748123 0.0
+58984.05680159223 4.1748514 0.0
+58985.05680163973 4.1747336 0.0
+58986.05680168723 4.1748123 0.0
+58987.05680173473 4.174655 0.0
+58988.05680178222 4.1745758 0.0
+58989.05680182972 4.1746154 0.0
+58990.05680187722 4.1747727 0.0
+58991.05680192471 4.1746154 0.0
+58992.05680197221 4.174655 0.0
+58993.05680201971 4.1747336 0.0
+58994.05680206721 4.1746154 0.0
+58995.0568021147 4.1746154 0.0
+58996.0568021622 4.1747336 0.0
+58997.0568022097 4.1746941 0.0
+58998.0568022572 4.1746941 0.0
+58999.05680230469 4.1746154 0.0
+59000.05680235219 4.174655 0.0
+59001.05680239969 4.1745367 0.0
+59002.05680244719 4.1745758 0.0
+59003.05680249468 4.1746154 0.0
+59004.05680254218 4.1746941 0.0
+59005.05680258968 4.1746154 0.0
+59006.05680263718 4.1745367 0.0
+59007.05680268467 4.1745367 0.0
+59008.05680273217 4.1745758 0.0
+59009.05680277967 4.1746154 0.0
+59010.05680282717 4.1744971 0.0
+59011.05680287466 4.1744971 0.0
+59012.05680292216 4.1744184 0.0
+59013.05680296966 4.174458 0.0
+59014.05680301716 4.1744971 0.0
+59015.05680306465 4.1745367 0.0
+59016.05680311215 4.1743793 0.0
+59017.05680315965 4.1744971 0.0
+59018.05680320715 4.174458 0.0
+59019.05680325464 4.174458 0.0
+59020.05680330214 4.1744184 0.0
+59021.05680334964 4.1744971 0.0
+59022.05680339714 4.174458 0.0
+59023.05680344463 4.1743793 0.0
+59024.05680349213 4.1743398 0.0
+59025.05680353963 4.1743398 0.0
+59026.05680358713 4.1744184 0.0
+59027.05680363462 4.1743793 0.0
+59028.05680368212 4.1743793 0.0
+59029.05680372962 4.1743793 0.0
+59030.05680377712 4.1743793 0.0
+59031.05680382461 4.174458 0.0
+59032.05680387211 4.1744184 0.0
+59033.05680391961 4.1743002 0.0
+59034.05680396711 4.1742215 0.0
+59035.0568040146 4.1742215 0.0
+59036.0568040621 4.1743793 0.0
+59037.0568041096 4.1743793 0.0
+59038.0568041571 4.1743002 0.0
+59039.05680420459 4.1742611 0.0
+59040.05680425209 4.1743002 0.0
+59041.05680429959 4.1742611 0.0
+59042.05680434708 4.1743002 0.0
+59043.05680439458 4.1743002 0.0
+59044.05680444208 4.1742611 0.0
+59045.05680448958 4.1743002 0.0
+59046.05280453688 4.0945377 -7353.3706
+59046.05480453698 4.0939474 -7352.9771
+59047.05480458448 4.0880022 -7353.9609
+59048.05480463197 4.0864277 -7353.5669
+59049.05480467947 4.0851679 -7354.1577
+59050.05480472697 4.0840263 -7354.3545
+59051.05480477447 4.0830417 -7354.3545
+59052.05480482196 4.0821757 -7353.7646
+59053.05480486946 4.0812306 -7354.1577
+59054.05480491696 4.0803647 -7353.9609
+59055.05480496446 4.0796561 -7354.1577
+59056.05480501195 4.078908 -7353.7646
+59057.05480505945 4.0781603 -7353.5669
+59058.05480510695 4.0774121 -7353.5669
+59059.05480515445 4.0769396 -7354.3545
+59060.05480520194 4.0761127 -7353.1738
+59061.05480524944 4.0754828 -7353.1738
+59062.05480529694 4.0749316 -7353.9609
+59063.05480534444 4.0743804 -7354.7485
+59064.05480539193 4.0738292 -7353.9609
+59065.05480543943 4.0732388 -7353.5669
+59066.05480548693 4.0727663 -7353.9609
+59067.05480553443 4.0722938 -7354.1577
+59068.05480558192 4.0717821 -7353.7646
+59069.05480562942 4.0711131 -7353.3706
+59070.05480567692 4.0707192 -7354.1577
+59071.05480572442 4.0702467 -7353.1738
+59072.05480577191 4.069932 -7354.1577
+59073.05480581941 4.0694199 -7354.1577
+59074.05480586691 4.0689478 -7353.7646
+59075.05480591441 4.0684752 -7353.7646
+59076.0548059619 4.0680423 -7353.7646
+59077.0548060094 4.067688 -7355.1421
+59078.0548060569 4.0672545 -7354.1577
+59079.0548061044 4.0668216 -7353.3706
+59080.05480615189 4.066349 -7353.5669
+59081.05480619939 4.066113 -7354.1577
+59082.05480624689 4.0656404 -7353.9609
+59083.05480629439 4.0652862 -7353.7646
+59084.05480634188 4.0648923 -7353.7646
+59085.05480638938 4.064538 -7353.9609
+59086.05480643688 4.064105 -7354.1577
+59087.05480648438 4.063869 -7353.3706
+59088.05480653187 4.0633569 -7354.3545
+59089.05480657937 4.0630422 -7354.1577
+59090.05480662687 4.062727 -7352.9771
+59091.05480667437 4.062294 -7353.7646
+59092.05480672186 4.062058 -7352.9771
+59093.05480676936 4.0617428 -7354.1577
+59094.05480681686 4.0613494 -7354.3545
+59095.05480686435 4.0610738 -7353.9609
+59096.05480691185 4.0607982 -7353.3706
+59097.05480695935 4.0604439 -7354.1577
+59098.05480700685 4.0601287 -7353.3706
+59099.05480705434 4.0599713 -7352.9771
+59100.05480710184 4.059617 -7353.9609
+59101.05480714934 4.0592232 -7353.9609
+59102.05480719684 4.0587902 -7354.5513
+59103.05480724433 4.058672 -7353.5669
+59104.05480729183 4.0583572 -7353.7646
+59105.05480733933 4.058042 -7353.9609
+59106.05480738683 4.0577273 -7354.5513
+59107.05480743432 4.0574121 -7353.3706
+59108.05480748182 4.0572157 -7353.9609
+59109.05480752932 4.0569401 -7353.1738
+59110.05480757682 4.0565858 -7353.5669
+59111.05480762431 4.0563102 -7353.9609
+59112.05480767181 4.0561523 -7352.7803
+59113.05480771931 4.0556011 -7353.7646
+59114.05480776681 4.055562 -7353.3706
+59115.0548078143 4.0552468 -7353.9609
+59116.0548078618 4.0549321 -7353.7646
+59117.0548079093 4.0546565 -7353.3706
+59118.0548079568 4.05442 -7353.5669
+59119.05480800429 4.0541449 -7354.5513
+59120.05480805179 4.0540266 -7353.5669
+59121.05480809929 4.0536327 -7353.5669
+59122.05480814679 4.0534754 -7353.7646
+59123.05480819428 4.0532784 -7353.7646
+59124.05480824178 4.0529242 -7353.9609
+59125.05480828928 4.0526881 -7353.7646
+59126.05480833678 4.0524125 -7354.1577
+59127.05480838427 4.0522547 -7354.1577
+59128.05480843177 4.0520973 -7354.1577
+59129.05480847927 4.0517826 -7353.7646
+59130.05480852677 4.051507 -7353.3706
+59131.05480857426 4.0513101 -7353.3706
+59132.05480862176 4.0511131 -7353.9609
+59133.05480866926 4.0508771 -7354.3545
+59134.05480871676 4.0507588 -7354.3545
+59135.05480876425 4.050365 -7353.3706
+59136.05480881175 4.0502863 -7353.9609
+59137.05480885925 4.0499716 -7353.1738
+59138.05480890675 4.0497351 -7354.1577
+59139.05480895424 4.0493417 -7353.5669
+59140.05480900174 4.0493021 -7353.7646
+59141.05480904924 4.0490265 -7353.5669
+59142.05480909674 4.0487905 -7354.1577
+59143.05480914423 4.0486331 -7353.7646
+59144.05480919173 4.0483966 -7354.3545
+59145.05480923923 4.0482788 -7353.5669
+59146.05480928672 4.0478849 -7354.7485
+59147.05480933422 4.0478063 -7353.5669
+59148.05480938172 4.0476489 -7354.3545
+59149.05480942922 4.0473733 -7353.7646
+59150.05480947671 4.0471764 -7354.3545
+59151.05480952421 4.0468612 -7353.9609
+59152.05480957171 4.0467434 -7354.3545
+59153.05480961921 4.0465856 -7353.3706
+59154.0548096667 4.0463886 -7353.5669
+59155.0548097142 4.0461135 -7353.3706
+59156.0548097617 4.0459952 -7353.3706
+59157.0548098092 4.0457587 -7353.7646
+59158.05480985669 4.0456014 -7354.1577
+59159.05480990419 4.0454831 -7353.5669
+59160.05480995169 4.045208 -7353.5669
+59161.05480999919 4.045011 -7354.1577
+59162.05481004668 4.0448141 -7354.3545
+59163.05481009418 4.0446959 -7354.7485
+59164.05481014168 4.0444598 -7352.9771
+59165.05481018918 4.0443416 -7353.3706
+59166.05481023667 4.0441055 -7354.3545
+59167.05481028417 4.0438299 -7353.7646
+59168.05481033167 4.0435934 -7353.5669
+59169.05481037917 4.0435934 -7354.5513
+59170.05481042666 4.0433574 -7353.3706
+59171.05481047416 4.0430818 -7353.3706
+59172.05481052166 4.0428061 -7353.5669
+59173.05481056916 4.0427275 -7353.3706
+59174.05481061665 4.0425305 -7353.7646
+59175.05481066415 4.0424128 -7353.9609
+59176.05481071165 4.0421371 -7354.5513
+59177.05481075915 4.0420189 -7353.9609
+59178.05481080664 4.041822 -7353.1738
+59179.05481085414 4.0415859 -7353.7646
+59180.05481090164 4.0415463 -7353.5669
+59181.05481094914 4.0413494 -7353.9609
+59182.05481099663 4.0410738 -7354.7485
+59183.05481104413 4.0408378 -7353.7646
+59184.05481109163 4.0408378 -7354.3545
+59185.05481113913 4.0406408 -7353.9609
+59186.05481118662 4.0405622 -7354.3545
+59187.05481123412 4.0403261 -7353.7646
+59188.05481128162 4.0401292 -7353.5669
+59189.05481132912 4.0398927 -7353.5669
+59190.05481137661 4.039814 -7353.9609
+59191.05481142411 4.039578 -7353.9609
+59192.05481147161 4.0396171 -7353.1738
+59193.05481151911 4.039381 -7353.7646
+59194.0548115666 4.039145 -7354.1577
+59195.0548116141 4.0390663 -7354.3545
+59196.0548116616 4.0389481 -7352.3862
+59197.05481170909 4.0386724 -7354.1577
+59198.05481175659 4.0384364 -7353.5669
+59199.05481180409 4.0383968 -7353.7646
+59200.05481185159 4.0383182 -7353.7646
+59201.05481189908 4.0381212 -7353.5669
+59202.05481194658 4.0379243 -7353.7646
+59203.05481199408 4.0378456 -7354.9453
+59204.05481204158 4.0376096 -7354.5513
+59205.05481208907 4.0374517 -7354.1577
+59206.05481213657 4.0372553 -7353.7646
+59207.05481218407 4.0370975 -7353.3706
+59208.05481223157 4.0370188 -7352.9771
+59209.05481227906 4.036901 -7353.1738
+59210.05481232656 4.0366645 -7353.3706
+59211.05481237406 4.0365858 -7353.3706
+59212.05481242156 4.0364285 -7353.1738
+59213.05481246905 4.0363102 -7353.3706
+59214.05481251655 4.0361133 -7353.5669
+59215.05481256405 4.0359163 -7353.3706
+59216.05481261155 4.0357199 -7353.3706
+59217.05481265904 4.0356016 -7353.9609
+59218.05481270654 4.0354834 -7354.3545
+59219.05481275404 4.035326 -7354.9453
+59220.05481280154 4.03509 -7353.3706
+59221.05481284903 4.0349321 -7353.9609
+59222.05481289653 4.0349321 -7354.3545
+59223.05481294403 4.0346565 -7353.7646
+59224.05481299153 4.0343809 -7352.7803
+59225.05481303902 4.0343022 -7354.7485
+59226.05481308652 4.0342631 -7353.3706
+59227.05481313402 4.0341058 -7353.3706
+59228.05481318152 4.0339088 -7353.7646
+59229.05481322901 4.0338302 -7353.3706
+59230.05481327651 4.0335546 -7353.7646
+59231.05481332401 4.0334363 -7353.5669
+59232.05481337151 4.033318 -7353.9609
+59233.054813419 4.0332003 -7353.9609
+59234.0548134665 4.033082 -7353.7646
+59235.054813514 4.0328851 -7353.9609
+59236.0548135615 4.0327668 -7354.3545
+59237.05481360899 4.0325704 -7353.3706
+59238.05481365649 4.0324912 -7353.5669
+59239.05481370399 4.0325308 -7354.3545
+59240.05481375149 4.0321765 -7354.3545
+59241.05481379898 4.0320978 -7354.1577
+59242.05481384648 4.0319796 -7353.9609
+59243.05481389398 4.0317826 -7353.5669
+59244.05481394148 4.0317039 -7353.7646
+59245.05481398897 4.0315466 -7352.583
+59246.05481403647 4.0313892 -7353.5669
+59247.05481408397 4.031271 -7353.1738
+59248.05481413146 4.0311136 -7353.7646
+59249.05481417896 4.0309558 -7353.5669
+59250.05481422646 4.0309558 -7354.3545
+59251.05481427396 4.0307984 -7354.1577
+59252.05481432145 4.0306015 -7353.9609
+59253.05481436895 4.0305624 -7354.3545
+59254.05481441645 4.030405 -7352.9771
+59255.05481446395 4.0303655 -7353.9609
+59256.05481451144 4.0300899 -7352.7803
+59257.05481455894 4.0299716 -7353.5669
+59258.05481460644 4.0298929 -7354.1577
+59259.05481465394 4.0297356 -7353.9609
+59260.05481470143 4.0296173 -7353.3706
+59261.05481474893 4.0294204 -7353.9609
+59262.05481479643 4.0293813 -7353.7646
+59263.05481484393 4.0292239 -7354.1577
+59264.05481489142 4.029027 -7353.7646
+59265.05481493892 4.0290661 -7353.5669
+59266.05481498642 4.0288696 -7353.7646
+59267.05481503392 4.0286727 -7354.1577
+59268.05481508141 4.0286727 -7353.5669
+59269.05481512891 4.0283971 -7353.9609
+59270.05481517641 4.0283575 -7353.5669
+59271.05481522391 4.0283184 -7352.7803
+59272.0548152714 4.0280032 -7353.9609
+59273.0548153189 4.0280428 -7353.9609
+59274.0548153664 4.0279245 -7353.7646
+59275.0548154139 4.0277276 -7353.5669
+59276.05481546139 4.0276489 -7354.3545
+59277.05481550889 4.0275702 -7354.3545
+59278.05481555639 4.0273733 -7353.9609
+59279.05481560389 4.027216 -7354.3545
+59280.05481565138 4.027216 -7353.5669
+59281.05481569888 4.027019 -7354.1577
+59282.05481574638 4.0270586 -7352.9771
+59283.05481579388 4.0268221 -7352.583
+59284.05481584137 4.0267434 -7354.1577
+59285.05481588887 4.0266647 -7354.1577
+59286.05481593637 4.0264287 -7353.9609
+59287.05481598387 4.0263495 -7353.7646
+59288.05481603136 4.0261922 -7353.5669
+59289.05481607886 4.0261135 -7353.7646
+59290.05481612636 4.0259562 -7353.7646
+59291.05481617386 4.0259562 -7353.7646
+59292.05481622135 4.0257196 -7353.5669
+59293.05481626885 4.025641 -7353.5669
+59294.05481631635 4.0255623 -7353.3706
+59295.05481636385 4.0254836 -7354.1577
+59296.05481641134 4.0253263 -7352.9771
+59297.05481645884 4.0251689 -7354.1577
+59298.05481650634 4.0250897 -7354.7485
+59299.05481655383 4.0250897 -7353.5669
+59300.05481660133 4.0248537 -7353.7646
+59301.05481664883 4.024775 -7354.3545
+59302.05481669633 4.0246568 -7353.7646
+59303.05481674382 4.0246177 -7354.3545
+59304.05481679132 4.0244994 -7353.5669
+59305.05481683882 4.0244598 -7353.1738
+59306.05481688632 4.0243421 -7354.1577
+59307.05481693381 4.0241842 -7354.1577
+59308.05481698131 4.0241451 -7353.5669
+59309.05481702881 4.0240664 -7353.1738
+59310.05481707631 4.0238299 -7353.5669
+59311.0548171238 4.0238695 -7354.7485
+59312.0548171713 4.0236726 -7353.7646
+59313.0548172188 4.0235543 -7353.5669
+59314.0548172663 4.0235939 -7354.1577
+59315.05481731379 4.0233183 -7353.5669
+59316.05481736129 4.0232787 -7354.3545
+59317.05481740879 4.0232396 -7353.7646
+59318.05481745629 4.0230036 -7353.1738
+59319.05481750378 4.0230036 -7354.1577
+59320.05481755128 4.0228457 -7353.9609
+59321.05481759878 4.0226884 -7354.1577
+59322.05481764628 4.0225701 -7354.1577
+59323.05481769377 4.0224524 -7353.5669
+59324.05481774127 4.0224128 -7353.9609
+59325.05481778877 4.0222945 -7354.1577
+59326.05481783627 4.0221372 -7353.3706
+59327.05481788376 4.0220585 -7354.1577
+59328.05481793126 4.0219798 -7353.1738
+59329.05481797876 4.0218225 -7353.3706
+59330.05481802626 4.0217042 -7353.5669
+59331.05481807375 4.0217433 -7353.3706
+59332.05481812125 4.0216646 -7353.9609
+59333.05481816875 4.0215073 -7353.7646
+59334.05481821625 4.0214286 -7353.3706
+59335.05481826374 4.0212317 -7353.7646
+59336.05481831124 4.0210347 -7354.1577
+59337.05481835874 4.0211134 -7353.5669
+59338.05481840624 4.0209169 -7354.5513
+59339.05481845373 4.0208774 -7353.7646
+59340.05481850123 4.0207591 -7353.7646
+59341.05481854873 4.02072 -7353.3706
+59342.05481859623 4.0206017 -7353.7646
+59343.05481864372 4.0205626 -7353.5669
+59344.05481869122 4.020287 -7353.7646
+59345.05481873872 4.020287 -7353.9609
+59346.05481878622 4.0203261 -7353.5669
+59347.05481883371 4.0200114 -7353.5669
+59348.05481888121 4.0200114 -7354.5513
+59349.05481892871 4.0199327 -7354.5513
+59350.0548189762 4.0197358 -7353.3706
+59351.0548190237 4.0196962 -7354.3545
+59352.0548190712 4.0195389 -7353.9609
+59353.0548191187 4.0194602 -7354.3545
+59354.05481916619 4.0193815 -7353.7646
+59355.05481921369 4.0193419 -7353.7646
+59356.05481926119 4.0191846 -7354.3545
+59357.05481930869 4.019145 -7353.3706
+59358.05481935618 4.0191059 -7353.3706
+59359.05481940368 4.0189481 -7353.7646
+59360.05481945118 4.0187907 -7354.1577
+59361.05481949868 4.0189481 -7353.9609
+59362.05481954617 4.018712 -7353.1738
+59363.05481959367 4.0186334 -7353.5669
+59364.05481964117 4.0185151 -7354.3545
+59365.05481968867 4.0184364 -7353.1738
+59366.05481973616 4.0184364 -7353.9609
+59367.05481978366 4.0182004 -7354.5513
+59368.05481983116 4.0181217 -7354.3545
+59369.05481987866 4.0180821 -7353.5669
+59370.05481992615 4.0180426 -7353.9609
+59371.05481997365 4.0178852 -7353.3706
+59372.05482002115 4.0177674 -7353.7646
+59373.05482006865 4.0177279 -7353.5669
+59374.05482011614 4.0176492 -7353.1738
+59375.05482016364 4.0175705 -7354.1577
+59376.05482021114 4.0175309 -7353.7646
+59377.05482025864 4.0172553 -7354.3545
+59378.05482030613 4.0172553 -7353.5669
+59379.05482035363 4.0170979 -7353.7646
+59380.05482040113 4.0170193 -7352.583
+59381.05482044863 4.0169797 -7354.1577
+59382.05482049612 4.0168619 -7354.3545
+59383.05482054362 4.0168223 -7353.7646
+59384.05482059112 4.016665 -7353.9609
+59385.05482063862 4.0165071 -7354.1577
+59386.05482068611 4.0166254 -7353.9609
+59387.05482073361 4.0163894 -7353.9609
+59388.05482078111 4.0163498 -7353.5669
+59389.05482082861 4.0162711 -7354.1577
+59390.0548208761 4.0161529 -7353.9609
+59391.0548209236 4.0159564 -7353.1738
+59392.0548209711 4.0159564 -7353.3706
+59393.0548210186 4.0159168 -7353.7646
+59394.05482106609 4.0158381 -7353.7646
+59395.05482111359 4.0157199 -7354.1577
+59396.05482116109 4.0156412 -7354.3545
+59397.05482120859 4.0156021 -7353.7646
+59398.05482125608 4.015523 -7353.9609
+59399.05482130358 4.0154052 -7353.9609
+59400.05482135108 4.0153265 -7353.5669
+59401.05482139857 4.0152082 -7353.9609
+59402.05482144607 4.0151687 -7354.3545
+59403.05482149357 4.0151296 -7353.7646
+59404.05482154107 4.0150113 -7353.9609
+59405.05482158856 4.0149717 -7354.7485
+59406.05482163606 4.0147753 -7353.3706
+59407.05482168356 4.0148931 -7353.9609
+59408.05482173106 4.014657 -7353.3706
+59409.05482177855 4.0146174 -7354.1577
+59410.05482182605 4.0145783 -7353.5669
+59411.05482187355 4.0145388 -7354.1577
+59412.05482192105 4.014421 -7354.3545
+59413.05482196854 4.0143027 -7354.1577
+59414.05482201604 4.0141845 -7353.3706
+59415.05482206354 4.0141454 -7354.1577
+59416.05482211104 4.0140667 -7354.7485
+59417.05482215853 4.0140271 -7353.3706
+59418.05482220603 4.0138698 -7353.9609
+59419.05482225353 4.0138698 -7354.1577
+59420.05482230103 4.0137515 -7353.9609
+59421.05482234852 4.0135942 -7353.7646
+59422.05482239602 4.0135942 -7352.1895
+59423.05482244352 4.0134759 -7353.1738
+59424.05482249102 4.0134368 -7353.5669
+59425.05482253851 4.0133972 -7353.3706
+59426.05482258601 4.0133576 -7354.1577
+59427.05482263351 4.0132003 -7353.3706
+59428.05482268101 4.0130429 -7353.7646
+59429.0548227285 4.0129642 -7354.5513
+59430.054822776 4.0130033 -7353.9609
+59431.0548228235 4.0129247 -7354.1577
+59432.054822871 4.0128856 -7353.7646
+59433.05482291849 4.0128064 -7353.9609
+59434.05482296599 4.0126491 -7354.3545
+59435.05482301349 4.0126491 -7354.3545
+59436.05482306099 4.0126491 -7354.3545
+59437.05482310848 4.0125313 -7353.1738
+59438.05482315598 4.0124521 -7354.3545
+59439.05482320348 4.0123734 -7353.7646
+59440.05482325098 4.0122948 -7352.583
+59441.05482329847 4.0122948 -7354.1577
+59442.05482334597 4.0122557 -7353.3706
+59443.05482339347 4.0121765 -7353.3706
+59444.05482344097 4.0121765 -7353.5669
+59445.05482348846 4.0120978 -7353.5669
+59446.05482353596 4.0119405 -7353.7646
+59447.05482358346 4.0118618 -7353.7646
+59448.05482363096 4.0117831 -7353.1738
+59449.05482367845 4.0118222 -7353.5669
+59450.05482372595 4.0117044 -7353.3706
+59451.05482377345 4.0116649 -7353.9609
+59452.05482382094 4.0115862 -7353.9609
+59453.05482386844 4.0114679 -7353.7646
+59454.05482391594 4.0113106 -7353.7646
+59455.05482396344 4.0113106 -7352.7803
+59456.05482401093 4.011271 -7353.9609
+59457.05482405843 4.0113106 -7354.5513
+59458.05482410593 4.0112319 -7353.7646
+59459.05482415343 4.011035 -7354.1577
+59460.05482420092 4.0109563 -7354.3545
+59461.05482424842 4.0109167 -7353.3706
+59462.05482429592 4.0107989 -7353.7646
+59463.05482434342 4.0107594 -7354.1577
+59464.05482439091 4.0107203 -7353.9609
+59465.05482443841 4.0106411 -7354.1577
+59466.05482448591 4.0106411 -7353.9609
+59467.05482453341 4.0105233 -7353.9609
+59468.0548245809 4.0103264 -7353.7646
+59469.0548246284 4.0102477 -7353.5669
+59470.0548246759 4.010169 -7352.9771
+59471.0548247234 4.0100904 -7353.5669
+59472.05482477089 4.0101295 -7354.1577
+59473.05482481839 4.0100508 -7354.1577
+59474.05482486589 4.0099325 -7353.1738
+59475.05482491339 4.0098538 -7353.3706
+59476.05482496088 4.0098934 -7353.3706
+59477.05482500838 4.0097356 -7353.9609
+59478.05482505588 4.0097356 -7354.1577
+59479.05482510338 4.0096178 -7354.9453
+59480.05482515087 4.0096965 -7353.9609
+59481.05482519837 4.0094995 -7353.1738
+59482.05482524587 4.0094604 -7353.3706
+59483.05482529337 4.0094209 -7353.9609
+59484.05482534086 4.0093813 -7353.3706
+59485.05482538836 4.0093026 -7354.1577
+59486.05482543586 4.0091848 -7353.5669
+59487.05482548336 4.0091848 -7354.1577
+59488.05482553085 4.0090666 -7354.3545
+59489.05482557835 4.0089879 -7353.9609
+59490.05482562585 4.0089092 -7353.3706
+59491.05482567335 4.0089092 -7353.5669
+59492.05482572084 4.0088305 -7353.5669
+59493.05482576834 4.0088305 -7353.1738
+59494.05482581584 4.0086336 -7353.3706
+59495.05482586334 4.0087123 -7353.1738
+59496.05482591083 4.008594 -7353.9609
+59497.05482595833 4.0084367 -7353.3706
+59498.05482600583 4.0084367 -7354.1577
+59499.05482605333 4.008358 -7353.7646
+59500.05482610082 4.008358 -7353.5669
+59501.05482614832 4.0082397 -7354.1577
+59502.05482619582 4.0081611 -7353.7646
+59503.05482624331 4.0081215 -7354.7485
+59504.05482629081 4.0080824 -7353.5669
+59505.05482633831 4.0080428 -7353.9609
+59506.05482638581 4.0079641 -7352.7803
+59507.0548264333 4.007925 -7353.7646
+59508.0548264808 4.0078068 -7353.9609
+59509.0548265283 4.0077672 -7353.3706
+59510.0548265758 4.0076494 -7354.5513
+59511.05482662329 4.0075312 -7352.9771
+59512.05482667079 4.0075312 -7353.7646
+59513.05482671829 4.0074525 -7353.9609
+59514.05482676579 4.0074129 -7354.3545
+59515.05482681328 4.0073738 -7354.3545
+59516.05482686078 4.0073738 -7353.3706
+59517.05482690828 4.0071769 -7353.9609
+59518.05482695578 4.0070982 -7354.3545
+59519.05482700327 4.0070586 -7353.7646
+59520.05482705077 4.0069799 -7354.1577
+59521.05482709827 4.0069799 -7353.9609
+59522.05482714577 4.0069013 -7353.7646
+59523.05482719326 4.0066652 -7353.7646
+59524.05482724076 4.0067043 -7353.3706
+59525.05482728826 4.0067439 -7354.1577
+59526.05482733576 4.006547 -7354.3545
+59527.05482738325 4.0064683 -7353.7646
+59528.05482743075 4.0063896 -7354.5513
+59529.05482747825 4.0063896 -7353.7646
+59530.05482752575 4.0064287 -7353.7646
+59531.05482757324 4.0062318 -7353.7646
+59532.05482762074 4.0061531 -7353.5669
+59533.05482766824 4.0062318 -7353.3706
+59534.05482771574 4.0059958 -7353.5669
+59535.05482776323 4.0060744 -7353.5669
+59536.05482781073 4.0059562 -7353.7646
+59537.05482785823 4.0058775 -7354.3545
+59538.05482790573 4.0058775 -7353.9609
+59539.05482795322 4.0056806 -7353.1738
+59540.05482800072 4.0056415 -7354.5513
+59541.05482804822 4.0056415 -7353.7646
+59542.05482809572 4.0054841 -7354.1577
+59543.05482814321 4.0054841 -7353.9609
+59544.05482819071 4.0054445 -7353.7646
+59545.05482823821 4.0054049 -7354.5513
+59546.05482828571 4.0052476 -7354.1577
+59547.0548283332 4.0051689 -7353.9609
+59548.0548283807 4.0051689 -7353.3706
+59549.0548284282 4.0050902 -7354.1577
+59550.0548284757 4.0049329 -7353.3706
+59551.05482852319 4.0048933 -7353.5669
+59552.05482857069 4.0048542 -7354.1577
+59553.05482861819 4.0048146 -7354.3545
+59554.05482866568 4.004775 -7354.3545
+59555.05482871318 4.0046964 -7353.7646
+59556.05482876068 4.0046177 -7353.7646
+59557.05482880818 4.0046177 -7353.7646
+59558.05482885567 4.004539 -7352.9771
+59559.05482890317 4.0044999 -7353.9609
+59560.05482895067 4.0043817 -7354.1577
+59561.05482899817 4.0042243 -7353.3706
+59562.05482904566 4.0041451 -7353.5669
+59563.05482909316 4.0042243 -7353.5669
+59564.05482914066 4.0041847 -7353.5669
+59565.05482918816 4.0041451 -7353.5669
+59566.05482923565 4.0040274 -7353.3706
+59567.05482928315 4.0039487 -7353.9609
+59568.05482933065 4.0039091 -7354.1577
+59569.05482937815 4.0037909 -7353.1738
+59570.05482942564 4.0038304 -7354.3545
+59571.05482947314 4.0037122 -7353.7646
+59572.05482952064 4.0035548 -7353.1738
+59573.05482956814 4.0035152 -7353.9609
+59574.05482961563 4.0036335 -7353.1738
+59575.05482966313 4.0034366 -7353.5669
+59576.05482971063 4.0033975 -7353.1738
+59577.05482975813 4.0032792 -7353.5669
+59578.05482980562 4.0032792 -7354.1577
+59579.05482985312 4.0032005 -7353.5669
+59580.05482990062 4.0030823 -7353.9609
+59581.05482994812 4.0031219 -7353.7646
+59582.05482999561 4.0029645 -7353.7646
+59583.05483004311 4.0029249 -7354.1577
+59584.05483009061 4.0028853 -7353.9609
+59585.05483013811 4.0027676 -7353.1738
+59586.0548301856 4.0028067 -7352.9771
+59587.0548302331 4.0026097 -7353.5669
+59588.0548302806 4.0026493 -7353.9609
+59589.0548303281 4.0026097 -7353.9609
+59590.05483037559 4.002492 -7353.9609
+59591.05483042309 4.0025311 -7354.1577
+59592.05483047059 4.0024133 -7353.9609
+59593.05483051809 4.002492 -7353.3706
+59594.05483056558 4.0022163 -7353.9609
+59595.05483061308 4.0022163 -7354.1577
+59596.05483066058 4.0022163 -7352.9771
+59597.05483070808 4.002059 -7353.1738
+59598.05483075557 4.0020194 -7353.3706
+59599.05483080307 4.0019407 -7354.5513
+59600.05483085057 4.0019407 -7353.9609
+59601.05483089807 4.001862 -7353.9609
+59602.05483094556 4.0018225 -7353.9609
+59603.05483099306 4.0017438 -7353.1738
+59604.05483104056 4.0016651 -7352.9771
+59605.05483108805 4.0015078 -7354.5513
+59606.05483113555 4.0015864 -7353.9609
+59607.05483118305 4.0014291 -7353.7646
+59608.05483123055 4.0014682 -7352.9771
+59609.05483127804 4.0013499 -7354.3545
+59610.05483132554 4.0012712 -7353.9609
+59611.05483137304 4.0012712 -7353.5669
+59612.05483142054 4.0012321 -7353.9609
+59613.05483146803 4.0011926 -7353.3706
+59614.05483151553 4.0009956 -7353.7646
+59615.05483156303 4.0009565 -7353.5669
+59616.05483161053 4.0010743 -7353.9609
+59617.05483165802 4.0008383 -7353.9609
+59618.05483170552 4.0009565 -7353.5669
+59619.05483175302 4.0007992 -7353.3706
+59620.05483180052 4.0007992 -7353.5669
+59621.05483184801 4.0007596 -7353.3706
+59622.05483189551 4.0006809 -7354.1577
+59623.05483194301 4.0006809 -7353.3706
+59624.05483199051 4.000484 -7353.5669
+59625.054832038 4.000484 -7353.5669
+59626.0548320855 4.000484 -7354.3545
+59627.054832133 4.0003657 -7354.1577
+59628.0548321805 4.0002084 -7353.3706
+59629.05483222799 4.0002871 -7354.1577
+59630.05483227549 4.000248 -7354.1577
+59631.05483232299 4.0001297 -7353.5669
+59632.05483237049 4.0001297 -7353.9609
+59633.05483241798 3.999933 -7353.3706
+59634.05483246548 3.999933 -7354.1577
+59635.05483251298 3.9998147 -7353.5669
+59636.05483256048 3.9998147 -7353.7646
+59637.05483260797 3.9998147 -7354.7485
+59638.05483265547 3.9997361 -7353.7646
+59639.05483270297 3.9996574 -7354.1577
+59640.05483275047 3.9996574 -7353.9609
+59641.05483279796 3.9994998 -7352.9771
+59642.05483284546 3.9995391 -7353.7646
+59643.05483289296 3.9995787 -7353.3706
+59644.05483294046 3.9995391 -7353.9609
+59645.05483298795 3.9994998 -7354.1577
+59646.05483303545 3.9994605 -7353.3706
+59647.05483308295 3.9993424 -7353.9609
+59648.05483313045 3.9993031 -7353.7646
+59649.05483317794 3.9992638 -7354.1577
+59650.05483322544 3.9991455 -7354.1577
+59651.05483327294 3.9991062 -7354.3545
+59652.05483332044 3.9989882 -7353.9609
+59653.05483336793 3.9990275 -7353.3706
+59654.05483341543 3.9990275 -7353.7646
+59655.05483346293 3.9988699 -7354.5513
+59656.05483351042 3.9988699 -7353.5669
+59657.05483355792 3.9987912 -7353.5669
+59658.05483360542 3.9987912 -7353.1738
+59659.05483365292 3.9987125 -7353.9609
+59660.05483370041 3.9985943 -7353.7646
+59661.05483374791 3.9985156 -7352.7803
+59662.05483379541 3.9983582 -7354.5513
+59663.05483384291 3.9984369 -7353.9609
+59664.0548338904 3.9983582 -7353.7646
+59665.0548339379 3.9984763 -7354.7485
+59666.0548339854 3.9983582 -7353.7646
+59667.0548340329 3.9982793 -7353.3706
+59668.05483408039 3.998122 -7353.1738
+59669.05483412789 3.9980826 -7354.1577
+59670.05483417539 3.9980433 -7353.9609
+59671.05483422289 3.998122 -7352.9771
+59672.05483427038 3.9979644 -7353.9609
+59673.05483431788 3.9979644 -7353.3706
+59674.05483436538 3.9979644 -7353.3706
+59675.05483441288 3.9978857 -7353.7646
+59676.05483446037 3.9976494 -7353.7646
+59677.05483450787 3.997807 -7353.5669
+59678.05483455537 3.9976494 -7354.1577
+59679.05483460287 3.9975708 -7354.1577
+59680.05483465036 3.9976101 -7352.9771
+59681.05483469786 3.9974134 -7354.5513
+59682.05483474536 3.9974527 -7353.7646
+59683.05483479286 3.9972558 -7353.7646
+59684.05483484035 3.9973738 -7354.7485
+59685.05483488785 3.9973345 -7354.1577
+59686.05483493535 3.9972951 -7353.7646
+59687.05483498285 3.9971378 -7354.5513
+59688.05483503034 3.9971378 -7353.7646
+59689.05483507784 3.9969802 -7353.7646
+59690.05483512534 3.9970195 -7353.9609
+59691.05483517284 3.9969409 -7353.7646
+59692.05483522033 3.9968622 -7353.5669
+59693.05483526783 3.9968622 -7353.9609
+59694.05483531533 3.9967439 -7352.9771
+59695.05483536283 3.9967833 -7354.1577
+59696.05483541032 3.9966259 -7353.7646
+59697.05483545782 3.9966259 -7354.3545
+59698.05483550532 3.9965079 -7354.1577
+59699.05483555282 3.996429 -7353.5669
+59700.05483560031 3.996429 -7353.7646
+59701.05483564781 3.9963109 -7353.1738
+59702.05483569531 3.9962716 -7353.3706
+59703.05483574281 3.996114 -7353.1738
+59704.0548357903 3.9960353 -7353.3706
+59705.0548358378 3.996114 -7353.3706
+59706.0548358853 3.9960353 -7353.5669
+59707.0548359328 3.9959173 -7353.9609
+59708.05483598029 3.995996 -7353.5669
+59709.05483602779 3.995878 -7354.1577
+59710.05483607529 3.9957204 -7353.5669
+59711.05483612278 3.9957991 -7354.1577
+59712.05483617028 3.995681 -7353.9609
+59713.05483621778 3.9956417 -7353.3706
+59714.05483626528 3.995563 -7353.9609
+59715.05483631277 3.9955235 -7353.9609
+59716.05483636027 3.9954448 -7353.7646
+59717.05483640777 3.9954054 -7353.3706
+59718.05483645527 3.9953661 -7353.9609
+59719.05483650276 3.9952874 -7354.3545
+59720.05483655026 3.9952874 -7353.5669
+59721.05483659776 3.9952478 -7354.3545
+59722.05483664526 3.9951692 -7353.7646
+59723.05483669275 3.9950511 -7353.7646
+59724.05483674025 3.9949725 -7354.1577
+59725.05483678775 3.9948936 -7353.5669
+59726.05483683525 3.9949329 -7353.7646
+59727.05483688274 3.9948542 -7353.3706
+59728.05483693024 3.9947755 -7353.9609
+59729.05483697774 3.9946575 -7353.9609
+59730.05483702524 3.9946575 -7353.3706
+59731.05483707273 3.9946179 -7353.9609
+59732.05483712023 3.9945393 -7354.1577
+59733.05483716773 3.9944999 -7353.3706
+59734.05483721523 3.9945393 -7352.9771
+59735.05483726272 3.9944212 -7353.7646
+59736.05483731022 3.9943819 -7354.5513
+59737.05483735772 3.9943819 -7353.5669
+59738.05483740522 3.9942636 -7353.7646
+59739.05483745271 3.9941456 -7353.5669
+59740.05483750021 3.9942636 -7353.9609
+59741.05483754771 3.9941063 -7353.5669
+59742.05483759521 3.9939487 -7354.9453
+59743.0548376427 3.9939487 -7353.3706
+59744.0548376902 3.9939094 -7354.3545
+59745.0548377377 3.9939094 -7354.1577
+59746.0548377852 3.99387 -7353.5669
+59747.05483783269 3.993752 -7353.5669
+59748.05483788019 3.993752 -7353.5669
+59749.05483792769 3.9936337 -7353.3706
+59750.05483797519 3.9936731 -7353.9609
+59751.05483802268 3.9935551 -7353.3706
+59752.05483807018 3.9934764 -7353.5669
+59753.05483811768 3.9934764 -7354.5513
+59754.05483816518 3.9933581 -7353.3706
+59755.05483821267 3.9934371 -7353.9609
+59756.05483826017 3.9932795 -7353.7646
+59757.05483830767 3.9933188 -7353.3706
+59758.05483835517 3.9932008 -7352.9771
+59759.05483840266 3.9931614 -7353.9609
+59760.05483845016 3.9931614 -7352.9771
+59761.05483849766 3.9930825 -7353.9609
+59762.05483854515 3.9930432 -7353.9609
+59763.05483859265 3.9928858 -7353.1738
+59764.05483864015 3.9929252 -7353.5669
+59765.05483868765 3.9929645 -7353.5669
+59766.05483873514 3.9928071 -7353.7646
+59767.05483878264 3.9927676 -7354.9453
+59768.05483883014 3.9926889 -7354.1577
+59769.05483887764 3.9927282 -7353.9609
+59770.05483892513 3.9925709 -7353.3706
+59771.05483897263 3.9925709 -7353.1738
+59772.05483902013 3.9925315 -7352.7803
+59773.05483906763 3.9924922 -7353.3706
+59774.05483911512 3.9923739 -7353.1738
+59775.05483916262 3.9922953 -7353.1738
+59776.05483921012 3.9922166 -7352.7803
+59777.05483925762 3.9922166 -7353.1738
+59778.05483930511 3.9922166 -7354.3545
+59779.05483935261 3.9920983 -7354.3545
+59780.05483940011 3.9919803 -7353.7646
+59781.05483944761 3.9918623 -7353.7646
+59782.0548394951 3.991941 -7353.9609
+59783.0548395426 3.9919016 -7354.1577
+59784.0548395901 3.9918623 -7353.7646
+59785.0548396376 3.991626 -7353.3706
+59786.05483968509 3.9917834 -7353.9609
+59787.05483973259 3.991744 -7353.5669
+59788.05483978009 3.9915471 -7353.5669
+59789.05483982759 3.9915867 -7354.3545
+59790.05483987508 3.9913898 -7354.1577
+59791.05483992258 3.9913898 -7354.3545
+59792.05483997008 3.9913504 -7353.5669
+59793.05484001758 3.9913111 -7353.5669
+59794.05484006507 3.9913898 -7353.9609
+59795.05484011257 3.9913504 -7353.3706
+59796.05484016007 3.9912717 -7352.3862
+59797.05484020757 3.9911928 -7353.5669
+59798.05484025506 3.9911928 -7354.1577
+59799.05484030256 3.9911141 -7354.3545
+59800.05484035006 3.9910748 -7353.1738
+59801.05484039756 3.9910355 -7352.9771
+59802.05484044505 3.9909961 -7354.3545
+59803.05484049255 3.9909568 -7353.7646
+59804.05484054005 3.9909172 -7353.3706
+59805.05484058755 3.9908779 -7353.9609
+59806.05484063504 3.9906812 -7354.3545
+59807.05484068254 3.9906812 -7353.5669
+59808.05484073004 3.9906812 -7354.1577
+59809.05484077754 3.9907205 -7352.7803
+59810.05484082503 3.9905629 -7353.9609
+59811.05484087253 3.9904842 -7354.3545
+59812.05484092003 3.9904449 -7353.7646
+59813.05484096752 3.9903662 -7353.9609
+59814.05484101502 3.9903269 -7353.9609
+59815.05484106252 3.9903269 -7353.5669
+59816.05484111002 3.990248 -7353.5669
+59817.05484115751 3.9901299 -7353.3706
+59818.05484120501 3.9900906 -7353.5669
+59819.05484125251 3.9900117 -7353.7646
+59820.05484130001 3.9898543 -7353.1738
+59821.0548413475 3.989933 -7353.3706
+59822.054841395 3.9898937 -7353.9609
+59823.0548414425 3.9898543 -7353.7646
+59824.05484149 3.9898543 -7353.9609
+59825.05484153749 3.9897363 -7353.7646
+59826.05484158499 3.9897363 -7353.9609
+59827.05484163249 3.9896967 -7353.7646
+59828.05484167999 3.9895787 -7354.5513
+59829.05484172748 3.9895394 -7353.9609
+59830.05484177498 3.9895394 -7353.9609
+59831.05484182248 3.9894214 -7353.9609
+59832.05484186998 3.9893425 -7354.1577
+59833.05484191747 3.9892638 -7353.9609
+59834.05484196497 3.9892638 -7353.5669
+59835.05484201247 3.9891064 -7353.3706
+59836.05484205997 3.9892244 -7352.7803
+59837.05484210746 3.9891064 -7353.5669
+59838.05484215496 3.9890275 -7353.7646
+59839.05484220246 3.9889882 -7353.9609
+59840.05484224996 3.9889488 -7353.9609
+59841.05484229745 3.9888308 -7353.5669
+59842.05484234495 3.9887915 -7354.3545
+59843.05484239245 3.9887915 -7353.5669
+59844.05484243995 3.9888308 -7354.3545
+59845.05484248744 3.9886339 -7353.9609
+59846.05484253494 3.9886732 -7353.9609
+59847.05484258244 3.9885945 -7354.1577
+59848.05484262994 3.9885945 -7353.5669
+59849.05484267743 3.9885159 -7353.7646
+59850.05484272493 3.9883976 -7354.7485
+59851.05484277243 3.9883189 -7353.7646
+59852.05484281993 3.9882796 -7353.7646
+59853.05484286742 3.9883189 -7353.9609
+59854.05484291492 3.9882402 -7353.9609
+59855.05484296242 3.9882402 -7353.7646
+59856.05484300992 3.9882009 -7353.1738
+59857.05484305741 3.988122 -7353.9609
+59858.05484310491 3.988004 -7353.1738
+59859.05484315241 3.9880433 -7353.1738
+59860.05484319991 3.9879646 -7353.7646
+59861.0548432474 3.987886 -7353.7646
+59862.0548432949 3.987886 -7354.1577
+59863.0548433424 3.9879646 -7354.1577
+59864.05484338989 3.987689 -7353.1738
+59865.05484343739 3.987689 -7354.1577
+59866.05484348489 3.9877677 -7353.3706
+59867.05484353239 3.9877284 -7353.9609
+59868.05484357988 3.9876497 -7353.5669
+59869.05484362738 3.987571 -7353.7646
+59870.05484367488 3.9874921 -7354.3545
+59871.05484372238 3.9874134 -7353.3706
+59872.05484376987 3.9874527 -7353.1738
+59873.05484381737 3.9874134 -7352.7803
+59874.05484386487 3.9872954 -7354.3545
+59875.05484391237 3.9872561 -7353.5669
+59876.05484395986 3.9872954 -7353.3706
+59877.05484400736 3.9873347 -7353.3706
+59878.05484405486 3.9871771 -7354.1577
+59879.05484410236 3.9870591 -7353.5669
+59880.05484414985 3.9872165 -7353.7646
+59881.05484419735 3.9871378 -7354.1577
+59882.05484424485 3.9870198 -7354.1577
+59883.05484429235 3.9870591 -7353.9609
+59884.05484433984 3.9867835 -7353.5669
+59885.05484438734 3.9868228 -7353.5669
+59886.05484443484 3.9867835 -7353.9609
+59887.05484448234 3.9867835 -7353.7646
+59888.05484452983 3.9867835 -7353.3706
+59889.05484457733 3.9867442 -7353.9609
+59890.05484462483 3.9865866 -7353.7646
+59891.05484467233 3.9866655 -7353.5669
+59892.05484471982 3.9865866 -7354.1577
+59893.05484476732 3.9865472 -7352.9771
+59894.05484481482 3.9865079 -7353.3706
+59895.05484486232 3.9864292 -7353.7646
+59896.05484490981 3.9864292 -7353.9609
+59897.05484495731 3.9864292 -7354.1577
+59898.05484500481 3.9862716 -7353.1738
+59899.05484505231 3.9862323 -7353.3706
+59900.0548450998 3.9861929 -7353.9609
+59901.0548451473 3.9860356 -7353.7646
+59902.0548451948 3.9860356 -7353.3706
+59903.0548452423 3.9860356 -7353.5669
+59904.05484528979 3.9859567 -7353.1738
+59905.05484533729 3.9859173 -7353.3706
+59906.05484538479 3.9857993 -7353.1738
+59907.05484543229 3.985878 -7353.3706
+59908.05484547978 3.9857206 -7353.7646
+59909.05484552728 3.9856811 -7354.1577
+59910.05484557478 3.9856811 -7354.5513
+59911.05484562228 3.9855237 -7353.3706
+59912.05484566977 3.985563 -7354.7485
+59913.05484571727 3.985445 -7353.9609
+59914.05484576477 3.985445 -7353.1738
+59915.05484581226 3.9853661 -7354.3545
+59916.05484585976 3.9852481 -7352.9771
+59917.05484590726 3.9851301 -7353.7646
+59918.05484595476 3.9852481 -7353.9609
+59919.05484600225 3.9852087 -7353.5669
+59920.05484604975 3.9850512 -7353.7646
+59921.05484609725 3.9849725 -7353.9609
+59922.05484614475 3.9849725 -7354.1577
+59923.05484619224 3.9848938 -7353.9609
+59924.05484623974 3.9847362 -7353.7646
+59925.05484628724 3.9847758 -7354.3545
+59926.05484633474 3.9847758 -7353.7646
+59927.05484638223 3.9846575 -7353.7646
+59928.05484642973 3.9845788 -7353.9609
+59929.05484647723 3.9845395 -7353.3706
+59930.05484652473 3.9844213 -7353.3706
+59931.05484657222 3.9844213 -7354.1577
+59932.05484661972 3.9844606 -7354.1577
+59933.05484666722 3.9843426 -7354.1577
+59934.05484671472 3.9843032 -7353.5669
+59935.05484676221 3.9842639 -7354.3545
+59936.05484680971 3.9841456 -7354.5513
+59937.05484685721 3.9841456 -7354.1577
+59938.05484690471 3.9841063 -7354.5513
+59939.0548469522 3.9841456 -7353.9609
+59940.0548469997 3.9839883 -7353.5669
+59941.0548470472 3.9839489 -7353.5669
+59942.0548470947 3.9839489 -7353.1738
+59943.05484714219 3.9838307 -7354.3545
+59944.05484718969 3.983752 -7353.5669
+59945.05484723719 3.9837127 -7353.3706
+59946.05484728469 3.9836733 -7353.7646
+59947.05484733218 3.9835947 -7353.9609
+59948.05484737968 3.9835553 -7353.7646
+59949.05484742718 3.9835157 -7353.3706
+59950.05484747468 3.9833584 -7353.1738
+59951.05484752217 3.9833977 -7353.7646
+59952.05484756967 3.9833584 -7353.3706
+59953.05484761717 3.983319 -7352.9771
+59954.05484766467 3.9832404 -7353.5669
+59955.05484771216 3.9831221 -7353.1738
+59956.05484775966 3.9830828 -7353.3706
+59957.05484780716 3.9830041 -7354.5513
+59958.05484785466 3.9830828 -7354.1577
+59959.05484790215 3.9830828 -7353.9609
+59960.05484794965 3.9829254 -7354.1577
+59961.05484799715 3.9828858 -7353.9609
+59962.05484804465 3.9829648 -7353.1738
+59963.05484809214 3.9828858 -7354.1577
+59964.05484813964 3.9827285 -7354.3545
+59965.05484818714 3.9827285 -7353.7646
+59966.05484823463 3.9826498 -7354.1577
+59967.05484828213 3.9827678 -7353.9609
+59968.05484832963 3.9824922 -7353.9609
+59969.05484837713 3.9825315 -7353.9609
+59970.05484842462 3.9824922 -7353.9609
+59971.05484847212 3.9823742 -7353.1738
+59972.05484851962 3.9824529 -7354.3545
+59973.05484856712 3.9822166 -7353.9609
+59974.05484861461 3.9821773 -7353.3706
+59975.05484866211 3.9822559 -7353.3706
+59976.05484870961 3.9822559 -7354.3545
+59977.05484875711 3.9821773 -7353.5669
+59978.0548488046 3.9820986 -7354.1577
+59979.0548488521 3.9821773 -7354.3545
+59980.0548488996 3.981941 -7352.9771
+59981.0548489471 3.9819016 -7353.3706
+59982.05484899459 3.9818623 -7353.7646
+59983.05484904209 3.9818623 -7352.9771
+59984.05484908959 3.9817836 -7353.9609
+59985.05484913709 3.9817443 -7353.9609
+59986.05484918458 3.981626 -7353.9609
+59987.05484923208 3.981626 -7354.1577
+59988.05484927958 3.9815474 -7353.9609
+59989.05484932708 3.9814293 -7353.5669
+59990.05484937457 3.981508 -7353.7646
+59991.05484942207 3.9814687 -7353.3706
+59992.05484946957 3.98139 -7353.5669
+59993.05484951707 3.9813111 -7353.7646
+59994.05484956456 3.9811537 -7354.3545
+59995.05484961206 3.9811144 -7353.5669
+59996.05484965956 3.981075 -7353.7646
+59997.05484970706 3.9809961 -7353.9609
+59998.05484975455 3.9809568 -7353.7646
+59999.05484980205 3.9808781 -7353.7646
+60000.05484984955 3.9808388 -7353.5669
+60001.05484989705 3.9807994 -7353.7646
+60002.05484994454 3.9807599 -7353.3706
+60003.05484999204 3.9807599 -7353.5669
+60004.05485003954 3.9806025 -7353.5669
+60005.05485008704 3.9806418 -7353.5669
+60006.05485013453 3.9804056 -7353.7646
+60007.05485018203 3.9805632 -7354.5513
+60008.05485022953 3.9805238 -7353.5669
+60009.05485027703 3.9805238 -7353.5669
+60010.05485032452 3.9803662 -7353.5669
+60011.05485037202 3.9802876 -7353.3706
+60012.05485041952 3.9803662 -7354.3545
+60013.05485046702 3.9802089 -7353.5669
+60014.05485051451 3.9801695 -7353.7646
+60015.05485056201 3.9802482 -7353.7646
+60016.05485060951 3.9800119 -7354.3545
+60017.054850657 3.9800906 -7353.1738
+60018.0548507045 3.9799726 -7353.9609
+60019.054850752 3.9798939 -7354.3545
+60020.0548507995 3.9798546 -7354.1577
+60021.05485084699 3.979815 -7353.3706
+60022.05485089449 3.979815 -7353.7646
+60023.05485094199 3.9797757 -7353.7646
+60024.05485098949 3.979579 -7353.9609
+60025.05485103698 3.9795396 -7354.3545
+60026.05485108448 3.9795396 -7353.5669
+60027.05485113198 3.9795001 -7353.7646
+60028.05485117948 3.9794607 -7353.3706
+60029.05485122697 3.9794607 -7354.1577
+60030.05485127447 3.9793427 -7353.1738
+60031.05485132197 3.9792244 -7354.3545
+60032.05485136947 3.979264 -7354.1577
+60033.05485141696 3.979264 -7353.7646
+60034.05485146446 3.9790671 -7353.7646
+60035.05485151196 3.9791458 -7354.5513
+60036.05485155946 3.9791064 -7353.1738
+60037.05485160695 3.9790277 -7353.9609
+60038.05485165445 3.9789884 -7354.1577
+60039.05485170195 3.9787521 -7353.7646
+60040.05485174945 3.9789491 -7354.3545
+60041.05485179694 3.9788308 -7353.7646
+60042.05485184444 3.9788702 -7354.1577
+60043.05485189194 3.9786735 -7353.9609
+60044.05485193944 3.9785945 -7352.7803
+60045.05485198693 3.9786341 -7354.1577
+60046.05485203443 3.9785552 -7353.3706
+60047.05485208193 3.9785159 -7353.1738
+60048.05485212943 3.9783585 -7353.9609
+60049.05485217692 3.9784765 -7353.5669
+60050.05485222442 3.9783585 -7353.5669
+60051.05485227192 3.9783192 -7353.5669
+60052.05485231942 3.9782009 -7354.5513
+60053.05485236691 3.9782796 -7354.1577
+60054.05485241441 3.9781616 -7353.9609
+60055.05485246191 3.9780042 -7354.1577
+60056.05485250941 3.9780829 -7353.3706
+60057.0548525569 3.9781222 -7353.9609
+60058.0548526044 3.9780436 -7352.9771
+60059.0548526519 3.9779253 -7353.9609
+60060.0548526994 3.9779253 -7353.5669
+60061.05485274689 3.9779253 -7354.1577
+60062.05485279439 3.9777679 -7353.7646
+60063.05485284189 3.9778466 -7353.5669
+60064.05485288939 3.9777286 -7353.5669
+60065.05485293688 3.9777286 -7353.5669
+60066.05485298438 3.9776893 -7354.3545
+60067.05485303188 3.977571 -7353.1738
+60068.05485307937 3.9774923 -7353.3706
+60069.05485312687 3.977571 -7353.5669
+60070.05485317437 3.9774137 -7353.7646
+60071.05485322187 3.9774137 -7353.7646
+60072.05485326936 3.9773741 -7354.3545
+60073.05485331686 3.9772561 -7353.3706
+60074.05485336436 3.9773347 -7354.5513
+60075.05485341186 3.9772954 -7354.1577
+60076.05485345935 3.9772561 -7352.9771
+60077.05485350685 3.9772167 -7353.1738
+60078.05485355435 3.9770987 -7354.1577
+60079.05485360185 3.9769804 -7352.9771
+60080.05485364934 3.9770591 -7354.1577
+60081.05485369684 3.9768624 -7354.5513
+60082.05485374434 3.9769411 -7353.7646
+60083.05485379184 3.9769804 -7353.5669
+60084.05485383933 3.9768624 -7353.3706
+60085.05485388683 3.9767442 -7353.7646
+60086.05485393433 3.9767048 -7354.5513
+60087.05485398183 3.9766655 -7353.3706
+60088.05485402932 3.9766262 -7353.9609
+60089.05485407682 3.9765475 -7354.1577
+60090.05485412432 3.9766262 -7353.9609
+60091.05485417182 3.9764688 -7354.3545
+60092.05485421931 3.9763899 -7353.5669
+60093.05485426681 3.9763505 -7354.1577
+60094.05485431431 3.9763112 -7353.5669
+60095.05485436181 3.9761932 -7354.1577
+60096.0548544093 3.9761932 -7353.1738
+60097.0548544568 3.9761143 -7354.1577
+60098.0548545043 3.9761143 -7353.9609
+60099.0548545518 3.9760356 -7353.1738
+60100.05485459929 3.9759176 -7353.5669
+60101.05485464679 3.9758782 -7354.3545
+60102.05485469429 3.9758389 -7353.1738
+60103.05485474179 3.97576 -7353.9609
+60104.05485478928 3.9757206 -7353.3706
+60105.05485483678 3.9756026 -7353.5669
+60106.05485488428 3.975642 -7353.7646
+60107.05485493178 3.975445 -7353.9609
+60108.05485497927 3.9754844 -7353.9609
+60109.05485502677 3.9753664 -7353.7646
+60110.05485507427 3.975327 -7353.3706
+60111.05485512177 3.9752877 -7353.1738
+60112.05485516926 3.9752483 -7354.3545
+60113.05485521676 3.9752483 -7353.7646
+60114.05485526426 3.9751694 -7354.1577
+60115.05485531176 3.9751694 -7353.9609
+60116.05485535925 3.9750907 -7353.5669
+60117.05485540675 3.9749727 -7353.9609
+60118.05485545425 3.9749334 -7354.1577
+60119.05485550174 3.9748545 -7353.1738
+60120.05485554924 3.9748938 -7353.3706
+60121.05485559674 3.9747758 -7354.1577
+60122.05485564424 3.9746578 -7353.5669
+60123.05485569173 3.9745789 -7354.3545
+60124.05485573923 3.9745789 -7353.3706
+60125.05485578673 3.9744608 -7353.7646
+60126.05485583423 3.9743822 -7352.7803
+60127.05485588172 3.9743822 -7352.9771
+60128.05485592922 3.9743822 -7353.3706
+60129.05485597672 3.9742639 -7354.3545
+60130.05485602422 3.9742639 -7354.3545
+60131.05485607171 3.9741852 -7353.7646
+60132.05485611921 3.9740672 -7354.5513
+60133.05485616671 3.9739885 -7353.5669
+60134.05485621421 3.9739885 -7353.5669
+60135.0548562617 3.9740279 -7353.7646
+60136.0548563092 3.9738703 -7353.7646
+60137.0548563567 3.9738703 -7353.1738
+60138.0548564042 3.9737916 -7353.9609
+60139.05485645169 3.9737523 -7354.1577
+60140.05485649919 3.9737129 -7353.7646
+60141.05485654669 3.9737523 -7353.9609
+60142.05485659419 3.973634 -7354.3545
+60143.05485664168 3.973516 -7353.5669
+60144.05485668918 3.973516 -7353.9609
+60145.05485673668 3.9733584 -7354.1577
+60146.05485678418 3.973516 -7353.9609
+60147.05485683167 3.9733191 -7354.1577
+60148.05485687917 3.9733191 -7354.1577
+60149.05485692667 3.9732797 -7353.5669
+60150.05485697417 3.973201 -7353.5669
+60151.05485702166 3.9730434 -7354.1577
+60152.05485706916 3.9731224 -7353.1738
+60153.05485711666 3.9730041 -7354.3545
+60154.05485716416 3.9728861 -7353.3706
+60155.05485721165 3.9730041 -7354.1577
+60156.05485725915 3.9728861 -7354.1577
+60157.05485730665 3.9728467 -7353.3706
+60158.05485735415 3.9727681 -7353.1738
+60159.05485740164 3.9727681 -7353.5669
+60160.05485744914 3.9727285 -7353.5669
+60161.05485749664 3.9726498 -7353.7646
+60162.05485754414 3.9726105 -7353.9609
+60163.05485759163 3.9726892 -7353.7646
+60164.05485763913 3.9725318 -7353.9609
+60165.05485768663 3.9725318 -7353.9609
+60166.05485773413 3.9724531 -7353.9609
+60167.05485778162 3.9722955 -7353.5669
+60168.05485782912 3.9723349 -7353.3706
+60169.05485787662 3.9722168 -7354.5513
+60170.05485792411 3.9722955 -7353.9609
+60171.05485797161 3.9720986 -7353.1738
+60172.05485801911 3.9722168 -7353.1738
+60173.05485806661 3.9720592 -7353.5669
+60174.0548581141 3.9721382 -7353.3706
+60175.0548581616 3.9719806 -7354.1577
+60176.0548582091 3.9719806 -7352.7803
+60177.0548582566 3.9719412 -7353.5669
+60178.05485830409 3.9718626 -7353.5669
+60179.05485835159 3.9719412 -7353.5669
+60180.05485839909 3.9717836 -7353.1738
+60181.05485844659 3.9717836 -7353.7646
+60182.05485849408 3.9717443 -7354.1577
+60183.05485854158 3.971705 -7353.3706
+60184.05485858908 3.9716263 -7354.1577
+60185.05485863658 3.9715476 -7353.5669
+60186.05485868407 3.971508 -7353.9609
+60187.05485873157 3.97139 -7353.5669
+60188.05485877907 3.9714293 -7353.9609
+60189.05485882657 3.97139 -7353.1738
+60190.05485887406 3.971272 -7354.1577
+60191.05485892156 3.9713507 -7354.1577
+60192.05485896906 3.9712327 -7353.9609
+60193.05485901656 3.9711537 -7353.9609
+60194.05485906405 3.9712327 -7353.9609
+60195.05485911155 3.9711537 -7353.7646
+60196.05485915905 3.9710751 -7353.7646
+60197.05485920655 3.9710357 -7353.7646
+60198.05485925404 3.9708781 -7353.5669
+60199.05485930154 3.9707208 -7353.5669
+60200.05485934904 3.9707994 -7353.7646
+60201.05485939654 3.9707208 -7354.1577
+60202.05485944403 3.9706028 -7353.7646
+60203.05485949153 3.9706028 -7353.7646
+60204.05485953903 3.9705632 -7353.5669
+60205.05485958653 3.9704845 -7353.3706
+60206.05485963402 3.9703271 -7354.5513
+60207.05485968152 3.9704058 -7353.7646
+60208.05485972902 3.9704452 -7353.3706
+60209.05485977652 3.9703665 -7353.3706
+60210.05485982401 3.9702482 -7353.9609
+60211.05485987151 3.9702089 -7353.5669
+60212.05485991901 3.9702482 -7354.3545
+60213.05485996651 3.9701695 -7353.7646
+60214.054860014 3.9699333 -7353.7646
+60215.0548600615 3.9699333 -7353.1738
+60216.054860109 3.9698939 -7353.9609
+60217.0548601565 3.9699333 -7353.9609
+60218.05486020399 3.9698153 -7353.3706
+60219.05486025149 3.9696577 -7353.9609
+60220.05486029899 3.9697366 -7353.5669
+60221.05486034648 3.9696183 -7354.1577
+60222.05486039398 3.9696577 -7353.7646
+60223.05486044148 3.9695003 -7354.1577
+60224.05486048898 3.9693427 -7353.7646
+60225.05486053647 3.9694216 -7353.9609
+60226.05486058397 3.9693427 -7354.5513
+60227.05486063147 3.9693823 -7353.3706
+60228.05486067897 3.969264 -7353.1738
+60229.05486072646 3.9692247 -7353.5669
+60230.05486077396 3.9691854 -7353.9609
+60231.05486082146 3.9691854 -7354.1577
+60232.05486086896 3.9691067 -7353.9609
+60233.05486091645 3.9690673 -7353.9609
+60234.05486096395 3.9690673 -7353.3706
+60235.05486101145 3.9688311 -7354.3545
+60236.05486105895 3.9688704 -7353.9609
+60237.05486110644 3.9687524 -7353.7646
+60238.05486115394 3.9687128 -7353.5669
+60239.05486120144 3.9687128 -7353.7646
+60240.05486124894 3.9685555 -7353.3706
+60241.05486129643 3.9685161 -7353.7646
+60242.05486134393 3.9685161 -7353.5669
+60243.05486139143 3.9684372 -7353.3706
+60244.05486143893 3.9682405 -7353.5669
+60245.05486148642 3.9681618 -7354.1577
+60246.05486153392 3.9682012 -7353.9609
+60247.05486158142 3.9682012 -7354.1577
+60248.05486162892 3.9680042 -7353.7646
+60249.05486167641 3.9680829 -7353.7646
+60250.05486172391 3.9680042 -7353.5669
+60251.05486177141 3.9679255 -7353.9609
+60252.05486181891 3.9676893 -7354.3545
+60253.0548618664 3.967768 -7353.1738
+60254.0548619139 3.9676106 -7353.7646
+60255.0548619614 3.9677286 -7353.5669
+60256.0548620089 3.9675713 -7354.1577
+60257.05486205639 3.9674923 -7353.5669
+60258.05486210389 3.9673743 -7353.3706
+60259.05486215139 3.9674137 -7352.7803
+60260.05486219889 3.967217 -7354.7485
+60261.05486224638 3.9672956 -7353.7646
+60262.05486229388 3.967217 -7354.1577
+60263.05486234138 3.9670987 -7354.7485
+60264.05486238888 3.9670987 -7353.5669
+60265.05486243637 3.96702 -7354.5513
+60266.05486248387 3.96702 -7353.5669
+60267.05486253137 3.9668231 -7354.1577
+60268.05486257887 3.9668624 -7352.9771
+60269.05486262636 3.9667838 -7354.1577
+60270.05486267386 3.9665868 -7353.3706
+60271.05486272136 3.9666264 -7353.9609
+60272.05486276885 3.9665082 -7353.9609
+60273.05486281635 3.9665475 -7354.3545
+60274.05486286385 3.9662719 -7353.9609
+60275.05486291135 3.9664295 -7354.1577
+60276.05486295884 3.9663115 -7353.9609
+60277.05486300634 3.9662325 -7353.7646
+60278.05486305384 3.9661932 -7353.3706
+60279.05486310134 3.9661145 -7353.1738
+60280.05486314883 3.9659965 -7354.3545
+60281.05486319633 3.9659569 -7354.1577
+60282.05486324383 3.9658389 -7354.3545
+60283.05486329133 3.9657209 -7353.3706
+60284.05486333882 3.9657209 -7352.583
+60285.05486338632 3.9656816 -7353.5669
+60286.05486343382 3.9656026 -7354.5513
+60287.05486348132 3.965524 -7353.7646
+60288.05486352881 3.965524 -7354.5513
+60289.05486357631 3.9653666 -7353.3706
+60290.05486362381 3.965327 -7354.7485
+60291.05486367131 3.9652483 -7354.3545
+60292.0548637188 3.9651697 -7353.5669
+60293.0548637663 3.9651697 -7353.9609
+60294.0548638138 3.9650517 -7353.3706
+60295.0548638613 3.9650517 -7353.7646
+60296.05486390879 3.9650121 -7353.3706
+60297.05486395629 3.9649334 -7353.7646
+60298.05486400379 3.9648941 -7353.5669
+60299.05486405129 3.964776 -7354.3545
+60300.05486409878 3.964776 -7353.7646
+60301.05486414628 3.9646184 -7353.7646
+60302.05486419378 3.9646184 -7353.1738
+60303.05486424128 3.9645004 -7354.1577
+60304.05486428877 3.9645398 -7354.1577
+60305.05486433627 3.9643822 -7354.7485
+60306.05486438377 3.9644215 -7354.7485
+60307.05486443127 3.9643035 -7353.3706
+60308.05486447876 3.9643428 -7353.5669
+60309.05486452626 3.9642642 -7354.7485
+60310.05486457376 3.9640279 -7353.5669
+60311.05486462126 3.9641066 -7353.9609
+60312.05486466875 3.9640279 -7354.5513
+60313.05486471625 3.9639885 -7353.9609
+60314.05486476375 3.9639099 -7354.5513
+60315.05486481125 3.9639099 -7354.1577
+60316.05486485874 3.9637523 -7353.5669
+60317.05486490624 3.9639099 -7353.9609
+60318.05486495374 3.9637129 -7354.1577
+60319.05486500124 3.9635162 -7353.9609
+60320.05486504873 3.9635556 -7354.1577
+60321.05486509623 3.9634767 -7354.3545
+60322.05486514373 3.9634373 -7353.7646
+60323.05486519123 3.96328 -7353.9609
+60324.05486523872 3.96328 -7353.5669
+60325.05486528622 3.9632406 -7353.9609
+60326.05486533372 3.9632406 -7353.3706
+60327.05486538121 3.9631224 -7353.9609
+60328.05486542871 3.9630437 -7354.5513
+60329.05486547621 3.9630044 -7354.1577
+60330.05486552371 3.9628861 -7353.9609
+60331.0548655712 3.9629257 -7353.5669
+60332.0548656187 3.9627287 -7353.3706
+60333.0548656662 3.9627287 -7354.3545
+60334.0548657137 3.9626894 -7353.5669
+60335.05486576119 3.9627287 -7353.9609
+60336.05486580869 3.9625711 -7353.5669
+60337.05486585619 3.9624925 -7354.1577
+60338.05486590369 3.9623351 -7353.3706
+60339.05486595118 3.9623351 -7353.9609
+60340.05486599868 3.9622562 -7354.5513
+60341.05486604618 3.9622958 -7354.3545
+60342.05486609368 3.9620988 -7353.1738
+60343.05486614117 3.9620988 -7352.7803
+60344.05486618867 3.9620988 -7353.5669
+60345.05486623617 3.9620202 -7353.3706
+60346.05486628367 3.9619019 -7353.5669
+60347.05486633116 3.9618232 -7353.5669
+60348.05486637866 3.9616659 -7353.3706
+60349.05486642616 3.9616659 -7354.1577
+60350.05486647366 3.9617052 -7354.1577
+60351.05486652115 3.9616263 -7353.5669
+60352.05486656865 3.9615083 -7353.3706
+60353.05486661615 3.9614296 -7354.3545
+60354.05486666365 3.9613507 -7353.9609
+60355.05486671114 3.961272 -7353.7646
+60356.05486675864 3.9613113 -7353.7646
+60357.05486680614 3.961154 -7353.7646
+60358.05486685364 3.9611933 -7352.9771
+60359.05486690113 3.9611933 -7354.1577
+60360.05486694863 3.9610753 -7353.7646
+60361.05486699613 3.9609177 -7354.3545
+60362.05486704363 3.9607997 -7354.1577
+60363.05486709112 3.9607997 -7353.3706
+60364.05486713862 3.9607997 -7353.5669
+60365.05486718612 3.9607208 -7353.7646
+60366.05486723362 3.9606814 -7353.3706
+60367.05486728111 3.9606421 -7353.3706
+60368.05486732861 3.9606028 -7353.9609
+60369.05486737611 3.9605241 -7354.1577
+60370.05486742361 3.9602485 -7353.5669
+60371.0548674711 3.9602485 -7352.9771
+60372.0548675186 3.9603665 -7353.5669
+60373.0548675661 3.9602091 -7353.9609
+60374.0548676136 3.9602091 -7353.9609
+60375.05486766109 3.9600122 -7353.5669
+60376.05486770859 3.9599729 -7353.9609
+60377.05486775609 3.9599335 -7352.7803
+60378.05486780358 3.9598942 -7354.1577
+60379.05486785108 3.9598548 -7354.3545
+60380.05486789858 3.9597759 -7353.9609
+60381.05486794608 3.9596972 -7353.7646
+60382.05486799357 3.9595399 -7354.1577
+60383.05486804107 3.9595003 -7354.3545
+60384.05486808857 3.9593823 -7354.1577
+60385.05486813607 3.9593036 -7353.3706
+60386.05486818356 3.9592249 -7353.7646
+60387.05486823106 3.9592643 -7354.3545
+60388.05486827856 3.9592249 -7353.7646
+60389.05486832606 3.959028 -7354.1577
+60390.05486837355 3.9590673 -7353.9609
+60391.05486842105 3.9588704 -7353.1738
+60392.05486846855 3.9588704 -7353.9609
+60393.05486851605 3.9588704 -7353.7646
+60394.05486856354 3.9588704 -7354.1577
+60395.05486861104 3.9587524 -7353.5669
+60396.05486865854 3.9586737 -7353.9609
+60397.05486870604 3.9587524 -7354.5513
+60398.05486875353 3.9584768 -7352.9771
+60399.05486880103 3.9583981 -7354.3545
+60400.05486884853 3.9583588 -7353.7646
+60401.05486889603 3.9582405 -7354.1577
+60402.05486894352 3.9582405 -7353.5669
+60403.05486899102 3.9581618 -7353.9609
+60404.05486903852 3.9580438 -7352.9771
+60405.05486908602 3.9581225 -7353.5669
+60406.05486913351 3.9580438 -7352.9771
+60407.05486918101 3.9579256 -7353.7646
+60408.05486922851 3.9578075 -7353.9609
+60409.05486927601 3.9578862 -7353.7646
+60410.0548693235 3.9577682 -7354.7485
+60411.054869371 3.9576106 -7354.1577
+60412.0548694185 3.9576895 -7353.1738
+60413.054869466 3.9575713 -7353.3706
+60414.05486951349 3.9574139 -7354.3545
+60415.05486956099 3.9572957 -7353.9609
+60416.05486960849 3.957335 -7353.3706
+60417.05486965599 3.957217 -7353.9609
+60418.05486970348 3.9571776 -7353.9609
+60419.05486975098 3.9571776 -7353.5669
+60420.05486979848 3.9570596 -7353.1738
+60421.05486984598 3.95702 -7354.3545
+60422.05486989347 3.95702 -7353.5669
+60423.05486994097 3.9568627 -7354.1577
+60424.05486998847 3.9567447 -7354.5513
+60425.05487003597 3.9568233 -7353.9609
+60426.05487008346 3.9566264 -7353.7646
+60427.05487013096 3.9566264 -7354.1577
+60428.05487017846 3.9565084 -7353.9609
+60429.05487022595 3.9565084 -7353.9609
+60430.05487027345 3.9563901 -7353.9609
+60431.05487032095 3.9562721 -7354.5513
+60432.05487036845 3.9563508 -7353.3706
+60433.05487041594 3.9561148 -7354.1577
+60434.05487046344 3.9561541 -7353.3706
+60435.05487051094 3.9560359 -7354.5513
+60436.05487055844 3.9560359 -7353.9609
+60437.05487060593 3.9558785 -7353.5669
+60438.05487065343 3.9556816 -7353.9609
+60439.05487070093 3.9558392 -7354.3545
+60440.05487074843 3.9556029 -7353.5669
+60441.05487079592 3.9556029 -7354.5513
+60442.05487084342 3.9555242 -7353.3706
+60443.05487089092 3.9554453 -7353.9609
+60444.05487093842 3.9552879 -7354.1577
+60445.05487098591 3.9553273 -7353.5669
+60446.05487103341 3.9552486 -7354.1577
+60447.05487108091 3.955091 -7353.9609
+60448.05487112841 3.9550123 -7353.1738
+60449.0548711759 3.954973 -7353.7646
+60450.0548712234 3.9548943 -7354.5513
+60451.0548712709 3.9548547 -7352.9771
+60452.0548713184 3.954776 -7353.3706
+60453.05487136589 3.9546974 -7354.5513
+60454.05487141339 3.9545398 -7352.9771
+60455.05487146089 3.9545004 -7353.3706
+60456.05487150839 3.9545004 -7353.9609
+60457.05487155588 3.9543431 -7354.3545
+60458.05487160338 3.9543431 -7354.1577
+60459.05487165088 3.9542248 -7353.9609
+60460.05487169838 3.9541855 -7354.3545
+60461.05487174587 3.9541068 -7353.1738
+60462.05487179337 3.9540281 -7353.3706
+60463.05487184087 3.9540281 -7353.7646
+60464.05487188837 3.9538705 -7354.5513
+60465.05487193586 3.9537525 -7353.5669
+60466.05487198336 3.9537919 -7353.5669
+60467.05487203086 3.9535556 -7353.9609
+60468.05487207836 3.9535949 -7353.7646
+60469.05487212585 3.9535556 -7353.1738
+60470.05487217335 3.9535162 -7353.9609
+60471.05487222085 3.95328 -7354.9453
+60472.05487226835 3.9533589 -7353.5669
+60473.05487231584 3.9532406 -7353.1738
+60474.05487236334 3.953162 -7353.5669
+60475.05487241084 3.9531226 -7353.3706
+60476.05487245834 3.9530439 -7353.5669
+60477.05487250583 3.9530044 -7353.7646
+60478.05487255333 3.952847 -7353.5669
+60479.05487260083 3.952847 -7353.5669
+60480.05487264832 3.9526501 -7353.3706
+60481.05487269582 3.9526501 -7354.1577
+60482.05487274332 3.9525321 -7354.5513
+60483.05487279082 3.9523351 -7353.5669
+60484.05487283831 3.952414 -7353.5669
+60485.05487288581 3.9523351 -7353.9609
+60486.05487293331 3.9522958 -7353.3706
+60487.05487298081 3.9522171 -7353.5669
+60488.0548730283 3.9521778 -7353.3706
+60489.0548730758 3.9520988 -7354.3545
+60490.0548731233 3.9519415 -7354.3545
+60491.0548731708 3.9518235 -7353.5669
+60492.05487321829 3.9517839 -7353.7646
+60493.05487326579 3.9517052 -7353.5669
+60494.05487331329 3.9515085 -7353.9609
+60495.05487336079 3.9516659 -7353.7646
+60496.05487340828 3.9515479 -7354.1577
+60497.05487345578 3.9514296 -7354.5513
+60498.05487350328 3.9513903 -7354.3545
+60499.05487355078 3.9512722 -7354.1577
+60500.05487359827 3.9511936 -7353.9609
+60501.05487364577 3.9510753 -7354.7485
+60502.05487369327 3.9509966 -7353.3706
+60503.05487374077 3.9509573 -7353.7646
+60504.05487378826 3.9509573 -7354.5513
+60505.05487383576 3.950839 -7354.5513
+60506.05487388326 3.9506817 -7353.3706
+60507.05487393076 3.9506817 -7354.1577
+60508.05487397825 3.9506817 -7353.5669
+60509.05487402575 3.9504061 -7353.1738
+60510.05487407325 3.9504454 -7354.3545
+60511.05487412075 3.9503274 -7354.1577
+60512.05487416824 3.9503667 -7353.3706
+60513.05487421574 3.9502485 -7354.1577
+60514.05487426324 3.9501698 -7353.1738
+60515.05487431074 3.9501305 -7354.1577
+60516.05487435823 3.9499335 -7353.9609
+60517.05487440573 3.9500124 -7353.9609
+60518.05487445323 3.9500124 -7353.5669
+60519.05487450073 3.9497762 -7354.3545
+60520.05487454822 3.9496975 -7353.9609
+60521.05487459572 3.9496186 -7354.3545
+60522.05487464322 3.9495792 -7353.3706
+60523.05487469072 3.9496582 -7354.5513
+60524.05487473821 3.9495006 -7353.7646
+60525.05487478571 3.9495006 -7354.1577
+60526.05487483321 3.9494612 -7353.3706
+60527.05487488071 3.9492643 -7353.1738
+60528.0548749282 3.9492249 -7353.5669
+60529.0548749757 3.9490676 -7353.5669
+60530.0548750232 3.9491069 -7353.7646
+60531.05487507069 3.9489887 -7353.7646
+60532.05487511819 3.9490283 -7354.1577
+60533.05487516569 3.94891 -7353.9609
+60534.05487521319 3.9486737 -7354.3545
+60535.05487526068 3.9487526 -7353.7646
+60536.05487530818 3.9486737 -7353.3706
+60537.05487535568 3.9485164 -7353.3706
+60538.05487540318 3.9485164 -7353.9609
+60539.05487545067 3.9483981 -7353.5669
+60540.05487549817 3.9483981 -7353.1738
+60541.05487554567 3.9482801 -7353.5669
+60542.05487559317 3.9482408 -7353.9609
+60543.05487564066 3.9481621 -7353.7646
+60544.05487568816 3.9480438 -7353.3706
+60545.05487573566 3.9480045 -7352.583
+60546.05487578316 3.9478471 -7353.7646
+60547.05487583065 3.9477682 -7353.5669
+60548.05487587815 3.9478471 -7353.9609
+60549.05487592565 3.9477289 -7354.1577
+60550.05487597315 3.9476109 -7353.5669
+60551.05487602064 3.9475715 -7353.9609
+60552.05487606814 3.9473352 -7354.1577
+60553.05487611564 3.9473352 -7353.9609
+60554.05487616314 3.9472566 -7353.9609
+60555.05487621063 3.9472959 -7353.3706
+60556.05487625813 3.9472172 -7354.5513
+60557.05487630563 3.947099 -7354.5513
+60558.05487635313 3.946981 -7355.3384
+60559.05487640062 3.9468234 -7354.3545
+60560.05487644812 3.9468234 -7353.9609
+60561.05487649562 3.946666 -7353.9609
+60562.05487654312 3.9466267 -7353.9609
+60563.05487659061 3.9465084 -7353.5669
+60564.05487663811 3.9464691 -7353.7646
+60565.05487668561 3.9463511 -7353.7646
+60566.05487673311 3.9463904 -7353.3706
+60567.0548767806 3.9462724 -7353.1738
+60568.0548768281 3.9461935 -7353.9609
+60569.0548768756 3.9461541 -7353.1738
+60570.0548769231 3.9460754 -7353.7646
+60571.05487697059 3.9458785 -7353.9609
+60572.05487701809 3.9458785 -7353.9609
+60573.05487706559 3.9457998 -7354.9453
+60574.05487711309 3.9456425 -7353.3706
+60575.05487716058 3.9455636 -7353.3706
+60576.05487720808 3.9455636 -7354.1577
+60577.05487725558 3.9455636 -7353.1738
+60578.05487730308 3.9454062 -7354.1577
+60579.05487735057 3.9454455 -7353.9609
+60580.05487739807 3.9452879 -7353.9609
+60581.05487744557 3.9452093 -7354.1577
+60582.05487749306 3.9450912 -7353.5669
+60583.05487754056 3.9449337 -7354.1577
+60584.05487758806 3.944973 -7354.1577
+60585.05487763556 3.9448156 -7353.9609
+60586.05487768305 3.944737 -7353.1738
+60587.05487773055 3.944658 -7354.1577
+60588.05487777805 3.9446187 -7354.1577
+60589.05487782555 3.94454 -7352.9771
+60590.05487787304 3.944422 -7354.1577
+60591.05487792054 3.9443038 -7353.7646
+60592.05487796804 3.9442251 -7353.5669
+60593.05487801554 3.9441857 -7353.3706
+60594.05487806303 3.9439888 -7354.5513
+60595.05487811053 3.9439495 -7354.1577
+60596.05487815803 3.9439101 -7354.1577
+60597.05487820553 3.9438314 -7354.3545
+60598.05487825302 3.9437525 -7353.7646
+60599.05487830052 3.9436738 -7353.5669
+60600.05487834802 3.9435165 -7353.3706
+60601.05487839552 3.9435165 -7353.7646
+60602.05487844301 3.9433589 -7354.1577
+60603.05487849051 3.9433196 -7352.7803
+60604.05487853801 3.9432015 -7353.3706
+60605.05487858551 3.9432015 -7353.1738
+60606.054878633 3.9430046 -7353.7646
+60607.0548786805 3.9430046 -7354.1577
+60608.054878728 3.942847 -7353.5669
+60609.0548787755 3.942847 -7353.5669
+60610.05487882299 3.942729 -7353.1738
+60611.05487887049 3.9425716 -7353.9609
+60612.05487891799 3.942611 -7353.7646
+60613.05487896549 3.9424927 -7354.1577
+60614.05487901298 3.9423354 -7353.9609
+60615.05487906048 3.9422171 -7353.5669
+60616.05487910798 3.9422567 -7353.7646
+60617.05487915548 3.9420204 -7353.5669
+60618.05487920297 3.9420598 -7354.1577
+60619.05487925047 3.9419417 -7353.3706
+60620.05487929797 3.9418628 -7353.3706
+60621.05487934547 3.9418628 -7353.5669
+60622.05487939296 3.9416265 -7354.3545
+60623.05487944046 3.9415872 -7353.5669
+60624.05487948796 3.9414692 -7353.7646
+60625.05487953546 3.9414692 -7354.1577
+60626.05487958295 3.9413905 -7354.1577
+60627.05487963045 3.9412329 -7354.3545
+60628.05487967795 3.9411542 -7354.5513
+60629.05487972545 3.9411542 -7354.1577
+60630.05487977294 3.9408786 -7353.5669
+60631.05487982044 3.940918 -7353.9609
+60632.05487986794 3.9408393 -7353.7646
+60633.05487991543 3.9407213 -7353.5669
+60634.05487996293 3.940603 -7354.1577
+60635.05488001043 3.940485 -7353.9609
+60636.05488005793 3.9404063 -7354.1577
+60637.05488010542 3.9403667 -7353.5669
+60638.05488015292 3.9403274 -7353.5669
+60639.05488020042 3.9402094 -7353.9609
+60640.05488024792 3.9400518 -7353.3706
+60641.05488029541 3.9400125 -7353.5669
+60642.05488034291 3.9400125 -7354.3545
+60643.05488039041 3.9399731 -7353.9609
+60644.05488043791 3.9397368 -7353.7646
+60645.0548804854 3.9396975 -7354.1577
+60646.0548805329 3.9395795 -7354.3545
+60647.0548805804 3.9395795 -7353.9609
+60648.0548806279 3.9394612 -7353.7646
+60649.05488067539 3.9393039 -7353.1738
+60650.05488072289 3.9392645 -7353.3706
+60651.05488077039 3.9392645 -7353.5669
+60652.05488081789 3.9390283 -7353.1738
+60653.05488086538 3.9390283 -7353.7646
+60654.05488091288 3.9389496 -7353.5669
+60655.05488096038 3.9388313 -7353.9609
+60656.05488100788 3.938792 -7354.1577
+60657.05488105537 3.938556 -7353.5669
+60658.05488110287 3.9385953 -7354.3545
+60659.05488115037 3.938477 -7353.9609
+60660.05488119787 3.9383984 -7353.3706
+60661.05488124536 3.938241 -7354.3545
+60662.05488129286 3.9382014 -7354.3545
+60663.05488134036 3.9381621 -7354.5513
+60664.05488138786 3.9380047 -7353.7646
+60665.05488143535 3.9378865 -7353.3706
+60666.05488148285 3.9378865 -7353.9609
+60667.05488153035 3.9378471 -7353.7646
+60668.05488157785 3.9376898 -7354.1577
+60669.05488162534 3.9376898 -7353.3706
+60670.05488167284 3.9374535 -7353.5669
+60671.05488172034 3.9374928 -7354.1577
+60672.05488176784 3.9373355 -7354.1577
+60673.05488181533 3.9372566 -7353.3706
+60674.05488186283 3.9371386 -7353.5669
+60675.05488191033 3.9372566 -7353.9609
+60676.05488195783 3.9370205 -7354.1577
+60677.05488200532 3.9369023 -7353.9609
+60678.05488205282 3.9369416 -7354.3545
+60679.05488210032 3.936666 -7353.5669
+60680.05488214782 3.936666 -7353.7646
+60681.05488219531 3.936548 -7354.3545
+60682.05488224281 3.93643 -7354.3545
+60683.05488229031 3.9363906 -7353.5669
+60684.0548823378 3.9363511 -7353.5669
+60685.0548823853 3.936233 -7353.1738
+60686.0548824328 3.9360361 -7353.9609
+60687.0548824803 3.9359181 -7353.5669
+60688.05488252779 3.9358788 -7353.5669
+60689.05488257529 3.9358788 -7353.5669
+60690.05488262279 3.9357212 -7353.9609
+60691.05488267029 3.9356818 -7354.5513
+60692.05488271778 3.9357212 -7354.1577
+60693.05488276528 3.9354455 -7354.3545
+60694.05488281278 3.9353669 -7354.1577
+60695.05488286028 3.9352489 -7354.1577
+60696.05488290777 3.9351306 -7353.3706
+60697.05488295527 3.9351306 -7354.5513
+60698.05488300277 3.9350126 -7353.7646
+60699.05488305027 3.9349732 -7353.9609
+60700.05488309776 3.9348946 -7353.3706
+60701.05488314526 3.9346583 -7354.1577
+60702.05488319276 3.9346189 -7354.3545
+60703.05488324026 3.9345007 -7353.9609
+60704.05488328775 3.9343433 -7353.5669
+60705.05488333525 3.934304 -7354.5513
+60706.05488338275 3.9342647 -7354.5513
+60707.05488343025 3.9341464 -7354.1577
+60708.05488347774 3.9340677 -7353.7646
+60709.05488352524 3.9339101 -7353.9609
+60710.05488357274 3.9339101 -7352.7803
+60711.05488362024 3.9338315 -7353.5669
+60712.05488366773 3.9337528 -7354.1577
+60713.05488371523 3.9335952 -7354.1577
+60714.05488376273 3.9336348 -7354.9453
+60715.05488381023 3.9335165 -7354.3545
+60716.05488385772 3.9332802 -7353.9609
+60717.05488390522 3.9331622 -7353.5669
+60718.05488395272 3.9333198 -7354.1577
+60719.05488400022 3.9331229 -7353.7646
+60720.05488404771 3.9330049 -7353.1738
+60721.05488409521 3.9328473 -7353.7646
+60722.05488414271 3.9328866 -7353.7646
+60723.05488419021 3.9327292 -7353.3706
+60724.0548842377 3.9327292 -7354.7485
+60725.0548842852 3.9325323 -7354.3545
+60726.0548843327 3.932493 -7353.9609
+60727.0548843802 3.9323747 -7353.3706
+60728.05488442769 3.9323747 -7354.5513
+60729.05488447519 3.9321387 -7354.1577
+60730.05488452269 3.9320598 -7353.5669
+60731.05488457019 3.9319811 -7353.9609
+60732.05488461768 3.9319417 -7353.1738
+60733.05488466518 3.9318237 -7353.9609
+60734.05488471268 3.9317844 -7353.1738
+60735.05488476017 3.9316661 -7353.3706
+60736.05488480767 3.9314694 -7354.3545
+60737.05488485517 3.9315088 -7353.3706
+60738.05488490267 3.9314694 -7352.9771
+60739.05488495016 3.9313118 -7354.1577
+60740.05488499766 3.9311545 -7353.1738
+60741.05488504516 3.9311545 -7353.3706
+60742.05488509266 3.9310362 -7354.3545
+60743.05488514015 3.9308789 -7354.3545
+60744.05488518765 3.9308789 -7353.5669
+60745.05488523515 3.9307606 -7353.9609
+60746.05488528265 3.9306033 -7353.9609
+60747.05488533014 3.930485 -7353.5669
+60748.05488537764 3.9304457 -7353.5669
+60749.05488542514 3.9303277 -7353.1738
+60750.05488547264 3.9303277 -7353.5669
+60751.05488552013 3.930052 -7354.1577
+60752.05488556763 3.9301701 -7353.5669
+60753.05488561513 3.929934 -7353.7646
+60754.05488566263 3.929934 -7353.7646
+60755.05488571012 3.9298944 -7353.5669
+60756.05488575762 3.9297371 -7354.1577
+60757.05488580512 3.9296584 -7353.5669
+60758.05488585262 3.9295402 -7353.9609
+60759.05488590011 3.9294615 -7353.5669
+60760.05488594761 3.9293041 -7354.1577
+60761.05488599511 3.9291859 -7353.7646
+60762.05488604261 3.9291465 -7353.7646
+60763.0548860901 3.9291465 -7353.9609
+60764.0548861376 3.9290285 -7353.7646
+60765.0548861851 3.9289103 -7354.1577
+60766.0548862326 3.9288709 -7353.9609
+60767.05488628009 3.9287529 -7354.3545
+60768.05488632759 3.928674 -7353.5669
+60769.05488637509 3.9285166 -7353.9609
+60770.05488642259 3.9285166 -7353.3706
+60771.05488647008 3.928359 -7353.9609
+60772.05488651758 3.9282804 -7353.7646
+60773.05488656508 3.9281623 -7353.3706
+60774.05488661258 3.9280837 -7354.7485
+60775.05488666007 3.9280047 -7354.5513
+60776.05488670757 3.927808 -7353.1738
+60777.05488675507 3.927808 -7353.7646
+60778.05488680257 3.9277291 -7354.1577
+60779.05488685006 3.9275718 -7354.5513
+60780.05488689756 3.9275718 -7353.5669
+60781.05488694506 3.9274931 -7353.1738
+60782.05488699256 3.9274142 -7354.1577
+60783.05488704005 3.9271386 -7354.9453
+60784.05488708755 3.9270992 -7353.5669
+60785.05488713505 3.9269812 -7354.3545
+60786.05488718254 3.9270205 -7353.7646
+60787.05488723004 3.9268632 -7353.9609
+60788.05488727754 3.9267056 -7353.3706
+60789.05488732504 3.9266663 -7353.3706
+60790.05488737253 3.9264693 -7353.5669
+60791.05488742003 3.9263906 -7353.7646
+60792.05488746753 3.9263513 -7353.3706
+60793.05488751503 3.9262726 -7354.5513
+60794.05488756252 3.9262333 -7353.5669
+60795.05488761002 3.9260364 -7352.7803
+60796.05488765752 3.9260757 -7354.9453
+60797.05488770502 3.925997 -7354.1577
+60798.05488775251 3.9258001 -7354.3545
+60799.05488780001 3.9257607 -7353.3706
+60800.05488784751 3.9256034 -7353.5669
+60801.05488789501 3.9255245 -7353.1738
+60802.0548879425 3.9256427 -7353.5669
+60803.05488799 3.9253278 -7354.1577
+60804.0548880375 3.9254065 -7353.7646
+60805.054888085 3.9251702 -7354.7485
+60806.05488813249 3.9250128 -7352.9771
+60807.05488817999 3.9250915 -7353.5669
+60808.05488822749 3.9249732 -7353.1738
+60809.05488827499 3.9248552 -7353.5669
+60810.05488832248 3.9247372 -7353.1738
+60811.05488836998 3.924619 -7353.5669
+60812.05488841748 3.924619 -7353.5669
+60813.05488846498 3.9245009 -7352.9771
+60814.05488851247 3.9244223 -7353.7646
+60815.05488855997 3.9243433 -7353.5669
+60816.05488860747 3.9242253 -7353.5669
+60817.05488865497 3.9241073 -7353.1738
+60818.05488870246 3.924068 -7353.7646
+60819.05488874996 3.9239497 -7353.1738
+60820.05488879746 3.9239497 -7353.9609
+60821.05488884496 3.9237134 -7353.5669
+60822.05488889245 3.923753 -7353.9609
+60823.05488893995 3.9236348 -7354.3545
+60824.05488898745 3.9233985 -7354.3545
+60825.05488903495 3.9233985 -7354.1577
+60826.05488908244 3.9232805 -7353.7646
+60827.05488912994 3.9232018 -7353.9609
+60828.05488917744 3.9232018 -7353.3706
+60829.05488922494 3.9229655 -7353.9609
+60830.05488927243 3.9230049 -7353.9609
+60831.05488931993 3.9229262 -7353.9609
+60832.05488936743 3.9227293 -7353.7646
+60833.05488941493 3.9226506 -7353.9609
+60834.05488946242 3.9225326 -7353.1738
+60835.05488950992 3.9225326 -7353.9609
+60836.05488955742 3.9224536 -7353.9609
+60837.05488960491 3.9224143 -7353.7646
+60838.05488965241 3.9222963 -7354.1577
+60839.05488969991 3.922178 -7353.9609
+60840.05488974741 3.9221387 -7353.5669
+60841.0548897949 3.9219813 -7353.9609
+60842.0548898424 3.9219024 -7353.5669
+60843.0548898899 3.9217451 -7353.9609
+60844.0548899374 3.9217451 -7353.9609
+60845.05488998489 3.921627 -7353.7646
+60846.05489003239 3.9215481 -7353.9609
+60847.05489007989 3.9214301 -7353.7646
+60848.05489012739 3.9213514 -7353.7646
+60849.05489017488 3.9213514 -7353.9609
+60850.05489022238 3.9211545 -7354.3545
+60851.05489026988 3.9209971 -7353.5669
+60852.05489031738 3.9209576 -7353.1738
+60853.05489036487 3.9209182 -7354.3545
+60854.05489041237 3.9208395 -7353.9609
+60855.05489045987 3.9207215 -7353.3706
+60856.05489050737 3.9206822 -7353.1738
+60857.05489055486 3.9204853 -7354.3545
+60858.05489060236 3.9205246 -7353.5669
+60859.05489064986 3.9203277 -7353.3706
+60860.05489069736 3.9201703 -7353.3706
+60861.05489074485 3.9201703 -7353.9609
+60862.05489079235 3.9200916 -7353.5669
+60863.05489083985 3.9199734 -7354.3545
+60864.05489088735 3.9199734 -7353.1738
+60865.05489093484 3.9198947 -7354.1577
+60866.05489098234 3.9196978 -7354.1577
+60867.05489102984 3.9195797 -7353.3706
+60868.05489107734 3.9194617 -7354.1577
+60869.05489112483 3.9195011 -7354.5513
+60870.05489117233 3.9193435 -7353.9609
+60871.05489121983 3.9192255 -7354.1577
+60872.05489126733 3.9191072 -7354.1577
+60873.05489131482 3.9190679 -7353.5669
+60874.05489136232 3.9189892 -7353.7646
+60875.05489140982 3.9187922 -7353.9609
+60876.05489145732 3.9187922 -7354.1577
+60877.05489150481 3.9187529 -7353.5669
+60878.05489155231 3.9186742 -7353.7646
+60879.05489159981 3.9185956 -7352.7803
+60880.05489164731 3.9185562 -7354.1577
+60881.0548916948 3.9183199 -7354.1577
+60882.0548917423 3.9183199 -7353.3706
+60883.0548917898 3.9181623 -7354.1577
+60884.0548918373 3.9180837 -7353.9609
+60885.05489188479 3.9180443 -7353.5669
+60886.05489193229 3.9178867 -7353.9609
+60887.05489197979 3.9178081 -7353.1738
+60888.05489202729 3.9176114 -7352.583
+60889.05489207478 3.9175324 -7353.3706
+60890.05489212228 3.9174931 -7353.9609
+60891.05489216978 3.9173751 -7354.1577
+60892.05489221727 3.9172175 -7353.7646
+60893.05489226477 3.9172175 -7352.9771
+60894.05489231227 3.9170208 -7354.1577
+60895.05489235977 3.9169815 -7353.9609
+60896.05489240726 3.9169025 -7353.3706
+60897.05489245476 3.9167058 -7353.9609
+60898.05489250226 3.9167452 -7353.5669
+60899.05489254976 3.9166269 -7354.1577
+60900.05489259725 3.9165089 -7354.3545
+60901.05489264475 3.9164302 -7353.7646
+60902.05489269225 3.9163909 -7353.5669
+60903.05489273975 3.916194 -7353.3706
+60904.05489278724 3.9161153 -7353.1738
+60905.05489283474 3.915997 -7353.9609
+60906.05489288224 3.915879 -7354.5513
+60907.05489292974 3.915879 -7353.7646
+60908.05489297723 3.915761 -7353.3706
+60909.05489302473 3.9157214 -7353.5669
+60910.05489307223 3.9156034 -7353.7646
+60911.05489311973 3.9154065 -7353.9609
+60912.05489316722 3.9153278 -7352.9771
+60913.05489321472 3.9152884 -7354.3545
+60914.05489326222 3.9151704 -7354.5513
+60915.05489330972 3.9150522 -7353.5669
+60916.05489335721 3.9150128 -7353.1738
+60917.05489340471 3.9148948 -7354.3545
+60918.05489345221 3.9146979 -7353.5669
+60919.05489349971 3.9147372 -7353.5669
+60920.0548935472 3.9144616 -7354.1577
+60921.0548935947 3.9144616 -7353.7646
+60922.0548936422 3.9144616 -7354.1577
+60923.0548936897 3.9142649 -7353.7646
+60924.05489373719 3.914186 -7353.1738
+60925.05489378469 3.914068 -7353.3706
+60926.05489383219 3.9139106 -7353.9609
+60927.05489387969 3.9139106 -7354.1577
+60928.05489392718 3.9139106 -7354.3545
+60929.05489397468 3.9137137 -7354.3545
+60930.05489402218 3.9135957 -7353.1738
+60931.05489406968 3.9134381 -7354.3545
+60932.05489411717 3.9133594 -7353.7646
+60933.05489416467 3.9132807 -7354.1577
+60934.05489421217 3.9131625 -7353.5669
+60935.05489425967 3.9130445 -7353.3706
+60936.05489430716 3.9130051 -7354.5513
+60937.05489435466 3.9129262 -7353.9609
+60938.05489440216 3.9128082 -7354.1577
+60939.05489444966 3.9127688 -7353.5669
+60940.05489449715 3.9126112 -7354.1577
+60941.05489454465 3.9125326 -7353.7646
+60942.05489459215 3.9124539 -7353.5669
+60943.05489463964 3.9122963 -7353.3706
+60944.05489468714 3.9122963 -7353.7646
+60945.05489473464 3.9120996 -7354.1577
+60946.05489478214 3.9120996 -7353.7646
+60947.05489482963 3.9120207 -7353.9609
+60948.05489487713 3.9119027 -7353.1738
+60949.05489492463 3.911824 -7353.1738
+60950.05489497213 3.9116664 -7353.7646
+60951.05489501962 3.9115484 -7354.3545
+60952.05489506712 3.9114304 -7353.9609
+60953.05489511462 3.9113514 -7353.3706
+60954.05489516212 3.9112334 -7353.5669
+60955.05489520961 3.9110758 -7353.7646
+60956.05489525711 3.9110758 -7353.5669
+60957.05489530461 3.9110365 -7354.5513
+60958.05489535211 3.9109185 -7352.9771
+60959.0548953996 3.9108398 -7353.3706
+60960.0548954471 3.9107215 -7353.1738
+60961.0548954946 3.9106429 -7353.5669
+60962.0548955421 3.9104853 -7353.9609
+60963.05489558959 3.9105248 -7353.7646
+60964.05489563709 3.9102492 -7353.5669
+60965.05489568459 3.9102492 -7353.3706
+60966.05489573209 3.9101703 -7354.1577
+60967.05489577958 3.910013 -7353.7646
+60968.05489582708 3.9099343 -7353.3706
+60969.05489587458 3.909816 -7354.3545
+60970.05489592208 3.9097373 -7353.9609
+60971.05489596957 3.90958 -7354.1577
+60972.05489601707 3.9095011 -7354.3545
+60973.05489606457 3.9094617 -7353.5669
+60974.05489611207 3.9093831 -7353.5669
+60975.05489615956 3.9092648 -7353.7646
+60976.05489620706 3.9092648 -7354.5513
+60977.05489625456 3.9091074 -7353.7646
+60978.05489630206 3.9090288 -7353.9609
+60979.05489634955 3.9088712 -7353.7646
+60980.05489639705 3.9087925 -7353.7646
+60981.05489644455 3.9087925 -7353.9609
+60982.05489649205 3.9085956 -7354.5513
+60983.05489653954 3.9084775 -7353.1738
+60984.05489658704 3.9084775 -7355.1421
+60985.05489663454 3.90832 -7354.1577
+60986.05489668204 3.9082019 -7354.1577
+60987.05489672953 3.9081233 -7353.1738
+60988.05489677703 3.9080839 -7354.3545
+60989.05489682453 3.907887 -7353.7646
+60990.05489687203 3.9078476 -7354.3545
+60991.05489691952 3.90769 -7354.5513
+60992.05489696702 3.9076114 -7354.3545
+60993.05489701452 3.9075327 -7353.3706
+60994.05489706201 3.9074934 -7353.3706
+60995.05489710951 3.9073751 -7353.3706
+60996.05489715701 3.9071784 -7353.9609
+60997.05489720451 3.9071784 -7353.9609
+60998.054897252 3.9070995 -7354.1577
+60999.0548972995 3.9069815 -7353.5669
+61000.054897347 3.9070208 -7353.3706
+61001.0548973945 3.9068241 -7353.5669
+61002.05489744199 3.9067452 -7354.7485
+61003.05489748949 3.9066272 -7353.9609
+61004.05489753699 3.9064696 -7354.1577
+61005.05489758449 3.9062729 -7354.3545
+61006.05489763198 3.9063516 -7354.3545
+61007.05489767948 3.9061153 -7354.5513
+61008.05489772698 3.906076 -7354.3545
+61009.05489777448 3.906076 -7353.7646
+61010.05489782197 3.9058793 -7354.3545
+61011.05489786947 3.9058003 -7353.1738
+61012.05489791697 3.9057217 -7354.5513
+61013.05489796447 3.9056823 -7353.7646
+61014.05489801196 3.9055641 -7353.9609
+61015.05489805946 3.9054067 -7353.3706
+61016.05489810696 3.9052887 -7353.5669
+61017.05489815446 3.9052098 -7354.3545
+61018.05489820195 3.9052491 -7353.5669
+61019.05489824945 3.9049737 -7353.7646
+61020.05489829695 3.9048948 -7353.1738
+61021.05489834445 3.9047768 -7354.5513
+61022.05489839194 3.9046588 -7353.5669
+61023.05489843944 3.9045012 -7353.5669
+61024.05489848694 3.9045799 -7353.7646
+61025.05489853444 3.9044225 -7353.7646
+61026.05489858193 3.9042649 -7353.7646
+61027.05489862943 3.9043043 -7353.3706
+61028.05489867693 3.9041469 -7353.7646
+61029.05489872443 3.9038713 -7353.5669
+61030.05489877192 3.9039106 -7354.3545
+61031.05489881942 3.903832 -7354.1577
+61032.05489886692 3.9037137 -7353.5669
+61033.05489891442 3.903635 -7353.5669
+61034.05489896191 3.903517 -7353.1738
+61035.05489900941 3.9034383 -7353.1738
+61036.05489905691 3.9033988 -7353.7646
+61037.05489910441 3.9032021 -7353.9609
+61038.0548991519 3.9032414 -7354.9453
+61039.0548991994 3.9030051 -7352.9771
+61040.0548992469 3.9029264 -7353.5669
+61041.0548992944 3.9029264 -7354.1577
+61042.05489934189 3.9028478 -7353.9609
+61043.05489938939 3.9026902 -7353.9609
+61044.05489943689 3.9025722 -7353.3706
+61045.05489948438 3.9024539 -7353.9609
+61046.05489953188 3.9023359 -7353.9609
+61047.05489957938 3.9022965 -7353.3706
+61048.05489962688 3.9021783 -7353.3706
+61049.05489967437 3.9020603 -7353.3706
+61050.05489972187 3.9018633 -7353.7646
+61051.05489976937 3.9018633 -7353.7646
+61052.05489981687 3.9017847 -7353.5669
+61053.05489986436 3.901588 -7353.3706
+61054.05489991186 3.901588 -7354.3545
+61055.05489995936 3.9014304 -7354.3545
+61056.05490000686 3.9014304 -7354.3545
+61057.05490005435 3.9011941 -7353.9609
+61058.05490010185 3.9011154 -7354.1577
+61059.05490014935 3.9011154 -7354.1577
+61060.05490019685 3.9010761 -7353.3706
+61061.05490024434 3.9008791 -7353.5669
+61062.05490029184 3.9008005 -7354.5513
+61063.05490033934 3.9006824 -7353.5669
+61064.05490038684 3.9006431 -7353.5669
+61065.05490043433 3.9004855 -7353.7646
+61066.05490048183 3.9002886 -7353.3706
+61067.05490052933 3.9002886 -7353.3706
+61068.05490057683 3.9001706 -7353.3706
+61069.05490062432 3.8999736 -7354.3545
+61070.05490067182 3.9000919 -7353.7646
+61071.05490071932 3.8997769 -7354.1577
+61072.05490076682 3.8997769 -7353.1738
+61073.05490081431 3.8996587 -7353.7646
+61074.05490086181 3.899462 -7353.3706
+61075.05490090931 3.899462 -7355.1421
+61076.05490095681 3.8993437 -7353.9609
+61077.0549010043 3.8992257 -7353.7646
+61078.0549010518 3.899147 -7353.9609
+61079.0549010993 3.8990288 -7353.3706
+61080.0549011468 3.8989108 -7354.1577
+61081.05490119429 3.8987927 -7353.9609
+61082.05490124179 3.8987532 -7353.3706
+61083.05490128929 3.8987532 -7354.1577
+61084.05490133679 3.8985171 -7352.9771
+61085.05490138428 3.8984776 -7354.1577
+61086.05490143178 3.8984776 -7353.5669
+61087.05490147928 3.8982022 -7354.5513
+61088.05490152678 3.8981233 -7353.5669
+61089.05490157427 3.8981233 -7353.7646
+61090.05490162177 3.8978872 -7353.7646
+61091.05490166927 3.8979266 -7353.7646
+61092.05490171677 3.8976116 -7353.5669
+61093.05490176426 3.8975327 -7352.583
+61094.05490181176 3.8975723 -7354.3545
+61095.05490185926 3.8974147 -7353.9609
+61096.05490190675 3.8972178 -7353.5669
+61097.05490195425 3.8971391 -7353.7646
+61098.05490200175 3.8969817 -7354.5513
+61099.05490204925 3.8969817 -7353.9609
+61100.05490209674 3.8968635 -7353.5669
+61101.05490214424 3.8967848 -7354.1577
+61102.05490219174 3.8967061 -7354.1577
+61103.05490223924 3.8966668 -7352.7803
+61104.05490228673 3.8964698 -7354.1577
+61105.05490233423 3.8963518 -7353.1738
+61106.05490238173 3.8961549 -7353.9609
+61107.05490242923 3.8961155 -7353.7646
+61108.05490247672 3.8960762 -7353.9609
+61109.05490252422 3.8959579 -7353.5669
+61110.05490257172 3.8958793 -7353.3706
+61111.05490261922 3.8957219 -7353.3706
+61112.05490266671 3.8956037 -7354.1577
+61113.05490271421 3.8955643 -7354.5513
+61114.05490276171 3.8954463 -7354.1577
+61115.05490280921 3.895328 -7353.3706
+61116.0549028567 3.8952494 -7353.9609
+61117.0549029042 3.89521 -7353.3706
+61118.0549029517 3.8950524 -7353.3706
+61119.0549029992 3.8949738 -7353.9609
+61120.05490304669 3.8948951 -7353.7646
+61121.05490309419 3.8948164 -7352.9771
+61122.05490314169 3.8946195 -7353.7646
+61123.05490318919 3.8945801 -7354.1577
+61124.05490323668 3.8943832 -7353.7646
+61125.05490328418 3.8943832 -7354.1577
+61126.05490333168 3.8943439 -7353.3706
+61127.05490337918 3.8940682 -7353.3706
+61128.05490342667 3.8940682 -7354.3545
+61129.05490347417 3.8939502 -7353.3706
+61130.05490352167 3.8937533 -7354.9453
+61131.05490356917 3.893714 -7353.5669
+61132.05490361666 3.893714 -7354.3545
+61133.05490366416 3.8935959 -7353.3706
+61134.05490371166 3.8933597 -7353.3706
+61135.05490375916 3.8934383 -7353.7646
+61136.05490380665 3.893281 -7353.9609
+61137.05490385415 3.8931627 -7353.5669
+61138.05490390165 3.8930054 -7353.9609
+61139.05490394915 3.8930054 -7353.9609
+61140.05490399664 3.8928871 -7353.1738
+61141.05490404414 3.8928478 -7354.3545
+61142.05490409164 3.8926904 -7355.3384
+61143.05490413914 3.8925328 -7353.5669
+61144.05490418663 3.8924541 -7353.3706
+61145.05490423413 3.8922966 -7353.3706
+61146.05490428163 3.8921785 -7353.5669
+61147.05490432912 3.8920999 -7353.3706
+61148.05490437662 3.8919423 -7354.1577
+61149.05490442412 3.8918636 -7353.9609
+61150.05490447162 3.8917456 -7354.1577
+61151.05490451911 3.8917456 -7352.9771
+61152.05490456661 3.8916273 -7353.9609
+61153.05490461411 3.8915486 -7353.9609
+61154.05490466161 3.891273 -7353.5669
+61155.0549047091 3.891155 -7353.5669
+61156.0549047566 3.891155 -7352.9771
+61157.0549048041 3.891155 -7353.9609
+61158.0549048516 3.8910367 -7353.7646
+61159.05490489909 3.8908401 -7354.1577
+61160.05490494659 3.8907218 -7353.9609
+61161.05490499409 3.8906038 -7353.5669
+61162.05490504159 3.8906431 -7353.5669
+61163.05490508908 3.8903282 -7353.7646
+61164.05490513658 3.8903675 -7353.3706
+61165.05490518408 3.8902495 -7352.9771
+61166.05490523158 3.8900526 -7353.5669
+61167.05490527907 3.8900526 -7353.7646
+61168.05490532657 3.8899739 -7354.3545
+61169.05490537407 3.8898559 -7353.7646
+61170.05490542157 3.8897769 -7353.7646
+61171.05490546906 3.8896196 -7353.5669
+61172.05490551656 3.8895013 -7354.1577
+61173.05490556406 3.8893833 -7353.3706
+61174.05490561156 3.8893833 -7354.3545
+61175.05490565905 3.8893046 -7354.1577
+61176.05490570655 3.8891077 -7353.7646
+61177.05490575405 3.8889897 -7354.3545
+61178.05490580155 3.8887928 -7353.9609
+61179.05490584904 3.8887928 -7353.7646
+61180.05490589654 3.8887534 -7353.7646
+61181.05490594404 3.8885171 -7355.1421
+61182.05490599154 3.8884385 -7354.5513
+61183.05490603903 3.8883991 -7354.5513
+61184.05490608653 3.8882809 -7353.9609
+61185.05490613403 3.8882415 -7353.5669
+61186.05490618153 3.8880842 -7353.7646
+61187.05490622902 3.8879266 -7353.3706
+61188.05490627652 3.8878872 -7353.1738
+61189.05490632402 3.8877692 -7354.1577
+61190.05490637152 3.887651 -7353.3706
+61191.05490641901 3.887651 -7354.3545
+61192.05490646651 3.887336 -7353.7646
+61193.05490651401 3.8872967 -7354.5513
+61194.05490656151 3.8873754 -7353.9609
+61195.054906609 3.8871787 -7353.7646
+61196.0549066565 3.8870604 -7353.1738
+61197.054906704 3.8868637 -7354.3545
+61198.05490675149 3.8869424 -7353.9609
+61199.05490679899 3.8867061 -7353.9609
+61200.05490684649 3.8867061 -7354.3545
+61201.05490689399 3.8865488 -7353.5669
+61202.05490694148 3.8864701 -7354.1577
+61203.05490698898 3.8863912 -7353.3706
+61204.05490703648 3.8862338 -7353.9609
+61205.05490708398 3.8860369 -7353.5669
+61206.05490713147 3.8860369 -7354.1577
+61207.05490717897 3.8859582 -7353.1738
+61208.05490722647 3.8858399 -7353.9609
+61209.05490727397 3.8858006 -7353.7646
+61210.05490732146 3.8856432 -7354.1577
+61211.05490736896 3.885525 -7353.3706
+61212.05490741646 3.8854856 -7354.1577
+61213.05490746396 3.885289 -7353.9609
+61214.05490751145 3.88521 -7353.5669
+61215.05490755895 3.8850133 -7353.9609
+61216.05490760645 3.8850527 -7353.5669
+61217.05490765395 3.884974 -7353.3706
+61218.05490770144 3.8847771 -7354.1577
+61219.05490774894 3.8846984 -7353.9609
+61220.05490779644 3.8846197 -7353.5669
+61221.05490784394 3.8844621 -7353.1738
+61222.05490789143 3.8843441 -7353.9609
+61223.05490793893 3.8843834 -7353.9609
+61224.05490798643 3.8841472 -7353.5669
+61225.05490803393 3.8840292 -7354.1577
+61226.05490808142 3.8841078 -7353.7646
+61227.05490812892 3.8839109 -7353.9609
+61228.05490817642 3.8837929 -7353.7646
+61229.05490822392 3.8837142 -7354.1577
+61230.05490827141 3.8834779 -7353.3706
+61231.05490831891 3.8835566 -7353.7646
+61232.05490836641 3.8834386 -7353.5669
+61233.05490841391 3.883281 -7354.1577
+61234.0549084614 3.8832023 -7353.9609
+61235.0549085089 3.8830447 -7353.3706
+61236.0549085564 3.882966 -7353.7646
+61237.0549086039 3.8828874 -7353.5669
+61238.05490865139 3.8827693 -7353.7646
+61239.05490869889 3.8827298 -7353.5669
+61240.05490874639 3.8826511 -7354.1577
+61241.05490879389 3.8825724 -7353.5669
+61242.05490884138 3.8825331 -7353.9609
+61243.05490888888 3.8822181 -7353.5669
+61244.05490893638 3.8822181 -7353.5669
+61245.05490898388 3.8822181 -7353.3706
+61246.05490903137 3.8820999 -7352.583
+61247.05490907887 3.8819425 -7353.7646
+61248.05490912637 3.8818638 -7354.3545
+61249.05490917386 3.8817062 -7353.5669
+61250.05490922136 3.8816276 -7353.1738
+61251.05490926886 3.88147 -7353.5669
+61252.05490931636 3.8814306 -7353.5669
+61253.05490936385 3.8813913 -7353.9609
+61254.05490941135 3.8812733 -7353.9609
+61255.05490945885 3.8812339 -7353.5669
+61256.05490950635 3.8810763 -7353.7646
+61257.05490955384 3.8809583 -7354.3545
+61258.05490960134 3.8808401 -7353.7646
+61259.05490964884 3.8807614 -7353.7646
+61260.05490969634 3.8805645 -7353.7646
+61261.05490974383 3.8805645 -7354.1577
+61262.05490979133 3.8805251 -7353.7646
+61263.05490983883 3.8803678 -7354.3545
+61264.05490988633 3.8802495 -7353.1738
+61265.05490993382 3.8801315 -7353.5669
+61266.05490998132 3.8800921 -7353.5669
+61267.05491002882 3.8799739 -7353.1738
+61268.05491007632 3.8798559 -7354.1577
+61269.05491012381 3.8798165 -7353.7646
+61270.05491017131 3.8795803 -7354.3545
+61271.05491021881 3.8796196 -7353.7646
+61272.05491026631 3.8793836 -7353.1738
+61273.0549103138 3.879344 -7353.7646
+61274.0549103613 3.879344 -7354.1577
+61275.0549104088 3.8791866 -7353.9609
+61276.0549104563 3.8790686 -7353.1738
+61277.05491050379 3.878911 -7353.7646
+61278.05491055129 3.8788717 -7353.5669
+61279.05491059879 3.8787141 -7353.7646
+61280.05491064629 3.8786354 -7352.9771
+61281.05491069378 3.8785961 -7353.7646
+61282.05491074128 3.8784385 -7354.1577
+61283.05491078878 3.8783991 -7353.5669
+61284.05491083628 3.8783205 -7353.3706
+61285.05491088377 3.8781235 -7355.3384
+61286.05491093127 3.8780055 -7353.1738
+61287.05491097877 3.8779268 -7353.7646
+61288.05491102627 3.8778481 -7354.1577
+61289.05491107376 3.8777692 -7354.3545
+61290.05491112126 3.8775725 -7354.3545
+61291.05491116876 3.8774936 -7353.9609
+61292.05491121626 3.8774543 -7354.3545
+61293.05491126375 3.8772576 -7353.7646
+61294.05491131125 3.8772576 -7353.5669
+61295.05491135875 3.8771 -7354.1577
+61296.05491140625 3.8770607 -7353.7646
+61297.05491145374 3.8769031 -7353.9609
+61298.05491150124 3.8768637 -7353.5669
+61299.05491154874 3.8767064 -7353.9609
+61300.05491159623 3.8765488 -7353.7646
+61301.05491164373 3.8765488 -7353.3706
+61302.05491169123 3.8764307 -7354.3545
+61303.05491173873 3.8763521 -7353.5669
+61304.05491178622 3.8762338 -7353.1738
+61305.05491183372 3.8760765 -7354.9453
+61306.05491188122 3.8760765 -7353.7646
+61307.05491192872 3.8759582 -7353.3706
+61308.05491197621 3.8757222 -7353.5669
+61309.05491202371 3.8757615 -7354.1577
+61310.05491207121 3.8754859 -7353.5669
+61311.05491211871 3.8754859 -7354.1577
+61312.0549121662 3.8753679 -7353.5669
+61313.0549122137 3.8751709 -7353.7646
+61314.0549122612 3.8751709 -7353.7646
+61315.0549123087 3.8750134 -7353.7646
+61316.05491235619 3.8750527 -7353.7646
+61317.05491240369 3.8749347 -7354.1577
+61318.05491245119 3.8747773 -7353.7646
+61319.05491249869 3.8747377 -7353.3706
+61320.05491254618 3.874541 -7353.9609
+61321.05491259368 3.8744624 -7353.9609
+61322.05491264118 3.8743441 -7353.9609
+61323.05491268868 3.8742654 -7353.3706
+61324.05491273617 3.8741474 -7353.3706
+61325.05491278367 3.8740685 -7353.7646
+61326.05491283117 3.8739898 -7353.5669
+61327.05491287867 3.8739111 -7353.5669
+61328.05491292616 3.8736749 -7353.3706
+61329.05491297366 3.8736749 -7354.7485
+61330.05491302116 3.8735569 -7354.1577
+61331.05491306866 3.8733993 -7354.3545
+61332.05491311615 3.8732812 -7354.3545
+61333.05491316365 3.873163 -7353.7646
+61334.05491321115 3.873163 -7353.7646
+61335.05491325865 3.872848 -7353.9609
+61336.05491330614 3.872927 -7354.3545
+61337.05491335364 3.8728087 -7353.1738
+61338.05491340114 3.8726513 -7353.5669
+61339.05491344864 3.8725724 -7353.3706
+61340.05491349613 3.8725331 -7353.3706
+61341.05491354363 3.8724544 -7354.3545
+61342.05491359113 3.8722181 -7353.5669
+61343.05491363863 3.8721395 -7352.7803
+61344.05491368612 3.8720608 -7353.7646
+61345.05491373362 3.8719821 -7354.7485
+61346.05491378112 3.8718638 -7354.1577
+61347.05491382862 3.8715489 -7353.5669
+61348.05491387611 3.8717065 -7353.3706
+61349.05491392361 3.8715096 -7354.3545
+61350.05491397111 3.8714702 -7354.1577
+61351.0549140186 3.8713126 -7353.9609
+61352.0549140661 3.8712733 -7354.1577
+61353.0549141136 3.8711159 -7353.9609
+61354.0549141611 3.870919 -7353.3706
+61355.05491420859 3.8709583 -7353.9609
+61356.05491425609 3.8708403 -7353.1738
+61357.05491430359 3.8707221 -7353.9609
+61358.05491435109 3.8705647 -7353.9609
+61359.05491439858 3.8704467 -7353.9609
+61360.05491444608 3.8703678 -7353.9609
+61361.05491449358 3.8704071 -7353.5669
+61362.05491454108 3.8701711 -7353.3706
+61363.05491458857 3.8699741 -7355.3384
+61364.05491463607 3.8699741 -7353.9609
+61365.05491468357 3.8698955 -7353.9609
+61366.05491473107 3.8697772 -7353.5669
+61367.05491477856 3.8696592 -7353.7646
+61368.05491482606 3.8695805 -7353.5669
+61369.05491487356 3.8695016 -7353.9609
+61370.05491492106 3.8693049 -7353.5669
+61371.05491496855 3.8692262 -7354.1577
+61372.05491501605 3.869108 -7353.5669
+61373.05491506355 3.869108 -7353.5669
+61374.05491511105 3.8689506 -7353.7646
+61375.05491515854 3.8689113 -7353.5669
+61376.05491520604 3.8687537 -7354.3545
+61377.05491525354 3.8687143 -7353.9609
+61378.05491530104 3.8685567 -7353.5669
+61379.05491534853 3.86836 -7353.7646
+61380.05491539603 3.8683994 -7353.1738
+61381.05491544353 3.8681631 -7354.1577
+61382.05491549103 3.8682418 -7353.1738
+61383.05491553852 3.8680844 -7353.5669
+61384.05491558602 3.8678875 -7353.7646
+61385.05491563352 3.8678482 -7354.3545
+61386.05491568102 3.8676908 -7354.1577
+61387.05491572851 3.8676119 -7353.7646
+61388.05491577601 3.8675332 -7353.9609
+61389.05491582351 3.8675725 -7353.1738
+61390.05491587101 3.8672969 -7353.7646
+61391.0549159185 3.8672576 -7353.9609
+61392.054915966 3.8671396 -7354.1577
+61393.0549160135 3.866982 -7353.5669
+61394.054916061 3.866982 -7353.3706
+61395.05491610849 3.8668246 -7354.3545
+61396.05491615599 3.8667459 -7354.1577
+61397.05491620349 3.8665884 -7353.9609
+61398.05491625099 3.8665097 -7353.5669
+61399.05491629848 3.8663914 -7353.9609
+61400.05491634598 3.866431 -7353.5669
+61401.05491639348 3.8661554 -7353.5669
+61402.05491644097 3.8661947 -7353.5669
+61403.05491648847 3.8659585 -7353.3706
+61404.05491653597 3.8659191 -7354.1577
+61405.05491658347 3.8657615 -7353.5669
+61406.05491663096 3.8658009 -7354.5513
+61407.05491667846 3.8656828 -7353.1738
+61408.05491672596 3.8655255 -7354.1577
+61409.05491677346 3.8654072 -7354.1577
+61410.05491682095 3.8653286 -7353.7646
+61411.05491686845 3.8652892 -7353.9609
+61412.05491691595 3.8651316 -7353.5669
+61413.05491696345 3.8650923 -7353.9609
+61414.05491701094 3.8649349 -7353.3706
+61415.05491705844 3.8648956 -7353.7646
+61416.05491710594 3.864738 -7354.5513
+61417.05491715344 3.8646593 -7354.3545
+61418.05491720093 3.8644624 -7353.3706
+61419.05491724843 3.8645017 -7353.7646
+61420.05491729593 3.8643837 -7354.1577
+61421.05491734343 3.864305 -7354.5513
+61422.05491739092 3.8642261 -7354.1577
+61423.05491743842 3.8640687 -7353.9609
+61424.05491748592 3.8640294 -7354.3545
+61425.05491753342 3.8637931 -7353.3706
+61426.05491758091 3.8637145 -7354.5513
+61427.05491762841 3.8635962 -7353.7646
+61428.05491767591 3.8637145 -7354.5513
+61429.05491772341 3.8634782 -7353.5669
+61430.0549177709 3.8633206 -7353.7646
+61431.0549178184 3.8633206 -7353.5669
+61432.0549178659 3.8630846 -7353.7646
+61433.0549179134 3.8630056 -7353.7646
+61434.05491796089 3.8630452 -7354.1577
+61435.05491800839 3.8627696 -7353.7646
+61436.05491805589 3.86273 -7353.5669
+61437.05491810339 3.8626513 -7354.1577
+61438.05491815088 3.8625333 -7353.9609
+61439.05491819838 3.8624151 -7354.3545
+61440.05491824588 3.8622971 -7353.9609
+61441.05491829338 3.8621397 -7354.5513
+61442.05491834087 3.862179 -7354.1577
+61443.05491838837 3.8619428 -7353.7646
+61444.05491843587 3.8618641 -7353.7646
+61445.05491848337 3.8617458 -7353.5669
+61446.05491853086 3.8617065 -7353.5669
+61447.05491857836 3.8616278 -7354.3545
+61448.05491862586 3.8613522 -7352.9771
+61449.05491867336 3.8613915 -7352.9771
+61450.05491872085 3.8611948 -7352.9771
+61451.05491876835 3.8611553 -7353.3706
+61452.05491881585 3.8609586 -7353.5669
+61453.05491886334 3.8609192 -7352.583
+61454.05491891084 3.8608797 -7354.9453
+61455.05491895834 3.8607223 -7356.7168
+61456.05491900584 3.8606043 -7356.5195
+61457.05491905333 3.8606436 -7356.9136
+61458.05491910083 3.860368 -7356.3228
+61459.05491914833 3.8603287 -7354.1577
+61460.05491919583 3.8601711 -7352.9771
+61461.05491924332 3.8600924 -7353.3706
+61462.05491929082 3.8600531 -7353.7646
+61463.05491933832 3.8598955 -7354.9453
+61464.05491938582 3.8596988 -7355.1421
+61465.05491943331 3.8597381 -7355.3384
+61466.05491948081 3.8595805 -7355.3384
+61467.05491952831 3.8594625 -7353.1738
+61468.05491957581 3.8593838 -7354.7485
+61469.0549196233 3.8593445 -7353.9609
+61470.0549196708 3.8591869 -7354.3545
+61471.0549197183 3.8591475 -7354.1577
+61472.0549197658 3.8589506 -7353.3706
+61473.05491981329 3.8589113 -7354.3545
+61474.05491986079 3.8587539 -7353.3706
+61475.05491990829 3.8587143 -7353.7646
+61476.05491995579 3.8585963 -7353.7646
+61477.05492000328 3.8584783 -7353.5669
+61478.05492005078 3.8583601 -7352.9771
+61479.05492009828 3.858242 -7353.3706
+61480.05492014578 3.858124 -7354.3545
+61481.05492019327 3.8580451 -7353.7646
+61482.05492024077 3.8580451 -7354.9453
+61483.05492028827 3.8578484 -7354.5513
+61484.05492033577 3.8578091 -7354.5513
+61485.05492038326 3.8576908 -7353.9609
+61486.05492043076 3.8574545 -7354.1577
+61487.05492047826 3.8574152 -7354.1577
+61488.05492052576 3.8573759 -7353.9609
+61489.05492057325 3.8572185 -7353.5669
+61490.05492062075 3.8571396 -7354.1577
+61491.05492066825 3.8571789 -7353.1738
+61492.05492071575 3.8570216 -7353.5669
+61493.05492076324 3.856864 -7353.7646
+61494.05492081074 3.8568246 -7353.9609
+61495.05492085824 3.8566279 -7354.1577
+61496.05492090574 3.856549 -7354.1577
+61497.05492095323 3.856549 -7353.3706
+61498.05492100073 3.8563917 -7353.3706
+61499.05492104823 3.8561947 -7353.9609
+61500.05492109573 3.8561161 -7352.9771
+61501.05492114322 3.8561554 -7353.3706
+61502.05492119072 3.8559191 -7354.3545
+61503.05492123822 3.8559587 -7354.3545
+61504.05492128572 3.8558404 -7353.1738
+61505.05492133321 3.8557618 -7354.5513
+61506.05492138071 3.8556435 -7353.5669
+61507.05492142821 3.8554862 -7353.9609
+61508.0549214757 3.8554075 -7352.9771
+61509.0549215232 3.8552892 -7353.1738
+61510.0549215707 3.8552892 -7353.7646
+61511.0549216182 3.8550532 -7354.1577
+61512.05492166569 3.8550532 -7353.9609
+61513.05492171319 3.8550136 -7353.5669
+61514.05492176069 3.8548956 -7353.5669
+61515.05492180819 3.8548169 -7353.3706
+61516.05492185568 3.8546593 -7353.7646
+61517.05492190318 3.8545413 -7353.7646
+61518.05492195068 3.854502 -7353.3706
+61519.05492199818 3.8544233 -7353.5669
+61520.05492204567 3.8541477 -7353.5669
+61521.05492209317 3.8542264 -7353.9609
+61522.05492214067 3.8541477 -7354.3545
+61523.05492218817 3.8539507 -7354.7485
+61524.05492223566 3.8538327 -7354.1577
+61525.05492228316 3.8537931 -7353.3706
+61526.05492233066 3.8536358 -7353.9609
+61527.05492237816 3.8535964 -7353.9609
+61528.05492242565 3.8534782 -7354.3545
+61529.05492247315 3.8533602 -7353.7646
+61530.05492252065 3.8533208 -7353.5669
+61531.05492256815 3.8532028 -7353.7646
+61532.05492261564 3.8530059 -7354.1577
+61533.05492266314 3.8529272 -7353.7646
+61534.05492271064 3.8528879 -7354.5513
+61535.05492275814 3.8527696 -7353.5669
+61536.05492280563 3.8526909 -7353.1738
+61537.05492285313 3.8525333 -7353.9609
+61538.05492290063 3.8524547 -7353.9609
+61539.05492294813 3.8524547 -7353.5669
+61540.05492299562 3.8522184 -7354.1577
+61541.05492304312 3.8521397 -7353.9609
+61542.05492309062 3.8521004 -7353.3706
+61543.05492313812 3.8520217 -7353.5669
+61544.05492318561 3.8519428 -7354.1577
+61545.05492323311 3.8518248 -7354.1577
+61546.05492328061 3.8516674 -7354.3545
+61547.05492332811 3.8516674 -7353.9609
+61548.0549233756 3.8515098 -7353.1738
+61549.0549234231 3.8514311 -7353.9609
+61550.0549234706 3.8513525 -7353.9609
+61551.0549235181 3.8512342 -7354.1577
+61552.05492356559 3.8511162 -7353.5669
+61553.05492361309 3.8509979 -7354.1577
+61554.05492366059 3.8509192 -7353.7646
+61555.05492370809 3.8507619 -7354.3545
+61556.05492375558 3.8506436 -7353.1738
+61557.05492380308 3.850683 -7353.1738
+61558.05492385058 3.8506043 -7353.5669
+61559.05492389807 3.8503287 -7354.3545
+61560.05492394557 3.8503287 -7353.3706
+61561.05492399307 3.85025 -7353.3706
+61562.05492404057 3.850132 -7353.7646
+61563.05492408806 3.8500137 -7353.7646
+61564.05492413556 3.8500924 -7353.7646
+61565.05492418306 3.8499351 -7353.3706
+61566.05492423056 3.8496988 -7353.9609
+61567.05492427805 3.8497775 -7353.3706
+61568.05492432555 3.8495021 -7353.5669
+61569.05492437305 3.8494232 -7353.5669
+61570.05492442055 3.8494232 -7354.1577
+61571.05492446804 3.8493052 -7354.1577
+61572.05492451554 3.8492658 -7353.5669
+61573.05492456304 3.8491871 -7353.5669
+61574.05492461054 3.8490689 -7353.5669
+61575.05492465803 3.8489115 -7353.7646
+61576.05492470553 3.8489115 -7354.1577
+61577.05492475303 3.8486753 -7353.5669
+61578.05492480053 3.8486359 -7353.3706
+61579.05492484802 3.8485177 -7353.1738
+61580.05492489552 3.848439 -7354.1577
+61581.05492494302 3.8484783 -7354.5513
+61582.05492499052 3.848321 -7353.3706
+61583.05492503801 3.848124 -7353.3706
+61584.05492508551 3.8480453 -7353.9609
+61585.05492513301 3.848006 -7354.1577
+61586.05492518051 3.8478484 -7352.3862
+61587.054925228 3.8478484 -7353.1738
+61588.0549252755 3.8476911 -7354.3545
+61589.054925323 3.8474941 -7353.5669
+61590.0549253705 3.8475728 -7353.9609
+61591.05492541799 3.8473761 -7354.3545
+61592.05492546549 3.8473761 -7353.1738
+61593.05492551299 3.8472185 -7354.1577
+61594.05492556049 3.8470612 -7354.5513
+61595.05492560798 3.8469036 -7353.3706
+61596.05492565548 3.8468642 -7353.9609
+61597.05492570298 3.8467855 -7354.3545
+61598.05492575048 3.8466673 -7353.7646
+61599.05492579797 3.8466673 -7353.7646
+61600.05492584547 3.8465493 -7353.5669
+61601.05492589297 3.8463523 -7353.9609
+61602.05492594047 3.8463523 -7353.3706
+61603.05492598796 3.8462737 -7353.3706
+61604.05492603546 3.8461556 -7353.1738
+61605.05492608296 3.845998 -7354.5513
+61606.05492613046 3.8458407 -7353.5669
+61607.05492617795 3.8457618 -7354.3545
+61608.05492622545 3.8457224 -7353.7646
+61609.05492627295 3.8455651 -7353.9609
+61610.05492632044 3.8455257 -7353.9609
+61611.05492636794 3.8454468 -7354.1577
+61612.05492641544 3.8452501 -7354.3545
+61613.05492646294 3.8452108 -7354.3545
+61614.05492651043 3.8450925 -7353.1738
+61615.05492655793 3.8450139 -7354.1577
+61616.05492660543 3.8449745 -7353.9609
+61617.05492665293 3.8449352 -7352.9771
+61618.05492670042 3.8447382 -7354.1577
+61619.05492674792 3.8446202 -7354.3545
+61620.05492679542 3.8445809 -7353.5669
+61621.05492684292 3.844502 -7353.9609
+61622.05492689041 3.844384 -7353.9609
+61623.05492693791 3.8442264 -7354.5513
+61624.05492698541 3.844187 -7353.5669
+61625.05492703291 3.8440297 -7353.7646
+61626.0549270804 3.843951 -7353.9609
+61627.0549271279 3.8437541 -7353.7646
+61628.0549271754 3.8437147 -7354.3545
+61629.0549272229 3.8437147 -7353.9609
+61630.05492727039 3.8435965 -7353.7646
+61631.05492731789 3.843636 -7353.7646
+61632.05492736539 3.8433998 -7353.9609
+61633.05492741289 3.8433211 -7354.3545
+61634.05492746038 3.8432815 -7353.7646
+61635.05492750788 3.8431242 -7354.1577
+61636.05492755538 3.8430455 -7354.3545
+61637.05492760288 3.8429272 -7354.3545
+61638.05492765037 3.8427699 -7353.9609
+61639.05492769787 3.8427699 -7354.1577
+61640.05492774537 3.8426123 -7353.3706
+61641.05492779287 3.8425336 -7353.9609
+61642.05492784036 3.8425729 -7353.5669
+61643.05492788786 3.8423367 -7353.3706
+61644.05492793536 3.8422973 -7354.3545
+61645.05492798286 3.8422186 -7353.5669
+61646.05492803035 3.8420217 -7353.7646
+61647.05492807785 3.841943 -7353.7646
+61648.05492812535 3.8419824 -7354.5513
+61649.05492817285 3.841825 -7353.9609
+61650.05492822034 3.8417068 -7352.9771
+61651.05492826784 3.8416281 -7353.1738
+61652.05492831534 3.8415887 -7354.3545
+61653.05492836284 3.8414311 -7354.1577
+61654.05492841033 3.8412344 -7354.5513
+61655.05492845783 3.8412738 -7354.3545
+61656.05492850533 3.8411162 -7353.5669
+61657.05492855283 3.8409982 -7353.7646
+61658.05492860032 3.8409982 -7353.5669
+61659.05492864782 3.8409195 -7353.1738
+61660.05492869532 3.8409195 -7353.5669
+61661.05492874281 3.8406439 -7354.1577
+61662.05492879031 3.8405652 -7354.3545
+61663.05492883781 3.8405652 -7353.9609
+61664.05492888531 3.8402896 -7354.5513
+61665.0549289328 3.8402107 -7354.3545
+61666.0549289803 3.8402107 -7353.9609
+61667.0549290278 3.8400927 -7353.7646
+61668.0549290753 3.8399746 -7353.9609
+61669.05492912279 3.840014 -7353.7646
+61670.05492917029 3.8398564 -7354.1577
+61671.05492921779 3.8397777 -7352.9771
+61672.05492926529 3.839699 -7353.7646
+61673.05492931278 3.839699 -7354.1577
+61674.05492936028 3.8393841 -7353.5669
+61675.05492940778 3.8394628 -7353.7646
+61676.05492945528 3.8393052 -7353.5669
+61677.05492950277 3.8391871 -7354.7485
+61678.05492955027 3.8390298 -7353.1738
+61679.05492959777 3.8389509 -7354.1577
+61680.05492964527 3.8388722 -7353.7646
+61681.05492969276 3.8388329 -7353.7646
+61682.05492974026 3.8387148 -7353.9609
+61683.05492978776 3.8385966 -7353.5669
+61684.05492983526 3.8384786 -7354.7485
+61685.05492988275 3.8383603 -7354.3545
+61686.05492993025 3.8383999 -7354.1577
+61687.05492997775 3.838203 -7353.3706
+61688.05493002525 3.8381636 -7353.5669
+61689.05493007274 3.8379667 -7353.9609
+61690.05493012024 3.8379667 -7353.3706
+61691.05493016774 3.8378093 -7353.7646
+61692.05493021524 3.8375731 -7354.3545
+61693.05493026273 3.8376517 -7354.3545
+61694.05493031023 3.8375337 -7353.3706
+61695.05493035773 3.8373761 -7354.3545
+61696.05493040523 3.8372974 -7353.7646
+61697.05493045272 3.8372188 -7353.7646
+61698.05493050022 3.8371398 -7353.5669
+61699.05493054772 3.8369431 -7354.7485
+61700.05493059522 3.8369038 -7353.9609
+61701.05493064271 3.8368249 -7353.5669
+61702.05493069021 3.8367069 -7354.1577
+61703.05493073771 3.8366282 -7354.1577
+61704.05493078521 3.8365889 -7353.3706
+61705.0549308327 3.8364706 -7354.1577
+61706.0549308802 3.8362739 -7354.1577
+61707.0549309277 3.8362346 -7354.1577
+61708.0549309752 3.8361557 -7354.3545
+61709.05493102269 3.8361163 -7353.7646
+61710.05493107019 3.8359194 -7353.7646
+61711.05493111769 3.835762 -7353.9609
+61712.05493116518 3.8357227 -7354.1577
+61713.05493121268 3.8358014 -7353.5669
+61714.05493126018 3.8355651 -7353.3706
+61715.05493130768 3.8356044 -7353.9609
+61716.05493135517 3.8354077 -7353.3706
+61717.05493140267 3.8352108 -7353.7646
+61718.05493145017 3.8350928 -7353.9609
+61719.05493149767 3.8352501 -7353.9609
+61720.05493154516 3.8350534 -7353.9609
+61721.05493159266 3.8350141 -7353.9609
+61722.05493164016 3.8348172 -7353.7646
+61723.05493168766 3.8346992 -7353.5669
+61724.05493173515 3.8345809 -7353.9609
+61725.05493178265 3.8346596 -7354.1577
+61726.05493183015 3.8344629 -7353.7646
+61727.05493187765 3.8344235 -7353.9609
+61728.05493192514 3.8343053 -7353.9609
+61729.05493197264 3.8341086 -7353.5669
+61730.05493202014 3.834069 -7353.7646
+61731.05493206764 3.833951 -7353.1738
+61732.05493211513 3.8337541 -7353.3706
+61733.05493216263 3.8337541 -7353.9609
+61734.05493221013 3.8337541 -7352.9771
+61735.05493225763 3.8335574 -7353.7646
+61736.05493230512 3.833518 -7353.7646
+61737.05493235262 3.8333604 -7353.5669
+61738.05493240012 3.8332818 -7353.9609
+61739.05493244762 3.8332031 -7353.9609
+61740.05493249511 3.8330848 -7353.3706
+61741.05493254261 3.8330061 -7353.7646
+61742.05493259011 3.8328881 -7353.7646
+61743.05493263761 3.8327699 -7354.3545
+61744.0549326851 3.8327305 -7353.5669
+61745.0549327326 3.8326519 -7353.3706
+61746.0549327801 3.8324549 -7353.7646
+61747.0549328276 3.8324549 -7353.3706
+61748.05493287509 3.8322186 -7354.3545
+61749.05493292259 3.8322186 -7354.3545
+61750.05493297009 3.8321793 -7353.7646
+61751.05493301759 3.8319433 -7354.5513
+61752.05493306508 3.8319433 -7353.5669
+61753.05493311258 3.831825 -7354.1577
+61754.05493316008 3.8317463 -7353.5669
+61755.05493320758 3.8315887 -7353.7646
+61756.05493325507 3.8315887 -7354.1577
+61757.05493330257 3.831392 -7354.3545
+61758.05493335007 3.8313134 -7354.5513
+61759.05493339757 3.8311951 -7353.5669
+61760.05493344506 3.8311558 -7353.5669
+61761.05493349256 3.8310378 -7354.1577
+61762.05493354006 3.8308802 -7353.7646
+61763.05493358755 3.8308015 -7354.1577
+61764.05493363505 3.8307621 -7353.7646
+61765.05493368255 3.8306439 -7354.1577
+61766.05493373005 3.8304472 -7354.1577
+61767.05493377754 3.8304865 -7353.5669
+61768.05493382504 3.8303683 -7353.7646
+61769.05493387254 3.8302896 -7353.7646
+61770.05493392004 3.8302109 -7353.5669
+61771.05493396753 3.8300929 -7353.3706
+61772.05493401503 3.8299747 -7353.5669
+61773.05493406253 3.8299747 -7353.3706
+61774.05493411003 3.8298173 -7353.5669
+61775.05493415752 3.829581 -7353.9609
+61776.05493420502 3.829581 -7353.5669
+61777.05493425252 3.8294234 -7354.1577
+61778.05493430002 3.8293054 -7353.7646
+61779.05493434751 3.8292267 -7353.7646
+61780.05493439501 3.8291481 -7353.5669
+61781.05493444251 3.8291481 -7354.1577
+61782.05493449001 3.8289511 -7354.1577
+61783.0549345375 3.8289118 -7354.3545
+61784.054934585 3.8289511 -7353.5669
+61785.0549346325 3.8286755 -7353.7646
+61786.05493468 3.8286362 -7353.9609
+61787.05493472749 3.8285968 -7353.3706
+61788.05493477499 3.8285179 -7354.7485
+61789.05493482249 3.8283999 -7354.1577
+61790.05493486999 3.8282425 -7353.3706
+61791.05493491748 3.8281636 -7354.1577
+61792.05493496498 3.8280063 -7353.3706
+61793.05493501248 3.8279276 -7353.5669
+61794.05493505998 3.827888 -7354.3545
+61795.05493510747 3.8278093 -7353.5669
+61796.05493515497 3.8277307 -7353.3706
+61797.05493520247 3.8274944 -7353.7646
+61798.05493524997 3.8274944 -7354.5513
+61799.05493529746 3.827455 -7353.9609
+61800.05493534496 3.8272581 -7353.9609
+61801.05493539246 3.8272977 -7353.7646
+61802.05493543996 3.8271008 -7354.5513
+61803.05493548745 3.8270614 -7353.5669
+61804.05493553495 3.8270221 -7354.1577
+61805.05493558245 3.8268645 -7353.9609
+61806.05493562995 3.8267071 -7353.3706
+61807.05493567744 3.8266282 -7354.3545
+61808.05493572494 3.8265889 -7354.1577
+61809.05493577244 3.8264709 -7354.1577
+61810.05493581994 3.8263133 -7353.9609
+61811.05493586743 3.8262739 -7353.9609
+61812.05493591493 3.8261952 -7353.7646
+61813.05493596243 3.8261559 -7353.5669
+61814.05493600992 3.825959 -7354.3545
+61815.05493605742 3.8259983 -7353.5669
+61816.05493610492 3.825841 -7353.1738
+61817.05493615242 3.825644 -7353.5669
+61818.05493619991 3.8257227 -7354.5513
+61819.05493624741 3.8255653 -7353.3706
+61820.05493629491 3.8255653 -7353.7646
+61821.05493634241 3.8254867 -7353.7646
+61822.0549363899 3.8252897 -7354.7485
+61823.0549364374 3.825211 -7354.1577
+61824.0549364849 3.8250535 -7353.1738
+61825.0549365324 3.8248961 -7354.5513
+61826.05493657989 3.8248961 -7353.9609
+61827.05493662739 3.8247778 -7353.7646
+61828.05493667489 3.8247385 -7354.3545
+61829.05493672239 3.8245811 -7353.7646
+61830.05493676988 3.8244629 -7353.5669
+61831.05493681738 3.8243842 -7353.5669
+61832.05493686488 3.8242662 -7353.1738
+61833.05493691238 3.8241479 -7353.7646
+61834.05493695987 3.8240693 -7354.1577
+61835.05493700737 3.8239512 -7353.7646
+61836.05493705487 3.823833 -7352.9771
+61837.05493710237 3.823833 -7352.9771
+61838.05493714986 3.8235574 -7354.1577
+61839.05493719736 3.8236363 -7353.1738
+61840.05493724486 3.8235574 -7353.3706
+61841.05493729236 3.8232818 -7353.1738
+61842.05493733985 3.8233607 -7353.3706
+61843.05493738735 3.8232424 -7354.7485
+61844.05493743485 3.8230064 -7353.5669
+61845.05493748235 3.8229275 -7354.1577
+61846.05493752984 3.8228881 -7354.1577
+61847.05493757734 3.8227308 -7353.3706
+61848.05493762484 3.8225338 -7353.7646
+61849.05493767234 3.8224552 -7353.9609
+61850.05493771983 3.8224158 -7353.9609
+61851.05493776733 3.8223765 -7353.7646
+61852.05493781483 3.8222582 -7353.3706
+61853.05493786233 3.8221009 -7354.5513
+61854.05493790982 3.8219826 -7353.3706
+61855.05493795732 3.8218646 -7353.1738
+61856.05493800482 3.8217859 -7353.1738
+61857.05493805232 3.8216283 -7353.7646
+61858.05493809981 3.8215497 -7354.3545
+61859.05493814731 3.8213527 -7353.9609
+61860.05493819481 3.8212347 -7353.9609
+61861.05493824231 3.8211164 -7354.1577
+61862.0549382898 3.8211164 -7353.9609
+61863.0549383373 3.8209984 -7353.9609
+61864.0549383848 3.8209198 -7353.9609
+61865.05493843229 3.8208411 -7353.9609
+61866.05493847979 3.8206048 -7353.9609
+61867.05493852729 3.8205655 -7354.5513
+61868.05493857479 3.8203685 -7353.3706
+61869.05493862228 3.8203685 -7353.9609
+61870.05493866978 3.8202505 -7354.1577
+61871.05493871728 3.8202505 -7353.3706
+61872.05493876478 3.8199749 -7354.3545
+61873.05493881227 3.8199749 -7353.7646
+61874.05493885977 3.8198173 -7353.3706
+61875.05493890727 3.819778 -7353.9609
+61876.05493895477 3.8196206 -7353.9609
+61877.05493900226 3.8196206 -7353.3706
+61878.05493904976 3.8195024 -7353.7646
+61879.05493909726 3.8192267 -7354.1577
+61880.05493914476 3.8191874 -7353.5669
+61881.05493919225 3.8192267 -7353.1738
+61882.05493923975 3.8191481 -7353.7646
+61883.05493928725 3.81903 -7353.3706
+61884.05493933475 3.8189907 -7353.5669
+61885.05493938224 3.8187938 -7353.7646
+61886.05493942974 3.8187151 -7353.5669
+61887.05493947724 3.8186758 -7354.1577
+61888.05493952474 3.8185182 -7354.1577
+61889.05493957223 3.8184001 -7353.7646
+61890.05493961973 3.8182425 -7354.1577
+61891.05493966723 3.8182032 -7353.5669
+61892.05493971473 3.8180063 -7353.7646
+61893.05493976222 3.8181245 -7354.3545
+61894.05493980972 3.8179276 -7354.1577
+61895.05493985722 3.8178096 -7353.3706
+61896.05493990472 3.817652 -7353.9609
+61897.05493995221 3.8176126 -7353.5669
+61898.05493999971 3.8175733 -7353.5669
+61899.05494004721 3.8174946 -7353.9609
+61900.05494009471 3.8173764 -7353.9609
+61901.0549401422 3.817219 -7353.7646
+61902.0549401897 3.8171403 -7353.5669
+61903.0549402372 3.8169827 -7353.9609
+61904.0549402847 3.8169827 -7353.5669
+61905.05494033219 3.8168254 -7353.9609
+61906.05494037969 3.8167071 -7353.9609
+61907.05494042719 3.8166678 -7353.1738
+61908.05494047469 3.8163922 -7353.9609
+61909.05494052218 3.8164315 -7354.7485
+61910.05494056968 3.8163528 -7353.5669
+61911.05494061718 3.8161952 -7353.3706
+61912.05494066468 3.8160772 -7353.5669
+61913.05494071217 3.8160772 -7354.1577
+61914.05494075967 3.815841 -7353.3706
+61915.05494080717 3.8156836 -7354.3545
+61916.05494085466 3.815526 -7353.5669
+61917.05494090216 3.8155653 -7353.3706
+61918.05494094966 3.8155653 -7353.5669
+61919.05494099716 3.8153293 -7353.9609
+61920.05494104465 3.8152504 -7354.1577
+61921.05494109215 3.8152504 -7354.3545
+61922.05494113965 3.8151324 -7353.5669
+61923.05494118715 3.8148961 -7353.7646
+61924.05494123464 3.8147781 -7353.5669
+61925.05494128214 3.8147388 -7353.9609
+61926.05494132964 3.8146601 -7353.5669
+61927.05494137714 3.8145025 -7353.5669
+61928.05494142463 3.8143845 -7354.3545
+61929.05494147213 3.8143845 -7353.5669
+61930.05494151963 3.8141875 -7354.1577
+61931.05494156713 3.8141875 -7353.3706
+61932.05494161462 3.8139513 -7353.5669
+61933.05494166212 3.8139906 -7354.1577
+61934.05494170962 3.8138332 -7353.3706
+61935.05494175712 3.8136756 -7354.1577
+61936.05494180461 3.8136756 -7353.7646
+61937.05494185211 3.8135183 -7354.5513
+61938.05494189961 3.8134 -7353.3706
+61939.05494194711 3.8132427 -7353.7646
+61940.0549419946 3.8132427 -7353.5669
+61941.0549420421 3.8131247 -7354.1577
+61942.0549420896 3.8130064 -7354.1577
+61943.0549421371 3.8130064 -7353.7646
+61944.05494218459 3.8128097 -7353.9609
+61945.05494223209 3.8127308 -7353.7646
+61946.05494227959 3.8126521 -7353.5669
+61947.05494232709 3.8124552 -7353.3706
+61948.05494237458 3.8124158 -7353.5669
+61949.05494242208 3.8124158 -7353.3706
+61950.05494246958 3.8122585 -7353.5669
+61951.05494251708 3.8121009 -7353.7646
+61952.05494256457 3.8121402 -7354.1577
+61953.05494261207 3.8119042 -7354.5513
+61954.05494265957 3.8118253 -7354.5513
+61955.05494270707 3.8117073 -7354.3545
+61956.05494275456 3.8115103 -7353.7646
+61957.05494280206 3.811471 -7353.7646
+61958.05494284956 3.811471 -7353.3706
+61959.05494289706 3.8113136 -7353.9609
+61960.05494294455 3.8112743 -7353.7646
+61961.05494299205 3.8111954 -7354.3545
+61962.05494303955 3.811038 -7353.5669
+61963.05494308705 3.8109987 -7353.5669
+61964.05494313454 3.8108804 -7353.7646
+61965.05494318204 3.8107231 -7354.1577
+61966.05494322954 3.8106441 -7353.7646
+61967.05494327703 3.8105261 -7353.9609
+61968.05494332453 3.8104081 -7354.5513
+61969.05494337203 3.8102505 -7353.9609
+61970.05494341953 3.8102112 -7353.9609
+61971.05494346702 3.8100538 -7353.3706
+61972.05494351452 3.8099356 -7354.1577
+61973.05494356202 3.8100538 -7353.3706
+61974.05494360952 3.8098176 -7354.7485
+61975.05494365701 3.8096993 -7353.5669
+61976.05494370451 3.8096206 -7353.5669
+61977.05494375201 3.8095813 -7354.3545
+61978.05494379951 3.809345 -7353.9609
+61979.054943847 3.8093057 -7353.5669
+61980.0549438945 3.8091877 -7354.3545
+61981.054943942 3.8090694 -7353.3706
+61982.0549439895 3.8088727 -7353.9609
+61983.05494403699 3.808912 -7353.3706
+61984.05494408449 3.8087544 -7353.7646
+61985.05494413199 3.8087151 -7354.1577
+61986.05494417949 3.8085577 -7352.7803
+61987.05494422698 3.8084395 -7354.3545
+61988.05494427448 3.8084002 -7353.5669
+61989.05494432198 3.8083608 -7353.7646
+61990.05494436948 3.8081245 -7354.7485
+61991.05494441697 3.8080459 -7353.3706
+61992.05494446447 3.8079672 -7354.5513
+61993.05494451197 3.8077703 -7353.9609
+61994.05494455947 3.8078096 -7353.7646
+61995.05494460696 3.8076129 -7354.1577
+61996.05494465446 3.807534 -7354.5513
+61997.05494470196 3.807416 -7353.7646
+61998.05494474946 3.8073373 -7354.1577
+61999.05494479695 3.8072584 -7353.5669
+62000.05494484445 3.807101 -7353.7646
+62001.05494489195 3.806983 -7353.5669
+62002.05494493945 3.8069041 -7353.5669
+62003.05494498694 3.8068647 -7354.1577
+62004.05494503444 3.8067074 -7354.1577
+62005.05494508194 3.8065498 -7355.1421
+62006.05494512944 3.8064711 -7353.9609
+62007.05494517693 3.8063531 -7353.1738
+62008.05494522443 3.8062742 -7353.5669
+62009.05494527193 3.8060775 -7354.1577
+62010.05494531943 3.8059986 -7353.7646
+62011.05494536692 3.8059592 -7354.3545
+62012.05494541442 3.8059199 -7353.3706
+62013.05494546192 3.8058019 -7354.1577
+62014.05494550942 3.8056049 -7353.7646
+62015.05494555691 3.8056049 -7353.9609
+62016.05494560441 3.8054476 -7353.1738
+62017.05494565191 3.8053687 -7353.9609
+62018.0549456994 3.8052506 -7353.9609
+62019.0549457469 3.8052113 -7354.5513
+62020.0549457944 3.8050144 -7353.3706
+62021.0549458419 3.8049357 -7354.3545
+62022.05494588939 3.8047781 -7354.3545
+62023.05494593689 3.8047388 -7353.5669
+62024.05494598439 3.8046994 -7353.5669
+62025.05494603189 3.8044238 -7354.9453
+62026.05494607938 3.8043845 -7354.3545
+62027.05494612688 3.8043451 -7353.7646
+62028.05494617438 3.8041878 -7353.9609
+62029.05494622188 3.8040695 -7354.1577
+62030.05494626937 3.8039908 -7353.7646
+62031.05494631687 3.8039122 -7353.3706
+62032.05494636437 3.8037152 -7354.1577
+62033.05494641187 3.8037546 -7353.3706
+62034.05494645936 3.8036366 -7353.3706
+62035.05494650686 3.8034003 -7354.1577
+62036.05494655436 3.8034003 -7353.7646
+62037.05494660186 3.8032427 -7354.1577
+62038.05494664935 3.8032033 -7354.1577
+62039.05494669685 3.8031247 -7353.3706
+62040.05494674435 3.8029673 -7353.5669
+62041.05494679185 3.8028884 -7353.5669
+62042.05494683934 3.8028097 -7353.5669
+62043.05494688684 3.8027704 -7353.3706
+62044.05494693434 3.8026128 -7353.7646
+62045.05494698184 3.8024948 -7353.7646
+62046.05494702933 3.8023767 -7353.7646
+62047.05494707683 3.8023374 -7353.7646
+62048.05494712433 3.8022192 -7354.1577
+62049.05494717183 3.8021798 -7354.1577
+62050.05494721932 3.8020225 -7354.1577
+62051.05494726682 3.8019435 -7353.9609
+62052.05494731432 3.8017862 -7353.5669
+62053.05494736182 3.8017468 -7353.7646
+62054.05494740931 3.8017073 -7353.3706
+62055.05494745681 3.8015499 -7354.9453
+62056.05494750431 3.8014712 -7353.9609
+62057.05494755181 3.8014319 -7352.9771
+62058.0549475993 3.8011956 -7353.3706
+62059.0549476468 3.8011169 -7353.9609
+62060.0549476943 3.8009987 -7354.1577
+62061.0549477418 3.80092 -7353.5669
+62062.05494778929 3.800802 -7354.1577
+62063.05494783679 3.8007624 -7353.9609
+62064.05494788429 3.8006051 -7354.1577
+62065.05494793179 3.8005657 -7353.5669
+62066.05494797928 3.800487 -7353.7646
+62067.05494802678 3.8004081 -7353.7646
+62068.05494807428 3.8002508 -7353.5669
+62069.05494812177 3.8001325 -7352.3862
+62070.05494816927 3.8000932 -7353.5669
+62071.05494821677 3.8000145 -7353.7646
+62072.05494826427 3.7998176 -7353.7646
+62073.05494831176 3.7997782 -7353.9609
+62074.05494835926 3.7996602 -7353.7646
+62075.05494840676 3.7996209 -7354.5513
+62076.05494845426 3.799542 -7353.9609
+62077.05494850175 3.7993846 -7354.1577
+62078.05494854925 3.7993059 -7353.1738
+62079.05494859675 3.7992666 -7353.9609
+62080.05494864425 3.7991483 -7353.7646
+62081.05494869174 3.7990696 -7353.3706
+62082.05494873924 3.7989516 -7354.3545
+62083.05494878674 3.7988334 -7353.9609
+62084.05494883424 3.798794 -7353.7646
+62085.05494888173 3.7987547 -7353.7646
+62086.05494892923 3.7985184 -7354.7485
+62087.05494897673 3.7985184 -7353.9609
+62088.05494902423 3.7982821 -7353.7646
+62089.05494907172 3.7982821 -7354.3545
+62090.05494911922 3.7981641 -7353.5669
+62091.05494916672 3.7980065 -7353.5669
+62092.05494921422 3.7979279 -7353.7646
+62093.05494926171 3.7978098 -7353.9609
+62094.05494930921 3.7976522 -7354.3545
+62095.05494935671 3.7975342 -7353.9609
+62096.05494940421 3.7974162 -7353.7646
+62097.0549494517 3.7973373 -7353.9609
+62098.0549494992 3.797298 -7353.9609
+62099.0549495467 3.7970223 -7353.9609
+62100.0549495942 3.7968256 -7354.1577
+62101.05494964169 3.7967863 -7353.9609
+62102.05494968919 3.7966681 -7353.9609
+62103.05494973669 3.7965107 -7353.5669
+62104.05494978419 3.7964711 -7353.9609
+62105.05494983168 3.7963531 -7354.5513
+62106.05494987918 3.7962351 -7354.1577
+62107.05494992668 3.7960775 -7353.7646
+62108.05494997418 3.7958808 -7354.1577
+62109.05495002167 3.7959595 -7353.5669
+62110.05495006917 3.7957625 -7353.3706
+62111.05495011667 3.7956052 -7353.5669
+62112.05495016417 3.7955263 -7354.1577
+62113.05495021166 3.7954476 -7353.1738
+62114.05495025916 3.7954082 -7353.9609
+62115.05495030666 3.7952509 -7354.3545
+62116.05495035416 3.7952509 -7354.1577
+62117.05495040165 3.7950146 -7354.3545
+62118.05495044915 3.7949359 -7353.1738
+62119.05495049665 3.7948964 -7353.3706
+62120.05495054415 3.7947783 -7354.5513
+62121.05495059164 3.7945814 -7353.7646
+62122.05495063914 3.7946208 -7353.1738
+62123.05495068664 3.7945421 -7354.1577
+62124.05495073413 3.7944634 -7353.1738
+62125.05495078163 3.7943454 -7353.7646
+62126.05495082913 3.7942271 -7354.1577
+62127.05495087663 3.7942665 -7353.1738
+62128.05495092412 3.7941484 -7353.1738
+62129.05495097162 3.7941091 -7352.9771
+62130.05495101912 3.7938728 -7353.7646
+62131.05495106662 3.7937942 -7354.3545
+62132.05495111411 3.7936366 -7353.9609
+62133.05495116161 3.7936366 -7354.1577
+62134.05495120911 3.7934792 -7353.9609
+62135.05495125661 3.7935185 -7353.3706
+62136.0549513041 3.7933216 -7353.7646
+62137.0549513516 3.7932036 -7354.1577
+62138.0549513991 3.7932036 -7353.3706
+62139.0549514466 3.793046 -7353.5669
+62140.05495149409 3.7930067 -7353.9609
+62141.05495154159 3.79281 -7354.3545
+62142.05495158909 3.792928 -7354.1577
+62143.05495163659 3.792613 -7353.9609
+62144.05495168408 3.7925344 -7353.5669
+62145.05495173158 3.7924554 -7353.9609
+62146.05495177908 3.7922981 -7353.1738
+62147.05495182658 3.7922194 -7353.9609
+62148.05495187407 3.7921405 -7353.5669
+62149.05495192157 3.7919831 -7354.1577
+62150.05495196907 3.7918651 -7352.7803
+62151.05495201657 3.7918255 -7354.1577
+62152.05495206406 3.7917469 -7354.3545
+62153.05495211156 3.7916288 -7353.5669
+62154.05495215906 3.7915502 -7354.5513
+62155.05495220656 3.7915106 -7354.7485
+62156.05495225405 3.7913139 -7352.7803
+62157.05495230155 3.7911563 -7354.1577
+62158.05495234905 3.7910776 -7353.3706
+62159.05495239655 3.7909989 -7353.5669
+62160.05495244404 3.7908807 -7353.5669
+62161.05495249154 3.7907627 -7353.9609
+62162.05495253904 3.7907233 -7353.5669
+62163.05495258654 3.7905264 -7353.7646
+62164.05495263403 3.7904871 -7353.1738
+62165.05495268153 3.7902508 -7353.9609
+62166.05495272903 3.7902508 -7354.5513
+62167.05495277653 3.7901328 -7352.7803
+62168.05495282402 3.7900147 -7354.3545
+62169.05495287152 3.7898965 -7353.5669
+62170.05495291902 3.7898178 -7353.1738
+62171.05495296652 3.7895029 -7354.5513
+62172.05495301401 3.7896209 -7354.3545
+62173.05495306151 3.7894242 -7353.9609
+62174.05495310901 3.7893059 -7353.5669
+62175.0549531565 3.7891092 -7353.1738
+62176.054953204 3.7891092 -7353.3706
+62177.0549532515 3.788991 -7354.7485
+62178.054953299 3.788991 -7353.5669
+62179.05495334649 3.7888336 -7352.7803
+62180.05495339399 3.7887943 -7354.5513
+62181.05495344149 3.788676 -7353.7646
+62182.05495348899 3.7884398 -7354.3545
+62183.05495353648 3.7884004 -7353.9609
+62184.05495358398 3.7883611 -7354.1577
+62185.05495363148 3.7883611 -7353.9609
+62186.05495367898 3.7881248 -7354.5513
+62187.05495372647 3.7880068 -7353.9609
+62188.05495377397 3.7880068 -7354.7485
+62189.05495382147 3.7878888 -7354.3545
+62190.05495386897 3.7877705 -7353.1738
+62191.05495391646 3.7876525 -7353.5669
+62192.05495396396 3.7875342 -7353.7646
+62193.05495401146 3.7873769 -7353.5669
+62194.05495405896 3.7872589 -7353.9609
+62195.05495410645 3.7871799 -7353.7646
+62196.05495415395 3.7871406 -7353.5669
+62197.05495420145 3.7870226 -7353.5669
+62198.05495424895 3.7869043 -7354.1577
+62199.05495429644 3.7867863 -7353.5669
+62200.05495434394 3.786629 -7354.1577
+62201.05495439144 3.7865107 -7354.1577
+62202.05495443894 3.7863927 -7353.9609
+62203.05495448643 3.7863533 -7354.3545
+62204.05495453393 3.7862744 -7354.1577
+62205.05495458143 3.7862744 -7353.9609
+62206.05495462893 3.7861958 -7352.583
+62207.05495467642 3.7858415 -7352.9771
+62208.05495472392 3.7858021 -7353.9609
+62209.05495477142 3.7857628 -7353.3706
+62210.05495481892 3.7858021 -7353.1738
+62211.05495486641 3.7855659 -7354.1577
+62212.05495491391 3.7854872 -7354.3545
+62213.05495496141 3.7854085 -7353.9609
+62214.05495500891 3.7852902 -7354.3545
+62215.0549550564 3.7851722 -7354.3545
+62216.0549551039 3.7850146 -7353.7646
+62217.0549551514 3.784936 -7353.7646
+62218.0549551989 3.7848573 -7353.7646
+62219.05495524639 3.7847786 -7354.3545
+62220.05495529389 3.7846603 -7354.3545
+62221.05495534139 3.7846997 -7353.7646
+62222.05495538889 3.7844241 -7353.5669
+62223.05495543638 3.7844241 -7353.5669
+62224.05495548388 3.7842274 -7353.1738
+62225.05495553138 3.7841487 -7353.9609
+62226.05495557887 3.7840304 -7353.5669
+62227.05495562637 3.7841091 -7353.7646
+62228.05495567387 3.7839518 -7353.5669
+62229.05495572137 3.7837155 -7353.3706
+62230.05495576886 3.7836368 -7354.1577
+62231.05495581636 3.7835186 -7354.9453
+62232.05495586386 3.7834399 -7353.7646
+62233.05495591136 3.7834005 -7354.1577
+62234.05495595885 3.7831643 -7353.3706
+62235.05495600635 3.7831249 -7354.3545
+62236.05495605385 3.7828887 -7353.1738
+62237.05495610135 3.7830069 -7354.1577
+62238.05495614884 3.7827706 -7354.3545
+62239.05495619634 3.7825344 -7353.5669
+62240.05495624384 3.782495 -7354.1577
+62241.05495629134 3.782377 -7353.7646
+62242.05495633883 3.7822983 -7354.1577
+62243.05495638633 3.7821407 -7353.9609
+62244.05495643383 3.7821014 -7353.9609
+62245.05495648133 3.7819438 -7353.7646
+62246.05495652882 3.7818651 -7353.3706
+62247.05495657632 3.7817078 -7354.1577
+62248.05495662382 3.7816682 -7353.1738
+62249.05495667132 3.7815895 -7353.5669
+62250.05495671881 3.7815108 -7354.3545
+62251.05495676631 3.7814322 -7354.3545
+62252.05495681381 3.7812746 -7353.7646
+62253.05495686131 3.7811172 -7353.7646
+62254.0549569088 3.7809989 -7354.3545
+62255.0549569563 3.7808809 -7353.7646
+62256.0549570038 3.7808416 -7353.7646
+62257.0549570513 3.7807629 -7353.7646
+62258.05495709879 3.780566 -7353.3706
+62259.05495714629 3.780448 -7353.9609
+62260.05495719379 3.780369 -7354.5513
+62261.05495724129 3.7804084 -7353.9609
+62262.05495728878 3.7800934 -7353.5669
+62263.05495733628 3.7799754 -7353.7646
+62264.05495738378 3.7798967 -7353.5669
+62265.05495743128 3.7798178 -7353.7646
+62266.05495747877 3.7796211 -7353.3706
+62267.05495752627 3.7796211 -7354.1577
+62268.05495757377 3.7794242 -7353.3706
+62269.05495762127 3.7793062 -7353.3706
+62270.05495766876 3.7791486 -7353.3706
+62271.05495771626 3.7790699 -7353.9609
+62272.05495776376 3.7789519 -7353.7646
+62273.05495781126 3.7789125 -7353.5669
+62274.05495785875 3.7787943 -7353.7646
+62275.05495790625 3.7786369 -7353.1738
+62276.05495795375 3.7785187 -7353.7646
+62277.05495800124 3.778322 -7353.3706
+62278.05495804874 3.778322 -7353.3706
+62279.05495809624 3.778125 -7353.7646
+62280.05495814374 3.7780464 -7353.9609
+62281.05495819123 3.7779675 -7353.5669
+62282.05495823873 3.778007 -7352.9771
+62283.05495828623 3.7778494 -7353.5669
+62284.05495833373 3.7776525 -7353.5669
+62285.05495838122 3.7775345 -7354.1577
+62286.05495842872 3.7774558 -7353.7646
+62287.05495847622 3.7774165 -7353.9609
+62288.05495852372 3.7772195 -7353.7646
+62289.05495857121 3.7771409 -7354.5513
+62290.05495861871 3.7770226 -7354.1577
+62291.05495866621 3.7769046 -7353.7646
+62292.05495871371 3.7768259 -7353.9609
+62293.0549587612 3.7768259 -7354.1577
+62294.0549588087 3.7765503 -7353.3706
+62295.0549588562 3.776511 -7353.7646
+62296.0549589037 3.776432 -7353.5669
+62297.05495895119 3.7762747 -7353.9609
+62298.05495899869 3.776196 -7354.3545
+62299.05495904619 3.7760384 -7353.7646
+62300.05495909369 3.7759991 -7353.7646
+62301.05495914118 3.7758021 -7353.7646
+62302.05495918868 3.7757628 -7353.5669
+62303.05495923618 3.7755268 -7353.7646
+62304.05495928368 3.7755661 -7354.3545
+62305.05495933117 3.7753692 -7354.1577
+62306.05495937867 3.7752118 -7353.7646
+62307.05495942617 3.7752118 -7353.5669
+62308.05495947367 3.7750542 -7353.9609
+62309.05495952116 3.7748179 -7353.9609
+62310.05495956866 3.7748179 -7353.7646
+62311.05495961616 3.7747393 -7353.7646
+62312.05495966366 3.7746999 -7354.3545
+62313.05495971115 3.7744243 -7353.1738
+62314.05495975865 3.7743456 -7353.7646
+62315.05495980615 3.7742274 -7353.9609
+62316.05495985365 3.7739913 -7353.7646
+62317.05495990114 3.7740307 -7354.5513
+62318.05495994864 3.7737944 -7354.1577
+62319.05495999614 3.7736764 -7353.7646
+62320.05496004364 3.7734795 -7352.9771
+62321.05496009113 3.7734401 -7353.7646
+62322.05496013863 3.7734008 -7354.3545
+62323.05496018613 3.7731645 -7353.9609
+62324.05496023363 3.7731252 -7353.9609
+62325.05496028112 3.7730463 -7353.9609
+62326.05496032862 3.7729282 -7353.7646
+62327.05496037612 3.7727313 -7354.1577
+62328.05496042361 3.7726133 -7353.9609
+62329.05496047111 3.772692 -7353.5669
+62330.05496051861 3.7725739 -7354.3545
+62331.05496056611 3.7724164 -7354.7485
+62332.0549606136 3.772259 -7353.5669
+62333.0549606611 3.7721803 -7353.9609
+62334.0549607086 3.772141 -7354.1577
+62335.0549607561 3.771944 -7353.9609
+62336.05496080359 3.771826 -7353.1738
+62337.05496085109 3.7717078 -7353.7646
+62338.05496089859 3.7716684 -7353.5669
+62339.05496094609 3.7715504 -7353.3706
+62340.05496099358 3.7713928 -7353.9609
+62341.05496104108 3.7713535 -7353.3706
+62342.05496108858 3.7713535 -7353.7646
+62343.05496113608 3.7711959 -7354.3545
+62344.05496118357 3.7709205 -7353.9609
+62345.05496123107 3.7709599 -7354.1577
+62346.05496127857 3.7708416 -7353.9609
+62347.05496132607 3.7708023 -7354.5513
+62348.05496137356 3.7707236 -7354.1577
+62349.05496142106 3.7705266 -7353.3706
+62350.05496146856 3.7704873 -7354.1577
+62351.05496151606 3.7703693 -7353.5669
+62352.05496156355 3.7701724 -7353.5669
+62353.05496161105 3.770133 -7353.9609
+62354.05496165855 3.7700543 -7354.1577
+62355.05496170605 3.7698574 -7354.3545
+62356.05496175354 3.7699361 -7353.5669
+62357.05496180104 3.7697787 -7353.5669
+62358.05496184854 3.7696211 -7354.3545
+62359.05496189604 3.7695425 -7353.1738
+62360.05496194353 3.7695425 -7354.1577
+62361.05496199103 3.7693455 -7353.7646
+62362.05496203853 3.7693455 -7353.7646
+62363.05496208603 3.7692275 -7353.9609
+62364.05496213352 3.7691095 -7353.7646
+62365.05496218102 3.7689519 -7353.7646
+62366.05496222852 3.7688732 -7353.9609
+62367.05496227602 3.7687945 -7353.7646
+62368.05496232351 3.7687945 -7353.7646
+62369.05496237101 3.7685189 -7354.9453
+62370.05496241851 3.7684402 -7354.1577
+62371.05496246601 3.7684007 -7353.9609
+62372.0549625135 3.768322 -7353.9609
+62373.054962561 3.7681646 -7353.7646
+62374.0549626085 3.7681646 -7354.3545
+62375.054962656 3.7680857 -7354.1577
+62376.05496270349 3.7679284 -7354.3545
+62377.05496275099 3.7678497 -7354.5513
+62378.05496279849 3.7677314 -7353.5669
+62379.05496284598 3.7676528 -7354.3545
+62380.05496289348 3.7674952 -7354.1577
+62381.05496294098 3.7674558 -7354.5513
+62382.05496298848 3.7672198 -7354.3545
+62383.05496303597 3.7671802 -7352.7803
+62384.05496308347 3.7669835 -7354.1577
+62385.05496313097 3.7668259 -7353.3706
+62386.05496317847 3.7667866 -7354.1577
+62387.05496322596 3.7667079 -7353.9609
+62388.05496327346 3.7665503 -7353.7646
+62389.05496332096 3.7664323 -7354.5513
+62390.05496336846 3.7663536 -7353.3706
+62391.05496341595 3.7662749 -7354.3545
+62392.05496346345 3.766078 -7353.7646
+62393.05496351095 3.7661173 -7353.9609
+62394.05496355845 3.7659597 -7354.5513
+62395.05496360594 3.7658024 -7353.1738
+62396.05496365344 3.7656448 -7353.5669
+62397.05496370094 3.7656448 -7353.9609
+62398.05496374844 3.7655661 -7354.5513
+62399.05496379593 3.7655268 -7353.1738
+62400.05496384343 3.7653694 -7354.1577
+62401.05496389093 3.7653298 -7353.7646
+62402.05496393843 3.7651331 -7353.7646
+62403.05496398592 3.7650149 -7353.7646
+62404.05496403342 3.7648969 -7353.3706
+62405.05496408092 3.7648182 -7354.5513
+62406.05496412842 3.7646606 -7353.9609
+62407.05496417591 3.7646999 -7353.5669
+62408.05496422341 3.7644639 -7353.9609
+62409.05496427091 3.764267 -7353.9609
+62410.05496431841 3.7643063 -7353.3706
+62411.0549643659 3.7641094 -7353.1738
+62412.0549644134 3.763952 -7354.3545
+62413.0549644609 3.763952 -7353.7646
+62414.0549645084 3.7637551 -7354.5513
+62415.05496455589 3.7636764 -7354.7485
+62416.05496460339 3.7636764 -7354.1577
+62417.05496465089 3.763519 -7354.3545
+62418.05496469839 3.763519 -7353.7646
+62419.05496474588 3.7633615 -7353.9609
+62420.05496479338 3.7632434 -7354.1577
+62421.05496484088 3.7631645 -7354.3545
+62422.05496488838 3.7630465 -7353.9609
+62423.05496493587 3.7628891 -7353.7646
+62424.05496498337 3.7628891 -7353.5669
+62425.05496503087 3.7626922 -7353.1738
+62426.05496507837 3.7626135 -7353.3706
+62427.05496512586 3.7624559 -7353.3706
+62428.05496517336 3.7624166 -7353.7646
+62429.05496522086 3.7622986 -7353.3706
+62430.05496526835 3.7622197 -7354.5513
+62431.05496531585 3.7621017 -7354.1577
+62432.05496536335 3.7619441 -7353.7646
+62433.05496541085 3.7619047 -7353.9609
+62434.05496545834 3.7617867 -7353.9609
+62435.05496550584 3.7615898 -7354.1577
+62436.05496555334 3.7614324 -7353.5669
+62437.05496560084 3.7613931 -7353.7646
+62438.05496564833 3.7612748 -7354.1577
+62439.05496569583 3.7611175 -7353.9609
+62440.05496574333 3.7609992 -7353.3706
+62441.05496579083 3.7608418 -7352.9771
+62442.05496583832 3.7608812 -7353.7646
+62443.05496588582 3.7607238 -7353.9609
+62444.05496593332 3.7605662 -7353.9609
+62445.05496598082 3.7604876 -7353.7646
+62446.05496602831 3.7605269 -7353.7646
+62447.05496607581 3.7602906 -7353.3706
+62448.05496612331 3.7602513 -7353.5669
+62449.05496617081 3.7601333 -7353.3706
+62450.0549662183 3.7600543 -7354.3545
+62451.0549662658 3.759897 -7353.5669
+62452.0549663133 3.7597394 -7353.7646
+62453.0549663608 3.7596607 -7353.3706
+62454.05496640829 3.7596214 -7353.3706
+62455.05496645579 3.7595427 -7353.1738
+62456.05496650329 3.7594244 -7353.9609
+62457.05496655079 3.7592671 -7354.5513
+62458.05496659828 3.7592278 -7353.3706
+62459.05496664578 3.7591884 -7355.3384
+62460.05496669328 3.7589521 -7353.7646
+62461.05496674078 3.7588732 -7352.7803
+62462.05496678827 3.7587159 -7353.9609
+62463.05496683577 3.7585979 -7353.5669
+62464.05496688327 3.7585189 -7354.3545
+62465.05496693077 3.7584009 -7353.9609
+62466.05496697826 3.7582829 -7354.1577
+62467.05496702576 3.7581253 -7353.9609
+62468.05496707326 3.7579679 -7354.1577
+62469.05496712076 3.757889 -7353.5669
+62470.05496716825 3.757889 -7354.3545
+62471.05496721575 3.7578497 -7354.1577
+62472.05496726325 3.757653 -7353.1738
+62473.05496731075 3.7575741 -7353.7646
+62474.05496735824 3.7574954 -7354.1577
+62475.05496740574 3.757338 -7353.7646
+62476.05496745324 3.7573774 -7353.3706
+62477.05496750074 3.7572198 -7353.5669
+62478.05496754823 3.7570624 -7353.7646
+62479.05496759573 3.7569442 -7354.3545
+62480.05496764323 3.7568262 -7353.9609
+62481.05496769072 3.7567475 -7354.3545
+62482.05496773822 3.7565506 -7353.7646
+62483.05496778572 3.7565899 -7353.5669
+62484.05496783322 3.7565899 -7354.1577
+62485.05496788071 3.7564325 -7353.7646
+62486.05496792821 3.7563143 -7354.1577
+62487.05496797571 3.7561963 -7354.5513
+62488.05496802321 3.7561569 -7353.3706
+62489.0549680707 3.756078 -7353.9609
+62490.0549681182 3.7560387 -7353.5669
+62491.0549681657 3.7558813 -7354.5513
+62492.0549682132 3.755842 -7354.1577
+62493.05496826069 3.7557237 -7353.7646
+62494.05496830819 3.7556844 -7353.1738
+62495.05496835569 3.755527 -7353.5669
+62496.05496840319 3.7554088 -7353.5669
+62497.05496845068 3.7553694 -7353.1738
+62498.05496849818 3.7551725 -7354.1577
+62499.05496854568 3.7551725 -7354.5513
+62500.05496859318 3.7549758 -7353.5669
+62501.05496864067 3.7548575 -7353.1738
+62502.05496868817 3.7548575 -7353.7646
+62503.05496873567 3.7546608 -7354.1577
+62504.05496878317 3.7546608 -7353.3706
+62505.05496883066 3.7545426 -7353.7646
+62506.05496887816 3.7543852 -7354.3545
+62507.05496892566 3.7542276 -7353.7646
+62508.05496897316 3.7541883 -7353.9609
+62509.05496902065 3.754149 -7353.9609
+62510.05496906815 3.7540703 -7354.1577
+62511.05496911565 3.7539916 -7353.7646
+62512.05496916315 3.7538733 -7353.9609
+62513.05496921064 3.7537553 -7354.3545
+62514.05496925814 3.7535191 -7354.1577
+62515.05496930564 3.7534404 -7354.1577
+62516.05496935314 3.7534797 -7353.5669
+62517.05496940063 3.7532828 -7354.1577
+62518.05496944813 3.7531254 -7352.9771
+62519.05496949563 3.7530468 -7353.3706
+62520.05496954313 3.7530072 -7353.1738
+62521.05496959062 3.7528892 -7353.5669
+62522.05496963812 3.7528892 -7354.3545
+62523.05496968562 3.7527318 -7353.5669
+62524.05496973312 3.7525349 -7353.9609
+62525.05496978061 3.7524168 -7353.3706
+62526.05496982811 3.7524168 -7353.9609
+62527.05496987561 3.7522199 -7354.3545
+62528.05496992311 3.7521019 -7352.9771
+62529.0549699706 3.7521412 -7354.3545
+62530.0549700181 3.7519443 -7354.3545
+62531.0549700656 3.7518656 -7353.9609
+62532.05497011309 3.7517474 -7354.1577
+62533.05497016059 3.7517474 -7354.5513
+62534.05497020809 3.7515507 -7353.1738
+62535.05497025559 3.7515507 -7353.9609
+62536.05497030308 3.7512751 -7353.3706
+62537.05497035058 3.7512751 -7353.9609
+62538.05497039808 3.7510781 -7354.5513
+62539.05497044558 3.7509995 -7353.7646
+62540.05497049307 3.7508419 -7353.7646
+62541.05497054057 3.7506845 -7354.3545
+62542.05497058807 3.7506452 -7354.1577
+62543.05497063557 3.7505269 -7353.7646
+62544.05497068306 3.7503302 -7353.1738
+62545.05497073056 3.7502515 -7354.3545
+62546.05497077806 3.7501333 -7354.3545
+62547.05497082556 3.749897 -7354.1577
+62548.05497087305 3.749779 -7353.5669
+62549.05497092055 3.7497003 -7353.7646
+62550.05497096805 3.7495427 -7353.5669
+62551.05497101555 3.7495427 -7354.5513
+62552.05497106304 3.749464 -7354.1577
+62553.05497111054 3.7492278 -7354.3545
+62554.05497115804 3.7490704 -7354.5513
+62555.05497120554 3.7490311 -7354.3545
+62556.05497125303 3.7488735 -7353.3706
+62557.05497130053 3.7487948 -7353.5669
+62558.05497134803 3.7488735 -7354.3545
+62559.05497139553 3.7486372 -7354.7485
+62560.05497144302 3.7484798 -7353.7646
+62561.05497149052 3.7484405 -7354.1577
+62562.05497153802 3.7483616 -7353.7646
+62563.05497158552 3.7481256 -7353.9609
+62564.05497163301 3.7482042 -7353.9609
+62565.05497168051 3.7481256 -7354.9453
+62566.05497172801 3.7479286 -7353.9609
+62567.05497177551 3.747968 -7353.7646
+62568.054971823 3.7478106 -7354.1577
+62569.0549718705 3.747653 -7353.5669
+62570.054971918 3.747535 -7354.9453
+62571.0549719655 3.747535 -7353.7646
+62572.05497201299 3.747535 -7354.3545
+62573.05497206049 3.7473774 -7353.3706
+62574.05497210799 3.7471807 -7353.3706
+62575.05497215549 3.74722 -7353.7646
+62576.05497220298 3.7471411 -7354.5513
+62577.05497225048 3.7469444 -7353.7646
+62578.05497229798 3.7467868 -7353.9609
+62579.05497234548 3.7468262 -7353.3706
+62580.05497239297 3.7467082 -7353.9609
+62581.05497244047 3.7465508 -7353.5669
+62582.05497248797 3.7464325 -7354.5513
+62583.05497253546 3.7462752 -7353.5669
+62584.05497258296 3.7461569 -7353.7646
+62585.05497263046 3.7460783 -7353.1738
+62586.05497267796 3.7459207 -7354.1577
+62587.05497272545 3.7459207 -7353.7646
+62588.05497277295 3.745724 -7353.9609
+62589.05497282045 3.7456057 -7353.9609
+62590.05497286795 3.745527 -7354.1577
+62591.05497291544 3.745409 -7354.7485
+62592.05497296294 3.7453303 -7353.7646
+62593.05497301044 3.7452121 -7354.3545
+62594.05497305794 3.7450547 -7353.5669
+62595.05497310543 3.7448578 -7354.3545
+62596.05497315293 3.7448971 -7354.1577
+62597.05497320043 3.7447791 -7353.7646
+62598.05497324793 3.7446609 -7352.3862
+62599.05497329542 3.7445822 -7353.7646
+62600.05497334292 3.7443852 -7354.5513
+62601.05497339042 3.7443852 -7353.3706
+62602.05497343792 3.7441885 -7353.7646
+62603.05497348541 3.7440703 -7354.5513
+62604.05497353291 3.7439129 -7353.5669
+62605.05497358041 3.7438736 -7353.7646
+62606.05497362791 3.7437553 -7353.3706
+62607.0549736754 3.7436373 -7353.9609
+62608.0549737229 3.7435193 -7353.5669
+62609.0549737704 3.7433224 -7353.3706
+62610.0549738179 3.7432437 -7353.3706
+62611.05497386539 3.743165 -7353.7646
+62612.05497391289 3.743165 -7353.9609
+62613.05497396039 3.7429287 -7354.5513
+62614.05497400789 3.7427711 -7353.5669
+62615.05497405538 3.7427711 -7353.5669
+62616.05497410288 3.7425745 -7354.9453
+62617.05497415038 3.7425349 -7353.3706
+62618.05497419788 3.7423775 -7354.5513
+62619.05497424537 3.7422988 -7353.9609
+62620.05497429287 3.7421806 -7353.1738
+62621.05497434037 3.7421019 -7354.5513
+62622.05497438787 3.7420626 -7354.1577
+62623.05497443536 3.7418263 -7353.3706
+62624.05497448286 3.7418263 -7353.9609
+62625.05497453036 3.7417083 -7354.5513
+62626.05497457786 3.74159 -7354.1577
+62627.05497462535 3.7415507 -7353.9609
+62628.05497467285 3.7414327 -7353.3706
+62629.05497472035 3.7413146 -7353.9609
+62630.05497476785 3.7411964 -7353.3706
+62631.05497481534 3.741039 -7354.9453
+62632.05497486284 3.7411177 -7353.9609
+62633.05497491034 3.7409208 -7355.5352
+62634.05497495783 3.7406845 -7354.1577
+62635.05497500533 3.7407241 -7354.9453
+62636.05497505283 3.7406452 -7353.7646
+62637.05497510033 3.7404091 -7353.7646
+62638.05497514782 3.7402909 -7353.5669
+62639.05497519532 3.7404091 -7354.3545
+62640.05497524282 3.7401335 -7354.1577
+62641.05497529032 3.7400942 -7354.1577
+62642.05497533781 3.7399366 -7354.3545
+62643.05497538531 3.7398973 -7353.9609
+62644.05497543281 3.7397792 -7354.1577
+62645.05497548031 3.7396216 -7353.5669
+62646.0549755278 3.7395823 -7353.9609
+62647.0549755753 3.7394643 -7353.9609
+62648.0549756228 3.7393854 -7354.5513
+62649.0549756703 3.739228 -7353.9609
+62650.05497571779 3.739228 -7353.5669
+62651.05497576529 3.7390704 -7353.7646
+62652.05497581279 3.7390704 -7354.1577
+62653.05497586029 3.7389524 -7354.7485
+62654.05497590778 3.7388341 -7353.7646
+62655.05497595528 3.7388737 -7353.5669
+62656.05497600278 3.7387555 -7353.3706
+62657.05497605028 3.7385981 -7353.7646
+62658.05497609777 3.7385588 -7353.9609
+62659.05497614527 3.7384012 -7353.7646
+62660.05497619277 3.7383618 -7353.3706
+62661.05497624027 3.7382832 -7354.1577
+62662.05497628776 3.7383225 -7354.3545
+62663.05497633526 3.7382042 -7353.9609
+62664.05497638276 3.7380075 -7353.1738
+62665.05497643026 3.7379682 -7353.5669
+62666.05497647775 3.7378106 -7353.7646
+62667.05497652525 3.7377713 -7354.5513
+62668.05497657275 3.7376533 -7354.1577
+62669.05497662025 3.7376533 -7353.7646
+62670.05497666774 3.7375743 -7354.1577
+62671.05497671524 3.7373383 -7352.7803
+62672.05497676274 3.7373776 -7354.1577
+62673.05497681024 3.7370627 -7353.3706
+62674.05497685773 3.7371414 -7354.3545
+62675.05497690523 3.7370627 -7353.5669
+62676.05497695273 3.7369051 -7353.7646
+62677.05497700023 3.7368264 -7354.3545
+62678.05497704772 3.7368658 -7353.5669
+62679.05497709522 3.7366688 -7353.3706
+62680.05497714272 3.7366295 -7354.3545
+62681.05497719022 3.7364328 -7352.7803
+62682.05497723771 3.7362752 -7353.9609
+62683.05497728521 3.7361572 -7353.3706
+62684.05497733271 3.7362752 -7353.7646
+62685.0549773802 3.7360389 -7353.5669
+62686.0549774277 3.7360785 -7354.3545
+62687.0549774752 3.7359996 -7353.9609
+62688.0549775227 3.7358816 -7353.3706
+62689.05497757019 3.735724 -7354.5513
+62690.05497761769 3.7355666 -7353.5669
+62691.05497766519 3.735606 -7354.1577
+62692.05497771269 3.7355273 -7353.9609
+62693.05497776018 3.7353697 -7354.3545
+62694.05497780768 3.7352517 -7353.5669
+62695.05497785518 3.735173 -7353.5669
+62696.05497790268 3.7350547 -7353.3706
+62697.05497795017 3.7349761 -7353.9609
+62698.05497799767 3.7348974 -7353.7646
+62699.05497804517 3.734858 -7354.3545
+62700.05497809267 3.7348974 -7353.7646
+62701.05497814016 3.7347004 -7354.3545
+62702.05497818766 3.7345824 -7353.9609
+62703.05497823516 3.7346218 -7353.5669
+62704.05497828266 3.7344248 -7354.1577
+62705.05497833015 3.7343855 -7353.7646
+62706.05497837765 3.7343462 -7353.1738
+62707.05497842515 3.7341886 -7353.7646
+62708.05497847265 3.7340705 -7354.5513
+62709.05497852014 3.7339525 -7354.1577
+62710.05497856764 3.7339525 -7354.1577
+62711.05497861514 3.7338736 -7354.1577
+62712.05497866264 3.7337162 -7353.7646
+62713.05497871013 3.7336769 -7353.3706
+62714.05497875763 3.7335193 -7353.7646
+62715.05497880513 3.73348 -7353.7646
+62716.05497885263 3.7333226 -7354.5513
+62717.05497890012 3.733283 -7353.9609
+62718.05497894762 3.733165 -7354.7485
+62719.05497899512 3.733165 -7354.1577
+62720.05497904262 3.7330077 -7353.3706
+62721.05497909011 3.7328894 -7353.9609
+62722.05497913761 3.7327714 -7354.3545
+62723.05497918511 3.7326927 -7353.9609
+62724.05497923261 3.7327321 -7354.5513
+62725.0549792801 3.7325351 -7354.1577
+62726.0549793276 3.7324564 -7353.7646
+62727.0549793751 3.7322595 -7353.3706
+62728.0549794226 3.7322989 -7353.9609
+62729.05497947009 3.7321808 -7353.7646
+62730.05497951759 3.7320232 -7353.3706
+62731.05497956509 3.7319839 -7354.3545
+62732.05497961259 3.7318265 -7353.7646
+62733.05497966008 3.7317083 -7353.9609
+62734.05497970758 3.7315903 -7353.5669
+62735.05497975508 3.7315509 -7353.7646
+62736.05497980258 3.7315509 -7353.7646
+62737.05497985007 3.7313147 -7354.5513
+62738.05497989757 3.7311573 -7354.1577
+62739.05497994507 3.7311573 -7353.7646
+62740.05497999256 3.7310784 -7353.9609
+62741.05498004006 3.7308817 -7353.3706
+62742.05498008756 3.7308028 -7353.9609
+62743.05498013506 3.7307634 -7353.7646
+62744.05498018255 3.7305667 -7353.5669
+62745.05498023005 3.7306454 -7354.1577
+62746.05498027755 3.7304878 -7353.7646
+62747.05498032505 3.7304878 -7352.9771
+62748.05498037254 3.7302911 -7353.3706
+62749.05498042004 3.7301729 -7354.7485
+62750.05498046754 3.7300942 -7353.3706
+62751.05498051504 3.7298973 -7354.7485
+62752.05498056253 3.7298186 -7353.3706
+62753.05498061003 3.7296612 -7352.9771
+62754.05498065753 3.7295823 -7352.7803
+62755.05498070503 3.7295036 -7353.3706
+62756.05498075252 3.7293856 -7354.3545
+62757.05498080002 3.729228 -7354.5513
+62758.05498084752 3.729228 -7353.5669
+62759.05498089502 3.72911 -7354.3545
+62760.05498094251 3.728992 -7353.5669
+62761.05498099001 3.7289131 -7353.3706
+62762.05498103751 3.7287951 -7354.1577
+62763.05498108501 3.7287164 -7353.3706
+62764.0549811325 3.728677 -7353.7646
+62765.05498118 3.7285981 -7354.3545
+62766.0549812275 3.7285194 -7353.9609
+62767.054981275 3.7284014 -7353.7646
+62768.05498132249 3.7284014 -7354.1577
+62769.05498136999 3.7282045 -7354.1577
+62770.05498141749 3.7280076 -7353.5669
+62771.05498146499 3.7280469 -7353.9609
+62772.05498151248 3.7278109 -7353.3706
+62773.05498155998 3.7278109 -7353.7646
+62774.05498160748 3.7277319 -7353.7646
+62775.05498165498 3.7276533 -7353.9609
+62776.05498170247 3.7275352 -7354.1577
+62777.05498174997 3.727417 -7353.5669
+62778.05498179747 3.727299 -7353.7646
+62779.05498184497 3.7273383 -7354.3545
+62780.05498189246 3.7271416 -7353.9609
+62781.05498193996 3.727181 -7353.7646
+62782.05498198746 3.7270627 -7353.3706
+62783.05498203496 3.7270627 -7353.7646
+62784.05498208245 3.7268267 -7354.3545
+62785.05498212995 3.7267478 -7353.9609
+62786.05498217745 3.7265904 -7353.9609
+62787.05498222495 3.7264721 -7353.9609
+62788.05498227244 3.7265115 -7353.3706
+62789.05498231994 3.7263541 -7354.1577
+62790.05498236744 3.7262754 -7354.1577
+62791.05498241493 3.7261178 -7353.7646
+62792.05498246243 3.7259605 -7353.5669
+62793.05498250993 3.7260785 -7353.9609
+62794.05498255743 3.7258816 -7353.7646
+62795.05498260492 3.7257636 -7352.7803
+62796.05498265242 3.7256455 -7353.3706
+62797.05498269992 3.7256062 -7353.9609
+62798.05498274742 3.7255273 -7353.9609
+62799.05498279491 3.7253306 -7354.5513
+62800.05498284241 3.7254093 -7354.3545
+62801.05498288991 3.725173 -7353.9609
+62802.05498293741 3.7250943 -7353.3706
+62803.0549829849 3.7249763 -7354.5513
+62804.0549830324 3.724858 -7353.7646
+62805.0549830799 3.7247794 -7353.3706
+62806.0549831274 3.72474 -7354.3545
+62807.05498317489 3.7246218 -7352.9771
+62808.05498322239 3.7245824 -7353.7646
+62809.05498326989 3.7245038 -7353.9609
+62810.05498331739 3.7244644 -7353.9609
+62811.05498336488 3.7243462 -7354.3545
+62812.05498341238 3.7242675 -7353.1738
+62813.05498345988 3.7241888 -7353.5669
+62814.05498350738 3.7240708 -7353.7646
+62815.05498355487 3.7240708 -7353.7646
+62816.05498360237 3.7239132 -7352.9771
+62817.05498364987 3.7238345 -7354.3545
+62818.05498369737 3.7237163 -7354.3545
+62819.05498374486 3.7237558 -7354.1577
+62820.05498379236 3.7236376 -7353.7646
+62821.05498383986 3.7235589 -7353.9609
+62822.05498388736 3.7234802 -7354.5513
+62823.05498393485 3.7233226 -7353.3706
+62824.05498398235 3.723244 -7354.3545
+62825.05498402985 3.7230864 -7354.1577
+62826.05498407735 3.7231259 -7353.5669
+62827.05498412484 3.7230864 -7354.3545
+62828.05498417234 3.7228897 -7353.9609
+62829.05498421984 3.7228897 -7353.5669
+62830.05498426734 3.7227321 -7354.5513
+62831.05498431483 3.7227321 -7353.7646
+62832.05498436233 3.722614 -7355.1421
+62833.05498440983 3.7225747 -7354.1577
+62834.05498445733 3.7225747 -7354.1577
+62835.05498450482 3.7223384 -7354.5513
+62836.05498455232 3.7222991 -7353.5669
+62837.05498459982 3.7223384 -7353.3706
+62838.05498464732 3.7221022 -7353.3706
+62839.05498469481 3.7221022 -7353.7646
+62840.05498474231 3.7220235 -7353.3706
+62841.05498478981 3.7220235 -7353.1738
+62842.0549848373 3.7217872 -7352.9771
+62843.0549848848 3.7218266 -7353.7646
+62844.0549849323 3.7217479 -7354.1577
+62845.0549849798 3.7216299 -7353.9609
+62846.05498502729 3.7215905 -7354.3545
+62847.05498507479 3.7214723 -7354.5513
+62848.05498512229 3.7214329 -7354.3545
+62849.05498516979 3.7211967 -7353.9609
+62850.05498521728 3.7211967 -7354.3545
+62851.05498526478 3.721118 -7354.1577
+62852.05498531228 3.721 -7353.9609
+62853.05498535978 3.7208424 -7353.5669
+62854.05498540727 3.720803 -7354.5513
+62855.05498545477 3.720921 -7354.5513
+62856.05498550227 3.7206061 -7353.1738
+62857.05498554977 3.7205667 -7354.5513
+62858.05498559726 3.7205667 -7353.5669
+62859.05498564476 3.7203305 -7354.5513
+62860.05498569226 3.7203305 -7353.9609
+62861.05498573976 3.7201338 -7354.3545
+62862.05498578725 3.7201731 -7354.1577
+62863.05498583475 3.7199368 -7354.3545
+62864.05498588225 3.7198975 -7354.1577
+62865.05498592975 3.7197006 -7353.5669
+62866.05498597724 3.7197006 -7354.7485
+62867.05498602474 3.7197006 -7353.3706
+62868.05498607224 3.7195039 -7353.9609
+62869.05498611974 3.7194645 -7354.1577
+62870.05498616723 3.7192283 -7353.5669
+62871.05498621473 3.7193463 -7354.1577
+62872.05498626223 3.71911 -7353.5669
+62873.05498630973 3.7190313 -7353.7646
+62874.05498635722 3.7189133 -7353.7646
+62875.05498640472 3.7187557 -7353.9609
+62876.05498645222 3.7187164 -7354.1577
+62877.05498649972 3.7186377 -7353.9609
+62878.05498654721 3.7184801 -7353.3706
+62879.05498659471 3.7184408 -7354.1577
+62880.05498664221 3.7184014 -7354.9453
+62881.05498668971 3.7182441 -7354.3545
+62882.0549867372 3.7180865 -7353.9609
+62883.0549867847 3.7180078 -7353.3706
+62884.0549868322 3.7179291 -7353.7646
+62885.0549868797 3.7177715 -7353.9609
+62886.05498692719 3.7176929 -7354.1577
+62887.05498697469 3.7176142 -7353.7646
+62888.05498702219 3.7174172 -7353.1738
+62889.05498706969 3.7174959 -7353.7646
+62890.05498711718 3.7173779 -7354.3545
+62891.05498716468 3.7172992 -7352.9771
+62892.05498721218 3.7172992 -7353.3706
+62893.05498725967 3.7171023 -7354.1577
+62894.05498730717 3.7169447 -7353.9609
+62895.05498735467 3.7167873 -7353.9609
+62896.05498740217 3.716748 -7353.5669
+62897.05498744966 3.7165511 -7354.1577
+62898.05498749716 3.7163937 -7353.9609
+62899.05498754466 3.7163544 -7354.3545
+62900.05498759216 3.7163544 -7354.1577
+62901.05498763965 3.7163544 -7354.3545
+62902.05498768715 3.7161968 -7353.7646
+62903.05498773465 3.7161574 -7353.5669
+62904.05498778215 3.7161181 -7353.3706
+62905.05498782964 3.7159212 -7354.1577
+62906.05498787714 3.7158425 -7353.5669
+62907.05498792464 3.7158818 -7354.5513
+62908.05498797214 3.7156849 -7354.3545
+62909.05498801963 3.7157638 -7353.7646
+62910.05498806713 3.7156062 -7353.1738
+62911.05498811463 3.7155275 -7354.3545
+62912.05498816213 3.7154489 -7353.7646
+62913.05498820962 3.7152913 -7352.9771
+62914.05498825712 3.7151732 -7354.1577
+62915.05498830462 3.7151339 -7354.3545
+62916.05498835212 3.7151339 -7353.9609
+62917.05498839961 3.7149763 -7354.1577
+62918.05498844711 3.714819 -7353.7646
+62919.05498849461 3.7148583 -7354.1577
+62920.05498854211 3.71474 -7354.3545
+62921.0549885896 3.7146614 -7353.7646
+62922.0549886371 3.7145827 -7353.1738
+62923.0549886846 3.7145433 -7354.1577
+62924.0549887321 3.7144251 -7353.7646
+62925.05498877959 3.7143071 -7354.1577
+62926.05498882709 3.7142284 -7353.9609
+62927.05498887459 3.7141495 -7353.5669
+62928.05498892209 3.7140315 -7354.1577
+62929.05498896958 3.7139134 -7353.9609
+62930.05498901708 3.7139528 -7353.7646
+62931.05498906458 3.7138739 -7353.3706
+62932.05498911208 3.7137558 -7353.5669
+62933.05498915957 3.7135985 -7354.9453
+62934.05498920707 3.7136378 -7354.1577
+62935.05498925457 3.7135196 -7354.7485
+62936.05498930207 3.7135196 -7355.1421
+62937.05498934956 3.7133229 -7355.3384
+62938.05498939706 3.7132046 -7353.9609
+62939.05498944456 3.7132046 -7354.3545
+62940.05498949206 3.7131259 -7353.7646
+62941.05498953955 3.7130079 -7354.1577
+62942.05498958705 3.7128503 -7353.7646
+62943.05498963455 3.712929 -7353.3706
+62944.05498968204 3.7127717 -7353.3706
+62945.05498972954 3.7126141 -7353.7646
+62946.05498977704 3.712496 -7353.7646
+62947.05498982454 3.7124567 -7354.1577
+62948.05498987203 3.7124174 -7354.1577
+62949.05498991953 3.7122991 -7353.7646
+62950.05498996703 3.7121811 -7353.5669
+62951.05499001453 3.7121024 -7353.7646
+62952.05499006202 3.7119448 -7354.1577
+62953.05499010952 3.7118661 -7353.9609
+62954.05499015702 3.7117481 -7353.1738
+62955.05499020452 3.7117085 -7354.3545
+62956.05499025201 3.7116299 -7353.7646
+62957.05499029951 3.7114332 -7354.1577
+62958.05499034701 3.7113149 -7353.1738
+62959.05499039451 3.7112756 -7354.1577
+62960.054990442 3.7111576 -7353.7646
+62961.0549904895 3.7111182 -7354.5513
+62962.054990537 3.7109606 -7352.9771
+62963.0549905845 3.7110786 -7353.9609
+62964.05499063199 3.7108033 -7354.3545
+62965.05499067949 3.7106457 -7354.1577
+62966.05499072699 3.7104487 -7353.7646
+62967.05499077449 3.7104094 -7354.3545
+62968.05499082198 3.7102127 -7353.1738
+62969.05499086948 3.7102127 -7353.7646
+62970.05499091698 3.7102127 -7354.3545
+62971.05499096448 3.7100158 -7353.3706
+62972.05499101197 3.7099764 -7353.5669
+62973.05499105947 3.7098582 -7353.3706
+62974.05499110697 3.7097008 -7353.5669
+62975.05499115447 3.7097008 -7353.9609
+62976.05499120196 3.7095828 -7353.9609
+62977.05499124946 3.7094646 -7354.1577
+62978.05499129696 3.7093859 -7354.3545
+62979.05499134446 3.7092283 -7354.7485
+62980.05499139195 3.7091103 -7353.9609
+62981.05499143945 3.7090316 -7353.7646
+62982.05499148695 3.7089529 -7353.1738
+62983.05499153445 3.7089133 -7353.9609
+62984.05499158194 3.708756 -7354.1577
+62985.05499162944 3.7086773 -7353.9609
+62986.05499167694 3.708559 -7353.7646
+62987.05499172444 3.7084804 -7353.3706
+62988.05499177193 3.7083228 -7353.7646
+62989.05499181943 3.7082441 -7354.5513
+62990.05499186693 3.7082047 -7354.5513
+62991.05499191443 3.7081261 -7354.1577
+62992.05499196192 3.7080474 -7354.3545
+62993.05499200942 3.7078898 -7353.7646
+62994.05499205692 3.7078111 -7353.7646
+62995.05499210441 3.7076929 -7353.9609
+62996.05499215191 3.7077324 -7354.3545
+62997.05499219941 3.7075355 -7353.3706
+62998.05499224691 3.7076142 -7354.3545
+62999.0549922944 3.7073779 -7353.3706
+63000.0549923419 3.7072992 -7353.9609
+63001.0549923894 3.7071812 -7353.3706
+63002.0549924369 3.7071419 -7354.1577
+63003.05499248439 3.7069056 -7354.7485
+63004.05499253189 3.7068663 -7353.7646
+63005.05499257939 3.7067087 -7353.3706
+63006.05499262689 3.7065513 -7353.9609
+63007.05499267438 3.7064724 -7353.5669
+63008.05499272188 3.706512 -7354.5513
+63009.05499276938 3.7062757 -7353.9609
+63010.05499281688 3.7061181 -7353.7646
+63011.05499286437 3.7060001 -7354.9453
+63012.05499291187 3.7059608 -7353.1738
+63013.05499295937 3.7057638 -7353.1738
+63014.05499300687 3.7056065 -7353.5669
+63015.05499305436 3.7055275 -7354.1577
+63016.05499310186 3.7054095 -7353.9609
+63017.05499314936 3.7053308 -7354.1577
+63018.05499319686 3.7052126 -7353.7646
+63019.05499324435 3.7050552 -7353.3706
+63020.05499329185 3.7048976 -7353.7646
+63021.05499333935 3.704819 -7353.1738
+63022.05499338685 3.704819 -7353.9609
+63023.05499343434 3.704622 -7353.5669
+63024.05499348184 3.7045434 -7353.5669
+63025.05499352934 3.7045434 -7353.3706
+63026.05499357684 3.7042677 -7353.3706
+63027.05499362433 3.7043071 -7354.5513
+63028.05499367183 3.7041497 -7353.3706
+63029.05499371933 3.704071 -7353.5669
+63030.05499376683 3.7040317 -7354.3545
+63031.05499381432 3.7039135 -7353.7646
+63032.05499386182 3.7037561 -7354.5513
+63033.05499390932 3.7035985 -7353.5669
+63034.05499395682 3.7035592 -7353.5669
+63035.05499400431 3.7034805 -7353.5669
+63036.05499405181 3.7034018 -7353.9609
+63037.05499409931 3.7032835 -7353.5669
+63038.05499414681 3.7031262 -7353.5669
+63039.0549941943 3.7030473 -7353.3706
+63040.0549942418 3.7030079 -7353.7646
+63041.0549942893 3.7028112 -7354.1577
+63042.0549943368 3.702693 -7354.5513
+63043.05499438429 3.702693 -7354.5513
+63044.05499443179 3.702575 -7353.7646
+63045.05499447929 3.702378 -7353.9609
+63046.05499452678 3.7023387 -7353.9609
+63047.05499457428 3.70226 -7354.3545
+63048.05499462178 3.7021813 -7353.7646
+63049.05499466928 3.7021024 -7354.1577
+63050.05499471677 3.7019844 -7353.3706
+63051.05499476427 3.7018664 -7354.3545
+63052.05499481177 3.7018664 -7353.9609
+63053.05499485927 3.7017481 -7354.5513
+63054.05499490676 3.7016301 -7353.7646
+63055.05499495426 3.7015119 -7353.9609
+63056.05499500176 3.7013938 -7353.5669
+63057.05499504926 3.7012758 -7354.3545
+63058.05499509675 3.7011969 -7353.9609
+63059.05499514425 3.7010396 -7354.1577
+63060.05499519175 3.7011182 -7353.7646
+63061.05499523925 3.7009609 -7353.3706
+63062.05499528674 3.7009213 -7353.7646
+63063.05499533424 3.7007246 -7354.3545
+63064.05499538174 3.7006853 -7354.5513
+63065.05499542924 3.7007246 -7353.9609
+63066.05499547673 3.700567 -7354.1577
+63067.05499552423 3.7004883 -7353.7646
+63068.05499557173 3.7004097 -7352.9771
+63069.05499561923 3.7002914 -7353.9609
+63070.05499566672 3.700134 -7353.3706
+63071.05499571422 3.700016 -7353.5669
+63072.05499576172 3.7000554 -7354.1577
+63073.05499580922 3.6998978 -7354.5513
+63074.05499585671 3.6997008 -7353.7646
+63075.05499590421 3.6995435 -7354.3545
+63076.05499595171 3.6995828 -7354.1577
+63077.05499599921 3.6995435 -7353.7646
+63078.0549960467 3.6994255 -7354.1577
+63079.0549960942 3.6993465 -7353.5669
+63080.0549961417 3.6991892 -7354.5513
+63081.0549961892 3.6991498 -7354.3545
+63082.05499623669 3.6991105 -7353.9609
+63083.05499628419 3.6990709 -7353.9609
+63084.05499633169 3.6988742 -7353.3706
+63085.05499637919 3.6988742 -7354.5513
+63086.05499642668 3.6987166 -7353.1738
+63087.05499647418 3.6985199 -7353.7646
+63088.05499652168 3.6984806 -7353.1738
+63089.05499656918 3.6983624 -7353.5669
+63090.05499661667 3.698323 -7354.1577
+63091.05499666417 3.6981657 -7354.1577
+63092.05499671167 3.6981657 -7353.9609
+63093.05499675917 3.6980474 -7353.7646
+63094.05499680666 3.6980474 -7354.1577
+63095.05499685416 3.6978505 -7353.7646
+63096.05499690166 3.6977324 -7353.3706
+63097.05499694915 3.6976931 -7354.1577
+63098.05499699665 3.6976144 -7353.9609
+63099.05499704415 3.6974962 -7353.7646
+63100.05499709165 3.6973782 -7353.7646
+63101.05499713914 3.6973388 -7353.5669
+63102.05499718664 3.6971812 -7354.1577
+63103.05499723414 3.6971419 -7354.1577
+63104.05499728164 3.6970239 -7354.3545
+63105.05499732913 3.6970239 -7353.9609
+63106.05499737663 3.6968269 -7353.5669
+63107.05499742413 3.6967483 -7353.9609
+63108.05499747163 3.6967089 -7353.3706
+63109.05499751912 3.6964333 -7354.3545
+63110.05499756662 3.6965907 -7353.1738
+63111.05499761412 3.696394 -7354.5513
+63112.05499766162 3.6963546 -7353.9609
+63113.05499770911 3.6962364 -7353.7646
+63114.05499775661 3.6961577 -7353.1738
+63115.05499780411 3.6960397 -7353.9609
+63116.05499785161 3.6960001 -7353.9609
+63117.0549978991 3.6958427 -7353.7646
+63118.0549979466 3.6958821 -7354.1577
+63119.0549979941 3.6957641 -7354.1577
+63120.0549980416 3.6956458 -7353.7646
+63121.05499808909 3.6955671 -7353.1738
+63122.05499813659 3.6955278 -7354.1577
+63123.05499818409 3.6954491 -7354.3545
+63124.05499823159 3.6953702 -7353.7646
+63125.05499827908 3.6952522 -7354.3545
+63126.05499832658 3.6952128 -7354.1577
+63127.05499837408 3.6950552 -7352.7803
+63128.05499842158 3.6950948 -7353.1738
+63129.05499846907 3.6949372 -7353.7646
+63130.05499851657 3.6948979 -7353.9609
+63131.05499856407 3.6949766 -7353.9609
+63132.05499861157 3.6947799 -7354.1577
+63133.05499865906 3.6946616 -7353.9609
+63134.05499870656 3.6945436 -7353.3706
+63135.05499875406 3.6945436 -7353.9609
+63136.05499880156 3.6944253 -7353.7646
+63137.05499884905 3.694268 -7353.3706
+63138.05499889655 3.6942286 -7353.9609
+63139.05499894405 3.6941497 -7353.3706
+63140.05499899155 3.6940711 -7354.5513
+63141.05499903904 3.6939924 -7353.9609
+63142.05499908654 3.6938348 -7353.3706
+63143.05499913404 3.6937954 -7353.9609
+63144.05499918154 3.6936774 -7354.5513
+63145.05499922903 3.6936774 -7354.3545
+63146.05499927653 3.6934805 -7353.9609
+63147.05499932403 3.6934412 -7353.3706
+63148.05499937152 3.6933625 -7354.3545
+63149.05499941902 3.6932838 -7353.9609
+63150.05499946652 3.6931262 -7353.7646
+63151.05499951402 3.6930475 -7353.7646
+63152.05499956151 3.6929688 -7353.9609
+63153.05499960901 3.6928113 -7353.5669
+63154.05499965651 3.6926932 -7354.1577
+63155.05499970401 3.6926146 -7354.1577
+63156.0549997515 3.692575 -7354.1577
+63157.054999799 3.6924176 -7353.7646
+63158.0549998465 3.6923783 -7353.5669
+63159.054999894 3.6923783 -7354.1577
+63160.05499994149 3.6921813 -7352.7803
+63161.05499998899 3.692024 -7353.9609
+63162.05500003649 3.692024 -7354.1577
+63163.05500008399 3.6918664 -7354.3545
+63164.05500013148 3.6919057 -7354.5513
+63165.05500017898 3.691709 -7353.9609
+63166.05500022648 3.6915908 -7354.1577
+63167.05500027398 3.6914728 -7354.3545
+63168.05500032147 3.6913152 -7353.9609
+63169.05500036897 3.6912758 -7354.3545
+63170.05500041647 3.6911578 -7353.7646
+63171.05500046397 3.6911185 -7354.3545
+63172.05500051146 3.6908822 -7354.3545
+63173.05500055896 3.6908822 -7353.9609
+63174.05500060646 3.6907246 -7353.9609
+63175.05500065396 3.6906066 -7353.3706
+63176.05500070145 3.6905279 -7354.5513
+63177.05500074895 3.6904097 -7353.5669
+63178.05500079645 3.6902523 -7353.9609
+63179.05500084395 3.690213 -7353.9609
+63180.05500089144 3.6900554 -7353.9609
+63181.05500093894 3.6899767 -7353.5669
+63182.05500098644 3.6898587 -7353.9609
+63183.05500103394 3.6898191 -7353.9609
+63184.05500108143 3.6895831 -7353.9609
+63185.05500112893 3.6894648 -7354.9453
+63186.05500117643 3.6894255 -7354.5513
+63187.05500122393 3.6893075 -7354.7485
+63188.05500127142 3.6891499 -7353.3706
+63189.05500131892 3.6890712 -7354.1577
+63190.05500136642 3.6889532 -7353.9609
+63191.05500141392 3.6888742 -7354.9453
+63192.05500146141 3.6887562 -7353.1738
+63193.05500150891 3.6887169 -7353.5669
+63194.05500155641 3.6885593 -7353.9609
+63195.05500160391 3.68852 -7354.1577
+63196.0550016514 3.6884413 -7353.3706
+63197.0550016989 3.6883233 -7353.9609
+63198.0550017464 3.6883233 -7353.7646
+63199.05500179389 3.688087 -7353.7646
+63200.05500184139 3.6881657 -7353.3706
+63201.05500188889 3.6880476 -7353.9609
+63202.05500193639 3.6879294 -7354.1577
+63203.05500198388 3.6878901 -7354.3545
+63204.05500203138 3.6878901 -7354.7485
+63205.05500207888 3.6876538 -7354.3545
+63206.05500212638 3.6876144 -7353.9609
+63207.05500217387 3.6876144 -7353.7646
+63208.05500222137 3.6875358 -7353.7646
+63209.05500226887 3.6874177 -7354.1577
+63210.05500231637 3.6872995 -7353.9609
+63211.05500236386 3.6872208 -7353.1738
+63212.05500241136 3.6871815 -7353.9609
+63213.05500245886 3.6870239 -7354.5513
+63214.05500250636 3.6869059 -7354.3545
+63215.05500255385 3.6868272 -7354.1577
+63216.05500260135 3.6867483 -7352.583
+63217.05500264885 3.6866696 -7353.9609
+63218.05500269635 3.6866302 -7354.1577
+63219.05500274384 3.6864333 -7353.7646
+63220.05500279134 3.6864333 -7354.1577
+63221.05500283884 3.6862366 -7354.3545
+63222.05500288634 3.6861579 -7353.3706
+63223.05500293383 3.686079 -7354.7485
+63224.05500298133 3.686079 -7354.3545
+63225.05500302883 3.6858823 -7354.3545
+63226.05500307633 3.6857247 -7353.7646
+63227.05500312382 3.6856854 -7354.3545
+63228.05500317132 3.6855674 -7353.9609
+63229.05500321882 3.6854885 -7354.3545
+63230.05500326632 3.6853704 -7354.1577
+63231.05500331381 3.6852129 -7353.3706
+63232.05500336131 3.6851342 -7354.3545
+63233.05500340881 3.6850555 -7353.5669
+63234.05500345631 3.6849768 -7354.5513
+63235.0550035038 3.6848192 -7354.1577
+63236.0550035513 3.6847799 -7353.7646
+63237.0550035988 3.6848192 -7353.7646
+63238.0550036463 3.6845436 -7353.1738
+63239.05500369379 3.6843863 -7353.7646
+63240.05500374129 3.6845043 -7354.3545
+63241.05500378879 3.6842287 -7354.1577
+63242.05500383629 3.6842287 -7353.7646
+63243.05500388378 3.68415 -7353.9609
+63244.05500393128 3.6839926 -7353.7646
+63245.05500397878 3.6838744 -7353.3706
+63246.05500402628 3.683835 -7353.7646
+63247.05500407377 3.6837564 -7354.1577
+63248.05500412127 3.6837564 -7354.1577
+63249.05500416877 3.6835988 -7353.5669
+63250.05500421626 3.6834414 -7354.7485
+63251.05500426376 3.6833625 -7353.3706
+63252.05500431126 3.6832838 -7354.3545
+63253.05500435876 3.6830082 -7354.3545
+63254.05500440625 3.6830871 -7353.9609
+63255.05500445375 3.6829295 -7354.7485
+63256.05500450125 3.6828508 -7352.9771
+63257.05500454875 3.6827722 -7353.5669
+63258.05500459624 3.6826539 -7354.5513
+63259.05500464374 3.6826146 -7353.9609
+63260.05500469124 3.6824572 -7354.1577
+63261.05500473874 3.6822996 -7353.5669
+63262.05500478623 3.6823783 -7353.5669
+63263.05500483373 3.6822209 -7353.9609
+63264.05500488123 3.6821027 -7353.7646
+63265.05500492873 3.6819453 -7354.3545
+63266.05500497622 3.6819453 -7354.5513
+63267.05500502372 3.6817877 -7354.1577
+63268.05500507122 3.6816304 -7353.7646
+63269.05500511872 3.6815121 -7353.3706
+63270.05500516621 3.6813941 -7354.7485
+63271.05500521371 3.6812761 -7354.3545
+63272.05500526121 3.6811972 -7353.9609
+63273.05500530871 3.6810791 -7352.9771
+63274.0550053562 3.6809218 -7354.1577
+63275.0550054037 3.6809218 -7353.1738
+63276.0550054512 3.6807249 -7353.9609
+63277.0550054987 3.6806462 -7353.9609
+63278.05500554619 3.6804492 -7353.5669
+63279.05500559369 3.6802919 -7353.1738
+63280.05500564119 3.6802919 -7353.9609
+63281.05500568869 3.6801736 -7354.3545
+63282.05500573618 3.6799767 -7353.5669
+63283.05500578368 3.6799767 -7353.5669
+63284.05500583118 3.6799374 -7353.9609
+63285.05500587868 3.6797407 -7353.9609
+63286.05500592617 3.6796618 -7354.3545
+63287.05500597367 3.6795437 -7354.5513
+63288.05500602117 3.6794651 -7354.7485
+63289.05500606867 3.6793075 -7353.3706
+63290.05500611616 3.6792288 -7354.1577
+63291.05500616366 3.6789925 -7354.1577
+63292.05500621116 3.6790714 -7353.7646
+63293.05500625866 3.6788745 -7354.3545
+63294.05500630615 3.6787169 -7353.5669
+63295.05500635365 3.6786382 -7353.5669
+63296.05500640115 3.6785202 -7353.5669
+63297.05500644865 3.6784415 -7353.7646
+63298.05500649614 3.6782446 -7354.3545
+63299.05500654364 3.6782053 -7353.9609
+63300.05500659114 3.6781263 -7353.9609
+63301.05500663864 3.6781263 -7354.7485
+63302.05500668613 3.6779296 -7353.1738
+63303.05500673363 3.677851 -7354.5513
+63304.05500678113 3.677772 -7354.3545
+63305.05500682862 3.6776147 -7353.3706
+63306.05500687612 3.6775753 -7354.5513
+63307.05500692362 3.677536 -7354.3545
+63308.05500697112 3.6774178 -7353.9609
+63309.05500701861 3.6772211 -7353.7646
+63310.05500706611 3.6773784 -7354.1577
+63311.05500711361 3.6771421 -7353.9609
+63312.05500716111 3.6771028 -7353.7646
+63313.0550072086 3.6768665 -7354.1577
+63314.0550072561 3.6768272 -7353.7646
+63315.0550073036 3.6767485 -7354.1577
+63316.0550073511 3.6766305 -7354.1577
+63317.05500739859 3.6765912 -7354.1577
+63318.05500744609 3.6765122 -7353.3706
+63319.05500749359 3.6763549 -7353.9609
+63320.05500754109 3.6763155 -7353.5669
+63321.05500758858 3.6762366 -7354.3545
+63322.05500763608 3.6760793 -7354.1577
+63323.05500768358 3.6759217 -7354.3545
+63324.05500773108 3.6758823 -7354.3545
+63325.05500777857 3.6758037 -7354.5513
+63326.05500782607 3.6758037 -7353.1738
+63327.05500787357 3.6756461 -7353.5669
+63328.05500792107 3.675528 -7354.3545
+63329.05500796856 3.6754887 -7353.9609
+63330.05500801606 3.67541 -7353.9609
+63331.05500806356 3.6752918 -7353.7646
+63332.05500811106 3.6751738 -7353.5669
+63333.05500815855 3.6750951 -7353.7646
+63334.05500820605 3.6749375 -7353.3706
+63335.05500825355 3.6749375 -7354.1577
+63336.05500830105 3.6746619 -7353.9609
+63337.05500834854 3.6746225 -7353.7646
+63338.05500839604 3.6744652 -7353.7646
+63339.05500844354 3.6743863 -7353.7646
+63340.05500849104 3.6742289 -7353.9609
+63341.05500853853 3.6741896 -7353.9609
+63342.05500858603 3.6741107 -7353.9609
+63343.05500863353 3.6739926 -7354.7485
+63344.05500868103 3.673914 -7353.9609
+63345.05500872852 3.6737957 -7353.7646
+63346.05500877602 3.6737564 -7354.1577
+63347.05500882352 3.6736777 -7353.9609
+63348.05500887102 3.6735203 -7353.7646
+63349.05500891851 3.6734807 -7353.1738
+63350.05500896601 3.6734021 -7354.1577
+63351.05500901351 3.6732841 -7352.9771
+63352.05500906101 3.6731265 -7354.1577
+63353.0550091085 3.6730478 -7353.7646
+63354.055009156 3.6729691 -7353.9609
+63355.0550092035 3.6729298 -7353.9609
+63356.05500925099 3.6726935 -7354.5513
+63357.05500929849 3.6725752 -7353.7646
+63358.05500934599 3.6725359 -7354.3545
+63359.05500939349 3.6724966 -7354.3545
+63360.05500944098 3.6722603 -7353.7646
+63361.05500948848 3.6722209 -7353.7646
+63362.05500953598 3.6719453 -7353.3706
+63363.05500958348 3.6719453 -7353.9609
+63364.05500963097 3.6719849 -7353.7646
+63365.05500967847 3.67167 -7353.9609
+63366.05500972597 3.67167 -7354.1577
+63367.05500977347 3.6715517 -7353.9609
+63368.05500982096 3.671473 -7353.3706
+63369.05500986846 3.6712368 -7354.1577
+63370.05500991596 3.6712761 -7354.1577
+63371.05500996346 3.6711187 -7354.1577
+63372.05501001095 3.6710398 -7353.7646
+63373.05501005845 3.6709218 -7355.1421
+63374.05501010595 3.6708038 -7354.1577
+63375.05501015345 3.6706855 -7352.9771
+63376.05501020094 3.6704888 -7354.1577
+63377.05501024844 3.6705675 -7353.7646
+63378.05501029594 3.6703312 -7354.3545
+63379.05501034344 3.6702526 -7354.5513
+63380.05501039093 3.6702132 -7354.3545
+63381.05501043843 3.6699769 -7354.5513
+63382.05501048593 3.6700163 -7354.1577
+63383.05501053343 3.6699376 -7354.3545
+63384.05501058092 3.6698589 -7353.1738
+63385.05501062842 3.6695833 -7353.9609
+63386.05501067592 3.6694257 -7353.7646
+63387.05501072342 3.6693864 -7353.5669
+63388.05501077091 3.6693077 -7353.9609
+63389.05501081841 3.6691501 -7353.5669
+63390.05501086591 3.6689928 -7354.1577
+63391.05501091341 3.6689534 -7353.3706
+63392.0550109609 3.6688352 -7354.7485
+63393.0550110084 3.6687565 -7354.3545
+63394.0550110559 3.6686385 -7353.7646
+63395.0550111034 3.6684809 -7354.3545
+63396.05501115089 3.6684022 -7353.9609
+63397.05501119839 3.6682842 -7354.7485
+63398.05501124589 3.6683235 -7353.5669
+63399.05501129339 3.6680479 -7354.7485
+63400.05501134088 3.6678903 -7353.7646
+63401.05501138838 3.6678116 -7353.9609
+63402.05501143588 3.6677723 -7354.3545
+63403.05501148338 3.6676543 -7354.3545
+63404.05501153087 3.667536 -7354.3545
+63405.05501157837 3.667536 -7354.5513
+63406.05501162587 3.6672604 -7353.9609
+63407.05501167336 3.6671817 -7354.3545
+63408.05501172086 3.6672211 -7354.3545
+63409.05501176836 3.6669848 -7354.3545
+63410.05501181586 3.6668668 -7354.7485
+63411.05501186335 3.6668668 -7354.1577
+63412.05501191085 3.6667881 -7353.7646
+63413.05501195835 3.6665518 -7354.5513
+63414.05501200585 3.6665125 -7354.1577
+63415.05501205334 3.6664732 -7354.7485
+63416.05501210084 3.6663549 -7354.5513
+63417.05501214834 3.6661975 -7354.1577
+63418.05501219584 3.6661582 -7353.5669
+63419.05501224333 3.6660006 -7354.1577
+63420.05501229083 3.6659613 -7352.9771
+63421.05501233833 3.6659219 -7353.5669
+63422.05501238583 3.6657643 -7353.7646
+63423.05501243332 3.6655283 -7354.1577
+63424.05501248082 3.6655676 -7354.5513
+63425.05501252832 3.6654494 -7353.7646
+63426.05501257582 3.6653707 -7353.7646
+63427.05501262331 3.6653314 -7354.5513
+63428.05501267081 3.6651344 -7353.5669
+63429.05501271831 3.6650558 -7353.9609
+63430.05501276581 3.6650164 -7354.7485
+63431.0550128133 3.6648588 -7353.9609
+63432.0550128608 3.6647408 -7354.5513
+63433.0550129083 3.6646621 -7354.3545
+63434.0550129558 3.6645834 -7353.3706
+63435.05501300329 3.6644652 -7353.9609
+63436.05501305079 3.6644258 -7353.9609
+63437.05501309829 3.6643865 -7353.5669
+63438.05501314579 3.6643472 -7353.9609
+63439.05501319328 3.6642289 -7353.9609
+63440.05501324078 3.6640322 -7354.5513
+63441.05501328828 3.6640716 -7353.5669
+63442.05501333578 3.6639929 -7353.5669
+63443.05501338327 3.6638746 -7354.9453
+63444.05501343077 3.6637566 -7353.1738
+63445.05501347827 3.6636779 -7353.3706
+63446.05501352577 3.6637566 -7354.5513
+63447.05501357326 3.6635597 -7353.7646
+63448.05501362076 3.6634417 -7353.5669
+63449.05501366826 3.663363 -7354.3545
+63450.05501371576 3.663363 -7354.5513
+63451.05501376325 3.6632054 -7353.5669
+63452.05501381075 3.6630874 -7353.5669
+63453.05501385825 3.663048 -7353.9609
+63454.05501390575 3.6628904 -7353.5669
+63455.05501395324 3.6630085 -7353.9609
+63456.05501400074 3.6628118 -7353.3706
+63457.05501404824 3.6626542 -7354.3545
+63458.05501409573 3.6626148 -7353.9609
+63459.05501414323 3.6625361 -7354.7485
+63460.05501419073 3.6623785 -7354.1577
+63461.05501423823 3.6624181 -7353.3706
+63462.05501428572 3.6622605 -7353.5669
+63463.05501433322 3.6621425 -7354.3545
+63464.05501438072 3.6621029 -7354.5513
+63465.05501442822 3.6620636 -7354.1577
+63466.05501447571 3.6619456 -7354.1577
+63467.05501452321 3.6618276 -7353.9609
+63468.05501457071 3.661788 -7354.1577
+63469.05501461821 3.6615913 -7354.1577
+63470.0550146657 3.661552 -7354.1577
+63471.0550147132 3.661355 -7353.1738
+63472.0550147607 3.6613157 -7353.9609
+63473.0550148082 3.6613157 -7354.5513
+63474.05501485569 3.6611187 -7353.9609
+63475.05501490319 3.6610007 -7353.9609
+63476.05501495069 3.6608827 -7354.5513
+63477.05501499819 3.6607251 -7354.1577
+63478.05501504568 3.6607251 -7353.5669
+63479.05501509318 3.6605678 -7352.9771
+63480.05501514068 3.6605678 -7354.3545
+63481.05501518818 3.6603708 -7353.9609
+63482.05501523567 3.6603708 -7353.7646
+63483.05501528317 3.6601739 -7354.3545
+63484.05501533067 3.6601739 -7353.7646
+63485.05501537817 3.6600559 -7353.5669
+63486.05501542566 3.6599376 -7353.7646
+63487.05501547316 3.6598196 -7353.3706
+63488.05501552066 3.6597016 -7353.9609
+63489.05501556816 3.6596227 -7353.5669
+63490.05501561565 3.6595833 -7353.9609
+63491.05501566315 3.6594653 -7354.1577
+63492.05501571065 3.6594653 -7354.1577
+63493.05501575815 3.659229 -7354.5513
+63494.05501580564 3.6593077 -7353.9609
+63495.05501585314 3.659111 -7353.7646
+63496.05501590064 3.6590323 -7353.5669
+63497.05501594814 3.6590323 -7354.3545
+63498.05501599563 3.6589141 -7353.9609
+63499.05501604313 3.6587174 -7354.1577
+63500.05501609063 3.6587174 -7353.3706
+63501.05501613813 3.6587174 -7354.3545
+63502.05501618562 3.6585598 -7354.1577
+63503.05501623312 3.6584418 -7353.3706
+63504.05501628062 3.6584022 -7353.5669
+63505.05501632812 3.6582055 -7353.3706
+63506.05501637561 3.6582842 -7353.5669
+63507.05501642311 3.6582055 -7354.3545
+63508.05501647061 3.6580086 -7353.5669
+63509.0550165181 3.6579692 -7354.3545
+63510.0550165656 3.6578512 -7353.3706
+63511.0550166131 3.6577723 -7354.3545
+63512.0550166606 3.6576543 -7353.9609
+63513.05501670809 3.6576149 -7353.3706
+63514.05501675559 3.6574969 -7354.1577
+63515.05501680309 3.6574574 -7353.1738
+63516.05501685059 3.6573 -7354.7485
+63517.05501689808 3.6571424 -7354.3545
+63518.05501694558 3.6572213 -7354.5513
+63519.05501699308 3.6570244 -7353.7646
+63520.05501704058 3.6570637 -7353.5669
+63521.05501708807 3.656985 -7354.5513
+63522.05501713557 3.6567881 -7353.9609
+63523.05501718307 3.6568274 -7353.5669
+63524.05501723057 3.6566308 -7354.9453
+63525.05501727806 3.6564732 -7353.5669
+63526.05501732556 3.6565518 -7354.3545
+63527.05501737306 3.6565125 -7354.1577
+63528.05501742056 3.6563551 -7355.1421
+63529.05501746805 3.6563158 -7353.9609
+63530.05501751555 3.6560795 -7353.5669
+63531.05501756305 3.6560009 -7353.9609
+63532.05501761055 3.6560009 -7353.7646
+63533.05501765804 3.6558826 -7354.7485
+63534.05501770554 3.6557646 -7353.9609
+63535.05501775304 3.6556859 -7354.3545
+63536.05501780054 3.6555676 -7353.5669
+63537.05501784803 3.6555283 -7353.9609
+63538.05501789553 3.6554103 -7353.7646
+63539.05501794303 3.655292 -7353.7646
+63540.05501799053 3.655292 -7354.3545
+63541.05501803802 3.6551347 -7353.7646
+63542.05501808552 3.6550167 -7354.1577
+63543.05501813302 3.6548197 -7353.9609
+63544.05501818052 3.6547804 -7354.1577
+63545.05501822801 3.6546621 -7354.3545
+63546.05501827551 3.6545441 -7354.1577
+63547.05501832301 3.6544654 -7354.5513
+63548.05501837051 3.6542685 -7354.9453
+63549.055018418 3.6542685 -7353.7646
+63550.0550184655 3.6541505 -7354.7485
+63551.055018513 3.6541898 -7353.9609
+63552.0550185605 3.6540322 -7353.5669
+63553.05501860799 3.6539142 -7354.5513
+63554.05501865549 3.6537962 -7354.1577
+63555.05501870299 3.6538355 -7354.7485
+63556.05501875049 3.6536386 -7353.9609
+63557.05501879798 3.6534812 -7353.7646
+63558.05501884548 3.6534812 -7353.7646
+63559.05501889298 3.6532843 -7354.7485
+63560.05501894047 3.653245 -7354.9453
+63561.05501898797 3.653245 -7353.5669
+63562.05501903547 3.6530874 -7353.7646
+63563.05501908297 3.6530087 -7353.9609
+63564.05501913046 3.6529694 -7353.5669
+63565.05501917796 3.6528511 -7354.3545
+63566.05501922546 3.6526544 -7353.7646
+63567.05501927296 3.6526937 -7353.9609
+63568.05501932045 3.6526544 -7353.5669
+63569.05501936795 3.6523788 -7354.1577
+63570.05501941545 3.6523001 -7353.9609
+63571.05501946295 3.6522608 -7353.5669
+63572.05501951044 3.6521425 -7354.1577
+63573.05501955794 3.6520638 -7353.7646
+63574.05501960544 3.6519852 -7354.1577
+63575.05501965294 3.6518276 -7353.7646
+63576.05501970043 3.6517882 -7354.5513
+63577.05501974793 3.6517096 -7353.5669
+63578.05501979543 3.6515913 -7354.3545
+63579.05501984293 3.6515913 -7353.9609
+63580.05501989042 3.6515126 -7354.7485
+63581.05501993792 3.6513553 -7353.9609
+63582.05501998542 3.6513553 -7353.7646
+63583.05502003292 3.6511583 -7353.7646
+63584.05502008041 3.651119 -7354.3545
+63585.05502012791 3.6510007 -7353.9609
+63586.05502017541 3.6509221 -7353.7646
+63587.05502022291 3.6508434 -7353.5669
+63588.0550202704 3.6506464 -7354.3545
+63589.0550203179 3.6505678 -7353.9609
+63590.0550203654 3.6505678 -7354.1577
+63591.0550204129 3.6504104 -7355.1421
+63592.05502046039 3.6503315 -7354.1577
+63593.05502050789 3.6502922 -7353.9609
+63594.05502055539 3.6501741 -7353.9609
+63595.05502060289 3.6501348 -7353.9609
+63596.05502065038 3.6499772 -7354.5513
+63597.05502069788 3.6499379 -7354.5513
+63598.05502074538 3.6498199 -7354.1577
+63599.05502079288 3.6497016 -7354.5513
+63600.05502084037 3.6495836 -7353.7646
+63601.05502088787 3.6494653 -7352.9771
+63602.05502093537 3.649426 -7353.5669
+63603.05502098287 3.6493473 -7353.5669
+63604.05502103036 3.6492293 -7354.3545
+63605.05502107786 3.6491899 -7353.9609
+63606.05502112536 3.6490717 -7353.5669
+63607.05502117286 3.6489537 -7353.1738
+63608.05502122035 3.648875 -7353.9609
+63609.05502126785 3.6486781 -7353.5669
+63610.05502131535 3.6485205 -7353.5669
+63611.05502136284 3.64856 -7352.9771
+63612.05502141034 3.6484025 -7353.7646
+63613.05502145784 3.6482844 -7354.1577
+63614.05502150534 3.6481662 -7354.7485
+63615.05502155283 3.6480875 -7353.9609
+63616.05502160033 3.6478906 -7354.5513
+63617.05502164783 3.6479695 -7353.7646
+63618.05502169533 3.6477332 -7353.7646
+63619.05502174282 3.6475363 -7353.3706
+63620.05502179032 3.647615 -7354.1577
+63621.05502183782 3.6473789 -7354.5513
+63622.05502188532 3.6472607 -7354.3545
+63623.05502193281 3.647182 -7354.1577
+63624.05502198031 3.647064 -7354.3545
+63625.05502202781 3.6470246 -7353.3706
+63626.05502207531 3.6469457 -7353.9609
+63627.0550221228 3.646867 -7353.3706
+63628.0550221703 3.6466701 -7353.7646
+63629.0550222178 3.6465521 -7353.3706
+63630.0550222653 3.6464734 -7353.5669
+63631.05502231279 3.6465127 -7353.5669
+63632.05502236029 3.6463158 -7353.1738
+63633.05502240779 3.6463158 -7354.1577
+63634.05502245529 3.6461191 -7354.3545
+63635.05502250278 3.6460798 -7353.7646
+63636.05502255028 3.6460009 -7353.9609
+63637.05502259778 3.6458042 -7353.7646
+63638.05502264528 3.6458435 -7353.7646
+63639.05502269277 3.6456859 -7354.3545
+63640.05502274027 3.6456072 -7354.1577
+63641.05502278777 3.6455286 -7354.1577
+63642.05502283527 3.6454103 -7353.9609
+63643.05502288276 3.6454103 -7355.1421
+63644.05502293026 3.6451347 -7353.9609
+63645.05502297776 3.6452923 -7353.7646
+63646.05502302526 3.6451347 -7354.3545
+63647.05502307275 3.6450167 -7353.9609
+63648.05502312025 3.6448593 -7353.7646
+63649.05502316775 3.6448197 -7354.9453
+63650.05502321525 3.6447017 -7354.1577
+63651.05502326274 3.6445444 -7353.5669
+63652.05502331024 3.644623 -7354.1577
+63653.05502335774 3.6445048 -7354.7485
+63654.05502340524 3.6443474 -7354.3545
+63655.05502345273 3.6443474 -7354.5513
+63656.05502350023 3.6442294 -7354.7485
+63657.05502354773 3.6441112 -7354.1577
+63658.05502359523 3.6439931 -7354.3545
+63659.05502364272 3.6439538 -7353.9609
+63660.05502369022 3.6438355 -7354.5513
+63661.05502373772 3.6437569 -7354.7485
+63662.05502378521 3.6436388 -7354.1577
+63663.05502383271 3.6435206 -7354.5513
+63664.05502388021 3.6434026 -7353.7646
+63665.05502392771 3.6433632 -7353.9609
+63666.0550239752 3.6432843 -7353.5669
+63667.0550240227 3.643245 -7353.3706
+63668.0550240702 3.643127 -7353.7646
+63669.0550241177 3.6429694 -7353.7646
+63670.05502416519 3.64293 -7354.1577
+63671.05502421269 3.6427333 -7352.9771
+63672.05502426019 3.6425757 -7353.9609
+63673.05502430769 3.6425364 -7353.5669
+63674.05502435518 3.6423788 -7353.1738
+63675.05502440268 3.6424184 -7353.9609
+63676.05502445018 3.6423001 -7354.3545
+63677.05502449768 3.6422215 -7353.9609
+63678.05502454517 3.6421428 -7353.9609
+63679.05502459267 3.6419065 -7353.5669
+63680.05502464017 3.6419065 -7353.9609
+63681.05502468767 3.6417885 -7353.9609
+63682.05502473516 3.6417096 -7353.9609
+63683.05502478266 3.6415915 -7354.3545
+63684.05502483016 3.6415522 -7353.1738
+63685.05502487766 3.6413553 -7354.3545
+63686.05502492515 3.6413159 -7354.1577
+63687.05502497265 3.6411586 -7353.5669
+63688.05502502015 3.6411979 -7353.5669
+63689.05502506765 3.6410403 -7354.3545
+63690.05502511514 3.6409223 -7353.7646
+63691.05502516264 3.6407647 -7353.5669
+63692.05502521014 3.640686 -7354.7485
+63693.05502525764 3.6407647 -7354.5513
+63694.05502530513 3.6405284 -7354.3545
+63695.05502535263 3.6403711 -7353.7646
+63696.05502540013 3.6403711 -7353.7646
+63697.05502544763 3.6402531 -7354.5513
+63698.05502549512 3.6401348 -7354.1577
+63699.05502554262 3.6401348 -7353.7646
+63700.05502559012 3.6398985 -7354.1577
+63701.05502563762 3.6398592 -7353.1738
+63702.05502568511 3.6397412 -7354.5513
+63703.05502573261 3.6395836 -7354.3545
+63704.05502578011 3.6396625 -7353.7646
+63705.05502582761 3.6395049 -7353.5669
+63706.0550258751 3.6393082 -7354.3545
+63707.0550259226 3.63919 -7354.1577
+63708.0550259701 3.6391113 -7353.9609
+63709.0550260176 3.6390326 -7353.5669
+63710.05502606509 3.6389933 -7353.7646
+63711.05502611259 3.6388357 -7353.5669
+63712.05502616009 3.6386781 -7354.5513
+63713.05502620758 3.6386781 -7354.3545
+63714.05502625508 3.6386387 -7354.1577
+63715.05502630258 3.6385601 -7353.7646
+63716.05502635008 3.6383238 -7354.3545
+63717.05502639757 3.6383631 -7354.1577
+63718.05502644507 3.6381664 -7354.3545
+63719.05502649257 3.6381664 -7353.3706
+63720.05502654007 3.6379302 -7354.3545
+63721.05502658756 3.6378908 -7354.1577
+63722.05502663506 3.6377332 -7353.9609
+63723.05502668256 3.6376939 -7353.7646
+63724.05502673006 3.6375759 -7353.9609
+63725.05502677755 3.6376152 -7353.7646
+63726.05502682505 3.6374183 -7353.9609
+63727.05502687255 3.6373003 -7354.5513
+63728.05502692005 3.6373003 -7353.9609
+63729.05502696754 3.637064 -7354.3545
+63730.05502701504 3.637064 -7354.1577
+63731.05502706254 3.636946 -7353.5669
+63732.05502711004 3.6368277 -7353.7646
+63733.05502715753 3.6367097 -7353.9609
+63734.05502720503 3.636631 -7353.9609
+63735.05502725253 3.6364734 -7353.5669
+63736.05502730003 3.6363161 -7353.3706
+63737.05502734752 3.6362767 -7354.1577
+63738.05502739502 3.6361978 -7354.5513
+63739.05502744252 3.6360404 -7353.5669
+63740.05502749002 3.6359618 -7354.5513
+63741.05502753751 3.6358829 -7353.3706
+63742.05502758501 3.6358042 -7353.9609
+63743.05502763251 3.6356862 -7353.7646
+63744.05502768001 3.6356468 -7353.9609
+63745.0550277275 3.6355679 -7354.3545
+63746.055027775 3.6354105 -7354.5513
+63747.0550278225 3.6352925 -7353.3706
+63748.05502787 3.6351349 -7354.1577
+63749.05502791749 3.6350169 -7353.3706
+63750.05502796499 3.6349773 -7354.3545
+63751.05502801249 3.6348593 -7353.9609
+63752.05502805999 3.6347413 -7354.7485
+63753.05502810748 3.6346624 -7353.5669
+63754.05502815498 3.6345444 -7353.3706
+63755.05502820248 3.6345837 -7353.7646
+63756.05502824998 3.634387 -7354.5513
+63757.05502829747 3.6343474 -7354.1577
+63758.05502834497 3.6341901 -7353.5669
+63759.05502839247 3.6341114 -7353.7646
+63760.05502843997 3.6339145 -7353.3706
+63761.05502848746 3.6339538 -7354.3545
+63762.05502853496 3.6338358 -7353.7646
+63763.05502858246 3.6337571 -7353.5669
+63764.05502862995 3.6336782 -7353.9609
+63765.05502867745 3.6335208 -7353.5669
+63766.05502872495 3.6334419 -7354.3545
+63767.05502877245 3.6334026 -7354.1577
+63768.05502881994 3.6332059 -7353.7646
+63769.05502886744 3.6332059 -7353.5669
+63770.05502891494 3.633009 -7354.3545
+63771.05502896244 3.6330483 -7354.1577
+63772.05502900993 3.6329303 -7353.7646
+63773.05502905743 3.6328516 -7354.3545
+63774.05502910493 3.6326547 -7354.1577
+63775.05502915243 3.6326153 -7354.3545
+63776.05502919992 3.6324971 -7354.9453
+63777.05502924742 3.6323791 -7355.1421
+63778.05502929492 3.6322217 -7352.9771
+63779.05502934242 3.6322217 -7354.3545
+63780.05502938991 3.6320248 -7353.7646
+63781.05502943741 3.6320641 -7353.9609
+63782.05502948491 3.6317492 -7353.3706
+63783.05502953241 3.6318672 -7354.1577
+63784.0550295799 3.6317098 -7354.3545
+63785.0550296274 3.6315129 -7353.9609
+63786.0550296749 3.6314735 -7354.3545
+63787.0550297224 3.6313555 -7353.7646
+63788.05502976989 3.6312766 -7354.1577
+63789.05502981739 3.6310799 -7354.3545
+63790.05502986489 3.6310406 -7353.9609
+63791.05502991239 3.6308436 -7353.1738
+63792.05502995988 3.6307256 -7354.5513
+63793.05503000738 3.6306863 -7353.9609
+63794.05503005488 3.6305287 -7353.5669
+63795.05503010238 3.630568 -7353.9609
+63796.05503014987 3.6303318 -7354.1577
+63797.05503019737 3.6303318 -7353.5669
+63798.05503024487 3.6301744 -7353.9609
+63799.05503029237 3.6300564 -7353.7646
+63800.05503033986 3.6300168 -7354.3545
+63801.05503038736 3.6299381 -7354.3545
+63802.05503043486 3.6298594 -7354.1577
+63803.05503048236 3.6297412 -7354.7485
+63804.05503052985 3.6296625 -7354.1577
+63805.05503057735 3.6295052 -7353.7646
+63806.05503062485 3.6293869 -7353.9609
+63807.05503067235 3.6293476 -7354.3545
+63808.05503071984 3.6293082 -7354.3545
+63809.05503076734 3.6292689 -7353.5669
+63810.05503081484 3.6291902 -7353.9609
+63811.05503086234 3.6290326 -7353.7646
+63812.05503090983 3.6288359 -7354.1577
+63813.05503095733 3.628757 -7353.5669
+63814.05503100483 3.6287177 -7353.7646
+63815.05503105232 3.6285603 -7353.7646
+63816.05503109982 3.628521 -7353.9609
+63817.05503114732 3.628442 -7353.3706
+63818.05503119482 3.628324 -7353.5669
+63819.05503124231 3.6282454 -7353.5669
+63820.05503128981 3.6281664 -7353.9609
+63821.05503133731 3.6280091 -7353.3706
+63822.05503138481 3.6277728 -7353.9609
+63823.0550314323 3.6278121 -7354.5513
+63824.0550314798 3.6276941 -7354.3545
+63825.0550315273 3.6275759 -7352.7803
+63826.0550315748 3.6274185 -7353.5669
+63827.05503162229 3.6274185 -7354.1577
+63828.05503166979 3.6272216 -7354.3545
+63829.05503171729 3.6271036 -7354.5513
+63830.05503176479 3.6269855 -7354.3545
+63831.05503181228 3.626946 -7353.5669
+63832.05503185978 3.6267099 -7353.7646
+63833.05503190728 3.6267099 -7354.5513
+63834.05503195478 3.6265523 -7354.7485
+63835.05503200227 3.626513 -7353.7646
+63836.05503204977 3.6263556 -7353.9609
+63837.05503209727 3.6262767 -7353.9609
+63838.05503214477 3.6262767 -7353.9609
+63839.05503219226 3.6260405 -7353.9609
+63840.05503223976 3.6258831 -7354.3545
+63841.05503228726 3.6258438 -7353.5669
+63842.05503233476 3.6258438 -7354.9453
+63843.05503238225 3.6256862 -7354.7485
+63844.05503242975 3.6255288 -7354.1577
+63845.05503247725 3.6254106 -7353.9609
+63846.05503252475 3.6253712 -7353.3706
+63847.05503257224 3.6253319 -7354.1577
+63848.05503261974 3.6250956 -7354.1577
+63849.05503266724 3.6250169 -7354.3545
+63850.05503271474 3.6249776 -7354.1577
+63851.05503276223 3.6249776 -7353.9609
+63852.05503280973 3.6247807 -7353.7646
+63853.05503285723 3.6246626 -7353.7646
+63854.05503290473 3.6246626 -7354.5513
+63855.05503295222 3.6244264 -7353.9609
+63856.05503299972 3.6243083 -7353.5669
+63857.05503304722 3.6243083 -7354.1577
+63858.05503309472 3.6241114 -7353.7646
+63859.05503314221 3.6239934 -7353.9609
+63860.05503318971 3.6238358 -7353.7646
+63861.05503323721 3.6237178 -7353.9609
+63862.05503328471 3.6235602 -7353.5669
+63863.0550333322 3.6235998 -7354.5513
+63864.0550333797 3.6234028 -7353.7646
+63865.0550334272 3.6233635 -7353.9609
+63866.05503347469 3.6231272 -7353.9609
+63867.05503352219 3.6231666 -7353.7646
+63868.05503356969 3.6229699 -7354.1577
+63869.05503361719 3.6229303 -7354.1577
+63870.05503366468 3.6227336 -7354.1577
+63871.05503371218 3.622576 -7353.9609
+63872.05503375968 3.6226943 -7354.1577
+63873.05503380718 3.6225367 -7353.3706
+63874.05503385467 3.6224973 -7353.9609
+63875.05503390217 3.6223793 -7354.1577
+63876.05503394967 3.622143 -7353.5669
+63877.05503399717 3.6220644 -7354.1577
+63878.05503404466 3.6219068 -7354.1577
+63879.05503409216 3.6218281 -7354.9453
+63880.05503413966 3.6217887 -7353.7646
+63881.05503418716 3.6217098 -7354.3545
+63882.05503423465 3.6215525 -7354.3545
+63883.05503428215 3.6214738 -7354.5513
+63884.05503432965 3.6214345 -7353.3706
+63885.05503437715 3.6213162 -7353.9609
+63886.05503442464 3.6211195 -7354.3545
+63887.05503447214 3.6210406 -7354.7485
+63888.05503451964 3.6209619 -7354.1577
+63889.05503456714 3.6208439 -7354.3545
+63890.05503461463 3.6207256 -7354.1577
+63891.05503466213 3.620647 -7354.1577
+63892.05503470963 3.6203713 -7354.7485
+63893.05503475713 3.6203713 -7354.1577
+63894.05503480462 3.6202533 -7353.3706
+63895.05503485212 3.620214 -7353.9609
+63896.05503489962 3.6200171 -7353.9609
+63897.05503494712 3.6199384 -7354.1577
+63898.05503499461 3.6197808 -7353.9609
+63899.05503504211 3.6196628 -7353.3706
+63900.05503508961 3.6195841 -7352.9771
+63901.05503513711 3.6194265 -7353.7646
+63902.0550351846 3.6193478 -7353.7646
+63903.0550352321 3.6192296 -7354.1577
+63904.0550352796 3.6191509 -7354.5513
+63905.0550353271 3.6189935 -7353.5669
+63906.05503537459 3.6190722 -7353.3706
+63907.05503542209 3.6187966 -7353.1738
+63908.05503546959 3.6188359 -7354.3545
+63909.05503551709 3.6187179 -7353.3706
+63910.05503556458 3.618639 -7354.3545
+63911.05503561208 3.6185997 -7354.3545
+63912.05503565958 3.6183636 -7354.1577
+63913.05503570708 3.618324 -7353.9609
+63914.05503575457 3.618206 -7354.1577
+63915.05503580207 3.6180487 -7353.7646
+63916.05503584957 3.6179698 -7353.5669
+63917.05503589707 3.6178911 -7354.1577
+63918.05503594456 3.6177731 -7353.7646
+63919.05503599206 3.6177337 -7353.9609
+63920.05503603956 3.6176155 -7354.3545
+63921.05503608705 3.6174974 -7353.9609
+63922.05503613455 3.6173398 -7354.3545
+63923.05503618205 3.6172218 -7354.5513
+63924.05503622955 3.6171825 -7354.5513
+63925.05503627704 3.6170642 -7354.7485
+63926.05503632454 3.6170249 -7353.9609
+63927.05503637204 3.6169069 -7353.9609
+63928.05503641954 3.6168675 -7354.5513
+63929.05503646703 3.6166313 -7353.1738
+63930.05503651453 3.6165919 -7353.9609
+63931.05503656203 3.6165526 -7353.9609
+63932.05503660953 3.6164737 -7354.1577
+63933.05503665702 3.6163163 -7354.7485
+63934.05503670452 3.6161587 -7353.5669
+63935.05503675202 3.6161587 -7354.3545
+63936.05503679952 3.6161194 -7353.9609
+63937.05503684701 3.6160014 -7354.5513
+63938.05503689451 3.6158044 -7354.3545
+63939.05503694201 3.6158834 -7354.3545
+63940.05503698951 3.6157651 -7354.1577
+63941.055037037 3.6155684 -7353.3706
+63942.0550370845 3.6155288 -7354.1577
+63943.055037132 3.6153715 -7354.1577
+63944.0550371795 3.6154895 -7354.7485
+63945.05503722699 3.6152532 -7354.7485
+63946.05503727449 3.6152139 -7353.7646
+63947.05503732199 3.6150565 -7354.3545
+63948.05503736949 3.6151352 -7354.7485
+63949.05503741698 3.6149383 -7353.5669
+63950.05503746448 3.6148989 -7354.1577
+63951.05503751198 3.6147416 -7353.9609
+63952.05503755948 3.6146629 -7353.3706
+63953.05503760697 3.6145053 -7353.5669
+63954.05503765447 3.614466 -7354.1577
+63955.05503770197 3.6143084 -7353.9609
+63956.05503774947 3.614269 -7354.3545
+63957.05503779696 3.6142297 -7354.3545
+63958.05503784446 3.614151 -7354.1577
+63959.05503789196 3.6139934 -7353.7646
+63960.05503793946 3.6139934 -7353.7646
+63961.05503798695 3.6137574 -7353.9609
+63962.05503803445 3.6137574 -7354.3545
+63963.05503808195 3.6135604 -7353.1738
+63964.05503812945 3.6135604 -7353.7646
+63965.05503817694 3.6134424 -7353.9609
+63966.05503822444 3.6134818 -7353.3706
+63967.05503827194 3.6132848 -7353.3706
+63968.05503831944 3.6131668 -7353.5669
+63969.05503836693 3.6132061 -7354.3545
+63970.05503841443 3.6130879 -7353.7646
+63971.05503846193 3.6129699 -7354.3545
+63972.05503850942 3.6128912 -7353.1738
+63973.05503855692 3.6127336 -7353.7646
+63974.05503860442 3.6126549 -7353.9609
+63975.05503865192 3.6125762 -7353.3706
+63976.05503869941 3.612458 -7354.9453
+63977.05503874691 3.61234 -7353.5669
+63978.05503879441 3.61234 -7353.7646
+63979.05503884191 3.6122613 -7355.1421
+63980.0550388894 3.612143 -7354.3545
+63981.0550389369 3.6119857 -7354.5513
+63982.0550389844 3.611907 -7354.3545
+63983.0550390319 3.6118674 -7354.7485
+63984.05503907939 3.6116314 -7353.9609
+63985.05503912689 3.6115131 -7354.1577
+63986.05503917439 3.6114345 -7353.9609
+63987.05503922189 3.6112771 -7354.1577
+63988.05503926938 3.6112771 -7354.3545
+63989.05503931688 3.6110802 -7353.3706
+63990.05503936438 3.6110408 -7354.1577
+63991.05503941188 3.6110015 -7354.1577
+63992.05503945937 3.6108046 -7353.1738
+63993.05503950687 3.6107259 -7353.9609
+63994.05503955437 3.6106076 -7354.3545
+63995.05503960187 3.6104503 -7353.9609
+63996.05503964936 3.6102927 -7353.7646
+63997.05503969686 3.610214 -7354.7485
+63998.05503974436 3.6100566 -7354.3545
+63999.05503979186 3.6100566 -7353.9609
+64000.05503983935 3.6099384 -7353.5669
+64001.05503988685 3.6097417 -7353.7646
+64002.05503993435 3.6096628 -7353.7646
+64003.05503998185 3.6095448 -7354.1577
+64004.05504002934 3.6093872 -7354.1577
+64005.05504007684 3.6094267 -7353.7646
+64006.05504012434 3.6091511 -7353.1738
+64007.05504017184 3.6091118 -7353.9609
+64008.05504021933 3.6090329 -7353.3706
+64009.05504026683 3.6088755 -7353.5669
+64010.05504031433 3.6087573 -7354.3545
+64011.05504036183 3.6086786 -7353.9609
+64012.05504040932 3.6086392 -7353.9609
+64013.05504045682 3.6085999 -7353.7646
+64014.05504050432 3.6084819 -7354.1577
+64015.05504055182 3.6083243 -7354.1577
+64016.05504059931 3.6081667 -7354.9453
+64017.05504064681 3.608088 -7353.9609
+64018.05504069431 3.6079307 -7353.5669
+64019.05504074181 3.6080093 -7354.1577
+64020.0550407893 3.6076944 -7354.1577
+64021.0550408368 3.6076157 -7354.1577
+64022.0550408843 3.6074188 -7353.7646
+64023.05504093179 3.6074188 -7353.9609
+64024.05504097929 3.6073008 -7353.9609
+64025.05504102679 3.6073008 -7353.5669
+64026.05504107429 3.6069858 -7354.7485
+64027.05504112178 3.6069069 -7353.5669
+64028.05504116928 3.6067889 -7353.7646
+64029.05504121678 3.6066709 -7353.5669
+64030.05504126428 3.6067102 -7354.1577
+64031.05504131177 3.6063559 -7353.5669
+64032.05504135927 3.6063559 -7353.9609
+64033.05504140677 3.6061983 -7353.7646
+64034.05504145427 3.6062376 -7353.9609
+64035.05504150176 3.6060014 -7354.3545
+64036.05504154926 3.6059227 -7354.5513
+64037.05504159676 3.605844 -7353.5669
+64038.05504164426 3.6056471 -7354.1577
+64039.05504169175 3.6055684 -7353.7646
+64040.05504173925 3.6056077 -7353.5669
+64041.05504178675 3.6053715 -7353.7646
+64042.05504183425 3.6052928 -7354.3545
+64043.05504188174 3.6051354 -7354.1577
+64044.05504192924 3.6050961 -7354.3545
+64045.05504197674 3.6049778 -7354.3545
+64046.05504202424 3.6048598 -7353.9609
+64047.05504207173 3.6047809 -7354.7485
+64048.05504211923 3.6046629 -7354.3545
+64049.05504216673 3.6046236 -7354.7485
+64050.05504221423 3.6045055 -7353.5669
+64051.05504226172 3.6043086 -7353.7646
+64052.05504230922 3.6041906 -7354.7485
+64053.05504235672 3.6041117 -7354.1577
+64054.05504240422 3.6039937 -7354.1577
+64055.05504245171 3.6038756 -7354.3545
+64056.05504249921 3.6037967 -7353.5669
+64057.05504254671 3.6036787 -7353.7646
+64058.05504259421 3.6036 -7354.1577
+64059.0550426417 3.6035211 -7354.3545
+64060.0550426892 3.6034031 -7353.3706
+64061.0550427367 3.6032062 -7354.1577
+64062.0550427842 3.6030881 -7354.7485
+64063.05504283169 3.6030881 -7353.9609
+64064.05504287919 3.6028912 -7353.1738
+64065.05504292669 3.6028125 -7353.5669
+64066.05504297419 3.6026156 -7354.3545
+64067.05504302168 3.6025763 -7353.9609
+64068.05504306918 3.6024976 -7353.9609
+64069.05504311668 3.6024189 -7353.5669
+64070.05504316418 3.6023402 -7353.3706
+64071.05504321167 3.6021039 -7353.3706
+64072.05504325917 3.6021433 -7354.5513
+64073.05504330667 3.6019464 -7353.9609
+64074.05504335416 3.6018677 -7353.3706
+64075.05504340166 3.601789 -7354.1577
+64076.05504344916 3.6015527 -7354.3545
+64077.05504349666 3.6015134 -7353.7646
+64078.05504354415 3.6013165 -7355.1421
+64079.05504359165 3.6012378 -7354.7485
+64080.05504363915 3.6011591 -7354.1577
+64081.05504368665 3.6010015 -7354.7485
+64082.05504373414 3.6008835 -7354.5513
+64083.05504378164 3.6008441 -7353.7646
+64084.05504382914 3.6006472 -7354.1577
+64085.05504387664 3.6004899 -7353.5669
+64086.05504392413 3.6004503 -7354.3545
+64087.05504397163 3.6002536 -7354.1577
+64088.05504401913 3.6002929 -7354.9453
+64089.05504406663 3.600096 -7354.3545
+64090.05504411412 3.599978 -7354.1577
+64091.05504416162 3.5998993 -7353.3706
+64092.05504420912 3.59986 -7354.5513
+64093.05504425662 3.5997024 -7354.3545
+64094.05504430411 3.599663 -7354.3545
+64095.05504435161 3.5995054 -7353.9609
+64096.05504439911 3.5993481 -7353.9609
+64097.05504444661 3.5992694 -7354.5513
+64098.0550444941 3.5991118 -7354.1577
+64099.0550445416 3.5990331 -7353.1738
+64100.0550445891 3.5989149 -7354.1577
+64101.0550446366 3.5987968 -7354.1577
+64102.05504468409 3.5988362 -7352.9771
+64103.05504473159 3.5985999 -7354.1577
+64104.05504477909 3.5984819 -7353.7646
+64105.05504482659 3.5983639 -7352.9771
+64106.05504487408 3.5983245 -7354.1577
+64107.05504492158 3.5982063 -7354.3545
+64108.05504496908 3.5980883 -7354.1577
+64109.05504501658 3.5980096 -7353.5669
+64110.05504506407 3.5978913 -7354.7485
+64111.05504511157 3.5978127 -7353.5669
+64112.05504515907 3.5976946 -7354.3545
+64113.05504520657 3.597537 -7353.7646
+64114.05504525406 3.597419 -7353.7646
+64115.05504530156 3.5973008 -7354.3545
+64116.05504534906 3.5973008 -7354.3545
+64117.05504539656 3.5972614 -7354.5513
+64118.05504544405 3.5971434 -7353.7646
+64119.05504549155 3.5969071 -7354.1577
+64120.05504553905 3.5968285 -7353.1738
+64121.05504558655 3.5967495 -7353.5669
+64122.05504563404 3.5967102 -7353.5669
+64123.05504568154 3.5965528 -7353.3706
+64124.05504572904 3.5964742 -7354.7485
+64125.05504577653 3.5962772 -7354.3545
+64126.05504582403 3.5962772 -7353.7646
+64127.05504587153 3.596041 -7354.1577
+64128.05504591903 3.596041 -7353.9609
+64129.05504596652 3.5959623 -7354.5513
+64130.05504601402 3.595844 -7354.1577
+64131.05504606152 3.5956867 -7353.5669
+64132.05504610902 3.595726 -7354.1577
+64133.05504615651 3.5955687 -7353.5669
+64134.05504620401 3.5954111 -7354.1577
+64135.05504625151 3.5953324 -7354.3545
+64136.05504629901 3.595293 -7353.9609
+64137.0550463465 3.5951355 -7353.9609
+64138.055046394 3.5949781 -7353.3706
+64139.0550464415 3.5950174 -7354.1577
+64140.055046489 3.5948598 -7353.9609
+64141.05504653649 3.5948205 -7354.1577
+64142.05504658399 3.5948598 -7354.7485
+64143.05504663149 3.5947025 -7353.7646
+64144.05504667899 3.5945055 -7353.5669
+64145.05504672648 3.5944269 -7353.5669
+64146.05504677398 3.5943482 -7354.3545
+64147.05504682148 3.5942693 -7353.9609
+64148.05504686898 3.5942299 -7353.9609
+64149.05504691647 3.5941119 -7353.9609
+64150.05504696397 3.5941119 -7353.7646
+64151.05504701147 3.5939543 -7353.9609
+64152.05504705897 3.593797 -7354.5513
+64153.05504710646 3.5937183 -7353.3706
+64154.05504715396 3.5936787 -7353.5669
+64155.05504720146 3.5935214 -7354.9453
+64156.05504724896 3.5934033 -7353.9609
+64157.05504729645 3.5933244 -7353.5669
+64158.05504734395 3.5932851 -7355.1421
+64159.05504739145 3.5932064 -7353.7646
+64160.05504743895 3.5929701 -7354.1577
+64161.05504748644 3.5930095 -7354.7485
+64162.05504753394 3.5927734 -7353.9609
+64163.05504758144 3.5927734 -7353.5669
+64164.05504762894 3.5925765 -7353.3706
+64165.05504767643 3.5925765 -7353.7646
+64166.05504772393 3.5924978 -7354.1577
+64167.05504777143 3.5922616 -7354.1577
+64168.05504781893 3.5922616 -7353.3706
+64169.05504786642 3.5922222 -7353.7646
+64170.05504791392 3.5920646 -7354.7485
+64171.05504796142 3.5919859 -7354.3545
+64172.05504800892 3.5918679 -7354.5513
+64173.05504805641 3.5918679 -7353.3706
+64174.05504810391 3.5916317 -7354.1577
+64175.05504815141 3.5915923 -7353.7646
+64176.0550481989 3.5913954 -7354.7485
+64177.0550482464 3.5913167 -7353.5669
+64178.0550482939 3.591238 -7354.1577
+64179.0550483414 3.5910017 -7353.9609
+64180.05504838889 3.5909231 -7353.3706
+64181.05504843639 3.5908442 -7353.3706
+64182.05504848389 3.5908048 -7353.3706
+64183.05504853139 3.5906868 -7353.9609
+64184.05504857888 3.5905685 -7353.9609
+64185.05504862638 3.5905292 -7354.1577
+64186.05504867388 3.5903325 -7354.3545
+64187.05504872138 3.5902536 -7354.3545
+64188.05504876887 3.5902143 -7353.7646
+64189.05504881637 3.5901356 -7354.1577
+64190.05504886387 3.5899386 -7353.9609
+64191.05504891137 3.5898993 -7353.5669
+64192.05504895886 3.589663 -7354.3545
+64193.05504900636 3.5897026 -7353.5669
+64194.05504905386 3.5896237 -7353.3706
+64195.05504910136 3.5895844 -7353.9609
+64196.05504914885 3.5894663 -7354.5513
+64197.05504919635 3.5893087 -7354.3545
+64198.05504924385 3.5893087 -7354.1577
+64199.05504929135 3.5891907 -7354.3545
+64200.05504933884 3.589112 -7353.9609
+64201.05504938634 3.5889151 -7354.5513
+64202.05504943384 3.5889151 -7353.7646
+64203.05504948134 3.5886788 -7353.5669
+64204.05504952883 3.5887578 -7354.3545
+64205.05504957633 3.5885608 -7353.1738
+64206.05504962383 3.5885215 -7353.9609
+64207.05504967133 3.5884426 -7354.1577
+64208.05504971882 3.5883639 -7354.3545
+64209.05504976632 3.5882065 -7354.3545
+64210.05504981382 3.5880489 -7354.3545
+64211.05504986132 3.5879703 -7353.7646
+64212.05504990881 3.5878522 -7354.5513
+64213.05504995631 3.5876946 -7354.1577
+64214.05505000381 3.5876553 -7354.3545
+64215.05505005131 3.5875373 -7353.7646
+64216.0550500988 3.587419 -7353.9609
+64217.0550501463 3.587301 -7353.7646
+64218.0550501938 3.5871434 -7354.5513
+64219.0550502413 3.5870254 -7353.5669
+64220.05505028879 3.5869467 -7353.9609
+64221.05505033629 3.5868678 -7353.9609
+64222.05505038379 3.5867498 -7353.5669
+64223.05505043129 3.5865922 -7354.3545
+64224.05505047878 3.5865135 -7353.5669
+64225.05505052628 3.5863562 -7353.9609
+64226.05505057378 3.5862772 -7354.3545
+64227.05505062127 3.5861986 -7352.9771
+64228.05505066877 3.5860019 -7354.5513
+64229.05505071627 3.5860019 -7353.9609
+64230.05505076377 3.5858836 -7353.5669
+64231.05505081126 3.5857656 -7353.9609
+64232.05505085876 3.585608 -7354.5513
+64233.05505090626 3.5854506 -7353.7646
+64234.05505095376 3.5854113 -7353.5669
+64235.05505100125 3.5852537 -7353.7646
+64236.05505104875 3.5850964 -7354.5513
+64237.05505109625 3.5851357 -7353.7646
+64238.05505114375 3.5849388 -7353.7646
+64239.05505119124 3.5847418 -7353.9609
+64240.05505123874 3.5847418 -7353.7646
+64241.05505128624 3.5845845 -7353.7646
+64242.05505133374 3.5845845 -7353.5669
+64243.05505138123 3.5845058 -7354.3545
+64244.05505142873 3.5843482 -7353.5669
+64245.05505147623 3.5841515 -7353.7646
+64246.05505152373 3.5840726 -7354.3545
+64247.05505157122 3.5839152 -7353.5669
+64248.05505161872 3.5838366 -7353.7646
+64249.05505166622 3.5837183 -7353.9609
+64250.05505171372 3.5836396 -7354.5513
+64251.05505176121 3.583482 -7353.5669
+64252.05505180871 3.5834427 -7353.5669
+64253.05505185621 3.583246 -7353.7646
+64254.05505190371 3.5831277 -7353.1738
+64255.0550519512 3.5831671 -7354.5513
+64256.0550519987 3.582931 -7354.3545
+64257.0550520462 3.5828915 -7353.5669
+64258.0550520937 3.5827734 -7354.5513
+64259.05505214119 3.5826948 -7354.3545
+64260.05505218869 3.5826554 -7354.5513
+64261.05505223619 3.5823798 -7353.7646
+64262.05505228369 3.5823798 -7354.3545
+64263.05505233118 3.5823405 -7353.7646
+64264.05505237868 3.5822222 -7354.1577
+64265.05505242618 3.5820255 -7354.1577
+64266.05505247368 3.5821042 -7353.9609
+64267.05505252117 3.5819862 -7354.3545
+64268.05505256867 3.5818286 -7353.5669
+64269.05505261617 3.5817106 -7354.3545
+64270.05505266367 3.5816712 -7354.1577
+64271.05505271116 3.5816317 -7354.3545
+64272.05505275866 3.5814743 -7354.9453
+64273.05505280616 3.581435 -7354.5513
+64274.05505285366 3.5812774 -7354.5513
+64275.05505290115 3.5811594 -7352.9771
+64276.05505294865 3.5811594 -7354.5513
+64277.05505299615 3.58112 -7354.5513
+64278.05505304364 3.5810411 -7353.5669
+64279.05505309114 3.5810018 -7353.9609
+64280.05505313864 3.5808051 -7353.5669
+64281.05505318614 3.5806868 -7354.5513
+64282.05505323363 3.5805688 -7353.9609
+64283.05505328113 3.5805688 -7354.1577
+64284.05505332863 3.5803325 -7353.7646
+64285.05505337613 3.5803719 -7354.1577
+64286.05505342362 3.5801752 -7353.7646
+64287.05505347112 3.5800176 -7354.9453
+64288.05505351862 3.5800569 -7354.3545
+64289.05505356612 3.5798602 -7354.5513
+64290.05505361361 3.5798995 -7353.3706
+64291.05505366111 3.5798602 -7353.5669
+64292.05505370861 3.5796633 -7353.5669
+64293.05505375611 3.5795057 -7353.7646
+64294.0550538036 3.5794663 -7353.9609
+64295.0550538511 3.5793483 -7353.3706
+64296.0550538986 3.5791907 -7353.3706
+64297.0550539461 3.5791907 -7354.1577
+64298.05505399359 3.578994 -7353.5669
+64299.05505404109 3.5789547 -7353.7646
+64300.05505408859 3.5788758 -7354.5513
+64301.05505413609 3.5789154 -7355.1421
+64302.05505418358 3.5787578 -7354.3545
+64303.05505423108 3.5786004 -7353.5669
+64304.05505427858 3.5784822 -7354.1577
+64305.05505432608 3.5784428 -7352.7803
+64306.05505437357 3.5784035 -7353.5669
+64307.05505442107 3.5782855 -7354.1577
+64308.05505446857 3.5781672 -7353.5669
+64309.05505451607 3.5781279 -7353.9609
+64310.05505456356 3.5779705 -7354.3545
+64311.05505461106 3.5778129 -7354.5513
+64312.05505465856 3.5778129 -7353.7646
+64313.05505470606 3.5776949 -7354.5513
+64314.05505475355 3.5775373 -7353.5669
+64315.05505480105 3.5774586 -7354.3545
+64316.05505484855 3.5774193 -7353.5669
+64317.05505489605 3.5773404 -7353.5669
+64318.05505494354 3.5771437 -7353.7646
+64319.05505499104 3.5771043 -7353.1738
+64320.05505503854 3.5769467 -7354.1577
+64321.05505508604 3.5769861 -7354.3545
+64322.05505513353 3.5769074 -7353.7646
+64323.05505518103 3.5768681 -7353.7646
+64324.05505522853 3.5767894 -7353.7646
+64325.05505527603 3.5765924 -7354.3545
+64326.05505532352 3.5766318 -7354.1577
+64327.05505537102 3.5763955 -7353.9609
+64328.05505541852 3.5762775 -7354.1577
+64329.05505546601 3.5763168 -7353.7646
+64330.05505551351 3.5761988 -7354.1577
+64331.05505556101 3.5761988 -7354.5513
+64332.05505560851 3.5760019 -7353.9609
+64333.055055656 3.5759625 -7353.5669
+64334.0550557035 3.5758445 -7353.3706
+64335.055055751 3.5757656 -7354.1577
+64336.0550557985 3.5756476 -7353.9609
+64337.05505584599 3.5755296 -7354.3545
+64338.05505589349 3.5754507 -7354.3545
+64339.05505594099 3.5754507 -7353.7646
+64340.05505598849 3.5752933 -7353.7646
+64341.05505603598 3.5752933 -7354.9453
+64342.05505608348 3.575175 -7353.7646
+64343.05505613098 3.5750177 -7353.7646
+64344.05505617848 3.574939 -7354.7485
+64345.05505622597 3.5747814 -7354.1577
+64346.05505627347 3.5747814 -7353.9609
+64347.05505632097 3.5746634 -7354.7485
+64348.05505636847 3.5746241 -7354.1577
+64349.05505641596 3.5745451 -7353.9609
+64350.05505646346 3.5744271 -7354.3545
+64351.05505651096 3.5744271 -7354.3545
+64352.05505655846 3.5742302 -7353.9609
+64353.05505660595 3.5741122 -7354.1577
+64354.05505665345 3.5741909 -7353.5669
+64355.05505670095 3.5739546 -7354.3545
+64356.05505674845 3.5739942 -7354.5513
+64357.05505679594 3.5739152 -7353.9609
+64358.05505684344 3.5737579 -7353.7646
+64359.05505689094 3.5736396 -7353.7646
+64360.05505693844 3.573561 -7354.1577
+64361.05505698593 3.5734823 -7354.5513
+64362.05505703343 3.5734036 -7354.1577
+64363.05505708093 3.573246 -7354.3545
+64364.05505712843 3.573128 -7354.1577
+64365.05505717592 3.573128 -7353.9609
+64366.05505722342 3.5730886 -7353.7646
+64367.05505727092 3.5730493 -7354.3545
+64368.05505731842 3.572813 -7353.5669
+64369.05505736591 3.5726948 -7353.7646
+64370.05505741341 3.5726161 -7353.7646
+64371.05505746091 3.5726554 -7354.1577
+64372.05505750841 3.5725768 -7353.1738
+64373.0550575559 3.5723405 -7353.5669
+64374.0550576034 3.5723405 -7353.5669
+64375.0550576509 3.5723405 -7353.3706
+64376.0550576984 3.5720649 -7353.7646
+64377.05505774589 3.5719469 -7353.1738
+64378.05505779339 3.5719075 -7354.1577
+64379.05505784089 3.5718682 -7353.9609
+64380.05505788838 3.5718682 -7352.9771
+64381.05505793588 3.5715926 -7353.5669
+64382.05505798338 3.5716319 -7353.9609
+64383.05505803088 3.5715532 -7354.7485
+64384.05505807837 3.5713956 -7354.7485
+64385.05505812587 3.571317 -7354.9453
+64386.05505817337 3.571317 -7353.1738
+64387.05505822087 3.5711594 -7353.7646
+64388.05505826836 3.5710413 -7353.7646
+64389.05505831586 3.5709233 -7353.7646
+64390.05505836336 3.570884 -7354.1577
+64391.05505841086 3.5708051 -7354.1577
+64392.05505845835 3.5706871 -7354.9453
+64393.05505850585 3.5706871 -7353.9609
+64394.05505855335 3.5704508 -7352.9771
+64395.05505860085 3.5704901 -7353.5669
+64396.05505864834 3.5703328 -7353.7646
+64397.05505869584 3.5701358 -7353.7646
+64398.05505874334 3.5700965 -7353.9609
+64399.05505879084 3.5698996 -7354.3545
+64400.05505883833 3.5699389 -7353.1738
+64401.05505888583 3.5698209 -7354.1577
+64402.05505893333 3.5697029 -7353.7646
+64403.05505898083 3.5696635 -7353.5669
+64404.05505902832 3.5696239 -7354.1577
+64405.05505907582 3.5694666 -7354.1577
+64406.05505912332 3.5693879 -7353.1738
+64407.05505917082 3.5692697 -7354.1577
+64408.05505921831 3.5691516 -7353.3706
+64409.05505926581 3.5691516 -7354.3545
+64410.05505931331 3.5689547 -7353.1738
+64411.05505936081 3.5689154 -7353.9609
+64412.0550594083 3.5688367 -7353.7646
+64413.0550594558 3.5687973 -7354.1577
+64414.0550595033 3.5685611 -7353.3706
+64415.0550595508 3.5685611 -7354.3545
+64416.05505959829 3.5684824 -7354.5513
+64417.05505964579 3.5684431 -7353.1738
+64418.05505969329 3.5683248 -7353.9609
+64419.05505974079 3.5682461 -7354.3545
+64420.05505978828 3.5681674 -7354.3545
+64421.05505983578 3.5679705 -7353.9609
+64422.05505988328 3.5679312 -7353.5669
+64423.05505993078 3.5677736 -7353.7646
+64424.05505997827 3.5677342 -7353.9609
+64425.05506002577 3.5675769 -7354.1577
+64426.05506007327 3.5674586 -7353.9609
+64427.05506012077 3.56738 -7353.7646
+64428.05506016826 3.5673013 -7354.1577
+64429.05506021576 3.5671043 -7354.1577
+64430.05506026326 3.5671043 -7352.9771
+64431.05506031075 3.5669076 -7353.5669
+64432.05506035825 3.5668287 -7352.7803
+64433.05506040575 3.5665927 -7353.7646
+64434.05506045325 3.5664744 -7353.5669
+64435.05506050074 3.5663564 -7353.7646
+64436.05506054824 3.5662777 -7353.5669
+64437.05506059574 3.5661988 -7353.9609
+64438.05506064324 3.5661201 -7353.5669
+64439.05506069073 3.5660808 -7352.1895
+64440.05506073823 3.5660021 -7353.5669
+64441.05506078573 3.5658052 -7353.9609
+64442.05506083323 3.5656872 -7354.5513
+64443.05506088072 3.5657659 -7353.9609
+64444.05506092822 3.5655296 -7353.1738
+64445.05506097572 3.5653722 -7354.5513
+64446.05506102322 3.5655296 -7353.9609
+64447.05506107071 3.5653722 -7354.7485
+64448.05506111821 3.5652933 -7354.1577
+64449.05506116571 3.565136 -7354.5513
+64450.05506121321 3.5649784 -7353.3706
+64451.0550612607 3.5650573 -7354.1577
+64452.0550613082 3.5648997 -7353.1738
+64453.0550613557 3.564821 -7354.1577
+64454.0550614032 3.5647817 -7354.3545
+64455.05506145069 3.5645454 -7353.5669
+64456.05506149819 3.5646241 -7353.7646
+64457.05506154569 3.5644274 -7354.5513
+64458.05506159319 3.5643878 -7353.7646
+64459.05506164068 3.5643878 -7353.7646
+64460.05506168818 3.5642698 -7353.7646
+64461.05506173568 3.5642304 -7353.7646
+64462.05506178318 3.5640728 -7354.1577
+64463.05506183067 3.5640335 -7353.9609
+64464.05506187817 3.5638368 -7353.7646
+64465.05506192567 3.5638762 -7354.1577
+64466.05506197317 3.5636792 -7353.7646
+64467.05506202066 3.5635612 -7353.5669
+64468.05506206816 3.5636005 -7354.3545
+64469.05506211566 3.5634036 -7353.1738
+64470.05506216316 3.5633643 -7354.7485
+64471.05506221065 3.5632069 -7354.3545
+64472.05506225815 3.563128 -7353.5669
+64473.05506230565 3.56301 -7353.9609
+64474.05506235315 3.562813 -7353.3706
+64475.05506240064 3.562813 -7353.9609
+64476.05506244814 3.562695 -7353.5669
+64477.05506249564 3.5626557 -7353.7646
+64478.05506254314 3.5624588 -7353.1738
+64479.05506259063 3.5624588 -7354.5513
+64480.05506263813 3.5622621 -7353.7646
+64481.05506268563 3.5621831 -7354.1577
+64482.05506273312 3.5621045 -7353.9609
+64483.05506278062 3.5620651 -7354.3545
+64484.05506282812 3.5619075 -7354.1577
+64485.05506287562 3.5618682 -7353.5669
+64486.05506292311 3.5617502 -7353.5669
+64487.05506297061 3.5617502 -7354.5513
+64488.05506301811 3.5616319 -7353.7646
+64489.05506306561 3.5614746 -7355.1421
+64490.0550631131 3.5613565 -7354.1577
+64491.0550631606 3.5613959 -7353.9609
+64492.0550632081 3.5612776 -7353.1738
+64493.0550632556 3.5612383 -7354.3545
+64494.05506330309 3.5611596 -7353.9609
+64495.05506335059 3.561002 -7354.5513
+64496.05506339809 3.5610416 -7353.7646
+64497.05506344559 3.5609627 -7353.9609
+64498.05506349308 3.5608447 -7353.9609
+64499.05506354058 3.560766 -7353.9609
+64500.05506358808 3.5606477 -7353.3706
+64501.05506363558 3.5604904 -7354.3545
+64502.05506368307 3.560451 -7354.1577
+64503.05506373057 3.5604117 -7352.7803
+64504.05506377807 3.5601754 -7353.5669
+64505.05506382557 3.5602148 -7352.3862
+64506.05506387306 3.5600967 -7354.5513
+64507.05506392056 3.5598998 -7353.3706
+64508.05506396806 3.5598998 -7353.7646
+64509.05506401556 3.5597422 -7353.1738
+64510.05506406305 3.5596635 -7353.9609
+64511.05506411055 3.5595849 -7353.7646
+64512.05506415805 3.5595849 -7353.3706
+64513.05506420555 3.5594273 -7353.7646
+64514.05506425304 3.5591912 -7354.5513
+64515.05506430054 3.5592306 -7354.5513
+64516.05506434804 3.5591516 -7353.3706
+64517.05506439554 3.5589943 -7353.5669
+64518.05506444303 3.5588763 -7354.7485
+64519.05506449053 3.5588367 -7353.7646
+64520.05506453803 3.5587187 -7353.3706
+64521.05506458553 3.5586793 -7354.3545
+64522.05506463302 3.5585217 -7353.7646
+64523.05506468052 3.5584824 -7353.7646
+64524.05506472802 3.5584431 -7354.5513
+64525.05506477552 3.5583251 -7353.9609
+64526.05506482301 3.5582857 -7353.7646
+64527.05506487051 3.5582068 -7353.5669
+64528.05506491801 3.5579708 -7353.7646
+64529.05506496551 3.5580888 -7353.5669
+64530.055065013 3.5580101 -7354.3545
+64531.0550650605 3.5579312 -7354.1577
+64532.055065108 3.5577738 -7353.9609
+64533.0550651555 3.5578132 -7353.9609
+64534.05506520299 3.5576558 -7353.7646
+64535.05506525049 3.5576558 -7353.3706
+64536.05506529799 3.5574982 -7353.3706
+64537.05506534548 3.5574982 -7353.9609
+64538.05506539298 3.5574195 -7353.1738
+64539.05506544048 3.5572619 -7354.5513
+64540.05506548798 3.5572619 -7354.1577
+64541.05506553547 3.5571439 -7353.9609
+64542.05506558297 3.5571046 -7354.3545
+64543.05506563047 3.5568683 -7353.7646
+64544.05506567797 3.5569077 -7354.3545
+64545.05506572546 3.5569077 -7354.1577
+64546.05506577296 3.5566714 -7354.1577
+64547.05506582046 3.556632 -7353.9609
+64548.05506586796 3.5566714 -7353.7646
+64549.05506591545 3.556514 -7354.5513
+64550.05506596295 3.5564353 -7354.3545
+64551.05506601045 3.5563564 -7353.5669
+64552.05506605795 3.5562384 -7354.5513
+64553.05506610544 3.5561597 -7354.5513
+64554.05506615294 3.5560808 -7353.9609
+64555.05506620044 3.5559235 -7353.5669
+64556.05506624794 3.5558841 -7353.9609
+64557.05506629543 3.5558054 -7354.5513
+64558.05506634293 3.5556872 -7354.1577
+64559.05506639043 3.5556479 -7353.1738
+64560.05506643793 3.5554509 -7354.7485
+64561.05506648542 3.5554116 -7353.3706
+64562.05506653292 3.5552542 -7354.1577
+64563.05506658042 3.555136 -7353.7646
+64564.05506662792 3.5550179 -7353.9609
+64565.05506667541 3.5550179 -7354.3545
+64566.05506672291 3.5548606 -7354.5513
+64567.05506677041 3.554821 -7354.3545
+64568.05506681791 3.554703 -7353.9609
+64569.0550668654 3.5545061 -7354.5513
+64570.0550669129 3.5545454 -7355.1421
+64571.0550669604 3.5543094 -7353.7646
+64572.0550670079 3.5543487 -7354.1577
+64573.05506705539 3.5542305 -7354.1577
+64574.05506710289 3.5540338 -7353.3706
+64575.05506715039 3.5539551 -7354.1577
+64576.05506719789 3.5539551 -7354.5513
+64577.05506724538 3.5538368 -7353.3706
+64578.05506729288 3.5536795 -7353.9609
+64579.05506734038 3.5535612 -7354.1577
+64580.05506738788 3.5535219 -7353.3706
+64581.05506743537 3.5534432 -7354.7485
+64582.05506748287 3.5532463 -7352.9771
+64583.05506753037 3.5532069 -7353.5669
+64584.05506757787 3.5530496 -7353.1738
+64585.05506762536 3.5530496 -7353.9609
+64586.05506767286 3.552774 -7353.5669
+64587.05506772036 3.5527346 -7354.1577
+64588.05506776785 3.552774 -7354.1577
+64589.05506781535 3.552577 -7354.9453
+64590.05506786285 3.5524983 -7353.9609
+64591.05506791035 3.552459 -7353.7646
+64592.05506795784 3.5522621 -7353.1738
+64593.05506800534 3.5521834 -7353.7646
+64594.05506805284 3.5521441 -7353.9609
+64595.05506810034 3.5521834 -7354.1577
+64596.05506814783 3.5520651 -7354.1577
+64597.05506819533 3.5519078 -7353.3706
+64598.05506824283 3.5518684 -7353.9609
+64599.05506829033 3.5517108 -7354.5513
+64600.05506833782 3.5517502 -7354.3545
+64601.05506838532 3.5516322 -7354.5513
+64602.05506843282 3.5515928 -7353.9609
+64603.05506848032 3.5514748 -7353.5669
+64604.05506852781 3.5514352 -7353.5669
+64605.05506857531 3.5514352 -7353.9609
+64606.05506862281 3.5512779 -7354.1577
+64607.05506867031 3.5511992 -7354.5513
+64608.0550687178 3.5511203 -7353.5669
+64609.0550687653 3.5510023 -7353.5669
+64610.0550688128 3.5509629 -7354.3545
+64611.0550688603 3.5508842 -7353.9609
+64612.05506890779 3.5508447 -7353.5669
+64613.05506895529 3.550648 -7354.5513
+64614.05506900279 3.5506086 -7353.9609
+64615.05506905029 3.5505693 -7354.7485
+64616.05506909778 3.550451 -7353.9609
+64617.05506914528 3.5504117 -7355.1421
+64618.05506919278 3.5502937 -7353.5669
+64619.05506924028 3.5502937 -7354.1577
+64620.05506928777 3.5500574 -7353.9609
+64621.05506933527 3.5500574 -7354.3545
+64622.05506938277 3.5500181 -7353.7646
+64623.05506943027 3.5498998 -7353.7646
+64624.05506947776 3.5497818 -7354.1577
+64625.05506952526 3.5497818 -7354.5513
+64626.05506957276 3.5497031 -7354.1577
+64627.05506962026 3.5496638 -7353.5669
+64628.05506966775 3.5495455 -7353.5669
+64629.05506971525 3.5495062 -7354.1577
+64630.05506976275 3.5494275 -7354.1577
+64631.05506981025 3.5493095 -7353.5669
+64632.05506985774 3.5491519 -7353.7646
+64633.05506990524 3.5491519 -7353.9609
+64634.05506995274 3.5491126 -7353.5669
+64635.05507000024 3.5490732 -7353.5669
+64636.05507004773 3.5488369 -7354.1577
+64637.05507009523 3.5488763 -7353.7646
+64638.05507014273 3.5487583 -7354.1577
+64639.05507019022 3.5487976 -7353.9609
+64640.05507023772 3.5485613 -7353.9609
+64641.05507028522 3.548522 -7354.3545
+64642.05507033272 3.5482464 -7353.5669
+64643.05507038021 3.5483251 -7354.1577
+64644.05507042771 3.5482857 -7354.5513
+64645.05507047521 3.5482464 -7354.3545
+64646.05507052271 3.5482464 -7353.7646
+64647.0550705702 3.5481677 -7353.5669
+64648.0550706177 3.548089 -7353.9609
+64649.0550706652 3.5479708 -7353.5669
+64650.0550707127 3.5480101 -7353.1738
+64651.05507076019 3.5478528 -7353.9609
+64652.05507080769 3.5478528 -7354.5513
+64653.05507085519 3.5476952 -7354.3545
+64654.05507090269 3.5475378 -7353.5669
+64655.05507095018 3.5474985 -7353.7646
+64656.05507099768 3.5474195 -7353.7646
+64657.05507104518 3.5473015 -7354.5513
+64658.05507109268 3.5471439 -7354.3545
+64659.05507114017 3.5471046 -7353.5669
+64660.05507118767 3.5470259 -7353.9609
+64661.05507123517 3.5469866 -7353.9609
+64662.05507128267 3.5468686 -7353.9609
+64663.05507133016 3.5467503 -7353.9609
+64664.05507137766 3.546711 -7353.9609
+64665.05507142516 3.5465536 -7354.1577
+64666.05507147266 3.546514 -7353.3706
+64667.05507152015 3.5464747 -7354.1577
+64668.05507156765 3.546278 -7353.9609
+64669.05507161515 3.5463173 -7353.7646
+64670.05507166265 3.5461991 -7353.7646
+64671.05507171014 3.5460811 -7353.9609
+64672.05507175764 3.545963 -7354.3545
+64673.05507180514 3.5460024 -7352.9771
+64674.05507185264 3.5458055 -7354.3545
+64675.05507190013 3.5456874 -7353.5669
+64676.05507194763 3.5456085 -7354.1577
+64677.05507199513 3.5456085 -7353.5669
+64678.05507204263 3.5455692 -7354.3545
+64679.05507209012 3.5454512 -7353.5669
+64680.05507213762 3.5453331 -7353.7646
+64681.05507218512 3.5453331 -7354.5513
+64682.05507223262 3.5452149 -7354.3545
+64683.05507228011 3.5452149 -7354.1577
+64684.05507232761 3.5450969 -7353.7646
+64685.05507237511 3.5449393 -7353.3706
+64686.05507242261 3.5448999 -7353.3706
+64687.0550724701 3.5448606 -7354.3545
+64688.0550725176 3.5447819 -7353.9609
+64689.0550725651 3.5447426 -7353.5669
+64690.05507261259 3.544585 -7353.7646
+64691.05507266009 3.5446243 -7353.5669
+64692.05507270759 3.5445457 -7354.1577
+64693.05507275509 3.5444276 -7353.3706
+64694.05507280258 3.544467 -7354.1577
+64695.05507285008 3.54427 -7353.1738
+64696.05507289758 3.54427 -7353.1738
+64697.05507294508 3.544152 -7353.7646
+64698.05507299257 3.5440733 -7352.9771
+64699.05507304007 3.5440338 -7354.5513
+64700.05507308757 3.5439551 -7354.5513
+64701.05507313507 3.5439157 -7352.7803
+64702.05507318256 3.5436795 -7354.1577
+64703.05507323006 3.5437582 -7353.3706
+64704.05507327756 3.5435615 -7353.5669
+64705.05507332506 3.5434828 -7354.1577
+64706.05507337255 3.5434828 -7354.1577
+64707.05507342005 3.5434039 -7354.1577
+64708.05507346755 3.5433645 -7353.7646
+64709.05507351505 3.5432465 -7353.7646
+64710.05507356254 3.5431283 -7353.3706
+64711.05507361004 3.5430496 -7353.5669
+64712.05507365754 3.5430102 -7353.3706
+64713.05507370504 3.5428922 -7354.3545
+64714.05507375253 3.5428529 -7353.7646
+64715.05507380003 3.5427346 -7354.3545
+64716.05507384753 3.5426559 -7353.9609
+64717.05507389503 3.5425379 -7354.3545
+64718.05507394252 3.5424197 -7353.9609
+64719.05507399002 3.542459 -7353.7646
+64720.05507403752 3.5423017 -7353.5669
+64721.05507408502 3.5422623 -7354.9453
+64722.05507413251 3.5420654 -7353.3706
+64723.05507418001 3.5421047 -7354.3545
+64724.05507422751 3.5419867 -7354.3545
+64725.05507427501 3.542026 -7353.1738
+64726.0550743225 3.5419078 -7353.3706
+64727.05507437 3.5418291 -7354.1577
+64728.0550744175 3.5417111 -7354.3545
+64729.055074465 3.5415928 -7354.1577
+64730.05507451249 3.5415928 -7353.5669
+64731.05507455999 3.5415142 -7353.9609
+64732.05507460749 3.5414355 -7354.7485
+64733.05507465499 3.5411992 -7354.5513
+64734.05507470248 3.5412779 -7354.3545
+64735.05507474998 3.5411992 -7353.9609
+64736.05507479748 3.5410812 -7354.9453
+64737.05507484498 3.5411205 -7353.3706
+64738.05507489247 3.5408843 -7354.1577
+64739.05507493997 3.5408843 -7354.3545
+64740.05507498747 3.5408056 -7354.1577
+64741.05507503496 3.5406876 -7353.9609
+64742.05507508246 3.540648 -7354.3545
+64743.05507512996 3.5406086 -7353.5669
+64744.05507517746 3.5404513 -7354.3545
+64745.05507522495 3.5403726 -7354.1577
+64746.05507527245 3.540333 -7354.7485
+64747.05507531995 3.540333 -7353.7646
+64748.05507536745 3.540215 -7353.7646
+64749.05507541494 3.5401757 -7354.3545
+64750.05507546244 3.5400574 -7354.5513
+64751.05507550994 3.540097 -7353.7646
+64752.05507555744 3.5398214 -7353.9609
+64753.05507560493 3.5399001 -7354.3545
+64754.05507565243 3.539782 -7353.9609
+64755.05507569993 3.5397031 -7353.9609
+64756.05507574743 3.5397031 -7353.7646
+64757.05507579492 3.5395851 -7353.5669
+64758.05507584242 3.5394671 -7353.3706
+64759.05507588992 3.5394671 -7353.5669
+64760.05507593742 3.5393095 -7354.5513
+64761.05507598491 3.5392308 -7353.7646
+64762.05507603241 3.5390732 -7354.7485
+64763.05507607991 3.5389159 -7354.3545
+64764.05507612741 3.5388765 -7353.1738
+64765.0550761749 3.5388765 -7354.5513
+64766.0550762224 3.5387976 -7353.5669
+64767.0550762699 3.5386796 -7353.9609
+64768.0550763174 3.5385222 -7354.5513
+64769.05507636489 3.538404 -7354.1577
+64770.05507641239 3.538286 -7353.5669
+64771.05507645989 3.538286 -7353.3706
+64772.05507650739 3.5382071 -7354.3545
+64773.05507655488 3.537971 -7353.5669
+64774.05507660238 3.5379317 -7353.3706
+64775.05507664988 3.5377741 -7353.5669
+64776.05507669738 3.5376561 -7354.7485
+64777.05507674487 3.5375772 -7354.3545
+64778.05507679237 3.5375772 -7354.1577
+64779.05507683987 3.5374591 -7354.1577
+64780.05507688737 3.5373411 -7353.9609
+64781.05507693486 3.5373018 -7353.7646
+64782.05507698236 3.5371835 -7354.7485
+64783.05507702986 3.5371048 -7354.1577
+64784.05507707736 3.5369473 -7354.1577
+64785.05507712485 3.5367112 -7354.9453
+64786.05507717235 3.5367899 -7354.1577
+64787.05507721985 3.5366716 -7354.5513
+64788.05507726735 3.5365143 -7353.7646
+64789.05507731484 3.5363963 -7353.7646
+64790.05507736234 3.536278 -7354.1577
+64791.05507740984 3.5363173 -7353.5669
+64792.05507745733 3.5360813 -7353.9609
+64793.05507750483 3.5361207 -7353.5669
+64794.05507755233 3.5359237 -7354.1577
+64795.05507759983 3.535845 -7354.1577
+64796.05507764732 3.5356874 -7354.1577
+64797.05507769482 3.5356481 -7353.7646
+64798.05507774232 3.5355694 -7354.1577
+64799.05507778982 3.5353332 -7353.7646
+64800.05507783731 3.5352545 -7354.1577
+64801.05507788481 3.5351758 -7353.9609
+64802.05507793231 3.5349395 -7354.5513
+64803.05507797981 3.5349789 -7354.1577
+64804.0550780273 3.5348213 -7354.3545
+64805.0550780748 3.5347033 -7353.5669
+64806.0550781223 3.5346246 -7354.3545
+64807.0550781698 3.534467 -7353.1738
+64808.05507821729 3.5345063 -7353.5669
+64809.05507826479 3.5343096 -7354.3545
+64810.05507831229 3.5342309 -7353.3706
+64811.05507835979 3.534034 -7353.5669
+64812.05507840728 3.5341914 -7353.9609
+64813.05507845478 3.534034 -7354.3545
+64814.05507850228 3.5338764 -7354.5513
+64815.05507854978 3.5337584 -7353.3706
+64816.05507859727 3.5337584 -7354.1577
+64817.05507864477 3.533601 -7353.3706
+64818.05507869227 3.5335221 -7353.5669
+64819.05507873977 3.5334828 -7354.1577
+64820.05507878726 3.5334041 -7353.5669
+64821.05507883476 3.5332861 -7354.5513
+64822.05507888226 3.5331678 -7353.7646
+64823.05507892976 3.5332072 -7353.5669
+64824.05507897725 3.5330105 -7354.1577
+64825.05507902475 3.5328922 -7354.1577
+64826.05507907225 3.5329316 -7353.9609
+64827.05507911975 3.5328922 -7353.7646
+64828.05507916724 3.5327349 -7353.5669
+64829.05507921474 3.5326166 -7354.3545
+64830.05507926224 3.5325773 -7354.1577
+64831.05507930974 3.5323806 -7353.3706
+64832.05507935723 3.5323806 -7353.9609
+64833.05507940473 3.5322623 -7354.9453
+64834.05507945223 3.5321836 -7353.7646
+64835.05507949973 3.532105 -7354.3545
+64836.05507954722 3.5320656 -7354.3545
+64837.05507959472 3.5320261 -7354.1577
+64838.05507964222 3.531908 -7354.1577
+64839.05507968972 3.53179 -7353.7646
+64840.05507973721 3.5317507 -7353.1738
+64841.05507978471 3.5315537 -7354.3545
+64842.05507983221 3.5315537 -7353.1738
+64843.0550798797 3.5315931 -7354.1577
+64844.0550799272 3.5313568 -7353.5669
+64845.0550799747 3.5312388 -7354.7485
+64846.0550800222 3.5311995 -7353.9609
+64847.05508006969 3.5310812 -7354.3545
+64848.05508011719 3.5310419 -7353.1738
+64849.05508016469 3.5309238 -7353.3706
+64850.05508021219 3.5308845 -7353.9609
+64851.05508025968 3.5306876 -7354.3545
+64852.05508030718 3.5306089 -7354.5513
+64853.05508035468 3.5306089 -7354.9453
+64854.05508040218 3.5304513 -7354.3545
+64855.05508044967 3.530412 -7353.5669
+64856.05508049717 3.5303333 -7353.3706
+64857.05508054467 3.5302546 -7354.1577
+64858.05508059217 3.5301363 -7353.7646
+64859.05508063966 3.5301757 -7353.9609
+64860.05508068716 3.5299397 -7354.3545
+64861.05508073466 3.5299003 -7354.3545
+64862.05508078216 3.5297427 -7354.1577
+64863.05508082965 3.5297034 -7353.1738
+64864.05508087715 3.5296247 -7354.5513
+64865.05508092465 3.5294671 -7353.5669
+64866.05508097215 3.5294278 -7354.3545
+64867.05508101964 3.5293097 -7354.3545
+64868.05508106714 3.5293491 -7353.1738
+64869.05508111464 3.5293097 -7353.9609
+64870.05508116214 3.5291915 -7353.9609
+64871.05508120963 3.5290341 -7353.7646
+64872.05508125713 3.5289948 -7354.5513
+64873.05508130463 3.5289552 -7354.3545
+64874.05508135213 3.5289948 -7354.1577
+64875.05508139962 3.5288372 -7353.3706
+64876.05508144712 3.5287192 -7353.7646
+64877.05508149462 3.5286403 -7354.1577
+64878.05508154212 3.5286403 -7353.7646
+64879.05508158961 3.5285616 -7354.1577
+64880.05508163711 3.5286009 -7354.1577
+64881.05508168461 3.5283649 -7353.9609
+64882.05508173211 3.5284042 -7354.5513
+64883.0550817796 3.5283649 -7353.1738
+64884.0550818271 3.528286 -7353.9609
+64885.0550818746 3.528286 -7353.3706
+64886.0550819221 3.528168 -7353.9609
+64887.05508196959 3.5280893 -7353.3706
+64888.05508201709 3.527971 -7353.5669
+64889.05508206459 3.5280104 -7354.1577
+64890.05508211209 3.527853 -7354.5513
+64891.05508215958 3.5278137 -7354.3545
+64892.05508220708 3.5277743 -7354.1577
+64893.05508225458 3.5276167 -7354.3545
+64894.05508230207 3.5275381 -7353.1738
+64895.05508234957 3.5274198 -7354.1577
+64896.05508239707 3.5272624 -7354.1577
+64897.05508244457 3.5271049 -7353.5669
+64898.05508249206 3.5272231 -7353.5669
+64899.05508253956 3.5268295 -7354.3545
+64900.05508258706 3.5268688 -7354.5513
+64901.05508263456 3.5268295 -7353.9609
+64902.05508268205 3.5266325 -7354.1577
+64903.05508272955 3.5265145 -7353.5669
+64904.05508277705 3.5263569 -7353.3706
+64905.05508282455 3.5263176 -7353.9609
+64906.05508287204 3.5261996 -7354.1577
+64907.05508291954 3.5260813 -7353.5669
+64908.05508296704 3.5259633 -7353.9609
+64909.05508301454 3.5260026 -7353.3706
+64910.05508306203 3.5258057 -7354.3545
+64911.05508310953 3.5257664 -7353.5669
+64912.05508315703 3.525727 -7353.5669
+64913.05508320453 3.5255301 -7355.1421
+64914.05508325202 3.5255694 -7353.9609
+64915.05508329952 3.5254908 -7354.3545
+64916.05508334702 3.5253334 -7353.7646
+64917.05508339452 3.5251758 -7353.7646
+64918.05508344201 3.5251365 -7354.3545
+64919.05508348951 3.5249002 -7354.7485
+64920.05508353701 3.5249002 -7354.1577
+64921.05508358451 3.5247822 -7354.7485
+64922.055083632 3.5245852 -7354.1577
+64923.0550836795 3.5245066 -7354.1577
+64924.055083727 3.5243096 -7354.1577
+64925.0550837745 3.5242703 -7354.7485
+64926.05508382199 3.5241523 -7353.9609
+64927.05508386949 3.5239947 -7353.1738
+64928.05508391699 3.5239553 -7353.1738
+64929.05508396449 3.5238767 -7353.3706
+64930.05508401198 3.5237586 -7353.1738
+64931.05508405948 3.5236404 -7354.1577
+64932.05508410698 3.5236797 -7354.7485
+64933.05508415448 3.523483 -7354.5513
+64934.05508420197 3.5233254 -7354.3545
+64935.05508424947 3.5232468 -7354.3545
+64936.05508429697 3.5232074 -7354.3545
+64937.05508434447 3.5230892 -7353.9609
+64938.05508439196 3.5230498 -7353.5669
+64939.05508443946 3.5230498 -7353.7646
+64940.05508448696 3.5229318 -7354.3545
+64941.05508453446 3.5228925 -7353.3706
+64942.05508458195 3.5228531 -7353.7646
+64943.05508462945 3.5226169 -7353.7646
+64944.05508467695 3.5226562 -7353.9609
+64945.05508472444 3.5224593 -7354.3545
+64946.05508477194 3.5224199 -7354.1577
+64947.05508481944 3.5223413 -7353.9609
+64948.05508486694 3.5222626 -7353.9609
+64949.05508491443 3.522105 -7353.3706
+64950.05508496193 3.5220263 -7353.9609
+64951.05508500943 3.521987 -7354.3545
+64952.05508505693 3.5218687 -7354.1577
+64953.05508510442 3.5217507 -7353.9609
+64954.05508515192 3.5216327 -7353.7646
+64955.05508519942 3.5215538 -7354.3545
+64956.05508524692 3.5213964 -7353.5669
+64957.05508529441 3.5212784 -7353.5669
+64958.05508534191 3.5211995 -7353.7646
+64959.05508538941 3.5210814 -7354.3545
+64960.05508543691 3.5210421 -7354.5513
+64961.0550854844 3.5209239 -7353.7646
+64962.0550855319 3.5207665 -7354.1577
+64963.0550855794 3.5206485 -7353.7646
+64964.0550856269 3.5205696 -7353.5669
+64965.05508567439 3.5205302 -7354.7485
+64966.05508572189 3.5204122 -7354.1577
+64967.05508576939 3.520294 -7353.7646
+64968.05508581689 3.5201759 -7353.7646
+64969.05508586438 3.5201366 -7353.9609
+64970.05508591188 3.5200183 -7353.9609
+64971.05508595938 3.5199397 -7353.9609
+64972.05508600688 3.519743 -7353.9609
+64973.05508605437 3.5195854 -7353.5669
+64974.05508610187 3.5195854 -7354.5513
+64975.05508614937 3.519546 -7354.1577
+64976.05508619687 3.5193098 -7354.1577
+64977.05508624436 3.5193884 -7353.7646
+64978.05508629186 3.5192311 -7353.3706
+64979.05508633936 3.5191131 -7354.7485
+64980.05508638686 3.5190341 -7353.9609
+64981.05508643435 3.5189161 -7353.9609
+64982.05508648185 3.5188768 -7353.7646
+64983.05508652935 3.5187979 -7354.3545
+64984.05508657685 3.5187192 -7354.7485
+64985.05508662434 3.5186012 -7354.1577
+64986.05508667184 3.5185618 -7354.5513
+64987.05508671934 3.5184829 -7353.9609
+64988.05508676684 3.5183649 -7353.5669
+64989.05508681433 3.5182862 -7353.3706
+64990.05508686183 3.5183256 -7354.1577
+64991.05508690933 3.5181286 -7353.9609
+64992.05508695683 3.5181286 -7353.7646
+64993.05508700432 3.5180106 -7353.9609
+64994.05508705182 3.5178926 -7354.3545
+64995.05508709932 3.517853 -7353.7646
+64996.05508714681 3.5176563 -7353.9609
+64997.05508719431 3.517617 -7354.5513
+64998.05508724181 3.5174201 -7354.1577
+64999.05508728931 3.5174201 -7354.1577
+65000.0550873368 3.5172231 -7353.5669
+65001.0550873843 3.5171051 -7353.5669
+65002.0550874318 3.5169475 -7353.3706
+65003.0550874793 3.5168688 -7354.5513
+65004.05508752679 3.5165932 -7353.3706
+65005.05508757429 3.5166721 -7353.1738
+65006.05508762179 3.5165145 -7353.5669
+65007.05508766929 3.5163176 -7353.7646
+65008.05508771678 3.5162783 -7354.1577
+65009.05508776428 3.5160816 -7353.7646
+65010.05508781178 3.5160816 -7353.5669
+65011.05508785928 3.515924 -7353.3706
+65012.05508790677 3.5158453 -7354.1577
+65013.05508795427 3.5157666 -7354.1577
+65014.05508800177 3.515609 -7354.1577
+65015.05508804927 3.515609 -7354.1577
+65016.05508809676 3.5155697 -7353.9609
+65017.05508814426 3.515491 -7352.9771
+65018.05508819176 3.5154123 -7353.9609
+65019.05508823926 3.5153334 -7354.3545
+65020.05508828675 3.5152941 -7354.5513
+65021.05508833425 3.5152941 -7353.7646
+65022.05508838175 3.5151761 -7354.9453
+65023.05508842925 3.5150971 -7353.9609
+65024.05508847674 3.5149791 -7354.1577
+65025.05508852424 3.5147822 -7354.1577
+65026.05508857174 3.5148611 -7354.1577
+65027.05508861924 3.5148218 -7354.7485
+65028.05508866673 3.5147822 -7353.7646
+65029.05508871423 3.5145462 -7353.5669
+65030.05508876173 3.5144279 -7353.9609
+65031.05508880923 3.5143492 -7353.9609
+65032.05508885672 3.5142705 -7354.1577
+65033.05508890422 3.5140343 -7354.5513
+65034.05508895172 3.5139556 -7353.5669
+65035.05508899922 3.5139556 -7354.5513
+65036.05508904671 3.513798 -7354.5513
+65037.05508909421 3.513562 -7353.9609
+65038.05508914171 3.5135224 -7354.3545
+65039.05508918921 3.5134044 -7353.7646
+65040.0550892367 3.5132468 -7353.7646
+65041.0550892842 3.5132074 -7354.3545
+65042.0550893317 3.5130894 -7354.1577
+65043.0550893792 3.5129714 -7353.3706
+65044.05508942669 3.5128531 -7353.7646
+65045.05508947419 3.5128925 -7354.1577
+65046.05508952169 3.5128138 -7354.3545
+65047.05508956918 3.5126565 -7354.1577
+65048.05508961668 3.5125775 -7354.5513
+65049.05508966418 3.5126169 -7354.3545
+65050.05508971168 3.5124595 -7353.7646
+65051.05508975917 3.5123808 -7354.1577
+65052.05508980667 3.5122232 -7354.1577
+65053.05508985417 3.5122232 -7353.9609
+65054.05508990167 3.5121446 -7354.9453
+65055.05508994916 3.5120659 -7354.1577
+65056.05508999666 3.5120265 -7353.7646
+65057.05509004416 3.5119083 -7353.3706
+65058.05509009166 3.5118296 -7353.5669
+65059.05509013915 3.511869 -7353.3706
+65060.05509018665 3.511554 -7352.9771
+65061.05509023415 3.511554 -7351.9932
+65062.05509028165 3.5114753 -7350.812
+65063.05509032914 3.5113964 -7350.6147
+65064.05509037664 3.5113571 -7351.0088
+65065.05509042414 3.5112784 -7355.5352
+65066.05509047164 3.5113177 -7357.5034
+65067.05509051913 3.5111997 -7357.3066
+65068.05509056663 3.511121 -7357.1099
+65069.05509061413 3.5110028 -7355.7324
+65070.05509066163 3.5108848 -7355.9292
+65071.05509070912 3.5107665 -7356.5195
+65072.05509075662 3.5106878 -7356.7168
+65073.05509080412 3.5106878 -7354.1577
+65074.05509085162 3.5105698 -7354.1577
+65075.05509089911 3.5104911 -7353.5669
+65076.05509094661 3.5104122 -7353.5669
+65077.05509099411 3.5102549 -7353.7646
+65078.05509104161 3.5101366 -7354.3545
+65079.0550910891 3.5101366 -7355.7324
+65080.0550911366 3.5100186 -7354.5513
+65081.0550911841 3.5099792 -7355.3384
+65082.0550912316 3.5099006 -7354.3545
+65083.05509127909 3.5097036 -7353.7646
+65084.05509132659 3.5097036 -7354.1577
+65085.05509137409 3.509625 -7354.3545
+65086.05509142159 3.509428 -7353.7646
+65087.05509146908 3.5093493 -7355.3384
+65088.05509151658 3.50931 -7354.9453
+65089.05509156408 3.5090737 -7355.3384
+65090.05509161158 3.5089951 -7355.3384
+65091.05509165907 3.5088768 -7353.5669
+65092.05509170657 3.5088375 -7353.5669
+65093.05509175407 3.5087588 -7353.5669
+65094.05509180157 3.5087194 -7353.7646
+65095.05509184906 3.5085618 -7353.7646
+65096.05509189656 3.5085225 -7353.7646
+65097.05509194406 3.5082076 -7353.7646
+65098.05509199155 3.5082076 -7355.3384
+65099.05509203905 3.5080502 -7352.9771
+65100.05509208655 3.5081289 -7353.5669
+65101.05509213405 3.5080106 -7354.1577
+65102.05509218154 3.5078533 -7354.3545
+65103.05509222904 3.5078139 -7354.3545
+65104.05509227654 3.5076563 -7354.3545
+65105.05509232404 3.5076563 -7353.5669
+65106.05509237153 3.5076957 -7354.9453
+65107.05509241903 3.5075777 -7354.5513
+65108.05509246653 3.5074596 -7354.1577
+65109.05509251403 3.5073807 -7353.7646
+65110.05509256152 3.5073807 -7354.3545
+65111.05509260902 3.5073414 -7353.9609
+65112.05509265652 3.507184 -7354.1577
+65113.05509270402 3.507184 -7354.1577
+65114.05509275151 3.507184 -7353.5669
+65115.05509279901 3.5071447 -7353.9609
+65116.05509284651 3.5069478 -7354.1577
+65117.05509289401 3.5068691 -7353.7646
+65118.0550929415 3.5067904 -7353.7646
+65119.055092989 3.5067508 -7353.9609
+65120.0550930365 3.5067115 -7354.5513
+65121.055093084 3.5065541 -7355.1421
+65122.05509313149 3.5064359 -7354.1577
+65123.05509317899 3.5063965 -7353.9609
+65124.05509322649 3.5062785 -7353.7646
+65125.05509327399 3.5062785 -7354.1577
+65126.05509332148 3.5061603 -7353.5669
+65127.05509336898 3.5060422 -7354.7485
+65128.05509341648 3.5059636 -7353.5669
+65129.05509346398 3.5059242 -7354.1577
+65130.05509351147 3.5058849 -7354.3545
+65131.05509355897 3.505688 -7354.1577
+65132.05509360647 3.505688 -7354.3545
+65133.05509365397 3.5055304 -7354.3545
+65134.05509370146 3.5054517 -7353.9609
+65135.05509374896 3.505491 -7354.1577
+65136.05509379646 3.5052943 -7354.1577
+65137.05509384396 3.5053337 -7353.5669
+65138.05509389145 3.505255 -7353.9609
+65139.05509393895 3.5051367 -7353.7646
+65140.05509398645 3.5050974 -7354.1577
+65141.05509403395 3.5050581 -7353.9609
+65142.05509408144 3.5049005 -7353.9609
+65143.05509412894 3.5049794 -7354.1577
+65144.05509417644 3.5048611 -7354.3545
+65145.05509422394 3.5047431 -7354.7485
+65146.05509427143 3.5047038 -7353.9609
+65147.05509431893 3.5046644 -7354.3545
+65148.05509436643 3.5045068 -7354.1577
+65149.05509441393 3.5044281 -7353.3706
+65150.05509446142 3.5043888 -7353.5669
+65151.05509450892 3.5044675 -7353.5669
+65152.05509455642 3.5042706 -7354.5513
+65153.05509460391 3.5041525 -7353.9609
+65154.05509465141 3.5040739 -7353.9609
+65155.05509469891 3.5038769 -7354.7485
+65156.05509474641 3.5038769 -7354.5513
+65157.0550947939 3.5038376 -7354.1577
+65158.0550948414 3.5037982 -7353.7646
+65159.0550948889 3.5036407 -7353.5669
+65160.0550949364 3.5034833 -7354.3545
+65161.05509498389 3.5034833 -7353.9609
+65162.05509503139 3.503365 -7354.5513
+65163.05509507889 3.5032077 -7355.1421
+65164.05509512639 3.5030897 -7354.3545
+65165.05509517388 3.5029321 -7353.5669
+65166.05509522138 3.5030107 -7354.3545
+65167.05509526888 3.5028534 -7353.5669
+65168.05509531638 3.5027351 -7353.7646
+65169.05509536387 3.5026958 -7353.9609
+65170.05509541137 3.5026171 -7353.7646
+65171.05509545887 3.5024595 -7354.1577
+65172.05509550637 3.5024991 -7354.1577
+65173.05509555386 3.5023808 -7353.7646
+65174.05509560136 3.5023415 -7354.3545
+65175.05509564886 3.5022628 -7353.7646
+65176.05509569636 3.5021052 -7353.9609
+65177.05509574385 3.5020659 -7353.9609
+65178.05509579135 3.5020266 -7354.5513
+65179.05509583885 3.5019085 -7353.7646
+65180.05509588635 3.5017509 -7354.3545
+65181.05509593384 3.5015936 -7354.5513
+65182.05509598134 3.5014753 -7355.1421
+65183.05509602884 3.501436 -7354.3545
+65184.05509607634 3.5013967 -7353.7646
+65185.05509612383 3.5012786 -7353.9609
+65186.05509617133 3.5011997 -7354.3545
+65187.05509621883 3.501121 -7353.7646
+65188.05509626633 3.5010424 -7353.7646
+65189.05509631382 3.5009243 -7354.3545
+65190.05509636132 3.5008454 -7353.7646
+65191.05509640882 3.5008061 -7354.7485
+65192.05509645632 3.5007274 -7353.7646
+65193.05509650381 3.5005698 -7354.7485
+65194.05509655131 3.5004125 -7354.5513
+65195.05509659881 3.5002942 -7354.1577
+65196.05509664631 3.5002942 -7354.3545
+65197.0550966938 3.5001369 -7353.9609
+65198.0550967413 3.4999793 -7353.3706
+65199.0550967888 3.4999006 -7354.1577
+65200.0550968363 3.4997432 -7353.7646
+65201.05509688379 3.4997039 -7354.3545
+65202.05509693129 3.499507 -7354.1577
+65203.05509697879 3.4993494 -7354.5513
+65204.05509702628 3.4992313 -7353.9609
+65205.05509707378 3.4991527 -7354.5513
+65206.05509712128 3.4989557 -7353.9609
+65207.05509716878 3.4989951 -7354.3545
+65208.05509721627 3.4987588 -7353.7646
+65209.05509726377 3.4987588 -7354.1577
+65210.05509731127 3.4985621 -7354.5513
+65211.05509735877 3.4984438 -7354.1577
+65212.05509740626 3.4984045 -7354.5513
+65213.05509745376 3.4982078 -7353.7646
+65214.05509750126 3.4980896 -7354.9453
+65215.05509754876 3.4979715 -7354.3545
+65216.05509759625 3.4978929 -7353.9609
+65217.05509764375 3.4977353 -7354.5513
+65218.05509769125 3.4975779 -7354.1577
+65219.05509773875 3.4975779 -7354.1577
+65220.05509778624 3.4975386 -7354.1577
+65221.05509783374 3.4974597 -7354.3545
+65222.05509788124 3.497263 -7353.7646
+65223.05509792874 3.497184 -7353.9609
+65224.05509797623 3.4971447 -7353.9609
+65225.05509802373 3.4969084 -7354.5513
+65226.05509807123 3.4969873 -7353.9609
+65227.05509811873 3.4967904 -7354.3545
+65228.05509816622 3.4967904 -7354.1577
+65229.05509821372 3.4965935 -7354.1577
+65230.05509826122 3.4967117 -7353.7646
+65231.05509830872 3.4965148 -7354.7485
+65232.05509835621 3.4964361 -7354.9453
+65233.05509840371 3.4964361 -7354.1577
+65234.05509845121 3.4962785 -7353.5669
+65235.05509849871 3.4961998 -7353.9609
+65236.0550985462 3.4961605 -7354.1577
+65237.0550985937 3.4959636 -7353.7646
+65238.0550986412 3.4958062 -7354.3545
+65239.0550986887 3.4957275 -7354.1577
+65240.05509873619 3.4958456 -7354.1577
+65241.05509878369 3.4957275 -7353.9609
+65242.05509883119 3.4955699 -7354.1577
+65243.05509887869 3.4955699 -7354.1577
+65244.05509892618 3.4954519 -7354.3545
+65245.05509897368 3.495255 -7355.1421
+65246.05509902118 3.4953337 -7354.1577
+65247.05509906868 3.4950976 -7353.1738
+65248.05509911617 3.4950187 -7354.3545
+65249.05509916367 3.49494 -7354.5513
+65250.05509921117 3.494822 -7354.1577
+65251.05509925867 3.4947431 -7354.7485
+65252.05509930616 3.4945858 -7354.7485
+65253.05509935366 3.4943495 -7353.7646
+65254.05509940116 3.4942708 -7353.9609
+65255.05509944865 3.4940739 -7354.7485
+65256.05509949615 3.4939952 -7354.3545
+65257.05509954365 3.4937983 -7353.7646
+65258.05509959115 3.4936016 -7353.7646
+65259.05509963864 3.4935226 -7354.3545
+65260.05509968614 3.4934046 -7354.9453
+65261.05509973364 3.4932077 -7353.9609
+65262.05509978114 3.4930897 -7353.5669
+65263.05509982863 3.4929323 -7354.7485
+65264.05509987613 3.4928534 -7355.3384
+65265.05509992363 3.4927354 -7353.9609
+65266.05509997113 3.4926174 -7354.3545
+65267.05510001862 3.4926174 -7353.7646
+65268.05510006612 3.4924204 -7354.1577
+65269.05510011362 3.4922235 -7354.1577
+65270.05510016112 3.4921842 -7353.5669
+65271.05510020861 3.4921448 -7354.3545
+65272.05510025611 3.4918299 -7353.9609
+65273.05510030361 3.4917905 -7353.9609
+65274.05510035111 3.4917119 -7353.9609
+65275.0551003986 3.4916329 -7353.9609
+65276.0551004461 3.4914756 -7354.5513
+65277.0551004936 3.4914756 -7353.9609
+65278.0551005411 3.4912786 -7354.5513
+65279.05510058859 3.4913573 -7353.9609
+65280.05510063609 3.4912 -7353.9609
+65281.05510068359 3.491082 -7354.1577
+65282.05510073109 3.491003 -7354.3545
+65283.05510077858 3.490767 -7354.3545
+65284.05510082608 3.4908063 -7354.5513
+65285.05510087358 3.4908063 -7352.7803
+65286.05510092108 3.4906094 -7353.1738
+65287.05510096857 3.4906094 -7353.7646
+65288.05510101607 3.4905307 -7353.9609
+65289.05510106357 3.4904521 -7353.3706
+65290.05510111107 3.4904521 -7352.9771
+65291.05510115856 3.4904521 -7354.3545
+65292.05510120606 3.4902945 -7353.7646
+65293.05510125356 3.4902945 -7353.5669
+65294.05510130106 3.4902551 -7353.9609
+65295.05510134855 3.4900582 -7353.5669
+65296.05510139605 3.4899795 -7354.3545
+65297.05510144355 3.4899795 -7353.9609
+65298.05510149105 3.4899795 -7354.3545
+65299.05510153854 3.4899402 -7353.9609
+65300.05510158604 3.4899402 -7353.9609
+65301.05510163354 3.4897432 -7353.7646
+65302.05510168104 3.4897039 -7354.3545
+65303.05510172853 3.4895465 -7353.7646
+65304.05510177603 3.4895859 -7353.7646
+65305.05510182353 3.4895859 -7354.1577
+65306.05510187102 3.4893889 -7353.7646
+65307.05510191852 3.4893496 -7354.3545
+65308.05510196602 3.4892316 -7354.3545
+65309.05510201352 3.489192 -7354.5513
+65310.05510206101 3.4891133 -7354.1577
+65311.05510210851 3.489074 -7354.3545
+65312.05510215601 3.4890347 -7353.7646
+65313.05510220351 3.4889166 -7353.7646
+65314.055102251 3.4889953 -7353.7646
+65315.0551022985 3.4887984 -7354.9453
+65316.055102346 3.4887197 -7353.7646
+65317.0551023935 3.4886804 -7353.9609
+65318.05510244099 3.488759 -7354.5513
+65319.05510248849 3.488641 -7354.7485
+65320.05510253599 3.4885621 -7353.9609
+65321.05510258349 3.4886017 -7353.5669
+65322.05510263098 3.4884834 -7353.1738
+65323.05510267848 3.4883654 -7353.5669
+65324.05510272598 3.4883261 -7353.9609
+65325.05510277348 3.4882078 -7354.3545
+65326.05510282097 3.4881685 -7354.3545
+65327.05510286847 3.4880898 -7353.9609
+65328.05510291597 3.4880505 -7354.3545
+65329.05510296347 3.4879715 -7353.9609
+65330.05510301096 3.4878142 -7354.1577
+65331.05510305846 3.4878929 -7353.9609
+65332.05510310596 3.4876962 -7353.7646
+65333.05510315346 3.4876566 -7353.5669
+65334.05510320095 3.4875386 -7353.7646
+65335.05510324845 3.4874599 -7353.9609
+65336.05510329595 3.4874206 -7354.5513
+65337.05510334345 3.4873023 -7354.1577
+65338.05510339094 3.487263 -7354.3545
+65339.05510343844 3.487263 -7354.7485
+65340.05510348594 3.4872236 -7354.5513
+65341.05510353344 3.4871449 -7354.1577
+65342.05510358093 3.4871056 -7353.7646
+65343.05510362843 3.4871056 -7353.9609
+65344.05510367593 3.4870663 -7353.7646
+65345.05510372343 3.4870267 -7353.5669
+65346.05510377092 3.486948 -7354.3545
+65347.05510381842 3.486948 -7353.1738
+65348.05510386592 3.4868693 -7354.5513
+65349.05510391342 3.4868693 -7354.1577
+65350.05510396091 3.4867513 -7354.5513
+65351.05510400841 3.4866331 -7354.9453
+65352.05510405591 3.4866331 -7353.7646
+65353.05510410341 3.4866331 -7354.5513
+65354.0551041509 3.486515 -7353.9609
+65355.0551041984 3.4864361 -7354.3545
+65356.0551042459 3.4863181 -7353.9609
+65357.05510429339 3.4863181 -7353.9609
+65358.05510434089 3.4861212 -7354.3545
+65359.05510438839 3.4860818 -7354.3545
+65360.05510443589 3.4858458 -7353.5669
+65361.05510448338 3.4858062 -7354.1577
+65362.05510453088 3.4857669 -7353.5669
+65363.05510457838 3.4857275 -7354.1577
+65364.05510462588 3.4855702 -7354.7485
+65365.05510467337 3.4855309 -7354.3545
+65366.05510472087 3.4854519 -7353.5669
+65367.05510476837 3.4853733 -7353.7646
+65368.05510481587 3.4853733 -7354.1577
+65369.05510486336 3.4852159 -7353.9609
+65370.05510491086 3.4852159 -7354.1577
+65371.05510495836 3.4851763 -7354.5513
+65372.05510500586 3.485137 -7354.5513
+65373.05510505335 3.4850583 -7353.1738
+65374.05510510085 3.4849403 -7353.5669
+65375.05510514835 3.4848614 -7354.3545
+65376.05510519585 3.484822 -7353.7646
+65377.05510524334 3.4848614 -7353.9609
+65378.05510529084 3.4847434 -7354.1577
+65379.05510533834 3.4846647 -7353.9609
+65380.05510538584 3.4846253 -7353.5669
+65381.05510543333 3.4845464 -7354.3545
+65382.05510548083 3.4846647 -7354.3545
+65383.05510552833 3.4845464 -7354.5513
+65384.05510557583 3.4844677 -7353.3706
+65385.05510562332 3.4843497 -7354.5513
+65386.05510567082 3.4842708 -7354.7485
+65387.05510571832 3.4841921 -7354.7485
+65388.05510576582 3.4840741 -7354.3545
+65389.05510581331 3.4841135 -7354.3545
+65390.05510586081 3.4838772 -7353.5669
+65391.05510590831 3.4839954 -7354.3545
+65392.05510595581 3.4837985 -7354.5513
+65393.0551060033 3.4837592 -7353.1738
+65394.0551060508 3.4836805 -7354.1577
+65395.0551060983 3.4836016 -7354.3545
+65396.0551061458 3.4834049 -7354.1577
+65397.05510619329 3.4833655 -7354.1577
+65398.05510624079 3.4832473 -7354.9453
+65399.05510628829 3.4831686 -7355.1421
+65400.05510633579 3.4830899 -7353.5669
+65401.05510638328 3.4829323 -7354.3545
+65402.05510643078 3.4829323 -7353.9609
+65403.05510647828 3.482775 -7354.3545
+65404.05510652578 3.4826174 -7353.7646
+65405.05510657327 3.482578 -7353.5669
+65406.05510662077 3.4824994 -7354.1577
+65407.05510666827 3.4824204 -7353.7646
+65408.05510671576 3.4823811 -7354.1577
+65409.05510676326 3.4822631 -7353.3706
+65410.05510681076 3.4822237 -7353.9609
+65411.05510685826 3.4820662 -7354.3545
+65412.05510690575 3.4820662 -7354.3545
+65413.05510695325 3.4819875 -7354.1577
+65414.05510700075 3.4818301 -7354.1577
+65415.05510704825 3.4817119 -7354.9453
+65416.05510709574 3.4817119 -7354.5513
+65417.05510714324 3.4816332 -7354.5513
+65418.05510719074 3.4815152 -7353.9609
+65419.05510723824 3.4815152 -7353.3706
+65420.05510728573 3.4814363 -7354.3545
+65421.05510733323 3.4812789 -7354.3545
+65422.05510738073 3.4812002 -7353.9609
+65423.05510742823 3.4810426 -7353.9609
+65424.05510747572 3.4811213 -7353.9609
+65425.05510752322 3.480885 -7354.5513
+65426.05510757072 3.480649 -7354.5513
+65427.05510761822 3.4806883 -7354.1577
+65428.05510766571 3.4806097 -7353.9609
+65429.05510771321 3.4805307 -7354.9453
+65430.05510776071 3.4804521 -7354.9453
+65431.05510780821 3.4804914 -7353.7646
+65432.0551078557 3.4802947 -7355.1421
+65433.0551079032 3.480334 -7354.7485
+65434.0551079507 3.480334 -7354.3545
+65435.0551079982 3.4801371 -7354.1577
+65436.05510804569 3.4801371 -7354.5513
+65437.05510809319 3.4802158 -7353.9609
+65438.05510814069 3.4800584 -7353.5669
+65439.05510818819 3.4800191 -7354.5513
+65440.05510823568 3.4799798 -7353.5669
+65441.05510828318 3.4799402 -7355.1421
+65442.05510833068 3.4799008 -7353.7646
+65443.05510837818 3.4797828 -7354.1577
+65444.05510842567 3.4797041 -7354.1577
+65445.05510847317 3.4795465 -7353.9609
+65446.05510852067 3.4795859 -7354.3545
+65447.05510856817 3.4795072 -7353.9609
+65448.05510861566 3.4795072 -7354.3545
+65449.05510866316 3.4794285 -7354.5513
+65450.05510871066 3.4793496 -7354.9453
+65451.05510875816 3.4792709 -7354.7485
+65452.05510880565 3.4791923 -7354.1577
+65453.05510885315 3.4791923 -7353.3706
+65454.05510890065 3.478956 -7353.7646
+65455.05510894815 3.478956 -7353.7646
+65456.05510899564 3.4789166 -7354.3545
+65457.05510904314 3.4786804 -7353.7646
+65458.05510909064 3.4787197 -7354.3545
+65459.05510913813 3.4787197 -7354.3545
+65460.05510918563 3.4784837 -7354.3545
+65461.05510923313 3.4784837 -7354.5513
+65462.05510928063 3.4783261 -7354.5513
+65463.05510932812 3.4783261 -7355.3384
+65464.05510937562 3.4782081 -7354.1577
+65465.05510942312 3.4781687 -7353.9609
+65466.05510947062 3.4780505 -7353.7646
+65467.05510951811 3.4779325 -7353.5669
+65468.05510956561 3.4776962 -7353.9609
+65469.05510961311 3.4776175 -7353.9609
+65470.05510966061 3.4774599 -7354.1577
+65471.0551097081 3.4775388 -7353.3706
+65472.0551097556 3.4772632 -7354.5513
+65473.0551098031 3.4772632 -7354.1577
+65474.0551098506 3.4770663 -7354.3545
+65475.05510989809 3.4771056 -7353.9609
+65476.05510994559 3.4770663 -7354.3545
+65477.05510999309 3.4768693 -7353.3706
+65478.05511004059 3.4767513 -7354.5513
+65479.05511008808 3.4766333 -7353.7646
+65480.05511013558 3.4766333 -7354.5513
+65481.05511018308 3.4764364 -7353.9609
+65482.05511023058 3.476397 -7354.1577
+65483.05511027807 3.4764364 -7353.7646
+65484.05511032557 3.476279 -7353.9609
+65485.05511037307 3.4762394 -7354.3545
+65486.05511042057 3.4760034 -7353.9609
+65487.05511046806 3.4758852 -7353.5669
+65488.05511051556 3.4758065 -7354.3545
+65489.05511056306 3.4758065 -7354.1577
+65490.05511061056 3.4757671 -7353.5669
+65491.05511065805 3.4755309 -7354.3545
+65492.05511070555 3.4756095 -7353.7646
+65493.05511075305 3.4755309 -7354.5513
+65494.05511080055 3.4754128 -7353.7646
+65495.05511084804 3.4752946 -7354.3545
+65496.05511089554 3.4751766 -7354.1577
+65497.05511094304 3.4750979 -7354.5513
+65498.05511099054 3.4750586 -7353.9609
+65499.05511103803 3.4748616 -7354.1577
+65500.05511108553 3.4747829 -7353.5669
+65501.05511113303 3.4746253 -7354.3545
+65502.05511118053 3.474704 -7353.5669
+65503.05511122802 3.4745073 -7354.1577
+65504.05511127552 3.4743497 -7354.1577
+65505.05511132302 3.4741924 -7354.7485
+65506.05511137052 3.4741137 -7354.1577
+65507.05511141801 3.4740348 -7354.3545
+65508.05511146551 3.4740741 -7354.5513
+65509.05511151301 3.4739168 -7354.5513
+65510.0551115605 3.4737985 -7354.7485
+65511.055111608 3.4737592 -7354.3545
+65512.0551116555 3.4736805 -7353.7646
+65513.055111703 3.4736412 -7354.3545
+65514.05511175049 3.4735231 -7353.9609
+65515.05511179799 3.4734836 -7354.3545
+65516.05511184549 3.4733655 -7354.3545
+65517.05511189299 3.4734049 -7353.9609
+65518.05511194048 3.4732869 -7353.5669
+65519.05511198798 3.4732082 -7354.3545
+65520.05511203548 3.4732475 -7354.5513
+65521.05511208298 3.4731686 -7354.1577
+65522.05511213047 3.4731293 -7353.5669
+65523.05511217797 3.4731293 -7354.5513
+65524.05511222547 3.4729326 -7354.5513
+65525.05511227297 3.4729326 -7354.1577
+65526.05511232046 3.4729326 -7353.7646
+65527.05511236796 3.4729326 -7354.3545
+65528.05511241546 3.4727356 -7355.3384
+65529.05511246296 3.4727356 -7354.3545
+65530.05511251045 3.4726963 -7354.1577
+65531.05511255795 3.4726176 -7353.7646
+65532.05511260545 3.47246 -7354.3545
+65533.05511265295 3.4724994 -7353.9609
+65534.05511270044 3.4724207 -7354.5513
+65535.05511274794 3.47246 -7354.7485
+65536.0551127959 3.4723814 -7354.3545
+65537.0551128462 3.4723027 -7354.3545
+65538.05511289649 3.4723027 -7353.5669
+65539.05511294678 3.4722633 -7353.7646
+65540.05511299707 3.4721451 -7353.7646
+65541.05511304736 3.4721844 -7354.3545
+65542.05511309765 3.4720664 -7354.1577
+65543.05511314794 3.4719877 -7354.1577
+65544.05511319824 3.4719877 -7353.7646
+65545.05511324853 3.4719088 -7353.7646
+65546.05511329882 3.4719088 -7353.3706
+65547.05511334911 3.4717121 -7354.1577
+65548.0551133994 3.4717121 -7354.1577
+65549.0551134497 3.4717515 -7354.7485
+65550.05511349998 3.4716332 -7354.3545
+65551.05511355028 3.4717515 -7353.7646
+65552.05511360057 3.4717908 -7353.3706
+65553.05511365086 3.4717121 -7353.9609
+65554.05511370115 3.4714758 -7354.3545
+65555.05511375144 3.4714758 -7353.1738
+65556.05511380173 3.4713972 -7354.3545
+65557.05511385202 3.4712002 -7354.3545
+65558.05511390232 3.4712002 -7353.9609
+65559.0551139526 3.4711215 -7353.5669
+65560.0551140029 3.4710822 -7353.7646
+65561.05511405319 3.4709246 -7354.1577
+65562.05511410348 3.4710033 -7354.5513
+65563.05511415377 3.4708066 -7353.7646
+65564.05511420406 3.4708066 -7354.7485
+65565.05511425436 3.4707673 -7354.1577
+65566.05511430465 3.4705703 -7354.5513
+65567.05511435494 3.470531 -7354.7485
+65568.05511440523 3.4703734 -7353.7646
+65569.05511445552 3.4703734 -7354.5513
+65570.05511450581 3.4701374 -7354.1577
+65571.0551145561 3.4700191 -7353.5669
+65572.0551146064 3.4699404 -7354.1577
+65573.05511465669 3.4698224 -7353.7646
+65574.05511470698 3.4697435 -7353.3706
+65575.05511475727 3.4696255 -7353.9609
+65576.05511480756 3.4695861 -7354.1577
+65577.05511485785 3.4694679 -7354.5513
+65578.05511490814 3.4693892 -7353.5669
+65579.05511495844 3.4691925 -7353.3706
+65580.05511500873 3.4690349 -7355.1421
+65581.05511505902 3.4690742 -7353.1738
+65582.05511510931 3.4689169 -7354.5513
+65583.0551151596 3.4687593 -7354.1577
+65584.05511520989 3.4686019 -7353.7646
+65585.05511526018 3.468523 -7354.1577
+65586.05511531048 3.4684837 -7353.3706
+65587.05511536077 3.468287 -7353.7646
+65588.05511541106 3.4682081 -7353.9609
+65589.05511546135 3.4680507 -7354.1577
+65590.05511551164 3.4680507 -7353.9609
+65591.05511556193 3.467972 -7353.7646
+65592.05511561222 3.4678538 -7353.5669
+65593.05511566252 3.4677358 -7354.5513
+65594.0551157128 3.4677751 -7353.9609
+65595.0551157631 3.4677358 -7354.1577
+65596.05511581339 3.4676964 -7353.7646
+65597.05511586368 3.4676571 -7353.7646
+65598.05511591397 3.4675782 -7354.7485
+65599.05511596426 3.4676964 -7354.1577
+65600.05511601456 3.4676571 -7353.7646
+65601.05511606485 3.4674995 -7353.9609
+65602.05511611514 3.4674602 -7354.3545
+65603.05511616543 3.4675388 -7354.5513
+65604.05511621572 3.4674602 -7353.7646
+65605.05511626601 3.4674208 -7354.3545
+65606.0551163163 3.4675388 -7354.5513
+65607.0551163666 3.4674208 -7353.9609
+65608.05511641689 3.4674995 -7354.5513
+65609.05511646718 3.4672239 -7354.7485
+65610.05511651747 3.4673815 -7354.1577
+65611.05511656776 3.4673026 -7353.9609
+65612.05511661805 3.4673026 -7354.9453
+65613.05511666834 3.4673421 -7353.3706
+65614.05511671863 3.4672632 -7354.3545
+65615.05511676893 3.4672632 -7353.7646
+65616.05511681922 3.4671845 -7354.9453
+65617.05511686951 3.4671845 -7354.1577
+65618.0551169198 3.4671059 -7353.3706
+65619.05511697009 3.4670272 -7353.9609
+65620.05511702038 3.4669876 -7353.5669
+65621.05511707067 3.4669483 -7354.3545
+65622.05511712097 3.4668696 -7354.3545
+65623.05511717126 3.4668303 -7353.3706
+65624.05511722155 3.466712 -7353.9609
+65625.05511727184 3.4666333 -7353.7646
+65626.05511732213 3.4665153 -7353.5669
+65627.05511737242 3.466397 -7353.9609
+65628.05511742271 3.4663577 -7354.3545
+65629.055117473 3.466279 -7354.3545
+65630.0551175233 3.4662397 -7354.3545
+65631.05511757359 3.4662004 -7353.7646
+65632.05511762388 3.4661217 -7354.1577
+65633.05511767417 3.4659247 -7354.1577
+65634.05511772446 3.4659247 -7353.9609
+65635.05511777475 3.4658854 -7354.1577
+65636.05511782505 3.4657671 -7353.1738
+65637.05511787534 3.4658067 -7354.1577
+65638.05511792563 3.4656885 -7353.9609
+65639.05511797592 3.4655704 -7353.9609
+65640.05511802621 3.4655704 -7353.7646
+65641.0551180765 3.4653735 -7353.5669
+65642.0551181268 3.4653342 -7354.3545
+65643.05511817709 3.4653342 -7353.9609
+65644.05511822738 3.4651768 -7354.5513
+65645.05511827767 3.4652162 -7354.3545
+65646.05511832796 3.4651372 -7354.3545
+65647.05511837825 3.4651372 -7353.3706
+65648.05511842854 3.4650586 -7354.1577
+65649.05511847883 3.4649405 -7355.5352
+65650.05511852913 3.4648616 -7355.3384
+65651.05511857942 3.4648616 -7353.7646
+65652.05511862971 3.4649405 -7354.5513
+65653.05511868 3.4647043 -7354.3545
+65654.05511873029 3.4647436 -7354.5513
+65655.05511878058 3.4647043 -7353.9609
+65656.05511883087 3.4645863 -7355.1421
+65657.05511888117 3.4645073 -7354.1577
+65658.05511893146 3.4643893 -7353.7646
+65659.05511898175 3.4642713 -7354.1577
+65660.05511903204 3.4642317 -7353.7646
+65661.05511908233 3.4642317 -7354.5513
+65662.05511913262 3.4641531 -7354.7485
+65663.05511918291 3.4639957 -7354.3545
+65664.0551192332 3.4639564 -7354.7485
+65665.0551192835 3.4639564 -7354.3545
+65666.05511933379 3.4637594 -7353.7646
+65667.05511938408 3.4637201 -7353.9609
+65668.05511943437 3.4636018 -7354.3545
+65669.05511948466 3.4635231 -7354.1577
+65670.05511953495 3.4635231 -7355.3384
+65671.05511958525 3.4634838 -7354.3545
+65672.05511963554 3.4634838 -7354.9453
+65673.05511968583 3.4633265 -7354.7485
+65674.05511973612 3.4633658 -7353.9609
+65675.05511978641 3.4633658 -7353.9609
+65676.0551198367 3.4633658 -7353.5669
+65677.055119887 3.4632475 -7353.5669
+65678.05511993729 3.4632475 -7353.7646
+65679.05511998758 3.4631689 -7354.3545
+65680.05512003787 3.4630508 -7354.7485
+65681.05512008816 3.4629326 -7353.9609
+65682.05512013845 3.4629719 -7354.5513
+65683.05512018874 3.4628932 -7354.3545
+65684.05512023903 3.4627752 -7355.3384
+65685.05512028933 3.4627359 -7353.5669
+65686.05512033962 3.462657 -7354.1577
+65687.05512038991 3.4624603 -7354.1577
+65688.0551204402 3.4624603 -7353.9609
+65689.05512049049 3.4624209 -7354.9453
+65690.05512054078 3.462342 -7353.9609
+65691.05512059107 3.4623027 -7353.7646
+65692.05512064137 3.4621847 -7353.5669
+65693.05512069166 3.4619877 -7355.1421
+65694.05512074195 3.4619091 -7354.3545
+65695.05512079224 3.4619091 -7353.9609
+65696.05512084253 3.4617515 -7354.5513
+65697.05512089282 3.4617515 -7353.7646
+65698.05512094311 3.4617121 -7354.3545
+65699.0551209934 3.4614761 -7354.1577
+65700.0551210437 3.4615941 -7354.3545
+65701.05512109399 3.4614761 -7354.3545
+65702.05512114428 3.4613578 -7354.1577
+65703.05512119457 3.4614365 -7353.5669
+65704.05512124486 3.4612005 -7353.9609
+65705.05512129515 3.4612398 -7353.9609
+65706.05512134545 3.4612005 -7354.1577
+65707.05512139574 3.4610035 -7353.9609
+65708.05512144603 3.4610429 -7354.1577
+65709.05512149632 3.4608855 -7354.1577
+65710.05512154661 3.4610035 -7354.7485
+65711.0551215969 3.4608066 -7354.1577
+65712.0551216472 3.4607673 -7353.9609
+65713.05512169749 3.4606886 -7354.5513
+65714.05512174778 3.4607279 -7354.1577
+65715.05512179807 3.4606099 -7353.7646
+65716.05512184836 3.4605706 -7353.5669
+65717.05512189865 3.4604917 -7353.9609
+65718.05512194894 3.4605706 -7353.9609
+65719.05512199923 3.460413 -7354.1577
+65720.05512204953 3.4604523 -7353.7646
+65721.05512209982 3.4603736 -7354.5513
+65722.05512215011 3.4601374 -7354.7485
+65723.0551222004 3.4601767 -7354.1577
+65724.05512225069 3.4601374 -7353.7646
+65725.05512230098 3.4601767 -7353.7646
+65726.05512235127 3.4600194 -7354.3545
+65727.05512240157 3.4599011 -7353.5669
+65728.05512245186 3.4599011 -7354.7485
+65729.05512250215 3.4598224 -7353.9609
+65730.05512255244 3.4597044 -7354.3545
+65731.05512260273 3.4595861 -7353.1738
+65732.05512265302 3.4595861 -7353.9609
+65733.05512270331 3.4594681 -7354.3545
+65734.0551227536 3.4593501 -7353.7646
+65735.0551228039 3.4593105 -7354.1577
+65736.05512285419 3.4592319 -7354.3545
+65737.05512290448 3.4592712 -7354.1577
+65738.05512295477 3.4592319 -7354.9453
+65739.05512300506 3.4590352 -7353.9609
+65740.05512305535 3.4589562 -7354.3545
+65741.05512310565 3.4587989 -7353.9609
+65742.05512315594 3.4588776 -7354.1577
+65743.05512320623 3.4587989 -7354.3545
+65744.05512325652 3.4587202 -7354.7485
+65745.05512330681 3.4586806 -7354.1577
+65746.0551233571 3.4586413 -7354.7485
+65747.0551234074 3.4585626 -7354.3545
+65748.05512345769 3.4584446 -7353.7646
+65749.05512350798 3.4584446 -7353.9609
+65750.05512355827 3.4583657 -7353.3706
+65751.05512360856 3.458287 -7354.3545
+65752.05512365885 3.4583263 -7353.9609
+65753.05512370914 3.4582083 -7353.9609
+65754.05512375943 3.4581296 -7353.9609
+65755.05512380973 3.4581296 -7353.9609
+65756.05512386002 3.4580507 -7354.3545
+65757.05512391031 3.457972 -7354.5513
+65758.0551239606 3.4580114 -7353.5669
+65759.05512401089 3.4579327 -7354.5513
+65760.05512406118 3.4578934 -7354.5513
+65761.05512411147 3.457854 -7353.5669
+65762.05512416176 3.4577751 -7354.9453
+65763.05512421206 3.4577751 -7354.3545
+65764.05512426235 3.4576571 -7354.1577
+65765.05512431264 3.4576178 -7354.5513
+65766.05512436293 3.4574997 -7354.3545
+65767.05512441322 3.4575391 -7354.9453
+65768.05512446351 3.4574602 -7353.3706
+65769.0551245138 3.4573421 -7354.1577
+65770.0551245641 3.4573028 -7353.7646
+65771.05512461439 3.4570665 -7354.1577
+65772.05512466468 3.4571848 -7353.7646
+65773.05512471497 3.4571059 -7354.1577
+65774.05512476526 3.4570665 -7353.5669
+65775.05512481555 3.4569879 -7354.1577
+65776.05512486584 3.4568303 -7354.1577
+65777.05512491614 3.4569092 -7353.7646
+65778.05512496643 3.4568698 -7354.3545
+65779.05512501672 3.4567909 -7354.3545
+65780.05512506701 3.4567516 -7354.5513
+65781.0551251173 3.4565153 -7353.7646
+65782.0551251676 3.4565942 -7355.1421
+65783.05512521788 3.4565549 -7353.7646
+65784.05512526818 3.4563973 -7354.7485
+65785.05512531847 3.4563186 -7353.7646
+65786.05512536876 3.4563186 -7353.7646
+65787.05512541905 3.4561217 -7353.5669
+65788.05512546934 3.4562004 -7354.5513
+65789.05512551963 3.4560823 -7354.1577
+65790.05512556992 3.4559643 -7354.3545
+65791.05512562022 3.4558854 -7353.7646
+65792.05512567051 3.4560037 -7354.1577
+65793.0551257208 3.4558854 -7353.7646
+65794.05512577109 3.4557281 -7353.3706
+65795.05512582138 3.4555705 -7354.3545
+65796.05512587167 3.4556887 -7354.5513
+65797.05512592196 3.4556494 -7353.3706
+65798.05512597226 3.4556494 -7354.1577
+65799.05512602255 3.4554131 -7353.9609
+65800.05512607284 3.4553344 -7354.5513
+65801.05512612313 3.4554524 -7354.3545
+65802.05512617342 3.4554524 -7353.9609
+65803.05512622371 3.4552948 -7353.7646
+65804.055126274 3.4552948 -7354.3545
+65805.0551263243 3.4551768 -7354.1577
+65806.05512637459 3.4551375 -7354.5513
+65807.05512642488 3.4551375 -7354.5513
+65808.05512647517 3.4550195 -7354.3545
+65809.05512652546 3.4550588 -7353.9609
+65810.05512657575 3.4550195 -7354.1577
+65811.05512662604 3.4548619 -7353.7646
+65812.05512667634 3.4549406 -7354.1577
+65813.05512672663 3.4549012 -7354.5513
+65814.05512677692 3.4547045 -7354.1577
+65815.05512682721 3.4548225 -7354.7485
+65816.0551268775 3.4548619 -7354.3545
+65817.0551269278 3.4548225 -7354.7485
+65818.05512697808 3.4547832 -7354.1577
+65819.05512702838 3.4548225 -7354.3545
+65820.05512707867 3.4549012 -7354.3545
+65821.05512712896 3.4550588 -7353.5669
+65822.05512717925 3.4550588 -7354.1577
+65823.05512722954 3.4551375 -7353.9609
+65824.05512727983 3.4552162 -7354.3545
+65825.05512733012 3.4550982 -7354.9453
+65826.05512738042 3.4550982 -7354.3545
+65827.0551274307 3.4550982 -7354.5513
+65828.055127481 3.4551375 -7354.1577
+65829.05512753129 3.4551375 -7354.1577
+65830.05512758158 3.4550588 -7354.3545
+65831.05512763187 3.4550982 -7354.1577
+65832.05512768216 3.4550982 -7353.7646
+65833.05512773246 3.4550195 -7353.5669
+65834.05512778275 3.4549799 -7354.5513
+65835.05512783304 3.4549406 -7354.9453
+65836.05512788333 3.4550588 -7353.9609
+65837.05512793362 3.4550588 -7354.1577
+65838.05512798391 3.4550588 -7353.5669
+65839.0551280342 3.4550195 -7354.1577
+65840.0551280845 3.4550588 -7353.7646
+65841.05512813479 3.4550195 -7354.3545
+65842.05512818508 3.4549799 -7354.1577
+65843.05512823537 3.4549406 -7354.1577
+65844.05512828566 3.4549799 -7354.3545
+65845.05512833595 3.4549799 -7353.9609
+65846.05512838624 3.4548619 -7353.7646
+65847.05512843654 3.4548225 -7354.7485
+65848.05512848683 3.4547832 -7354.1577
+65849.05512853712 3.4547832 -7354.1577
+65850.05512858741 3.4545076 -7353.3706
+65851.0551286377 3.4545863 -7354.1577
+65852.05512868799 3.4544683 -7354.9453
+65853.05512873828 3.45435 -7354.3545
+65854.05512878858 3.4543107 -7353.7646
+65855.05512883887 3.4542713 -7353.9609
+65856.05512888916 3.454232 -7353.5669
+65857.05512893945 3.4541533 -7354.3545
+65858.05512898974 3.4541926 -7354.3545
+65859.05512904003 3.454035 -7354.1577
+65860.05512909032 3.4541533 -7354.1577
+65861.05512914062 3.4540744 -7353.5669
+65862.0551291909 3.4539957 -7354.7485
+65863.0551292412 3.4538777 -7354.1577
+65864.05512929149 3.453917 -7353.9609
+65865.05512934178 3.4538777 -7355.3384
+65866.05512939207 3.4537594 -7354.1577
+65867.05512944236 3.4537594 -7353.9609
+65868.05512949266 3.4536414 -7354.3545
+65869.05512954295 3.4536808 -7353.7646
+65870.05512959324 3.4534841 -7353.9609
+65871.05512964353 3.4534051 -7354.3545
+65872.05512969382 3.4532871 -7354.5513
+65873.05512974411 3.4532871 -7353.3706
+65874.0551297944 3.4533265 -7354.7485
+65875.0551298447 3.4532084 -7353.7646
+65876.05512989499 3.4532084 -7354.3545
+65877.05512994528 3.4530902 -7354.5513
+65878.05512999557 3.4531691 -7353.1738
+65879.05513004586 3.4531691 -7354.1577
+65880.05513009615 3.4530509 -7354.9453
+65881.05513014644 3.4532084 -7354.5513
+65882.05513019674 3.4530902 -7354.1577
+65883.05513024703 3.4531295 -7354.5513
+65884.05513029732 3.4532084 -7353.9609
+65885.05513034761 3.4530509 -7354.5513
+65886.0551303979 3.4530902 -7354.3545
+65887.05513044819 3.4531295 -7353.7646
+65888.05513049848 3.4530509 -7354.1577
+65889.05513054878 3.4529722 -7354.7485
+65890.05513059907 3.4529328 -7353.7646
+65891.05513064936 3.4529722 -7354.7485
+65892.05513069965 3.4529722 -7354.7485
+65893.05513074994 3.4529328 -7355.1421
+65894.05513080023 3.4528542 -7353.7646
+65895.05513085052 3.4528542 -7354.1577
+65896.05513090082 3.4530902 -7354.3545
+65897.0551309511 3.4530115 -7354.9453
+65898.0551310014 3.4530115 -7354.7485
+65899.05513105169 3.4529328 -7353.9609
+65900.05513110198 3.4529328 -7353.9609
+65901.05513115227 3.4529722 -7354.5513
+65902.05513120256 3.4527359 -7353.7646
+65903.05513125286 3.4528542 -7353.7646
+65904.05513130315 3.4528542 -7354.1577
+65905.05513135344 3.4528542 -7355.1421
+65906.05513140373 3.4528146 -7354.3545
+65907.05513145402 3.4526572 -7354.5513
+65908.05513150431 3.4526572 -7354.7485
+65909.0551315546 3.4524996 -7354.5513
+65910.0551316049 3.4524603 -7354.1577
+65911.05513165519 3.4523423 -7353.5669
+65912.05513170548 3.4522636 -7353.7646
+65913.05513175577 3.452106 -7353.3706
+65914.05513180606 3.4520667 -7353.3706
+65915.05513185635 3.4519486 -7354.3545
+65916.05513190664 3.4518304 -7354.1577
+65917.05513195693 3.451791 -7353.9609
+65918.05513200723 3.4516337 -7353.5669
+65919.05513205752 3.4516337 -7353.9609
+65920.05513210781 3.4514761 -7354.1577
+65921.0551321581 3.4514761 -7353.7646
+65922.05513220839 3.4514368 -7354.5513
+65923.05513225868 3.4513187 -7354.7485
+65924.05513230897 3.4513187 -7353.7646
+65925.05513235927 3.4514761 -7354.1577
+65926.05513240956 3.4512398 -7354.3545
+65927.05513245985 3.4514368 -7353.5669
+65928.05513251014 3.4513581 -7353.5669
+65929.05513256043 3.4513581 -7353.7646
+65930.05513261072 3.4513581 -7353.3706
+65931.05513266101 3.4513581 -7354.3545
+65932.0551327113 3.4511611 -7354.3545
+65933.0551327616 3.4511611 -7354.7485
+65934.05513281189 3.4510825 -7353.9609
+65935.05513286218 3.4510038 -7354.1577
+65936.05513291247 3.4508855 -7354.1577
+65937.05513296276 3.4508855 -7354.1577
+65938.05513301305 3.4508855 -7355.3384
+65939.05513306335 3.4508462 -7354.5513
+65940.05513311364 3.4507675 -7353.9609
+65941.05513316393 3.4507282 -7354.9453
+65942.05513321422 3.4507675 -7353.9609
+65943.05513326451 3.4506099 -7354.1577
+65944.0551333148 3.4506493 -7354.9453
+65945.0551333651 3.4506099 -7354.1577
+65946.05513341539 3.4504919 -7354.3545
+65947.05513346568 3.4505312 -7353.9609
+65948.05513351597 3.4504132 -7353.7646
+65949.05513356626 3.4502556 -7354.3545
+65950.05513361655 3.450177 -7354.1577
+65951.05513366684 3.450177 -7353.9609
+65952.05513371713 3.4500983 -7354.1577
+65953.05513376743 3.44998 -7353.9609
+65954.05513381772 3.4498227 -7354.7485
+65955.05513386801 3.4496651 -7353.9609
+65956.0551339183 3.4495864 -7354.1577
+65957.05513396859 3.4495077 -7354.1577
+65958.05513401888 3.4494684 -7354.1577
+65959.05513406917 3.4494684 -7353.9609
+65960.05513411947 3.4493501 -7354.7485
+65961.05513416976 3.4492714 -7353.5669
+65962.05513422005 3.4491534 -7353.7646
+65963.05513427034 3.4492714 -7354.7485
+65964.05513432063 3.4491928 -7354.7485
+65965.05513437092 3.4492321 -7353.3706
+65966.05513442121 3.4491534 -7354.5513
+65967.0551344715 3.4492321 -7354.1577
+65968.0551345218 3.4491928 -7354.3545
+65969.05513457209 3.4493108 -7353.9609
+65970.05513462238 3.4492714 -7353.9609
+65971.05513467267 3.4493501 -7354.3545
+65972.05513472296 3.4493501 -7354.3545
+65973.05513477325 3.4493501 -7354.7485
+65974.05513482355 3.4493108 -7353.5669
+65975.05513487384 3.4494288 -7353.9609
+65976.05513492413 3.4493501 -7354.1577
+65977.05513497442 3.4492321 -7354.1577
+65978.05513502471 3.4493108 -7354.1577
+65979.055135075 3.4493108 -7352.9771
+65980.0551351253 3.4492714 -7354.5513
+65981.05513517559 3.4491534 -7353.9609
+65982.05513522588 3.4492321 -7354.1577
+65983.05513527617 3.4491138 -7353.3706
+65984.05513532646 3.4491138 -7354.1577
+65985.05513537675 3.4490745 -7354.3545
+65986.05513542704 3.4491534 -7354.1577
+65987.05513547733 3.4491138 -7354.7485
+65988.05513552763 3.4491534 -7354.5513
+65989.05513557792 3.4492321 -7353.7646
+65990.05513562821 3.4492321 -7354.3545
+65991.0551356785 3.4491928 -7354.1577
+65992.05513572879 3.4493895 -7354.1577
+65993.05513577908 3.4491928 -7353.5669
+65994.05513582937 3.4491928 -7354.9453
+65995.05513587967 3.4492714 -7353.7646
+65996.05513592996 3.4491928 -7353.9609
+65997.05513598025 3.4493108 -7354.1577
+65998.05513603054 3.4491928 -7353.9609
+65999.05513608083 3.4491928 -7353.9609
+66000.05513613112 3.4492321 -7353.5669
+66001.05513618141 3.4490745 -7353.7646
+66002.0551362317 3.4490745 -7355.1421
+66003.055136282 3.4490352 -7352.9771
+66004.05513633229 3.4490352 -7353.7646
+66005.05513638258 3.4489958 -7354.3545
+66006.05513643287 3.4488778 -7355.3384
+66007.05513648316 3.4489565 -7354.3545
+66008.05513653345 3.4488778 -7354.1577
+66009.05513658375 3.4487989 -7353.9609
+66010.05513663404 3.4486809 -7354.3545
+66011.05513668433 3.4485629 -7354.5513
+66012.05513673462 3.4485629 -7353.9609
+66013.05513678491 3.4484839 -7354.5513
+66014.0551368352 3.4484053 -7353.7646
+66015.0551368855 3.4482479 -7354.5513
+66016.05513693579 3.4482083 -7353.7646
+66017.05513698608 3.4482083 -7354.9453
+66018.05513703637 3.4482083 -7354.1577
+66019.05513708666 3.448169 -7353.5669
+66020.05513713695 3.4481297 -7354.5513
+66021.05513718724 3.4480903 -7354.5513
+66022.05513723753 3.4480116 -7353.5669
+66023.05513728783 3.447854 -7354.1577
+66024.05513733812 3.4478147 -7354.1577
+66025.05513738841 3.4478147 -7353.9609
+66026.0551374387 3.4476967 -7353.5669
+66027.05513748899 3.4475784 -7354.5513
+66028.05513753928 3.447618 -7353.5669
+66029.05513758957 3.4475391 -7353.5669
+66030.05513763987 3.4474998 -7353.9609
+66031.05513769016 3.4472635 -7354.1577
+66032.05513774045 3.4472241 -7354.3545
+66033.05513779074 3.4469485 -7354.3545
+66034.05513784103 3.4470274 -7354.3545
+66035.05513789132 3.4469879 -7353.5669
+66036.05513794161 3.4469879 -7354.7485
+66037.0551379919 3.4469485 -7354.7485
+66038.0551380422 3.4468305 -7354.3545
+66039.05513809249 3.4467518 -7353.5669
+66040.05513814278 3.4468699 -7354.1577
+66041.05513819307 3.4467912 -7354.3545
+66042.05513824336 3.4467912 -7353.5669
+66043.05513829365 3.4466729 -7354.3545
+66044.05513834395 3.4468305 -7354.1577
+66045.05513839424 3.4469092 -7353.3706
+66046.05513844453 3.4469092 -7354.3545
+66047.05513849482 3.4469485 -7354.1577
+66048.05513854511 3.4469092 -7353.3706
+66049.0551385954 3.4469485 -7354.1577
+66050.0551386457 3.4469485 -7353.9609
+66051.05513869599 3.4471061 -7353.9609
+66052.05513874628 3.4469485 -7354.1577
+66053.05513879657 3.4469879 -7354.5513
+66054.05513884686 3.4470274 -7354.3545
+66055.05513889715 3.4469879 -7353.5669
+66056.05513894744 3.4469092 -7353.1738
+66057.05513899773 3.4468699 -7353.9609
+66058.05513904803 3.4468305 -7353.9609
+66059.05513909832 3.4468305 -7354.7485
+66060.05513914861 3.4468699 -7353.9609
+66061.0551391989 3.4467518 -7354.1577
+66062.05513924919 3.4467518 -7353.3706
+66063.05513929948 3.4467518 -7354.3545
+66064.05513934977 3.4466729 -7353.3706
+66065.05513940006 3.4467518 -7353.5669
+66066.05513945036 3.4465942 -7353.9609
+66067.05513950065 3.4465156 -7354.3545
+66068.05513955094 3.4464762 -7353.9609
+66069.05513960123 3.446358 -7353.9609
+66070.05513965152 3.4462399 -7354.3545
+66071.05513970181 3.4462399 -7354.3545
+66072.0551397521 3.4461613 -7354.3545
+66073.0551398024 3.4460826 -7354.3545
+66074.05513985269 3.4461613 -7353.5669
+66075.05513990298 3.4460826 -7354.5513
+66076.05513995327 3.4460826 -7354.3545
+66077.05514000356 3.4460037 -7353.7646
+66078.05514005385 3.4460037 -7354.1577
+66079.05514010414 3.445807 -7354.1577
+66080.05514015444 3.4458463 -7354.7485
+66081.05514020473 3.4457281 -7353.9609
+66082.05514025502 3.4456887 -7354.1577
+66083.05514030531 3.4455314 -7353.9609
+66084.0551403556 3.4454131 -7353.9609
+66085.0551404059 3.4453344 -7354.1577
+66086.05514045618 3.4452558 -7353.7646
+66087.05514050648 3.4450588 -7354.5513
+66088.05514055677 3.4450195 -7354.9453
+66089.05514060706 3.4449015 -7354.3545
+66090.05514065735 3.4447439 -7353.7646
+66091.05514070764 3.4446652 -7354.5513
+66092.05514075793 3.4447045 -7353.5669
+66093.05514080822 3.4445076 -7354.3545
+66094.05514085852 3.4446652 -7353.5669
+66095.05514090881 3.4445076 -7353.5669
+66096.0551409591 3.4445472 -7352.9771
+66097.05514100939 3.4445472 -7353.7646
+66098.05514105968 3.4445865 -7353.7646
+66099.05514110997 3.4445076 -7353.7646
+66100.05514116026 3.4445472 -7354.5513
+66101.05514121056 3.4444289 -7354.3545
+66102.05514126085 3.4445076 -7354.7485
+66103.05514131114 3.4444289 -7353.7646
+66104.05514136143 3.4443896 -7354.1577
+66105.05514141172 3.4442322 -7354.1577
+66106.05514146201 3.4442322 -7353.7646
+66107.0551415123 3.4440746 -7354.3545
+66108.0551415626 3.4439566 -7353.9609
+66109.05514161289 3.443799 -7354.3545
+66110.05514166318 3.443799 -7353.9609
+66111.05514171347 3.443799 -7353.3706
+66112.05514176376 3.4438384 -7354.5513
+66113.05514181405 3.4438384 -7354.5513
+66114.05514186434 3.4438384 -7354.5513
+66115.05514191464 3.443799 -7354.1577
+66116.05514196493 3.443799 -7353.7646
+66117.05514201522 3.4438777 -7353.5669
+66118.05514206551 3.4439173 -7354.1577
+66119.0551421158 3.443996 -7354.5513
+66120.0551421661 3.4440353 -7354.3545
+66121.05514221638 3.4441533 -7354.1577
+66122.05514226668 3.444114 -7353.9609
+66123.05514231697 3.4443109 -7353.7646
+66124.05514236726 3.4441926 -7354.7485
+66125.05514241755 3.4443502 -7354.1577
+66126.05514246784 3.4442716 -7353.9609
+66127.05514251813 3.4442716 -7353.7646
+66128.05514256842 3.4443502 -7353.3706
+66129.05514261872 3.4443896 -7353.3706
+66130.055142669 3.4443502 -7354.3545
+66131.0551427193 3.4441926 -7354.1577
+66132.05514276959 3.4441926 -7354.9453
+66133.05514281988 3.4441533 -7354.1577
+66134.05514287017 3.4440353 -7354.7485
+66135.05514292046 3.443996 -7354.5513
+66136.05514297076 3.4439173 -7353.9609
+66137.05514302105 3.4438384 -7353.9609
+66138.05514307134 3.4438384 -7354.7485
+66139.05514312163 3.4437203 -7354.3545
+66140.05514317192 3.4437203 -7354.5513
+66141.05514322221 3.443681 -7354.3545
+66142.0551432725 3.4434447 -7353.9609
+66143.0551433228 3.4434054 -7354.1577
+66144.05514337309 3.4432478 -7354.5513
+66145.05514342338 3.4432085 -7354.1577
+66146.05514347367 3.4431298 -7354.1577
+66147.05514352396 3.4430118 -7353.9609
+66148.05514357425 3.4428935 -7354.7485
+66149.05514362454 3.4429722 -7354.5513
+66150.05514367484 3.4428542 -7354.3545
+66151.05514372513 3.4429328 -7353.3706
+66152.05514377542 3.4429328 -7354.3545
+66153.05514382571 3.4427755 -7354.3545
+66154.055143876 3.4426968 -7353.7646
+66155.05514392629 3.4426572 -7354.1577
+66156.05514397658 3.4426968 -7354.7485
+66157.05514402688 3.4425392 -7353.5669
+66158.05514407717 3.4424999 -7353.9609
+66159.05514412746 3.4424999 -7353.7646
+66160.05514417775 3.4424605 -7354.5513
+66161.05514422804 3.4423819 -7354.5513
+66162.05514427833 3.4422636 -7355.1421
+66163.05514432862 3.4422636 -7353.9609
+66164.05514437892 3.4422243 -7353.9609
+66165.0551444292 3.4422636 -7353.3706
+66166.0551444795 3.4421849 -7354.1577
+66167.05514452979 3.4421456 -7353.7646
+66168.05514458008 3.4420273 -7354.5513
+66169.05514463037 3.441988 -7354.1577
+66170.05514468066 3.4417913 -7353.5669
+66171.05514473096 3.4417517 -7354.1577
+66172.05514478125 3.4416337 -7354.3545
+66173.05514483154 3.4415157 -7354.7485
+66174.05514488183 3.4414368 -7353.9609
+66175.05514493212 3.4412401 -7354.3545
+66176.05514498241 3.4412007 -7353.7646
+66177.0551450327 3.4410038 -7354.3545
+66178.055145083 3.4410431 -7354.5513
+66179.05514513329 3.4408069 -7353.7646
+66180.05514518358 3.4408858 -7354.5513
+66181.05514523387 3.4407675 -7353.7646
+66182.05514528416 3.4407282 -7354.5513
+66183.05514533445 3.4406495 -7354.3545
+66184.05514538474 3.4406102 -7354.5513
+66185.05514543504 3.4406102 -7355.1421
+66186.05514548533 3.4404132 -7354.9453
+66187.05514553562 3.4404919 -7354.5513
+66188.05514558591 3.4403739 -7353.7646
+66189.0551456362 3.4402165 -7354.1577
+66190.05514568649 3.4403346 -7353.5669
+66191.05514573678 3.4402952 -7354.1577
+66192.05514578708 3.440177 -7353.5669
+66193.05514583737 3.4402559 -7353.7646
+66194.05514588766 3.4402165 -7353.1738
+66195.05514593795 3.440177 -7353.9609
+66196.05514598824 3.4401376 -7353.5669
+66197.05514603853 3.440177 -7354.3545
+66198.05514608882 3.4401376 -7353.3706
+66199.05514613912 3.440177 -7353.7646
+66200.0551461894 3.4401376 -7353.3706
+66201.0551462397 3.4400589 -7353.9609
+66202.05514628999 3.440177 -7354.5513
+66203.05514634028 3.4400196 -7353.5669
+66204.05514639057 3.4400983 -7354.3545
+66205.05514644086 3.4401376 -7354.7485
+66206.05514649116 3.4400196 -7354.1577
+66207.05514654145 3.4399803 -7354.9453
+66208.05514659174 3.439862 -7353.7646
+66209.05514664203 3.4399014 -7353.5669
+66210.05514669232 3.4398227 -7353.9609
+66211.05514674261 3.439744 -7353.7646
+66212.0551467929 3.4395864 -7354.1577
+66213.0551468432 3.4396653 -7353.9609
+66214.05514689349 3.4395471 -7353.7646
+66215.05514694378 3.4395077 -7354.7485
+66216.05514699407 3.439429 -7354.3545
+66217.05514704436 3.4395471 -7354.5513
+66218.05514709465 3.4392715 -7354.9453
+66219.05514714494 3.439311 -7354.3545
+66220.05514719523 3.4392321 -7353.7646
+66221.05514724553 3.4391928 -7354.1577
+66222.05514729582 3.4391534 -7354.3545
+66223.05514734611 3.4390354 -7354.1577
+66224.0551473964 3.4390354 -7354.5513
+66225.05514744669 3.4388385 -7354.5513
+66226.05514749698 3.4387205 -7353.9609
+66227.05514754727 3.4387205 -7352.9771
+66228.05514759757 3.4386415 -7354.9453
+66229.05514764786 3.4385235 -7354.3545
+66230.05514769815 3.4384842 -7353.7646
+66231.05514774844 3.4383662 -7354.3545
+66232.05514779873 3.4384055 -7354.5513
+66233.05514784902 3.4382873 -7353.9609
+66234.05514789931 3.4382873 -7353.3706
+66235.0551479496 3.4380906 -7353.9609
+66236.0551479999 3.4379723 -7354.3545
+66237.05514805019 3.4379723 -7354.3545
+66238.05514810048 3.4378543 -7353.7646
+66239.05514815077 3.437815 -7353.9609
+66240.05514820106 3.4376967 -7353.9609
+66241.05514825135 3.4375787 -7354.1577
+66242.05514830165 3.4375393 -7353.5669
+66243.05514835194 3.4374607 -7354.1577
+66244.05514840223 3.4373424 -7354.3545
+66245.05514845252 3.4374607 -7353.5669
+66246.05514850281 3.437185 -7354.9453
+66247.0551485531 3.4372244 -7355.1421
+66248.0551486034 3.4372244 -7354.7485
+66249.05514865369 3.4370668 -7353.5669
+66250.05514870398 3.4371061 -7353.3706
+66251.05514875427 3.4369488 -7352.9771
+66252.05514880456 3.4368701 -7353.5669
+66253.05514885485 3.4369488 -7354.1577
+66254.05514890514 3.4368308 -7354.7485
+66255.05514895543 3.4367518 -7353.9609
+66256.05514900573 3.4368308 -7353.3706
+66257.05514905602 3.4366732 -7353.7646
+66258.05514910631 3.4367125 -7353.5669
+66259.0551491566 3.4366732 -7354.1577
+66260.05514920689 3.4366338 -7354.3545
+66261.05514925718 3.4364762 -7354.3545
+66262.05514930747 3.4365158 -7354.5513
+66263.05514935777 3.4363976 -7354.3545
+66264.05514940806 3.4363582 -7353.3706
+66265.05514945835 3.4363189 -7353.1738
+66266.05514950864 3.4363582 -7354.1577
+66267.05514955893 3.4363582 -7354.3545
+66268.05514960922 3.4363189 -7353.3706
+66269.05514965951 3.4363582 -7353.5669
+66270.0551497098 3.4363189 -7353.5669
+66271.0551497601 3.4363976 -7354.9453
+66272.05514981039 3.4363189 -7354.5513
+66273.05514986068 3.4362402 -7353.5669
+66274.05514991097 3.4361219 -7354.3545
+66275.05514996126 3.4360039 -7354.3545
+66276.05515001155 3.4358857 -7353.7646
+66277.05515006185 3.435807 -7353.7646
+66278.05515011214 3.4356103 -7354.1577
+66279.05515016243 3.435492 -7354.1577
+66280.05515021272 3.4354527 -7354.5513
+66281.05515026301 3.4352953 -7354.1577
+66282.0551503133 3.4351377 -7353.5669
+66283.0551503636 3.4350591 -7354.7485
+66284.05515041389 3.4349804 -7354.1577
+66285.05515046418 3.4350197 -7354.5513
+66286.05515051447 3.4349015 -7354.1577
+66287.05515056476 3.4350197 -7353.9609
+66288.05515061505 3.4349015 -7354.1577
+66289.05515066534 3.4347835 -7354.1577
+66290.05515071563 3.4346654 -7353.9609
+66291.05515076593 3.4345078 -7354.3545
+66292.05515081622 3.4345865 -7354.5513
+66293.05515086651 3.4343898 -7354.3545
+66294.0551509168 3.4345078 -7354.3545
+66295.05515096709 3.4343109 -7353.1738
+66296.05515101738 3.4342716 -7354.1577
+66297.05515106767 3.4342716 -7353.7646
+66298.05515111797 3.4342322 -7353.9609
+66299.05515116826 3.4342322 -7354.3545
+66300.05515121855 3.4340353 -7354.1577
+66301.05515126884 3.433996 -7355.1421
+66302.05515131913 3.4341142 -7353.9609
+66303.05515136942 3.4339173 -7354.7485
+66304.05515141971 3.4338386 -7353.7646
+66305.05515147 3.4338386 -7354.3545
+66306.0551515203 3.4337993 -7354.5513
+66307.05515157059 3.433681 -7353.7646
+66308.05515162088 3.433681 -7354.1577
+66309.05515167117 3.433563 -7354.1577
+66310.05515172146 3.4336023 -7353.3706
+66311.05515177175 3.4335237 -7354.1577
+66312.05515182205 3.433445 -7353.5669
+66313.05515187234 3.4333661 -7354.5513
+66314.05515192263 3.433445 -7354.5513
+66315.05515197292 3.4334843 -7353.9609
+66316.05515202321 3.433445 -7354.1577
+66317.0551520735 3.4332874 -7353.7646
+66318.0551521238 3.4333267 -7353.9609
+66319.05515217409 3.4332874 -7354.3545
+66320.05515222438 3.433248 -7353.7646
+66321.05515227467 3.43313 -7353.9609
+66322.05515232496 3.4330511 -7354.5513
+66323.05515237525 3.4328544 -7354.3545
+66324.05515242554 3.4328938 -7353.9609
+66325.05515247583 3.4328938 -7354.1577
+66326.05515252613 3.4327755 -7354.1577
+66327.05515257642 3.4327755 -7354.5513
+66328.05515262671 3.4327362 -7352.9771
+66329.055152677 3.4326575 -7354.1577
+66330.05515272729 3.4326181 -7353.5669
+66331.05515277758 3.4325788 -7353.9609
+66332.05515282787 3.4325395 -7354.3545
+66333.05515287817 3.4324605 -7354.1577
+66334.05515292846 3.4323032 -7354.7485
+66335.05515297875 3.4321063 -7353.7646
+66336.05515302904 3.4321063 -7353.5669
+66337.05515307933 3.4320276 -7353.5669
+66338.05515312962 3.4317913 -7353.3706
+66339.05515317991 3.4317126 -7355.1421
+66340.0551532302 3.4316339 -7353.5669
+66341.0551532805 3.4316339 -7353.5669
+66342.05515333079 3.431555 -7354.1577
+66343.05515338108 3.4315946 -7353.9609
+66344.05515343137 3.4315157 -7353.9609
+66345.05515348166 3.431437 -7354.3545
+66346.05515353195 3.4315157 -7353.3706
+66347.05515358225 3.431437 -7353.3706
+66348.05515363254 3.431319 -7353.3706
+66349.05515368283 3.431319 -7353.7646
+66350.05515373312 3.4312401 -7353.9609
+66351.05515378341 3.4312401 -7353.9609
+66352.0551538337 3.4312007 -7353.7646
+66353.055153884 3.4310827 -7354.5513
+66354.05515393429 3.4310827 -7354.3545
+66355.05515398458 3.4309251 -7354.3545
+66356.05515403487 3.4309251 -7354.1577
+66357.05515408516 3.4308465 -7354.5513
+66358.05515413545 3.4307284 -7354.1577
+66359.05515418574 3.4307284 -7354.1577
+66360.05515423603 3.4306102 -7354.5513
+66361.05515428632 3.4305315 -7353.7646
+66362.05515433662 3.4305315 -7353.9609
+66363.05515438691 3.4304528 -7354.7485
+66364.0551544372 3.4304922 -7354.3545
+66365.05515448749 3.4305315 -7354.5513
+66366.05515453778 3.4304922 -7353.9609
+66367.05515458807 3.4306102 -7353.9609
+66368.05515463836 3.4304922 -7353.7646
+66369.05515468866 3.4303741 -7354.1577
+66370.05515473895 3.4304528 -7354.1577
+66371.05515478924 3.4304528 -7353.9609
+66372.05515483953 3.4303741 -7354.1577
+66373.05515488982 3.4303741 -7354.9453
+66374.05515494011 3.4302166 -7354.1577
+66375.0551549904 3.4302559 -7353.7646
+66376.0551550407 3.4302166 -7354.3545
+66377.05515509099 3.4302166 -7354.3545
+66378.05515514128 3.4302559 -7353.1738
+66379.05515519157 3.4302559 -7354.3545
+66380.05515524186 3.4301379 -7353.9609
+66381.05515529215 3.4301379 -7354.7485
+66382.05515534244 3.4300592 -7354.5513
+66383.05515539274 3.4300985 -7353.3706
+66384.05515544303 3.4299803 -7354.5513
+66385.05515549332 3.4299016 -7355.3384
+66386.05515554361 3.4299409 -7354.1577
+66387.0551555939 3.4299016 -7354.3545
+66388.0551556442 3.4297836 -7354.7485
+66389.05515569448 3.4297047 -7354.5513
+66390.05515574478 3.429626 -7353.7646
+66391.05515579507 3.4295866 -7353.3706
+66392.05515584536 3.4294686 -7353.9609
+66393.05515589565 3.4295473 -7354.5513
+66394.05515594594 3.4293504 -7353.3706
+66395.05515599623 3.4292324 -7354.3545
+66396.05515604652 3.429193 -7353.9609
+66397.05515609682 3.4290748 -7354.3545
+66398.05515614711 3.4289961 -7353.9609
+66399.0551561974 3.4290748 -7353.7646
+66400.05515624769 3.4289961 -7353.9609
+66401.05515629798 3.4288781 -7354.1577
+66402.05515634827 3.4288781 -7353.9609
+66403.05515639856 3.4288387 -7353.5669
+66404.05515644886 3.4286811 -7354.3545
+66405.05515649915 3.4286418 -7353.7646
+66406.05515654944 3.4285631 -7353.7646
+66407.05515659973 3.4284449 -7354.3545
+66408.05515665002 3.4284055 -7354.3545
+66409.05515670031 3.4283268 -7354.9453
+66410.0551567506 3.4280512 -7354.9453
+66411.0551568009 3.4279726 -7354.1577
+66412.05515685119 3.427815 -7354.5513
+66413.05515690148 3.4277363 -7353.7646
+66414.05515695177 3.4276969 -7354.1577
+66415.05515700206 3.4276183 -7354.3545
+66416.05515705235 3.4275393 -7353.5669
+66417.05515710264 3.4275 -7354.1577
+66418.05515715294 3.4275 -7354.3545
+66419.05515720323 3.4275 -7354.3545
+66420.05515725352 3.427382 -7353.3706
+66421.05515730381 3.4273427 -7353.7646
+66422.0551573541 3.4273033 -7354.5513
+66423.0551574044 3.4271851 -7353.9609
+66424.05515745468 3.427067 -7353.9609
+66425.05515750498 3.4269488 -7353.9609
+66426.05515755527 3.4269884 -7353.3706
+66427.05515760556 3.4268308 -7354.3545
+66428.05515765585 3.4266734 -7353.5669
+66429.05515770614 3.4266338 -7354.3545
+66430.05515775643 3.4265158 -7354.3545
+66431.05515780672 3.4263978 -7353.9609
+66432.05515785702 3.4263978 -7353.7646
+66433.0551579073 3.4262795 -7353.9609
+66434.0551579576 3.4262795 -7353.7646
+66435.05515800789 3.4262009 -7353.3706
+66436.05515805818 3.4262009 -7354.1577
+66437.05515810847 3.4262009 -7353.7646
+66438.05515815876 3.4261222 -7354.3545
+66439.05515820906 3.4260039 -7353.9609
+66440.05515825935 3.4259253 -7353.5669
+66441.05515830964 3.4259646 -7353.5669
+66442.05515835993 3.4258859 -7354.1577
+66443.05515841022 3.4258466 -7354.1577
+66444.05515846051 3.4258466 -7354.1577
+66445.0551585108 3.4257679 -7354.3545
+66446.0551585611 3.425689 -7354.3545
+66447.05515861139 3.4256496 -7354.1577
+66448.05515866168 3.4255316 -7354.1577
+66449.05515871197 3.4254529 -7354.3545
+66450.05515876226 3.4254134 -7353.9609
+66451.05515881255 3.425374 -7354.1577
+66452.05515886284 3.425256 -7353.7646
+66453.05515891314 3.425138 -7354.5513
+66454.05515896343 3.4249804 -7354.5513
+66455.05515901372 3.4251773 -7353.7646
+66456.05515906401 3.4250197 -7353.5669
+66457.0551591143 3.4252167 -7354.3545
+66458.05515916459 3.4250984 -7353.7646
+66459.05515921488 3.4249017 -7353.9609
+66460.05515926518 3.4249411 -7354.5513
+66461.05515931547 3.4249017 -7354.3545
+66462.05515936576 3.424823 -7353.5669
+66463.05515941605 3.4247441 -7354.3545
+66464.05515946634 3.4245868 -7354.1577
+66465.05515951663 3.4244685 -7354.5513
+66466.05515956692 3.4244685 -7353.9609
+66467.05515961722 3.4243505 -7353.5669
+66468.0551596675 3.4243112 -7353.5669
+66469.0551597178 3.4244292 -7354.7485
+66470.05515976809 3.4245081 -7353.7646
+66471.05515981838 3.4244292 -7353.5669
+66472.05515986867 3.4244292 -7354.3545
+66473.05515991896 3.4242718 -7353.9609
+66474.05515996926 3.4241536 -7354.3545
+66475.05516001955 3.4241931 -7353.5669
+66476.05516006984 3.4241142 -7354.5513
+66477.05516012013 3.4240749 -7354.7485
+66478.05516017042 3.4239175 -7354.1577
+66479.05516022071 3.4239175 -7353.9609
+66480.055160271 3.4239569 -7354.1577
+66481.0551603213 3.4237993 -7354.3545
+66482.05516037159 3.4237599 -7353.9609
+66483.05516042188 3.4236419 -7354.1577
+66484.05516047217 3.4236813 -7353.7646
+66485.05516052246 3.4235237 -7354.1577
+66486.05516057275 3.4234843 -7353.7646
+66487.05516062304 3.4234056 -7354.3545
+66488.05516067334 3.4233663 -7354.5513
+66489.05516072363 3.42313 -7354.5513
+66490.05516077392 3.423012 -7354.1577
+66491.05516082421 3.4229727 -7354.3545
+66492.0551608745 3.423012 -7354.7485
+66493.05516092479 3.4230514 -7354.5513
+66494.05516097508 3.4230907 -7354.3545
+66495.05516102538 3.423012 -7354.5513
+66496.05516107567 3.4229331 -7354.5513
+66497.05516112596 3.4229331 -7354.3545
+66498.05516117625 3.4228151 -7354.5513
+66499.05516122654 3.4229331 -7354.7485
+66500.05516127683 3.4228544 -7353.9609
+66501.05516132712 3.4227757 -7353.3706
+66502.05516137742 3.4226577 -7354.5513
+66503.0551614277 3.4225788 -7354.9453
+66504.055161478 3.4223821 -7354.5513
+66505.05516152829 3.4224608 -7353.7646
+66506.05516157858 3.4224608 -7354.1577
+66507.05516162887 3.4225788 -7354.7485
+66508.05516167916 3.4225001 -7353.9609
+66509.05516172945 3.4225395 -7354.7485
+66510.05516177975 3.4226182 -7355.1421
+66511.05516183004 3.4224608 -7354.3545
+66512.05516188033 3.4223821 -7354.3545
+66513.05516193062 3.4223428 -7354.3545
+66514.05516198091 3.4222245 -7352.583
+66515.0551620312 3.4222245 -7353.7646
+66516.0551620815 3.4221065 -7354.1577
+66517.05516213179 3.4221458 -7353.5669
+66518.05516218208 3.4220672 -7353.9609
+66519.05516223237 3.4221458 -7354.3545
+66520.05516228266 3.4221065 -7354.3545
+66521.05516233295 3.4220672 -7354.3545
+66522.05516238324 3.4219882 -7353.5669
+66523.05516243353 3.4220276 -7353.7646
+66524.05516248383 3.4221065 -7354.5513
+66525.05516253412 3.4220276 -7354.5513
+66526.05516258441 3.4219489 -7354.9453
+66527.0551626347 3.4220276 -7353.3706
+66528.05516268499 3.4219489 -7354.3545
+66529.05516273528 3.4219489 -7354.5513
+66530.05516278557 3.4218309 -7354.9453
+66531.05516283587 3.4218702 -7354.3545
+66532.05516288616 3.4218309 -7354.1577
+66533.05516293645 3.4219882 -7354.7485
+66534.05516298674 3.4217916 -7353.7646
+66535.05516303703 3.4217126 -7354.3545
+66536.05516308732 3.4217522 -7353.3706
+66537.05516313761 3.4217522 -7354.3545
+66538.0551631879 3.4216733 -7353.1738
+66539.0551632382 3.4217126 -7354.3545
+66540.05516328849 3.4217126 -7353.7646
+66541.05516333878 3.421634 -7353.3706
+66542.05516338907 3.4215553 -7352.1895
+66543.05516343936 3.4214766 -7353.3706
+66544.05516348965 3.4213977 -7354.5513
+66545.05516353995 3.4212797 -7354.1577
+66546.05516359024 3.4210827 -7354.1577
+66547.05516364053 3.4209647 -7354.1577
+66548.05516369082 3.4208074 -7354.3545
+66549.05516374111 3.4208467 -7353.9609
+66550.0551637914 3.4208074 -7354.3545
+66551.0551638417 3.4207284 -7353.7646
+66552.05516389199 3.4206498 -7353.7646
+66553.05516394228 3.4206498 -7355.1421
+66554.05516399257 3.4206498 -7354.5513
+66555.05516404286 3.4206104 -7355.3384
+66556.05516409315 3.4204924 -7354.7485
+66557.05516414344 3.4205711 -7354.7485
+66558.05516419373 3.4206498 -7354.3545
+66559.05516424403 3.4206104 -7352.9771
+66560.05516429432 3.4206104 -7354.1577
+66561.05516434461 3.4206104 -7354.1577
+66562.0551643949 3.4205711 -7352.9771
+66563.05516444519 3.4206104 -7354.1577
+66564.05516449548 3.4205711 -7353.9609
+66565.05516454577 3.4204924 -7354.7485
+66566.05516459607 3.4204924 -7354.1577
+66567.05516464636 3.4203742 -7354.5513
+66568.05516469665 3.4205317 -7353.9609
+66569.05516474694 3.4204135 -7353.7646
+66570.05516479723 3.4204528 -7353.9609
+66571.05516484752 3.4203742 -7354.5513
+66572.05516489781 3.4203348 -7355.1421
+66573.0551649481 3.4200592 -7354.3545
+66574.0551649984 3.4199805 -7353.7646
+66575.05516504869 3.4197049 -7354.1577
+66576.05516509898 3.4197049 -7353.7646
+66577.05516514927 3.4197836 -7353.3706
+66578.05516519956 3.4196656 -7354.3545
+66579.05516524985 3.4198229 -7354.1577
+66580.05516530015 3.4197836 -7353.9609
+66581.05516535044 3.4197443 -7353.5669
+66582.05516540073 3.4197049 -7353.7646
+66583.05516545102 3.4197443 -7353.7646
+66584.05516550131 3.4197049 -7354.3545
+66585.0551655516 3.4195473 -7354.7485
+66586.0551656019 3.4194686 -7354.7485
+66587.05516565219 3.4194293 -7354.5513
+66588.05516570248 3.4193506 -7354.3545
+66589.05516575277 3.4193113 -7353.9609
+66590.05516580306 3.4193113 -7354.1577
+66591.05516585335 3.4191537 -7354.3545
+66592.05516590364 3.418957 -7353.5669
+66593.05516595393 3.4189174 -7355.1421
+66594.05516600423 3.4188387 -7354.1577
+66595.05516605452 3.4185631 -7353.7646
+66596.05516610481 3.4185238 -7353.9609
+66597.0551661551 3.4183269 -7354.5513
+66598.05516620539 3.4181695 -7352.9771
+66599.05516625568 3.4180515 -7354.3545
+66600.05516630597 3.4179726 -7353.9609
+66601.05516635627 3.4178152 -7354.5513
+66602.05516640656 3.4179332 -7353.7646
+66603.05516645685 3.4178545 -7353.3706
+66604.05516650714 3.4177365 -7354.3545
+66605.05516655743 3.4177365 -7354.7485
+66606.05516660772 3.4175789 -7354.9453
+66607.05516665801 3.4176183 -7354.5513
+66608.0551667083 3.4174216 -7354.1577
+66609.0551667586 3.417382 -7354.3545
+66610.05516680889 3.4172246 -7353.9609
+66611.05516685918 3.4173033 -7353.7646
+66612.05516690947 3.4171853 -7353.9609
+66613.05516695976 3.4169884 -7353.7646
+66614.05516701005 3.4169884 -7353.5669
+66615.05516706035 3.4170277 -7354.7485
+66616.05516711064 3.4170277 -7353.7646
+66617.05516716093 3.4170277 -7354.5513
+66618.05516721122 3.4169097 -7354.3545
+66619.05516726151 3.4169097 -7353.9609
+66620.0551673118 3.4169097 -7354.1577
+66621.0551673621 3.416949 -7354.5513
+66622.05516741239 3.416949 -7354.3545
+66623.05516746268 3.417146 -7353.3706
+66624.05516751297 3.4171853 -7354.3545
+66625.05516756326 3.4171066 -7354.1577
+66626.05516761355 3.416949 -7354.5513
+66627.05516766384 3.416831 -7354.7485
+66628.05516771413 3.4167128 -7354.5513
+66629.05516776443 3.4165947 -7353.9609
+66630.05516781472 3.4165161 -7354.3545
+66631.05516786501 3.4165161 -7354.1577
+66632.0551679153 3.4167128 -7354.1577
+66633.05516796559 3.4167128 -7354.3545
+66634.05516801588 3.4165947 -7354.3545
+66635.05516806617 3.4164371 -7354.3545
+66636.05516811647 3.4164371 -7353.9609
+66637.05516816676 3.4162798 -7354.5513
+66638.05516821705 3.4161615 -7354.1577
+66639.05516826734 3.4160829 -7353.9609
+66640.05516831763 3.4159648 -7354.1577
+66641.05516836792 3.4158466 -7352.9771
+66642.05516841821 3.4159648 -7354.1577
+66643.0551684685 3.4160042 -7353.7646
+66644.0551685188 3.4157286 -7353.9609
+66645.05516856909 3.4158072 -7353.3706
+66646.05516861938 3.4156892 -7354.5513
+66647.05516866967 3.4159255 -7353.5669
+66648.05516871996 3.4158466 -7354.3545
+66649.05516877025 3.4158072 -7354.1577
+66650.05516882055 3.4158862 -7354.9453
+66651.05516887084 3.4158862 -7354.3545
+66652.05516892113 3.4159255 -7353.9609
+66653.05516897142 3.4158466 -7353.7646
+66654.05516902171 3.4158466 -7354.7485
+66655.055169072 3.4158072 -7353.7646
+66656.0551691223 3.4156499 -7353.5669
+66657.05516917259 3.4154923 -7353.5669
+66658.05516922288 3.4155316 -7355.3384
+66659.05516927317 3.4154923 -7352.9771
+66660.05516932346 3.415453 -7354.1577
+66661.05516937375 3.4154136 -7354.3545
+66662.05516942404 3.4152167 -7353.5669
+66663.05516947433 3.4151773 -7354.5513
+66664.05516952462 3.4154136 -7354.3545
+66665.05516957492 3.4152956 -7352.9771
+66666.05516962521 3.4152956 -7353.7646
+66667.0551696755 3.4152167 -7354.3545
+66668.05516972579 3.4152167 -7353.7646
+66669.05516977608 3.4150987 -7353.7646
+66670.05516982637 3.4150593 -7354.3545
+66671.05516987666 3.4150593 -7353.9609
+66672.05516992696 3.4149413 -7353.9609
+66673.05516997725 3.4147837 -7354.1577
+66674.05517002754 3.4147444 -7354.1577
+66675.05517007783 3.4145474 -7354.7485
+66676.05517012812 3.4146261 -7354.3545
+66677.05517017841 3.4142718 -7353.7646
+66678.0551702287 3.4143507 -7354.5513
+66679.055170279 3.4142718 -7354.1577
+66680.05517032929 3.4141932 -7353.7646
+66681.05517037958 3.4141538 -7354.9453
+66682.05517042987 3.4141538 -7355.1421
+66683.05517048016 3.4141145 -7353.7646
+66684.05517053045 3.4139962 -7353.7646
+66685.05517058074 3.4140751 -7354.5513
+66686.05517063104 3.4140751 -7353.9609
+66687.05517068133 3.4139962 -7354.7485
+66688.05517073162 3.4141538 -7353.9609
+66689.05517078191 3.4140358 -7354.7485
+66690.0551708322 3.4139962 -7354.5513
+66691.0551708825 3.4139175 -7353.9609
+66692.05517093278 3.4138782 -7354.1577
+66693.05517098308 3.4137602 -7354.7485
+66694.05517103337 3.4136813 -7354.3545
+66695.05517108366 3.4136026 -7353.7646
+66696.05517113395 3.4134452 -7354.5513
+66697.05517118424 3.4133663 -7353.5669
+66698.05517123453 3.4131303 -7353.5669
+66699.05517128482 3.4130514 -7354.3545
+66700.05517133512 3.4128547 -7354.5513
+66701.05517138541 3.4126577 -7354.1577
+66702.0551714357 3.4126577 -7354.5513
+66703.05517148599 3.4124608 -7354.7485
+66704.05517153628 3.4124215 -7354.5513
+66705.05517158657 3.4124608 -7354.3545
+66706.05517163686 3.4122641 -7354.7485
+66707.05517168716 3.4123821 -7354.3545
+66708.05517173745 3.4123034 -7353.9609
+66709.05517178774 3.4122248 -7353.3706
+66710.05517183803 3.4121854 -7354.5513
+66711.05517188832 3.4120672 -7354.1577
+66712.05517193861 3.4119885 -7353.5669
+66713.0551719889 3.4117916 -7353.9609
+66714.0551720392 3.4118309 -7354.3545
+66715.05517208949 3.4117129 -7355.1421
+66716.05517213978 3.4115555 -7353.9609
+66717.05517219007 3.4113979 -7354.5513
+66718.05517224036 3.4113193 -7353.9609
+66719.05517229065 3.4112799 -7354.3545
+66720.05517234094 3.411083 -7353.7646
+66721.05517239124 3.4109254 -7353.7646
+66722.05517244153 3.4110436 -7353.9609
+66723.05517249182 3.410965 -7354.1577
+66724.05517254211 3.4108467 -7353.5669
+66725.0551725924 3.4108074 -7355.1421
+66726.0551726427 3.4108074 -7353.3706
+66727.05517269298 3.4107287 -7353.9609
+66728.05517274328 3.410768 -7353.7646
+66729.05517279357 3.4107287 -7352.7803
+66730.05517284386 3.4108467 -7353.7646
+66731.05517289415 3.410768 -7353.9609
+66732.05517294444 3.4108074 -7354.9453
+66733.05517299473 3.4107287 -7354.3545
+66734.05517304502 3.4107287 -7354.1577
+66735.05517309532 3.4105318 -7354.9453
+66736.0551731456 3.4105318 -7353.9609
+66737.0551731959 3.4104137 -7353.7646
+66738.05517324619 3.4103744 -7353.1738
+66739.05517329648 3.4101775 -7354.7485
+66740.05517334677 3.4101381 -7354.9453
+66741.05517339706 3.4099805 -7353.7646
+66742.05517344736 3.4098232 -7353.1738
+66743.05517349765 3.4096262 -7354.1577
+66744.05517354794 3.4093506 -7353.9609
+66745.05517359823 3.4091539 -7353.7646
+66746.05517364852 3.4091933 -7354.3545
+66747.05517369881 3.4091146 -7353.5669
+66748.0551737491 3.4089177 -7354.5513
+66749.0551737994 3.4087996 -7354.1577
+66750.05517384969 3.4087996 -7354.7485
+66751.05517389998 3.4087207 -7355.3384
+66752.05517395027 3.4086027 -7353.9609
+66753.05517400056 3.4086027 -7353.5669
+66754.05517405085 3.4084451 -7353.9609
+66755.05517410114 3.4083664 -7355.1421
+66756.05517415144 3.4083271 -7353.9609
+66757.05517420173 3.4081697 -7353.9609
+66758.05517425202 3.4081697 -7354.1577
+66759.05517430231 3.4080908 -7354.7485
+66760.0551743526 3.4079728 -7353.9609
+66761.05517440289 3.4080122 -7354.3545
+66762.05517445318 3.4078548 -7354.7485
+66763.05517450348 3.4078941 -7354.3545
+66764.05517455377 3.4079335 -7354.3545
+66765.05517460406 3.4079728 -7353.7646
+66766.05517465435 3.4079335 -7354.1577
+66767.05517470464 3.4078941 -7354.1577
+66768.05517475493 3.4079335 -7353.9609
+66769.05517480522 3.4078941 -7353.9609
+66770.05517485552 3.4080122 -7353.9609
+66771.0551749058 3.4080515 -7353.3706
+66772.0551749561 3.4081697 -7354.1577
+66773.05517500639 3.4080122 -7354.7485
+66774.05517505668 3.4079335 -7354.7485
+66775.05517510697 3.4078548 -7354.5513
+66776.05517515726 3.4075792 -7353.3706
+66777.05517520756 3.4076579 -7354.3545
+66778.05517525785 3.4076185 -7353.1738
+66779.05517530814 3.4075003 -7354.7485
+66780.05517535843 3.4073036 -7355.1421
+66781.05517540872 3.4074216 -7354.5513
+66782.05517545901 3.4075396 -7354.5513
+66783.0551755093 3.4075792 -7355.1421
+66784.0551755596 3.4075003 -7353.5669
+66785.05517560989 3.4073822 -7353.5669
+66786.05517566018 3.4075396 -7353.9609
+66787.05517571047 3.4073822 -7353.5669
+66788.05517576076 3.4073429 -7354.7485
+66789.05517581105 3.4073036 -7354.9453
+66790.05517586134 3.4072247 -7354.3545
+66791.05517591164 3.4073036 -7353.5669
+66792.05517596193 3.4072642 -7354.3545
+66793.05517601222 3.4071066 -7354.5513
+66794.05517606251 3.4069493 -7353.5669
+66795.0551761128 3.406831 -7353.7646
+66796.05517616309 3.4065948 -7355.1421
+66797.05517621338 3.4063981 -7354.1577
+66798.05517626368 3.4062405 -7354.5513
+66799.05517631397 3.4063194 -7354.7485
+66800.05517636426 3.4061618 -7353.9609
+66801.05517641455 3.4060044 -7353.9609
+66802.05517646484 3.4058075 -7353.9609
+66803.05517651513 3.4057288 -7354.3545
+66804.05517656542 3.4056106 -7355.3384
+66805.05517661572 3.4055319 -7354.3545
+66806.055176666 3.4053349 -7354.1577
+66807.0551767163 3.4051776 -7354.1577
+66808.05517676659 3.4050989 -7353.7646
+66809.05517681688 3.4048233 -7354.1577
+66810.05517686717 3.4046657 -7354.3545
+66811.05517691746 3.4046264 -7353.7646
+66812.05517696775 3.4045084 -7353.7646
+66813.05517701805 3.4044294 -7354.1577
+66814.05517706834 3.4043114 -7354.9453
+66815.05517711863 3.4040751 -7354.3545
+66816.05517716892 3.4039965 -7354.5513
+66817.05517721921 3.4039178 -7353.5669
+66818.0551772695 3.4039571 -7353.7646
+66819.0551773198 3.4037995 -7354.7485
+66820.05517737009 3.4036422 -7354.1577
+66821.05517742038 3.4034452 -7353.5669
+66822.05517747067 3.4029729 -7353.3706
+66823.05517752096 3.402776 -7354.5513
+66824.05517757125 3.4025004 -7353.5669
+66825.05517762154 3.4022641 -7353.7646
+66826.05517767183 3.4021461 -7353.9609
+66827.05517772213 3.4022248 -7352.9771
+66828.05517777242 3.4020674 -7353.9609
+66829.05517782271 3.4019885 -7354.7485
+66830.055177873 3.4019098 -7353.9609
+66831.05517792329 3.4017131 -7353.9609
+66832.05517797358 3.4014375 -7353.9609
+66833.05517802387 3.4012406 -7354.9453
+66834.05517807417 3.4010832 -7354.3545
+66835.05517812446 3.4010832 -7354.7485
+66836.05517817475 3.4006894 -7354.7485
+66837.05517822504 3.4005713 -7354.1577
+66838.05517827533 3.4004927 -7354.3545
+66839.05517832562 3.4002564 -7354.9453
+66840.05517837591 3.3999808 -7354.1577
+66841.0551784262 3.4000201 -7354.1577
+66842.0551784765 3.3999414 -7353.9609
+66843.05517852679 3.3998628 -7353.9609
+66844.05517857708 3.3998628 -7353.5669
+66845.05517862737 3.3999414 -7353.5669
+66846.05517867766 3.3997838 -7354.5513
+66847.05517872795 3.3997445 -7354.3545
+66848.05517877825 3.3996265 -7354.5513
+66849.05517882854 3.3996265 -7354.1577
+66850.05517887883 3.3996265 -7354.1577
+66851.05517892912 3.3995872 -7353.7646
+66852.05517897941 3.3994689 -7353.7646
+66853.0551790297 3.3994689 -7353.9609
+66854.05517908 3.3993902 -7354.5513
+66855.05517913029 3.3991933 -7354.5513
+66856.05517918058 3.3991539 -7354.1577
+66857.05517923087 3.3991539 -7354.1577
+66858.05517928116 3.3991146 -7353.7646
+66859.05517933145 3.3990359 -7353.9609
+66860.05517938174 3.3990359 -7354.5513
+66861.05517943203 3.3989179 -7353.3706
+66862.05517948233 3.3987997 -7353.5669
+66863.05517953262 3.3985634 -7354.7485
+66864.05517958291 3.3982878 -7353.3706
+66865.0551796332 3.398406 -7354.5513
+66866.05517968349 3.3982878 -7354.1577
+66867.05517973378 3.3982484 -7353.9609
+66868.05517978407 3.3980911 -7353.7646
+66869.05517983437 3.3978548 -7353.5669
+66870.05517988466 3.3977761 -7353.9609
+66871.05517993495 3.3978548 -7353.7646
+66872.05517998524 3.3976579 -7353.5669
+66873.05518003553 3.3976579 -7354.3545
+66874.05518008582 3.3975399 -7354.3545
+66875.05518013611 3.3976579 -7354.1577
+66876.0551801864 3.3975792 -7354.1577
+66877.0551802367 3.3974612 -7354.3545
+66878.05518028699 3.3973825 -7355.1421
+66879.05518033728 3.3972642 -7354.9453
+66880.05518038757 3.3971069 -7354.3545
+66881.05518043786 3.3967919 -7354.5513
+66882.05518048815 3.3966343 -7353.1738
+66883.05518053845 3.3966343 -7354.1577
+66884.05518058874 3.3966737 -7354.7485
+66885.05518063903 3.3968313 -7354.7485
+66886.05518068932 3.3967919 -7354.7485
+66887.05518073961 3.3966737 -7354.3545
+66888.0551807899 3.396595 -7354.3545
+66889.0551808402 3.3964374 -7354.3545
+66890.05518089049 3.3963587 -7354.1577
+66891.05518094078 3.3960044 -7354.7485
+66892.05518099107 3.3959258 -7354.3545
+66893.05518104136 3.3958471 -7354.3545
+66894.05518109165 3.3957288 -7354.7485
+66895.05518114194 3.3957288 -7354.1577
+66896.05518119223 3.3955321 -7354.7485
+66897.05518124253 3.3953745 -7354.5513
+66898.05518129282 3.3952565 -7353.5669
+66899.05518134311 3.3949809 -7353.5669
+66900.0551813934 3.3947446 -7354.9453
+66901.05518144369 3.3945084 -7354.3545
+66902.05518149398 3.394351 -7354.3545
+66903.05518154427 3.3941541 -7353.1738
+66904.05518159457 3.3940754 -7354.1577
+66905.05518164486 3.3939178 -7353.5669
+66906.05518169515 3.3938391 -7354.3545
+66907.05518174544 3.3936028 -7353.7646
+66908.05518179573 3.3933272 -7354.5513
+66909.05518184602 3.3930912 -7353.3706
+66910.05518189631 3.3931305 -7353.7646
+66911.0551819466 3.3929336 -7354.1577
+66912.0551819969 3.3928943 -7354.3545
+66913.05518204719 3.3926973 -7354.3545
+66914.05518209748 3.3926187 -7353.5669
+66915.05518214777 3.3926187 -7353.3706
+66916.05518219806 3.3927367 -7354.5513
+66917.05518224835 3.3927367 -7354.3545
+66918.05518229865 3.3928549 -7354.5513
+66919.05518234894 3.3928156 -7354.1577
+66920.05518239923 3.3928943 -7354.7485
+66921.05518244952 3.3929729 -7354.3545
+66922.05518249981 3.3928549 -7354.1577
+66923.0551825501 3.3926187 -7353.7646
+66924.0551826004 3.392225 -7353.7646
+66925.05518265069 3.3919888 -7355.1421
+66926.05518270098 3.3917918 -7354.5513
+66927.05518275127 3.3917131 -7352.9771
+66928.05518280156 3.3915558 -7354.7485
+66929.05518285185 3.3912802 -7353.9609
+66930.05518290214 3.3913982 -7354.1577
+66931.05518295243 3.3912408 -7354.3545
+66932.05518300273 3.3912408 -7354.1577
+66933.05518305302 3.3913195 -7353.3706
+66934.05518310331 3.3912013 -7354.1577
+66935.0551831536 3.3912408 -7354.1577
+66936.05518320389 3.3912802 -7354.5513
+66937.05518325418 3.3914769 -7354.5513
+66938.05518330447 3.3914375 -7354.1577
+66939.05518335477 3.3914769 -7353.3706
+66940.05518340506 3.3914375 -7353.1738
+66941.05518345535 3.3912802 -7353.9609
+66942.05518350564 3.3910832 -7353.9609
+66943.05518355593 3.3910439 -7354.9453
+66944.05518360622 3.3909652 -7353.5669
+66945.05518365651 3.3909259 -7353.9609
+66946.0551837068 3.390847 -7354.1577
+66947.0551837571 3.3907683 -7354.1577
+66948.05518380739 3.3906503 -7354.1577
+66949.05518385768 3.3907683 -7354.7485
+66950.05518390797 3.3906503 -7354.7485
+66951.05518395826 3.3904533 -7354.3545
+66952.05518400855 3.390414 -7353.9609
+66953.05518405885 3.3904533 -7354.5513
+66954.05518410914 3.3904533 -7353.9609
+66955.05518415943 3.390414 -7353.9609
+66956.05518420972 3.3903353 -7354.3545
+66957.05518426001 3.390532 -7354.3545
+66958.0551843103 3.3904533 -7354.9453
+66959.0551843606 3.3902564 -7354.7485
+66960.05518441088 3.3903353 -7353.9609
+66961.05518446118 3.3902564 -7354.3545
+66962.05518451147 3.3900597 -7353.5669
+66963.05518456176 3.3899021 -7354.5513
+66964.05518461205 3.389981 -7354.5513
+66965.05518466234 3.3898234 -7353.9609
+66966.05518471263 3.3897841 -7354.1577
+66967.05518476292 3.3896265 -7354.1577
+66968.05518481322 3.3897841 -7354.3545
+66969.05518486351 3.3896658 -7355.7324
+66970.0551849138 3.3896658 -7353.9609
+66971.05518496409 3.3896658 -7353.7646
+66972.05518501438 3.3896265 -7354.7485
+66973.05518506467 3.3895085 -7354.5513
+66974.05518511496 3.3894298 -7354.7485
+66975.05518516526 3.3891935 -7354.3545
+66976.05518521555 3.3890359 -7354.3545
+66977.05518526584 3.3890755 -7354.3545
+66978.05518531613 3.3890755 -7354.7485
+66979.05518536642 3.3889966 -7353.7646
+66980.05518541671 3.3888786 -7353.9609
+66981.055185467 3.3887999 -7353.5669
+66982.0551855173 3.3887606 -7353.9609
+66983.05518556759 3.388603 -7354.1577
+66984.05518561788 3.3883667 -7354.7485
+66985.05518566817 3.3882093 -7353.9609
+66986.05518571846 3.38817 -7354.9453
+66987.05518576875 3.3880124 -7353.9609
+66988.05518581904 3.3878944 -7353.9609
+66989.05518586934 3.3878944 -7353.7646
+66990.05518591963 3.3879337 -7354.5513
+66991.05518596992 3.3878944 -7353.9609
+66992.05518602021 3.3877761 -7353.7646
+66993.0551860705 3.3878155 -7353.7646
+66994.0551861208 3.3876188 -7354.7485
+66995.05518617108 3.3873825 -7354.5513
+66996.05518622138 3.3873038 -7353.9609
+66997.05518627167 3.3871069 -7354.5513
+66998.05518632196 3.3872252 -7353.7646
+66999.05518637225 3.3873038 -7354.3545
+67000.05518642254 3.3870676 -7353.9609
+67001.05518647283 3.3869102 -7354.1577
+67002.05518652312 3.3867133 -7354.9453
+67003.05518657342 3.3865557 -7354.3545
+67004.05518662371 3.3863983 -7353.7646
+67005.055186674 3.3862407 -7353.7646
+67006.05518672429 3.386044 -7354.9453
+67007.05518677458 3.3859258 -7353.9609
+67008.05518682487 3.3858471 -7353.9609
+67009.05518687516 3.3858078 -7354.3545
+67010.05518692546 3.3857291 -7353.9609
+67011.05518697575 3.3852959 -7353.9609
+67012.05518702604 3.3852172 -7353.3706
+67013.05518707633 3.3851779 -7354.1577
+67014.05518712662 3.3850203 -7354.1577
+67015.05518717691 3.3850992 -7354.3545
+67016.0551872272 3.3850992 -7354.3545
+67017.0551872775 3.3850992 -7354.5513
+67018.05518732779 3.3852565 -7354.3545
+67019.05518737808 3.3852172 -7353.9609
+67020.05518742837 3.3850203 -7354.5513
+67021.05518747866 3.3849416 -7354.1577
+67022.05518752895 3.3846266 -7353.9609
+67023.05518757924 3.3844693 -7353.9609
+67024.05518762954 3.384351 -7354.5513
+67025.05518767983 3.3841543 -7353.9609
+67026.05518773012 3.3839967 -7354.7485
+67027.05518778041 3.383918 -7354.3545
+67028.0551878307 3.3838787 -7354.5513
+67029.055187881 3.3838787 -7353.9609
+67030.05518793128 3.3837211 -7354.7485
+67031.05518798158 3.3837211 -7354.3545
+67032.05518803187 3.3836031 -7354.9453
+67033.05518808216 3.3835638 -7353.9609
+67034.05518813245 3.3835244 -7354.1577
+67035.05518818274 3.3834062 -7353.5669
+67036.05518823303 3.3833668 -7353.5669
+67037.05518828332 3.3831699 -7354.1577
+67038.05518833362 3.3831306 -7354.1577
+67039.0551883839 3.3832095 -7354.9453
+67040.0551884342 3.3831699 -7353.7646
+67041.05518848449 3.3831699 -7353.5669
+67042.05518853478 3.3832488 -7353.7646
+67043.05518858507 3.3831699 -7354.1577
+67044.05518863536 3.3831699 -7355.1421
+67045.05518868566 3.3831699 -7353.9609
+67046.05518873595 3.3831306 -7354.1577
+67047.05518878624 3.3830912 -7354.3545
+67048.05518883653 3.3830912 -7354.1577
+67049.05518888682 3.3829339 -7354.7485
+67050.05518893711 3.3827763 -7354.9453
+67051.0551889874 3.3826189 -7353.9609
+67052.0551890377 3.3824613 -7353.9609
+67053.05518908799 3.382225 -7353.7646
+67054.05518913828 3.3821464 -7353.9609
+67055.05518918857 3.382107 -7354.1577
+67056.05518923886 3.3820677 -7353.9609
+67057.05518928915 3.3820283 -7354.1577
+67058.05518933944 3.3820283 -7353.7646
+67059.05518938974 3.3819494 -7354.5513
+67060.05518944003 3.3819101 -7354.3545
+67061.05518949032 3.3820283 -7354.3545
+67062.05518954061 3.3820283 -7354.5513
+67063.0551895909 3.3819494 -7354.3545
+67064.05518964119 3.3816345 -7354.1577
+67065.05518969148 3.3813591 -7353.5669
+67066.05518974178 3.3810835 -7353.5669
+67067.05518979207 3.3807685 -7354.5513
+67068.05518984236 3.3803353 -7353.9609
+67069.05518989265 3.3800597 -7354.5513
+67070.05518994294 3.379981 -7354.1577
+67071.05518999323 3.3799024 -7355.3384
+67072.05519004352 3.379863 -7354.5513
+67073.05519009382 3.3798237 -7354.9453
+67074.0551901441 3.3800597 -7354.1577
+67075.0551901944 3.3797448 -7353.5669
+67076.05519024469 3.379863 -7353.7646
+67077.05519029498 3.3797448 -7353.9609
+67078.05519034527 3.3797841 -7354.7485
+67079.05519039556 3.3798237 -7353.7646
+67080.05519044586 3.3796661 -7353.3706
+67081.05519049615 3.3794692 -7354.3545
+67082.05519054644 3.3793118 -7353.5669
+67083.05519059673 3.3793511 -7354.3545
+67084.05519064702 3.3791938 -7354.3545
+67085.05519069731 3.3793118 -7353.9609
+67086.0551907476 3.3792331 -7354.1577
+67087.0551907979 3.3789968 -7354.5513
+67088.05519084819 3.3789182 -7354.5513
+67089.05519089848 3.3789968 -7354.1577
+67090.05519094877 3.3789575 -7355.7324
+67091.05519099906 3.3788786 -7354.1577
+67092.05519104935 3.3787606 -7354.1577
+67093.05519109964 3.3785243 -7354.1577
+67094.05519114994 3.3784063 -7354.7485
+67095.05519120023 3.3783669 -7353.9609
+67096.05519125052 3.3781307 -7354.1577
+67097.05519130081 3.378052 -7353.9609
+67098.0551913511 3.3779733 -7354.7485
+67099.05519140139 3.3778157 -7354.1577
+67100.05519145168 3.377737 -7354.5513
+67101.05519150198 3.377737 -7354.1577
+67102.05519155227 3.3775401 -7354.5513
+67103.05519160256 3.3773828 -7353.9609
+67104.05519165285 3.3774221 -7354.1577
+67105.05519170314 3.3772645 -7354.1577
+67106.05519175343 3.3770678 -7353.9609
+67107.05519180372 3.3769889 -7354.5513
+67108.05519185401 3.3769102 -7353.3706
+67109.0551919043 3.3768709 -7354.1577
+67110.0551919546 3.3766346 -7354.7485
+67111.05519200489 3.3764379 -7353.5669
+67112.05519205518 3.3763196 -7354.9453
+67113.05519210547 3.3760834 -7353.1738
+67114.05519215576 3.375926 -7354.3545
+67115.05519220605 3.375808 -7354.3545
+67116.05519225635 3.375808 -7354.3545
+67117.05519230664 3.376044 -7353.7646
+67118.05519235693 3.3760834 -7354.3545
+67119.05519240722 3.3759654 -7354.3545
+67120.05519245751 3.3757291 -7354.3545
+67121.0551925078 3.3756504 -7354.3545
+67122.0551925581 3.3756111 -7353.9609
+67123.05519260839 3.3754535 -7354.5513
+67124.05519265868 3.3752961 -7353.3706
+67125.05519270897 3.3749812 -7354.1577
+67126.05519275926 3.3750205 -7353.7646
+67127.05519280955 3.3750992 -7354.1577
+67128.05519285984 3.3750205 -7353.1738
+67129.05519291013 3.3749812 -7353.3706
+67130.05519296043 3.3748629 -7354.1577
+67131.05519301072 3.3747842 -7353.9609
+67132.05519306101 3.3745875 -7354.1577
+67133.0551931113 3.3746662 -7353.5669
+67134.05519316159 3.374548 -7353.5669
+67135.05519321188 3.3744299 -7355.1421
+67136.05519326217 3.3743119 -7354.3545
+67137.05519331247 3.3741937 -7354.1577
+67138.05519336276 3.3740363 -7354.1577
+67139.05519341305 3.374115 -7353.7646
+67140.05519346334 3.3740757 -7354.3545
+67141.05519351363 3.3739181 -7354.5513
+67142.05519356392 3.3738787 -7354.1577
+67143.05519361421 3.373682 -7354.7485
+67144.0551936645 3.373682 -7354.9453
+67145.0551937148 3.3736031 -7353.7646
+67146.05519376509 3.3734851 -7354.5513
+67147.05519381538 3.3733671 -7353.9609
+67148.05519386567 3.3732882 -7354.3545
+67149.05519391596 3.3733275 -7354.1577
+67150.05519396625 3.3733671 -7354.7485
+67151.05519401655 3.3733275 -7353.7646
+67152.05519406684 3.3733275 -7354.3545
+67153.05519411713 3.3732882 -7354.7485
+67154.05519416742 3.3732095 -7354.7485
+67155.05519421771 3.3729732 -7354.9453
+67156.055194268 3.3728158 -7354.3545
+67157.0551943183 3.3726976 -7353.9609
+67158.05519436859 3.3726583 -7353.9609
+67159.05519441888 3.3726189 -7355.1421
+67160.05519446917 3.3726189 -7354.7485
+67161.05519451946 3.3724616 -7354.1577
+67162.05519456975 3.3724616 -7354.3545
+67163.05519462004 3.3724222 -7354.5513
+67164.05519467033 3.3723433 -7353.5669
+67165.05519472063 3.3723433 -7354.1577
+67166.05519477092 3.3724222 -7354.7485
+67167.05519482121 3.3724616 -7353.7646
+67168.0551948715 3.3724222 -7353.7646
+67169.05519492179 3.3721466 -7354.1577
+67170.05519497208 3.3721859 -7353.7646
+67171.05519502237 3.3721466 -7354.9453
+67172.05519507267 3.3721466 -7354.3545
+67173.05519512296 3.371989 -7354.5513
+67174.05519517325 3.3719497 -7353.9609
+67175.05519522354 3.3719103 -7354.3545
+67176.05519527383 3.3717527 -7353.3706
+67177.05519532412 3.3715167 -7354.5513
+67178.05519537441 3.3713198 -7353.5669
+67179.0551954247 3.3712018 -7353.5669
+67180.055195475 3.3710835 -7354.3545
+67181.05519552529 3.3710835 -7354.1577
+67182.05519557558 3.3710835 -7353.9609
+67183.05519562587 3.3709261 -7353.1738
+67184.05519567616 3.3708868 -7354.5513
+67185.05519572645 3.3709655 -7354.9453
+67186.05519577675 3.3706899 -7353.7646
+67187.05519582704 3.3707292 -7354.3545
+67188.05519587733 3.3705323 -7354.3545
+67189.05519592762 3.3705323 -7354.1577
+67190.05519597791 3.3704536 -7354.5513
+67191.0551960282 3.3702173 -7355.1421
+67192.0551960785 3.3702173 -7354.3545
+67193.05519612879 3.370178 -7354.3545
+67194.05519617908 3.3699417 -7354.1577
+67195.05519622937 3.3697844 -7354.5513
+67196.05519627966 3.3697057 -7353.5669
+67197.05519632995 3.369745 -7354.1577
+67198.05519638024 3.3697844 -7354.7485
+67199.05519643053 3.3697844 -7354.7485
+67200.05519648083 3.3697057 -7354.3545
+67201.05519653112 3.3697057 -7353.9609
+67202.05519658141 3.369863 -7355.3384
+67203.0551966317 3.3699024 -7353.5669
+67204.05519668199 3.3699813 -7354.3545
+67205.05519673228 3.3701386 -7354.3545
+67206.05519678257 3.3699813 -7354.7485
+67207.05519683287 3.3699024 -7354.3545
+67208.05519688316 3.3697057 -7354.5513
+67209.05519693345 3.3695481 -7354.5513
+67210.05519698374 3.3693907 -7354.1577
+67211.05519703403 3.3692331 -7354.5513
+67212.05519708432 3.3691151 -7354.5513
+67213.05519713461 3.3689969 -7353.5669
+67214.0551971849 3.3688788 -7354.7485
+67215.0551972352 3.3688002 -7354.5513
+67216.05519728549 3.3688002 -7354.5513
+67217.05519733578 3.3685639 -7354.3545
+67218.05519738607 3.3684852 -7354.1577
+67219.05519743636 3.3682883 -7353.5669
+67220.05519748665 3.3683276 -7353.7646
+67221.05519753695 3.3684065 -7353.5669
+67222.05519758724 3.3684459 -7354.5513
+67223.05519763753 3.3684065 -7353.7646
+67224.05519768782 3.3680913 -7354.3545
+67225.05519773811 3.368052 -7354.5513
+67226.0551977884 3.3679733 -7354.1577
+67227.0551978387 3.3680913 -7354.5513
+67228.05519788899 3.3681309 -7353.5669
+67229.05519793928 3.3682096 -7353.7646
+67230.05519798957 3.3681309 -7353.7646
+67231.05519803986 3.3678946 -7354.5513
+67232.05519809015 3.3678946 -7354.3545
+67233.05519814044 3.3677764 -7352.9771
+67234.05519819073 3.3676584 -7355.1421
+67235.05519824103 3.3676977 -7353.3706
+67236.05519829132 3.3676584 -7353.9609
+67237.05519834161 3.3677764 -7354.1577
+67238.0551983919 3.3677371 -7353.7646
+67239.05519844219 3.3677764 -7353.7646
+67240.05519849248 3.3675797 -7353.9609
+67241.05519854277 3.3678553 -7354.9453
+67242.05519859307 3.3678946 -7354.5513
+67243.05519864336 3.367934 -7355.1421
+67244.05519869365 3.3676977 -7354.1577
+67245.05519874394 3.3675797 -7354.3545
+67246.05519879423 3.3676977 -7354.1577
+67247.05519884452 3.3675404 -7354.7485
+67248.05519889481 3.3678553 -7353.7646
+67249.0551989451 3.368052 -7354.9453
+67250.0551989954 3.3680913 -7353.9609
+67251.05519904569 3.3679733 -7354.5513
+67252.05519909598 3.367816 -7354.3545
+67253.05519914627 3.3675797 -7353.1738
+67254.05519919656 3.3671465 -7354.1577
+67255.05519924685 3.3669105 -7354.1577
+67256.05519929715 3.3669498 -7353.5669
+67257.05519934744 3.3669891 -7354.9453
+67258.05519939773 3.3670285 -7354.3545
+67259.05519944802 3.3671465 -7353.9609
+67260.05519949831 3.3674614 -7353.7646
+67261.0551995486 3.3674614 -7354.1577
+67262.0551995989 3.367501 -7354.7485
+67263.05519964918 3.3674221 -7352.9771
+67264.05519969948 3.3674614 -7353.9609
+67265.05519974977 3.3673828 -7353.9609
+67266.05519980006 3.3673434 -7354.1577
+67267.05519985035 3.3673434 -7354.3545
+67268.05519990064 3.367501 -7353.5669
+67269.05519995093 3.3673434 -7354.3545
+67270.05520000122 3.3673041 -7354.1577
+67271.05520005152 3.3671465 -7354.3545
+67272.05520010181 3.3668315 -7354.1577
+67273.0552001521 3.3667922 -7353.7646
+67274.05520020239 3.3671465 -7354.1577
+67275.05520025268 3.3671861 -7353.5669
+67276.05520030297 3.3671072 -7354.3545
+67277.05520035326 3.3669891 -7353.9609
+67278.05520040356 3.3669891 -7354.1577
+67279.05520045385 3.3671072 -7354.5513
+67280.05520050414 3.3670678 -7354.3545
+67281.05520055443 3.3667529 -7353.5669
+67282.05520060472 3.3666742 -7354.3545
+67283.05520065501 3.3667529 -7354.7485
+67284.0552007053 3.3667135 -7354.1577
+67285.0552007556 3.3664379 -7354.3545
+67286.05520080589 3.366123 -7355.1421
+67287.05520085618 3.3660443 -7354.3545
+67288.05520090647 3.3657687 -7354.7485
+67289.05520095676 3.3656507 -7353.9609
+67290.05520100705 3.3655324 -7353.3706
+67291.05520105734 3.3654144 -7354.5513
+67292.05520110764 3.3654144 -7353.3706
+67293.05520115793 3.3654144 -7353.9609
+67294.05520120822 3.3656111 -7354.5513
+67295.05520125851 3.3656111 -7354.1577
+67296.0552013088 3.36569 -7354.7485
+67297.0552013591 3.3657293 -7354.3545
+67298.05520140938 3.3657293 -7354.7485
+67299.05520145968 3.3655324 -7353.9609
+67300.05520150997 3.3652568 -7353.7646
+67301.05520156026 3.3652174 -7355.3384
+67302.05520161055 3.3651388 -7354.3545
+67303.05520166084 3.3648238 -7354.9453
+67304.05520171113 3.3647056 -7353.7646
+67305.05520176142 3.3646269 -7354.5513
+67306.05520181172 3.3643906 -7354.7485
+67307.05520186201 3.3641546 -7354.5513
+67308.0552019123 3.3642333 -7353.7646
+67309.05520196259 3.3641939 -7354.1577
+67310.05520201288 3.3640757 -7354.1577
+67311.05520206317 3.363997 -7354.3545
+67312.05520211346 3.3639183 -7353.7646
+67313.05520216376 3.363682 -7353.7646
+67314.05520221405 3.3634458 -7354.5513
+67315.05520226434 3.3632491 -7354.3545
+67316.05520231463 3.3630128 -7354.5513
+67317.05520236492 3.3628948 -7354.7485
+67318.05520241521 3.3628948 -7354.3545
+67319.0552024655 3.3630915 -7354.3545
+67320.0552025158 3.3631308 -7354.3545
+67321.05520256609 3.3632097 -7354.5513
+67322.05520261638 3.3630128 -7354.5513
+67323.05520266667 3.3626978 -7353.7646
+67324.05520271696 3.3625009 -7354.3545
+67325.05520276725 3.3625798 -7354.1577
+67326.05520281754 3.3623435 -7353.7646
+67327.05520286784 3.362186 -7354.3545
+67328.05520291813 3.3622649 -7354.7485
+67329.05520296842 3.3623435 -7354.9453
+67330.05520301871 3.3625402 -7354.5513
+67331.055203069 3.3624222 -7354.1577
+67332.0552031193 3.3622649 -7354.1577
+67333.05520316958 3.3621073 -7353.7646
+67334.05520321988 3.361871 -7354.5513
+67335.05520327017 3.3617923 -7353.1738
+67336.05520332046 3.3617136 -7354.3545
+67337.05520337075 3.3615954 -7354.3545
+67338.05520342104 3.3613987 -7354.1577
+67339.05520347133 3.3614774 -7354.5513
+67340.05520352162 3.3611624 -7354.1577
+67341.05520357192 3.3611231 -7354.5513
+67342.0552036222 3.3610444 -7354.1577
+67343.0552036725 3.3610444 -7354.9453
+67344.05520372279 3.3609655 -7354.1577
+67345.05520377308 3.3606899 -7353.3706
+67346.05520382337 3.3606899 -7355.1421
+67347.05520387366 3.3603749 -7353.9609
+67348.05520392396 3.3603749 -7354.3545
+67349.05520397425 3.3604145 -7353.9609
+67350.05520402454 3.3604145 -7353.9609
+67351.05520407483 3.3604145 -7354.1577
+67352.05520412512 3.3602962 -7354.3545
+67353.05520417541 3.3603356 -7354.9453
+67354.0552042257 3.36006 -7353.5669
+67355.055204276 3.3598239 -7353.5669
+67356.05520432629 3.359509 -7354.5513
+67357.05520437658 3.3592334 -7353.7646
+67358.05520442687 3.3590758 -7354.3545
+67359.05520447716 3.3588002 -7354.1577
+67360.05520452745 3.3586822 -7353.7646
+67361.05520457774 3.3583279 -7354.3545
+67362.05520462804 3.3581309 -7354.1577
+67363.05520467833 3.3582096 -7354.5513
+67364.05520472862 3.3582885 -7354.3545
+67365.05520477891 3.3583279 -7354.3545
+67366.0552048292 3.3584065 -7354.5513
+67367.05520487949 3.3584459 -7353.5669
+67368.05520492978 3.3584065 -7353.7646
+67369.05520498008 3.3584852 -7353.7646
+67370.05520503037 3.3582885 -7354.5513
+67371.05520508066 3.3582096 -7354.3545
+67372.05520513095 3.3580916 -7355.1421
+67373.05520518124 3.3581309 -7353.9609
+67374.05520523153 3.3581703 -7354.7485
+67375.05520528182 3.3582885 -7354.7485
+67376.05520533212 3.3583279 -7354.3545
+67377.0552053824 3.3581309 -7354.1577
+67378.0552054327 3.3580523 -7354.1577
+67379.05520548299 3.3580129 -7354.9453
+67380.05520553328 3.3580523 -7354.1577
+67381.05520558357 3.3578947 -7353.5669
+67382.05520563386 3.357698 -7353.9609
+67383.05520568416 3.357698 -7354.1577
+67384.05520573445 3.3577766 -7354.1577
+67385.05520578474 3.357816 -7354.5513
+67386.05520583503 3.357698 -7354.1577
+67387.05520588532 3.3577766 -7354.5513
+67388.05520593561 3.357698 -7353.7646
+67389.0552059859 3.357816 -7353.3706
+67390.0552060362 3.3581309 -7354.3545
+67391.05520608649 3.3580916 -7354.1577
+67392.05520613678 3.3582492 -7354.1577
+67393.05520618707 3.3580523 -7354.1577
+67394.05520623736 3.3579736 -7353.9609
+67395.05520628765 3.357698 -7353.7646
+67396.05520633794 3.3575797 -7353.9609
+67397.05520638824 3.3576193 -7354.1577
+67398.05520643853 3.3576193 -7354.7485
+67399.05520648882 3.3575404 -7353.9609
+67400.05520653911 3.3575404 -7354.1577
+67401.0552065894 3.357501 -7353.5669
+67402.05520663969 3.357501 -7353.9609
+67403.05520668998 3.3573437 -7354.5513
+67404.05520674028 3.3571467 -7353.3706
+67405.05520679057 3.3570287 -7354.3545
+67406.05520684086 3.3568318 -7353.9609
+67407.05520689115 3.3567138 -7354.3545
+67408.05520694144 3.3567531 -7354.9453
+67409.05520699173 3.3566349 -7353.9609
+67410.05520704202 3.3565955 -7353.9609
+67411.05520709231 3.3562412 -7354.9453
+67412.0552071426 3.3559656 -7353.7646
+67413.0552071929 3.3558869 -7354.5513
+67414.05520724319 3.35569 -7353.7646
+67415.05520729348 3.3554537 -7353.9609
+67416.05520734377 3.3551388 -7354.5513
+67417.05520739406 3.3547451 -7353.9609
+67418.05520744435 3.3545878 -7354.3545
+67419.05520749465 3.3543515 -7353.9609
+67420.05520754494 3.3541152 -7354.3545
+67421.05520759523 3.3541152 -7354.3545
+67422.05520764552 3.3538396 -7353.5669
+67423.05520769581 3.3536429 -7353.9609
+67424.0552077461 3.3535247 -7353.9609
+67425.0552077964 3.3534853 -7354.1577
+67426.05520784669 3.3532491 -7353.7646
+67427.05520789698 3.3529341 -7353.7646
+67428.05520794727 3.3529735 -7353.5669
+67429.05520799756 3.3526585 -7354.3545
+67430.05520804785 3.3525405 -7354.3545
+67431.05520809814 3.3524225 -7354.1577
+67432.05520814843 3.3523042 -7354.9453
+67433.05520819873 3.3520286 -7353.5669
+67434.05520824902 3.3518713 -7355.7324
+67435.05520829931 3.351753 -7354.7485
+67436.0552083496 3.3518713 -7354.3545
+67437.05520839989 3.3517926 -7353.9609
+67438.05520845018 3.3517137 -7354.1577
+67439.05520850047 3.3517926 -7355.1421
+67440.05520855077 3.351635 -7354.1577
+67441.05520860106 3.3517926 -7354.3545
+67442.05520865135 3.3515563 -7354.7485
+67443.05520870164 3.351517 -7354.1577
+67444.05520875193 3.351438 -7354.3545
+67445.05520880222 3.3514776 -7354.3545
+67446.05520885251 3.3515956 -7354.5513
+67447.0552089028 3.351753 -7354.5513
+67448.0552089531 3.3515563 -7354.5513
+67449.05520900339 3.3514776 -7354.3545
+67450.05520905368 3.3513987 -7354.9453
+67451.05520910397 3.351517 -7354.9453
+67452.05520915426 3.3517926 -7354.3545
+67453.05520920455 3.3516743 -7354.5513
+67454.05520925485 3.3516743 -7354.7485
+67455.05520930514 3.351635 -7354.3545
+67456.05520935543 3.3515563 -7355.3384
+67457.05520940572 3.351517 -7353.7646
+67458.05520945601 3.351438 -7354.3545
+67459.0552095063 3.3513987 -7353.5669
+67460.0552095566 3.3513987 -7354.5513
+67461.05520960689 3.3513594 -7353.5669
+67462.05520965718 3.3512414 -7354.3545
+67463.05520970747 3.3510838 -7353.3706
+67464.05520975776 3.3510838 -7353.5669
+67465.05520980805 3.3510838 -7353.7646
+67466.05520985834 3.3510051 -7353.9609
+67467.05520990863 3.3509264 -7354.5513
+67468.05520995893 3.3506901 -7354.5513
+67469.05521000922 3.3504932 -7353.5669
+67470.05521005951 3.3503752 -7355.5352
+67471.0552101098 3.3500996 -7354.9453
+67472.05521016009 3.3497846 -7354.1577
+67473.05521021038 3.3496666 -7354.1577
+67474.05521026067 3.3494303 -7353.9609
+67475.05521031097 3.3493123 -7354.3545
+67476.05521036126 3.3492727 -7353.9609
+67477.05521041155 3.3493123 -7353.7646
+67478.05521046184 3.3493516 -7354.3545
+67479.05521051213 3.3493123 -7355.1421
+67480.05521056242 3.349194 -7354.3545
+67481.05521061271 3.349076 -7354.9453
+67482.055210663 3.3491154 -7353.9609
+67483.0552107133 3.3489974 -7353.9609
+67484.05521076359 3.3488791 -7354.9453
+67485.05521081388 3.3486824 -7355.1421
+67486.05521086417 3.3484855 -7354.1577
+67487.05521091446 3.3484068 -7353.3706
+67488.05521096475 3.3482099 -7353.9609
+67489.05521101505 3.3483279 -7354.7485
+67490.05521106534 3.3484855 -7353.3706
+67491.05521111563 3.3486428 -7354.3545
+67492.05521116592 3.3485641 -7353.5669
+67493.05521121621 3.3482885 -7354.1577
+67494.0552112665 3.3481705 -7354.1577
+67495.0552113168 3.3479342 -7353.9609
+67496.05521136709 3.347698 -7353.7646
+67497.05521141738 3.3474619 -7354.5513
+67498.05521146767 3.347383 -7354.1577
+67499.05521151796 3.347147 -7354.3545
+67500.05521156825 3.3467925 -7354.5513
+67501.05521161854 3.3465168 -7354.3545
+67502.05521166883 3.3461626 -7353.7646
+67503.05521171913 3.3457296 -7354.3545
+67504.05521176942 3.3454933 -7354.3545
+67505.05521181971 3.3452177 -7354.3545
+67506.05521187 3.345021 -7353.5669
+67507.05521192029 3.3445091 -7353.9609
+67508.05521197058 3.3443515 -7354.7485
+67509.05521202087 3.3440762 -7354.3545
+67510.05521207117 3.3439186 -7354.3545
+67511.05521212146 3.3437216 -7354.1577
+67512.05521217175 3.3433673 -7353.1738
+67513.05521222204 3.343013 -7353.9609
+67514.05521227233 3.3428557 -7353.9609
+67515.05521232262 3.3424618 -7354.7485
+67516.05521237291 3.3419502 -7354.1577
+67517.0552124232 3.3416746 -7353.9609
+67518.0552124735 3.341202 -7354.1577
+67519.05521252379 3.3408477 -7354.1577
+67520.05521257408 3.3405328 -7354.5513
+67521.05521262437 3.3402572 -7353.7646
+67522.05521267466 3.3400209 -7354.3545
+67523.05521272495 3.3399816 -7354.3545
+67524.05521277525 3.3400998 -7354.5513
+67525.05521282554 3.3401785 -7353.9609
+67526.05521287583 3.3401392 -7354.3545
+67527.05521292612 3.3399816 -7354.1577
+67528.05521297641 3.3399816 -7354.7485
+67529.0552130267 3.3397059 -7354.7485
+67530.055213077 3.3396666 -7354.1577
+67531.05521312729 3.3395879 -7354.3545
+67532.05521317758 3.339391 -7353.5669
+67533.05521322787 3.3394699 -7354.3545
+67534.05521327816 3.339155 -7354.1577
+67535.05521332845 3.3389974 -7354.5513
+67536.05521337874 3.33884 -7354.1577
+67537.05521342903 3.3385644 -7353.9609
+67538.05521347933 3.3386037 -7354.1577
+67539.05521352962 3.3385644 -7354.3545
+67540.05521357991 3.3386037 -7353.3706
+67541.0552136302 3.3383675 -7354.5513
+67542.05521368049 3.3382101 -7354.7485
+67543.05521373078 3.3378556 -7354.7485
+67544.05521378107 3.3376589 -7353.7646
+67545.05521383137 3.3375013 -7354.7485
+67546.05521388166 3.3376195 -7354.3545
+67547.05521393195 3.3378162 -7354.1577
+67548.05521398224 3.3377376 -7354.7485
+67549.05521403253 3.3378556 -7354.5513
+67550.05521408282 3.3379345 -7354.3545
+67551.05521413311 3.3380919 -7353.7646
+67552.0552141834 3.3381312 -7353.9609
+67553.0552142337 3.3378162 -7354.5513
+67554.05521428399 3.3376982 -7354.3545
+67555.05521433428 3.3373833 -7354.7485
+67556.05521438457 3.3372257 -7354.3545
+67557.05521443486 3.3370683 -7354.3545
+67558.05521448515 3.3367927 -7354.1577
+67559.05521453544 3.3363597 -7354.7485
+67560.05521458574 3.3360052 -7353.5669
+67561.05521463603 3.3360052 -7354.3545
+67562.05521468632 3.3359659 -7354.1577
+67563.05521473661 3.3357296 -7354.3545
+67564.0552147869 3.3357692 -7354.5513
+67565.0552148372 3.3356903 -7353.7646
+67566.05521488748 3.3356509 -7353.9609
+67567.05521493778 3.3355329 -7354.3545
+67568.05521498807 3.3352573 -7354.3545
+67569.05521503836 3.3347454 -7353.5669
+67570.05521508865 3.3345881 -7354.3545
+67571.05521513894 3.3345094 -7353.7646
+67572.05521518923 3.3343911 -7354.5513
+67573.05521523952 3.3341155 -7354.3545
+67574.05521528982 3.3339188 -7354.9453
+67575.05521534011 3.3339188 -7353.7646
+67576.0552153904 3.3339975 -7353.9609
+67577.05521544069 3.3338792 -7354.3545
+67578.05521549098 3.3336825 -7354.5513
+67579.05521554127 3.3337612 -7354.1577
+67580.05521559156 3.3336825 -7354.5513
+67581.05521564186 3.3333676 -7354.9453
+67582.05521569215 3.3333282 -7354.9453
+67583.05521574244 3.3332493 -7354.5513
+67584.05521579273 3.3331313 -7353.5669
+67585.05521584302 3.3332493 -7354.5513
+67586.05521589331 3.3334463 -7354.1577
+67587.0552159436 3.3336039 -7354.1577
+67588.0552159939 3.3334856 -7354.5513
+67589.05521604419 3.3335643 -7353.9609
+67590.05521609448 3.3335643 -7354.1577
+67591.05521614477 3.3336825 -7353.9609
+67592.05521619506 3.3336432 -7353.3706
+67593.05521624535 3.3335643 -7353.7646
+67594.05521629564 3.3335643 -7354.1577
+67595.05521634594 3.3334856 -7354.1577
+67596.05521639623 3.3336039 -7354.3545
+67597.05521644652 3.3333282 -7354.5513
+67598.05521649681 3.333092 -7354.5513
+67599.0552165471 3.3326983 -7354.9453
+67600.0552165974 3.3324621 -7354.7485
+67601.05521664768 3.3323045 -7353.5669
+67602.05521669798 3.3322258 -7354.1577
+67603.05521674827 3.3321078 -7354.5513
+67604.05521679856 3.3321865 -7353.9609
+67605.05521684885 3.3320684 -7354.5513
+67606.05521689914 3.3319108 -7354.3545
+67607.05521694943 3.3315959 -7353.9609
+67608.05521699972 3.331399 -7353.7646
+67609.05521705002 3.3313203 -7354.3545
+67610.05521710031 3.3312023 -7354.3545
+67611.0552171506 3.3308873 -7354.3545
+67612.05521720089 3.3307297 -7354.1577
+67613.05521725118 3.3306904 -7353.9609
+67614.05521730147 3.3303361 -7354.3545
+67615.05521735176 3.3302968 -7354.3545
+67616.05521740206 3.3297849 -7353.9609
+67617.05521745235 3.3293912 -7354.1577
+67618.05521750264 3.3291156 -7354.3545
+67619.05521755293 3.329037 -7353.7646
+67620.05521760322 3.3290763 -7353.9609
+67621.05521765351 3.3291156 -7354.5513
+67622.0552177038 3.3289583 -7353.9609
+67623.0552177541 3.3289976 -7354.9453
+67624.05521780439 3.3291156 -7354.3545
+67625.05521785468 3.32884 -7353.3706
+67626.05521790497 3.3286827 -7354.1577
+67627.05521795526 3.3286431 -7354.5513
+67628.05521800555 3.3285644 -7353.5669
+67629.05521805584 3.3288007 -7354.3545
+67630.05521810614 3.32884 -7354.5513
+67631.05521815643 3.3286431 -7354.1577
+67632.05521820672 3.3286431 -7354.5513
+67633.05521825701 3.3285644 -7354.5513
+67634.0552183073 3.328407 -7354.9453
+67635.0552183576 3.328407 -7356.126
+67636.05521840788 3.3281708 -7354.5513
+67637.05521845818 3.3279345 -7354.9453
+67638.05521850847 3.3278558 -7353.9609
+67639.05521855876 3.3275409 -7354.3545
+67640.05521860905 3.3272653 -7354.3545
+67641.05521865934 3.3273439 -7353.7646
+67642.05521870963 3.327029 -7354.3545
+67643.05521875992 3.3265567 -7353.9609
+67644.05521881022 3.3263991 -7354.5513
+67645.0552188605 3.3263991 -7355.1421
+67646.0552189108 3.3262417 -7353.9609
+67647.05521896109 3.3261235 -7354.1577
+67648.05521901138 3.3259661 -7354.9453
+67649.05521906167 3.3260448 -7354.3545
+67650.05521911196 3.3257298 -7354.5513
+67651.05521916226 3.3252969 -7353.7646
+67652.05521921255 3.3249819 -7354.7485
+67653.05521926284 3.324785 -7354.5513
+67654.05521931313 3.3247063 -7354.3545
+67655.05521936342 3.3245487 -7354.3545
+67656.05521941371 3.3245881 -7354.3545
+67657.055219464 3.324352 -7353.9609
+67658.0552195143 3.3242731 -7354.1577
+67659.05521956459 3.3243914 -7354.9453
+67660.05521961488 3.324352 -7354.3545
+67661.05521966517 3.3243914 -7354.5513
+67662.05521971546 3.3245094 -7353.7646
+67663.05521976575 3.324667 -7353.9609
+67664.05521981604 3.324667 -7354.7485
+67665.05521986634 3.3249819 -7354.1577
+67666.05521991663 3.3249819 -7354.5513
+67667.05521996692 3.3250606 -7354.9453
+67668.05522001721 3.3249819 -7353.7646
+67669.0552200675 3.3247457 -7354.5513
+67670.05522011779 3.3245881 -7354.5513
+67671.05522016808 3.3243914 -7354.3545
+67672.05522021838 3.3243124 -7354.3545
+67673.05522026867 3.3238795 -7354.1577
+67674.05522031896 3.3234859 -7353.9609
+67675.05522036925 3.3232102 -7354.3545
+67676.05522041954 3.3230133 -7354.5513
+67677.05522046983 3.322974 -7353.9609
+67678.05522052012 3.3228559 -7354.5513
+67679.05522057042 3.3226984 -7354.5513
+67680.0552206207 3.3225803 -7353.5669
+67681.055220671 3.322777 -7352.9771
+67682.05522072129 3.3228559 -7354.3545
+67683.05522077158 3.3228953 -7353.3706
+67684.05522082187 3.3226197 -7354.3545
+67685.05522087216 3.3227377 -7354.3545
+67686.05522092246 3.3230526 -7354.7485
+67687.05522097275 3.3228559 -7353.5669
+67688.05522102304 3.3229346 -7354.1577
+67688.15922102821 3.3230133 -7353.9609
+67688.1612210283 3.322974 -7353.7646
+67688.20722103072 3.4557281 0.0
+67689.20722108101 3.4576178 0.0
+67690.2072211313 3.4587202 0.0
+67691.2072211816 3.4595468 0.0
+67692.20722123189 3.460216 0.0
+67693.20722128218 3.4609642 0.0
+67694.20722133247 3.4615548 0.0
+67695.20722138276 3.4623027 0.0
+67696.20722143305 3.4626963 0.0
+67697.20722148335 3.4632082 0.0
+67698.20722153364 3.4637988 0.0
+67698.22922153468 3.4638774 0.0
+68671.17327046534 3.4627359 -974.52106
+68675.5612706861 3.4701374 -1072.7329
+68679.9192709052 3.4609249 -1118.001
+68684.26127112354 3.4593501 -887.72461
+68688.65327134449 3.4676571 -505.89902
+68693.00127156312 3.4725387 -1161.1039
+68697.3672717826 3.4717121 -1207.5527
+68701.75727200345 3.4714365 -1224.2823
+68706.13527222374 3.4619091 -1197.3182
+68710.49327244284 3.472342 -937.91309
+68714.84527266165 3.4732082 -667.8797
+68719.24127288279 3.454114 -1136.6986
+68723.62327310327 3.4733262 -449.21567
+68727.90927331871 3.4727356 -358.28604
+68732.2752735382 3.4551375 -1256.954
+68736.63727375772 3.4631295 -656.26752
+68741.0032739772 3.4539957 -1199.2865
+68744.27927414188 3.4712396 -392.33545
+68747.54327430623 3.4546256 -1200.2705
+68750.8252744712 3.4547832 -1178.6207
+68754.10527463607 3.4617121 -824.15271
+68757.37927480089 3.4545863 -1213.0636
+68760.66927496623 3.4554131 -1145.3585
+68763.97127513238 3.4568698 -1116.6232
+68767.31127530034 3.4567909 -1080.6057
+68770.6992754708 3.472775 -363.99374
+68774.0612756398 3.4560823 -1118.1978
+68777.47327581141 3.4697828 -493.89319
+68780.95527598658 3.4692318 -543.09753
+68784.55527616758 3.4549799 -1173.5034
+68788.12127634697 3.4607279 -921.57727
+68791.7992765319 3.4552948 -1156.7739
+68795.4052767132 3.4565942 -1102.8461
+68799.28727690852 3.4706097 -460.43423
+68803.35927711311 3.4704127 -475.19556
+68807.46927731996 3.4695468 -511.0163
+68812.6092775783 3.4721451 -392.9259
+68817.48327782354 3.4673026 -600.56818
+68823.59327813075 3.4542713 -1189.0519
+68828.76927839103 3.4728143 -357.30197
+68835.11727871024 3.4562004 -1087.691
+68843.07527911058 3.4616334 -846.78668
+68852.99127960927 3.4730113 -337.81705
+68865.44928023592 3.4657278 -664.33704
+68881.05128102051 3.4550982 -1124.496
+68900.589282003 3.4567516 -1035.9281
+68925.1592832387 3.466594 -595.45093
+68955.96128478786 3.4729719 -310.45944
+68994.6792867349 3.4712789 -375.8028
+69043.36528918357 3.4651768 -626.74487
+69104.6092922634 3.4577358 -925.71039
+69181.65129613806 3.4544289 -1034.5504
+69278.53330101026 3.4546256 -1000.3042
+69400.43530714093 3.4659641 -472.6369
+69553.80931485444 3.4697435 -278.96866
+69746.8413245622 3.4689562 -272.86731
+69989.67133677448 3.4570272 -698.97687
+70295.29135214468 3.4652555 -289.79361
+70680.04737149458 3.472657 38.891285
+71165.25139589608 3.4605706 -337.81705
+71987.09943722794 3.4581296 -384.4079
+71987.15943723102 3.4680507 0.0
+71988.15943728131 3.4680901 0.0
+71989.1594373316 3.4680114 0.0
+71990.1594373819 3.4682081 0.0
+71991.15943743219 3.4681294 0.0
+71992.15943748248 3.4681294 0.0
+71993.15943753277 3.4682081 0.0
+71994.15943758306 3.4682081 0.0
+71995.15943763335 3.4683263 0.0
+71996.15943768364 3.468287 0.0
+71997.15943773394 3.4682081 0.0
+71998.15943778423 3.468287 0.0
+71999.15943783452 3.4682474 0.0
+72000.15943788481 3.4683263 0.0
+72001.1594379351 3.4683263 0.0
+72002.15943798539 3.4682474 0.0
+72003.15943803568 3.4682081 0.0
+72004.15943808598 3.468287 0.0
+72005.15943813627 3.468405 0.0
+72006.15943818656 3.4683263 0.0
+72007.15943823685 3.4683263 0.0
+72008.15943828714 3.4683263 0.0
+72009.15943833743 3.4683263 0.0
+72010.15943838772 3.468405 0.0
+72011.15943843802 3.4683263 0.0
+72012.1594384883 3.4683657 0.0
+72013.1594385386 3.468287 0.0
+72014.15943858889 3.4684837 0.0
+72015.15943863918 3.4684837 0.0
+72016.15943868947 3.4683657 0.0
+72017.15943873976 3.4683657 0.0
+72018.15943879005 3.468405 0.0
+72019.15943884035 3.4684837 0.0
+72020.15943889064 3.468405 0.0
+72021.15943894093 3.468405 0.0
+72022.15943899122 3.468405 0.0
+72023.15943904151 3.468405 0.0
+72024.1594390918 3.4684443 0.0
+72025.1594391421 3.4684443 0.0
+72026.15943919239 3.468405 0.0
+72027.15943924268 3.4683263 0.0
+72028.15943929297 3.4684837 0.0
+72029.15943934326 3.468523 0.0
+72030.15943939355 3.4684837 0.0
+72031.15943944384 3.4684837 0.0
+72032.15943949413 3.468523 0.0
+72033.15943954443 3.4685624 0.0
+72034.15943959472 3.468523 0.0
+72035.15943964501 3.4684837 0.0
+72036.1594396953 3.468523 0.0
+72037.15943974559 3.468405 0.0
+72038.15943979588 3.4684443 0.0
+72039.15943984617 3.468405 0.0
+72040.15943989647 3.4684837 0.0
+72041.15943994676 3.468523 0.0
+72042.15943999705 3.4684443 0.0
+72043.15944004734 3.4686413 0.0
+72044.15944009763 3.4685624 0.0
+72045.15944014792 3.4686019 0.0
+72046.15944019821 3.468523 0.0
+72047.1594402485 3.468405 0.0
+72048.1594402988 3.468523 0.0
+72049.15944034909 3.4684837 0.0
+72050.15944039938 3.4684837 0.0
+72051.15944044967 3.468523 0.0
+72052.15944049996 3.468523 0.0
+72053.15944055025 3.4684837 0.0
+72054.15944060055 3.4685624 0.0
+72055.15944065084 3.4686019 0.0
+72056.15944070113 3.4684837 0.0
+72057.15944075142 3.4685624 0.0
+72058.15944080171 3.4686019 0.0
+72059.159440852 3.4685624 0.0
+72060.1594409023 3.468523 0.0
+72061.15944095259 3.468523 0.0
+72062.15944100288 3.4684837 0.0
+72063.15944105317 3.4685624 0.0
+72064.15944110346 3.468523 0.0
+72065.15944115375 3.4686019 0.0
+72066.15944120404 3.468523 0.0
+72067.15944125433 3.4685624 0.0
+72068.15944130463 3.4685624 0.0
+72069.15944135492 3.4686019 0.0
+72070.15944140521 3.46872 0.0
+72071.1594414555 3.4686019 0.0
+72072.15944150579 3.4685624 0.0
+72073.15944155608 3.4686413 0.0
+72074.15944160637 3.4685624 0.0
+72075.15944165667 3.4686413 0.0
+72076.15944170696 3.4686019 0.0
+72077.15944175725 3.4686019 0.0
+72078.15944180754 3.4686413 0.0
+72079.15944185783 3.4686019 0.0
+72080.15944190812 3.4685624 0.0
+72081.15944195841 3.4685624 0.0
+72082.1594420087 3.4686019 0.0
+72083.159442059 3.4685624 0.0
+72084.15944210929 3.4686806 0.0
+72085.15944215958 3.4686413 0.0
+72086.15944220987 3.4686413 0.0
+72087.15944226016 3.4686413 0.0
+72088.15944231045 3.4686413 0.0
+72089.15944236075 3.46872 0.0
+72090.15944241104 3.4686413 0.0
+72091.15944246133 3.4686413 0.0
+72092.15944251162 3.4686019 0.0
+72093.15944256191 3.4686413 0.0
+72094.1594426122 3.46872 0.0
+72095.1594426625 3.4686019 0.0
+72096.15944271279 3.46872 0.0
+72097.15944276308 3.4686806 0.0
+72098.15944281337 3.4687593 0.0
+72099.15944286366 3.4686413 0.0
+72100.15944291395 3.46872 0.0
+72101.15944296424 3.46872 0.0
+72102.15944301453 3.4687593 0.0
+72103.15944306483 3.4686806 0.0
+72104.15944311512 3.4686806 0.0
+72105.15944316541 3.4686413 0.0
+72106.1594432157 3.46872 0.0
+72107.15944326599 3.4686019 0.0
+72108.15944331628 3.4685624 0.0
+72109.15944336657 3.4686019 0.0
+72110.15944341687 3.4687593 0.0
+72111.15944346716 3.46872 0.0
+72112.15944351745 3.46872 0.0
+72113.15944356774 3.46872 0.0
+72114.15944361803 3.4686806 0.0
+72115.15944366832 3.4686806 0.0
+72116.15944371861 3.46872 0.0
+72117.1594437689 3.4687593 0.0
+72118.1594438192 3.4687593 0.0
+72119.15944386949 3.4687593 0.0
+72120.15944391978 3.4687986 0.0
+72121.15944397007 3.4687593 0.0
+72122.15944402036 3.4687593 0.0
+72123.15944407065 3.46872 0.0
+72124.15944412095 3.4686806 0.0
+72125.15944417124 3.46872 0.0
+72126.15944422153 3.4687986 0.0
+72127.15944427182 3.4686806 0.0
+72128.15944432211 3.46872 0.0
+72129.1594443724 3.4687593 0.0
+72130.1594444227 3.4686806 0.0
+72131.15944447299 3.4686806 0.0
+72132.15944452328 3.4687986 0.0
+72133.15944457357 3.4687593 0.0
+72134.15944462386 3.46872 0.0
+72135.15944467415 3.46872 0.0
+72136.15944472444 3.4686413 0.0
+72137.15944477473 3.468838 0.0
+72138.15944482503 3.46872 0.0
+72139.15944487532 3.46872 0.0
+72140.15944492561 3.46872 0.0
+72141.1594449759 3.4687593 0.0
+72142.15944502619 3.46872 0.0
+72143.15944507648 3.4687986 0.0
+72144.15944512677 3.4686806 0.0
+72145.15944517707 3.4687986 0.0
+72146.15944522736 3.4687593 0.0
+72147.15944527765 3.4688776 0.0
+72148.15944532794 3.46872 0.0
+72149.15944537823 3.468838 0.0
+72150.15944542852 3.46872 0.0
+72151.15944547881 3.46872 0.0
+72152.1594455291 3.4687986 0.0
+72153.1594455794 3.4687593 0.0
+72154.15944562969 3.46872 0.0
+72155.15944567998 3.46872 0.0
+72156.15944573027 3.46872 0.0
+72157.15944578056 3.4687593 0.0
+72158.15944583085 3.4687986 0.0
+72159.15944588115 3.4688776 0.0
+72160.15944593144 3.468838 0.0
+72161.15944598173 3.46872 0.0
+72162.15944603202 3.46872 0.0
+72163.15944608231 3.4687986 0.0
+72164.1594461326 3.4687593 0.0
+72165.1594461829 3.46872 0.0
+72166.15944623319 3.4687986 0.0
+72167.15944628348 3.468838 0.0
+72168.15944633377 3.4687593 0.0
+72169.15944638406 3.46872 0.0
+72170.15944643435 3.468838 0.0
+72171.15944648464 3.4687593 0.0
+72172.15944653493 3.46872 0.0
+72173.15944658522 3.4688776 0.0
+72174.15944663552 3.4686413 0.0
+72175.15944668581 3.4687593 0.0
+72176.1594467361 3.468838 0.0
+72177.15944678639 3.468838 0.0
+72178.15944683668 3.4687593 0.0
+72179.15944688697 3.4689169 0.0
+72180.15944693726 3.4687986 0.0
+72181.15944698756 3.4689169 0.0
+72182.15944703785 3.4687593 0.0
+72183.15944708814 3.468838 0.0
+72184.15944713843 3.4687986 0.0
+72185.15944718872 3.4688776 0.0
+72186.15944723901 3.4687986 0.0
+72187.1594472893 3.4687986 0.0
+72188.1594473396 3.468838 0.0
+72189.15944738989 3.468838 0.0
+72190.15944744018 3.4687986 0.0
+72191.15944749047 3.468838 0.0
+72192.15944754076 3.4689169 0.0
+72193.15944759105 3.4689169 0.0
+72194.15944764134 3.4689562 0.0
+72195.15944769164 3.4687986 0.0
+72196.15944774193 3.468838 0.0
+72197.15944779222 3.468838 0.0
+72198.15944784251 3.4687593 0.0
+72199.1594478928 3.468838 0.0
+72200.1594479431 3.4688776 0.0
+72201.15944799338 3.468838 0.0
+72202.15944804368 3.4687986 0.0
+72203.15944809397 3.468838 0.0
+72204.15944814426 3.4688776 0.0
+72205.15944819455 3.4688776 0.0
+72206.15944824484 3.468838 0.0
+72207.15944829513 3.4688776 0.0
+72208.15944834542 3.4687986 0.0
+72209.15944839572 3.468838 0.0
+72210.15944844601 3.4688776 0.0
+72211.1594484963 3.4688776 0.0
+72212.15944854659 3.4687593 0.0
+72213.15944859688 3.468838 0.0
+72214.15944864717 3.468838 0.0
+72215.15944869746 3.4687986 0.0
+72216.15944874776 3.468838 0.0
+72217.15944879805 3.4689169 0.0
+72218.15944884834 3.468838 0.0
+72219.15944889863 3.4687986 0.0
+72220.15944894892 3.4689169 0.0
+72221.15944899921 3.4689562 0.0
+72222.1594490495 3.4689169 0.0
+72223.1594490998 3.4688776 0.0
+72224.15944915009 3.4688776 0.0
+72225.15944920038 3.4689169 0.0
+72226.15944925067 3.4687986 0.0
+72227.15944930096 3.4688776 0.0
+72228.15944935125 3.4688776 0.0
+72229.15944940154 3.4688776 0.0
+72230.15944945184 3.4689169 0.0
+72231.15944950213 3.468838 0.0
+72232.15944955242 3.4689562 0.0
+72233.15944960271 3.4689562 0.0
+72234.159449653 3.4687593 0.0
+72235.1594497033 3.4687593 0.0
+72236.15944975358 3.4689169 0.0
+72237.15944980388 3.4687986 0.0
+72238.15944985417 3.4689562 0.0
+72239.15944990446 3.4688776 0.0
+72240.15944995475 3.468838 0.0
+72241.15945000504 3.4688776 0.0
+72242.15945005533 3.4688776 0.0
+72243.15945010562 3.4689169 0.0
+72244.15945015592 3.4689169 0.0
+72245.1594502062 3.4689169 0.0
+72246.1594502565 3.4688776 0.0
+72247.15945030679 3.4689169 0.0
+72248.15945035708 3.4689169 0.0
+72249.15945040737 3.4689169 0.0
+72250.15945045766 3.4688776 0.0
+72251.15945050796 3.4689562 0.0
+72252.15945055825 3.4688776 0.0
+72253.15945060854 3.4687986 0.0
+72254.15945065883 3.4687986 0.0
+72255.15945070912 3.4689562 0.0
+72256.15945075941 3.4689956 0.0
+72257.1594508097 3.4688776 0.0
+72258.15945086 3.468838 0.0
+72259.15945091029 3.4689169 0.0
+72260.15945096058 3.4690349 0.0
+72261.15945101087 3.4688776 0.0
+72262.15945106116 3.4689562 0.0
+72263.15945111145 3.4689169 0.0
+72264.15945116174 3.4689562 0.0
+72265.15945121204 3.4688776 0.0
+72266.15945126233 3.4689562 0.0
+72267.15945131262 3.4688776 0.0
+72268.15945136291 3.4688776 0.0
+72269.1594514132 3.4689956 0.0
+72270.15945146349 3.4689562 0.0
+72271.15945151378 3.4689169 0.0
+72272.15945156408 3.4689562 0.0
+72273.15945161437 3.4689562 0.0
+72274.15945166466 3.4688776 0.0
+72275.15945171495 3.4689562 0.0
+72276.15945176524 3.4690742 0.0
+72277.15945181553 3.4689169 0.0
+72278.15945186582 3.4689956 0.0
+72279.15945191612 3.4689562 0.0
+72280.1594519664 3.4689169 0.0
+72281.1594520167 3.4688776 0.0
+72282.15945206699 3.468838 0.0
+72283.15945211728 3.4688776 0.0
+72284.15945216757 3.4689562 0.0
+72285.15945221786 3.4690742 0.0
+72286.15945226816 3.4689562 0.0
+72287.15945231845 3.4689562 0.0
+72288.15945236874 3.4689956 0.0
+72289.15945241903 3.4690349 0.0
+72290.15945246932 3.4689956 0.0
+72291.15945251961 3.4689956 0.0
+72292.1594525699 3.4689956 0.0
+72293.1594526202 3.4689169 0.0
+72294.15945267049 3.4690742 0.0
+72295.15945272078 3.4689562 0.0
+72296.15945277107 3.4689169 0.0
+72297.15945282136 3.4689956 0.0
+72298.15945287165 3.4689956 0.0
+72299.15945292194 3.4689956 0.0
+72300.15945297224 3.4689956 0.0
+72301.15945302253 3.4689956 0.0
+72302.15945307282 3.468838 0.0
+72303.15945312311 3.4690349 0.0
+72304.1594531734 3.4689169 0.0
+72305.15945322369 3.4690349 0.0
+72306.15945327398 3.4688776 0.0
+72307.15945332428 3.4689562 0.0
+72308.15945337457 3.4689956 0.0
+72309.15945342486 3.4690349 0.0
+72310.15945347515 3.4689169 0.0
+72311.15945352544 3.4689169 0.0
+72312.15945357573 3.4689169 0.0
+72313.15945362602 3.4690349 0.0
+72314.15945367632 3.4689956 0.0
+72315.1594537266 3.4689562 0.0
+72316.1594537769 3.4689562 0.0
+72317.15945382719 3.4689956 0.0
+72318.15945387748 3.468838 0.0
+72319.15945392777 3.4690349 0.0
+72320.15945397806 3.4691136 0.0
+72321.15945402835 3.4690349 0.0
+72322.15945407865 3.4689169 0.0
+72323.15945412894 3.4689956 0.0
+72324.15945417923 3.4690742 0.0
+72325.15945422952 3.4690742 0.0
+72326.15945427981 3.4691136 0.0
+72327.1594543301 3.4690349 0.0
+72328.1594543804 3.4688776 0.0
+72329.15945443069 3.4691136 0.0
+72330.15945448098 3.4690349 0.0
+72331.15945453127 3.4689562 0.0
+72332.15945458156 3.4689956 0.0
+72333.15945463185 3.4690349 0.0
+72334.15945468214 3.4690742 0.0
+72335.15945473243 3.4689562 0.0
+72336.15945478273 3.4690349 0.0
+72337.15945483302 3.4689562 0.0
+72338.15945488331 3.4690742 0.0
+72339.1594549336 3.4689956 0.0
+72340.15945498389 3.4690349 0.0
+72341.15945503418 3.4689169 0.0
+72342.15945508447 3.4689169 0.0
+72343.15945513477 3.4689956 0.0
+72344.15945518506 3.4690349 0.0
+72345.15945523535 3.4689956 0.0
+72346.15945528564 3.4690349 0.0
+72347.15945533593 3.4689956 0.0
+72348.15945538622 3.4689956 0.0
+72349.15945543651 3.4690349 0.0
+72350.1594554868 3.4690349 0.0
+72351.1594555371 3.4689956 0.0
+72352.15945558739 3.4689562 0.0
+72353.15945563768 3.4689956 0.0
+72354.15945568797 3.4689562 0.0
+72355.15945573826 3.4689169 0.0
+72356.15945578855 3.4689956 0.0
+72357.15945583885 3.4689956 0.0
+72358.15945588914 3.4690742 0.0
+72359.15945593943 3.4689562 0.0
+72360.15945598972 3.4691136 0.0
+72361.15945604001 3.4690349 0.0
+72362.1594560903 3.4689956 0.0
+72363.1594561406 3.4690349 0.0
+72364.15945619089 3.4689562 0.0
+72365.15945624118 3.4690349 0.0
+72366.15945629147 3.4689956 0.0
+72367.15945634176 3.4691136 0.0
+72368.15945639205 3.4691136 0.0
+72369.15945644234 3.4689956 0.0
+72370.15945649263 3.4690742 0.0
+72371.15945654293 3.4689956 0.0
+72372.15945659322 3.4690349 0.0
+72373.15945664351 3.4689956 0.0
+72374.1594566938 3.4690742 0.0
+72375.15945674409 3.4691136 0.0
+72376.15945679438 3.4690742 0.0
+72377.15945684467 3.4690742 0.0
+72378.15945689497 3.4690349 0.0
+72379.15945694526 3.4690742 0.0
+72380.15945699555 3.4690349 0.0
+72381.15945704584 3.4690742 0.0
+72382.15945709613 3.4691529 0.0
+72383.15945714642 3.4690742 0.0
+72384.15945719671 3.4689956 0.0
+72385.159457247 3.4689562 0.0
+72386.1594572973 3.4691136 0.0
+72387.15945734759 3.4690349 0.0
+72388.15945739788 3.4690742 0.0
+72389.15945744817 3.4691136 0.0
+72390.15945749846 3.4691136 0.0
+72391.15945754875 3.4690349 0.0
+72392.15945759905 3.4691136 0.0
+72393.15945764934 3.4689956 0.0
+72394.15945769963 3.4689562 0.0
+72395.15945774992 3.4691529 0.0
+72396.15945780021 3.4690742 0.0
+72397.1594578505 3.4691136 0.0
+72398.1594579008 3.4690349 0.0
+72399.15945795109 3.4690349 0.0
+72400.15945800138 3.4689956 0.0
+72401.15945805167 3.4690349 0.0
+72402.15945810196 3.4690742 0.0
+72403.15945815225 3.4690349 0.0
+72404.15945820254 3.4690349 0.0
+72405.15945825283 3.4690742 0.0
+72406.15945830313 3.4689562 0.0
+72407.15945835342 3.4690742 0.0
+72408.15945840371 3.4691136 0.0
+72409.159458454 3.4690742 0.0
+72410.15945850429 3.4689956 0.0
+72411.15945855458 3.4690349 0.0
+72412.15945860487 3.4690349 0.0
+72413.15945865517 3.4690349 0.0
+72414.15945870546 3.4690349 0.0
+72415.15945875575 3.4690349 0.0
+72416.15945880604 3.4690349 0.0
+72417.15945885633 3.4690742 0.0
+72418.15945890662 3.4689956 0.0
+72419.15945895691 3.4691136 0.0
+72420.1594590072 3.4690349 0.0
+72421.1594590575 3.4691529 0.0
+72422.15945910779 3.4690742 0.0
+72423.15945915808 3.4690742 0.0
+72424.15945920837 3.4691136 0.0
+72425.15945925866 3.4691136 0.0
+72426.15945930895 3.4691925 0.0
+72427.15945935925 3.4689956 0.0
+72428.15945940954 3.4691529 0.0
+72429.15945945983 3.4689169 0.0
+72430.15945951012 3.4691136 0.0
+72431.15945956041 3.4689562 0.0
+72432.1594596107 3.4690742 0.0
+72433.159459661 3.4690742 0.0
+72434.15945971129 3.4689562 0.0
+72435.15945976158 3.4690349 0.0
+72436.15945981187 3.4691529 0.0
+72437.15945986216 3.4691136 0.0
+72438.15945991245 3.4690349 0.0
+72439.15945996274 3.4690742 0.0
+72440.15946001303 3.4690742 0.0
+72441.15946006333 3.4690349 0.0
+72442.15946011362 3.4691136 0.0
+72443.15946016391 3.4690742 0.0
+72444.1594602142 3.4690742 0.0
+72445.15946026449 3.4690349 0.0
+72446.15946031478 3.4690742 0.0
+72447.15946036507 3.4691136 0.0
+72448.15946041537 3.4690349 0.0
+72449.15946046566 3.4690349 0.0
+72450.15946051595 3.4690742 0.0
+72451.15946056624 3.4691529 0.0
+72452.15946061653 3.4691136 0.0
+72453.15946066682 3.4690742 0.0
+72454.15946071711 3.4690742 0.0
+72455.1594607674 3.4691925 0.0
+72456.1594608177 3.4690742 0.0
+72457.15946086799 3.4689562 0.0
+72458.15946091828 3.4690742 0.0
+72459.15946096857 3.4691136 0.0
+72460.15946101886 3.4690742 0.0
+72461.15946106915 3.4690742 0.0
+72462.15946111945 3.4691136 0.0
+72463.15946116974 3.4691136 0.0
+72464.15946122003 3.4691529 0.0
+72465.15946127032 3.4691136 0.0
+72466.15946132061 3.4690742 0.0
+72467.1594613709 3.4690349 0.0
+72468.1594614212 3.4691136 0.0
+72469.15946147148 3.4690349 0.0
+72470.15946152178 3.4691529 0.0
+72471.15946157207 3.4691925 0.0
+72472.15946162236 3.4690742 0.0
+72473.15946167265 3.4691529 0.0
+72474.15946172294 3.4691136 0.0
+72475.15946177323 3.4690742 0.0
+72476.15946182352 3.4690742 0.0
+72477.15946187382 3.4692318 0.0
+72478.15946192411 3.4691136 0.0
+72479.1594619744 3.4691925 0.0
+72480.15946202469 3.4689956 0.0
+72481.15946207498 3.4691136 0.0
+72482.15946212527 3.4691529 0.0
+72483.15946217556 3.4691529 0.0
+72484.15946222586 3.4691136 0.0
+72485.15946227615 3.4691136 0.0
+72486.15946232644 3.4692712 0.0
+72487.15946237673 3.4691529 0.0
+72488.15946242702 3.4691925 0.0
+72489.15946247731 3.4690742 0.0
+72490.1594625276 3.4690742 0.0
+72491.1594625779 3.4690349 0.0
+72492.15946262819 3.4690349 0.0
+72493.15946267848 3.4691136 0.0
+72494.15946272877 3.4691136 0.0
+72495.15946277906 3.4691136 0.0
+72496.15946282935 3.4690742 0.0
+72497.15946287964 3.4691136 0.0
+72498.15946292994 3.4690742 0.0
+72499.15946298023 3.4690349 0.0
+72500.15946303052 3.4691136 0.0
+72501.15946308081 3.4692318 0.0
+72502.1594631311 3.4690349 0.0
+72503.1594631814 3.4691136 0.0
+72504.15946323168 3.4691136 0.0
+72505.15946328198 3.4691136 0.0
+72506.15946333227 3.4691925 0.0
+72507.15946338256 3.4690742 0.0
+72508.15946343285 3.4690742 0.0
+72509.15946348314 3.4691136 0.0
+72510.15946353343 3.4691136 0.0
+72511.15946358372 3.4691529 0.0
+72512.15946363402 3.4690742 0.0
+72513.15946368431 3.4690742 0.0
+72514.1594637346 3.4690742 0.0
+72515.15946378489 3.4691136 0.0
+72516.15946383518 3.4691136 0.0
+72517.15946388547 3.4691529 0.0
+72518.15946393576 3.4691529 0.0
+72519.15946398606 3.4691925 0.0
+72520.15946403635 3.4692318 0.0
+72521.15946408664 3.4691529 0.0
+72522.15946413693 3.4691925 0.0
+72523.15946418722 3.4691529 0.0
+72524.15946423751 3.4692318 0.0
+72525.1594642878 3.4691925 0.0
+72526.1594643381 3.4691529 0.0
+72527.15946438839 3.4691136 0.0
+72528.15946443868 3.4690742 0.0
+72529.15946448897 3.4691925 0.0
+72530.15946453926 3.4690742 0.0
+72531.15946458955 3.4692318 0.0
+72532.15946463984 3.4691925 0.0
+72533.15946469014 3.4691925 0.0
+72534.15946474043 3.4691529 0.0
+72535.15946479072 3.4691529 0.0
+72536.15946484101 3.4691529 0.0
+72537.1594648913 3.4691925 0.0
+72538.1594649416 3.4691136 0.0
+72539.15946499188 3.4691136 0.0
+72540.15946504218 3.4691529 0.0
+72541.15946509247 3.4692712 0.0
+72542.15946514276 3.4692318 0.0
+72543.15946519305 3.4691136 0.0
+72544.15946524334 3.4691529 0.0
+72545.15946529363 3.4691925 0.0
+72546.15946534392 3.4691136 0.0
+72547.15946539422 3.4691136 0.0
+72548.1594654445 3.4691529 0.0
+72549.1594654948 3.4691529 0.0
+72550.15946554509 3.4691529 0.0
+72551.15946559538 3.4692712 0.0
+72552.15946564567 3.4691925 0.0
+72553.15946569596 3.4691136 0.0
+72554.15946574626 3.4692712 0.0
+72555.15946579655 3.4691529 0.0
+72556.15946584684 3.4691925 0.0
+72557.15946589713 3.4691136 0.0
+72558.15946594742 3.4692712 0.0
+72559.15946599771 3.4691136 0.0
+72560.159466048 3.4690742 0.0
+72561.1594660983 3.4692318 0.0
+72562.15946614859 3.4691925 0.0
+72563.15946619888 3.4691529 0.0
+72564.15946624917 3.4692318 0.0
+72565.15946629946 3.4691925 0.0
+72566.15946634975 3.4691925 0.0
+72567.15946640004 3.4692318 0.0
+72568.15946645034 3.4692318 0.0
+72569.15946650063 3.4692318 0.0
+72570.15946655092 3.4692712 0.0
+72571.15946660121 3.4691529 0.0
+72572.1594666515 3.4691529 0.0
+72573.15946670179 3.4691136 0.0
+72574.15946675208 3.4691925 0.0
+72575.15946680238 3.4692318 0.0
+72576.15946685267 3.4691925 0.0
+72577.15946690296 3.4692712 0.0
+72578.15946695325 3.4691136 0.0
+72579.15946700354 3.4691925 0.0
+72580.15946705383 3.4690349 0.0
+72581.15946710412 3.4692318 0.0
+72582.15946715442 3.4691925 0.0
+72583.1594672047 3.4692712 0.0
+72584.159467255 3.4692318 0.0
+72585.15946730529 3.4691136 0.0
+72586.15946735558 3.4691529 0.0
+72587.2034674082 3.6697013 7354.9824
+72587.20546740829 3.6695833 7355.9663
+72588.20546745858 3.6556466 7357.1475
+72589.20546750887 3.6542685 7356.5571
+72590.20546755916 3.6538355 7356.7539
+72591.20546760946 3.6539929 7356.9502
+72592.20546765975 3.6541505 7356.9502
+72593.20546771004 3.6543078 7357.7378
+72594.20546776033 3.6546228 7357.1475
+72595.20546781062 3.6549377 7356.3604
+72596.20546786091 3.655292 7357.1475
+72597.2054679112 3.655489 7357.1475
+72598.2054679615 3.6560009 7356.9502
+72599.20546801179 3.6562765 7357.3442
+72600.20546806208 3.6565914 7356.3604
+72601.20546811237 3.6567881 7356.7539
+72602.20546816266 3.6571424 7356.9502
+72603.20546821295 3.657418 7355.7695
+72604.20546826324 3.6577723 7356.7539
+72605.20546831354 3.6580479 7356.9502
+72606.20546836383 3.6583629 7356.3604
+72607.20546841412 3.6585598 7357.3442
+72608.20546846441 3.6588354 7356.7539
+72609.2054685147 3.6590323 7356.5571
+72610.205468565 3.6591504 7357.3442
+72611.20546861528 3.6591504 7357.1475
+72612.20546866558 3.6592684 7357.3442
+72613.20546871587 3.6590717 7357.3442
+72614.20546876616 3.6591897 7357.1475
+72615.20546881645 3.6591504 7356.7539
+72616.20546886674 3.6592684 7357.1475
+72617.20546891703 3.6594653 7357.1475
+72618.20546896732 3.6595833 7357.1475
+72619.20546901762 3.6596227 7357.1475
+72620.2054690679 3.6597803 7355.5728
+72621.2054691182 3.6598196 7356.7539
+72622.20546916849 3.6598196 7356.9502
+72623.20546921878 3.6598196 7356.1636
+72624.20546926907 3.6599376 7356.9502
+72625.20546931936 3.6599772 7357.3442
+72626.20546936966 3.6600165 7356.5571
+72627.20546941995 3.6601346 7357.1475
+72628.20546947024 3.6602132 7356.3604
+72629.20546952053 3.6601739 7356.9502
+72630.20546957082 3.6600559 7356.9502
+72631.20546962111 3.6602132 7356.3604
+72632.2054696714 3.6600559 7356.1636
+72633.2054697217 3.6600559 7356.5571
+72634.20546977199 3.6600559 7356.5571
+72635.20546982228 3.6601346 7357.9346
+72636.20546987257 3.6600559 7356.9502
+72637.20546992286 3.6601739 7356.9502
+72638.20546997315 3.6602921 7356.9502
+72639.20547002344 3.6603315 7357.541
+72640.20547007374 3.6602526 7356.7539
+72641.20547012403 3.6601346 7356.5571
+72642.20547017432 3.6602132 7356.9502
+72643.20547022461 3.6600952 7357.1475
+72644.2054702749 3.6599376 7356.3604
+72645.20547032519 3.6598983 7356.7539
+72646.20547037548 3.6600165 7357.3442
+72647.20547042578 3.6598983 7356.7539
+72648.20547047607 3.6598196 7356.5571
+72649.20547052636 3.6599376 7356.5571
+72650.20547057665 3.6598983 7357.1475
+72651.20547062694 3.6599772 7356.9502
+72652.20547067723 3.6598983 7357.1475
+72653.20547072752 3.6596227 7357.1475
+72654.20547077782 3.6596622 7356.7539
+72655.2054708281 3.659544 7356.9502
+72656.2054708784 3.6594653 7356.9502
+72657.20547092869 3.659544 7356.5571
+72658.20547097898 3.659544 7356.7539
+72659.20547102927 3.6595833 7356.3604
+72660.20547107956 3.6595047 7357.541
+72661.20547112986 3.6593866 7357.1475
+72662.20547118015 3.6593866 7356.9502
+72663.20547123044 3.6596622 7357.3442
+72664.20547128073 3.6595833 7356.9502
+72665.20547133102 3.6593077 7356.1636
+72666.20547138131 3.6591504 7356.3604
+72667.2054714316 3.6592684 7356.9502
+72668.2054714819 3.6591897 7356.7539
+72669.20547153219 3.6590717 7357.3442
+72670.20547158248 3.6591504 7356.7539
+72671.20547163277 3.659229 7356.9502
+72672.20547168306 3.6592684 7357.7378
+72673.20547173335 3.6591504 7356.9502
+72674.20547178364 3.6594653 7356.9502
+72675.20547183394 3.659426 7357.7378
+72676.20547188423 3.6593866 7356.5571
+72677.20547193452 3.6595833 7356.9502
+72678.20547198481 3.6596227 7356.1636
+72679.2054720351 3.6596622 7356.7539
+72680.20547208539 3.6595047 7356.1636
+72681.20547213568 3.6595047 7357.3442
+72682.20547218597 3.6593866 7356.5571
+72683.20547223627 3.6592684 7356.7539
+72684.20547228656 3.6589534 7357.3442
+72685.20547233685 3.6588354 7356.3604
+72686.20547238714 3.6588354 7356.7539
+72687.20547243743 3.659111 7356.3604
+72688.20547248772 3.6592684 7356.5571
+72689.20547253801 3.6592684 7356.9502
+72690.2054725883 3.6591504 7357.9346
+72691.2054726386 3.659111 7357.1475
+72692.20547268889 3.6590323 7356.5571
+72693.20547273918 3.6591504 7356.3604
+72694.20547278947 3.659544 7356.7539
+72695.20547283976 3.6595047 7356.7539
+72696.20547289005 3.6597409 7356.5571
+72697.20547294035 3.6599772 7357.3442
+72698.20547299064 3.6603708 7357.3442
+72699.20547304093 3.6604102 7356.3604
+72700.20547309122 3.6604495 7357.1475
+72701.20547314151 3.6606071 7357.3442
+72702.2054731918 3.6607645 7357.1475
+72703.2054732421 3.6610007 7356.7539
+72704.20547329239 3.6611187 7356.7539
+72705.20547334268 3.6611187 7355.7695
+72706.20547339297 3.6613944 7356.7539
+72707.20547344326 3.6617093 7357.1475
+72708.20547349355 3.6618276 7356.9502
+72709.20547354384 3.6619849 7356.9502
+72710.20547359413 3.6619456 7356.9502
+72711.20547364443 3.6618669 7357.1475
+72712.20547369472 3.6618669 7356.9502
+72713.20547374501 3.6621029 7356.3604
+72714.2054737953 3.6621029 7356.7539
+72715.20547384559 3.6620243 7356.9502
+72716.20547389588 3.6620243 7357.3442
+72717.20547394617 3.6619456 7357.1475
+72718.20547399647 3.6619456 7356.5571
+72719.20547404676 3.6618669 7357.1475
+72720.20547409705 3.6617486 7357.9346
+72721.20547414734 3.6614337 7357.3442
+72722.20547419763 3.6611977 7356.9502
+72723.20547424792 3.6610794 7356.9502
+72724.20547429821 3.6609221 7356.9502
+72725.2054743485 3.6610401 7357.1475
+72726.2054743988 3.6611977 7357.3442
+72727.20547444909 3.6614337 7356.5571
+72728.20547449938 3.6614337 7355.7695
+72729.20547454967 3.661355 7356.9502
+72730.20547459996 3.661355 7356.9502
+72731.20547465025 3.661552 7356.9502
+72732.20547470055 3.6615913 7356.9502
+72733.20547475084 3.661788 7356.7539
+72734.20547480113 3.6618669 7356.7539
+72735.20547485142 3.6623392 7357.1475
+72736.20547490171 3.6628118 7356.7539
+72737.205474952 3.6629691 7356.9502
+72738.2054750023 3.6632841 7356.7539
+72739.20547505259 3.6632054 7357.7378
+72740.20547510288 3.663166 7356.7539
+72741.20547515317 3.663166 7357.1475
+72742.20547520346 3.663166 7356.9502
+72743.20547525375 3.6628904 7357.1475
+72744.20547530404 3.6628511 7356.1636
+72745.20547535433 3.6627331 7356.7539
+72746.20547540463 3.6627724 7357.1475
+72747.20547545492 3.6627724 7357.541
+72748.20547550521 3.6627724 7356.9502
+72749.2054755555 3.6630085 7356.5571
+72750.20547560579 3.663363 7356.1636
+72751.20547565608 3.6636384 7356.9502
+72752.20547570637 3.6638353 7356.9502
+72753.20547575667 3.6640716 7356.9502
+72754.20547580696 3.6642685 7357.1475
+72755.20547585725 3.6642685 7356.3604
+72756.20547590754 3.6644652 7356.7539
+72757.20547595783 3.6645439 7356.5571
+72758.20547600812 3.6646621 7356.5571
+72759.20547605841 3.6647801 7357.1475
+72760.2054761087 3.6648588 7356.5571
+72761.205476159 3.6649771 7356.5571
+72762.20547620929 3.6651344 7357.1475
+72763.20547625958 3.6652527 7357.7378
+72764.20547630987 3.6654887 7356.5571
+72765.20547636016 3.6656463 7355.9663
+72766.20547641045 3.665725 7355.9663
+72767.20547646075 3.6658826 7356.5571
+72768.20547651104 3.6659613 7357.1475
+72769.20547656133 3.6661582 7356.7539
+72770.20547661162 3.6663942 7357.3442
+72771.20547666191 3.6662762 7357.1475
+72772.2054767122 3.6665125 7356.7539
+72773.2054767625 3.6666698 7356.9502
+72774.20547681279 3.6671031 7356.9502
+72775.20547686308 3.6672604 7357.3442
+72776.20547691337 3.6672211 7357.1475
+72777.20547696366 3.6672997 7357.1475
+72778.20547701395 3.6672211 7357.1475
+72779.20547706424 3.6673391 7355.9663
+72780.20547711453 3.6672211 7357.1475
+72781.20547716483 3.6672211 7357.9346
+72782.20547721512 3.6672604 7357.1475
+72783.20547726541 3.6673391 7356.5571
+72784.2054773157 3.6676543 7357.1475
+72785.20547736599 3.6677723 7357.1475
+72786.20547741628 3.6678903 7356.5571
+72787.20547746657 3.6681266 7357.3442
+72788.20547751687 3.6683629 7357.3442
+72789.20547756716 3.6684809 7356.5571
+72790.20547761745 3.6684415 7355.9663
+72791.20547766774 3.6685991 7357.1475
+72792.20547771803 3.6688745 7356.1636
+72793.20547776832 3.6691895 7356.9502
+72794.20547781861 3.6692684 7356.3604
+72795.2054778689 3.6695833 7356.7539
+72796.2054779192 3.6700556 7356.9502
+72797.20547796949 3.6704099 7356.7539
+72798.20547801978 3.6705675 7356.9502
+72799.20547807007 3.6708431 7356.9502
+72800.20547812036 3.6707644 7357.1475
+72801.20547817065 3.6708431 7357.541
+72802.20547822095 3.6707249 7357.1475
+72803.20547827124 3.6708038 7357.3442
+72804.20547832153 3.6711187 7357.1475
+72805.20547837182 3.6713943 7357.3442
+72806.20547842211 3.6715517 7356.3604
+72807.2054784724 3.6718273 7356.7539
+72808.2054785227 3.6719849 7356.9502
+72809.20547857299 3.6722209 7356.5571
+72810.20547862328 3.6721029 7356.9502
+72811.20547867357 3.6721816 7357.3442
+72812.20547872386 3.6721816 7355.9663
+72813.20547877415 3.6721423 7356.9502
+72814.20547882444 3.6721029 7357.541
+72815.20547887473 3.6721029 7357.3442
+72816.20547892503 3.6722999 7356.7539
+72817.20547897532 3.6723392 7356.9502
+72818.20547902561 3.6723392 7356.7539
+72819.2054790759 3.6723785 7357.1475
+72820.20547912619 3.6725752 7356.5571
+72821.20547917648 3.6726542 7357.1475
+72822.20547922677 3.6726148 7357.1475
+72823.20547927707 3.6727328 7357.1475
+72824.20547932736 3.6728115 7356.9502
+72825.20547937765 3.6732447 7356.5571
+72826.20547942794 3.6736383 7356.5571
+72827.20547947823 3.6741107 7356.7539
+72828.20547952852 3.6743076 7357.3442
+72829.20547957881 3.6743863 7357.3442
+72830.2054796291 3.6743076 7355.7695
+72831.2054796794 3.6743863 7356.5571
+72832.20547972969 3.6743076 7356.9502
+72833.20547977998 3.6743076 7357.1475
+72834.20547983027 3.6743863 7356.5571
+72835.20547988056 3.6744256 7356.5571
+72836.20547993085 3.6745045 7357.1475
+72837.20547998114 3.6746619 7356.9502
+72838.20548003144 3.6747801 7356.5571
+72839.20548008173 3.6746225 7356.5571
+72840.20548013202 3.6745045 7356.7539
+72841.20548018231 3.6743076 7356.9502
+72842.2054802326 3.6741896 7356.7539
+72843.2054802829 3.6741502 7356.9502
+72844.20548033318 3.6743469 7357.3442
+72845.20548038348 3.6742682 7357.1475
+72846.20548043377 3.6743469 7357.7378
+72847.20548048406 3.6746225 7357.1475
+72848.20548053435 3.6748981 7356.3604
+72849.20548058464 3.6750951 7356.7539
+72850.20548063493 3.6752524 7356.5571
+72851.20548068522 3.6752131 7356.3604
+72852.20548073552 3.6750162 7356.5571
+72853.20548078581 3.6748981 7357.1475
+72854.2054808361 3.6748981 7357.3442
+72855.20548088639 3.6748981 7356.9502
+72856.20548093668 3.6748981 7357.1475
+72857.20548098697 3.6748195 7357.1475
+72858.20548103726 3.6748981 7357.3442
+72859.20548108756 3.6750557 7357.3442
+72860.20548113785 3.6749375 7356.9502
+72861.20548118814 3.6749768 7356.7539
+72862.20548123843 3.6749768 7357.541
+72863.20548128872 3.6751344 7356.7539
+72864.20548133901 3.6752524 7356.3604
+72865.2054813893 3.6752524 7357.3442
+72866.2054814396 3.6753311 7356.7539
+72867.20548148989 3.675528 7356.1636
+72868.20548154018 3.675843 7356.5571
+72869.20548159047 3.6760793 7357.3442
+72870.20548164076 3.6764336 7356.7539
+72871.20548169105 3.6768665 7356.1636
+72872.20548174134 3.6771815 7357.1475
+72873.20548179164 3.6773784 7357.3442
+72874.20548184193 3.6775753 7356.7539
+72875.20548189222 3.6777327 7357.7378
+72876.20548194251 3.6779296 7356.5571
+72877.2054819928 3.6781263 7356.5571
+72878.2054820431 3.6783233 7357.1475
+72879.20548209338 3.6785989 7356.9502
+72880.20548214368 3.6786382 7355.9663
+72881.20548219397 3.6786776 7356.9502
+72882.20548224426 3.6785202 7357.7378
+72883.20548229455 3.6784415 7356.3604
+72884.20548234484 3.6789925 7357.541
+72885.20548239513 3.6791894 7357.541
+72886.20548244542 3.6794651 7356.7539
+72887.20548249572 3.6798587 7356.5571
+72888.205482546 3.6800163 7356.7539
+72889.2054825963 3.680213 7357.1475
+72890.20548264659 3.680213 7356.7539
+72891.20548269688 3.6801343 7357.541
+72892.20548274717 3.680213 7357.3442
+72893.20548279746 3.680213 7356.5571
+72894.20548284776 3.6803312 7357.3442
+72895.20548289805 3.6805673 7356.3604
+72896.20548294834 3.6808035 7356.9502
+72897.20548299863 3.6810791 7357.3442
+72898.20548304892 3.6811185 7357.541
+72899.20548309921 3.6814334 7356.9502
+72900.2054831495 3.6816304 7356.9502
+72901.2054831998 3.6815517 7355.9663
+72902.20548325009 3.6815517 7356.3604
+72903.20548330038 3.6816697 7356.5571
+72904.20548335067 3.6819847 7357.1475
+72905.20548340096 3.6821816 7356.7539
+72906.20548345125 3.682339 7357.3442
+72907.20548350154 3.6826539 7357.541
+72908.20548355184 3.6828902 7356.7539
+72909.20548360213 3.6830871 7356.7539
+72910.20548365242 3.6831264 7356.3604
+72911.20548370271 3.6832838 7357.1475
+72912.205483753 3.6833625 7357.541
+72913.2054838033 3.6833625 7356.3604
+72914.20548385358 3.6834414 7356.9502
+72915.20548390388 3.6836777 7357.1475
+72916.20548395417 3.683717 7356.5571
+72917.20548400446 3.6838744 7356.3604
+72918.20548405475 3.6841106 7357.541
+72919.20548410504 3.6843469 7356.7539
+72920.20548415533 3.6843863 7357.1475
+72921.20548420562 3.6843469 7357.1475
+72922.20548425592 3.6844256 7356.3604
+72923.2054843062 3.6844649 7356.1636
+72924.2054843565 3.6844256 7356.3604
+72925.20548440679 3.6844649 7357.1475
+72926.20548445708 3.6845043 7357.1475
+72927.20548450737 3.6847405 7356.9502
+72928.20548455766 3.6849375 7356.7539
+72929.20548460796 3.6850162 7356.5571
+72930.20548465825 3.6851735 7356.9502
+72931.20548470854 3.6853704 7357.1475
+72932.20548475883 3.6855674 7356.9502
+72933.20548480912 3.6857247 7357.3442
+72934.20548485941 3.6858823 7356.7539
+72935.2054849097 3.685961 7357.1475
+72936.20548496 3.6861184 7356.5571
+72937.20548501029 3.686276 7356.1636
+72938.20548506058 3.6863546 7357.3442
+72939.20548511087 3.6864333 7357.1475
+72940.20548516116 3.6866302 7356.7539
+72941.20548521145 3.6868665 7356.3604
+72942.20548526174 3.6866696 7357.1475
+72943.20548531204 3.6868665 7356.9502
+72944.20548536233 3.6870632 7356.7539
+72945.20548541262 3.6874571 7357.3442
+72946.20548546291 3.6876538 7356.9502
+72947.2054855132 3.687772 7357.1475
+72948.20548556349 3.688087 7356.9502
+72949.20548561378 3.688205 7356.9502
+72950.20548566408 3.6882837 7357.1475
+72951.20548571437 3.6883233 7356.5571
+72952.20548576466 3.688205 7356.7539
+72953.20548581495 3.6880476 7356.9502
+72954.20548586524 3.6882837 7356.9502
+72955.20548591553 3.6884806 7356.9502
+72956.20548596582 3.6884019 7356.1636
+72957.20548601612 3.6885593 7356.3604
+72958.2054860664 3.6887169 7356.7539
+72959.2054861167 3.6888742 7357.3442
+72960.20548616699 3.6889136 7357.1475
+72961.20548621728 3.6887562 7357.9346
+72962.20548626757 3.6887956 7357.9346
+72963.20548631786 3.6890712 7356.1636
+72964.20548636816 3.6890318 7357.541
+72965.20548641845 3.6893468 7356.5571
+72966.20548646874 3.6895437 7357.1475
+72967.20548651903 3.6897404 7356.3604
+72968.20548656932 3.6897011 7356.5571
+72969.20548661961 3.6898191 7357.541
+72970.2054866699 3.690016 7357.3442
+72971.2054867202 3.690016 7357.1475
+72972.20548677049 3.690134 7356.5571
+72973.20548682078 3.690449 7356.9502
+72974.20548687107 3.6902916 7357.3442
+72975.20548692136 3.6904097 7356.9502
+72976.20548697165 3.6905279 7357.1475
+72977.20548702194 3.690449 7357.7378
+72978.20548707223 3.6904886 7356.7539
+72979.20548712253 3.6905673 7356.9502
+72980.20548717282 3.6902916 7356.3604
+72981.20548722311 3.6902523 7356.7539
+72982.2054872734 3.6903703 7356.9502
+72983.20548732369 3.6906066 7356.1636
+72984.20548737398 3.6906459 7356.3604
+72985.20548742427 3.6907246 7356.5571
+72986.20548747457 3.6906066 7356.7539
+72987.20548752486 3.6906066 7356.7539
+72988.20548757515 3.6904886 7357.1475
+72989.20548762544 3.6907246 7357.1475
+72990.20548767573 3.6907246 7356.5571
+72991.20548772602 3.690764 7356.5571
+72992.20548777631 3.6909215 7356.9502
+72993.2054878266 3.6909609 7356.5571
+72994.2054878769 3.6910002 7355.7695
+72995.20548792719 3.6910002 7356.9502
+72996.20548797748 3.6911578 7356.7539
+72997.20548802777 3.6913545 7356.7539
+72998.20548807806 3.6913545 7356.9502
+72999.20548812835 3.6915121 7356.9502
+73000.20548817865 3.6916301 7357.3442
+73001.20548822894 3.6917877 7357.1475
+73002.20548827923 3.6917484 7356.3604
+73003.20548832952 3.6917484 7356.3604
+73004.20548837981 3.6919451 7356.9502
+73005.2054884301 3.6921027 7356.5571
+73006.2054884804 3.6919451 7356.5571
+73007.20548853069 3.6920633 7356.5571
+73008.20548858098 3.692024 7356.7539
+73009.20548863127 3.6919844 7357.1475
+73010.20548868156 3.6917877 7357.3442
+73011.20548873185 3.6917484 7356.7539
+73012.20548878214 3.6919057 7356.5571
+73013.20548883243 3.6918664 7356.9502
+73014.20548888273 3.6918664 7356.5571
+73015.20548893302 3.6919844 7356.7539
+73016.20548898331 3.692142 7357.541
+73017.2054890336 3.692142 7357.9346
+73018.20548908389 3.69226 7356.9502
+73019.20548913418 3.6923783 7357.541
+73020.20548918447 3.6924176 7357.541
+73021.20548923477 3.6924963 7356.9502
+73022.20548928506 3.6923389 7357.3442
+73023.20548933535 3.6924963 7356.5571
+73024.20548938564 3.6925356 7356.5571
+73025.20548943593 3.6926932 7356.7539
+73026.20548948622 3.6926932 7356.7539
+73027.20548953651 3.6926539 7356.9502
+73028.2054895868 3.6925356 7356.5571
+73029.2054896371 3.6926539 7357.1475
+73030.20548968739 3.6927326 7356.5571
+73031.20548973768 3.6928506 7356.1636
+73032.20548978797 3.6929295 7356.3604
+73033.20548983826 3.6930082 7357.541
+73034.20548988855 3.6930475 7356.9502
+73035.20548993885 3.6930869 7356.7539
+73036.20548998914 3.6930475 7356.9502
+73037.20549003943 3.6931262 7356.7539
+73038.20549008972 3.6931655 7356.3604
+73039.20549014001 3.6933625 7357.1475
+73040.2054901903 3.6933231 7356.5571
+73041.2054902406 3.6935987 7356.3604
+73042.20549029089 3.6937168 7357.3442
+73043.20549034118 3.6937954 7356.7539
+73044.20549039147 3.6938744 7356.7539
+73045.20549044176 3.6941104 7357.541
+73046.20549049205 3.6942286 7356.9502
+73047.20549054234 3.6945043 7356.1636
+73048.20549059263 3.694701 7357.1475
+73049.20549064293 3.6947403 7357.541
+73050.20549069322 3.6947403 7357.541
+73051.20549074351 3.6949372 7357.1475
+73052.2054907938 3.6951735 7356.7539
+73053.20549084409 3.6952522 7356.5571
+73054.20549089438 3.6952915 7357.3442
+73055.20549094467 3.6952128 7357.1475
+73056.20549099497 3.6952915 7356.7539
+73057.20549104526 3.6956851 7356.1636
+73058.20549109555 3.6958821 7357.1475
+73059.20549114584 3.6958821 7357.3442
+73060.20549119613 3.6959214 7356.9502
+73061.20549124642 3.6960001 7357.541
+73062.20549129671 3.6959608 7356.5571
+73063.205491347 3.6958821 7356.9502
+73064.2054913973 3.6960397 7356.1636
+73065.20549144759 3.6960397 7356.7539
+73066.20549149788 3.696079 7357.1475
+73067.20549154817 3.6958821 7357.7378
+73068.20549159846 3.6960001 7357.541
+73069.20549164875 3.6959214 7357.3442
+73070.20549169905 3.6958034 7357.9346
+73071.20549174934 3.6957247 7356.5571
+73072.20549179963 3.6955278 7357.3442
+73073.20549184992 3.6956065 7356.7539
+73074.20549190021 3.6957641 7357.3442
+73075.2054919505 3.6960001 7357.1475
+73076.2054920008 3.6961577 7357.1475
+73077.20549205109 3.6963153 7357.1475
+73078.20549210138 3.6963546 7357.541
+73079.20549215167 3.6963546 7356.9502
+73080.20549220196 3.6961184 7356.9502
+73081.20549225225 3.6963546 7356.5571
+73082.20549230254 3.6961577 7356.9502
+73083.20549235283 3.696197 7357.7378
+73084.20549240313 3.6961577 7356.9502
+73085.20549245342 3.6962757 7357.9346
+73086.20549250371 3.6963153 7357.541
+73087.205492554 3.6963546 7356.9502
+73088.20549260429 3.6962757 7356.1636
+73089.20549265458 3.696394 7356.9502
+73090.20549270487 3.6964726 7356.9502
+73091.20549275517 3.6966302 7356.3604
+73092.20549280546 3.6968269 7356.7539
+73093.20549285575 3.6969452 7357.3442
+73094.20549290604 3.6973388 7357.541
+73095.20549295633 3.6975751 7356.9502
+73096.20549300662 3.6976144 7356.9502
+73097.20549305691 3.6977718 7356.3604
+73098.2054931072 3.6977718 7356.9502
+73099.2054931575 3.69789 7356.9502
+73100.20549320779 3.6977718 7356.7539
+73101.20549325808 3.6975751 7357.541
+73102.20549330837 3.6976538 7355.9663
+73103.20549335866 3.6974568 7357.3442
+73104.20549340895 3.6974175 7356.7539
+73105.20549345925 3.6975355 7357.541
+73106.20549350954 3.6976144 7356.9502
+73107.20549355983 3.6977324 7356.7539
+73108.20549361012 3.6980081 7356.9502
+73109.20549366041 3.698323 7357.3442
+73110.2054937107 3.6985593 7356.9502
+73111.205493761 3.6987166 7356.1636
+73112.20549381129 3.6989136 7356.9502
+73113.20549386158 3.6991498 7357.1475
+73114.20549391187 3.6992679 7357.3442
+73115.20549396216 3.6995041 7357.3442
+73116.20549401245 3.6998978 7356.3604
+73117.20549406274 3.700016 7356.9502
+73118.20549411303 3.7002521 7357.1475
+73119.20549416333 3.700331 7357.3442
+73120.20549421362 3.700449 7357.3442
+73121.20549426391 3.700567 7357.3442
+73122.2054943142 3.7005277 7356.7539
+73123.20549436449 3.700449 7356.7539
+73124.20549441478 3.7005277 7357.1475
+73125.20549446507 3.700567 7356.9502
+73126.20549451536 3.7006459 7356.9502
+73127.20549456566 3.7007639 7356.9502
+73128.20549461595 3.7008426 7356.5571
+73129.20549466624 3.7009213 7357.3442
+73130.20549471653 3.7010002 7357.1475
+73131.20549476682 3.7012758 7356.9502
+73132.20549481711 3.7015119 7355.9663
+73133.2054948674 3.7016301 7357.3442
+73134.2054949177 3.7018268 7356.9502
+73135.20549496799 3.7017875 7356.9502
+73136.20549501828 3.7019844 7356.9502
+73137.20549506857 3.7019451 7356.7539
+73138.20549511886 3.7020237 7356.7539
+73139.20549516915 3.7020237 7357.3442
+73140.20549521944 3.7021418 7357.1475
+73141.20549526974 3.7019057 7357.7378
+73142.20549532003 3.7019057 7357.541
+73143.20549537032 3.7019057 7357.3442
+73144.20549542061 3.7019057 7356.3604
+73145.2054954709 3.7020631 7356.9502
+73146.2054955212 3.7019844 7357.1475
+73147.20549557148 3.7019451 7356.9502
+73148.20549562178 3.7020237 7356.9502
+73149.20549567207 3.7020631 7357.1475
+73150.20549572236 3.7018664 7357.1475
+73151.20549577265 3.7019057 7356.5571
+73152.20549582294 3.7018664 7356.3604
+73153.20549587323 3.7021418 7357.3442
+73154.20549592352 3.7021813 7355.7695
+73155.20549597382 3.7023387 7357.541
+73156.20549602411 3.7024174 7357.3442
+73157.2054960744 3.7024963 7356.7539
+73158.20549612469 3.7025356 7357.3442
+73159.20549617498 3.702693 7356.9502
+73160.20549622527 3.702693 7355.9663
+73161.20549627556 3.7026143 7357.3442
+73162.20549632586 3.702693 7357.9346
+73163.20549637615 3.7028112 7356.9502
+73164.20549642644 3.7028506 7356.9502
+73165.20549647673 3.7027323 7357.1475
+73166.20549652702 3.702693 7356.3604
+73167.20549657731 3.7029686 7356.5571
+73168.2054966276 3.7031262 7357.7378
+73169.2054966779 3.7033622 7355.9663
+73170.20549672819 3.7035985 7357.9346
+73171.20549677848 3.7037168 7356.7539
+73172.20549682877 3.7037954 7356.7539
+73173.20549687906 3.7039528 7356.3604
+73174.20549692935 3.7039921 7357.3442
+73175.20549697964 3.7039135 7357.541
+73176.20549702994 3.7039135 7357.541
+73177.20549708023 3.7041497 7357.3442
+73178.20549713052 3.7041497 7357.541
+73179.20549718081 3.7041891 7356.9502
+73180.2054972311 3.7043467 7356.7539
+73181.2054972814 3.704504 7356.3604
+73182.20549733168 3.7044647 7356.1636
+73183.20549738198 3.7047009 7357.3442
+73184.20549743227 3.704622 7356.3604
+73185.20549748256 3.7045434 7357.9346
+73186.20549753285 3.7046616 7357.7378
+73187.20549758314 3.7046616 7357.1475
+73188.20549763343 3.704819 7356.7539
+73189.20549768372 3.7048583 7356.9502
+73190.20549773402 3.7049766 7356.3604
+73191.2054977843 3.7052522 7356.7539
+73192.2054978346 3.7052915 7357.3442
+73193.20549788489 3.7051733 7356.7539
+73194.20549793518 3.7050946 7357.9346
+73195.20549798547 3.7051339 7357.541
+73196.20549803576 3.7051339 7357.1475
+73197.20549808606 3.7051339 7356.3604
+73198.20549813635 3.7051733 7357.3442
+73199.20549818664 3.7052126 7356.3604
+73200.20549823693 3.7051733 7356.9502
+73201.20549828722 3.7050946 7357.3442
+73202.20549833751 3.7051733 7357.3442
+73203.2054983878 3.7051733 7357.1475
+73204.2054984381 3.7053702 7356.1636
+73205.20549848839 3.7054095 7357.1475
+73206.20549853868 3.7054489 7357.1475
+73207.20549858897 3.7055671 7357.3442
+73208.20549863926 3.7056851 7356.9502
+73209.20549868955 3.7058032 7356.1636
+73210.20549873984 3.7059608 7357.541
+73211.20549879014 3.7058821 7357.1475
+73212.20549884043 3.7059214 7356.3604
+73213.20549889072 3.7060394 7357.3442
+73214.20549894101 3.7062364 7357.3442
+73215.2054989913 3.7063544 7356.3604
+73216.20549904159 3.7063544 7356.3604
+73217.20549909188 3.7064331 7356.7539
+73218.20549914218 3.7063937 7357.1475
+73219.20549919247 3.706512 7356.9502
+73220.20549924276 3.706512 7356.9502
+73221.20549929305 3.706512 7356.7539
+73222.20549934334 3.7063544 7357.1475
+73223.20549939363 3.7064331 7357.1475
+73224.20549944392 3.7064724 7356.9502
+73225.20549949422 3.7064724 7356.5571
+73226.2054995445 3.7065907 7356.5571
+73227.2054995948 3.7065513 7356.3604
+73228.20549964509 3.7067087 7356.7539
+73229.20549969538 3.7068663 7356.7539
+73230.20549974567 3.706748 7356.7539
+73231.20549979596 3.7067873 7357.7378
+73232.20549984626 3.7069056 7357.3442
+73233.20549989655 3.7067873 7356.5571
+73234.20549994684 3.7069843 7357.3442
+73235.20549999713 3.7071419 7357.3442
+73236.20550004742 3.7072206 7357.541
+73237.20550009771 3.7072992 7357.541
+73238.205500148 3.7072599 7356.1636
+73239.2055001983 3.7072599 7356.9502
+73240.20550024859 3.7072992 7356.9502
+73241.20550029888 3.7072992 7357.7378
+73242.20550034917 3.7072992 7356.7539
+73243.20550039946 3.7071812 7356.5571
+73244.20550044975 3.7072599 7356.3604
+73245.20550050004 3.7071025 7356.9502
+73246.20550055034 3.7072599 7357.1475
+73247.20550060063 3.7071025 7356.9502
+73248.20550065092 3.7069449 7356.5571
+73249.20550070121 3.7069056 7356.5571
+73250.2055007515 3.7069843 7356.9502
+73251.20550080179 3.7069056 7356.9502
+73252.20550085208 3.7069843 7356.5571
+73253.20550090238 3.7069056 7356.7539
+73254.20550095267 3.7069843 7356.3604
+73255.20550100296 3.7071812 7357.3442
+73256.20550105325 3.7071025 7357.3442
+73257.20550110354 3.7071419 7356.5571
+73258.20550115383 3.7072206 7357.3442
+73259.20550120412 3.7072206 7356.7539
+73260.20550125442 3.7073779 7356.5571
+73261.2055013047 3.7074568 7357.1475
+73262.205501355 3.7074175 7357.9346
+73263.20550140529 3.7075355 7356.9502
+73264.20550145558 3.7075748 7357.3442
+73265.20550150587 3.7076142 7356.5571
+73266.20550155616 3.7076142 7357.3442
+73267.20550160646 3.7076535 7356.5571
+73268.20550165675 3.7076929 7355.9663
+73269.20550170704 3.7076535 7357.9346
+73270.20550175733 3.7076535 7356.9502
+73271.20550180762 3.7076535 7356.7539
+73272.20550185791 3.7076142 7357.3442
+73273.2055019082 3.7074962 7357.1475
+73274.2055019585 3.7074568 7357.3442
+73275.20550200879 3.7072599 7356.5571
+73276.20550205908 3.7071812 7357.1475
+73277.20550210937 3.7072206 7357.1475
+73278.20550215966 3.7072599 7356.7539
+73279.20550220995 3.7072992 7357.1475
+73280.20550226024 3.7073386 7356.9502
+73281.20550231053 3.7072992 7357.3442
+73282.20550236083 3.7072992 7356.7539
+73283.20550241112 3.7074568 7357.7378
+73284.20550246141 3.7073779 7356.9502
+73285.2055025117 3.7073779 7357.7378
+73286.20550256199 3.7074175 7357.3442
+73287.20550261228 3.7074962 7356.5571
+73288.20550266257 3.7074568 7356.7539
+73289.20550271287 3.7076535 7356.9502
+73290.20550276316 3.7077324 7357.1475
+73291.20550281345 3.7077718 7356.5571
+73292.20550286374 3.7077718 7357.1475
+73293.20550291403 3.7079291 7357.1475
+73294.20550296432 3.7079291 7357.7378
+73295.20550301461 3.7078898 7356.7539
+73296.2055030649 3.7077718 7356.7539
+73297.2055031152 3.7078111 7356.9502
+73298.20550316549 3.7079685 7356.5571
+73299.20550321578 3.7078898 7356.9502
+73300.20550326607 3.7080867 7356.9502
+73301.20550331636 3.7082047 7356.7539
+73302.20550336665 3.7084017 7356.9502
+73303.20550341695 3.7084804 7356.5571
+73304.20550346724 3.7085197 7355.9663
+73305.20550351753 3.7085984 7356.7539
+73306.20550356782 3.7086377 7355.9663
+73307.20550361811 3.7086773 7356.9502
+73308.2055036684 3.7087953 7356.1636
+73309.2055037187 3.7089133 7356.9502
+73310.20550376899 3.7091889 7356.7539
+73311.20550381928 3.7093072 7356.9502
+73312.20550386957 3.7094646 7357.541
+73313.20550391986 3.7095039 7355.9663
+73314.20550397015 3.7096615 7356.9502
+73315.20550402044 3.7098582 7356.7539
+73316.20550407073 3.7099371 7356.7539
+73317.20550412103 3.7100158 7356.9502
+73318.20550417132 3.7100945 7355.5728
+73319.20550422161 3.7101731 7356.5571
+73320.2055042719 3.7103701 7357.1475
+73321.20550432219 3.7106063 7357.541
+73322.20550437248 3.7108426 7356.5571
+73323.20550442277 3.711 7355.7695
+73324.20550447307 3.7112362 7356.3604
+73325.20550452336 3.7114725 7356.7539
+73326.20550457365 3.7115905 7356.9502
+73327.20550462394 3.7116299 7357.541
+73328.20550467423 3.7117875 7356.9502
+73329.20550472452 3.7118661 7357.3442
+73330.20550477481 3.7118268 7357.1475
+73331.2055048251 3.7118661 7356.9502
+73332.2055048754 3.7119448 7356.5571
+73333.20550492569 3.7120631 7357.541
+73334.20550497598 3.7121811 7357.9346
+73335.20550502627 3.7122598 7356.5571
+73336.20550507656 3.7124567 7356.9502
+73337.20550512685 3.712496 7356.7539
+73338.20550517715 3.7125354 7357.541
+73339.20550522744 3.7125747 7356.5571
+73340.20550527773 3.7126536 7357.3442
+73341.20550532802 3.7128897 7356.7539
+73342.20550537831 3.7130079 7357.1475
+73343.2055054286 3.7130866 7356.7539
+73344.2055054789 3.7130866 7355.9663
+73345.20550552919 3.7131653 7357.1475
+73346.20550557948 3.7131259 7357.7378
+73347.20550562977 3.7131653 7356.9502
+73348.20550568006 3.7132046 7357.3442
+73349.20550573035 3.7131653 7356.7539
+73350.20550578064 3.7131653 7357.3442
+73351.20550583093 3.7130473 7356.9502
+73352.20550588123 3.7131259 7356.9502
+73353.20550593152 3.7130473 7356.5571
+73354.20550598181 3.7130866 7356.9502
+73355.2055060321 3.7132046 7356.9502
+73356.20550608239 3.7132046 7356.9502
+73357.20550613268 3.7134409 7357.541
+73358.20550618297 3.7133622 7357.541
+73359.20550623327 3.7133229 7357.3442
+73360.20550628356 3.7133229 7356.9502
+73361.20550633385 3.7135589 7356.9502
+73362.20550638414 3.7136378 7356.5571
+73363.20550643443 3.7137952 7356.9502
+73364.20550648472 3.7139134 7357.541
+73365.20550653501 3.7140708 7357.1475
+73366.2055065853 3.7141495 7357.541
+73367.2055066356 3.7141495 7357.3442
+73368.20550668589 3.7142677 7356.9502
+73369.20550673618 3.714504 7356.5571
+73370.20550678647 3.7146614 7356.1636
+73371.20550683676 3.714819 7357.1475
+73372.20550688705 3.7150156 7356.9502
+73373.20550693735 3.715055 7356.7539
+73374.20550698764 3.7151339 7355.9663
+73375.20550703793 3.7152519 7356.9502
+73376.20550708822 3.7150943 7356.5571
+73377.20550713851 3.7151339 7357.541
+73378.2055071888 3.7150943 7356.1636
+73379.2055072391 3.7151339 7357.541
+73380.20550728939 3.7150156 7356.9502
+73381.20550733968 3.714937 7357.3442
+73382.20550738997 3.714819 7356.9502
+73383.20550744026 3.7148976 7357.3442
+73384.20550749055 3.714937 7356.9502
+73385.20550754084 3.7147007 7357.3442
+73386.20550759113 3.7145433 7356.9502
+73387.20550764143 3.7146614 7356.9502
+73388.20550769172 3.7146614 7357.541
+73389.20550774201 3.714819 7356.9502
+73390.2055077923 3.71474 7356.7539
+73391.20550784259 3.7147794 7356.7539
+73392.20550789288 3.7148583 7356.5571
+73393.20550794317 3.7148976 7357.3442
+73394.20550799347 3.714819 7356.9502
+73395.20550804376 3.714937 7356.5571
+73396.20550809405 3.715055 7356.7539
+73397.20550814434 3.7151339 7356.9502
+73398.20550819463 3.7152126 7357.3442
+73399.20550824492 3.7151732 7356.3604
+73400.20550829521 3.7151339 7356.3604
+73401.2055083455 3.7152913 7357.1475
+73402.2055083958 3.7153699 7357.541
+73403.20550844609 3.7156456 7357.3442
+73404.20550849638 3.7158425 7356.7539
+73405.20550854667 3.7157638 7356.7539
+73406.20550859696 3.7158818 7356.9502
+73407.20550864725 3.7158818 7357.541
+73408.20550869755 3.7158818 7357.7378
+73409.20550874784 3.7160394 7357.1475
+73410.20550879813 3.7159998 7356.9502
+73411.20550884842 3.7159212 7356.7539
+73412.20550889871 3.7160788 7356.9502
+73413.205508949 3.7161574 7356.7539
+73414.2055089993 3.7161574 7356.9502
+73415.20550904959 3.7162755 7357.541
+73416.20550909988 3.7163544 7356.3604
+73417.20550915017 3.716433 7356.5571
+73418.20550920046 3.7165904 7356.9502
+73419.20550925075 3.7166297 7357.541
+73420.20550930104 3.716866 7356.9502
+73421.20550935133 3.7169843 7356.5571
+73422.20550940163 3.716866 7356.9502
+73423.20550945192 3.717063 7356.9502
+73424.20550950221 3.7171416 7356.9502
+73425.2055095525 3.7173386 7357.3442
+73426.20550960279 3.7174566 7357.541
+73427.20550965308 3.7176142 7357.1475
+73428.20550970337 3.7176142 7357.3442
+73429.20550975366 3.7179685 7357.3442
+73430.20550980396 3.7179685 7356.9502
+73431.20550985425 3.7180865 7356.7539
+73432.20550990454 3.7182047 7356.9502
+73433.20550995483 3.7183621 7356.3604
+73434.20551000512 3.7186377 7357.7378
+73435.20551005541 3.7188346 7356.9502
+73436.2055101057 3.718874 7356.9502
+73437.205510156 3.7189527 7356.7539
+73438.20551020629 3.7188346 7356.1636
+73439.20551025658 3.718874 7356.9502
+73440.20551030687 3.7188346 7356.9502
+73441.20551035716 3.71911 7356.5571
+73442.20551040745 3.7191889 7357.1475
+73443.20551045774 3.7191889 7357.1475
+73444.20551050804 3.7192283 7356.9502
+73445.20551055833 3.7192676 7356.9502
+73446.20551060862 3.719425 7356.9502
+73447.20551065891 3.7193856 7356.5571
+73448.2055107092 3.7196219 7356.9502
+73449.2055107595 3.7198188 7356.7539
+73450.20551080978 3.7198582 7356.1636
+73451.20551086008 3.7198975 7356.5571
+73452.20551091037 3.7198975 7356.9502
+73453.20551096066 3.7199762 7357.3442
+73454.20551101095 3.7200551 7357.3442
+73455.20551106124 3.7200944 7356.7539
+73456.20551111153 3.7201338 7356.9502
+73457.20551116182 3.7200155 7356.9502
+73458.20551121212 3.7201731 7357.3442
+73459.20551126241 3.7200551 7356.9502
+73460.2055113127 3.7201338 7356.5571
+73461.20551136299 3.7200551 7357.541
+73462.20551141328 3.7201731 7357.1475
+73463.20551146357 3.7202911 7357.3442
+73464.20551151386 3.7203305 7356.9502
+73465.20551156416 3.7203305 7356.3604
+73466.20551161445 3.7203701 7355.9663
+73467.20551166474 3.7203701 7355.3765
+73468.20551171503 3.7203701 7356.5571
+73469.20551176532 3.7201731 7356.9502
+73470.20551181561 3.7202518 7357.541
+73471.2055118659 3.7202125 7357.1475
+73472.2055119162 3.7204094 7357.7378
+73473.20551196649 3.7202911 7357.541
+73474.20551201678 3.7202911 7356.7539
+73475.20551206707 3.7202125 7356.5571
+73476.20551211736 3.7204094 7356.7539
+73477.20551216765 3.7204881 7356.3604
+73478.20551221794 3.7205667 7357.1475
+73479.20551226824 3.720685 7356.1636
+73480.20551231853 3.7206454 7357.541
+73481.20551236882 3.720685 7356.5571
+73482.20551241911 3.720685 7357.3442
+73483.2055124694 3.7205667 7357.3442
+73484.2055125197 3.7204881 7357.1475
+73485.20551256998 3.7204881 7355.9663
+73486.20551262028 3.7204487 7357.1475
+73487.20551267057 3.7204487 7356.7539
+73488.20551272086 3.7204487 7356.7539
+73489.20551277115 3.7204094 7357.1475
+73490.20551282144 3.7203305 7356.7539
+73491.20551287173 3.7202518 7356.7539
+73492.20551292202 3.7201338 7356.9502
+73493.20551297232 3.7200944 7357.3442
+73494.2055130226 3.7202518 7357.7378
+73495.2055130729 3.7202911 7356.3604
+73496.20551312319 3.7204094 7357.1475
+73497.20551317348 3.7204487 7356.1636
+73498.20551322377 3.7205274 7357.3442
+73499.20551327406 3.720685 7356.7539
+73500.20551332436 3.720803 7356.5571
+73501.20551337465 3.7209604 7356.7539
+73502.20551342494 3.7210786 7357.1475
+73503.20551347523 3.7211573 7356.3604
+73504.20551352552 3.7211967 7357.541
+73505.20551357581 3.7213149 7357.1475
+73506.2055136261 3.7216299 7356.5571
+73507.2055136764 3.7216692 7356.9502
+73508.20551372669 3.7217479 7357.3442
+73509.20551377698 3.7217085 7356.3604
+73510.20551382727 3.7217479 7356.9502
+73511.20551387756 3.7219448 7357.541
+73512.20551392785 3.7219448 7356.1636
+73513.20551397814 3.7219448 7356.9502
+73514.20551402844 3.7220628 7356.7539
+73515.20551407873 3.7221808 7357.1475
+73516.20551412902 3.7219841 7356.3604
+73517.20551417931 3.7221022 7356.7539
+73518.2055142296 3.7219055 7356.7539
+73519.20551427989 3.7218266 7357.7378
+73520.20551433018 3.7217085 7357.1475
+73521.20551438048 3.7218659 7356.9502
+73522.20551443077 3.7218266 7357.3442
+73523.20551448106 3.7219055 7356.7539
+73524.20551453135 3.7219448 7356.9502
+73525.20551458164 3.7220235 7356.7539
+73526.20551463193 3.7220628 7356.9502
+73527.20551468222 3.7220235 7356.9502
+73528.20551473252 3.7221415 7356.9502
+73529.2055147828 3.7222204 7357.541
+73530.2055148331 3.7221415 7357.541
+73531.20551488339 3.7222204 7356.3604
+73532.20551493368 3.7221415 7357.1475
+73533.20551498397 3.7223778 7356.9502
+73534.20551503426 3.7225354 7357.3442
+73535.20551508456 3.7225747 7357.1475
+73536.20551513485 3.7224565 7357.3442
+73537.20551518514 3.7225354 7356.3604
+73538.20551523543 3.7226927 7356.5571
+73539.20551528572 3.7227321 7356.5571
+73540.20551533601 3.7227321 7356.7539
+73541.2055153863 3.722614 7356.5571
+73542.2055154366 3.7224958 7356.5571
+73543.20551548689 3.7224565 7356.3604
+73544.20551553718 3.7225354 7356.9502
+73545.20551558747 3.7223778 7356.5571
+73546.20551563776 3.7224171 7356.9502
+73547.20551568805 3.7224171 7357.3442
+73548.20551573834 3.7223778 7356.5571
+73549.20551578864 3.7224565 7357.1475
+73550.20551583893 3.7224171 7357.1475
+73551.20551588922 3.7226534 7355.9663
+73552.20551593951 3.7225747 7356.1636
+73553.2055159898 3.7228897 7356.7539
+73554.20551604009 3.7229683 7356.9502
+73555.20551609038 3.7231259 7356.7539
+73556.20551614068 3.7231259 7356.7539
+73557.20551619097 3.7230864 7357.1475
+73558.20551624126 3.723047 7356.7539
+73559.20551629155 3.7231259 7356.5571
+73560.20551634184 3.7232046 7357.1475
+73561.20551639213 3.7232046 7356.5571
+73562.20551644242 3.7232833 7356.5571
+73563.20551649272 3.7232833 7356.1636
+73564.205516543 3.7234802 7357.1475
+73565.2055165933 3.7234013 7356.5571
+73566.20551664359 3.7235589 7356.7539
+73567.20551669388 3.7235196 7356.3604
+73568.20551674417 3.7236376 7357.7378
+73569.20551679446 3.7236769 7357.9346
+73570.20551684476 3.7237952 7357.3442
+73571.20551689505 3.7238739 7356.5571
+73572.20551694534 3.7239132 7357.1475
+73573.20551699563 3.7239919 7356.9502
+73574.20551704592 3.7239525 7356.9502
+73575.20551709621 3.7241495 7356.7539
+73576.2055171465 3.7242281 7356.3604
+73577.2055171968 3.7243462 7357.1475
+73578.20551724709 3.7244251 7357.7378
+73579.20551729738 3.7243857 7356.7539
+73580.20551734767 3.7245038 7357.1475
+73581.20551739796 3.7244644 7356.5571
+73582.20551744825 3.7243857 7357.3442
+73583.20551749854 3.7243462 7357.541
+73584.20551754883 3.7243068 7357.1475
+73585.20551759913 3.7241495 7357.3442
+73586.20551764942 3.7241101 7357.541
+73587.20551769971 3.7240708 7356.7539
+73588.20551775 3.7243068 7356.9502
+73589.20551780029 3.7243857 7356.9502
+73590.20551785058 3.7244251 7356.7539
+73591.20551790087 3.7244644 7356.7539
+73592.20551795117 3.7245824 7356.9502
+73593.20551800146 3.7246611 7356.1636
+73594.20551805175 3.72474 7356.3604
+73595.20551810204 3.7246611 7356.9502
+73596.20551815233 3.72474 7357.9346
+73597.20551820262 3.7247794 7357.9346
+73598.20551825291 3.7248187 7356.3604
+73599.2055183032 3.7249763 7356.1636
+73600.2055183535 3.7250156 7356.9502
+73601.20551840379 3.7250156 7356.5571
+73602.20551845408 3.7250156 7357.3442
+73603.20551850437 3.7251337 7356.9502
+73604.20551855466 3.7252123 7356.7539
+73605.20551860495 3.7252913 7357.1475
+73606.20551865525 3.7252913 7357.1475
+73607.20551870554 3.7253306 7356.7539
+73608.20551875583 3.7252913 7356.5571
+73609.20551880612 3.7254093 7356.9502
+73610.20551885641 3.7255273 7356.5571
+73611.2055189067 3.7256062 7356.5571
+73612.205518957 3.7256455 7357.3442
+73613.20551900729 3.7259605 7356.7539
+73614.20551905758 3.7260785 7356.9502
+73615.20551910787 3.7262361 7356.7539
+73616.20551915816 3.7262754 7358.3286
+73617.20551920845 3.7264721 7358.3286
+73618.20551925874 3.7265511 7355.7695
+73619.20551930903 3.7265904 7356.3604
+73620.20551935933 3.7265904 7356.3604
+73621.20551940962 3.7267478 7357.3442
+73622.20551945991 3.7267871 7356.5571
+73623.2055195102 3.7269053 7356.7539
+73624.20551956049 3.726866 7356.3604
+73625.20551961078 3.726866 7356.5571
+73626.20551966107 3.7269053 7356.5571
+73627.20551971137 3.7269053 7357.7378
+73628.20551976166 3.726984 7357.3442
+73629.20551981195 3.7271416 7357.9346
+73630.20551986224 3.7272203 7356.7539
+73631.20551991253 3.727299 7357.1475
+73632.20551996282 3.7273777 7357.1475
+73633.20552001311 3.7273777 7356.3604
+73634.2055200634 3.7273383 7356.7539
+73635.2055201137 3.7273383 7357.1475
+73636.20552016399 3.7273777 7356.5571
+73637.20552021428 3.7273383 7356.3604
+73638.20552026457 3.7273383 7356.5571
+73639.20552031486 3.7274566 7356.9502
+73640.20552036515 3.727417 7357.541
+73641.20552041545 3.727417 7355.5728
+73642.20552046574 3.7273777 7357.3442
+73643.20552051603 3.7274959 7356.3604
+73644.20552056632 3.7275746 7356.9502
+73645.20552061661 3.7277319 7355.9663
+73646.2055206669 3.7276139 7356.7539
+73647.2055207172 3.7273777 7357.3442
+73648.20552076749 3.727417 7356.9502
+73649.20552081778 3.727299 7356.7539
+73650.20552086807 3.7272203 7357.1475
+73651.20552091836 3.7272596 7357.1475
+73652.20552096865 3.7272203 7356.5571
+73653.20552101894 3.7272203 7357.541
+73654.20552106923 3.727299 7356.7539
+73655.20552111953 3.7273777 7357.7378
+73656.20552116982 3.727299 7356.3604
+73657.20552122011 3.727181 7356.9502
+73658.2055212704 3.7273383 7357.1475
+73659.20552132069 3.727417 7356.7539
+73660.20552137098 3.7275352 7356.7539
+73661.20552142127 3.7275352 7356.9502
+73662.20552147157 3.7276533 7356.7539
+73663.20552152186 3.7275746 7356.7539
+73664.20552157215 3.7276139 7356.9502
+73665.20552162244 3.7278109 7356.5571
+73666.20552167273 3.7278502 7357.541
+73667.20552172302 3.7278895 7357.1475
+73668.20552177331 3.7280469 7357.9346
+73669.2055218236 3.7281651 7356.3604
+73670.2055218739 3.7281258 7356.5571
+73671.20552192419 3.7281258 7356.5571
+73672.20552197448 3.7282832 7356.9502
+73673.20552202477 3.7283225 7356.5571
+73674.20552207506 3.7284801 7356.9502
+73675.20552212535 3.7284408 7356.7539
+73676.20552217565 3.7285981 7356.9502
+73677.20552222594 3.7285588 7357.1475
+73678.20552227623 3.7284408 7356.7539
+73679.20552232652 3.7284408 7356.7539
+73680.20552237681 3.7285194 7356.7539
+73681.2055224271 3.7285194 7356.5571
+73682.2055224774 3.7285981 7356.9502
+73683.20552252769 3.728677 7356.5571
+73684.20552257798 3.7287164 7356.7539
+73685.20552262827 3.7287557 7356.3604
+73686.20552267856 3.7288344 7356.7539
+73687.20552272885 3.7287557 7357.1475
+73688.20552277914 3.7290313 7356.3604
+73689.20552282943 3.728992 7357.7378
+73690.20552287973 3.7290313 7356.1636
+73691.20552293002 3.7291493 7357.541
+73692.20552298031 3.7292674 7357.3442
+73693.2055230306 3.7294643 7356.7539
+73694.20552308089 3.7294643 7356.5571
+73695.20552313118 3.7295823 7357.1475
+73696.20552318147 3.7294643 7357.541
+73697.20552323177 3.7296219 7357.9346
+73698.20552328206 3.7295823 7356.7539
+73699.20552333235 3.7296219 7356.1636
+73700.20552338264 3.7295823 7357.3442
+73701.20552343293 3.7296219 7356.3604
+73702.20552348322 3.7295823 7356.3604
+73703.20552353351 3.7295823 7357.3442
+73704.2055235838 3.7297006 7356.7539
+73705.2055236341 3.7295823 7357.9346
+73706.20552368439 3.7297399 7356.1636
+73707.20552373468 3.7297006 7356.5571
+73708.20552378497 3.7297792 7356.9502
+73709.20552383526 3.7298973 7356.3604
+73710.20552388555 3.7300155 7356.5571
+73711.20552393585 3.7300942 7356.9502
+73712.20552398614 3.7302518 7356.7539
+73713.20552403643 3.7304091 7356.7539
+73714.20552408672 3.7302518 7356.7539
+73715.20552413701 3.7302518 7356.7539
+73716.2055241873 3.7302518 7357.7378
+73717.2055242376 3.7301335 7356.7539
+73718.20552428789 3.7300942 7357.7378
+73719.20552433818 3.7302518 7357.3442
+73720.20552438847 3.7302518 7356.9502
+73721.20552443876 3.7304485 7357.1475
+73722.20552448905 3.7305667 7357.541
+73723.20552453934 3.7305274 7356.9502
+73724.20552458963 3.7306454 7356.9502
+73725.20552463992 3.7307634 7357.3442
+73726.20552469022 3.7306848 7356.9502
+73727.20552474051 3.7306848 7356.9502
+73728.2055247908 3.7308028 7356.5571
+73729.20552484109 3.7308817 7356.5571
+73730.20552489138 3.7308028 7357.3442
+73731.20552494167 3.7308028 7357.1475
+73732.20552499196 3.7308817 7357.541
+73733.20552504226 3.7308424 7357.3442
+73734.20552509255 3.7308424 7356.7539
+73735.20552514284 3.7308817 7357.541
+73736.20552519313 3.7308028 7357.1475
+73737.20552524342 3.7307241 7356.7539
+73738.20552529371 3.7307241 7356.7539
+73739.205525344 3.7307241 7356.9502
+73740.2055253943 3.7306454 7356.9502
+73741.20552544459 3.7306848 7357.1475
+73742.20552549488 3.7307241 7356.9502
+73743.20552554517 3.7308424 7356.5571
+73744.20552559546 3.730921 7357.1475
+73745.20552564575 3.730921 7356.3604
+73746.20552569604 3.731039 7356.7539
+73747.20552574634 3.731039 7357.9346
+73748.20552579663 3.7311177 7356.7539
+73749.20552584692 3.7311177 7356.9502
+73750.20552589721 3.731039 7356.7539
+73751.2055259475 3.7311573 7356.7539
+73752.2055259978 3.731236 7357.1475
+73753.20552604808 3.7314327 7356.3604
+73754.20552609838 3.7314327 7357.3442
+73755.20552614867 3.7314723 7357.9346
+73756.20552619896 3.7316296 7357.7378
+73757.20552624925 3.7317476 7356.5571
+73758.20552629954 3.7319446 7357.7378
+73759.20552634983 3.7319446 7356.7539
+73760.20552640012 3.7319446 7356.1636
+73761.20552645042 3.7320232 7357.541
+73762.20552650071 3.7320232 7357.1475
+73763.205526551 3.7320628 7356.5571
+73764.20552660129 3.7320628 7356.5571
+73765.20552665158 3.7320628 7357.9346
+73766.20552670187 3.7320628 7356.9502
+73767.20552675216 3.7320628 7356.7539
+73768.20552680246 3.7320628 7356.7539
+73769.20552685275 3.7321022 7356.9502
+73770.20552690304 3.7321808 7356.3604
+73771.20552695333 3.7322989 7356.7539
+73772.20552700362 3.7324564 7356.5571
+73773.20552705391 3.7324564 7356.7539
+73774.2055271042 3.7325745 7357.1475
+73775.2055271545 3.7326927 7356.9502
+73776.20552720479 3.7325745 7356.7539
+73777.20552725508 3.7326927 7356.9502
+73778.20552730537 3.7326927 7356.3604
+73779.20552735566 3.7325351 7357.1475
+73780.20552740595 3.7326531 7356.9502
+73781.20552745624 3.7326927 7356.9502
+73782.20552750654 3.7326927 7357.3442
+73783.20552755683 3.7328107 7356.7539
+73784.20552760712 3.7327714 7356.3604
+73785.20552765741 3.7327714 7356.1636
+73786.2055277077 3.7327714 7357.1475
+73787.205527758 3.7327714 7357.1475
+73788.20552780828 3.7326531 7356.9502
+73789.20552785858 3.7327714 7357.541
+73790.20552790887 3.7326531 7357.1475
+73791.20552795916 3.7326531 7356.9502
+73792.20552800945 3.7327714 7356.5571
+73793.20552805974 3.7328107 7356.5571
+73794.20552811003 3.7328894 7357.1475
+73795.20552816032 3.7329681 7356.9502
+73796.20552821062 3.7327321 7357.1475
+73797.2055282609 3.7328501 7356.9502
+73798.2055283112 3.7329681 7357.541
+73799.20552836149 3.7329681 7356.9502
+73800.20552841178 3.7330077 7356.9502
+73801.20552846207 3.733165 7356.3604
+73802.20552851236 3.7332044 7356.1636
+73803.20552856266 3.733283 7356.7539
+73804.20552861295 3.7333226 7356.9502
+73805.20552866324 3.7335587 7357.541
+73806.20552871353 3.733598 7357.541
+73807.20552876382 3.7336376 7356.3604
+73808.20552881411 3.7336769 7357.1475
+73809.2055288644 3.733598 7357.7378
+73810.2055289147 3.7336769 7356.9502
+73811.20552896499 3.7336376 7356.1636
+73812.20552901528 3.7336769 7356.3604
+73813.20552906557 3.7337949 7356.9502
+73814.20552911586 3.7338736 7356.7539
+73815.20552916615 3.7338736 7356.5571
+73816.20552921644 3.7339132 7357.541
+73817.20552926674 3.7339132 7356.3604
+73818.20552931703 3.7341099 7356.7539
+73819.20552936732 3.7341492 7356.9502
+73820.20552941761 3.7341492 7356.7539
+73821.2055294679 3.7342675 7356.1636
+73822.20552951819 3.7343462 7356.3604
+73823.20552956848 3.7344248 7356.7539
+73824.20552961878 3.7345035 7357.3442
+73825.20552966907 3.7345431 7356.9502
+73826.20552971936 3.7346218 7357.3442
+73827.20552976965 3.7345824 7355.9663
+73828.20552981994 3.7345431 7356.9502
+73829.20552987023 3.7347398 7356.3604
+73830.20552992052 3.7347004 7357.3442
+73831.20552997082 3.7347398 7355.9663
+73832.2055300211 3.7346611 7356.9502
+73833.2055300714 3.7346218 7357.3442
+73834.20553012169 3.7346611 7356.7539
+73835.20553017198 3.734858 7356.7539
+73836.20553022227 3.7348974 7356.3604
+73837.20553027256 3.7348185 7356.3604
+73838.20553032286 3.7349367 7355.9663
+73839.20553037315 3.7350547 7357.1475
+73840.20553042344 3.7350941 7356.5571
+73841.20553047373 3.7350154 7356.9502
+73842.20553052402 3.735173 7356.9502
+73843.20553057431 3.7351334 7356.7539
+73844.2055306246 3.735173 7356.7539
+73845.2055306749 3.7352123 7356.3604
+73846.20553072519 3.735173 7356.7539
+73847.20553077548 3.7352123 7357.9346
+73848.20553082577 3.735291 7356.1636
+73849.20553087606 3.735173 7356.7539
+73850.20553092635 3.7353303 7356.5571
+73851.20553097664 3.7353303 7357.1475
+73852.20553102694 3.7354484 7356.5571
+73853.20553107723 3.7355273 7356.7539
+73854.20553112752 3.7355273 7356.3604
+73855.20553117781 3.7356453 7356.5571
+73856.2055312281 3.7356846 7356.9502
+73857.20553127839 3.7358029 7357.1475
+73858.20553132868 3.735724 7356.7539
+73859.20553137898 3.7357635 7357.3442
+73860.20553142927 3.735724 7356.7539
+73861.20553147956 3.7358422 7358.3286
+73862.20553152985 3.7359996 7356.7539
+73863.20553158014 3.7360389 7356.7539
+73864.20553163043 3.7363539 7357.1475
+73865.20553168072 3.7364328 7357.541
+73866.20553173102 3.7363935 7357.3442
+73867.2055317813 3.7366295 7356.7539
+73868.2055318316 3.7365901 7356.9502
+73869.20553188189 3.7367084 7356.7539
+73870.20553193218 3.7367871 7356.9502
+73871.20553198247 3.7367477 7356.3604
+73872.20553203276 3.7369444 7357.541
+73873.20553208306 3.7369444 7357.1475
+73874.20553213335 3.7369051 7357.1475
+73875.20553218364 3.7369838 7357.1475
+73876.20553223393 3.7369838 7356.7539
+73877.20553228422 3.7370627 7357.7378
+73878.20553233451 3.737102 7356.9502
+73879.2055323848 3.737102 7357.1475
+73880.2055324351 3.7372594 7357.7378
+73881.20553248539 3.73722 7356.9502
+73882.20553253568 3.7373776 7356.9502
+73883.20553258597 3.7374563 7357.3442
+73884.20553263626 3.7375743 7356.5571
+73885.20553268655 3.7376139 7356.9502
+73886.20553273684 3.7376533 7356.7539
+73887.20553278713 3.7378106 7356.3604
+73888.20553283743 3.7377713 7357.3442
+73889.20553288772 3.7379289 7357.1475
+73890.20553293801 3.7378893 7356.7539
+73891.2055329883 3.7380469 7357.3442
+73892.20553303859 3.7379289 7356.9502
+73893.20553308888 3.7380469 7356.9502
+73894.20553313917 3.7382042 7356.9502
+73895.20553318947 3.7380862 7356.7539
+73896.20553323976 3.7382438 7357.1475
+73897.20553329005 3.7383225 7356.7539
+73898.20553334034 3.7384405 7357.541
+73899.20553339063 3.7385588 7356.7539
+73900.20553344092 3.7386374 7357.1475
+73901.20553349121 3.7386768 7355.9663
+73902.2055335415 3.7388737 7356.5571
+73903.2055335918 3.7389131 7356.5571
+73904.20553364209 3.7389131 7357.3442
+73905.20553369238 3.7390311 7357.541
+73906.20553374267 3.7389917 7357.3442
+73907.20553379296 3.7390704 7356.5571
+73908.20553384325 3.7390704 7356.9502
+73909.20553389355 3.7389524 7356.9502
+73910.20553394384 3.7390704 7357.1475
+73911.20553399413 3.7390704 7357.1475
+73912.20553404442 3.7391491 7357.1475
+73913.20553409471 3.7391098 7356.1636
+73914.205534145 3.7391098 7356.7539
+73915.2055341953 3.7391491 7357.3442
+73916.20553424559 3.7392673 7357.3442
+73917.20553429588 3.7394247 7357.1475
+73918.20553434617 3.7396216 7356.9502
+73919.20553439646 3.7397792 7357.541
+73920.20553444675 3.7398973 7356.9502
+73921.20553449704 3.7398973 7356.9502
+73922.20553454733 3.7399366 7356.7539
+73923.20553459763 3.7401729 7356.3604
+73924.20553464792 3.7401335 7356.9502
+73925.20553469821 3.7400942 7357.1475
+73926.2055347485 3.7401335 7355.9663
+73927.20553479879 3.7403302 7356.5571
+73928.20553484908 3.7401335 7356.5571
+73929.20553489937 3.7402909 7357.1475
+73930.20553494967 3.7403302 7356.3604
+73931.20553499996 3.7404091 7356.7539
+73932.20553505025 3.7404091 7356.7539
+73933.20553510054 3.7404091 7356.9502
+73934.20553515083 3.7405665 7356.7539
+73935.20553520112 3.7405272 7356.7539
+73936.20553525141 3.7406452 7356.5571
+73937.2055353017 3.7406058 7357.1475
+73938.205535352 3.7405272 7356.9502
+73939.20553540229 3.7406058 7356.1636
+73940.20553545258 3.7405665 7356.5571
+73941.20553550287 3.7404878 7355.9663
+73942.20553555316 3.7404091 7357.1475
+73943.20553560345 3.7405272 7356.9502
+73944.20553565375 3.7405665 7356.7539
+73945.20553570404 3.7404091 7357.3442
+73946.20553575433 3.7404485 7356.9502
+73947.20553580462 3.7405665 7356.5571
+73948.20553585491 3.7405665 7356.5571
+73949.2055359052 3.7406058 7356.7539
+73950.2055359555 3.7407634 7356.9502
+73951.20553600579 3.7406845 7357.541
+73952.20553605608 3.7405665 7357.1475
+73953.20553610637 3.7406058 7358.1318
+73954.20553615666 3.7405665 7356.9502
+73955.20553620695 3.7404878 7357.9346
+73956.20553625724 3.7404485 7356.5571
+73957.20553630753 3.7404091 7356.5571
+73958.20553635783 3.7404091 7356.9502
+73959.20553640812 3.7404091 7356.9502
+73960.20553645841 3.7405665 7357.1475
+73961.2055365087 3.7405272 7356.5571
+73962.20553655899 3.7406058 7356.7539
+73963.20553660928 3.7406452 7356.9502
+73964.20553665957 3.7408421 7356.9502
+73965.20553670987 3.7408028 7356.7539
+73966.20553676016 3.7409997 7356.9502
+73967.20553681045 3.7409997 7356.3604
+73968.20553686074 3.7411177 7356.9502
+73969.20553691103 3.7411571 7356.5571
+73970.20553696132 3.7413146 7357.3442
+73971.20553701161 3.7411964 7357.1475
+73972.2055370619 3.7413146 7356.7539
+73973.2055371122 3.7413933 7356.7539
+73974.20553716249 3.741472 7357.3442
+73975.20553721278 3.7415507 7356.9502
+73976.20553726307 3.7415507 7357.1475
+73977.20553731336 3.741787 7357.3442
+73978.20553736365 3.7417476 7357.1475
+73979.20553741395 3.7419839 7357.541
+73980.20553746424 3.741905 7357.3442
+73981.20553751453 3.7420626 7357.1475
+73982.20553756482 3.7421806 7357.1475
+73983.20553761511 3.7422988 7356.9502
+73984.2055376654 3.7422595 7356.5571
+73985.2055377157 3.7423382 7356.9502
+73986.20553776599 3.7424562 7356.7539
+73987.20553781628 3.7424955 7356.5571
+73988.20553786657 3.7426138 7356.7539
+73989.20553791686 3.7425349 7356.5571
+73990.20553796715 3.7425745 7357.1475
+73991.20553801744 3.7424562 7356.9502
+73992.20553806773 3.7425745 7356.9502
+73993.20553811803 3.7425745 7356.9502
+73994.20553816832 3.7424955 7356.7539
+73995.20553821861 3.7424955 7356.9502
+73996.2055382689 3.7425745 7355.9663
+73997.20553831919 3.7425349 7356.7539
+73998.20553836948 3.7426138 7357.3442
+73999.20553841977 3.7426138 7357.3442
+74000.20553847007 3.7426925 7356.7539
+74001.20553852036 3.7427711 7357.1475
+74002.20553857065 3.7428894 7357.3442
+74003.20553862094 3.7429287 7355.5728
+74004.20553867123 3.7428501 7356.5571
+74005.20553872152 3.7430074 7356.9502
+74006.20553877181 3.7430468 7356.9502
+74007.2055388221 3.7431254 7356.5571
+74008.2055388724 3.7430468 7357.1475
+74009.20553892269 3.7432044 7356.3604
+74010.20553897298 3.743283 7356.9502
+74011.20553902327 3.743283 7356.1636
+74012.20553907356 3.7433224 7356.1636
+74013.20553912385 3.7433617 7356.7539
+74014.20553917415 3.74348 7355.9663
+74015.20553922444 3.7435586 7357.1475
+74016.20553927473 3.7436373 7356.1636
+74017.20553932502 3.7437553 7357.3442
+74018.20553937531 3.7437949 7356.9502
+74019.2055394256 3.743716 7356.7539
+74020.2055394759 3.743716 7357.3442
+74021.20553952619 3.7437553 7356.3604
+74022.20553957648 3.7436767 7357.1475
+74023.20553962677 3.743716 7357.7378
+74024.20553967706 3.7436373 7357.1475
+74025.20553972735 3.743716 7356.9502
+74026.20553977764 3.7438736 7357.1475
+74027.20553982793 3.7439129 7357.7378
+74028.20553987822 3.744031 7356.7539
+74029.20553992852 3.7441099 7356.1636
+74030.20553997881 3.7441492 7357.541
+74031.2055400291 3.7443459 7356.7539
+74032.20554007939 3.7443852 7355.9663
+74033.20554012968 3.7443459 7356.5571
+74034.20554017997 3.7443459 7357.3442
+74035.20554023026 3.7442279 7356.3604
+74036.20554028056 3.7443459 7357.3442
+74037.20554033085 3.7442672 7357.541
+74038.20554038114 3.7442672 7356.5571
+74039.20554043143 3.7440703 7356.7539
+74040.20554048172 3.7441492 7357.1475
+74041.20554053201 3.7440703 7357.3442
+74042.2055405823 3.7441492 7356.7539
+74043.2055406326 3.7441492 7356.5571
+74044.20554068289 3.7441885 7356.3604
+74045.20554073318 3.7441099 7356.5571
+74046.20554078347 3.7443066 7356.1636
+74047.20554083376 3.7443066 7357.3442
+74048.20554088405 3.7442672 7356.7539
+74049.20554093434 3.7443852 7356.9502
+74050.20554098464 3.7442672 7356.9502
+74051.20554103493 3.7443852 7357.1475
+74052.20554108522 3.7443852 7356.9502
+74053.20554113551 3.7445035 7357.1475
+74054.2055411858 3.7445035 7357.1475
+74055.2055412361 3.7447398 7356.5571
+74056.20554128638 3.7448184 7356.9502
+74057.20554133668 3.7448971 7357.3442
+74058.20554138697 3.7450154 7356.9502
+74059.20554143726 3.7450941 7357.3442
+74060.20554148755 3.7452908 7355.9663
+74061.20554153784 3.7452121 7356.5571
+74062.20554158813 3.7452908 7356.9502
+74063.20554163842 3.7454484 7356.1636
+74064.20554168872 3.7454877 7356.7539
+74065.20554173901 3.745527 7357.1475
+74066.2055417893 3.7457633 7356.5571
+74067.20554183959 3.7457633 7357.1475
+74068.20554188988 3.7458026 7357.1475
+74069.20554194017 3.7458813 7356.3604
+74070.20554199046 3.7459207 7357.3442
+74071.20554204076 3.7459996 7356.3604
+74072.20554209105 3.7459602 7357.3442
+74073.20554214134 3.7461176 7356.5571
+74074.20554219163 3.7461176 7357.7378
+74075.20554224192 3.7461963 7356.7539
+74076.20554229221 3.7461176 7357.1475
+74077.2055423425 3.7462356 7356.7539
+74078.2055423928 3.7461569 7356.7539
+74079.20554244309 3.7461963 7356.5571
+74080.20554249338 3.7462752 7357.7378
+74081.20554254367 3.7463539 7356.7539
+74082.20554259396 3.7463932 7356.9502
+74083.20554264425 3.7465112 7357.1475
+74084.20554269454 3.7466295 7357.541
+74085.20554274484 3.7465508 7356.1636
+74086.20554279513 3.7467868 7356.9502
+74087.20554284542 3.7468657 7356.9502
+74088.20554289571 3.7469838 7356.9502
+74089.205542946 3.7470624 7355.9663
+74090.2055429963 3.7471411 7357.1475
+74091.20554304658 3.74722 7356.7539
+74092.20554309688 3.7473774 7357.1475
+74093.20554314717 3.7474561 7356.9502
+74094.20554319746 3.7474957 7357.7378
+74095.20554324775 3.7474957 7357.3442
+74096.20554329804 3.7474167 7357.1475
+74097.20554334833 3.7475743 7356.3604
+74098.20554339862 3.747653 7356.7539
+74099.20554344892 3.747653 7357.3442
+74100.2055434992 3.7476923 7357.1475
+74101.2055435495 3.7477317 7356.5571
+74102.20554359979 3.7476923 7356.3604
+74103.20554365008 3.7478106 7356.5571
+74104.20554370037 3.7478106 7356.5571
+74105.20554375066 3.7478499 7357.541
+74106.20554380096 3.7478893 7356.7539
+74107.20554385125 3.7478893 7356.9502
+74108.20554390154 3.747968 7357.3442
+74109.20554395183 3.7481649 7356.7539
+74110.20554400212 3.7481256 7356.9502
+74111.20554405241 3.7482829 7356.5571
+74112.2055441027 3.7483616 7356.9502
+74113.205544153 3.7484405 7357.3442
+74114.20554420329 3.7485192 7357.541
+74115.20554425358 3.7484405 7357.1475
+74116.20554430387 3.7487161 7356.1636
+74117.20554435416 3.7487161 7356.9502
+74118.20554440445 3.7486765 7356.9502
+74119.20554445474 3.7488735 7355.7695
+74120.20554450504 3.7488341 7357.3442
+74121.20554455533 3.7489522 7357.3442
+74122.20554460562 3.7489915 7356.5571
+74123.20554465591 3.7491491 7357.1475
+74124.2055447062 3.749464 7356.7539
+74125.20554475649 3.749346 7357.3442
+74126.20554480678 3.7494247 7356.5571
+74127.20554485708 3.7495427 7357.3442
+74128.20554490737 3.7495821 7355.9663
+74129.20554495766 3.749661 7357.1475
+74130.20554500795 3.749779 7356.7539
+74131.20554505824 3.749779 7357.3442
+74132.20554510853 3.7500546 7356.9502
+74133.20554515882 3.7499759 7355.7695
+74134.20554520912 3.7500153 7357.1475
+74135.2055452594 3.7501333 7356.7539
+74136.2055453097 3.750212 7357.1475
+74137.20554535999 3.7503695 7356.3604
+74138.20554541028 3.7503695 7357.1475
+74139.20554546057 3.7504482 7356.3604
+74140.20554551086 3.7506452 7355.9663
+74141.20554556116 3.7506845 7357.3442
+74142.20554561145 3.7506845 7356.5571
+74143.20554566174 3.7506845 7356.5571
+74144.20554571203 3.7508814 7356.3604
+74145.20554576232 3.7509208 7356.3604
+74146.20554581261 3.7509601 7356.7539
+74147.2055458629 3.7509995 7356.9502
+74148.2055459132 3.7508814 7357.1475
+74149.20554596349 3.7509208 7356.5571
+74150.20554601378 3.7510388 7356.7539
+74151.20554606407 3.7509995 7357.541
+74152.20554611436 3.7511568 7356.3604
+74153.20554616465 3.7512357 7357.3442
+74154.20554621494 3.7512357 7357.3442
+74155.20554626524 3.7513537 7357.3442
+74156.20554631553 3.7515113 7357.1475
+74157.20554636582 3.75159 7356.3604
+74158.20554641611 3.7517869 7356.9502
+74159.2055464664 3.751708 7355.9663
+74160.20554651669 3.751708 7356.9502
+74161.20554656698 3.7517474 7356.1636
+74162.20554661728 3.7518656 7357.1475
+74163.20554666757 3.7518656 7356.5571
+74164.20554671786 3.7520623 7356.9502
+74165.20554676815 3.7521019 7356.7539
+74166.20554681844 3.7520623 7356.9502
+74167.20554686873 3.7522199 7356.9502
+74168.20554691902 3.7522593 7356.9502
+74169.20554696932 3.7522593 7357.3442
+74170.2055470196 3.7522199 7356.7539
+74171.2055470699 3.7522986 7357.1475
+74172.20554712019 3.7522593 7356.9502
+74173.20554717048 3.7523379 7356.7539
+74174.20554722077 3.7523773 7356.1636
+74175.20554727106 3.7523773 7356.1636
+74176.20554732135 3.7523379 7356.9502
+74177.20554737165 3.7524955 7357.1475
+74178.20554742194 3.7525349 7356.7539
+74179.20554747223 3.7526529 7356.5571
+74180.20554752252 3.7526135 7356.1636
+74181.20554757281 3.7526529 7357.1475
+74182.2055476231 3.7527711 7357.9346
+74183.2055476734 3.7528892 7356.3604
+74184.20554772369 3.7528892 7356.9502
+74185.20554777398 3.7528892 7357.3442
+74186.20554782427 3.7529678 7357.1475
+74187.20554787456 3.7530468 7357.1475
+74188.20554792485 3.7530468 7356.7539
+74189.20554797514 3.7531254 7357.1475
+74190.20554802543 3.7531648 7356.7539
+74191.20554807573 3.7532828 7357.3442
+74192.20554812602 3.7532828 7357.9346
+74193.20554817631 3.7532434 7356.7539
+74194.2055482266 3.7533617 7356.9502
+74195.20554827689 3.7532828 7356.7539
+74196.20554832718 3.7532828 7357.1475
+74197.20554837747 3.7534404 7357.1475
+74198.20554842777 3.753401 7357.3442
+74199.20554847806 3.7535584 7356.5571
+74200.20554852835 3.7535584 7356.9502
+74201.20554857864 3.7535191 7356.7539
+74202.20554862893 3.7536767 7357.541
+74203.20554867922 3.753716 7355.5728
+74204.20554872951 3.7537553 7356.9502
+74205.2055487798 3.7537947 7356.9502
+74206.2055488301 3.7539916 7356.7539
+74207.20554888039 3.7539127 7356.3604
+74208.20554893068 3.7539127 7356.7539
+74209.20554898097 3.7541096 7357.1475
+74210.20554903126 3.754149 7357.3442
+74211.20554908155 3.7541096 7357.1475
+74212.20554913185 3.7542276 7357.1475
+74213.20554918214 3.7543066 7356.7539
+74214.20554923243 3.7543852 7356.7539
+74215.20554928272 3.7544246 7356.1636
+74216.20554933301 3.7543852 7356.9502
+74217.2055493833 3.7545426 7357.1475
+74218.2055494336 3.7547002 7357.541
+74219.20554948389 3.7547789 7357.1475
+74220.20554953418 3.7546608 7356.5571
+74221.20554958447 3.7547789 7357.1475
+74222.20554963476 3.7548575 7356.9502
+74223.20554968505 3.7548971 7356.9502
+74224.20554973534 3.7548575 7356.3604
+74225.20554978563 3.7548971 7356.9502
+74226.20554983593 3.7548182 7356.9502
+74227.20554988622 3.7548575 7357.1475
+74228.20554993651 3.7550938 7357.541
+74229.2055499868 3.7551332 7357.3442
+74230.20555003709 3.7550938 7357.1475
+74231.20555008738 3.7552514 7357.1475
+74232.20555013767 3.7552514 7356.9502
+74233.20555018797 3.7553301 7356.7539
+74234.20555023826 3.7554088 7356.7539
+74235.20555028855 3.7554481 7357.1475
+74236.20555033884 3.7554481 7357.1475
+74237.20555038913 3.755527 7356.5571
+74238.20555043942 3.7554481 7356.5571
+74239.20555048971 3.7555664 7356.3604
+74240.20555054 3.7556844 7356.7539
+74241.2055505903 3.7556844 7356.1636
+74242.20555064059 3.7558026 7356.9502
+74243.20555069088 3.7558813 7356.3604
+74244.20555074117 3.75596 7356.7539
+74245.20555079146 3.7558026 7356.9502
+74246.20555084175 3.7560387 7356.7539
+74247.20555089205 3.7560387 7357.3442
+74248.20555094234 3.756078 7357.3442
+74249.20555099263 3.756078 7357.541
+74250.20555104292 3.7561569 7356.3604
+74251.20555109321 3.7561963 7356.5571
+74252.2055511435 3.7561176 7356.9502
+74253.2055511938 3.7561963 7356.5571
+74254.20555124409 3.7561963 7356.9502
+74255.20555129438 3.7562356 7356.3604
+74256.20555134467 3.7563143 7357.541
+74257.20555139496 3.7564719 7356.9502
+74258.20555144525 3.7565112 7356.1636
+74259.20555149554 3.7565899 7356.9502
+74260.20555154583 3.7567079 7356.9502
+74261.20555159613 3.7567868 7356.1636
+74262.20555164642 3.7568655 7357.7378
+74263.20555169671 3.7569048 7356.7539
+74264.205551747 3.7569835 7357.1475
+74265.20555179729 3.7570229 7356.3604
+74266.20555184758 3.7571805 7357.3442
+74267.20555189787 3.7572198 7357.3442
+74268.20555194817 3.7572985 7356.3604
+74269.20555199846 3.757338 7357.3442
+74270.20555204875 3.7573774 7356.5571
+74271.20555209904 3.7574561 7356.9502
+74272.20555214933 3.7576134 7356.9502
+74273.20555219962 3.757653 7356.9502
+74274.20555224991 3.7577317 7356.7539
+74275.2055523002 3.7578104 7356.9502
+74276.2055523505 3.7578497 7356.9502
+74277.20555240079 3.7579284 7356.7539
+74278.20555245108 3.7579284 7356.7539
+74279.20555250137 3.7580073 7357.1475
+74280.20555255166 3.7579284 7356.7539
+74281.20555260195 3.7580073 7356.3604
+74282.20555265225 3.758204 7355.9663
+74283.20555270254 3.7581646 7356.9502
+74284.20555275283 3.7582433 7356.3604
+74285.20555280312 3.7583222 7356.7539
+74286.20555285341 3.758204 7356.9502
+74287.2055529037 3.7584403 7356.3604
+74288.205552954 3.7583616 7356.7539
+74289.20555300429 3.7585189 7356.9502
+74290.20555305458 3.7585979 7355.9663
+74291.20555310487 3.7584796 7356.7539
+74292.20555315516 3.7586372 7356.5571
+74293.20555320545 3.7586372 7356.7539
+74294.20555325574 3.7587159 7356.7539
+74295.20555330603 3.7586765 7357.3442
+74296.20555335633 3.7587945 7357.3442
+74297.20555340662 3.7588339 7356.7539
+74298.20555345691 3.7588732 7356.9502
+74299.2055535072 3.7588732 7356.7539
+74300.20555355749 3.7589128 7357.3442
+74301.20555360778 3.7588339 7356.9502
+74302.20555365807 3.7588732 7356.9502
+74303.20555370837 3.7590702 7356.5571
+74304.20555375866 3.7589521 7356.7539
+74305.20555380895 3.7591095 7356.7539
+74306.20555385924 3.7591884 7357.1475
+74307.20555390953 3.7590702 7356.3604
+74308.20555395982 3.7593064 7357.1475
+74309.20555401011 3.7593458 7356.3604
+74310.2055540604 3.7593458 7357.1475
+74311.2055541107 3.7595034 7356.7539
+74312.20555416099 3.7596214 7357.1475
+74313.20555421128 3.7596607 7356.5571
+74314.20555426157 3.7597001 7357.541
+74315.20555431186 3.7598183 7356.7539
+74316.20555436215 3.7598577 7356.7539
+74317.20555441245 3.7599363 7357.3442
+74318.20555446274 3.760015 7357.1475
+74319.20555451303 3.7600937 7357.3442
+74320.20555456332 3.7600543 7356.7539
+74321.20555461361 3.7600937 7356.9502
+74322.2055546639 3.7601333 7357.1475
+74323.2055547142 3.7601726 7356.7539
+74324.20555476448 3.7602119 7356.9502
+74325.20555481478 3.7602513 7357.3442
+74326.20555486507 3.7602513 7356.3604
+74327.20555491536 3.7601726 7355.7695
+74328.20555496565 3.7603693 7356.5571
+74329.20555501594 3.76033 7356.5571
+74330.20555506623 3.7604086 7356.5571
+74331.20555511652 3.7604876 7357.1475
+74332.20555516682 3.7605269 7356.7539
+74333.20555521711 3.7604876 7356.9502
+74334.2055552674 3.7605269 7356.7539
+74335.20555531769 3.7606056 7356.7539
+74336.20555536798 3.7605662 7356.9502
+74337.20555541827 3.7607238 7356.3604
+74338.20555546856 3.7606843 7357.3442
+74339.20555551886 3.7607632 7356.9502
+74340.20555556915 3.7608025 7357.1475
+74341.20555561944 3.7608025 7357.1475
+74342.20555566973 3.7608418 7356.9502
+74343.20555572002 3.7608418 7357.3442
+74344.20555577031 3.7608418 7356.5571
+74345.2055558206 3.7608812 7356.7539
+74346.2055558709 3.7609205 7357.9346
+74347.20555592119 3.7609205 7356.3604
+74348.20555597148 3.7610388 7357.3442
+74349.20555602177 3.7609205 7356.9502
+74350.20555607206 3.7609992 7356.7539
+74351.20555612235 3.7610781 7356.7539
+74352.20555617264 3.7610781 7356.9502
+74353.20555622294 3.7611961 7355.9663
+74354.20555627323 3.7612355 7357.3442
+74355.20555632352 3.7613142 7356.7539
+74356.20555637381 3.7611961 7357.541
+74357.2055564241 3.7613537 7356.7539
+74358.2055564744 3.7613931 7356.3604
+74359.20555652468 3.7613142 7357.1475
+74360.20555657498 3.7613931 7356.1636
+74361.20555662527 3.7612748 7356.7539
+74362.20555667556 3.7613142 7356.9502
+74363.20555672585 3.7613537 7357.3442
+74364.20555677614 3.7613931 7356.7539
+74365.20555682643 3.7614324 7356.9502
+74366.20555687672 3.7613142 7356.5571
+74367.20555692702 3.7614717 7356.7539
+74368.20555697731 3.7614324 7357.1475
+74369.2055570276 3.7615111 7357.1475
+74370.20555707789 3.7615504 7357.1475
+74371.20555712818 3.7616291 7357.1475
+74372.20555717847 3.7616687 7357.3442
+74373.20555722876 3.7616687 7357.3442
+74374.20555727906 3.761708 7357.541
+74375.20555732935 3.7619047 7355.9663
+74376.20555737964 3.7619047 7356.5571
+74377.20555742993 3.762023 7357.1475
+74378.20555748022 3.762023 7356.7539
+74379.20555753051 3.7620623 7357.3442
+74380.2055575808 3.7621017 7357.3442
+74381.2055576311 3.762141 7356.9502
+74382.20555768139 3.7621803 7356.9502
+74383.20555773168 3.7622986 7357.3442
+74384.20555778197 3.7623773 7356.3604
+74385.20555783226 3.7623379 7356.9502
+74386.20555788255 3.7624166 7357.541
+74387.20555793284 3.7624166 7356.9502
+74388.20555798314 3.7624559 7356.5571
+74389.20555803343 3.7625346 7356.3604
+74390.20555808372 3.7626135 7356.7539
+74391.20555813401 3.7626135 7357.1475
+74392.2055581843 3.7626135 7357.541
+74393.2055582346 3.7626529 7357.1475
+74394.20555828488 3.7626529 7357.1475
+74395.20555833518 3.7626529 7356.3604
+74396.20555838547 3.7627316 7356.3604
+74397.20555843576 3.7628102 7357.1475
+74398.20555848605 3.7628891 7356.1636
+74399.20555853634 3.7628891 7356.7539
+74400.20555858663 3.7630465 7358.1318
+74401.20555863692 3.7628891 7356.9502
+74402.20555868722 3.7629678 7356.7539
+74403.2055587375 3.7630072 7357.3442
+74404.2055587878 3.7631252 7356.3604
+74405.20555883809 3.7630858 7356.5571
+74406.20555888838 3.7631252 7357.541
+74407.20555893867 3.7631252 7356.7539
+74408.20555898896 3.7630465 7357.541
+74409.20555903926 3.7630858 7356.5571
+74410.20555908955 3.7631645 7356.5571
+74411.20555913984 3.7631252 7357.3442
+74412.20555919013 3.7632434 7356.5571
+74413.20555924042 3.7632828 7356.9502
+74414.20555929071 3.7633221 7357.1475
+74415.205559341 3.7634008 7356.5571
+74416.2055593913 3.7634008 7356.3604
+74417.20555944159 3.7634008 7356.3604
+74418.20555949188 3.763519 7356.3604
+74419.20555954217 3.7635584 7357.3442
+74420.20555959246 3.7634795 7356.9502
+74421.20555964275 3.7635977 7356.7539
+74422.20555969304 3.7636764 7356.5571
+74423.20555974334 3.7635977 7357.1475
+74424.20555979363 3.7637944 7356.9502
+74425.20555984392 3.763834 7356.5571
+74426.20555989421 3.7639127 7356.9502
+74427.2055599445 3.7639914 7357.3442
+74428.20555999479 3.7641094 7357.1475
+74429.20556004508 3.764149 7357.541
+74430.20556009538 3.7642276 7356.9502
+74431.20556014567 3.764149 7356.7539
+74432.20556019596 3.7641094 7356.7539
+74433.20556024625 3.7641883 7356.7539
+74434.20556029654 3.7643063 7357.7378
+74435.20556034683 3.7643456 7356.5571
+74436.20556039712 3.7643063 7356.7539
+74437.20556044742 3.7645032 7357.1475
+74438.2055604977 3.7645426 7356.3604
+74439.205560548 3.7646999 7355.7695
+74440.20556059829 3.7646213 7356.9502
+74441.20556064858 3.7647395 7357.1475
+74442.20556069887 3.7648575 7357.1475
+74443.20556074916 3.7648575 7357.3442
+74444.20556079946 3.7650545 7356.9502
+74445.20556084975 3.7651331 7356.5571
+74446.20556090004 3.7650938 7356.3604
+74447.20556095033 3.7651725 7356.9502
+74448.20556100062 3.7654088 7357.3442
+74449.20556105091 3.7652905 7356.9502
+74450.2055611012 3.7653694 7356.1636
+74451.2055611515 3.7654088 7357.1475
+74452.20556120179 3.7654874 7356.5571
+74453.20556125208 3.7654874 7357.3442
+74454.20556130237 3.7655268 7356.1636
+74455.20556135266 3.7655661 7356.9502
+74456.20556140295 3.765763 7357.7378
+74457.20556145324 3.765763 7356.1636
+74458.20556150354 3.7657237 7357.3442
+74459.20556155383 3.7658811 7356.7539
+74460.20556160412 3.7659993 7356.3604
+74461.20556165441 3.7659993 7357.1475
+74462.2055617047 3.7659993 7357.1475
+74463.20556175499 3.766196 7357.1475
+74464.20556180528 3.7662354 7356.5571
+74465.20556185558 3.7663143 7356.7539
+74466.20556190587 3.7662749 7357.1475
+74467.20556195616 3.7663929 7356.5571
+74468.20556200645 3.766511 7357.3442
+74469.20556205674 3.7665503 7356.1636
+74470.20556210703 3.7666686 7357.3442
+74471.20556215732 3.7667079 7357.1475
+74472.20556220762 3.7667472 7356.7539
+74473.2055622579 3.7669048 7355.9663
+74474.2055623082 3.7669048 7356.9502
+74475.20556235849 3.7670228 7357.1475
+74476.20556240878 3.7670228 7356.9502
+74477.20556245907 3.7670228 7356.5571
+74478.20556250936 3.7671802 7356.5571
+74479.20556255965 3.7672591 7356.5571
+74480.20556260995 3.7672591 7356.9502
+74481.20556266024 3.7673378 7356.7539
+74482.20556271053 3.7673771 7356.9502
+74483.20556276082 3.7673771 7356.5571
+74484.20556281111 3.7674558 7357.1475
+74485.2055628614 3.7676134 7356.7539
+74486.2055629117 3.7676528 7356.5571
+74487.20556296199 3.7677708 7357.1475
+74488.20556301228 3.7676921 7357.541
+74489.20556306257 3.767889 7357.3442
+74490.20556311286 3.7679677 7356.3604
+74491.20556316315 3.767889 7355.9663
+74492.20556321344 3.7680857 7357.1475
+74493.20556326373 3.7681253 7356.9502
+74494.20556331403 3.7681646 7356.9502
+74495.20556336432 3.7682433 7356.7539
+74496.20556341461 3.768322 7357.541
+74497.2055634649 3.7683613 7356.9502
+74498.20556351519 3.768204 7356.7539
+74499.20556356548 3.7684007 7356.9502
+74500.20556361577 3.7685583 7356.9502
+74501.20556366607 3.7685976 7356.1636
+74502.20556371636 3.7686369 7356.9502
+74503.20556376665 3.7687945 7356.9502
+74504.20556381694 3.7687552 7356.9502
+74505.20556386723 3.7688339 7356.7539
+74506.20556391752 3.7688732 7357.1475
+74507.20556396781 3.7689126 7357.541
+74508.2055640181 3.7689519 7356.7539
+74509.2055640684 3.7689912 7357.7378
+74510.20556411869 3.7690701 7356.5571
+74511.20556416898 3.7690306 7357.541
+74512.20556421927 3.7691488 7356.7539
+74513.20556426956 3.7691095 7355.7695
+74514.20556431985 3.7691488 7357.1475
+74515.20556437015 3.7692668 7357.1475
+74516.20556442044 3.7692668 7357.7378
+74517.20556447073 3.7693851 7356.9502
+74518.20556452102 3.7693851 7356.7539
+74519.20556457131 3.7694244 7357.3442
+74520.2055646216 3.7693851 7356.9502
+74521.2055646719 3.7695031 7357.1475
+74522.20556472219 3.7695031 7357.541
+74523.20556477248 3.7695425 7356.5571
+74524.20556482277 3.7696211 7356.7539
+74525.20556487306 3.7696211 7357.1475
+74526.20556492335 3.7696607 7356.9502
+74527.20556497364 3.7697001 7356.9502
+74528.20556502393 3.7697787 7356.9502
+74529.20556507423 3.7698181 7356.9502
+74530.20556512452 3.7698574 7357.1475
+74531.20556517481 3.7700543 7356.9502
+74532.2055652251 3.770015 7357.1475
+74533.20556527539 3.7700937 7356.9502
+74534.20556532568 3.770133 7356.9502
+74535.20556537597 3.7702117 7356.7539
+74536.20556542627 3.7703693 7357.3442
+74537.20556547656 3.7702906 7357.1475
+74538.20556552685 3.77033 7357.3442
+74539.20556557714 3.77033 7356.9502
+74540.20556562743 3.7705266 7357.1475
+74541.20556567772 3.7704873 7356.7539
+74542.20556572801 3.7705266 7356.9502
+74543.2055657783 3.7706056 7357.3442
+74544.2055658286 3.7706842 7357.1475
+74545.20556587889 3.7707236 7357.3442
+74546.20556592918 3.7707236 7356.5571
+74547.20556597947 3.7708416 7356.9502
+74548.20556602976 3.7708023 7357.3442
+74549.20556608005 3.7708023 7356.7539
+74550.20556613035 3.7709205 7356.7539
+74551.20556618064 3.7709599 7357.541
+74552.20556623093 3.7709992 7357.3442
+74553.20556628122 3.7709599 7357.3442
+74554.20556633151 3.7709992 7356.3604
+74555.2055663818 3.7711172 7356.7539
+74556.2055664321 3.7710385 7357.3442
+74557.20556648239 3.7710385 7357.1475
+74558.20556653268 3.7711172 7356.1636
+74559.20556658297 3.7712355 7357.1475
+74560.20556663326 3.7711172 7356.9502
+74561.20556668355 3.7712355 7357.3442
+74562.20556673384 3.7711959 7356.9502
+74563.20556678413 3.7713141 7356.5571
+74564.20556683443 3.7713141 7357.1475
+74565.20556688472 3.7713928 7356.5571
+74566.20556693501 3.7715111 7356.9502
+74567.2055669853 3.7715111 7357.3442
+74568.20556703559 3.7716291 7357.1475
+74569.20556708588 3.7716684 7356.7539
+74570.20556713617 3.7717471 7356.7539
+74571.20556718647 3.7717865 7356.5571
+74572.20556723676 3.7717078 7356.3604
+74573.20556728705 3.7718654 7356.5571
+74574.20556733734 3.7719834 7357.541
+74575.20556738763 3.771944 7357.541
+74576.20556743792 3.7721803 7357.1475
+74577.20556748821 3.7721803 7357.3442
+74578.2055675385 3.772377 7356.7539
+74579.2055675888 3.7724953 7356.7539
+74580.20556763909 3.7725346 7357.1475
+74581.20556768938 3.7727313 7356.7539
+74582.20556773967 3.7727709 7357.1475
+74583.20556778996 3.7728102 7356.7539
+74584.20556784025 3.7729282 7356.5571
+74585.20556789055 3.7729282 7356.5571
+74586.20556794084 3.7730463 7356.5571
+74587.20556799113 3.7731252 7356.7539
+74588.20556804142 3.7733219 7357.3442
+74589.20556809171 3.7733219 7356.3604
+74590.205568142 3.7734008 7356.5571
+74591.2055681923 3.7734008 7356.7539
+74592.20556824259 3.7734008 7356.9502
+74593.20556829288 3.7735581 7357.3442
+74594.20556834317 3.7734795 7357.3442
+74595.20556839346 3.7736368 7357.3442
+74596.20556844375 3.7737157 7357.7378
+74597.20556849404 3.7737944 7357.1475
+74598.20556854433 3.7738731 7357.1475
+74599.20556859463 3.7739518 7357.1475
+74600.20556864492 3.7739913 7357.1475
+74601.20556869521 3.7739518 7356.3604
+74602.2055687455 3.7741094 7356.3604
+74603.20556879579 3.7742274 7356.7539
+74604.20556884608 3.7743063 7356.7539
+74605.20556889637 3.7743456 7356.3604
+74606.20556894667 3.774385 7357.541
+74607.20556899696 3.774385 7357.3442
+74608.20556904725 3.7745423 7356.9502
+74609.20556909754 3.7746212 7356.1636
+74610.20556914783 3.7745817 7357.1475
+74611.20556919812 3.7746999 7356.1636
+74612.20556924841 3.7747786 7356.7539
+74613.2055692987 3.7748179 7357.7378
+74614.205569349 3.7748179 7356.9502
+74615.20556939929 3.7748179 7356.3604
+74616.20556944958 3.7749755 7356.9502
+74617.20556949987 3.7749362 7356.3604
+74618.20556955016 3.7750542 7357.541
+74619.20556960045 3.7750936 7356.9502
+74620.20556965075 3.7751722 7356.1636
+74621.20556970104 3.7753298 7357.1475
+74622.20556975133 3.7752905 7357.9346
+74623.20556980162 3.7754085 7357.1475
+74624.20556985191 3.7754478 7356.7539
+74625.2055699022 3.7755268 7356.5571
+74626.2055699525 3.7754478 7356.5571
+74627.20557000278 3.7756054 7357.1475
+74628.20557005308 3.7756841 7357.3442
+74629.20557010337 3.7757628 7356.5571
+74630.20557015366 3.7758021 7356.7539
+74631.20557020395 3.7758021 7356.3604
+74632.20557025424 3.7758811 7356.7539
+74633.20557030453 3.7758811 7357.1475
+74634.20557035482 3.7759204 7357.7378
+74635.20557040512 3.7759204 7356.7539
+74636.20557045541 3.7758021 7355.9663
+74637.2055705057 3.7759204 7356.3604
+74638.20557055599 3.7759597 7356.7539
+74639.20557060628 3.7758417 7356.9502
+74640.20557065657 3.7760384 7356.3604
+74641.20557070686 3.7760777 7356.9502
+74642.20557075716 3.7760384 7356.7539
+74643.20557080745 3.7761567 7356.1636
+74644.20557085774 3.7760777 7356.9502
+74645.20557090803 3.7761567 7356.3604
+74646.20557095832 3.776196 7356.7539
+74647.20557100861 3.7763534 7356.7539
+74648.2055710589 3.776314 7356.7539
+74649.2055711092 3.7763927 7356.9502
+74650.20557115949 3.7765503 7357.1475
+74651.20557120978 3.776432 7356.9502
+74652.20557126007 3.776511 7357.541
+74653.20557131036 3.7766683 7356.9502
+74654.20557136065 3.776629 7355.9663
+74655.20557141094 3.7766683 7356.9502
+74656.20557146124 3.7768259 7356.5571
+74657.20557151153 3.7766683 7356.5571
+74658.20557156182 3.7768259 7356.9502
+74659.20557161211 3.7769046 7356.9502
+74660.2055716624 3.7769833 7356.9502
+74661.2055717127 3.7769833 7356.9502
+74662.20557176298 3.7772195 7356.7539
+74663.20557181328 3.7772589 7355.9663
+74664.20557186357 3.7772589 7357.7378
+74665.20557191386 3.7774951 7356.7539
+74666.20557196415 3.7776132 7356.7539
+74667.20557201444 3.7776132 7357.3442
+74668.20557206473 3.7777314 7356.9502
+74669.20557211502 3.7779675 7356.9502
+74670.20557216532 3.7779281 7357.1475
+74671.20557221561 3.7780464 7357.1475
+74672.2055722659 3.7779675 7357.541
+74673.20557231619 3.778125 7356.7539
+74674.20557236648 3.7782431 7357.9346
+74675.20557241677 3.7782431 7356.5571
+74676.20557246706 3.77844 7356.9502
+74677.20557251736 3.7784793 7356.9502
+74678.20557256765 3.7784793 7356.9502
+74679.20557261794 3.7785974 7356.9502
+74680.20557266823 3.778558 7356.9502
+74681.20557271852 3.7786369 7356.9502
+74682.20557276881 3.7787156 7357.1475
+74683.2055728191 3.7788336 7356.9502
+74684.2055728694 3.7787943 7356.9502
+74685.20557291969 3.778873 7356.9502
+74686.20557296998 3.7789125 7356.7539
+74687.20557302027 3.7788336 7357.3442
+74688.20557307056 3.7789912 7357.1475
+74689.20557312085 3.7790306 7356.7539
+74690.20557317114 3.7790306 7356.7539
+74691.20557322144 3.7790699 7356.7539
+74692.20557327173 3.7791486 7356.3604
+74693.20557332202 3.7791092 7357.1475
+74694.20557337231 3.7793062 7356.7539
+74695.2055734226 3.7792275 7356.5571
+74696.2055734729 3.7791879 7356.7539
+74697.20557352318 3.7793455 7356.7539
+74698.20557357348 3.7794242 7356.9502
+74699.20557362377 3.7794242 7357.1475
+74700.20557367406 3.7794242 7357.541
+74701.20557372435 3.7796211 7357.7378
+74702.20557377464 3.7794242 7357.541
+74703.20557382493 3.7796211 7356.5571
+74704.20557387522 3.7795818 7356.7539
+74705.20557392552 3.7796211 7356.5571
+74706.2055739758 3.7797785 7357.3442
+74707.2055740261 3.7797391 7356.9502
+74708.20557407639 3.7798574 7357.541
+74709.20557412668 3.7798574 7357.3442
+74710.20557417697 3.7798967 7356.1636
+74711.20557422726 3.7799361 7357.1475
+74712.20557427756 3.7800934 7356.5571
+74713.20557432785 3.7801328 7356.5571
+74714.20557437814 3.7801723 7356.9502
+74715.20557442843 3.7803297 7356.9502
+74716.20557447872 3.7803297 7355.9663
+74717.20557452901 3.7803297 7356.7539
+74718.2055745793 3.780448 7356.1636
+74719.2055746296 3.7805266 7356.3604
+74720.20557467989 3.7804873 7356.3604
+74721.20557473018 3.7806053 7357.1475
+74722.20557478047 3.7807233 7356.7539
+74723.20557483076 3.7806447 7357.7378
+74724.20557488105 3.7807233 7356.1636
+74725.20557493134 3.7807629 7356.5571
+74726.20557498164 3.7808809 7357.1475
+74727.20557503193 3.7810383 7357.1475
+74728.20557508222 3.7809989 7356.7539
+74729.20557513251 3.7810779 7356.7539
+74730.2055751828 3.7810779 7356.9502
+74731.20557523309 3.7811565 7357.541
+74732.20557528338 3.7813139 7356.7539
+74733.20557533368 3.7813139 7357.541
+74734.20557538397 3.7814322 7357.541
+74735.20557543426 3.7814322 7356.7539
+74736.20557548455 3.7814715 7356.7539
+74737.20557553484 3.7816682 7357.1475
+74738.20557558513 3.7817471 7356.9502
+74739.20557563542 3.7817078 7356.9502
+74740.20557568572 3.7818258 7357.3442
+74741.205575736 3.7817864 7356.5571
+74742.2055757863 3.7819831 7356.7539
+74743.20557583659 3.7819438 7356.5571
+74744.20557588688 3.7821014 7357.1475
+74745.20557593717 3.7821407 7356.7539
+74746.20557598746 3.7821801 7356.5571
+74747.20557603776 3.7822587 7356.3604
+74748.20557608805 3.7822587 7357.1475
+74749.20557613834 3.7823377 7356.5571
+74750.20557618863 3.7824163 7356.7539
+74751.20557623892 3.782495 7356.7539
+74752.20557628921 3.7824557 7356.1636
+74753.2055763395 3.7825344 7356.5571
+74754.2055763898 3.7826133 7356.7539
+74755.20557644009 3.7827313 7357.3442
+74756.20557649038 3.7826526 7356.7539
+74757.20557654067 3.7827706 7357.1475
+74758.20557659096 3.7829282 7356.3604
+74759.20557664125 3.7828493 7356.5571
+74760.20557669154 3.7829282 7356.5571
+74761.20557674184 3.7830069 7357.1475
+74762.20557679213 3.7829676 7357.541
+74763.20557684242 3.7830856 7356.5571
+74764.20557689271 3.7831249 7356.3604
+74765.205576943 3.7832036 7357.1475
+74766.20557699329 3.7832825 7357.3442
+74767.20557704358 3.7833612 7357.3442
+74768.20557709388 3.7833612 7356.7539
+74769.20557714417 3.7835186 7356.1636
+74770.20557719446 3.7835975 7356.5571
+74771.20557724475 3.7835186 7356.9502
+74772.20557729504 3.7837155 7356.5571
+74773.20557734533 3.7836761 7356.7539
+74774.20557739562 3.7837942 7356.1636
+74775.20557744591 3.7839124 7357.3442
+74776.2055774962 3.7838731 7356.9502
+74777.2055775465 3.7840304 7357.1475
+74778.20557759679 3.7839911 7356.5571
+74779.20557764708 3.7841091 7356.9502
+74780.20557769737 3.784188 7356.5571
+74781.20557774766 3.7843847 7356.5571
+74782.20557779795 3.7844636 7357.541
+74783.20557784825 3.7844636 7357.3442
+74784.20557789854 3.7845423 7357.3442
+74785.20557794883 3.784503 7357.3442
+74786.20557799912 3.7845423 7357.1475
+74787.20557804941 3.7846603 7356.5571
+74788.2055780997 3.7846603 7356.5571
+74789.20557815 3.7847786 7357.3442
+74790.20557820029 3.784739 7356.9502
+74791.20557825058 3.784936 7356.7539
+74792.20557830087 3.7849753 7356.3604
+74793.20557835116 3.785054 7357.1475
+74794.20557840145 3.785054 7357.3442
+74795.20557845174 3.785054 7356.7539
+74796.20557850203 3.7851329 7355.7695
+74797.20557855233 3.7852116 7356.7539
+74798.20557860262 3.7852116 7357.1475
+74799.20557865291 3.7852509 7356.5571
+74800.2055787032 3.7852509 7356.5571
+74801.20557875349 3.7853689 7356.3604
+74802.20557880378 3.7854085 7357.1475
+74803.20557885407 3.7854872 7356.5571
+74804.20557890437 3.7854872 7357.3442
+74805.20557895466 3.7854872 7356.7539
+74806.20557900495 3.7856052 7357.7378
+74807.20557905524 3.7856445 7356.9502
+74808.20557910553 3.7857234 7357.541
+74809.20557915582 3.7856839 7356.9502
+74810.20557920611 3.7858415 7356.7539
+74811.2055792564 3.7858021 7356.5571
+74812.2055793067 3.7858021 7357.541
+74813.20557935699 3.7860384 7356.7539
+74814.20557940728 3.7860384 7356.9502
+74815.20557945757 3.7859595 7357.1475
+74816.20557950786 3.7859991 7356.1636
+74817.20557955815 3.7861564 7356.9502
+74818.20557960845 3.7861171 7357.7378
+74819.20557965874 3.7862744 7357.9346
+74820.20557970903 3.7861958 7357.1475
+74821.20557975932 3.786314 7356.1636
+74822.20557980961 3.786314 7356.9502
+74823.2055798599 3.7863927 7356.7539
+74824.2055799102 3.7864714 7356.9502
+74825.20557996049 3.7865107 7357.1475
+74826.20558001078 3.7864714 7356.5571
+74827.20558006107 3.78655 7356.7539
+74828.20558011136 3.7865894 7355.9663
+74829.20558016165 3.7865894 7357.1475
+74830.20558021194 3.7866683 7357.3442
+74831.20558026223 3.786747 7357.3442
+74832.20558031253 3.7867863 7356.3604
+74833.20558036282 3.7868257 7357.1475
+74834.20558041311 3.7869043 7357.1475
+74835.2055804634 3.7870226 7356.7539
+74836.20558051369 3.7870619 7357.541
+74837.20558056398 3.7871013 7357.3442
+74838.20558061427 3.7871013 7356.7539
+74839.20558066457 3.7872589 7357.3442
+74840.20558071486 3.7873769 7356.5571
+74841.20558076515 3.7874556 7356.7539
+74842.20558081544 3.7874162 7356.9502
+74843.20558086573 3.7875738 7356.9502
+74844.20558091602 3.7876132 7357.9346
+74845.20558096631 3.7876918 7357.1475
+74846.2055810166 3.7877705 7357.3442
+74847.2055810669 3.7878494 7356.1636
+74848.20558111719 3.7878494 7357.1475
+74849.20558116748 3.7878888 7356.9502
+74850.20558121777 3.7879281 7357.1475
+74851.20558126806 3.7880068 7356.5571
+74852.20558131835 3.7880461 7356.9502
+74853.20558136865 3.7882037 7357.541
+74854.20558141894 3.7882037 7356.7539
+74855.20558146923 3.7882037 7357.541
+74856.20558151952 3.7883611 7356.9502
+74857.20558156981 3.7884398 7357.3442
+74858.2055816201 3.7884004 7356.7539
+74859.2055816704 3.7885187 7356.3604
+74860.20558172069 3.788558 7356.5571
+74861.20558177098 3.7885187 7356.3604
+74862.20558182127 3.7885973 7356.9502
+74863.20558187156 3.7886367 7356.5571
+74864.20558192185 3.7886367 7356.5571
+74865.20558197214 3.7887154 7356.1636
+74866.20558202243 3.7887943 7356.5571
+74867.20558207273 3.7887547 7356.7539
+74868.20558212302 3.7887943 7356.7539
+74869.20558217331 3.7889123 7356.7539
+74870.2055822236 3.7889516 7356.9502
+74871.20558227389 3.7890697 7355.9663
+74872.20558232418 3.7890303 7356.9502
+74873.20558237447 3.7891486 7356.7539
+74874.20558242477 3.7891879 7356.9502
+74875.20558247506 3.7890697 7357.1475
+74876.20558252535 3.7893059 7356.1636
+74877.20558257564 3.7893453 7356.3604
+74878.20558262593 3.7892666 7356.7539
+74879.20558267622 3.7893453 7356.7539
+74880.20558272651 3.7893848 7356.9502
+74881.2055827768 3.7894635 7356.9502
+74882.2055828271 3.7894635 7356.9502
+74883.20558287739 3.7894635 7356.5571
+74884.20558292768 3.7895422 7356.9502
+74885.20558297797 3.7896209 7356.7539
+74886.20558302826 3.7896209 7357.1475
+74887.20558307855 3.7896602 7357.9346
+74888.20558312885 3.7897391 7356.7539
+74889.20558317914 3.7897391 7357.7378
+74890.20558322943 3.7898178 7357.3442
+74891.20558327972 3.7898178 7357.7378
+74892.20558333001 3.7898571 7356.9502
+74893.2055833803 3.7899752 7356.5571
+74894.2055834306 3.7899358 7356.1636
+74895.20558348089 3.7899358 7356.9502
+74896.20558353118 3.7900541 7356.7539
+74897.20558358147 3.7900541 7356.9502
+74898.20558363176 3.7900934 7356.5571
+74899.20558368205 3.7901721 7357.1475
+74900.20558373234 3.7902508 7356.7539
+74901.20558378263 3.7902901 7356.9502
+74902.20558383293 3.7902508 7356.5571
+74903.20558388322 3.790369 7356.3604
+74904.20558393351 3.790369 7357.1475
+74905.2055839838 3.7905657 7356.9502
+74906.20558403409 3.7904871 7356.9502
+74907.20558408438 3.7907233 7356.1636
+74908.20558413467 3.7906051 7357.7378
+74909.20558418497 3.7907233 7356.3604
+74910.20558423526 3.7907233 7356.1636
+74911.20558428555 3.7907627 7357.1475
+74912.20558433584 3.79092 7356.9502
+74913.20558438613 3.7909596 7356.3604
+74914.20558443642 3.7910383 7356.9502
+74915.20558448671 3.7910776 7356.9502
+74916.205584537 3.7911956 7356.3604
+74917.2055845873 3.7913139 7356.5571
+74918.20558463759 3.7913139 7356.9502
+74919.20558468788 3.7913926 7356.5571
+74920.20558473817 3.7914319 7357.3442
+74921.20558478846 3.7914319 7356.5571
+74922.20558483875 3.7915106 7357.541
+74923.20558488904 3.7915895 7357.1475
+74924.20558493934 3.7916682 7356.5571
+74925.20558498963 3.7916682 7356.7539
+74926.20558503992 3.7918255 7356.5571
+74927.20558509021 3.7918255 7356.9502
+74928.2055851405 3.7918651 7355.9663
+74929.2055851908 3.7919438 7356.9502
+74930.20558524108 3.7920225 7356.1636
+74931.20558529138 3.7921011 7356.9502
+74932.20558534167 3.7921011 7356.1636
+74933.20558539196 3.7923374 7356.7539
+74934.20558544225 3.7921801 7356.1636
+74935.20558549254 3.7923768 7357.1475
+74936.20558554283 3.7924161 7356.9502
+74937.20558559312 3.7924554 7357.1475
+74938.20558564342 3.792495 7357.3442
+74939.20558569371 3.792495 7357.3442
+74940.205585744 3.7926917 7356.9502
+74941.20558579429 3.7926917 7356.9502
+74942.20558584458 3.7927704 7357.541
+74943.20558589487 3.79281 7356.9502
+74944.20558594516 3.792928 7357.1475
+74945.20558599546 3.7929673 7356.5571
+74946.20558604575 3.793046 7357.541
+74947.20558609604 3.793046 7356.5571
+74948.20558614633 3.7932429 7356.9502
+74949.20558619662 3.7932036 7357.3442
+74950.20558624691 3.7932823 7357.541
+74951.2055862972 3.7933609 7356.7539
+74952.2055863475 3.7935579 7356.9502
+74953.20558639779 3.7935579 7356.9502
+74954.20558644808 3.7934399 7356.9502
+74955.20558649837 3.7936366 7357.1475
+74956.20558654866 3.7935972 7356.7539
+74957.20558659895 3.7937155 7356.7539
+74958.20558664924 3.7937548 7356.9502
+74959.20558669954 3.7937942 7357.1475
+74960.20558674983 3.7937942 7357.1475
+74961.20558680012 3.7938728 7357.7378
+74962.20558685041 3.7938728 7355.9663
+74963.2055869007 3.7939909 7357.1475
+74964.205586951 3.7941878 7357.1475
+74965.20558700128 3.7941878 7356.3604
+74966.20558705158 3.7941484 7356.5571
+74967.20558710187 3.7943058 7357.7378
+74968.20558715216 3.7943058 7357.3442
+74969.20558720245 3.7943454 7356.5571
+74970.20558725274 3.7943454 7356.9502
+74971.20558730303 3.7945027 7356.3604
+74972.20558735332 3.7945027 7358.1318
+74973.20558740362 3.7945421 7357.1475
+74974.20558745391 3.7946603 7357.3442
+74975.2055875042 3.7948177 7356.7539
+74976.20558755449 3.794739 7356.9502
+74977.20558760478 3.7948177 7356.7539
+74978.20558765507 3.7948964 7357.7378
+74979.20558770536 3.7949359 7357.1475
+74980.20558775566 3.795054 7356.9502
+74981.20558780595 3.7951326 7356.9502
+74982.20558785624 3.7952902 7357.3442
+74983.20558790653 3.7953689 7357.3442
+74984.20558795682 3.7954082 7356.9502
+74985.20558800711 3.7955263 7357.1475
+74986.2055880574 3.7955658 7356.5571
+74987.2055881077 3.7955658 7357.1475
+74988.20558815799 3.7956445 7357.3442
+74989.20558820828 3.7958019 7357.7378
+74990.20558825857 3.7958412 7356.9502
+74991.20558830886 3.7958412 7355.9663
+74992.20558835915 3.7959988 7357.3442
+74993.20558840944 3.7960382 7356.9502
+74994.20558845974 3.7961168 7356.9502
+74995.20558851003 3.7961168 7357.541
+74996.20558856032 3.7961562 7356.9502
+74997.20558861061 3.7962351 7356.9502
+74998.2055886609 3.7963924 7357.3442
+74999.2055887112 3.7963924 7356.9502
+75000.20558876148 3.7963531 7356.9502
+75001.20558881178 3.7965107 7357.3442
+75002.20558886207 3.7966287 7356.9502
+75003.20558891236 3.7966681 7356.7539
+75004.20558896265 3.7965894 7357.3442
+75005.20558901294 3.7968256 7356.7539
+75006.20558906323 3.7967467 7356.9502
+75007.20558911352 3.7967863 7357.1475
+75008.20558916382 3.7969437 7356.7539
+75009.2055892141 3.796983 7357.1475
+75010.2055892644 3.796983 7356.5571
+75011.20558931469 3.7972193 7356.7539
+75012.20558936498 3.797298 7356.5571
+75013.20558941527 3.797298 7357.541
+75014.20558946556 3.7973373 7356.1636
+75015.20558951586 3.7973766 7356.7539
+75016.20558956615 3.7973766 7356.9502
+75017.20558961644 3.7975342 7356.3604
+75018.20558966673 3.7975736 7355.9663
+75019.20558971702 3.7976129 7356.9502
+75020.20558976731 3.7978098 7357.1475
+75021.2055898176 3.7977705 7357.1475
+75022.2055898679 3.7978492 7356.7539
+75023.20558991819 3.7979279 7358.7217
+75024.20558996848 3.7980461 7356.7539
+75025.20559001877 3.7980065 7356.3604
+75026.20559006906 3.7980461 7356.9502
+75027.20559011935 3.7981641 7356.9502
+75028.20559016964 3.7981641 7356.3604
+75029.20559021994 3.7983611 7356.1636
+75030.20559027023 3.7983217 7357.7378
+75031.20559032052 3.7984397 7356.7539
+75032.20559037081 3.7985971 7357.541
+75033.2055904211 3.7985971 7356.7539
+75034.20559047139 3.7987154 7357.3442
+75035.20559052168 3.7988334 7357.541
+75036.20559057198 3.7988727 7356.5571
+75037.20559062227 3.798912 7357.541
+75038.20559067256 3.798991 7356.7539
+75039.20559072285 3.7990303 7356.9502
+75040.20559077314 3.799109 7357.1475
+75041.20559082343 3.799109 7357.1475
+75042.20559087372 3.7993059 7355.9663
+75043.20559092402 3.7994239 7356.1636
+75044.2055909743 3.7994633 7356.1636
+75045.2055910246 3.7993846 7356.1636
+75046.20559107489 3.7995026 7356.5571
+75047.20559112518 3.7995815 7357.1475
+75048.20559117547 3.7996209 7356.7539
+75049.20559122576 3.7996995 7356.5571
+75050.20559127606 3.7996602 7355.9663
+75051.20559132635 3.7998569 7357.1475
+75052.20559137664 3.7998176 7356.9502
+75053.20559142693 3.8000145 7356.7539
+75054.20559147722 3.8000145 7356.1636
+75055.20559152751 3.8000932 7357.9346
+75056.2055915778 3.8002114 7357.1475
+75057.2055916281 3.8002508 7356.1636
+75058.20559167839 3.8003294 7356.5571
+75059.20559172868 3.8002508 7356.9502
+75060.20559177897 3.8003294 7356.9502
+75061.20559182926 3.8004475 7357.1475
+75062.20559187955 3.8005264 7357.541
+75063.20559192984 3.800487 7356.7539
+75064.20559198014 3.8006837 7356.9502
+75065.20559203043 3.8007624 7357.3442
+75066.20559208072 3.800802 7357.3442
+75067.20559213101 3.8008413 7356.3604
+75068.2055921813 3.8008413 7356.7539
+75069.20559223159 3.8008807 7355.9663
+75070.20559228188 3.80092 7356.9502
+75071.20559233218 3.801038 7356.5571
+75072.20559238247 3.8009987 7356.5571
+75073.20559243276 3.801038 7357.1475
+75074.20559248305 3.8010774 7356.7539
+75075.20559253334 3.8011956 7356.5571
+75076.20559258363 3.8013136 7357.541
+75077.20559263392 3.8013136 7357.3442
+75078.20559268421 3.8013136 7356.5571
+75079.2055927345 3.8014319 7356.9502
+75080.2055927848 3.8015499 7357.3442
+75081.20559283509 3.8014712 7356.9502
+75082.20559288538 3.8017073 7356.9502
+75083.20559293567 3.8016286 7357.541
+75084.20559298596 3.8017468 7356.1636
+75085.20559303625 3.8018255 7357.541
+75086.20559308655 3.8018255 7356.5571
+75087.20559313684 3.8019042 7356.5571
+75088.20559318713 3.8019042 7356.7539
+75089.20559323742 3.8020618 7356.3604
+75090.20559328771 3.8021011 7356.9502
+75091.205593338 3.8021798 7356.5571
+75092.2055933883 3.8020618 7356.7539
+75093.20559343859 3.8022585 7356.7539
+75094.20559348888 3.8022192 7356.3604
+75095.20559353917 3.8023374 7356.3604
+75096.20559358946 3.8023767 7356.7539
+75097.20559363975 3.8023374 7356.9502
+75098.20559369004 3.8025341 7356.9502
+75099.20559374033 3.8024948 7356.9502
+75100.20559379063 3.8025734 7356.3604
+75101.20559384092 3.802731 7356.1636
+75102.20559389121 3.8027704 7356.1636
+75103.2055939415 3.802731 7357.1475
+75104.20559399179 3.8028491 7356.7539
+75105.20559404208 3.8029673 7357.1475
+75106.20559409237 3.8029277 7356.5571
+75107.20559414267 3.803046 7356.7539
+75108.20559419296 3.8030853 7356.7539
+75109.20559424325 3.8032033 7356.5571
+75110.20559429354 3.8032823 7356.9502
+75111.20559434383 3.8032427 7356.7539
+75112.20559439412 3.8033609 7356.7539
+75113.20559444441 3.8035183 7356.5571
+75114.2055944947 3.8035972 7356.3604
+75115.205594545 3.8037152 7357.7378
+75116.20559459529 3.8037546 7357.541
+75117.20559464558 3.8038728 7356.9502
+75118.20559469587 3.8039515 7357.1475
+75119.20559474616 3.8039515 7356.9502
+75120.20559479645 3.8041878 7357.3442
+75121.20559484675 3.8041089 7357.541
+75122.20559489704 3.8042271 7356.7539
+75123.20559494733 3.8043058 7356.7539
+75124.20559499762 3.8043451 7356.9502
+75125.20559504791 3.8044631 7356.9502
+75126.2055950982 3.8044631 7356.7539
+75127.2055951485 3.8045814 7357.1475
+75128.20559519879 3.8046601 7357.7378
+75129.20559524908 3.8047388 7356.5571
+75130.20559529937 3.8046994 7356.7539
+75131.20559534966 3.8047388 7356.7539
+75132.20559539995 3.8048177 7356.9502
+75133.20559545024 3.8048177 7355.9663
+75134.20559550053 3.8049357 7356.3604
+75135.20559555083 3.8050931 7356.7539
+75136.20559560112 3.804975 7357.3442
+75137.20559565141 3.8050144 7356.7539
+75138.2055957017 3.8050144 7357.541
+75139.20559575199 3.8050537 7357.3442
+75140.20559580228 3.805172 7357.3442
+75141.20559585257 3.80529 7356.3604
+75142.20559590287 3.8054476 7356.7539
+75143.20559595316 3.8053687 7356.7539
+75144.20559600345 3.8053687 7356.1636
+75145.20559605374 3.8054476 7356.9502
+75146.20559610403 3.8054476 7356.9502
+75147.20559615432 3.8056049 7356.9502
+75148.20559620461 3.8057232 7357.1475
+75149.2055962549 3.8056443 7356.5571
+75150.2055963052 3.8057232 7356.9502
+75151.20559635549 3.8056836 7356.7539
+75152.20559640578 3.8057232 7356.7539
+75153.20559645607 3.8057625 7357.7378
+75154.20559650636 3.8058805 7356.7539
+75155.20559655665 3.8058019 7357.3442
+75156.20559660695 3.8059199 7357.541
+75157.20559665724 3.8059986 7356.7539
+75158.20559670753 3.8059986 7357.3442
+75159.20559675782 3.8060775 7357.1475
+75160.20559680811 3.8060381 7356.9502
+75161.2055968584 3.8061955 7356.5571
+75162.2055969087 3.8061168 7357.1475
+75163.20559695899 3.8061955 7355.9663
+75164.20559700928 3.8063135 7356.9502
+75165.20559705957 3.8063531 7356.7539
+75166.20559710986 3.8063924 7356.7539
+75167.20559716015 3.8064318 7356.9502
+75168.20559721044 3.8064318 7356.9502
+75169.20559726073 3.8065498 7356.7539
+75170.20559731103 3.806668 7356.3604
+75171.20559736132 3.8067467 7356.7539
+75172.20559741161 3.8067074 7356.7539
+75173.2055974619 3.8069434 7357.1475
+75174.20559751219 3.8067467 7356.7539
+75175.20559756248 3.8070223 7356.5571
+75176.20559761277 3.8070617 7356.1636
+75177.20559766307 3.807101 7357.1475
+75178.20559771336 3.807101 7356.3604
+75179.20559776365 3.807219 7357.1475
+75180.20559781394 3.8072584 7356.7539
+75181.20559786423 3.8072584 7356.7539
+75182.20559791452 3.8074553 7357.3442
+75183.20559796481 3.807416 7356.1636
+75184.2055980151 3.807534 7356.9502
+75185.2055980654 3.807534 7356.5571
+75186.20559811569 3.8075736 7356.3604
+75187.20559816598 3.8077309 7356.9502
+75188.20559821627 3.8078096 7356.7539
+75189.20559826656 3.8078096 7356.9502
+75190.20559831685 3.8079672 7356.7539
+75191.20559836715 3.8080852 7356.5571
+75192.20559841744 3.8081245 7356.5571
+75193.20559846773 3.8081245 7356.9502
+75194.20559851802 3.8081639 7356.7539
+75195.20559856831 3.8083215 7357.1475
+75196.2055986186 3.8084002 7356.1636
+75197.2055986689 3.8084788 7356.3604
+75198.20559871919 3.8085577 7356.7539
+75199.20559876948 3.8085971 7357.1475
+75200.20559881977 3.8087544 7356.5571
+75201.20559887006 3.8087151 7356.9502
+75202.20559892035 3.8087938 7356.7539
+75203.20559897064 3.8088727 7356.3604
+75204.20559902093 3.8089907 7356.7539
+75205.20559907123 3.8090694 7356.9502
+75206.20559912152 3.8091483 7357.541
+75207.20559917181 3.8092663 7355.9663
+75208.2055992221 3.809227 7357.541
+75209.20559927239 3.809345 7355.9663
+75210.20559932268 3.8093843 7356.7539
+75211.20559937297 3.8093843 7356.7539
+75212.20559942327 3.8095026 7355.9663
+75213.20559947356 3.8095419 7356.7539
+75214.20559952385 3.8096206 7357.541
+75215.20559957414 3.8097389 7358.1318
+75216.20559962443 3.80966 7356.5571
+75217.20559967472 3.8097782 7356.1636
+75218.20559972501 3.8098569 7356.7539
+75219.2055997753 3.8098962 7356.7539
+75220.2055998256 3.8100538 7355.9663
+75221.20559987589 3.8100932 7357.541
+75222.20559992618 3.8101325 7357.1475
+75223.20559997647 3.8102505 7356.9502
+75224.20560002676 3.8104475 7357.3442
+75225.20560007705 3.8103292 7356.5571
+75226.20560012734 3.8104081 7356.9502
+75227.20560017764 3.8104475 7357.1475
+75228.20560022793 3.8105655 7356.5571
+75229.20560027822 3.8106048 7356.5571
+75230.20560032851 3.8105655 7357.1475
+75231.2056003788 3.8107624 7356.7539
+75232.2056004291 3.8106441 7357.3442
+75233.20560047938 3.8108411 7355.7695
+75234.20560052968 3.8108411 7357.1475
+75235.20560057997 3.8108804 7355.7695
+75236.20560063026 3.8108804 7356.3604
+75237.20560068055 3.811038 7356.5571
+75238.20560073084 3.8111167 7356.9502
+75239.20560078113 3.811156 7357.1475
+75240.20560083142 3.811038 7356.5571
+75241.20560088172 3.8113136 7357.541
+75242.20560093201 3.8113136 7356.9502
+75243.2056009823 3.8112743 7357.3442
+75244.20560103259 3.8115497 7356.3604
+75245.20560108288 3.811471 7356.9502
+75246.20560113317 3.8116679 7356.5571
+75247.20560118346 3.8116286 7356.5571
+75248.20560123376 3.8116286 7356.7539
+75249.20560128405 3.8117073 7356.7539
+75250.20560133434 3.8118253 7357.541
+75251.20560138463 3.8118646 7356.3604
+75252.20560143492 3.8119829 7356.1636
+75253.20560148521 3.8119829 7356.7539
+75254.2056015355 3.8121402 7356.7539
+75255.2056015858 3.8121796 7356.9502
+75256.20560163609 3.8122191 7356.5571
+75257.20560168638 3.8121796 7356.5571
+75258.20560173667 3.8123765 7356.3604
+75259.20560178696 3.8124158 7357.3442
+75260.20560183725 3.8124945 7357.1475
+75261.20560188754 3.8125734 7356.1636
+75262.20560193784 3.8125734 7357.541
+75263.20560198813 3.8126128 7356.9502
+75264.20560203842 3.8126521 7356.7539
+75265.20560208871 3.8128097 7356.7539
+75266.205602139 3.8128884 7356.9502
+75267.2056021893 3.8129277 7356.7539
+75268.20560223958 3.8130064 7356.5571
+75269.20560228988 3.8132033 7356.9502
+75270.20560234017 3.813164 7357.1475
+75271.20560239046 3.8132033 7356.3604
+75272.20560244075 3.8133607 7357.1475
+75273.20560249104 3.8134 7356.5571
+75274.20560254133 3.8134396 7356.7539
+75275.20560259162 3.8136363 7356.9502
+75276.20560264192 3.8135576 7356.5571
+75277.20560269221 3.813715 7357.3442
+75278.2056027425 3.8137546 7357.3442
+75279.20560279279 3.813715 7356.3604
+75280.20560284308 3.8139513 7356.3604
+75281.20560289337 3.8141088 7355.9663
+75282.20560294366 3.8141482 7356.7539
+75283.20560299396 3.8142269 7356.1636
+75284.20560304425 3.8142662 7357.1475
+75285.20560309454 3.8142269 7356.7539
+75286.20560314483 3.8143449 7357.1475
+75287.20560319512 3.8143845 7356.7539
+75288.20560324541 3.8144631 7356.1636
+75289.2056032957 3.8145812 7356.9502
+75290.205603346 3.8145812 7356.7539
+75291.20560339629 3.8146601 7356.5571
+75292.20560344658 3.8146994 7356.9502
+75293.20560349687 3.8148174 7356.5571
+75294.20560354716 3.814975 7356.5571
+75295.20560359745 3.8148961 7356.3604
+75296.20560364774 3.8149354 7356.5571
+75297.20560369804 3.8150537 7355.9663
+75298.20560374833 3.815093 7356.9502
+75299.20560379862 3.8151717 7356.5571
+75300.20560384891 3.8152111 7356.1636
+75301.2056038992 3.8152504 7356.3604
+75302.2056039495 3.81529 7355.7695
+75303.20560399978 3.8152504 7356.9502
+75304.20560405008 3.815408 7356.9502
+75305.20560410037 3.8154867 7355.7695
+75306.20560415066 3.815526 7357.3442
+75307.20560420095 3.8156049 7357.1475
+75308.20560425124 3.8155653 7356.5571
+75309.20560430153 3.8156836 7357.1475
+75310.20560435182 3.8158016 7356.3604
+75311.20560440212 3.815841 7356.7539
+75312.2056044524 3.8158016 7355.9663
+75313.2056045027 3.8159199 7356.1636
+75314.20560455299 3.8159592 7356.1636
+75315.20560460328 3.8159592 7356.7539
+75316.20560465357 3.8160379 7356.5571
+75317.20560470386 3.8160379 7356.5571
+75318.20560475416 3.8160772 7355.9663
+75319.20560480445 3.8161559 7357.541
+75320.20560485474 3.8162348 7356.3604
+75321.20560490503 3.8162348 7357.1475
+75322.20560495532 3.8163922 7356.7539
+75323.20560500561 3.8164709 7356.7539
+75324.2056050559 3.8163922 7357.9346
+75325.2056051062 3.8165104 7356.9502
+75326.20560515649 3.8165891 7356.1636
+75327.20560520678 3.8167465 7357.541
+75328.20560525707 3.8167465 7356.5571
+75329.20560530736 3.8168254 7355.9663
+75330.20560535765 3.8168647 7357.3442
+75331.20560540794 3.8169434 7356.7539
+75332.20560545824 3.8169041 7356.9502
+75333.20560550853 3.8169827 7357.3442
+75334.20560555882 3.8170614 7356.9502
+75335.20560560911 3.8171797 7356.5571
+75336.2056056594 3.817219 7356.7539
+75337.20560570969 3.817337 7356.1636
+75338.20560575998 3.8173764 7357.1475
+75339.20560581028 3.8174157 7357.3442
+75340.20560586057 3.8174946 7356.7539
+75341.20560591086 3.8174946 7356.7539
+75342.20560596115 3.8176126 7356.7539
+75343.20560601144 3.817652 7356.9502
+75344.20560606173 3.8178489 7357.1475
+75345.20560611202 3.8178883 7356.9502
+75346.20560616232 3.8178489 7356.7539
+75347.2056062126 3.8180459 7356.7539
+75348.2056062629 3.8180459 7356.5571
+75349.20560631319 3.8181245 7356.3604
+75350.20560636348 3.8181639 7356.7539
+75351.20560641377 3.8181639 7356.9502
+75352.20560646406 3.8182819 7356.7539
+75353.20560651436 3.8184395 7356.9502
+75354.20560656465 3.8184395 7357.1475
+75355.20560661494 3.8185182 7356.5571
+75356.20560666523 3.8185968 7356.7539
+75357.20560671552 3.8186362 7355.9663
+75358.20560676581 3.8187151 7357.1475
+75359.2056068161 3.8187938 7356.9502
+75360.2056068664 3.8188331 7355.9663
+75361.20560691669 3.8189118 7357.3442
+75362.20560696698 3.8189907 7356.7539
+75363.20560701727 3.8189511 7356.7539
+75364.20560706756 3.8189907 7356.9502
+75365.20560711785 3.8190694 7356.5571
+75366.20560716814 3.8190694 7356.1636
+75367.20560721844 3.819345 7356.9502
+75368.20560726873 3.819345 7356.3604
+75369.20560731902 3.8192661 7357.1475
+75370.20560736931 3.8193843 7356.5571
+75371.2056074196 3.8193843 7357.3442
+75372.20560746989 3.8196206 7356.3604
+75373.20560752018 3.819581 7356.5571
+75374.20560757047 3.8196599 7356.3604
+75375.20560762077 3.8196599 7356.7539
+75376.20560767106 3.8196993 7357.1475
+75377.20560772135 3.8197386 7356.9502
+75378.20560777164 3.819778 7356.9502
+75379.20560782193 3.8198962 7356.3604
+75380.20560787222 3.8199356 7356.3604
+75381.20560792251 3.8198962 7356.3604
+75382.2056079728 3.8201323 7356.5571
+75383.2056080231 3.8202112 7356.9502
+75384.20560807339 3.8202112 7356.3604
+75385.20560812368 3.8201716 7356.3604
+75386.20560817397 3.8203292 7356.7539
+75387.20560822426 3.8202505 7357.3442
+75388.20560827455 3.8205261 7356.3604
+75389.20560832485 3.8204472 7356.7539
+75390.20560837514 3.8206048 7357.3442
+75391.20560842543 3.8206048 7355.9663
+75392.20560847572 3.8206048 7357.1475
+75393.20560852601 3.8209198 7357.1475
+75394.2056085763 3.8208804 7356.3604
+75395.2056086266 3.8208411 7356.7539
+75396.20560867689 3.8209984 7356.9502
+75397.20560872718 3.8210378 7356.7539
+75398.20560877747 3.8211164 7356.9502
+75399.20560882776 3.8211954 7356.7539
+75400.20560887805 3.8212347 7356.1636
+75401.20560892834 3.8213527 7357.1475
+75402.20560897863 3.8213921 7357.3442
+75403.20560902893 3.821471 7356.3604
+75404.20560907922 3.8216283 7356.5571
+75405.20560912951 3.8216283 7356.9502
+75406.2056091798 3.8217859 7357.1475
+75407.20560923009 3.8218253 7356.5571
+75408.20560928038 3.8219039 7355.3765
+75409.20560933067 3.8219433 7356.7539
+75410.20560938097 3.8221009 7356.9502
+75411.20560943126 3.8221009 7355.7695
+75412.20560948155 3.8222582 7357.3442
+75413.20560953184 3.8221796 7356.5571
+75414.20560958213 3.8222582 7357.541
+75415.20560963242 3.8223765 7356.9502
+75416.20560968271 3.8224945 7356.5571
+75417.205609733 3.8225338 7357.541
+75418.2056097833 3.8226519 7356.5571
+75419.20560983359 3.8226519 7357.1475
+75420.20560988388 3.8226914 7356.9502
+75421.20560993417 3.8227308 7356.5571
+75422.20560998446 3.8228488 7356.7539
+75423.20561003475 3.8230457 7356.9502
+75424.20561008505 3.8229668 7356.1636
+75425.20561013534 3.8230064 7356.9502
+75426.20561018563 3.8230457 7357.1475
+75427.20561023592 3.8230064 7357.1475
+75428.20561028621 3.8231244 7356.5571
+75429.2056103365 3.8232424 7355.9663
+75430.2056103868 3.8232424 7356.7539
+75431.20561043709 3.8233213 7356.7539
+75432.20561048738 3.8233213 7356.3604
+75433.20561053767 3.8234394 7356.9502
+75434.20561058796 3.8234787 7357.1475
+75435.20561063825 3.8234787 7356.5571
+75436.20561068854 3.8235574 7357.7378
+75437.20561073883 3.8235574 7356.9502
+75438.20561078913 3.8236756 7356.9502
+75439.20561083942 3.823715 7356.3604
+75440.20561088971 3.823833 7356.3604
+75441.20561094 3.8237936 7357.1475
+75442.20561099029 3.8239906 7356.7539
+75443.20561104058 3.8239512 7356.7539
+75444.20561109087 3.8241479 7356.3604
+75445.20561114117 3.8242662 7356.7539
+75446.20561119146 3.8242662 7356.7539
+75447.20561124175 3.8242269 7356.9502
+75448.20561129204 3.8244236 7356.3604
+75449.20561134233 3.8244629 7356.1636
+75450.20561139262 3.8244629 7356.7539
+75451.20561144291 3.8245811 7357.7378
+75452.2056114932 3.8246992 7356.5571
+75453.2056115435 3.8247385 7356.3604
+75454.20561159379 3.8247385 7356.9502
+75455.20561164408 3.8247778 7356.9502
+75456.20561169437 3.8248172 7356.1636
+75457.20561174466 3.8250141 7356.3604
+75458.20561179495 3.8249748 7356.5571
+75459.20561184525 3.8250928 7356.9502
+75460.20561189554 3.8250141 7356.9502
+75461.20561194583 3.8251717 7356.9502
+75462.20561199612 3.8251717 7356.7539
+75463.20561204641 3.8253291 7356.9502
+75464.2056120967 3.8252504 7356.9502
+75465.205612147 3.8254867 7356.5571
+75466.20561219729 3.825526 7357.7378
+75467.20561224758 3.8255653 7357.1475
+75468.20561229787 3.8256047 7357.1475
+75469.20561234816 3.8257227 7355.9663
+75470.20561239845 3.8257623 7356.3604
+75471.20561244874 3.8257623 7356.7539
+75472.20561249903 3.8258016 7356.5571
+75473.20561254933 3.8259196 7356.5571
+75474.20561259962 3.8259196 7356.3604
+75475.20561264991 3.825959 7357.1475
+75476.2056127002 3.8260376 7357.541
+75477.20561275049 3.8261166 7356.5571
+75478.20561280078 3.8261952 7356.7539
+75479.20561285107 3.8262739 7356.5571
+75480.20561290137 3.8263922 7356.9502
+75481.20561295166 3.8264315 7357.1475
+75482.20561300195 3.8265102 7356.7539
+75483.20561305224 3.8266282 7356.9502
+75484.20561310253 3.8267071 7356.3604
+75485.20561315282 3.8268251 7356.9502
+75486.20561320311 3.8268645 7355.7695
+75487.2056132534 3.8268251 7356.3604
+75488.2056133037 3.8270614 7356.5571
+75489.20561335399 3.8271794 7357.7378
+75490.20561340428 3.8271008 7356.3604
+75491.20561345457 3.8271794 7356.7539
+75492.20561350486 3.8272977 7356.9502
+75493.20561355515 3.8273764 7356.7539
+75494.20561360545 3.8273764 7357.1475
+75495.20561365574 3.8275731 7356.7539
+75496.20561370603 3.8275731 7355.9663
+75497.20561375632 3.827652 7356.3604
+75498.20561380661 3.8276913 7356.1636
+75499.2056138569 3.8277307 7356.1636
+75500.2056139072 3.8278093 7356.7539
+75501.20561395749 3.827888 7356.7539
+75502.20561400778 3.8279669 7357.3442
+75503.20561405807 3.8280849 7356.1636
+75504.20561410836 3.8281636 7356.7539
+75505.20561415865 3.828203 7356.7539
+75506.20561420894 3.8282425 7357.1475
+75507.20561425923 3.8283212 7356.3604
+75508.20561430953 3.8282819 7356.3604
+75509.20561435982 3.8284392 7356.5571
+75510.20561441011 3.8285575 7357.1475
+75511.2056144604 3.8285575 7356.9502
+75512.20561451069 3.8285968 7356.5571
+75513.20561456098 3.8287148 7356.3604
+75514.20561461127 3.8289118 7357.1475
+75515.20561466157 3.8289905 7357.1475
+75516.20561471186 3.8289511 7357.1475
+75517.20561476215 3.8291085 7356.9502
+75518.20561481244 3.8291874 7356.7539
+75519.20561486273 3.8292267 7357.1475
+75520.20561491302 3.8293054 7356.3604
+75521.20561496331 3.8294234 7356.9502
+75522.2056150136 3.8294234 7356.1636
+75523.2056150639 3.829581 7356.9502
+75524.20561511419 3.8296204 7356.7539
+75525.20561516448 3.8296597 7357.1475
+75526.20561521477 3.829896 7356.3604
+75527.20561526506 3.8299353 7356.7539
+75528.20561531535 3.829896 7356.5571
+75529.20561536564 3.8301322 7356.7539
+75530.20561541594 3.8301322 7356.9502
+75531.20561546623 3.8302503 7357.1475
+75532.20561551652 3.8303683 7356.9502
+75533.20561556681 3.8303289 7356.3604
+75534.2056156171 3.8304079 7356.3604
+75535.2056156674 3.8305259 7356.1636
+75536.20561571768 3.8306439 7355.9663
+75537.20561576798 3.8306835 7357.3442
+75538.20561581827 3.8308802 7356.5571
+75539.20561586856 3.8308802 7356.9502
+75540.20561591885 3.8308802 7356.1636
+75541.20561596914 3.8310771 7356.9502
+75542.20561601943 3.8311558 7357.3442
+75543.20561606972 3.8312738 7356.3604
+75544.20561612002 3.8313527 7356.1636
+75545.20561617031 3.8315494 7356.9502
+75546.2056162206 3.8315494 7357.3442
+75547.20561627089 3.8316283 7357.3442
+75548.20561632118 3.8316677 7356.5571
+75549.20561637147 3.831707 7357.1475
+75550.20561642176 3.8317857 7356.9502
+75551.20561647206 3.8319037 7357.1475
+75552.20561652235 3.832022 7356.1636
+75553.20561657264 3.832022 7356.3604
+75554.20561662293 3.8322186 7356.7539
+75555.20561667322 3.8321793 7357.7378
+75556.20561672351 3.8323369 7356.7539
+75557.2056167738 3.8324156 7356.9502
+75558.2056168241 3.8324156 7356.3604
+75559.20561687439 3.8324156 7356.7539
+75560.20561692468 3.8325338 7356.9502
+75561.20561697497 3.8326519 7356.5571
+75562.20561702526 3.8326912 7357.1475
+75563.20561707555 3.8327699 7356.5571
+75564.20561712584 3.8328092 7356.3604
+75565.20561717614 3.8328881 7356.9502
+75566.20561722643 3.8328488 7356.7539
+75567.20561727672 3.8330848 7356.5571
+75568.20561732701 3.8330848 7356.9502
+75569.2056173773 3.8330455 7357.1475
+75570.2056174276 3.8331242 7357.1475
+75571.20561747788 3.8332818 7356.7539
+75572.20561752818 3.8332424 7356.7539
+75573.20561757847 3.8334391 7356.7539
+75574.20561762876 3.8333998 7357.3442
+75575.20561767905 3.8335574 7356.3604
+75576.20561772934 3.833636 7356.3604
+75577.20561777963 3.8336754 7356.3604
+75578.20561782992 3.8337147 7357.1475
+75579.20561788022 3.8337936 7357.541
+75580.20561793051 3.8338723 7356.9502
+75581.2056179808 3.8339903 7356.9502
+75582.20561803109 3.8339903 7356.3604
+75583.20561808138 3.8341479 7357.3442
+75584.20561813167 3.8341479 7356.9502
+75585.20561818196 3.8342659 7356.5571
+75586.20561823226 3.8343446 7357.3442
+75587.20561828255 3.8344629 7356.7539
+75588.20561833284 3.8344629 7357.541
+75589.20561838313 3.8345416 7356.1636
+75590.20561843342 3.8345416 7356.5571
+75591.20561848371 3.8347778 7356.3604
+75592.205618534 3.8348172 7356.5571
+75593.2056185843 3.8349352 7357.3442
+75594.20561863459 3.8349745 7356.5571
+75595.20561868488 3.8350141 7356.3604
+75596.20561873517 3.8351321 7356.9502
+75597.20561878546 3.8352501 7356.9502
+75598.20561883575 3.8352895 7357.7378
+75599.20561888604 3.8353684 7356.5571
+75600.20561893634 3.8354471 7356.5571
+75601.20561898663 3.8354864 7356.5571
+75602.20561903692 3.835762 7356.3604
+75603.20561908721 3.8357227 7356.7539
+75604.2056191375 3.83588 7356.5571
+75605.2056191878 3.83588 7356.7539
+75606.20561923808 3.8359194 7356.7539
+75607.20561928838 3.836077 7356.5571
+75608.20561933867 3.8361163 7356.3604
+75609.20561938896 3.836195 7357.1475
+75610.20561943925 3.8361163 7356.5571
+75611.20561948954 3.8362739 7355.3765
+75612.20561953983 3.8364313 7356.5571
+75613.20561959012 3.8365495 7356.3604
+75614.20561964042 3.8365889 7356.5571
+75615.2056196907 3.8365889 7357.541
+75616.205619741 3.8367462 7356.3604
+75617.20561979129 3.8367069 7357.1475
+75618.20561984158 3.8369038 7355.9663
+75619.20561989187 3.8369038 7356.7539
+75620.20561994216 3.8371005 7356.9502
+75621.20561999246 3.8370612 7356.5571
+75622.20562004275 3.8372188 7356.5571
+75623.20562009304 3.8372188 7356.7539
+75624.20562014333 3.8374155 7356.3604
+75625.20562019362 3.8374944 7357.3442
+75626.20562024391 3.8375731 7357.1475
+75627.2056202942 3.8374944 7356.7539
+75628.2056203445 3.8376911 7357.3442
+75629.20562039479 3.83777 7357.1475
+75630.20562044508 3.8378093 7357.541
+75631.20562049537 3.8378093 7357.7378
+75632.20562054566 3.837888 7356.9502
+75633.20562059595 3.8379273 7357.1475
+75634.20562064624 3.8380849 7357.1475
+75635.20562069654 3.8381636 7357.541
+75636.20562074683 3.8381636 7356.9502
+75637.20562079712 3.8383603 7354.9824
+75638.20562084741 3.8383999 7354.9824
+75639.2056208977 3.8385179 7354.1948
+75640.20562094799 3.8385572 7354.9824
+75641.20562099828 3.8386753 7353.998
+75642.20562104858 3.8386753 7357.3442
+75643.20562109887 3.8387542 7358.7217
+75644.20562114916 3.8387935 7359.1157
+75645.20562119945 3.8389509 7358.7217
+75646.20562124974 3.8390691 7357.7378
+75647.20562130003 3.8390298 7356.7539
+75648.20562135032 3.8391085 7356.5571
+75649.20562140062 3.8392265 7357.3442
+75650.2056214509 3.8393052 7356.7539
+75651.2056215012 3.8394628 7355.9663
+75652.20562155149 3.8394234 7356.1636
+75653.20562160178 3.8396597 7356.1636
+75654.20562165207 3.839699 7355.7695
+75655.20562170236 3.8396204 7357.3442
+75656.20562175266 3.839699 7357.3442
+75657.20562180295 3.839817 7356.7539
+75658.20562185324 3.8398957 7356.9502
+75659.20562190353 3.840014 7356.7539
+75660.20562195382 3.840014 7357.541
+75661.20562200411 3.8402107 7356.9502
+75662.2056220544 3.8402896 7356.9502
+75663.2056221047 3.8403289 7355.7695
+75664.20562215499 3.8403289 7356.9502
+75665.20562220528 3.8405652 7356.7539
+75666.20562225557 3.8404863 7357.1475
+75667.20562230586 3.8406439 7357.3442
+75668.20562235615 3.8408012 7356.3604
+75669.20562240644 3.8408802 7357.3442
+75670.20562245674 3.8409588 7357.1475
+75671.20562250703 3.8409982 7356.3604
+75672.20562255732 3.8410375 7356.5571
+75673.20562260761 3.8411555 7357.541
+75674.2056226579 3.8413525 7356.9502
+75675.20562270819 3.8413918 7357.541
+75676.20562275848 3.8415101 7357.1475
+75677.20562280877 3.8414707 7356.7539
+75678.20562285907 3.8416281 7356.5571
+75679.20562290936 3.8417857 7356.5571
+75680.20562295965 3.8417857 7357.1475
+75681.20562300994 3.841943 7357.3442
+75682.20562306023 3.842061 7357.3442
+75683.20562311052 3.842061 7357.3442
+75684.20562316081 3.8421793 7356.5571
+75685.2056232111 3.8422186 7357.7378
+75686.2056232614 3.842258 7356.7539
+75687.20562331169 3.8422973 7356.7539
+75688.20562336198 3.8425729 7357.541
+75689.20562341227 3.8425729 7356.9502
+75690.20562346256 3.8426123 7357.1475
+75691.20562351285 3.8427305 7357.3442
+75692.20562356315 3.8427305 7356.1636
+75693.20562361344 3.8429666 7357.541
+75694.20562366373 3.8430059 7357.3442
+75695.20562371402 3.8431242 7357.1475
+75696.20562376431 3.8432028 7356.7539
+75697.2056238146 3.8432815 7356.5571
+75698.2056238649 3.8434391 7356.9502
+75699.20562391519 3.8434391 7356.9502
+75700.20562396548 3.8435178 7356.7539
+75701.20562401577 3.843636 7356.9502
+75702.20562406606 3.8437147 7357.3442
+75703.20562411635 3.8437541 7357.1475
+75704.20562416664 3.8439114 7356.7539
+75705.20562421693 3.8438721 7357.1475
+75706.20562426723 3.844069 7357.9346
+75707.20562431752 3.8440297 7356.9502
+75708.20562436781 3.844187 7356.9502
+75709.2056244181 3.8443053 7357.3442
+75710.20562446839 3.8444626 7356.9502
+75711.20562451868 3.8444233 7357.3442
+75712.20562456897 3.8446596 7357.3442
+75713.20562461927 3.8446202 7356.3604
+75714.20562466956 3.8448563 7356.5571
+75715.20562471985 3.8448563 7356.5571
+75716.20562477014 3.8448958 7357.1475
+75717.20562482043 3.8450532 7356.9502
+75718.20562487072 3.8451715 7357.3442
+75719.20562492101 3.8451715 7357.1475
+75720.2056249713 3.8452501 7357.1475
+75721.2056250216 3.8453681 7357.3442
+75722.20562507189 3.8454468 7356.5571
+75723.20562512218 3.8454864 7357.1475
+75724.20562517247 3.8456438 7356.9502
+75725.20562522276 3.8458014 7356.9502
+75726.20562527305 3.8457224 7357.1475
+75727.20562532335 3.8459194 7356.7539
+75728.20562537364 3.84588 7356.5571
+75729.20562542393 3.8459587 7357.1475
+75730.20562547422 3.8461163 7356.5571
+75731.20562552451 3.8462343 7356.7539
+75732.2056255748 3.846313 7356.7539
+75733.2056256251 3.846313 7356.9502
+75734.20562567539 3.8464313 7356.7539
+75735.20562572568 3.8465493 7357.541
+75736.20562577597 3.8465886 7356.5571
+75737.20562582626 3.8467462 7356.3604
+75738.20562587655 3.8467855 7357.3442
+75739.20562592684 3.8469036 7356.5571
+75740.20562597713 3.8470218 7356.5571
+75741.20562602743 3.8470218 7357.541
+75742.20562607772 3.8471792 7356.7539
+75743.20562612801 3.8473368 7356.9502
+75744.2056261783 3.8472972 7357.7378
+75745.20562622859 3.8474548 7357.3442
+75746.20562627888 3.8474941 7356.5571
+75747.20562632917 3.8474941 7356.9502
+75748.20562637947 3.8476911 7356.3604
+75749.20562642976 3.8477304 7356.7539
+75750.20562648005 3.8477697 7357.1475
+75751.20562653034 3.8479271 7356.9502
+75752.20562658063 3.8480453 7356.5571
+75753.20562663092 3.848124 7356.7539
+75754.20562668121 3.8482027 7357.1475
+75755.2056267315 3.8483603 7357.1475
+75756.2056267818 3.8483603 7356.9502
+75757.20562683209 3.8485177 7356.7539
+75758.20562688238 3.8485966 7356.9502
+75759.20562693267 3.8488326 7357.7378
+75760.20562698296 3.8487146 7356.1636
+75761.20562703325 3.8488722 7357.1475
+75762.20562708355 3.8490295 7356.5571
+75763.20562713384 3.8490689 7356.9502
+75764.20562718413 3.8491476 7356.9502
+75765.20562723442 3.8492658 7357.1475
+75766.20562728471 3.8493838 7356.9502
+75767.205627335 3.8493838 7356.7539
+75768.2056273853 3.8495414 7356.7539
+75769.20562743559 3.8495808 7356.7539
+75770.20562748588 3.8496988 7356.5571
+75771.20562753617 3.8497381 7356.9502
+75772.20562758646 3.8498564 7357.3442
+75773.20562763675 3.8499351 7357.1475
+75774.20562768704 3.8500531 7356.9502
+75775.20562773733 3.8500924 7356.1636
+75776.20562778763 3.8502107 7356.9502
+75777.20562783792 3.85025 7357.1475
+75778.20562788821 3.8503287 7356.5571
+75779.2056279385 3.8504076 7356.9502
+75780.20562798879 3.8504863 7356.9502
+75781.20562803908 3.8505256 7356.3604
+75782.20562808937 3.8507226 7356.3604
+75783.20562813967 3.8507619 7356.9502
+75784.20562818996 3.8508406 7356.5571
+75785.20562824025 3.8508799 7357.3442
+75786.20562829054 3.8509586 7356.9502
+75787.20562834083 3.8510768 7356.7539
+75788.20562839112 3.8511162 7356.5571
+75789.20562844141 3.8513129 7356.9502
+75790.2056284917 3.8513129 7356.3604
+75791.205628542 3.8514311 7355.7695
+75792.20562859229 3.8515491 7356.7539
+75793.20562864258 3.8515098 7357.541
+75794.20562869287 3.8517067 7356.7539
+75795.20562874316 3.8517854 7356.7539
+75796.20562879345 3.8518248 7357.3442
+75797.20562884375 3.8519824 7356.7539
+75798.20562889404 3.852061 7356.7539
+75799.20562894433 3.8521004 7356.5571
+75800.20562899462 3.852258 7356.9502
+75801.20562904491 3.8522973 7356.9502
+75802.2056290952 3.8525729 7357.1475
+75803.2056291455 3.8525333 7356.5571
+75804.20562919579 3.8526909 7356.5571
+75805.20562924608 3.8527303 7356.7539
+75806.20562929637 3.852809 7356.7539
+75807.20562934666 3.852809 7356.9502
+75808.20562939695 3.8528879 7356.9502
+75809.20562944724 3.8530452 7357.3442
+75810.20562949753 3.8530846 7356.9502
+75811.20562954783 3.8532422 7357.3442
+75812.20562959812 3.8533208 7356.7539
+75813.20562964841 3.8533995 7357.1475
+75814.2056296987 3.8533602 7356.5571
+75815.20562974899 3.8535571 7356.1636
+75816.20562979928 3.8535964 7357.3442
+75817.20562984957 3.8536358 7357.1475
+75818.20562989987 3.8537931 7356.5571
+75819.20562995016 3.8538327 7356.7539
+75820.20563000045 3.8539114 7356.7539
+75821.20563005074 3.8539901 7357.3442
+75822.20563010103 3.8540294 7357.541
+75823.20563015132 3.854187 7356.9502
+75824.20563020161 3.8542657 7357.3442
+75825.2056302519 3.8543444 7356.9502
+75826.2056303022 3.8544233 7356.5571
+75827.20563035249 3.8544626 7357.3442
+75828.20563040278 3.85462 7356.3604
+75829.20563045307 3.8546987 7356.7539
+75830.20563050336 3.8547776 7356.7539
+75831.20563055365 3.8548956 7356.9502
+75832.20563060394 3.8549743 7356.9502
+75833.20563065424 3.8550925 7357.1475
+75834.20563070453 3.8551712 7356.9502
+75835.20563075482 3.8552105 7357.7378
+75836.20563080511 3.8552105 7356.9502
+75837.2056308554 3.8554075 7356.7539
+75838.2056309057 3.8555648 7356.1636
+75839.20563095598 3.8555648 7356.7539
+75840.20563100628 3.8556435 7356.5571
+75841.20563105657 3.8556435 7356.9502
+75842.20563110686 3.8558011 7357.1475
+75843.20563115715 3.8558798 7357.3442
+75844.20563120744 3.855998 7358.1318
+75845.20563125773 3.8561554 7357.541
+75846.20563130802 3.8561554 7356.1636
+75847.20563135832 3.8562737 7357.1475
+75848.20563140861 3.8564703 7356.3604
+75849.2056314589 3.856549 7357.541
+75850.20563150919 3.856549 7356.5571
+75851.20563155948 3.8566673 7356.5571
+75852.20563160977 3.856746 7356.9502
+75853.20563166006 3.8569036 7356.9502
+75854.20563171036 3.8571396 7357.3442
+75855.20563176065 3.8571396 7357.3442
+75856.20563181094 3.8571789 7356.7539
+75857.20563186123 3.8572578 7356.7539
+75858.20563191152 3.8574545 7356.9502
+75859.20563196181 3.8574941 7356.5571
+75860.2056320121 3.8576121 7356.7539
+75861.2056320624 3.8576515 7356.7539
+75862.20563211269 3.8578091 7356.7539
+75863.20563216298 3.8578877 7356.7539
+75864.20563221327 3.8580058 7357.541
+75865.20563226356 3.8580451 7356.5571
+75866.20563231385 3.8582027 7356.9502
+75867.20563236414 3.8582027 7356.9502
+75868.20563241444 3.8582814 7357.3442
+75869.20563246473 3.8583207 7356.9502
+75870.20563251502 3.8585176 7356.7539
+75871.20563256531 3.8587539 7356.7539
+75872.2056326156 3.8587539 7356.7539
+75873.2056326659 3.8587143 7357.3442
+75874.20563271618 3.8589113 7356.5571
+75875.20563276648 3.8590293 7356.9502
+75876.20563281677 3.85899 7356.5571
+75877.20563286706 3.8592656 7357.3442
+75878.20563291735 3.8593049 7356.9502
+75879.20563296764 3.8593445 7357.1475
+75880.20563301793 3.8594232 7357.1475
+75881.20563306822 3.8594625 7357.1475
+75882.20563311852 3.8595412 7357.1475
+75883.2056331688 3.8596594 7357.1475
+75884.2056332191 3.8597775 7355.9663
+75885.20563326939 3.8598168 7356.7539
+75886.20563331968 3.8599348 7356.7539
+75887.20563336997 3.8599744 7356.9502
+75888.20563342026 3.8600137 7356.9502
+75889.20563347056 3.8601317 7357.1475
+75890.20563352085 3.8602893 7357.3442
+75891.20563357114 3.8603287 7356.7539
+75892.20563362143 3.8604074 7355.7695
+75893.20563367172 3.8604467 7356.7539
+75894.20563372201 3.8606436 7356.3604
+75895.2056337723 3.8606436 7355.7695
+75896.2056338226 3.860683 7356.3604
+75897.20563387289 3.8608403 7357.541
+75898.20563392318 3.8609586 7356.5571
+75899.20563397347 3.8609192 7356.3604
+75900.20563402376 3.8609586 7356.7539
+75901.20563407405 3.8611159 7356.9502
+75902.20563412434 3.8611948 7357.1475
+75903.20563417464 3.8613522 7356.7539
+75904.20563422493 3.8613915 7356.7539
+75905.20563427522 3.8614309 7356.3604
+75906.20563432551 3.8614309 7356.7539
+75907.2056343758 3.8615491 7356.3604
+75908.2056344261 3.8617458 7356.5571
+75909.20563447638 3.8618248 7356.9502
+75910.20563452668 3.8617852 7356.9502
+75911.20563457697 3.8619428 7356.9502
+75912.20563462726 3.8619821 7356.9502
+75913.20563467755 3.8620214 7356.3604
+75914.20563472784 3.8622184 7356.9502
+75915.20563477813 3.8622577 7357.1475
+75916.20563482842 3.8622577 7356.9502
+75917.20563487872 3.862494 7356.7539
+75918.205634929 3.8625727 7356.3604
+75919.2056349793 3.862612 7356.5571
+75920.20563502959 3.86273 7356.7539
+75921.20563507988 3.8628876 7357.3442
+75922.20563513017 3.862927 7357.1475
+75923.20563518046 3.8629663 7356.1636
+75924.20563523076 3.8630056 7356.5571
+75925.20563528105 3.8630452 7357.3442
+75926.20563533134 3.8631239 7356.5571
+75927.20563538163 3.8632813 7356.1636
+75928.20563543192 3.8633602 7357.1475
+75929.20563548221 3.8633602 7356.3604
+75930.2056355325 3.8634782 7357.3442
+75931.2056355828 3.8635175 7356.1636
+75932.20563563309 3.8636355 7356.7539
+75933.20563568338 3.8637145 7357.3442
+75934.20563573367 3.8637538 7356.3604
+75935.20563578396 3.8638325 7356.3604
+75936.20563583425 3.8640294 7357.541
+75937.20563588454 3.8640294 7356.7539
+75938.20563593484 3.8641474 7356.5571
+75939.20563598513 3.8642261 7356.1636
+75940.20563603542 3.8643837 7356.5571
+75941.20563608571 3.8643444 7357.3442
+75942.205636136 3.864423 7356.9502
+75943.20563618629 3.8645411 7357.3442
+75944.20563623658 3.864738 7356.7539
+75945.20563628688 3.8647773 7356.7539
+75946.20563633717 3.8647773 7356.1636
+75947.20563638746 3.864856 7356.7539
+75948.20563643775 3.8650136 7356.9502
+75949.20563648804 3.8650923 7356.5571
+75950.20563653833 3.8650923 7356.3604
+75951.20563658862 3.8652892 7357.541
+75952.20563663892 3.8652892 7357.1475
+75953.2056366892 3.8653679 7356.9502
+75954.2056367395 3.8656042 7356.9502
+75955.20563678979 3.8656042 7356.7539
+75956.20563684008 3.8655648 7357.541
+75957.20563689037 3.8656828 7357.541
+75958.20563694066 3.8658009 7357.541
+75959.20563699096 3.8659191 7356.5571
+75960.20563704125 3.8659978 7356.9502
+75961.20563709154 3.8661158 7356.9502
+75962.20563714183 3.8661554 7356.5571
+75963.20563719212 3.8663521 7356.5571
+75964.20563724241 3.8662341 7356.9502
+75965.2056372927 3.8663127 7355.7695
+75966.205637343 3.8665097 7357.3442
+75967.20563739329 3.8665097 7356.9502
+75968.20563744358 3.866549 7357.1475
+75969.20563749387 3.8667064 7356.7539
+75970.20563754416 3.8667853 7357.3442
+75971.20563759445 3.8669033 7356.5571
+75972.20563764474 3.8669426 7356.1636
+75973.20563769503 3.8670213 7357.3442
+75974.20563774533 3.8672183 7356.7539
+75975.20563779562 3.8671789 7356.9502
+75976.20563784591 3.8672969 7357.541
+75977.2056378962 3.8673363 7356.7539
+75978.20563794649 3.8673759 7357.1475
+75979.20563799678 3.8675332 7357.541
+75980.20563804707 3.8676908 7356.9502
+75981.20563809737 3.8678088 7356.7539
+75982.20563814766 3.8677695 7356.9502
+75983.20563819795 3.8678482 7356.5571
+75984.20563824824 3.8678875 7356.9502
+75985.20563829853 3.8680844 7357.3442
+75986.20563834882 3.8680451 7356.9502
+75987.20563839911 3.8681238 7356.9502
+75988.2056384494 3.8682814 7357.1475
+75989.2056384997 3.8683207 7356.1636
+75990.20563854999 3.8684387 7356.5571
+75991.20563860028 3.8684781 7356.9502
+75992.20563865057 3.8684781 7356.5571
+75993.20563870086 3.8686357 7357.1475
+75994.20563875115 3.8687143 7356.1636
+75995.20563880145 3.8688717 7357.3442
+75996.20563885174 3.8688717 7356.3604
+75997.20563890203 3.8689113 7357.3442
+75998.20563895232 3.8690686 7357.1475
+75999.20563900261 3.8691473 7357.1475
+76000.2056390529 3.8693049 7356.9502
+76001.2056391032 3.8693836 7357.1475
+76002.20563915349 3.8694623 7356.3604
+76003.20563920378 3.8695412 7357.7378
+76004.20563925407 3.8696198 7357.541
+76005.20563930436 3.8696985 7356.5571
+76006.20563935465 3.8698561 7356.7539
+76007.20563940494 3.8699348 7356.9502
+76008.20563945523 3.8698955 7356.9502
+76009.20563950553 3.8699741 7356.3604
+76010.20563955582 3.8701317 7356.9502
+76011.20563960611 3.8702104 7357.1475
+76012.2056396564 3.8703284 7357.1475
+76013.20563970669 3.8704467 7357.7378
+76014.20563975698 3.8706434 7356.9502
+76015.20563980727 3.8707221 7356.7539
+76016.20563985757 3.870801 7357.3442
+76017.20563990786 3.8708403 7356.5571
+76018.20563995815 3.870919 7356.5571
+76019.20564000844 3.8709583 7356.7539
+76020.20564005873 3.8711159 7357.3442
+76021.20564010902 3.8711159 7356.7539
+76022.20564015931 3.8712339 7356.3604
+76023.2056402096 3.8713126 7356.5571
+76024.2056402599 3.8714309 7356.9502
+76025.20564031019 3.8715096 7357.7378
+76026.20564036048 3.8715489 7357.7378
+76027.20564041077 3.8715882 7357.1475
+76028.20564046106 3.8717065 7357.1475
+76029.20564051135 3.8718245 7356.5571
+76030.20564056165 3.8719032 7356.7539
+76031.20564061194 3.8719032 7356.7539
+76032.20564066223 3.8720608 7356.3604
+76033.20564071252 3.8721001 7356.5571
+76034.20564076281 3.8721395 7356.9502
+76035.2056408131 3.8722575 7356.3604
+76036.2056408634 3.8723757 7356.3604
+76037.20564091369 3.8724151 7356.7539
+76038.20564096398 3.872612 7356.5571
+76039.20564101427 3.8726513 7356.7539
+76040.20564106456 3.8725724 7356.7539
+76041.20564111485 3.87273 7357.541
+76042.20564116514 3.8728874 7356.9502
+76043.20564121543 3.872848 7356.5571
+76044.20564126573 3.8729663 7356.9502
+76045.20564131602 3.8730843 7356.9502
+76046.20564136631 3.8731236 7356.7539
+76047.2056414166 3.8732023 7356.1636
+76048.20564146689 3.8732812 7357.3442
+76049.20564151718 3.8733599 7356.7539
+76050.20564156747 3.8734779 7356.5571
+76051.20564161777 3.8736749 7356.9502
+76052.20564166806 3.8736355 7356.9502
+76053.20564171835 3.8737929 7357.1475
+76054.20564176864 3.8738325 7356.9502
+76055.20564181893 3.8739111 7356.9502
+76056.20564186922 3.8739505 7356.5571
+76057.20564191951 3.8739111 7356.3604
+76058.2056419698 3.8741868 7356.7539
+76059.2056420201 3.8742654 7357.1475
+76060.20564207039 3.8741474 7356.9502
+76061.20564212068 3.8744228 7356.3604
+76062.20564217097 3.8743834 7355.9663
+76063.20564222126 3.8745017 7357.1475
+76064.20564227155 3.8746197 7357.3442
+76065.20564232185 3.8746591 7357.1475
+76066.20564237214 3.8747377 7356.7539
+76067.20564242243 3.8748953 7356.7539
+76068.20564247272 3.8748953 7356.1636
+76069.20564252301 3.874974 7356.7539
+76070.2056425733 3.8750527 7356.7539
+76071.2056426236 3.875289 7357.1475
+76072.20564267389 3.8752103 7356.7539
+76073.20564272418 3.875289 7356.5571
+76074.20564277447 3.8754466 7357.1475
+76075.20564282476 3.8754466 7357.541
+76076.20564287505 3.8756433 7356.3604
+76077.20564292534 3.8756433 7355.9663
+76078.20564297563 3.8756828 7356.7539
+76079.20564302593 3.8757615 7356.3604
+76080.20564307622 3.8758402 7357.1475
+76081.20564312651 3.8759582 7357.7378
+76082.2056431768 3.8759978 7357.1475
+76083.20564322709 3.8760765 7357.1475
+76084.20564327738 3.8761158 7356.5571
+76085.20564332767 3.8762732 7356.3604
+76086.20564337797 3.8762338 7356.7539
+76087.20564342826 3.8763127 7356.9502
+76088.20564347855 3.8765094 7356.1636
+76089.20564352884 3.8765488 7357.1475
+76090.20564357913 3.876667 7356.5571
+76091.20564362942 3.8767457 7356.3604
+76092.20564367971 3.876785 7356.9502
+76093.20564373 3.8768637 7356.7539
+76094.2056437803 3.8770607 7356.7539
+76095.20564383059 3.8770213 7357.541
+76096.20564388088 3.8771 7357.7378
+76097.20564393117 3.8771787 7356.3604
+76098.20564398146 3.8774149 7356.3604
+76099.20564403175 3.8773756 7356.7539
+76100.20564408205 3.8774149 7357.1475
+76101.20564413234 3.8775332 7357.541
+76102.20564418263 3.8776906 7357.7378
+76103.20564423292 3.8776906 7357.3442
+76104.20564428321 3.8778086 7357.3442
+76105.2056443335 3.8778875 7357.1475
+76106.2056443838 3.8779268 7356.9502
+76107.20564443409 3.8781235 7357.3442
+76108.20564448438 3.8781235 7357.1475
+76109.20564453467 3.8782024 7356.7539
+76110.20564458496 3.8783205 7356.9502
+76111.20564463525 3.8784781 7357.541
+76112.20564468554 3.8785174 7356.9502
+76113.20564473583 3.8785174 7356.9502
+76114.20564478613 3.8787534 7357.7378
+76115.20564483642 3.8788717 7357.1475
+76116.20564488671 3.8789504 7356.5571
+76117.205644937 3.8789897 7355.9663
+76118.20564498729 3.879029 7356.5571
+76119.20564503758 3.8791473 7356.5571
+76120.20564508787 3.879226 7356.9502
+76121.20564513816 3.8793046 7357.3442
+76122.20564518846 3.8793836 7356.7539
+76123.20564523875 3.8795803 7357.3442
+76124.20564528904 3.8795803 7357.1475
+76125.20564533933 3.8797772 7356.1636
+76126.20564538962 3.8796589 7355.9663
+76127.20564543991 3.8798952 7357.1475
+76128.2056454902 3.8799345 7357.541
+76129.2056455405 3.8800135 7357.3442
+76130.20564559079 3.8800528 7356.7539
+76131.20564564108 3.8802102 7356.5571
+76132.20564569137 3.8803284 7356.9502
+76133.20564574166 3.8803284 7357.3442
+76134.20564579195 3.8804858 7356.9502
+76135.20564584224 3.8805645 7357.1475
+76136.20564589254 3.8806827 7357.3442
+76137.20564594283 3.8806827 7357.1475
+76138.20564599312 3.8808401 7356.5571
+76139.20564604341 3.8808007 7356.7539
+76140.2056460937 3.880919 7356.3604
+76141.205646144 3.8810763 7355.9663
+76142.20564619428 3.881155 7356.7539
+76143.20564624458 3.8811944 7356.7539
+76144.20564629487 3.8813126 7356.1636
+76145.20564634516 3.8815093 7356.9502
+76146.20564639545 3.88147 7356.5571
+76147.20564644574 3.8816669 7357.1475
+76148.20564649603 3.8816669 7356.9502
+76149.20564654632 3.8817456 7356.9502
+76150.20564659662 3.8819032 7356.9502
+76151.20564664691 3.8819818 7357.3442
+76152.2056466972 3.8819818 7356.7539
+76153.20564674749 3.8820605 7357.1475
+76154.20564679778 3.8821788 7357.3442
+76155.20564684807 3.8822575 7357.3442
+76156.20564689836 3.8824148 7357.541
+76157.20564694866 3.8823755 7356.5571
+76158.20564699895 3.8824937 7356.5571
+76159.20564704924 3.8826511 7358.1318
+76160.20564709953 3.8825724 7356.7539
+76161.20564714982 3.8826511 7357.541
+76162.20564720011 3.882848 7357.1475
+76163.2056472504 3.8829267 7356.7539
+76164.2056473007 3.882966 7356.9502
+76165.20564735099 3.883163 7356.3604
+76166.20564740128 3.883163 7356.5571
+76167.20564745157 3.883281 7357.1475
+76168.20564750186 3.8833992 7357.1475
+76169.20564755215 3.8834779 7356.9502
+76170.20564760244 3.8835173 7356.3604
+76171.20564765274 3.8835959 7356.9502
+76172.20564770303 3.8836746 7357.3442
+76173.20564775332 3.8837929 7357.1475
+76174.20564780361 3.8839109 7357.3442
+76175.2056478539 3.8839109 7357.1475
+76176.2056479042 3.8841472 7356.7539
+76177.20564795448 3.8841865 7357.1475
+76178.20564800478 3.8842258 7356.9502
+76179.20564805507 3.8843441 7356.7539
+76180.20564810536 3.8843441 7356.5571
+76181.20564815565 3.8845408 7356.9502
+76182.20564820594 3.8845408 7356.7539
+76183.20564825623 3.8847771 7356.7539
+76184.20564830652 3.8848164 7356.9502
+76185.20564835682 3.8848951 7356.7539
+76186.2056484071 3.8849347 7357.3442
+76187.2056484574 3.8850527 7357.1475
+76188.20564850769 3.885092 7356.5571
+76189.20564855798 3.8851707 7356.3604
+76190.20564860827 3.8852496 7356.3604
+76191.20564865856 3.8854463 7356.7539
+76192.20564870886 3.885525 7356.7539
+76193.20564875915 3.8856039 7356.7539
+76194.20564880944 3.8856039 7356.3604
+76195.20564885973 3.8857613 7356.7539
+76196.20564891002 3.8858006 7356.7539
+76197.20564896031 3.8859582 7356.5571
+76198.2056490106 3.8859975 7356.7539
+76199.2056490609 3.8860762 7357.3442
+76200.20564911119 3.8861551 7356.1636
+76201.20564916148 3.8862338 7355.7695
+76202.20564921177 3.8864305 7356.9502
+76203.20564926206 3.8865094 7356.7539
+76204.20564931235 3.8865881 7356.9502
+76205.20564936264 3.8865488 7356.9502
+76206.20564941294 3.8867061 7356.9502
+76207.20564946323 3.8868637 7357.1475
+76208.20564951352 3.8868244 7357.1475
+76209.20564956381 3.8870604 7356.9502
+76210.2056496141 3.8871393 7356.9502
+76211.20564966439 3.8871787 7356.7539
+76212.20564971468 3.8871787 7357.3442
+76213.20564976498 3.8872967 7356.9502
+76214.20564981527 3.8874936 7357.3442
+76215.20564986556 3.8875329 7356.5571
+76216.20564991585 3.8876116 7357.1475
+76217.20564996614 3.8876903 7356.1636
+76218.20565001643 3.8878872 7356.7539
+76219.20565006672 3.8878872 7356.9502
+76220.20565011702 3.8880055 7356.7539
+76221.2056501673 3.8882022 7356.9502
+76222.2056502176 3.8882415 7356.9502
+76223.20565026789 3.8882809 7356.1636
+76224.20565031818 3.8884778 7356.3604
+76225.20565036847 3.8883991 7357.3442
+76226.20565041876 3.8883991 7357.1475
+76227.20565046906 3.8885565 7357.541
+76228.20565051935 3.8887141 7356.9502
+76229.20565056964 3.8887534 7356.7539
+76230.20565061993 3.8889503 7356.7539
+76231.20565067022 3.8889897 7356.3604
+76232.20565072051 3.889029 7356.7539
+76233.2056507708 3.8891864 7356.1636
+76234.2056508211 3.8892653 7356.5571
+76235.20565087139 3.8891864 7356.5571
+76236.20565092168 3.8893046 7357.1475
+76237.20565097197 3.8895407 7356.5571
+76238.20565102226 3.8895407 7357.1475
+76239.20565107255 3.8895407 7356.9502
+76240.20565112284 3.8897376 7357.3442
+76241.20565117314 3.8897769 7357.541
+76242.20565122343 3.8899345 7356.5571
+76243.20565127372 3.8898952 7356.7539
+76244.20565132401 3.8899739 7356.7539
+76245.2056513743 3.8901708 7357.3442
+76246.20565142459 3.8900526 7356.9502
+76247.20565147488 3.8902495 7356.9502
+76248.20565152518 3.8903282 7357.1475
+76249.20565157547 3.8904858 7356.3604
+76250.20565162576 3.8904068 7356.7539
+76251.20565167605 3.8904858 7357.541
+76252.20565172634 3.8906825 7357.541
+76253.20565177663 3.8907218 7357.1475
+76254.20565182692 3.8908794 7357.1475
+76255.20565187722 3.8908401 7356.3604
+76256.2056519275 3.8909581 7356.5571
+76257.2056519778 3.8910761 7356.5571
+76258.20565202809 3.8910367 7357.3442
+76259.20565207838 3.8911943 7356.7539
+76260.20565212867 3.8911943 7357.541
+76261.20565217896 3.891391 7356.5571
+76262.20565222926 3.891391 7357.3442
+76263.20565227955 3.89147 7356.9502
+76264.20565232984 3.891588 7356.7539
+76265.20565238013 3.8916667 7356.7539
+76266.20565243042 3.8917062 7356.9502
+76267.20565248071 3.8918242 7356.7539
+76268.205652531 3.8919816 7357.3442
+76269.2056525813 3.8920212 7357.7378
+76270.20565263159 3.8920212 7356.7539
+76271.20565268188 3.8921785 7356.5571
+76272.20565273217 3.8922179 7356.7539
+76273.20565278246 3.8922966 7357.1475
+76274.20565283275 3.8923361 7356.9502
+76275.20565288304 3.8924148 7356.9502
+76276.20565293333 3.8924541 7356.5571
+76277.20565298363 3.8926511 7356.5571
+76278.20565303392 3.8925722 7356.7539
+76279.20565308421 3.8928084 7356.9502
+76280.2056531345 3.8928871 7357.1475
+76281.20565318479 3.8929265 7356.7539
+76282.20565323508 3.8931234 7357.541
+76283.20565328537 3.8931234 7356.9502
+76284.20565333567 3.8932021 7357.1475
+76285.20565338596 3.8933203 7356.1636
+76286.20565343625 3.893399 7357.1475
+76287.20565348654 3.8934777 7356.7539
+76288.20565353683 3.8934777 7356.9502
+76289.20565358712 3.8935959 7356.3604
+76290.20565363741 3.8936746 7357.1475
+76291.2056536877 3.893832 7356.5571
+76292.205653738 3.8938715 7356.7539
+76293.20565378829 3.8939109 7356.9502
+76294.20565383858 3.8940682 7356.9502
+76295.20565388887 3.8942258 7357.1475
+76296.20565393916 3.8943045 7356.9502
+76297.20565398945 3.8943832 7356.9502
+76298.20565403975 3.8943832 7357.541
+76299.20565409004 3.8944619 7356.9502
+76300.20565414033 3.8945408 7356.7539
+76301.20565419062 3.8946588 7356.9502
+76302.20565424091 3.8947768 7356.7539
+76303.2056542912 3.8949344 7356.7539
+76304.2056543415 3.8950131 7356.9502
+76305.20565439179 3.8951313 7357.1475
+76306.20565444208 3.8952887 7357.1475
+76307.20565449237 3.8952887 7356.9502
+76308.20565454266 3.895407 7356.5571
+76309.20565459295 3.8956037 7357.1475
+76310.20565464324 3.895525 7356.3604
+76311.20565469353 3.895643 7357.541
+76312.20565474383 3.8956823 7356.3604
+76313.20565479412 3.8958006 7355.9663
+76314.20565484441 3.8960369 7356.9502
+76315.2056548947 3.8960369 7357.541
+76316.20565494499 3.8961549 7356.7539
+76317.20565499528 3.8962729 7357.3442
+76318.20565504557 3.8963518 7357.3442
+76319.20565509587 3.8963912 7356.1636
+76320.20565514616 3.8965092 7356.9502
+76321.20565519645 3.8965878 7356.9502
+76322.20565524674 3.8967061 7357.1475
+76323.20565529703 3.8967454 7357.3442
+76324.20565534732 3.8968241 7355.9663
+76325.20565539761 3.8969817 7356.7539
+76326.2056554479 3.8969817 7356.5571
+76327.2056554982 3.8972573 7356.9502
+76328.20565554849 3.8972178 7356.7539
+76329.20565559878 3.897336 7356.1636
+76330.20565564907 3.8974147 7356.7539
+76331.20565569936 3.8975327 7356.9502
+76332.20565574965 3.8976903 7357.3442
+76333.20565579995 3.897769 7357.3442
+76334.20565585024 3.8978477 7356.3604
+76335.20565590053 3.8980052 7356.9502
+76336.20565595082 3.8980839 7356.9502
+76337.20565600111 3.8980839 7357.541
+76338.2056560514 3.8982809 7356.5571
+76339.2056561017 3.8983202 7356.9502
+76340.20565615199 3.8983989 7356.3604
+76341.20565620228 3.8985565 7357.1475
+76342.20565625257 3.8985565 7356.5571
+76343.20565630286 3.8987532 7357.1475
+76344.20565635315 3.8987927 7356.9502
+76345.20565640344 3.8988714 7357.1475
+76346.20565645373 3.8990681 7356.3604
+76347.20565650403 3.8989894 7356.9502
+76348.20565655432 3.8991077 7356.1636
+76349.20565660461 3.8991864 7356.9502
+76350.2056566549 3.8993044 7357.7378
+76351.20565670519 3.8994226 7357.3442
+76352.20565675548 3.8995407 7356.9502
+76353.20565680577 3.8995407 7357.541
+76354.20565685607 3.8996587 7356.9502
+76355.20565690636 3.8997376 7356.7539
+76356.20565695665 3.8998163 7356.3604
+76357.20565700694 3.899895 7356.7539
+76358.20565705723 3.899895 7356.7539
+76359.20565710752 3.9000525 7356.7539
+76360.20565715781 3.9000919 7355.3765
+76361.2056572081 3.9002099 7356.9502
+76362.2056572584 3.9002886 7356.7539
+76363.20565730869 3.9002886 7356.9502
+76364.20565735898 3.9003675 7356.5571
+76365.20565740927 3.9004855 7356.7539
+76366.20565745956 3.9005642 7356.7539
+76367.20565750985 3.9007218 7356.7539
+76368.20565756015 3.9007218 7357.9346
+76369.20565761044 3.9007218 7357.541
+76370.20565766073 3.9008791 7356.7539
+76371.20565771102 3.9009581 7356.9502
+76372.20565776131 3.9011154 7356.3604
+76373.2056578116 3.9011154 7356.1636
+76374.2056578619 3.9011941 7356.7539
+76375.20565791219 3.9013517 7357.3442
+76376.20565796248 3.9013517 7356.9502
+76377.20565801277 3.901509 7356.9502
+76378.20565806306 3.9015484 7357.1475
+76379.20565811335 3.9016666 7357.3442
+76380.20565816364 3.9017453 7356.7539
+76381.20565821393 3.9019423 7356.3604
+76382.20565826423 3.9019029 7356.5571
+76383.20565831452 3.9019816 7356.9502
+76384.20565836481 3.9020996 7356.3604
+76385.2056584151 3.9022179 7356.3604
+76386.20565846539 3.9022965 7357.3442
+76387.20565851568 3.9022965 7356.1636
+76388.20565856597 3.9024539 7356.9502
+76389.20565861627 3.9025722 7356.5571
+76390.20565866656 3.9027295 7357.3442
+76391.20565871685 3.9026902 7357.3442
+76392.20565876714 3.9028871 7356.5571
+76393.20565881743 3.9028871 7356.9502
+76394.20565886772 3.9029658 7357.1475
+76395.20565891801 3.9031627 7356.1636
+76396.2056589683 3.9030838 7356.9502
+76397.2056590186 3.9033201 7356.7539
+76398.20565906889 3.9033201 7356.5571
+76399.20565911918 3.9034777 7356.5571
+76400.20565916947 3.9035957 7357.541
+76401.20565921976 3.903635 7356.5571
+76402.20565927005 3.9037137 7356.7539
+76403.20565932035 3.9038713 7357.541
+76404.20565937064 3.9039106 7356.3604
+76405.20565942093 3.90395 7356.7539
+76406.20565947122 3.9041469 7356.7539
+76407.20565952151 3.9041469 7356.9502
+76408.2056595718 3.9043043 7356.9502
+76409.2056596221 3.9043438 7357.541
+76410.20565967239 3.9044225 7357.1475
+76411.20565972268 3.9046192 7356.7539
+76412.20565977297 3.9047375 7356.7539
+76413.20565982326 3.9047768 7356.7539
+76414.20565987355 3.9047768 7357.1475
+76415.20565992384 3.9049737 7357.3442
+76416.20565997413 3.9050918 7357.3442
+76417.20566002443 3.9050918 7357.541
+76418.20566007472 3.9052491 7356.7539
+76419.20566012501 3.9052491 7357.1475
+76420.2056601753 3.905328 7355.9663
+76421.20566022559 3.9054067 7356.3604
+76422.20566027588 3.9056036 7356.5571
+76423.20566032617 3.9056036 7356.5571
+76424.20566037646 3.905761 7356.1636
+76425.20566042676 3.905761 7357.3442
+76426.20566047705 3.9059186 7356.9502
+76427.20566052734 3.9059579 7357.1475
+76428.20566057763 3.9061153 7358.1318
+76429.20566062792 3.9061546 7357.541
+76430.20566067821 3.906076 7357.1475
+76431.2056607285 3.9062335 7356.1636
+76432.2056607788 3.9063909 7356.7539
+76433.20566082909 3.9065092 7357.541
+76434.20566087938 3.9065092 7357.7378
+76435.20566092967 3.9066272 7356.1636
+76436.20566097996 3.9067059 7357.541
+76437.20566103025 3.9067845 7357.1475
+76438.20566108054 3.9069421 7356.7539
+76439.20566113084 3.9069028 7357.1475
+76440.20566118113 3.9070208 7357.541
+76441.20566123142 3.9071784 7356.3604
+76442.20566128171 3.9072571 7356.3604
+76443.205661332 3.9073751 7356.3604
+76444.2056613823 3.9072177 7355.9663
+76445.20566143258 3.9074144 7356.7539
+76446.20566148288 3.9074144 7357.9346
+76447.20566153317 3.9076114 7357.1475
+76448.20566158346 3.90769 7356.9502
+76449.20566163375 3.90769 7357.3442
+76450.20566168404 3.9079263 7356.9502
+76451.20566173433 3.907887 7357.1475
+76452.20566178462 3.908005 7356.1636
+76453.20566183492 3.9080446 7356.7539
+76454.20566188521 3.9080446 7357.3442
+76455.2056619355 3.9082019 7356.1636
+76456.20566198579 3.9082806 7356.5571
+76457.20566203608 3.9084382 7357.3442
+76458.20566208637 3.9084775 7356.3604
+76459.20566213666 3.9085956 7357.541
+76460.20566218696 3.9086349 7356.7539
+76461.20566223725 3.9087138 7356.9502
+76462.20566228754 3.9088712 7356.7539
+76463.20566233783 3.9088712 7356.5571
+76464.20566238812 3.9090288 7357.1475
+76465.20566243841 3.9091074 7356.5571
+76466.2056624887 3.9090681 7356.1636
+76467.205662539 3.9093044 7356.7539
+76468.20566258929 3.9093437 7357.3442
+76469.20566263958 3.9095404 7356.5571
+76470.20566268987 3.90958 7356.1636
+76471.20566274016 3.9095404 7356.9502
+76472.20566279045 3.9096193 7356.7539
+76473.20566284074 3.9097767 7356.3604
+76474.20566289104 3.9097767 7356.7539
+76475.20566294133 3.910013 7356.3604
+76476.20566299162 3.9100916 7357.1475
+76477.20566304191 3.9101703 7356.3604
+76478.2056630922 3.9102492 7356.1636
+76479.2056631425 3.9103279 7356.5571
+76480.20566319278 3.9104066 7357.1475
+76481.20566324308 3.9104459 7356.9502
+76482.20566329337 3.9105248 7356.9502
+76483.20566334366 3.9107215 7356.9502
+76484.20566339395 3.9108398 7356.7539
+76485.20566344424 3.9108002 7357.1475
+76486.20566349453 3.9109972 7356.5571
+76487.20566354482 3.9110365 7356.7539
+76488.20566359512 3.9111547 7356.1636
+76489.2056636454 3.9111152 7357.541
+76490.2056636957 3.9113121 7357.3442
+76491.20566374599 3.9113908 7356.5571
+76492.20566379628 3.9114304 7357.1475
+76493.20566384657 3.9114697 7356.9502
+76494.20566389686 3.9116664 7356.9502
+76495.20566394716 3.9116664 7357.3442
+76496.20566399745 3.911942 7357.7378
+76497.20566404774 3.911824 7356.9502
+76498.20566409803 3.9118633 7357.1475
+76499.20566414832 3.9120996 7357.3442
+76500.20566419861 3.9120603 7357.1475
+76501.2056642489 3.9121783 7356.9502
+76502.2056642992 3.9122963 7356.9502
+76503.20566434949 3.9122963 7356.7539
+76504.20566439978 3.9123752 7356.5571
+76505.20566445007 3.9124539 7357.1475
+76506.20566450036 3.9125719 7357.1475
+76507.20566455065 3.9127295 7356.5571
+76508.20566460094 3.9127295 7356.7539
+76509.20566465124 3.9129262 7356.7539
+76510.20566470153 3.9130838 7356.7539
+76511.20566475182 3.9131231 7356.3604
+76512.20566480211 3.9131625 7356.3604
+76513.2056648524 3.9132018 7357.541
+76514.20566490269 3.9133201 7357.1475
+76515.20566495298 3.9134381 7357.3442
+76516.20566500328 3.9135561 7356.7539
+76517.20566505357 3.913635 7356.1636
+76518.20566510386 3.9137137 7356.7539
+76519.20566515415 3.9137137 7356.3604
+76520.20566520444 3.9138317 7357.3442
+76521.20566525473 3.913871 7356.7539
+76522.20566530502 3.9141467 7356.9502
+76523.20566535532 3.914186 7356.7539
+76524.2056654056 3.9142649 7356.9502
+76525.2056654559 3.9143043 7356.5571
+76526.20566550619 3.9144616 7356.7539
+76527.20566555648 3.914501 7357.1475
+76528.20566560677 3.9146192 7357.1475
+76529.20566565706 3.9146979 7357.3442
+76530.20566570736 3.9147372 7356.7539
+76531.20566575765 3.9148948 7356.5571
+76532.20566580794 3.9149735 7356.7539
+76533.20566585823 3.9150128 7357.3442
+76534.20566590852 3.9151704 7356.5571
+76535.20566595881 3.9152098 7356.7539
+76536.2056660091 3.9152884 7356.7539
+76537.2056660594 3.9154065 7356.7539
+76538.20566610969 3.9153671 7357.1475
+76539.20566615998 3.9155247 7355.9663
+76540.20566621027 3.9155641 7356.5571
+76541.20566626056 3.9157214 7356.7539
+76542.20566631085 3.9158397 7356.5571
+76543.20566636114 3.9158003 7356.9502
+76544.20566641144 3.9159577 7356.9502
+76545.20566646173 3.915997 7356.7539
+76546.20566651202 3.9161546 7356.9502
+76547.20566656231 3.916194 7356.5571
+76548.2056666126 3.9162726 7357.1475
+76549.20566666289 3.9164302 7357.3442
+76550.20566671318 3.9165876 7357.541
+76551.20566676348 3.9165089 7356.5571
+76552.20566681377 3.9166269 7357.7378
+76553.20566686406 3.9167452 7356.7539
+76554.20566691435 3.9169025 7356.5571
+76555.20566696464 3.9169419 7356.9502
+76556.20566701493 3.9170601 7356.9502
+76557.20566706522 3.9170601 7357.1475
+76558.20566711552 3.9172964 7357.1475
+76559.2056671658 3.9173357 7357.3442
+76560.2056672161 3.9174144 7355.7695
+76561.20566726639 3.9175324 7356.9502
+76562.20566731668 3.91769 7356.9502
+76563.20566736697 3.91769 7356.7539
+76564.20566741726 3.9177294 7357.1475
+76565.20566746756 3.9179263 7357.1475
+76566.20566751785 3.9178867 7356.7539
+76567.20566756814 3.918005 7358.1318
+76568.20566761843 3.9180443 7356.5571
+76569.20566766872 3.9182806 7356.7539
+76570.20566771901 3.9183199 7355.9663
+76571.2056677693 3.9183199 7356.1636
+76572.2056678196 3.9183986 7356.9502
+76573.20566786989 3.9185562 7356.5571
+76574.20566792018 3.9186349 7356.7539
+76575.20566797047 3.9186742 7356.7539
+76576.20566802076 3.9188318 7356.9502
+76577.20566807105 3.9189105 7356.7539
+76578.20566812134 3.9190285 7357.1475
+76579.20566817163 3.9189892 7357.3442
+76580.20566822193 3.9190679 7356.9502
+76581.20566827222 3.9192255 7356.9502
+76582.20566832251 3.9192648 7356.3604
+76583.2056683728 3.9193435 7356.7539
+76584.20566842309 3.9193828 7356.9502
+76585.20566847338 3.9195011 7357.1475
+76586.20566852367 3.9196191 7356.7539
+76587.20566857397 3.9197767 7356.3604
+76588.20566862426 3.9197371 7356.3604
+76589.20566867455 3.9198947 7356.5571
+76590.20566872484 3.919934 7356.5571
+76591.20566877513 3.9199734 7357.1475
+76592.20566882542 3.9202096 7356.3604
+76593.20566887571 3.920249 7356.1636
+76594.205668926 3.9203672 7357.3442
+76595.2056689763 3.9204853 7356.5571
+76596.20566902659 3.9204853 7356.7539
+76597.20566907688 3.9206033 7357.541
+76598.20566912717 3.9206822 7356.9502
+76599.20566917746 3.9208002 7356.9502
+76600.20566922775 3.9208395 7355.9663
+76601.20566927805 3.9209576 7357.7378
+76602.20566932834 3.9210758 7356.7539
+76603.20566937863 3.9211938 7357.1475
+76604.20566942892 3.9210758 7356.1636
+76605.20566947921 3.9213514 7356.5571
+76606.2056695295 3.9213121 7356.3604
+76607.2056695798 3.9214301 7356.7539
+76608.20566963009 3.9215481 7357.1475
+76609.20566968038 3.9215875 7356.9502
+76610.20566973067 3.921627 7356.7539
+76611.20566978096 3.9218631 7356.1636
+76612.20566983125 3.9218631 7357.541
+76613.20566988154 3.921942 7356.9502
+76614.20566993183 3.9221387 7356.3604
+76615.20566998213 3.92206 7356.7539
+76616.20567003242 3.9222176 7356.9502
+76617.20567008271 3.922375 7357.1475
+76618.205670133 3.9223356 7356.5571
+76619.20567018329 3.9224143 7357.1475
+76620.20567023358 3.9225326 7356.7539
+76621.20567028387 3.9226112 7355.9663
+76622.20567033417 3.9226112 7356.3604
+76623.20567038446 3.9227686 7356.9502
+76624.20567043475 3.9228475 7356.9502
+76625.20567048504 3.9229262 7356.7539
+76626.20567053533 3.9230835 7357.1475
+76627.20567058562 3.9230049 7355.9663
+76628.20567063591 3.9231229 7356.9502
+76629.2056706862 3.9232411 7357.1475
+76630.2056707365 3.9232411 7356.7539
+76631.20567078679 3.9233985 7356.5571
+76632.20567083708 3.9234378 7356.3604
+76633.20567088737 3.9236348 7356.7539
+76634.20567093766 3.9235954 7356.9502
+76635.20567098795 3.9236741 7356.9502
+76636.20567103825 3.923753 7356.9502
+76637.20567108854 3.9239104 7356.5571
+76638.20567113883 3.923871 7357.3442
+76639.20567118912 3.9239891 7356.3604
+76640.20567123941 3.9241073 7356.1636
+76641.2056712897 3.924068 7356.7539
+76642.20567134 3.9242253 7357.3442
+76643.20567139029 3.9242647 7356.5571
+76644.20567144058 3.9243829 7356.7539
+76645.20567149087 3.9244616 7356.9502
+76646.20567154116 3.9245009 7356.3604
+76647.20567159145 3.9245403 7356.7539
+76648.20567164174 3.9245796 7357.1475
+76649.20567169203 3.9247372 7356.7539
+76650.20567174233 3.9247766 7355.5728
+76651.20567179262 3.9248159 7355.9663
+76652.20567184291 3.9248552 7356.5571
+76653.2056718932 3.9249339 7356.7539
+76654.20567194349 3.9251702 7356.5571
+76655.20567199378 3.9251702 7356.9502
+76656.20567204407 3.9252489 7356.3604
+76657.20567209437 3.9251702 7356.9502
+76658.20567214466 3.9253671 7356.9502
+76659.20567219495 3.9254458 7356.9502
+76660.20567224524 3.9255638 7356.7539
+76661.20567229553 3.9256427 7356.3604
+76662.20567234582 3.9256821 7357.541
+76663.20567239611 3.9257607 7356.3604
+76664.2056724464 3.9259577 7356.7539
+76665.2056724967 3.9259577 7357.1475
+76666.20567254699 3.9260364 7357.3442
+76667.20567259728 3.9261544 7356.7539
+76668.20567264757 3.9261937 7356.9502
+76669.20567269786 3.9262726 7356.7539
+76670.20567274815 3.9263513 7357.1475
+76671.20567279845 3.9264693 7356.5571
+76672.20567284874 3.9265876 7357.1475
+76673.20567289903 3.9265482 7357.3442
+76674.20567294932 3.9266269 7356.5571
+76675.20567299961 3.9267843 7356.9502
+76676.2056730499 3.9268632 7356.9502
+76677.2056731002 3.9268236 7356.1636
+76678.20567315049 3.9270599 7356.3604
+76679.20567320078 3.9271386 7355.9663
+76680.20567325107 3.9270992 7357.541
+76681.20567330136 3.9272175 7357.1475
+76682.20567335165 3.9274142 7356.1636
+76683.20567340194 3.9274931 7356.7539
+76684.20567345223 3.9274538 7357.1475
+76685.20567350253 3.9275324 7356.7539
+76686.20567355282 3.9276111 7356.7539
+76687.20567360311 3.9277291 7356.5571
+76688.2056736534 3.9278867 7356.3604
+76689.20567370369 3.9278867 7356.5571
+76690.20567375398 3.9281623 7356.9502
+76691.20567380427 3.9282017 7356.7539
+76692.20567385457 3.928241 7357.541
+76693.20567390486 3.928241 7356.9502
+76694.20567395515 3.9284379 7356.5571
+76695.20567400544 3.9283986 7356.9502
+76696.20567405573 3.9285953 7356.3604
+76697.20567410602 3.9286346 7357.1475
+76698.20567415631 3.9286346 7357.7378
+76699.2056742066 3.9287529 7356.1636
+76700.2056742569 3.9289103 7356.9502
+76701.20567430719 3.9289496 7356.9502
+76702.20567435748 3.9291072 7355.9663
+76703.20567440777 3.9291072 7356.1636
+76704.20567445806 3.9291465 7356.5571
+76705.20567450835 3.9291859 7357.1475
+76706.20567455865 3.9293435 7356.3604
+76707.20567460894 3.9293828 7356.9502
+76708.20567465923 3.9295008 7356.9502
+76709.20567470952 3.9296191 7356.7539
+76710.20567475981 3.9297371 7356.7539
+76711.2056748101 3.9296584 7357.541
+76712.2056748604 3.9298158 7356.9502
+76713.20567491069 3.9298944 7356.1636
+76714.20567496098 3.9299734 7357.3442
+76715.20567501127 3.9300127 7356.5571
+76716.20567506156 3.9301701 7357.1475
+76717.20567511185 3.930249 7356.5571
+76718.20567516214 3.930249 7356.5571
+76719.20567521243 3.930367 7357.3442
+76720.20567526272 3.9304457 7356.7539
+76721.20567531302 3.9306033 7356.9502
+76722.20567536331 3.9307213 7356.1636
+76723.2056754136 3.9306819 7356.9502
+76724.20567546389 3.9307606 7356.7539
+76725.20567551418 3.9308789 7355.7695
+76726.20567556447 3.9309182 7357.541
+76727.20567561476 3.9310756 7357.1475
+76728.20567566506 3.9311149 7355.9663
+76729.20567571535 3.9311545 7356.9502
+76730.20567576564 3.9311938 7357.1475
+76731.20567581593 3.9313905 7356.3604
+76732.20567586622 3.9314299 7356.9502
+76733.20567591651 3.9316268 7356.5571
+76734.2056759668 3.9316268 7356.5571
+76735.2056760171 3.9316661 7357.541
+76736.20567606739 3.9318631 7356.3604
+76737.20567611768 3.9319024 7356.5571
+76738.20567616797 3.9319811 7356.1636
+76739.20567621826 3.9321387 7356.9502
+76740.20567626855 3.9320993 7356.7539
+76741.20567631884 3.932296 7357.1475
+76742.20567636914 3.9323354 7356.9502
+76743.20567641943 3.9324143 7356.7539
+76744.20567646972 3.9324536 7357.541
+76745.20567652001 3.932611 7357.3442
+76746.2056765703 3.9327686 7356.3604
+76747.2056766206 3.9327292 7356.5571
+76748.20567667088 3.9329259 7357.1475
+76749.20567672118 3.9329653 7356.1636
+76750.20567677147 3.9329653 7356.9502
+76751.20567682176 3.9331229 7357.3442
+76752.20567687205 3.9331622 7357.1475
+76753.20567692234 3.9332802 7356.5571
+76754.20567697263 3.9333198 7357.3442
+76755.20567702292 3.9333591 7357.3442
+76756.20567707322 3.9334772 7356.3604
+76757.20567712351 3.9336348 7356.7539
+76758.2056771738 3.9335165 7357.3442
+76759.20567722409 3.9337528 7357.3442
+76760.20567727438 3.9338315 7357.3442
+76761.20567732467 3.9338708 7356.3604
+76762.20567737496 3.9340284 7356.3604
+76763.20567742526 3.9340284 7356.7539
+76764.20567747555 3.9340284 7355.9663
+76765.20567752584 3.9341071 7356.9502
+76766.20567757613 3.9342647 7355.9663
+76767.20567762642 3.9343827 7356.5571
+76768.20567767671 3.934422 7356.9502
+76769.205677727 3.9345007 7357.541
+76770.2056777773 3.9345796 7356.1636
+76771.20567782759 3.9345403 7355.9663
+76772.20567787788 3.9346583 7357.1475
+76773.20567792817 3.9348156 7356.5571
+76774.20567797846 3.9349339 7356.3604
+76775.20567802875 3.9348552 7356.7539
+76776.20567807904 3.9349732 7356.5571
+76777.20567812934 3.9350913 7357.3442
+76778.20567817963 3.9351702 7356.5571
+76779.20567822992 3.9352489 7356.3604
+76780.20567828021 3.9353669 7357.1475
+76781.2056783305 3.9354062 7356.7539
+76782.2056783808 3.9354851 7356.5571
+76783.20567843108 3.9354851 7357.1475
+76784.20567848138 3.9356425 7357.3442
+76785.20567853167 3.9357212 7356.5571
+76786.20567858196 3.9358394 7356.5571
+76787.20567863225 3.9357605 7356.3604
+76788.20567868254 3.9358788 7356.9502
+76789.20567873283 3.9360361 7356.5571
+76790.20567878312 3.9360754 7357.1475
+76791.20567883342 3.936115 7357.1475
+76792.2056788837 3.9361937 7356.9502
+76793.205678934 3.9363511 7356.5571
+76794.20567898429 3.9363511 7356.5571
+76795.20567903458 3.9364693 7356.7539
+76796.20567908487 3.936548 7356.3604
+76797.20567913516 3.9366267 7357.1475
+76798.20567918546 3.9367056 7356.7539
+76799.20567923575 3.9368236 7356.9502
+76800.20567928604 3.9369023 7357.3442
+76801.20567933633 3.936981 7356.5571
+76802.20567938662 3.936981 7356.9502
+76803.20567943691 3.9371386 7356.5571
+76804.2056794872 3.9372172 7356.9502
+76805.2056795375 3.9372959 7357.1475
+76806.20567958779 3.9374535 7356.3604
+76807.20567963808 3.9374142 7356.9502
+76808.20567968837 3.9375715 7357.1475
+76809.20567973866 3.9375322 7356.7539
+76810.20567978895 3.9376504 7357.1475
+76811.20567983924 3.9377685 7356.7539
+76812.20567988954 3.9378078 7356.3604
+76813.20567993983 3.9378865 7356.9502
+76814.20567999012 3.9379654 7356.3604
+76815.20568004041 3.9382014 7356.7539
+76816.2056800907 3.9382014 7355.9663
+76817.20568014099 3.9382014 7356.9502
+76818.20568019128 3.9383197 7356.5571
+76819.20568024158 3.938359 7356.5571
+76820.20568029187 3.9385164 7356.5571
+76821.20568034216 3.9385164 7357.1475
+76822.20568039245 3.938556 7356.7539
+76823.20568044274 3.9386346 7356.7539
+76824.20568049303 3.9386346 7357.3442
+76825.20568054332 3.9388313 7357.1475
+76826.20568059362 3.938792 7356.5571
+76827.2056806439 3.9390283 7357.1475
+76828.2056806942 3.9390676 7356.3604
+76829.20568074449 3.9392645 7357.1475
+76830.20568079478 3.9393039 7356.3604
+76831.20568084507 3.9392645 7357.1475
+76832.20568089536 3.9393039 7356.7539
+76833.20568094566 3.9394219 7356.5571
+76834.20568099595 3.9395008 7356.9502
+76835.20568104624 3.9396582 7356.9502
+76836.20568109653 3.9396188 7356.1636
+76837.20568114682 3.9397368 7356.5571
+76838.20568119711 3.9399338 7356.7539
+76839.2056812474 3.9399338 7356.9502
+76840.2056812977 3.9399338 7356.9502
+76841.20568134799 3.9400518 7357.3442
+76842.20568139828 3.9402094 7357.1475
+76843.20568144857 3.9403667 7357.3442
+76844.20568149886 3.9402881 7356.5571
+76845.20568154915 3.9403667 7356.9502
+76846.20568159944 3.940485 7357.3442
+76847.20568164974 3.9406817 7356.5571
+76848.20568170003 3.9405637 7356.9502
+76849.20568175032 3.9408786 7356.3604
+76850.20568180061 3.9408393 7356.5571
+76851.2056818509 3.9409966 7356.9502
+76852.20568190119 3.9409573 7356.7539
+76853.20568195148 3.9410756 7356.5571
+76854.20568200178 3.9411936 7357.1475
+76855.20568205207 3.9413512 7355.9663
+76856.20568210236 3.9413116 7356.9502
+76857.20568215265 3.9413905 7356.7539
+76858.20568220294 3.9414692 7356.3604
+76859.20568225323 3.9415872 7357.541
+76860.20568230352 3.9416661 7356.7539
+76861.20568235382 3.9418628 7357.1475
+76862.2056824041 3.9419022 7356.1636
+76863.2056824544 3.9419811 7356.5571
+76864.20568250469 3.9420991 7356.3604
+76865.20568255498 3.9420598 7356.5571
+76866.20568260527 3.942296 7356.7539
+76867.20568265556 3.9423354 7356.9502
+76868.20568270585 3.942414 7357.1475
+76869.20568275615 3.9424927 7355.9663
+76870.20568280644 3.9425321 7356.1636
+76871.20568285673 3.942729 7356.7539
+76872.20568290702 3.9428077 7356.7539
+76873.20568295731 3.9428866 7356.9502
+76874.2056830076 3.9429259 7357.541
+76875.2056830579 3.9430439 7356.5571
+76876.20568310819 3.943162 7356.9502
+76877.20568315848 3.943162 7356.7539
+76878.20568320877 3.9433196 7355.9663
+76879.20568325906 3.9433589 7357.1475
+76880.20568330935 3.9435165 7356.7539
+76881.20568335964 3.9434772 7356.3604
+76882.20568340993 3.9435558 7357.1475
+76883.20568346023 3.9437525 7356.9502
+76884.20568351052 3.9438314 7356.3604
+76885.20568356081 3.9438708 7356.3604
+76886.2056836111 3.9440675 7356.5571
+76887.20568366139 3.9441071 7356.3604
+76888.20568371168 3.9442251 7356.5571
+76889.20568376197 3.9442644 7356.1636
+76890.20568381227 3.9443431 7356.1636
+76891.20568386256 3.9443824 7357.3442
+76892.20568391285 3.9445007 7356.3604
+76893.20568396314 3.94454 7356.5571
+76894.20568401343 3.9446974 7356.7539
+76895.20568406372 3.9446974 7356.9502
+76896.20568411401 3.9449337 7356.3604
+76897.2056841643 3.9450123 7356.3604
+76898.2056842146 3.9451306 7356.3604
+76899.20568426489 3.9450912 7356.7539
+76900.20568431518 3.9452093 7356.9502
+76901.20568436547 3.9453275 7356.3604
+76902.20568441576 3.9453669 7356.3604
+76903.20568446605 3.9454455 7357.7378
+76904.20568451635 3.9456425 7356.9502
+76905.20568456664 3.9458392 7356.9502
+76906.20568461693 3.9457605 7357.3442
+76907.20568466722 3.9458785 7356.3604
+76908.20568471751 3.9459574 7357.1475
+76909.2056847678 3.9461541 7356.5571
+76910.2056848181 3.9461935 7355.9663
+76911.20568486839 3.9461935 7357.1475
+76912.20568491868 3.9463904 7357.541
+76913.20568496897 3.9464297 7356.9502
+76914.20568501926 3.9465477 7357.1475
+76915.20568506955 3.9465477 7356.5571
+76916.20568511984 3.9467447 7357.3442
+76917.20568517013 3.946784 7356.5571
+76918.20568522043 3.9468627 7356.9502
+76919.20568527072 3.9469416 7355.9663
+76920.20568532101 3.946981 7357.3442
+76921.2056853713 3.9472172 7356.9502
+76922.20568542159 3.947099 7356.5571
+76923.20568547188 3.9472959 7356.7539
+76924.20568552217 3.9474533 7357.1475
+76925.20568557247 3.9474928 7356.7539
+76926.20568562276 3.9474928 7356.3604
+76927.20568567305 3.9476109 7356.7539
+76928.20568572334 3.9477289 7356.7539
+76929.20568577363 3.9478078 7356.5571
+76930.20568582392 3.9478078 7355.9663
+76931.20568587421 3.9480045 7356.9502
+76932.2056859245 3.9480438 7356.9502
+76933.2056859748 3.9482408 7356.7539
+76934.20568602509 3.9481621 7356.7539
+76935.20568607538 3.9482014 7356.1636
+76936.20568612567 3.9484377 7357.3442
+76937.20568617596 3.9485164 7356.3604
+76938.20568622625 3.9485164 7357.3442
+76939.20568627655 3.9485164 7357.3442
+76940.20568632684 3.9487131 7356.5571
+76941.20568637713 3.948792 7356.7539
+76942.20568642742 3.9488313 7356.5571
+76943.20568647771 3.9488707 7355.9663
+76944.205686528 3.94891 7356.3604
+76945.2056865783 3.9490676 7357.541
+76946.20568662859 3.9491856 7357.1475
+76947.20568667888 3.9491856 7356.1636
+76948.20568672917 3.9493432 7357.1475
+76949.20568677946 3.9494219 7356.3604
+76950.20568682975 3.9495399 7356.7539
+76951.20568688004 3.9495792 7356.9502
+76952.20568693033 3.9495792 7356.5571
+76953.20568698063 3.9498155 7357.3442
+76954.20568703092 3.9498155 7356.7539
+76955.20568708121 3.9498549 7356.7539
+76956.2056871315 3.9499731 7356.9502
+76957.20568718179 3.9500518 7357.1475
+76958.20568723208 3.9501305 7355.9663
+76959.20568728237 3.9502091 7356.7539
+76960.20568733267 3.9503274 7355.9663
+76961.20568738296 3.9503274 7356.9502
+76962.20568743325 3.9504848 7356.5571
+76963.20568748354 3.9505634 7356.5571
+76964.20568753383 3.9506817 7357.3442
+76965.20568758412 3.9506423 7356.9502
+76966.20568763441 3.9507604 7356.7539
+76967.2056876847 3.950918 7356.9502
+76968.205687735 3.9511147 7355.9663
+76969.20568778529 3.9510753 7356.3604
+76970.20568783558 3.9510753 7356.9502
+76971.20568788587 3.9511936 7356.7539
+76972.20568793616 3.9513509 7356.9502
+76973.20568798645 3.9513509 7356.1636
+76974.20568803675 3.9514296 7357.541
+76975.20568808704 3.9514689 7356.3604
+76976.20568813733 3.9516659 7357.1475
+76977.20568818762 3.9517052 7356.7539
+76978.20568823791 3.9517839 7357.1475
+76979.2056882882 3.9519022 7356.7539
+76980.2056883385 3.9519415 7357.3442
+76981.20568838879 3.9520595 7356.7539
+76982.20568843908 3.9520988 7356.5571
+76983.20568848937 3.9521384 7356.5571
+76984.20568853966 3.9523351 7356.7539
+76985.20568858995 3.9523351 7356.9502
+76986.20568864024 3.952414 7357.541
+76987.20568869053 3.9525714 7356.5571
+76988.20568874083 3.9526107 7356.5571
+76989.20568879112 3.9526894 7356.7539
+76990.20568884141 3.9527683 7356.9502
+76991.2056888917 3.9528077 7356.5571
+76992.20568894199 3.952965 7357.1475
+76993.20568899228 3.9530044 7357.1475
+76994.20568904257 3.9530439 7356.7539
+76995.20568909287 3.9530439 7356.9502
+76996.20568914316 3.95328 7357.1475
+76997.20568919345 3.95328 7356.5571
+76998.20568924374 3.9533589 7356.5571
+76999.20568929403 3.9535556 7357.541
+77000.20568934432 3.9535162 7356.3604
+77001.20568939461 3.9535162 7356.3604
+77002.2056894449 3.9536738 7356.9502
+77003.2056894952 3.9537919 7357.3442
+77004.20568954549 3.9536738 7355.7695
+77005.20568959578 3.9539492 7356.9502
+77006.20568964607 3.9539888 7355.9663
+77007.20568969636 3.9539099 7356.5571
+77008.20568974665 3.9541461 7357.1475
+77009.20568979695 3.9543431 7357.1475
+77010.20568984724 3.9543431 7356.5571
+77011.20568989753 3.9543824 7356.5571
+77012.20568994782 3.9545794 7356.9502
+77013.20568999811 3.9545794 7357.541
+77014.2056900484 3.9545794 7357.3442
+77015.2056900987 3.954658 7356.9502
+77016.20569014899 3.9548547 7356.3604
+77017.20569019928 3.9548943 7356.9502
+77018.20569024957 3.9549336 7356.7539
+77019.20569029986 3.9551697 7357.541
+77020.20569035015 3.9551697 7356.7539
+77021.20569040044 3.9552879 7356.3604
+77022.20569045073 3.9553666 7356.5571
+77023.20569050102 3.9555242 7356.9502
+77024.20569055132 3.9554846 7355.9663
+77025.20569060161 3.9556029 7356.7539
+77026.2056906519 3.9556816 7358.3286
+77027.20569070219 3.9558392 7357.3442
+77028.20569075248 3.9559572 7357.3442
+77029.20569080277 3.9559178 7356.3604
+77030.20569085306 3.9561148 7356.7539
+77031.20569090336 3.9560752 7356.5571
+77032.20569095365 3.9561934 7357.1475
+77033.20569100394 3.9562721 7356.5571
+77034.20569105423 3.9563508 7357.3442
+77035.20569110452 3.9563508 7356.9502
+77036.20569115481 3.9563901 7357.1475
+77037.2056912051 3.9566264 7357.3442
+77038.2056912554 3.9565477 7356.9502
+77039.20569130569 3.9568627 7355.9663
+77040.20569135598 3.956784 7356.3604
+77041.20569140627 3.9568627 7356.9502
+77042.20569145656 3.957099 7356.9502
+77043.20569150685 3.95702 7356.7539
+77044.20569155714 3.9571776 7356.3604
+77045.20569160744 3.9572563 7357.3442
+77046.20569165773 3.9572957 7357.3442
+77047.20569170802 3.9574139 7356.5571
+77048.20569175831 3.9574926 7357.1475
+77049.2056918086 3.9575713 7356.9502
+77050.2056918589 3.9576499 7356.7539
+77051.20569190918 3.9577289 7357.541
+77052.20569195948 3.9578469 7356.3604
+77053.20569200977 3.9579651 7356.7539
+77054.20569206006 3.9579651 7357.1475
+77055.20569211035 3.9580438 7356.1636
+77056.20569216064 3.9581618 7357.541
+77057.20569221093 3.9581618 7356.1636
+77058.20569226122 3.9582012 7356.9502
+77059.20569231152 3.9584374 7356.7539
+77060.20569236181 3.9584768 7356.7539
+77061.2056924121 3.958595 7357.1475
+77062.20569246239 3.9585555 7356.9502
+77063.20569251268 3.9586737 7356.7539
+77064.20569256297 3.9587524 7357.3442
+77065.20569261326 3.9588311 7357.3442
+77066.20569266356 3.9588311 7357.3442
+77067.20569271385 3.9589887 7356.7539
+77068.20569276414 3.9589887 7356.3604
+77069.20569281443 3.959146 7357.1475
+77070.20569286472 3.9593036 7357.1475
+77071.20569291501 3.9592643 7356.5571
+77072.2056929653 3.9594216 7356.3604
+77073.2056930156 3.959461 7356.5571
+77074.20569306589 3.9595792 7357.1475
+77075.20569311618 3.9596579 7356.5571
+77076.20569316647 3.9596579 7357.1475
+77077.20569321676 3.9598942 7357.1475
+77078.20569326705 3.9599729 7356.3604
+77079.20569331734 3.9599335 7356.7539
+77080.20569336764 3.9600515 7356.7539
+77081.20569341793 3.9601698 7356.5571
+77082.20569346822 3.9602485 7356.7539
+77083.20569351851 3.9603271 7356.7539
+77084.2056935688 3.9605634 7356.3604
+77085.2056936191 3.9605241 7356.5571
+77086.20569366938 3.9605634 7356.9502
+77087.20569371968 3.9607604 7356.9502
+77088.20569376997 3.9607997 7356.7539
+77089.20569382026 3.9609177 7357.1475
+77090.20569387055 3.9610753 7356.9502
+77091.20569392084 3.9610753 7356.9502
+77092.20569397113 3.9611933 7356.9502
+77093.20569402142 3.9613903 7356.9502
+77094.20569407172 3.9614296 7356.1636
+77095.205694122 3.9614689 7357.1475
+77096.2056941723 3.9615083 7356.3604
+77097.20569422259 3.9617052 7356.1636
+77098.20569427288 3.9616263 7356.9502
+77099.20569432317 3.9617839 7356.9502
+77100.20569437346 3.9619019 7356.7539
+77101.20569442376 3.9620595 7356.5571
+77102.20569447405 3.9621775 7357.1475
+77103.20569452434 3.9622169 7356.9502
+77104.20569457463 3.9622562 7357.541
+77105.20569462492 3.9624138 7355.9663
+77106.20569467521 3.9624531 7356.9502
+77107.2056947255 3.9624925 7356.9502
+77108.2056947758 3.9625711 7357.3442
+77109.20569482609 3.9626107 7356.3604
+77110.20569487638 3.9628468 7356.9502
+77111.20569492667 3.9628861 7357.1475
+77112.20569497696 3.9629257 7357.3442
+77113.20569502725 3.9631224 7357.1475
+77114.20569507754 3.963083 7356.5571
+77115.20569512784 3.96328 7356.9502
+77116.20569517813 3.9633586 7356.7539
+77117.20569522842 3.9633193 7356.9502
+77118.20569527871 3.9634767 7356.7539
+77119.205695329 3.9635556 7357.541
+77120.20569537929 3.9637129 7357.1475
+77121.20569542958 3.9636736 7357.1475
+77122.20569547988 3.9638312 7356.5571
+77123.20569553017 3.9638312 7357.541
+77124.20569558046 3.9639099 7356.9502
+77125.20569563075 3.9640672 7356.5571
+77126.20569568104 3.9641066 7356.5571
+77127.20569573133 3.9641461 7357.541
+77128.20569578162 3.9643428 7357.3442
+77129.20569583192 3.9643822 7356.9502
+77130.2056958822 3.9644215 7356.7539
+77131.2056959325 3.9645398 7356.9502
+77132.20569598279 3.9646184 7356.7539
+77133.20569603308 3.9647365 7357.7378
+77134.20569608337 3.964776 7356.3604
+77135.20569613366 3.9648941 7356.7539
+77136.20569618396 3.9649727 7356.9502
+77137.20569623425 3.9650517 7356.9502
+77138.20569628454 3.9651697 7356.5571
+77139.20569633483 3.9651697 7356.9502
+77140.20569638512 3.9652483 7356.5571
+77141.20569643541 3.965327 7357.3442
+77142.2056964857 3.9654846 7356.7539
+77143.205696536 3.965524 7357.1475
+77144.20569658629 3.9656026 7356.5571
+77145.20569663658 3.965524 7356.7539
+77146.20569668687 3.9657209 7355.9663
+77147.20569673716 3.9658782 7356.7539
+77148.20569678745 3.9658782 7357.3442
+77149.20569683774 3.9658782 7356.9502
+77150.20569688804 3.9659965 7357.7378
+77151.20569693833 3.9660358 7357.7378
+77152.20569698862 3.9660752 7356.7539
+77153.20569703891 3.9662325 7357.1475
+77154.2056970892 3.9662325 7357.541
+77155.20569713949 3.9663901 7356.5571
+77156.20569718978 3.9663901 7356.3604
+77157.20569724008 3.9665475 7356.5571
+77158.20569729037 3.9666657 7357.1475
+77159.20569734066 3.9667444 7357.541
+77160.20569739095 3.9667838 7357.1475
+77161.20569744124 3.9669807 7357.1475
+77162.20569749153 3.96702 7356.7539
+77163.20569754182 3.967217 7356.5571
+77164.20569759212 3.967217 7356.7539
+77165.2056976424 3.9672563 7357.1475
+77166.2056976927 3.9672956 7357.1475
+77167.20569774299 3.967453 7357.7378
+77168.20569779328 3.9674137 7356.5571
+77169.20569784357 3.9676106 7356.1636
+77170.20569789386 3.9675713 7357.1475
+77171.20569794415 3.967768 7356.5571
+77172.20569799445 3.9678862 7357.1475
+77173.20569804474 3.9679649 7356.7539
+77174.20569809503 3.9679649 7356.7539
+77175.20569814532 3.9680829 7356.9502
+77176.20569819561 3.9682012 7356.7539
+77177.2056982459 3.9682405 7356.1636
+77178.2056982962 3.9683585 7357.1475
+77179.20569834649 3.9683979 7356.5571
+77180.20569839678 3.9684768 7357.1475
+77181.20569844707 3.9687128 7357.9346
+77182.20569849736 3.9687524 7356.9502
+77183.20569854765 3.9687128 7356.9502
+77184.20569859794 3.9687524 7357.1475
+77185.20569864823 3.9690278 7357.541
+77186.20569869853 3.9690278 7356.9502
+77187.20569874882 3.969146 7356.5571
+77188.20569879911 3.9691854 7357.3442
+77189.2056988494 3.9693034 7356.7539
+77190.20569889969 3.9693034 7356.7539
+77191.20569894998 3.9693427 7356.5571
+77192.20569900027 3.9694216 7357.541
+77193.20569905057 3.9696577 7356.7539
+77194.20569910086 3.9696972 7356.7539
+77195.20569915115 3.9698153 7356.7539
+77196.20569920144 3.9698546 7356.9502
+77197.20569925173 3.9698939 7356.9502
+77198.20569930202 3.9699726 7357.1475
+77199.20569935231 3.9700909 7357.1475
+77200.2056994026 3.9701695 7356.7539
+77201.2056994529 3.9702482 7356.3604
+77202.20569950319 3.9702482 7356.3604
+77203.20569955348 3.9704058 7356.1636
+77204.20569960377 3.9705238 7357.3442
+77205.20569965406 3.9706028 7355.9663
+77206.20569970435 3.9706421 7356.5571
+77207.20569975465 3.9707994 7356.7539
+77208.20569980494 3.9708388 7356.7539
+77209.20569985523 3.9708388 7356.9502
+77210.20569990552 3.9710357 7357.1475
+77211.20569995581 3.9710751 7356.1636
+77212.2057000061 3.9711144 7357.3442
+77213.2057000564 3.9712327 7356.5571
+77214.20570010669 3.9713113 7356.7539
+77215.20570015698 3.9713113 7356.9502
+77216.20570020727 3.9715869 7357.1475
+77217.20570025756 3.971508 7357.1475
+77218.20570030785 3.9715869 7356.5571
+77219.20570035814 3.9716656 7356.9502
+77220.20570040843 3.9717836 7357.9346
+77221.20570045873 3.9719019 7356.1636
+77222.20570050902 3.9719806 7356.5571
+77223.20570055931 3.9719806 7357.3442
+77224.2057006096 3.9719806 7357.1475
+77225.20570065989 3.9721382 7356.9502
+77226.20570071018 3.9722955 7355.7695
+77227.20570076047 3.9722168 7356.5571
+77228.20570081077 3.9724135 7356.7539
+77229.20570086106 3.9725318 7356.5571
+77230.20570091135 3.9727285 7357.3442
+77231.20570096164 3.9726105 7356.5571
+77232.20570101193 3.9727285 7356.9502
+77233.20570106222 3.9728074 7356.9502
+77234.20570111251 3.9728467 7356.7539
+77235.2057011628 3.9730434 7357.3442
+77236.2057012131 3.973083 7356.7539
+77237.20570126339 3.9731617 7356.9502
+77238.20570131368 3.973201 7356.1636
+77239.20570136397 3.9733191 7356.9502
+77240.20570141426 3.9732797 7356.9502
+77241.20570146455 3.973398 7355.9663
+77242.20570151485 3.9734766 7356.3604
+77243.20570156514 3.9735553 7356.9502
+77244.20570161543 3.973634 7356.5571
+77245.20570166572 3.9737129 7356.7539
+77246.20570171601 3.9738703 7357.3442
+77247.2057017663 3.9739096 7357.3442
+77248.2057018166 3.9740672 7356.9502
+77249.20570186689 3.9741066 7356.9502
+77250.20570191718 3.9742639 7356.5571
+77251.20570196747 3.9743822 7357.1475
+77252.20570201776 3.9743035 7357.1475
+77253.20570206805 3.9744608 7356.7539
+77254.20570211834 3.9745395 7356.3604
+77255.20570216863 3.9746578 7356.9502
+77256.20570221893 3.9748151 7358.1318
+77257.20570226922 3.9748938 7356.5571
+77258.20570231951 3.9748545 7356.1636
+77259.2057023698 3.9750121 7357.1475
+77260.20570242009 3.9752483 7356.3604
+77261.20570247038 3.9751694 7356.9502
+77262.20570252067 3.9752877 7356.3604
+77263.20570257097 3.9754057 7357.3442
+77264.20570262126 3.9754844 7356.5571
+77265.20570267155 3.9754844 7357.541
+77266.20570272184 3.9756026 7356.3604
+77267.20570277213 3.9757206 7356.3604
+77268.20570282242 3.97576 7356.7539
+77269.20570287271 3.9759176 7356.7539
+77270.205702923 3.9759963 7356.7539
+77271.2057029733 3.9760356 7357.1475
+77272.20570302359 3.9760749 7356.7539
+77273.20570307388 3.9762719 7355.9663
+77274.20570312417 3.9762325 7356.7539
+77275.20570317446 3.9762719 7356.7539
+77276.20570322475 3.9763112 7356.5571
+77277.20570327505 3.9765081 7357.1475
+77278.20570332534 3.9764688 7356.5571
+77279.20570337563 3.9767048 7356.3604
+77280.20570342592 3.9767442 7356.5571
+77281.20570347621 3.9768624 7356.3604
+77282.2057035265 3.9769411 7356.5571
+77283.2057035768 3.9769018 7356.7539
+77284.20570362709 3.977138 7356.7539
+77285.20570367738 3.977138 7356.5571
+77286.20570372767 3.9772561 7356.5571
+77287.20570377796 3.9772954 7356.9502
+77288.20570382825 3.977453 7356.7539
+77289.20570387854 3.9775317 7356.7539
+77290.20570392883 3.9776103 7356.3604
+77291.20570397913 3.9776497 7356.5571
+77292.20570402942 3.9776497 7356.7539
+77293.20570407971 3.9778466 7357.3442
+77294.20570413 3.9778466 7357.7378
+77295.20570418029 3.9780829 7356.7539
+77296.20570423058 3.9780829 7356.7539
+77297.20570428087 3.9780829 7356.9502
+77298.20570433117 3.9781616 7355.9663
+77299.20570438146 3.9782796 7356.5571
+77300.20570443175 3.9783978 7357.1475
+77301.20570448204 3.9785159 7356.9502
+77302.20570453233 3.9785552 7357.3442
+77303.20570458262 3.9786341 7356.1636
+77304.20570463291 3.9786735 7357.1475
+77305.2057046832 3.9788308 7356.5571
+77306.2057047335 3.9788308 7357.7378
+77307.20570478379 3.9789491 7357.1475
+77308.20570483408 3.9789491 7356.7539
+77309.20570488437 3.9791458 7357.1475
+77310.20570493466 3.9791064 7357.541
+77311.20570498495 3.979264 7355.7695
+77312.20570503525 3.979382 7357.3442
+77313.20570508554 3.979382 7356.9502
+77314.20570513583 3.9795396 7356.7539
+77315.20570518612 3.9796183 7355.5728
+77316.20570523641 3.9795396 7356.1636
+77317.2057052867 3.979697 7356.3604
+77318.205705337 3.9797757 7356.9502
+77319.20570538728 3.9798546 7356.7539
+77320.20570543758 3.9799726 7356.7539
+77321.20570548787 3.9800513 7356.5571
+77322.20570553816 3.9800119 7356.5571
+77323.20570558845 3.9801695 7356.7539
+77324.20570563874 3.9802482 7356.5571
+77325.20570568903 3.9803269 7357.3442
+77326.20570573932 3.9802876 7356.5571
+77327.20570578962 3.9805238 7356.3604
+77328.20570583991 3.9805238 7356.5571
+77329.2057058902 3.9806418 7357.541
+77330.20570594049 3.9806812 7355.9663
+77331.20570599078 3.9807205 7356.3604
+77332.20570604107 3.9808781 7356.1636
+77333.20570609136 3.9809175 7357.3442
+77334.20570614166 3.9809175 7356.3604
+77335.20570619195 3.981075 7356.9502
+77336.20570624224 3.9811537 7357.1475
+77337.20570629253 3.9813111 7357.3442
+77338.20570634282 3.9813111 7357.1475
+77339.20570639311 3.981508 7357.1475
+77340.2057064434 3.98139 7357.7378
+77341.2057064937 3.981508 7356.5571
+77342.20570654399 3.9815474 7357.1475
+77343.20570659428 3.981626 7356.3604
+77344.20570664457 3.9817443 7356.7539
+77345.20570669486 3.9818623 7356.7539
+77346.20570674515 3.9819016 7356.9502
+77347.20570679544 3.9820592 7356.5571
+77348.20570684574 3.9821379 7356.9502
+77349.20570689603 3.9821773 7356.3604
+77350.20570694632 3.9822953 7356.1636
+77351.20570699661 3.9823349 7356.9502
+77352.2057070469 3.9823742 7357.1475
+77353.2057070972 3.9824922 7356.5571
+77354.20570714748 3.9826891 7356.9502
+77355.20570719778 3.9826102 7356.5571
+77356.20570724807 3.9827285 7356.9502
+77357.20570729836 3.9828465 7356.7539
+77358.20570734865 3.9828858 7356.7539
+77359.20570739894 3.9829648 7356.5571
+77360.20570744923 3.9830041 7357.3442
+77361.20570749952 3.9832008 7356.9502
+77362.20570754982 3.9832008 7356.9502
+77363.20570760011 3.9833584 7356.5571
+77364.2057076504 3.9833977 7357.1475
+77365.20570770069 3.9834764 7357.1475
+77366.20570775098 3.9835157 7357.1475
+77367.20570780127 3.9835947 7356.3604
+77368.20570785156 3.9836733 7356.7539
+77369.20570790186 3.983634 7356.9502
+77370.20570795215 3.9838307 7356.3604
+77371.20570800244 3.9839883 7356.9502
+77372.20570805273 3.9839883 7357.541
+77373.20570810302 3.9840276 7357.3442
+77374.20570815331 3.984067 7357.1475
+77375.2057082036 3.9841456 7356.7539
+77376.2057082539 3.9842246 7357.7378
+77377.20570830419 3.9843426 7356.5571
+77378.20570835448 3.9844213 7357.3442
+77379.20570840477 3.9845395 7356.7539
+77380.20570845506 3.9846575 7357.3442
+77381.20570850535 3.9846182 7357.541
+77382.20570855564 3.9847362 7356.7539
+77383.20570860594 3.9848151 7356.9502
+77384.20570865623 3.9849725 7356.3604
+77385.20570870652 3.9849725 7356.9502
+77386.20570875681 3.9850907 7357.1475
+77387.2057088071 3.9851301 7356.7539
+77388.2057088574 3.9853268 7356.9502
+77389.20570890768 3.9853661 7356.9502
+77390.20570895798 3.9854844 7356.7539
+77391.20570900827 3.9855237 7356.1636
+77392.20570905856 3.9856024 7356.1636
+77393.20570910885 3.985563 7355.9663
+77394.20570915914 3.9857206 7356.7539
+77395.20570920943 3.9858387 7356.9502
+77396.20570925972 3.9858387 7355.7695
+77397.20570931002 3.9858387 7356.5571
+77398.2057093603 3.9860749 7356.5571
+77399.2057094106 3.9861143 7356.7539
+77400.20570946089 3.9862716 7357.3442
+77401.20570951118 3.9862323 7356.9502
+77402.20570956147 3.986311 7356.5571
+77403.20570961176 3.9865079 7356.3604
+77404.20570966206 3.9866655 7356.5571
+77405.20570971235 3.9866655 7356.1636
+77406.20570976264 3.9867442 7356.5571
+77407.20570981293 3.9869015 7356.5571
+77408.20570986322 3.9868622 7356.3604
+77409.20570991351 3.9870198 7357.1475
+77410.2057099638 3.9869411 7356.5571
+77411.2057100141 3.9870985 7356.5571
+77412.20571006439 3.9870591 7356.7539
+77413.20571011468 3.9872954 7356.7539
+77414.20571016497 3.9873741 7356.7539
+77415.20571021526 3.9874134 7356.3604
+77416.20571026555 3.9874921 7356.7539
+77417.20571031584 3.9875314 7356.9502
+77418.20571036614 3.987571 7356.7539
+77419.20571041643 3.9877284 7356.5571
+77420.20571046672 3.9877677 7356.5571
+77421.20571051701 3.9879253 7356.7539
+77422.2057105673 3.9879646 7356.9502
+77423.20571061759 3.988122 7356.5571
+77424.20571066788 3.9882009 7356.5571
+77425.20571071818 3.9882009 7356.3604
+77426.20571076847 3.9882796 7357.3442
+77427.20571081876 3.9883583 7356.3604
+77428.20571086905 3.9885159 7356.3604
+77429.20571091934 3.9885159 7356.3604
+77430.20571096963 3.9885552 7356.7539
+77431.20571101992 3.9887125 7356.7539
+77432.20571107022 3.9888308 7356.3604
+77433.2057111205 3.9887915 7356.3604
+77434.2057111708 3.9888308 7356.5571
+77435.20571122109 3.9889882 7355.9663
+77436.20571127138 3.9890668 7356.1636
+77437.20571132167 3.9890668 7356.9502
+77438.20571137196 3.9891851 7356.1636
+77439.20571142226 3.9893425 7357.541
+77440.20571147255 3.9893818 7357.9346
+77441.20571152284 3.9895 7356.3604
+77442.20571157313 3.9895787 7356.3604
+77443.20571162342 3.9897363 7356.7539
+77444.20571167371 3.9896181 7356.1636
+77445.205711724 3.9898543 7356.1636
+77446.2057117743 3.989815 7356.3604
+77447.20571182459 3.9898937 7357.1475
+77448.20571187488 3.9899724 7356.1636
+77449.20571192517 3.9900117 7357.1475
+77450.20571197546 3.9901299 7357.3442
+77451.20571202575 3.9902873 7357.1475
+77452.20571207604 3.9902873 7356.7539
+77453.20571212634 3.9903269 7356.7539
+77454.20571217663 3.9904449 7356.7539
+77455.20571222692 3.9905236 7356.9502
+77456.20571227721 3.9906023 7355.7695
+77457.2057123275 3.9906418 7356.9502
+77458.20571237779 3.9908385 7356.9502
+77459.20571242808 3.9907992 7356.9502
+77460.20571247838 3.9909172 7356.3604
+77461.20571252867 3.9909568 7357.1475
+77462.20571257896 3.9911535 7356.3604
+77463.20571262925 3.9910355 7356.3604
+77464.20571267954 3.9911928 7356.9502
+77465.20571272983 3.9913504 7356.7539
+77466.20571278012 3.9913111 7356.1636
+77467.20571283041 3.9913898 7356.9502
+77468.2057128807 3.9912717 7356.9502
+77469.205712931 3.9915471 7356.5571
+77470.20571298129 3.9915867 7357.541
+77471.20571303158 3.991626 7356.3604
+77472.20571308187 3.9917047 7355.9663
+77473.20571313216 3.9918227 7355.9663
+77474.20571318245 3.991941 7356.7539
+77475.20571323275 3.991941 7355.9663
+77476.20571328304 3.9920197 7356.1636
+77477.20571333333 3.9920983 7356.7539
+77478.20571338362 3.9920983 7357.1475
+77479.20571343391 3.9922166 7356.1636
+77480.2057134842 3.9924526 7357.541
+77481.2057135345 3.9924526 7356.9502
+77482.20571358479 3.9925315 7356.7539
+77483.20571363508 3.9925315 7357.541
+77484.20571368537 3.9925709 7355.9663
+77485.20571373566 3.9926889 7356.7539
+77486.20571378595 3.9928465 7356.3604
+77487.20571383624 3.9928465 7356.9502
+77488.20571388653 3.9929645 7356.7539
+77489.20571393683 3.9929645 7356.7539
+77490.20571398712 3.9930825 7356.9502
+77491.20571403741 3.9931614 7356.3604
+77492.2057140877 3.9932401 7356.7539
+77493.20571413799 3.9933188 7356.3604
+77494.20571418828 3.9933188 7357.7378
+77495.20571423857 3.9935157 7356.7539
+77496.20571428887 3.9935157 7356.7539
+77497.20571433916 3.9936731 7357.1475
+77498.20571438945 3.993752 7356.3604
+77499.20571443974 3.9938307 7356.1636
+77500.20571449003 3.9939487 7356.7539
+77501.20571454032 3.993988 7357.3442
+77502.20571459061 3.994067 7356.7539
+77503.2057146409 3.9941456 7356.5571
+77504.2057146912 3.994185 7357.7378
+77505.20571474149 3.9943426 7356.5571
+77506.20571479178 3.9944999 7356.3604
+77507.20571484207 3.9946575 7357.3442
+77508.20571489236 3.9944999 7357.1475
+77509.20571494265 3.9946969 7357.7378
+77510.20571499295 3.9947755 7356.9502
+77511.20571504324 3.9948149 7356.9502
+77512.20571509353 3.9950118 7356.5571
+77513.20571514382 3.9950511 7356.1636
+77514.20571519411 3.9951298 7356.3604
+77515.2057152444 3.9952085 7356.7539
+77516.2057152947 3.9953268 7357.541
+77517.20571534499 3.9953268 7356.7539
+77518.20571539528 3.9954054 7356.5571
+77519.20571544557 3.9954841 7356.9502
+77520.20571549586 3.9956417 7357.1475
+77521.20571554615 3.9957204 7358.3286
+77522.20571559644 3.9957597 7356.1636
+77523.20571564673 3.9957991 7357.3442
+77524.20571569703 3.9960747 7357.3442
+77525.20571574732 3.9960353 7356.9502
+77526.20571579761 3.996114 7356.7539
+77527.2057158479 3.9962716 7357.1475
+77528.20571589819 3.9962716 7356.7539
+77529.20571594848 3.9963503 7356.9502
+77530.20571599877 3.9963503 7356.9502
+77531.20571604907 3.996429 7356.9502
+77532.20571609936 3.9965866 7357.7378
+77533.20571614965 3.9965866 7357.3442
+77534.20571619994 3.9967046 7356.3604
+77535.20571625023 3.9968228 7356.1636
+77536.20571630052 3.9967833 7356.3604
+77537.20571635081 3.9969409 7357.1475
+77538.2057164011 3.9971378 7355.9663
+77539.2057164514 3.9970589 7357.541
+77540.20571650169 3.9971378 7356.5571
+77541.20571655198 3.9972165 7356.5571
+77542.20571660227 3.9971378 7356.3604
+77543.20571665256 3.9972951 7356.9502
+77544.20571670285 3.9974527 7356.7539
+77545.20571675315 3.9975314 7356.5571
+77546.20571680344 3.9976101 7356.5571
+77547.20571685373 3.9976101 7357.3442
+77548.20571690402 3.997807 7357.1475
+77549.20571695431 3.9977677 7356.7539
+77550.2057170046 3.997807 7356.7539
+77551.2057170549 3.997925 7356.5571
+77552.20571710519 3.9980826 7356.1636
+77553.20571715548 3.9980826 7356.9502
+77554.20571720577 3.9980826 7355.9663
+77555.20571725606 3.9981613 7356.7539
+77556.20571730635 3.9982793 7356.7539
+77557.20571735664 3.9983976 7356.3604
+77558.20571740693 3.9985156 7356.5571
+77559.20571745723 3.9984763 7357.1475
+77560.20571750752 3.9985156 7357.3442
+77561.20571755781 3.9986336 7356.3604
+77562.2057176081 3.9987125 7356.9502
+77563.20571765839 3.9988306 7357.541
+77564.20571770868 3.9988699 7356.3604
+77565.20571775897 3.9988306 7357.1475
+77566.20571780927 3.9990275 7357.3442
+77567.20571785956 3.9990668 7356.1636
+77568.20571790985 3.9991062 7356.3604
+77569.20571796014 3.9991848 7357.3442
+77570.20571801043 3.9993424 7357.3442
+77571.20571806072 3.9994605 7357.3442
+77572.20571811101 3.9995391 7356.1636
+77573.2057181613 3.9995391 7357.1475
+77574.2057182116 3.9996181 7356.9502
+77575.20571826189 3.9995787 7356.3604
+77576.20571831218 3.9997754 7357.1475
+77577.20571836247 3.9998541 7357.1475
+77578.20571841276 3.999933 7356.1636
+77579.20571846305 4.0000114 7356.3604
+77580.20571851335 4.0000901 7357.1475
+77581.20571856364 4.0002084 7356.7539
+77582.20571861393 4.000248 7357.1475
+77583.20571866422 4.0003266 7356.7539
+77584.20571871451 4.0003657 7357.1475
+77585.2057187648 4.0003657 7356.9502
+77586.2057188151 4.0005236 7357.1475
+77587.20571886539 4.0005627 7356.9502
+77588.20571891568 4.0006022 7356.5571
+77589.20571896597 4.0006809 7356.5571
+77590.20571901626 4.00072 7356.1636
+77591.20571906655 4.0007596 7356.3604
+77592.20571911684 4.0008779 7356.9502
+77593.20571916713 4.000917 7356.9502
+77594.20571921743 4.0009956 7356.3604
+77595.20571926772 4.0010352 7357.541
+77596.20571931801 4.0011139 7356.3604
+77597.2057193683 4.0011926 7357.1475
+77598.20571941859 4.0012712 7356.3604
+77599.20571946888 4.0012712 7356.7539
+77600.20571951917 4.0013499 7356.7539
+77601.20571956947 4.0013895 7357.3442
+77602.20571961976 4.0015078 7356.9502
+77603.20571967005 4.0015078 7356.3604
+77604.20571972034 4.0015864 7357.1475
+77605.20571977063 4.0017834 7356.7539
+77606.20571982092 4.0017438 7356.1636
+77607.20571987121 4.0017834 7356.9502
+77608.2057199215 4.0019798 7356.5571
+77609.2057199718 4.002059 7357.3442
+77610.20572002209 4.002059 7356.7539
+77611.20572007238 4.002059 7356.7539
+77612.20572012267 4.0022163 7356.3604
+77613.20572017296 4.0022554 7356.9502
+77614.20572022325 4.0022554 7357.1475
+77615.20572027355 4.0023341 7356.3604
+77616.20572032384 4.002492 7357.1475
+77617.20572037413 4.0025311 7357.3442
+77618.20572042442 4.0025706 7356.5571
+77619.20572047471 4.0026493 7356.5571
+77620.205720525 4.002728 7356.9502
+77621.2057205753 4.002728 7355.9663
+77622.20572062558 4.0028853 7357.541
+77623.20572067588 4.0030432 7356.7539
+77624.20572072617 4.003161 7356.1636
+77625.20572077646 4.0032396 7357.1475
+77626.20572082675 4.0032005 7357.1475
+77627.20572087704 4.0033188 7356.9502
+77628.20572092733 4.0033579 7357.541
+77629.20572097762 4.0033188 7356.3604
+77630.20572102792 4.0033975 7356.9502
+77631.20572107821 4.0035548 7356.5571
+77632.2057211285 4.0035548 7356.5571
+77633.20572117879 4.0036731 7356.7539
+77634.20572122908 4.0037122 7356.3604
+77635.20572127937 4.0037518 7356.3604
+77636.20572132966 4.0038695 7356.1636
+77637.20572137996 4.0039091 7357.3442
+77638.20572143025 4.0039487 7356.5571
+77639.20572148054 4.0040274 7356.9502
+77640.20572153083 4.0042243 7356.7539
+77641.20572158112 4.0041451 7356.5571
+77642.20572163141 4.004303 7357.1475
+77643.2057216817 4.004303 7356.3604
+77644.205721732 4.0043421 7356.9502
+77645.20572178229 4.0045786 7356.7539
+77646.20572183258 4.004539 7356.7539
+77647.20572188287 4.0046573 7357.3442
+77648.20572193316 4.0046964 7356.7539
+77649.20572198345 4.0046964 7356.9502
+77650.20572203374 4.0048542 7357.3442
+77651.20572208404 4.004972 7356.9502
+77652.20572213433 4.0048933 7356.9502
+77653.20572218462 4.0050902 7357.3442
+77654.20572223491 4.0051689 7356.5571
+77655.2057222852 4.0050902 7356.9502
+77656.2057223355 4.0051689 7356.9502
+77657.20572238578 4.0052872 7356.7539
+77658.20572243608 4.0053658 7357.7378
+77659.20572248637 4.0055628 7356.9502
+77660.20572253666 4.0054841 7357.1475
+77661.20572258695 4.0056415 7356.3604
+77662.20572263724 4.0057597 7357.1475
+77663.20572268753 4.0057201 7356.7539
+77664.20572273782 4.0058775 7356.7539
+77665.20572278812 4.0058775 7356.5571
+77666.20572283841 4.0059562 7356.9502
+77667.2057228887 4.0058775 7356.7539
+77668.20572293899 4.006114 7356.5571
+77669.20572298928 4.0061927 7356.9502
+77670.20572303957 4.0062318 7356.7539
+77671.20572308986 4.00635 7356.9502
+77672.20572314016 4.0062714 7356.3604
+77673.20572319045 4.0063896 7356.3604
+77674.20572324074 4.0065074 7356.7539
+77675.20572329103 4.0065861 7357.1475
+77676.20572334132 4.0067043 7356.9502
+77677.20572339161 4.0068617 7357.1475
+77678.2057234419 4.0069013 7356.7539
+77679.2057234922 4.0068617 7356.5571
+77680.20572354249 4.0070195 7356.1636
+77681.20572359278 4.0070982 7356.5571
+77682.20572364307 4.0071373 7356.1636
+77683.20572369336 4.0071769 7356.3604
+77684.20572374365 4.0073342 7356.3604
+77685.20572379394 4.0074129 7356.7539
+77686.20572384424 4.0076098 7357.541
+77687.20572389453 4.0076098 7355.7695
+77688.20572394482 4.0076885 7356.7539
+77689.20572399511 4.0077672 7355.9663
+77690.2057240454 4.0078068 7357.1475
+77691.2057240957 4.0080037 7357.3442
+77692.20572414598 4.0080824 7356.9502
+77693.20572419628 4.0081215 7356.9502
+77694.20572424657 4.0081611 7357.1475
+77695.20572429686 4.0082793 7356.5571
+77696.20572434715 4.0083971 7356.7539
+77697.20572439744 4.0085154 7356.7539
+77698.20572444773 4.0085154 7357.541
+77699.20572449802 4.0086727 7357.541
+77700.20572454832 4.0087123 7356.9502
+77701.2057245986 4.0087123 7356.7539
+77702.2057246489 4.0088696 7357.1475
+77703.20572469919 4.0089092 7356.7539
+77704.20572474948 4.0091057 7356.7539
+77705.20572479977 4.009027 7357.1475
+77706.20572485006 4.0090666 7355.9663
+77707.20572490036 4.0093026 7355.9663
+77708.20572495065 4.0093813 7357.541
+77709.20572500094 4.0093422 7357.1475
+77710.20572505123 4.0094604 7355.9663
+77711.20572510152 4.0094604 7357.541
+77712.20572515181 4.0096178 7355.9663
+77713.2057252021 4.0096965 7356.1636
+77714.2057252524 4.0097356 7356.3604
+77715.20572530269 4.0097752 7356.3604
+77716.20572535298 4.0099325 7357.1475
+77717.20572540327 4.0099721 7356.5571
+77718.20572545356 4.0100112 7356.3604
+77719.20572550385 4.0100508 7356.3604
+77720.20572555414 4.0100904 7357.1475
+77721.20572560444 4.010169 7357.1475
+77722.20572565473 4.0102477 7356.9502
+77723.20572570502 4.010366 7356.9502
+77724.20572575531 4.0104837 7357.1475
+77725.2057258056 4.0105233 7356.7539
+77726.20572585589 4.0105624 7356.5571
+77727.20572590618 4.0106807 7356.1636
+77728.20572595648 4.0107203 7355.9663
+77729.20572600677 4.0107594 7357.1475
+77730.20572605706 4.010838 7356.5571
+77731.20572610735 4.0109563 7356.9502
+77732.20572615764 4.0108776 7356.7539
+77733.20572620793 4.0108776 7357.1475
+77734.20572625822 4.0111923 7356.3604
+77735.20572630852 4.0112319 7356.5571
+77736.2057263588 4.0112319 7356.7539
+77737.2057264091 4.0113502 7356.1636
+77738.20572645939 4.0113106 7356.9502
+77739.20572650968 4.0113502 7356.7539
+77740.20572655997 4.0113893 7357.9346
+77741.20572661026 4.0115862 7356.9502
+77742.20572666056 4.0115862 7357.1475
+77743.20572671085 4.0115862 7356.7539
+77744.20572676114 4.0117044 7356.5571
+77745.20572681143 4.0118222 7356.5571
+77746.20572686172 4.0119014 7356.9502
+77747.20572691201 4.0119014 7356.3604
+77748.2057269623 4.0120192 7356.5571
+77749.2057270126 4.0120978 7355.9663
+77750.20572706289 4.0121374 7357.541
+77751.20572711318 4.0121765 7357.541
+77752.20572716347 4.0122557 7356.5571
+77753.20572721376 4.0122161 7356.7539
+77754.20572726405 4.0124521 7356.7539
+77755.20572731434 4.012413 7357.541
+77756.20572736464 4.0124917 7356.9502
+77757.20572741493 4.0125704 7355.9663
+77758.20572746522 4.0125704 7356.5571
+77759.20572751551 4.0127277 7356.9502
+77760.2057275658 4.0127673 7356.5571
+77761.20572761609 4.012846 7356.5571
+77762.20572766638 4.0130033 7356.1636
+77763.20572771668 4.0129642 7356.9502
+77764.20572776697 4.0130033 7357.3442
+77765.20572781726 4.0131612 7356.7539
+77766.20572786755 4.013082 7356.1636
+77767.20572791784 4.0132399 7356.9502
+77768.20572796813 4.0133576 7356.3604
+77769.20572801842 4.0133972 7356.7539
+77770.20572806871 4.0136728 7357.1475
+77771.205728119 4.0135546 7356.1636
+77772.2057281693 4.0136333 7356.9502
+77773.20572821959 4.0136333 7355.9663
+77774.20572826988 4.0139089 7356.9502
+77775.20572832017 4.0139484 7357.1475
+77776.20572837046 4.0140667 7356.7539
+77777.20572842075 4.0139875 7356.9502
+77778.20572847105 4.0141454 7356.7539
+77779.20572852134 4.0141454 7355.9663
+77780.20572857163 4.0143027 7357.1475
+77781.20572862192 4.0143027 7356.7539
+77782.20572867221 4.0144601 7356.3604
+77783.2057287225 4.0143814 7357.1475
+77784.2057287728 4.0144601 7357.541
+77785.20572882309 4.0145783 7355.9663
+77786.20572887338 4.014657 7356.5571
+77787.20572892367 4.0147357 7356.3604
+77788.20572897396 4.0147357 7357.3442
+77789.20572902425 4.0148144 7356.9502
+77790.20572907454 4.0149717 7357.3442
+77791.20572912483 4.0149326 7356.3604
+77792.20572917513 4.0149326 7356.5571
+77793.20572922542 4.0150509 7357.3442
+77794.20572927571 4.01509 7356.1636
+77795.205729326 4.0153265 7356.5571
+77796.20572937629 4.0153265 7356.5571
+77797.20572942658 4.0154839 7356.5571
+77798.20572947687 4.0154443 7356.7539
+77799.20572952717 4.0156021 7356.5571
+77800.20572957746 4.0156412 7355.9663
+77801.20572962775 4.0156021 7356.3604
+77802.20572967804 4.0157595 7357.541
+77803.20572972833 4.0159168 7356.9502
+77804.20572977862 4.0158772 7356.1636
+77805.20572982891 4.0159564 7356.7539
+77806.2057298792 4.0160351 7356.3604
+77807.2057299295 4.0160351 7357.3442
+77808.20572997979 4.0161529 7357.1475
+77809.20573003008 4.0161138 7356.5571
+77810.20573008037 4.0161924 7356.7539
+77811.20573013066 4.0163498 7356.7539
+77812.20573018095 4.016468 7356.5571
+77813.20573023125 4.016468 7357.541
+77814.20573028154 4.0165071 7356.1636
+77815.20573033183 4.0165863 7357.541
+77816.20573038212 4.016665 7356.9502
+77817.20573043241 4.0167041 7357.1475
+77818.2057304827 4.0168223 7356.5571
+77819.205730533 4.0167828 7356.3604
+77820.20573058329 4.0169406 7356.5571
+77821.20573063358 4.0169406 7355.9663
+77822.20573068387 4.0170193 7356.9502
+77823.20573073416 4.0170193 7357.1475
+77824.20573078445 4.0170584 7356.7539
+77825.20573083474 4.0172162 7356.7539
+77826.20573088503 4.0172553 7357.1475
+77827.20573093533 4.0172949 7357.3442
+77828.20573098562 4.0174918 7356.7539
+77829.20573103591 4.0174522 7357.1475
+77830.2057310862 4.0174522 7356.5571
+77831.20573113649 4.0175705 7357.7378
+77832.20573118678 4.0177279 7356.7539
+77833.20573123707 4.0176883 7356.7539
+77834.20573128737 4.0178852 7356.7539
+77835.20573133766 4.0178852 7356.7539
+77836.20573138795 4.0179639 7356.5571
+77837.20573143824 4.0180821 7355.7695
+77838.20573148853 4.0181217 7356.7539
+77839.20573153882 4.0181217 7356.7539
+77840.20573158911 4.0182395 7357.1475
+77841.2057316394 4.0183182 7356.5571
+77842.2057316897 4.0183578 7356.7539
+77843.20573173999 4.018476 7356.9502
+77844.20573179028 4.0186334 7357.7378
+77845.20573184057 4.0186725 7356.1636
+77846.20573189086 4.0186725 7357.3442
+77847.20573194115 4.0187516 7357.3442
+77848.20573199145 4.0188694 7356.5571
+77849.20573204174 4.0189481 7357.1475
+77850.20573209203 4.019145 7356.9502
+77851.20573214232 4.0189877 7356.3604
+77852.20573219261 4.0190663 7357.3442
+77853.2057322429 4.0191846 7356.5571
+77854.2057322932 4.0193419 7356.1636
+77855.20573234349 4.0193028 7356.5571
+77856.20573239378 4.0194206 7357.1475
+77857.20573244407 4.0194602 7356.1636
+77858.20573249436 4.019578 7357.1475
+77859.20573254465 4.019578 7357.1475
+77860.20573259494 4.0196962 7356.7539
+77861.20573264523 4.0197358 7356.5571
+77862.20573269553 4.0197749 7356.7539
+77863.20573274582 4.0198145 7356.1636
+77864.20573279611 4.0198932 7356.9502
+77865.2057328464 4.0200114 7356.7539
+77866.20573289669 4.0201688 7357.1475
+77867.20573294698 4.0200901 7356.3604
+77868.20573299727 4.020287 7357.1475
+77869.20573304757 4.0203657 7356.5571
+77870.20573309786 4.0203657 7357.541
+77871.20573314815 4.0204835 7356.5571
+77872.20573319844 4.0205626 7357.7378
+77873.20573324873 4.0205626 7356.5571
+77874.20573329902 4.0206413 7356.3604
+77875.20573334931 4.0207987 7356.5571
+77876.2057333996 4.0207987 7355.9663
+77877.2057334499 4.0209169 7357.3442
+77878.20573350019 4.020956 7357.541
+77879.20573355048 4.0209956 7356.5571
+77880.20573360077 4.0210347 7356.3604
+77881.20573365106 4.0211926 7356.1636
+77882.20573370135 4.0211926 7356.9502
+77883.20573375165 4.0213499 7356.9502
+77884.20573380194 4.0215073 7356.3604
+77885.20573385223 4.0214286 7356.9502
+77886.20573390252 4.0215073 7356.1636
+77887.20573395281 4.0216255 7356.5571
+77888.2057340031 4.0217042 7356.5571
+77889.2057340534 4.0217433 7355.9663
+77890.20573410369 4.0218225 7356.3604
+77891.20573415398 4.0219011 7356.5571
+77892.20573420427 4.0219011 7356.3604
+77893.20573425456 4.0220189 7356.1636
+77894.20573430485 4.0220189 7356.7539
+77895.20573435514 4.0220585 7356.7539
+77896.20573440543 4.0221372 7356.7539
+77897.20573445573 4.0220981 7356.3604
+77898.20573450602 4.0222554 7357.3442
+77899.20573455631 4.0224128 7357.1475
+77900.2057346066 4.0223341 7357.1475
+77901.20573465689 4.022531 7356.9502
+77902.20573470718 4.0224915 7357.541
+77903.20573475747 4.022531 7356.7539
+77904.20573480777 4.0226884 7356.7539
+77905.20573485806 4.0226884 7357.1475
+77906.20573490835 4.0226884 7356.7539
+77907.20573495864 4.0228853 7356.3604
+77908.20573500893 4.022964 7356.9502
+77909.20573505922 4.0230036 7356.5571
+77910.20573510951 4.0230427 7355.7695
+77911.2057351598 4.0231609 7356.3604
+77912.2057352101 4.0232 7357.1475
+77913.20573526039 4.0232 7357.1475
+77914.20573531068 4.0232787 7356.7539
+77915.20573536097 4.023397 7356.9502
+77916.20573541126 4.0234756 7356.7539
+77917.20573546155 4.0234756 7356.9502
+77918.20573551184 4.0234756 7356.7539
+77919.20573556214 4.0235543 7356.7539
+77920.20573561243 4.0235939 7356.7539
+77921.20573566272 4.0236726 7356.9502
+77922.20573571301 4.0238299 7356.5571
+77923.2057357633 4.0238695 7357.3442
+77924.2057358136 4.0239878 7357.1475
+77925.20573586388 4.0240269 7357.541
+77926.20573591418 4.0241055 7356.7539
+77927.20573596447 4.0241451 7356.7539
+77928.20573601476 4.0242238 7355.9663
+77929.20573606505 4.0244207 7356.3604
+77930.20573611534 4.0243812 7357.1475
+77931.20573616563 4.0244207 7356.5571
+77932.20573621592 4.0246568 7356.7539
+77933.20573626622 4.0246177 7356.9502
+77934.20573631651 4.0248537 7357.3442
+77935.2057363668 4.0248537 7356.5571
+77936.20573641709 4.0250111 7357.541
+77937.20573646738 4.0251293 7356.7539
+77938.20573651767 4.0250506 7356.5571
+77939.20573656796 4.0252867 7356.9502
+77940.20573661826 4.0254049 7356.9502
+77941.20573666855 4.0253654 7356.5571
+77942.20573671884 4.0254836 7355.9663
+77943.20573676913 4.0255623 7356.7539
+77944.20573681942 4.0256019 7356.9502
+77945.20573686971 4.025641 7356.7539
+77946.20573692 4.0256805 7357.541
+77947.2057369703 4.0258379 7356.3604
+77948.20573702059 4.0258379 7356.9502
+77949.20573707088 4.0259166 7356.9502
+77950.20573712117 4.0260348 7357.1475
+77951.20573717146 4.0261922 7356.7539
+77952.20573722175 4.0262318 7357.3442
+77953.20573727204 4.0263495 7356.9502
+77954.20573732234 4.0263495 7356.7539
+77955.20573737263 4.0265465 7356.9502
+77956.20573742292 4.0265861 7356.5571
+77957.20573747321 4.0265861 7356.7539
+77958.2057375235 4.0266252 7357.541
+77959.2057375738 4.0267043 7356.7539
+77960.20573762408 4.0267043 7357.1475
+77961.20573767438 4.0269008 7355.7695
+77962.20573772467 4.0269794 7356.3604
+77963.20573777496 4.0270586 7356.7539
+77964.20573782525 4.0271764 7357.1475
+77965.20573787554 4.0273733 7356.9502
+77966.20573792583 4.0273342 7357.541
+77967.20573797612 4.0274129 7356.9502
+77968.20573802642 4.0275702 7356.7539
+77969.20573807671 4.0275307 7356.7539
+77970.205738127 4.0276093 7356.5571
+77971.20573817729 4.0275307 7356.3604
+77972.20573822758 4.0277276 7357.1475
+77973.20573827787 4.0278063 7355.9663
+77974.20573832816 4.0278459 7356.9502
+77975.20573837846 4.0280032 7356.7539
+77976.20573842875 4.0280032 7357.3442
+77977.20573847904 4.0281215 7355.9663
+77978.20573852933 4.0281606 7356.5571
+77979.20573857962 4.0282788 7355.9663
+77980.20573862991 4.0283575 7356.9502
+77981.2057386802 4.0283971 7356.9502
+77982.2057387305 4.0284362 7356.5571
+77983.20573878079 4.0285149 7357.3442
+77984.20573883108 4.028594 7355.5728
+77985.20573888137 4.0286727 7356.9502
+77986.20573893166 4.0287514 7357.1475
+77987.20573898195 4.0289087 7356.9502
+77988.20573903224 4.0289874 7356.5571
+77989.20573908254 4.0289483 7356.5571
+77990.20573913283 4.0291448 7357.541
+77991.20573918312 4.0292239 7357.3442
+77992.20573923341 4.0292239 7356.7539
+77993.2057392837 4.0293813 7356.3604
+77994.205739334 4.0293813 7355.9663
+77995.20573938428 4.0294995 7356.9502
+77996.20573943458 4.0295782 7356.7539
+77997.20573948487 4.0295782 7356.3604
+77998.20573953516 4.0297356 7355.9663
+77999.20573958545 4.0298142 7356.7539
+78000.20573963574 4.0298538 7357.541
+78001.20573968603 4.0299325 7356.7539
+78002.20573973632 4.0300503 7356.3604
+78003.20573978662 4.0301685 7356.7539
+78004.2057398369 4.0301685 7356.5571
+78005.2057398872 4.0302081 7356.9502
+78006.20573993749 4.0302868 7357.541
+78007.20573998778 4.0303655 7356.7539
+78008.20574003807 4.030405 7356.3604
+78009.20574008836 4.0305228 7356.1636
+78010.20574013866 4.0306411 7356.5571
+78011.20574018895 4.0306015 7356.3604
+78012.20574023924 4.0306015 7357.1475
+78013.20574028953 4.0307198 7356.7539
+78014.20574033982 4.0307593 7356.9502
+78015.20574039011 4.0309167 7356.7539
+78016.2057404404 4.0309558 7356.7539
+78017.2057404907 4.0310349 7356.5571
+78018.20574054099 4.0311923 7357.3442
+78019.20574059128 4.031271 7356.9502
+78020.20574064157 4.0312314 7356.3604
+78021.20574069186 4.0313892 7357.1475
+78022.20574074215 4.0314679 7357.541
+78023.20574079244 4.031507 7356.5571
+78024.20574084274 4.0316648 7356.9502
+78025.20574089303 4.0317435 7357.3442
+78026.20574094332 4.0317826 7356.5571
+78027.20574099361 4.0318222 7356.5571
+78028.2057410439 4.0317435 7356.5571
+78029.20574109419 4.0319796 7357.3442
+78030.20574114448 4.0319405 7357.3442
+78031.20574119478 4.0321369 7355.9663
+78032.20574124507 4.0322156 7356.3604
+78033.20574129536 4.0321765 7356.9502
+78034.20574134565 4.0322552 7356.5571
+78035.20574139594 4.0324521 7356.3604
+78036.20574144623 4.0323734 7357.3442
+78037.20574149652 4.0324125 7357.3442
+78038.20574154682 4.0324521 7356.9502
+78039.2057415971 4.0325308 7357.1475
+78040.2057416474 4.0326095 7356.7539
+78041.20574169769 4.032649 7357.1475
+78042.20574174798 4.0327277 7356.3604
+78043.20574179827 4.0328064 7356.7539
+78044.20574184856 4.0330033 7357.3442
+78045.20574189886 4.0331211 7356.9502
+78046.20574194915 4.0330033 7356.5571
+78047.20574199944 4.0331607 7356.7539
+78048.20574204973 4.0332789 7356.3604
+78049.20574210002 4.0332789 7356.7539
+78050.20574215031 4.0333576 7357.541
+78051.2057422006 4.033515 7356.7539
+78052.2057422509 4.0335937 7356.3604
+78053.20574230119 4.0336723 7356.1636
+78054.20574235148 4.0336723 7357.1475
+78055.20574240177 4.033751 7356.5571
+78056.20574245206 4.0338693 7356.9502
+78057.20574250235 4.0339479 7355.9663
+78058.20574255264 4.0340662 7357.1475
+78059.20574260294 4.0340266 7356.5571
+78060.20574265323 4.0341058 7355.9663
+78061.20574270352 4.0341449 7357.1475
+78062.20574275381 4.0342631 7356.7539
+78063.2057428041 4.0341449 7356.7539
+78064.20574285439 4.0344205 7356.9502
+78065.20574290468 4.0344205 7356.7539
+78066.20574295497 4.0345387 7355.9663
+78067.20574300527 4.0345778 7357.3442
+78068.20574305556 4.0346565 7356.9502
+78069.20574310585 4.0346961 7355.9663
+78070.20574315614 4.0347748 7356.7539
+78071.20574320643 4.0348535 7356.5571
+78072.20574325672 4.0349717 7356.5571
+78073.20574330701 4.0350113 7356.9502
+78074.2057433573 4.0351291 7356.3604
+78075.2057434076 4.0351686 7356.3604
+78076.20574345789 4.0352077 7356.1636
+78077.20574350818 4.0353656 7356.1636
+78078.20574355847 4.035562 7356.5571
+78079.20574360876 4.0355229 7356.5571
+78080.20574365905 4.035562 7356.5571
+78081.20574370935 4.0357199 7356.9502
+78082.20574375964 4.035759 7356.9502
+78083.20574380993 4.035759 7357.7378
+78084.20574386022 4.0359559 7356.7539
+78085.20574391051 4.0359955 7357.1475
+78086.2057439608 4.0361528 7356.7539
+78087.2057440111 4.0361528 7356.5571
+78088.20574406139 4.0361919 7356.5571
+78089.20574411168 4.0363102 7356.1636
+78090.20574416197 4.0364285 7357.1475
+78091.20574421226 4.0365462 7356.3604
+78092.20574426255 4.0364676 7356.3604
+78093.20574431284 4.0366254 7357.1475
+78094.20574436313 4.0367041 7357.3442
+78095.20574441343 4.0367827 7356.3604
+78096.20574446372 4.036901 7357.1475
+78097.20574451401 4.0369401 7357.1475
+78098.2057445643 4.0370584 7357.1475
+78099.20574461459 4.0370975 7357.1475
+78100.20574466488 4.037137 7356.5571
+78101.20574471517 4.0372944 7357.3442
+78102.20574476547 4.0373731 7356.9502
+78103.20574481576 4.0373731 7356.7539
+78104.20574486605 4.0374126 7357.1475
+78105.20574491634 4.0374913 7356.5571
+78106.20574496663 4.0376096 7357.1475
+78107.20574501692 4.0376487 7356.7539
+78108.20574506721 4.0378065 7356.7539
+78109.2057451175 4.0378852 7356.5571
+78110.2057451678 4.038003 7356.7539
+78111.20574521809 4.0380425 7357.3442
+78112.20574526838 4.0381999 7356.5571
+78113.20574531867 4.0381999 7356.7539
+78114.20574536896 4.0382395 7356.7539
+78115.20574541925 4.0383573 7356.7539
+78116.20574546955 4.0384755 7356.5571
+78117.20574551984 4.0384755 7356.7539
+78118.20574557013 4.0386329 7356.7539
+78119.20574562042 4.0386724 7356.5571
+78120.20574567071 4.0387511 7356.7539
+78121.205745721 4.0388298 7356.5571
+78122.2057457713 4.0389872 7356.5571
+78123.20574582159 4.0389872 7356.7539
+78124.20574587188 4.0390267 7356.9502
+78125.20574592217 4.0391841 7356.5571
+78126.20574597246 4.0391841 7356.9502
+78127.20574602275 4.0392237 7356.5571
+78128.20574607304 4.0393419 7356.1636
+78129.20574612333 4.0394206 7357.3442
+78130.20574617363 4.0393419 7356.1636
+78131.20574622392 4.039578 7357.9346
+78132.20574627421 4.0396171 7356.1636
+78133.2057463245 4.0396962 7356.9502
+78134.20574637479 4.0396962 7356.9502
+78135.20574642508 4.0396962 7356.9502
+78136.20574647537 4.0398536 7357.1475
+78137.20574652567 4.0398536 7356.3604
+78138.20574657596 4.0399718 7356.3604
+78139.20574662625 4.0399718 7356.3604
+78140.20574667654 4.0401683 7356.3604
+78141.20574672683 4.0402079 7356.1636
+78142.20574677712 4.0402865 7356.5571
+78143.20574682741 4.0402079 7356.9502
+78144.2057468777 4.0403261 7356.3604
+78145.205746928 4.0404439 7357.541
+78146.20574697829 4.0404048 7356.9502
+78147.20574702858 4.0404835 7355.9663
+78148.20574707887 4.0405622 7357.3442
+78149.20574712916 4.0407195 7357.1475
+78150.20574717945 4.0406408 7356.7539
+78151.20574722975 4.0408378 7356.3604
+78152.20574728004 4.0409164 7357.541
+78153.20574733033 4.0409164 7356.1636
+78154.20574738062 4.0409951 7357.1475
+78155.20574743091 4.0411134 7356.9502
+78156.2057474812 4.0411921 7357.1475
+78157.2057475315 4.0412316 7357.1475
+78158.20574758179 4.041389 7357.3442
+78159.20574763208 4.0414677 7356.9502
+78160.20574768237 4.0414677 7356.3604
+78161.20574773266 4.0414677 7356.3604
+78162.20574778295 4.0415072 7357.7378
+78163.20574783324 4.0417037 7357.3442
+78164.20574788353 4.0417824 7357.3442
+78165.20574793383 4.041822 7356.9502
+78166.20574798412 4.0418615 7356.5571
+78167.20574803441 4.0419793 7356.9502
+78168.2057480847 4.042058 7356.9502
+78169.20574813499 4.0420976 7356.5571
+78170.20574818528 4.0421762 7357.541
+78171.20574823557 4.0422945 7356.5571
+78172.20574828587 4.0423732 7356.7539
+78173.20574833616 4.0424914 7356.7539
+78174.20574838645 4.0426092 7356.5571
+78175.20574843674 4.0425701 7356.9502
+78176.20574848703 4.0427275 7356.7539
+78177.20574853732 4.0428061 7355.9663
+78178.20574858761 4.0428061 7357.1475
+78179.2057486379 4.0429635 7356.9502
+78180.2057486882 4.0430031 7356.1636
+78181.20574873849 4.0430427 7356.5571
+78182.20574878878 4.0431213 7357.1475
+78183.20574883907 4.0430818 7356.7539
+78184.20574888936 4.0432 7355.9663
+78185.20574893965 4.0432 7356.9502
+78186.20574898995 4.0433574 7356.7539
+78187.20574904024 4.0433574 7357.9346
+78188.20574909053 4.0434756 7356.5571
+78189.20574914082 4.043633 7356.5571
+78190.20574919111 4.043633 7357.7378
+78191.2057492414 4.0436726 7356.5571
+78192.2057492917 4.0437512 7356.1636
+78193.20574934199 4.0438299 7356.7539
+78194.20574939228 4.0439086 7356.7539
+78195.20574944257 4.0439482 7356.3604
+78196.20574949286 4.0439873 7356.9502
+78197.20574954315 4.0441842 7356.7539
+78198.20574959344 4.0442629 7357.1475
+78199.20574964373 4.0442233 7355.9663
+78200.20574969403 4.0443416 7357.1475
+78201.20574974432 4.0444202 7356.5571
+78202.20574979461 4.0444989 7357.1475
+78203.2057498449 4.0446172 7357.541
+78204.20574989519 4.0444989 7355.9663
+78205.20574994548 4.0447354 7356.7539
+78206.20574999577 4.0448141 7356.5571
+78207.20575004607 4.0447354 7356.5571
+78208.20575009636 4.0448928 7356.5571
+78209.20575014665 4.0449324 7357.3442
+78210.20575019694 4.0449715 7357.541
+78211.20575024723 4.0451288 7356.1636
+78212.20575029752 4.045011 7356.1636
+78213.20575034781 4.0451288 7356.7539
+78214.2057503981 4.0452471 7356.5571
+78215.2057504484 4.0453653 7356.3604
+78216.20575049869 4.0454044 7356.5571
+78217.20575054898 4.0454044 7355.9663
+78218.20575059927 4.0456409 7356.9502
+78219.20575064956 4.0456014 7356.3604
+78220.20575069985 4.04568 7356.1636
+78221.20575075014 4.0457196 7357.541
+78222.20575080044 4.045877 7356.7539
+78223.20575085073 4.0458379 7356.5571
+78224.20575090102 4.0459557 7356.9502
+78225.20575095131 4.0460343 7356.9502
+78226.2057510016 4.0461135 7357.1475
+78227.2057510519 4.0463099 7356.9502
+78228.20575110218 4.0462708 7357.7378
+78229.20575115248 4.0462708 7357.1475
+78230.20575120277 4.0463886 7357.3442
+78231.20575125306 4.0465465 7356.1636
+78232.20575130335 4.0465465 7356.9502
+78233.20575135364 4.0466251 7356.7539
+78234.20575140393 4.0468221 7355.9663
+78235.20575145422 4.0467825 7356.7539
+78236.20575150452 4.0468221 7356.1636
+78237.20575155481 4.0469794 7355.9663
+78238.2057516051 4.0470581 7357.3442
+78239.20575165539 4.0470977 7356.7539
+78240.20575170568 4.0471764 7356.7539
+78241.20575175597 4.0472155 7356.1636
+78242.20575180626 4.0473733 7356.5571
+78243.20575185656 4.0473733 7357.1475
+78244.20575190685 4.0475698 7356.3604
+78245.20575195714 4.0476093 7356.7539
+78246.20575200743 4.0476489 7356.7539
+78247.20575205772 4.0477667 7356.7539
+78248.20575210801 4.0478454 7356.5571
+78249.2057521583 4.0478454 7357.3442
+78250.2057522086 4.0479636 7357.1475
+78251.20575225889 4.0480032 7356.9502
+78252.20575230918 4.0480423 7356.7539
+78253.20575235947 4.0481997 7356.9502
+78254.20575240976 4.0481997 7357.1475
+78255.20575246005 4.0483179 7357.3442
+78256.20575251034 4.0483966 7356.3604
+78257.20575256064 4.0484753 7356.1636
+78258.20575261093 4.0484362 7356.9502
+78259.20575266122 4.0486722 7356.7539
+78260.20575271151 4.0486722 7356.7539
+78261.2057527618 4.0486722 7356.9502
+78262.2057528121 4.0487509 7356.9502
+78263.20575286238 4.0489087 7356.7539
+78264.20575291268 4.0488296 7357.1475
+78265.20575296297 4.0489478 7356.3604
+78266.20575301326 4.0491052 7356.7539
+78267.20575306355 4.0491843 7356.7539
+78268.20575311384 4.0491447 7357.1475
+78269.20575316413 4.0493021 7356.9502
+78270.20575321442 4.049263 7356.7539
+78271.20575326472 4.049499 7356.5571
+78272.20575331501 4.0495386 7356.5571
+78273.2057533653 4.0496173 7357.3442
+78274.20575341559 4.0497746 7356.7539
+78275.20575346588 4.0497746 7356.1636
+78276.20575351617 4.0497746 7356.3604
+78277.20575356646 4.049932 7357.1475
+78278.20575361676 4.0501289 7356.5571
+78279.20575366705 4.0500503 7356.5571
+78280.20575371734 4.0501685 7356.7539
+78281.20575376763 4.0502472 7357.541
+78282.20575381792 4.0504045 7356.7539
+78283.20575386821 4.0504441 7356.9502
+78284.2057539185 4.0506015 7356.3604
+78285.2057539688 4.0505619 7355.9663
+78286.20575401909 4.0506802 7356.9502
+78287.20575406938 4.0507193 7356.5571
+78288.20575411967 4.0507984 7356.9502
+78289.20575416996 4.0508771 7356.1636
+78290.20575422025 4.0511131 7356.7539
+78291.20575427054 4.051074 7356.7539
+78292.20575432084 4.0510345 7356.9502
+78293.20575437113 4.0512314 7357.1475
+78294.20575442142 4.0512705 7355.9663
+78295.20575447171 4.0513496 7357.3442
+78296.205754522 4.0513496 7356.5571
+78297.2057545723 4.0515461 7357.1475
+78298.20575462258 4.0515461 7356.9502
+78299.20575467288 4.0516644 7356.7539
+78300.20575472317 4.0515857 7356.3604
+78301.20575477346 4.0518217 7355.9663
+78302.20575482375 4.0518217 7356.7539
+78303.20575487404 4.05194 7356.9502
+78304.20575492433 4.0520186 7356.7539
+78305.20575497462 4.0520186 7356.3604
+78306.20575502492 4.0520186 7357.1475
+78307.2057550752 4.0521369 7357.3442
+78308.2057551255 4.052176 7357.7378
+78309.20575517579 4.0522547 7356.9502
+78310.20575522608 4.0523338 7357.3442
+78311.20575527637 4.0524125 7356.9502
+78312.20575532666 4.0526094 7356.9502
+78313.20575537696 4.0526485 7357.3442
+78314.20575542725 4.0528059 7357.1475
+78315.20575547754 4.0527272 7357.1475
+78316.20575552783 4.0528851 7356.5571
+78317.20575557812 4.0529242 7355.7695
+78318.20575562841 4.0529637 7356.1636
+78319.2057556787 4.0530028 7357.541
+78320.205755729 4.0531602 7356.7539
+78321.20575577929 4.0532393 7356.1636
+78322.20575582958 4.0532784 7356.7539
+78323.20575587987 4.0532784 7357.1475
+78324.20575593016 4.0534754 7356.9502
+78325.20575598045 4.0534754 7357.1475
+78326.20575603074 4.0535541 7357.3442
+78327.20575608104 4.0536723 7356.5571
+78328.20575613133 4.0536327 7356.9502
+78329.20575618162 4.0536327 7356.3604
+78330.20575623191 4.0538297 7356.9502
+78331.2057562822 4.0539083 7356.5571
+78332.20575633249 4.053987 7356.7539
+78333.20575638278 4.0541449 7356.7539
+78334.20575643308 4.0542235 7357.3442
+78335.20575648337 4.0542626 7356.7539
+78336.20575653366 4.0542235 7356.5571
+78337.20575658395 4.0543413 7356.7539
+78338.20575663424 4.05442 7356.5571
+78339.20575668453 4.0546169 7357.1475
+78340.20575673482 4.0546565 7356.9502
+78341.20575678512 4.0546169 7356.9502
+78342.2057568354 4.0548139 7356.9502
+78343.2057568857 4.0547748 7356.7539
+78344.20575693599 4.0549321 7356.5571
+78345.20575698628 4.0549712 7355.5728
+78346.20575703657 4.0550895 7357.1475
+78347.20575708686 4.0552077 7357.1475
+78348.20575713716 4.0552077 7356.5571
+78349.20575718745 4.0553651 7356.3604
+78350.20575723774 4.0553255 7356.9502
+78351.20575728803 4.0554438 7357.1475
+78352.20575733832 4.0555224 7357.3442
+78353.20575738861 4.0555224 7356.3604
+78354.2057574389 4.0556803 7357.3442
+78355.2057574892 4.0557194 7356.9502
+78356.20575753949 4.0558767 7356.3604
+78357.20575758978 4.055995 7356.3604
+78358.20575764007 4.055995 7357.541
+78359.20575769036 4.0561132 7356.9502
+78360.20575774065 4.056231 7356.1636
+78361.20575779094 4.0563493 7356.9502
+78362.20575784124 4.056428 7356.9502
+78363.20575789153 4.0564675 7357.7378
+78364.20575794182 4.0565462 7356.9502
+78365.20575799211 4.0567036 7357.1475
+78366.2057580424 4.0568218 7357.1475
+78367.20575809269 4.0568609 7357.7378
+78368.20575814298 4.0569401 7356.7539
+78369.20575819327 4.0570579 7356.9502
+78370.20575824357 4.0571365 7356.1636
+78371.20575829386 4.0572157 7356.3604
+78372.20575834415 4.057373 7356.9502
+78373.20575839444 4.057373 7356.9502
+78374.20575844473 4.0574121 7357.1475
+78375.20575849502 4.0574908 7357.1475
+78376.20575854531 4.0576878 7356.5571
+78377.2057585956 4.0576091 7356.7539
+78378.2057586459 4.0577273 7356.5571
+78379.20575869619 4.0579634 7356.5571
+78380.20575874648 4.0578456 7356.7539
+78381.20575879677 4.0578847 7357.1475
+78382.20575884706 4.0580816 7356.3604
+78383.20575889735 4.0581212 7357.3442
+78384.20575894765 4.0581603 7356.7539
+78385.20575899794 4.0581999 7356.5571
+78386.20575904823 4.0583963 7356.1636
+78387.20575909852 4.0585146 7356.5571
+78388.20575914881 4.0585146 7356.7539
+78389.2057591991 4.0587115 7356.5571
+78390.2057592494 4.0587115 7356.9502
+78391.20575929969 4.0588689 7356.9502
+78392.20575934998 4.0588689 7357.1475
+78393.20575940027 4.0589871 7356.3604
+78394.20575945056 4.0589476 7356.9502
+78395.20575950085 4.0592628 7356.9502
+78396.20575955114 4.0591841 7357.1475
+78397.20575960143 4.0592232 7356.9502
+78398.20575965173 4.059381 7356.9502
+78399.20575970202 4.0593414 7357.1475
+78400.20575975231 4.0594597 7356.7539
+78401.2057598026 4.0594988 7357.3442
+78402.20575985289 4.0595775 7356.1636
+78403.20575990318 4.0596561 7356.7539
+78404.20575995347 4.0597353 7357.1475
+78405.20576000377 4.059814 7357.3442
+78406.20576005406 4.0598927 7357.3442
+78407.20576010435 4.0599713 7356.3604
+78408.20576015464 4.0600109 7357.1475
+78409.20576020493 4.0601287 7357.7378
+78410.20576025522 4.0601287 7356.1636
+78411.20576030551 4.0601683 7357.3442
+78412.2057603558 4.0602865 7356.7539
+78413.2057604061 4.0602865 7357.541
+78414.20576045639 4.0603256 7356.9502
+78415.20576050668 4.0605226 7356.7539
+78416.20576055697 4.060483 7356.7539
+78417.20576060726 4.0606012 7356.5571
+78418.20576065755 4.0606799 7356.3604
+78419.20576070785 4.0608768 7356.5571
+78420.20576075814 4.0607982 7356.9502
+78421.20576080843 4.0610738 7356.7539
+78422.20576085872 4.0609555 7356.3604
+78423.20576090901 4.0610342 7356.5571
+78424.2057609593 4.0611525 7357.3442
+78425.2057610096 4.0611916 7357.3442
+78426.20576105989 4.0613098 7357.3442
+78427.20576111018 4.0613098 7356.3604
+78428.20576116047 4.0614672 7356.5571
+78429.20576121076 4.0615067 7356.7539
+78430.20576126105 4.0616641 7356.3604
+78431.20576131134 4.0616641 7356.7539
+78432.20576136163 4.0617824 7355.9663
+78433.20576141193 4.0618219 7356.9502
+78434.20576146222 4.061861 7357.1475
+78435.20576151251 4.062058 7357.3442
+78436.2057615628 4.0620971 7357.1475
+78437.20576161309 4.0621762 7356.7539
+78438.20576166338 4.0622153 7356.9502
+78439.20576171367 4.0622153 7356.5571
+78440.20576176397 4.0624123 7356.9502
+78441.20576181426 4.0624123 7357.1475
+78442.20576186455 4.0625305 7356.9502
+78443.20576191484 4.0625696 7356.3604
+78444.20576196513 4.0626879 7356.9502
+78445.20576201542 4.0628061 7356.9502
+78446.20576206571 4.0628061 7356.3604
+78447.205762116 4.0628452 7356.9502
+78448.2057621663 4.0630026 7356.7539
+78449.20576221659 4.0630817 7357.3442
+78450.20576226688 4.0631604 7357.1475
+78451.20576231717 4.0631208 7356.7539
+78452.20576236746 4.0631208 7356.7539
+78453.20576241775 4.0632391 7356.5571
+78454.20576246805 4.0632782 7357.1475
+78455.20576251834 4.0633178 7356.9502
+78456.20576256863 4.063436 7357.1475
+78457.20576261892 4.0634751 7356.7539
+78458.20576266921 4.0635147 7356.3604
+78459.2057627195 4.0636325 7356.1636
+78460.2057627698 4.0636721 7356.9502
+78461.20576282009 4.0637903 7356.5571
+78462.20576287038 4.0637903 7356.9502
+78463.20576292067 4.0639081 7356.9502
+78464.20576297096 4.0640659 7356.7539
+78465.20576302125 4.0641446 7357.541
+78466.20576307154 4.0640659 7356.3604
+78467.20576312183 4.0642233 7357.3442
+78468.20576317213 4.0643415 7356.9502
+78469.20576322242 4.064302 7356.7539
+78470.20576327271 4.0643415 7356.9502
+78471.205763323 4.0644593 7356.7539
+78472.20576337329 4.0645776 7356.7539
+78473.20576342358 4.0646172 7356.3604
+78474.20576347387 4.0647349 7357.3442
+78475.20576352417 4.0648532 7356.9502
+78476.20576357446 4.0647349 7356.5571
+78477.20576362475 4.0649319 7356.7539
+78478.20576367504 4.0649714 7356.5571
+78479.20576372533 4.0651288 7356.3604
+78480.20576377562 4.0650105 7356.7539
+78481.20576382591 4.0652075 7357.1475
+78482.2057638762 4.0651679 7356.1636
+78483.2057639265 4.0653257 7356.3604
+78484.20576397679 4.0655227 7356.7539
+78485.20576402708 4.0655227 7356.3604
+78486.20576407737 4.0656013 7356.7539
+78487.20576412766 4.06568 7356.5571
+78488.20576417795 4.0657978 7356.7539
+78489.20576422825 4.0657978 7357.1475
+78490.20576427854 4.065877 7356.1636
+78491.20576432883 4.0659556 7356.7539
+78492.20576437912 4.0660734 7357.1475
+78493.20576442941 4.0660734 7356.9502
+78494.2057644797 4.0661526 7356.9502
+78495.20576453 4.0663099 7356.5571
+78496.20576458029 4.066349 7356.7539
+78497.20576463058 4.066349 7356.9502
+78498.20576468087 4.0664673 7356.7539
+78499.20576473116 4.0663886 7356.9502
+78500.20576478145 4.066546 7356.7539
+78501.20576483174 4.0664673 7356.5571
+78502.20576488203 4.0666642 7355.9663
+78503.20576493233 4.0665855 7356.9502
+78504.20576498262 4.0667429 7356.5571
+78505.20576503291 4.0668612 7356.5571
+78506.2057650832 4.0666642 7356.7539
+78507.20576513349 4.0669398 7356.5571
+78508.20576518378 4.0669398 7356.1636
+78509.20576523407 4.0669398 7356.7539
+78510.20576528437 4.0670185 7356.5571
+78511.20576533466 4.0671759 7356.9502
+78512.20576538495 4.0671759 7356.9502
+78513.20576543524 4.0672154 7356.1636
+78514.20576548553 4.0672941 7356.9502
+78515.20576553582 4.0673728 7356.5571
+78516.20576558611 4.0674515 7356.9502
+78517.2057656364 4.0676484 7357.541
+78518.2057656867 4.0675697 7356.5571
+78519.20576573699 4.0676484 7356.1636
+78520.20576578728 4.0678058 7357.1475
+78521.20576583757 4.0677271 7356.5571
+78522.20576588786 4.0679631 7357.1475
+78523.20576593815 4.0679631 7355.9663
+78524.20576598844 4.0680027 7356.9502
+78525.20576603874 4.0680814 7356.9502
+78526.20576608903 4.0682387 7356.5571
+78527.20576613932 4.0683179 7356.3604
+78528.20576618961 4.0682783 7356.7539
+78529.2057662399 4.0683966 7356.5571
+78530.2057662902 4.0685143 7356.7539
+78531.20576634048 4.0685539 7356.9502
+78532.20576639078 4.0687113 7356.7539
+78533.20576644107 4.0687509 7356.9502
+78534.20576649136 4.0687509 7357.1475
+78535.20576654165 4.06879 7357.1475
+78536.20576659194 4.0689478 7356.9502
+78537.20576664223 4.0689478 7357.1475
+78538.20576669252 4.0691051 7356.5571
+78539.20576674282 4.0691051 7356.7539
+78540.20576679311 4.0692234 7357.9346
+78541.2057668434 4.0693808 7357.1475
+78542.20576689369 4.0693808 7356.5571
+78543.20576694398 4.0694985 7356.9502
+78544.20576699427 4.0696168 7356.9502
+78545.20576704456 4.0696955 7356.9502
+78546.20576709486 4.0696564 7357.541
+78547.20576714515 4.0698137 7356.7539
+78548.20576719544 4.0698924 7357.3442
+78549.20576724573 4.0699711 7357.1475
+78550.20576729602 4.0700893 7356.9502
+78551.20576734631 4.070168 7356.7539
+78552.2057673966 4.0702076 7356.5571
+78553.2057674469 4.0702467 7356.7539
+78554.20576749719 4.0703254 7356.9502
+78555.20576754748 4.0704832 7356.9502
+78556.20576759777 4.0705223 7356.5571
+78557.20576764806 4.0706406 7356.9502
+78558.20576769835 4.0707192 7356.9502
+78559.20576774864 4.0707192 7355.9663
+78560.20576779894 4.0708766 7356.7539
+78561.20576784923 4.0709162 7356.9502
+78562.20576789952 4.0709553 7356.7539
+78563.20576794981 4.0711522 7356.9502
+78564.2057680001 4.0711131 7356.7539
+78565.2057680504 4.0711522 7356.9502
+78566.20576810068 4.0713491 7356.1636
+78567.20576815098 4.0713887 7356.7539
+78568.20576820127 4.0714674 7356.1636
+78569.20576825156 4.0715065 7356.9502
+78570.20576830185 4.0715065 7356.9502
+78571.20576835214 4.0717034 7356.1636
+78572.20576840243 4.071743 7356.5571
+78573.20576845272 4.0719004 7356.9502
+78574.20576850302 4.0718608 7356.3604
+78575.20576855331 4.0720186 7356.3604
+78576.2057686036 4.0720973 7356.3604
+78577.20576865389 4.0722547 7357.3442
+78578.20576870418 4.0722547 7357.541
+78579.20576875447 4.0722151 7357.1475
+78580.20576880476 4.0723333 7356.3604
+78581.20576885506 4.0723729 7356.1636
+78582.20576890535 4.072412 7357.7378
+78583.20576895564 4.0724907 7356.9502
+78584.20576900593 4.0725303 7356.7539
+78585.20576905622 4.0726485 7356.7539
+78586.20576910651 4.0728059 7357.3442
+78587.2057691568 4.0726876 7356.7539
+78588.2057692071 4.0728846 7356.9502
+78589.20576925739 4.072845 7356.3604
+78590.20576930768 4.0729632 7356.9502
+78591.20576935797 4.0730028 7356.3604
+78592.20576940826 4.0730028 7356.7539
+78593.20576945855 4.0731993 7356.9502
+78594.20576950884 4.0732784 7356.9502
+78595.20576955914 4.0733571 7355.5728
+78596.20576960943 4.0733571 7356.3604
+78597.20576965972 4.0734358 7357.1475
+78598.20576971001 4.0735145 7356.5571
+78599.2057697603 4.0737114 7356.9502
+78600.2057698106 4.0735931 7356.7539
+78601.20576986088 4.0738292 7356.9502
+78602.20576991118 4.0738292 7355.9663
+78603.20576996147 4.0738292 7357.541
+78604.20577001176 4.0739083 7356.9502
+78605.20577006205 4.0740657 7357.3442
+78606.20577011234 4.0741048 7356.7539
+78607.20577016263 4.0741839 7357.1475
+78608.20577021292 4.0743804 7357.3442
+78609.20577026322 4.0742626 7356.3604
+78610.2057703135 4.0745382 7357.1475
+78611.2057703638 4.0745773 7356.5571
+78612.20577041409 4.0745773 7357.3442
+78613.20577046438 4.0747743 7355.9663
+78614.20577051467 4.0748529 7357.3442
+78615.20577056496 4.0747743 7356.7539
+78616.20577061526 4.0749712 7356.5571
+78617.20577066555 4.0750103 7356.1636
+78618.20577071584 4.0750499 7356.7539
+78619.20577076613 4.0751286 7357.1475
+78620.20577081642 4.0753255 7356.9502
+78621.20577086671 4.0752859 7356.7539
+78622.205770917 4.0754437 7356.3604
+78623.2057709673 4.0754437 7356.9502
+78624.20577101759 4.0756402 7356.7539
+78625.20577106788 4.0757194 7356.7539
+78626.20577111817 4.0758767 7357.3442
+78627.20577116846 4.0759158 7356.7539
+78628.20577121875 4.0758767 7356.9502
+78629.20577126904 4.0759945 7356.7539
+78630.20577131934 4.0761914 7356.1636
+78631.20577136963 4.076231 7356.3604
+78632.20577141992 4.0762701 7357.1475
+78633.20577147021 4.0763884 7356.3604
+78634.2057715205 4.0764279 7356.3604
+78635.20577157079 4.076664 7357.3442
+78636.20577162108 4.0767035 7356.5571
+78637.20577167138 4.0767426 7357.1475
+78638.20577172167 4.0768609 7356.7539
+78639.20577177196 4.0768609 7356.7539
+78640.20577182225 4.0770578 7355.9663
+78641.20577187254 4.0771365 7357.1475
+78642.20577192283 4.0771756 7356.9502
+78643.20577197312 4.0772939 7357.1475
+78644.20577202342 4.0772152 7355.9663
+78645.2057720737 4.0774121 7356.7539
+78646.205772124 4.0776482 7356.9502
+78647.20577217429 4.0777268 7355.9663
+78648.20577222458 4.0778847 7356.5571
+78649.20577227487 4.0778451 7356.9502
+78650.20577232516 4.0779238 7356.9502
+78651.20577237546 4.0780025 7357.9346
+78652.20577242575 4.0781603 7357.3442
+78653.20577247604 4.0781603 7356.5571
+78654.20577252633 4.0781207 7356.9502
+78655.20577257662 4.0783567 7356.7539
+78656.20577262691 4.0784354 7355.7695
+78657.2057726772 4.0785537 7356.9502
+78658.2057727275 4.0786719 7357.3442
+78659.20577277779 4.0787506 7357.3442
+78660.20577282808 4.078711 7356.7539
+78661.20577287837 4.078908 7356.1636
+78662.20577292866 4.078908 7356.9502
+78663.20577297895 4.0791049 7356.7539
+78664.20577302924 4.0791836 7356.1636
+78665.20577307953 4.0792232 7356.9502
+78666.20577312983 4.0793018 7356.7539
+78667.20577318012 4.0794201 7357.1475
+78668.20577323041 4.0794988 7356.3604
+78669.2057732807 4.0795379 7357.1475
+78670.20577333099 4.0796561 7357.1475
+78671.20577338128 4.0796957 7356.9502
+78672.20577343157 4.0797744 7356.9502
+78673.20577348187 4.0798531 7357.1475
+78674.20577353216 4.0798922 7356.7539
+78675.20577358245 4.0798922 7357.3442
+78676.20577363274 4.0800891 7356.5571
+78677.20577368303 4.0802073 7357.1475
+78678.20577373332 4.0802464 7357.1475
+78679.20577378361 4.0803647 7357.1475
+78680.2057738339 4.0805221 7356.5571
+78681.2057738842 4.0805221 7356.7539
+78682.20577393449 4.0805616 7356.7539
+78683.20577398478 4.080719 7357.1475
+78684.20577403507 4.0808764 7356.9502
+78685.20577408536 4.0809159 7357.1475
+78686.20577413565 4.0809946 7357.3442
+78687.20577418595 4.0811129 7356.7539
+78688.20577423624 4.0811915 7356.3604
+78689.20577428653 4.0812306 7356.3604
+78690.20577433682 4.0813885 7357.3442
+78691.20577438711 4.0815063 7356.3604
+78692.2057744374 4.0815063 7357.1475
+78693.2057744877 4.0816245 7356.9502
+78694.20577453799 4.0815854 7357.3442
+78695.20577458828 4.0818214 7357.1475
+78696.20577463857 4.0819788 7357.7378
+78697.20577468886 4.0820971 7356.5571
+78698.20577473915 4.0820971 7356.9502
+78699.20577478944 4.0821757 7357.3442
+78700.20577483973 4.082294 7356.9502
+78701.20577489003 4.0823331 7357.3442
+78702.20577494032 4.0824909 7356.7539
+78703.20577499061 4.0826087 7356.7539
+78704.2057750409 4.0826087 7357.541
+78705.20577509119 4.0826483 7356.7539
+78706.20577514148 4.0828452 7356.9502
+78707.20577519177 4.082963 7356.9502
+78708.20577524207 4.082963 7356.9502
+78709.20577529236 4.0830026 7356.7539
+78710.20577534265 4.0831995 7356.7539
+78711.20577539294 4.0832386 7356.7539
+78712.20577544323 4.0833964 7357.1475
+78713.20577549352 4.0834751 7356.9502
+78714.20577554381 4.0833964 7357.1475
+78715.2057755941 4.0835538 7357.1475
+78716.2057756444 4.0836325 7356.5571
+78717.20577569469 4.0836716 7356.9502
+78718.20577574498 4.0838294 7356.3604
+78719.20577579527 4.0838685 7356.7539
+78720.20577584556 4.0839081 7357.541
+78721.20577589585 4.0839472 7356.9502
+78722.20577594615 4.0839472 7357.1475
+78723.20577599644 4.0841441 7356.7539
+78724.20577604673 4.0841837 7356.9502
+78725.20577609702 4.0843015 7356.7539
+78726.20577614731 4.0843015 7357.3442
+78727.2057761976 4.0844593 7356.9502
+78728.2057762479 4.0844593 7357.3442
+78729.20577629819 4.0846562 7356.3604
+78730.20577634848 4.0845771 7356.5571
+78731.20577639877 4.084774 7356.5571
+78732.20577644906 4.0848136 7357.541
+78733.20577649935 4.084971 7356.5571
+78734.20577654964 4.084971 7356.9502
+78735.20577659993 4.0850105 7356.5571
+78736.20577665023 4.0851283 7356.7539
+78737.20577670052 4.0852861 7357.3442
+78738.20577675081 4.0852861 7356.5571
+78739.2057768011 4.0854039 7357.1475
+78740.20577685139 4.0856404 7355.5728
+78741.20577690168 4.0857191 7356.3604
+78742.20577695197 4.0856795 7357.7378
+78743.20577700227 4.0858369 7356.7539
+78744.20577705256 4.085916 7356.5571
+78745.20577710285 4.0859947 7357.7378
+78746.20577715314 4.0860338 7356.9502
+78747.20577720343 4.0861521 7355.9663
+78748.20577725372 4.0863094 7356.9502
+78749.20577730401 4.086349 7356.5571
+78750.2057773543 4.0864277 7355.9663
+78751.2057774046 4.086585 7356.7539
+78752.20577745489 4.086585 7357.1475
+78753.20577750518 4.0866637 7357.3442
+78754.20577755547 4.0868216 7356.7539
+78755.20577760576 4.086782 7356.5571
+78756.20577765605 4.0869002 7356.7539
+78757.20577770635 4.087018 7356.7539
+78758.20577775664 4.0871363 7355.9663
+78759.20577780693 4.0871363 7356.1636
+78760.20577785722 4.0872149 7356.5571
+78761.20577790751 4.0873723 7356.3604
+78762.2057779578 4.0874906 7357.1475
+78763.2057780081 4.0874119 7357.3442
+78764.20577805839 4.0876479 7356.7539
+78765.20577810868 4.0877271 7357.7378
+78766.20577815897 4.0877662 7356.9502
+78767.20577820926 4.0878448 7357.3442
+78768.20577825955 4.0879631 7356.1636
+78769.20577830984 4.0880418 7357.1475
+78770.20577836013 4.0881991 7356.7539
+78771.20577841043 4.0883174 7356.5571
+78772.20577846072 4.0884356 7357.1475
+78773.20577851101 4.0885143 7356.7539
+78774.2057785613 4.0883961 7356.3604
+78775.20577861159 4.088593 7357.1475
+78776.20577866188 4.0887113 7356.9502
+78777.20577871217 4.0889077 7356.3604
+78778.20577876247 4.0889077 7356.7539
+78779.20577881276 4.0889869 7356.3604
+78780.20577886305 4.0889869 7357.1475
+78781.20577891334 4.0891442 7356.7539
+78782.20577896363 4.0894198 7356.5571
+78783.20577901392 4.0894198 7356.3604
+78784.20577906421 4.0894985 7356.9502
+78785.2057791145 4.0897346 7356.3604
+78786.2057791648 4.0896559 7356.9502
+78787.20577921509 4.0898132 7356.1636
+78788.20577926538 4.0899315 7356.9502
+78789.20577931567 4.0900102 7356.3604
+78790.20577936596 4.0900102 7356.9502
+78791.20577941625 4.0901284 7356.5571
+78792.20577946655 4.0902858 7356.9502
+78793.20577951684 4.090404 7356.9502
+78794.20577956713 4.0905223 7357.3442
+78795.20577961742 4.0905614 7357.1475
+78796.20577966771 4.090601 7356.7539
+78797.205779718 4.0906796 7356.9502
+78798.2057797683 4.0909553 7356.7539
+78799.20577981859 4.0909944 7357.1475
+78800.20577986888 4.0910339 7357.1475
+78801.20577991917 4.0911913 7356.1636
+78802.20577996946 4.0912309 7356.9502
+78803.20578001975 4.0914278 7356.9502
+78804.20578007004 4.0913882 7356.9502
+78805.20578012033 4.0915065 7357.9346
+78806.20578017063 4.0916243 7356.7539
+78807.20578022092 4.0916638 7357.1475
+78808.20578027121 4.0918608 7356.9502
+78809.2057803215 4.0919394 7356.5571
+78810.20578037179 4.0920181 7357.1475
+78811.20578042208 4.0921364 7356.1636
+78812.20578047237 4.0922937 7355.7695
+78813.20578052267 4.0923333 7357.3442
+78814.20578057296 4.0925298 7357.1475
+78815.20578062325 4.0926876 7356.9502
+78816.20578067354 4.0927663 7356.7539
+78817.20578072383 4.0929236 7356.1636
+78818.20578077412 4.0929236 7356.9502
+78819.20578082441 4.0929632 7356.3604
+78820.2057808747 4.0931206 7356.5571
+78821.205780925 4.0931206 7357.3442
+78822.20578097529 4.0933175 7356.5571
+78823.20578102558 4.0933962 7356.7539
+78824.20578107587 4.0934749 7356.3604
+78825.20578112616 4.0935535 7356.5571
+78826.20578117645 4.0937109 7357.1475
+78827.20578122674 4.0937505 7356.9502
+78828.20578127704 4.0938683 7356.9502
+78829.20578132733 4.0939474 7357.1475
+78830.20578137762 4.0940652 7357.3442
+78831.20578142791 4.0941439 7357.1475
+78832.2057814782 4.094223 7356.3604
+78833.2057815285 4.0942621 7357.3442
+78834.20578157878 4.0944986 7355.9663
+78835.20578162908 4.0943804 7357.541
+78836.20578167937 4.0945773 7356.3604
+78837.20578172966 4.0947738 7356.5571
+78838.20578177995 4.0948133 7357.1475
+78839.20578183024 4.094892 7356.7539
+78840.20578188053 4.094892 7355.7695
+78841.20578193082 4.0951285 7357.3442
+78842.20578198112 4.095089 7356.7539
+78843.20578203141 4.095325 7356.7539
+78844.2057820817 4.0952463 7356.7539
+78845.20578213199 4.0952463 7357.541
+78846.20578218228 4.0954432 7356.9502
+78847.20578223257 4.0956402 7356.3604
+78848.20578228286 4.0957584 7357.1475
+78849.20578233316 4.0957189 7356.9502
+78850.20578238345 4.0958371 7357.1475
+78851.20578243374 4.0959158 7356.7539
+78852.20578248403 4.0958762 7356.5571
+78853.20578253432 4.096034 7356.7539
+78854.20578258461 4.0961127 7356.9502
+78855.2057826349 4.0962701 7356.9502
+78856.2057826852 4.0963488 7356.1636
+78857.20578273549 4.0963488 7357.541
+78858.20578278578 4.0965061 7356.5571
+78859.20578283607 4.0965848 7357.1475
+78860.20578288636 4.0967817 7356.9502
+78861.20578293665 4.0968213 7357.1475
+78862.20578298694 4.0968604 7356.3604
+78863.20578303724 4.0969391 7356.9502
+78864.20578308753 4.0969 7357.541
+78865.20578313782 4.097136 7356.9502
+78866.20578318811 4.0971756 7357.541
+78867.2057832384 4.0973725 7356.7539
+78868.2057832887 4.097333 7356.7539
+78869.20578333898 4.0974512 7356.7539
+78870.20578338928 4.0975299 7357.1475
+78871.20578343957 4.0975695 7356.3604
+78872.20578348986 4.0977268 7356.3604
+78873.20578354015 4.0978055 7356.7539
+78874.20578359044 4.0978842 7356.7539
+78875.20578364073 4.0979629 7357.1475
+78876.20578369102 4.0980024 7356.7539
+78877.20578374132 4.0981598 7357.3442
+78878.2057837916 4.0981994 7357.1475
+78879.2057838419 4.0981994 7356.9502
+78880.20578389219 4.0983567 7357.1475
+78881.20578394248 4.0983958 7356.7539
+78882.20578399277 4.0986714 7356.9502
+78883.20578404306 4.0985141 7356.9502
+78884.20578409336 4.0986323 7356.5571
+78885.20578414365 4.0987897 7356.7539
+78886.20578419394 4.098947 7357.3442
+78887.20578424423 4.0989079 7356.9502
+78888.20578429452 4.098947 7357.541
+78889.20578434481 4.0990653 7356.7539
+78890.2057843951 4.0991044 7357.1475
+78891.2057844454 4.0992622 7356.7539
+78892.20578449569 4.09938 7356.5571
+78893.20578454598 4.0994592 7356.9502
+78894.20578459627 4.0995378 7356.3604
+78895.20578464656 4.0996165 7356.5571
+78896.20578469685 4.0996952 7356.5571
+78897.20578474714 4.0998135 7356.9502
+78898.20578479744 4.0998921 7356.9502
+78899.20578484773 4.0999312 7356.7539
+78900.20578489802 4.1001282 7356.1636
+78901.20578494831 4.1002069 7357.3442
+78902.2057849986 4.1002069 7356.7539
+78903.20578504889 4.1003647 7356.3604
+78904.20578509918 4.1003251 7357.3442
+78905.20578514948 4.1004825 7355.7695
+78906.20578519977 4.1004825 7356.7539
+78907.20578525006 4.1006794 7356.3604
+78908.20578530035 4.1007581 7355.5728
+78909.20578535064 4.100955 7355.9663
+78910.20578540093 4.100955 7355.9663
+78911.20578545122 4.1010337 7355.3765
+78912.20578550152 4.101191 7354.5889
+78913.2057855518 4.1011124 7354.1948
+78914.2057856021 4.1012702 7354.3921
+78915.20578565239 4.101388 7355.5728
+78916.20578570268 4.1015849 7355.5728
+78917.20578575297 4.1015453 7353.605
+78918.20578580326 4.1016245 7353.8013
+78919.20578585356 4.1018605 7353.2109
+78920.20578590385 4.1018209 7354.9824
+78921.20578595414 4.1018605 7354.5889
+78922.20578600443 4.1020179 7353.998
+78923.20578605472 4.1020179 7353.998
+78924.20578610501 4.1022935 7355.3765
+78925.2057861553 4.1022935 7354.7856
+78926.2057862056 4.1023722 7354.3921
+78927.20578625589 4.1024117 7355.3765
+78928.20578630618 4.1025691 7357.3442
+78929.20578635647 4.1025691 7356.5571
+78930.20578640676 4.1026478 7356.1636
+78931.20578645705 4.1028843 7355.3765
+78932.20578650734 4.1030021 7355.9663
+78933.20578655764 4.1028843 7355.7695
+78934.20578660793 4.102963 7357.1475
+78935.20578665822 4.1031599 7356.7539
+78936.20578670851 4.1032386 7355.3765
+78937.2057867588 4.1032386 7356.9502
+78938.20578680909 4.1034355 7357.1475
+78939.20578685938 4.1034746 7357.1475
+78940.20578690968 4.103632 7356.9502
+78941.20578695997 4.103632 7356.7539
+78942.20578701026 4.1036716 7356.3604
+78943.20578706055 4.1038685 7357.541
+78944.20578711084 4.1038289 7356.7539
+78945.20578716113 4.1039863 7356.9502
+78946.20578721142 4.1041832 7355.9663
+78947.20578726172 4.1041441 7356.7539
+78948.205787312 4.1043406 7356.9502
+78949.2057873623 4.1044197 7356.7539
+78950.20578741259 4.1045375 7356.5571
+78951.20578746288 4.1044984 7356.5571
+78952.20578751317 4.1046162 7356.7539
+78953.20578756346 4.1047344 7357.1475
+78954.20578761376 4.1048527 7356.5571
+78955.20578766405 4.1048918 7357.1475
+78956.20578771434 4.1050496 7356.5571
+78957.20578776463 4.1051283 7357.3442
+78958.20578781492 4.1050887 7356.1636
+78959.20578786521 4.1053252 7357.1475
+78960.2057879155 4.1053252 7356.1636
+78961.2057879658 4.105443 7356.3604
+78962.20578801609 4.1054826 7357.1475
+78963.20578806638 4.1056008 7356.7539
+78964.20578811667 4.1057186 7356.3604
+78965.20578816696 4.1058369 7355.9663
+78966.20578821725 4.1058369 7356.9502
+78967.20578826754 4.1059155 7356.3604
+78968.20578831783 4.1059942 7356.5571
+78969.20578836813 4.1061912 7355.7695
+78970.20578841842 4.1062698 7357.1475
+78971.20578846871 4.1064272 7356.3604
+78972.205788519 4.1063485 7356.5571
+78973.20578856929 4.1065454 7357.9346
+78974.20578861958 4.1066241 7356.1636
+78975.20578866987 4.1067028 7356.9502
+78976.20578872017 4.1067028 7356.1636
+78977.20578877046 4.1067815 7357.1475
+78978.20578882075 4.1069784 7355.9663
+78979.20578887104 4.107018 7357.7378
+78980.20578892133 4.1070967 7356.5571
+78981.20578897162 4.1071754 7356.9502
+78982.20578902191 4.1072936 7356.7539
+78983.2057890722 4.1074905 7356.7539
+78984.2057891225 4.1075296 7357.3442
+78985.20578917279 4.1076479 7356.7539
+78986.20578922308 4.1078448 7355.3765
+78987.20578927337 4.1078839 7356.9502
+78988.20578932366 4.1079235 7355.7695
+78989.20578937395 4.1081595 7356.9502
+78990.20578942425 4.1080809 7356.1636
+78991.20578947454 4.1082778 7356.7539
+78992.20578952483 4.1083961 7356.9502
+78993.20578957512 4.1084352 7356.7539
+78994.20578962541 4.1084747 7356.7539
+78995.2057896757 4.1084747 7356.7539
+78996.205789726 4.1085925 7356.9502
+78997.20578977629 4.1086717 7356.1636
+78998.20578982658 4.1088681 7356.5571
+78999.20578987687 4.1088681 7356.9502
+79000.20578992716 4.1089468 7356.5571
+79001.20578997745 4.1091046 7356.1636
+79002.20579002774 4.1092224 7356.9502
+79003.20579007803 4.1091833 7356.5571
+79004.20579012833 4.1093802 7356.7539
+79005.20579017862 4.1095767 7356.7539
+79006.20579022891 4.1095767 7357.3442
+79007.2057902792 4.1097345 7356.7539
+79008.20579032949 4.1097736 7356.7539
+79009.20579037978 4.1098919 7356.1636
+79010.20579043007 4.1100492 7357.3442
+79011.20579048037 4.1100492 7356.3604
+79012.20579053066 4.1101279 7357.1475
+79013.20579058095 4.1102071 7356.9502
+79014.20579063124 4.1103249 7356.9502
+79015.20579068153 4.1104431 7355.9663
+79016.20579073182 4.1104822 7357.1475
+79017.20579078211 4.11064 7356.5571
+79018.2057908324 4.1106791 7356.7539
+79019.2057908827 4.1107578 7356.5571
+79020.20579093299 4.1109943 7356.9502
+79021.20579098328 4.1111517 7356.3604
+79022.20579103357 4.1111517 7356.5571
+79023.20579108386 4.11127 7356.1636
+79024.20579113415 4.1113091 7355.5728
+79025.20579118445 4.1114669 7357.541
+79026.20579123474 4.111506 7357.7378
+79027.20579128503 4.1116242 7356.7539
+79028.20579133532 4.1116633 7356.5571
+79029.20579138561 4.1117816 7356.7539
+79030.2057914359 4.1120572 7357.1475
+79031.2057914862 4.1120176 7357.1475
+79032.20579153649 4.1122146 7356.5571
+79033.20579158678 4.1122541 7356.3604
+79034.20579163707 4.1123328 7356.9502
+79035.20579168736 4.1124511 7356.7539
+79036.20579173765 4.1124511 7356.5571
+79037.20579178794 4.1125298 7356.3604
+79038.20579183823 4.1126475 7356.7539
+79039.20579188853 4.1127658 7356.3604
+79040.20579193882 4.1128054 7356.7539
+79041.20579198911 4.1130023 7356.9502
+79042.2057920394 4.1130023 7356.9502
+79043.20579208969 4.1131597 7356.9502
+79044.20579213998 4.1132774 7357.1475
+79045.20579219027 4.1131988 7356.3604
+79046.20579224057 4.1133566 7356.9502
+79047.20579229086 4.1134744 7356.5571
+79048.20579234115 4.1136713 7356.9502
+79049.20579239144 4.1135926 7356.3604
+79050.20579244173 4.1136713 7356.7539
+79051.20579249202 4.1137896 7356.3604
+79052.20579254231 4.1139078 7357.3442
+79053.2057925926 4.1140256 7356.7539
+79054.2057926429 4.1141043 7356.9502
+79055.20579269319 4.1143012 7356.5571
+79056.20579274348 4.1143799 7357.1475
+79057.20579279377 4.1143408 7355.9663
+79058.20579284406 4.1146164 7356.7539
+79059.20579289435 4.1146164 7356.9502
+79060.20579294465 4.1148129 7357.1475
+79061.20579299494 4.1148524 7356.7539
+79062.20579304523 4.1150098 7356.5571
+79063.20579309552 4.115128 7356.1636
+79064.20579314581 4.1152067 7356.7539
+79065.2057931961 4.1154037 7356.7539
+79066.2057932464 4.1154428 7356.1636
+79067.20579329669 4.1154823 7356.7539
+79068.20579334698 4.1156006 7355.7695
+79069.20579339727 4.1156397 7356.7539
+79070.20579344756 4.1157184 7356.7539
+79071.20579349785 4.1159549 7356.1636
+79072.20579354814 4.1159153 7356.5571
+79073.20579359843 4.115994 7356.5571
+79074.20579364873 4.1160731 7356.5571
+79075.20579369902 4.1162696 7356.5571
+79076.20579374931 4.1163878 7356.9502
+79077.2057937996 4.1164665 7357.7378
+79078.20579384989 4.1165061 7356.7539
+79079.20579390018 4.1165061 7357.1475
+79080.20579395047 4.1167817 7357.7378
+79081.20579400077 4.1167817 7356.1636
+79082.20579405106 4.1168208 7356.3604
+79083.20579410135 4.1170573 7356.5571
+79084.20579415164 4.1170573 7356.9502
+79085.20579420193 4.117136 7357.3442
+79086.20579425222 4.1172934 7356.9502
+79087.20579430251 4.1173329 7357.1475
+79088.2057943528 4.1174507 7356.1636
+79089.2057944031 4.1175294 7356.5571
+79090.20579445339 4.117569 7356.9502
+79091.20579450368 4.1176872 7356.7539
+79092.20579455397 4.1178837 7357.1475
+79093.20579460426 4.1178837 7355.9663
+79094.20579465455 4.1180415 7357.541
+79095.20579470485 4.1181989 7356.7539
+79096.20579475514 4.1181202 7356.7539
+79097.20579480543 4.1184349 7356.7539
+79098.20579485572 4.1183958 7356.5571
+79099.20579490601 4.1185532 7356.5571
+79100.2057949563 4.1187105 7356.3604
+79101.2057950066 4.1188288 7356.7539
+79102.20579505689 4.1188288 7356.7539
+79103.20579510718 4.118947 7355.9663
+79104.20579515747 4.1191831 7357.1475
+79105.20579520776 4.119144 7356.5571
+79106.20579525805 4.1192226 7356.3604
+79107.20579530834 4.1193404 7356.1636
+79108.20579535863 4.1193404 7356.7539
+79109.20579540893 4.1194587 7356.9502
+79110.20579545922 4.1196556 7356.5571
+79111.20579550951 4.1197739 7355.7695
+79112.2057955598 4.119813 7356.3604
+79113.20579561009 4.1199703 7356.7539
+79114.20579566038 4.1200099 7357.1475
+79115.20579571067 4.1201282 7356.7539
+79116.20579576096 4.1202068 7356.3604
+79117.20579581126 4.1202459 7356.9502
+79118.20579586155 4.1202855 7356.9502
+79119.20579591184 4.1205215 7357.1475
+79120.20579596213 4.1205611 7356.7539
+79121.20579601242 4.1206398 7356.9502
+79122.20579606271 4.1208367 7356.9502
+79123.205796113 4.1207581 7356.9502
+79124.2057961633 4.1209941 7355.9663
+79125.20579621359 4.1211123 7355.9663
+79126.20579626388 4.1211514 7356.9502
+79127.20579631417 4.121191 7355.9663
+79128.20579636446 4.1213093 7356.5571
+79129.20579641475 4.1215453 7356.5571
+79130.20579646504 4.1215057 7356.9502
+79131.20579651534 4.121624 7356.9502
+79132.20579656563 4.1217813 7356.3604
+79133.20579661592 4.1217422 7356.9502
+79134.20579666621 4.1218996 7356.9502
+79135.2057967165 4.1220179 7356.7539
+79136.2057967668 4.1221356 7357.1475
+79137.20579681708 4.1222143 7357.1475
+79138.20579686738 4.1223722 7356.3604
+79139.20579691767 4.1225295 7356.1636
+79140.20579696796 4.1225295 7356.1636
+79141.20579701825 4.1226082 7356.7539
+79142.20579706854 4.1226478 7356.1636
+79143.20579711883 4.1227655 7356.1636
+79144.20579716912 4.1228838 7356.3604
+79145.20579721942 4.1230412 7356.5571
+79146.20579726971 4.1230807 7356.5571
+79147.20579732 4.1232381 7356.9502
+79148.20579737029 4.1232381 7356.5571
+79149.20579742058 4.123435 7357.541
+79150.20579747087 4.1233563 7357.541
+79151.20579752116 4.1235137 7357.541
+79152.20579757146 4.1236711 7356.7539
+79153.20579762175 4.1237106 7357.3442
+79154.20579767204 4.1237893 7357.1475
+79155.20579772233 4.1240649 7356.3604
+79156.20579777262 4.1241436 7356.3604
+79157.20579782291 4.1242223 7356.7539
+79158.2057978732 4.1244192 7356.9502
+79159.2057979235 4.1244979 7356.7539
+79160.20579797379 4.1245766 7356.5571
+79161.20579802408 4.1246948 7356.5571
+79162.20579807437 4.1247735 7356.1636
+79163.20579812466 4.1248131 7356.9502
+79164.20579817495 4.1249309 7356.3604
+79165.20579822524 4.1251278 7356.7539
+79166.20579827554 4.1250491 7356.7539
+79167.20579832583 4.1252851 7355.7695
+79168.20579837612 4.1253643 7356.7539
+79169.20579842641 4.1253643 7356.7539
+79170.2057984767 4.1255608 7356.9502
+79171.205798527 4.1256399 7356.9502
+79172.20579857728 4.125679 7356.5571
+79173.20579862758 4.1258364 7356.7539
+79174.20579867787 4.1259546 7357.3442
+79175.20579872816 4.1259546 7357.1475
+79176.20579877845 4.126112 7356.5571
+79177.20579882874 4.1261907 7356.1636
+79178.20579887903 4.1264272 7356.1636
+79179.20579892932 4.1264663 7356.5571
+79180.20579897962 4.1265845 7355.9663
+79181.2057990299 4.1266241 7356.7539
+79182.2057990802 4.1267028 7356.9502
+79183.20579913049 4.1268601 7357.3442
+79184.20579918078 4.1268601 7356.9502
+79185.20579923107 4.1269784 7356.9502
+79186.20579928136 4.1270962 7357.1475
+79187.20579933166 4.1272144 7356.7539
+79188.20579938195 4.1273718 7356.3604
+79189.20579943224 4.1273718 7356.3604
+79190.20579948253 4.1274505 7356.5571
+79191.20579953282 4.1276474 7357.1475
+79192.20579958311 4.1276474 7357.3442
+79193.2057996334 4.1277657 7356.9502
+79194.2057996837 4.1278839 7356.5571
+79195.20579973399 4.1280017 7356.7539
+79196.20579978428 4.1280808 7357.541
+79197.20579983457 4.1281986 7357.3442
+79198.20579988486 4.128356 7356.7539
+79199.20579993515 4.1283169 7356.7539
+79200.20579998544 4.1285138 7356.3604
+79201.20580003574 4.1285138 7356.9502
+79202.20580008603 4.1287107 7356.5571
+79203.20580013632 4.1287894 7356.7539
+79204.20580018661 4.1290255 7356.9502
+79205.2058002369 4.1289859 7356.5571
+79206.20580028719 4.1289468 7356.7539
+79207.20580033748 4.1291828 7356.9502
+79208.20580038778 4.1293011 7356.1636
+79209.20580043807 4.1294584 7356.9502
+79210.20580048836 4.1294584 7356.1636
+79211.20580053865 4.1295767 7356.9502
+79212.20580058894 4.1296158 7356.9502
+79213.20580063923 4.129734 7356.9502
+79214.20580068952 4.129931 7356.5571
+79215.20580073982 4.1299706 7356.9502
+79216.2058007901 4.1300492 7356.7539
+79217.2058008404 4.1301279 7356.7539
+79218.20580089069 4.1302066 7356.7539
+79219.20580094098 4.1302066 7356.5571
+79220.20580099127 4.1302462 7356.9502
+79221.20580104156 4.1304035 7356.1636
+79222.20580109186 4.1304822 7356.9502
+79223.20580114215 4.1305609 7356.9502
+79224.20580119244 4.1306791 7357.3442
+79225.20580124273 4.1308365 7356.5571
+79226.20580129302 4.1309152 7356.5571
+79227.20580134331 4.1310334 7356.3604
+79228.2058013936 4.1310725 7356.5571
+79229.2058014439 4.1312304 7356.3604
+79230.20580149419 4.1312695 7356.5571
+79231.20580154448 4.1314268 7357.1475
+79232.20580159477 4.1314664 7356.7539
+79233.20580164506 4.1315846 7356.3604
+79234.20580169535 4.1316237 7356.9502
+79235.20580174564 4.131742 7356.5571
+79236.20580179594 4.1318603 7355.9663
+79237.20580184623 4.1318603 7356.7539
+79238.20580189652 4.1320176 7357.1475
+79239.20580194681 4.1321359 7356.3604
+79240.2058019971 4.1322536 7357.1475
+79241.20580204739 4.1322536 7356.3604
+79242.20580209768 4.1323719 7355.7695
+79243.20580214798 4.1324506 7356.7539
+79244.20580219827 4.1325688 7356.7539
+79245.20580224856 4.1325688 7356.7539
+79246.20580229885 4.1327658 7356.3604
+79247.20580234914 4.1327658 7356.5571
+79248.20580239943 4.1329622 7356.7539
+79249.20580244972 4.1330018 7356.5571
+79250.20580250002 4.1331592 7356.9502
+79251.2058025503 4.1331592 7355.7695
+79252.2058026006 4.1332378 7356.1636
+79253.20580265089 4.1333561 7356.9502
+79254.20580270118 4.1333957 7356.7539
+79255.20580275147 4.133553 7356.3604
+79256.20580280176 4.1336317 7357.1475
+79257.20580285206 4.1337891 7356.5571
+79258.20580290235 4.1337891 7356.3604
+79259.20580295264 4.1338286 7357.1475
+79260.20580300293 4.1341829 7356.7539
+79261.20580305322 4.1341434 7356.9502
+79262.20580310351 4.134222 7356.7539
+79263.2058031538 4.1342616 7356.9502
+79264.2058032041 4.1343799 7356.7539
+79265.20580325439 4.134419 7356.5571
+79266.20580330468 4.1344585 7356.7539
+79267.20580335497 4.1345372 7356.5571
+79268.20580340526 4.1348128 7356.3604
+79269.20580345555 4.1348519 7356.7539
+79270.20580350584 4.1348915 7356.9502
+79271.20580355613 4.1350098 7356.9502
+79272.20580360643 4.1350884 7355.9663
+79273.20580365672 4.1352854 7357.1475
+79274.20580370701 4.1353245 7357.1475
+79275.2058037573 4.1352854 7356.3604
+79276.20580380759 4.1354823 7356.1636
+79277.20580385788 4.1356397 7356.7539
+79278.20580390817 4.135561 7356.5571
+79279.20580395847 4.1356397 7355.7695
+79280.20580400876 4.1358366 7355.9663
+79281.20580405905 4.1359153 7357.1475
+79282.20580410934 4.1359153 7356.3604
+79283.20580415963 4.1360331 7356.5571
+79284.20580420992 4.1361122 7357.541
+79285.20580426021 4.1361909 7356.3604
+79286.2058043105 4.13623 7357.3442
+79287.2058043608 4.1363873 7356.1636
+79288.20580441109 4.1365452 7356.3604
+79289.20580446138 4.1365452 7356.9502
+79290.20580451167 4.1367812 7356.3604
+79291.20580456196 4.1368208 7356.7539
+79292.20580461225 4.1368599 7356.3604
+79293.20580466255 4.1370177 7356.7539
+79294.20580471284 4.1368995 7356.7539
+79295.20580476313 4.1370964 7356.7539
+79296.20580481342 4.1372142 7356.7539
+79297.20580486371 4.1372538 7356.7539
+79298.205804914 4.137372 7356.5571
+79299.2058049643 4.1375294 7357.1475
+79300.20580501459 4.1375685 7357.1475
+79301.20580506488 4.1376081 7356.7539
+79302.20580511517 4.1377654 7356.3604
+79303.20580516546 4.137805 7356.7539
+79304.20580521575 4.1379228 7356.5571
+79305.20580526604 4.138041 7356.5571
+79306.20580531633 4.1381197 7357.1475
+79307.20580536663 4.1382775 7356.3604
+79308.20580541692 4.1383953 7356.9502
+79309.20580546721 4.1383953 7356.9502
+79310.2058055175 4.1385527 7356.3604
+79311.20580556779 4.1386318 7356.1636
+79312.20580561808 4.1387892 7357.1475
+79313.20580566837 4.1388283 7357.1475
+79314.20580571867 4.1389465 7357.1475
+79315.20580576896 4.1389465 7356.3604
+79316.20580581925 4.1391039 7356.3604
+79317.20580586954 4.1392221 7356.7539
+79318.20580591983 4.1393008 7356.5571
+79319.20580597012 4.1393795 7357.541
+79320.20580602041 4.1394582 7355.7695
+79321.2058060707 4.139616 7356.9502
+79322.205806121 4.1396947 7356.9502
+79323.20580617129 4.1397338 7357.3442
+79324.20580622158 4.1397734 7357.1475
+79325.20580627187 4.1399703 7355.3765
+79326.20580632216 4.1402459 7356.9502
+79327.20580637245 4.1401277 7356.7539
+79328.20580642275 4.140285 7356.1636
+79329.20580647304 4.1404428 7356.3604
+79330.20580652333 4.1405215 7356.7539
+79331.20580657362 4.1405606 7357.1475
+79332.20580662391 4.1408362 7356.9502
+79333.2058066742 4.1407185 7356.5571
+79334.2058067245 4.1409149 7356.9502
+79335.20580677479 4.1409545 7356.7539
+79336.20580682508 4.1409545 7356.7539
+79337.20580687537 4.1410728 7356.5571
+79338.20580692566 4.1413088 7356.1636
+79339.20580697595 4.1413484 7357.3442
+79340.20580702624 4.1415057 7356.3604
+79341.20580707653 4.1415844 7357.7378
+79342.20580712683 4.1416235 7357.1475
+79343.20580717712 4.1417418 7356.7539
+79344.20580722741 4.14186 7356.7539
+79345.2058072777 4.1419783 7356.9502
+79346.20580732799 4.1420569 7356.3604
+79347.20580737828 4.142096 7356.3604
+79348.20580742857 4.142293 7357.1475
+79349.20580747887 4.142293 7356.5571
+79350.20580752916 4.1424899 7357.1475
+79351.20580757945 4.1426473 7356.9502
+79352.20580762974 4.1426473 7356.7539
+79353.20580768003 4.1427655 7356.3604
+79354.20580773032 4.1429229 7356.3604
+79355.20580778061 4.1428838 7357.7378
+79356.2058078309 4.1430016 7356.3604
+79357.2058078812 4.1431589 7356.9502
+79358.20580793149 4.1431985 7355.9663
+79359.20580798178 4.1433558 7356.1636
+79360.20580803207 4.1435137 7356.5571
+79361.20580808236 4.1435528 7356.1636
+79362.20580813265 4.1436315 7357.541
+79363.20580818295 4.143868 7355.9663
+79364.20580823324 4.1439466 7356.3604
+79365.20580828353 4.144104 7356.3604
+79366.20580833382 4.144104 7355.9663
+79367.20580838411 4.1441827 7357.1475
+79368.2058084344 4.1443009 7356.5571
+79369.2058084847 4.1443009 7356.7539
+79370.20580853499 4.1444979 7357.3442
+79371.20580858528 4.1446552 7357.541
+79372.20580863557 4.1447735 7356.1636
+79373.20580868586 4.1447339 7356.5571
+79374.20580873615 4.1449308 7357.1475
+79375.20580878644 4.1448913 7357.3442
+79376.20580883673 4.1452065 7356.3604
+79377.20580888703 4.1451278 7356.7539
+79378.20580893732 4.1454425 7356.9502
+79379.20580898761 4.1454034 7356.7539
+79380.2058090379 4.1454425 7357.1475
+79381.20580908819 4.1456394 7356.9502
+79382.20580913848 4.1457181 7356.5571
+79383.20580918877 4.1458755 7355.9663
+79384.20580923907 4.145915 7356.3604
+79385.20580928936 4.1459937 7356.5571
+79386.20580933965 4.1461511 7356.3604
+79387.20580938994 4.1462297 7356.3604
+79388.20580944023 4.1463089 7356.1636
+79389.20580949052 4.1464267 7357.3442
+79390.20580954081 4.1463876 7356.9502
+79391.2058095911 4.1465845 7356.7539
+79392.2058096414 4.1466236 7356.7539
+79393.20580969169 4.146781 7356.9502
+79394.20580974198 4.1468205 7356.9502
+79395.20580979227 4.1469779 7356.5571
+79396.20580984256 4.1470566 7356.1636
+79397.20580989285 4.1472144 7356.5571
+79398.20580994315 4.1472535 7357.541
+79399.20580999344 4.1473718 7356.1636
+79400.20581004373 4.1474895 7356.5571
+79401.20581009402 4.1475291 7356.7539
+79402.20581014431 4.1475687 7357.1475
+79403.2058101946 4.1478443 7355.5728
+79404.2058102449 4.1477261 7356.3604
+79405.20581029519 4.147923 7356.5571
+79406.20581034548 4.1480408 7356.9502
+79407.20581039577 4.1480803 7356.7539
+79408.20581044606 4.1483164 7357.1475
+79409.20581049635 4.1481986 7357.541
+79410.20581054664 4.1484742 7357.3442
+79411.20581059693 4.1484742 7356.5571
+79412.20581064723 4.148592 7356.5571
+79413.20581069752 4.1486316 7356.7539
+79414.20581074781 4.1487498 7356.7539
+79415.2058107981 4.1489463 7356.7539
+79416.20581084839 4.149025 7356.7539
+79417.20581089868 4.149025 7356.1636
+79418.20581094897 4.1491828 7356.5571
+79419.20581099926 4.1492219 7356.7539
+79420.20581104956 4.1493402 7356.1636
+79421.20581109985 4.1494188 7356.5571
+79422.20581115014 4.1494975 7356.7539
+79423.20581120043 4.1496158 7356.1636
+79424.20581125072 4.149734 7357.1475
+79425.20581130101 4.1497731 7355.9663
+79426.2058113513 4.1498518 7356.1636
+79427.2058114016 4.1500096 7356.3604
+79428.20581145189 4.1500096 7356.7539
+79429.20581150218 4.150167 7356.5571
+79430.20581155247 4.1501274 7356.1636
+79431.20581160276 4.1502852 7356.7539
+79432.20581165305 4.1505213 7356.3604
+79433.20581170334 4.1503639 7356.5571
+79434.20581175364 4.1506 7357.1475
+79435.20581180393 4.1506395 7357.1475
+79436.20581185422 4.1507969 7357.1475
+79437.20581190451 4.1509542 7356.7539
+79438.2058119548 4.1509151 7356.5571
+79439.2058120051 4.1510329 7356.1636
+79440.20581205538 4.1511116 7356.9502
+79441.20581210568 4.1512299 7356.5571
+79442.20581215597 4.1513481 7357.1475
+79443.20581220626 4.1514268 7356.5571
+79444.20581225655 4.1514659 7356.3604
+79445.20581230684 4.1515841 7356.7539
+79446.20581235713 4.151545 7356.5571
+79447.20581240742 4.1517811 7357.3442
+79448.20581245772 4.1518207 7355.9663
+79449.20581250801 4.1518993 7355.9663
+79450.2058125583 4.1518993 7356.5571
+79451.20581260859 4.1520171 7356.7539
+79452.20581265888 4.1521749 7356.9502
+79453.20581270917 4.1521749 7356.9502
+79454.20581275946 4.1522927 7356.9502
+79455.20581280976 4.152411 7356.7539
+79456.20581286005 4.152411 7357.541
+79457.20581291034 4.1526079 7356.3604
+79458.20581296063 4.152647 7355.9663
+79459.20581301092 4.1527653 7356.1636
+79460.20581306121 4.152844 7356.5571
+79461.2058131115 4.1528049 7356.5571
+79462.2058131618 4.1529226 7355.9663
+79463.20581321209 4.1530805 7356.7539
+79464.20581326238 4.1531591 7357.541
+79465.20581331267 4.1532378 7356.3604
+79466.20581336296 4.1533561 7356.7539
+79467.20581341325 4.1534348 7356.9502
+79468.20581346354 4.1535921 7356.3604
+79469.20581351384 4.1535921 7356.9502
+79470.20581356413 4.153789 7356.1636
+79471.20581361442 4.1538677 7357.1475
+79472.20581366471 4.1538281 7356.7539
+79473.205813715 4.1540647 7357.1475
+79474.2058137653 4.1541433 7356.5571
+79475.20581381558 4.1540647 7356.3604
+79476.20581386588 4.1542611 7356.5571
+79477.20581391617 4.1543403 7356.5571
+79478.20581396646 4.1545367 7356.7539
+79479.20581401675 4.1546159 7356.1636
+79480.20581406704 4.1546946 7356.3604
+79481.20581411733 4.1548123 7356.5571
+79482.20581416762 4.1547732 7356.5571
+79483.20581421792 4.1549306 7355.9663
+79484.2058142682 4.1550488 7356.7539
+79485.2058143185 4.1551275 7356.9502
+79486.20581436879 4.1552062 7356.7539
+79487.20581441908 4.1553245 7357.1475
+79488.20581446937 4.1554422 7357.3442
+79489.20581451966 4.1555214 7356.7539
+79490.20581456996 4.1556787 7356.7539
+79491.20581462025 4.1557178 7356.7539
+79492.20581467054 4.1557965 7356.1636
+79493.20581472083 4.1558361 7356.3604
+79494.20581477112 4.1560721 7357.3442
+79495.20581482141 4.1561117 7356.5571
+79496.2058148717 4.15623 7356.3604
+79497.205814922 4.1562691 7356.9502
+79498.20581497229 4.1564264 7356.9502
+79499.20581502258 4.1564264 7357.7378
+79500.20581507287 4.1565447 7357.1475
+79501.20581512316 4.1567812 7356.5571
+79502.20581517345 4.1566234 7356.9502
+79503.20581522374 4.1568599 7356.1636
+79504.20581527404 4.156899 7357.7378
+79505.20581532433 4.1569386 7356.9502
+79506.20581537462 4.1570568 7356.1636
+79507.20581542491 4.1571746 7357.3442
+79508.2058154752 4.1574502 7356.9502
+79509.20581552549 4.1573715 7356.9502
+79510.20581557578 4.1575289 7356.9502
+79511.20581562608 4.1574898 7357.541
+79512.20581567637 4.1577258 7355.7695
+79513.20581572666 4.1577654 7356.7539
+79514.20581577695 4.1579227 7356.1636
+79515.20581582724 4.1580014 7357.1475
+79516.20581587753 4.1580014 7356.7539
+79517.20581592782 4.1581197 7357.1475
+79518.20581597812 4.1582375 7356.9502
+79519.2058160284 4.1583953 7356.9502
+79520.2058160787 4.1585131 7357.7378
+79521.20581612899 4.1585526 7356.7539
+79522.20581617928 4.1585526 7356.7539
+79523.20581622957 4.1586709 7356.9502
+79524.20581627986 4.1587496 7355.9663
+79525.20581633016 4.1589465 7356.1636
+79526.20581638045 4.1589069 7356.1636
+79527.20581643074 4.1589856 7356.3604
+79528.20581648103 4.1590643 7357.1475
+79529.20581653132 4.1592612 7356.7539
+79530.20581658161 4.1593795 7356.3604
+79531.2058166319 4.1594582 7356.3604
+79532.2058166822 4.1594186 7357.7378
+79533.20581673249 4.1596155 7356.7539
+79534.20581678278 4.1596942 7356.3604
+79535.20581683307 4.1597338 7357.1475
+79536.20581688336 4.1598125 7356.3604
+79537.20581693365 4.159852 7356.3604
+79538.20581698394 4.1600094 7357.1475
+79539.20581703424 4.1600485 7356.9502
+79540.20581708453 4.1601667 7356.7539
+79541.20581713482 4.1602063 7356.7539
+79542.20581718511 4.1602063 7356.7539
+79543.2058172354 4.1604424 7356.9502
+79544.20581728569 4.160521 7356.3604
+79545.20581733598 4.1606393 7356.9502
+79546.20581738628 4.160718 7357.1475
+79547.20581743657 4.1608362 7357.1475
+79548.20581748686 4.1608362 7356.5571
+79549.20581753715 4.1609936 7356.1636
+79550.20581758744 4.1610327 7356.7539
+79551.20581763773 4.1611509 7356.9502
+79552.20581768802 4.1611509 7355.9663
+79553.20581773832 4.1612692 7355.9663
+79554.2058177886 4.1614265 7355.9663
+79555.2058178389 4.1614661 7357.1475
+79556.20581788919 4.1615052 7357.1475
+79557.20581793948 4.1615839 7356.3604
+79558.20581798977 4.1617022 7356.5571
+79559.20581804006 4.1618204 7356.7539
+79560.20581809036 4.1618991 7356.7539
+79561.20581814065 4.1619778 7356.3604
+79562.20581819094 4.1620173 7356.5571
+79563.20581824123 4.1621747 7356.9502
+79564.20581829152 4.1622534 7356.7539
+79565.20581834181 4.162293 7356.9502
+79566.2058183921 4.1624107 7356.3604
+79567.2058184424 4.162529 7356.7539
+79568.20581849269 4.1624503 7355.7695
+79569.20581854298 4.1626472 7357.541
+79570.20581859327 4.1627259 7356.7539
+79571.20581864356 4.162765 7357.1475
+79572.20581869385 4.1628833 7356.7539
+79573.20581874414 4.1629229 7356.3604
+79574.20581879443 4.1630015 7356.7539
+79575.20581884473 4.1631193 7357.3442
+79576.20581889502 4.1633162 7357.3442
+79577.20581894531 4.1633558 7356.9502
+79578.2058189956 4.1633558 7356.7539
+79579.20581904589 4.1635528 7356.9502
+79580.20581909618 4.1635132 7357.1475
+79581.20581914647 4.1636314 7356.5571
+79582.20581919677 4.1638675 7356.9502
+79583.20581924706 4.1638675 7356.9502
+79584.20581929735 4.1639462 7356.1636
+79585.20581934764 4.1640248 7356.9502
+79586.20581939793 4.1641827 7357.541
+79587.20581944822 4.16434 7356.7539
+79588.20581949851 4.1642613 7356.7539
+79589.2058195488 4.16434 7356.9502
+79590.2058195991 4.1644187 7356.5571
+79591.20581964939 4.1645761 7356.7539
+79592.20581969968 4.1645761 7356.1636
+79593.20581974997 4.1646156 7356.7539
+79594.20581980026 4.1647334 7356.1636
+79595.20581985055 4.1648517 7357.1475
+79596.20581990085 4.1648517 7356.7539
+79597.20581995114 4.165009 7356.3604
+79598.20582000143 4.165206 7356.7539
+79599.20582005172 4.1650882 7357.1475
+79600.20582010201 4.1653242 7356.5571
+79601.2058201523 4.1654425 7357.541
+79602.2058202026 4.1654816 7355.7695
+79603.20582025289 4.1655211 7357.1475
+79604.20582030318 4.1655998 7356.9502
+79605.20582035347 4.1656785 7356.5571
+79606.20582040376 4.1658359 7356.7539
+79607.20582045405 4.1658754 7355.9663
+79608.20582050434 4.1659541 7356.5571
+79609.20582055463 4.1661115 7357.541
+79610.20582060493 4.1661901 7355.9663
+79611.20582065522 4.166151 7356.3604
+79612.20582070551 4.1663871 7356.9502
+79613.2058207558 4.1663084 7356.5571
+79614.20582080609 4.1664267 7356.9502
+79615.20582085638 4.1666236 7356.7539
+79616.20582090667 4.1666627 7357.3442
+79617.20582095697 4.1667023 7356.9502
+79618.20582100726 4.1669383 7357.3442
+79619.20582105755 4.1669779 7357.1475
+79620.20582110784 4.1669383 7356.9502
+79621.20582115813 4.1671743 7356.7539
+79622.20582120842 4.1671743 7356.9502
+79623.20582125871 4.1672535 7356.3604
+79624.205821309 4.1674109 7356.9502
+79625.2058213593 4.1674109 7356.3604
+79626.20582140959 4.1675291 7356.7539
+79627.20582145988 4.1676865 7356.5571
+79628.20582151017 4.1676865 7356.3604
+79629.20582156046 4.1678438 7356.1636
+79630.20582161075 4.1680012 7356.5571
+79631.20582166105 4.1679621 7357.1475
+79632.20582171134 4.1680408 7356.7539
+79633.20582176163 4.1681981 7357.3442
+79634.20582181192 4.1682377 7356.9502
+79635.20582186221 4.1683555 7356.5571
+79636.2058219125 4.1684341 7356.1636
+79637.2058219628 4.1686311 7356.5571
+79638.20582201309 4.1686311 7357.3442
+79639.20582206338 4.1687098 7357.3442
+79640.20582211367 4.1689854 7357.7378
+79641.20582216396 4.1689854 7356.7539
+79642.20582221425 4.1690249 7356.5571
+79643.20582226454 4.1691823 7356.3604
+79644.20582231483 4.1691823 7356.7539
+79645.20582236513 4.1691823 7356.9502
+79646.20582241542 4.1693397 7356.5571
+79647.20582246571 4.1694975 7356.7539
+79648.205822516 4.1695762 7356.5571
+79649.20582256629 4.1696548 7356.5571
+79650.20582261658 4.1694975 7356.9502
+79651.20582266687 4.1698518 7356.7539
+79652.20582271717 4.1698909 7356.3604
+79653.20582276746 4.1699696 7356.3604
+79654.20582281775 4.1700878 7356.9502
+79655.20582286804 4.1701274 7356.9502
+79656.20582291833 4.1701274 7356.7539
+79657.20582296862 4.1702452 7356.5571
+79658.20582301891 4.170403 7356.7539
+79659.2058230692 4.1705208 7356.9502
+79660.2058231195 4.1704421 7357.1475
+79661.20582316979 4.170639 7356.9502
+79662.20582322008 4.170836 7357.3442
+79663.20582327037 4.1709146 7355.3765
+79664.20582332066 4.1708751 7356.5571
+79665.20582337095 4.1709933 7356.9502
+79666.20582342125 4.1711507 7356.7539
+79667.20582347154 4.1711507 7357.1475
+79668.20582352183 4.1713085 7356.1636
+79669.20582357212 4.1714263 7357.1475
+79670.20582362241 4.1715446 7357.541
+79671.2058236727 4.1715446 7356.5571
+79672.205823723 4.1716628 7356.7539
+79673.20582377329 4.1716232 7357.541
+79674.20582382358 4.1717806 7356.7539
+79675.20582387387 4.1717806 7357.3442
+79676.20582392416 4.1718988 7356.9502
+79677.20582397445 4.1720171 7355.9663
+79678.20582402474 4.1721745 7356.3604
+79679.20582407503 4.1722927 7356.1636
+79680.20582412533 4.1722927 7356.5571
+79681.20582417562 4.1724501 7357.1475
+79682.20582422591 4.1725683 7356.7539
+79683.2058242762 4.1726074 7355.9663
+79684.20582432649 4.1727648 7356.7539
+79685.20582437678 4.1727648 7356.9502
+79686.20582442707 4.1728439 7357.1475
+79687.20582447737 4.1730013 7356.9502
+79688.20582452766 4.17308 7357.3442
+79689.20582457795 4.17308 7356.9502
+79690.20582462824 4.1732373 7356.9502
+79691.20582467853 4.173316 7356.1636
+79692.20582472882 4.1732769 7356.3604
+79693.20582477911 4.1734738 7356.3604
+79694.2058248294 4.1735916 7356.9502
+79695.2058248797 4.1735916 7356.9502
+79696.20582492999 4.1736703 7356.7539
+79697.20582498028 4.1738281 7356.3604
+79698.20582503057 4.1739459 7356.5571
+79699.20582508086 4.1739068 7357.3442
+79700.20582513115 4.1741037 7357.1475
+79701.20582518145 4.1741824 7356.9502
+79702.20582523174 4.1742611 7355.9663
+79703.20582528203 4.1744184 7357.1475
+79704.20582533232 4.1744971 7356.3604
+79705.20582538261 4.174458 7356.5571
+79706.2058254329 4.174655 7356.7539
+79707.2058254832 4.1745758 7356.7539
+79708.20582553349 4.1746941 7357.541
+79709.20582558378 4.1747336 7356.7539
+79710.20582563407 4.1748514 7356.9502
+79711.20582568436 4.1750093 7357.3442
+79712.20582573465 4.1749697 7357.1475
+79713.20582578494 4.175127 7356.7539
+79714.20582583523 4.175127 7358.1318
+79715.20582588552 4.1752849 7356.5571
+79716.20582593582 4.1753635 7356.5571
+79717.20582598611 4.1754422 7357.3442
+79718.2058260364 4.1755605 7356.3604
+79719.20582608669 4.1755605 7356.3604
+79720.20582613698 4.1757178 7356.9502
+79721.20582618727 4.1756783 7357.541
+79722.20582623756 4.1758752 7356.3604
+79723.20582628786 4.1760325 7356.5571
+79724.20582633815 4.1759934 7357.1475
+79725.20582638844 4.1761904 7356.7539
+79726.20582643873 4.1760325 7356.7539
+79727.20582648902 4.1761904 7356.3604
+79728.20582653931 4.1765447 7356.7539
+79729.2058265896 4.1765051 7356.3604
+79730.2058266399 4.176466 7356.9502
+79731.20582669019 4.1765838 7356.5571
+79732.20582674048 4.1766233 7357.541
+79733.20582679077 4.1767807 7357.3442
+79734.20582684106 4.176899 7356.3604
+79735.20582689135 4.1768203 7356.3604
+79736.20582694164 4.1769381 7356.7539
+79737.20582699194 4.177135 7356.7539
+79738.20582704223 4.1772532 7357.1475
+79739.20582709252 4.177135 7356.9502
+79740.20582714281 4.1774106 7356.1636
+79741.2058271931 4.1774106 7356.1636
+79742.2058272434 4.1775289 7356.5571
+79743.20582729368 4.177568 7356.1636
+79744.20582734398 4.1776466 7357.7378
+79745.20582739427 4.1777258 7356.5571
+79746.20582744456 4.1778045 7356.1636
+79747.20582749485 4.1778436 7356.3604
+79748.20582754514 4.1778831 7356.5571
+79749.20582759543 4.1780405 7357.541
+79750.20582764572 4.1781192 7357.1475
+79751.20582769602 4.1781588 7356.3604
+79752.20582774631 4.1782765 7356.3604
+79753.2058277966 4.1784344 7356.9502
+79754.20582784689 4.1784344 7356.9502
+79755.20582789718 4.1786704 7356.5571
+79756.20582794747 4.1786704 7356.5571
+79757.20582799776 4.17871 7357.541
+79758.20582804806 4.1788673 7357.3442
+79759.20582809835 4.1790247 7356.7539
+79760.20582814864 4.1789856 7355.9663
+79761.20582819893 4.1791034 7356.5571
+79762.20582824922 4.1792216 7356.7539
+79763.20582829951 4.1791821 7356.5571
+79764.2058283498 4.1793399 7356.7539
+79765.2058284001 4.1794972 7356.1636
+79766.20582845039 4.1794577 7356.7539
+79767.20582850068 4.1795759 7357.1475
+79768.20582855097 4.1796155 7356.3604
+79769.20582860126 4.1797729 7356.7539
+79770.20582865155 4.179812 7356.7539
+79771.20582870184 4.1798911 7356.9502
+79772.20582875214 4.1800485 7356.3604
+79773.20582880243 4.1801667 7357.3442
+79774.20582885272 4.1800485 7357.3442
+79775.20582890301 4.1802058 7356.9502
+79776.2058289533 4.1802845 7357.3442
+79777.2058290036 4.1803632 7356.5571
+79778.20582905388 4.180521 7357.3442
+79779.20582910418 4.180521 7356.3604
+79780.20582915447 4.1804814 7357.541
+79781.20582920476 4.1806388 7356.1636
+79782.20582925505 4.1807175 7357.9346
+79783.20582930534 4.1808357 7356.9502
+79784.20582935563 4.1809931 7356.9502
+79785.20582940592 4.1809144 7356.5571
+79786.20582945622 4.1811113 7356.7539
+79787.2058295065 4.1810718 7356.9502
+79788.2058295568 4.18119 7356.1636
+79789.20582960709 4.1811509 7356.7539
+79790.20582965738 4.1813083 7356.1636
+79791.20582970767 4.1813869 7356.5571
+79792.20582975796 4.1814265 7356.9502
+79793.20582980826 4.1815052 7357.541
+79794.20582985855 4.181623 7356.1636
+79795.20582990884 4.1815839 7357.1475
+79796.20582995913 4.1817412 7356.7539
+79797.20583000942 4.1818595 7357.3442
+79798.20583005971 4.1819382 7357.1475
+79799.20583011 4.1818986 7356.9502
+79800.2058301603 4.1820564 7357.9346
+79801.20583021059 4.1820955 7356.9502
+79802.20583026088 4.1822529 7356.7539
+79803.20583031117 4.1822529 7357.7378
+79804.20583036146 4.182332 7356.3604
+79805.20583041175 4.1824498 7356.7539
+79806.20583046204 4.1823711 7357.1475
+79807.20583051234 4.1825285 7356.7539
+79808.20583056263 4.1826468 7356.9502
+79809.20583061292 4.1827254 7357.3442
+79810.20583066321 4.1828041 7357.1475
+79811.2058307135 4.1828437 7356.5571
+79812.20583076379 4.1828828 7356.5571
+79813.20583081408 4.183001 7356.5571
+79814.20583086438 4.183001 7355.7695
+79815.20583091467 4.183198 7355.7695
+79816.20583096496 4.1831584 7356.3604
+79817.20583101525 4.1832371 7356.7539
+79818.20583106554 4.1833162 7356.5571
+79819.20583111583 4.183434 7356.3604
+79820.20583116612 4.1834736 7356.9502
+79821.20583121642 4.1835127 7356.5571
+79822.2058312667 4.1835918 7356.7539
+79823.205831317 4.1837492 7356.1636
+79824.20583136729 4.1837883 7356.7539
+79825.20583141758 4.1838675 7356.1636
+79826.20583146787 4.1839066 7356.7539
+79827.20583151816 4.1840248 7355.9663
+79828.20583156846 4.1840639 7356.7539
+79829.20583161875 4.1842217 7356.5571
+79830.20583166904 4.1842217 7356.7539
+79831.20583171933 4.1844182 7356.9502
+79832.20583176962 4.1843791 7356.7539
+79833.20583181991 4.1844578 7356.1636
+79834.2058318702 4.184576 7356.5571
+79835.2058319205 4.184576 7357.1475
+79836.20583197079 4.1846938 7356.1636
+79837.20583202108 4.1847725 7356.5571
+79838.20583207137 4.1849303 7356.1636
+79839.20583212166 4.1848516 7357.3442
+79840.20583217195 4.1850877 7356.7539
+79841.20583222224 4.1851273 7356.9502
+79842.20583227254 4.1852059 7356.9502
+79843.20583232283 4.1853633 7357.1475
+79844.20583237312 4.1852846 7356.5571
+79845.20583242341 4.185442 7356.9502
+79846.2058324737 4.1854815 7357.1475
+79847.20583252399 4.185678 7356.5571
+79848.20583257428 4.1857963 7356.3604
+79849.20583262458 4.1858749 7357.3442
+79850.20583267487 4.1858749 7356.5571
+79851.20583272516 4.1859536 7356.7539
+79852.20583277545 4.1861115 7356.7539
+79853.20583282574 4.1860328 7356.7539
+79854.20583287603 4.1861901 7356.7539
+79855.20583292632 4.1862292 7356.9502
+79856.20583297662 4.1863475 7357.1475
+79857.2058330269 4.1864262 7356.9502
+79858.2058330772 4.1866231 7355.9663
+79859.20583312749 4.1865444 7356.5571
+79860.20583317778 4.1865048 7356.9502
+79861.20583322807 4.18682 7357.541
+79862.20583327836 4.18682 7356.7539
+79863.20583332865 4.1868987 7357.1475
+79864.20583337895 4.1869378 7356.7539
+79865.20583342924 4.1870956 7356.9502
+79866.20583347953 4.1871347 7356.9502
+79867.20583352982 4.1871743 7356.5571
+79868.20583358011 4.1872926 7356.9502
+79869.2058336304 4.1873713 7356.3604
+79870.2058336807 4.1873317 7356.3604
+79871.20583373099 4.187489 7357.7378
+79872.20583378128 4.187489 7356.5571
+79873.20583383157 4.1876469 7355.9663
+79874.20583388186 4.187686 7356.5571
+79875.20583393215 4.187686 7357.541
+79876.20583398244 4.1878829 7356.5571
+79877.20583403273 4.1879225 7356.7539
+79878.20583408303 4.1879616 7356.9502
+79879.20583413332 4.1880403 7356.7539
+79880.20583418361 4.1881585 7356.9502
+79881.2058342339 4.1881189 7356.3604
+79882.20583428419 4.1881981 7357.541
+79883.20583433448 4.1883159 7356.7539
+79884.20583438477 4.1883945 7356.7539
+79885.20583443507 4.1884341 7357.1475
+79886.20583448536 4.1885128 7356.7539
+79887.20583453565 4.1885128 7356.9502
+79888.20583458594 4.1886311 7356.9502
+79889.20583463623 4.1886311 7357.541
+79890.20583468652 4.1887097 7356.3604
+79891.20583473681 4.1887884 7357.1475
+79892.2058347871 4.1888671 7357.1475
+79893.2058348374 4.1889853 7357.3442
+79894.20583488769 4.1889853 7356.3604
+79895.20583493798 4.1890244 7356.3604
+79896.20583498827 4.1891036 7356.7539
+79897.20583503856 4.1892214 7357.541
+79898.20583508885 4.1891823 7356.7539
+79899.20583513915 4.1892214 7356.9502
+79900.20583518944 4.1894183 7356.9502
+79901.20583523973 4.1895366 7356.7539
+79902.20583529002 4.1895757 7356.9502
+79903.20583534031 4.1895757 7357.1475
+79904.2058353906 4.1895757 7356.3604
+79905.2058354409 4.1896939 7356.9502
+79906.20583549119 4.1896939 7356.5571
+79907.20583554148 4.1897726 7356.5571
+79908.20583559177 4.1898122 7356.9502
+79909.20583564206 4.1898909 7356.5571
+79910.20583569235 4.1900086 7357.1475
+79911.20583574264 4.1901665 7357.1475
+79912.20583579293 4.1901665 7356.5571
+79913.20583584323 4.1902056 7357.1475
+79914.20583589352 4.1902056 7356.9502
+79915.20583594381 4.1902843 7357.3442
+79916.2058359941 4.1903634 7356.3604
+79917.20583604439 4.1904421 7356.9502
+79918.20583609468 4.1905208 7356.7539
+79919.20583614497 4.1904812 7357.1475
+79920.20583619527 4.1907177 7357.1475
+79921.20583624556 4.1907177 7356.1636
+79922.20583629585 4.1907964 7356.7539
+79923.20583634614 4.1909142 7356.5571
+79924.20583639643 4.1909537 7357.1475
+79925.20583644672 4.1909933 7357.1475
+79926.20583649701 4.1911898 7356.7539
+79927.2058365473 4.1911507 7355.9663
+79928.2058365976 4.1911898 7357.1475
+79929.20583664789 4.1911898 7356.5571
+79930.20583669818 4.1913476 7355.9663
+79931.20583674847 4.1913476 7357.1475
+79932.20583679876 4.1914263 7356.9502
+79933.20583684905 4.1914263 7356.9502
+79934.20583689935 4.1915836 7357.1475
+79935.20583694964 4.1916232 7356.7539
+79936.20583699993 4.1917019 7356.9502
+79937.20583705022 4.191741 7356.9502
+79938.20583710051 4.1918592 7356.5571
+79939.2058371508 4.1918988 7356.9502
+79940.2058372011 4.1920562 7356.1636
+79941.20583725139 4.1919379 7357.3442
+79942.20583730168 4.1920953 7356.7539
+79943.20583735197 4.1922135 7356.7539
+79944.20583740226 4.1922531 7355.9663
+79945.20583745255 4.1924105 7356.1636
+79946.20583750284 4.1923318 7357.1475
+79947.20583755313 4.1924496 7356.5571
+79948.20583760343 4.1924891 7356.1636
+79949.20583765372 4.1924891 7356.7539
+79950.20583770401 4.1926465 7356.9502
+79951.2058377543 4.1926465 7356.3604
+79952.20583780459 4.1927252 7356.7539
+79953.20583785488 4.1928043 7356.3604
+79954.20583790517 4.1928043 7356.5571
+79955.20583795547 4.1929221 7356.5571
+79956.20583800576 4.1929617 7357.541
+79957.20583805605 4.1930795 7355.9663
+79958.20583810634 4.193119 7357.1475
+79959.20583815663 4.1930404 7356.9502
+79960.20583820692 4.1932373 7356.9502
+79961.20583825721 4.1933551 7357.1475
+79962.2058383075 4.1933947 7357.1475
+79963.2058383578 4.1933947 7357.3442
+79964.20583840809 4.1934342 7356.7539
+79965.20583845838 4.1935129 7356.9502
+79966.20583850867 4.1937094 7356.9502
+79967.20583855896 4.1936703 7356.3604
+79968.20583860925 4.1937885 7356.7539
+79969.20583865955 4.1937885 7356.9502
+79970.20583870984 4.1937885 7356.9502
+79971.20583876013 4.193985 7356.9502
+79972.20583881042 4.1940246 7356.9502
+79973.20583886071 4.1940641 7356.7539
+79974.205838911 4.1941032 7356.9502
+79975.2058389613 4.1941428 7356.9502
+79976.20583901159 4.1942215 7356.3604
+79977.20583906188 4.1943002 7357.3442
+79978.20583911217 4.1943002 7356.3604
+79979.20583916246 4.1943789 7357.541
+79980.20583921275 4.1944575 7356.1636
+79981.20583926304 4.1945758 7357.1475
+79982.20583931333 4.1946149 7357.1475
+79983.20583936363 4.1948118 7357.1475
+79984.20583941392 4.194694 7356.5571
+79985.20583946421 4.1947727 7356.7539
+79986.2058395145 4.1949301 7356.3604
+79987.20583956479 4.1949697 7355.9663
+79988.20583961508 4.1950483 7356.9502
+79989.20583966537 4.1950483 7356.9502
+79990.20583971567 4.1950874 7356.3604
+79991.20583976596 4.1952448 7357.1475
+79992.20583981625 4.1952844 7357.1475
+79993.20583986654 4.1952448 7356.9502
+79994.20583991683 4.1952844 7357.541
+79995.20583996712 4.1954026 7356.9502
+79996.20584001741 4.1954813 7356.7539
+79997.2058400677 4.1954813 7356.9502
+79998.205840118 4.1955204 7356.5571
+79999.20584016829 4.1956782 7356.7539
+80000.20584021858 4.1956387 7356.1636
+80001.20584026887 4.1957569 7356.5571
+80002.20584031916 4.1957569 7356.7539
+80003.20584036945 4.1959143 7356.3604
+80004.20584041975 4.1959143 7357.1475
+80005.20584047004 4.1959929 7356.9502
+80006.20584052033 4.1961112 7357.3442
+80007.20584057062 4.1960325 7356.5571
+80008.20584062091 4.1960716 7356.7539
+80009.2058406712 4.1961503 7357.541
+80010.2058407215 4.1962686 7355.9663
+80011.20584077179 4.1963081 7356.7539
+80012.20584082208 4.1962686 7356.7539
+80013.20584087237 4.1963472 7356.9502
+80014.20584092266 4.1963868 7356.7539
+80015.20584097295 4.1964259 7357.1475
+80016.20584102324 4.1966228 7356.7539
+80017.20584107353 4.1966228 7356.9502
+80018.20584112382 4.1966624 7356.3604
+80019.20584117412 4.1967015 7356.7539
+80020.20584122441 4.1967802 7356.7539
+80021.2058412747 4.1967802 7356.9502
+80022.20584132499 4.1968985 7356.3604
+80023.20584137528 4.196938 7356.5571
+80024.20584142557 4.1968985 7356.9502
+80025.20584147586 4.1970167 7357.1475
+80026.20584152616 4.1970954 7356.7539
+80027.20584157645 4.1971741 7356.9502
+80028.20584162674 4.1972528 7357.541
+80029.20584167703 4.1972528 7355.9663
+80030.20584172732 4.1972923 7356.9502
+80031.20584177761 4.197371 7357.1475
+80032.2058418279 4.1974497 7356.9502
+80033.2058418782 4.1974893 7357.3442
+80034.20584192849 4.1974893 7356.9502
+80035.20584197878 4.197607 7356.3604
+80036.20584202907 4.1976857 7357.1475
+80037.20584207936 4.1975284 7356.7539
+80038.20584212965 4.1976857 7356.9502
+80039.20584217994 4.197804 7355.9663
+80040.20584223024 4.1978827 7357.541
+80041.20584228053 4.1978436 7356.7539
+80042.20584233082 4.1979222 7357.1475
+80043.20584238111 4.1979613 7357.1475
+80044.2058424314 4.1979222 7356.7539
+80045.2058424817 4.1980405 7356.7539
+80046.20584253198 4.1981978 7357.3442
+80047.20584258228 4.1981192 7356.1636
+80048.20584263257 4.1982765 7356.9502
+80049.20584268286 4.1982765 7357.3442
+80050.20584273315 4.1983552 7356.9502
+80051.20584278344 4.1983552 7357.1475
+80052.20584283373 4.1984339 7356.5571
+80053.20584288402 4.1985521 7356.5571
+80054.20584293432 4.1986308 7357.1475
+80055.20584298461 4.1985126 7356.9502
+80056.2058430349 4.1986308 7356.5571
+80057.20584308519 4.1986704 7356.7539
+80058.20584313548 4.1987491 7356.1636
+80059.20584318577 4.1987491 7357.1475
+80060.20584323606 4.1989064 7357.541
+80061.20584328636 4.1989064 7357.3442
+80062.20584333665 4.1989851 7355.9663
+80063.20584338694 4.1989851 7356.5571
+80064.20584343723 4.1990638 7356.7539
+80065.20584348752 4.1990247 7356.3604
+80066.20584353781 4.1991425 7357.1475
+80067.2058435881 4.1992211 7355.9663
+80068.2058436384 4.1993003 7356.3604
+80069.20584368869 4.1992607 7356.9502
+80070.20584373898 4.1993394 7356.1636
+80071.20584378927 4.1993394 7357.1475
+80072.20584383956 4.1993394 7356.9502
+80073.20584388985 4.1994576 7356.7539
+80074.20584394014 4.1997333 7356.9502
+80075.20584399044 4.1996546 7356.7539
+80076.20584404073 4.1996937 7356.1636
+80077.20584409102 4.1998119 7357.1475
+80078.20584414131 4.1998119 7356.5571
+80079.2058441916 4.1998119 7356.9502
+80080.2058442419 4.199851 7356.9502
+80081.20584429218 4.1997724 7357.1475
+80082.20584434248 4.200048 7356.5571
+80082.26984434575 4.200048 7356.9502
+80082.27184434584 4.1999302 7356.7539
+80082.2918443468 4.2002449 7375.6484
+80083.29184439708 4.2002058 7369.5469
+80084.29184444738 4.2002058 7365.8076
+80085.29184449767 4.2001266 7360.4932
+80086.29184454796 4.2002449 7355.9663
+80087.29184459825 4.2002058 7351.0459
+80088.29184464854 4.2002058 7349.0776
+80089.29184469883 4.2001662 7342.7798
+80090.29184474912 4.2001662 7339.2373
+80091.29184479942 4.200048 7333.9229
+80092.29184484971 4.2001662 7331.3647
+80093.2918449 4.200048 7325.46
+80094.29184495029 4.2001662 7322.9014
+80095.29184500058 4.2001266 7316.0127
+80096.29184505087 4.2001266 7314.438
+80097.29184510116 4.2000089 7308.9268
+80098.29184515146 4.2001266 7304.7939
+80099.29184520175 4.2002058 7303.2192
+80100.29184525204 4.2002058 7296.3306
+80101.29184530233 4.2002449 7292.9849
+80102.29184535262 4.2001662 7289.0488
+80103.29184540291 4.2002449 7283.1445
+80104.2918454532 4.2002058 7282.1602
+80105.2918455035 4.2002058 7278.0269
+80106.29184555379 4.200048 7274.2871
+80107.29184560408 4.2002449 7269.9575
+80108.29184565437 4.2002449 7268.186
+80109.29184570466 4.2002845 7263.6592
+80110.29184575495 4.2000875 7259.9194
+80111.29184580524 4.2002058 7254.999
+80112.29184585554 4.2002058 7252.834
+80113.29184590583 4.2001266 7249.8818
+80114.29184595612 4.2001662 7247.1265
+80115.29184600641 4.2001662 7241.2222
+80116.2918460567 4.2000875 7236.4985
+80117.291846107 4.2000089 7231.3813
+80118.29184615728 4.2002449 7230.5938
+80119.29184620758 4.2000089 7225.2798
+80120.29184625787 4.2000875 7222.3271
+80121.29184630816 4.2001266 7218.9819
+80122.29184635845 4.2002058 7215.833
+80123.29184640874 4.2000089 7209.731
+80124.29184645903 4.2000875 7210.125
+80125.29184650932 4.2001662 7205.7949
+80126.29184655962 4.2001266 7202.646
+80127.2918466099 4.2002845 7197.5288
+80128.2918466602 4.2001662 7195.9541
+80129.29184671049 4.2001662 7193.9858
+80130.29184676078 4.2000875 7189.853
+80131.29184681107 4.2001662 7186.1133
+80132.29184686136 4.2002449 7183.3579
+80133.29184691166 4.2001662 7180.9956
+80134.29184696195 4.2001266 7177.0596
+80135.29184701224 4.2002058 7174.3037
+80136.29184706253 4.2002058 7170.7617
+80137.29184711282 4.2002058 7166.4312
+80138.29184716311 4.2002058 7165.2505
+80139.2918472134 4.200048 7159.543
+80140.2918472637 4.2001662 7156.394
+80141.29184731399 4.2002058 7152.2607
+80142.29184736428 4.2001662 7149.1113
+80143.29184741457 4.2001266 7147.1431
+80144.29184746486 4.2002449 7144.585
+80145.29184751515 4.2001662 7141.8296
+80146.29184756544 4.2002058 7136.5151
+80147.29184761574 4.2001662 7132.5786
+80148.29184766603 4.2001662 7130.2173
+80149.29184771632 4.2001662 7127.4619
+80150.29184776661 4.2002058 7123.3281
+80151.2918478169 4.2000875 7119.5894
+80152.29184786719 4.2002058 7116.4395
+80153.29184791748 4.2001662 7111.5195
+80154.29184796778 4.2001662 7107.1895
+80155.29184801807 4.2002058 7104.2373
+80156.29184806836 4.2002449 7101.4819
+80157.29184811865 4.2002058 7096.9551
+80158.29184816894 4.2001662 7094.396
+80159.29184821923 4.2001266 7089.2788
+80160.29184826952 4.2001266 7086.5234
+80161.29184831982 4.2001266 7082.9814
+80162.2918483701 4.2001662 7082.9814
+80163.2918484204 4.2002058 7079.0444
+80164.29184847069 4.2001266 7075.3052
+80165.29184852098 4.2002449 7072.7466
+80166.29184857127 4.2001266 7068.6133
+80167.29184862156 4.2002845 7066.2515
+80168.29184867186 4.2001266 7060.5435
+80169.29184872215 4.2002058 7055.8198
+80170.29184877244 4.2001266 7054.6392
+80171.29184882273 4.2002058 7052.2778
+80172.29184887302 4.2002449 7048.9316
+80173.29184892331 4.2001266 7045.3887
+80174.2918489736 4.2001662 7041.2554
+80175.2918490239 4.2002058 7038.894
+80176.29184907419 4.2001266 7038.1064
+80177.29184912448 4.2002845 7034.7603
+80178.29184917477 4.2002449 7028.0688
+80179.29184922506 4.2002058 7026.1006
+80180.29184927535 4.2002449 7022.9517
+80181.29184932564 4.2001662 7019.0151
+80182.29184937594 4.2002449 7017.2437
+80183.29184942623 4.2002449 7014.2915
+80184.29184947652 4.2001266 7008.1904
+80185.29184952681 4.2002058 7004.6475
+80186.2918495771 4.2001662 7002.4829
+80187.29184962739 4.2002058 6997.5625
+80188.29184967768 4.2001266 6997.3657
+80189.29184972798 4.2002449 6994.2163
+80190.29184977827 4.2001266 6988.3115
+80191.29184982856 4.2000875 6983.7847
+80192.29184987885 4.2001662 6981.6201
+80193.29184992914 4.2003236 6978.8643
+80194.29184997943 4.2002449 6973.354
+80195.29185002972 4.2002449 6971.1885
+80196.29185008002 4.2001662 6968.0396
+80197.2918501303 4.2000875 6965.481
+80198.2918501806 4.2002449 6962.1353
+80199.29185023089 4.2002058 6957.8047
+80200.29185028118 4.2001662 6956.231
+80201.29185033147 4.2000875 6952.688
+80202.29185038176 4.2001266 6948.7515
+80203.29185043206 4.2001662 6945.6025
+80204.29185048235 4.2000875 6942.2563
+80205.29185053264 4.2000875 6940.4849
+80206.29185058293 4.2001266 6936.1553
+80207.29185063322 4.2002058 6933.2031
+80208.29185068351 4.2002058 6930.644
+80209.2918507338 4.2002449 6926.5112
+80210.2918507841 4.2002058 6921.9844
+80211.29185083439 4.2001266 6921.394
+80212.29185088468 4.2002058 6917.6548
+80213.29185093497 4.2002058 6913.7183
+80214.29185098526 4.2001662 6909.9785
+80215.29185103555 4.2002449 6907.2231
+80216.29185108584 4.2001662 6903.877
+80217.29185113613 4.2000875 6898.5635
+80218.29185118643 4.2002058 6898.3667
+80219.29185123672 4.2002058 6896.3984
+80220.29185128701 4.2001662 6892.8555
+80221.2918513373 4.2002058 6889.7065
+80222.29185138759 4.2002449 6886.3604
+80223.29185143788 4.2001662 6883.999
+80224.29185148817 4.2002058 6880.6528
+80225.29185153847 4.2001266 6877.897
+80226.29185158876 4.2002058 6873.3706
+80227.29185163905 4.2002058 6873.7642
+80228.29185168934 4.2002058 6868.647
+80229.29185173963 4.2000875 6864.9077
+80230.29185178992 4.2001662 6863.1362
+80231.29185184021 4.2001662 6856.0508
+80232.2918518905 4.2002058 6857.625
+80233.2918519408 4.2002845 6854.0825
+80234.29185199109 4.2001266 6850.146
+80235.29185204138 4.200048 6846.2095
+80236.29185209167 4.2001662 6846.6035
+80237.29185214196 4.2001266 6842.8638
+80238.29185219225 4.2000089 6838.731
+80239.29185224255 4.2001266 6837.7471
+80240.29185229284 4.2001662 6836.7627
+80241.29185234313 4.2000875 6831.8418
+80242.29185239342 4.2001266 6829.2837
+80243.29185244371 4.2001662 6830.0708
+80244.291852494 4.2001662 6825.1499
+80245.2918525443 4.200048 6822.9854
+80246.29185259459 4.2001266 6818.6553
+80247.29185264488 4.2000875 6816.2935
+80248.29185269517 4.2001266 6817.4741
+80249.29185274546 4.2000875 6815.7031
+80250.29185279575 4.2001662 6811.7671
+80251.29185284604 4.2002449 6811.373
+80252.29185289633 4.2001662 6806.2559
+80253.29185294663 4.2002449 6802.123
+80254.29185299692 4.2001662 6796.021
+80255.29185304721 4.2002449 6797.9893
+80256.2918530975 4.2001662 6794.0532
+80257.29185314779 4.2001662 6789.1328
+80258.29185319808 4.2001266 6786.771
+80259.29185324837 4.2002058 6784.4092
+80260.29185329867 4.2001266 6782.4409
+80261.29185334896 4.2001662 6778.3081
+80262.29185339925 4.2002058 6773.5845
+80263.29185344954 4.2001662 6770.4355
+80264.29185349983 4.2002449 6770.0415
+80265.29185355012 4.2002449 6767.2856
+80266.29185360041 4.2002058 6763.5464
+80267.2918536507 4.2001662 6759.6099
+80268.291853701 4.2001662 6755.2803
+80269.29185375129 4.2001266 6752.7212
+80270.29185380158 4.2001266 6752.1313
+80271.29185385187 4.2001266 6746.6201
+80272.29185390216 4.2001662 6743.668
+80273.29185395245 4.2002449 6743.0771
+80274.29185400275 4.2002449 6738.5503
+80275.29185405304 4.2001662 6735.5981
+80276.29185410333 4.2000875 6731.2686
+80277.29185415362 4.2001662 6729.4971
+80278.29185420391 4.2000875 6725.3643
+80279.2918542542 4.2001266 6724.1826
+80280.2918543045 4.2001662 6721.2305
+80281.29185435479 4.200048 6717.2944
+80282.29185440508 4.2001266 6715.7202
+80283.29185445537 4.2002058 6712.1772
+80284.29185450566 4.2001662 6709.0283
+80285.29185455595 4.2001662 6708.0439
+80286.29185460624 4.2002058 6705.4854
+80287.29185465653 4.2001662 6701.9424
+80288.29185470683 4.2001662 6698.0063
+80289.29185475712 4.200048 6693.0859
+80290.29185480741 4.2002058 6691.3145
+80291.2918548577 4.2001662 6689.543
+80292.29185490799 4.2001662 6686.0005
+80293.29185495828 4.2001266 6684.8198
+80294.29185500857 4.2000875 6680.4897
+80295.29185505887 4.2000875 6676.5532
+80296.29185510916 4.2000875 6673.9946
+80297.29185515945 4.2001662 6671.436
+80298.29185520974 4.2002449 6669.6646
+80299.29185526003 4.2001266 6667.6968
+80300.29185531032 4.2001662 6662.9731
+80301.29185536061 4.2002058 6660.4141
+80302.2918554109 4.2001662 6657.4619
+80303.2918554612 4.2002058 6655.1001
+80304.29185551149 4.2002449 6651.9507
+80305.29185556178 4.2002058 6651.7539
+80306.29185561207 4.2002058 6647.6211
+80307.29185566236 4.2001662 6645.4565
+80308.29185571265 4.2001662 6645.6528
+80309.29185576295 4.2002449 6640.5361
+80310.29185581324 4.2001266 6638.5674
+80311.29185586353 4.2002058 6635.2217
+80312.29185591382 4.2001266 6632.2695
+80313.29185596411 4.2002058 6630.6948
+80314.2918560144 4.2001662 6627.7422
+80315.2918560647 4.2002845 6626.5615
+80316.29185611499 4.2002449 6622.2319
+80317.29185616528 4.2001266 6618.4922
+80318.29185621557 4.2000875 6617.9019
+80319.29185626586 4.2002449 6615.146
+80320.29185631615 4.2002058 6612.9814
+80321.29185636644 4.2000875 6608.8481
+80322.29185641673 4.2002845 6605.896
+80323.29185646703 4.2000875 6600.5815
+80324.29185651732 4.2002449 6602.9434
+80325.29185656761 4.2001266 6597.6294
+80326.2918566179 4.2002449 6596.2515
+80327.29185666819 4.200048 6593.1025
+80328.29185671848 4.2002058 6591.3311
+80329.29185676877 4.2001662 6589.5601
+80330.29185681907 4.2001266 6587.0015
+80331.29185686936 4.2002058 6588.3789
+80332.29185691965 4.2001266 6583.6553
+80333.29185696994 4.2003236 6583.8525
+80334.29185702023 4.2001662 6579.3257
+80335.29185707052 4.2000875 6577.3574
+80336.29185712081 4.2001662 6573.4209
+80337.2918571711 4.2001662 6573.8145
+80338.2918572214 4.2001266 6570.8623
+80339.29185727169 4.2001662 6569.4849
+80340.29185732198 4.2002449 6568.6973
+80341.29185737227 4.2001662 6567.7134
+80342.29185742256 4.2002058 6566.5327
+80343.29185747285 4.2001662 6564.5645
+80344.29185752315 4.2001266 6561.6118
+80345.29185757344 4.2002058 6560.8247
+80346.29185762373 4.2001662 6559.4468
+80347.29185767402 4.2001662 6557.0854
+80348.29185772431 4.2001662 6555.1172
+80349.2918577746 4.2000875 6553.3457
+80350.2918578249 4.2001266 6551.771
+80351.29185787519 4.2002058 6552.3618
+80352.29185792548 4.2001266 6550.7866
+80353.29185797577 4.2001662 6547.4414
+80354.29185802606 4.2001662 6546.457
+80355.29185807635 4.2002058 6545.4731
+80356.29185812664 4.2001266 6540.1587
+80357.29185817693 4.2002058 6539.5688
+80358.29185822723 4.2002058 6539.3716
+80359.29185827752 4.2002449 6534.8452
+80360.29185832781 4.2002845 6534.2544
+80361.2918583781 4.2002058 6532.2861
+80362.29185842839 4.2001662 6529.334
+80363.29185847868 4.2001266 6527.1689
+80364.29185852897 4.2001662 6523.4297
+80365.29185857926 4.2001266 6521.2646
+80366.29185862956 4.2000875 6515.1631
+80367.29185867985 4.2002449 6513.3916
+80368.29185873014 4.2001662 6511.8174
+80369.29185878043 4.2000875 6508.0776
+80370.29185883072 4.2001266 6507.4868
+80371.29185888101 4.2002058 6501.7793
+80372.2918589313 4.2002058 6497.2529
+80373.2918589816 4.2002449 6497.8433
+80374.29185903189 4.2000875 6492.332
+80375.29185908218 4.2001266 6489.1831
+80376.29185913247 4.2001662 6485.8374
+80377.29185918276 4.2001662 6486.625
+80378.29185923305 4.2003236 6480.5229
+80379.29185928334 4.2001662 6477.9648
+80380.29185933364 4.2002058 6476.98
+80381.29185938393 4.2001662 6473.2412
+80382.29185943422 4.2001266 6470.6826
+80383.29185948451 4.2002845 6465.3682
+80384.2918595348 4.2002449 6465.5654
+80385.2918595851 4.2000875 6462.2192
+80386.29185963538 4.2001662 6460.8418
+80387.29185968568 4.2002449 6457.4956
+80388.29185973597 4.2001662 6456.1182
+80389.29185978626 4.2001662 6454.1499
+80390.29185983655 4.2001662 6451.7876
+80391.29185988684 4.2002058 6449.8193
+80392.29185993713 4.2000875 6445.293
+80393.29185998742 4.2002058 6444.1123
+80394.29186003772 4.2002449 6441.9478
+80395.29186008801 4.2002058 6439.1919
+80396.2918601383 4.2002058 6439.1919
+80397.29186018859 4.2001266 6436.4365
+80398.29186023888 4.2000875 6433.8779
+80399.29186028917 4.2001662 6429.3516
+80400.29186033946 4.2001266 6426.3989
+80401.29186038976 4.2000875 6424.2339
+80402.29186044005 4.2003632 6423.4463
+80403.29186049034 4.2002058 6419.9038
+80404.29186054063 4.2001662 6418.7231
+80405.29186059092 4.2001662 6415.1802
+80406.29186064121 4.2002058 6411.834
+80407.2918606915 4.2001266 6407.5044
+80408.2918607418 4.2001266 6406.7173
+80409.29186079209 4.2002449 6405.1421
+80410.29186084238 4.2001266 6401.4033
+80411.29186089267 4.2001662 6399.4351
+80412.29186094296 4.2001266 6394.3174
+80413.29186099325 4.2000875 6390.1846
+80414.29186104354 4.2001266 6390.9717
+80415.29186109384 4.2001662 6387.2324
+80416.29186114413 4.2001266 6382.5088
+80417.29186119442 4.2001662 6381.7212
+80418.29186124471 4.2001662 6379.3599
+80419.291861295 4.2001662 6375.2261
+80420.2918613453 4.2002449 6372.0771
+80421.29186139558 4.2002058 6369.5186
+80422.29186144588 4.2001662 6366.96
+80423.29186149617 4.2001266 6362.8267
+80424.29186154646 4.2002058 6365.3853
+80425.29186159675 4.2002449 6359.6777
+80426.29186164704 4.2001662 6354.7573
+80427.29186169733 4.2002449 6357.5127
+80428.29186174762 4.2001662 6352.002
+80429.29186179792 4.2001662 6351.6084
+80430.2918618482 4.2001662 6349.6401
+80431.2918618985 4.2000875 6346.0972
+80432.29186194879 4.2001266 6345.1133
+80433.29186199908 4.2002058 6341.7676
+80434.29186204937 4.2002449 6342.752
+80435.29186209966 4.2001266 6338.8149
+80436.29186214996 4.2000875 6336.6499
+80437.29186220025 4.200048 6335.4692
+80438.29186225054 4.2001662 6331.7295
+80439.29186230083 4.2001266 6331.5327
+80440.29186235112 4.2001662 6328.1865
+80441.29186240141 4.2001662 6325.0376
+80442.2918624517 4.2001266 6326.022
+80443.291862502 4.2002449 6323.0698
+80444.29186255229 4.2001662 6321.8892
+80445.29186260258 4.2001266 6319.1333
+80446.29186265287 4.2000875 6317.165
+80447.29186270316 4.200048 6315.9844
+80448.29186275345 4.2002449 6312.6382
+80449.29186280374 4.2001662 6309.2925
+80450.29186285404 4.200048 6307.9146
+80451.29186290433 4.2000875 6302.6011
+80452.29186295462 4.2000875 6304.3721
+80453.29186300491 4.2002058 6299.8452
+80454.2918630552 4.2001662 6296.6963
+80455.29186310549 4.200048 6292.3662
+80456.29186315578 4.2001266 6291.5786
+80457.29186320608 4.2001662 6288.6265
+80458.29186325637 4.2002449 6285.8711
+80459.29186330666 4.2001662 6282.3286
+80460.29186335695 4.2002058 6281.3447
+80461.29186340724 4.2001662 6278.9824
+80462.29186345753 4.2002058 6275.0464
+80463.29186350782 4.2001662 6274.062
+80464.29186355812 4.2001662 6270.3228
+80465.2918636084 4.2002058 6269.5352
+80466.2918636587 4.2001266 6264.6147
+80467.29186370899 4.2000089 6261.269
+80468.29186375928 4.2001662 6260.875
+80469.29186380957 4.2002058 6259.4976
+80470.29186385986 4.2002058 6258.3169
+80471.29186391016 4.2001662 6251.8218
+80472.29186396045 4.2002449 6251.231
+80473.29186401074 4.200048 6245.5239
+80474.29186406103 4.2002058 6245.7207
+80475.29186411132 4.2001662 6242.3745
+80476.29186416161 4.2001662 6239.4224
+80477.2918642119 4.2001662 6237.0605
+80478.2918642622 4.2003236 6233.5181
+80479.29186431249 4.2000875 6230.959
+80480.29186436278 4.2001662 6227.0229
+80481.29186441307 4.2002449 6226.0386
+80482.29186446336 4.2000875 6220.7251
+80483.29186451365 4.2000875 6216.7886
+80484.29186456394 4.2002449 6214.8203
+80485.29186461424 4.2002058 6212.6553
+80486.29186466453 4.2000875 6209.8994
+80487.29186471482 4.2002058 6207.7349
+80488.29186476511 4.2002845 6204.7827
+80489.2918648154 4.2001266 6203.7983
+80490.29186486569 4.2001266 6197.894
+80491.29186491598 4.2001662 6195.335
+80492.29186496628 4.2002058 6193.7607
+80493.29186501657 4.2002058 6191.5957
+80494.29186506686 4.2001662 6191.0054
+80495.29186511715 4.2002058 6190.2183
+80496.29186516744 4.200048 6184.9038
+80497.29186521773 4.2002058 6184.5103
+80498.29186526802 4.2001266 6184.707
+80499.29186531832 4.2001662 6180.9673
+80500.2918653686 4.2002449 6181.1646
+80501.2918654189 4.2001662 6174.2754
+80502.29186546919 4.2000875 6173.2915
+80503.29186551948 4.2001266 6170.5366
+80504.29186556977 4.2001662 6170.3394
+80505.29186562006 4.2001266 6166.7969
+80506.29186567036 4.2001662 6165.6157
+80507.29186572065 4.2002845 6164.0415
+80508.29186577094 4.2000875 6159.3179
+80509.29186582123 4.2001662 6155.9717
+80510.29186587152 4.2000875 6158.7271
+80511.29186592181 4.2002058 6154.3975
+80512.2918659721 4.2001662 6151.6421
+80513.2918660224 4.2001662 6150.0674
+80514.29186607269 4.2001662 6147.7056
+80515.29186612298 4.2001266 6146.5249
+80516.29186617327 4.2000875 6144.9502
+80517.29186622356 4.2001662 6142.9819
+80518.29186627385 4.2001662 6140.0298
+80519.29186632414 4.2001662 6137.8647
+80520.29186637443 4.2000875 6135.1094
+80521.29186642473 4.2001266 6132.7471
+80522.29186647502 4.2000875 6131.3696
+80523.29186652531 4.2001662 6130.3857
+80524.2918665756 4.2000875 6125.6621
+80525.29186662589 4.2001662 6123.4971
+80526.29186667618 4.2002449 6120.1509
+80527.29186672647 4.2001266 6119.9541
+80528.29186677677 4.2002058 6115.624
+80529.29186682706 4.2000875 6114.4434
+80530.29186687735 4.2002058 6113.0659
+80531.29186692764 4.2001266 6108.9326
+80532.29186697793 4.2002058 6107.7515
+80533.29186702822 4.2001266 6105.3901
+80534.29186707851 4.2002449 6106.7676
+80535.2918671288 4.2001266 6100.4697
+80536.2918671791 4.2001266 6099.4854
+80537.29186722939 4.2001662 6096.9268
+80538.29186727968 4.2001662 6094.1714
+80539.29186732997 4.2001266 6095.5493
+80540.29186738026 4.2001266 6089.251
+80541.29186743055 4.2002449 6089.8413
+80542.29186748085 4.2002449 6089.251
+80543.29186753114 4.2001662 6086.1021
+80544.29186758143 4.2001266 6085.3145
+80545.29186763172 4.2001266 6082.5591
+80546.29186768201 4.2001266 6078.6226
+80547.2918677323 4.2002058 6079.0161
+80548.2918677826 4.2001662 6076.064
+80549.29186783289 4.2001266 6073.7021
+80550.29186788318 4.2001662 6073.7021
+80551.29186793347 4.2001266 6072.915
+80552.29186798376 4.2001662 6067.4038
+80553.29186803405 4.2001662 6062.8774
+80554.29186808434 4.2002058 6060.1221
+80555.29186813463 4.2002058 6060.5156
+80556.29186818493 4.2001662 6055.0044
+80557.29186823522 4.2003236 6054.6108
+80558.29186828551 4.1999693 6051.8555
+80559.2918683358 4.2001662 6049.2974
+80560.29186838609 4.2001662 6043.1953
+80561.29186843638 4.2001266 6039.8501
+80562.29186848667 4.2002449 6036.8975
+80563.29186853697 4.2001266 6032.9614
+80564.29186858726 4.2001662 6030.5991
+80565.29186863755 4.2001662 6027.2534
+80566.29186868784 4.2000875 6022.3325
+80567.29186873813 4.2001266 6020.562
+80568.29186878842 4.2002058 6017.6094
+80569.29186883871 4.2002449 6015.6416
+80570.291868889 4.2001662 6010.7207
+80571.2918689393 4.2002449 6008.3589
+80572.29186898959 4.2001266 6002.8481
+80573.29186903988 4.2002449 6000.8799
+80574.29186909017 4.2001662 5996.5503
+80575.29186914046 4.2000875 5993.7944
+80576.29186919075 4.2001266 5990.8423
+80577.29186924105 4.2001266 5985.9219
+80578.29186929134 4.2001662 5982.7725
+80579.29186934163 4.2001662 5980.8042
+80580.29186939192 4.2002058 5979.23
+80581.29186944221 4.2002845 5974.8999
+80582.2918694925 4.2002058 5970.9634
+80583.2918695428 4.2001662 5968.9956
+80584.29186959309 4.2001266 5966.0435
+80585.29186964338 4.2001266 5963.2876
+80586.29186969367 4.2001662 5960.3354
+80587.29186974396 4.2001266 5958.564
+80588.29186979425 4.2001266 5956.3994
+80589.29186984454 4.2002058 5952.6597
+80590.29186989483 4.2001662 5951.2822
+80591.29186994513 4.2002845 5946.9517
+80592.29186999542 4.2002058 5945.9678
+80593.29187004571 4.200048 5942.4248
+80594.291870096 4.2002449 5943.2124
+80595.29187014629 4.2001266 5940.2603
+80596.29187019658 4.2000875 5935.9302
+80597.29187024687 4.2001662 5936.127
+80598.29187029717 4.2001266 5932.978
+80599.29187034746 4.2002058 5929.8286
+80600.29187039775 4.2002058 5926.8765
+80601.29187044804 4.200048 5925.8926
+80602.29187049833 4.2000875 5922.1528
+80603.29187054862 4.2000875 5919.5947
+80604.29187059891 4.2001662 5917.6265
+80605.2918706492 4.2002058 5915.2642
+80606.2918706995 4.2000875 5910.7373
+80607.29187074979 4.2002449 5911.3281
+80608.29187080008 4.2001662 5906.2109
+80609.29187085037 4.2001662 5905.8169
+80610.29187090066 4.2001662 5903.2588
+80611.29187095095 4.2002058 5901.2905
+80612.29187100125 4.2001266 5898.3384
+80613.29187105154 4.2002058 5896.1729
+80614.29187110183 4.2001662 5895.583
+80615.29187115212 4.2001662 5894.0078
+80616.29187120241 4.2002058 5891.2524
+80617.2918712527 4.2001266 5888.8911
+80618.291871303 4.2001662 5887.9067
+80619.29187135329 4.2002845 5883.3799
+80620.29187140358 4.2001266 5881.2153
+80621.29187145387 4.2001266 5877.8687
+80622.29187150416 4.2000875 5876.4912
+80623.29187155445 4.2001266 5873.5391
+80624.29187160474 4.2001266 5870.5869
+80625.29187165503 4.2001662 5865.8633
+80626.29187170533 4.2001662 5864.4854
+80627.29187175562 4.2002449 5860.1558
+80628.29187180591 4.2001662 5857.2031
+80629.2918718562 4.2002058 5853.0698
+80630.29187190649 4.2001662 5851.1016
+80631.29187195678 4.2001266 5847.7559
+80632.29187200707 4.2000875 5845.7881
+80633.29187205737 4.2000089 5842.0483
+80634.29187210766 4.2002449 5837.9155
+80635.29187215795 4.2001662 5835.1597
+80636.29187220824 4.2000089 5832.9951
+80637.29187225853 4.2001662 5829.0586
+80638.29187230882 4.2001662 5825.9092
+80639.29187235911 4.2001266 5823.5474
+80640.2918724094 4.2001662 5820.792
+80641.2918724597 4.2001662 5819.2173
+80642.29187250999 4.2002058 5815.4775
+80643.29187256028 4.2002449 5815.4775
+80644.29187261057 4.2002058 5814.1001
+80645.29187266086 4.2001266 5810.3608
+80646.29187271115 4.2001266 5806.0308
+80647.29187276145 4.2002449 5805.4404
+80648.29187281174 4.2001266 5801.7007
+80649.29187286203 4.2002058 5796.7803
+80650.29187291232 4.2002058 5795.5996
+80651.29187296261 4.2001662 5792.2534
+80652.2918730129 4.2002058 5791.4658
+80653.2918730632 4.2002058 5785.9556
+80654.29187311349 4.2002058 5785.168
+80655.29187316378 4.2002058 5782.8062
+80656.29187321407 4.2001662 5778.4766
+80657.29187326436 4.2001266 5776.3115
+80658.29187331465 4.2001266 5772.9653
+80659.29187336494 4.2001266 5772.5718
+80660.29187341523 4.2002058 5769.0288
+80661.29187346552 4.2001662 5765.4863
+80662.29187351582 4.2002058 5763.7153
+80663.29187356611 4.2001266 5759.3848
+80664.2918736164 4.200048 5758.4009
+80665.29187366669 4.2002058 5754.6611
+80666.29187371698 4.2002058 5755.4487
+80667.29187376727 4.2001662 5753.6772
+80668.29187381756 4.2000089 5750.1343
+80669.29187386786 4.2002058 5747.3794
+80670.29187391815 4.2001266 5746.3955
+80671.29187396844 4.2001662 5742.6558
+80672.29187401873 4.2001662 5739.3096
+80673.29187406902 4.2002058 5737.1445
+80674.29187411931 4.2001266 5731.6338
+80675.2918741696 4.2002449 5730.4531
+80676.2918742199 4.2002845 5727.3042
+80677.29187427019 4.2001662 5723.5645
+80678.29187432048 4.2000875 5721.3994
+80679.29187437077 4.2002058 5720.2183
+80680.29187442106 4.2001662 5714.9043
+80681.29187447135 4.2000875 5711.5581
+80682.29187452164 4.2001662 5709.5898
+80683.29187457194 4.2002058 5706.4409
+80684.29187462223 4.2001662 5704.2764
+80685.29187467252 4.2001266 5699.5527
+80686.29187472281 4.2002058 5695.813
+80687.2918747731 4.2001266 5696.2065
+80688.2918748234 4.2001662 5690.6958
+80689.29187487368 4.2002058 5685.3818
+80690.29187492398 4.2001662 5684.7915
+80691.29187497427 4.2001662 5682.4292
+80692.29187502456 4.2001266 5680.4614
+80693.29187507485 4.2002449 5674.3604
+80694.29187512514 4.2001266 5671.8013
+80695.29187517543 4.2001662 5670.0298
+80696.29187522572 4.2001266 5665.897
+80697.29187527602 4.2000875 5662.5508
+80698.29187532631 4.2001266 5661.7637
+80699.2918753766 4.2001266 5658.0244
+80700.29187542689 4.2002058 5654.2847
+80701.29187547718 4.2002058 5652.9067
+80702.29187552747 4.2001266 5647.1987
+80703.29187557776 4.2002449 5647.1987
+80704.29187562806 4.2002058 5644.2466
+80705.29187567835 4.2001662 5641.0977
+80706.29187572864 4.2002449 5638.9331
+80707.29187577893 4.2001266 5635.7842
+80708.29187582922 4.2001662 5634.7998
+80709.29187587951 4.2001662 5633.4219
+80710.2918759298 4.2001266 5631.2568
+80711.2918759801 4.2000875 5627.124
+80712.29187603039 4.2002058 5626.1401
+80713.29187608068 4.2002058 5622.2031
+80714.29187613097 4.2001266 5622.9907
+80715.29187618126 4.2002058 5619.4482
+80716.29187623155 4.2001266 5615.3145
+80717.29187628184 4.2002449 5614.7246
+80718.29187633214 4.2001662 5611.1816
+80719.29187638243 4.2001266 5609.8042
+80720.29187643272 4.2001662 5610.5908
+80721.29187648301 4.2002058 5603.7026
+80722.2918765333 4.2001662 5606.0645
+80723.2918765836 4.2002058 5601.3408
+80724.29187663388 4.2000875 5600.75
+80725.29187668418 4.2001266 5598.1919
+80726.29187673447 4.2001662 5593.665
+80727.29187678476 4.2001662 5593.4683
+80728.29187683505 4.2000875 5591.106
+80729.29187688534 4.2000875 5589.335
+80730.29187693563 4.2001266 5587.7607
+80731.29187698592 4.2001662 5586.7764
+80732.29187703622 4.2002845 5584.8081
+80733.2918770865 4.2001662 5579.8872
+80734.2918771368 4.2002058 5577.5259
+80735.29187718709 4.2000875 5576.542
+80736.29187723738 4.2001662 5575.7544
+80737.29187728767 4.2000875 5570.4404
+80738.29187733796 4.2002058 5570.2432
+80739.29187738826 4.2001266 5568.2754
+80740.29187743855 4.2001266 5563.9453
+80741.29187748884 4.2001266 5560.5991
+80742.29187753913 4.2001266 5558.8286
+80743.29187758942 4.2001662 5554.3013
+80744.29187763971 4.2001662 5554.6948
+80745.29187769 4.2001266 5550.3652
+80746.2918777403 4.2001662 5547.019
+80747.29187779059 4.2000875 5543.0825
+80748.29187784088 4.2001662 5541.311
+80749.29187789117 4.200048 5537.5718
+80750.29187794146 4.2001662 5534.2261
+80751.29187799175 4.2002058 5531.8647
+80752.29187804204 4.2001662 5529.6992
+80753.29187809234 4.2001662 5525.7627
+80754.29187814263 4.2002058 5522.6138
+80755.29187819292 4.2001266 5521.4331
+80756.29187824321 4.2001662 5520.4492
+80757.2918782935 4.2001662 5514.1504
+80758.29187834379 4.2001266 5512.9697
+80759.29187839408 4.2002845 5511.395
+80760.29187844438 4.2002058 5509.4268
+80761.29187849467 4.2001266 5507.853
+80762.29187854496 4.2002449 5507.459
+80763.29187859525 4.2002058 5503.916
+80764.29187864554 4.2002449 5500.5703
+80765.29187869583 4.2001662 5498.9956
+80766.29187874612 4.2002449 5494.8628
+80767.29187879642 4.2001662 5491.5171
+80768.2918788467 4.2002449 5489.5488
+80769.291878897 4.2001266 5486.9897
+80770.29187894729 4.2002845 5485.022
+80771.29187899758 4.2000875 5482.8569
+80772.29187904787 4.2001662 5478.9209
+80773.29187909816 4.2002845 5476.165
+80774.29187914846 4.200048 5472.4258
+80775.29187919875 4.2001266 5471.2446
+80776.29187924904 4.2001662 5466.3237
+80777.29187929933 4.2001266 5463.7656
+80778.29187934962 4.2002058 5460.8135
+80779.29187939991 4.2002449 5459.2388
+80780.2918794502 4.2001662 5456.4829
+80781.2918795005 4.2000875 5453.334
+80782.29187955079 4.2002058 5451.3662
+80783.29187960108 4.2001662 5448.4141
+80784.29187965137 4.2001662 5446.249
+80785.29187970166 4.2000875 5440.5415
+80786.29187975195 4.2001266 5438.9663
+80787.29187980224 4.2001662 5437.7856
+80788.29187985254 4.2001662 5432.2749
+80789.29187990283 4.2000875 5430.5034
+80790.29187995312 4.2001266 5425.3862
+80791.29188000341 4.2002058 5425.583
+80792.2918800537 4.2002449 5421.6465
+80793.29188010399 4.2000875 5416.5293
+80794.29188015428 4.2002449 5412.9868
+80795.29188020458 4.2001662 5411.2153
+80796.29188025487 4.2000875 5409.0503
+80797.29188030516 4.2000875 5404.5234
+80798.29188035545 4.2002058 5401.7681
+80799.29188040574 4.2002058 5397.6348
+80800.29188045603 4.2000875 5395.2734
+80801.29188050632 4.2000875 5391.5337
+80802.29188055662 4.2000875 5387.5977
+80803.2918806069 4.200048 5386.416
+80804.2918806572 4.2000875 5382.0864
+80805.29188070749 4.2001266 5380.7085
+80806.29188075778 4.2002449 5376.9692
+80807.29188080807 4.2001662 5373.8198
+80808.29188085836 4.2002058 5373.623
+80809.29188090866 4.2001266 5369.8833
+80810.29188095895 4.2001662 5365.1597
+80811.29188100924 4.2001266 5363.1919
+80812.29188105953 4.2002058 5359.6494
+80813.29188110982 4.2001266 5359.8462
+80814.29188116011 4.2001266 5354.9258
+80815.2918812104 4.2002058 5353.9419
+80816.2918812607 4.2001662 5351.9736
+80817.29188131099 4.2002449 5350.3989
+80818.29188136128 4.2002449 5348.4307
+80819.29188141157 4.2002058 5345.8716
+80820.29188146186 4.2002058 5340.1641
+80821.29188151215 4.2002449 5337.4087
+80822.29188156244 4.2001662 5335.8345
+80823.29188161273 4.2000875 5332.6851
+80824.29188166303 4.2002058 5330.1265
+80825.29188171332 4.2001266 5328.1587
+80826.29188176361 4.2001662 5325.4028
+80827.2918818139 4.2002058 5320.2861
+80828.29188186419 4.2002449 5317.9238
+80829.29188191448 4.2001266 5315.9556
+80830.29188196477 4.2000875 5313.0034
+80831.29188201507 4.2000875 5310.248
+80832.29188206536 4.2001662 5305.918
+80833.29188211565 4.2000875 5302.7686
+80834.29188216594 4.200048 5300.8008
+80835.29188221623 4.2002058 5300.998
+80836.29188226652 4.2002449 5297.6519
+80837.29188231681 4.2002845 5294.896
+80838.2918823671 4.2001662 5291.5503
+80839.2918824174 4.2001662 5289.3853
+80840.29188246769 4.2002058 5287.0234
+80841.29188251798 4.2002058 5284.6621
+80842.29188256827 4.2001266 5281.709
+80843.29188261856 4.2000875 5277.1826
+80844.29188266885 4.2001662 5277.1826
+80845.29188271915 4.2000875 5272.8525
+80846.29188276944 4.2001662 5272.8525
+80847.29188281973 4.2002058 5270.8843
+80848.29188287002 4.2002058 5267.9321
+80849.29188292031 4.2002058 5264.7832
+80850.2918829706 4.2001266 5264.98
+80851.2918830209 4.2000875 5262.2246
+80852.29188307119 4.2002449 5261.437
+80853.29188312148 4.2001662 5258.8789
+80854.29188317177 4.2001662 5255.9268
+80855.29188322206 4.2002058 5254.3521
+80856.29188327235 4.2002449 5252.187
+80857.29188332264 4.2001662 5248.0532
+80858.29188337293 4.2001662 5248.0532
+80859.29188342323 4.2002058 5244.708
+80860.29188347352 4.2001662 5241.3623
+80861.29188352381 4.2002058 5239.7876
+80862.2918835741 4.200048 5233.6865
+80863.29188362439 4.2001266 5234.0796
+80864.29188367468 4.2001266 5231.3242
+80865.29188372497 4.2000875 5225.4199
+80866.29188377527 4.2000875 5224.2388
+80867.29188382556 4.2000875 5221.6802
+80868.29188387585 4.2001662 5220.3027
+80869.29188392614 4.2000875 5215.9727
+80870.29188397643 4.2001266 5216.3662
+80871.29188402672 4.200048 5211.6426
+80872.29188407701 4.2000875 5208.8872
+80873.2918841273 4.2001662 5207.7065
+80874.2918841776 4.2000875 5205.1475
+80875.29188422789 4.2002449 5202.9829
+80876.29188427818 4.2001662 5198.2593
+80877.29188432847 4.2001266 5197.2749
+80878.29188437876 4.2001662 5196.6846
+80879.29188442905 4.2001266 5191.9604
+80880.29188447935 4.2001662 5190.1895
+80881.29188452964 4.2003236 5188.6152
+80882.29188457993 4.2001662 5186.0562
+80883.29188463022 4.2002845 5183.3008
+80884.29188468051 4.2002058 5181.7266
+80885.2918847308 4.2001266 5176.8057
+80886.2918847811 4.2001662 5175.8218
+80887.29188483139 4.2000875 5169.917
+80888.29188488168 4.2001266 5168.3428
+80889.29188493197 4.2000875 5165.7842
+80890.29188498226 4.2001662 5163.4224
+80891.29188503255 4.2001662 5161.6514
+80892.29188508284 4.2001662 5156.3369
+80893.29188513313 4.2000875 5152.5972
+80894.29188518343 4.2001662 5149.645
+80895.29188523372 4.2001662 5146.6929
+80896.29188528401 4.2002058 5143.7407
+80897.2918853343 4.2001662 5142.9531
+80898.29188538459 4.2001266 5138.4268
+80899.29188543488 4.2002845 5135.2773
+80900.29188548517 4.2001266 5130.1602
+80901.29188553547 4.2003236 5129.9634
+80902.29188558576 4.2001662 5126.0273
+80903.29188563605 4.2000875 5122.8779
+80904.29188568634 4.2001662 5117.7607
+80905.29188573663 4.2002058 5118.5479
+80906.29188578692 4.2002449 5112.0527
+80907.29188583721 4.2001266 5112.2495
+80908.2918858875 4.2002058 5108.9038
+80909.2918859378 4.2002058 5108.5103
+80910.29188598809 4.2002058 5103.1963
+80911.29188603838 4.2001266 5103.1963
+80912.29188608867 4.2002449 5100.6372
+80913.29188613896 4.2002058 5094.7329
+80914.29188618925 4.2001266 5094.1421
+80915.29188623955 4.2001266 5090.7969
+80916.29188628984 4.2002449 5089.4194
+80917.29188634013 4.2001266 5087.6479
+80918.29188639042 4.2002449 5084.8921
+80919.29188644071 4.2000875 5081.9399
+80920.291886491 4.2002058 5077.4131
+80921.2918865413 4.2002058 5076.4292
+80922.29188659159 4.2002058 5074.2642
+80923.29188664188 4.2001266 5069.1465
+80924.29188669217 4.2001662 5069.7373
+80925.29188674246 4.2002058 5065.0137
+80926.29188679275 4.2000089 5059.8965
+80927.29188684304 4.2002449 5059.6997
+80928.29188689333 4.2000875 5057.1411
+80929.29188694363 4.2000875 5053.7954
+80930.29188699392 4.2002058 5051.04
+80931.29188704421 4.2001266 5047.4971
+80932.2918870945 4.2001266 5048.6777
+80933.29188714479 4.2000875 5043.7573
+80934.29188719508 4.2000875 5043.1665
+80935.29188724537 4.2001662 5041.9858
+80936.29188729567 4.2001266 5037.2622
+80937.29188734596 4.2001662 5035.2939
+80938.29188739625 4.2001266 5032.5386
+80939.29188744654 4.2002058 5030.7676
+80940.29188749683 4.2002449 5028.0122
+80941.29188754712 4.2002449 5024.666
+80942.29188759741 4.2001662 5021.9106
+80943.2918876477 4.2001266 5018.5649
+80944.291887698 4.2002845 5016.0059
+80945.29188774829 4.2003236 5013.2505
+80946.29188779858 4.2001662 5010.4956
+80947.29188784887 4.2001662 5008.5269
+80948.29188789916 4.2001662 5005.5747
+80949.29188794945 4.2002058 5005.5747
+80950.29188799975 4.2001266 5001.4414
+80951.29188805004 4.2002058 4999.6704
+80952.29188810033 4.2001266 4995.7344
+80953.29188815062 4.2001662 4995.1436
+80954.29188820091 4.2002058 4993.7661
+80955.2918882512 4.2001662 4989.6328
+80956.2918883015 4.2000875 4986.2866
+80957.29188835179 4.2001662 4984.5156
+80958.29188840208 4.2000875 4982.5474
+80959.29188845237 4.2002449 4978.6108
+80960.29188850266 4.2002449 4978.2173
+80961.29188855295 4.2001266 4973.6904
+80962.29188860324 4.2001266 4971.1318
+80963.29188865353 4.2001662 4968.9668
+80964.29188870382 4.200048 4965.6211
+80965.29188875412 4.2000875 4963.4561
+80966.29188880441 4.2000089 4960.3071
+80967.2918888547 4.2001662 4958.3389
+80968.29188890499 4.2002058 4955.1899
+80969.29188895528 4.2001662 4954.2056
+80970.29188900557 4.2000875 4951.8438
+80971.29188905586 4.2001266 4947.7104
+80972.29188910616 4.2002058 4945.9395
+80973.29188915645 4.2000875 4943.1841
+80974.29188920674 4.2002449 4941.019
+80975.29188925703 4.2002449 4936.0986
+80976.29188930732 4.2001266 4934.7207
+80977.29188935761 4.2001266 4932.7524
+80978.2918894079 4.2001266 4927.2417
+80979.2918894582 4.2002449 4923.8955
+80980.29188950849 4.2002058 4921.731
+80981.29188955878 4.2001662 4917.5977
+80982.29188960907 4.2001266 4915.6294
+80983.29188965936 4.2002058 4911.8896
+80984.29188970965 4.2001266 4910.5122
+80985.29188975994 4.2002449 4905.395
+80986.29188981024 4.2001266 4903.6235
+80987.29188986053 4.2001662 4898.8999
+80988.29188991082 4.2001266 4895.5542
+80989.29188996111 4.2001266 4893.3892
+80990.2918900114 4.2001662 4889.0591
+80991.2918900617 4.2002058 4886.5005
+80992.29189011198 4.2001662 4884.1387
+80993.29189016228 4.2001266 4878.8247
+80994.29189021257 4.2002058 4875.6753
+80995.29189026286 4.2000875 4869.771
+80996.29189031315 4.2001662 4868.5898
+80997.29189036344 4.2000875 4864.0635
+80998.29189041373 4.2001266 4858.5527
+80999.29189046402 4.2001266 4857.7651
+81000.29189051432 4.2002449 4853.8291
+81001.29189056461 4.2001662 4851.4673
+81002.2918906149 4.2002449 4846.9399
+81003.29189066519 4.2002058 4843.791
+81004.29189071548 4.2002058 4838.8706
+81005.29189076577 4.2001266 4838.2803
+81006.29189081606 4.2001662 4832.5728
+81007.29189086636 4.2002845 4832.5728
+81008.29189091665 4.2001266 4828.4395
+81009.29189096694 4.2001662 4825.4873
+81010.29189101723 4.2002058 4822.5352
+81011.29189106752 4.2000875 4818.2051
+81012.29189111781 4.2002058 4819.5825
+81013.2918911681 4.2001266 4813.875
+81014.2918912184 4.2001266 4812.4971
+81015.29189126869 4.2002058 4810.1353
+81016.29189131898 4.2000875 4805.8057
+81017.29189136927 4.2002058 4799.9009
+81018.29189141956 4.200048 4799.7041
+81019.29189146985 4.2001662 4796.9487
+81020.29189152014 4.2002449 4795.5708
+81021.29189157044 4.2001662 4792.8154
+81022.29189162073 4.2001662 4787.6982
+81023.29189167102 4.2001266 4785.3364
+81024.29189172131 4.2002449 4780.6128
+81025.2918917716 4.2002058 4781.0063
+81026.2918918219 4.2001266 4778.251
+81027.29189187218 4.2002449 4775.6924
+81028.29189192248 4.2001266 4771.1655
+81029.29189197277 4.2002845 4770.5752
+81030.29189202306 4.200048 4763.8833
+81031.29189207335 4.2001266 4767.0322
+81032.29189212364 4.2000875 4762.5059
+81033.29189217393 4.2002058 4762.5059
+81034.29189222422 4.2002449 4760.5376
+81035.29189227452 4.2000875 4755.814
+81036.2918923248 4.2001662 4754.436
+81037.2918923751 4.2002058 4752.271
+81038.29189242539 4.2002058 4747.7441
+81039.29189247568 4.2002449 4746.1699
+81040.29189252597 4.2001266 4744.9888
+81041.29189257626 4.2002058 4740.0684
+81042.29189262656 4.2002058 4738.1001
+81043.29189267685 4.2002058 4735.9355
+81044.29189272714 4.2001662 4733.5737
+81045.29189277743 4.2001662 4729.2437
+81046.29189282772 4.2000875 4727.4722
+81047.29189287801 4.2002845 4726.2915
+81048.2918929283 4.2002058 4719.7964
+81049.2918929786 4.2002845 4719.5996
+81050.29189302889 4.2001266 4716.4502
+81051.29189307918 4.2001662 4714.0884
+81052.29189312947 4.2001662 4712.5142
+81053.29189317976 4.2001662 4709.9556
+81054.29189323005 4.2001266 4707.5938
+81055.29189328034 4.2001266 4704.4443
+81056.29189333064 4.2001662 4700.9019
+81057.29189338093 4.2001662 4698.7368
+81058.29189343122 4.2001266 4695.7847
+81059.29189348151 4.2002449 4692.4385
+81060.2918935318 4.2000875 4689.8799
+81061.29189358209 4.2002449 4688.896
+81062.29189363238 4.2001662 4685.9438
+81063.29189368268 4.2002058 4683.1885
+81064.29189373297 4.2001266 4678.6616
+81065.29189378326 4.2001662 4676.1025
+81066.29189383355 4.2000875 4672.7568
+81067.29189388384 4.2000875 4670.395
+81068.29189393413 4.2002058 4669.2144
+81069.29189398442 4.200048 4665.8682
+81070.29189403472 4.2001266 4660.1606
+81071.291894085 4.2001266 4658.1924
+81072.2918941353 4.2000875 4656.2241
+81073.29189418559 4.2001662 4652.4849
+81074.29189423588 4.2001662 4649.1387
+81075.29189428617 4.2000875 4645.3994
+81076.29189433646 4.2001266 4644.6123
+81077.29189438676 4.2001662 4640.479
+81078.29189443705 4.2002058 4638.7075
+81079.29189448734 4.2002449 4633.9839
+81080.29189453763 4.2002058 4633.0
+81081.29189458792 4.2002058 4628.6699
+81082.29189463821 4.2000875 4625.127
+81083.2918946885 4.2002058 4621.978
+81084.2918947388 4.200048 4616.4673
+81085.29189478909 4.2001266 4614.499
+81086.29189483938 4.2001662 4613.1211
+81087.29189488967 4.200048 4607.2168
+81088.29189493996 4.2001662 4605.4453
+81089.29189499025 4.2000875 4602.2964
+81090.29189504054 4.2001266 4601.1152
+81091.29189509084 4.2001662 4599.9346
+81092.29189514113 4.2002449 4595.2109
+81093.29189519142 4.2002058 4593.4395
+81094.29189524171 4.2001266 4590.8809
+81095.291895292 4.2001662 4587.5352
+81096.29189534229 4.2002058 4584.189
+81097.29189539258 4.2000875 4580.8433
+81098.29189544288 4.2001266 4581.04
+81099.29189549317 4.2002058 4575.3325
+81100.29189554346 4.2000875 4574.3481
+81101.29189559375 4.2001662 4572.3804
+81102.29189564404 4.2001662 4571.0024
+81103.29189569433 4.2002058 4569.231
+81104.29189574462 4.2000875 4565.8853
+81105.29189579492 4.2001662 4562.7363
+81106.2918958452 4.200048 4560.1772
+81107.2918958955 4.2001266 4556.438
+81108.29189594579 4.2001266 4552.3047
+81109.29189599608 4.2001266 4554.4697
+81110.29189604637 4.2000875 4550.9272
+81111.29189609666 4.2002058 4546.9907
+81112.29189614695 4.2002058 4544.8257
+81113.29189619725 4.2002058 4544.0386
+81114.29189624754 4.2001662 4540.2988
+81115.29189629783 4.2001662 4536.9531
+81116.29189634812 4.2000875 4534.5913
+81117.29189639841 4.2001662 4531.6392
+81118.2918964487 4.2002058 4527.8994
+81119.291896499 4.2001662 4526.9155
+81120.29189654929 4.2002058 4522.3887
+81121.29189659958 4.2000875 4520.0269
+81122.29189664987 4.2001662 4516.6807
+81123.29189670016 4.2002058 4515.5
+81124.29189675045 4.2002449 4511.5635
+81125.29189680074 4.2001266 4508.021
+81126.29189685103 4.2002058 4503.8877
+81127.29189690133 4.2000875 4501.1323
+81128.29189695162 4.2002058 4499.3608
+81129.29189700191 4.2001266 4497.5894
+81130.2918970522 4.2002058 4496.4087
+81131.29189710249 4.2002058 4492.8657
+81132.29189715278 4.2001662 4489.7168
+81133.29189720307 4.2001266 4486.9614
+81134.29189725337 4.2001266 4485.1899
+81135.29189730366 4.2000875 4484.5996
+81136.29189735395 4.2001662 4481.4502
+81137.29189740424 4.2002449 4480.0728
+81138.29189745453 4.2001266 4476.5298
+81139.29189750482 4.2001662 4473.9717
+81140.29189755511 4.2002058 4471.019
+81141.2918976054 4.200048 4469.4448
+81142.2918976557 4.2002449 4468.0669
+81143.29189770599 4.2001662 4464.918
+81144.29189775628 4.2000875 4461.769
+81145.29189780657 4.2000875 4458.6196
+81146.29189785686 4.2002449 4459.604
+81147.29189790715 4.2002058 4457.0454
+81148.29189795745 4.2002058 4455.2739
+81149.29189800774 4.2001662 4451.1406
+81150.29189805803 4.2002058 4448.7788
+81151.29189810832 4.200048 4447.7949
+81152.29189815861 4.2002058 4444.4492
+81153.2918982089 4.2002058 4443.0713
+81154.2918982592 4.2003236 4441.103
+81155.29189830949 4.2002449 4435.0015
+81156.29189835978 4.2002058 4434.6079
+81157.29189841007 4.2001266 4430.4746
+81158.29189846036 4.2001266 4428.1133
+81159.29189851065 4.2001662 4426.7354
+81160.29189856094 4.2002058 4424.7671
+81161.29189861123 4.2001266 4420.2402
+81162.29189866153 4.2000875 4418.666
+81163.29189871182 4.200048 4412.3677
+81164.29189876211 4.2001662 4414.3359
+81165.2918988124 4.2001662 4408.6279
+81166.29189886269 4.2001266 4408.2344
+81167.29189891298 4.2001266 4405.0854
+81168.29189896327 4.2002058 4403.7075
+81169.29189901357 4.2002058 4400.9521
+81170.29189906386 4.2001662 4396.6221
+81171.29189911415 4.2002449 4394.4575
+81172.29189916444 4.2002058 4392.4893
+81173.29189921473 4.2001662 4391.8984
+81174.29189926502 4.2002449 4386.3877
+81175.29189931531 4.2001662 4384.2227
+81176.2918993656 4.2002449 4380.4834
+81177.2918994159 4.2001662 4376.5469
+81178.29189946619 4.2000875 4372.8076
+81179.29189951648 4.2001266 4373.0044
+81180.29189956677 4.2001662 4368.6743
+81181.29189961706 4.2002058 4366.5093
+81182.29189966735 4.2001266 4362.1792
+81183.29189971765 4.2002449 4362.1792
+81184.29189976794 4.2000875 4355.6841
+81185.29189981823 4.2001266 4353.9126
+81186.29189986852 4.200048 4348.7959
+81187.29189991881 4.2002058 4348.9927
+81188.2918999691 4.2001266 4345.6465
+81189.2919000194 4.2001266 4341.7104
+81190.29190006969 4.2001662 4340.7261
+81191.29190011998 4.2001266 4337.3804
+81192.29190017027 4.2002058 4332.2627
+81193.29190022056 4.2000875 4331.082
+81194.29190027085 4.2002058 4328.1299
+81195.29190032114 4.2002058 4326.5552
+81196.29190037143 4.2000875 4324.3901
+81197.29190042173 4.2001266 4321.0444
+81198.29190047202 4.2001662 4317.1079
+81199.29190052231 4.2002058 4315.3369
+81200.2919005726 4.2001266 4312.7783
+81201.29190062289 4.2001662 4310.2192
+81202.29190067318 4.200048 4308.0547
+81203.29190072347 4.2001266 4304.7085
+81204.29190077377 4.2002058 4301.5596
+81205.29190082406 4.2001266 4297.2295
+81206.29190087435 4.200048 4296.0488
+81207.29190092464 4.2001266 4295.8521
+81208.29190097493 4.2001266 4292.7026
+81209.29190102522 4.2001662 4288.9629
+81210.29190107551 4.2002449 4286.208
+81211.2919011258 4.2002058 4284.6333
+81212.2919011761 4.2001662 4282.2715
+81213.29190122639 4.2001662 4278.7285
+81214.29190127668 4.2001662 4275.9731
+81215.29190132697 4.2001662 4273.8086
+81216.29190137726 4.2002449 4272.6274
+81217.29190142755 4.2001662 4268.6909
+81218.29190147785 4.2002058 4267.707
+81219.29190152814 4.2001662 4263.377
+81220.29190157843 4.2001266 4263.1802
+81221.29190162872 4.2001266 4260.228
+81222.29190167901 4.2001266 4257.6694
+81223.2919017293 4.200048 4254.3232
+81224.2919017796 4.2002058 4252.9453
+81225.29190182989 4.2000875 4251.5679
+81226.29190188018 4.2002058 4248.4189
+81227.29190193047 4.2001662 4244.6792
+81228.29190198076 4.2001266 4241.5303
+81229.29190203105 4.2000875 4238.9717
+81230.29190208134 4.2002449 4237.9873
+81231.29190213163 4.2002449 4235.6255
+81232.29190218193 4.2001662 4234.248
+81233.29190223222 4.2002058 4228.9336
+81234.29190228251 4.2002058 4229.5244
+81235.2919023328 4.2000875 4225.9814
+81236.29190238309 4.2002449 4224.4072
+81237.29190243338 4.2001266 4218.8965
+81238.29190248367 4.2001662 4219.6836
+81239.29190253397 4.200048 4217.125
+81240.29190258426 4.2001662 4212.9917
+81241.29190263455 4.2002449 4210.8267
+81242.29190268484 4.2001662 4206.8906
+81243.29190273513 4.2001266 4207.8745
+81244.29190278542 4.2001266 4204.5288
+81245.29190283571 4.2000875 4200.3955
+81246.291902886 4.2000875 4199.6079
+81247.2919029363 4.2002058 4196.0654
+81248.29190298659 4.2000875 4193.1133
+81249.29190303688 4.2002058 4192.1289
+81250.29190308717 4.2002058 4188.5864
+81251.29190313746 4.2002058 4187.209
+81252.29190318775 4.2001662 4182.6816
+81253.29190323805 4.2002058 4182.0913
+81254.29190328834 4.2000875 4176.3838
+81255.29190333863 4.2001266 4175.3994
+81256.29190338892 4.2001662 4170.873
+81257.29190343921 4.2001266 4171.6602
+81258.2919034895 4.2002449 4168.1172
+81259.2919035398 4.2001662 4165.165
+81260.29190359008 4.2001662 4161.0317
+81261.29190364038 4.2000875 4161.0317
+81262.29190369067 4.2000875 4158.6699
+81263.29190374096 4.2001662 4154.9307
+81264.29190379125 4.2002058 4152.5688
+81265.29190384154 4.2001662 4150.207
+81266.29190389183 4.2001266 4146.8613
+81267.29190394212 4.2001266 4144.4995
+81268.29190399242 4.2000875 4140.9565
+81269.29190404271 4.2001662 4138.2012
+81270.291904093 4.2001662 4138.0044
+81271.29190414329 4.2000875 4134.6582
+81272.29190419358 4.2000875 4131.7061
+81273.29190424387 4.2001266 4128.7539
+81274.29190429416 4.2001662 4127.5732
+81275.29190434446 4.2001662 4125.2114
+81276.29190439475 4.2000875 4121.6685
+81277.29190444504 4.2001662 4118.9131
+81278.29190449533 4.200048 4115.9609
+81279.29190454562 4.2001266 4113.2056
+81280.29190459591 4.2000875 4110.6465
+81281.2919046462 4.2001662 4107.8916
+81282.2919046965 4.2002058 4104.7422
+81283.29190474679 4.2001662 4104.1519
+81284.29190479708 4.2001662 4100.6094
+81285.29190484737 4.2002449 4099.8218
+81286.29190489766 4.2000875 4096.2793
+81287.29190494795 4.2002058 4092.9333
+81288.29190499824 4.2000875 4092.5398
+81289.29190504854 4.2000875 4088.6035
+81290.29190509883 4.2001266 4088.0127
+81291.29190514912 4.2002058 4085.4541
+81292.29190519941 4.2002058 4080.5339
+81293.2919052497 4.2002058 4078.7625
+81294.2919053 4.2001266 4073.6453
+81295.29190535028 4.2002058 4072.2676
+81296.29190540058 4.2002058 4069.9058
+81297.29190545087 4.2001662 4066.5598
+81298.29190550116 4.2001266 4064.001
+81299.29190555145 4.2002058 4061.8362
+81300.29190560174 4.2002058 4057.8999
+81301.29190565203 4.2002449 4057.8999
+81302.29190570232 4.2000875 4051.208
+81303.29190575262 4.2002058 4050.2241
+81304.29190580291 4.200048 4046.6812
+81305.2919058532 4.2001662 4046.0908
+81306.29190590349 4.2001662 4042.7449
+81307.29190595378 4.2002449 4038.6118
+81308.29190600407 4.2002058 4036.8403
+81309.29190605436 4.2001662 4034.8723
+81310.29190610466 4.2001662 4031.5264
+81311.29190615495 4.2001266 4026.8027
+81312.29190620524 4.2001266 4027.5901
+81313.29190625553 4.2002058 4025.0313
+81314.29190630582 4.2001662 4021.4885
+81315.29190635611 4.200048 4018.3396
+81316.2919064064 4.200048 4016.9619
+81317.2919064567 4.2000875 4012.2383
+81318.29190650699 4.2002058 4011.6479
+81319.29190655728 4.2001266 4008.4988
+81320.29190660757 4.2001266 4006.5305
+81321.29190665786 4.2000875 4003.5784
+81322.29190670815 4.2000875 4000.2324
+81323.29190675844 4.2000875 3996.6897
+81324.29190680874 4.2000875 3993.344
+81325.29190685903 4.2001266 3990.7852
+81326.29190690932 4.2001266 3989.2107
+81327.29190695961 4.2001662 3984.4868
+81328.2919070099 4.2001662 3981.1411
+81329.2919070602 4.200048 3978.1887
+81330.29190711048 4.2002058 3976.0239
+81331.29190716078 4.2001662 3972.678
+81332.29190721107 4.2002058 3970.5129
+81333.29190726136 4.2000875 3965.0022
+81334.29190731165 4.2002058 3964.8052
+81335.29190736194 4.2001662 3958.7041
+81336.29190741223 4.2001662 3956.9326
+81337.29190746252 4.2002058 3956.1453
+81338.29190751282 4.2001662 3951.2249
+81339.2919075631 4.2001662 3950.2407
+81340.2919076134 4.2001266 3948.4692
+81341.29190766369 4.2001662 3944.7297
+81342.29190771398 4.2002058 3940.7935
+81343.29190776427 4.2001266 3939.8093
+81344.29190781456 4.2001266 3936.2668
+81345.29190786486 4.2000875 3933.1177
+81346.29190791515 4.2002449 3930.3623
+81347.29190796544 4.2002058 3927.2131
+81348.29190801573 4.2001662 3925.8354
+81349.29190806602 4.2002449 3924.261
+81350.29190811631 4.2002058 3920.1277
+81351.2919081666 4.2002449 3915.9946
+81352.2919082169 4.2002449 3914.8135
+81353.29190826719 4.2001662 3912.2551
+81354.29190831748 4.2002845 3911.271
+81355.29190836777 4.2001266 3903.9888
+81356.29190841806 4.2002058 3903.3984
+81357.29190846835 4.2001662 3901.4299
+81358.29190851864 4.200048 3897.8875
+81359.29190856894 4.2001662 3895.9192
+81360.29190861923 4.2000875 3894.1477
+81361.29190866952 4.2002058 3890.9988
+81362.29190871981 4.2001662 3888.4399
+81363.2919087701 4.2002449 3885.094
+81364.29190882039 4.2002058 3882.9292
+81365.29190887068 4.2001266 3879.9771
+81366.29190892098 4.2002058 3879.78
+81367.29190897127 4.2002449 3875.647
+81368.29190902156 4.2001662 3874.8596
+81369.29190907185 4.2000875 3871.1201
+81370.29190912214 4.2001266 3866.9871
+81371.29190917243 4.2001266 3864.822
+81372.29190922272 4.2001662 3864.822
+81373.29190927302 4.2001266 3862.2634
+81374.2919093233 4.2000875 3858.5239
+81375.2919093736 4.2001662 3857.146
+81376.29190942389 4.2001266 3851.4387
+81377.29190947418 4.2001662 3851.2417
+81378.29190952447 4.2000875 3849.6672
+81379.29190957476 4.2001266 3845.5339
+81380.29190962506 4.2000875 3842.7786
+81381.29190967535 4.2001662 3840.0232
+81382.29190972564 4.2001266 3837.6614
+81383.29190977593 4.2001266 3833.5281
+81384.29190982622 4.2002449 3833.5281
+81385.29190987651 4.200048 3829.5918
+81386.2919099268 4.2001266 3824.8682
+81387.2919099771 4.2000875 3824.2776
+81388.29191002739 4.2002058 3819.751
+81389.29191007768 4.2001266 3818.9636
+81390.29191012797 4.2000875 3814.6335
+81391.29191017826 4.2001266 3813.6497
+81392.29191022855 4.2002058 3810.894
+81393.29191027884 4.2001266 3807.1545
+81394.29191032914 4.2001266 3802.6277
+81395.29191037943 4.2002058 3801.447
+81396.29191042972 4.2001662 3800.2659
+81397.29191048001 4.2002058 3796.3296
+81398.2919105303 4.2002449 3792.9839
+81399.29191058059 4.2002449 3790.6218
+81400.29191063088 4.2001662 3787.8665
+81401.29191068118 4.2001266 3784.9143
+81402.29191073147 4.2000875 3778.616
+81403.29191078176 4.2001662 3778.616
+81404.29191083205 4.2000875 3775.6638
+81405.29191088234 4.2002058 3770.1528
+81406.29191093263 4.2001266 3769.5625
+81407.29191098292 4.2001662 3764.6421
+81408.29191103322 4.2001266 3763.8547
+81409.2919110835 4.2001662 3761.0994
+81410.2919111338 4.2000875 3756.3757
+81411.29191118409 4.2000875 3755.7854
+81412.29191123438 4.2001662 3752.6362
+81413.29191128467 4.2002058 3748.3062
+81414.29191133496 4.2001266 3749.8806
+81415.29191138525 4.2000875 3745.354
+81416.29191143555 4.2001266 3743.189
+81417.29191148584 4.2002058 3741.8113
+81418.29191153613 4.2002449 3738.2686
+81419.29191158642 4.2002449 3735.1196
+81420.29191163671 4.2001662 3731.9705
+81421.291911687 4.2000875 3728.4277
+81422.2919117373 4.2001662 3728.6245
+81423.29191178759 4.2001266 3723.3103
+81424.29191183788 4.2001662 3720.5549
+81425.29191188817 4.1999693 3718.1931
+81426.29191193846 4.2000875 3715.4377
+81427.29191198875 4.2001266 3712.8789
+81428.29191203904 4.2001266 3710.7141
+81429.29191208933 4.2001266 3708.5491
+81430.29191213963 4.200048 3706.5808
+81431.29191218992 4.2001266 3702.448
+81432.29191224021 4.2002058 3699.2986
+81433.2919122905 4.2001662 3698.3147
+81434.29191234079 4.200048 3693.3943
+81435.29191239108 4.2001662 3687.0962
+81436.29191244137 4.2001662 3689.0642
+81437.29191249167 4.2001266 3686.3088
+81438.29191254196 4.2002449 3684.3406
+81439.29191259225 4.2002449 3680.6011
+81440.29191264254 4.200048 3678.4363
+81441.29191269283 4.2001662 3676.8618
+81442.29191274312 4.2001662 3673.3188
+81443.29191279341 4.2002058 3669.7761
+81444.2919128437 4.2001662 3667.0208
+81445.291912894 4.2001266 3664.6589
+81446.29191294429 4.2001662 3660.1321
+81447.29191299458 4.2002058 3657.967
+81448.29191304487 4.2001662 3655.4084
+81449.29191309516 4.2001266 3651.2751
+81450.29191314545 4.2001266 3647.3389
+81451.29191319575 4.2001662 3648.52
+81452.29191324604 4.200048 3643.5994
+81453.29191329633 4.2001266 3641.8281
+81454.29191334662 4.2002058 3637.8916
+81455.29191339691 4.2002449 3635.53
+81456.2919134472 4.2001662 3631.7905
+81457.2919134975 4.2000875 3631.0032
+81458.29191354779 4.2000875 3626.8701
+81459.29191359808 4.2002449 3625.689
+81460.29191364837 4.2001662 3620.5718
+81461.29191369866 4.200048 3618.8005
+81462.29191374895 4.2002058 3617.6194
+81463.29191379924 4.2001266 3614.0769
+81464.29191384953 4.2001662 3613.8801
+81465.29191389983 4.2002058 3609.5503
+81466.29191395012 4.2002058 3608.1724
+81467.29191400041 4.2002449 3603.8425
+81468.2919140507 4.2002058 3604.0391
+81469.29191410099 4.2001662 3599.5125
+81470.29191415128 4.2002058 3597.1506
+81471.29191420157 4.2001662 3594.1985
+81472.29191425187 4.2001266 3590.2617
+81473.29191430216 4.2002058 3589.2778
+81474.29191435245 4.200048 3585.9319
+81475.29191440274 4.2002449 3581.7988
+81476.29191445303 4.2001662 3579.6338
+81477.29191450332 4.2001266 3579.6338
+81478.29191455361 4.2002058 3575.8945
+81479.2919146039 4.2001662 3571.7612
+81480.2919146542 4.2001266 3569.3994
+81481.29191470449 4.2001662 3567.0374
+81482.29191475478 4.2001266 3562.9045
+81483.29191480507 4.2002058 3560.5427
+81484.29191485536 4.2001662 3559.3616
+81485.29191490565 4.200048 3555.8191
+81486.29191495595 4.2002058 3552.6697
+81487.29191500624 4.200048 3548.1431
+81488.29191505653 4.2002058 3548.3398
+81489.29191510682 4.2001662 3545.3875
+81490.29191515711 4.2001266 3543.6162
+81491.2919152074 4.2001662 3537.9087
+81492.2919152577 4.2002058 3537.1213
+81493.29191530799 4.2001662 3533.7754
+81494.29191535828 4.2000875 3530.6262
+81495.29191540857 4.2002058 3527.6741
+81496.29191545886 4.2001266 3524.1313
+81497.29191550915 4.2002058 3524.9187
+81498.29191555944 4.2001662 3520.5889
+81499.29191560973 4.2001266 3517.6362
+81500.29191566003 4.2001266 3514.6841
+81501.29191571032 4.2000875 3512.5193
+81502.29191576061 4.2001266 3509.9604
+81503.2919158109 4.2002449 3507.7954
+81504.29191586119 4.2002058 3503.4656
+81505.29191591148 4.200048 3502.0879
+81506.29191596177 4.2002449 3499.1355
+81507.29191601207 4.2001662 3497.9548
+81508.29191606236 4.2001662 3495.0022
+81509.29191611265 4.2001662 3493.2312
+81510.29191616294 4.2002449 3490.4756
+81511.29191621323 4.2001266 3484.3743
+81512.29191626352 4.2001662 3484.1775
+81513.29191631381 4.2001662 3482.603
+81514.2919163641 4.2000875 3480.438
+81515.2919164144 4.2002449 3477.2891
+81516.29191646469 4.2001662 3471.5813
+81517.29191651498 4.2000875 3473.5493
+81518.29191656527 4.2001266 3468.4319
+81519.29191661556 4.2000875 3464.2991
+81520.29191666585 4.2001662 3464.8894
+81521.29191671615 4.2002058 3461.3464
+81522.29191676644 4.2001662 3459.772
+81523.29191681673 4.2002058 3457.2136
+81524.29191686702 4.2001266 3453.4739
+81525.29191691731 4.2002058 3451.7024
+81526.2919169676 4.2003236 3447.7661
+81527.2919170179 4.2000875 3444.6172
+81528.29191706819 4.2001662 3444.6172
+81529.29191711848 4.2002449 3441.2712
+81530.29191716877 4.2002449 3438.3191
+81531.29191721906 4.2000089 3434.7761
+81532.29191726935 4.2001662 3433.2019
+81533.29191731964 4.2000875 3428.0845
+81534.29191736993 4.2001266 3427.2974
+81535.29191742023 4.2001266 3425.1323
+81536.29191747052 4.2002058 3422.7703
+81537.29191752081 4.2000089 3418.834
+81538.2919175711 4.2000875 3417.0627
+81539.29191762139 4.2002058 3415.2915
+81540.29191767168 4.2001266 3410.5679
+81541.29191772197 4.2001662 3408.5996
+81542.29191777227 4.2002058 3405.4504
+81543.29191782256 4.2002449 3401.908
+81544.29191787285 4.2001662 3400.3335
+81545.29191792314 4.2001266 3399.1523
+81546.29191797343 4.200048 3395.8064
+81547.29191802372 4.2001662 3389.3115
+81548.29191807401 4.2000875 3389.7051
+81549.2919181243 4.2001662 3387.9338
+81550.2919181746 4.2002058 3382.8164
+81551.29191822489 4.2001662 3379.0769
+81552.29191827518 4.2002058 3377.5024
+81553.29191832547 4.2001266 3375.1406
+81554.29191837576 4.2001662 3372.385
+81555.29191842605 4.2003236 3369.0391
+81556.29191847635 4.2001662 3365.6936
+81557.29191852664 4.2001266 3364.5125
+81558.29191857693 4.2002058 3361.9539
+81559.29191862722 4.2001266 3358.2144
+81560.29191867751 4.2000875 3356.2463
+81561.2919187278 4.2002449 3353.2939
+81562.2919187781 4.200048 3350.5386
+81563.29191882838 4.2001662 3349.5544
+81564.29191887868 4.2002449 3344.8308
+81565.29191892897 4.2000875 3343.2563
+81566.29191897926 4.2001662 3341.0911
+81567.29191902955 4.2001662 3336.1709
+81568.29191907984 4.2000875 3334.0059
+81569.29191913013 4.2002449 3332.6282
+81570.29191918042 4.2000875 3329.8726
+81571.29191923072 4.2002058 3326.7234
+81572.29191928101 4.2001662 3325.3459
+81573.2919193313 4.2001662 3322.0
+81574.29191938159 4.2002449 3320.8191
+81575.29191943188 4.2002449 3317.2764
+81576.29191948217 4.2001662 3314.1272
+81577.29191953246 4.2002058 3310.7813
+81578.29191958276 4.2001266 3309.4036
+81579.29191963305 4.2002058 3307.2388
+81580.29191968334 4.2001662 3305.6643
+81581.29191973363 4.2001266 3301.531
+81582.29191978392 4.2001662 3297.9883
+81583.29191983421 4.2001662 3297.0044
+81584.2919198845 4.2001662 3293.4614
+81585.2919199348 4.2001266 3291.4932
+81586.29191998509 4.2001266 3289.5251
+81587.29192003538 4.2001662 3286.3762
+81588.29192008567 4.2000875 3286.1792
+81589.29192013596 4.2002058 3281.6526
+81590.29192018625 4.2001662 3280.0776
+81591.29192023654 4.2000875 3276.3384
+81592.29192028684 4.2002449 3272.7957
+81593.29192033713 4.2002058 3270.4338
+81594.29192038742 4.200048 3268.4656
+81595.29192043771 4.2000875 3264.7263
+81596.291920488 4.2001266 3262.7578
+81597.2919205383 4.2001662 3261.7737
+81598.29192058858 4.2000089 3255.4756
+81599.29192063888 4.200048 3255.0823
+81600.29192068917 4.2000875 3250.949
+81601.29192073946 4.2000089 3248.5872
+81602.29192078975 4.2001662 3246.0286
+81603.29192084004 4.2001662 3243.0764
+81604.29192089033 4.2002058 3240.5176
+81605.29192094062 4.2002449 3239.9272
+81606.29192099092 4.2002058 3234.8098
+81607.29192104121 4.2001266 3232.2512
+81608.2919210915 4.2002845 3231.0706
+81609.29192114179 4.2002449 3227.7246
+81610.29192119208 4.200048 3225.3628
+81611.29192124237 4.2001662 3223.198
+81612.29192129266 4.2001266 3219.655
+81613.29192134296 4.2001266 3218.8679
+81614.29192139325 4.2002449 3217.8838
+81615.29192144354 4.2002449 3211.9795
+81616.29192149383 4.2001662 3205.2876
+81617.29192154412 4.2002058 3208.6335
+81618.29192159441 4.2000875 3205.4844
+81619.2919216447 4.2002058 3203.1226
+81620.291921695 4.2001266 3198.0051
+81621.29192174529 4.2002058 3198.3989
+81622.29192179558 4.2001662 3195.25
+81623.29192184587 4.2001662 3192.6912
+81624.29192189616 4.2001662 3191.9041
+81625.29192194645 4.2001662 3186.7866
+81626.29192199674 4.2002058 3185.8025
+81627.29192204704 4.2001266 3182.8503
+81628.29192209733 4.2002449 3181.4727
+81629.29192214762 4.2002449 3175.9619
+81630.29192219791 4.2002449 3174.9778
+81631.2919222482 4.200048 3171.8286
+81632.2919222985 4.2001662 3170.2542
+81633.29192234878 4.2001662 3168.0889
+81634.29192239908 4.2001266 3164.3494
+81635.29192244937 4.2002058 3161.3972
+81636.29192249966 4.2001662 3156.8704
+81637.29192254995 4.2001662 3157.8545
+81638.29192260024 4.2002058 3155.4927
+81639.29192265053 4.2002058 3153.1309
+81640.29192270082 4.2002058 3150.769
+81641.29192275112 4.2002449 3145.2583
+81642.2919228014 4.2001662 3144.8645
+81643.2919228517 4.2001266 3141.7153
+81644.29192290199 4.2002058 3140.7314
+81645.29192295228 4.2001662 3137.5825
+81646.29192300257 4.2001662 3135.4172
+81647.29192305286 4.2002058 3133.2524
+81648.29192310316 4.2000875 3130.1033
+81649.29192315345 4.2002449 3130.1033
+81650.29192320374 4.2002058 3126.5605
+81651.29192325403 4.2001266 3120.8528
+81652.29192330432 4.2001662 3118.2944
+81653.29192335461 4.2001662 3119.4751
+81654.2919234049 4.2001662 3117.5071
+81655.2919234552 4.2001662 3112.3896
+81656.29192350549 4.2001266 3111.9963
+81657.29192355578 4.2001266 3109.2407
+81658.29192360607 4.2001662 3108.4534
+81659.29192365636 4.2001662 3105.5012
+81660.29192370665 4.2001662 3104.7136
+81661.29192375694 4.2002058 3102.1553
+81662.29192380724 4.2001662 3097.2349
+81663.29192385753 4.2002845 3095.6604
+81664.29192390782 4.2001662 3092.1174
+81665.29192395811 4.2002845 3091.3303
+81666.2919240084 4.2001266 3088.3782
+81667.29192405869 4.2001662 3085.0322
+81668.29192410898 4.2001662 3082.2769
+81669.29192415928 4.2001266 3080.1116
+81670.29192420957 4.2001662 3078.1436
+81671.29192425986 4.2000875 3073.8135
+81672.29192431015 4.2000875 3072.8293
+81673.29192436044 4.2001662 3071.2549
+81674.29192441073 4.2001266 3069.8772
+81675.29192446102 4.2000875 3065.9409
+81676.29192451132 4.2001662 3060.627
+81677.2919245616 4.2002058 3061.6108
+81678.2919246119 4.2001266 3056.8872
+81679.29192466219 4.2001662 3057.084
+81680.29192471248 4.2001662 3054.5254
+81681.29192476277 4.2001266 3050.9829
+81682.29192481306 4.2002058 3047.8337
+81683.29192486336 4.2002058 3046.8496
+81684.29192491365 4.2001266 3045.6687
+81685.29192496394 4.2001662 3042.7166
+81686.29192501423 4.2001662 3039.7642
+81687.29192506452 4.2002449 3036.4182
+81688.29192511481 4.2002058 3035.8276
+81689.2919251651 4.2001266 3032.0881
+81690.2919252154 4.2002449 3030.5137
+81691.29192526569 4.2002058 3028.1519
+81692.29192531598 4.2001662 3024.8059
+81693.29192536627 4.2001266 3022.2473
+81694.29192541656 4.2000875 3021.2634
+81695.29192546685 4.2002058 3019.0981
+81696.29192551714 4.2002058 3015.7527
+81697.29192556744 4.200048 3011.6194
+81698.29192561773 4.2001662 3011.6194
+81699.29192566802 4.2002058 3008.0767
+81700.29192571831 4.2001266 3004.5339
+81701.2919257686 4.2001266 3004.3372
+81702.29192581889 4.2001266 3001.7783
+81703.29192586918 4.2001266 3000.5974
+81704.29192591948 4.2001662 2998.4326
+81705.29192596977 4.2002058 2998.2356
+81706.29192602006 4.2000875 2990.9536
+81707.29192607035 4.2002058 2991.9375
+81708.29192612064 4.2000875 2990.7568
+81709.29192617093 4.2000875 2987.4109
+81710.29192622122 4.2002058 2984.0649
+81711.29192627151 4.2001266 2979.7351
+81712.2919263218 4.2002058 2979.9316
+81713.2919263721 4.2001662 2975.6018
+81714.29192642239 4.2001266 2974.4209
+81715.29192647268 4.2000875 2973.24
+81716.29192652297 4.2001266 2970.4844
+81717.29192657326 4.2001266 2968.5161
+81718.29192662355 4.2001662 2966.7451
+81719.29192667385 4.2000875 2963.2021
+81720.29192672414 4.2001266 2962.0215
+81721.29192677443 4.2001662 2957.1011
+81722.29192682472 4.2000875 2956.5103
+81723.29192687501 4.2001266 2953.9519
+81724.2919269253 4.2001662 2952.9678
+81725.2919269756 4.2001266 2950.606
+81726.29192702589 4.2001266 2949.6218
+81727.29192707618 4.2002058 2946.8662
+81728.29192712647 4.2001662 2941.3555
+81729.29192717676 4.2002058 2941.5522
+81730.29192722705 4.2002449 2939.3875
+81731.29192727734 4.2000875 2935.4512
+81732.29192732763 4.2001266 2934.27
+81733.29192737793 4.200048 2932.6956
+81734.29192742822 4.2001266 2929.7434
+81735.29192747851 4.2001266 2927.7751
+81736.2919275288 4.2002449 2922.4612
+81737.29192757909 4.2000875 2923.8386
+81738.29192762938 4.2002449 2921.28
+81739.29192767967 4.2001662 2918.1313
+81740.29192772997 4.2000875 2917.5405
+81741.29192778026 4.2001662 2912.8169
+81742.29192783055 4.2002058 2909.2742
+81743.29192788084 4.2002058 2907.8965
+81744.29192793113 4.2001662 2904.9443
+81745.29192798142 4.200048 2904.157
+81746.29192803171 4.2001266 2901.0081
+81747.291928082 4.2001662 2898.8428
+81748.2919281323 4.2001662 2895.4971
+81749.29192818259 4.2001662 2891.7576
+81750.29192823288 4.2001662 2889.9863
+81751.29192828317 4.2000875 2889.5925
+81752.29192833346 4.2002058 2886.0498
+81753.29192838375 4.2002058 2883.2944
+81754.29192843405 4.2001662 2882.5071
+81755.29192848434 4.2000875 2878.5708
+81756.29192853463 4.2001266 2877.5867
+81757.29192858492 4.2001662 2871.8789
+81758.29192863521 4.2001266 2872.2727
+81759.2919286855 4.2002058 2867.1555
+81760.2919287358 4.2002449 2865.5808
+81761.29192878609 4.200048 2864.5967
+81762.29192883638 4.2001662 2860.6604
+81763.29192888667 4.2002058 2857.7083
+81764.29192893696 4.2001266 2857.5112
+81765.29192898725 4.2001266 2854.5591
+81766.29192903754 4.2001662 2852.5908
+81767.29192908783 4.2000875 2851.0164
+81768.29192913813 4.2001266 2848.6545
+81769.29192918842 4.2001662 2845.8989
+81770.29192923871 4.2002845 2842.9468
+81771.291929289 4.2002058 2838.6169
+81772.29192933929 4.2001266 2838.8137
+81773.29192938958 4.2002449 2834.8772
+81774.29192943987 4.2001662 2833.4998
+81775.29192949017 4.2001266 2828.3823
+81776.29192954046 4.2001662 2827.3984
+81777.29192959075 4.2001266 2827.2014
+81778.29192964104 4.2001662 2824.6428
+81779.29192969133 4.2000875 2820.3127
+81780.29192974162 4.2001266 2819.1321
+81781.29192979191 4.2002449 2813.6211
+81782.2919298422 4.2002058 2812.834
+81783.2919298925 4.2002449 2811.2593
+81784.29192994279 4.200048 2807.7166
+81785.29192999308 4.2002058 2807.9133
+81786.29193004337 4.2001266 2804.3706
+81787.29193009366 4.2001266 2802.0088
+81788.29193014395 4.2002845 2802.7961
+81789.29193019425 4.2001266 2797.8755
+81790.29193024454 4.2001662 2796.1045
+81791.29193029483 4.200048 2792.7585
+81792.29193034512 4.2001662 2790.7903
+81793.29193039541 4.2001662 2785.8701
+81794.2919304457 4.2001266 2786.2634
+81795.291930496 4.2001662 2781.9333
+81796.29193054629 4.200048 2779.1782
+81797.29193059658 4.2001662 2781.343
+81798.29193064687 4.2000875 2775.8323
+81799.29193069716 4.2001266 2775.4387
+81800.29193074745 4.2001266 2774.4546
+81801.29193079774 4.2000875 2769.9275
+81802.29193084803 4.2000875 2766.5815
+81803.29193089833 4.2002058 2764.6135
+81804.29193094862 4.2001662 2761.4646
+81805.29193099891 4.2001662 2760.6772
+81806.2919310492 4.2001266 2758.1187
+81807.29193109949 4.2001266 2755.5601
+81808.29193114978 4.2000875 2753.7888
+81809.29193120007 4.2001662 2750.8364
+81810.29193125037 4.2002449 2749.4587
+81811.29193130066 4.2001662 2746.8999
+81812.29193135095 4.2001662 2743.9478
+81813.29193140124 4.2001266 2740.9954
+81814.29193145153 4.200048 2738.8306
+81815.29193150182 4.2002449 2737.8464
+81816.29193155211 4.2002449 2736.4688
+81817.2919316024 4.2002058 2732.1389
+81818.2919316527 4.2001266 2731.3513
+81819.29193170299 4.2001266 2726.4312
+81820.29193175328 4.2001662 2726.8247
+81821.29193180357 4.2001266 2722.6914
+81822.29193185386 4.2001662 2721.9043
+81823.29193190415 4.2001662 2718.5586
+81824.29193195445 4.2001662 2715.0156
+81825.29193200474 4.2001662 2716.7871
+81826.29193205503 4.2001266 2712.8508
+81827.29193210532 4.2001266 2707.9302
+81828.29193215561 4.2001266 2708.5208
+81829.2919322059 4.2001266 2705.5686
+81830.2919322562 4.2002449 2701.2385
+81831.29193230649 4.2001662 2702.0256
+81832.29193235678 4.200048 2700.2544
+81833.29193240707 4.2002058 2696.3179
+81834.29193245736 4.2001662 2693.1689
+81835.29193250765 4.2002449 2691.988
+81836.29193255794 4.2001662 2692.3816
+81837.29193260823 4.2001662 2688.4453
+81838.29193265853 4.2000875 2685.4932
+81839.29193270882 4.2001662 2682.344
+81840.29193275911 4.2001662 2682.344
+81841.2919328094 4.2001662 2677.8171
+81842.29193285969 4.2002449 2678.4077
+81843.29193290998 4.2001266 2676.2427
+81844.29193296027 4.200048 2671.7158
+81845.29193301057 4.2002058 2671.7158
+81846.29193306086 4.2000875 2669.9443
+81847.29193311115 4.2001662 2666.2051
+81848.29193316144 4.2001266 2665.2209
+81849.29193321173 4.2002058 2663.0559
+81850.29193326202 4.2002058 2661.4814
+81851.29193331231 4.2001662 2655.5769
+81852.2919333626 4.2002058 2656.561
+81853.2919334129 4.2003236 2655.5769
+81854.29193346319 4.2001266 2651.4436
+81855.29193351348 4.200048 2651.2471
+81856.29193356377 4.2001266 2648.6882
+81857.29193361406 4.2001266 2644.3582
+81858.29193366435 4.2002449 2645.3423
+81859.29193371464 4.2002449 2642.7837
+81860.29193376494 4.2002058 2640.8157
+81861.29193381523 4.200048 2637.8633
+81862.29193386552 4.2001266 2634.9111
+81863.29193391581 4.2001266 2630.5811
+81864.2919339661 4.2001266 2630.5811
+81865.2919340164 4.2002449 2631.5652
+81866.29193406668 4.2001662 2626.8416
+81867.29193411698 4.2002058 2626.6445
+81868.29193416727 4.2001662 2621.7241
+81869.29193421756 4.2001266 2620.5435
+81870.29193426785 4.2002058 2617.9846
+81871.29193431814 4.2002058 2616.8037
+81872.29193436843 4.2001266 2613.8516
+81873.29193441872 4.2001266 2610.3086
+81874.29193446902 4.2001266 2610.8994
+81875.29193451931 4.2002058 2608.3406
+81876.2919345696 4.2001266 2606.9631
+81877.29193461989 4.2002058 2606.9631
+81878.29193467018 4.2001662 2601.0583
+81879.29193472047 4.2000875 2601.4521
+81880.29193477076 4.2001662 2598.8936
+81881.29193482106 4.2001266 2596.7283
+81882.29193487135 4.2001662 2592.5955
+81883.29193492164 4.2002058 2592.5955
+81884.29193497193 4.2001662 2590.0366
+81885.29193502222 4.2001266 2587.6748
+81886.29193507251 4.2001662 2585.3132
+81887.2919351228 4.2001266 2584.1321
+81888.2919351731 4.2001662 2582.1641
+81889.29193522339 4.2002058 2580.3926
+81890.29193527368 4.2002058 2577.6372
+81891.29193532397 4.2001662 2574.488
+81892.29193537426 4.2001266 2573.5039
+81893.29193542455 4.2000875 2573.7007
+81894.29193547484 4.2000875 2569.1741
+81895.29193552514 4.2001662 2567.5996
+81896.29193557543 4.2001266 2564.6475
+81897.29193562572 4.2002058 2561.498
+81898.29193567601 4.2002058 2559.1362
+81899.2919357263 4.2001662 2558.9397
+81900.2919357766 4.2002449 2556.7744
+81901.29193582688 4.2001662 2552.8381
+81902.29193587718 4.2001662 2552.0508
+81903.29193592747 4.2001266 2550.2798
+81904.29193597776 4.2001662 2548.7048
+81905.29193602805 4.2000875 2545.7527
+81906.29193607834 4.2002449 2543.9814
+81907.29193612863 4.2001662 2544.1782
+81908.29193617892 4.2001662 2540.6357
+81909.29193622922 4.2002058 2537.2898
+81910.29193627951 4.2001266 2533.353
+81911.2919363298 4.2001266 2533.1565
+81912.29193638009 4.2000875 2530.2043
+81913.29193643038 4.2001662 2530.4009
+81914.29193648067 4.200048 2526.071
+81915.29193653096 4.2000875 2524.1028
+81916.29193658126 4.2002058 2525.4805
+81917.29193663155 4.2002058 2519.9697
+81918.29193668184 4.200048 2516.8206
+81919.29193673213 4.2001266 2516.427
+81920.29193678242 4.2001662 2516.2302
+81921.29193683271 4.2001266 2511.1128
+81922.291936883 4.2002058 2508.751
+81923.2919369333 4.200048 2505.9958
+81924.29193698359 4.2001662 2505.6021
+81925.29193703388 4.2002058 2504.2244
+81926.29193708417 4.2001662 2503.0432
+81927.29193713446 4.200048 2498.123
+81928.29193718475 4.2002449 2497.3359
+81929.29193723504 4.2002058 2495.958
+81930.29193728534 4.2002449 2493.0059
+81931.29193733563 4.2000875 2490.644
+81932.29193738592 4.2001266 2487.4949
+81933.29193743621 4.2003236 2488.6758
+81934.2919374865 4.2001662 2484.5427
+81935.2919375368 4.2001662 2480.8032
+81936.29193758708 4.200048 2480.6062
+81937.29193763738 4.2002058 2478.835
+81938.29193768767 4.2001662 2474.5051
+81939.29193773796 4.200048 2474.5051
+81940.29193778825 4.2001662 2469.5845
+81941.29193783854 4.2001662 2469.7813
+81942.29193788883 4.2001662 2468.6003
+81943.29193793912 4.2002449 2466.8291
+81944.29193798942 4.2001266 2463.6802
+81945.2919380397 4.2002058 2458.5627
+81946.29193809 4.2001662 2457.7754
+81947.29193814029 4.2002058 2457.3821
+81948.29193819058 4.200048 2453.0518
+81949.29193824087 4.2001662 2453.8391
+81950.29193829116 4.2002449 2449.3125
+81951.29193834146 4.2001662 2448.7219
+81952.29193839175 4.2001266 2445.376
+81953.29193844204 4.2001266 2441.0461
+81954.29193849233 4.2001266 2444.5886
+81955.29193854262 4.2001662 2439.0779
+81956.29193859291 4.2001662 2439.2747
+81957.2919386432 4.2000875 2435.5352
+81958.2919386935 4.2001266 2434.9446
+81959.29193874379 4.2001266 2431.2053
+81960.29193879408 4.2002058 2430.418
+81961.29193884437 4.2001266 2429.0403
+81962.29193889466 4.2001266 2423.3325
+81963.29193894495 4.2002449 2425.3005
+81964.29193899524 4.2001266 2420.7739
+81965.29193904554 4.2002058 2419.1995
+81966.29193909583 4.2002058 2419.9866
+81967.29193914612 4.2001266 2415.4597
+81968.29193919641 4.2001662 2414.2788
+81969.2919392467 4.2002058 2411.917
+81970.29193929699 4.2001662 2410.5393
+81971.29193934728 4.2002449 2407.9807
+81972.29193939758 4.2001266 2403.6509
+81973.29193944787 4.2002845 2403.8477
+81974.29193949816 4.2002058 2400.6985
+81975.29193954845 4.2001662 2400.8953
+81976.29193959874 4.2001266 2396.959
+81977.29193964903 4.2002449 2394.2036
+81978.29193969932 4.2001662 2393.613
+81979.29193974962 4.2002449 2392.4321
+81980.2919397999 4.2001662 2389.48
+81981.2919398502 4.2002845 2388.8894
+81982.29193990049 4.2002845 2385.3467
+81983.29193995078 4.2001662 2382.5913
+81984.29194000107 4.2001662 2382.5913
+81985.29194005136 4.2001266 2381.0168
+81986.29194010166 4.2001266 2378.8518
+81987.29194015195 4.2002449 2377.6709
+81988.29194020224 4.2002449 2375.3091
+81989.29194025253 4.2001662 2371.7664
+81990.29194030282 4.2001662 2371.176
+81991.29194035311 4.2001266 2369.2078
+81992.2919404034 4.2000875 2366.2556
+81993.2919404537 4.2000875 2364.6809
+81994.29194050399 4.2000875 2361.9255
+81995.29194055428 4.2001662 2362.7129
+81996.29194060457 4.2001662 2359.1702
+81997.29194065486 4.2002058 2359.7605
+81998.29194070515 4.2002058 2357.5957
+81999.29194075544 4.2001662 2354.6433
+82000.29194080574 4.2002058 2352.8718
+82001.29194085603 4.2001662 2349.5261
+82002.29194090632 4.2000875 2348.1482
+82003.29194095661 4.2001662 2347.5579
+82004.2919410069 4.2002845 2345.5898
+82005.29194105719 4.2001662 2343.4248
+82006.29194110748 4.2001662 2341.6533
+82007.29194115777 4.2002449 2339.0947
+82008.29194120807 4.2002449 2337.5203
+82009.29194125836 4.2001662 2336.1423
+82010.29194130865 4.2001662 2333.5837
+82011.29194135894 4.2000875 2330.8284
+82012.29194140923 4.2000875 2329.0571
+82013.29194145952 4.2000875 2327.2856
+82014.29194150981 4.2002058 2327.4824
+82015.2919415601 4.2000875 2323.5461
+82016.2919416104 4.2002058 2322.1685
+82017.29194166069 4.2001662 2321.7749
+82018.29194171098 4.2001266 2318.429
+82019.29194176127 4.2001266 2314.0989
+82020.29194181156 4.2001266 2316.2639
+82021.29194186185 4.2001662 2314.6895
+82022.29194191215 4.2000875 2307.4072
+82023.29194196244 4.2000875 2307.604
+82024.29194201273 4.2000875 2306.4231
+82025.29194206302 4.2001266 2306.2263
+82026.29194211331 4.2001662 2304.4548
+82027.2919421636 4.2001662 2301.3057
+82028.2919422139 4.2002058 2300.9121
+82029.29194226419 4.2002845 2299.7312
+82030.29194231448 4.2002058 2296.5823
+82031.29194236477 4.2002449 2292.449
+82032.29194241506 4.2002058 2289.103
+82033.29194246535 4.2002449 2290.8745
+82034.29194251564 4.2001662 2289.6936
+82035.29194256593 4.2001266 2286.9382
+82036.29194261623 4.2002449 2284.97
+82037.29194266652 4.2002845 2282.6082
+82038.29194271681 4.2001662 2281.0337
+82039.2919427671 4.2002058 2278.2783
+82040.29194281739 4.2002845 2278.8687
+82041.29194286768 4.2002058 2271.3896
+82042.29194291797 4.2001662 2272.7673
+82043.29194296827 4.2002449 2271.5864
+82044.29194301856 4.2001266 2267.0596
+82045.29194306885 4.2001266 2269.2246
+82046.29194311914 4.2001266 2266.2722
+82047.29194316943 4.2001662 2261.7456
+82048.29194321972 4.2002449 2263.9104
+82049.29194327001 4.2002058 2260.1709
+82050.2919433203 4.2001266 2259.9741
+82051.2919433706 4.2002449 2257.8093
+82052.29194342089 4.2001266 2253.8728
+82053.29194347118 4.2001662 2253.4792
+82054.29194352147 4.2001266 2251.1174
+82055.29194357176 4.2002058 2250.1333
+82056.29194362205 4.2001266 2247.3779
+82057.29194367235 4.2002449 2247.5747
+82058.29194372264 4.2001662 2243.2446
+82059.29194377293 4.2002058 2244.6223
+82060.29194382322 4.2002058 2239.3083
+82061.29194387351 4.2002058 2236.553
+82062.2919439238 4.2001266 2234.5847
+82063.2919439741 4.2000875 2235.175
+82064.29194402439 4.2001266 2232.4197
+82065.29194407468 4.2002058 2228.4834
+82066.29194412497 4.2002058 2227.3025
+82067.29194417526 4.2000875 2225.728
+82068.29194422555 4.2001266 2223.366
+82069.29194427584 4.2001662 2221.9885
+82070.29194432613 4.2001662 2221.5947
+82071.29194437643 4.2000875 2219.2329
+82072.29194442672 4.2000875 2217.4617
+82073.29194447701 4.2002058 2214.3125
+82074.2919445273 4.2001266 2211.5571
+82075.29194457759 4.2001266 2211.1636
+82076.29194462788 4.2002449 2210.1792
+82077.29194467817 4.2000875 2206.8335
+82078.29194472847 4.200048 2205.062
+82079.29194477876 4.2000875 2204.2749
+82080.29194482905 4.2002449 2204.2749
+82081.29194487934 4.2002058 2199.5513
+82082.29194492963 4.2002845 2199.3542
+82083.29194497992 4.2001662 2197.3862
+82084.29194503021 4.2000875 2195.0244
+82085.2919450805 4.2001266 2193.6467
+82086.2919451308 4.2001266 2192.269
+82087.29194518109 4.2002058 2189.5137
+82088.29194523138 4.2001266 2186.7581
+82089.29194528167 4.200048 2186.1677
+82090.29194533196 4.2000875 2184.1995
+82091.29194538225 4.2002449 2184.593
+82092.29194543255 4.2001662 2181.8376
+82093.29194548284 4.2001662 2177.114
+82094.29194553313 4.2002449 2177.3108
+82095.29194558342 4.200048 2174.3586
+82096.29194563371 4.2001266 2173.9651
+82097.291945684 4.2000875 2171.2095
+82098.2919457343 4.2001662 2168.8479
+82099.29194578459 4.2001662 2165.6987
+82100.29194583488 4.2002058 2165.1082
+82101.29194588517 4.2000875 2162.9431
+82102.29194593546 4.2000875 2162.7463
+82103.29194598575 4.2002058 2162.5496
+82104.29194603604 4.2001662 2160.1877
+82105.29194608633 4.2002058 2157.2354
+82106.29194613663 4.2001266 2154.48
+82107.29194618692 4.2002058 2153.4961
+82108.29194623721 4.2002449 2152.1182
+82109.2919462875 4.2001662 2149.7563
+82110.29194633779 4.2002058 2149.7563
+82111.29194638808 4.200048 2145.6233
+82112.29194643837 4.2001266 2145.4265
+82113.29194648867 4.2001662 2144.2456
+82114.29194653896 4.2002058 2140.7029
+82115.29194658925 4.2000875 2138.5378
+82116.29194663954 4.2001662 2136.373
+82117.29194668983 4.2001662 2135.3887
+82118.29194674012 4.2001662 2132.043
+82119.29194679041 4.200048 2132.4365
+82120.2919468407 4.2001662 2131.0588
+82121.291946891 4.2002449 2129.4844
+82122.29194694129 4.2002449 2126.7288
+82123.29194699158 4.2002058 2125.1543
+82124.29194704187 4.2002058 2124.7607
+82125.29194709216 4.2001266 2122.0054
+82126.29194714245 4.2001662 2120.8242
+82127.29194719275 4.2000875 2118.6594
+82128.29194724304 4.2000875 2114.7231
+82129.29194729333 4.2002058 2114.1326
+82130.29194734362 4.2002058 2114.1326
+82131.29194739391 4.2001662 2109.2122
+82132.2919474442 4.2001662 2109.8025
+82133.2919474945 4.2001662 2106.6536
+82134.29194754479 4.2002058 2106.8503
+82135.29194759508 4.2002845 2105.2756
+82136.29194764537 4.2000875 2102.5203
+82137.29194769566 4.2000875 2100.5522
+82138.29194774595 4.2000875 2099.3713
+82139.29194779624 4.2001662 2097.2063
+82140.29194784653 4.2000875 2094.8445
+82141.29194789683 4.2002058 2092.4827
+82142.29194794712 4.2002058 2091.6953
+82143.29194799741 4.2002449 2090.1208
+82144.2919480477 4.2002058 2090.1208
+82145.29194809799 4.2002058 2088.5464
+82146.29194814828 4.2000875 2085.7908
+82147.29194819857 4.1999693 2081.8545
+82148.29194824887 4.2001662 2080.28
+82149.29194829916 4.2002058 2082.248
+82150.29194834945 4.2001662 2079.2959
+82151.29194839974 4.2000875 2075.7532
+82152.29194845003 4.2002058 2073.9817
+82153.29194850032 4.2002449 2074.5723
+82154.29194855061 4.2001266 2070.8328
+82155.2919486009 4.2002058 2070.2424
+82156.2919486512 4.2002058 2068.0774
+82157.29194870149 4.2002449 2067.093
+82158.29194875178 4.2002449 2063.3538
+82159.29194880207 4.2001662 2061.3855
+82160.29194885236 4.2001662 2059.4175
+82161.29194890265 4.2002058 2055.8748
+82162.29194895294 4.2001662 2058.2366
+82163.29194900324 4.2002449 2057.4492
+82164.29194905353 4.2001662 2054.3
+82165.29194910382 4.2000875 2053.1191
+82166.29194915411 4.2001662 2051.9382
+82167.2919492044 4.2001266 2050.9541
+82168.2919492547 4.2001266 2048.002
+82169.29194930498 4.2001266 2047.4116
+82170.29194935528 4.2002449 2044.8529
+82171.29194940557 4.2001266 2041.3102
+82172.29194945586 4.2001662 2039.9325
+82173.29194950615 4.2001266 2037.9642
+82174.29194955644 4.2001662 2039.7357
+82175.29194960673 4.2002058 2035.7993
+82176.29194965702 4.2002058 2036.3898
+82177.29194970732 4.2001266 2034.4216
+82178.29194975761 4.200048 2031.2725
+82179.2919498079 4.2002449 2029.698
+82180.29194985819 4.2000875 2026.3521
+82181.29194990848 4.2002449 2025.5648
+82182.29194995877 4.2001662 2025.9584
+82183.29195000906 4.2002058 2020.054
+82184.29195005936 4.2001662 2019.4634
+82185.29195010965 4.2001266 2021.2349
+82186.29195015994 4.2001266 2018.6761
+82187.29195021023 4.2002058 2016.9049
+82188.29195026052 4.2001662 2013.7559
+82189.29195031081 4.2000875 2013.9525
+82190.2919503611 4.2001662 2010.8035
+82191.2919504114 4.2001662 2010.0162
+82192.29195046169 4.2000875 2008.0481
+82193.29195051198 4.2002845 2006.6703
+82194.29195056227 4.2001662 2007.064
+82195.29195061256 4.2001662 2003.5212
+82196.29195066285 4.2000875 2003.3245
+82197.29195071314 4.2001662 1998.9944
+82198.29195076344 4.2001662 1998.4041
+82199.29195081373 4.2000875 1998.0104
+82200.29195086402 4.2001266 1996.0422
+82201.29195091431 4.2002449 1994.2709
+82202.2919509646 4.2001662 1991.7123
+82203.2919510149 4.2000875 1990.5314
+82204.29195106518 4.2002449 1989.7441
+82205.29195111548 4.2002058 1985.611
+82206.29195116577 4.2001662 1985.4141
+82207.29195121606 4.2002449 1984.2332
+82208.29195126635 4.2002058 1983.0522
+82209.29195131664 4.2001662 1979.3127
+82210.29195136693 4.2001266 1977.5414
+82211.29195141722 4.2001662 1976.7542
+82212.29195146752 4.2002058 1977.3445
+82213.29195151781 4.2000875 1973.9987
+82214.2919515681 4.2002449 1971.2433
+82215.29195161839 4.2002845 1971.0464
+82216.29195166868 4.2001266 1970.0624
+82217.29195171897 4.2002449 1968.4878
+82218.29195176926 4.2001662 1966.5197
+82219.29195181956 4.2001266 1964.9452
+82220.29195186985 4.2001266 1962.7802
+82221.29195192014 4.2001662 1961.0087
+82222.29195197043 4.2001662 1959.4342
+82223.29195202072 4.2000875 1958.8438
+82224.29195207101 4.2001266 1956.2852
+82225.2919521213 4.2001662 1953.1361
+82226.2919521716 4.2002845 1953.3328
+82227.29195222189 4.2002058 1952.1519
+82228.29195227218 4.2002058 1951.1678
+82229.29195232247 4.2001662 1948.8062
+82230.29195237276 4.2001662 1947.4283
+82231.29195242305 4.2000875 1945.2634
+82232.29195247334 4.2002058 1943.8856
+82233.29195252364 4.2002449 1942.3112
+82234.29195257393 4.2001266 1939.9493
+82235.29195262422 4.2000875 1939.5557
+82236.29195267451 4.2001662 1938.9652
+82237.2919527248 4.2001266 1935.6194
+82238.2919527751 4.2001266 1932.8638
+82239.29195282538 4.2003236 1934.0448
+82240.29195287568 4.1999693 1929.3213
+82241.29195292597 4.2002449 1929.1244
+82242.29195297626 4.2001662 1926.5657
+82243.29195302655 4.2002449 1928.5338
+82244.29195307684 4.2002449 1925.5817
+82245.29195312713 4.2001662 1922.4326
+82246.29195317742 4.2001662 1920.4645
+82247.29195322772 4.2002058 1917.9058
+82248.291953278 4.2002058 1919.2834
+82249.2919533283 4.2002058 1917.3153
+82250.29195337859 4.200048 1915.7407
+82251.29195342888 4.2001662 1913.5758
+82252.29195347917 4.2001662 1912.5917
+82253.29195352946 4.2003632 1911.214
+82254.29195357976 4.2001662 1908.4586
+82255.29195363005 4.2000875 1905.3094
+82256.29195368034 4.2001266 1906.4904
+82257.29195373063 4.2001662 1904.1285
+82258.29195378092 4.2002845 1902.1604
+82259.29195383121 4.2001662 1901.9636
+82260.2919538815 4.2000875 1900.1921
+82261.2919539318 4.2002058 1896.4526
+82262.29195398209 4.200048 1897.2399
+82263.29195403238 4.2002058 1895.6654
+82264.29195408267 4.2002058 1890.9418
+82265.29195413296 4.2000875 1890.9418
+82266.29195418325 4.2001266 1888.58
+82267.29195423354 4.2002449 1887.9896
+82268.29195428384 4.200048 1884.4468
+82269.29195433413 4.2002058 1884.0531
+82270.29195438442 4.2001662 1881.8882
+82271.29195443471 4.2000875 1881.6913
+82272.291954485 4.2001266 1882.085
+82273.29195453529 4.2001662 1878.3456
+82274.29195458558 4.2001266 1876.3772
+82275.29195463588 4.2001662 1875.59
+82276.29195468617 4.2000875 1874.4091
+82277.29195473646 4.2001662 1874.4091
+82278.29195478675 4.2001662 1867.5206
+82279.29195483704 4.2001266 1868.5046
+82280.29195488733 4.2001266 1866.7333
+82281.29195493762 4.2002058 1866.1428
+82282.29195498792 4.2001266 1862.9938
+82283.2919550382 4.2001662 1863.9779
+82284.2919550885 4.2002058 1860.632
+82285.29195513879 4.2001266 1858.2701
+82286.29195518908 4.2001266 1856.4988
+82287.29195523937 4.2001662 1855.5148
+82288.29195528966 4.2001266 1854.7274
+82289.29195533996 4.200048 1850.791
+82290.29195539025 4.2002058 1852.1688
+82291.29195544054 4.2002058 1851.1848
+82292.29195549083 4.2001266 1847.642
+82293.29195554112 4.2002058 1847.4452
+82294.29195559141 4.2001662 1847.0515
+82295.2919556417 4.2001662 1844.0992
+82296.291955692 4.2001266 1841.5405
+82297.29195574229 4.2002449 1840.7533
+82298.29195579258 4.2001662 1840.7533
+82299.29195584287 4.2000875 1836.817
+82300.29195589316 4.2000875 1836.6202
+82301.29195594345 4.2002058 1834.4552
+82302.29195599374 4.2001662 1833.4712
+82303.29195604404 4.2001662 1831.3062
+82304.29195609433 4.2002058 1827.3699
+82305.29195614462 4.2002058 1827.9602
+82306.29195619491 4.2001266 1823.8271
+82307.2919562452 4.2001266 1826.3856
+82308.29195629549 4.2003236 1824.4175
+82309.29195634578 4.2001662 1821.6621
+82310.29195639607 4.2000875 1819.4972
+82311.29195644637 4.2001662 1817.9225
+82312.29195649666 4.2001266 1817.5289
+82313.29195654695 4.2001266 1814.9703
+82314.29195659724 4.2001662 1813.0022
+82315.29195664753 4.2001266 1813.0022
+82316.29195669782 4.2002058 1810.4435
+82317.29195674811 4.2002058 1809.4595
+82318.2919567984 4.2001662 1809.8531
+82319.2919568487 4.2002449 1806.9008
+82320.29195689899 4.2000875 1805.3263
+82321.29195694928 4.2001662 1803.9485
+82322.29195699957 4.2001662 1800.0122
+82323.29195704986 4.2000875 1800.4058
+82324.29195710015 4.2002058 1799.0282
+82325.29195715045 4.2000875 1795.8792
+82326.29195720074 4.2001662 1794.5013
+82327.29195725103 4.200048 1795.0917
+82328.29195730132 4.2000875 1793.1235
+82329.29195735161 4.2001662 1793.3204
+82330.2919574019 4.2000875 1790.7617
+82331.2919574522 4.2001266 1788.3999
+82332.29195750249 4.2002058 1787.2191
+82333.29195755278 4.2001662 1786.2349
+82334.29195760307 4.2001266 1783.6764
+82335.29195765336 4.2001662 1784.2667
+82336.29195770365 4.2001662 1782.8892
+82337.29195775394 4.2001662 1778.3623
+82338.29195780423 4.2002058 1778.7559
+82339.29195785453 4.2001662 1775.8037
+82340.29195790482 4.2000089 1774.8196
+82341.29195795511 4.2001662 1772.0642
+82342.2919580054 4.2001266 1772.0642
+82343.29195805569 4.2001662 1770.0959
+82344.29195810598 4.2001662 1769.1118
+82345.29195815627 4.2001662 1766.3564
+82346.29195820657 4.2002058 1765.3724
+82347.29195825686 4.2002449 1764.3883
+82348.29195830715 4.2002058 1762.0265
+82349.29195835744 4.2001662 1763.2074
+82350.29195840773 4.2001266 1761.6328
+82351.29195845802 4.2001662 1759.8615
+82352.29195850831 4.2001662 1755.7284
+82353.2919585586 4.2001662 1755.925
+82354.2919586089 4.200048 1751.2015
+82355.29195865919 4.2002058 1751.9888
+82356.29195870948 4.2002058 1751.9888
+82357.29195875977 4.2001662 1749.0365
+82358.29195881006 4.2001662 1747.4619
+82359.29195886035 4.2000875 1747.4619
+82360.29195891065 4.2000875 1743.9193
+82361.29195896094 4.2001662 1745.8875
+82362.29195901123 4.2000089 1742.7384
+82363.29195906152 4.2001266 1742.9352
+82364.29195911181 4.2002058 1739.786
+82365.2919591621 4.2001662 1739.5894
+82366.2919592124 4.2002058 1736.2434
+82367.29195926269 4.200048 1735.4561
+82368.29195931298 4.2000875 1734.6688
+82369.29195936327 4.2002449 1732.8976
+82370.29195941356 4.2001662 1731.7167
+82371.29195946385 4.2001266 1728.7643
+82372.29195951414 4.2001266 1727.7802
+82373.29195956443 4.2000875 1727.1898
+82374.29195961473 4.2001266 1722.2693
+82375.29195966502 4.2000875 1723.2535
+82376.29195971531 4.2001662 1721.8757
+82377.2919597656 4.2001266 1722.8599
+82378.29195981589 4.2001266 1719.9076
+82379.29195986618 4.2001266 1718.9236
+82380.29195991647 4.2001266 1716.3649
+82381.29195996677 4.2000875 1714.1998
+82382.29196001706 4.2002845 1714.9871
+82383.29196006735 4.2001662 1711.6412
+82384.29196011764 4.2001266 1709.0826
+82385.29196016793 4.2001662 1705.5399
+82386.29196021822 4.2002058 1708.8859
+82387.29196026851 4.2002449 1706.1302
+82388.2919603188 4.2002449 1704.9493
+82389.2919603691 4.2001662 1703.9653
+82390.29196041939 4.2001266 1702.3909
+82391.29196046968 4.2002449 1701.21
+82392.29196051997 4.2002058 1699.4386
+82393.29196057026 4.2002058 1697.0768
+82394.29196062055 4.2001266 1695.699
+82395.29196067085 4.2001266 1695.1086
+82396.29196072114 4.2000875 1691.369
+82397.29196077143 4.2000875 1692.5499
+82398.29196082172 4.2002058 1690.7787
+82399.29196087201 4.2002058 1690.5818
+82400.2919609223 4.2001266 1689.0072
+82401.2919609726 4.2001662 1686.4487
+82402.29196102289 4.2002449 1685.8582
+82403.29196107318 4.2001266 1683.2994
+82404.29196112347 4.2001266 1682.7091
+82405.29196117376 4.2002449 1681.1345
+82406.29196122405 4.2001266 1684.0869
+82407.29196127434 4.2002058 1680.1504
+82408.29196132463 4.2001662 1677.5919
+82409.29196137493 4.2002058 1678.1823
+82410.29196142522 4.2002058 1677.395
+82411.29196147551 4.2001266 1675.0332
+82412.2919615258 4.2000875 1668.9319
+82413.29196157609 4.2001662 1673.262
+82414.29196162638 4.2001266 1668.5382
+82415.29196167667 4.2001662 1670.5063
+82416.29196172697 4.2000089 1667.3573
+82417.29196177726 4.2001266 1665.7828
+82418.29196182755 4.2001266 1662.8304
+82419.29196187784 4.2002449 1664.9955
+82420.29196192813 4.200048 1662.437
+82421.29196197842 4.2001662 1659.8783
+82422.29196202871 4.2002058 1657.7133
+82423.291962079 4.2001662 1657.1229
+82424.2919621293 4.2001662 1655.7451
+82425.29196217959 4.2002058 1656.7292
+82426.29196222988 4.2001266 1655.942
+82427.29196228017 4.2001662 1649.8406
+82428.29196233046 4.2001266 1648.6597
+82429.29196238075 4.2001662 1650.6279
+82430.29196243105 4.2001266 1646.6915
+82431.29196248134 4.2002058 1644.5265
+82432.29196253163 4.2001662 1646.6915
+82433.29196258192 4.2000875 1642.3616
+82434.29196263221 4.2003236 1641.7711
+82435.2919626825 4.2000875 1642.3616
+82436.2919627328 4.2000875 1638.4252
+82437.29196278309 4.2002449 1637.6381
+82438.29196283338 4.2001662 1637.8347
+82439.29196288367 4.2001662 1637.4412
+82440.29196293396 4.2001266 1635.8666
+82441.29196298425 4.2002058 1634.4888
+82442.29196303454 4.2001662 1632.3239
+82443.29196308483 4.2000875 1628.3875
+82444.29196313513 4.2002845 1630.3557
+82445.29196318542 4.2001266 1628.1907
+82446.29196323571 4.2000875 1624.6481
+82447.291963286 4.2000875 1623.0735
+82448.29196333629 4.2002058 1624.0575
+82449.29196338658 4.2001266 1622.0894
+82450.29196343687 4.2001266 1619.1372
+82451.29196348717 4.2002449 1619.9244
+82452.29196353746 4.2001662 1618.5466
+82453.29196358775 4.2001266 1617.7594
+82454.29196363804 4.2000875 1612.8389
+82455.29196368833 4.2001266 1613.823
+82456.29196373862 4.2001266 1612.8389
+82457.29196378891 4.2001266 1611.4613
+82458.2919638392 4.2000875 1610.4772
+82459.2919638895 4.2002058 1609.8867
+82460.29196393979 4.2000875 1605.9504
+82461.29196399008 4.2000875 1607.5248
+82462.29196404037 4.2001266 1605.3599
+82463.29196409066 4.2001662 1604.179
+82464.29196414095 4.2001662 1602.4076
+82465.29196419124 4.2001662 1602.4076
+82466.29196424154 4.2002845 1601.4236
+82467.29196429183 4.2001662 1598.2745
+82468.29196434212 4.2001266 1594.7317
+82469.29196439241 4.2001266 1597.2904
+82470.2919644427 4.2001662 1591.7795
+82471.291964493 4.2001662 1592.1731
+82472.29196454328 4.2001662 1590.5986
+82473.29196459358 4.200048 1589.024
+82474.29196464387 4.2002058 1586.2687
+82475.29196469416 4.2000089 1587.2527
+82476.29196474445 4.2000875 1586.2687
+82477.29196479474 4.2001266 1584.694
+82478.29196484503 4.2001266 1582.9227
+82479.29196489532 4.2001662 1582.3324
+82480.29196494562 4.2002058 1579.1831
+82481.29196499591 4.2001266 1581.1514
+82482.2919650462 4.2002058 1576.8214
+82483.29196509649 4.2002058 1576.8214
+82484.29196514678 4.2002058 1576.8214
+82485.29196519707 4.2001266 1573.6724
+82486.29196524736 4.2001266 1572.4915
+82487.29196529766 4.2001662 1572.2947
+82488.29196534795 4.2002058 1569.9327
+82489.29196539824 4.2001662 1568.9487
+82490.29196544853 4.2001662 1566.9806
+82491.29196549882 4.200048 1564.2251
+82492.29196554911 4.2001662 1565.2091
+82493.2919655994 4.2002058 1561.4697
+82494.2919656497 4.2001662 1560.4856
+82495.29196569999 4.2000089 1561.6665
+82496.29196575028 4.2002058 1559.1078
+82497.29196580057 4.2002058 1557.1396
+82498.29196585086 4.2001266 1556.9429
+82499.29196590115 4.2002058 1554.9747
+82500.29196595144 4.2001266 1553.9906
+82501.29196600174 4.2001662 1553.2032
+82502.29196605203 4.2001266 1552.8097
+82503.29196610232 4.2001266 1549.6606
+82504.29196615261 4.2001662 1547.2988
+82505.2919662029 4.2001266 1546.3147
+82506.2919662532 4.2001266 1545.3307
+82507.29196630348 4.2001266 1543.5592
+82508.29196635378 4.2002058 1544.3466
+82509.29196640407 4.2000875 1542.772
+82510.29196645436 4.2002845 1541.9847
+82511.29196650465 4.2000875 1536.8674
+82512.29196655494 4.2002058 1537.0642
+82513.29196660523 4.2001662 1536.8674
+82514.29196665552 4.2000875 1534.1121
+82515.29196670582 4.2001266 1531.947
+82516.29196675611 4.2002449 1532.5375
+82517.2919668064 4.2001662 1532.3407
+82518.29196685669 4.200048 1526.0425
+82519.29196690698 4.2000875 1529.7821
+82520.29196695727 4.2001266 1526.0425
+82521.29196700756 4.2001662 1526.0425
+82522.29196705786 4.2000875 1523.4839
+82523.29196710815 4.2002449 1523.8774
+82524.29196715844 4.2001266 1522.6967
+82525.29196720873 4.2000089 1520.7284
+82526.29196725902 4.2001662 1517.1858
+82527.29196730931 4.2001266 1516.7921
+82528.2919673596 4.200048 1516.0049
+82529.2919674099 4.2000875 1513.2494
+82530.29196746019 4.2001662 1514.4303
+82531.29196751048 4.2001662 1511.0844
+82532.29196756077 4.2000875 1512.8558
+82533.29196761106 4.2001266 1510.2971
+82534.29196766135 4.2001266 1509.5099
+82535.29196771164 4.2001266 1508.5259
+82536.29196776194 4.2002058 1507.5417
+82537.29196781223 4.2001266 1505.3768
+82538.29196786252 4.2002449 1504.3926
+82539.29196791281 4.2002058 1501.0468
+82540.2919679631 4.2001662 1501.2435
+82541.2919680134 4.2002058 1501.6372
+82542.29196806368 4.2001662 1500.85
+82543.29196811398 4.2000875 1498.4882
+82544.29196816427 4.2001662 1499.4722
+82545.29196821456 4.2001662 1493.9613
+82546.29196826485 4.2001266 1493.7644
+82547.29196831514 4.2001266 1493.9613
+82548.29196836543 4.2001662 1491.2059
+82549.29196841572 4.2001266 1492.3867
+82550.29196846602 4.2002058 1491.5995
+82551.2919685163 4.2001662 1487.2695
+82552.2919685666 4.2001662 1485.8917
+82553.29196861689 4.2002058 1486.0886
+82554.29196866718 4.2002058 1485.6951
+82555.29196871747 4.2000875 1481.5618
+82556.29196876776 4.2001266 1484.7109
+82557.29196881806 4.2001266 1479.0032
+82558.29196886835 4.2002058 1480.9713
+82559.29196891864 4.2001266 1477.6255
+82560.29196896893 4.2001266 1478.4127
+82561.29196901922 4.2001266 1474.2795
+82562.29196906951 4.2001266 1471.5242
+82563.2919691198 4.2002449 1474.6732
+82564.2919691701 4.2000875 1472.7051
+82565.29196922039 4.2000089 1468.5718
+82566.29196927068 4.2001662 1470.3433
+82567.29196932097 4.200048 1467.1942
+82568.29196937126 4.2001662 1463.6515
+82569.29196942155 4.2000875 1464.6355
+82570.29196947184 4.2001266 1465.2261
+82571.29196952214 4.2002845 1464.8324
+82572.29196957243 4.2002058 1463.2578
+82573.29196962272 4.2001662 1461.0928
+82574.29196967301 4.2001266 1462.0768
+82575.2919697233 4.2001662 1457.7468
+82576.29196977359 4.2002058 1460.6992
+82577.29196982388 4.2000875 1455.7787
+82578.29196987418 4.2002058 1455.7787
+82579.29196992447 4.2001266 1454.5978
+82580.29196997476 4.2002449 1452.8265
+82581.29197002505 4.1999693 1450.4647
+82582.29197007534 4.2002845 1452.0393
+82583.29197012563 4.2001266 1450.6615
+82584.29197017592 4.2002058 1449.2837
+82585.29197022622 4.2001662 1446.7252
+82586.2919702765 4.2001662 1446.1346
+82587.2919703268 4.2002058 1445.9379
+82588.29197037709 4.2002058 1442.1984
+82589.29197042738 4.2001662 1440.427
+82590.29197047767 4.2000875 1440.6238
+82591.29197052796 4.2001266 1440.8207
+82592.29197057826 4.2000875 1439.6398
+82593.29197062855 4.2001662 1436.2938
+82594.29197067884 4.2001662 1437.6716
+82595.29197072913 4.2002449 1435.3097
+82596.29197077942 4.2001662 1433.1448
+82597.29197082971 4.2002449 1430.783
+82598.29197088 4.2002058 1431.3734
+82599.2919709303 4.2001266 1431.9639
+82600.29197098059 4.2001266 1429.2085
+82601.29197103088 4.2001266 1427.437
+82602.29197108117 4.2002058 1427.437
+82603.29197113146 4.2001662 1427.0435
+82604.29197118175 4.200048 1426.0594
+82605.29197123204 4.200048 1424.288
+82606.29197128233 4.2001662 1421.9261
+82607.29197133263 4.2002449 1421.3357
+82608.29197138292 4.2001662 1421.1389
+82609.29197143321 4.2001662 1419.3676
+82610.2919714835 4.2002058 1417.9899
+82611.29197153379 4.2001662 1416.4154
+82612.29197158408 4.2002058 1412.8726
+82613.29197163437 4.2000875 1413.6598
+82614.29197168467 4.2002449 1414.6439
+82615.29197173496 4.2002058 1412.2821
+82616.29197178525 4.2001662 1412.6758
+82617.29197183554 4.2001662 1408.3458
+82618.29197188583 4.2002449 1408.3458
+82619.29197193612 4.2001662 1403.819
+82620.29197198641 4.2002449 1406.1808
+82621.2919720367 4.2001662 1404.803
+82622.291972087 4.2001266 1400.0795
+82623.29197213729 4.2001662 1403.6221
+82624.29197218758 4.2002058 1402.6381
+82625.29197223787 4.200048 1397.324
+82626.29197228816 4.2000089 1399.0955
+82627.29197233845 4.2002058 1398.3081
+82628.29197238875 4.2001662 1397.7177
+82629.29197243904 4.2001662 1394.7655
+82630.29197248933 4.2001662 1395.7495
+82631.29197253962 4.2000875 1391.4196
+82632.29197258991 4.2002058 1392.7971
+82633.2919726402 4.2001266 1390.0417
+82634.2919726905 4.2001662 1390.829
+82635.29197274079 4.2002058 1389.0577
+82636.29197279108 4.2001662 1389.2545
+82637.29197284137 4.2000875 1386.3022
+82638.29197289166 4.2001266 1386.499
+82639.29197294195 4.2002058 1385.515
+82640.29197299224 4.2002058 1383.1532
+82641.29197304253 4.2001266 1384.1372
+82642.29197309283 4.2002449 1382.1691
+82643.29197314312 4.2002058 1379.02
+82644.29197319341 4.200048 1378.6263
+82645.2919732437 4.2001662 1378.0359
+82646.29197329399 4.2002058 1378.0359
+82647.29197334428 4.2002058 1376.2646
+82648.29197339457 4.2002845 1373.1155
+82649.29197344487 4.2001662 1375.0837
+82650.29197349516 4.2001662 1373.5092
+82651.29197354545 4.200048 1367.0142
+82652.29197359574 4.2001266 1367.6046
+82653.29197364603 4.2000875 1369.9663
+82654.29197369632 4.2001662 1367.4078
+82655.29197374661 4.2001266 1365.8333
+82656.2919737969 4.2001662 1367.2109
+82657.2919738472 4.2001662 1363.2747
+82658.29197389749 4.2001266 1363.8651
+82659.29197394778 4.2001266 1362.6842
+82660.29197399807 4.2002058 1363.2747
+82661.29197404836 4.2001662 1358.3541
+82662.29197409865 4.2002058 1360.7161
+82663.29197414895 4.2002058 1358.551
+82664.29197419924 4.2001266 1356.386
+82665.29197424953 4.2001266 1355.0083
+82666.29197429982 4.2001266 1355.402
+82667.29197435011 4.2001266 1353.2369
+82668.2919744004 4.2002058 1354.6147
+82669.2919744507 4.2001662 1351.8593
+82670.29197450099 4.2002058 1349.6942
+82671.29197455128 4.2001266 1346.5452
+82672.29197460157 4.2000875 1347.923
+82673.29197465186 4.2002058 1347.3324
+82674.29197470215 4.2002058 1346.1515
+82675.29197475244 4.2002058 1344.7738
+82676.29197480273 4.2001662 1342.6089
+82677.29197485303 4.2001662 1342.2152
+82678.29197490332 4.2002058 1340.4438
+82679.29197495361 4.2002058 1340.0502
+82680.2919750039 4.2002449 1339.4598
+82681.29197505419 4.2000875 1339.2629
+82682.29197510448 4.2001662 1336.5074
+82683.29197515477 4.2001662 1335.7202
+82684.29197520507 4.2002058 1333.1615
+82685.29197525536 4.2002058 1334.1456
+82686.29197530565 4.2001266 1331.3903
+82687.29197535594 4.2001662 1330.2094
+82688.29197540623 4.2002058 1326.6665
+82689.29197545652 4.2001266 1328.6349
+82690.29197550681 4.2001662 1327.8475
+82691.2919755571 4.2001266 1322.7302
+82692.2919756074 4.2001662 1325.8794
+82693.29197565769 4.200048 1323.7144
+82694.29197570798 4.2002058 1322.1399
+82695.29197575827 4.2001662 1322.5334
+82696.29197580856 4.2001266 1316.629
+82697.29197585885 4.2001662 1319.7781
+82698.29197590915 4.2002058 1318.2035
+82699.29197595944 4.2001266 1315.0544
+82700.29197600973 4.2000875 1316.4321
+82701.29197606002 4.2002058 1314.8575
+82702.29197611031 4.2002058 1313.8734
+82703.2919761606 4.2001662 1313.0862
+82704.2919762109 4.2001662 1311.9053
+82705.29197626119 4.2001266 1310.5276
+82706.29197631148 4.2002058 1310.5276
+82707.29197636177 4.2000875 1306.1976
+82708.29197641206 4.2001662 1306.3944
+82709.29197646235 4.2002449 1307.1816
+82710.29197651264 4.2001662 1306.1976
+82711.29197656293 4.2000875 1303.4423
+82712.29197661323 4.2001266 1301.0803
+82713.29197666352 4.2000875 1301.6708
+82714.29197671381 4.2001662 1300.6866
+82715.2919767641 4.2001266 1299.5057
+82716.29197681439 4.2001662 1298.3248
+82717.29197686468 4.2001662 1296.9473
+82718.29197691497 4.2001662 1295.7664
+82719.29197696527 4.2002449 1295.3727
+82720.29197701556 4.2001662 1292.6173
+82721.29197706585 4.2001662 1291.0426
+82722.29197711614 4.200048 1292.6173
+82723.29197716643 4.2002449 1290.8458
+82724.29197721672 4.2002058 1290.0586
+82725.29197726701 4.2002058 1287.1063
+82726.2919773173 4.2001266 1287.3032
+82727.2919773676 4.2001266 1284.9414
+82728.29197741789 4.2002058 1283.9573
+82729.29197746818 4.2001266 1281.3987
+82730.29197751847 4.2000875 1280.4146
+82731.29197756876 4.2002058 1281.9891
+82732.29197761905 4.2000875 1279.2336
+82733.29197766935 4.2001662 1280.4146
+82734.29197771964 4.2000875 1276.4783
+82735.29197776993 4.2002449 1275.8877
+82736.29197782022 4.2002058 1277.4623
+82737.29197787051 4.2002449 1275.8877
+82738.2919779208 4.2001266 1271.9514
+82739.2919779711 4.2002058 1274.1165
+82740.29197802139 4.2001662 1269.9833
+82741.29197807168 4.2001266 1271.9514
+82742.29197812197 4.2001266 1269.7865
+82743.29197817226 4.2001662 1268.9993
+82744.29197822255 4.2001266 1265.6533
+82745.29197827284 4.2001662 1266.8342
+82746.29197832313 4.2002058 1264.866
+82747.29197837343 4.2001266 1264.0787
+82748.29197842372 4.2002845 1263.8818
+82749.29197847401 4.2000875 1261.1265
+82750.2919785243 4.2001662 1261.1265
+82751.29197857459 4.2001662 1258.9615
+82752.29197862488 4.2001662 1258.1741
+82753.29197867517 4.2001266 1257.5837
+82754.29197872547 4.2001266 1254.8284
+82755.29197877576 4.2002058 1255.4187
+82756.29197882605 4.2002058 1254.6315
+82757.29197887634 4.200048 1253.0569
+82758.29197892663 4.2001662 1252.2697
+82759.29197897692 4.2001662 1248.3334
+82760.29197902721 4.2000875 1249.3175
+82761.2919790775 4.2002449 1250.6951
+82762.2919791278 4.2002449 1249.5143
+82763.29197917809 4.2003236 1246.1685
+82764.29197922838 4.2000875 1245.3811
+82765.29197927867 4.2001662 1244.7906
+82766.29197932896 4.2001266 1240.4607
+82767.29197937925 4.2000875 1241.6416
+82768.29197942954 4.2000875 1242.0352
+82769.29197947984 4.2001662 1239.083
+82770.29197953013 4.2001662 1238.6893
+82771.29197958042 4.2000875 1238.0989
+82772.29197963071 4.2001266 1236.1307
+82773.291979681 4.2001266 1234.7531
+82774.2919797313 4.2002449 1235.934
+82775.29197978158 4.2001266 1232.9816
+82776.29197983188 4.2001266 1232.7848
+82777.29197988217 4.2002058 1231.6039
+82778.29197993246 4.2001266 1231.2102
+82779.29197998275 4.2001662 1231.8007
+82780.29198003304 4.2002449 1227.0771
+82781.29198008333 4.2002058 1228.4548
+82782.29198013362 4.2001266 1225.5026
+82783.29198018392 4.2002058 1226.2898
+82784.29198023421 4.2002449 1223.5343
+82785.2919802845 4.2000875 1222.3535
+82786.29198033479 4.2001662 1221.7631
+82787.29198038508 4.2000875 1221.9598
+82788.29198043537 4.2002449 1220.7789
+82789.29198048566 4.2001266 1219.2043
+82790.29198053596 4.2001662 1220.5822
+82791.29198058625 4.2001266 1218.6139
+82792.29198063654 4.2001662 1213.8904
+82793.29198068683 4.2001662 1215.4648
+82794.29198073712 4.2001662 1213.2999
+82795.29198078741 4.2001662 1212.7094
+82796.2919808377 4.200048 1209.954
+82797.291980888 4.2001266 1209.3635
+82798.29198093829 4.2002845 1211.1349
+82799.29198098858 4.2001662 1208.5763
+82800.29198103887 4.2002058 1207.3954
+82801.29198108916 4.200048 1201.6877
+82802.29198113945 4.2002058 1204.4431
+82803.29198118974 4.2001662 1204.6399
+82804.29198124004 4.2001662 1203.0654
+82805.29198129033 4.2001266 1202.6718
+82806.29198134062 4.2002058 1199.9163
+82807.29198139091 4.2002058 1199.5227
+82808.2919814412 4.2002058 1199.5227
+82809.2919814915 4.200048 1197.1609
+82810.29198154178 4.2002058 1194.9958
+82811.29198159208 4.2002058 1195.3895
+82812.29198164237 4.2001662 1194.2086
+82813.29198169266 4.2001266 1191.8468
+82814.29198174295 4.2002449 1191.65
+82815.29198179324 4.2002449 1190.2723
+82816.29198184353 4.2000875 1189.0913
+82817.29198189382 4.200048 1189.6819
+82818.29198194412 4.2002058 1187.7136
+82819.2919819944 4.2002058 1188.8945
+82820.2919820447 4.2000875 1186.7295
+82821.29198209499 4.2001266 1184.9583
+82822.29198214528 4.2000875 1182.006
+82823.29198219557 4.2000875 1181.6123
+82824.29198224586 4.2002449 1182.99
+82825.29198229616 4.2000875 1180.2346
+82826.29198234645 4.2002058 1179.8409
+82827.29198239674 4.2001662 1178.66
+82828.29198244703 4.2001662 1176.6919
+82829.29198249732 4.2000875 1174.5269
+82830.29198254761 4.2001662 1176.1014
+82831.2919825979 4.200048 1175.3141
+82832.2919826482 4.200048 1173.9364
+82833.29198269849 4.2001662 1171.5746
+82834.29198274878 4.2001662 1172.5587
+82835.29198279907 4.2001266 1171.9683
+82836.29198284936 4.200048 1168.2288
+82837.29198289965 4.2001662 1168.032
+82838.29198294994 4.2001662 1165.8669
+82839.29198300024 4.2000875 1166.0637
+82840.29198305053 4.2002058 1164.0956
+82841.29198310082 4.2002449 1163.7019
+82842.29198315111 4.2000875 1163.7019
+82843.2919832014 4.2002058 1163.7019
+82844.2919832517 4.2002058 1161.537
+82845.29198330198 4.2001662 1161.1433
+82846.29198335228 4.2001266 1157.7975
+82847.29198340257 4.2001662 1156.4197
+82848.29198345286 4.2001266 1156.6166
+82849.29198350315 4.2001266 1153.4674
+82850.29198355344 4.2002058 1156.6166
+82851.29198360373 4.2000875 1153.4674
+82852.29198365402 4.2001662 1153.8611
+82853.29198370432 4.2000875 1151.696
+82854.2919837546 4.2001662 1151.4993
+82855.2919838049 4.2002058 1148.9407
+82856.29198385519 4.2002058 1150.712
+82857.29198390548 4.2000875 1146.7756
+82858.29198395577 4.2001266 1146.7756
+82859.29198400606 4.2001662 1145.7916
+82860.29198405636 4.2002845 1147.1693
+82861.29198410665 4.2002058 1145.2012
+82862.29198415694 4.2001662 1140.4775
+82863.29198420723 4.2001266 1143.4297
+82864.29198425752 4.2000875 1140.8711
+82865.29198430781 4.2002058 1139.4934
+82866.2919843581 4.200048 1138.1157
+82867.2919844084 4.2000089 1136.9348
+82868.29198445869 4.2001662 1139.4934
+82869.29198450898 4.2001266 1134.3762
+82870.29198455927 4.2001662 1132.6047
+82871.29198460956 4.2002058 1133.9825
+82872.29198465985 4.2001662 1133.5889
+82873.29198471014 4.2002449 1131.4238
+82874.29198476044 4.2002058 1133.1952
+82875.29198481073 4.2000875 1131.0303
+82876.29198486102 4.2002845 1129.0621
+82877.29198491131 4.2002449 1128.6685
+82878.2919849616 4.2000875 1126.1099
+82879.29198501189 4.2001266 1127.4875
+82880.29198506218 4.2002058 1124.7322
+82881.29198511248 4.2001662 1124.1417
+82882.29198516277 4.2002449 1124.1417
+82883.29198521306 4.200048 1121.1893
+82884.29198526335 4.2001266 1120.5989
+82885.29198531364 4.2001662 1119.8116
+82886.29198536393 4.2001266 1121.3862
+82887.29198541422 4.2001266 1116.8594
+82888.29198546452 4.2001266 1115.8754
+82889.2919855148 4.2001662 1116.4658
+82890.2919855651 4.2001662 1115.2849
+82891.29198561539 4.2002058 1112.3326
+82892.29198566568 4.2001662 1116.0721
+82893.29198571597 4.2001662 1111.7422
+82894.29198576626 4.2001662 1112.5294
+82895.29198581656 4.2002058 1112.5294
+82896.29198586685 4.2002058 1109.3804
+82897.29198591714 4.200048 1108.593
+82898.29198596743 4.2002845 1111.1517
+82899.29198601772 4.2001266 1107.4122
+82900.29198606801 4.2000875 1107.2153
+82901.08998610824 4.2000875 1102.8854
+82901.09198610834 4.2001266 1101.5077
+82901.13798611052 4.1862292 0.0
+82902.13798616081 4.1857176 0.0
+82903.1379862111 4.1854815 0.0
+82904.1379862614 4.1852846 0.0
+82905.13798631169 4.1850481 0.0
+82906.13798636198 4.185009 0.0
+82907.13798641227 4.1849303 0.0
+82908.13798646256 4.184576 0.0
+82909.13798651285 4.1846151 0.0
+82910.13798656315 4.1844578 0.0
+82911.13798661344 4.1843395 0.0
+82912.13798666373 4.1842608 0.0
+82913.13798671402 4.1841035 0.0
+82914.13798676431 4.1839852 0.0
+82915.1379868146 4.1838675 0.0
+82916.1379868649 4.1837883 0.0
+82917.13798691519 4.1837883 0.0
+82918.13798696548 4.1837096 0.0
+82919.13798701577 4.1835523 0.0
+82920.13798706606 4.1835127 0.0
+82921.13798711635 4.1833949 0.0
+82922.13798716664 4.1832767 0.0
+82923.13798721693 4.1833553 0.0
+82924.13798726723 4.183198 0.0
+82925.13798731752 4.1830797 0.0
+82926.13798736781 4.1830797 0.0
+82927.1379874181 4.1829224 0.0
+82928.13798746839 4.1830797 0.0
+82929.13798751868 4.182765 0.0
+82930.13798756897 4.1828828 0.0
+82931.13798761927 4.1826863 0.0
+82932.13798766956 4.1827254 0.0
+82933.13798771985 4.1826072 0.0
+82934.13798777014 4.1825681 0.0
+82935.13798782043 4.1826072 0.0
+82936.13798787072 4.1823711 0.0
+82937.13798792101 4.1823711 0.0
+82938.1379879713 4.1823711 0.0
+82939.1379880216 4.182332 0.0
+82940.13798807189 4.1822529 0.0
+82941.13798812218 4.1822138 0.0
+82942.13798817247 4.1821742 0.0
+82943.13798822276 4.1820564 0.0
+82944.13798827305 4.1820168 0.0
+82945.13798832335 4.1819773 0.0
+82946.13798837364 4.1818986 0.0
+82947.13798842393 4.1819773 0.0
+82948.13798847422 4.1818986 0.0
+82949.13798852451 4.1818986 0.0
+82950.1379885748 4.1817017 0.0
+82951.1379886251 4.1816626 0.0
+82952.13798867539 4.1816626 0.0
+82953.13798872568 4.1817017 0.0
+82954.13798877597 4.1815443 0.0
+82955.13798882626 4.1814656 0.0
+82956.13798887655 4.1815443 0.0
+82957.13798892684 4.1814656 0.0
+82958.13798897713 4.1813869 0.0
+82959.13798902743 4.1813083 0.0
+82960.13798907772 4.1813083 0.0
+82961.13798912801 4.1811509 0.0
+82962.1379891783 4.18119 0.0
+82963.13798922859 4.18119 0.0
+82964.13798927888 4.1810718 0.0
+82965.13798932917 4.1810327 0.0
+82966.13798937947 4.1809931 0.0
+82967.13798942976 4.1810327 0.0
+82968.13798948005 4.1809931 0.0
+82969.13798953034 4.1809144 0.0
+82970.13798958063 4.1808753 0.0
+82971.13798963092 4.1808357 0.0
+82972.13798968121 4.1808753 0.0
+82973.1379897315 4.1808357 0.0
+82974.1379897818 4.1808357 0.0
+82975.13798983209 4.1807175 0.0
+82976.13798988238 4.1806388 0.0
+82977.13798993267 4.1805997 0.0
+82978.13798998296 4.1806784 0.0
+82979.13799003325 4.1805601 0.0
+82980.13799008355 4.180521 0.0
+82981.13799013384 4.1804814 0.0
+82982.13799018413 4.1804814 0.0
+82983.13799023442 4.1804028 0.0
+82984.13799028471 4.1804419 0.0
+82985.137990335 4.1804419 0.0
+82986.1379903853 4.1803241 0.0
+82987.13799043559 4.1802845 0.0
+82988.13799048588 4.1803241 0.0
+82989.13799053617 4.1801271 0.0
+82990.13799058646 4.1801667 0.0
+82991.13799063675 4.1801667 0.0
+82992.13799068704 4.1801667 0.0
+82993.13799073733 4.1800876 0.0
+82994.13799078763 4.1800485 0.0
+82995.13799083792 4.1800089 0.0
+82996.13799088821 4.1800089 0.0
+82997.1379909385 4.1800089 0.0
+82998.13799098879 4.1800089 0.0
+82999.13799103908 4.1799302 0.0
+83000.13799108937 4.1798911 0.0
+83001.13799113967 4.1798515 0.0
+83002.13799118996 4.179812 0.0
+83003.13799124025 4.1797729 0.0
+83004.13799129054 4.1798515 0.0
+83005.13799134083 4.1797333 0.0
+83006.13799139112 4.1797333 0.0
+83007.13799144141 4.1796155 0.0
+83008.1379914917 4.1795759 0.0
+83009.137991542 4.1794972 0.0
+83010.13799159229 4.1795759 0.0
+83011.13799164258 4.1795759 0.0
+83012.13799169287 4.1794972 0.0
+83013.13799174316 4.1795363 0.0
+83014.13799179345 4.1794577 0.0
+83015.13799184375 4.1795363 0.0
+83016.13799189404 4.1794577 0.0
+83017.13799194433 4.1794186 0.0
+83018.13799199462 4.1793399 0.0
+83019.13799204491 4.1793399 0.0
+83020.1379920952 4.1793003 0.0
+83021.1379921455 4.1791821 0.0
+83022.13799219579 4.1792612 0.0
+83023.13799224608 4.1793003 0.0
+83024.13799229637 4.1792216 0.0
+83025.13799234666 4.1791821 0.0
+83026.13799239695 4.1793003 0.0
+83027.13799244724 4.1791034 0.0
+83028.13799249753 4.1791034 0.0
+83029.13799254782 4.1790643 0.0
+83030.13799259812 4.1791034 0.0
+83031.13799264841 4.178946 0.0
+83032.1379926987 4.1789856 0.0
+83033.13799274899 4.1790247 0.0
+83034.13799279928 4.1788673 0.0
+83035.13799284957 4.178946 0.0
+83036.13799289986 4.178946 0.0
+83037.13799295016 4.1788278 0.0
+83038.13799300045 4.1788673 0.0
+83039.13799305074 4.1788278 0.0
+83040.13799310103 4.1789064 0.0
+83041.13799315132 4.1788278 0.0
+83042.13799320161 4.1787887 0.0
+83043.1379932519 4.1787491 0.0
+83044.1379933022 4.1786704 0.0
+83045.13799335249 4.1786313 0.0
+83046.13799340278 4.1786313 0.0
+83047.13799345307 4.1786313 0.0
+83048.13799350336 4.1786313 0.0
+83049.13799355365 4.1786704 0.0
+83050.13799360394 4.1785917 0.0
+83051.13799365424 4.1785522 0.0
+83052.13799370453 4.1785917 0.0
+83053.13799375482 4.1785131 0.0
+83054.13799380511 4.1785131 0.0
+83055.1379938554 4.1784344 0.0
+83056.1379939057 4.1784344 0.0
+83057.13799395598 4.1783948 0.0
+83058.13799400628 4.1783161 0.0
+83059.13799405657 4.1783557 0.0
+83060.13799410686 4.1783948 0.0
+83061.13799415715 4.1782765 0.0
+83062.13799420744 4.1783161 0.0
+83063.13799425773 4.1783161 0.0
+83064.13799430802 4.1781588 0.0
+83065.13799435832 4.1782765 0.0
+83066.13799440861 4.1781979 0.0
+83067.1379944589 4.1781979 0.0
+83068.13799450919 4.1781192 0.0
+83069.13799455948 4.1781192 0.0
+83070.13799460977 4.1780801 0.0
+83071.13799466006 4.1781192 0.0
+83072.13799471036 4.1780009 0.0
+83073.13799476065 4.1780009 0.0
+83074.13799481094 4.1780405 0.0
+83075.13799486123 4.1780405 0.0
+83076.13799491152 4.1779222 0.0
+83077.13799496181 4.1779618 0.0
+83078.1379950121 4.1779222 0.0
+83079.1379950624 4.1779618 0.0
+83080.13799511269 4.1779222 0.0
+83081.13799516298 4.1778831 0.0
+83082.13799521327 4.1779618 0.0
+83083.13799526356 4.1778436 0.0
+83084.13799531385 4.1778045 0.0
+83085.13799536414 4.1778831 0.0
+83086.13799541444 4.1777649 0.0
+83087.13799546473 4.1778045 0.0
+83088.13799551502 4.1776862 0.0
+83089.13799556531 4.1776862 0.0
+83090.1379956156 4.1777258 0.0
+83091.1379956659 4.1777258 0.0
+83092.13799571618 4.1777258 0.0
+83093.13799576648 4.1776466 0.0
+83094.13799581677 4.1774893 0.0
+83095.13799586706 4.1777649 0.0
+83096.13799591735 4.1775289 0.0
+83097.13799596764 4.1776466 0.0
+83098.13799601793 4.177568 0.0
+83099.13799606822 4.1774893 0.0
+83100.13799611852 4.1774893 0.0
+83101.1379961688 4.1775289 0.0
+83102.1379962191 4.1775289 0.0
+83103.13799626939 4.1774502 0.0
+83104.13799631968 4.177371 0.0
+83105.13799636997 4.1774502 0.0
+83106.13799642026 4.1774106 0.0
+83107.13799647056 4.1773319 0.0
+83108.13799652085 4.1773319 0.0
+83109.13799657114 4.1773319 0.0
+83110.13799662143 4.1772923 0.0
+83111.13799667172 4.177371 0.0
+83112.13799672201 4.1772532 0.0
+83113.1379967723 4.1773319 0.0
+83114.1379968226 4.1772137 0.0
+83115.13799687289 4.1771746 0.0
+83116.13799692318 4.1771746 0.0
+83117.13799697347 4.1772137 0.0
+83118.13799702376 4.1773319 0.0
+83119.13799707405 4.1770959 0.0
+83120.13799712434 4.1771746 0.0
+83121.13799717464 4.177135 0.0
+83122.13799722493 4.177135 0.0
+83123.13799727522 4.1771746 0.0
+83124.13799732551 4.1770959 0.0
+83125.1379973758 4.1770959 0.0
+83126.13799742609 4.1770167 0.0
+83127.13799747638 4.1770167 0.0
+83128.13799752668 4.1768594 0.0
+83129.13799757697 4.1769776 0.0
+83130.13799762726 4.176899 0.0
+83131.13799767755 4.1769776 0.0
+83132.13799772784 4.1769381 0.0
+83133.13799777813 4.176899 0.0
+83134.13799782842 4.176899 0.0
+83135.13799787872 4.1769776 0.0
+83136.137997929 4.1768594 0.0
+83137.1379979793 4.1768203 0.0
+83138.13799802959 4.1769381 0.0
+83139.13799807988 4.1769776 0.0
+83140.13799813017 4.1768594 0.0
+83141.13799818046 4.1767411 0.0
+83142.13799823076 4.1768203 0.0
+83143.13799828105 4.1766624 0.0
+83144.13799833134 4.1767411 0.0
+83145.13799838163 4.1766233 0.0
+83146.13799843192 4.176702 0.0
+83147.13799848221 4.1766233 0.0
+83148.1379985325 4.1767411 0.0
+83149.1379985828 4.1766624 0.0
+83150.13799863309 4.1766233 0.0
+83151.13799868338 4.1765447 0.0
+83152.13799873367 4.1765838 0.0
+83153.13799878396 4.1765838 0.0
+83154.13799883425 4.1765838 0.0
+83155.13799888454 4.1766233 0.0
+83156.13799893484 4.1764264 0.0
+83157.13799898513 4.176466 0.0
+83158.13799903542 4.1765838 0.0
+83159.13799908571 4.1765051 0.0
+83160.137999136 4.176466 0.0
+83161.13799918629 4.1763477 0.0
+83162.13799923658 4.1763868 0.0
+83163.13799928688 4.1765051 0.0
+83164.13799933717 4.1764264 0.0
+83165.13799938746 4.176466 0.0
+83166.13799943775 4.1763477 0.0
+83167.13799948804 4.1763477 0.0
+83168.13799953833 4.1763082 0.0
+83169.13799958862 4.1762691 0.0
+83170.13799963892 4.1763477 0.0
+83171.1379996892 4.1763477 0.0
+83172.1379997395 4.1762295 0.0
+83173.13799978979 4.1761508 0.0
+83174.13799984008 4.1762295 0.0
+83175.13799989037 4.1762691 0.0
+83176.13799994066 4.1761904 0.0
+83177.13799999095 4.1761904 0.0
+83178.13800004125 4.1761904 0.0
+83179.13800009154 4.1761904 0.0
+83180.13800014183 4.1761508 0.0
+83181.13800019212 4.1761112 0.0
+83182.13800024241 4.1761508 0.0
+83183.1380002927 4.1761508 0.0
+83184.138000343 4.1760721 0.0
+83185.13800039329 4.1759934 0.0
+83186.13800044358 4.1760325 0.0
+83187.13800049387 4.1761508 0.0
+83188.13800054416 4.1759934 0.0
+83189.13800059445 4.1759934 0.0
+83190.13800064474 4.1759934 0.0
+83191.13800069503 4.1759539 0.0
+83192.13800074533 4.1759934 0.0
+83193.13800079562 4.1759539 0.0
+83194.13800084591 4.1758752 0.0
+83195.1380008962 4.1759539 0.0
+83196.13800094649 4.1758752 0.0
+83197.13800099678 4.1759934 0.0
+83198.13800104707 4.1758356 0.0
+83199.13800109737 4.1759148 0.0
+83200.13800114766 4.1758752 0.0
+83201.13800119795 4.1758356 0.0
+83202.13800124824 4.1757965 0.0
+83203.13800129853 4.1757569 0.0
+83204.13800134882 4.1757965 0.0
+83205.13800139911 4.1756783 0.0
+83206.1380014494 4.1757569 0.0
+83207.1380014997 4.1757965 0.0
+83208.13800154999 4.1756783 0.0
+83209.13800160028 4.1757178 0.0
+83210.13800165057 4.1756783 0.0
+83211.13800170086 4.1757965 0.0
+83212.13800175115 4.1756392 0.0
+83213.13800180145 4.1757569 0.0
+83214.13800185174 4.1755605 0.0
+83215.13800190203 4.1755605 0.0
+83216.13800195232 4.1755996 0.0
+83217.13800200261 4.1755996 0.0
+83218.1380020529 4.1755605 0.0
+83219.1380021032 4.1755209 0.0
+83220.13800215349 4.1754813 0.0
+83221.13800220378 4.1755605 0.0
+83222.13800225407 4.1755209 0.0
+83223.13800230436 4.1755209 0.0
+83224.13800235465 4.1755209 0.0
+83225.13800240494 4.1755605 0.0
+83226.13800245523 4.1754422 0.0
+83227.13800250553 4.1754026 0.0
+83228.13800255582 4.1754026 0.0
+83229.13800260611 4.1754813 0.0
+83230.1380026564 4.1754026 0.0
+83231.13800270669 4.1754026 0.0
+83232.13800275698 4.1754422 0.0
+83233.13800280727 4.1753635 0.0
+83234.13800285757 4.1754422 0.0
+83235.13800290786 4.1754422 0.0
+83236.13800295815 4.1754422 0.0
+83237.13800300844 4.175324 0.0
+83238.13800305873 4.1753635 0.0
+83239.13800310902 4.1752849 0.0
+83240.13800315931 4.175324 0.0
+83241.1380032096 4.175324 0.0
+83242.1380032599 4.1752453 0.0
+83243.13800331019 4.1751666 0.0
+83244.13800336048 4.175324 0.0
+83245.13800341077 4.1752057 0.0
+83246.13800346106 4.1751666 0.0
+83247.13800351135 4.1752057 0.0
+83248.13800356165 4.175127 0.0
+83249.13800361194 4.1752057 0.0
+83249.16000361298 4.1752057 0.0
+83249.2580036181 4.1615448 -1103.2168
+83250.2580036684 4.1607575 -1103.1774
+83251.25800371869 4.1604028 -1103.197
+83252.25800376898 4.1602454 -1103.1576
+83253.25800381927 4.1600094 -1103.1576
+83254.25800386956 4.1598125 -1103.2168
+83255.25800391985 4.1596155 -1103.1576
+83256.25800397014 4.1596155 -1103.197
+83257.25800402043 4.1593008 -1103.197
+83258.25800407073 4.1593399 -1103.2761
+83259.25800412102 4.1590643 -1103.1774
+83260.25800417131 4.1590252 -1103.1378
+83261.2580042216 4.1588674 -1103.1378
+83262.25800427189 4.1587496 -1103.2562
+83263.25800432218 4.1586313 -1103.2761
+83264.25800437247 4.1585131 -1103.0984
+83265.25800442277 4.1583953 -1103.1576
+83266.25800447306 4.1583166 -1103.1576
+83267.25800452335 4.1582375 -1103.2168
+83268.25800457364 4.1580801 -1103.2366
+83269.25800462393 4.1581197 -1103.2366
+83270.25800467422 4.1578441 -1103.2168
+83271.25800472451 4.1577654 -1103.1378
+83272.2580047748 4.1576867 -1103.2168
+83273.2580048251 4.1575685 -1103.1576
+83274.25800487539 4.1574898 -1103.1182
+83275.25800492568 4.1574898 -1103.2562
+83276.25800497597 4.1573715 -1103.197
+83277.25800502626 4.1572928 -1103.2366
+83278.25800507655 4.1572533 -1103.197
+83279.25800512685 4.1571355 -1103.2562
+83280.25800517714 4.156899 -1103.1182
+83281.25800522743 4.1569777 -1103.1774
+83282.25800527772 4.1568599 -1103.1576
+83283.25800532801 4.1567812 -1103.0984
+83284.2580053783 4.1568203 -1103.1182
+83285.2580054286 4.1565056 -1103.1182
+83286.25800547889 4.1565843 -1103.197
+83287.25800552918 4.156466 -1103.1576
+83288.25800557947 4.1564264 -1103.197
+83289.25800562976 4.1563478 -1103.1182
+83290.25800568005 4.1563087 -1103.2562
+83291.25800573034 4.1561513 -1103.2168
+83292.25800578063 4.1561513 -1103.1576
+83293.25800583092 4.1560721 -1103.0984
+83294.25800588122 4.1559544 -1103.1774
+83295.25800593151 4.1559544 -1103.2366
+83296.2580059818 4.1558361 -1103.1576
+83297.25800603209 4.1557178 -1103.1774
+83298.25800608238 4.1557178 -1103.1378
+83299.25800613267 4.1556787 -1103.197
+83300.25800618296 4.1554422 -1103.1774
+83301.25800623326 4.1555214 -1103.1774
+83302.25800628355 4.1554031 -1103.2761
+83303.25800633384 4.1554422 -1103.1576
+83304.25800638413 4.1553245 -1103.1774
+83305.25800643442 4.1552849 -1103.1378
+83306.25800648471 4.1552062 -1103.1774
+83307.258006535 4.1550093 -1103.197
+83308.2580065853 4.1550488 -1103.1576
+83309.25800663559 4.1549702 -1103.197
+83310.25800668588 4.1548915 -1103.2761
+83311.25800673617 4.1547732 -1103.2959
+83312.25800678646 4.1548123 -1103.1774
+83313.25800683675 4.1546946 -1103.2366
+83314.25800688704 4.1546159 -1103.1378
+83315.25800693734 4.1545367 -1103.2366
+83316.25800698763 4.1544976 -1103.3156
+83317.25800703792 4.1544976 -1103.197
+83318.25800708821 4.1544189 -1103.1576
+83319.2580071385 4.1543403 -1103.197
+83320.2580071888 4.1542611 -1103.1378
+83321.25800723908 4.154222 -1103.1774
+83322.25800728938 4.1540647 -1103.1576
+83323.25800733967 4.1540647 -1103.2366
+83324.25800738996 4.1541433 -1103.1378
+83325.25800744025 4.1541038 -1103.1378
+83326.25800749054 4.1539464 -1103.197
+83327.25800754083 4.1538677 -1103.1774
+83328.25800759112 4.1537495 -1103.1182
+83329.25800764142 4.153789 -1103.2168
+83330.25800769171 4.1536708 -1103.197
+83331.258007742 4.1537104 -1103.2562
+83332.25800779229 4.1535921 -1103.2761
+83333.25800784258 4.1535525 -1103.197
+83334.25800789287 4.1535134 -1103.1182
+83335.25800794316 4.1533952 -1103.2168
+83336.25800799346 4.1533561 -1103.1774
+83337.25800804375 4.1531591 -1103.1378
+83338.25800809404 4.1532769 -1103.197
+83339.25800814433 4.1532378 -1103.197
+83340.25800819462 4.1531591 -1103.1576
+83341.25800824491 4.1531591 -1103.2168
+83342.2580082952 4.1530409 -1103.2761
+83343.2580083455 4.1529622 -1103.2761
+83344.25800839579 4.1529622 -1103.1576
+83345.25800844608 4.1529226 -1103.1378
+83346.25800849637 4.1528049 -1103.2761
+83347.25800854666 4.152844 -1103.0984
+83348.25800859695 4.1526079 -1103.0984
+83349.25800864724 4.152647 -1103.1774
+83350.25800869754 4.1526079 -1103.1378
+83351.25800874783 4.1525683 -1103.1576
+83352.25800879812 4.152411 -1103.1774
+83353.25800884841 4.1524506 -1103.197
+83354.2580088987 4.1523323 -1103.2761
+83355.258008949 4.1523714 -1103.1378
+83356.25800899928 4.1523323 -1103.197
+83357.25800904958 4.1522141 -1103.197
+83358.25800909987 4.1522141 -1103.0785
+83359.25800915016 4.1520958 -1103.197
+83360.25800920045 4.151978 -1103.197
+83361.25800925074 4.151978 -1103.2761
+83362.25800930103 4.1520171 -1103.1378
+83363.25800935132 4.151978 -1103.2168
+83364.25800940162 4.1518993 -1103.2959
+83365.2580094519 4.1518598 -1103.1378
+83366.2580095022 4.1517024 -1103.1378
+83367.25800955249 4.1518207 -1103.2168
+83368.25800960278 4.1517024 -1103.197
+83369.25800965307 4.1515841 -1103.1182
+83370.25800970336 4.1515841 -1103.2366
+83371.25800975366 4.1514268 -1103.2168
+83372.25800980395 4.1514268 -1103.2562
+83373.25800985424 4.1513872 -1103.1774
+83374.25800990453 4.1512694 -1103.2959
+83375.25800995482 4.1513481 -1103.1774
+83376.25801000511 4.1511903 -1103.1378
+83377.2580100554 4.1511903 -1103.1576
+83378.2580101057 4.1511512 -1103.197
+83379.25801015599 4.1511512 -1103.197
+83380.25801020628 4.1510329 -1103.1774
+83381.25801025657 4.1510725 -1103.1576
+83382.25801030686 4.1509938 -1103.1576
+83383.25801035715 4.1509542 -1103.197
+83384.25801040744 4.1509542 -1103.2761
+83385.25801045774 4.1509151 -1103.2366
+83386.25801050803 4.1507969 -1103.197
+83387.25801055832 4.1506786 -1103.1774
+83388.25801060861 4.1507182 -1103.1576
+83389.2580106589 4.1506786 -1103.0984
+83390.25801070919 4.1506395 -1103.1774
+83391.25801075948 4.1506 -1103.1576
+83392.25801080978 4.1505604 -1103.2168
+83393.25801086007 4.150403 -1103.1378
+83394.25801091036 4.150403 -1103.2168
+83395.25801096065 4.1503639 -1103.2168
+83396.25801101094 4.1503639 -1103.197
+83397.25801106123 4.1503243 -1103.2562
+83398.25801111152 4.1502852 -1103.197
+83399.25801116182 4.1502457 -1103.2562
+83400.2580112121 4.1501274 -1103.1774
+83401.2580112624 4.1500883 -1103.2366
+83402.25801131269 4.1500487 -1103.1774
+83403.25801136298 4.1500096 -1103.2761
+83404.25801141327 4.1498914 -1103.1182
+83405.25801146356 4.1499305 -1103.1774
+83406.25801151386 4.1498914 -1103.2168
+83407.25801156415 4.1498914 -1103.1576
+83408.25801161444 4.1497731 -1103.2168
+83409.25801166473 4.1496944 -1103.2366
+83410.25801171502 4.1496944 -1103.2562
+83411.25801176531 4.1496553 -1103.1182
+83412.2580118156 4.1496944 -1103.1182
+83413.2580118659 4.1496158 -1103.1378
+83414.25801191619 4.1493797 -1103.1774
+83415.25801196648 4.1494584 -1103.197
+83416.25801201677 4.1494975 -1103.2366
+83417.25801206706 4.1494188 -1103.1378
+83418.25801211735 4.1493797 -1103.197
+83419.25801216764 4.1492615 -1103.197
+83420.25801221794 4.1493006 -1103.1774
+83421.25801226823 4.1492615 -1103.1774
+83422.25801231852 4.1491432 -1103.2562
+83423.25801236881 4.1491041 -1103.1378
+83424.2580124191 4.1491041 -1103.1576
+83425.25801246939 4.1489859 -1103.2562
+83426.25801251968 4.1489859 -1103.1774
+83427.25801256998 4.1489072 -1103.1576
+83428.25801262027 4.1488285 -1103.2168
+83429.25801267056 4.1487889 -1103.1182
+83430.25801272085 4.1489072 -1103.1576
+83431.25801277114 4.1487889 -1103.197
+83432.25801282143 4.1486707 -1103.2168
+83433.25801287172 4.1487103 -1103.1576
+83434.25801292202 4.1487103 -1103.2366
+83435.2580129723 4.1486707 -1103.1182
+83436.2580130226 4.1485529 -1103.2168
+83437.25801307289 4.1484742 -1103.197
+83438.25801312318 4.1483951 -1103.2761
+83439.25801317347 4.1483951 -1103.2168
+83440.25801322376 4.1483164 -1103.1774
+83441.25801327405 4.1482773 -1103.2366
+83442.25801332435 4.1482377 -1103.1576
+83443.25801337464 4.1481986 -1103.1576
+83444.25801342493 4.1481199 -1103.1182
+83445.25801347522 4.1481199 -1103.1576
+83446.25801352551 4.1480803 -1103.2366
+83447.2580135758 4.1480017 -1103.1774
+83448.2580136261 4.1480803 -1103.1182
+83449.25801367639 4.1479621 -1103.197
+83450.25801372668 4.1479621 -1103.2366
+83451.25801377697 4.147923 -1103.2761
+83452.25801382726 4.1478047 -1103.197
+83453.25801387755 4.1478443 -1103.197
+83454.25801392784 4.1477261 -1103.2366
+83455.25801397813 4.1477261 -1103.2366
+83456.25801402843 4.1477652 -1103.2366
+83457.25801407872 4.1476474 -1103.2168
+83458.25801412901 4.1475687 -1103.2562
+83459.2580141793 4.1475291 -1103.1378
+83460.25801422959 4.1474504 -1103.0984
+83461.25801427988 4.1476078 -1103.2168
+83462.25801433017 4.1473718 -1103.1576
+83463.25801438047 4.1474504 -1103.2168
+83464.25801443076 4.1474895 -1103.2761
+83465.25801448105 4.1472931 -1103.1774
+83466.25801453134 4.1472931 -1103.2959
+83467.25801458163 4.1472535 -1103.0984
+83468.25801463192 4.1472144 -1103.2168
+83469.25801468221 4.1470566 -1103.2168
+83470.2580147325 4.1471748 -1103.0785
+83471.2580147828 4.1470566 -1103.197
+83472.25801483309 4.1470566 -1103.0588
+83473.25801488338 4.1469388 -1103.1774
+83474.25801493367 4.1468596 -1103.2366
+83475.25801498396 4.1468992 -1103.1774
+83476.25801503425 4.146781 -1103.1774
+83477.25801508455 4.1468596 -1103.1774
+83478.25801513484 4.1468205 -1103.2366
+83479.25801518513 4.1467419 -1103.1576
+83480.25801523542 4.1467023 -1103.197
+83481.25801528571 4.1466632 -1103.197
+83482.258015336 4.1466632 -1103.2562
+83483.2580153863 4.1465845 -1103.197
+83484.25801543659 4.1465449 -1103.1576
+83485.25801548688 4.1465054 -1103.0984
+83486.25801553717 4.1465054 -1103.2562
+83487.25801558746 4.1463876 -1103.0785
+83488.25801563775 4.146348 -1103.1182
+83489.25801568804 4.146348 -1103.1774
+83490.25801573833 4.1463089 -1103.2168
+83491.25801578863 4.146348 -1103.2168
+83492.25801583892 4.1463089 -1103.1378
+83493.25801588921 4.146112 -1103.1576
+83494.2580159395 4.1461511 -1103.2168
+83495.25801598979 4.1461511 -1103.197
+83496.25801604008 4.1459937 -1103.1576
+83497.25801609037 4.1460724 -1103.0984
+83498.25801614067 4.145915 -1103.1576
+83499.25801619096 4.1460333 -1103.197
+83500.25801624125 4.1459546 -1103.1576
+83501.25801629154 4.1458755 -1103.1182
+83502.25801634183 4.1458755 -1103.197
+83503.25801639212 4.1458364 -1103.1774
+83504.25801644241 4.1458364 -1103.1774
+83505.2580164927 4.1456394 -1103.0984
+83506.258016543 4.1457181 -1103.2366
+83507.25801659329 4.1456394 -1103.197
+83508.25801664358 4.1455998 -1103.2168
+83509.25801669387 4.1455212 -1103.1774
+83510.25801674416 4.1454425 -1103.1182
+83511.25801679445 4.1454821 -1103.2168
+83512.25801684475 4.1454034 -1103.1774
+83513.25801689504 4.1454034 -1103.1576
+83514.25801694533 4.1453638 -1103.2366
+83515.25801699562 4.1454034 -1103.197
+83516.25801704591 4.1452851 -1103.1774
+83517.2580170962 4.1453242 -1103.2168
+83518.2580171465 4.1451669 -1103.2366
+83519.25801719679 4.1452065 -1103.197
+83520.25801724708 4.1450882 -1103.1182
+83521.25801729737 4.1451278 -1103.2366
+83522.25801734766 4.1452065 -1103.2366
+83523.25801739795 4.1450491 -1103.2168
+83524.25801744824 4.1449308 -1103.197
+83525.25801749853 4.1449699 -1103.1182
+83526.25801754883 4.1449699 -1103.1774
+83527.25801759912 4.1448913 -1103.197
+83528.25801764941 4.1448126 -1103.2366
+83529.2580176997 4.1448522 -1103.2366
+83530.25801774999 4.1446943 -1103.1576
+83531.25801780028 4.1446943 -1103.1774
+83532.25801785057 4.1448522 -1103.2168
+83533.25801790087 4.1446552 -1103.1576
+83534.25801795116 4.1446157 -1103.1576
+83535.25801800145 4.1444583 -1103.1774
+83536.25801805174 4.1444192 -1103.1378
+83537.25801810203 4.1444979 -1103.2366
+83538.25801815232 4.14434 -1103.2959
+83539.25801820261 4.1444979 -1103.2366
+83540.2580182529 4.1444192 -1103.197
+83541.2580183032 4.14434 -1103.2366
+83542.25801835349 4.14434 -1103.1378
+83543.25801840378 4.1443009 -1103.1378
+83544.25801845407 4.1442223 -1103.197
+83545.25801850436 4.1441827 -1103.2562
+83546.25801855465 4.1441827 -1103.2366
+83547.25801860495 4.1440644 -1103.1576
+83548.25801865524 4.1440644 -1103.2562
+83549.25801870553 4.1440644 -1103.2168
+83550.25801875582 4.1439466 -1103.0984
+83551.25801880611 4.1439466 -1103.1378
+83552.2580188564 4.1438284 -1103.3156
+83553.2580189067 4.1439071 -1103.2168
+83554.25801895699 4.1439466 -1103.0785
+83555.25801900728 4.1437497 -1103.2562
+83556.25801905757 4.1438284 -1103.2562
+83557.25801910786 4.1437101 -1103.2168
+83558.25801915815 4.1437101 -1103.1774
+83559.25801920844 4.1436315 -1103.1774
+83560.25801925873 4.143671 -1103.2366
+83561.25801930903 4.1434741 -1103.197
+83562.25801935932 4.1434741 -1103.1576
+83563.25801940961 4.1435924 -1103.2168
+83564.2580194599 4.1433954 -1103.1378
+83565.25801951019 4.1435137 -1103.2761
+83566.25801956048 4.1433167 -1103.1182
+83567.25801961077 4.1434345 -1103.1576
+83568.25801966107 4.1433954 -1103.1182
+83569.25801971136 4.1433167 -1103.2168
+83570.25801976165 4.1432381 -1103.2168
+83571.25801981194 4.1431198 -1103.1182
+83572.25801986223 4.1432381 -1103.1774
+83573.25801991252 4.1431589 -1103.1576
+83574.25801996281 4.1431589 -1103.1576
+83575.2580200131 4.1430802 -1103.2366
+83576.2580200634 4.1430411 -1103.2366
+83577.25802011369 4.1429625 -1103.2366
+83578.25802016398 4.1428838 -1103.1182
+83579.25802021427 4.1429625 -1103.1378
+83580.25802026456 4.1429229 -1103.1576
+83581.25802031485 4.1428046 -1103.197
+83582.25802036515 4.1428442 -1103.2366
+83583.25802041544 4.1428046 -1103.1576
+83584.25802046573 4.1428046 -1103.1378
+83585.25802051602 4.1426473 -1103.1378
+83586.25802056631 4.1426868 -1103.1378
+83587.2580206166 4.1425686 -1103.2168
+83588.2580206669 4.1426082 -1103.1378
+83589.25802071718 4.1426082 -1103.2761
+83590.25802076748 4.1424899 -1103.1774
+83591.25802081777 4.1424899 -1103.1774
+83592.25802086806 4.142529 -1103.2562
+83593.25802091835 4.1423717 -1103.1378
+83594.25802096864 4.1424503 -1103.197
+83595.25802101893 4.142293 -1103.197
+83596.25802106922 4.1423326 -1103.2168
+83597.25802111952 4.1422143 -1103.197
+83598.25802116981 4.142293 -1103.1378
+83599.2580212201 4.1422143 -1103.2761
+83600.25802127039 4.1421747 -1103.1576
+83601.25802132068 4.1421747 -1103.1774
+83602.25802137097 4.142096 -1103.1576
+83603.25802142126 4.142096 -1103.1182
+83604.25802147156 4.1420174 -1103.197
+83605.25802152185 4.1420174 -1103.1378
+83606.25802157214 4.1418991 -1103.2366
+83607.25802162243 4.1418991 -1103.1774
+83608.25802167272 4.1418204 -1103.197
+83609.25802172301 4.1418204 -1103.1774
+83610.2580217733 4.1417418 -1103.1774
+83611.2580218236 4.1416235 -1103.1378
+83612.25802187389 4.1417418 -1103.1378
+83613.25802192418 4.1417813 -1103.0984
+83614.25802197447 4.1417027 -1103.0785
+83615.25802202476 4.1417027 -1103.1576
+83616.25802207505 4.1416235 -1103.1182
+83617.25802212534 4.1416631 -1103.0984
+83618.25802217564 4.1415448 -1103.2168
+83619.25802222593 4.1415057 -1103.2366
+83620.25802227622 4.1414661 -1103.2366
+83621.25802232651 4.1414661 -1103.0984
+83622.2580223768 4.141427 -1103.1774
+83623.2580224271 4.1413875 -1103.2959
+83624.25802247738 4.1412692 -1103.2761
+83625.25802252768 4.1412301 -1103.1576
+83626.25802257797 4.1413484 -1103.197
+83627.25802262826 4.1412301 -1103.197
+83628.25802267855 4.1411514 -1103.1774
+83629.25802272884 4.1410728 -1103.2366
+83630.25802277913 4.1411905 -1103.2366
+83631.25802282942 4.1410728 -1103.1576
+83632.25802287972 4.1409936 -1103.1182
+83633.25802293001 4.1410332 -1103.197
+83634.2580229803 4.1409936 -1103.2366
+83635.25802303059 4.1409545 -1103.1378
+83636.25802308088 4.1409149 -1103.2168
+83637.25802313117 4.1408362 -1103.2168
+83638.25802318146 4.1409545 -1103.1576
+83639.25802323176 4.1407576 -1103.1774
+83640.25802328205 4.1407971 -1103.1378
+83641.25802333234 4.1408758 -1103.2366
+83642.25802338263 4.1407576 -1103.197
+83643.25802343292 4.1405606 -1103.1182
+83644.25802348321 4.1406002 -1103.2366
+83645.2580235335 4.1406002 -1103.1576
+83646.2580235838 4.1406393 -1103.1576
+83647.25802363409 4.1404819 -1103.0984
+83648.25802368438 4.1404819 -1103.197
+83649.25802373467 4.1404819 -1103.1774
+83650.25802378496 4.1403637 -1103.197
+83651.25802383525 4.1403246 -1103.1774
+83652.25802388554 4.1404428 -1103.1378
+83653.25802393584 4.1405606 -1103.2562
+83654.25802398613 4.1403637 -1103.2959
+83655.25802403642 4.140285 -1103.1182
+83656.25802408671 4.140285 -1103.1576
+83657.258024137 4.1402063 -1103.1378
+83658.2580241873 4.1401672 -1103.2168
+83659.25802423758 4.1401277 -1103.1576
+83660.25802428788 4.1401672 -1103.1576
+83661.25802433817 4.1401277 -1103.197
+83662.25802438846 4.140049 -1103.1774
+83663.25802443875 4.1401672 -1103.2959
+83664.25802448904 4.1400094 -1103.1774
+83665.25802453933 4.1399307 -1103.0984
+83666.25802458962 4.1398916 -1103.2366
+83667.25802463992 4.1399703 -1103.1182
+83668.2580246902 4.1398916 -1103.1576
+83669.2580247405 4.139852 -1103.1182
+83670.25802479079 4.1398129 -1103.197
+83671.25802484108 4.1397734 -1103.2168
+83672.25802489137 4.1397734 -1103.2168
+83673.25802494166 4.1396947 -1103.2562
+83674.25802499196 4.1397734 -1103.1774
+83675.25802504225 4.139616 -1103.197
+83676.25802509254 4.1395764 -1103.1576
+83677.25802514283 4.1394978 -1103.1774
+83678.25802519312 4.1394582 -1103.2366
+83679.25802524341 4.1394582 -1103.197
+83680.2580252937 4.1394978 -1103.197
+83681.258025344 4.1394191 -1103.2959
+83682.25802539429 4.1393795 -1103.2168
+83683.25802544458 4.1394191 -1103.1378
+83684.25802549487 4.1393404 -1103.1576
+83685.25802554516 4.1392221 -1103.197
+83686.25802559545 4.1392221 -1103.2168
+83687.25802564574 4.1391435 -1103.0984
+83688.25802569604 4.139183 -1103.197
+83689.25802574633 4.1390648 -1103.2168
+83690.25802579662 4.1390648 -1103.197
+83691.25802584691 4.1391039 -1103.1378
+83692.2580258972 4.1391039 -1103.2168
+83693.25802594749 4.1390252 -1103.1576
+83694.25802599778 4.1389861 -1103.1774
+83695.25802604808 4.1388679 -1103.1774
+83696.25802609837 4.1389074 -1103.1378
+83697.25802614866 4.1389074 -1103.1774
+83698.25802619895 4.1389074 -1103.1378
+83699.25802624924 4.1387496 -1103.2366
+83700.25802629953 4.1387892 -1103.1378
+83701.25802634982 4.1387892 -1103.1774
+83702.25802640012 4.1387496 -1103.1378
+83703.2580264504 4.1386709 -1103.1774
+83704.2580265007 4.1387892 -1103.2562
+83705.25802655099 4.1386318 -1103.197
+83706.25802660128 4.1385527 -1103.1576
+83707.25802665157 4.1385922 -1103.2168
+83708.25802670186 4.1385922 -1103.197
+83709.25802675216 4.1384349 -1103.1774
+83710.25802680245 4.1385136 -1103.1576
+83711.25802685274 4.1383562 -1103.1774
+83712.25802690303 4.1383562 -1103.2168
+83713.25802695332 4.1383953 -1103.1576
+83714.25802700361 4.1384349 -1103.197
+83715.2580270539 4.1381984 -1103.2168
+83716.2580271042 4.1382775 -1103.1774
+83717.25802715449 4.1382775 -1103.0588
+83718.25802720478 4.1381593 -1103.1182
+83719.25802725507 4.1381593 -1103.2168
+83720.25802730536 4.1381984 -1103.1774
+83721.25802735565 4.1380806 -1103.2168
+83722.25802740594 4.1380019 -1103.2562
+83723.25802745624 4.1380806 -1103.1378
+83724.25802750653 4.1380806 -1103.1182
+83725.25802755682 4.1380019 -1103.2168
+83726.25802760711 4.138041 -1103.1576
+83727.2580276574 4.1379228 -1103.197
+83728.25802770769 4.1378837 -1103.1774
+83729.25802775798 4.1378837 -1103.1774
+83730.25802780828 4.1378837 -1103.1576
+83731.25802785857 4.1378441 -1103.2562
+83732.25802790886 4.137805 -1103.1774
+83733.25802795915 4.1377263 -1103.2366
+83734.25802800944 4.1377263 -1103.1774
+83735.25802805973 4.1377263 -1103.1378
+83736.25802811002 4.1376081 -1103.197
+83737.25802816032 4.1375685 -1103.1378
+83738.2580282106 4.1375685 -1103.2562
+83739.2580282609 4.1375294 -1103.1182
+83740.25802831119 4.1375685 -1103.1576
+83741.25802836148 4.1375294 -1103.1378
+83742.25802841177 4.1374507 -1103.1378
+83743.25802846206 4.137372 -1103.1774
+83744.25802851235 4.1374507 -1103.1774
+83745.25802856265 4.1372929 -1103.0785
+83746.25802861294 4.1372929 -1103.1774
+83747.25802866323 4.1372929 -1103.1774
+83748.25802871352 4.1372142 -1103.1576
+83749.25802876381 4.1373324 -1103.2168
+83750.2580288141 4.1372538 -1103.1378
+83751.2580288644 4.1371751 -1103.1576
+83752.25802891469 4.1372142 -1103.197
+83753.25802896498 4.1370568 -1103.197
+83754.25802901527 4.1370964 -1103.0984
+83755.25802906556 4.1370964 -1103.1774
+83756.25802911585 4.1370964 -1103.2168
+83757.25802916614 4.1370177 -1103.1378
+83758.25802921643 4.1370177 -1103.1576
+83759.25802926673 4.1370964 -1103.1378
+83760.25802931702 4.1368995 -1103.1576
+83761.25802936731 4.1368995 -1103.1774
+83762.2580294176 4.1368599 -1103.0785
+83763.25802946789 4.1368208 -1103.2168
+83764.25802951818 4.1368208 -1103.197
+83765.25802956847 4.1368208 -1103.1774
+83766.25802961877 4.1367421 -1103.1774
+83767.25802966906 4.1367812 -1103.0588
+83768.25802971935 4.1367025 -1103.1774
+83769.25802976964 4.1366239 -1103.1774
+83770.25802981993 4.1366239 -1103.2168
+83771.25802987022 4.1366239 -1103.1774
+83772.25802992051 4.1365056 -1103.197
+83773.2580299708 4.1364665 -1103.0984
+83774.2580300211 4.1365056 -1103.2168
+83775.25803007139 4.1364665 -1103.1576
+83776.25803012168 4.1363873 -1103.1774
+83777.25803017197 4.1363087 -1103.1182
+83778.25803022226 4.1363482 -1103.2168
+83779.25803027255 4.1362696 -1103.1576
+83780.25803032285 4.1362696 -1103.1378
+83781.25803037314 4.1363482 -1103.197
+83782.25803042343 4.1363087 -1103.197
+83783.25803047372 4.13623 -1103.2168
+83784.25803052401 4.1361909 -1103.1182
+83785.2580305743 4.1361122 -1103.1378
+83786.2580306246 4.1361122 -1103.1576
+83787.25803067489 4.1361122 -1103.2366
+83788.25803072518 4.1361122 -1103.1774
+83789.25803077547 4.1360726 -1103.2366
+83790.25803082576 4.135994 -1103.2562
+83791.25803087605 4.1358757 -1103.2366
+83792.25803092634 4.1360331 -1103.197
+83793.25803097663 4.1358366 -1103.2168
+83794.25803102693 4.1359153 -1103.1378
+83795.25803107722 4.1358757 -1103.2366
+83796.25803112751 4.1358366 -1103.1774
+83797.2580311778 4.135797 -1103.197
+83798.25803122809 4.135797 -1103.1182
+83799.25803127838 4.1357183 -1103.2366
+83800.25803132867 4.1356397 -1103.197
+83801.25803137897 4.1356788 -1103.1378
+83802.25803142926 4.1357183 -1103.197
+83803.25803147955 4.135561 -1103.2168
+83804.25803152984 4.1356397 -1103.197
+83805.25803158013 4.1356001 -1103.2168
+83806.25803163042 4.1354823 -1103.1774
+83807.25803168071 4.1355214 -1103.2168
+83808.258031731 4.1354032 -1103.197
+83809.2580317813 4.1354427 -1103.1182
+83810.25803183159 4.1353641 -1103.1576
+83811.25803188188 4.1354032 -1103.1576
+83812.25803193217 4.1354823 -1103.1774
+83813.25803198246 4.1353245 -1103.2168
+83814.25803203275 4.1353245 -1103.1774
+83815.25803208305 4.1353245 -1103.2366
+83816.25803213334 4.1352067 -1103.1378
+83817.25803218363 4.1351671 -1103.2366
+83818.25803223392 4.1351275 -1103.197
+83819.25803228421 4.1351275 -1103.2168
+83820.2580323345 4.1350884 -1103.2366
+83821.2580323848 4.1351671 -1103.1774
+83822.25803243509 4.1349702 -1103.1576
+83823.25803248538 4.1350489 -1103.1182
+83824.25803253567 4.1348915 -1103.1774
+83825.25803258596 4.1350098 -1103.2959
+83826.25803263625 4.1349311 -1103.2366
+83827.25803268654 4.1348915 -1103.1774
+83828.25803273683 4.1348915 -1103.1378
+83829.25803278713 4.1348519 -1103.1774
+83830.25803283742 4.1347733 -1103.2168
+83831.25803288771 4.1347342 -1103.2562
+83832.258032938 4.1348519 -1103.1774
+83833.25803298829 4.1346555 -1103.1576
+83834.25803303858 4.1346159 -1103.3353
+83835.25803308887 4.1346555 -1103.1774
+83836.25803313917 4.1346159 -1103.2168
+83837.25803318946 4.1345768 -1103.2761
+83838.25803323975 4.1346555 -1103.197
+83839.25803329004 4.1344585 -1103.1576
+83840.25803334033 4.1345372 -1103.1774
+83841.25803339062 4.1345768 -1103.2168
+83842.25803344091 4.1344976 -1103.1378
+83843.2580334912 4.1344585 -1103.1774
+83844.2580335415 4.1344585 -1103.2562
+83845.25803359179 4.1344585 -1103.2562
+83846.25803364208 4.1343799 -1103.2366
+83847.25803369237 4.1343403 -1103.197
+83848.25803374266 4.1343012 -1103.1576
+83849.25803379295 4.1342616 -1103.1774
+83850.25803384325 4.134222 -1103.197
+83851.25803389354 4.134222 -1103.197
+83852.25803394383 4.1341043 -1103.1182
+83853.25803399412 4.1341434 -1103.2366
+83854.25803404441 4.1341434 -1103.1576
+83855.2580340947 4.1340256 -1103.1182
+83856.258034145 4.1340256 -1103.1576
+83857.25803419529 4.1340647 -1103.1774
+83858.25803424558 4.133986 -1103.2168
+83859.25803429587 4.1339073 -1103.2366
+83860.25803434616 4.133986 -1103.1378
+83861.25803439645 4.1339469 -1103.2168
+83862.25803444674 4.1339469 -1103.2761
+83863.25803449703 4.1338677 -1103.1774
+83864.25803454733 4.13375 -1103.1182
+83865.25803459762 4.13375 -1103.1182
+83866.25803464791 4.1337891 -1103.2761
+83867.2580346982 4.1338286 -1103.1774
+83868.25803474849 4.1338286 -1103.2366
+83869.25803479878 4.1336713 -1103.1378
+83870.25803484907 4.1335921 -1103.1774
+83871.25803489937 4.1336317 -1103.1378
+83872.25803494966 4.1335921 -1103.1576
+83873.25803499995 4.1336317 -1103.2168
+83874.25803505024 4.133553 -1103.2168
+83875.25803510053 4.1335135 -1103.197
+83876.25803515082 4.133553 -1103.197
+83877.25803520111 4.1334743 -1103.1774
+83878.2580352514 4.1334743 -1103.2562
+83879.2580353017 4.1334348 -1103.1576
+83880.25803535199 4.1334743 -1103.1774
+83881.25803540228 4.1332774 -1103.197
+83882.25803545257 4.1333561 -1103.1182
+83883.25803550286 4.1332774 -1103.1182
+83884.25803555315 4.1333165 -1103.2366
+83885.25803560345 4.1331592 -1103.197
+83886.25803565374 4.1332378 -1103.1576
+83887.25803570403 4.1332378 -1103.2761
+83888.25803575432 4.1331201 -1103.1378
+83889.25803580461 4.1331201 -1103.197
+83890.2580358549 4.1331201 -1103.1378
+83891.2580359052 4.1330018 -1103.197
+83892.25803595548 4.1330018 -1103.1774
+83893.25803600578 4.1330414 -1103.0984
+83894.25803605607 4.1330414 -1103.1378
+83895.25803610636 4.1330414 -1103.2168
+83896.25803615665 4.1329622 -1103.1378
+83897.25803620694 4.1328444 -1103.197
+83898.25803625723 4.1328835 -1103.2168
+83899.25803630752 4.1328835 -1103.1774
+83900.25803635782 4.1328835 -1103.2168
+83901.25803640811 4.1327262 -1103.197
+83902.2580364584 4.1327262 -1103.2366
+83903.25803650869 4.1327262 -1103.1182
+83904.25803655898 4.1327658 -1103.197
+83905.25803660927 4.1326866 -1103.2168
+83906.25803665956 4.1327262 -1103.197
+83907.25803670986 4.1326079 -1103.2761
+83908.25803676015 4.1326475 -1103.1774
+83909.25803681044 4.1324902 -1103.1576
+83910.25803686073 4.1324506 -1103.197
+83911.25803691102 4.1324902 -1103.2168
+83912.25803696131 4.1325688 -1103.1378
+83913.2580370116 4.1322932 -1103.2366
+83914.2580370619 4.1325293 -1103.1182
+83915.25803711219 4.1324506 -1103.2562
+83916.25803716248 4.1324506 -1103.2168
+83917.25803721277 4.1323323 -1103.197
+83918.25803726306 4.1323323 -1103.1182
+83919.25803731335 4.1322145 -1103.1774
+83920.25803736364 4.1322536 -1103.1576
+83921.25803741394 4.1322536 -1103.2168
+83922.25803746423 4.1322536 -1103.2959
+83923.25803751452 4.1322536 -1103.1576
+83924.25803756481 4.1322145 -1103.1182
+83925.2580376151 4.1320567 -1103.0588
+83926.2580376654 4.1322145 -1103.2562
+83927.25803771568 4.1320176 -1103.197
+83928.25803776598 4.1320176 -1103.197
+83929.25803781627 4.1320567 -1103.1774
+83930.25803786656 4.1320567 -1103.197
+83931.25803791685 4.131978 -1103.197
+83932.25803796714 4.131978 -1103.1576
+83933.25803801743 4.1319389 -1103.1576
+83934.25803806772 4.1318994 -1103.1774
+83935.25803811802 4.1318207 -1103.1774
+83936.25803816831 4.1317816 -1103.1774
+83937.2580382186 4.1318207 -1103.1576
+83938.25803826889 4.1316633 -1103.1576
+83939.25803831918 4.1317024 -1103.1774
+83940.25803836947 4.1316237 -1103.0984
+83941.25803841976 4.1317024 -1103.2959
+83942.25803847006 4.1316633 -1103.1576
+83943.25803852035 4.1316237 -1103.2168
+83944.25803857064 4.1316237 -1103.0785
+83945.25803862093 4.1316237 -1103.197
+83946.25803867122 4.1315451 -1103.1378
+83947.25803872151 4.1314664 -1103.0984
+83948.2580387718 4.1314664 -1103.197
+83949.2580388221 4.1314268 -1103.2168
+83950.25803887239 4.1313877 -1103.197
+83951.25803892268 4.1313481 -1103.1576
+83952.25803897297 4.1313877 -1103.197
+83953.25803902326 4.131309 -1103.2168
+83954.25803907355 4.1312695 -1103.0984
+83955.25803912384 4.1313481 -1103.1774
+83956.25803917414 4.1312695 -1103.1378
+83957.25803922443 4.131309 -1103.2366
+83958.25803927472 4.1312695 -1103.1378
+83959.25803932501 4.1312304 -1103.1774
+83960.2580393753 4.1311512 -1103.197
+83961.2580394256 4.1311512 -1103.2761
+83962.25803947588 4.1310334 -1103.2168
+83963.25803952618 4.1311121 -1103.1182
+83964.25803957647 4.1310725 -1103.197
+83965.25803962676 4.1310334 -1103.0785
+83966.25803967705 4.1310334 -1103.1774
+83967.25803972734 4.1309938 -1103.2168
+83968.25803977763 4.1310725 -1103.1182
+83969.25803982792 4.1309152 -1103.2959
+83970.25803987822 4.1309152 -1103.1182
+83971.2580399285 4.1309547 -1103.1182
+83972.2580399788 4.1309152 -1103.0391
+83973.25804002909 4.1308365 -1103.1378
+83974.25804007938 4.1308761 -1103.1378
+83975.25804012967 4.1308365 -1103.2168
+83976.25804017996 4.1307182 -1103.2366
+83977.25804023026 4.1307969 -1103.1576
+83978.25804028055 4.1307578 -1103.2168
+83979.25804033084 4.1306791 -1103.2366
+83980.25804038113 4.1306396 -1103.1774
+83981.25804043142 4.1306791 -1103.1576
+83982.25804048171 4.1305213 -1103.1182
+83983.258040532 4.1306005 -1103.1774
+83984.2580405823 4.1305609 -1103.1576
+83985.25804063259 4.1305213 -1103.2366
+83986.25804068288 4.1304822 -1103.2366
+83987.25804073317 4.1304426 -1103.1182
+83988.25804078346 4.1304035 -1103.2366
+83989.25804083375 4.1304426 -1103.2761
+83990.25804088404 4.1304035 -1103.1774
+83991.25804093434 4.1303248 -1103.1774
+83992.25804098463 4.1304426 -1103.197
+83993.25804103492 4.1302853 -1103.1774
+83994.25804108521 4.1302853 -1103.197
+83995.2580411355 4.130167 -1103.0984
+83996.25804118579 4.1302066 -1103.2562
+83997.25804123608 4.130167 -1103.2168
+83998.25804128638 4.130167 -1103.2168
+83999.25804133667 4.1302066 -1103.197
+84000.25804138696 4.1302853 -1103.2168
+84001.25804143725 4.1300883 -1103.1774
+84002.25804148754 4.1300883 -1103.0588
+84003.25804153783 4.1300492 -1103.1182
+84004.25804158812 4.1300097 -1103.1378
+84005.25804163842 4.1299706 -1103.0984
+84006.2580416887 4.1298914 -1103.0984
+84007.258041739 4.1300097 -1103.1182
+84008.25804178929 4.1298127 -1103.2168
+84009.25804183958 4.1298523 -1103.1774
+84010.25804188987 4.1298914 -1103.2168
+84011.25804194016 4.1298914 -1103.197
+84012.25804199046 4.1298523 -1103.2562
+84013.25804204075 4.1297736 -1103.1774
+84014.25804209104 4.1298523 -1103.2168
+84015.25804214133 4.1296949 -1103.1576
+84016.25804219162 4.129734 -1103.1774
+84017.25804224191 4.1296949 -1103.2366
+84018.2580422922 4.1296554 -1103.1378
+84019.2580423425 4.1296158 -1103.2168
+84020.25804239279 4.1296158 -1103.2366
+84021.25804244308 4.1296554 -1103.2366
+84022.25804249337 4.1296554 -1103.1774
+84023.25804254366 4.1294584 -1103.1378
+84024.25804259395 4.1296158 -1103.0984
+84025.25804264424 4.129498 -1103.2562
+84026.25804269454 4.1293406 -1103.1182
+84027.25804274483 4.1294193 -1103.197
+84028.25804279512 4.1293406 -1103.0984
+84029.25804284541 4.1293797 -1103.2168
+84030.2580428957 4.1294193 -1103.2168
+84031.25804294599 4.1293406 -1103.1182
+84032.25804299628 4.1293011 -1103.2366
+84033.25804304658 4.1293011 -1103.197
+84034.25804309687 4.1293011 -1103.1576
+84035.25804314716 4.1292224 -1103.2562
+84036.25804319745 4.1291041 -1103.1774
+84037.25804324774 4.1292615 -1103.1774
+84038.25804329803 4.129065 -1103.1182
+84039.25804334832 4.129065 -1103.1774
+84040.25804339861 4.1289859 -1103.197
+84041.2580434489 4.129065 -1103.2366
+84042.2580434992 4.1291041 -1103.1576
+84043.25804354949 4.1290255 -1103.1576
+84044.25804359978 4.1289859 -1103.197
+84045.25804365007 4.1289468 -1103.197
+84046.25804370036 4.1289072 -1103.1774
+84047.25804375065 4.1289859 -1103.1378
+84048.25804380095 4.1289072 -1103.2168
+84049.25804385124 4.1289072 -1103.2366
+84050.25804390153 4.1287498 -1103.1182
+84051.25804395182 4.1287894 -1103.2168
+84052.25804400211 4.1287894 -1103.197
+84053.2580440524 4.1287107 -1103.0391
+84054.2580441027 4.1287107 -1103.1182
+84055.25804415299 4.1287498 -1103.1576
+84056.25804420328 4.1287894 -1103.2168
+84057.25804425357 4.1285529 -1103.2366
+84058.25804430386 4.1285529 -1103.2959
+84059.25804435415 4.1285925 -1103.197
+84060.25804440444 4.1285138 -1103.197
+84061.25804445473 4.1286316 -1103.2761
+84062.25804450503 4.1284742 -1103.2562
+84063.25804455532 4.1285138 -1103.1378
+84064.25804460561 4.1284351 -1103.1774
+84065.2580446559 4.1284351 -1103.197
+84066.25804470619 4.1284351 -1103.2562
+84067.25804475648 4.1284351 -1103.197
+84068.25804480677 4.1283956 -1103.197
+84069.25804485707 4.1284351 -1103.1576
+84070.25804490736 4.1281986 -1103.2168
+84071.25804495765 4.1282382 -1103.1182
+84072.25804500794 4.1283169 -1103.1378
+84073.25804505823 4.1283169 -1103.1774
+84074.25804510852 4.1282382 -1103.1774
+84075.25804515881 4.1281986 -1103.1576
+84076.2580452091 4.1281199 -1103.0785
+84077.2580452594 4.1281595 -1103.1774
+84078.25804530969 4.1281199 -1103.2168
+84079.25804535998 4.1280017 -1103.2168
+84080.25804541027 4.1280808 -1103.1576
+84081.25804546056 4.1281199 -1103.1774
+84082.25804551085 4.1279626 -1103.1576
+84083.25804556115 4.1280413 -1103.2562
+84084.25804561144 4.127923 -1103.1182
+84085.25804566173 4.1279626 -1103.197
+84086.25804571202 4.1279626 -1103.1774
+84087.25804576231 4.1278443 -1103.1576
+84088.2580458126 4.1279626 -1103.1182
+84089.2580458629 4.1278443 -1103.1378
+84090.25804591319 4.1278839 -1103.1774
+84091.25804596348 4.127687 -1103.1378
+84092.25804601377 4.127687 -1103.2959
+84093.25804606406 4.1277261 -1103.2168
+84094.25804611435 4.127687 -1103.1182
+84095.25804616464 4.127687 -1103.1576
+84096.25804621493 4.1277657 -1103.1774
+84097.25804626523 4.1276083 -1103.2562
+84098.25804631552 4.127687 -1103.1774
+84099.25804636581 4.1276474 -1103.1182
+84100.2580464161 4.1275296 -1103.197
+84101.25804646639 4.1275687 -1103.1774
+84102.25804651668 4.1275687 -1103.0785
+84103.25804656697 4.12749 -1103.2168
+84104.25804661727 4.1274505 -1103.197
+84105.25804666756 4.1274114 -1103.197
+84106.25804671785 4.1275687 -1103.197
+84107.25804676814 4.1274114 -1103.2168
+84108.25804681843 4.1273718 -1103.1576
+84109.25804686872 4.1273327 -1103.1378
+84110.25804691901 4.1272931 -1103.1774
+84111.2580469693 4.127254 -1103.2168
+84112.2580470196 4.127254 -1103.1774
+84113.25804706989 4.1272931 -1103.1774
+84114.25804712018 4.1272144 -1103.2168
+84115.25804717047 4.1272931 -1103.1378
+84116.25804722076 4.1272144 -1103.1774
+84117.25804727105 4.1271753 -1103.1576
+84118.25804732135 4.1271358 -1103.2168
+84119.25804737164 4.1270175 -1103.2168
+84120.25804742193 4.1270962 -1103.197
+84121.25804747222 4.1269784 -1103.1774
+84122.25804752251 4.1269388 -1103.1576
+84123.2580475728 4.1270175 -1103.0984
+84124.2580476231 4.1270175 -1103.1576
+84125.25804767339 4.1269784 -1103.197
+84126.25804772368 4.1269784 -1103.1774
+84127.25804777397 4.1268997 -1103.0785
+84128.25804782426 4.1268997 -1103.1774
+84129.25804787455 4.1268601 -1103.197
+84130.25804792484 4.1268206 -1103.197
+84131.25804797513 4.1267815 -1103.1182
+84132.25804802543 4.1268206 -1103.2366
+84133.25804807572 4.1267815 -1103.1182
+84134.25804812601 4.1267419 -1103.1774
+84135.2580481763 4.1268601 -1103.197
+84136.25804822659 4.1267419 -1103.197
+84137.25804827688 4.1266241 -1103.1576
+84138.25804832717 4.1267028 -1103.1182
+84139.25804837747 4.1265454 -1103.1576
+84140.25804842776 4.1266241 -1103.197
+84141.25804847805 4.1265454 -1103.197
+84142.25804852834 4.1265845 -1103.2168
+84143.25804857863 4.1264663 -1103.1576
+84144.25804862892 4.1264663 -1103.1774
+84145.25804867921 4.1265059 -1103.1576
+84146.2580487295 4.1266632 -1103.197
+84147.2580487798 4.1263485 -1103.2168
+84148.25804883009 4.1264272 -1103.1378
+84149.25804888038 4.1263485 -1103.1576
+84150.25804893067 4.1263485 -1103.197
+84151.25804898096 4.1263485 -1103.0984
+84152.25804903125 4.1263876 -1103.2168
+84153.25804908155 4.1264272 -1103.0785
+84154.25804913184 4.1262698 -1103.2562
+84155.25804918213 4.1261516 -1103.197
+84156.25804923242 4.1262302 -1103.1182
+84157.25804928271 4.1261516 -1103.1378
+84158.258049333 4.1261907 -1103.1182
+84159.2580493833 4.1262302 -1103.0984
+84160.25804943359 4.1262302 -1103.2366
+84161.25804948388 4.1261516 -1103.1378
+84162.25804953417 4.1260729 -1103.1378
+84163.25804958446 4.1260333 -1103.1774
+84164.25804963475 4.1260333 -1103.1774
+84165.25804968504 4.1261516 -1103.2366
+84166.25804973533 4.1259942 -1103.2959
+84167.25804978563 4.1259942 -1103.2168
+84168.25804983592 4.1258759 -1103.197
+84169.25804988621 4.1259151 -1103.2168
+84170.2580499365 4.1259151 -1103.2562
+84171.25804998679 4.1258759 -1103.1774
+84172.25805003708 4.1257973 -1103.197
+84173.25805008737 4.1257973 -1103.1182
+84174.25805013767 4.1257973 -1103.197
+84175.25805018796 4.1257973 -1103.1576
+84176.25805023825 4.1258364 -1103.197
+84177.25805028854 4.125679 -1103.1182
+84178.25805033883 4.125679 -1103.2168
+84179.25805038912 4.1258364 -1103.2168
+84180.25805043941 4.1256003 -1103.1774
+84181.2580504897 4.1256399 -1103.0391
+84182.25805054 4.1256003 -1103.1774
+84183.25805059029 4.1256003 -1103.1576
+84184.25805064058 4.1255608 -1103.1378
+84185.25805069087 4.1255217 -1103.2366
+84186.25805074116 4.1255217 -1103.1774
+84187.25805079145 4.1254821 -1103.1576
+84188.25805084174 4.1255608 -1103.1774
+84189.25805089204 4.1254821 -1103.197
+84190.25805094233 4.125443 -1103.1378
+84191.25805099262 4.1254034 -1103.0785
+84192.25805104291 4.125246 -1103.2168
+84193.2580510932 4.1254034 -1103.2366
+84194.2580511435 4.1253247 -1103.1774
+84195.25805119378 4.1253247 -1103.2168
+84196.25805124408 4.1253247 -1103.2366
+84197.25805129437 4.125246 -1103.1576
+84198.25805134466 4.1252851 -1103.1576
+84199.25805139495 4.1251674 -1103.2366
+84200.25805144524 4.1251674 -1103.1774
+84201.25805149553 4.1252065 -1103.1378
+84202.25805154582 4.1250887 -1103.1378
+84203.25805159612 4.1251674 -1103.197
+84204.25805164641 4.12501 -1103.1378
+84205.2580516967 4.1251278 -1103.1774
+84206.25805174699 4.1249704 -1103.2562
+84207.25805179728 4.12501 -1103.1576
+84208.25805184757 4.1249704 -1103.1182
+84209.25805189786 4.1250887 -1103.1774
+84210.25805194816 4.1249309 -1103.2366
+84211.25805199845 4.1249704 -1103.1182
+84212.25805204874 4.1248131 -1103.1774
+84213.25805209903 4.1248918 -1103.2562
+84214.25805214932 4.1249309 -1103.1182
+84215.25805219961 4.1247344 -1103.0984
+84216.2580522499 4.1247735 -1103.2168
+84217.2580523002 4.1246948 -1103.1378
+84218.25805235049 4.1247735 -1103.1774
+84219.25805240078 4.1247344 -1103.1182
+84220.25805245107 4.1248131 -1103.1774
+84221.25805250136 4.1246948 -1103.2562
+84222.25805255165 4.1246552 -1103.1576
+84223.25805260194 4.1246948 -1103.1774
+84224.25805265224 4.1246161 -1103.1774
+84225.25805270253 4.1246552 -1103.0984
+84226.25805275282 4.1246948 -1103.1576
+84227.25805280311 4.1244979 -1103.2168
+84228.2580528534 4.1245375 -1103.2168
+84229.2580529037 4.1244979 -1103.1182
+84230.25805295398 4.1244192 -1103.1774
+84231.25805300428 4.1243796 -1103.0391
+84232.25805305457 4.1244588 -1103.1576
+84233.25805310486 4.1244192 -1103.1774
+84234.25805315515 4.1244192 -1103.1774
+84235.25805320544 4.1244192 -1103.1774
+84236.25805325573 4.1243405 -1103.1378
+84237.25805330602 4.1243796 -1103.2366
+84238.25805335632 4.1243405 -1103.1576
+84239.25805340661 4.1243796 -1103.197
+84240.2580534569 4.124301 -1103.1576
+84241.25805350719 4.1241436 -1103.197
+84242.25805355748 4.1242619 -1103.1774
+84243.25805360777 4.1242619 -1103.1576
+84244.25805365806 4.1241045 -1103.2366
+84245.25805370836 4.1241436 -1103.0984
+84246.25805375865 4.1241436 -1103.0984
+84247.25805380894 4.1240649 -1103.2562
+84248.25805385923 4.1241045 -1103.1378
+84249.25805390952 4.1240649 -1103.1378
+84250.25805395981 4.1241045 -1103.1774
+84251.2580540101 4.1240649 -1103.2168
+84252.2580540604 4.1239862 -1103.1774
+84253.25805411069 4.1239862 -1103.2168
+84254.25805416098 4.1239076 -1103.1378
+84255.25805421127 4.1239467 -1103.1378
+84256.25805426156 4.1239467 -1103.1774
+84257.25805431185 4.1239467 -1103.1378
+84258.25805436214 4.1239076 -1103.1774
+84259.25805441244 4.123868 -1103.0785
+84260.25805446273 4.123868 -1103.1774
+84261.25805451302 4.1237106 -1103.197
+84262.25805456331 4.1237893 -1103.1576
+84263.2580546136 4.1237893 -1103.1576
+84264.2580546639 4.1236711 -1103.1774
+84265.25805471418 4.123632 -1103.1774
+84266.25805476448 4.123632 -1103.1576
+84267.25805481477 4.1236711 -1103.197
+84268.25805486506 4.1235924 -1103.1576
+84269.25805491535 4.1235924 -1103.1378
+84270.25805496564 4.1235924 -1103.1774
+84271.25805501593 4.1235533 -1103.2562
+84272.25805506622 4.1235924 -1103.1576
+84273.25805511652 4.1234746 -1103.1774
+84274.2580551668 4.1235137 -1103.197
+84275.2580552171 4.123435 -1103.197
+84276.25805526739 4.1233954 -1103.1774
+84277.25805531768 4.1233954 -1103.2168
+84278.25805536797 4.1233563 -1103.1576
+84279.25805541826 4.1233563 -1103.1182
+84280.25805546856 4.1233168 -1103.1774
+84281.25805551885 4.1232381 -1103.1774
+84282.25805556914 4.1233168 -1103.0984
+84283.25805561943 4.1233563 -1103.1378
+84284.25805566972 4.1232381 -1103.197
+84285.25805572001 4.1233168 -1103.2168
+84286.2580557703 4.1231594 -1103.197
+84287.2580558206 4.1232381 -1103.2168
+84288.25805587089 4.123199 -1103.0984
+84289.25805592118 4.1231594 -1103.1378
+84290.25805597147 4.1230412 -1103.1576
+84291.25805602176 4.1231594 -1103.1378
+84292.25805607205 4.1230021 -1103.2168
+84293.25805612234 4.1230412 -1103.1774
+84294.25805617264 4.1230412 -1103.2562
+84295.25805622293 4.1230412 -1103.1378
+84296.25805627322 4.1230412 -1103.2168
+84297.25805632351 4.1229625 -1103.3353
+84298.2580563738 4.1229234 -1103.2366
+84299.25805642409 4.1229625 -1103.1774
+84300.25805647438 4.1229234 -1103.197
+84301.25805652468 4.1229234 -1103.0984
+84302.25805657497 4.1229234 -1103.2168
+84303.25805662526 4.1228447 -1103.2168
+84304.25805667555 4.1229625 -1103.2366
+84305.25805672584 4.1227655 -1103.1774
+84306.25805677613 4.1228447 -1103.2168
+84307.25805682642 4.1228051 -1103.197
+84308.25805687672 4.1227264 -1103.1774
+84309.258056927 4.1226478 -1103.197
+84310.2580569773 4.1227264 -1103.2366
+84311.25805702759 4.1226082 -1103.2562
+84312.25805707788 4.1226082 -1103.1182
+84313.25805712817 4.1226478 -1103.2562
+84314.25805717846 4.1226478 -1103.197
+84315.25805722876 4.1225691 -1103.2366
+84316.25805727905 4.1226082 -1103.1182
+84317.25805732934 4.1226082 -1103.2168
+84318.25805737963 4.1225295 -1103.1378
+84319.25805742992 4.1224899 -1103.197
+84320.25805748021 4.1225295 -1103.1378
+84321.2580575305 4.1224899 -1103.1182
+84322.2580575808 4.1224113 -1103.2168
+84323.25805763109 4.1224113 -1103.1774
+84324.25805768138 4.1224899 -1103.1774
+84325.25805773167 4.1222935 -1103.1378
+84326.25805778196 4.1223722 -1103.1774
+84327.25805783225 4.1222935 -1103.1378
+84328.25805788254 4.1223326 -1103.1576
+84329.25805793284 4.1222935 -1103.1182
+84330.25805798313 4.1223722 -1103.1576
+84331.25805803342 4.1222935 -1103.2761
+84332.25805808371 4.1222143 -1103.1378
+84333.258058134 4.1221356 -1103.1774
+84334.25805818429 4.1221356 -1103.2168
+84335.25805823458 4.1221752 -1103.197
+84336.25805828488 4.1221752 -1103.197
+84337.25805833517 4.1220965 -1103.2168
+84338.25805838546 4.122057 -1103.0391
+84339.25805843575 4.122057 -1103.197
+84340.25805848604 4.1219392 -1103.197
+84341.25805853633 4.1220179 -1103.1576
+84342.25805858662 4.1219783 -1103.1774
+84343.25805863691 4.1220179 -1103.1774
+84344.2580586872 4.1218996 -1103.1378
+84345.2580587375 4.122057 -1103.2366
+84346.25805878779 4.1218996 -1103.197
+84347.25805883808 4.12186 -1103.1182
+84348.25805888837 4.1218209 -1103.1182
+84349.25805893866 4.1217813 -1103.1378
+84350.25805898895 4.12186 -1103.1774
+84351.25805903925 4.1218996 -1103.2761
+84352.25805908954 4.1217813 -1103.197
+84353.25805913983 4.1217813 -1103.1774
+84354.25805919012 4.1218209 -1103.1378
+84355.25805924041 4.1217027 -1103.2366
+84356.2580592907 4.1216636 -1103.197
+84357.258059341 4.1217422 -1103.2562
+84358.25805939129 4.1215453 -1103.1182
+84359.25805944158 4.1215453 -1103.1378
+84360.25805949187 4.121624 -1103.197
+84361.25805954216 4.121624 -1103.1774
+84362.25805959245 4.1215453 -1103.1774
+84363.25805964274 4.1215453 -1103.197
+84364.25805969303 4.1215453 -1103.1576
+84365.25805974333 4.1215057 -1103.2168
+84366.25805979362 4.1214271 -1103.2168
+84367.25805984391 4.1215844 -1103.2366
+84368.2580598942 4.1215453 -1103.1576
+84369.25805994449 4.1214271 -1103.2959
+84370.25805999478 4.1213093 -1103.2168
+84371.25806004507 4.1213484 -1103.2366
+84372.25806009537 4.1213484 -1103.2168
+84373.25806014566 4.1213484 -1103.1774
+84374.25806019595 4.1213484 -1103.2366
+84375.25806024624 4.1213093 -1103.197
+84376.25806029653 4.1213093 -1103.197
+84377.25806034682 4.1212301 -1103.1576
+84378.25806039711 4.1212697 -1103.1378
+84379.2580604474 4.1212301 -1103.1774
+84380.2580604977 4.1211123 -1103.0391
+84381.25806054799 4.1212697 -1103.1576
+84382.25806059828 4.1211123 -1103.2366
+84383.25806064857 4.1211123 -1103.2366
+84384.25806069886 4.1210728 -1103.0984
+84385.25806074915 4.1210337 -1103.1576
+84386.25806079945 4.1209941 -1103.1378
+84387.25806084974 4.1209941 -1103.1378
+84388.25806090003 4.1209154 -1103.1774
+84389.25806095032 4.1209545 -1103.197
+84390.25806100061 4.1209154 -1103.1774
+84391.2580610509 4.1208758 -1103.2562
+84392.2580611012 4.1209941 -1103.2761
+84393.25806115149 4.1209154 -1103.1182
+84394.25806120178 4.1209154 -1103.1378
+84395.25806125207 4.1208367 -1103.2366
+84396.25806130236 4.1209154 -1103.1774
+84397.25806135265 4.1208758 -1103.1774
+84398.25806140294 4.1206789 -1103.197
+84399.25806145323 4.1207581 -1103.2562
+84400.25806150353 4.1207581 -1103.0785
+84401.25806155382 4.1207185 -1103.2168
+84402.25806160411 4.1206789 -1103.2168
+84403.2580616544 4.1206789 -1103.2562
+84404.25806170469 4.1207972 -1103.1378
+84405.25806175498 4.1206002 -1103.197
+84406.25806180527 4.1206002 -1103.1774
+84407.25806185557 4.1205611 -1103.197
+84408.25806190586 4.1206002 -1103.1182
+84409.25806195615 4.1204824 -1103.1576
+84410.25806200644 4.1206002 -1103.197
+84411.25806205673 4.1205215 -1103.2168
+84412.25806210702 4.1204824 -1103.2366
+84413.25806215731 4.1204038 -1103.1182
+84414.2580622076 4.1205215 -1103.197
+84415.2580622579 4.1204038 -1103.1576
+84416.25806230819 4.1204429 -1103.1378
+84417.25806235848 4.1202855 -1103.197
+84418.25806240877 4.1204038 -1103.2761
+84419.25806245906 4.1203642 -1103.1576
+84420.25806250935 4.1203642 -1103.197
+84421.25806255965 4.1202855 -1103.1378
+84422.25806260994 4.1202068 -1103.2562
+84423.25806266023 4.1202068 -1103.1576
+84424.25806271052 4.1202068 -1103.197
+84425.25806276081 4.1201673 -1103.2168
+84426.2580628111 4.1201282 -1103.197
+84427.2580628614 4.1201673 -1103.1774
+84428.25806291169 4.1202459 -1103.1774
+84429.25806296198 4.120049 -1103.2562
+84430.25806301227 4.1201282 -1103.197
+84431.25806306256 4.120049 -1103.2562
+84432.25806311285 4.1200886 -1103.2168
+84433.25806316314 4.1200099 -1103.1576
+84434.25806321343 4.1200886 -1103.1774
+84435.25806326373 4.1198916 -1103.1576
+84436.25806331402 4.1200099 -1103.197
+84437.25806336431 4.1198916 -1103.197
+84438.2580634146 4.1199703 -1103.1774
+84439.25806346489 4.1199703 -1103.197
+84440.25806351518 4.1200099 -1103.2761
+84441.25806356547 4.1199312 -1103.197
+84442.25806361577 4.119813 -1103.1182
+84443.25806366606 4.1197739 -1103.2761
+84444.25806371635 4.1198525 -1103.1774
+84445.25806376664 4.1197739 -1103.0785
+84446.25806381693 4.1196947 -1103.1774
+84447.25806386722 4.1196947 -1103.1774
+84448.25806391751 4.1196556 -1103.1182
+84449.2580639678 4.1197343 -1103.1378
+84450.2580640181 4.1196556 -1103.2366
+84451.25806406839 4.1197739 -1103.1576
+84452.25806411868 4.1196947 -1103.2761
+84453.25806416897 4.119616 -1103.1378
+84454.25806421926 4.1195374 -1103.1378
+84455.25806426955 4.1195374 -1103.197
+84456.25806431985 4.1195769 -1103.197
+84457.25806437014 4.1195374 -1103.0984
+84458.25806442043 4.1194587 -1103.1774
+84459.25806447072 4.1194983 -1103.2562
+84460.25806452101 4.1194983 -1103.1378
+84461.2580645713 4.1194191 -1103.1378
+84462.2580646216 4.1194191 -1103.1774
+84463.25806467189 4.1194191 -1103.1576
+84464.25806472218 4.1194191 -1103.1576
+84465.25806477247 4.11938 -1103.2366
+84466.25806482276 4.1193404 -1103.2366
+84467.25806487305 4.1193404 -1103.1774
+84468.25806492334 4.1193404 -1103.1774
+84469.25806497363 4.1192617 -1103.1774
+84470.25806502393 4.1193013 -1103.1576
+84471.25806507422 4.1193404 -1103.2366
+84472.25806512451 4.11938 -1103.1774
+84473.2580651748 4.119144 -1103.1378
+84474.25806522509 4.1192226 -1103.2366
+84475.25806527538 4.1192617 -1103.2168
+84476.25806532567 4.1192226 -1103.2168
+84477.25806537597 4.119144 -1103.2562
+84478.25806542626 4.1190257 -1103.2168
+84479.25806547655 4.1190257 -1103.1774
+84480.25806552684 4.1190257 -1103.1182
+84481.25806557713 4.1190257 -1103.1774
+84482.25806562742 4.1189861 -1103.1378
+84483.25806567771 4.1190648 -1103.2761
+84484.258065728 4.118947 -1103.1378
+84485.2580657783 4.118947 -1103.1774
+84486.25806582859 4.1189861 -1103.1576
+84487.25806587888 4.1190648 -1103.197
+84488.25806592917 4.118947 -1103.1576
+84489.25806597946 4.1189075 -1103.1576
+84490.25806602975 4.1189075 -1103.2366
+84491.25806608004 4.1188684 -1103.2168
+84492.25806613034 4.1188684 -1103.2168
+84493.25806618063 4.1187892 -1103.2562
+84494.25806623092 4.1186714 -1103.1576
+84495.25806628121 4.1187501 -1103.1774
+84496.2580663315 4.1187105 -1103.197
+84497.2580663818 4.1187501 -1103.2562
+84498.25806643208 4.1187501 -1103.0984
+84499.25806648238 4.1187105 -1103.2959
+84500.25806653267 4.1186714 -1103.197
+84501.25806658296 4.1186318 -1103.2168
+84502.25806663325 4.1187501 -1103.2562
+84503.25806668354 4.1185927 -1103.197
+84504.25806673383 4.1185532 -1103.0785
+84505.25806678412 4.1185927 -1103.2959
+84506.25806683442 4.1185532 -1103.197
+84507.25806688471 4.1185136 -1103.1378
+84508.258066935 4.1185532 -1103.1378
+84509.25806698529 4.1184745 -1103.1774
+84510.25806703558 4.1185927 -1103.2168
+84511.25806708587 4.1183958 -1103.197
+84512.25806713616 4.1184349 -1103.3749
+84513.25806718646 4.1183562 -1103.2959
+84514.25806723675 4.1183171 -1103.197
+84515.25806728704 4.1183958 -1103.197
+84516.25806733733 4.1182775 -1103.2366
+84517.25806738762 4.1183171 -1103.1576
+84518.25806743791 4.1182775 -1103.2168
+84519.2580674882 4.1182384 -1103.1774
+84520.2580675385 4.1181593 -1103.197
+84521.25806758879 4.1181989 -1103.1576
+84522.25806763908 4.1181202 -1103.2168
+84523.25806768937 4.1182775 -1103.1378
+84524.25806773966 4.1182384 -1103.2562
+84525.25806778995 4.1182384 -1103.197
+84526.25806784024 4.1180806 -1103.197
+84527.25806789054 4.1181989 -1103.197
+84528.25806794083 4.1180806 -1103.2168
+84529.25806799112 4.1179233 -1103.1774
+84530.25806804141 4.1180415 -1103.1182
+84531.2580680917 4.1180019 -1103.1774
+84532.258068142 4.1180019 -1103.1774
+84533.25806819228 4.1179233 -1103.1182
+84534.25806824258 4.1179628 -1103.2366
+84535.25806829287 4.1179233 -1103.1774
+84536.25806834316 4.1178837 -1103.2168
+84537.25806839345 4.1179628 -1103.0785
+84538.25806844374 4.1178837 -1103.1378
+84539.25806849403 4.1179233 -1103.2168
+84540.25806854432 4.1178446 -1103.1378
+84541.25806859462 4.1178446 -1103.1576
+84542.25806864491 4.1177659 -1103.0984
+84543.2580686952 4.1177659 -1103.1774
+84544.25806874549 4.1176872 -1103.1182
+84545.25806879578 4.1176872 -1103.197
+84546.25806884607 4.117805 -1103.1378
+84547.25806889636 4.1177659 -1103.2168
+84548.25806894666 4.1176476 -1103.1182
+84549.25806899695 4.1176476 -1103.1774
+84550.25806904724 4.1176872 -1103.2168
+84551.25806909753 4.1176476 -1103.2562
+84552.25806914782 4.1176476 -1103.197
+84553.25806919811 4.117569 -1103.197
+84554.2580692484 4.1175294 -1103.2366
+84555.2580692987 4.1175294 -1103.1576
+84556.25806934899 4.1174903 -1103.2761
+84557.25806939928 4.117569 -1103.1774
+84558.25806944957 4.1175294 -1103.2366
+84559.25806949986 4.1176085 -1103.2366
+84560.25806955015 4.1174507 -1103.197
+84561.25806960044 4.1174903 -1103.1774
+84562.25806965074 4.1174903 -1103.1774
+84563.25806970103 4.1173329 -1103.1378
+84564.25806975132 4.1174116 -1103.0785
+84565.25806980161 4.1173329 -1103.2562
+84566.2580698519 4.117372 -1103.2562
+84567.2580699022 4.1173329 -1103.2562
+84568.25806995248 4.1172934 -1103.2366
+84569.25807000278 4.1172147 -1103.1774
+84570.25807005307 4.1172147 -1103.197
+84571.25807010336 4.1171751 -1103.2168
+84572.25807015365 4.1172538 -1103.2366
+84573.25807020394 4.1172538 -1103.197
+84574.25807025423 4.1171751 -1103.0785
+84575.25807030452 4.1172538 -1103.197
+84576.25807035482 4.117136 -1103.1378
+84577.2580704051 4.1170964 -1103.2562
+84578.2580704554 4.1170573 -1103.197
+84579.25807050569 4.1170573 -1103.1774
+84580.25807055598 4.1170964 -1103.1774
+84581.25807060627 4.1169391 -1103.1774
+84582.25807065656 4.1170177 -1103.1774
+84583.25807070686 4.1170964 -1103.1774
+84584.25807075715 4.1170177 -1103.197
+84585.25807080744 4.1168995 -1103.2168
+84586.25807085773 4.1169391 -1103.197
+84587.25807090802 4.1169391 -1103.197
+84588.25807095831 4.1169391 -1103.197
+84589.2580710086 4.1168995 -1103.1774
+84590.2580710589 4.1168208 -1103.197
+84591.25807110919 4.1167817 -1103.1774
+84592.25807115948 4.1167817 -1103.3156
+84593.25807120977 4.1168604 -1103.2366
+84594.25807126006 4.1168208 -1103.1576
+84595.25807131035 4.116703 -1103.197
+84596.25807136064 4.1166635 -1103.197
+84597.25807141094 4.1166635 -1103.0785
+84598.25807146123 4.116703 -1103.2366
+84599.25807151152 4.1166635 -1103.2761
+84600.25807156181 4.1166635 -1103.1576
+84601.2580716121 4.1166635 -1103.2562
+84602.25807166239 4.1166239 -1103.1576
+84603.25807171268 4.1166635 -1103.2168
+84604.25807176298 4.1165848 -1103.197
+84605.25807181327 4.1166635 -1103.1378
+84606.25807186356 4.1165452 -1103.197
+84607.25807191385 4.1165848 -1103.1576
+84608.25807196414 4.1165452 -1103.1576
+84609.25807201443 4.1165452 -1103.2366
+84610.25807206472 4.1165452 -1103.197
+84611.25807211502 4.1164274 -1103.197
+84612.2580721653 4.1165061 -1103.2562
+84613.2580722156 4.1165848 -1103.2168
+84614.25807226589 4.1165061 -1103.1576
+84615.25807231618 4.1163878 -1103.2366
+84616.25807236647 4.1163878 -1103.1774
+84617.25807241676 4.1163483 -1103.2366
+84618.25807246706 4.1163483 -1103.197
+84619.25807251735 4.1162696 -1103.0785
+84620.25807256764 4.1164274 -1103.1378
+84621.25807261793 4.1162305 -1103.2562
+84622.25807266822 4.1162305 -1103.0785
+84623.25807271851 4.1162696 -1103.2168
+84624.2580727688 4.1163092 -1103.1576
+84625.2580728191 4.1162305 -1103.1774
+84626.25807286939 4.1161518 -1103.197
+84627.25807291968 4.1161518 -1103.1182
+84628.25807296997 4.1161909 -1103.1576
+84629.25807302026 4.1161518 -1103.2761
+84630.25807307055 4.1161122 -1103.2959
+84631.25807312084 4.115994 -1103.1774
+84632.25807317114 4.1161122 -1103.1576
+84633.25807322143 4.1160336 -1103.2366
+84634.25807327172 4.1160336 -1103.1182
+84635.25807332201 4.1160336 -1103.1182
+84636.2580733723 4.115994 -1103.197
+84637.25807342259 4.1159549 -1103.1576
+84638.25807347288 4.1159153 -1103.2562
+84639.25807352317 4.1159153 -1103.2168
+84640.25807357347 4.1159153 -1103.1774
+84641.25807362376 4.1158762 -1103.2168
+84642.25807367405 4.1157975 -1103.1576
+84643.25807372434 4.1158762 -1103.2562
+84644.25807377463 4.1158366 -1103.197
+84645.25807382492 4.1157975 -1103.197
+84646.25807387521 4.1157975 -1103.2761
+84647.2580739255 4.1157975 -1103.0984
+84648.2580739758 4.1157975 -1103.197
+84649.25807402609 4.1157184 -1103.1182
+84650.25807407638 4.115561 -1103.197
+84651.25807412667 4.1157184 -1103.2562
+84652.25807417696 4.1156793 -1103.1576
+84653.25807422725 4.1156793 -1103.1378
+84654.25807427755 4.1157184 -1103.1774
+84655.25807432784 4.1156006 -1103.2366
+84656.25807437813 4.1156397 -1103.197
+84657.25807442842 4.1155219 -1103.1774
+84658.25807447871 4.115561 -1103.1182
+84659.258074529 4.1155219 -1103.197
+84660.2580745793 4.1156006 -1103.2761
+84661.25807462959 4.1154823 -1103.0785
+84662.25807467988 4.1154823 -1103.2366
+84663.25807473017 4.1155219 -1103.1182
+84664.25807478046 4.1154823 -1103.1576
+84665.25807483075 4.1154037 -1103.1378
+84666.25807488104 4.1154823 -1103.197
+84667.25807493133 4.1154428 -1103.1774
+84668.25807498163 4.1154037 -1103.1576
+84669.25807503192 4.1153641 -1103.1774
+84670.25807508221 4.1154823 -1103.2562
+84671.2580751325 4.115325 -1103.197
+84672.25807518279 4.1152854 -1103.2168
+84673.25807523308 4.115325 -1103.1378
+84674.25807528337 4.1152854 -1103.2959
+84675.25807533367 4.115325 -1103.1774
+84676.25807538396 4.1152854 -1103.1378
+84677.25807543425 4.1152463 -1103.197
+84678.25807548454 4.1151676 -1103.1774
+84679.25807553483 4.115128 -1103.197
+84680.25807558512 4.115128 -1103.2168
+84681.25807563541 4.1151676 -1103.1182
+84682.2580756857 4.1150885 -1103.0984
+84683.258075736 4.1151676 -1103.1774
+84684.25807578629 4.115128 -1103.2562
+84685.25807583658 4.1150885 -1103.1774
+84686.25807588687 4.1150494 -1103.1182
+84687.25807593716 4.1149707 -1103.1774
+84688.25807598745 4.1149707 -1103.2168
+84689.25807603775 4.1150098 -1103.0984
+84690.25807608804 4.1150098 -1103.2366
+84691.25807613833 4.1149311 -1103.1378
+84692.25807618862 4.1150885 -1103.1774
+84693.25807623891 4.114892 -1103.1182
+84694.2580762892 4.114892 -1103.2168
+84695.2580763395 4.1149311 -1103.1774
+84696.25807638979 4.114892 -1103.1182
+84697.25807644008 4.1148129 -1103.0984
+84698.25807649037 4.1147738 -1103.1378
+84699.25807654066 4.1147738 -1103.1182
+84700.25807659095 4.1147738 -1103.2562
+84701.25807664124 4.1147738 -1103.197
+84702.25807669153 4.1147342 -1103.1182
+84703.25807674183 4.1146555 -1103.197
+84704.25807679212 4.1147342 -1103.0391
+84705.25807684241 4.1146555 -1103.197
+84706.2580768927 4.1146555 -1103.2761
+84707.25807694299 4.1145768 -1103.197
+84708.25807699328 4.1146951 -1103.197
+84709.25807704357 4.1146555 -1103.2168
+84710.25807709387 4.1146164 -1103.1378
+84711.25807714416 4.1145377 -1103.2562
+84712.25807719445 4.1144981 -1103.2168
+84713.25807724474 4.1146164 -1103.197
+84714.25807729503 4.1144981 -1103.1774
+84715.25807734532 4.1145768 -1103.2366
+84716.25807739561 4.1144195 -1103.2562
+84717.2580774459 4.1144586 -1103.2366
+84718.2580774962 4.1145768 -1103.2959
+84719.25807754649 4.1144586 -1103.1378
+84720.25807759678 4.1144586 -1103.1378
+84721.25807764707 4.1144195 -1103.2562
+84722.25807769736 4.1144195 -1103.2562
+84723.25807774765 4.1143799 -1103.1182
+84724.25807779795 4.1143012 -1103.197
+84725.25807784824 4.1142621 -1103.1576
+84726.25807789853 4.1143408 -1103.1774
+84727.25807794882 4.1142225 -1103.1576
+84728.25807799911 4.1143799 -1103.2168
+84729.2580780494 4.1143799 -1103.2366
+84730.2580780997 4.1142225 -1103.1378
+84731.25807814999 4.1142621 -1103.1576
+84732.25807820028 4.1142225 -1103.2366
+84733.25807825057 4.1142225 -1103.2366
+84734.25807830086 4.1142225 -1103.1182
+84735.25807835115 4.1141829 -1103.0785
+84736.25807840144 4.1141438 -1103.1576
+84737.25807845173 4.1141043 -1103.1774
+84738.25807850203 4.1141438 -1103.1378
+84739.25807855232 4.1141438 -1103.1378
+84740.25807860261 4.1140256 -1103.1378
+84741.2580786529 4.1140652 -1103.1182
+84742.25807870319 4.1140256 -1103.1774
+84743.25807875348 4.1139865 -1103.2959
+84744.25807880377 4.1139865 -1103.1378
+84745.25807885407 4.1139865 -1103.0785
+84746.25807890436 4.1139469 -1103.1576
+84747.25807895465 4.1139469 -1103.2168
+84748.25807900494 4.1139469 -1103.2366
+84749.25807905523 4.1139078 -1103.2168
+84750.25807910552 4.1139078 -1103.2366
+84751.25807915581 4.1138287 -1103.2168
+84752.2580792061 4.1138682 -1103.2168
+84753.2580792564 4.11375 -1103.1378
+84754.25807930669 4.1137896 -1103.1378
+84755.25807935698 4.1138682 -1103.197
+84756.25807940727 4.1136322 -1103.0984
+84757.25807945756 4.11375 -1103.197
+84758.25807950785 4.1137896 -1103.1576
+84759.25807955815 4.1136713 -1103.1774
+84760.25807960844 4.1136322 -1103.1576
+84761.25807965873 4.1137109 -1103.197
+84762.25807970902 4.1137109 -1103.1378
+84763.25807975931 4.1136322 -1103.0984
+84764.2580798096 4.1137109 -1103.0785
+84765.2580798599 4.1136713 -1103.2168
+84766.25807991019 4.1135926 -1103.1774
+84767.25807996048 4.1135926 -1103.2168
+84768.25808001077 4.1137109 -1103.1378
+84769.25808006106 4.1134744 -1103.2366
+84770.25808011135 4.1136322 -1103.2959
+84771.25808016164 4.1135139 -1103.1774
+84772.25808021193 4.1134744 -1103.2366
+84773.25808026223 4.1134353 -1103.2366
+84774.25808031252 4.1135139 -1103.2562
+84775.25808036281 4.1134353 -1103.0984
+84776.2580804131 4.1133957 -1103.1378
+84777.25808046339 4.1132774 -1103.2168
+84778.25808051368 4.113317 -1103.1182
+84779.25808056397 4.1132774 -1103.1774
+84780.25808061427 4.1133566 -1103.2562
+84781.25808066456 4.1135139 -1103.1576
+84782.25808071485 4.1132383 -1103.1378
+84783.25808076514 4.1132774 -1103.2366
+84784.25808081543 4.113317 -1103.2562
+84785.25808086572 4.1132774 -1103.1182
+84786.25808091601 4.113317 -1103.197
+84787.2580809663 4.1132383 -1103.1378
+84788.2580810166 4.1131988 -1103.2366
+84789.25808106689 4.1131988 -1103.1774
+84790.25808111718 4.1132383 -1103.1378
+84791.25808116747 4.1131988 -1103.197
+84792.25808121776 4.1131988 -1103.1774
+84793.25808126805 4.1131597 -1103.1774
+84794.25808131834 4.1130414 -1103.2761
+84795.25808136864 4.1130023 -1103.197
+84796.25808141893 4.1131201 -1103.2168
+84797.25808146922 4.113081 -1103.1378
+84798.25808151951 4.1130023 -1103.197
+84799.2580815698 4.1129627 -1103.1774
+84800.2580816201 4.1129627 -1103.1774
+84801.25808167038 4.1129231 -1103.2168
+84802.25808172068 4.1129231 -1103.197
+84803.25808177097 4.1128445 -1103.1576
+84804.25808182126 4.1128445 -1103.197
+84805.25808187155 4.1129627 -1103.1576
+84806.25808192184 4.1128445 -1103.1576
+84807.25808197213 4.1128445 -1103.1774
+84808.25808202242 4.1128445 -1103.1774
+84809.25808207272 4.1128054 -1103.197
+84810.25808212301 4.1128445 -1103.1774
+84811.2580821733 4.1127267 -1103.2366
+84812.25808222359 4.1127658 -1103.2562
+84813.25808227388 4.1126871 -1103.197
+84814.25808232417 4.1127267 -1103.1378
+84815.25808237446 4.1126871 -1103.0984
+84816.25808242476 4.1126871 -1103.1774
+84817.25808247505 4.1126475 -1103.0984
+84818.25808252534 4.1126475 -1103.1576
+84819.25808257563 4.1126475 -1103.1378
+84820.25808262592 4.1126084 -1103.1576
+84821.25808267621 4.1126871 -1103.1576
+84822.2580827265 4.1126871 -1103.1378
+84823.2580827768 4.1125689 -1103.197
+84824.25808282709 4.1125298 -1103.2366
+84825.25808287738 4.1125689 -1103.1576
+84826.25808292767 4.1124902 -1103.2562
+84827.25808297796 4.1126084 -1103.0785
+84828.25808302825 4.1125298 -1103.2168
+84829.25808307854 4.1124115 -1103.1576
+84830.25808312884 4.1125298 -1103.2366
+84831.25808317913 4.1123724 -1103.1774
+84832.25808322942 4.1124511 -1103.2168
+84833.25808327971 4.1124511 -1103.1576
+84834.25808333 4.1123328 -1103.1378
+84835.2580833803 4.1123328 -1103.1774
+84836.25808343058 4.1123328 -1103.1576
+84837.25808348088 4.1123724 -1103.1576
+84838.25808353117 4.1123724 -1103.0984
+84839.25808358146 4.1122932 -1103.197
+84840.25808363175 4.1122541 -1103.1576
+84841.25808368204 4.1123328 -1103.1774
+84842.25808373233 4.1122932 -1103.1774
+84843.25808378262 4.1122541 -1103.1774
+84844.25808383292 4.1121755 -1103.1378
+84845.25808388321 4.1121755 -1103.1378
+84846.2580839335 4.1121359 -1103.2168
+84847.25808398379 4.1121359 -1103.197
+84848.25808403408 4.1121755 -1103.1774
+84849.25808408437 4.1121359 -1103.1378
+84850.25808413466 4.1120968 -1103.1378
+84851.25808418496 4.1121359 -1103.2562
+84852.25808423525 4.1119785 -1103.2761
+84853.25808428554 4.1120968 -1103.0785
+84854.25808433583 4.1120176 -1103.2366
+84855.25808438612 4.1119785 -1103.1576
+84856.25808443641 4.1120572 -1103.0984
+84857.2580844867 4.1120572 -1103.2168
+84858.258084537 4.1118603 -1103.2366
+84859.25808458729 4.1119785 -1103.0588
+84860.25808463758 4.1118999 -1103.1378
+84861.25808468787 4.1119785 -1103.1576
+84862.25808473816 4.1118212 -1103.2168
+84863.25808478845 4.1118212 -1103.0785
+84864.25808483874 4.1118212 -1103.1576
+84865.25808488904 4.111742 -1103.197
+84866.25808493933 4.111939 -1103.2562
+84867.25808498962 4.1118999 -1103.1378
+84868.25808503991 4.111742 -1103.197
+84869.2580850902 4.1117029 -1103.197
+84870.2580851405 4.1117816 -1103.197
+84871.25808519078 4.111742 -1103.1378
+84872.25808524108 4.111742 -1103.2959
+84873.25808529137 4.1117029 -1103.1774
+84874.25808534166 4.1117029 -1103.197
+84875.25808539195 4.1116242 -1103.1576
+84876.25808544224 4.1116633 -1103.1774
+84877.25808549253 4.1116242 -1103.2366
+84878.25808554282 4.1115847 -1103.1576
+84879.25808559312 4.1115847 -1103.197
+84880.2580856434 4.1116242 -1103.2168
+84881.2580856937 4.111506 -1103.1576
+84882.25808574399 4.1115456 -1103.197
+84883.25808579428 4.1116242 -1103.1576
+84884.25808584457 4.1114273 -1103.1774
+84885.25808589486 4.111506 -1103.1378
+84886.25808594516 4.1114669 -1103.2366
+84887.25808599545 4.1114669 -1103.2562
+84888.25808604574 4.1113877 -1103.1378
+84889.25808609603 4.1114669 -1103.197
+84890.25808614632 4.1113091 -1103.1576
+84891.25808619661 4.1113877 -1103.2168
+84892.2580862469 4.1114273 -1103.2168
+84893.2580862972 4.1114669 -1103.1576
+84894.25808634749 4.1113877 -1103.2168
+84895.25808639778 4.1113486 -1103.197
+84896.25808644807 4.11127 -1103.1576
+84897.25808649836 4.1113091 -1103.1576
+84898.25808654865 4.11127 -1103.1378
+84899.25808659894 4.11127 -1103.1182
+84900.25808664924 4.1112304 -1103.1182
+84901.25808669953 4.1113091 -1103.0984
+84902.25808674982 4.1111913 -1103.1576
+84903.25808680011 4.1111913 -1103.2366
+84904.2580868504 4.1112304 -1103.1576
+84905.25808690069 4.1113091 -1103.1576
+84906.25808695098 4.1111121 -1103.2562
+84907.25808700128 4.1111517 -1103.1774
+84908.25808705157 4.1111913 -1103.1774
+84909.25808710186 4.1110334 -1103.0984
+84910.25808715215 4.1111121 -1103.1774
+84911.25808720244 4.1111121 -1103.2562
+84912.25808725273 4.1110334 -1103.2168
+84913.25808730302 4.1109943 -1103.1378
+84914.25808735332 4.1109548 -1103.197
+84915.2580874036 4.1109548 -1103.2168
+84916.2580874539 4.1109548 -1103.1182
+84917.25808750419 4.1109943 -1103.197
+84918.25808755448 4.1108761 -1103.0785
+84919.25808760477 4.1109157 -1103.2761
+84920.25808765506 4.1109157 -1103.2761
+84921.25808770536 4.1109943 -1103.197
+84922.25808775565 4.110837 -1103.1182
+84923.25808780594 4.110837 -1103.1774
+84924.25808785623 4.110837 -1103.2366
+84925.25808790652 4.1107974 -1103.1378
+84926.25808795681 4.1109157 -1103.2366
+84927.2580880071 4.110837 -1103.1774
+84928.2580880574 4.1107187 -1103.197
+84929.25808810769 4.1107578 -1103.2366
+84930.25808815798 4.1107187 -1103.1774
+84931.25808820827 4.1106791 -1103.0984
+84932.25808825856 4.1107578 -1103.1182
+84933.25808830885 4.1106791 -1103.1576
+84934.25808835914 4.1107187 -1103.2168
+84935.25808840944 4.1107187 -1103.1182
+84936.25808845973 4.11064 -1103.1378
+84937.25808851002 4.1105614 -1103.1378
+84938.25808856031 4.1106791 -1103.197
+84939.2580886106 4.1105218 -1103.2168
+84940.25808866089 4.1105614 -1103.1576
+84941.25808871118 4.1104822 -1103.197
+84942.25808876147 4.1104822 -1103.1774
+84943.25808881177 4.1105614 -1103.1774
+84944.25808886206 4.1105218 -1103.0984
+84945.25808891235 4.1105218 -1103.1378
+84946.25808896264 4.1104431 -1103.1576
+84947.25808901293 4.1105218 -1103.197
+84948.25808906322 4.1104035 -1103.1576
+84949.25808911351 4.1104431 -1103.2168
+84950.2580891638 4.1104822 -1103.197
+84951.2580892141 4.1104035 -1103.197
+84952.25808926439 4.1103644 -1103.1576
+84953.25808931468 4.1103249 -1103.2168
+84954.25808936497 4.1103249 -1103.197
+84955.25808941526 4.1102462 -1103.2168
+84956.25808946555 4.1102462 -1103.197
+84957.25808951585 4.1102858 -1103.2562
+84958.25808956614 4.1104035 -1103.197
+84959.25808961643 4.1102858 -1103.1576
+84960.25808966672 4.1103249 -1103.2168
+84961.25808971701 4.1102462 -1103.1378
+84962.2580897673 4.1102858 -1103.1378
+84963.2580898176 4.1102071 -1103.1774
+84964.25808986789 4.1102071 -1103.1378
+84965.25808991818 4.1101675 -1103.1774
+84966.25808996847 4.1101279 -1103.1576
+84967.25809001876 4.1100888 -1103.1182
+84968.25809006905 4.1102462 -1103.1182
+84969.25809011934 4.1100888 -1103.1378
+84970.25809016963 4.1100101 -1103.1774
+84971.25809021993 4.1100888 -1103.1576
+84972.25809027022 4.1100492 -1103.1378
+84973.25809032051 4.1100888 -1103.1182
+84974.2580903708 4.1100888 -1103.1774
+84975.25809042109 4.1100101 -1103.1182
+84976.25809047138 4.1100101 -1103.2168
+84977.25809052167 4.1100101 -1103.1774
+84978.25809057197 4.1100101 -1103.197
+84979.25809062226 4.1099315 -1103.1774
+84980.25809067255 4.1099315 -1103.0984
+84981.25809072284 4.1100101 -1103.2366
+84982.25809077313 4.1098523 -1103.1182
+84983.25809082342 4.1098523 -1103.1774
+84984.25809087371 4.1098919 -1103.197
+84985.258090924 4.1097736 -1103.1378
+84986.2580909743 4.1097736 -1103.1576
+84987.25809102459 4.1097345 -1103.197
+84988.25809107488 4.1097736 -1103.1774
+84989.25809112517 4.109695 -1103.1182
+84990.25809117546 4.1097736 -1103.1774
+84991.25809122575 4.1097736 -1103.2959
+84992.25809127605 4.1097736 -1103.2168
+84993.25809132634 4.1096559 -1103.1378
+84994.25809137663 4.109695 -1103.1774
+84995.25809142692 4.109695 -1103.1774
+84996.25809147721 4.1095767 -1103.2366
+84997.2580915275 4.109695 -1103.1576
+84998.2580915778 4.1095376 -1103.0785
+84999.25809162809 4.1096559 -1103.1378
+85000.25809167838 4.1096163 -1103.1576
+85001.25809172867 4.1095376 -1103.1378
+85002.25809177896 4.1095376 -1103.1378
+85003.25809182925 4.1094589 -1103.0984
+85004.25809187954 4.1094589 -1103.2366
+85005.25809192983 4.1095376 -1103.2168
+85006.25809198013 4.1094193 -1103.0984
+85007.25809203042 4.1095767 -1103.2562
+85008.25809208071 4.1095376 -1102.9996
+85009.258092131 4.1094589 -1103.2761
+85010.25809218129 4.1094589 -1103.1576
+85011.25809223158 4.1093802 -1103.1182
+85012.25809228187 4.1094193 -1103.0984
+85013.25809233217 4.1093407 -1103.1774
+85014.25809238246 4.109262 -1103.2366
+85015.25809243275 4.109262 -1103.1774
+85016.25809248304 4.1093016 -1103.2366
+85017.25809253333 4.1093016 -1103.197
+85018.25809258362 4.1093407 -1103.2168
+85019.25809263391 4.1093407 -1103.1378
+85020.2580926842 4.1092224 -1103.1774
+85021.2580927345 4.1092224 -1103.197
+85022.25809278479 4.109262 -1103.1576
+85023.25809283508 4.1092224 -1103.1774
+85024.25809288537 4.1091437 -1103.1576
+85025.25809293566 4.109262 -1103.197
+85026.25809298595 4.1090651 -1103.1774
+85027.25809303625 4.1091437 -1103.1774
+85028.25809308654 4.1091437 -1103.0785
+85029.25809313683 4.1091833 -1103.1576
+85030.25809318712 4.109026 -1103.1774
+85031.25809323741 4.1090651 -1103.0984
+85032.2580932877 4.1091437 -1103.1774
+85033.258093338 4.1090651 -1103.1182
+85034.25809338829 4.1090651 -1103.1182
+85035.25809343858 4.1090651 -1103.1576
+85036.25809348887 4.1089468 -1103.0984
+85037.25809353916 4.1089468 -1103.1182
+85038.25809358945 4.109026 -1103.1378
+85039.25809363974 4.1088681 -1103.1774
+85040.25809369003 4.1088681 -1103.1774
+85041.25809374033 4.1089077 -1103.1576
+85042.25809379062 4.1088681 -1103.2366
+85043.25809384091 4.108829 -1103.1774
+85044.2580938912 4.1089468 -1103.1378
+85045.25809394149 4.108829 -1103.1378
+85046.25809399178 4.1088681 -1103.1182
+85047.25809404207 4.1088681 -1103.1774
+85048.25809409237 4.1088681 -1103.197
+85049.25809414266 4.108829 -1103.197
+85050.25809419295 4.108829 -1103.2761
+85051.25809424324 4.1087108 -1103.1774
+85052.25809429353 4.1087894 -1103.197
+85053.25809434382 4.1087108 -1103.1774
+85054.25809439411 4.1087108 -1103.1378
+85055.2580944444 4.1087108 -1103.197
+85056.2580944947 4.1086717 -1103.1774
+85057.25809454499 4.1086321 -1103.2168
+85058.25809459528 4.1085925 -1103.1576
+85059.25809464557 4.1086717 -1103.0391
+85060.25809469586 4.1086717 -1103.0785
+85061.25809474615 4.1085534 -1103.2168
+85062.25809479645 4.1085138 -1103.197
+85063.25809484674 4.1085534 -1103.1378
+85064.25809489703 4.1085534 -1103.197
+85065.25809494732 4.1085138 -1103.1576
+85066.25809499761 4.1084747 -1103.1774
+85067.2580950479 4.1084747 -1103.197
+85068.2580950982 4.1084747 -1103.0984
+85069.25809514849 4.1084747 -1103.197
+85070.25809519878 4.1084747 -1103.197
+85071.25809524907 4.1085138 -1103.2761
+85072.25809529936 4.1084352 -1103.2959
+85073.25809534965 4.1084352 -1103.197
+85074.25809539994 4.1083565 -1103.2366
+85075.25809545023 4.1083961 -1103.2562
+85076.25809550053 4.1083961 -1103.2562
+85077.25809555082 4.1083169 -1103.197
+85078.25809560111 4.1082382 -1103.2366
+85079.2580956514 4.1083169 -1103.2366
+85080.25809570169 4.1082778 -1103.2366
+85081.25809575198 4.1082778 -1103.1378
+85082.25809580227 4.1082382 -1103.197
+85083.25809585257 4.1082778 -1103.1576
+85084.25809590286 4.1083169 -1103.0984
+85085.25809595315 4.1081991 -1103.1378
+85086.25809600344 4.1083961 -1103.2366
+85087.25809605373 4.1081595 -1103.197
+85088.25809610402 4.1081991 -1103.197
+85089.25809615431 4.1080809 -1103.1576
+85090.2580962046 4.1080413 -1103.197
+85091.2580962549 4.1081595 -1103.1576
+85092.25809630519 4.1080022 -1103.2168
+85093.25809635548 4.1080809 -1103.1576
+85094.25809640577 4.1081204 -1103.197
+85095.25809645606 4.1080022 -1103.197
+85096.25809650635 4.1080022 -1103.1378
+85097.25809655664 4.1080413 -1103.1378
+85098.25809660694 4.1080413 -1103.0785
+85099.25809665723 4.1079235 -1103.1576
+85100.25809670752 4.1079235 -1103.197
+85101.25809675781 4.1079626 -1103.197
+85102.2580968081 4.1080413 -1103.0588
+85103.2580968584 4.1079235 -1103.2168
+85104.25809690868 4.1079626 -1103.197
+85105.25809695898 4.1079626 -1103.2168
+85106.25809700927 4.1080413 -1103.2761
+85107.25809705956 4.1077266 -1103.1774
+85108.25809710985 4.1078053 -1103.2562
+85109.25809716014 4.1078839 -1103.1182
+85110.25809721043 4.1078448 -1103.0984
+85111.25809726072 4.1078053 -1103.1378
+85112.25809731102 4.1077662 -1103.1378
+85113.25809736131 4.1078448 -1103.1576
+85114.2580974116 4.1077266 -1103.0984
+85115.25809746189 4.1078053 -1103.1378
+85116.25809751218 4.1076479 -1103.1378
+85117.25809756247 4.1076479 -1103.1774
+85118.25809761276 4.1077266 -1103.0984
+85119.25809766306 4.1076479 -1103.2168
+85120.25809771335 4.107687 -1103.2366
+85121.25809776364 4.107687 -1103.0984
+85122.25809781393 4.1075692 -1103.2562
+85123.25809786422 4.1075692 -1103.1774
+85124.25809791451 4.1075296 -1103.2168
+85125.2580979648 4.107687 -1103.2562
+85126.2580980151 4.1075692 -1103.1182
+85127.25809806539 4.1076083 -1103.197
+85128.25809811568 4.1076083 -1103.1774
+85129.25809816597 4.1075692 -1103.1378
+85130.25809821626 4.1075692 -1103.1774
+85131.25809826655 4.1074905 -1103.1774
+85132.25809831684 4.1075296 -1103.0785
+85133.25809836714 4.1074905 -1103.1774
+85134.25809841743 4.1074114 -1103.1774
+85135.25809846772 4.1073723 -1103.2562
+85136.25809851801 4.1074905 -1103.0984
+85137.2580985683 4.107451 -1103.2761
+85138.2580986186 4.1074905 -1103.197
+85139.25809866888 4.1075296 -1103.2168
+85140.25809871918 4.107451 -1103.1774
+85141.25809876947 4.107254 -1103.1576
+85142.25809881976 4.1071754 -1103.2366
+85143.25809887005 4.1073723 -1103.1774
+85144.25809892034 4.1073327 -1103.2168
+85145.25809897063 4.1072936 -1103.1774
+85146.25809902092 4.1072149 -1103.1576
+85147.25809907122 4.1073723 -1103.0984
+85148.2580991215 4.107254 -1103.197
+85149.2580991718 4.1071754 -1103.1378
+85150.25809922209 4.107254 -1103.2761
+85151.25809927238 4.1072149 -1103.1774
+85152.25809932267 4.107254 -1103.1182
+85153.25809937296 4.1072936 -1103.2761
+85154.25809942326 4.1071362 -1103.2562
+85155.25809947355 4.1071362 -1103.1378
+85156.25809952384 4.1071362 -1103.0193
+85157.25809957413 4.1070571 -1103.1774
+85158.25809962442 4.1071362 -1103.2366
+85159.25809967471 4.1071362 -1103.1774
+85160.258099725 4.1070571 -1103.2366
+85161.2580997753 4.1071362 -1103.3353
+85162.25809982559 4.1070571 -1103.1774
+85163.25809987588 4.1071362 -1103.2366
+85164.25809992617 4.1070967 -1103.1774
+85165.25809997646 4.107018 -1103.1576
+85166.25810002675 4.1069393 -1103.1182
+85167.25810007704 4.1068997 -1103.197
+85168.25810012734 4.1069393 -1103.1576
+85169.25810017763 4.1069393 -1103.0984
+85170.25810022792 4.1069393 -1103.1378
+85171.25810027821 4.1068606 -1103.1576
+85172.2581003285 4.1068997 -1103.1774
+85173.2581003788 4.1068997 -1103.197
+85174.25810042908 4.1068997 -1103.1576
+85175.25810047938 4.1068997 -1103.1378
+85176.25810052967 4.1067815 -1103.197
+85177.25810057996 4.1068211 -1103.0984
+85178.25810063025 4.1067424 -1103.1774
+85179.25810068054 4.1068606 -1103.2761
+85180.25810073083 4.1067815 -1103.2168
+85181.25810078112 4.1066637 -1103.1774
+85182.25810083142 4.1066637 -1103.197
+85183.2581008817 4.1066637 -1103.197
+85184.258100932 4.1067424 -1103.1774
+85185.25810098229 4.1067028 -1103.2562
+85186.25810103258 4.1066241 -1103.197
+85187.25810108287 4.1066241 -1103.2168
+85188.25810113316 4.106585 -1103.1378
+85189.25810118346 4.1066637 -1103.2562
+85190.25810123375 4.1066637 -1103.0984
+85191.25810128404 4.1066637 -1103.197
+85192.25810133433 4.1066637 -1103.1774
+85193.25810138462 4.106585 -1103.1576
+85194.25810143491 4.106585 -1103.1774
+85195.2581014852 4.106585 -1103.2168
+85196.2581015355 4.1065063 -1103.1576
+85197.25810158579 4.1065454 -1103.1182
+85198.25810163608 4.1064668 -1103.1774
+85199.25810168637 4.1065063 -1103.2168
+85200.25810173666 4.1064272 -1103.197
+85201.25810178695 4.1064668 -1103.2761
+85202.25810183724 4.1063881 -1103.1774
+85203.25810188754 4.1064272 -1103.2168
+85204.25810193783 4.1064272 -1103.2366
+85205.25810198812 4.1063881 -1103.1576
+85206.25810203841 4.1063881 -1103.1182
+85207.2581020887 4.1064272 -1103.1576
+85208.25810213899 4.1064272 -1103.1378
+85209.25810218928 4.1063881 -1103.1576
+85210.25810223958 4.1062698 -1103.1774
+85211.25810228987 4.1062698 -1103.1774
+85212.25810234016 4.1062698 -1103.1378
+85213.25810239045 4.1063485 -1103.2366
+85214.25810244074 4.1061912 -1103.197
+85215.25810249103 4.1062307 -1103.1774
+85216.25810254132 4.1061516 -1103.1774
+85217.25810259162 4.1062698 -1103.2168
+85218.2581026419 4.1060729 -1103.1378
+85219.2581026922 4.1062698 -1103.197
+85220.25810274249 4.1060729 -1103.2366
+85221.25810279278 4.1062307 -1103.1576
+85222.25810284307 4.1061516 -1103.2168
+85223.25810289336 4.1060729 -1103.1576
+85224.25810294366 4.1061125 -1103.1774
+85225.25810299395 4.1061125 -1103.2366
+85226.25810304424 4.1060338 -1103.2168
+85227.25810309453 4.1060338 -1103.1182
+85228.25810314482 4.1061125 -1103.1182
+85229.25810319511 4.1060338 -1103.2168
+85230.2581032454 4.1060338 -1103.197
+85231.2581032957 4.1060729 -1103.1774
+85232.25810334599 4.1059942 -1103.1774
+85233.25810339628 4.1059942 -1103.197
+85234.25810344657 4.1059551 -1103.2366
+85235.25810349686 4.1058369 -1103.1378
+85236.25810354715 4.105876 -1103.2562
+85237.25810359744 4.1059551 -1103.2168
+85238.25810364773 4.1059155 -1103.1774
+85239.25810369803 4.1058369 -1103.1576
+85240.25810374832 4.1057973 -1103.2761
+85241.25810379861 4.1059551 -1103.2562
+85242.2581038489 4.1058369 -1103.1774
+85243.25810389919 4.1059155 -1103.2562
+85244.25810394948 4.1058369 -1103.2168
+85245.25810399977 4.1057186 -1103.1576
+85246.25810405007 4.1057582 -1103.1774
+85247.25810410036 4.1057582 -1103.3156
+85248.25810415065 4.1057186 -1103.1774
+85249.25810420094 4.1057582 -1103.1774
+85250.25810425123 4.1057186 -1103.2366
+85251.25810430152 4.1057582 -1103.1182
+85252.25810435181 4.1058369 -1103.197
+85253.2581044021 4.1055217 -1103.2761
+85254.2581044524 4.1056795 -1103.197
+85255.25810450269 4.1057186 -1103.2168
+85256.25810455298 4.1056399 -1103.197
+85257.25810460327 4.1056399 -1103.1378
+85258.25810465356 4.1056008 -1103.1378
+85259.25810470385 4.1056008 -1103.1378
+85260.25810475415 4.1055217 -1103.1576
+85261.25810480444 4.1055613 -1103.2366
+85262.25810485473 4.1055613 -1103.197
+85263.25810490502 4.1056008 -1103.2168
+85264.25810495531 4.1055217 -1103.1576
+85265.2581050056 4.1055613 -1103.1378
+85266.2581050559 4.1054039 -1103.1774
+85267.25810510619 4.1054826 -1103.197
+85268.25810515648 4.1055217 -1103.2168
+85269.25810520677 4.105443 -1103.1378
+85270.25810525706 4.1054039 -1103.1378
+85271.25810530735 4.1053252 -1103.0984
+85272.25810535764 4.1054039 -1103.1774
+85273.25810540793 4.1054826 -1103.1182
+85274.25810545823 4.1052856 -1103.2168
+85275.25810550852 4.1053643 -1103.2959
+85276.25810555881 4.1053252 -1103.1774
+85277.2581056091 4.1053643 -1103.1774
+85278.25810565939 4.1053252 -1103.1576
+85279.25810570968 4.1052856 -1103.1182
+85280.25810575997 4.1052856 -1103.1182
+85281.25810581027 4.1052461 -1103.2168
+85282.25810586056 4.1052461 -1103.1576
+85283.25810591085 4.1052856 -1103.2366
+85284.25810596114 4.105207 -1103.1182
+85285.25810601143 4.105207 -1103.197
+85286.25810606172 4.1051674 -1103.1576
+85287.25810611201 4.105207 -1103.1774
+85288.2581061623 4.1050887 -1103.197
+85289.2581062126 4.1051283 -1103.1378
+85290.25810626289 4.1051674 -1103.1576
+85291.25810631318 4.1051283 -1103.2562
+85292.25810636347 4.1051283 -1103.1576
+85293.25810641376 4.1051674 -1103.197
+85294.25810646405 4.10501 -1103.197
+85295.25810651435 4.1050496 -1103.197
+85296.25810656464 4.1050887 -1103.1774
+85297.25810661493 4.10501 -1103.1774
+85298.25810666522 4.1049314 -1103.2168
+85299.25810671551 4.10501 -1103.1378
+85300.2581067658 4.1050496 -1103.1774
+85301.2581068161 4.1049709 -1103.2168
+85302.25810686639 4.1049709 -1103.2562
+85303.25810691668 4.10501 -1103.2366
+85304.25810696697 4.10501 -1103.1774
+85305.25810701726 4.1048918 -1103.197
+85306.25810706755 4.1049314 -1103.3551
+85307.25810711784 4.1048527 -1103.2366
+85308.25810716813 4.1048918 -1103.2168
+85309.25810721843 4.104774 -1103.1576
+85310.25810726872 4.1049314 -1103.1576
+85311.25810731901 4.1048527 -1103.1774
+85312.2581073693 4.1048131 -1103.2168
+85313.25810741959 4.1048131 -1103.1774
+85314.25810746988 4.1048131 -1103.1774
+85315.25810752017 4.1046953 -1103.1774
+85316.25810757047 4.1048131 -1103.2366
+85317.25810762076 4.1047344 -1103.1378
+85318.25810767105 4.1046557 -1103.0984
+85319.25810772134 4.1046557 -1103.197
+85320.25810777163 4.1047344 -1103.197
+85321.25810782192 4.1046953 -1103.1182
+85322.25810787221 4.1046557 -1103.197
+85323.2581079225 4.1047344 -1103.1576
+85324.2581079728 4.1047344 -1103.1576
+85325.25810802309 4.1046953 -1103.2168
+85326.25810807338 4.1046557 -1103.0984
+85327.25810812367 4.1045771 -1103.2366
+85328.25810817396 4.1046557 -1103.1774
+85329.25810822425 4.1046162 -1103.2562
+85330.25810827455 4.1045771 -1103.2562
+85331.25810832484 4.1046162 -1103.1774
+85332.25810837513 4.1046162 -1103.1576
+85333.25810842542 4.1046557 -1103.2562
+85334.25810847571 4.1044984 -1103.1774
+85335.258108526 4.1045375 -1103.1774
+85336.2581085763 4.1044588 -1103.2562
+85337.25810862659 4.1044588 -1103.1378
+85338.25810867688 4.1044984 -1103.1774
+85339.25810872717 4.1044984 -1103.197
+85340.25810877746 4.1043406 -1103.197
+85341.25810882775 4.1044197 -1103.197
+85342.25810887804 4.1043406 -1103.1182
+85343.25810892833 4.1044197 -1103.2168
+85344.25810897863 4.1044588 -1103.1182
+85345.25810902892 4.1043801 -1103.2761
+85346.25810907921 4.1043406 -1103.1774
+85347.2581091295 4.1043406 -1103.1774
+85348.25810917979 4.1042228 -1103.2168
+85349.25810923008 4.1043406 -1103.1378
+85350.25810928037 4.1043406 -1103.197
+85351.25810933067 4.1042228 -1103.1774
+85352.25810938096 4.1043406 -1103.0984
+85353.25810943125 4.1043015 -1103.1378
+85354.25810948154 4.1042228 -1103.1774
+85355.25810953183 4.1042228 -1103.1774
+85356.25810958212 4.1041832 -1103.2366
+85357.25810963241 4.1041832 -1103.1378
+85358.2581096827 4.1041441 -1103.1182
+85359.258109733 4.1041045 -1103.2366
+85360.25810978329 4.1041441 -1103.1576
+85361.25810983358 4.1042228 -1103.1576
+85362.25810988387 4.1040654 -1103.1774
+85363.25810993416 4.1041045 -1103.0785
+85364.25810998445 4.1041441 -1103.1576
+85365.25811003475 4.1039863 -1103.0984
+85366.25811008504 4.1041441 -1103.1576
+85367.25811013533 4.1041045 -1103.197
+85368.25811018562 4.1039863 -1103.197
+85369.25811023591 4.1040654 -1103.1774
+85370.2581102862 4.1039863 -1103.2168
+85371.2581103365 4.1039076 -1103.2168
+85372.25811038679 4.1040258 -1103.1774
+85373.25811043708 4.1039863 -1103.197
+85374.25811048737 4.1040654 -1103.1576
+85375.25811053766 4.1038685 -1103.1774
+85376.25811058795 4.1039863 -1103.2168
+85377.25811063824 4.1038685 -1103.1378
+85378.25811068853 4.1038685 -1103.197
+85379.25811073883 4.1039076 -1103.2168
+85380.25811078912 4.1038289 -1103.1182
+85381.25811083941 4.1038289 -1103.1774
+85382.2581108897 4.1038685 -1103.2366
+85383.25811093999 4.1038685 -1103.1182
+85384.25811099028 4.1038289 -1103.2366
+85385.25811104057 4.1038289 -1103.1182
+85386.25811109086 4.1037502 -1103.2562
+85387.25811114116 4.1037107 -1103.2168
+85388.25811119145 4.1036716 -1103.2168
+85389.25811124174 4.1037107 -1103.3353
+85390.25811129203 4.1037502 -1103.2168
+85391.25811134232 4.1036716 -1103.1774
+85392.25811139261 4.1037502 -1103.1774
+85393.2581114429 4.1037107 -1103.197
+85394.2581114932 4.1035142 -1103.2562
+85395.25811154349 4.1036716 -1103.0984
+85396.25811159378 4.1035929 -1103.1774
+85397.25811164407 4.1036716 -1103.2562
+85398.25811169436 4.1037107 -1103.2366
+85399.25811174465 4.1036716 -1103.1774
+85400.25811179494 4.1035533 -1103.0984
+85401.25811184524 4.103632 -1103.1378
+85402.25811189553 4.1035142 -1103.0984
+85403.25811194582 4.1034746 -1103.1576
+85404.25811199611 4.1035533 -1103.1774
+85405.2581120464 4.1035929 -1103.1774
+85406.2581120967 4.1035929 -1103.2562
+85407.25811214698 4.1034746 -1103.2168
+85408.25811219728 4.1034355 -1103.197
+85409.25811224757 4.1035142 -1103.197
+85410.25811229786 4.1034746 -1103.1378
+85411.25811234815 4.1034355 -1103.1576
+85412.25811239844 4.1033173 -1103.2168
+85413.25811244873 4.1033959 -1103.2562
+85414.25811249902 4.1033564 -1103.1576
+85415.25811254932 4.1033173 -1103.1576
+85416.25811259961 4.1033959 -1103.1378
+85417.2581126499 4.1033564 -1103.1182
+85418.25811270019 4.1033173 -1103.1182
+85419.25811275048 4.1033173 -1103.2366
+85420.25811280077 4.1033173 -1103.1774
+85421.25811285106 4.1032386 -1103.1378
+85422.25811290136 4.1032777 -1103.2562
+85423.25811295165 4.1032386 -1103.2168
+85424.25811300194 4.1032386 -1103.1576
+85425.25811305223 4.103199 -1103.1378
+85426.25811310252 4.1032777 -1103.1576
+85427.25811315281 4.1032386 -1103.1182
+85428.2581132031 4.1032386 -1103.197
+85429.2581132534 4.103199 -1103.1774
+85430.25811330369 4.1030807 -1103.197
+85431.25811335398 4.1031203 -1103.1182
+85432.25811340427 4.1030807 -1103.2366
+85433.25811345456 4.1031203 -1103.1576
+85434.25811350485 4.1030807 -1103.2168
+85435.25811355514 4.1031599 -1103.1774
+85436.25811360544 4.1030416 -1103.1774
+85437.25811365573 4.1030021 -1103.1576
+85438.25811370602 4.1030416 -1103.197
+85439.25811375631 4.1030416 -1103.1182
+85440.2581138066 4.1030807 -1103.2168
+85441.2581138569 4.102963 -1103.1576
+85442.25811390718 4.1030416 -1103.1576
+85443.25811395748 4.1029234 -1103.0785
+85444.25811400777 4.102963 -1103.2562
+85445.25811405806 4.1029234 -1103.1182
+85446.25811410835 4.1028051 -1103.2168
+85447.25811415864 4.1029234 -1103.2168
+85448.25811420893 4.102963 -1103.2959
+85449.25811425922 4.1028843 -1103.1378
+85450.25811430952 4.1029234 -1103.1182
+85451.2581143598 4.1028447 -1103.197
+85452.2581144101 4.1029234 -1103.1576
+85453.25811446039 4.1028447 -1103.197
+85454.25811451068 4.102766 -1103.2366
+85455.25811456097 4.102766 -1103.197
+85456.25811461126 4.1028051 -1103.1774
+85457.25811466156 4.102766 -1103.1774
+85458.25811471185 4.102766 -1103.1182
+85459.25811476214 4.1028051 -1103.1378
+85460.25811481243 4.102766 -1103.1774
+85461.25811486272 4.102766 -1103.1774
+85462.25811491301 4.102766 -1103.2168
+85463.2581149633 4.1027265 -1103.2366
+85464.2581150136 4.102766 -1103.2366
+85465.25811506389 4.1026874 -1103.2168
+85466.25811511418 4.1026874 -1103.197
+85467.25811516447 4.1026478 -1103.1774
+85468.25811521476 4.1026478 -1103.1774
+85469.25811526505 4.1026478 -1103.0984
+85470.25811531534 4.1026087 -1103.1576
+85471.25811536564 4.1025691 -1103.1182
+85472.25811541593 4.1025691 -1103.2366
+85473.25811546622 4.1026874 -1103.1774
+85474.25811551651 4.1024508 -1103.2366
+85475.2581155668 4.1024904 -1103.1182
+85476.25811561709 4.1026478 -1103.2562
+85477.25811566738 4.1025691 -1103.1774
+85478.25811571768 4.1024117 -1103.1182
+85479.25811576797 4.1024904 -1103.0984
+85480.25811581826 4.1024508 -1103.1378
+85481.25811586855 4.1025691 -1103.2168
+85482.25811591884 4.1024508 -1103.197
+85483.25811596913 4.1024508 -1103.2761
+85484.25811601942 4.1024117 -1103.2168
+85485.25811606972 4.1024117 -1103.1774
+85486.25811612 4.1023331 -1103.1576
+85487.2581161703 4.1023331 -1103.197
+85488.25811622059 4.1023722 -1103.0984
+85489.25811627088 4.1024508 -1103.1576
+85490.25811632117 4.1023722 -1103.0984
+85491.25811637146 4.1023722 -1103.197
+85492.25811642176 4.1022935 -1103.1182
+85493.25811647205 4.1024508 -1103.1378
+85494.25811652234 4.1023722 -1103.197
+85495.25811657263 4.1024117 -1103.2168
+85496.25811662292 4.1022935 -1103.2168
+85497.25811667321 4.1022148 -1103.2366
+85498.2581167235 4.1022148 -1103.1378
+85499.2581167738 4.1022544 -1103.1378
+85500.25811682409 4.1022148 -1103.1576
+85501.25811687438 4.1021752 -1103.1576
+85502.25811692467 4.1022148 -1103.2562
+85503.25811697496 4.1022148 -1103.197
+85504.25811702525 4.1022148 -1103.2562
+85505.25811707554 4.1020966 -1103.1576
+85506.25811712584 4.1021361 -1103.2959
+85507.25811717613 4.1020575 -1103.1774
+85508.25811722642 4.1021361 -1103.1576
+85509.25811727671 4.1021752 -1103.197
+85510.258117327 4.1019788 -1103.1576
+85511.25811737729 4.1020179 -1103.1576
+85512.25811742758 4.1020966 -1103.197
+85513.25811747788 4.1021361 -1103.1774
+85514.25811752817 4.1020966 -1103.197
+85515.25811757846 4.1020179 -1103.197
+85516.25811762875 4.1020179 -1103.2366
+85517.25811767904 4.1020179 -1103.1378
+85518.25811772933 4.1019788 -1103.1182
+85519.25811777962 4.1019001 -1103.197
+85520.25811782992 4.1019788 -1103.2366
+85521.2581178802 4.1019001 -1103.1182
+85522.2581179305 4.1019788 -1103.0984
+85523.25811798079 4.1018605 -1103.1576
+85524.25811803108 4.1018209 -1103.2168
+85525.25811808137 4.1019001 -1103.2562
+85526.25811813166 4.1019788 -1103.2562
+85527.25811818196 4.1019392 -1103.1576
+85528.25811823225 4.1018209 -1103.1182
+85529.25811828254 4.1017423 -1103.197
+85530.25811833283 4.1018605 -1103.1378
+85531.25811838312 4.1016636 -1103.0984
+85532.25811843341 4.1018209 -1103.1576
+85533.2581184837 4.1016636 -1103.1774
+85534.258118534 4.1017818 -1103.197
+85535.25811858429 4.1017032 -1103.0785
+85536.25811863458 4.1017423 -1103.2562
+85537.25811868487 4.1016245 -1103.2562
+85538.25811873516 4.1017032 -1103.197
+85539.25811878545 4.1016636 -1103.1576
+85540.25811883574 4.1016636 -1103.2366
+85541.25811888603 4.1016636 -1103.0984
+85542.25811893633 4.1016636 -1103.1774
+85543.25811898662 4.1016245 -1103.1576
+85544.25811903691 4.1015849 -1103.2366
+85545.2581190872 4.1017032 -1103.0588
+85546.25811913749 4.1017032 -1103.197
+85547.25811918778 4.1015849 -1103.1576
+85548.25811923807 4.1015062 -1103.2168
+85549.25811928837 4.1015453 -1103.1774
+85550.25811933866 4.1015062 -1103.1576
+85551.25811938895 4.1015062 -1103.1182
+85552.25811943924 4.1015062 -1103.1774
+85553.25811948953 4.1015062 -1103.1774
+85554.25811953982 4.1015062 -1103.1774
+85555.25811959011 4.1015453 -1103.197
+85556.2581196404 4.1013489 -1103.2366
+85557.2581196907 4.101388 -1103.1576
+85558.25811974099 4.101388 -1103.2168
+85559.25811979128 4.101388 -1103.1576
+85560.25811984157 4.1014276 -1103.2562
+85561.25811989186 4.1014276 -1103.197
+85562.25811994215 4.1013489 -1103.1576
+85563.25811999245 4.101388 -1103.197
+85564.25812004274 4.1013489 -1103.197
+85565.25812009303 4.1013489 -1103.2366
+85566.25812014332 4.1013093 -1103.1378
+85567.25812019361 4.1012306 -1103.0984
+85568.2581202439 4.1012702 -1103.197
+85569.2581202942 4.1013489 -1103.1576
+85570.25812034449 4.1012306 -1103.197
+85571.25812039478 4.1012702 -1103.0984
+85572.25812044507 4.101191 -1103.0785
+85573.25812049536 4.1012702 -1103.2168
+85574.25812054565 4.101191 -1103.197
+85575.25812059594 4.1011519 -1103.1774
+85576.25812064623 4.1012702 -1103.1378
+85577.25812069653 4.101191 -1103.0588
+85578.25812074682 4.1011519 -1103.1378
+85579.25812079711 4.1011124 -1103.0588
+85580.2581208474 4.1012306 -1103.1774
+85581.25812089769 4.1011124 -1103.1378
+85582.25812094798 4.101191 -1103.2168
+85583.25812099827 4.1011124 -1103.197
+85584.25812104857 4.1010733 -1103.197
+85585.25812109886 4.1011124 -1103.1182
+85586.25812114915 4.1011519 -1103.1774
+85587.25812119944 4.1009946 -1103.0984
+85588.25812124973 4.100955 -1103.1378
+85589.25812130002 4.1010733 -1103.2168
+85590.25812135031 4.1010337 -1103.197
+85591.2581214006 4.100955 -1103.1774
+85592.2581214509 4.1009946 -1103.1576
+85593.25812150119 4.100955 -1103.1774
+85594.25812155148 4.1010733 -1103.1774
+85595.25812160177 4.1009946 -1102.9996
+85596.25812165206 4.1009154 -1103.2168
+85597.25812170235 4.100955 -1103.1378
+85598.25812175265 4.100955 -1103.197
+85599.25812180294 4.1009154 -1103.2168
+85600.25812185323 4.1008763 -1103.1774
+85601.25812190352 4.1009154 -1103.1378
+85602.25812195381 4.100955 -1103.2366
+85603.2581220041 4.1008368 -1103.1576
+85604.2581220544 4.1008763 -1103.1774
+85605.25812210469 4.1007581 -1103.1576
+85606.25812215498 4.100719 -1103.197
+85607.25812220527 4.1007581 -1103.1774
+85608.25812225556 4.1007581 -1103.3353
+85609.25812230585 4.1007581 -1103.1774
+85610.25812235614 4.1007581 -1103.1576
+85611.25812240643 4.100719 -1103.2168
+85612.25812245673 4.1007977 -1103.2168
+85613.25812250702 4.1008368 -1103.1576
+85614.25812255731 4.1007581 -1103.2366
+85615.2581226076 4.1006794 -1103.2168
+85616.25812265789 4.100719 -1103.1576
+85617.25812270818 4.100719 -1103.1576
+85618.25812275847 4.1006398 -1103.1182
+85619.25812280877 4.1006007 -1103.1378
+85620.25812285906 4.1006398 -1103.2366
+85621.25812290935 4.1006398 -1103.2168
+85622.25812295964 4.1006007 -1103.1774
+85623.25812300993 4.1006794 -1103.1774
+85624.25812306022 4.1006007 -1103.2366
+85625.25812311051 4.100522 -1103.1182
+85626.2581231608 4.1006007 -1103.2562
+85627.2581232111 4.1005611 -1103.2366
+85628.25812326139 4.1006007 -1103.2562
+85629.25812331168 4.1004825 -1103.197
+85630.25812336197 4.100522 -1103.2366
+85631.25812341226 4.1004038 -1103.1378
+85632.25812346255 4.1003647 -1103.1774
+85633.25812351285 4.1003251 -1103.1576
+85634.25812356314 4.100522 -1103.1182
+85635.25812361343 4.1004434 -1103.2366
+85636.25812366372 4.1004038 -1103.1774
+85637.25812371401 4.1003251 -1103.1576
+85638.2581237643 4.1004434 -1103.1774
+85639.2581238146 4.1004038 -1103.1576
+85640.25812386489 4.1002855 -1103.1576
+85641.25812391518 4.1003647 -1103.1378
+85642.25812396547 4.1002855 -1103.1576
+85643.25812401576 4.1002855 -1103.1378
+85644.25812406605 4.1002855 -1103.197
+85645.25812411634 4.1003251 -1103.1182
+85646.25812416663 4.1002855 -1103.0984
+85647.25812421693 4.1002464 -1103.1576
+85648.25812426722 4.1002464 -1103.1774
+85649.25812431751 4.1003647 -1103.1576
+85650.2581243678 4.1002464 -1103.2562
+85651.25812441809 4.1002464 -1103.1774
+85652.25812446838 4.1002069 -1103.1378
+85653.25812451867 4.1002464 -1103.1576
+85654.25812456897 4.1002464 -1103.1774
+85655.25812461926 4.1001678 -1103.1378
+85656.25812466955 4.1002464 -1103.2168
+85657.25812471984 4.1001678 -1103.1378
+85658.25812477013 4.1001282 -1103.1774
+85659.25812482042 4.1001282 -1103.1182
+85660.25812487071 4.0999708 -1103.1576
+85661.258124921 4.1000495 -1103.1576
+85662.2581249713 4.1001282 -1103.1774
+85663.25812502159 4.1000495 -1103.1576
+85664.25812507188 4.1000495 -1103.197
+85665.25812512217 4.1000099 -1103.1774
+85666.25812517246 4.1000891 -1103.1774
+85667.25812522275 4.1000891 -1103.1576
+85668.25812527305 4.1000099 -1103.1774
+85669.25812532334 4.1000099 -1103.2168
+85670.25812537363 4.0999708 -1103.2761
+85671.25812542392 4.0999312 -1103.197
+85672.25812547421 4.0999708 -1103.1576
+85673.2581255245 4.0999312 -1103.2168
+85674.2581255748 4.0999708 -1103.1576
+85675.25812562509 4.0998921 -1103.197
+85676.25812567538 4.0998135 -1103.2959
+85677.25812572567 4.0998526 -1103.1774
+85678.25812577596 4.0999708 -1103.1576
+85679.25812582625 4.0998921 -1103.2761
+85680.25812587654 4.0998526 -1103.1774
+85681.25812592683 4.0998526 -1103.1774
+85682.25812597713 4.0998921 -1103.2366
+85683.25812602742 4.0999312 -1103.197
+85684.25812607771 4.0998135 -1103.197
+85685.258126128 4.0998921 -1103.2562
+85686.25812617829 4.0998135 -1103.2366
+85687.25812622858 4.0998135 -1103.2366
+85688.25812627887 4.0997739 -1103.1576
+85689.25812632916 4.0997348 -1103.1774
+85690.25812637946 4.0996952 -1103.1774
+85691.25812642975 4.0997739 -1103.2168
+85692.25812648004 4.0996556 -1103.2366
+85693.25812653033 4.099577 -1103.2366
+85694.25812658062 4.0996952 -1103.2168
+85695.25812663091 4.0996165 -1103.1774
+85696.2581266812 4.0997348 -1103.2761
+85697.2581267315 4.0996165 -1103.197
+85698.25812678179 4.0996165 -1103.1378
+85699.25812683208 4.0996165 -1103.1576
+85700.25812688237 4.099577 -1103.2562
+85701.25812693266 4.0995378 -1103.2366
+85702.25812698295 4.0996165 -1103.2168
+85703.25812703324 4.0996165 -1103.2562
+85704.25812708354 4.099577 -1103.2168
+85705.25812713383 4.0994592 -1103.197
+85706.25812718412 4.0995378 -1103.1774
+85707.25812723441 4.099577 -1103.2562
+85708.2581272847 4.0996165 -1103.1378
+85709.258127335 4.0994983 -1103.1774
+85710.25812738528 4.099577 -1103.197
+85711.25812743558 4.0994983 -1103.197
+85712.25812748587 4.09938 -1103.2168
+85713.25812753616 4.0994592 -1103.0984
+85714.25812758645 4.0994592 -1103.2366
+85715.25812763674 4.0994592 -1103.2168
+85716.25812768703 4.09938 -1103.1576
+85717.25812773732 4.0993409 -1103.0984
+85718.25812778762 4.09938 -1103.0984
+85719.25812783791 4.0992622 -1103.1576
+85720.2581278882 4.09938 -1103.2366
+85721.25812793849 4.0993409 -1103.2168
+85722.25812798878 4.09938 -1103.0984
+85723.25812803907 4.0993013 -1103.2761
+85724.25812808936 4.0992622 -1103.2168
+85725.25812813966 4.0992227 -1103.197
+85726.25812818995 4.0992622 -1103.197
+85727.25812824024 4.0993409 -1103.2366
+85728.25812829053 4.0992227 -1103.2168
+85729.25812834082 4.0993013 -1103.2168
+85730.25812839111 4.0991836 -1103.2366
+85731.2581284414 4.0992622 -1103.1378
+85732.2581284917 4.0991836 -1103.197
+85733.25812854199 4.0992227 -1103.1378
+85734.25812859228 4.0992227 -1103.1774
+85735.25812864257 4.0992227 -1103.1378
+85736.25812869286 4.0991044 -1103.1378
+85737.25812874315 4.0992622 -1103.1576
+85738.25812879344 4.0990257 -1103.197
+85739.25812884374 4.0990257 -1103.1182
+85740.25812889403 4.099144 -1103.2168
+85741.25812894432 4.099144 -1103.197
+85742.25812899461 4.0991044 -1103.2366
+85743.2581290449 4.0990653 -1103.0984
+85744.2581290952 4.0990257 -1103.2761
+85745.25812914548 4.0991044 -1103.1182
+85746.25812919578 4.0990257 -1103.1378
+85747.25812924607 4.0990653 -1103.1774
+85748.25812929636 4.0990257 -1103.1774
+85749.25812934665 4.0989866 -1103.197
+85750.25812939694 4.0989866 -1103.2168
+85751.25812944723 4.0989866 -1103.1774
+85752.25812949752 4.0989866 -1103.1576
+85753.25812954782 4.098947 -1103.1576
+85754.2581295981 4.0990257 -1103.197
+85755.2581296484 4.0990257 -1103.1576
+85756.25812969869 4.098947 -1103.2168
+85757.25812974898 4.0988293 -1103.1182
+85758.25812979927 4.0988684 -1103.197
+85759.25812984956 4.0988684 -1103.2168
+85760.25812989986 4.0989079 -1103.1378
+85761.25812995015 4.0988684 -1103.1774
+85762.25813000044 4.098947 -1103.2366
+85763.25813005073 4.0989866 -1103.2366
+85764.25813010102 4.098711 -1103.0984
+85765.25813015131 4.0987897 -1103.2168
+85766.2581302016 4.0989079 -1103.0984
+85767.2581302519 4.0989079 -1103.197
+85768.25813030219 4.0988293 -1103.1576
+85769.25813035248 4.0988684 -1103.1378
+85770.25813040277 4.098711 -1103.2168
+85771.25813045306 4.0987501 -1103.1576
+85772.25813050335 4.0987501 -1103.2168
+85773.25813055364 4.0986323 -1103.1576
+85774.25813060394 4.0986323 -1103.197
+85775.25813065423 4.098711 -1103.0984
+85776.25813070452 4.098711 -1103.2562
+85777.25813075481 4.0985928 -1103.1774
+85778.2581308051 4.098711 -1103.197
+85779.25813085539 4.0985537 -1103.2168
+85780.25813090568 4.0985928 -1103.2366
+85781.25813095598 4.0986323 -1103.1576
+85782.25813100627 4.0985141 -1103.2168
+85783.25813105656 4.0985141 -1103.1576
+85784.25813110685 4.0985928 -1103.2168
+85785.25813115714 4.0985537 -1103.2168
+85786.25813120743 4.0985141 -1103.2366
+85787.25813125772 4.0985928 -1103.3156
+85788.25813130802 4.0984354 -1103.1774
+85789.2581313583 4.0984745 -1103.197
+85790.2581314086 4.0985141 -1103.1774
+85791.25813145889 4.0984745 -1103.1576
+85792.25813150918 4.0984354 -1103.1576
+85793.25813155947 4.0984745 -1103.2562
+85794.25813160976 4.0983958 -1103.197
+85795.25813166006 4.0984745 -1103.197
+85796.25813171035 4.0983567 -1103.2562
+85797.25813176064 4.0983958 -1103.2168
+85798.25813181093 4.0983567 -1103.2562
+85799.25813186122 4.0983567 -1103.2168
+85800.25813191151 4.0983567 -1103.1774
+85801.2581319618 4.098278 -1103.197
+85802.2581320121 4.0984354 -1103.2168
+85803.25813206239 4.0984354 -1103.1378
+85804.25813211268 4.0983171 -1103.2366
+85805.25813216297 4.0983171 -1103.1576
+85806.25813221326 4.0983567 -1103.1576
+85807.25813226355 4.0981994 -1103.2168
+85808.25813231384 4.0983171 -1103.2366
+85809.25813236414 4.098278 -1103.3353
+85810.25813241443 4.0983171 -1103.2168
+85811.25813246472 4.0982385 -1103.2366
+85812.25813251501 4.098278 -1103.1576
+85813.2581325653 4.0981598 -1103.1576
+85814.25813261559 4.0981598 -1103.2168
+85815.25813266588 4.0981598 -1103.2366
+85816.25813271618 4.0982385 -1103.1576
+85817.25813276647 4.0981202 -1103.197
+85818.25813281676 4.0981598 -1103.197
+85819.25813286705 4.0981202 -1103.1576
+85820.25813291734 4.0981202 -1103.197
+85821.25813296763 4.0980811 -1103.2168
+85822.25813301792 4.0980811 -1103.1774
+85823.25813306822 4.0981202 -1103.2761
+85824.2581331185 4.0980024 -1103.197
+85825.2581331688 4.0980811 -1103.1378
+85826.25813321909 4.0980811 -1103.197
+85827.25813326938 4.0980415 -1103.2168
+85828.25813331967 4.0980024 -1103.197
+85829.25813336996 4.0979629 -1103.0391
+85830.25813342026 4.0980415 -1103.197
+85831.25813347055 4.0979629 -1103.1378
+85832.25813352084 4.0980024 -1103.1576
+85833.25813357113 4.0980415 -1103.2168
+85834.25813362142 4.0979238 -1103.197
+85835.25813367171 4.0980415 -1103.1576
+85836.258133722 4.0980415 -1103.1774
+85837.2581337723 4.0980024 -1103.2168
+85838.25813382259 4.0979238 -1103.197
+85839.25813387288 4.0978842 -1103.2168
+85840.25813392317 4.0978842 -1103.2562
+85841.25813397346 4.0978446 -1103.2562
+85842.25813402375 4.0978446 -1103.1182
+85843.25813407404 4.0978446 -1103.2168
+85844.25813412433 4.0978842 -1103.2562
+85845.25813417463 4.0977659 -1103.2959
+85846.25813422492 4.0978446 -1103.1576
+85847.25813427521 4.0978446 -1103.197
+85848.2581343255 4.0977659 -1103.2366
+85849.25813437579 4.0978446 -1103.1774
+85850.25813442608 4.0977268 -1103.1774
+85851.25813447637 4.0978446 -1103.0785
+85852.25813452667 4.0976481 -1103.1182
+85853.25813457696 4.0977268 -1103.1378
+85854.25813462725 4.0977659 -1103.2366
+85855.25813467754 4.0977268 -1103.2168
+85856.25813472783 4.0977268 -1103.1576
+85857.25813477812 4.0976872 -1103.197
+85858.25813482841 4.0976872 -1103.197
+85859.2581348787 4.0976481 -1103.197
+85860.258134929 4.0976872 -1103.1774
+85861.25813497929 4.0976086 -1103.197
+85862.25813502958 4.0976481 -1103.1182
+85863.25813507987 4.0975299 -1103.2761
+85864.25813513016 4.0975299 -1103.2562
+85865.25813518045 4.0976481 -1103.3156
+85866.25813523075 4.0976481 -1103.1378
+85867.25813528104 4.0975695 -1103.1774
+85868.25813533133 4.0976086 -1103.2366
+85869.25813538162 4.0975695 -1103.1774
+85870.25813543191 4.0975695 -1103.2366
+85871.2581354822 4.0975695 -1103.1378
+85872.2581355325 4.0974116 -1103.197
+85873.25813558279 4.0975299 -1103.1774
+85874.25813563308 4.0974512 -1103.1774
+85875.25813568337 4.0974512 -1103.1774
+85876.25813573366 4.0974116 -1103.1774
+85877.25813578395 4.0973725 -1103.1182
+85878.25813583424 4.0974903 -1103.2959
+85879.25813588453 4.0974512 -1103.1774
+85880.25813593483 4.0974116 -1103.197
+85881.25813598512 4.0973725 -1103.1576
+85882.25813603541 4.0974116 -1103.3156
+85883.2581360857 4.0974116 -1103.2562
+85884.25813613599 4.0973725 -1103.1774
+85885.25813618628 4.0974512 -1103.1576
+85886.25813623657 4.0973725 -1103.1378
+85887.25813628687 4.097333 -1103.197
+85888.25813633716 4.0973725 -1103.2168
+85889.25813638745 4.0972543 -1103.197
+85890.25813643774 4.097333 -1103.2366
+85891.25813648803 4.0972939 -1103.2562
+85892.25813653832 4.0971756 -1103.2168
+85893.25813658861 4.0972543 -1103.2366
+85894.2581366389 4.0971756 -1103.2168
+85895.2581366892 4.0972939 -1103.2366
+85896.25813673949 4.0972147 -1103.2562
+85897.25813678978 4.097136 -1103.1378
+85898.25813684007 4.097136 -1103.2366
+85899.25813689036 4.0972147 -1103.1774
+85900.25813694065 4.0971756 -1103.1774
+85901.25813699095 4.097136 -1103.2761
+85902.25813704124 4.0970969 -1103.1774
+85903.25813709153 4.097136 -1103.2562
+85904.25813714182 4.097136 -1103.1576
+85905.25813719211 4.097136 -1103.197
+85906.2581372424 4.0970969 -1103.0984
+85907.2581372927 4.0970573 -1103.1182
+85908.25813734299 4.0970573 -1103.1576
+85909.25813739328 4.097136 -1103.2366
+85910.25813744357 4.0970573 -1103.2168
+85911.25813749386 4.0971756 -1103.197
+85912.25813754415 4.0970182 -1103.197
+85913.25813759444 4.0970182 -1103.1774
+85914.25813764473 4.0969787 -1103.197
+85915.25813769503 4.0969391 -1103.2761
+85916.25813774532 4.0969787 -1103.2168
+85917.25813779561 4.0969391 -1103.1378
+85918.2581378459 4.0970182 -1103.1774
+85919.25813789619 4.0969787 -1103.2562
+85920.25813794648 4.0969787 -1103.2366
+85921.25813799677 4.0968213 -1103.197
+85922.25813804707 4.0969391 -1103.1774
+85923.25813809736 4.0969 -1103.1576
+85924.25813814765 4.0968604 -1103.2959
+85925.25813819794 4.0968213 -1103.1576
+85926.25813824823 4.0968604 -1103.2168
+85927.25813829852 4.0967817 -1103.2366
+85928.25813834881 4.0969 -1103.1378
+85929.2581383991 4.0968213 -1103.1774
+85930.2581384494 4.0967031 -1103.1182
+85931.25813849969 4.0967031 -1103.1182
+85932.25813854998 4.0968213 -1103.2366
+85933.25813860027 4.0968213 -1103.2168
+85934.25813865056 4.0969 -1103.1774
+85935.25813870085 4.0967426 -1103.1774
+85936.25813875115 4.0968604 -1103.1182
+85937.25813880144 4.0967817 -1103.2366
+85938.25813885173 4.096664 -1103.1774
+85939.25813890202 4.096664 -1103.1774
+85940.25813895231 4.096664 -1103.2761
+85941.2581390026 4.0967817 -1103.2168
+85942.2581390529 4.0967031 -1103.2761
+85943.25813910319 4.096664 -1103.1774
+85944.25813915348 4.0967817 -1103.1576
+85945.25813920377 4.0966244 -1103.1774
+85946.25813925406 4.0965848 -1103.2168
+85947.25813930435 4.0965457 -1103.1576
+85948.25813935464 4.0965457 -1103.1774
+85949.25813940493 4.0965848 -1103.2168
+85950.25813945523 4.0965848 -1103.2366
+85951.25813950552 4.0965848 -1103.197
+85952.25813955581 4.0965848 -1103.197
+85953.2581396061 4.0965848 -1103.197
+85954.25813965639 4.0965061 -1103.197
+85955.25813970668 4.0965061 -1103.2959
+85956.25813975697 4.0965848 -1103.1576
+85957.25813980727 4.0965457 -1103.1378
+85958.25813985756 4.096467 -1103.2366
+85959.25813990785 4.096467 -1103.2366
+85960.25813995814 4.096467 -1103.1378
+85961.25814000843 4.0965061 -1103.197
+85962.25814005872 4.096467 -1103.2168
+85963.25814010901 4.0963488 -1103.1774
+85964.2581401593 4.0964274 -1103.1378
+85965.2581402096 4.0963092 -1103.1378
+85966.25814025989 4.0964274 -1103.1774
+85967.25814031018 4.0963488 -1103.197
+85968.25814036047 4.0963883 -1103.1576
+85969.25814041076 4.0963883 -1103.2562
+85970.25814046105 4.0963488 -1103.1774
+85971.25814051135 4.0963883 -1103.0984
+85972.25814056164 4.0963092 -1103.1774
+85973.25814061193 4.0962305 -1103.2366
+85974.25814066222 4.0964274 -1103.1378
+85975.25814071251 4.0962701 -1103.3156
+85976.2581407628 4.0962701 -1103.2366
+85977.2581408131 4.0963488 -1103.197
+85978.25814086339 4.0962305 -1103.2168
+85979.25814091368 4.0962701 -1103.1774
+85980.25814096397 4.0962305 -1103.1774
+85981.25814101426 4.0962701 -1103.1774
+85982.25814106455 4.0962305 -1103.0984
+85983.25814111484 4.0961914 -1103.1576
+85984.25814116513 4.0962305 -1103.1774
+85985.25814121542 4.0961914 -1103.1378
+85986.25814126572 4.0961518 -1103.197
+85987.25814131601 4.0961518 -1103.1576
+85988.2581413663 4.0961127 -1103.1774
+85989.25814141659 4.0961914 -1103.2168
+85990.25814146688 4.0961127 -1103.1576
+85991.25814151717 4.096034 -1103.1182
+85992.25814156746 4.0961127 -1103.1774
+85993.25814161776 4.0959945 -1103.1576
+85994.25814166805 4.096034 -1103.1576
+85995.25814171834 4.0959945 -1103.197
+85996.25814176863 4.0959549 -1103.1576
+85997.25814181892 4.0960732 -1103.1576
+85998.25814186921 4.096034 -1103.2168
+85999.2581419195 4.096034 -1103.0984
+86000.2581419698 4.0959549 -1103.3156
+86001.25814202009 4.096034 -1103.2366
+86002.25814207038 4.0959158 -1103.1378
+86003.25814212067 4.0959549 -1103.2761
+86004.25814217096 4.096034 -1103.2562
+86005.25814222125 4.0959549 -1103.1378
+86006.25814227154 4.0959945 -1103.197
+86007.25814232184 4.0959549 -1103.2168
+86008.25814237213 4.0958762 -1103.1774
+86009.25814242242 4.0958762 -1103.1774
+86010.25814247271 4.0958371 -1103.2366
+86011.258142523 4.0958371 -1103.1378
+86012.2581425733 4.0958371 -1103.2366
+86013.25814262358 4.0958371 -1103.1576
+86014.25814267388 4.0957975 -1103.1378
+86015.25814272417 4.0957189 -1103.1774
+86016.25814277446 4.0958371 -1103.1378
+86017.25814282475 4.0957584 -1103.2366
+86018.25814287504 4.0957584 -1103.2168
+86019.25814292533 4.0957584 -1103.1576
+86020.25814297562 4.0957975 -1103.0984
+86021.25814302592 4.0957584 -1103.1182
+86022.25814307621 4.0957189 -1103.1182
+86023.2581431265 4.0957584 -1103.1774
+86024.25814317679 4.0956402 -1103.197
+86025.25814322708 4.0957975 -1103.2168
+86026.25814327737 4.0957189 -1103.1576
+86027.25814332766 4.0956793 -1103.2168
+86028.25814337796 4.0956793 -1103.2168
+86029.25814342825 4.0956793 -1103.1774
+86030.25814347854 4.0957189 -1103.0984
+86031.25814352883 4.0957189 -1103.2562
+86032.25814357912 4.0956793 -1103.1774
+86033.25814362941 4.0956402 -1103.1774
+86034.2581436797 4.0956006 -1103.1182
+86035.25814373 4.0956006 -1103.1576
+86036.25814378029 4.0956793 -1103.1774
+86037.25814383058 4.0956006 -1103.1774
+86038.25814388087 4.0955219 -1103.1576
+86039.25814393116 4.0955219 -1103.2562
+86040.25814398145 4.0955219 -1103.2562
+86041.25814403174 4.0954432 -1103.2168
+86042.25814408204 4.0954828 -1103.1774
+86043.25814413233 4.0955615 -1103.2168
+86044.25814418262 4.0954432 -1103.2168
+86045.25814423291 4.0955219 -1103.1576
+86046.2581442832 4.0954828 -1103.2168
+86047.2581443335 4.0955219 -1103.197
+86048.25814438378 4.0954432 -1103.1576
+86049.25814443408 4.0954432 -1103.1182
+86050.25814448437 4.0954828 -1103.1774
+86051.25814453466 4.0955219 -1103.197
+86052.25814458495 4.0954432 -1103.1576
+86053.25814463524 4.0953646 -1103.2562
+86054.25814468553 4.0953646 -1103.1774
+86055.25814473582 4.0954828 -1103.1182
+86056.25814478612 4.0954037 -1103.1774
+86057.2581448364 4.095325 -1103.3156
+86058.2581448867 4.0954037 -1103.2168
+86059.25814493699 4.0952859 -1103.1576
+86060.25814498728 4.0952859 -1103.1774
+86061.25814503757 4.0952072 -1103.2761
+86062.25814508786 4.0953646 -1103.1576
+86063.25814513816 4.0952072 -1103.1378
+86064.25814518845 4.0952859 -1103.2168
+86065.25814523874 4.0952859 -1103.2761
+86066.25814528903 4.0952463 -1103.0785
+86067.25814533932 4.0952859 -1103.2168
+86068.25814538961 4.0951676 -1103.2562
+86069.2581454399 4.0952072 -1103.1378
+86070.2581454902 4.0951676 -1103.2366
+86071.25814554049 4.0951676 -1103.2366
+86072.25814559078 4.0951676 -1103.1774
+86073.25814564107 4.0951676 -1103.0984
+86074.25814569136 4.0951285 -1103.1576
+86075.25814574165 4.0951285 -1103.2168
+86076.25814579194 4.0951285 -1103.1576
+86077.25814584224 4.0951285 -1103.1182
+86078.25814589253 4.0950494 -1103.0984
+86079.25814594282 4.0950103 -1103.2366
+86080.25814599311 4.0952463 -1103.1774
+86081.2581460434 4.0951285 -1103.197
+86082.25814609369 4.0951285 -1103.1774
+86083.25814614398 4.0950103 -1103.2562
+86084.25814619428 4.0950103 -1103.2366
+86085.25814624457 4.0950103 -1103.2168
+86086.25814629486 4.0951285 -1103.1576
+86087.25814634515 4.095089 -1103.197
+86088.25814639544 4.0949707 -1103.1378
+86089.25814644573 4.0950494 -1103.1774
+86090.25814649602 4.0950494 -1103.1576
+86091.25814654632 4.0949707 -1103.0588
+86092.2581465966 4.0949316 -1103.1774
+86093.2581466469 4.0950494 -1103.1378
+86094.25814669719 4.0949707 -1103.1774
+86095.25814674748 4.0949316 -1103.2366
+86096.25814679777 4.094892 -1103.2562
+86097.25814684806 4.0949707 -1103.2562
+86098.25814689836 4.0949316 -1103.1182
+86099.25814694865 4.0949316 -1103.197
+86100.25814699894 4.0948529 -1103.2959
+86101.25814704923 4.0947738 -1103.2366
+86102.25814709952 4.0947738 -1103.1182
+86103.25814714981 4.0947738 -1103.197
+86104.2581472001 4.0948133 -1103.1774
+86105.2581472504 4.0948529 -1103.2562
+86106.25814730069 4.0946951 -1103.1182
+86107.25814735098 4.0947738 -1103.3353
+86108.25814740127 4.0946951 -1103.197
+86109.25814745156 4.0947347 -1103.2168
+86110.25814750185 4.0947738 -1103.1378
+86111.25814755214 4.0947347 -1103.1774
+86112.25814760244 4.0947347 -1103.197
+86113.25814765273 4.0946951 -1103.1774
+86114.25814770302 4.0946951 -1103.2168
+86115.25814775331 4.0946951 -1103.2562
+86116.2581478036 4.0946951 -1103.1774
+86117.25814785389 4.0946951 -1103.1774
+86118.25814790418 4.0947347 -1103.1774
+86119.25814795448 4.0946951 -1103.2366
+86120.25814800477 4.094656 -1103.2168
+86121.25814805506 4.0945773 -1103.1378
+86122.25814810535 4.0945377 -1103.1774
+86123.25814815564 4.0945773 -1103.0984
+86124.25814820593 4.0945377 -1103.1378
+86125.25814825622 4.0945773 -1103.2168
+86126.25814830652 4.0945773 -1103.0588
+86127.2581483568 4.0946164 -1103.2761
+86128.2581484071 4.0945773 -1103.2168
+86129.25814845739 4.0945773 -1103.1576
+86130.25814850768 4.0945773 -1103.2168
+86131.25814855797 4.0944986 -1103.1576
+86132.25814860826 4.0944986 -1103.2562
+86133.25814865856 4.0944986 -1103.1576
+86134.25814870885 4.0944195 -1103.197
+86135.25814875914 4.0944986 -1103.0588
+86136.25814880943 4.0946164 -1103.2959
+86137.25814885972 4.0944986 -1103.3156
+86138.25814891001 4.0945377 -1103.2366
+86139.2581489603 4.0945773 -1104.4414
+86140.2581490106 4.0943017 -1105.7645
+86141.25814906089 4.0943804 -1105.7449
+86142.25814911118 4.0943804 -1105.8239
+86143.25814916147 4.0944195 -1105.4684
+86144.25814921176 4.0944195 -1107.3842
+86145.25814926205 4.0944591 -1107.3644
+86146.25814931234 4.0943804 -1107.3644
+86147.25814936263 4.0943017 -1106.4757
+86148.25814941293 4.0943408 -1109.3789
+86149.25814946322 4.0941834 -1109.3987
+86150.25814951351 4.0941439 -1109.3987
+86151.2581495638 4.0943017 -1102.0515
+86152.25814961409 4.0942621 -1105.1919
+86153.25814966438 4.0942621 -1106.7916
+86154.25814971467 4.094223 -1106.8706
+86155.25814976497 4.0942621 -1106.7916
+86156.25814981526 4.0943017 -1104.3031
+86157.25814986555 4.0943408 -1105.2906
+86158.25814991584 4.0943017 -1105.2313
+86159.25814996613 4.0942621 -1105.2708
+86160.25815001642 4.094223 -1103.3156
+86161.25815006671 4.0941834 -1103.2761
+86162.258150117 4.0941834 -1103.1378
+86163.2581501673 4.0943017 -1103.2761
+86164.25815021759 4.094223 -1103.2761
+86165.25815026788 4.0942621 -1103.5131
+86166.25815031817 4.0941439 -1103.8093
+86167.25815036846 4.0941439 -1103.6908
+86168.25815041875 4.0941439 -1103.7699
+86169.25815046905 4.0940261 -1103.3551
+86170.25815051934 4.0941048 -1103.5328
+86171.25815056963 4.0941048 -1103.6119
+86172.25815061992 4.0940652 -1103.6119
+86173.25815067021 4.0941439 -1103.0391
+86174.2581507205 4.0940652 -1102.8021
+86175.2581507708 4.0940652 -1102.8613
+86176.25815082109 4.0939865 -1102.8416
+86177.25815087138 4.0939865 -1102.8021
+86178.25815092167 4.0939865 -1103.3749
+86179.25815097196 4.0939078 -1103.4539
+86180.25815102225 4.0940261 -1103.4934
+86181.25815107254 4.0939078 -1103.5723
+86182.25815112283 4.0939474 -1103.2959
+86183.25815117313 4.0940261 -1103.1576
+86184.25815122342 4.0939474 -1103.3749
+86185.25815127371 4.0939474 -1102.9799
+86186.258151324 4.0939078 -1103.1576
+86187.25815137429 4.0940261 -1103.2562
+86188.25815142458 4.0938683 -1103.2761
+86189.25815147487 4.0939078 -1103.2562
+86190.25815152517 4.0939474 -1103.2959
+86191.25815157546 4.0937896 -1103.2366
+86192.25815162575 4.0938683 -1103.3156
+86193.25815167604 4.0937896 -1103.3156
+86194.25815172633 4.0938292 -1103.3156
+86195.25815177662 4.0938292 -1103.2366
+86196.25815182691 4.0937896 -1103.2366
+86197.2581518772 4.0939474 -1103.1774
+86198.2581519275 4.0937505 -1103.2168
+86199.25815197779 4.0937505 -1103.1576
+86200.25815202808 4.0937109 -1103.2562
+86201.25815207837 4.0938292 -1103.0785
+86202.25815212866 4.0937505 -1103.1576
+86203.25815217895 4.0936718 -1103.3945
+86204.25815222925 4.0936718 -1103.1774
+86205.25815227954 4.0937109 -1103.1576
+86206.25815232983 4.0936718 -1103.2761
+86207.25815238012 4.0938683 -1103.2761
+86208.25815243041 4.0937109 -1103.1378
+86209.2581524807 4.0937109 -1103.197
+86210.258152531 4.0936322 -1103.197
+86211.25815258129 4.0937109 -1103.2562
+86212.25815263158 4.0936718 -1103.2168
+86213.25815268187 4.0936718 -1103.2562
+86214.25815273216 4.0936718 -1103.1774
+86215.25815278245 4.0936718 -1103.197
+86216.25815283274 4.0936718 -1103.2562
+86217.25815288303 4.0935931 -1103.2168
+86218.25815293333 4.0936718 -1103.2366
+86219.25815298362 4.0935535 -1103.2168
+86220.25815303391 4.0936322 -1103.1576
+86221.2581530842 4.0935931 -1103.2366
+86222.25815313449 4.0935535 -1103.2366
+86223.25815318478 4.0934749 -1103.2562
+86224.25815323507 4.0934749 -1103.2366
+86225.25815328537 4.0935931 -1103.1378
+86226.25815333566 4.0934353 -1103.197
+86227.25815338595 4.0935535 -1103.0984
+86228.25815343624 4.0934353 -1103.1576
+86229.25815348653 4.0934749 -1103.1378
+86230.25815353682 4.0934353 -1103.197
+86231.25815358711 4.0934353 -1103.2168
+86232.2581536374 4.0934353 -1103.197
+86233.2581536877 4.093514 -1103.1378
+86234.25815373799 4.0934353 -1103.1182
+86235.25815378828 4.0933566 -1103.2562
+86236.25815383857 4.0934353 -1103.197
+86237.25815388886 4.0933962 -1103.2168
+86238.25815393915 4.0933566 -1103.2562
+86239.25815398945 4.0933962 -1103.1774
+86240.25815403974 4.0933566 -1103.1378
+86241.25815409003 4.0933962 -1103.1182
+86242.25815414032 4.0933175 -1103.2959
+86243.25815419061 4.0933175 -1103.1576
+86244.2581542409 4.0932779 -1103.1576
+86245.2581542912 4.0933566 -1103.1774
+86246.25815434149 4.0933175 -1103.1774
+86247.25815439178 4.0932384 -1103.2366
+86248.25815444207 4.0931993 -1103.2366
+86249.25815449236 4.0931993 -1103.2168
+86250.25815454265 4.0931993 -1103.1576
+86251.25815459294 4.0932384 -1103.2366
+86252.25815464323 4.0932384 -1103.1774
+86253.25815469353 4.0932384 -1103.2366
+86254.25815474382 4.0931993 -1103.1378
+86255.25815479411 4.0931597 -1103.2366
+86256.2581548444 4.0931597 -1103.2168
+86257.25815489469 4.0931993 -1103.1774
+86258.25815494498 4.093081 -1103.1576
+86259.25815499527 4.0931597 -1103.2761
+86260.25815504557 4.0931597 -1103.2562
+86261.25815509586 4.0931206 -1103.1774
+86262.25815514615 4.093081 -1103.1774
+86263.25815519644 4.0931993 -1103.1182
+86264.25815524673 4.0931597 -1103.2366
+86265.25815529702 4.0931597 -1103.1774
+86266.25815534731 4.093081 -1103.2168
+86267.2581553976 4.0931206 -1103.2168
+86268.2581554479 4.0931206 -1103.2366
+86269.25815549819 4.0930419 -1103.2168
+86270.25815554848 4.0930419 -1103.2168
+86271.25815559877 4.0930419 -1103.2168
+86272.25815564906 4.0930419 -1103.1774
+86273.25815569935 4.0930023 -1103.2168
+86274.25815574965 4.0930023 -1103.1576
+86275.25815579994 4.0929632 -1103.0984
+86276.25815585023 4.0929236 -1103.3156
+86277.25815590052 4.0929632 -1103.197
+86278.25815595081 4.0929632 -1103.2168
+86279.2581560011 4.0929236 -1103.2168
+86280.2581560514 4.0928841 -1103.2562
+86281.25815610169 4.0928841 -1103.1774
+86282.25815615198 4.0929236 -1103.2562
+86283.25815620227 4.0928841 -1103.197
+86284.25815625256 4.0928841 -1103.2562
+86285.25815630285 4.0927663 -1103.2562
+86286.25815635314 4.092845 -1103.2168
+86287.25815640343 4.092845 -1103.197
+86288.25815645372 4.0928054 -1103.1774
+86289.25815650402 4.0927663 -1103.2168
+86290.25815655431 4.0928841 -1103.2366
+86291.2581566046 4.0927663 -1103.1378
+86292.25815665489 4.0928054 -1103.2562
+86293.25815670518 4.0927663 -1103.197
+86294.25815675547 4.0927267 -1103.2761
+86295.25815680576 4.0927267 -1103.2562
+86296.25815685606 4.0927267 -1103.1378
+86297.25815690635 4.0927267 -1103.2366
+86298.25815695664 4.0926876 -1103.1774
+86299.25815700693 4.0927267 -1103.2168
+86300.25815705722 4.0927663 -1103.2562
+86301.25815710751 4.0927267 -1103.2168
+86302.2581571578 4.0927267 -1103.1576
+86303.2581572081 4.0927267 -1103.197
+86304.25815725839 4.0926085 -1103.1774
+86305.25815730868 4.0927267 -1103.1774
+86306.25815735897 4.092648 -1103.2761
+86307.25815740926 4.0925694 -1103.1576
+86308.25815745955 4.0926085 -1103.2761
+86309.25815750984 4.0926085 -1103.2562
+86310.25815756014 4.0926085 -1103.197
+86311.25815761043 4.0926085 -1103.1774
+86312.25815766072 4.0925298 -1103.1774
+86313.25815771101 4.0925298 -1103.2562
+86314.2581577613 4.0926085 -1103.0984
+86315.2581578116 4.0925298 -1103.2366
+86316.25815786188 4.0925694 -1103.2761
+86317.25815791218 4.0925298 -1103.2562
+86318.25815796247 4.0925298 -1103.197
+86319.25815801276 4.0925298 -1103.2562
+86320.25815806305 4.0924511 -1103.2366
+86321.25815811334 4.0925298 -1103.2366
+86322.25815816363 4.0924511 -1103.3156
+86323.25815821392 4.092412 -1103.2366
+86324.25815826422 4.0924907 -1103.2366
+86325.25815831451 4.092412 -1103.2366
+86326.2581583648 4.0924907 -1103.2562
+86327.25815841509 4.0924511 -1103.197
+86328.25815846538 4.0924907 -1103.2168
+86329.25815851567 4.092412 -1103.2366
+86330.25815856596 4.0923333 -1103.1576
+86331.25815861626 4.0924511 -1103.1774
+86332.25815866655 4.0924907 -1103.197
+86333.25815871684 4.0925298 -1103.1774
+86334.25815876713 4.0923333 -1103.2562
+86335.25815881742 4.0923724 -1103.2761
+86336.25815886771 4.0923724 -1103.197
+86337.258158918 4.0924511 -1103.1378
+86338.2581589683 4.0923724 -1103.2168
+86339.25815901859 4.0923333 -1103.2761
+86340.25815906888 4.0922937 -1103.2366
+86341.25815911917 4.0922937 -1103.2959
+86342.25815916946 4.0922937 -1103.2761
+86343.25815921975 4.0922151 -1103.2366
+86344.25815927004 4.0922542 -1103.2366
+86345.25815932034 4.0922542 -1103.2366
+86346.25815937063 4.0922542 -1103.2168
+86347.25815942092 4.0922151 -1103.1774
+86348.25815947121 4.0921755 -1103.2168
+86349.2581595215 4.0922542 -1103.1576
+86350.2581595718 4.0922151 -1103.2168
+86351.25815962208 4.0922542 -1103.1774
+86352.25815967238 4.0920577 -1103.2562
+86353.25815972267 4.0922151 -1103.2959
+86354.25815977296 4.0921755 -1103.1576
+86355.25815982325 4.0921755 -1103.2562
+86356.25815987354 4.0921364 -1103.2366
+86357.25815992383 4.0921755 -1103.2562
+86358.25815997412 4.0921364 -1103.2168
+86359.25816002442 4.0920181 -1103.1378
+86360.2581600747 4.0920968 -1103.3353
+86361.258160125 4.0920968 -1103.2761
+86362.25816017529 4.0920968 -1103.2761
+86363.25816022558 4.0920577 -1103.3353
+86364.25816027587 4.0921364 -1103.2562
+86365.25816032616 4.0920968 -1103.2168
+86366.25816037646 4.0920968 -1103.197
+86367.25816042675 4.0920181 -1103.2562
+86368.25816047704 4.0920181 -1103.197
+86369.25816052733 4.0920181 -1103.2366
+86370.25816057762 4.0919785 -1103.2366
+86371.25816062791 4.0919785 -1103.2562
+86372.2581606782 4.0919394 -1103.197
+86373.2581607285 4.0918999 -1103.1774
+86374.25816077879 4.0919394 -1103.2366
+86375.25816082908 4.0920181 -1103.2959
+86376.25816087937 4.0919394 -1103.2761
+86377.25816092966 4.0918608 -1103.2168
+86378.25816097995 4.0918608 -1103.2562
+86379.25816103024 4.0919394 -1103.2366
+86380.25816108054 4.0919394 -1103.1774
+86381.25816113083 4.0918999 -1103.2366
+86382.25816118112 4.0918212 -1103.197
+86383.25816123141 4.0919394 -1103.1576
+86384.2581612817 4.0918608 -1103.2168
+86385.25816133199 4.0918999 -1103.2562
+86386.25816138228 4.0917821 -1103.1774
+86387.25816143258 4.0918608 -1103.2168
+86388.25816148287 4.0917821 -1103.2168
+86389.25816153316 4.0917821 -1103.2168
+86390.25816158345 4.0918212 -1103.2761
+86391.25816163374 4.0917821 -1103.2562
+86392.25816168403 4.0917029 -1103.1774
+86393.25816173432 4.0917425 -1103.197
+86394.25816178462 4.0917821 -1103.197
+86395.2581618349 4.0915852 -1103.1774
+86396.2581618852 4.0916638 -1103.2366
+86397.25816193549 4.0917821 -1103.2168
+86398.25816198578 4.0917029 -1103.0984
+86399.25816203607 4.0916638 -1103.2562
+86400.25816208636 4.0917821 -1103.2562
+86401.25816213666 4.0917425 -1103.197
+86402.25816218695 4.0917029 -1103.2168
+86403.25816223724 4.0917425 -1103.2366
+86404.25816228753 4.0917425 -1103.2366
+86405.25816233782 4.0915456 -1103.1576
+86406.25816238811 4.0916243 -1103.2366
+86407.2581624384 4.0917029 -1103.1774
+86408.2581624887 4.0915852 -1103.2168
+86409.25816253899 4.0915852 -1103.2366
+86410.25816258928 4.0916243 -1103.2761
+86411.25816263957 4.0915852 -1103.2366
+86412.25816268986 4.0915065 -1103.2168
+86413.25816274015 4.0915456 -1103.197
+86414.25816279044 4.0915852 -1103.1774
+86415.25816284074 4.0915852 -1103.1576
+86416.25816289103 4.0915852 -1103.2366
+86417.25816294132 4.0915456 -1103.2168
+86418.25816299161 4.0915065 -1103.2562
+86419.2581630419 4.0915456 -1103.2761
+86420.25816309219 4.0915065 -1103.2562
+86421.25816314248 4.0914669 -1103.1182
+86422.25816319278 4.0914278 -1103.2562
+86423.25816324307 4.0915456 -1103.1576
+86424.25816329336 4.0913882 -1103.1576
+86425.25816334365 4.0914278 -1103.1378
+86426.25816339394 4.0914669 -1103.1774
+86427.25816344423 4.0913882 -1103.2168
+86428.25816349452 4.0913486 -1103.2761
+86429.25816354482 4.0914278 -1103.2366
+86430.2581635951 4.0913486 -1103.2562
+86431.2581636454 4.0914669 -1103.1378
+86432.25816369569 4.0913882 -1103.2168
+86433.25816374598 4.0913882 -1103.0984
+86434.25816379627 4.0914278 -1103.2168
+86435.25816384656 4.0914278 -1103.1576
+86436.25816389685 4.0913486 -1103.2562
+86437.25816394715 4.0913486 -1103.2366
+86438.25816399744 4.0912309 -1103.1774
+86439.25816404773 4.0913095 -1103.2366
+86440.25816409802 4.0912309 -1103.1774
+86441.25816414831 4.0913882 -1103.197
+86442.2581641986 4.0911522 -1103.2366
+86443.2581642489 4.0912309 -1103.2168
+86444.25816429919 4.0912309 -1103.2168
+86445.25816434948 4.09127 -1103.2366
+86446.25816439977 4.0913095 -1103.2562
+86447.25816445006 4.09127 -1103.2168
+86448.25816450035 4.0912309 -1103.1378
+86449.25816455064 4.0912309 -1103.2562
+86450.25816460093 4.0911126 -1103.2168
+86451.25816465123 4.0912309 -1103.0193
+86452.25816470152 4.0912309 -1103.1576
+86453.25816475181 4.09127 -1103.2761
+86454.2581648021 4.0912309 -1103.2562
+86455.25816485239 4.0910339 -1103.1774
+86456.25816490268 4.0911913 -1103.2761
+86457.25816495297 4.0912309 -1103.2761
+86458.25816500327 4.091073 -1103.2366
+86459.25816505356 4.0910339 -1103.2959
+86460.25816510385 4.0911522 -1103.197
+86461.25816515414 4.0911126 -1103.2761
+86462.25816520443 4.0911522 -1103.1774
+86463.25816525472 4.0911126 -1103.1576
+86464.25816530501 4.0911126 -1103.2366
+86465.2581653553 4.0911913 -1103.2366
+86466.2581654056 4.0909944 -1103.2168
+86467.25816545589 4.0911126 -1103.2562
+86468.25816550618 4.0910339 -1103.197
+86469.25816555647 4.0909944 -1103.1774
+86470.25816560676 4.0910339 -1103.2562
+86471.25816565705 4.0909553 -1103.2959
+86472.25816570735 4.0910339 -1103.2366
+86473.25816575764 4.0909553 -1103.1774
+86474.25816580793 4.0909157 -1103.197
+86475.25816585822 4.0909157 -1103.2366
+86476.25816590851 4.0909157 -1103.1182
+86477.2581659588 4.0909944 -1103.2366
+86478.2581660091 4.0909944 -1103.2366
+86479.25816605939 4.0910339 -1103.2168
+86480.25816610968 4.0909553 -1103.0785
+86481.25816615997 4.0909553 -1103.1378
+86482.25816621026 4.0909553 -1103.1774
+86483.25816626055 4.0909157 -1103.197
+86484.25816631084 4.0908766 -1103.1182
+86485.25816636113 4.0909157 -1103.197
+86486.25816641143 4.0907583 -1103.2168
+86487.25816646172 4.0907979 -1103.2562
+86488.25816651201 4.0907583 -1103.1774
+86489.2581665623 4.0907583 -1103.1576
+86490.25816661259 4.090837 -1103.2366
+86491.25816666288 4.0908766 -1103.3156
+86492.25816671317 4.0906796 -1103.197
+86493.25816676347 4.0907979 -1103.2168
+86494.25816681376 4.090837 -1103.197
+86495.25816686405 4.0907583 -1103.2168
+86496.25816691434 4.0908766 -1103.2366
+86497.25816696463 4.0907583 -1103.2366
+86498.25816701492 4.0906796 -1103.2366
+86499.25816706521 4.090837 -1103.197
+86500.2581671155 4.0905614 -1103.2168
+86501.2581671658 4.0907583 -1103.3156
+86502.25816721609 4.0907187 -1103.2959
+86503.25816726638 4.0906401 -1103.2366
+86504.25816731667 4.0906796 -1103.2168
+86505.25816736696 4.0906401 -1103.1774
+86506.25816741725 4.0907583 -1103.1378
+86507.25816746755 4.0906796 -1103.197
+86508.25816751784 4.0907187 -1103.197
+86509.25816756813 4.090601 -1103.2562
+86510.25816761842 4.0905614 -1103.2761
+86511.25816766871 4.090601 -1103.1378
+86512.258167719 4.090601 -1103.2168
+86513.2581677693 4.0905223 -1103.2761
+86514.25816781959 4.0906401 -1103.1774
+86515.25816786988 4.0906796 -1103.1774
+86516.25816792017 4.0906401 -1103.2168
+86517.25816797046 4.0905223 -1103.2761
+86518.25816802075 4.0904827 -1103.1774
+86519.25816807104 4.0904827 -1103.2366
+86520.25816812133 4.090601 -1103.1576
+86521.25816817163 4.0905614 -1103.1576
+86522.25816822192 4.0906401 -1103.2562
+86523.25816827221 4.090404 -1103.2761
+86524.2581683225 4.0904431 -1103.2562
+86525.25816837279 4.0904431 -1103.2761
+86526.25816842308 4.0905223 -1103.2168
+86527.25816847337 4.0905614 -1103.197
+86528.25816852367 4.0904827 -1103.1378
+86529.25816857396 4.0905223 -1103.197
+86530.25816862425 4.090404 -1103.2168
+86531.25816867454 4.0904431 -1103.2959
+86532.25816872483 4.0903254 -1103.197
+86533.25816877512 4.0902858 -1103.3156
+86534.25816882541 4.0904431 -1103.197
+86535.2581688757 4.0902467 -1103.2168
+86536.258168926 4.0904431 -1103.3551
+86537.25816897629 4.0903645 -1103.2168
+86538.25816902658 4.0904431 -1103.197
+86539.25816907687 4.0903254 -1103.3353
+86540.25816912716 4.0902858 -1103.2366
+86541.25816917745 4.090404 -1103.2761
+86542.25816922775 4.0902467 -1103.197
+86543.25816927804 4.0902858 -1103.2366
+86544.25816932833 4.0902467 -1103.197
+86545.25816937862 4.0902858 -1103.2366
+86546.25816942891 4.0902467 -1103.1774
+86547.2581694792 4.0903254 -1103.3156
+86548.2581695295 4.090404 -1103.1576
+86549.25816957979 4.0902858 -1103.197
+86550.25816963008 4.0903254 -1103.1774
+86551.25816968037 4.0902071 -1103.2562
+86552.25816973066 4.0902467 -1103.2168
+86553.25816978095 4.0901284 -1103.2366
+86554.25816983124 4.0902071 -1103.2168
+86555.25816988153 4.0901675 -1103.2366
+86556.25816993183 4.0902467 -1103.2366
+86557.25816998212 4.0902071 -1103.1576
+86558.25817003241 4.0900888 -1103.2959
+86559.2581700827 4.0902467 -1103.1774
+86560.25817013299 4.0900497 -1103.2168
+86561.25817018328 4.0900497 -1103.1378
+86562.25817023357 4.0900888 -1103.2562
+86563.25817028387 4.0900888 -1103.2168
+86564.25817033416 4.0900888 -1103.197
+86565.25817038445 4.0902071 -1103.197
+86566.25817043474 4.0901675 -1103.1774
+86567.25817048503 4.0902071 -1103.2959
+86568.25817053532 4.0901284 -1103.1774
+86569.25817058561 4.0901284 -1103.2168
+86570.2581706359 4.0901284 -1103.197
+86571.2581706862 4.0900888 -1103.197
+86572.25817073649 4.0900497 -1103.197
+86573.25817078678 4.0899711 -1103.2366
+86574.25817083707 4.0899315 -1103.1576
+86575.25817088736 4.0900102 -1103.3353
+86576.25817093765 4.0900102 -1103.2168
+86577.25817098795 4.0900102 -1103.0984
+86578.25817103824 4.0900888 -1103.1774
+86579.25817108853 4.0898924 -1103.2168
+86580.25817113882 4.0900102 -1103.3156
+86581.25817118911 4.0899315 -1103.197
+86582.2581712394 4.0898528 -1103.2959
+86583.2581712897 4.0899315 -1103.2366
+86584.25817133998 4.0899315 -1103.2168
+86585.25817139028 4.0898924 -1103.2562
+86586.25817144057 4.0899711 -1103.2168
+86587.25817149086 4.0898924 -1103.2562
+86588.25817154115 4.0899711 -1103.1576
+86589.25817159144 4.0899315 -1103.197
+86590.25817164173 4.0898528 -1103.2562
+86591.25817169202 4.0898528 -1103.1774
+86592.25817174232 4.0898132 -1103.2168
+86593.25817179261 4.0898924 -1103.2761
+86594.2581718429 4.0898132 -1103.1378
+86595.25817189319 4.0896955 -1103.3156
+86596.25817194348 4.0898924 -1103.1576
+86597.25817199377 4.0898132 -1103.2168
+86598.25817204406 4.0898528 -1103.197
+86599.25817209436 4.0898132 -1103.2761
+86600.25817214465 4.0897346 -1103.2168
+86601.25817219494 4.0897346 -1103.2761
+86602.25817224523 4.0896955 -1103.1774
+86603.25817229552 4.0897741 -1103.1774
+86604.25817234581 4.0898132 -1103.2168
+86605.2581723961 4.0897741 -1103.2366
+86606.2581724464 4.0896955 -1103.2168
+86607.25817249669 4.0896955 -1103.1576
+86608.25817254698 4.0897346 -1103.197
+86609.25817259727 4.0897346 -1103.2168
+86610.25817264756 4.0895772 -1103.1378
+86611.25817269785 4.0896559 -1103.1774
+86612.25817274814 4.0896955 -1103.1774
+86613.25817279844 4.0896559 -1103.197
+86614.25817284873 4.0896559 -1103.1774
+86615.25817289902 4.0896559 -1103.1774
+86616.25817294931 4.0896168 -1103.1774
+86617.2581729996 4.0895772 -1103.1576
+86618.2581730499 4.0895772 -1103.2562
+86619.25817310018 4.0895376 -1103.197
+86620.25817315048 4.0895376 -1103.197
+86621.25817320077 4.0895772 -1103.2761
+86622.25817325106 4.0895772 -1103.2168
+86623.25817330135 4.0894198 -1103.0984
+86624.25817335164 4.0894589 -1103.2366
+86625.25817340193 4.0894985 -1103.197
+86626.25817345222 4.0895376 -1103.2562
+86627.25817350252 4.0895772 -1103.2959
+86628.25817355281 4.0894589 -1103.197
+86629.2581736031 4.0893803 -1103.2168
+86630.25817365339 4.0894985 -1103.197
+86631.25817370368 4.0894985 -1103.2761
+86632.25817375397 4.0895772 -1103.1774
+86633.25817380426 4.0894589 -1103.2168
+86634.25817385456 4.0894589 -1103.197
+86635.25817390485 4.0894198 -1103.2562
+86636.25817395514 4.0894198 -1103.1774
+86637.25817400543 4.0895376 -1103.2366
+86638.25817405572 4.0894589 -1103.1774
+86639.25817410601 4.0893412 -1103.3353
+86640.2581741563 4.0893412 -1103.2168
+86641.2581742066 4.0894589 -1103.197
+86642.25817425689 4.0893412 -1103.2761
+86643.25817430718 4.0893803 -1103.197
+86644.25817435747 4.0893412 -1103.197
+86645.25817440776 4.0892625 -1103.2761
+86646.25817445805 4.0893412 -1103.2366
+86647.25817450834 4.0893016 -1103.2562
+86648.25817455864 4.0893016 -1103.1774
+86649.25817460893 4.0893016 -1103.2168
+86650.25817465922 4.0893016 -1103.197
+86651.25817470951 4.0893412 -1103.2761
+86652.2581747598 4.0894198 -1103.1774
+86653.2581748101 4.0893016 -1103.197
+86654.25817486038 4.0892625 -1103.1774
+86655.25817491068 4.0892229 -1103.197
+86656.25817496097 4.0892229 -1103.2168
+86657.25817501126 4.0892229 -1103.2562
+86658.25817506155 4.0893016 -1103.3551
+86659.25817511184 4.0891833 -1103.2168
+86660.25817516213 4.0892229 -1103.1182
+86661.25817521242 4.0892229 -1103.2366
+86662.25817526272 4.0891442 -1103.2366
+86663.258175313 4.0892229 -1103.197
+86664.2581753633 4.0891833 -1103.2562
+86665.25817541359 4.0891047 -1103.197
+86666.25817546388 4.089026 -1103.1774
+86667.25817551417 4.0891047 -1103.1378
+86668.25817556446 4.0891442 -1103.1182
+86669.25817561476 4.0890656 -1103.2562
+86670.25817566505 4.0891047 -1103.2562
+86671.25817571534 4.0891442 -1103.2366
+86672.25817576563 4.0890656 -1103.2562
+86673.25817581592 4.0890656 -1103.2366
+86674.25817586621 4.0890656 -1103.1378
+86675.2581759165 4.0890656 -1103.3551
+86676.2581759668 4.0890656 -1103.2168
+86677.25817601709 4.0891833 -1103.2168
+86678.25817606738 4.0891442 -1103.2761
+86679.25817611767 4.0890656 -1103.2562
+86680.25817616796 4.089026 -1103.2761
+86681.25817621825 4.089026 -1103.1576
+86682.25817626854 4.089026 -1103.2168
+86683.25817631884 4.0889869 -1103.2562
+86684.25817636913 4.0889473 -1103.197
+86685.25817641942 4.0889869 -1103.1774
+86686.25817646971 4.0889077 -1103.2562
+86687.25817652 4.0891047 -1103.2168
+86688.25817657029 4.0889077 -1103.2366
+86689.25817662058 4.0888686 -1103.197
+86690.25817667088 4.0888686 -1103.197
+86691.25817672117 4.0889473 -1103.2959
+86692.25817677146 4.088829 -1103.197
+86693.25817682175 4.0889473 -1103.1378
+86694.25817687204 4.0888686 -1103.2366
+86695.25817692233 4.0887899 -1103.197
+86696.25817697262 4.0889077 -1103.1576
+86697.25817702292 4.0887504 -1103.3156
+86698.2581770732 4.0889077 -1103.2562
+86699.2581771235 4.088829 -1103.2366
+86700.25817717379 4.0887899 -1103.2168
+86701.25817722408 4.0887899 -1103.2168
+86702.25817727437 4.0888686 -1103.2168
+86703.25817732466 4.088829 -1103.2168
+86704.25817737496 4.0888686 -1103.197
+86705.25817742525 4.088829 -1103.2761
+86706.25817747554 4.088829 -1103.2959
+86707.25817752583 4.0887504 -1103.1378
+86708.25817757612 4.0887113 -1103.1774
+86709.25817762641 4.0887504 -1103.2366
+86710.2581776767 4.0887899 -1103.2366
+86711.258177727 4.0887504 -1103.2366
+86712.25817777729 4.0887113 -1103.2761
+86713.25817782758 4.0886717 -1103.2562
+86714.25817787787 4.0887113 -1103.1182
+86715.25817792816 4.0887113 -1103.1774
+86716.25817797845 4.0887899 -1103.2959
+86717.25817802874 4.0886717 -1103.197
+86718.25817807904 4.0887504 -1103.197
+86719.25817812933 4.0886717 -1103.2959
+86720.25817817962 4.0886717 -1103.2562
+86721.25817822991 4.0887113 -1103.197
+86722.2581782802 4.0887113 -1103.2562
+86723.25817833049 4.0886326 -1103.2168
+86724.25817838078 4.0886326 -1103.0785
+86725.25817843108 4.088593 -1103.2761
+86726.25817848137 4.088593 -1103.2366
+86727.25817853166 4.088593 -1103.2366
+86728.25817858195 4.088593 -1103.1774
+86729.25817863224 4.0885143 -1103.1576
+86730.25817868253 4.0886326 -1103.2168
+86731.25817873282 4.088593 -1103.2761
+86732.25817878311 4.0885143 -1103.197
+86733.2581788334 4.0885143 -1103.1182
+86734.2581788837 4.088593 -1103.2168
+86735.25817893399 4.0884748 -1103.197
+86736.25817898428 4.0884356 -1103.0588
+86737.25817903457 4.088593 -1103.2366
+86738.25817908486 4.0885534 -1103.2562
+86739.25817913515 4.0884356 -1103.2562
+86740.25817918545 4.0883961 -1103.197
+86741.25817923574 4.0885143 -1103.1378
+86742.25817928603 4.0884748 -1103.0984
+86743.25817933632 4.0885143 -1103.2562
+86744.25817938661 4.0884748 -1103.2168
+86745.2581794369 4.0883961 -1103.2959
+86746.2581794872 4.0884356 -1103.2562
+86747.25817953749 4.0883961 -1103.2562
+86748.25817958778 4.088357 -1103.2168
+86749.25817963807 4.0884356 -1103.3353
+86750.25817968836 4.088357 -1103.2761
+86751.25817973865 4.0884356 -1103.1378
+86752.25817978894 4.0883961 -1103.2168
+86753.25817983923 4.088357 -1103.2959
+86754.25817988953 4.0883174 -1103.2562
+86755.25817993982 4.0882387 -1103.2562
+86756.25817999011 4.088357 -1103.2366
+86757.2581800404 4.0883174 -1103.2168
+86758.25818009069 4.088357 -1103.2959
+86759.25818014098 4.0884356 -1103.2366
+86760.25818019127 4.0883174 -1103.2168
+86761.25818024157 4.0883174 -1103.2366
+86762.25818029186 4.0883174 -1103.2562
+86763.25818034215 4.0882387 -1103.1774
+86764.25818039244 4.0882778 -1103.2168
+86765.25818044273 4.0881991 -1103.2761
+86766.25818049302 4.0881991 -1103.2761
+86767.25818054331 4.0881991 -1103.2562
+86768.2581805936 4.0881991 -1103.2761
+86769.2581806439 4.08816 -1103.1576
+86770.25818069419 4.0881991 -1103.2562
+86771.25818074448 4.0882387 -1103.3156
+86772.25818079477 4.08816 -1103.1378
+86773.25818084506 4.08816 -1103.197
+86774.25818089535 4.0881991 -1103.2562
+86775.25818094565 4.08816 -1103.1576
+86776.25818099594 4.0880814 -1103.2366
+86777.25818104623 4.0881205 -1103.1182
+86778.25818109652 4.0882387 -1103.2168
+86779.25818114681 4.0881991 -1103.2168
+86780.2581811971 4.0881205 -1103.1576
+86781.2581812474 4.0881205 -1103.1378
+86782.25818129769 4.0880814 -1103.2366
+86783.25818134798 4.0880418 -1103.2168
+86784.25818139827 4.0880418 -1103.2562
+86785.25818144856 4.0881205 -1103.2168
+86786.25818149885 4.0880418 -1103.2562
+86787.25818154914 4.0879631 -1103.2761
+86788.25818159943 4.0879631 -1103.2366
+86789.25818164973 4.0880814 -1103.197
+86790.25818170002 4.0880022 -1103.2366
+86791.25818175031 4.0879631 -1103.2761
+86792.2581818006 4.0880418 -1103.2366
+86793.25818185089 4.0880022 -1103.197
+86794.25818190118 4.0880418 -1103.2168
+86795.25818195147 4.0880022 -1103.1774
+86796.25818200177 4.0880814 -1103.1774
+86797.25818205206 4.0879631 -1103.2562
+86798.25818210235 4.0879235 -1103.197
+86799.25818215264 4.0880022 -1103.197
+86800.25818220293 4.0880418 -1103.2562
+86801.25818225322 4.0879235 -1103.2761
+86802.25818230351 4.0879631 -1103.2761
+86803.2581823538 4.0878448 -1103.2168
+86804.2581824041 4.0879235 -1103.2562
+86805.25818245439 4.0878844 -1103.2562
+86806.25818250468 4.0879631 -1103.2366
+86807.25818255497 4.0878448 -1103.2366
+86808.25818260526 4.0879235 -1103.2959
+86809.25818265555 4.0878448 -1103.1774
+86810.25818270585 4.0878448 -1103.1774
+86811.25818275614 4.0877271 -1103.197
+86812.25818280643 4.0877662 -1103.2959
+86813.25818285672 4.0878844 -1103.197
+86814.25818290701 4.0877662 -1103.2761
+86815.2581829573 4.0878057 -1103.2366
+86816.2581830076 4.0876875 -1103.3156
+86817.25818305789 4.0877662 -1103.2562
+86818.25818310818 4.0877662 -1103.2366
+86819.25818315847 4.0878057 -1103.1576
+86820.25818320876 4.0877662 -1103.197
+86821.25818325905 4.0877662 -1103.1774
+86822.25818330934 4.0877271 -1103.197
+86823.25818335963 4.0876479 -1103.2562
+86824.25818340993 4.0876479 -1103.2366
+86825.25818346022 4.0877271 -1103.2761
+86826.25818351051 4.0877271 -1103.1774
+86827.2581835608 4.0877662 -1103.2562
+86828.25818361109 4.0876875 -1103.197
+86829.25818366138 4.0876875 -1103.1378
+86830.25818371167 4.0876875 -1103.1774
+86831.25818376197 4.0876479 -1103.197
+86832.25818381226 4.0876088 -1103.1774
+86833.25818386255 4.0876479 -1103.197
+86834.25818391284 4.0875692 -1103.1378
+86835.25818396313 4.0875301 -1103.2168
+86836.25818401342 4.0876088 -1103.1576
+86837.25818406371 4.0875692 -1103.1576
+86838.258184114 4.0875692 -1103.2562
+86839.2581841643 4.0876875 -1103.2168
+86840.25818421459 4.0875301 -1103.1774
+86841.25818426488 4.0876088 -1103.2959
+86842.25818431517 4.0874906 -1103.2761
+86843.25818436546 4.0875692 -1103.197
+86844.25818441575 4.0875301 -1103.2562
+86845.25818446605 4.0875692 -1103.1774
+86846.25818451634 4.0874515 -1103.2366
+86847.25818456663 4.0875692 -1103.3156
+86848.25818461692 4.0875301 -1103.2959
+86849.25818466721 4.0875692 -1103.2366
+86850.2581847175 4.0874906 -1103.2562
+86851.2581847678 4.0874515 -1103.2366
+86852.25818481809 4.0875301 -1103.1774
+86853.25818486838 4.0875301 -1103.2959
+86854.25818491867 4.0874515 -1103.3156
+86855.25818496896 4.0874119 -1103.197
+86856.25818501925 4.0874515 -1103.2366
+86857.25818506954 4.0874119 -1103.2366
+86858.25818511983 4.0874906 -1103.2366
+86859.25818517013 4.0874515 -1103.2168
+86860.25818522042 4.0873723 -1103.2761
+86861.25818527071 4.0873332 -1103.2168
+86862.258185321 4.0874515 -1103.2959
+86863.25818537129 4.0872936 -1103.197
+86864.25818542158 4.0873332 -1103.2761
+86865.25818547187 4.0874515 -1103.197
+86866.25818552217 4.0872936 -1103.2761
+86867.25818557246 4.0873723 -1103.1774
+86868.25818562275 4.0874119 -1103.197
+86869.25818567304 4.0873332 -1103.2366
+86870.25818572333 4.0872545 -1103.3156
+86871.25818577362 4.0872545 -1103.2562
+86872.25818582391 4.0872936 -1103.3156
+86873.2581858742 4.0872936 -1103.2168
+86874.2581859245 4.0871758 -1103.3156
+86875.25818597479 4.0871758 -1103.3156
+86876.25818602508 4.0872545 -1103.1774
+86877.25818607537 4.0872545 -1103.2562
+86878.25818612566 4.0872149 -1103.2168
+86879.25818617595 4.0872545 -1103.1774
+86880.25818622625 4.0872545 -1103.2366
+86881.25818627654 4.0872545 -1103.2366
+86882.25818632683 4.0872545 -1103.1774
+86883.25818637712 4.0871758 -1103.2168
+86884.25818642741 4.0872149 -1103.2959
+86885.2581864777 4.0872545 -1103.1576
+86886.258186528 4.0871363 -1103.2168
+86887.25818657828 4.0871758 -1103.2562
+86888.25818662858 4.0870972 -1103.2562
+86889.25818667887 4.0871363 -1103.3353
+86890.25818672916 4.087018 -1103.197
+86891.25818677945 4.0870972 -1103.2959
+86892.25818682974 4.0871758 -1103.1576
+86893.25818688003 4.0871363 -1103.2959
+86894.25818693032 4.0870972 -1103.197
+86895.25818698062 4.0870972 -1103.0984
+86896.25818703091 4.0871363 -1103.2168
+86897.2581870812 4.0870576 -1103.1774
+86898.25818713149 4.0871363 -1103.197
+86899.25818718178 4.087018 -1103.2562
+86900.25818723207 4.0870576 -1103.2562
+86901.25818728236 4.087018 -1103.2761
+86902.25818733266 4.0870972 -1103.2761
+86903.25818738295 4.0870576 -1103.2366
+86904.25818743324 4.0870972 -1103.1774
+86905.25818748353 4.0869789 -1103.2562
+86906.25818753382 4.0869393 -1103.2562
+86907.25818758411 4.0871758 -1103.0984
+86908.2581876344 4.0869002 -1103.2366
+86909.2581876847 4.0869789 -1103.2562
+86910.25818773499 4.0869789 -1103.1576
+86911.25818778528 4.0869789 -1103.2761
+86912.25818783557 4.0870576 -1103.2562
+86913.25818788586 4.0869002 -1103.2562
+86914.25818793615 4.0869002 -1103.2366
+86915.25818798644 4.0869393 -1103.2366
+86916.25818803674 4.0869002 -1103.197
+86917.25818808703 4.0869789 -1103.2366
+86918.25818813732 4.0868607 -1103.2562
+86919.25818818761 4.0868607 -1103.2168
+86920.2581882379 4.0869393 -1103.2168
+86921.2581882882 4.0869002 -1103.2168
+86922.25818833848 4.0869002 -1103.2761
+86923.25818838878 4.0869002 -1103.3156
+86924.25818843907 4.0868216 -1103.1774
+86925.25818848936 4.086782 -1103.2761
+86926.25818853965 4.086782 -1103.2168
+86927.25818858994 4.0868216 -1103.1774
+86928.25818864023 4.0868607 -1103.2168
+86929.25818869052 4.0868216 -1103.2959
+86930.25818874082 4.0868216 -1103.2959
+86931.25818879111 4.0868216 -1103.2168
+86932.2581888414 4.0867033 -1103.1576
+86933.25818889169 4.086782 -1103.197
+86934.25818894198 4.0867424 -1103.2168
+86935.25818899227 4.0867424 -1103.2366
+86936.25818904256 4.0868216 -1103.2562
+86937.25818909286 4.0868216 -1103.2959
+86938.25818914315 4.0867424 -1103.2959
+86939.25818919344 4.0867424 -1103.2366
+86940.25818924373 4.0867033 -1103.2168
+86941.25818929402 4.0866637 -1103.1774
+86942.25818934431 4.0867033 -1103.2562
+86943.2581893946 4.0866246 -1103.197
+86944.2581894449 4.0866246 -1103.2959
+86945.25818949519 4.0866246 -1103.2366
+86946.25818954548 4.0866637 -1103.2761
+86947.25818959577 4.086585 -1103.0785
+86948.25818964606 4.0866637 -1103.197
+86949.25818969635 4.0867033 -1103.2168
+86950.25818974664 4.0867033 -1103.197
+86951.25818979694 4.0866637 -1103.2761
+86952.25818984723 4.0866246 -1103.2562
+86953.25818989752 4.0866637 -1103.2562
+86954.25818994781 4.0866246 -1103.197
+86955.2581899981 4.086585 -1103.2366
+86956.2581900484 4.0866246 -1103.2168
+86957.25819009868 4.086585 -1103.1774
+86958.25819014898 4.0864668 -1103.2959
+86959.25819019927 4.0866246 -1103.2168
+86960.25819024956 4.0865064 -1103.197
+86961.25819029985 4.0866637 -1103.2959
+86962.25819035014 4.086585 -1103.3551
+86963.25819040043 4.0864668 -1103.2761
+86964.25819045072 4.0864668 -1103.1576
+86965.25819050102 4.0865064 -1103.197
+86966.2581905513 4.0864668 -1103.197
+86967.2581906016 4.0865459 -1103.2562
+86968.25819065189 4.0865064 -1103.1774
+86969.25819070218 4.0865064 -1103.197
+86970.25819075247 4.0864277 -1103.2959
+86971.25819080276 4.0864668 -1103.2959
+86972.25819085306 4.0863881 -1103.2168
+86973.25819090335 4.0865064 -1103.2562
+86974.25819095364 4.0864277 -1103.2761
+86975.25819100393 4.086349 -1103.2366
+86976.25819105422 4.0863881 -1103.1576
+86977.25819110451 4.086349 -1103.1774
+86978.2581911548 4.0863881 -1103.2562
+86979.2581912051 4.086349 -1103.2168
+86980.25819125539 4.0864668 -1103.3156
+86981.25819130568 4.0863881 -1103.197
+86982.25819135597 4.0863881 -1103.2366
+86983.25819140626 4.0863094 -1103.2366
+86984.25819145655 4.0863881 -1103.1576
+86985.25819150684 4.086349 -1103.2366
+86986.25819155714 4.0863881 -1103.1378
+86987.25819160743 4.0862703 -1103.2366
+86988.25819165772 4.086349 -1103.2366
+86989.25819170801 4.0862703 -1103.2761
+86990.2581917583 4.0862703 -1103.2761
+86991.25819180859 4.0862308 -1103.2366
+86992.25819185888 4.0863094 -1103.2562
+86993.25819190918 4.0863094 -1103.2168
+86994.25819195947 4.0862703 -1103.2168
+86995.25819200976 4.0863094 -1103.2366
+86996.25819206005 4.0863094 -1103.2366
+86997.25819211034 4.0861917 -1103.1378
+86998.25819216063 4.0862308 -1103.2168
+86999.25819221092 4.0861917 -1103.197
+87000.25819226122 4.0861917 -1103.1576
+87001.2581923115 4.0861917 -1103.2168
+87002.2581923618 4.0861521 -1103.2562
+87003.25819241209 4.0861917 -1103.2168
+87004.25819246238 4.0862308 -1103.1774
+87005.25819251267 4.0861521 -1103.1378
+87006.25819256296 4.0861125 -1103.2562
+87007.25819261326 4.0861917 -1103.197
+87008.25819266355 4.0860734 -1103.1576
+87009.25819271384 4.0860338 -1103.2562
+87010.25819276413 4.0861917 -1103.1774
+87011.25819281442 4.0861125 -1103.2366
+87012.25819286471 4.0860338 -1103.2366
+87013.258192915 4.0860338 -1103.3353
+87014.2581929653 4.0861125 -1103.197
+87015.25819301559 4.0859947 -1103.1774
+87016.25819306588 4.0860734 -1103.197
+87017.25819311617 4.0860338 -1103.2366
+87018.25819316646 4.0860338 -1103.2366
+87019.25819321675 4.0860338 -1103.3156
+87020.25819326704 4.0861125 -1103.2959
+87021.25819331734 4.0860734 -1103.1774
+87022.25819336763 4.085916 -1103.197
+87023.25819341792 4.0860338 -1103.1378
+87024.25819346821 4.0860338 -1103.1774
+87025.2581935185 4.0859947 -1103.2761
+87026.25819356879 4.0859551 -1103.2761
+87027.25819361908 4.0859551 -1103.2168
+87028.25819366938 4.0860338 -1103.197
+87029.25819371967 4.0859551 -1103.1378
+87030.25819376996 4.0859551 -1103.2761
+87031.25819382025 4.0859551 -1103.2168
+87032.25819387054 4.0858369 -1103.1774
+87033.25819392083 4.0859551 -1103.2168
+87034.25819397112 4.0858369 -1103.2366
+87035.25819402141 4.0858369 -1103.2366
+87036.2581940717 4.0857978 -1103.1774
+87037.258194122 4.085916 -1103.2562
+87038.25819417229 4.0859551 -1103.2366
+87039.25819422258 4.0858369 -1103.2168
+87040.25819427287 4.0858765 -1103.2562
+87041.25819432316 4.0858765 -1103.1774
+87042.25819437345 4.085916 -1103.1774
+87043.25819442375 4.0858369 -1103.1378
+87044.25819447404 4.0858369 -1103.2168
+87045.25819452433 4.0858369 -1103.2366
+87046.25819457462 4.0858369 -1103.2959
+87047.25819462491 4.0858765 -1103.2168
+87048.2581946752 4.0858369 -1103.2959
+87049.2581947255 4.0858765 -1103.1774
+87050.25819477579 4.0857978 -1103.2168
+87051.25819482608 4.0857191 -1103.1378
+87052.25819487637 4.0857582 -1103.2168
+87053.25819492666 4.0858369 -1103.2562
+87054.25819497695 4.0857191 -1103.1774
+87055.25819502724 4.085916 -1103.3551
+87056.25819507753 4.0856795 -1103.197
+87057.25819512783 4.0857582 -1103.1774
+87058.25819517812 4.0856795 -1103.197
+87059.25819522841 4.0857191 -1103.3156
+87060.2581952787 4.0857191 -1103.1182
+87061.25819532899 4.0857191 -1103.2761
+87062.25819537928 4.0856795 -1103.2168
+87063.25819542957 4.0857191 -1103.2562
+87064.25819547987 4.0857191 -1103.2366
+87065.25819553016 4.0856404 -1103.2168
+87066.25819558045 4.0856404 -1103.1576
+87067.25819563074 4.0857191 -1103.1774
+87068.25819568103 4.0856404 -1103.2168
+87069.25819573132 4.0857191 -1103.197
+87070.25819578161 4.0856404 -1103.1774
+87071.2581958319 4.0855618 -1103.1774
+87072.2581958822 4.0856009 -1103.197
+87073.25819593249 4.0855618 -1103.2562
+87074.25819598278 4.0856404 -1103.2366
+87075.25819603307 4.0856795 -1103.1774
+87076.25819608336 4.0854826 -1103.1774
+87077.25819613365 4.0855618 -1103.2562
+87078.25819618395 4.0856009 -1103.2366
+87079.25819623424 4.0855618 -1103.2562
+87080.25819628453 4.0856404 -1103.1774
+87081.25819633482 4.0856404 -1103.1774
+87082.25819638511 4.0855618 -1103.197
+87083.2581964354 4.0855618 -1103.2168
+87084.2581964857 4.0854826 -1103.2366
+87085.25819653599 4.0855222 -1103.197
+87086.25819658628 4.0855222 -1103.2168
+87087.25819663657 4.0854826 -1103.2168
+87088.25819668686 4.0855222 -1103.1774
+87089.25819673715 4.0854039 -1103.2168
+87090.25819678744 4.0854039 -1103.2562
+87091.25819683773 4.0855222 -1103.1774
+87092.25819688803 4.0854826 -1103.0785
+87093.25819693832 4.0854826 -1103.1774
+87094.25819698861 4.0854039 -1103.0785
+87095.2581970389 4.0854435 -1103.2366
+87096.25819708919 4.0854039 -1103.0785
+87097.25819713948 4.0854435 -1103.197
+87098.25819718977 4.0854435 -1103.2761
+87099.25819724007 4.0853252 -1103.2959
+87100.25819729036 4.0853648 -1103.1378
+87101.25819734065 4.0852861 -1103.2562
+87102.25819739094 4.0853648 -1103.1378
+87103.25819744123 4.0854435 -1103.1774
+87104.25819749152 4.0853252 -1103.1774
+87105.25819754181 4.0852466 -1103.1774
+87106.2581975921 4.0853252 -1103.197
+87107.2581976424 4.0852861 -1103.2168
+87108.25819769269 4.085207 -1103.2562
+87109.25819774298 4.0853252 -1103.2366
+87110.25819779327 4.0853252 -1103.1774
+87111.25819784356 4.0851283 -1103.2168
+87112.25819789385 4.085207 -1103.2761
+87113.25819794415 4.0852861 -1103.2959
+87114.25819799444 4.085207 -1103.1774
+87115.25819804473 4.0852466 -1103.1774
+87116.25819809502 4.0852861 -1103.2366
+87117.25819814531 4.0852466 -1103.1378
+87118.2581981956 4.0852466 -1103.197
+87119.2581982459 4.0851283 -1103.1378
+87120.25819829619 4.085207 -1103.2366
+87121.25819834648 4.0852466 -1103.2168
+87122.25819839677 4.0851679 -1103.1774
+87123.25819844706 4.0852466 -1103.1774
+87124.25819849735 4.0851679 -1103.2761
+87125.25819854764 4.0851679 -1103.1576
+87126.25819859793 4.0851283 -1103.1182
+87127.25819864823 4.0851679 -1103.2366
+87128.25819869852 4.0851283 -1103.2168
+87129.25819874881 4.0851283 -1103.1182
+87130.2581987991 4.0851283 -1103.1378
+87131.25819884939 4.085207 -1103.197
+87132.25819889968 4.0850892 -1103.1576
+87133.25819894997 4.0851283 -1103.197
+87134.25819900027 4.0851283 -1103.197
+87135.25819905056 4.0850496 -1103.197
+87136.25819910085 4.0851283 -1103.2366
+87137.25819915114 4.0851679 -1103.197
+87138.25819920143 4.0850105 -1103.2168
+87139.25819925172 4.0851283 -1103.1378
+87140.25819930201 4.0850105 -1103.0984
+87141.2581993523 4.0850892 -1103.2366
+87142.2581994026 4.0849314 -1103.197
+87143.25819945289 4.0851283 -1103.197
+87144.25819950318 4.0850496 -1103.3156
+87145.25819955347 4.0850496 -1103.1774
+87146.25819960376 4.0850105 -1103.3156
+87147.25819965405 4.0849314 -1103.1774
+87148.25819970435 4.0849314 -1103.197
+87149.25819975464 4.0850105 -1103.1774
+87150.25819980493 4.0848527 -1103.1378
+87151.25819985522 4.0848923 -1103.197
+87152.25819990551 4.0849314 -1103.2959
+87153.2581999558 4.084971 -1103.1774
+87154.2582000061 4.0849314 -1103.2168
+87155.25820005639 4.0848923 -1103.2168
+87156.25820010668 4.0848923 -1103.2562
+87157.25820015697 4.0848527 -1103.2366
+87158.25820020726 4.0848136 -1103.2366
+87159.25820025755 4.084971 -1103.1774
+87160.25820030784 4.0848923 -1103.1576
+87161.25820035813 4.0848527 -1103.1576
+87162.25820040843 4.0848923 -1103.1774
+87163.25820045872 4.0849314 -1103.1774
+87164.25820050901 4.0848136 -1103.197
+87165.2582005593 4.0848136 -1103.2562
+87166.25820060959 4.0848136 -1103.197
+87167.25820065988 4.0848527 -1103.2562
+87168.25820071017 4.0848527 -1103.2761
+87169.25820076047 4.084774 -1103.2168
+87170.25820081076 4.0848136 -1103.197
+87171.25820086105 4.0848136 -1103.1182
+87172.25820091134 4.084774 -1103.2366
+87173.25820096163 4.0848136 -1103.1576
+87174.25820101192 4.0847349 -1103.1182
+87175.25820106221 4.0847349 -1103.197
+87176.2582011125 4.0848136 -1103.1774
+87177.2582011628 4.0847349 -1103.197
+87178.25820121309 4.0847349 -1103.197
+87179.25820126338 4.084774 -1103.2366
+87180.25820131367 4.0847349 -1103.197
+87181.25820136396 4.0846562 -1103.2959
+87182.25820141425 4.0846562 -1103.1576
+87183.25820146454 4.0846167 -1103.1576
+87184.25820151484 4.0846953 -1103.2366
+87185.25820156513 4.0846167 -1103.2366
+87186.25820161542 4.0846953 -1103.197
+87187.25820166571 4.0847349 -1103.3156
+87188.258201716 4.0846167 -1103.1378
+87189.2582017663 4.0846167 -1103.197
+87190.25820181658 4.084538 -1103.2366
+87191.25820186688 4.0845771 -1103.1378
+87192.25820191717 4.0846167 -1103.2366
+87193.25820196746 4.0846167 -1103.2366
+87194.25820201775 4.0846167 -1103.1182
+87195.25820206804 4.0846562 -1103.2366
+87196.25820211833 4.0846167 -1103.2562
+87197.25820216862 4.0846167 -1103.2366
+87198.25820221892 4.084538 -1103.2959
+87199.25820226921 4.0844984 -1103.2562
+87200.2582023195 4.084538 -1103.0588
+87201.25820236979 4.0845771 -1103.2366
+87202.25820242008 4.0844197 -1103.2562
+87203.25820247037 4.084538 -1103.3156
+87204.25820252066 4.0844984 -1103.2366
+87205.25820257096 4.0844197 -1103.1378
+87206.25820262125 4.0845771 -1103.2366
+87207.25820267154 4.084538 -1103.2562
+87208.25820272183 4.0844984 -1103.2168
+87209.25820277212 4.0844984 -1103.197
+87210.25820282241 4.0844593 -1103.197
+87211.2582028727 4.0844197 -1103.2562
+87212.258202923 4.0844197 -1103.1576
+87213.25820297329 4.0843806 -1103.1774
+87214.25820302358 4.084538 -1103.2562
+87215.25820307387 4.0844593 -1103.1378
+87216.25820312416 4.0844984 -1103.197
+87217.25820317445 4.0844197 -1103.1576
+87218.25820322474 4.0843806 -1103.1774
+87219.25820327504 4.0844197 -1103.197
+87220.25820332533 4.0844984 -1103.197
+87221.25820337562 4.0843015 -1103.2168
+87222.25820342591 4.0844197 -1103.0984
+87223.2582034762 4.0843806 -1103.197
+87224.2582035265 4.084341 -1103.197
+87225.25820357678 4.0843015 -1103.197
+87226.25820362708 4.0843015 -1103.2168
+87227.25820367737 4.0843015 -1103.1774
+87228.25820372766 4.0843806 -1103.1774
+87229.25820377795 4.0843806 -1103.2562
+87230.25820382824 4.0842624 -1103.2761
+87231.25820387853 4.0844197 -1103.197
+87232.25820392882 4.0842228 -1103.2168
+87233.25820397912 4.0843806 -1103.1576
+87234.25820402941 4.0843015 -1103.1378
+87235.2582040797 4.0843806 -1103.2562
+87236.25820412999 4.0841441 -1103.197
+87237.25820418028 4.0843015 -1103.0785
+87238.25820423057 4.0842228 -1103.197
+87239.25820428086 4.0843015 -1103.2562
+87240.25820433116 4.0842228 -1103.1576
+87241.25820438145 4.0843015 -1103.2366
+87242.25820443174 4.0841837 -1103.2562
+87243.25820448203 4.0841837 -1103.1576
+87244.25820453232 4.0842624 -1103.1378
+87245.25820458261 4.0842228 -1103.2366
+87246.2582046329 4.0841441 -1103.1774
+87247.2582046832 4.0841837 -1103.197
+87248.25820473349 4.0841837 -1103.1576
+87249.25820478378 4.0841441 -1103.2168
+87250.25820483407 4.0841837 -1103.1378
+87251.25820488436 4.0841837 -1103.1182
+87252.25820493465 4.0840654 -1103.197
+87253.25820498494 4.0841837 -1103.2168
+87254.25820503524 4.084105 -1103.197
+87255.25820508553 4.084105 -1103.2168
+87256.25820513582 4.084105 -1103.197
+87257.25820518611 4.084105 -1103.197
+87258.2582052364 4.084105 -1103.1576
+87259.2582052867 4.0839868 -1103.2366
+87260.25820533698 4.0840654 -1103.2168
+87261.25820538728 4.0840654 -1103.2366
+87262.25820543757 4.0840263 -1103.2168
+87263.25820548786 4.0840654 -1103.2562
+87264.25820553815 4.0840263 -1103.197
+87265.25820558844 4.0840654 -1103.2168
+87266.25820563873 4.0840654 -1103.197
+87267.25820568902 4.0840263 -1103.1576
+87268.25820573932 4.0840654 -1103.2168
+87269.2582057896 4.0839868 -1103.1378
+87270.2582058399 4.0839081 -1103.2366
+87271.25820589019 4.0840654 -1103.2959
+87272.25820594048 4.0839868 -1103.2959
+87273.25820599077 4.0839868 -1103.197
+87274.25820604106 4.0838685 -1103.2959
+87275.25820609136 4.0839868 -1103.2168
+87276.25820614165 4.0839868 -1103.197
+87277.25820619194 4.0839472 -1103.1378
+87278.25820624223 4.0839472 -1103.1774
+87279.25820629252 4.0839081 -1103.197
+87280.25820634281 4.0839081 -1103.2761
+87281.2582063931 4.0839081 -1103.2168
+87282.2582064434 4.0837507 -1103.1576
+87283.25820649369 4.0838294 -1103.1774
+87284.25820654398 4.0837507 -1103.2761
+87285.25820659427 4.0837507 -1103.1774
+87286.25820664456 4.0838685 -1103.2366
+87287.25820669485 4.0839472 -1103.1774
+87288.25820674514 4.0838294 -1103.2366
+87289.25820679544 4.0838685 -1103.2761
+87290.25820684573 4.0837898 -1103.197
+87291.25820689602 4.0838294 -1103.2366
+87292.25820694631 4.0838294 -1103.2366
+87293.2582069966 4.0837898 -1103.1378
+87294.25820704689 4.0837898 -1103.1576
+87295.25820709718 4.0837898 -1103.197
+87296.25820714748 4.0838685 -1103.2761
+87297.25820719777 4.0837507 -1103.197
+87298.25820724806 4.0838294 -1103.2562
+87299.25820729835 4.0836325 -1103.2366
+87300.25820734864 4.0837111 -1103.1774
+87301.25820739893 4.0837111 -1103.0984
+87302.25820744922 4.0836716 -1103.1774
+87303.25820749952 4.0836716 -1103.2366
+87304.2582075498 4.0836716 -1103.1576
+87305.2582076001 4.0837111 -1103.3156
+87306.25820765039 4.0836716 -1103.2562
+87307.25820770068 4.0836716 -1103.197
+87308.25820775097 4.0837507 -1103.2168
+87309.25820780126 4.0837111 -1103.2168
+87310.25820785156 4.0836325 -1103.1774
+87311.25820790185 4.0837111 -1103.2562
+87312.25820795214 4.0837111 -1103.2562
+87313.25820800243 4.0836325 -1103.2366
+87314.25820805272 4.0837111 -1103.2168
+87315.25820810301 4.0835538 -1103.1576
+87316.2582081533 4.0836325 -1103.2761
+87317.2582082036 4.0836716 -1103.2366
+87318.25820825389 4.0836325 -1103.197
+87319.25820830418 4.0836716 -1103.197
+87320.25820835447 4.0835929 -1103.2761
+87321.25820840476 4.0836325 -1103.3156
+87322.25820845505 4.0835538 -1103.2562
+87323.25820850534 4.0836325 -1103.2168
+87324.25820855564 4.0835929 -1103.197
+87325.25820860593 4.0835929 -1103.197
+87326.25820865622 4.0834751 -1103.1774
+87327.25820870651 4.0834751 -1103.1378
+87328.2582087568 4.0835142 -1103.2761
+87329.25820880709 4.0833964 -1103.2562
+87330.25820885738 4.0834751 -1103.197
+87331.25820890767 4.0835142 -1103.2366
+87332.25820895797 4.0835538 -1103.1378
+87333.25820900826 4.0834751 -1103.1576
+87334.25820905855 4.0834751 -1103.1576
+87335.25820910884 4.0835142 -1103.2168
+87336.25820915913 4.0833569 -1103.2168
+87337.25820920942 4.0833964 -1103.1576
+87338.25820925971 4.0833964 -1103.2562
+87339.25820931 4.0833964 -1103.2366
+87340.2582093603 4.0834751 -1103.197
+87341.25820941059 4.0834355 -1103.2562
+87342.25820946088 4.0834355 -1103.1774
+87343.25820951117 4.0833964 -1103.197
+87344.25820956146 4.0833569 -1103.1774
+87345.25820961175 4.0833964 -1103.3156
+87346.25820966205 4.0834355 -1103.1378
+87347.25820971234 4.0833569 -1103.2366
+87348.25820976263 4.0833173 -1103.1182
+87349.25820981292 4.0832782 -1103.2168
+87350.25820986321 4.0833173 -1103.2366
+87351.2582099135 4.0832782 -1103.2959
+87352.2582099638 4.0832386 -1103.2366
+87353.25821001409 4.0833964 -1103.2168
+87354.25821006438 4.0833173 -1103.2366
+87355.25821011467 4.0833569 -1103.1774
+87356.25821016496 4.0832782 -1103.2168
+87357.25821021525 4.0832386 -1103.197
+87358.25821026554 4.0832782 -1103.2562
+87359.25821031583 4.0833569 -1103.2366
+87360.25821036613 4.0833173 -1103.1576
+87361.25821041642 4.0832782 -1103.197
+87362.25821046671 4.0832386 -1103.2959
+87363.258210517 4.0831995 -1103.197
+87364.25821056729 4.0831995 -1103.197
+87365.25821061758 4.0832386 -1103.1576
+87366.25821066787 4.0831599 -1103.1378
+87367.25821071817 4.0832386 -1103.2366
+87368.25821076846 4.0831995 -1103.2168
+87369.25821081875 4.0832386 -1103.1576
+87370.25821086904 4.0831995 -1103.197
+87371.25821091933 4.0831599 -1103.197
+87372.25821096962 4.0832386 -1103.1774
+87373.25821101991 4.0831208 -1103.1576
+87374.2582110702 4.0832782 -1103.2366
+87375.2582111205 4.0831208 -1103.197
+87376.25821117079 4.0831995 -1103.2366
+87377.25821122108 4.0831599 -1103.2562
+87378.25821127137 4.0831208 -1103.1774
+87379.25821132166 4.0831208 -1103.2366
+87380.25821137195 4.0831208 -1103.1774
+87381.25821142225 4.0830812 -1103.2168
+87382.25821147254 4.0830417 -1103.197
+87383.25821152283 4.0831995 -1103.197
+87384.25821157312 4.0831208 -1103.197
+87385.25821162341 4.0831208 -1103.2366
+87386.2582116737 4.0830417 -1103.2366
+87387.258211724 4.0830026 -1103.2366
+87388.25821177429 4.0830812 -1103.1774
+87389.25821182458 4.0831208 -1103.197
+87390.25821187487 4.0830417 -1103.2168
+87391.25821192516 4.0830812 -1103.1576
+87392.25821197545 4.082963 -1103.197
+87393.25821202574 4.0830026 -1103.1182
+87394.25821207603 4.0830417 -1103.1774
+87395.25821212633 4.0830812 -1103.3551
+87396.25821217662 4.082963 -1103.1378
+87397.25821222691 4.0829239 -1103.2168
+87398.2582122772 4.0828452 -1103.1378
+87399.25821232749 4.0830812 -1103.3353
+87400.25821237778 4.0829239 -1103.2959
+87401.25821242807 4.0830026 -1103.2366
+87402.25821247837 4.0830417 -1103.2366
+87403.25821252866 4.0828843 -1103.2168
+87404.25821257895 4.0829239 -1103.2168
+87405.25821262924 4.0829239 -1103.2761
+87406.25821267953 4.0829239 -1103.2959
+87407.25821272982 4.0828843 -1103.1576
+87408.25821278011 4.0828843 -1103.2366
+87409.2582128304 4.0828843 -1103.197
+87410.2582128807 4.0829239 -1103.1182
+87411.25821293099 4.0828056 -1103.197
+87412.25821298128 4.0828452 -1103.197
+87413.25821303157 4.0828452 -1103.197
+87414.25821308186 4.0828056 -1103.2366
+87415.25821313215 4.0828452 -1103.2562
+87416.25821318245 4.0827661 -1103.197
+87417.25821323274 4.082727 -1103.2168
+87418.25821328303 4.0828056 -1103.197
+87419.25821333332 4.0827661 -1103.1774
+87420.25821338361 4.0828452 -1103.1774
+87421.2582134339 4.0828452 -1103.197
+87422.2582134842 4.0827661 -1103.2168
+87423.25821353449 4.0828056 -1103.2168
+87424.25821358478 4.0828452 -1103.1576
+87425.25821363507 4.0825696 -1103.1378
+87426.25821368536 4.0826483 -1103.1774
+87427.25821373565 4.0827661 -1103.2761
+87428.25821378594 4.0826874 -1103.197
+87429.25821383623 4.0826483 -1103.2366
+87430.25821388653 4.0828452 -1103.1774
+87431.25821393682 4.0828056 -1103.2168
+87432.25821398711 4.0826874 -1103.2168
+87433.2582140374 4.0826874 -1103.2168
+87434.25821408769 4.0826874 -1103.1378
+87435.25821413798 4.0828056 -1103.1774
+87436.25821418827 4.0826483 -1103.197
+87437.25821423857 4.082727 -1103.197
+87438.25821428886 4.0826874 -1103.197
+87439.25821433915 4.0825696 -1103.2562
+87440.25821438944 4.08253 -1103.1774
+87441.25821443973 4.0826874 -1103.3156
+87442.25821449002 4.0826483 -1103.1576
+87443.25821454031 4.08253 -1103.2761
+87444.2582145906 4.0826087 -1103.197
+87445.2582146409 4.0826087 -1103.2168
+87446.25821469119 4.0827661 -1103.2761
+87447.25821474148 4.0826087 -1103.1576
+87448.25821479177 4.0825696 -1103.1576
+87449.25821484206 4.0825696 -1103.2366
+87450.25821489235 4.0826087 -1103.1774
+87451.25821494265 4.0825696 -1103.197
+87452.25821499294 4.0824909 -1103.197
+87453.25821504323 4.0826087 -1103.197
+87454.25821509352 4.08253 -1103.197
+87455.25821514381 4.0824513 -1103.1378
+87456.2582151941 4.0826087 -1103.2366
+87457.2582152444 4.0824909 -1103.2168
+87458.25821529469 4.0823727 -1103.1378
+87459.25821534498 4.0824513 -1103.2562
+87460.25821539527 4.0824513 -1103.2761
+87461.25821544556 4.0824909 -1103.2959
+87462.25821549585 4.0824909 -1103.197
+87463.25821554614 4.0824118 -1103.0785
+87464.25821559643 4.0824513 -1103.197
+87465.25821564673 4.0824118 -1103.2761
+87466.25821569702 4.0824513 -1103.0984
+87467.25821574731 4.0824513 -1103.1774
+87468.2582157976 4.0824118 -1103.1576
+87469.25821584789 4.0824118 -1103.197
+87470.25821589818 4.0824513 -1103.197
+87471.25821594847 4.0824909 -1103.197
+87472.25821599877 4.0824118 -1103.1182
+87473.25821604906 4.0823331 -1103.1774
+87474.25821609935 4.082294 -1103.2761
+87475.25821614964 4.0824118 -1103.197
+87476.25821619993 4.0823331 -1103.1576
+87477.25821625022 4.0823727 -1103.197
+87478.25821630051 4.0824513 -1103.2168
+87479.2582163508 4.0823727 -1103.2959
+87480.2582164011 4.0823331 -1103.2366
+87481.25821645139 4.0823727 -1103.1378
+87482.25821650168 4.0823331 -1103.2168
+87483.25821655197 4.0822153 -1103.1576
+87484.25821660226 4.082294 -1103.2761
+87485.25821665255 4.082294 -1103.2959
+87486.25821670284 4.0822153 -1103.1576
+87487.25821675314 4.082294 -1103.1182
+87488.25821680343 4.082294 -1103.2168
+87489.25821685372 4.0822544 -1103.197
+87490.25821690401 4.082294 -1103.2366
+87491.2582169543 4.0822153 -1103.2168
+87492.2582170046 4.082294 -1103.197
+87493.25821705488 4.0822153 -1103.2366
+87494.25821710518 4.0821757 -1103.1774
+87495.25821715547 4.0821757 -1103.2168
+87496.25821720576 4.0822544 -1103.2366
+87497.25821725605 4.0822544 -1103.1774
+87498.25821730634 4.0822544 -1103.1378
+87499.25821735663 4.0821362 -1103.1774
+87500.25821740692 4.0822544 -1103.197
+87501.25821745722 4.0821757 -1103.2168
+87502.25821750751 4.0822153 -1103.1378
+87503.2582175578 4.0822544 -1103.2168
+87504.25821760809 4.0821362 -1103.1576
+87505.25821765838 4.0822544 -1103.2562
+87506.25821770867 4.0822153 -1103.1378
+87507.25821775896 4.0821362 -1103.2168
+87508.25821780926 4.0820971 -1103.197
+87509.25821785955 4.0821362 -1103.2366
+87510.25821790984 4.0821362 -1103.197
+87511.25821796013 4.0820971 -1103.1774
+87512.25821801042 4.0820575 -1103.2366
+87513.25821806071 4.0820971 -1103.2366
+87514.258218111 4.0820575 -1103.1774
+87515.2582181613 4.0821362 -1103.197
+87516.25821821159 4.0820184 -1103.2562
+87517.25821826188 4.0820971 -1103.1774
+87518.25821831217 4.0820575 -1103.197
+87519.25821836246 4.0820575 -1103.197
+87520.25821841275 4.0820184 -1103.2366
+87521.25821846304 4.0820184 -1103.1774
+87522.25821851334 4.0819788 -1103.2761
+87523.25821856363 4.0819788 -1103.1576
+87524.25821861392 4.0820575 -1103.2366
+87525.25821866421 4.0820575 -1103.2562
+87526.2582187145 4.0820575 -1103.1774
+87527.2582187648 4.0820184 -1103.2562
+87528.25821881508 4.0819788 -1103.2366
+87529.25821886538 4.0819788 -1103.1576
+87530.25821891567 4.0820184 -1103.2761
+87531.25821896596 4.0819397 -1103.2366
+87532.25821901625 4.0820184 -1103.2168
+87533.25821906654 4.081861 -1103.3156
+87534.25821911683 4.081861 -1103.2562
+87535.25821916712 4.081861 -1103.1774
+87536.25821921742 4.0819788 -1103.3156
+87537.25821926771 4.0819397 -1103.2761
+87538.258219318 4.0820184 -1103.2761
+87539.25821936829 4.0819397 -1103.2562
+87540.25821941858 4.0818214 -1103.197
+87541.25821946887 4.081861 -1103.1378
+87542.25821951916 4.0819397 -1103.2366
+87543.25821956946 4.0819397 -1103.1378
+87544.25821961975 4.081861 -1103.197
+87545.25821967004 4.0818214 -1103.2366
+87546.25821972033 4.081861 -1103.2562
+87547.25821977062 4.0819001 -1103.1774
+87548.25821982091 4.0818214 -1103.1576
+87549.2582198712 4.0818214 -1103.2366
+87550.2582199215 4.0818214 -1103.1378
+87551.25821997179 4.0818214 -1103.2761
+87552.25822002208 4.0819001 -1103.197
+87553.25822007237 4.0817428 -1103.197
+87554.25822012266 4.081861 -1103.1378
+87555.25822017295 4.0818214 -1103.1576
+87556.25822022324 4.0818214 -1103.197
+87557.25822027354 4.0816641 -1103.2168
+87558.25822032383 4.0819001 -1103.2168
+87559.25822037412 4.0817428 -1103.2366
+87560.25822042441 4.0818214 -1103.1182
+87561.2582204747 4.0817819 -1103.2562
+87562.258220525 4.0817032 -1103.2366
+87563.25822057528 4.081861 -1103.1378
+87564.25822062558 4.081861 -1103.1182
+87565.25822067587 4.0817032 -1103.197
+87566.25822072616 4.0817819 -1103.2168
+87567.25822077645 4.0817819 -1103.1774
+87568.25822082674 4.0817428 -1103.1182
+87569.25822087703 4.0817032 -1103.2562
+87570.25822092732 4.0817032 -1103.1774
+87571.25822097762 4.0816641 -1103.2761
+87572.2582210279 4.0815854 -1103.197
+87573.2582210782 4.0817032 -1103.1774
+87574.25822112849 4.0816641 -1103.197
+87575.25822117878 4.0815854 -1103.1576
+87576.25822122907 4.0816641 -1103.2366
+87577.25822127936 4.0816245 -1103.2562
+87578.25822132966 4.0816641 -1103.2168
+87579.25822137995 4.0815854 -1103.2562
+87580.25822143024 4.0816641 -1103.2366
+87581.25822148053 4.0815854 -1103.2168
+87582.25822153082 4.0817032 -1103.2168
+87583.25822158111 4.0816641 -1103.1576
+87584.2582216314 4.0815854 -1103.0785
+87585.2582216817 4.0816641 -1103.3156
+87586.25822173199 4.0815854 -1103.1576
+87587.25822178228 4.0815458 -1103.3156
+87588.25822183257 4.0815854 -1103.1774
+87589.25822188286 4.0815854 -1103.2366
+87590.25822193315 4.0815458 -1103.1576
+87591.25822198344 4.0815063 -1103.2168
+87592.25822203374 4.0816245 -1103.1774
+87593.25822208403 4.0816245 -1103.1378
+87594.25822213432 4.0815854 -1103.1378
+87595.25822218461 4.0814672 -1103.2366
+87596.2582222349 4.0814276 -1103.1576
+87597.25822228519 4.0814672 -1103.2168
+87598.25822233548 4.0814672 -1103.1576
+87599.25822238578 4.0814276 -1103.197
+87600.25822243607 4.0814672 -1103.2366
+87601.25822248636 4.0815063 -1103.197
+87602.25822253665 4.0815063 -1103.2959
+87603.25822258694 4.0814276 -1103.1774
+87604.25822263723 4.0813885 -1103.1182
+87605.25822268752 4.0813489 -1103.3353
+87606.25822273782 4.0813885 -1103.2761
+87607.2582227881 4.0814276 -1103.2366
+87608.2582228384 4.0814276 -1103.2168
+87609.25822288869 4.0813885 -1103.2168
+87610.25822293898 4.0814672 -1103.1378
+87611.25822298927 4.0814276 -1103.2562
+87612.25822303956 4.0812702 -1103.1774
+87613.25822308986 4.0813098 -1103.1576
+87614.25822314015 4.0813489 -1103.2562
+87615.25822319044 4.0812702 -1103.197
+87616.25822324073 4.0813489 -1103.2366
+87617.25822329102 4.0813489 -1103.2168
+87618.25822334131 4.0813098 -1103.1774
+87619.2582233916 4.0813489 -1103.2562
+87620.2582234419 4.0813489 -1103.197
+87621.25822349219 4.0813098 -1103.1378
+87622.25822354248 4.0814276 -1103.2168
+87623.25822359277 4.0812702 -1103.1576
+87624.25822364306 4.0813489 -1103.197
+87625.25822369335 4.0813885 -1103.2168
+87626.25822374364 4.0812702 -1103.197
+87627.25822379394 4.0813489 -1103.2366
+87628.25822384423 4.0812702 -1103.0984
+87629.25822389452 4.0812702 -1103.1774
+87630.25822394481 4.0812702 -1103.1774
+87631.2582239951 4.0813489 -1103.2168
+87632.25822404539 4.0812702 -1103.1378
+87633.25822409568 4.0812306 -1103.1774
+87634.25822414597 4.081152 -1103.1774
+87635.25822419627 4.0812702 -1103.2168
+87636.25822424656 4.0812306 -1103.2761
+87637.25822429685 4.081152 -1103.1774
+87638.25822434714 4.0813098 -1103.1378
+87639.25822439743 4.0813098 -1103.2366
+87640.25822444772 4.0811915 -1103.2168
+87641.25822449801 4.081152 -1103.2366
+87642.2582245483 4.0811129 -1103.2562
+87643.2582245986 4.081152 -1103.2562
+87644.25822464889 4.0810733 -1103.1576
+87645.25822469918 4.081152 -1103.2366
+87646.25822474947 4.0811129 -1103.2366
+87647.25822479976 4.0811129 -1103.197
+87648.25822485005 4.0810733 -1103.2366
+87649.25822490035 4.0810733 -1103.2366
+87650.25822495064 4.081152 -1103.2168
+87651.25822500093 4.0810342 -1103.197
+87652.25822505122 4.0810733 -1103.197
+87653.25822510151 4.0810342 -1103.2168
+87654.2582251518 4.0811129 -1103.2562
+87655.2582252021 4.0811129 -1103.2366
+87656.25822525239 4.0810733 -1103.2366
+87657.25822530268 4.0811129 -1103.1774
+87658.25822535297 4.0809946 -1103.2168
+87659.25822540326 4.0809555 -1103.1774
+87660.25822545355 4.0810342 -1103.197
+87661.25822550384 4.0810733 -1103.2366
+87662.25822555413 4.0810733 -1103.2366
+87663.25822560443 4.0810342 -1103.197
+87664.25822565472 4.0808764 -1103.1774
+87665.25822570501 4.0811129 -1103.2366
+87666.2582257553 4.0810733 -1103.1774
+87667.25822580559 4.0809946 -1103.2168
+87668.25822585588 4.0810342 -1103.2562
+87669.25822590617 4.0809555 -1103.1774
+87670.25822595647 4.0809946 -1103.2168
+87671.25822600676 4.0810342 -1103.2366
+87672.25822605705 4.0809159 -1103.197
+87673.25822610734 4.0809946 -1103.197
+87674.25822615763 4.0809555 -1103.2168
+87675.25822620792 4.0809555 -1103.197
+87676.25822625821 4.0808764 -1103.1774
+87677.2582263085 4.0809555 -1103.1774
+87678.2582263588 4.0809555 -1103.1378
+87679.25822640909 4.0808764 -1103.2562
+87680.25822645938 4.0808764 -1103.2168
+87681.25822650967 4.0808372 -1103.197
+87682.25822655996 4.0809159 -1103.197
+87683.25822661025 4.0808372 -1103.197
+87684.25822666055 4.0807977 -1103.2562
+87685.25822671084 4.0808372 -1103.2366
+87686.25822676113 4.0808764 -1103.197
+87687.25822681142 4.0808764 -1103.3156
+87688.25822686171 4.0808764 -1103.2959
+87689.258226912 4.0808764 -1103.1378
+87690.2582269623 4.0807977 -1103.2366
+87691.25822701259 4.0808372 -1103.1774
+87692.25822706288 4.0808764 -1103.2761
+87693.25822711317 4.080719 -1103.2168
+87694.25822716346 4.0808372 -1103.1774
+87695.25822721375 4.0807977 -1103.1774
+87696.25822726404 4.0808372 -1103.2168
+87697.25822731433 4.0808764 -1103.2168
+87698.25822736463 4.0807586 -1103.2168
+87699.25822741492 4.0806403 -1103.1182
+87700.25822746521 4.0807977 -1103.197
+87701.2582275155 4.0807977 -1103.1774
+87702.25822756579 4.0807586 -1103.1774
+87703.25822761608 4.0807586 -1103.197
+87704.25822766637 4.080719 -1103.2562
+87705.25822771667 4.080719 -1103.2366
+87706.25822776696 4.080719 -1103.2366
+87707.25822781725 4.0806403 -1103.1576
+87708.25822786754 4.080719 -1103.1378
+87709.25822791783 4.0806799 -1103.197
+87710.25822796812 4.0806403 -1103.1378
+87711.25822801841 4.080719 -1103.1774
+87712.2582280687 4.0806007 -1103.1774
+87713.258228119 4.0806007 -1103.2168
+87714.25822816929 4.0807586 -1103.1576
+87715.25822821958 4.0806007 -1103.2168
+87716.25822826987 4.0806403 -1103.2168
+87717.25822832016 4.0806799 -1103.197
+87718.25822837045 4.0805616 -1103.2168
+87719.25822842075 4.0804434 -1103.2761
+87720.25822847104 4.0806799 -1103.1774
+87721.25822852133 4.0805616 -1103.2168
+87722.25822857162 4.0805616 -1103.1378
+87723.25822862191 4.0805221 -1103.1576
+87724.2582286722 4.0805221 -1103.197
+87725.2582287225 4.0805221 -1103.2168
+87726.25822877279 4.0806007 -1103.2366
+87727.25822882308 4.0806403 -1103.2562
+87728.25822887337 4.080483 -1103.1774
+87729.25822892366 4.0805616 -1103.2562
+87730.25822897395 4.0805221 -1103.1774
+87731.25822902424 4.0805221 -1103.197
+87732.25822907453 4.0804434 -1103.1774
+87733.25822912483 4.0805221 -1103.1576
+87734.25822917512 4.0805221 -1103.197
+87735.25822922541 4.0804434 -1103.197
+87736.2582292757 4.0804434 -1103.1576
+87737.25822932599 4.0805221 -1103.2366
+87738.25822937628 4.0804043 -1103.2366
+87739.25822942657 4.0805221 -1103.2168
+87740.25822947687 4.080483 -1103.1182
+87741.25822952716 4.0804434 -1103.2366
+87742.25822957745 4.080483 -1103.1774
+87743.25822962774 4.0804434 -1103.1576
+87744.25822967803 4.080483 -1103.2562
+87745.25822972832 4.080483 -1103.2366
+87746.25822977861 4.0804434 -1103.197
+87747.2582298289 4.0805221 -1103.1182
+87748.2582298792 4.0804434 -1103.197
+87749.25822992949 4.0803647 -1103.2168
+87750.25822997978 4.0804434 -1103.2562
+87751.25823003007 4.0804043 -1103.2562
+87752.25823008036 4.0803256 -1103.2366
+87753.25823013065 4.0804434 -1103.2366
+87754.25823018095 4.0803256 -1103.2366
+87755.25823023124 4.0804043 -1103.2366
+87756.25823028153 4.0803647 -1103.2168
+87757.25823033182 4.0803256 -1103.2168
+87758.25823038211 4.080286 -1103.1576
+87759.2582304324 4.0804043 -1103.2366
+87760.2582304827 4.0803256 -1103.0984
+87761.25823053299 4.0803256 -1103.2761
+87762.25823058328 4.0803647 -1103.1378
+87763.25823063357 4.0803256 -1103.2761
+87764.25823068386 4.080286 -1103.1576
+87765.25823073415 4.080286 -1103.2168
+87766.25823078444 4.0802073 -1103.2761
+87767.25823083473 4.0803647 -1103.2562
+87768.25823088503 4.0801287 -1103.0984
+87769.25823093532 4.080286 -1103.2366
+87770.25823098561 4.0802464 -1103.2562
+87771.2582310359 4.0802464 -1103.3156
+87772.25823108619 4.0802464 -1103.2168
+87773.25823113648 4.0801678 -1103.2168
+87774.25823118677 4.0802073 -1103.2168
+87775.25823123707 4.0802464 -1103.197
+87776.25823128736 4.0802464 -1103.1576
+87777.25823133765 4.0801678 -1103.1182
+87778.25823138794 4.0802464 -1103.2366
+87779.25823143823 4.080286 -1103.1576
+87780.25823148852 4.080286 -1103.1378
+87781.25823153881 4.0801678 -1103.1576
+87782.2582315891 4.0802073 -1103.2562
+87783.2582316394 4.0801287 -1103.2168
+87784.25823168969 4.0800891 -1103.2366
+87785.25823173998 4.0800104 -1103.2168
+87786.25823179027 4.0801287 -1103.2366
+87787.25823184056 4.08005 -1103.2168
+87788.25823189085 4.080286 -1103.2168
+87789.25823194114 4.0800891 -1103.2959
+87790.25823199144 4.0800891 -1103.2366
+87791.25823204173 4.0800891 -1103.197
+87792.25823209202 4.0802073 -1103.2366
+87793.25823214231 4.0800891 -1103.197
+87794.2582321926 4.0801287 -1103.2562
+87795.2582322429 4.0801287 -1103.2562
+87796.25823229318 4.0799708 -1103.2168
+87797.25823234348 4.0800891 -1103.2761
+87798.25823239377 4.0801287 -1103.1774
+87799.25823244406 4.0801287 -1103.1774
+87800.25823249435 4.08005 -1103.1774
+87801.25823254464 4.0799317 -1103.2959
+87802.25823259493 4.0801287 -1103.1576
+87803.25823264522 4.0800104 -1103.2366
+87804.25823269552 4.0800104 -1103.2168
+87805.25823274581 4.0800891 -1103.2562
+87806.2582327961 4.0799708 -1103.2959
+87807.25823284639 4.0800104 -1103.2761
+87808.25823289668 4.08005 -1103.2761
+87809.25823294697 4.0799708 -1103.1182
+87810.25823299726 4.0800104 -1103.1774
+87811.25823304756 4.08005 -1103.197
+87812.25823309785 4.0800104 -1103.2168
+87813.25823314814 4.0800104 -1103.197
+87814.25823319843 4.0799317 -1103.197
+87815.25823324872 4.0798531 -1103.197
+87816.25823329901 4.0798922 -1103.2366
+87817.2582333493 4.0799317 -1103.2366
+87818.2582333996 4.0799317 -1103.197
+87819.25823344989 4.0799317 -1103.2761
+87820.25823350018 4.0798531 -1103.1576
+87821.25823355047 4.0798531 -1103.1576
+87822.25823360076 4.0798922 -1103.0588
+87823.25823365105 4.0799317 -1103.1576
+87824.25823370134 4.0798531 -1103.0588
+87825.25823375164 4.0797348 -1103.1774
+87826.25823380193 4.0798531 -1103.1378
+87827.25823385222 4.0798922 -1103.1774
+87828.25823390251 4.0797744 -1103.1774
+87829.2582339528 4.0798135 -1103.1774
+87830.2582340031 4.0797348 -1103.2562
+87831.25823405338 4.0798531 -1103.2562
+87832.25823410368 4.0798135 -1103.2168
+87833.25823415397 4.0798922 -1103.2366
+87834.25823420426 4.0797744 -1103.197
+87835.25823425455 4.0798922 -1103.197
+87836.25823430484 4.0798135 -1103.2562
+87837.25823435513 4.0797744 -1103.2366
+87838.25823440542 4.0797744 -1103.2366
+87839.25823445572 4.0798135 -1103.2761
+87840.25823450601 4.0796957 -1103.2168
+87841.2582345563 4.0798135 -1103.2761
+87842.25823460659 4.0798135 -1103.2168
+87843.25823465688 4.0798135 -1103.2366
+87844.25823470717 4.0797348 -1103.2366
+87845.25823475746 4.0798135 -1103.2562
+87846.25823480776 4.0796561 -1103.2761
+87847.25823485805 4.0796561 -1103.2168
+87848.25823490834 4.0796561 -1103.1774
+87849.25823495863 4.0796561 -1103.2761
+87850.25823500892 4.0796561 -1103.1774
+87851.25823505921 4.0796957 -1103.2168
+87852.2582351095 4.0796561 -1103.2168
+87853.2582351598 4.0797348 -1103.2761
+87854.25823521009 4.0796561 -1103.1774
+87855.25823526038 4.0796561 -1103.2562
+87856.25823531067 4.0796561 -1103.2168
+87857.25823536096 4.0796165 -1103.1378
+87858.25823541125 4.0796957 -1103.2168
+87859.25823546154 4.0796165 -1103.2366
+87860.25823551184 4.0796165 -1103.2562
+87861.25823556213 4.0795379 -1103.1378
+87862.25823561242 4.0796957 -1103.2168
+87863.25823566271 4.0796165 -1103.1774
+87864.258235713 4.0796561 -1103.197
+87865.2582357633 4.0796165 -1103.1774
+87866.25823581358 4.0796957 -1103.2959
+87867.25823586388 4.0795379 -1103.1576
+87868.25823591417 4.0794988 -1103.1576
+87869.25823596446 4.0796165 -1103.1774
+87870.25823601475 4.0796561 -1103.2562
+87871.25823606504 4.0796561 -1103.2168
+87872.25823611533 4.0795774 -1103.1774
+87873.25823616562 4.0794988 -1103.1378
+87874.25823621592 4.0796165 -1103.2562
+87875.2582362662 4.0794988 -1103.2959
+87876.2582363165 4.0795379 -1103.197
+87877.25823636679 4.0794988 -1103.1774
+87878.25823641708 4.0794988 -1103.1774
+87879.25823646737 4.0794988 -1103.2366
+87880.25823651766 4.0794988 -1103.2562
+87881.25823656796 4.0794988 -1103.2366
+87882.25823661825 4.0794592 -1103.2168
+87883.25823666854 4.0794592 -1103.2761
+87884.25823671883 4.0793805 -1103.2562
+87885.25823676912 4.0793805 -1103.1774
+87886.25823681941 4.0794201 -1103.2168
+87887.2582368697 4.0794988 -1103.2562
+87888.25823692 4.0794201 -1103.0984
+87889.25823697029 4.0793805 -1103.2366
+87890.25823702058 4.0793805 -1103.1576
+87891.25823707087 4.0794201 -1103.2562
+87892.25823712116 4.0794201 -1103.2761
+87893.25823717145 4.0793805 -1103.1774
+87894.25823722174 4.0794988 -1103.2168
+87895.25823727204 4.0794592 -1103.1774
+87896.25823732233 4.0793409 -1103.197
+87897.25823737262 4.0794201 -1103.2562
+87898.25823742291 4.0793409 -1103.2562
+87899.2582374732 4.0792623 -1103.1576
+87900.25823752349 4.0794201 -1103.2168
+87901.25823757378 4.0793805 -1103.2168
+87902.25823762408 4.0793805 -1103.1378
+87903.25823767437 4.0793805 -1103.1378
+87904.25823772466 4.0794592 -1103.1774
+87905.25823777495 4.0793805 -1103.197
+87906.25823782524 4.0792623 -1103.2168
+87907.25823787553 4.0793018 -1103.197
+87908.25823792582 4.0791836 -1103.2959
+87909.25823797612 4.0793018 -1103.2761
+87910.2582380264 4.0792623 -1103.2761
+87911.2582380767 4.0792623 -1103.197
+87912.25823812699 4.0793018 -1103.197
+87913.25823817728 4.0793805 -1103.1576
+87914.25823822757 4.0792232 -1103.1576
+87915.25823827786 4.0793018 -1103.2366
+87916.25823832816 4.0792623 -1103.2366
+87917.25823837845 4.0791836 -1103.1576
+87918.25823842874 4.0792623 -1103.2168
+87919.25823847903 4.0791836 -1103.1576
+87920.25823852932 4.0791836 -1103.2562
+87921.25823857961 4.0791445 -1103.1774
+87922.2582386299 4.0792623 -1103.2562
+87923.2582386802 4.0791445 -1103.2366
+87924.25823873049 4.0792232 -1103.2562
+87925.25823878078 4.0791049 -1103.1576
+87926.25823883107 4.0791049 -1103.3156
+87927.25823888136 4.0792232 -1103.2168
+87928.25823893165 4.0791445 -1103.0984
+87929.25823898194 4.0791049 -1103.2761
+87930.25823903223 4.0792232 -1103.197
+87931.25823908253 4.0791445 -1103.2761
+87932.25823913282 4.0791445 -1103.2562
+87933.25823918311 4.0791049 -1103.197
+87934.2582392334 4.0791445 -1103.1182
+87935.25823928369 4.0790653 -1103.1378
+87936.25823933398 4.0791836 -1103.197
+87937.25823938427 4.0791836 -1103.2168
+87938.25823943457 4.0791445 -1103.2168
+87939.25823948486 4.0790262 -1103.1378
+87940.25823953515 4.0791049 -1103.2366
+87941.25823958544 4.0789866 -1103.197
+87942.25823963573 4.0790653 -1103.2562
+87943.25823968602 4.0790262 -1103.2562
+87944.25823973631 4.0789866 -1103.1774
+87945.2582397866 4.0789866 -1103.2366
+87946.2582398369 4.0790262 -1103.1378
+87947.25823988719 4.0790262 -1103.2168
+87948.25823993748 4.0789866 -1103.2168
+87949.25823998777 4.0791049 -1103.2366
+87950.25824003806 4.0789475 -1103.2959
+87951.25824008835 4.0790262 -1103.1182
+87952.25824013865 4.0788689 -1103.2366
+87953.25824018894 4.0789866 -1103.2761
+87954.25824023923 4.0789866 -1103.1576
+87955.25824028952 4.0790653 -1103.1182
+87956.25824033981 4.0789475 -1103.2168
+87957.2582403901 4.0789475 -1103.3353
+87958.2582404404 4.0789475 -1103.1576
+87959.25824049069 4.0788689 -1103.2761
+87960.25824054098 4.0789475 -1103.2366
+87961.25824059127 4.0789475 -1103.2562
+87962.25824064156 4.0789475 -1103.197
+87963.25824069185 4.0789475 -1103.2562
+87964.25824074214 4.078908 -1103.2366
+87965.25824079243 4.0789475 -1103.197
+87966.25824084273 4.0788689 -1103.2168
+87967.25824089302 4.0788689 -1103.197
+87968.25824094331 4.0789475 -1103.1576
+87969.2582409936 4.0788293 -1103.1378
+87970.25824104389 4.0788293 -1103.2562
+87971.25824109418 4.0788689 -1103.1182
+87972.25824114447 4.078908 -1103.2168
+87973.25824119477 4.0787902 -1103.2761
+87974.25824124506 4.078908 -1103.2562
+87975.25824129535 4.0788689 -1103.2562
+87976.25824134564 4.0787902 -1103.1378
+87977.25824139593 4.0787902 -1103.1774
+87978.25824144622 4.0788293 -1103.2168
+87979.25824149651 4.0787902 -1103.1774
+87980.2582415468 4.0788293 -1103.197
+87981.2582415971 4.0788293 -1103.2366
+87982.25824164739 4.0787902 -1103.197
+87983.25824169768 4.0788293 -1103.1182
+87984.25824174797 4.0788689 -1103.1774
+87985.25824179826 4.0788293 -1103.197
+87986.25824184855 4.078711 -1103.1774
+87987.25824189885 4.0786719 -1103.1576
+87988.25824194914 4.0787506 -1103.1774
+87989.25824199943 4.0787506 -1103.0785
+87990.25824204972 4.0787506 -1103.2562
+87991.25824210001 4.0786719 -1103.197
+87992.2582421503 4.078711 -1103.2562
+87993.2582422006 4.0788293 -1103.197
+87994.25824225089 4.078711 -1103.2168
+87995.25824230118 4.0786719 -1103.197
+87996.25824235147 4.078711 -1103.2366
+87997.25824240176 4.0787506 -1103.1378
+87998.25824245205 4.078711 -1103.1774
+87999.25824250234 4.0785933 -1103.1774
+88000.25824255263 4.0786324 -1103.2562
+88001.25824260293 4.0786324 -1103.2168
+88002.25824265322 4.0786719 -1103.1576
+88003.25824270351 4.078711 -1103.2562
+88004.2582427538 4.0786324 -1103.197
+88005.25824280409 4.0786719 -1103.1378
+88006.25824285438 4.0785537 -1103.1774
+88007.25824290467 4.0786324 -1103.3156
+88008.25824295497 4.0785537 -1103.197
+88009.25824300526 4.0786719 -1103.197
+88010.25824305555 4.0785537 -1103.2366
+88011.25824310584 4.0786719 -1103.2168
+88012.25824315613 4.0785537 -1103.2366
+88013.25824320642 4.0785933 -1103.1576
+88014.25824325671 4.0786324 -1103.2959
+88015.258243307 4.0786324 -1103.1774
+88016.2582433573 4.0785146 -1103.2761
+88017.25824340759 4.0785933 -1103.197
+88018.25824345788 4.0785146 -1103.1378
+88019.25824350817 4.0785933 -1103.197
+88020.25824355846 4.0785933 -1103.2168
+88021.25824360875 4.0786324 -1103.2562
+88022.25824365905 4.0784354 -1103.1576
+88023.25824370934 4.0785146 -1103.2761
+88024.25824375963 4.0785146 -1103.2761
+88025.25824380992 4.0783963 -1103.1774
+88026.25824386021 4.0785537 -1103.2761
+88027.2582439105 4.0784354 -1103.1576
+88028.2582439608 4.078475 -1103.1576
+88029.25824401109 4.0783963 -1103.2562
+88030.25824406138 4.0785537 -1103.2562
+88031.25824411167 4.0783963 -1103.2366
+88032.25824416196 4.0785146 -1103.2366
+88033.25824421225 4.0785146 -1103.1576
+88034.25824426254 4.0783963 -1103.1576
+88035.25824431283 4.078475 -1103.2562
+88036.25824436313 4.0784354 -1103.2761
+88037.25824441342 4.078475 -1103.197
+88038.25824446371 4.0784354 -1103.2366
+88039.258244514 4.0784354 -1103.1774
+88040.25824456429 4.0783963 -1103.1378
+88041.25824461458 4.0783176 -1103.1378
+88042.25824466487 4.0783963 -1103.197
+88043.25824471517 4.0783963 -1103.1378
+88044.25824476546 4.0783176 -1103.2562
+88045.25824481575 4.0783567 -1103.1774
+88046.25824486604 4.0783567 -1103.1576
+88047.25824491633 4.0782781 -1103.2366
+88048.25824496662 4.0783567 -1103.2366
+88049.25824501691 4.0784354 -1103.2761
+88050.2582450672 4.0783567 -1103.1774
+88051.2582451175 4.0783963 -1103.1774
+88052.25824516779 4.0783567 -1103.2168
+88053.25824521808 4.0783567 -1103.2168
+88054.25824526837 4.0783963 -1103.2562
+88055.25824531866 4.078239 -1103.2168
+88056.25824536895 4.0783176 -1103.197
+88057.25824541925 4.0782781 -1103.197
+88058.25824546954 4.0783567 -1103.2168
+88059.25824551983 4.0783176 -1103.2562
+88060.25824557012 4.0783176 -1103.1774
+88061.25824562041 4.078239 -1103.1576
+88062.2582456707 4.0782781 -1103.2761
+88063.258245721 4.0783567 -1103.197
+88064.25824577129 4.0781994 -1103.2562
+88065.25824582158 4.0781603 -1103.2168
+88066.25824587187 4.0782781 -1103.2366
+88067.25824592216 4.0783963 -1103.2168
+88068.25824597245 4.0781994 -1103.2366
+88069.25824602274 4.0781603 -1103.2562
+88070.25824607303 4.078239 -1103.197
+88071.25824612333 4.078042 -1103.1774
+88072.25824617362 4.0782781 -1103.2562
+88073.25824622391 4.0781994 -1103.1774
+88074.2582462742 4.078239 -1103.2761
+88075.25824632449 4.0781994 -1103.1576
+88076.25824637478 4.0781603 -1103.2761
+88077.25824642507 4.0781603 -1103.2168
+88078.25824647537 4.0781603 -1103.197
+88079.25824652566 4.078239 -1103.1378
+88080.25824657595 4.0781603 -1103.1774
+88081.25824662624 4.0781207 -1103.2959
+88082.25824667653 4.0781207 -1103.2168
+88083.25824672682 4.078042 -1103.2366
+88084.25824677711 4.0780811 -1103.1576
+88085.2582468274 4.0780811 -1103.3353
+88086.2582468777 4.0780811 -1103.1576
+88087.25824692799 4.0781207 -1103.197
+88088.25824697828 4.078042 -1103.1774
+88089.25824702857 4.0781603 -1103.2761
+88090.25824707886 4.0781207 -1103.2366
+88091.25824712915 4.0781207 -1103.1774
+88092.25824717944 4.0780811 -1103.2562
+88093.25824722974 4.0780025 -1103.2366
+88094.25824728003 4.0779634 -1103.1774
+88095.25824733032 4.0780025 -1103.2366
+88096.25824738061 4.0780025 -1103.2168
+88097.2582474309 4.0779634 -1103.0984
+88098.2582474812 4.0781207 -1103.2366
+88099.25824753148 4.078042 -1103.1378
+88100.25824758178 4.078042 -1103.197
+88101.25824763207 4.0779634 -1103.1774
+88102.25824768236 4.0780811 -1103.1774
+88103.25824773265 4.0779634 -1103.1378
+88104.25824778294 4.0779634 -1103.2366
+88105.25824783323 4.0779238 -1103.2761
+88106.25824788352 4.0778451 -1103.197
+88107.25824793382 4.0779634 -1103.2168
+88108.25824798411 4.0779634 -1103.2168
+88109.2582480344 4.0780811 -1103.2761
+88110.25824808469 4.0780025 -1103.2366
+88111.25824813498 4.0780025 -1103.2366
+88112.25824818527 4.0779238 -1103.197
+88113.25824823556 4.0778847 -1103.1576
+88114.25824828586 4.0778451 -1103.1774
+88115.25824833615 4.0778055 -1103.2366
+88116.25824838644 4.0779238 -1103.1576
+88117.25824843673 4.0780025 -1103.2168
+88118.25824848702 4.0779238 -1103.1774
+88119.25824853731 4.0779238 -1103.197
+88120.2582485876 4.0778847 -1103.2562
+88121.2582486379 4.0778847 -1103.3353
+88122.25824868819 4.0779238 -1103.1576
+88123.25824873848 4.0779238 -1103.1774
+88124.25824878877 4.0778451 -1103.197
+88125.25824883906 4.0777664 -1103.2366
+88126.25824888935 4.0777664 -1103.1576
+88127.25824893964 4.0778055 -1103.2168
+88128.25824898994 4.0778451 -1103.1182
+88129.25824904023 4.0778451 -1103.1576
+88130.25824909052 4.0778451 -1103.2168
+88131.25824914081 4.0777268 -1103.197
+88132.2582491911 4.0778847 -1103.2366
+88133.2582492414 4.0777664 -1103.2168
+88134.25824929168 4.0777268 -1103.2366
+88135.25824934198 4.0778055 -1103.2562
+88136.25824939227 4.0778451 -1103.2366
+88137.25824944256 4.0777664 -1103.2761
+88138.25824949285 4.0778451 -1103.3551
+88139.25824954314 4.0777664 -1103.3156
+88140.25824959343 4.0778055 -1103.197
+88141.25824964372 4.0778451 -1103.1576
+88142.25824969402 4.0777664 -1103.2761
+88143.2582497443 4.0777268 -1103.2959
+88144.2582497946 4.0777268 -1103.3353
+88145.25824984489 4.0776877 -1103.1576
+88146.25824989518 4.0776877 -1103.197
+88147.25824994547 4.0776877 -1103.197
+88148.25824999576 4.0776091 -1103.2168
+88149.25825004606 4.0776091 -1103.3353
+88150.25825009635 4.0776877 -1103.197
+88151.25825014664 4.0778055 -1103.1576
+88152.25825019693 4.0777268 -1103.1774
+88153.25825024722 4.0777268 -1103.2959
+88154.25825029751 4.0776877 -1103.197
+88155.2582503478 4.0776877 -1103.1774
+88156.2582503981 4.0776877 -1103.2168
+88157.25825044839 4.0775695 -1103.1576
+88158.25825049868 4.0776877 -1103.2168
+88159.25825054897 4.0777268 -1103.2562
+88160.25825059926 4.0776091 -1103.1774
+88161.25825064955 4.0777268 -1103.2366
+88162.25825069984 4.0776091 -1103.2761
+88163.25825075014 4.0774908 -1103.1182
+88164.25825080043 4.0774908 -1103.1378
+88165.25825085072 4.0776482 -1103.197
+88166.25825090101 4.0776091 -1103.2168
+88167.2582509513 4.0776482 -1103.2366
+88168.2582510016 4.0776877 -1103.197
+88169.25825105188 4.0776091 -1103.3749
+88170.25825110218 4.0776877 -1103.2562
+88171.25825115247 4.0775695 -1103.2562
+88172.25825120276 4.0775299 -1103.197
+88173.25825125305 4.0775695 -1103.2168
+88174.25825130334 4.0775695 -1103.2366
+88175.25825135363 4.0775695 -1103.1774
+88176.25825140392 4.0775299 -1103.2366
+88177.25825145422 4.0775695 -1103.2168
+88178.2582515045 4.0776877 -1103.1774
+88179.2582515548 4.0774121 -1103.2168
+88180.25825160509 4.0774121 -1103.2562
+88181.25825165538 4.0774512 -1103.2562
+88182.25825170567 4.0775695 -1103.1378
+88183.25825175596 4.0774512 -1103.2562
+88184.25825180626 4.0775695 -1103.2366
+88185.25825185655 4.0774908 -1103.1378
+88186.25825190684 4.0774121 -1103.2366
+88187.25825195713 4.0773335 -1103.0984
+88188.25825200742 4.0774512 -1103.0984
+88189.25825205771 4.0773335 -1103.1182
+88190.258252108 4.0774121 -1103.2562
+88191.2582521583 4.0774512 -1103.2168
+88192.25825220859 4.0775299 -1103.1576
+88193.25825225888 4.0774121 -1103.2366
+88194.25825230917 4.0774121 -1103.2168
+88195.25825235946 4.0773726 -1103.2959
+88196.25825240975 4.0773335 -1103.2168
+88197.25825246004 4.0773335 -1103.1774
+88198.25825251034 4.0774512 -1103.2168
+88199.25825256063 4.0773726 -1103.2959
+88200.25825261092 4.0774121 -1103.1774
+88201.25825266121 4.0773335 -1103.2168
+88202.2582527115 4.0772939 -1103.2562
+88203.25825276179 4.0772548 -1103.197
+88204.25825281208 4.0774121 -1103.2366
+88205.25825286238 4.0774121 -1103.1774
+88206.25825291267 4.0773726 -1103.2761
+88207.25825296296 4.0772939 -1103.1774
+88208.25825301325 4.0773335 -1103.1182
+88209.25825306354 4.0773335 -1103.2366
+88210.25825311383 4.0772548 -1103.2959
+88211.25825316412 4.0772548 -1103.2168
+88212.25825321442 4.0772939 -1103.1774
+88213.2582532647 4.0772152 -1103.197
+88214.258253315 4.0772152 -1103.197
+88215.25825336529 4.0772939 -1103.2366
+88216.25825341558 4.0771756 -1103.2562
+88217.25825346587 4.0773726 -1103.2761
+88218.25825351616 4.0772152 -1103.2761
+88219.25825356646 4.0772548 -1103.2562
+88220.25825361675 4.0772548 -1103.197
+88221.25825366704 4.0772152 -1103.197
+88222.25825371733 4.0772548 -1103.3353
+88223.25825376762 4.0772548 -1103.2761
+88224.25825381791 4.0771365 -1103.197
+88225.2582538682 4.0771365 -1103.2168
+88226.2582539185 4.0770578 -1103.1774
+88227.25825396879 4.0772548 -1103.2562
+88228.25825401908 4.0772152 -1103.2562
+88229.25825406937 4.0771756 -1103.2366
+88230.25825411966 4.0770578 -1103.2366
+88231.25825416995 4.0772939 -1103.2168
+88232.25825422024 4.0772152 -1103.197
+88233.25825427053 4.0770969 -1103.2366
+88234.25825432083 4.0771365 -1103.1182
+88235.25825437112 4.0770969 -1103.1182
+88236.25825442141 4.0772152 -1103.2168
+88237.2582544717 4.0772152 -1103.197
+88238.25825452199 4.0770578 -1103.1576
+88239.25825457228 4.0771756 -1103.1182
+88240.25825462257 4.0770969 -1103.2366
+88241.25825467287 4.0770183 -1103.2562
+88242.25825472316 4.0770578 -1103.1378
+88243.25825477345 4.0770578 -1103.2168
+88244.25825482374 4.0770578 -1103.1774
+88245.25825487403 4.0770183 -1103.2168
+88246.25825492432 4.0770183 -1103.2168
+88247.25825497461 4.0769792 -1103.2562
+88248.2582550249 4.0770183 -1103.2366
+88249.2582550752 4.0769396 -1103.2761
+88250.25825512549 4.0771365 -1103.2761
+88251.25825517578 4.0769792 -1103.1774
+88252.25825522607 4.0769396 -1103.197
+88253.25825527636 4.0769396 -1103.2366
+88254.25825532665 4.0770969 -1103.2366
+88255.25825537695 4.0770578 -1103.1774
+88256.25825542724 4.0770969 -1103.1182
+88257.25825547753 4.0770183 -1103.1576
+88258.25825552782 4.0770183 -1103.2168
+88259.25825557811 4.0769792 -1103.2168
+88260.2582556284 4.0769396 -1103.2761
+88261.2582556787 4.0769792 -1103.2168
+88262.25825572899 4.0769396 -1103.2761
+88263.25825577928 4.0769792 -1103.197
+88264.25825582957 4.0769792 -1103.197
+88265.25825587986 4.0769396 -1103.1774
+88266.25825593015 4.0770183 -1103.197
+88267.25825598044 4.0769396 -1103.1378
+88268.25825603073 4.0768609 -1103.197
+88269.25825608103 4.0770183 -1103.2366
+88270.25825613132 4.0768213 -1103.2168
+88271.25825618161 4.0769396 -1103.1378
+88272.2582562319 4.0769 -1103.1774
+88273.25825628219 4.0769 -1103.1774
+88274.25825633248 4.0769792 -1103.1774
+88275.25825638277 4.0768609 -1103.2168
+88276.25825643307 4.0768609 -1103.2761
+88277.25825648336 4.0768213 -1103.1774
+88278.25825653365 4.0769396 -1103.1378
+88279.25825658394 4.0767426 -1103.2168
+88280.25825663423 4.0767822 -1103.1576
+88281.25825668452 4.0768609 -1103.2562
+88282.25825673481 4.076664 -1103.2168
+88283.2582567851 4.0766249 -1103.2366
+88284.2582568354 4.0767822 -1103.1774
+88285.25825688569 4.0768213 -1103.197
+88286.25825693598 4.0767426 -1103.1774
+88287.25825698627 4.0767426 -1103.3353
+88288.25825703656 4.0768213 -1103.197
+88289.25825708685 4.0768213 -1103.1576
+88290.25825713715 4.0767426 -1103.2959
+88291.25825718744 4.0767426 -1103.1378
+88292.25825723773 4.0767426 -1103.1774
+88293.25825728802 4.0768213 -1103.1774
+88294.25825733831 4.0767035 -1103.2168
+88295.2582573886 4.0767426 -1103.0588
+88296.2582574389 4.0767426 -1103.2168
+88297.25825748919 4.0767035 -1103.1378
+88298.25825753948 4.0767426 -1103.1774
+88299.25825758977 4.0767426 -1103.2959
+88300.25825764006 4.0767822 -1103.1774
+88301.25825769035 4.0767822 -1103.1774
+88302.25825774064 4.0767035 -1103.2168
+88303.25825779093 4.0767426 -1103.2761
+88304.25825784123 4.076664 -1103.1774
+88305.25825789152 4.076664 -1103.1774
+88306.25825794181 4.076664 -1103.2168
+88307.2582579921 4.0767822 -1103.1378
+88308.25825804239 4.0766249 -1103.2366
+88309.25825809268 4.0766249 -1103.2366
+88310.25825814297 4.0765457 -1103.2562
+88311.25825819327 4.0765457 -1103.2366
+88312.25825824356 4.076664 -1103.1774
+88313.25825829385 4.0766249 -1103.197
+88314.25825834414 4.0765457 -1103.197
+88315.25825839443 4.0766249 -1103.197
+88316.25825844472 4.0765853 -1103.1774
+88317.25825849501 4.0765457 -1103.197
+88318.2582585453 4.0765457 -1103.1576
+88319.2582585956 4.0765457 -1103.2168
+88320.25825864589 4.0765853 -1103.2366
+88321.25825869618 4.076664 -1103.2959
+88322.25825874647 4.0765457 -1103.197
+88323.25825879676 4.0765853 -1103.1378
+88324.25825884705 4.0766249 -1103.197
+88325.25825889735 4.0766249 -1103.0984
+88326.25825894764 4.0765853 -1103.2761
+88327.25825899793 4.0765853 -1103.2168
+88328.25825904822 4.0765066 -1103.2959
+88329.25825909851 4.0765457 -1103.2562
+88330.2582591488 4.0765457 -1103.1576
+88331.2582591991 4.0765853 -1103.2366
+88332.25825924939 4.076467 -1103.2761
+88333.25825929968 4.0765457 -1103.2562
+88334.25825934997 4.0765066 -1103.2562
+88335.25825940026 4.076467 -1103.3156
+88336.25825945055 4.0764279 -1103.3156
+88337.25825950084 4.0765066 -1103.197
+88338.25825955113 4.076467 -1103.2366
+88339.25825960143 4.0764279 -1103.197
+88340.25825965172 4.0763884 -1103.1182
+88341.25825970201 4.0764279 -1103.2562
+88342.2582597523 4.076467 -1103.1576
+88343.25825980259 4.076467 -1103.1774
+88344.25825985288 4.076467 -1103.2761
+88345.25825990317 4.0765066 -1103.2959
+88346.25825995347 4.0765066 -1103.3156
+88347.25826000376 4.0763884 -1103.1378
+88348.25826005405 4.076467 -1103.1182
+88349.25826010434 4.0763884 -1103.2168
+88350.25826015463 4.0763884 -1103.2168
+88351.25826020492 4.0763884 -1103.2761
+88352.25826025521 4.0763493 -1103.2366
+88353.2582603055 4.0763493 -1103.2168
+88354.2582603558 4.0763884 -1103.2562
+88355.25826040609 4.0763493 -1103.2366
+88356.25826045638 4.0763097 -1103.2562
+88357.25826050667 4.0763493 -1103.1378
+88358.25826055696 4.076231 -1103.1774
+88359.25826060725 4.0762701 -1103.2562
+88360.25826065755 4.0763097 -1103.2168
+88361.25826070784 4.0763097 -1103.2366
+88362.25826075813 4.0762701 -1103.2168
+88363.25826080842 4.0763493 -1103.2761
+88364.25826085871 4.0763493 -1103.197
+88365.258260909 4.076231 -1103.2761
+88366.2582609593 4.0762701 -1103.3156
+88367.25826100959 4.0762701 -1103.2562
+88368.25826105988 4.0763884 -1103.1576
+88369.25826111017 4.076231 -1103.2959
+88370.25826116046 4.0763493 -1103.197
+88371.25826121075 4.0762701 -1103.2168
+88372.25826126104 4.076231 -1103.197
+88373.25826131133 4.0761914 -1103.2168
+88374.25826136163 4.0761523 -1103.1576
+88375.25826141192 4.0761914 -1103.2761
+88376.25826146221 4.0763097 -1103.2168
+88377.2582615125 4.0761914 -1103.2168
+88378.25826156279 4.0762701 -1103.197
+88379.25826161308 4.076231 -1103.197
+88380.25826166337 4.076231 -1103.2761
+88381.25826171366 4.0761523 -1103.2562
+88382.25826176396 4.0760736 -1103.1774
+88383.25826181425 4.0761523 -1103.2168
+88384.25826186454 4.0761523 -1103.2168
+88385.25826191483 4.0761914 -1103.0984
+88386.25826196512 4.076231 -1103.1774
+88387.25826201541 4.0761127 -1103.2959
+88388.2582620657 4.0762701 -1103.1774
+88389.258262116 4.0761127 -1103.197
+88390.25826216629 4.0761127 -1103.3156
+88391.25826221658 4.0761914 -1103.1774
+88392.25826226687 4.0761523 -1103.2168
+88393.25826231716 4.0761914 -1103.1182
+88394.25826236745 4.0761523 -1103.2959
+88395.25826241774 4.0761127 -1103.197
+88396.25826246804 4.0761523 -1103.1774
+88397.25826251833 4.0760736 -1103.2168
+88398.25826256862 4.0761127 -1103.2366
+88399.25826261891 4.0761127 -1103.2562
+88400.2582626692 4.0760736 -1103.2562
+88401.2582627195 4.0760341 -1103.197
+88402.25826276978 4.0760736 -1103.1576
+88403.25826282008 4.0760341 -1103.1774
+88404.25826287037 4.0760736 -1103.2959
+88405.25826292066 4.0760736 -1103.2761
+88406.25826297095 4.0760736 -1103.197
+88407.25826302124 4.0761127 -1103.2562
+88408.25826307153 4.0760736 -1103.2366
+88409.25826312182 4.0759554 -1103.197
+88410.25826317212 4.0758767 -1103.2761
+88411.25826322241 4.0761127 -1103.2562
+88412.2582632727 4.0759554 -1103.2761
+88413.25826332299 4.0760341 -1103.1774
+88414.25826337328 4.0760736 -1103.2168
+88415.25826342357 4.0760341 -1103.1774
+88416.25826347386 4.0759554 -1103.1182
+88417.25826352416 4.0760341 -1103.2761
+88418.25826357445 4.0759945 -1103.197
+88419.25826362474 4.0759945 -1103.1182
+88420.25826367503 4.0759554 -1103.1774
+88421.25826372532 4.0759554 -1103.2168
+88422.25826377561 4.0760341 -1103.2168
+88423.2582638259 4.0759554 -1103.2366
+88424.2582638762 4.0759554 -1103.1774
+88425.25826392649 4.0759554 -1103.197
+88426.25826397678 4.0759945 -1103.2562
+88427.25826402707 4.0759945 -1103.2168
+88428.25826407736 4.0759554 -1103.2168
+88429.25826412765 4.0758767 -1103.197
+88430.25826417794 4.0758767 -1103.2168
+88431.25826422824 4.0759554 -1103.0984
+88432.25826427853 4.0759158 -1103.197
+88433.25826432882 4.0758371 -1103.197
+88434.25826437911 4.0759554 -1103.197
+88435.2582644294 4.0759158 -1103.2959
+88436.2582644797 4.0758371 -1103.2168
+88437.25826452998 4.0758371 -1103.197
+88438.25826458028 4.0759158 -1103.2959
+88439.25826463057 4.075798 -1103.3353
+88440.25826468086 4.0757585 -1103.1378
+88441.25826473115 4.075798 -1103.1774
+88442.25826478144 4.075798 -1103.3156
+88443.25826483173 4.0758767 -1103.2761
+88444.25826488202 4.0759158 -1103.2562
+88445.25826493232 4.0758371 -1103.197
+88446.2582649826 4.0757585 -1103.2562
+88447.2582650329 4.0757585 -1103.197
+88448.25826508319 4.0758371 -1103.197
+88449.25826513348 4.0758767 -1103.1576
+88450.25826518377 4.0758371 -1103.1774
+88451.25826523406 4.075798 -1103.1576
+88452.25826528436 4.0756798 -1103.197
+88453.25826533465 4.0758371 -1103.2366
+88454.25826538494 4.0758767 -1103.2168
+88455.25826543523 4.0757194 -1103.1774
+88456.25826548552 4.0757585 -1103.1378
+88457.25826553581 4.075798 -1103.1774
+88458.2582655861 4.0757585 -1103.2366
+88459.2582656364 4.075798 -1103.2366
+88460.25826568669 4.0757585 -1103.2168
+88461.25826573698 4.0756402 -1103.2168
+88462.25826578727 4.0757585 -1103.0984
+88463.25826583756 4.0757194 -1103.197
+88464.25826588785 4.0757194 -1103.2168
+88465.25826593814 4.0757585 -1103.1774
+88466.25826598844 4.0756798 -1103.2366
+88467.25826603873 4.0757585 -1103.2168
+88468.25826608902 4.0756011 -1103.1576
+88469.25826613931 4.0756402 -1103.3156
+88470.2582661896 4.0756402 -1103.2761
+88471.25826623989 4.0757585 -1103.1576
+88472.25826629018 4.0756402 -1103.1774
+88473.25826634048 4.0756011 -1103.2168
+88474.25826639077 4.0756402 -1103.2366
+88475.25826644106 4.0756011 -1103.2959
+88476.25826649135 4.0757194 -1103.1378
+88477.25826654164 4.0756011 -1103.2366
+88478.25826659193 4.0756402 -1103.2366
+88479.25826664222 4.0756402 -1103.197
+88480.25826669252 4.0756011 -1103.2168
+88481.2582667428 4.0756011 -1103.197
+88482.2582667931 4.0755615 -1103.2562
+88483.25826684339 4.0755224 -1103.2761
+88484.25826689368 4.0756402 -1103.2168
+88485.25826694397 4.0756011 -1103.1774
+88486.25826699426 4.0755615 -1103.2168
+88487.25826704456 4.0754828 -1103.3156
+88488.25826709485 4.0755224 -1103.197
+88489.25826714514 4.0755615 -1103.2761
+88490.25826719543 4.0755224 -1103.2168
+88491.25826724572 4.0755615 -1103.2168
+88492.25826729601 4.0755224 -1103.2562
+88493.2582673463 4.0755224 -1103.2959
+88494.2582673966 4.0755224 -1103.2366
+88495.25826744689 4.0754042 -1103.2168
+88496.25826749718 4.0755224 -1103.1774
+88497.25826754747 4.0754437 -1103.2562
+88498.25826759776 4.0754828 -1103.2366
+88499.25826764805 4.0755224 -1103.2168
+88500.25826769834 4.0755224 -1103.2168
+88501.25826774864 4.0754828 -1103.2168
+88502.25826779893 4.0754828 -1103.2959
+88503.25826784922 4.0755224 -1103.1576
+88504.25826789951 4.0754437 -1103.1378
+88505.2582679498 4.0754828 -1103.1576
+88506.25826800009 4.0754437 -1103.2366
+88507.25826805038 4.0753255 -1103.2168
+88508.25826810068 4.0754437 -1103.1774
+88509.25826815097 4.0754828 -1103.1774
+88510.25826820126 4.0754828 -1103.197
+88511.25826825155 4.0755224 -1103.2168
+88512.25826830184 4.0754042 -1103.1774
+88513.25826835213 4.0753646 -1103.197
+88514.25826840242 4.0754042 -1103.2366
+88515.25826845272 4.0755224 -1103.2562
+88516.258268503 4.0754042 -1103.197
+88517.2582685533 4.0753255 -1103.2959
+88518.25826860359 4.0755615 -1103.2168
+88519.25826865388 4.0753646 -1103.1378
+88520.25826870417 4.0753255 -1103.1576
+88521.25826875446 4.0752859 -1103.197
+88522.25826880476 4.0753646 -1103.197
+88523.25826885505 4.0754437 -1103.2168
+88524.25826890534 4.0754437 -1103.1576
+88525.25826895563 4.0753255 -1103.1378
+88526.25826900592 4.0754042 -1103.197
+88527.25826905621 4.0753646 -1103.2562
+88528.2582691065 4.0754828 -1103.2366
+88529.2582691568 4.0753255 -1103.1774
+88530.25826920709 4.0754042 -1103.2168
+88531.25826925738 4.0753255 -1103.2168
+88532.25826930767 4.0752072 -1103.2168
+88533.25826935796 4.0753255 -1103.197
+88534.25826940825 4.0752859 -1103.2562
+88535.25826945854 4.0753646 -1103.2366
+88536.25826950883 4.0753255 -1103.2366
+88537.25826955913 4.0752859 -1103.197
+88538.25826960942 4.0752468 -1103.1576
+88539.25826965971 4.0752859 -1103.2562
+88540.25826971 4.0753255 -1103.2366
+88541.25826976029 4.0752859 -1103.1378
+88542.25826981058 4.0752859 -1103.2562
+88543.25826986087 4.0751681 -1103.1774
+88544.25826991117 4.0752859 -1103.197
+88545.25826996146 4.0751681 -1103.197
+88546.25827001175 4.0752859 -1103.2562
+88547.25827006204 4.0752072 -1103.2366
+88548.25827011233 4.0752859 -1103.1774
+88549.25827016262 4.0751681 -1103.197
+88550.25827021291 4.0751681 -1103.1774
+88551.2582702632 4.0751681 -1103.1774
+88552.2582703135 4.0751681 -1103.2168
+88553.25827036379 4.0751681 -1103.2562
+88554.25827041408 4.0752072 -1103.1182
+88555.25827046437 4.0750895 -1103.1576
+88556.25827051466 4.0752072 -1103.2761
+88557.25827056495 4.0751286 -1103.2366
+88558.25827061525 4.0751681 -1103.2761
+88559.25827066554 4.0750499 -1103.2562
+88560.25827071583 4.0751681 -1103.1774
+88561.25827076612 4.0751286 -1103.1774
+88562.25827081641 4.0750895 -1103.2168
+88563.2582708667 4.0750895 -1103.2168
+88564.258270917 4.0751286 -1103.2168
+88565.25827096729 4.0750103 -1103.2168
+88566.25827101758 4.0751681 -1103.1774
+88567.25827106787 4.0750895 -1103.1378
+88568.25827111816 4.0750103 -1103.2562
+88569.25827116845 4.0751286 -1103.1182
+88570.25827121874 4.0750895 -1103.1774
+88571.25827126903 4.0751286 -1103.2366
+88572.25827131933 4.0750499 -1103.3156
+88573.25827136962 4.0750895 -1103.2761
+88574.25827141991 4.0750499 -1103.197
+88575.2582714702 4.0750499 -1103.2168
+88576.25827152049 4.0750103 -1103.2366
+88577.25827157078 4.0751681 -1103.2761
+88578.25827162107 4.0750499 -1103.2761
+88579.25827167137 4.0749316 -1103.1774
+88580.25827172166 4.0750499 -1103.1774
+88581.25827177195 4.0750103 -1103.1576
+88582.25827182224 4.0749316 -1103.2761
+88583.25827187253 4.0749712 -1103.2168
+88584.25827192282 4.0750499 -1103.2366
+88585.25827197311 4.0750103 -1103.2761
+88586.2582720234 4.0749316 -1103.2761
+88587.2582720737 4.0749712 -1103.2562
+88588.25827212399 4.0749712 -1103.1182
+88589.25827217428 4.0749712 -1103.2168
+88590.25827222457 4.0750103 -1103.2761
+88591.25827227486 4.0749316 -1103.1576
+88592.25827232515 4.0749712 -1103.2562
+88593.25827237545 4.0748925 -1103.2761
+88594.25827242574 4.0749316 -1103.197
+88595.25827247603 4.0749712 -1103.197
+88596.25827252632 4.0749712 -1103.3156
+88597.25827257661 4.0749712 -1103.2168
+88598.2582726269 4.0748925 -1103.2562
+88599.2582726772 4.0749316 -1103.2366
+88600.25827272749 4.0748925 -1103.2168
+88601.25827277778 4.0748925 -1103.2366
+88602.25827282807 4.0750499 -1103.2562
+88603.25827287836 4.0748138 -1103.2761
+88604.25827292865 4.0748529 -1103.1774
+88605.25827297894 4.0749316 -1103.2366
+88606.25827302923 4.0749316 -1103.2761
+88607.25827307953 4.0749316 -1103.2168
+88608.25827312982 4.0747743 -1103.2562
+88609.25827318011 4.0749316 -1103.2168
+88610.2582732304 4.0748925 -1103.0984
+88611.25827328069 4.0748529 -1103.2168
+88612.25827333098 4.0748529 -1103.1774
+88613.25827338127 4.0748138 -1103.1378
+88614.25827343157 4.0746169 -1103.0984
+88615.25827348186 4.0748138 -1103.2168
+88616.25827353215 4.0748529 -1103.1576
+88617.25827358244 4.0748925 -1103.2366
+88618.25827363273 4.0747743 -1103.2366
+88619.25827368302 4.0748138 -1103.1774
+88620.25827373331 4.0748529 -1103.2562
+88621.2582737836 4.0749712 -1103.2562
+88622.2582738339 4.0746956 -1103.2366
+88623.25827388419 4.0748138 -1103.197
+88624.25827393448 4.0746956 -1103.2366
+88625.25827398477 4.0747743 -1103.1576
+88626.25827403506 4.0747347 -1103.2562
+88627.25827408535 4.0747743 -1103.197
+88628.25827413565 4.0747347 -1103.2168
+88629.25827418594 4.0747347 -1103.1576
+88630.25827423623 4.0747347 -1103.197
+88631.25827428652 4.0747347 -1103.2168
+88632.25827433681 4.0746956 -1103.2366
+88633.2582743871 4.074656 -1103.1774
+88634.2582744374 4.0746956 -1103.2761
+88635.25827448769 4.0747347 -1103.2366
+88636.25827453798 4.0746956 -1103.2761
+88637.25827458827 4.0746169 -1103.2366
+88638.25827463856 4.0746956 -1103.2562
+88639.25827468885 4.074656 -1103.1378
+88640.25827473914 4.074656 -1103.1774
+88641.25827478943 4.074656 -1103.2562
+88642.25827483973 4.0746169 -1103.2562
+88643.25827489002 4.074656 -1103.1182
+88644.25827494031 4.0746169 -1103.1774
+88645.2582749906 4.0747347 -1103.1774
+88646.25827504089 4.0745773 -1103.2562
+88647.25827509118 4.074656 -1103.2761
+88648.25827514147 4.0746956 -1103.2959
+88649.25827519177 4.0745382 -1103.2168
+88650.25827524206 4.0746169 -1103.2562
+88651.25827529235 4.0746169 -1103.3156
+88652.25827534264 4.0746169 -1103.2562
+88653.25827539293 4.0746169 -1103.2761
+88654.25827544322 4.0744987 -1103.1774
+88655.25827549351 4.0745382 -1103.1576
+88656.2582755438 4.0746169 -1103.2562
+88657.2582755941 4.0745773 -1103.1774
+88658.25827564439 4.0745382 -1103.2366
+88659.25827569468 4.0745382 -1103.1774
+88660.25827574497 4.0745773 -1103.2562
+88661.25827579526 4.0746169 -1103.2168
+88662.25827584555 4.0745382 -1103.197
+88663.25827589585 4.0744596 -1103.2562
+88664.25827594614 4.0745382 -1103.197
+88665.25827599643 4.07442 -1103.1378
+88666.25827604672 4.0746169 -1103.2168
+88667.25827609701 4.0744596 -1103.2366
+88668.2582761473 4.0744987 -1103.197
+88669.2582761976 4.0745382 -1103.2959
+88670.25827624789 4.0744987 -1103.2168
+88671.25827629818 4.07442 -1103.1774
+88672.25827634847 4.0744987 -1103.2168
+88673.25827639876 4.0745773 -1103.2366
+88674.25827644905 4.0744987 -1103.197
+88675.25827649934 4.0743804 -1103.1774
+88676.25827654963 4.07442 -1103.2959
+88677.25827659993 4.07442 -1103.2366
+88678.25827665022 4.07442 -1103.2366
+88679.25827670051 4.0743804 -1103.0984
+88680.2582767508 4.0744596 -1103.2562
+88681.25827680109 4.0744987 -1103.1576
+88682.25827685138 4.0743413 -1103.2562
+88683.25827690167 4.0744987 -1103.197
+88684.25827695196 4.0744596 -1103.197
+88685.25827700226 4.0742626 -1103.2366
+88686.25827705255 4.0743413 -1103.1576
+88687.25827710284 4.07442 -1103.2366
+88688.25827715313 4.07442 -1103.2168
+88689.25827720342 4.0743017 -1103.3156
+88690.25827725371 4.0743017 -1103.197
+88691.258277304 4.0743413 -1103.2562
+88692.2582773543 4.0741839 -1103.197
+88693.25827740459 4.0743804 -1103.1774
+88694.25827745488 4.0743804 -1103.2366
+88695.25827750517 4.0743413 -1103.2562
+88696.25827755546 4.0743017 -1103.2366
+88697.25827760575 4.0741839 -1103.2959
+88698.25827765604 4.0742626 -1103.1774
+88699.25827770634 4.0743413 -1103.2168
+88700.25827775663 4.0742626 -1103.2366
+88701.25827780692 4.0743413 -1103.2366
+88702.25827785721 4.0743413 -1103.1774
+88703.2582779075 4.0743017 -1103.197
+88704.2582779578 4.074223 -1103.2562
+88705.25827800808 4.0743017 -1103.2168
+88706.25827805838 4.0743017 -1103.2562
+88707.25827810867 4.0742626 -1103.197
+88708.25827815896 4.074223 -1103.197
+88709.25827820925 4.074223 -1103.2959
+88710.25827825954 4.0741444 -1103.1576
+88711.25827830983 4.074223 -1103.2761
+88712.25827836012 4.0742626 -1103.197
+88713.25827841042 4.0741444 -1103.2366
+88714.25827846071 4.074223 -1103.2168
+88715.258278511 4.0743017 -1103.2366
+88716.25827856129 4.074223 -1103.1576
+88717.25827861158 4.0741444 -1103.1182
+88718.25827866187 4.074223 -1103.197
+88719.25827871216 4.0741839 -1103.1378
+88720.25827876246 4.0742626 -1103.197
+88721.25827881275 4.0741444 -1103.2168
+88722.25827886304 4.0740657 -1103.2366
+88723.25827891333 4.0741444 -1103.1774
+88724.25827896362 4.0740657 -1103.2562
+88725.25827901391 4.073987 -1103.197
+88726.2582790642 4.0740261 -1103.2366
+88727.2582791145 4.0741444 -1103.2366
+88728.25827916479 4.074223 -1103.2168
+88729.25827921508 4.074223 -1103.2366
+88730.25827926537 4.0741048 -1103.2562
+88731.25827931566 4.0741048 -1103.2562
+88732.25827936595 4.0740261 -1103.1774
+88733.25827941624 4.0740657 -1103.2168
+88734.25827946654 4.0740261 -1103.2366
+88735.25827951683 4.0741048 -1103.1576
+88736.25827956712 4.0741048 -1103.2562
+88737.25827961741 4.0740261 -1103.197
+88738.2582796677 4.0740657 -1103.2168
+88739.258279718 4.0741048 -1103.2168
+88740.25827976828 4.0740261 -1103.2562
+88741.25827981858 4.0741048 -1103.197
+88742.25827986887 4.0740261 -1103.1182
+88743.25827991916 4.073987 -1103.0785
+88744.25827996945 4.0740657 -1103.197
+88745.25828001974 4.0741048 -1103.1774
+88746.25828007003 4.0740657 -1103.197
+88747.25828012032 4.073987 -1103.1182
+88748.25828017062 4.0740261 -1103.2562
+88749.2582802209 4.073987 -1103.2366
+88750.2582802712 4.0740657 -1103.1774
+88751.25828032149 4.0739474 -1103.2761
+88752.25828037178 4.0739474 -1103.2761
+88753.25828042207 4.073987 -1103.2366
+88754.25828047236 4.073987 -1103.2366
+88755.25828052266 4.0739083 -1103.2366
+88756.25828057295 4.073987 -1103.2168
+88757.25828062324 4.0739083 -1103.2168
+88758.25828067353 4.0738292 -1103.2366
+88759.25828072382 4.0739474 -1103.2366
+88760.25828077411 4.073987 -1103.2562
+88761.2582808244 4.073987 -1103.2168
+88762.2582808747 4.0738688 -1103.1576
+88763.25828092499 4.0739083 -1103.2761
+88764.25828097528 4.0738688 -1103.2366
+88765.25828102557 4.0739474 -1103.1774
+88766.25828107586 4.0738688 -1103.1774
+88767.25828112615 4.0738292 -1103.3551
+88768.25828117644 4.0738688 -1103.197
+88769.25828122674 4.0739083 -1103.1774
+88770.25828127703 4.0737505 -1103.1774
+88771.25828132732 4.0739474 -1103.2761
+88772.25828137761 4.0738688 -1103.197
+88773.2582814279 4.0738292 -1103.2959
+88774.25828147819 4.0739083 -1103.1774
+88775.25828152848 4.0737505 -1103.2168
+88776.25828157878 4.0739083 -1103.1774
+88777.25828162907 4.0738292 -1103.2761
+88778.25828167936 4.0737901 -1103.2366
+88779.25828172965 4.0737114 -1103.2761
+88780.25828177994 4.0737505 -1103.2168
+88781.25828183023 4.0737901 -1103.1774
+88782.25828188052 4.0737901 -1103.1576
+88783.25828193082 4.0737505 -1103.3551
+88784.2582819811 4.0737505 -1103.1576
+88785.2582820314 4.0737114 -1103.2168
+88786.25828208169 4.0737505 -1103.1774
+88787.25828213198 4.0737505 -1103.197
+88788.25828218227 4.0737505 -1103.1378
+88789.25828223256 4.0738688 -1103.2562
+88790.25828228286 4.0737505 -1103.2562
+88791.25828233315 4.0737505 -1103.2168
+88792.25828238344 4.0737114 -1103.1576
+88793.25828243373 4.0737114 -1103.2562
+88794.25828248402 4.0736327 -1103.2959
+88795.25828253431 4.0735931 -1103.1576
+88796.2582825846 4.0737114 -1103.2562
+88797.2582826349 4.0736718 -1103.1774
+88798.25828268519 4.0737505 -1103.2562
+88799.25828273548 4.0737114 -1103.1774
+88800.25828278577 4.0737114 -1103.2562
+88801.25828283606 4.0737505 -1103.2366
+88802.25828288635 4.0737114 -1103.2168
+88803.25828293664 4.0736718 -1103.1774
+88804.25828298694 4.0737114 -1103.2168
+88805.25828303723 4.0737114 -1103.2761
+88806.25828308752 4.0736718 -1103.1182
+88807.25828313781 4.0736327 -1103.2168
+88808.2582831881 4.0737114 -1103.2366
+88809.25828323839 4.0736327 -1103.2562
+88810.25828328868 4.0737114 -1103.2168
+88811.25828333898 4.0737114 -1103.1774
+88812.25828338927 4.0735931 -1103.2761
+88813.25828343956 4.0735931 -1103.197
+88814.25828348985 4.0735145 -1103.2761
+88815.25828354014 4.073554 -1103.2168
+88816.25828359043 4.073554 -1103.2168
+88817.25828364072 4.073554 -1103.2761
+88818.25828369102 4.0734749 -1103.1774
+88819.2582837413 4.0734749 -1103.1774
+88820.2582837916 4.0736327 -1103.2168
+88821.25828384189 4.073554 -1103.2168
+88822.25828389218 4.0734749 -1103.1774
+88823.25828394247 4.0734749 -1103.3156
+88824.25828399276 4.073554 -1103.197
+88825.25828404306 4.0735931 -1103.1774
+88826.25828409335 4.0735145 -1103.2761
+88827.25828414364 4.0733571 -1103.197
+88828.25828419393 4.0734358 -1103.2366
+88829.25828424422 4.0735145 -1103.1182
+88830.25828429451 4.0735145 -1103.2366
+88831.2582843448 4.0735145 -1103.2562
+88832.2582843951 4.0735145 -1103.2366
+88833.25828444539 4.0734358 -1103.2562
+88834.25828449568 4.0735145 -1103.2562
+88835.25828454597 4.0734749 -1103.1774
+88836.25828459626 4.0735145 -1103.2366
+88837.25828464655 4.0733962 -1103.1576
+88838.25828469684 4.0734749 -1103.1378
+88839.25828474713 4.0735145 -1103.2366
+88840.25828479743 4.073554 -1103.1182
+88841.25828484772 4.0733962 -1103.1774
+88842.25828489801 4.0734749 -1103.197
+88843.2582849483 4.0734749 -1103.1576
+88844.25828499859 4.0733571 -1103.2562
+88845.25828504888 4.0733571 -1103.2959
+88846.25828509917 4.0733962 -1103.197
+88847.25828514947 4.0733962 -1103.2168
+88848.25828519976 4.0735145 -1103.1576
+88849.25828525005 4.0733962 -1103.2168
+88850.25828530034 4.0734749 -1103.197
+88851.25828535063 4.0732388 -1103.1774
+88852.25828540092 4.0732784 -1103.2562
+88853.25828545121 4.0733571 -1103.2366
+88854.2582855015 4.0733175 -1103.1378
+88855.2582855518 4.0734358 -1103.2168
+88856.25828560209 4.0732784 -1103.2168
+88857.25828565238 4.0733175 -1103.2562
+88858.25828570267 4.0733571 -1103.1378
+88859.25828575296 4.0732784 -1103.197
+88860.25828580325 4.0733571 -1103.2366
+88861.25828585355 4.0733175 -1103.2168
+88862.25828590384 4.0731993 -1103.2562
+88863.25828595413 4.0734358 -1103.2562
+88864.25828600442 4.0733175 -1103.2366
+88865.25828605471 4.0733175 -1103.2168
+88866.258286105 4.0733571 -1103.3353
+88867.2582861553 4.0731602 -1103.2562
+88868.25828620559 4.0732388 -1103.1576
+88869.25828625588 4.0733175 -1103.197
+88870.25828630617 4.0732784 -1103.2168
+88871.25828635646 4.0732388 -1103.2562
+88872.25828640675 4.0733175 -1103.1576
+88873.25828645704 4.0732388 -1103.1576
+88874.25828650733 4.0731993 -1103.2366
+88875.25828655763 4.0733175 -1103.2168
+88876.25828660792 4.0733571 -1103.3156
+88877.25828665821 4.0732784 -1103.2761
+88878.2582867085 4.0732784 -1103.197
+88879.25828675879 4.0732784 -1103.2562
+88880.25828680908 4.0730815 -1103.1774
+88881.25828685937 4.0731993 -1103.1774
+88882.25828690967 4.0731993 -1103.2366
+88883.25828695996 4.0731602 -1103.1576
+88884.25828701025 4.0731206 -1103.2959
+88885.25828706054 4.0731993 -1103.2959
+88886.25828711083 4.0731602 -1103.2959
+88887.25828716112 4.0730419 -1103.2168
+88888.25828721141 4.0732388 -1103.3156
+88889.2582872617 4.0731206 -1103.1378
+88890.258287312 4.0731206 -1103.2562
+88891.25828736229 4.0730419 -1103.1182
+88892.25828741258 4.0731206 -1103.2168
+88893.25828746287 4.0731206 -1103.1378
+88894.25828751316 4.0731206 -1103.2168
+88895.25828756345 4.0731602 -1103.1774
+88896.25828761375 4.0731206 -1103.197
+88897.25828766404 4.0731206 -1103.2562
+88898.25828771433 4.0731602 -1103.2366
+88899.25828776462 4.0731602 -1103.1576
+88900.25828781491 4.0730815 -1103.197
+88901.2582878652 4.0730419 -1103.1378
+88902.2582879155 4.0730028 -1103.1378
+88903.25828796579 4.0731206 -1103.2168
+88904.25828801608 4.0730419 -1103.1774
+88905.25828806637 4.0730419 -1103.2168
+88906.25828811666 4.0730419 -1103.1774
+88907.25828816695 4.0730419 -1103.197
+88908.25828821724 4.0730028 -1103.1774
+88909.25828826753 4.0730815 -1103.1774
+88910.25828831783 4.0730028 -1103.2761
+88911.25828836812 4.0729632 -1103.3156
+88912.25828841841 4.0729241 -1103.2562
+88913.2582884687 4.0731206 -1103.2168
+88914.25828851899 4.0730419 -1103.2168
+88915.25828856928 4.0729632 -1103.1378
+88916.25828861957 4.0730419 -1103.2562
+88917.25828866987 4.0729632 -1103.197
+88918.25828872016 4.0729632 -1103.1774
+88919.25828877045 4.0728846 -1103.2366
+88920.25828882074 4.0730028 -1103.2168
+88921.25828887103 4.0729241 -1103.2366
+88922.25828892132 4.0730419 -1103.2562
+88923.25828897161 4.0729241 -1103.1576
+88924.2582890219 4.0728846 -1103.2168
+88925.2582890722 4.0730815 -1103.2168
+88926.25828912249 4.0729241 -1103.1576
+88927.25828917278 4.072845 -1103.2366
+88928.25828922307 4.0730419 -1103.2366
+88929.25828927336 4.0729241 -1103.2168
+88930.25828932365 4.072845 -1103.2761
+88931.25828937395 4.0729632 -1103.197
+88932.25828942424 4.0729632 -1103.2761
+88933.25828947453 4.0729632 -1103.1576
+88934.25828952482 4.072845 -1103.2562
+88935.25828957511 4.0729241 -1103.3353
+88936.2582896254 4.0727272 -1103.2366
+88937.2582896757 4.072845 -1103.2168
+88938.25828972599 4.0729241 -1103.1774
+88939.25828977628 4.0728846 -1103.197
+88940.25828982657 4.0728059 -1103.197
+88941.25828987686 4.0728059 -1103.3156
+88942.25828992715 4.0729241 -1103.2562
+88943.25828997744 4.0729241 -1103.2168
+88944.25829002773 4.0728059 -1103.197
+88945.25829007803 4.0727663 -1103.2562
+88946.25829012832 4.0729241 -1103.197
+88947.25829017861 4.0727272 -1103.197
+88948.2582902289 4.0728846 -1103.1774
+88949.25829027919 4.0727663 -1103.2562
+88950.25829032948 4.072845 -1103.3156
+88951.25829037977 4.0727663 -1103.2761
+88952.25829043007 4.0727663 -1103.1774
+88953.25829048036 4.0728059 -1103.1378
+88954.25829053065 4.0728059 -1103.197
+88955.25829058094 4.072845 -1103.2562
+88956.25829063123 4.0728059 -1103.2366
+88957.25829068152 4.0727663 -1103.197
+88958.25829073181 4.0728059 -1103.2366
+88959.2582907821 4.0727272 -1103.2168
+88960.2582908324 4.0727272 -1103.2366
+88961.25829088269 4.0727663 -1103.2562
+88962.25829093298 4.0726485 -1103.2168
+88963.25829098327 4.0726876 -1103.197
+88964.25829103356 4.0726876 -1103.2366
+88965.25829108385 4.0726876 -1103.2562
+88966.25829113415 4.0727272 -1103.3353
+88967.25829118444 4.0726876 -1103.2168
+88968.25829123473 4.0726089 -1103.2761
+88969.25829128502 4.0726485 -1103.2959
+88970.25829133531 4.0726876 -1103.2168
+88971.2582913856 4.0727663 -1103.2366
+88972.2582914359 4.0726876 -1103.2761
+88973.25829148619 4.0726485 -1103.197
+88974.25829153648 4.0726876 -1103.1182
+88975.25829158677 4.0726485 -1103.2562
+88976.25829163706 4.0726485 -1103.2562
+88977.25829168735 4.0726485 -1103.1576
+88978.25829173764 4.0725694 -1103.2562
+88979.25829178793 4.0726485 -1103.1378
+88980.25829183822 4.0725303 -1103.0984
+88981.25829188852 4.0726485 -1103.2562
+88982.25829193881 4.0725694 -1103.2562
+88983.2582919891 4.0726485 -1103.2366
+88984.25829203939 4.0726089 -1103.2168
+88985.25829208968 4.0726485 -1103.2562
+88986.25829213997 4.0726089 -1103.2562
+88987.25829219026 4.0724907 -1103.1774
+88988.25829224056 4.0726089 -1103.2959
+88989.25829229085 4.0726089 -1103.1576
+88990.25829234114 4.0725694 -1103.197
+88991.25829239143 4.0725694 -1103.197
+88992.25829244172 4.0724516 -1103.2562
+88993.25829249201 4.0725303 -1103.1378
+88994.2582925423 4.0724907 -1103.1182
+88995.2582925926 4.072412 -1103.1774
+88996.25829264289 4.0725303 -1103.1576
+88997.25829269318 4.0726089 -1103.1774
+88998.25829274347 4.0725303 -1103.1576
+88999.25829279376 4.0725303 -1103.2168
+89000.25829284405 4.0724516 -1103.1378
+89001.25829289434 4.0725303 -1103.2366
+89002.25829294464 4.072412 -1103.2562
+89003.25829299493 4.0723729 -1103.2562
+89004.25829304522 4.0723333 -1103.2366
+89005.25829309551 4.072412 -1103.2168
+89006.2582931458 4.0724516 -1103.197
+89007.2582931961 4.0725303 -1103.197
+89008.25829324638 4.0724907 -1103.197
+89009.25829329668 4.0724907 -1103.2168
+89010.25829334697 4.0723729 -1103.2366
+89011.25829339726 4.0723333 -1103.1378
+89012.25829344755 4.0723333 -1103.197
+89013.25829349784 4.0725303 -1103.2168
+89014.25829354813 4.0723729 -1103.2168
+89015.25829359842 4.0724907 -1103.197
+89016.25829364872 4.072412 -1103.2366
+89017.25829369901 4.0722938 -1103.197
+89018.2582937493 4.0723729 -1103.2168
+89019.25829379959 4.072412 -1103.197
+89020.25829384988 4.0723333 -1103.2366
+89021.25829390017 4.072412 -1103.197
+89022.25829395046 4.0723729 -1103.2366
+89023.25829400076 4.0723729 -1103.2761
+89024.25829405105 4.0723729 -1103.197
+89025.25829410134 4.072412 -1103.1576
+89026.25829415163 4.0722938 -1103.1774
+89027.25829420192 4.0724516 -1103.0984
+89028.25829425221 4.0722547 -1103.197
+89029.2582943025 4.072176 -1103.2366
+89030.2582943528 4.0723333 -1103.2562
+89031.25829440309 4.0722938 -1103.1378
+89032.25829445338 4.0723333 -1103.1182
+89033.25829450367 4.0722547 -1103.2562
+89034.25829455396 4.0722547 -1103.1774
+89035.25829460425 4.0723333 -1103.197
+89036.25829465454 4.0722938 -1103.197
+89037.25829470484 4.0722151 -1103.2366
+89038.25829475513 4.0722938 -1103.1576
+89039.25829480542 4.0722151 -1103.197
+89040.25829485571 4.0722547 -1103.2366
+89041.258294906 4.0722547 -1103.1774
+89042.2582949563 4.0722151 -1103.197
+89043.25829500658 4.0722938 -1103.197
+89044.25829505688 4.0722938 -1103.2959
+89045.25829510717 4.0722547 -1103.197
+89046.25829515746 4.0722547 -1103.197
+89047.25829520775 4.0722151 -1103.2366
+89048.25829525804 4.0722547 -1103.2366
+89049.25829530833 4.0722151 -1103.2959
+89050.25829535862 4.0722938 -1103.197
+89051.25829540892 4.0722151 -1103.2761
+89052.2582954592 4.0722547 -1103.2366
+89053.2582955095 4.0721364 -1103.2959
+89054.25829555979 4.0722547 -1103.3156
+89055.25829561008 4.0720577 -1103.1774
+89056.25829566037 4.072176 -1103.1576
+89057.25829571066 4.072176 -1103.1774
+89058.25829576096 4.0720973 -1103.3551
+89059.25829581125 4.0720973 -1103.2168
+89060.25829586154 4.0721364 -1103.197
+89061.25829591183 4.0721364 -1103.2366
+89062.25829596212 4.0722547 -1103.1576
+89063.25829601241 4.0721364 -1103.2366
+89064.2582960627 4.0720577 -1103.2562
+89065.258296113 4.0720577 -1103.2366
+89066.25829616329 4.0721364 -1103.2366
+89067.25829621358 4.0720973 -1103.2959
+89068.25829626387 4.0722151 -1103.3353
+89069.25829631416 4.0722151 -1103.2168
+89070.25829636445 4.0720973 -1103.1774
+89071.25829641474 4.0720973 -1103.2562
+89072.25829646504 4.0720973 -1103.1774
+89073.25829651533 4.0721364 -1103.2366
+89074.25829656562 4.0721364 -1103.197
+89075.25829661591 4.0721364 -1103.2366
+89076.2582966662 4.0720973 -1103.1576
+89077.25829671649 4.0720973 -1103.2168
+89078.25829676678 4.0720577 -1103.2168
+89079.25829681708 4.0721364 -1103.1774
+89080.25829686737 4.0720186 -1103.2562
+89081.25829691766 4.0720186 -1103.2959
+89082.25829696795 4.0720577 -1103.1182
+89083.25829701824 4.071979 -1103.2959
+89084.25829706853 4.0720186 -1103.1378
+89085.25829711882 4.0720186 -1103.197
+89086.25829716912 4.0720577 -1103.2761
+89087.2582972194 4.0719395 -1103.1774
+89088.2582972697 4.071979 -1103.1182
+89089.25829731999 4.0719395 -1103.1576
+89090.25829737028 4.0720577 -1103.197
+89091.25829742057 4.071979 -1103.1774
+89092.25829747086 4.071979 -1103.2562
+89093.25829752116 4.0719004 -1103.2168
+89094.25829757145 4.0719395 -1103.197
+89095.25829762174 4.0719004 -1103.1576
+89096.25829767203 4.0719004 -1103.197
+89097.25829772232 4.0719395 -1103.1774
+89098.25829777261 4.071979 -1103.197
+89099.2582978229 4.0719004 -1103.2168
+89100.2582978732 4.0718608 -1103.2562
+89101.25829792349 4.0718608 -1103.2366
+89102.25829797378 4.0718608 -1103.2366
+89103.25829802407 4.071979 -1103.2959
+89104.25829807436 4.0719004 -1103.2366
+89105.25829812465 4.0719004 -1103.197
+89106.25829817494 4.0719395 -1103.2168
+89107.25829822524 4.0719004 -1103.2959
+89108.25829827553 4.0718608 -1103.2168
+89109.25829832582 4.0718217 -1103.1378
+89110.25829837611 4.0718608 -1103.2562
+89111.2582984264 4.0718608 -1103.2562
+89112.25829847669 4.0718608 -1103.2959
+89113.25829852698 4.0717821 -1103.2562
+89114.25829857728 4.0719004 -1103.2366
+89115.25829862757 4.0719004 -1103.197
+89116.25829867786 4.0718608 -1103.1576
+89117.25829872815 4.071743 -1103.2168
+89118.25829877844 4.0718608 -1103.2959
+89119.25829882873 4.0718217 -1103.2168
+89120.25829887902 4.0718608 -1103.1774
+89121.25829892932 4.071743 -1103.1378
+89122.2582989796 4.0717821 -1103.2366
+89123.2582990299 4.0718217 -1103.1774
+89124.25829908019 4.071743 -1103.1576
+89125.25829913048 4.0718217 -1103.2761
+89126.25829918077 4.071743 -1103.2168
+89127.25829923106 4.0718608 -1103.2562
+89128.25829928135 4.0717821 -1103.2959
+89129.25829933165 4.0717821 -1103.2366
+89130.25829938194 4.0718217 -1103.2168
+89131.25829943223 4.071743 -1103.2761
+89132.25829948252 4.0717034 -1103.2562
+89133.25829953281 4.0719004 -1103.3353
+89134.2582995831 4.0717821 -1103.2366
+89135.2582996334 4.0716639 -1103.1774
+89136.25829968369 4.0716639 -1103.2366
+89137.25829973398 4.0716639 -1103.2761
+89138.25829978427 4.071743 -1103.2168
+89139.25829983456 4.0717034 -1103.2959
+89140.25829988485 4.071743 -1103.2168
+89141.25829993514 4.0716639 -1103.2761
+89142.25829998543 4.0717821 -1103.2168
+89143.25830003573 4.0715461 -1103.2366
+89144.25830008602 4.0716248 -1103.197
+89145.25830013631 4.0715852 -1103.2562
+89146.2583001866 4.0716639 -1103.2562
+89147.25830023689 4.0716248 -1103.1378
+89148.25830028718 4.0717034 -1103.2959
+89149.25830033747 4.0716248 -1103.1774
+89150.25830038777 4.0715852 -1103.1774
+89151.25830043806 4.0716248 -1103.2562
+89152.25830048835 4.0716248 -1103.2168
+89153.25830053864 4.0716248 -1103.2562
+89154.25830058893 4.0715461 -1103.2562
+89155.25830063922 4.0717034 -1103.197
+89156.25830068951 4.0716639 -1103.2168
+89157.2583007398 4.0716639 -1103.1576
+89158.2583007901 4.0717821 -1103.1378
+89159.25830084039 4.0715065 -1103.1182
+89160.25830089068 4.0715461 -1103.2761
+89161.25830094097 4.0715461 -1103.2168
+89162.25830099126 4.0716248 -1103.1576
+89163.25830104155 4.0715852 -1103.2562
+89164.25830109185 4.0716248 -1103.2168
+89165.25830114214 4.0715461 -1103.2366
+89166.25830119243 4.0715852 -1103.2959
+89167.25830124272 4.0716248 -1103.197
+89168.25830129301 4.0715065 -1103.1774
+89169.2583013433 4.0715852 -1103.2366
+89170.2583013936 4.0715065 -1103.1182
+89171.25830144389 4.0714674 -1103.2562
+89172.25830149418 4.0715852 -1103.1576
+89173.25830154447 4.0715852 -1103.1774
+89174.25830159476 4.0714674 -1103.3156
+89175.25830164505 4.0714674 -1103.2168
+89176.25830169534 4.0715461 -1103.2168
+89177.25830174563 4.0714674 -1103.197
+89178.25830179593 4.0714674 -1103.2168
+89179.25830184622 4.0714674 -1103.2168
+89180.25830189651 4.0715852 -1103.2168
+89181.2583019468 4.0714674 -1103.2562
+89182.25830199709 4.0714674 -1103.1576
+89183.25830204738 4.0714674 -1103.1774
+89184.25830209767 4.0714674 -1103.2366
+89185.25830214797 4.0715852 -1103.2562
+89186.25830219826 4.0716248 -1103.197
+89187.25830224855 4.0714674 -1103.2168
+89188.25830229884 4.0713887 -1103.2761
+89189.25830234913 4.0714278 -1103.1774
+89190.25830239942 4.0714674 -1103.2366
+89191.25830244971 4.0713491 -1103.2168
+89192.2583025 4.0713491 -1103.197
+89193.2583025503 4.0713887 -1103.0984
+89194.25830260059 4.0715065 -1103.2366
+89195.25830265088 4.0713096 -1103.1774
+89196.25830270117 4.0715065 -1103.2959
+89197.25830275146 4.0714278 -1103.2562
+89198.25830280175 4.0713887 -1103.3353
+89199.25830285205 4.0713096 -1103.2366
+89200.25830290234 4.0714674 -1103.2366
+89201.25830295263 4.0713096 -1103.2562
+89202.25830300292 4.0713096 -1103.2562
+89203.25830305321 4.0714278 -1103.2562
+89204.2583031035 4.0713491 -1103.2761
+89205.2583031538 4.0712705 -1103.197
+89206.25830320409 4.0713887 -1103.2562
+89207.25830325438 4.0713887 -1103.2761
+89208.25830330467 4.0712705 -1103.1774
+89209.25830335496 4.0713491 -1103.2366
+89210.25830340525 4.0713491 -1103.0984
+89211.25830345554 4.0712705 -1103.2168
+89212.25830350583 4.0713096 -1103.2366
+89213.25830355613 4.0712705 -1103.2562
+89214.25830360642 4.0712705 -1103.2366
+89215.25830365671 4.0712309 -1103.2168
+89216.258303707 4.0712705 -1103.2761
+89217.25830375729 4.0711918 -1103.197
+89218.25830380758 4.0711918 -1103.2168
+89219.25830385787 4.0713096 -1103.197
+89220.25830390817 4.0712705 -1103.2959
+89221.25830395846 4.0712309 -1103.2562
+89222.25830400875 4.0712309 -1103.197
+89223.25830405904 4.0712705 -1103.2366
+89224.25830410933 4.0711918 -1103.2366
+89225.25830415962 4.0711918 -1103.2168
+89226.25830420991 4.0711522 -1103.2959
+89227.2583042602 4.0712309 -1103.2168
+89228.2583043105 4.0712705 -1103.2761
+89229.25830436079 4.0711131 -1103.2562
+89230.25830441108 4.0711522 -1103.2366
+89231.25830446137 4.0711522 -1103.3353
+89232.25830451166 4.0711522 -1103.2761
+89233.25830456195 4.0711522 -1103.3156
+89234.25830461225 4.0711131 -1103.2366
+89235.25830466254 4.0711522 -1103.2168
+89236.25830471283 4.0711131 -1103.2959
+89237.25830476312 4.0711522 -1103.2366
+89238.25830481341 4.0711522 -1103.2168
+89239.2583048637 4.0711522 -1103.2761
+89240.258304914 4.0711131 -1103.2562
+89241.25830496429 4.0711131 -1103.197
+89242.25830501458 4.0711522 -1103.2366
+89243.25830506487 4.0711131 -1103.197
+89244.25830511516 4.0711522 -1103.2366
+89245.25830516545 4.0711918 -1103.2168
+89246.25830521574 4.0711131 -1103.2562
+89247.25830526603 4.0711131 -1103.2562
+89248.25830531633 4.0711131 -1103.2168
+89249.25830536662 4.0711131 -1103.1774
+89250.25830541691 4.0711131 -1103.197
+89251.2583054672 4.0710735 -1103.197
+89252.25830551749 4.0711131 -1103.2168
+89253.25830556778 4.071034 -1103.1378
+89254.25830561807 4.071034 -1103.197
+89255.25830566837 4.0710735 -1103.1576
+89256.25830571866 4.071034 -1103.2366
+89257.25830576895 4.0709949 -1103.2366
+89258.25830581924 4.0709949 -1103.2562
+89259.25830586953 4.071034 -1103.2168
+89260.25830591982 4.0710735 -1103.2366
+89261.25830597011 4.0710735 -1103.2168
+89262.2583060204 4.0709553 -1103.2761
+89263.2583060707 4.071034 -1103.3156
+89264.25830612099 4.0710735 -1103.3156
+89265.25830617128 4.0709553 -1103.2168
+89266.25830622157 4.071034 -1103.2366
+89267.25830627186 4.0710735 -1103.2562
+89268.25830632215 4.071034 -1103.2366
+89269.25830637245 4.0709949 -1103.1774
+89270.25830642274 4.0709949 -1103.2168
+89271.25830647303 4.0709162 -1103.2959
+89272.25830652332 4.0709553 -1103.2959
+89273.25830657361 4.0709949 -1103.2168
+89274.2583066239 4.0708766 -1103.2562
+89275.2583066742 4.0709553 -1103.1576
+89276.25830672449 4.0708766 -1103.2168
+89277.25830677478 4.0708766 -1103.1774
+89278.25830682507 4.0708375 -1103.2761
+89279.25830687536 4.0709553 -1103.2366
+89280.25830692565 4.0708766 -1103.2168
+89281.25830697594 4.0709162 -1103.1378
+89282.25830702623 4.0709162 -1103.2562
+89283.25830707652 4.0709162 -1103.197
+89284.25830712682 4.0708375 -1103.2562
+89285.25830717711 4.0707588 -1103.2761
+89286.2583072274 4.0709162 -1103.2562
+89287.25830727769 4.0708375 -1103.1774
+89288.25830732798 4.0708375 -1103.3156
+89289.25830737827 4.0707979 -1103.197
+89290.25830742856 4.0707979 -1103.1774
+89291.25830747886 4.0708766 -1103.2562
+89292.25830752915 4.0707588 -1103.2168
+89293.25830757944 4.0707979 -1103.2168
+89294.25830762973 4.0708766 -1103.2366
+89295.25830768002 4.0707979 -1103.2562
+89296.25830773031 4.0708766 -1103.1774
+89297.2583077806 4.0707979 -1103.2168
+89298.2583078309 4.0708375 -1103.2959
+89299.25830788119 4.0707588 -1103.2168
+89300.25830793148 4.0707588 -1103.2562
+89301.25830798177 4.0707192 -1103.2366
+89302.25830803206 4.0707979 -1103.2761
+89303.25830808235 4.0707192 -1103.2761
+89304.25830813264 4.0707192 -1103.197
+89305.25830818294 4.0707588 -1103.2366
+89306.25830823323 4.0709162 -1103.2168
+89307.25830828352 4.0707192 -1103.2562
+89308.25830833381 4.0706797 -1103.3156
+89309.2583083841 4.0707588 -1103.2168
+89310.2583084344 4.0706797 -1103.2562
+89311.25830848468 4.0706797 -1103.2168
+89312.25830853498 4.0707588 -1103.1774
+89313.25830858527 4.0707192 -1103.197
+89314.25830863556 4.0707192 -1103.2959
+89315.25830868585 4.0707192 -1103.2366
+89316.25830873614 4.0707192 -1103.2366
+89317.25830878643 4.0706797 -1103.2959
+89318.25830883672 4.0707192 -1103.1182
+89319.25830888702 4.0707192 -1103.197
+89320.25830893731 4.0706797 -1103.1378
+89321.2583089876 4.0705619 -1103.2761
+89322.25830903789 4.070601 -1103.1378
+89323.25830908818 4.0705223 -1103.3156
+89324.25830913847 4.0707192 -1103.2959
+89325.25830918876 4.070601 -1103.3551
+89326.25830923906 4.0706406 -1103.1774
+89327.25830928935 4.070601 -1103.2168
+89328.25830933964 4.070601 -1103.2366
+89329.25830938993 4.0706797 -1103.197
+89330.25830944022 4.070601 -1103.2761
+89331.25830949051 4.0705619 -1103.2366
+89332.2583095408 4.0705223 -1103.3353
+89333.2583095911 4.0705223 -1103.1378
+89334.25830964139 4.0706797 -1103.2761
+89335.25830969168 4.070601 -1103.2562
+89336.25830974197 4.0705619 -1103.2366
+89337.25830979226 4.0704832 -1103.2562
+89338.25830984255 4.0706797 -1103.2168
+89339.25830989284 4.0705619 -1103.2366
+89340.25830994314 4.0706406 -1103.2168
+89341.25830999343 4.0705223 -1103.2366
+89342.25831004372 4.0706406 -1103.1774
+89343.25831009401 4.0704832 -1103.1774
+89344.2583101443 4.0705619 -1103.2562
+89345.2583101946 4.0705619 -1103.2366
+89346.25831024488 4.0705619 -1103.2168
+89347.25831029518 4.0704436 -1103.1774
+89348.25831034547 4.0705223 -1103.2761
+89349.25831039576 4.0704436 -1103.1774
+89350.25831044605 4.0705223 -1103.2366
+89351.25831049634 4.0704436 -1103.197
+89352.25831054663 4.0705223 -1103.2959
+89353.25831059692 4.0704041 -1103.2761
+89354.25831064722 4.0704041 -1103.2168
+89355.2583106975 4.0704832 -1103.2959
+89356.2583107478 4.0704832 -1103.2168
+89357.25831079809 4.0704832 -1103.2562
+89358.25831084838 4.070365 -1103.2168
+89359.25831089867 4.0705223 -1103.2168
+89360.25831094896 4.0704041 -1103.2168
+89361.25831099926 4.070365 -1103.2366
+89362.25831104955 4.070365 -1103.3353
+89363.25831109984 4.0704436 -1103.1182
+89364.25831115013 4.070365 -1103.1774
+89365.25831120042 4.0703254 -1103.2562
+89366.25831125071 4.0704832 -1103.197
+89367.258311301 4.0704041 -1103.2761
+89368.2583113513 4.070365 -1103.197
+89369.25831140159 4.070365 -1103.1774
+89370.25831145188 4.0703254 -1103.2366
+89371.25831150217 4.0704436 -1103.2562
+89372.25831155246 4.0703254 -1103.2366
+89373.25831160275 4.070365 -1103.2366
+89374.25831165304 4.0703254 -1103.2366
+89375.25831170334 4.070365 -1103.2761
+89376.25831175363 4.0702863 -1103.1774
+89377.25831180392 4.0703254 -1103.3156
+89378.25831185421 4.070365 -1103.2366
+89379.2583119045 4.0702863 -1103.2366
+89380.25831195479 4.070365 -1103.1774
+89381.25831200508 4.0704832 -1103.2761
+89382.25831205538 4.070365 -1103.2366
+89383.25831210567 4.070365 -1103.2562
+89384.25831215596 4.070365 -1103.2366
+89385.25831220625 4.0702467 -1103.197
+89386.25831225654 4.0702863 -1103.2366
+89387.25831230683 4.0702863 -1103.1774
+89388.25831235712 4.0702863 -1103.197
+89389.25831240742 4.0702863 -1103.2959
+89390.2583124577 4.0702467 -1103.2366
+89391.258312508 4.0702863 -1103.1774
+89392.25831255829 4.0702076 -1103.2168
+89393.25831260858 4.0702467 -1103.2168
+89394.25831265887 4.0703254 -1103.1774
+89395.25831270916 4.0702863 -1103.2562
+89396.25831275946 4.0703254 -1103.197
+89397.25831280975 4.0702076 -1103.2562
+89398.25831286004 4.0702076 -1103.2168
+89399.25831291033 4.0702076 -1103.2761
+89400.25831296062 4.0701284 -1103.2562
+89401.25831301091 4.070168 -1103.2366
+89402.2583130612 4.070168 -1103.2366
+89403.2583131115 4.0702467 -1103.3156
+89404.25831316179 4.0702076 -1103.2562
+89405.25831321208 4.0702863 -1103.2562
+89406.25831326237 4.0701284 -1103.2366
+89407.25831331266 4.0700498 -1103.197
+89408.25831336295 4.0702076 -1103.2366
+89409.25831341324 4.070168 -1103.2562
+89410.25831346354 4.0701284 -1103.2168
+89411.25831351383 4.0700893 -1103.2168
+89412.25831356412 4.0702467 -1103.2366
+89413.25831361441 4.070168 -1103.2959
+89414.2583136647 4.0702467 -1103.3156
+89415.25831371499 4.070168 -1103.2562
+89416.25831376528 4.0700893 -1103.1576
+89417.25831381558 4.0701284 -1103.2562
+89418.25831386587 4.0701284 -1103.1378
+89419.25831391616 4.0700498 -1103.3353
+89420.25831396645 4.0700893 -1103.2562
+89421.25831401674 4.070168 -1103.197
+89422.25831406703 4.0702076 -1103.2761
+89423.25831411732 4.0700893 -1103.2959
+89424.25831416762 4.0700893 -1103.2366
+89425.2583142179 4.0700498 -1103.3353
+89426.2583142682 4.0700107 -1103.197
+89427.25831431849 4.0700893 -1103.2761
+89428.25831436878 4.0699711 -1103.197
+89429.25831441907 4.0701284 -1103.2366
+89430.25831446936 4.0700498 -1103.2959
+89431.25831451965 4.0700498 -1103.2562
+89432.25831456995 4.069932 -1103.2562
+89433.25831462024 4.0700107 -1103.2562
+89434.25831467053 4.0699711 -1103.2168
+89435.25831472082 4.0700893 -1103.2168
+89436.25831477111 4.0700498 -1103.2168
+89437.2583148214 4.0699711 -1103.3551
+89438.2583148717 4.0699711 -1103.2168
+89439.25831492199 4.0700107 -1103.2959
+89440.25831497228 4.0700498 -1103.2959
+89441.25831502257 4.0698533 -1103.2168
+89442.25831507286 4.0699711 -1103.2761
+89443.25831512315 4.0700107 -1103.2761
+89444.25831517344 4.0699711 -1103.1774
+89445.25831522373 4.0699711 -1103.2959
+89446.25831527403 4.0698924 -1103.197
+89447.25831532432 4.0698924 -1103.2366
+89448.25831537461 4.069932 -1103.2562
+89449.2583154249 4.0700107 -1103.2959
+89450.25831547519 4.069932 -1103.3156
+89451.25831552548 4.069932 -1103.1774
+89452.25831557577 4.0698533 -1103.3156
+89453.25831562607 4.0698924 -1103.2366
+89454.25831567636 4.0698924 -1103.2562
+89455.25831572665 4.069932 -1103.2168
+89456.25831577694 4.069932 -1103.2761
+89457.25831582723 4.0698924 -1103.2366
+89458.25831587752 4.0698924 -1103.2366
+89459.25831592781 4.0698924 -1103.2959
+89460.2583159781 4.069932 -1103.1774
+89461.2583160284 4.069932 -1103.2761
+89462.25831607869 4.0698533 -1103.2168
+89463.25831612898 4.0698924 -1103.2366
+89464.25831617927 4.0698924 -1103.197
+89465.25831622956 4.0698533 -1103.1576
+89466.25831627985 4.0698137 -1103.2366
+89467.25831633015 4.0698924 -1103.2168
+89468.25831638044 4.0698137 -1103.197
+89469.25831643073 4.0697742 -1103.2562
+89470.25831648102 4.0697351 -1103.2366
+89471.25831653131 4.0697351 -1103.2959
+89472.2583165816 4.0698533 -1103.2562
+89473.2583166319 4.0697742 -1103.2562
+89474.25831668219 4.0698533 -1103.2366
+89475.25831673248 4.0697742 -1103.3156
+89476.25831678277 4.0696955 -1103.2562
+89477.25831683306 4.0698137 -1103.2761
+89478.25831688335 4.0698533 -1103.197
+89479.25831693364 4.0698137 -1103.2168
+89480.25831698393 4.0696564 -1103.2761
+89481.25831703423 4.0697351 -1103.2761
+89482.25831708452 4.0697351 -1103.197
+89483.25831713481 4.0697742 -1103.2168
+89484.2583171851 4.0697742 -1103.1774
+89485.25831723539 4.0697742 -1103.2366
+89486.25831728568 4.0697351 -1103.2366
+89487.25831733597 4.0698533 -1103.197
+89488.25831738627 4.0696564 -1103.1774
+89489.25831743656 4.0696955 -1103.2959
+89490.25831748685 4.0695777 -1103.2168
+89491.25831753714 4.0697351 -1103.1576
+89492.25831758743 4.0696955 -1103.197
+89493.25831763772 4.0696955 -1103.1576
+89494.25831768801 4.0697351 -1103.2959
+89495.2583177383 4.0696564 -1103.197
+89496.2583177886 4.0696564 -1103.3156
+89497.25831783889 4.0696955 -1103.2562
+89498.25831788918 4.0697351 -1103.1576
+89499.25831793947 4.0696168 -1103.2959
+89500.25831798976 4.0696168 -1103.1774
+89501.25831804005 4.0695777 -1103.1774
+89502.25831809035 4.0696955 -1103.2562
+89503.25831814064 4.0695777 -1103.2562
+89504.25831819093 4.0696564 -1103.2959
+89505.25831824122 4.0696168 -1103.2366
+89506.25831829151 4.0697351 -1103.2562
+89507.2583183418 4.0697742 -1103.3749
+89508.2583183921 4.0695777 -1103.1774
+89509.25831844239 4.0696168 -1103.2761
+89510.25831849268 4.0695381 -1103.2366
+89511.25831854297 4.0695381 -1103.197
+89512.25831859326 4.0696955 -1103.1774
+89513.25831864355 4.0695381 -1103.1774
+89514.25831869384 4.0696168 -1103.1576
+89515.25831874413 4.0694985 -1103.2366
+89516.25831879443 4.0695777 -1103.2959
+89517.25831884472 4.0696168 -1103.2168
+89518.25831889501 4.0696168 -1103.197
+89519.2583189453 4.0694594 -1103.2168
+89520.25831899559 4.0696168 -1103.3353
+89521.25831904588 4.0694985 -1103.1182
+89522.25831909617 4.0695381 -1103.197
+89523.25831914647 4.0694985 -1103.2562
+89524.25831919676 4.0695381 -1103.1576
+89525.25831924705 4.0694985 -1103.2168
+89526.25831929734 4.0695381 -1103.2168
+89527.25831934763 4.0694985 -1103.1378
+89528.25831939792 4.0694594 -1103.2168
+89529.25831944821 4.0694985 -1103.2562
+89530.2583194985 4.0694985 -1103.2168
+89531.2583195488 4.0694594 -1103.2168
+89532.25831959909 4.0694199 -1103.1576
+89533.25831964938 4.0693412 -1103.2761
+89534.25831969967 4.0694594 -1103.197
+89535.25831974996 4.0693808 -1103.2366
+89536.25831980025 4.0693412 -1103.1182
+89537.25831985055 4.0695381 -1103.2168
+89538.25831990084 4.0694985 -1103.2168
+89539.25831995113 4.0694985 -1103.2168
+89540.25832000142 4.0694985 -1103.1378
+89541.25832005171 4.0694985 -1103.2761
+89542.258320102 4.0693808 -1103.2562
+89543.2583201523 4.0694199 -1103.2366
+89544.25832020259 4.0693808 -1103.3353
+89545.25832025288 4.0694985 -1103.2168
+89546.25832030317 4.0694594 -1103.2761
+89547.25832035346 4.0693412 -1103.2168
+89548.25832040375 4.0693808 -1103.2366
+89549.25832045404 4.0694199 -1103.2761
+89550.25832050433 4.0693412 -1103.2562
+89551.25832055463 4.0694199 -1103.2562
+89552.25832060492 4.0694199 -1103.2959
+89553.25832065521 4.0693808 -1103.1576
+89554.2583207055 4.0694594 -1103.1182
+89555.25832075579 4.0693808 -1103.2366
+89556.25832080608 4.0693808 -1103.1774
+89557.25832085637 4.0693021 -1103.1774
+89558.25832090667 4.0693808 -1103.2562
+89559.25832095696 4.0693412 -1103.1576
+89560.25832100725 4.0692625 -1103.197
+89561.25832105754 4.0693412 -1103.2168
+89562.25832110783 4.0694199 -1103.2168
+89563.25832115812 4.0693412 -1103.1774
+89564.25832120841 4.0693808 -1103.2366
+89565.2583212587 4.0693808 -1103.2366
+89566.258321309 4.0693808 -1103.2168
+89567.25832135929 4.0692234 -1103.3353
+89568.25832140958 4.0693808 -1103.197
+89569.25832145987 4.0691838 -1103.2761
+89570.25832151016 4.0693021 -1103.2562
+89571.25832156045 4.0693021 -1103.2366
+89572.25832161075 4.0693412 -1103.2168
+89573.25832166104 4.0693412 -1103.2168
+89574.25832171133 4.0692625 -1103.2562
+89575.25832176162 4.0692625 -1103.2168
+89576.25832181191 4.0691838 -1103.2366
+89577.2583218622 4.0691838 -1103.2366
+89578.2583219125 4.0693021 -1103.197
+89579.25832196278 4.0692625 -1103.2562
+89580.25832201308 4.0693021 -1103.3156
+89581.25832206337 4.0691838 -1103.2562
+89582.25832211366 4.0691838 -1103.2168
+89583.25832216395 4.0691838 -1103.2168
+89584.25832221424 4.0691442 -1103.3156
+89585.25832226453 4.0692234 -1103.2168
+89586.25832231482 4.0691838 -1103.2761
+89587.25832236512 4.0691442 -1103.2959
+89588.25832241541 4.0692625 -1103.2366
+89589.2583224657 4.0691442 -1103.2562
+89590.25832251599 4.0691051 -1103.2366
+89591.25832256628 4.0692234 -1103.1774
+89592.25832261657 4.0691442 -1103.2761
+89593.25832266686 4.0691838 -1103.1774
+89594.25832271716 4.0691442 -1103.2761
+89595.25832276745 4.0691838 -1103.2168
+89596.25832281774 4.0691442 -1103.2562
+89597.25832286803 4.0691051 -1103.2562
+89598.25832291832 4.0691051 -1103.2562
+89599.25832296861 4.0690656 -1103.2168
+89600.2583230189 4.0691442 -1103.2366
+89601.2583230692 4.0691442 -1103.2761
+89602.25832311949 4.0690656 -1103.2168
+89603.25832316978 4.0690265 -1103.2366
+89604.25832322007 4.0690656 -1103.2761
+89605.25832327036 4.0690656 -1103.2562
+89606.25832332065 4.0690656 -1103.2366
+89607.25832337094 4.0690656 -1103.2562
+89608.25832342124 4.0691051 -1103.197
+89609.25832347153 4.0690656 -1103.2959
+89610.25832352182 4.0691051 -1103.1774
+89611.25832357211 4.0691051 -1103.2168
+89612.2583236224 4.0689478 -1103.197
+89613.2583236727 4.0690265 -1103.2366
+89614.25832372298 4.0691051 -1103.2366
+89615.25832377328 4.0689869 -1103.1774
+89616.25832382357 4.0690656 -1103.2959
+89617.25832387386 4.0689869 -1103.2562
+89618.25832392415 4.0689869 -1103.197
+89619.25832397444 4.0689082 -1103.2366
+89620.25832402473 4.0689869 -1103.3749
+89621.25832407502 4.0689869 -1103.2168
+89622.25832412532 4.0689869 -1103.2366
+89623.25832417561 4.0690265 -1103.2366
+89624.2583242259 4.0690656 -1103.2168
+89625.25832427619 4.0688686 -1103.1774
+89626.25832432648 4.0689478 -1103.2959
+89627.25832437677 4.0689869 -1103.2366
+89628.25832442706 4.0689869 -1103.197
+89629.25832447736 4.0689869 -1103.2168
+89630.25832452765 4.0689478 -1103.2168
+89631.25832457794 4.0689869 -1103.2761
+89632.25832462823 4.0688686 -1103.1576
+89633.25832467852 4.0688686 -1103.2366
+89634.25832472881 4.0689869 -1103.2168
+89635.2583247791 4.0689082 -1103.197
+89636.2583248294 4.0688686 -1103.1576
+89637.25832487969 4.0688295 -1103.1576
+89638.25832492998 4.0688686 -1103.197
+89639.25832498027 4.0688295 -1103.197
+89640.25832503056 4.0689082 -1103.2366
+89641.25832508085 4.0689082 -1103.197
+89642.25832513114 4.0688686 -1103.2959
+89643.25832518144 4.0688295 -1103.2959
+89644.25832523173 4.0689082 -1103.2366
+89645.25832528202 4.0688686 -1103.2366
+89646.25832533231 4.0689082 -1103.2562
+89647.2583253826 4.0689082 -1103.2366
+89648.2583254329 4.06879 -1103.197
+89649.25832548318 4.0687113 -1103.2562
+89650.25832553348 4.06879 -1103.2761
+89651.25832558377 4.0688295 -1103.2366
+89652.25832563406 4.0688295 -1103.2761
+89653.25832568435 4.06879 -1103.197
+89654.25832573464 4.0689082 -1103.3156
+89655.25832578493 4.0687113 -1103.2366
+89656.25832583522 4.0688295 -1103.2959
+89657.25832588552 4.0687509 -1103.1774
+89658.2583259358 4.0687113 -1103.2761
+89659.2583259861 4.0687509 -1103.2562
+89660.25832603639 4.0687509 -1103.2562
+89661.25832608668 4.0688295 -1103.2761
+89662.25832613697 4.0687113 -1103.2761
+89663.25832618726 4.06879 -1103.2366
+89664.25832623756 4.06879 -1103.1774
+89665.25832628785 4.06879 -1103.197
+89666.25832633814 4.0687113 -1103.2562
+89667.25832638843 4.0687509 -1103.2761
+89668.25832643872 4.0686326 -1103.2562
+89669.25832648901 4.06879 -1103.1378
+89670.2583265393 4.06879 -1103.2168
+89671.2583265896 4.0686722 -1103.3551
+89672.25832663989 4.0687113 -1103.2168
+89673.25832669018 4.0686722 -1103.197
+89674.25832674047 4.0686722 -1103.2761
+89675.25832679076 4.0687113 -1103.3156
+89676.25832684105 4.0686722 -1103.197
+89677.25832689134 4.0686722 -1103.2366
+89678.25832694164 4.0686722 -1103.2168
+89679.25832699193 4.0686722 -1103.2959
+89680.25832704222 4.0686326 -1103.2562
+89681.25832709251 4.0687113 -1103.197
+89682.2583271428 4.0687509 -1103.197
+89683.25832719309 4.068593 -1103.2366
+89684.25832724338 4.0686326 -1103.3353
+89685.25832729368 4.068593 -1103.2168
+89686.25832734397 4.068593 -1103.2366
+89687.25832739426 4.0686722 -1103.2366
+89688.25832744455 4.0686326 -1103.2959
+89689.25832749484 4.0686722 -1103.2168
+89690.25832754513 4.0686326 -1103.2562
+89691.25832759542 4.068593 -1103.2366
+89692.25832764572 4.0686326 -1103.1774
+89693.258327696 4.0686326 -1103.2366
+89694.2583277463 4.068593 -1103.2761
+89695.25832779659 4.0687113 -1103.2959
+89696.25832784688 4.0685539 -1103.2959
+89697.25832789717 4.0685539 -1103.2168
+89698.25832794746 4.0685539 -1103.197
+89699.25832799776 4.068593 -1103.2562
+89700.25832804805 4.0684752 -1103.2959
+89701.25832809834 4.068593 -1103.197
+89702.25832814863 4.068593 -1103.1774
+89703.25832819892 4.0685539 -1103.2562
+89704.25832824921 4.0685539 -1103.2366
+89705.2583282995 4.068593 -1103.2761
+89706.2583283498 4.068593 -1103.2562
+89707.25832840009 4.0685143 -1103.2761
+89708.25832845038 4.0685143 -1103.2562
+89709.25832850067 4.0684357 -1103.3551
+89710.25832855096 4.068593 -1103.1576
+89711.25832860125 4.0685539 -1103.2562
+89712.25832865154 4.0685143 -1103.2168
+89713.25832870184 4.0685143 -1103.2761
+89714.25832875213 4.0684357 -1103.3353
+89715.25832880242 4.0684357 -1103.2959
+89716.25832885271 4.0684357 -1103.2761
+89717.258328903 4.0684357 -1103.2168
+89718.25832895329 4.0685539 -1103.1774
+89719.25832900358 4.0684752 -1103.2366
+89720.25832905388 4.0684357 -1103.197
+89721.25832910417 4.0685539 -1103.2761
+89722.25832915446 4.0683966 -1103.2562
+89723.25832920475 4.0684752 -1103.2761
+89724.25832925504 4.0683966 -1103.2562
+89725.25832930533 4.0684752 -1103.2562
+89726.25832935562 4.068357 -1103.2562
+89727.25832940591 4.0684357 -1103.197
+89728.2583294562 4.0683966 -1103.2761
+89729.2583295065 4.0685143 -1103.2168
+89730.25832955679 4.0684357 -1103.2168
+89731.25832960708 4.0683179 -1103.2562
+89732.25832965737 4.068357 -1103.2366
+89733.25832970766 4.0683179 -1103.197
+89734.25832975795 4.0683966 -1103.1576
+89735.25832980825 4.068357 -1103.2366
+89736.25832985854 4.068357 -1103.1576
+89737.25832990883 4.0683179 -1103.2562
+89738.25832995912 4.0684357 -1103.197
+89739.25833000941 4.0683966 -1103.2366
+89740.2583300597 4.0683179 -1103.3156
+89741.25833011 4.0682783 -1103.197
+89742.25833016029 4.0684357 -1103.2562
+89743.25833021058 4.068357 -1103.197
+89744.25833026087 4.068357 -1103.2562
+89745.25833031116 4.0683179 -1103.2168
+89746.25833036145 4.0683179 -1103.2562
+89747.25833041174 4.0683179 -1103.2761
+89748.25833046203 4.0683179 -1103.2959
+89749.25833051233 4.0682387 -1103.2366
+89750.25833056262 4.0683179 -1103.2562
+89751.25833061291 4.0682783 -1103.3156
+89752.2583306632 4.0681996 -1103.197
+89753.25833071349 4.0682783 -1103.2959
+89754.25833076378 4.0682783 -1103.197
+89755.25833081407 4.0683179 -1103.2366
+89756.25833086437 4.0681996 -1103.1182
+89757.25833091466 4.0682387 -1103.1576
+89758.25833096495 4.0681601 -1103.2761
+89759.25833101524 4.0681996 -1103.1774
+89760.25833106553 4.0682783 -1103.197
+89761.25833111582 4.0682783 -1103.2761
+89762.25833116611 4.0681996 -1103.197
+89763.2583312164 4.0682387 -1103.2761
+89764.2583312667 4.0681996 -1103.197
+89765.25833131699 4.0681996 -1103.2168
+89766.25833136728 4.0681996 -1103.1774
+89767.25833141757 4.0681996 -1103.1576
+89768.25833146786 4.0681601 -1103.2168
+89769.25833151815 4.0681996 -1103.2366
+89770.25833156845 4.0681601 -1103.2562
+89771.25833161874 4.0681601 -1103.2366
+89772.25833166903 4.0681996 -1103.2562
+89773.25833171932 4.068121 -1103.2366
+89774.25833176961 4.0680814 -1103.197
+89775.2583318199 4.0681996 -1103.2562
+89776.2583318702 4.0680814 -1103.2168
+89777.25833192049 4.0681601 -1103.197
+89778.25833197078 4.068121 -1103.197
+89779.25833202107 4.068121 -1103.2168
+89780.25833207136 4.0681601 -1103.2562
+89781.25833212165 4.0680814 -1103.3156
+89782.25833217194 4.0680423 -1103.1576
+89783.25833222223 4.0680814 -1103.2959
+89784.25833227253 4.0680423 -1103.2562
+89785.25833232282 4.068121 -1103.2168
+89786.25833237311 4.068121 -1103.2168
+89787.2583324234 4.0680814 -1103.197
+89788.25833247369 4.0681601 -1103.197
+89789.25833252398 4.0681601 -1103.2959
+89790.25833257427 4.0680423 -1103.2366
+89791.25833262457 4.0680027 -1103.2366
+89792.25833267486 4.0679631 -1103.2366
+89793.25833272515 4.0680027 -1103.1774
+89794.25833277544 4.0680027 -1103.2959
+89795.25833282573 4.0680423 -1103.2168
+89796.25833287602 4.0680814 -1103.1576
+89797.25833292631 4.0680814 -1103.2366
+89798.2583329766 4.0678844 -1103.1576
+89799.2583330269 4.0680423 -1103.2562
+89800.25833307719 4.0679631 -1103.2168
+89801.25833312748 4.0680027 -1103.197
+89802.25833317777 4.067924 -1103.197
+89803.25833322806 4.0679631 -1103.2959
+89804.25833327835 4.0679631 -1103.3156
+89805.25833332865 4.0679631 -1103.2959
+89806.25833337894 4.067924 -1103.197
+89807.25833342923 4.067924 -1103.197
+89808.25833347952 4.0679631 -1103.2959
+89809.25833352981 4.0680027 -1103.2562
+89810.2583335801 4.067924 -1103.2366
+89811.2583336304 4.0678844 -1103.2562
+89812.25833368069 4.067924 -1103.3353
+89813.25833373098 4.0678058 -1103.2562
+89814.25833378127 4.0680027 -1103.2562
+89815.25833383156 4.0678844 -1103.2168
+89816.25833388185 4.0678844 -1103.2366
+89817.25833393214 4.0678453 -1103.2959
+89818.25833398243 4.0678453 -1103.2761
+89819.25833403273 4.067924 -1103.2761
+89820.25833408302 4.0678058 -1103.1774
+89821.25833413331 4.067924 -1103.2168
+89822.2583341836 4.0678453 -1103.2366
+89823.25833423389 4.0678844 -1103.2366
+89824.25833428418 4.0678453 -1103.197
+89825.25833433447 4.0678844 -1103.2366
+89826.25833438477 4.0678453 -1103.2366
+89827.25833443506 4.0678844 -1103.2168
+89828.25833448535 4.0678844 -1103.2168
+89829.25833453564 4.067924 -1103.3353
+89830.25833458593 4.0678453 -1103.3551
+89831.25833463622 4.0677667 -1103.0984
+89832.25833468651 4.0677271 -1103.2366
+89833.2583347368 4.0678058 -1103.2761
+89834.2583347871 4.0678453 -1103.2761
+89835.25833483739 4.0677271 -1103.3156
+89836.25833488768 4.0676484 -1103.1774
+89837.25833493797 4.0678453 -1103.197
+89838.25833498826 4.0678058 -1103.2168
+89839.25833503855 4.0678453 -1103.2366
+89840.25833508885 4.0677271 -1103.1576
+89841.25833513914 4.0678058 -1103.2562
+89842.25833518943 4.0677667 -1103.2761
+89843.25833523972 4.0678058 -1103.2168
+89844.25833529001 4.0677667 -1103.2959
+89845.2583353403 4.0678453 -1103.2366
+89846.2583353906 4.0678058 -1103.2959
+89847.25833544089 4.0677667 -1103.2562
+89848.25833549118 4.067688 -1103.1576
+89849.25833554147 4.0677271 -1103.1378
+89850.25833559176 4.0677667 -1103.3156
+89851.25833564205 4.0677667 -1103.197
+89852.25833569234 4.0678058 -1103.2168
+89853.25833574263 4.0676088 -1103.2168
+89854.25833579293 4.067688 -1103.197
+89855.25833584322 4.067688 -1103.2562
+89856.25833589351 4.0677271 -1103.197
+89857.2583359438 4.067688 -1103.2761
+89858.25833599409 4.0677271 -1103.197
+89859.25833604438 4.0677271 -1103.2761
+89860.25833609467 4.0676088 -1103.2168
+89861.25833614497 4.067688 -1103.2366
+89862.25833619526 4.0674515 -1103.2168
+89863.25833624555 4.0675697 -1103.3156
+89864.25833629584 4.0676484 -1103.2366
+89865.25833634613 4.067688 -1103.2761
+89866.25833639642 4.0676484 -1103.197
+89867.25833644671 4.067688 -1103.2562
+89868.258336497 4.0676088 -1103.2761
+89869.2583365473 4.0676088 -1103.2959
+89870.25833659759 4.0675697 -1103.2761
+89871.25833664788 4.0676484 -1103.197
+89872.25833669817 4.0675302 -1103.0984
+89873.25833674846 4.0674911 -1103.3156
+89874.25833679875 4.0677667 -1103.2959
+89875.25833684905 4.0675697 -1103.2366
+89876.25833689934 4.0675697 -1103.2562
+89877.25833694963 4.0675697 -1103.2168
+89878.25833699992 4.0676484 -1103.2366
+89879.25833705021 4.0676088 -1103.2562
+89880.2583371005 4.0676088 -1103.0984
+89881.2583371508 4.0675302 -1103.1576
+89882.25833720108 4.0676484 -1103.197
+89883.25833725138 4.0674911 -1103.197
+89884.25833730167 4.0675697 -1103.2366
+89885.25833735196 4.0674911 -1103.2959
+89886.25833740225 4.0675302 -1103.1576
+89887.25833745254 4.0674911 -1103.2959
+89888.25833750283 4.0674124 -1103.197
+89889.25833755312 4.0673728 -1103.2959
+89890.25833760342 4.0675697 -1103.2366
+89891.25833765371 4.0675302 -1103.2959
+89892.258337704 4.0674124 -1103.2562
+89893.25833775429 4.0673728 -1103.2168
+89894.25833780458 4.0674515 -1103.2562
+89895.25833785487 4.0675302 -1103.2168
+89896.25833790516 4.0674124 -1103.2959
+89897.25833795546 4.0674515 -1103.3156
+89898.25833800575 4.0674911 -1103.3156
+89899.25833805604 4.0674124 -1103.2366
+89900.25833810633 4.0674124 -1103.2168
+89901.25833815662 4.0674515 -1103.2562
+89902.25833820691 4.0674515 -1103.2366
+89903.2583382572 4.0674124 -1103.2959
+89904.2583383075 4.0674911 -1103.2761
+89905.25833835779 4.0673332 -1103.1576
+89906.25833840808 4.0673332 -1103.2366
+89907.25833845837 4.0674124 -1103.197
+89908.25833850866 4.0672941 -1103.2761
+89909.25833855895 4.0674124 -1103.197
+89910.25833860924 4.0672941 -1103.2761
+89911.25833865954 4.0674124 -1103.2366
+89912.25833870983 4.0674515 -1103.1774
+89913.25833876012 4.0673332 -1103.3353
+89914.25833881041 4.0673332 -1103.2761
+89915.2583388607 4.0673332 -1103.2168
+89916.258338911 4.0672941 -1103.2959
+89917.25833896128 4.0672941 -1103.197
+89918.25833901158 4.0672941 -1103.197
+89919.25833906187 4.0673728 -1103.2366
+89920.25833911216 4.0674515 -1103.2959
+89921.25833916245 4.0672941 -1103.2168
+89922.25833921274 4.0672941 -1103.2959
+89923.25833926303 4.0673332 -1103.2761
+89924.25833931332 4.0673728 -1103.2562
+89925.25833936362 4.0672941 -1103.2761
+89926.25833941391 4.0673332 -1103.2366
+89927.2583394642 4.0673332 -1103.2168
+89928.25833951449 4.0672941 -1103.2761
+89929.25833956478 4.0673332 -1103.3156
+89930.25833961507 4.0673728 -1103.2168
+89931.25833966536 4.0672941 -1103.2761
+89932.25833971566 4.0673332 -1103.197
+89933.25833976595 4.0672154 -1103.3156
+89934.25833981624 4.0671759 -1103.2168
+89935.25833986653 4.0672545 -1103.2761
+89936.25833991682 4.0672545 -1103.197
+89937.25833996711 4.0672154 -1103.197
+89938.2583400174 4.0672154 -1103.2562
+89939.2583400677 4.0673728 -1103.2168
+89940.25834011799 4.0672941 -1103.2562
+89941.25834016828 4.0672941 -1103.2761
+89942.25834021857 4.0672154 -1103.2168
+89943.25834026886 4.0671368 -1103.2562
+89944.25834031915 4.0671368 -1103.2366
+89945.25834036944 4.0671759 -1103.2761
+89946.25834041974 4.0671368 -1103.197
+89947.25834047003 4.0672154 -1103.2959
+89948.25834052032 4.0672941 -1103.1774
+89949.25834057061 4.0671368 -1103.2562
+89950.2583406209 4.0671368 -1103.2366
+89951.2583406712 4.0670972 -1103.197
+89952.25834072148 4.0669789 -1103.2366
+89953.25834077178 4.0671759 -1103.2959
+89954.25834082207 4.0671759 -1103.2366
+89955.25834087236 4.0671368 -1103.2168
+89956.25834092265 4.0670972 -1103.2562
+89957.25834097294 4.0671368 -1103.3156
+89958.25834102323 4.0671368 -1103.2366
+89959.25834107352 4.0672154 -1103.2761
+89960.25834112382 4.0671368 -1103.1774
+89961.2583411741 4.0671759 -1103.2562
+89962.2583412244 4.0670576 -1103.197
+89963.25834127469 4.0669789 -1103.2761
+89964.25834132498 4.0670576 -1103.2959
+89965.25834137527 4.0670576 -1103.197
+89966.25834142556 4.0670185 -1103.2959
+89967.25834147586 4.0671759 -1103.3551
+89968.25834152615 4.0670185 -1103.197
+89969.25834157644 4.0670185 -1103.2562
+89970.25834162673 4.0670576 -1103.2959
+89971.25834167702 4.0670576 -1103.2168
+89972.25834172731 4.0670576 -1103.2366
+89973.2583417776 4.0670185 -1103.2168
+89974.2583418279 4.0670185 -1103.2959
+89975.25834187819 4.0670972 -1103.2168
+89976.25834192848 4.0670576 -1103.2366
+89977.25834197877 4.0670185 -1103.2168
+89978.25834202906 4.0670185 -1103.2366
+89979.25834207935 4.0669398 -1103.2168
+89980.25834212964 4.0670185 -1103.3156
+89981.25834217994 4.0670185 -1103.2168
+89982.25834223023 4.0669398 -1103.1378
+89983.25834228052 4.0670185 -1103.2959
+89984.25834233081 4.0668612 -1103.2562
+89985.2583423811 4.0670185 -1103.2959
+89986.25834243139 4.0670185 -1103.1576
+89987.25834248168 4.0669398 -1103.3353
+89988.25834253198 4.0670185 -1103.3156
+89989.25834258227 4.0669789 -1103.2168
+89990.25834263256 4.0669789 -1103.2168
+89991.25834268285 4.0669003 -1103.2168
+89992.25834273314 4.0669398 -1103.2562
+89993.25834278343 4.0669003 -1103.2366
+89994.25834283372 4.0670185 -1103.197
+89995.25834288402 4.0669789 -1103.2761
+89996.2583429343 4.0668612 -1103.1774
+89997.2583429846 4.0669003 -1103.1774
+89998.25834303489 4.0667429 -1103.1774
+89999.25834308518 4.0668612 -1103.2168
+90000.25834313547 4.0669003 -1103.197
+90001.25834318576 4.0669398 -1103.1576
+90002.25834323606 4.0668216 -1103.1182
+90003.25834328635 4.0669789 -1103.197
+90004.25834333664 4.0668612 -1103.197
+90005.25834338693 4.0669003 -1103.2366
+90006.25834343722 4.0669003 -1103.2562
+90007.25834348751 4.0667825 -1103.2366
+90008.2583435378 4.0667429 -1103.2959
+90009.2583435881 4.0668612 -1103.197
+90010.25834363839 4.0668216 -1103.2562
+90011.25834368868 4.0668612 -1103.2562
+90012.25834373897 4.0667429 -1103.2168
+90013.25834378926 4.0668612 -1103.2562
+90014.25834383955 4.0668612 -1103.2168
+90015.25834388984 4.0668612 -1103.2562
+90016.25834394014 4.0667825 -1103.2366
+90017.25834399043 4.0667825 -1103.2562
+90018.25834404072 4.0669398 -1103.197
+90019.25834409101 4.0669003 -1103.2761
+90020.2583441413 4.0667033 -1103.2366
+90021.25834419159 4.0667033 -1103.197
+90022.25834424188 4.0667033 -1103.2168
+90023.25834429218 4.0667429 -1103.2562
+90024.25834434247 4.0668216 -1103.2959
+90025.25834439276 4.0668216 -1103.2366
+90026.25834444305 4.0666642 -1103.2366
+90027.25834449334 4.0667429 -1103.1774
+90028.25834454363 4.0667033 -1103.2366
+90029.25834459392 4.0667033 -1103.2562
+90030.25834464421 4.0667033 -1103.2959
+90031.2583446945 4.0667429 -1103.2168
+90032.2583447448 4.0668216 -1103.2959
+90033.25834479509 4.0667429 -1103.2562
+90034.25834484538 4.0667033 -1103.2959
+90035.25834489567 4.0667429 -1103.2366
+90036.25834494596 4.0666246 -1103.2366
+90037.25834499625 4.0666642 -1103.1576
+90038.25834504655 4.0667033 -1103.2366
+90039.25834509684 4.0666246 -1103.2562
+90040.25834514713 4.0667033 -1103.2761
+90041.25834519742 4.0666246 -1103.1774
+90042.25834524771 4.0667033 -1103.2562
+90043.258345298 4.0667033 -1103.2562
+90044.2583453483 4.0666246 -1103.197
+90045.25834539859 4.0665855 -1103.3156
+90046.25834544888 4.0666246 -1103.2562
+90047.25834549917 4.066546 -1103.3551
+90048.25834554946 4.0666246 -1103.2959
+90049.25834559975 4.0666246 -1103.197
+90050.25834565004 4.0666246 -1103.2562
+90051.25834570033 4.0665855 -1103.197
+90052.25834575063 4.066546 -1103.2761
+90053.25834580092 4.0666246 -1103.2761
+90054.25834585121 4.0665855 -1103.197
+90055.2583459015 4.0665855 -1103.1774
+90056.25834595179 4.066546 -1103.1774
+90057.25834600208 4.0665855 -1103.1182
+90058.25834605237 4.0665855 -1103.1774
+90059.25834610267 4.0665069 -1103.2562
+90060.25834615296 4.066546 -1103.2366
+90061.25834620325 4.066546 -1103.2959
+90062.25834625354 4.0664673 -1103.197
+90063.25834630383 4.0665855 -1103.2761
+90064.25834635412 4.0665855 -1103.2562
+90065.25834640441 4.066546 -1103.2761
+90066.2583464547 4.066546 -1103.2366
+90067.258346505 4.066546 -1103.3551
+90068.25834655529 4.0665069 -1103.2168
+90069.25834660558 4.0665069 -1103.1774
+90070.25834665587 4.066546 -1103.2562
+90071.25834670616 4.0664277 -1103.2562
+90072.25834675644 4.0665855 -1103.197
+90073.25834680676 4.0664673 -1103.2168
+90074.25834685704 4.0665069 -1103.2366
+90075.25834690731 4.0665069 -1103.1774
+90076.25834695762 4.066349 -1103.2168
+90077.25834700793 4.0665855 -1103.1774
+90078.2583470582 4.0664673 -1103.2761
+90079.25834710848 4.0664277 -1103.2366
+90080.2583471588 4.0664673 -1103.2959
+90081.25834720908 4.0664277 -1103.2366
+90082.25834725935 4.0664673 -1103.2366
+90083.25834730966 4.0664673 -1103.2959
+90084.25834735997 4.0664277 -1103.2761
+90085.25834741024 4.0664277 -1103.2168
+90086.25834746052 4.066349 -1103.197
+90087.25834751084 4.066349 -1103.1774
+90088.25834756112 4.066546 -1103.2366
+90089.2583476114 4.0663886 -1103.2959
+90090.2583476617 4.0664673 -1103.3156
+90091.258347712 4.0664673 -1103.2366
+90092.25834776228 4.066349 -1103.1774
+90093.25834781256 4.0664277 -1103.2366
+90094.25834786288 4.066349 -1103.197
+90095.25834791316 4.0663886 -1103.1774
+90096.25834796343 4.0664277 -1103.2761
+90097.25834801374 4.0663886 -1103.2366
+90098.25834806405 4.0665069 -1103.2168
+90099.25834811432 4.066349 -1103.3353
+90100.2583481646 4.0662313 -1103.2366
+90101.25834821492 4.066349 -1103.3353
+90102.2583482652 4.0663099 -1103.1774
+90103.25834831547 4.0662704 -1103.2168
+90104.25834836578 4.0663099 -1103.2366
+90105.25834841609 4.0662704 -1103.3156
+90106.25834846636 4.066349 -1103.1576
+90107.25834851664 4.066349 -1103.2168
+90108.25834856696 4.0661917 -1103.2168
+90109.25834861724 4.0663886 -1103.2959
+90110.25834866751 4.066349 -1103.2168
+90111.25834871782 4.0663099 -1103.2761
+90112.25834876813 4.066349 -1103.197
+90113.2583488184 4.066349 -1103.2959
+90114.25834886868 4.066349 -1103.2959
+90115.258348919 4.0662313 -1103.2761
+90116.25834896928 4.0662313 -1103.2761
+90117.25834901955 4.0662313 -1103.2761
+90118.25834906986 4.0661917 -1103.2562
+90119.25834912017 4.0662313 -1103.2959
+90120.25834917044 4.0663099 -1103.2959
+90121.25834922072 4.0662313 -1103.197
+90122.25834927104 4.0661917 -1103.2959
+90123.25834932132 4.0663099 -1103.3353
+90124.2583493716 4.0662313 -1103.2562
+90125.2583494219 4.0662313 -1103.2562
+90126.2583494722 4.0662704 -1103.2761
+90127.25834952248 4.0662313 -1103.2562
+90128.25834957276 4.0661917 -1103.2562
+90129.25834962308 4.066113 -1103.1774
+90130.25834967336 4.066113 -1103.2168
+90131.25834972363 4.0660734 -1103.1774
+90132.25834977394 4.066113 -1103.2168
+90133.25834982425 4.0661526 -1103.2366
+90134.25834987452 4.0661917 -1103.2761
+90135.2583499248 4.066113 -1103.2168
+90136.25834997512 4.0661917 -1103.2761
+90137.2583500254 4.066113 -1103.1774
+90138.25835007567 4.0661526 -1103.2959
+90139.25835012598 4.0661526 -1103.2562
+90140.25835017629 4.0660734 -1103.2761
+90141.25835022656 4.066113 -1103.1774
+90142.25835027684 4.066113 -1103.1774
+90143.25835032716 4.0660734 -1103.2761
+90144.25835037744 4.0660343 -1103.1182
+90145.25835042771 4.0661526 -1103.2761
+90146.25835047802 4.066113 -1103.2959
+90147.25835052833 4.0661526 -1103.197
+90148.2583505786 4.0660734 -1103.2366
+90149.25835062888 4.0660734 -1103.2562
+90150.2583506792 4.0660734 -1103.2168
+90151.25835072948 4.0659556 -1103.2959
+90152.25835077975 4.0660734 -1103.2562
+90153.25835083006 4.0660734 -1103.2168
+90154.25835088037 4.0660343 -1103.2761
+90155.25835093064 4.0660343 -1103.2562
+90156.25835098092 4.0660734 -1103.3156
+90157.25835103124 4.066113 -1103.2959
+90158.25835108152 4.0659947 -1103.2168
+90159.2583511318 4.0660343 -1103.1378
+90160.2583511821 4.0659947 -1103.197
+90161.2583512324 4.0660734 -1103.197
+90162.25835128268 4.0659161 -1103.2761
+90163.25835133296 4.0658374 -1103.2761
+90164.25835138328 4.0660343 -1103.2366
+90165.25835143356 4.0659161 -1103.2562
+90166.25835148383 4.0660343 -1103.2562
+90167.25835153414 4.0659556 -1103.2562
+90168.25835158445 4.0659556 -1103.2366
+90169.25835163472 4.0659556 -1103.2366
+90170.258351685 4.0660343 -1103.3156
+90171.25835173532 4.0659556 -1103.2168
+90172.2583517856 4.0660343 -1103.2761
+90173.25835183587 4.065877 -1103.3749
+90174.25835188618 4.0659161 -1103.2562
+90175.25835193649 4.0659161 -1103.2168
+90176.25835198676 4.0659161 -1103.2562
+90177.25835203704 4.065877 -1103.2366
+90178.25835208736 4.0660343 -1103.1774
+90179.25835213764 4.0660343 -1103.2562
+90180.25835218791 4.0659161 -1103.1774
+90181.25835223822 4.065877 -1103.2761
+90182.25835228853 4.065877 -1103.2562
+90183.2583523388 4.0657978 -1103.2761
+90184.25835238908 4.065877 -1103.2562
+90185.25835243938 4.0659161 -1103.2366
+90186.25835248968 4.0659947 -1103.2959
+90187.25835253995 4.065877 -1103.1576
+90188.25835259026 4.0658374 -1103.3156
+90189.25835264057 4.0658374 -1103.2761
+90190.25835269084 4.0659556 -1103.2562
+90191.25835274112 4.065877 -1103.3156
+90192.25835279142 4.0657978 -1103.197
+90193.25835284172 4.065877 -1103.197
+90194.258352892 4.0658374 -1103.2366
+90195.2583529423 4.065877 -1103.2562
+90196.2583529926 4.065877 -1103.1576
+90197.25835304288 4.0657587 -1103.2761
+90198.25835309316 4.0657978 -1103.3156
+90199.25835314346 4.0658374 -1103.197
+90200.25835319376 4.0657191 -1103.2168
+90201.25835324403 4.0657978 -1103.2959
+90202.25835329434 4.0657191 -1103.2168
+90203.25835334465 4.0657978 -1103.2562
+90204.25835339492 4.0657587 -1103.2168
+90205.2583534452 4.0657978 -1103.2366
+90206.2583534955 4.0657587 -1103.3156
+90207.2583535458 4.0657191 -1103.2562
+90208.25835359607 4.0657978 -1103.2562
+90209.25835364638 4.06568 -1103.2366
+90210.25835369668 4.0657587 -1103.2959
+90211.25835374696 4.0657587 -1103.2959
+90212.25835379724 4.0658374 -1103.2366
+90213.25835384754 4.0657587 -1103.3353
+90214.25835389784 4.0657191 -1103.2366
+90215.25835394811 4.06568 -1103.2168
+90216.25835399842 4.0657587 -1103.3353
+90217.25835404872 4.0657191 -1103.2168
+90218.258354099 4.06568 -1103.2761
+90219.25835414928 4.0657191 -1103.2562
+90220.25835419958 4.0657191 -1103.3156
+90221.25835424988 4.0657191 -1103.1378
+90222.25835430015 4.0656013 -1103.2168
+90223.25835435046 4.06568 -1103.2761
+90224.25835440076 4.0656404 -1103.2562
+90225.25835445104 4.06568 -1103.2366
+90226.25835450132 4.0655618 -1103.2168
+90227.25835455162 4.0656404 -1103.1576
+90228.25835460192 4.0656404 -1103.3156
+90229.2583546522 4.0657191 -1103.197
+90230.2583547025 4.06568 -1103.2761
+90231.2583547528 4.0657191 -1103.2761
+90232.25835480308 4.0655618 -1103.3156
+90233.25835485336 4.0655227 -1103.2959
+90234.25835490366 4.0656404 -1103.1774
+90235.25835495396 4.06568 -1103.2761
+90236.25835500423 4.0655618 -1103.197
+90237.25835505454 4.0656404 -1103.2366
+90238.25835510484 4.0655618 -1103.2366
+90239.25835515512 4.0656404 -1103.1378
+90240.2583552054 4.0656404 -1103.2761
+90241.2583552557 4.0655227 -1103.2562
+90242.258355306 4.0655227 -1103.2959
+90243.25835535629 4.0654831 -1103.197
+90244.25835540658 4.0655618 -1103.2168
+90245.25835545688 4.0654435 -1103.197
+90246.25835550716 4.0655618 -1103.3156
+90247.25835555744 4.0655227 -1103.2366
+90248.25835560774 4.0655227 -1103.2366
+90249.25835565804 4.0654831 -1103.2562
+90250.25835570833 4.0655227 -1103.2366
+90251.25835575862 4.0655618 -1103.2366
+90252.25835580892 4.0656013 -1103.0984
+90253.2583558592 4.0654435 -1103.2168
+90254.25835590948 4.0654831 -1103.2562
+90255.25835595978 4.0655227 -1103.2168
+90256.25835601008 4.0654435 -1103.2761
+90257.25835606037 4.0654435 -1103.2366
+90258.25835611066 4.0654831 -1103.2761
+90259.25835616096 4.0655618 -1103.2366
+90260.25835621124 4.0654435 -1103.2959
+90261.25835626152 4.0654831 -1103.1182
+90262.25835631182 4.0654044 -1103.197
+90263.25835636212 4.0653648 -1103.2168
+90264.2583564124 4.0654831 -1103.2562
+90265.2583564627 4.0654435 -1103.2366
+90266.258356513 4.0654044 -1103.2366
+90267.25835656328 4.0654831 -1103.2168
+90268.25835661356 4.0654831 -1103.3353
+90269.25835666386 4.0653648 -1103.2366
+90270.25835671416 4.0653648 -1103.2761
+90271.25835676445 4.0654435 -1103.2168
+90272.25835681474 4.0653648 -1103.2959
+90273.25835686504 4.0654044 -1103.1774
+90274.25835691532 4.0654044 -1103.2761
+90275.2583569656 4.0653257 -1103.2168
+90276.2583570159 4.0653257 -1103.1774
+90277.2583570662 4.0653648 -1103.2366
+90278.25835711649 4.0653648 -1103.2366
+90279.25835716678 4.0654831 -1103.2366
+90280.25835721708 4.0654831 -1103.2366
+90281.25835726736 4.0652075 -1103.2959
+90282.25835731764 4.0652862 -1103.1774
+90283.25835736794 4.0653648 -1103.197
+90284.25835741824 4.0652862 -1103.1378
+90285.25835746853 4.0653257 -1103.2562
+90286.25835751882 4.0653257 -1103.2168
+90287.25835756912 4.0652471 -1103.2761
+90288.2583576194 4.0652862 -1103.197
+90289.25835766968 4.0652471 -1103.2168
+90290.25835771998 4.0652862 -1103.1774
+90291.25835777028 4.0652471 -1103.2761
+90292.25835782057 4.0652862 -1103.2761
+90293.25835787086 4.0651679 -1103.2168
+90294.25835792116 4.0651679 -1103.2168
+90295.25835797144 4.0652471 -1103.2959
+90296.25835802172 4.0651679 -1103.2562
+90297.25835807202 4.0652471 -1103.3156
+90298.25835812232 4.0651288 -1103.3353
+90299.2583581726 4.0651679 -1103.2562
+90300.2583582229 4.0652075 -1103.2366
+90301.2583582732 4.0653257 -1103.2761
+90302.25835832348 4.0652862 -1103.197
+90303.25835837376 4.0653257 -1103.2761
+90304.25835842406 4.0652075 -1103.3749
+90305.25835847436 4.0651288 -1103.2168
+90306.25835852465 4.0651679 -1103.2562
+90307.25835857494 4.0651679 -1103.3156
+90308.25835862524 4.0650892 -1103.3156
+90309.25835867552 4.0652862 -1103.2562
+90310.2583587258 4.0651679 -1103.2168
+90311.2583587761 4.0652471 -1103.1774
+90312.2583588264 4.0651679 -1103.2562
+90313.25835887669 4.0652471 -1103.2562
+90314.25835892698 4.0651288 -1103.197
+90315.25835897728 4.0650501 -1103.2761
+90316.25835902756 4.0651679 -1103.2168
+90317.25835907784 4.0652075 -1103.197
+90318.25835912814 4.0651679 -1103.2761
+90319.25835917844 4.0650892 -1103.2168
+90320.25835922873 4.0652075 -1103.3156
+90321.25835927902 4.0650892 -1103.1774
+90322.25835932932 4.0651679 -1103.3945
+90323.2583593796 4.0650892 -1103.2366
+90324.25835942988 4.0652471 -1103.2366
+90325.25835948018 4.0650501 -1103.197
+90326.25835953047 4.0651288 -1103.2562
+90327.25835958077 4.0651288 -1103.2366
+90328.25835963106 4.0651288 -1103.2168
+90329.25835968136 4.0651679 -1103.2366
+90330.25835973164 4.0649714 -1103.2168
+90331.25835978192 4.0650501 -1103.2168
+90332.25835983222 4.0650105 -1103.197
+90333.25835988251 4.0651288 -1103.2959
+90334.2583599328 4.0650501 -1103.2959
+90335.2583599831 4.0651288 -1103.1576
+90336.2583600334 4.0650105 -1103.2168
+90337.25836008368 4.0650501 -1103.2959
+90338.25836013396 4.0650892 -1103.1774
+90339.25836018426 4.0649714 -1103.2562
+90340.25836023455 4.0650105 -1103.197
+90341.25836028485 4.0650105 -1103.2761
+90342.25836033514 4.0649319 -1103.197
+90343.25836038544 4.0650892 -1103.2366
+90344.25836043572 4.0649714 -1103.2168
+90345.258360486 4.0649714 -1103.2761
+90346.2583605363 4.0649714 -1103.2562
+90347.2583605866 4.0649714 -1103.197
+90348.25836063689 4.0649319 -1103.2562
+90349.25836068718 4.0648923 -1103.2761
+90350.25836073748 4.0650105 -1103.2366
+90351.25836078776 4.0648923 -1103.2761
+90352.25836083804 4.0650105 -1103.2168
+90353.25836088834 4.0649319 -1103.2366
+90354.25836093863 4.0649319 -1103.2562
+90355.25836098893 4.0650105 -1103.2168
+90356.25836103922 4.0650105 -1103.0984
+90357.25836108952 4.0648923 -1103.2366
+90358.2583611398 4.0648923 -1103.2959
+90359.25836119008 4.0649714 -1103.2761
+90360.25836124038 4.0648923 -1103.3353
+90361.25836129067 4.0649319 -1103.2562
+90362.25836134097 4.0648532 -1103.1576
+90363.25836139126 4.0648923 -1103.2168
+90364.25836144156 4.0648532 -1103.3156
+90365.25836149184 4.0648923 -1103.2761
+90366.25836154212 4.0648532 -1103.2168
+90367.25836159242 4.0649714 -1103.2366
+90368.25836164271 4.0647745 -1103.3156
+90369.258361693 4.0648136 -1103.2562
+90370.2583617433 4.0648923 -1103.2761
+90371.2583617936 4.0648136 -1103.2168
+90372.25836184388 4.0647745 -1103.3156
+90373.25836189416 4.0648136 -1103.1774
+90374.25836194446 4.0647745 -1103.2366
+90375.25836199475 4.0647745 -1103.2168
+90376.25836204505 4.0647745 -1103.3156
+90377.25836209534 4.0648136 -1103.2168
+90378.25836214564 4.0647745 -1103.2761
+90379.25836219592 4.0647745 -1103.2366
+90380.2583622462 4.0648532 -1103.1378
+90381.2583622965 4.0647745 -1103.3156
+90382.2583623468 4.0648532 -1103.2959
+90383.25836239709 4.0647745 -1103.197
+90384.25836244738 4.0648136 -1103.2562
+90385.25836249768 4.0647745 -1103.2761
+90386.25836254796 4.0646958 -1103.2761
+90387.25836259824 4.0647745 -1103.2366
+90388.25836264854 4.0648136 -1103.2959
+90389.25836269883 4.0648136 -1103.2761
+90390.25836274913 4.0646958 -1103.3156
+90391.25836279942 4.0647349 -1103.2366
+90392.25836284972 4.0648136 -1103.2761
+90393.2583629 4.0647349 -1103.2366
+90394.25836295028 4.0646172 -1103.2168
+90395.25836300058 4.0647745 -1103.2366
+90396.25836305087 4.0646958 -1103.1774
+90397.25836310117 4.0647349 -1103.2562
+90398.25836315146 4.0647349 -1103.2959
+90399.25836320176 4.0645776 -1103.1774
+90400.25836325204 4.0646563 -1103.2959
+90401.25836330232 4.0647349 -1103.3353
+90402.25836335262 4.0646958 -1103.3156
+90403.25836340291 4.0646563 -1103.2761
+90404.2583634532 4.064538 -1103.2366
+90405.2583635035 4.0646563 -1103.2168
+90406.2583635538 4.0645776 -1103.2562
+90407.25836360408 4.0646958 -1103.2366
+90408.25836365436 4.0647349 -1103.2366
+90409.25836370466 4.0645776 -1103.2366
+90410.25836375495 4.0646172 -1103.2562
+90411.25836380525 4.0646563 -1103.1774
+90412.25836385554 4.0646172 -1103.2959
+90413.25836390584 4.0644593 -1103.2168
+90414.25836395612 4.0645776 -1103.3156
+90415.2583640064 4.0645776 -1103.2959
+90416.2583640567 4.0645776 -1103.3156
+90417.258364107 4.064538 -1103.2761
+90418.25836415729 4.0644989 -1103.2562
+90419.25836420758 4.0645776 -1103.2562
+90420.25836425788 4.0646172 -1103.2959
+90421.25836430816 4.0645776 -1103.2366
+90422.25836435844 4.0646563 -1103.2959
+90423.25836440874 4.064538 -1103.2959
+90424.25836445903 4.0645776 -1103.197
+90425.25836450933 4.0646563 -1103.197
+90426.25836455962 4.0644989 -1103.1774
+90427.25836460992 4.0644989 -1103.3156
+90428.2583646602 4.064538 -1103.2168
+90429.25836471048 4.0646563 -1103.197
+90430.25836476078 4.0645776 -1103.2168
+90431.25836481107 4.0644593 -1103.2562
+90432.25836486137 4.0645776 -1103.2959
+90433.25836491166 4.0644989 -1103.3353
+90434.25836496196 4.0644989 -1103.197
+90435.25836501224 4.0643806 -1103.2366
+90436.25836506252 4.0644202 -1103.2168
+90437.25836511282 4.0644593 -1103.2562
+90438.25836516311 4.0644202 -1103.2366
+90439.2583652134 4.0644593 -1103.2366
+90440.2583652637 4.0644202 -1103.197
+90441.258365314 4.0644989 -1103.2761
+90442.25836536428 4.0644593 -1103.1576
+90443.25836541456 4.0644593 -1103.1774
+90444.25836546486 4.064302 -1103.197
+90445.25836551515 4.0644593 -1103.2959
+90446.25836556545 4.0644989 -1103.2761
+90447.25836561574 4.0644202 -1103.1774
+90448.25836566604 4.064538 -1103.2761
+90449.25836571632 4.0643806 -1103.2168
+90450.2583657666 4.0643806 -1103.3156
+90451.2583658169 4.0644989 -1103.2562
+90452.2583658672 4.0644202 -1103.2168
+90453.25836591749 4.0643806 -1103.2168
+90454.25836596778 4.0644593 -1103.197
+90455.25836601808 4.0643806 -1103.2168
+90456.25836606836 4.0643806 -1103.2562
+90457.25836611864 4.0643415 -1103.197
+90458.25836616894 4.0643415 -1103.2761
+90459.25836621923 4.0644989 -1103.2761
+90460.25836626953 4.064302 -1103.1576
+90461.25836631982 4.0642624 -1103.2959
+90462.25836637012 4.0643806 -1103.2168
+90463.2583664204 4.064302 -1103.2366
+90464.25836647068 4.0643415 -1103.2366
+90465.25836652098 4.064302 -1103.2366
+90466.25836657127 4.0643806 -1103.3551
+90467.25836662157 4.0642624 -1103.2562
+90468.25836667186 4.0643415 -1103.2562
+90469.25836672216 4.064302 -1103.2761
+90470.25836677244 4.0643415 -1103.2366
+90471.25836682272 4.0642233 -1103.2168
+90472.25836687302 4.064302 -1103.1576
+90473.25836692331 4.0641837 -1103.1774
+90474.2583669736 4.0642624 -1103.2562
+90475.2583670239 4.0642233 -1103.2168
+90476.2583670742 4.0642624 -1103.2562
+90477.25836712448 4.0643415 -1103.3156
+90478.25836717476 4.0641446 -1103.2366
+90479.25836722506 4.0642233 -1103.2761
+90480.25836727535 4.0643415 -1103.2168
+90481.25836732564 4.0642233 -1103.2959
+90482.25836737594 4.0642233 -1103.2366
+90483.25836742624 4.064302 -1103.197
+90484.25836747652 4.064105 -1103.2562
+90485.2583675268 4.0642624 -1103.197
+90486.2583675771 4.0642233 -1103.3551
+90487.2583676274 4.0641837 -1103.2761
+90488.25836767768 4.0641837 -1103.3353
+90489.25836772798 4.064105 -1103.3156
+90490.25836777828 4.0642233 -1103.197
+90491.25836782856 4.0641446 -1103.2366
+90492.25836787884 4.0642233 -1103.2366
+90493.25836792914 4.0640659 -1103.3156
+90494.25836797943 4.0641446 -1103.2366
+90495.25836802972 4.064105 -1103.2562
+90496.25836808002 4.0641446 -1103.2959
+90497.25836813032 4.0641837 -1103.2959
+90498.2583681806 4.064105 -1103.197
+90499.25836823088 4.0640659 -1103.1774
+90500.25836828118 4.0640264 -1103.2959
+90501.25836833147 4.064105 -1103.2168
+90502.25836838176 4.0640264 -1103.3353
+90503.25836843206 4.0641837 -1103.1774
+90504.25836848236 4.0640264 -1103.2168
+90505.25836853264 4.064105 -1103.2959
+90506.25836858292 4.0641446 -1103.2168
+90507.25836863322 4.0641446 -1103.2761
+90508.25836868351 4.0640659 -1103.2168
+90509.2583687338 4.0640659 -1103.1774
+90510.2583687841 4.064105 -1103.1576
+90511.2583688344 4.064105 -1103.2959
+90512.25836888468 4.0640264 -1103.2761
+90513.25836893496 4.0639873 -1103.197
+90514.25836898526 4.0641446 -1103.2366
+90515.25836903555 4.064105 -1103.2366
+90516.25836908584 4.0639873 -1103.2959
+90517.25836913614 4.0639873 -1103.2562
+90518.25836918644 4.0639873 -1103.2959
+90519.25836923672 4.0639873 -1103.2168
+90520.258369287 4.0639477 -1103.2366
+90521.2583693373 4.064105 -1103.2168
+90522.2583693876 4.0640264 -1103.2366
+90523.25836943788 4.0639477 -1103.2168
+90524.25836948818 4.0639477 -1103.2959
+90525.25836953848 4.0639081 -1103.2761
+90526.25836958876 4.0640659 -1103.197
+90527.25836963904 4.0639477 -1103.2562
+90528.25836968934 4.0639477 -1103.2761
+90529.25836973963 4.0639477 -1103.2366
+90530.25836978992 4.0639873 -1103.3156
+90531.25836984022 4.0639873 -1103.2562
+90532.25836989052 4.0639477 -1103.2959
+90533.2583699408 4.0639477 -1103.197
+90534.25836999108 4.0640264 -1103.3156
+90535.25837004138 4.0639081 -1103.2761
+90536.25837009167 4.0639873 -1103.2562
+90537.25837014196 4.0639873 -1103.2562
+90538.25837019226 4.0639081 -1103.3353
+90539.25837024256 4.063869 -1103.2761
+90540.25837029284 4.063869 -1103.2761
+90541.25837034312 4.063869 -1103.2761
+90542.25837039342 4.063869 -1103.2959
+90543.25837044371 4.063869 -1103.2366
+90544.258370494 4.063869 -1103.2366
+90545.2583705443 4.0639081 -1103.2959
+90546.2583705946 4.0637507 -1103.2366
+90547.25837064488 4.0638294 -1103.1378
+90548.25837069516 4.0639477 -1103.197
+90549.25837074546 4.0637903 -1103.2959
+90550.25837079575 4.0638294 -1103.2562
+90551.25837084604 4.0637116 -1103.2168
+90552.25837089634 4.0637507 -1103.2168
+90553.25837094664 4.0637903 -1103.3156
+90554.25837099692 4.0638294 -1103.2562
+90555.2583710472 4.0637507 -1103.197
+90556.2583710975 4.0636721 -1103.2366
+90557.2583711478 4.0637116 -1103.2959
+90558.25837119808 4.063869 -1103.2959
+90559.25837124838 4.0637507 -1103.1576
+90560.25837129868 4.0639477 -1103.3156
+90561.25837134896 4.0637116 -1103.2366
+90562.25837139924 4.0637903 -1103.2562
+90563.25837144954 4.0637116 -1103.2959
+90564.25837149985 4.0637903 -1103.2366
+90565.25837155012 4.0637903 -1103.2761
+90566.25837160042 4.0637116 -1103.3156
+90567.25837165072 4.0637116 -1103.1576
+90568.258371701 4.0637903 -1103.2168
+90569.25837175128 4.0637507 -1103.2959
+90570.25837180158 4.0637903 -1103.2562
+90571.25837185189 4.0637507 -1103.2959
+90572.25837190216 4.0637116 -1103.2168
+90573.25837195246 4.0637116 -1103.1576
+90574.25837200276 4.0636721 -1103.2366
+90575.25837205304 4.0637507 -1103.2761
+90576.25837210332 4.0636325 -1103.2959
+90577.25837215362 4.0637507 -1103.1774
+90578.25837220393 4.0636721 -1103.2959
+90579.2583722542 4.0636721 -1103.1576
+90580.2583723045 4.0636325 -1103.2562
+90581.2583723548 4.0636721 -1103.2761
+90582.25837240508 4.0636721 -1103.2959
+90583.25837245536 4.0635538 -1103.2562
+90584.25837250566 4.0636721 -1103.2959
+90585.25837255597 4.0635934 -1103.2761
+90586.25837260624 4.0636325 -1103.2562
+90587.25837265654 4.0635934 -1103.3353
+90588.25837270684 4.0635934 -1103.3156
+90589.25837275712 4.0637507 -1103.2168
+90590.2583728074 4.0637116 -1103.197
+90591.2583728577 4.0636325 -1103.197
+90592.258372908 4.0636325 -1103.2366
+90593.25837295828 4.0635147 -1103.2366
+90594.25837300858 4.0634751 -1103.2959
+90595.25837305888 4.0635147 -1103.3156
+90596.25837310916 4.0635934 -1103.2959
+90597.25837315943 4.0635147 -1103.197
+90598.25837320974 4.0635538 -1103.2562
+90599.25837326005 4.0635538 -1103.3156
+90600.25837331032 4.0635147 -1103.2761
+90601.25837336062 4.0636721 -1103.2366
+90602.25837341092 4.0635538 -1103.2959
+90603.2583734612 4.0635147 -1103.197
+90604.25837351147 4.0635538 -1103.3156
+90605.25837356178 4.0634751 -1103.3156
+90606.25837361209 4.0635147 -1103.2761
+90607.25837366236 4.063436 -1103.2366
+90608.25837371266 4.0635538 -1103.2366
+90609.25837376296 4.0636325 -1103.2562
+90610.25837381324 4.0635147 -1103.2959
+90611.25837386351 4.063436 -1103.2366
+90612.25837391382 4.0635538 -1103.2761
+90613.25837396413 4.0633965 -1103.2562
+90614.2583740144 4.0634751 -1103.2761
+90615.2583740647 4.0635147 -1103.197
+90616.258374115 4.0634751 -1103.2168
+90617.25837416528 4.0633965 -1103.2959
+90618.25837421555 4.0634751 -1103.2761
+90619.25837426586 4.0634751 -1103.2959
+90620.25837431617 4.0634751 -1103.2562
+90621.25837436644 4.0633965 -1103.2562
+90622.25837441674 4.063436 -1103.2959
+90623.25837446704 4.0634751 -1103.197
+90624.25837451732 4.0633965 -1103.2562
+90625.2583745676 4.0633569 -1103.2366
+90626.2583746179 4.0633569 -1103.1774
+90627.2583746682 4.0633569 -1103.2366
+90628.25837471848 4.0633569 -1103.2959
+90629.25837476877 4.0634751 -1103.197
+90630.25837481908 4.0633178 -1103.2761
+90631.25837486936 4.0632782 -1103.197
+90632.25837491963 4.0633178 -1103.2761
+90633.25837496994 4.0632782 -1103.1774
+90634.25837502025 4.0632782 -1103.2562
+90635.25837507052 4.0633569 -1103.2366
+90636.2583751208 4.0633178 -1103.2366
+90637.25837517112 4.0633178 -1103.3353
+90638.2583752214 4.0633569 -1103.2562
+90639.25837527167 4.0632782 -1103.197
+90640.25837532198 4.0632391 -1103.2959
+90641.25837537229 4.0631995 -1103.2959
+90642.25837542256 4.0632782 -1103.2761
+90643.25837547284 4.0633569 -1103.2366
+90644.25837552316 4.0633569 -1103.1774
+90645.25837557344 4.063436 -1103.2562
+90646.25837562371 4.0633569 -1103.2366
+90647.25837567402 4.0633178 -1103.2366
+90648.25837572433 4.0632391 -1103.2761
+90649.2583757746 4.0632782 -1103.2168
+90650.25837582488 4.0633178 -1103.2366
+90651.2583758752 4.0632782 -1103.2366
+90652.25837592548 4.0632782 -1103.2562
+90653.25837597575 4.0631604 -1103.3551
+90654.25837602606 4.0633178 -1103.2761
+90655.25837607637 4.0632782 -1103.2168
+90656.25837612664 4.0632782 -1103.2366
+90657.25837617692 4.0631995 -1103.2366
+90658.25837622724 4.0631995 -1103.2168
+90659.25837627752 4.0631995 -1103.1774
+90660.2583763278 4.0632782 -1103.197
+90661.2583763781 4.0631995 -1103.2761
+90662.2583764284 4.0631995 -1103.2761
+90663.25837647868 4.0631604 -1103.2761
+90664.25837652896 4.0631995 -1103.2168
+90665.25837657928 4.0631208 -1103.2562
+90666.25837662956 4.0631995 -1103.1774
+90667.25837667983 4.0631995 -1103.2168
+90668.25837673014 4.0632391 -1103.2562
+90669.25837678045 4.0631208 -1103.3156
+90670.25837683072 4.0631995 -1103.2959
+90671.258376881 4.0631604 -1103.3551
+90672.25837693132 4.0631604 -1103.2168
+90673.2583769816 4.0631604 -1103.3353
+90674.25837703187 4.0630817 -1103.3156
+90675.25837708218 4.0630422 -1103.2959
+90676.25837713249 4.0631995 -1103.2366
+90677.25837718276 4.0631604 -1103.1774
+90678.25837723304 4.0630817 -1103.2959
+90679.25837728336 4.0630026 -1103.2761
+90680.25837733364 4.0630422 -1103.197
+90681.25837738391 4.0631208 -1103.2959
+90682.25837743422 4.0631208 -1103.2761
+90683.25837748453 4.0631208 -1103.2562
+90684.2583775348 4.0631208 -1103.2168
+90685.25837758508 4.0630026 -1103.2562
+90686.2583776354 4.0629635 -1103.1378
+90687.25837768568 4.0631208 -1103.2366
+90688.25837773595 4.0630026 -1103.197
+90689.25837778626 4.0631208 -1103.197
+90690.25837783657 4.0630026 -1103.1576
+90691.25837788684 4.0631208 -1103.3353
+90692.25837793712 4.0630026 -1103.2562
+90693.25837798744 4.0630026 -1103.2562
+90694.25837803772 4.0630817 -1103.2959
+90695.258378088 4.0630026 -1103.2959
+90696.2583781383 4.0630026 -1103.2366
+90697.2583781886 4.0630026 -1103.2366
+90698.25837823888 4.0629239 -1103.2562
+90699.25837828916 4.0629635 -1103.2959
+90700.25837833948 4.0630817 -1103.2366
+90701.25837838976 4.0630026 -1103.1576
+90702.25837844003 4.0631208 -1103.3551
+90703.25837849034 4.0628452 -1103.2761
+90704.25837854065 4.0630422 -1103.2366
+90705.25837859092 4.0628848 -1103.2562
+90706.2583786412 4.0630817 -1103.2761
+90707.25837869152 4.0629635 -1103.197
+90708.2583787418 4.0630026 -1103.2168
+90709.25837879207 4.0628848 -1103.2959
+90710.25837884238 4.0628848 -1103.2366
+90711.25837889269 4.0629635 -1103.2562
+90712.25837894296 4.0628848 -1103.2761
+90713.25837899324 4.0629635 -1103.197
+90714.25837904356 4.0628848 -1103.1378
+90715.25837909384 4.0628848 -1103.2168
+90716.25837914411 4.0629239 -1103.2168
+90717.25837919442 4.0629635 -1103.2761
+90718.25837924473 4.0629635 -1103.2761
+90719.258379295 4.0628848 -1103.2562
+90720.25837934528 4.0628061 -1103.2761
+90721.2583793956 4.0628061 -1103.2959
+90722.25837944588 4.0629239 -1103.2168
+90723.25837949615 4.0628452 -1103.2168
+90724.25837954646 4.062727 -1103.2366
+90725.25837959677 4.0627666 -1103.197
+90726.25837964704 4.0628061 -1103.2562
+90727.25837969732 4.0628452 -1103.2168
+90728.25837974764 4.0628061 -1103.1378
+90729.25837979792 4.0627666 -1103.2366
+90730.2583798482 4.0628848 -1103.2168
+90731.2583798985 4.0628848 -1103.2366
+90732.2583799488 4.0628061 -1103.2366
+90733.25837999908 4.0628452 -1103.1774
+90734.25838004936 4.0626879 -1103.2168
+90735.25838009968 4.0628061 -1103.2959
+90736.25838014996 4.0628061 -1103.2562
+90737.25838020023 4.0628061 -1103.2366
+90738.25838025054 4.0628848 -1103.2562
+90739.25838030085 4.0627666 -1103.2168
+90740.25838035112 4.0627666 -1103.197
+90741.2583804014 4.0627666 -1103.2366
+90742.25838045172 4.0628061 -1103.3156
+90743.258380502 4.0627666 -1103.1774
+90744.25838055227 4.0627666 -1103.3156
+90745.25838060258 4.0626879 -1103.1774
+90746.25838065289 4.0626483 -1103.2168
+90747.25838070316 4.062727 -1103.197
+90748.25838075344 4.0626879 -1103.2168
+90749.25838080376 4.0627666 -1103.1774
+90750.25838085404 4.0626879 -1103.2168
+90751.25838090431 4.0626483 -1103.0984
+90752.25838095462 4.0626483 -1103.2168
+90753.25838100493 4.0626092 -1103.2562
+90754.2583810552 4.0627666 -1103.3353
+90755.25838110548 4.0626483 -1103.2562
+90756.2583811558 4.0628061 -1103.2761
+90757.25838120608 4.0626879 -1103.2168
+90758.25838125635 4.0626483 -1103.2959
+90759.25838130666 4.0626483 -1103.2366
+90760.25838135697 4.0626092 -1103.3353
+90761.25838140724 4.0626092 -1103.2761
+90762.25838145752 4.0626092 -1103.2562
+90763.25838150784 4.0626879 -1103.197
+90764.25838155812 4.0626483 -1103.2761
+90765.2583816084 4.0626092 -1103.2761
+90766.2583816587 4.0626483 -1103.2168
+90767.258381709 4.0626092 -1103.2562
+90768.25838175928 4.0626092 -1103.2168
+90769.25838180956 4.0625305 -1103.1576
+90770.25838185988 4.0626879 -1103.2761
+90771.25838191016 4.0626092 -1103.2366
+90772.25838196043 4.0626092 -1103.2761
+90773.25838201074 4.0625696 -1103.2959
+90774.25838206105 4.0626092 -1103.3353
+90775.25838211132 4.0626483 -1103.2761
+90776.2583821616 4.0625305 -1103.1774
+90777.25838221192 4.0624909 -1103.2366
+90778.2583822622 4.0625305 -1103.2168
+90779.25838231247 4.0625696 -1103.2168
+90780.25838236278 4.0624909 -1103.2366
+90781.25838241309 4.0626092 -1103.2562
+90782.25838246336 4.0624123 -1103.2959
+90783.25838251364 4.0624518 -1103.2959
+90784.25838256394 4.0624909 -1103.1576
+90785.25838261424 4.0624909 -1103.1576
+90786.25838266451 4.0625305 -1103.2562
+90787.25838271482 4.0624518 -1103.2366
+90788.25838276513 4.0624123 -1103.1774
+90789.2583828154 4.0624518 -1103.3156
+90790.25838286568 4.0624909 -1103.2562
+90791.25838291598 4.0625305 -1103.197
+90792.25838296628 4.0624909 -1103.2366
+90793.25838301655 4.0624123 -1103.1774
+90794.25838306686 4.0624909 -1103.2366
+90795.25838311717 4.0623336 -1103.197
+90796.25838316744 4.0624123 -1103.2959
+90797.25838321772 4.0624123 -1103.2562
+90798.25838326802 4.0623727 -1103.2562
+90799.25838331832 4.0624518 -1103.2366
+90800.2583833686 4.062294 -1103.2562
+90801.2583834189 4.0623336 -1103.2168
+90802.2583834692 4.0623727 -1103.2168
+90803.25838351948 4.0623727 -1103.1576
+90804.25838356976 4.0624123 -1103.2761
+90805.25838362006 4.0623336 -1103.1774
+90806.25838367036 4.0624123 -1103.2366
+90807.25838372063 4.0624909 -1103.3353
+90808.25838377094 4.0623727 -1103.1576
+90809.25838382124 4.0623336 -1103.197
+90810.25838387152 4.062294 -1103.2959
+90811.2583839218 4.0623336 -1103.2366
+90812.2583839721 4.062294 -1103.2366
+90813.2583840224 4.0624518 -1103.2366
+90814.25838407267 4.062294 -1103.197
+90815.25838412298 4.0623727 -1103.2366
+90816.25838417328 4.0622153 -1103.1774
+90817.25838422356 4.062294 -1103.2168
+90818.25838427384 4.0623727 -1103.2761
+90819.25838432414 4.0623336 -1103.2761
+90820.25838437444 4.0623336 -1103.1378
+90821.25838442471 4.0622153 -1103.2761
+90822.25838447502 4.0623336 -1103.2959
+90823.25838452532 4.062294 -1103.2562
+90824.2583845756 4.0623336 -1103.2366
+90825.25838462588 4.062294 -1103.1576
+90826.25838467618 4.0623336 -1103.2761
+90827.25838472648 4.0622153 -1103.1576
+90828.25838477675 4.0622153 -1103.2761
+90829.25838482706 4.0622549 -1103.2168
+90830.25838487736 4.0621762 -1103.2562
+90831.25838492764 4.0621367 -1103.197
+90832.25838497792 4.0622549 -1103.2168
+90833.25838502822 4.062294 -1103.2761
+90834.25838507852 4.0622153 -1103.2761
+90835.2583851288 4.0621762 -1103.2366
+90836.2583851791 4.0622549 -1103.2168
+90837.2583852294 4.0622153 -1103.1576
+90838.25838527968 4.0621762 -1103.1774
+90839.25838532996 4.0621762 -1103.1774
+90840.25838538026 4.0620971 -1103.2366
+90841.25838543056 4.0622153 -1103.3353
+90842.25838548085 4.0620971 -1103.2761
+90843.25838553114 4.0622549 -1103.2168
+90844.25838558144 4.0621762 -1103.2959
+90845.25838563172 4.0621367 -1103.2366
+90846.258385682 4.0621367 -1103.1774
+90847.2583857323 4.0622153 -1103.2168
+90848.2583857826 4.0621762 -1103.2761
+90849.25838583289 4.0621762 -1103.3156
+90850.25838588318 4.0621367 -1103.2761
+90851.25838593348 4.0620971 -1103.2761
+90852.25838598376 4.062058 -1103.2562
+90853.25838603404 4.0620971 -1103.1774
+90854.25838608434 4.062058 -1103.2761
+90855.25838613464 4.0620971 -1103.197
+90856.25838618493 4.062058 -1103.2562
+90857.25838623522 4.0620971 -1103.2562
+90858.25838628552 4.0620971 -1103.2562
+90859.2583863358 4.0620971 -1103.2562
+90860.25838638608 4.0619793 -1103.2366
+90861.25838643638 4.0620971 -1103.2562
+90862.25838648668 4.0620184 -1103.197
+90863.25838653697 4.0620184 -1103.2366
+90864.25838658726 4.0620971 -1103.2366
+90865.25838663756 4.062058 -1103.2761
+90866.25838668784 4.0619397 -1103.197
+90867.25838673812 4.061861 -1103.2168
+90868.25838678842 4.0620184 -1103.2761
+90869.25838683872 4.0619793 -1103.2562
+90870.258386889 4.061861 -1103.197
+90871.2583869393 4.0619397 -1103.2562
+90872.2583869896 4.0619793 -1103.197
+90873.25838703988 4.0619397 -1103.2562
+90874.25838709016 4.0620184 -1103.2761
+90875.25838714046 4.0619006 -1103.2761
+90876.25838719076 4.0619006 -1103.2761
+90877.25838724105 4.0619793 -1103.2761
+90878.25838729134 4.0619397 -1103.2562
+90879.25838734164 4.0619397 -1103.2562
+90880.25838739192 4.061861 -1103.2761
+90881.2583874422 4.0619006 -1103.2168
+90882.2583874925 4.0619397 -1103.2168
+90883.2583875428 4.061861 -1103.2959
+90884.25838759309 4.061861 -1103.2959
+90885.25838764338 4.0620971 -1103.2959
+90886.25838769368 4.0620184 -1103.2562
+90887.25838774396 4.0619006 -1103.3156
+90888.25838779424 4.061861 -1103.3353
+90889.25838784454 4.061861 -1103.1774
+90890.25838789484 4.0619006 -1103.3353
+90891.25838794513 4.061861 -1103.2761
+90892.25838799542 4.0619397 -1103.2168
+90893.25838804572 4.061861 -1103.2366
+90894.258388096 4.0619006 -1103.2366
+90895.25838814628 4.0618219 -1103.2959
+90896.25838819658 4.0619006 -1103.2761
+90897.25838824688 4.061861 -1103.1576
+90898.25838829717 4.0617824 -1103.1576
+90899.25838834746 4.0617428 -1103.1378
+90900.25838839776 4.0617428 -1103.3156
+90901.25838844804 4.0619006 -1103.2168
+90902.25838849832 4.061861 -1103.2168
+90903.25838854862 4.0617824 -1103.197
+90904.25838859892 4.0618219 -1103.2366
+90905.2583886492 4.0617428 -1103.2168
+90906.2583886995 4.0617428 -1103.1774
+90907.2583887498 4.0617824 -1103.2761
+90908.25838880008 4.0616641 -1103.2761
+90909.25838885036 4.0618219 -1103.2562
+90910.25838890066 4.0617037 -1103.2366
+90911.25838895096 4.061861 -1103.197
+90912.25838900125 4.0617824 -1103.2366
+90913.25838905154 4.0617037 -1103.2366
+90914.25838910184 4.0617824 -1103.2366
+90915.25838915212 4.0617428 -1103.2366
+90916.2583892024 4.0617037 -1103.2562
+90917.2583892527 4.0615854 -1103.2366
+90918.258389303 4.0617824 -1103.2761
+90919.25838935329 4.0618219 -1103.2959
+90920.25838940358 4.0616641 -1103.1774
+90921.25838945388 4.0616641 -1103.2959
+90922.25838950416 4.0617037 -1103.2366
+90923.25838955444 4.0616641 -1103.1774
+90924.25838960474 4.061625 -1103.2366
+90925.25838965503 4.0615854 -1103.2562
+90926.25838970533 4.0617037 -1103.2168
+90927.25838975562 4.061625 -1103.1774
+90928.25838980592 4.061625 -1103.1774
+90929.2583898562 4.0616641 -1103.2562
+90930.25838990648 4.0615854 -1103.2562
+90931.25838995678 4.0615854 -1103.1774
+90932.25839000707 4.0617037 -1103.2366
+90933.25839005737 4.0617037 -1103.2168
+90934.25839010766 4.061625 -1103.2761
+90935.25839015796 4.0615067 -1103.2761
+90936.25839020824 4.061625 -1103.1774
+90937.25839025852 4.0616641 -1103.3156
+90938.25839030882 4.061625 -1103.2562
+90939.25839035911 4.0615854 -1103.2761
+90940.2583904094 4.0615463 -1103.2761
+90941.2583904597 4.0615463 -1103.2366
+90942.25839051 4.0615854 -1103.1576
+90943.25839056028 4.0615854 -1103.2562
+90944.25839061056 4.0615854 -1103.2562
+90945.25839066086 4.061625 -1103.1774
+90946.25839071115 4.0614672 -1103.1576
+90947.25839076145 4.0615463 -1103.3156
+90948.25839081174 4.0615067 -1103.2366
+90949.25839086204 4.0615067 -1103.2959
+90950.25839091232 4.0615463 -1103.2168
+90951.2583909626 4.0614672 -1103.2366
+90952.2583910129 4.0615067 -1103.2562
+90953.2583910632 4.0614672 -1103.197
+90954.25839111349 4.0615854 -1103.2168
+90955.25839116378 4.0614281 -1103.3156
+90956.25839121408 4.0615463 -1103.1576
+90957.25839126436 4.0615463 -1103.2761
+90958.25839131464 4.0615067 -1103.2562
+90959.25839136494 4.0614281 -1103.1576
+90960.25839141523 4.0615463 -1103.1774
+90961.25839146553 4.0613885 -1103.3156
+90962.25839151582 4.0613885 -1103.197
+90963.25839156612 4.0614281 -1103.2366
+90964.2583916164 4.0614281 -1103.2366
+90965.25839166668 4.0615067 -1103.2168
+90966.25839171698 4.0614672 -1103.2562
+90967.25839176727 4.0614281 -1103.2366
+90968.25839181757 4.0614672 -1103.3353
+90969.25839186786 4.0615067 -1103.2366
+90970.25839191816 4.0614672 -1103.2761
+90971.25839196844 4.0615067 -1103.2168
+90972.25839201872 4.0613494 -1103.1378
+90973.25839206902 4.0614281 -1103.2959
+90974.25839211931 4.0613885 -1103.2761
+90975.2583921696 4.0613494 -1103.2366
+90976.2583922199 4.0613494 -1103.2562
+90977.2583922702 4.0613098 -1103.2761
+90978.25839232048 4.0613885 -1103.1774
+90979.25839237076 4.0613885 -1103.1774
+90980.25839242106 4.0613885 -1103.197
+90981.25839247135 4.0613885 -1103.197
+90982.25839252165 4.0612707 -1103.2562
+90983.25839257194 4.0614281 -1103.2959
+90984.25839262224 4.0613494 -1103.2366
+90985.25839267252 4.0612707 -1103.2959
+90986.2583927228 4.0613885 -1103.2562
+90987.2583927731 4.0613098 -1103.2959
+90988.2583928234 4.0612311 -1103.2562
+90989.25839287369 4.0613098 -1103.3353
+90990.25839292398 4.0613098 -1103.197
+90991.25839297428 4.0612707 -1103.2761
+90992.25839302456 4.0611916 -1103.197
+90993.25839307484 4.0613098 -1103.2366
+90994.25839312514 4.0612707 -1103.2366
+90995.25839317543 4.0612311 -1103.2761
+90996.25839322573 4.0612311 -1103.197
+90997.25839327602 4.0611525 -1103.2959
+90998.25839332632 4.0612311 -1103.2562
+90999.2583933766 4.0611916 -1103.3156
+91000.25839342688 4.0611916 -1103.1576
+91001.25839347718 4.0611916 -1103.2562
+91002.25839352747 4.0612707 -1103.2366
+91003.25839357777 4.0611525 -1103.1774
+91004.25839362806 4.0611525 -1103.2761
+91005.25839367836 4.0611129 -1103.197
+91006.25839372864 4.0612707 -1103.2562
+91007.25839377892 4.0611916 -1103.197
+91008.25839382922 4.0612707 -1103.2168
+91009.25839387951 4.0611916 -1103.2959
+91010.2583939298 4.0611916 -1103.1774
+91011.2583939801 4.0612707 -1103.2761
+91012.2583940304 4.0611129 -1103.2168
+91013.25839408068 4.0610738 -1103.2366
+91014.25839413096 4.0611129 -1103.197
+91015.25839418126 4.0611525 -1103.2366
+91016.25839423155 4.0611525 -1103.2959
+91017.25839428185 4.0611916 -1103.1576
+91018.25839433214 4.0611525 -1103.197
+91019.25839438244 4.0611525 -1103.2168
+91020.25839443272 4.0610738 -1103.197
+91021.258394483 4.0611129 -1103.2761
+91022.2583945333 4.0611129 -1103.1774
+91023.2583945836 4.0610342 -1103.2366
+91024.25839463389 4.0610342 -1103.2168
+91025.25839468418 4.0611525 -1103.2761
+91026.25839473448 4.0610342 -1103.2168
+91027.25839478476 4.0610738 -1103.197
+91028.25839483504 4.0611129 -1103.2959
+91029.25839488534 4.0609555 -1103.2168
+91030.25839493563 4.0611916 -1103.3156
+91031.25839498593 4.0610738 -1103.2366
+91032.25839503622 4.0610342 -1103.2168
+91033.25839508652 4.0609951 -1103.2562
+91034.2583951368 4.0609951 -1103.197
+91035.25839518708 4.0609951 -1103.2959
+91036.25839523738 4.0609951 -1103.2562
+91037.25839528767 4.0610738 -1103.2761
+91038.25839533797 4.0609951 -1103.1774
+91039.25839538826 4.0609951 -1103.197
+91040.25839543856 4.0608768 -1103.3551
+91041.25839548884 4.0608768 -1103.2168
+91042.25839553912 4.0609555 -1103.2562
+91043.25839558942 4.0609951 -1103.2761
+91044.25839563971 4.0609951 -1103.197
+91045.25839569 4.0609951 -1103.2959
+91046.2583957403 4.0610342 -1103.2366
+91047.2583957906 4.0609951 -1103.2959
+91048.25839584088 4.0609164 -1103.1774
+91049.25839589116 4.0609951 -1103.2168
+91050.25839594146 4.0609164 -1103.1774
+91051.25839599175 4.0609555 -1103.2761
+91052.25839604205 4.0609555 -1103.2168
+91053.25839609234 4.0608768 -1103.197
+91054.25839614264 4.0609164 -1103.2366
+91055.25839619292 4.0608768 -1103.3156
+91056.2583962432 4.0609164 -1103.2366
+91057.2583962935 4.0609164 -1103.2168
+91058.2583963438 4.0608768 -1103.197
+91059.25839639409 4.0609164 -1103.1774
+91060.25839644438 4.0609951 -1103.2168
+91061.25839649468 4.0607982 -1103.2562
+91062.25839654496 4.0608768 -1103.2761
+91063.25839659524 4.0608373 -1103.2366
+91064.25839664554 4.0607586 -1103.2168
+91065.25839669583 4.0607586 -1103.197
+91066.25839674613 4.0608768 -1103.2959
+91067.25839679642 4.0608768 -1103.2168
+91068.25839684672 4.0608373 -1103.2761
+91069.258396897 4.0608373 -1103.1576
+91070.25839694728 4.0608373 -1103.2562
+91071.25839699758 4.0607586 -1103.2168
+91072.25839704787 4.0607982 -1103.2959
+91073.25839709817 4.0608373 -1103.1774
+91074.25839714846 4.0607586 -1103.2761
+91075.25839719876 4.0607586 -1103.2761
+91076.25839724904 4.0607586 -1103.2562
+91077.25839729932 4.0607586 -1103.2168
+91078.25839734962 4.0607195 -1103.2366
+91079.25839739991 4.0607982 -1103.2761
+91080.2583974502 4.0606799 -1103.2366
+91081.2583975005 4.0608373 -1103.2959
+91082.2583975508 4.0606799 -1103.2562
+91083.25839760108 4.0607586 -1103.2168
+91084.25839765136 4.0606799 -1103.197
+91085.25839770166 4.0607195 -1103.2761
+91086.25839775195 4.0607586 -1103.2562
+91087.25839780224 4.0607195 -1103.1182
+91088.25839785254 4.0607195 -1103.2959
+91089.25839790284 4.0606799 -1103.2761
+91090.25839795312 4.0606799 -1103.3156
+91091.2583980034 4.0606012 -1103.1774
+91092.2583980537 4.0606408 -1103.1774
+91093.258398104 4.0606408 -1103.2959
+91094.25839815428 4.0606408 -1103.2959
+91095.25839820458 4.0607195 -1103.2959
+91096.25839825488 4.0607195 -1103.1576
+91097.25839830516 4.0606408 -1103.197
+91098.25839835544 4.0605617 -1103.2959
+91099.25839840574 4.0606408 -1103.2562
+91100.25839845603 4.0606799 -1103.2761
+91101.25839850632 4.0606799 -1103.2959
+91102.25839855662 4.0606012 -1103.2761
+91103.25839860692 4.0605617 -1103.2761
+91104.2583986572 4.0605617 -1103.197
+91105.25839870748 4.0606408 -1103.3156
+91106.25839875778 4.0606799 -1103.197
+91107.25839880807 4.0606799 -1103.2562
+91108.25839885836 4.0606012 -1103.2562
+91109.25839890866 4.0606012 -1103.2761
+91110.25839895896 4.0605226 -1103.2168
+91111.25839900924 4.0605226 -1103.2761
+91112.25839905952 4.0606012 -1103.197
+91113.25839910982 4.0606408 -1103.197
+91114.25839916011 4.0605617 -1103.2366
+91115.2583992104 4.0605226 -1103.2761
+91116.2583992607 4.0604043 -1103.2761
+91117.258399311 4.0606012 -1103.1576
+91118.25839936128 4.0605617 -1103.2168
+91119.25839941156 4.060483 -1103.1774
+91120.25839946186 4.0605226 -1103.2562
+91121.25839951215 4.0604439 -1103.1774
+91122.25839956244 4.0605226 -1103.2562
+91123.25839961274 4.0604439 -1103.197
+91124.25839966304 4.0606408 -1103.2168
+91125.25839971332 4.0605617 -1103.2168
+91126.2583997636 4.0604043 -1103.2562
+91127.2583998139 4.0605226 -1103.2562
+91128.2583998642 4.0604439 -1103.1774
+91129.25839991448 4.060483 -1103.2959
+91130.25839996478 4.060483 -1103.2168
+91131.25840001508 4.0603256 -1103.2562
+91132.25840006536 4.060483 -1103.3156
+91133.25840011564 4.0603256 -1103.2761
+91134.25840016594 4.0605226 -1103.2366
+91135.25840021623 4.0604043 -1103.2959
+91136.25840026652 4.0605226 -1103.3156
+91137.25840031682 4.0603652 -1103.197
+91138.25840036712 4.0604043 -1103.2761
+91139.2584004174 4.0604439 -1103.2562
+91140.25840046768 4.0604439 -1103.2562
+91141.25840051798 4.0604439 -1103.2168
+91142.25840056827 4.0603652 -1103.2562
+91143.25840061856 4.0604439 -1103.2959
+91144.25840066886 4.0603256 -1103.2366
+91145.25840071916 4.0603256 -1103.2366
+91146.25840076944 4.0603256 -1103.2366
+91147.25840081972 4.0603256 -1103.3156
+91148.25840087002 4.0603652 -1103.3353
+91149.25840092031 4.0603652 -1103.2562
+91150.2584009706 4.0603652 -1103.2562
+91151.2584010209 4.0603256 -1103.2562
+91152.2584010712 4.0603652 -1103.2168
+91153.25840112148 4.0603652 -1103.2366
+91154.25840117176 4.0602074 -1103.197
+91155.25840122206 4.0602469 -1103.2562
+91156.25840127235 4.0602074 -1103.2168
+91157.25840132264 4.0602469 -1103.2366
+91158.25840137294 4.0602469 -1103.2168
+91159.25840142324 4.0602865 -1103.2562
+91160.25840147352 4.0602865 -1103.2366
+91161.2584015238 4.0602865 -1103.2366
+91162.2584015741 4.0604043 -1103.2366
+91163.2584016244 4.0602865 -1103.2168
+91164.25840167468 4.0602469 -1103.2168
+91165.25840172498 4.0602469 -1103.197
+91166.25840177528 4.0602074 -1103.1774
+91167.25840182556 4.0602074 -1103.2366
+91168.25840187584 4.0602074 -1103.2562
+91169.25840192614 4.0602074 -1103.2761
+91170.25840197645 4.0602074 -1103.2959
+91171.25840202672 4.0602865 -1103.2562
+91172.25840207702 4.0600896 -1103.2562
+91173.25840212732 4.0602865 -1103.3156
+91174.2584021776 4.0601287 -1103.197
+91175.25840222788 4.0602074 -1103.1182
+91176.25840227818 4.0601683 -1103.2168
+91177.25840232849 4.0602074 -1103.1774
+91178.25840237876 4.0601683 -1103.2168
+91179.25840242906 4.0602074 -1103.2959
+91180.25840247936 4.0602074 -1103.1774
+91181.25840252964 4.0602469 -1103.197
+91182.25840257992 4.0601287 -1103.2168
+91183.25840263022 4.0600896 -1103.3551
+91184.25840268053 4.0601287 -1103.197
+91185.2584027308 4.0601287 -1103.2366
+91186.2584027811 4.0601287 -1103.197
+91187.2584028314 4.06005 -1103.2562
+91188.25840288168 4.0601287 -1103.2562
+91189.25840293196 4.0600896 -1103.2168
+91190.25840298226 4.0600896 -1103.2366
+91191.25840303257 4.0600896 -1103.2366
+91192.25840308284 4.0601287 -1103.2366
+91193.25840313314 4.0601287 -1103.2168
+91194.25840318344 4.0600109 -1103.2959
+91195.25840323372 4.0601287 -1103.2562
+91196.258403284 4.06005 -1103.2761
+91197.2584033343 4.0601287 -1103.2562
+91198.2584033846 4.06005 -1103.2366
+91199.25840343488 4.0601287 -1103.2562
+91200.25840348518 4.0600109 -1103.2959
+91201.25840353548 4.06005 -1103.3156
+91202.25840358576 4.06005 -1103.2761
+91203.25840363603 4.0600896 -1103.2562
+91204.25840368634 4.0600109 -1103.2366
+91205.25840373665 4.0599318 -1103.2959
+91206.25840378692 4.0598927 -1103.3353
+91207.25840383722 4.0599713 -1103.2959
+91208.25840388752 4.0600109 -1103.197
+91209.2584039378 4.0598927 -1103.3156
+91210.25840398807 4.059814 -1103.2366
+91211.25840403838 4.0600109 -1103.2761
+91212.25840408869 4.0600109 -1103.2761
+91213.25840413896 4.0599713 -1103.2761
+91214.25840418926 4.0600109 -1103.2562
+91215.25840423956 4.0598927 -1103.2959
+91216.25840428984 4.0598927 -1103.2761
+91217.25840434011 4.0599318 -1103.2562
+91218.25840439042 4.0598927 -1103.2366
+91219.25840444073 4.0598927 -1103.2366
+91220.258404491 4.0598927 -1103.2168
+91221.2584045413 4.059814 -1103.2366
+91222.2584045916 4.0598531 -1103.2959
+91223.25840464188 4.0598927 -1103.2366
+91224.25840469215 4.0598531 -1103.1378
+91225.25840474246 4.0599318 -1103.1774
+91226.25840479277 4.0598927 -1103.2562
+91227.25840484304 4.0598531 -1103.2761
+91228.25840489333 4.059814 -1103.2562
+91229.25840494364 4.059814 -1103.197
+91230.25840499392 4.0599318 -1103.3353
+91231.2584050442 4.059814 -1103.2168
+91232.2584050945 4.0598531 -1103.3156
+91233.2584051448 4.059814 -1103.2168
+91234.25840519508 4.0598927 -1103.2366
+91235.25840524536 4.0598531 -1103.2562
+91236.25840529568 4.0597744 -1103.1774
+91237.25840534596 4.0596561 -1103.2168
+91238.25840539623 4.059814 -1103.1576
+91239.25840544654 4.0598531 -1103.2168
+91240.25840549685 4.0598531 -1103.2562
+91241.25840554712 4.0597353 -1103.1576
+91242.2584055974 4.0598927 -1103.2761
+91243.25840564772 4.059814 -1103.3156
+91244.258405698 4.0597744 -1103.2366
+91245.25840574827 4.0596561 -1103.2168
+91246.25840579858 4.0597744 -1103.197
+91247.25840584889 4.059814 -1103.2366
+91248.25840589916 4.0596957 -1103.2959
+91249.25840594944 4.0596561 -1103.1774
+91250.25840599976 4.0596561 -1103.2366
+91251.25840605004 4.0596561 -1103.2168
+91252.25840610031 4.0597353 -1103.2168
+91253.25840615062 4.0596957 -1103.197
+91254.25840620093 4.0595775 -1103.1774
+91255.2584062512 4.0597353 -1103.2761
+91256.25840630148 4.0596957 -1103.2562
+91257.2584063518 4.0596957 -1103.2168
+91258.25840640208 4.0596561 -1103.3156
+91259.25840645235 4.0596561 -1103.2959
+91260.25840650266 4.0595384 -1103.2959
+91261.25840655297 4.0596561 -1103.2366
+91262.25840660324 4.0597353 -1103.2562
+91263.25840665352 4.059617 -1103.2366
+91264.25840670384 4.059617 -1103.2366
+91265.25840675412 4.0596561 -1103.2168
+91266.2584068044 4.0596561 -1103.3156
+91267.2584068547 4.0596957 -1103.2562
+91268.258406905 4.059617 -1103.2168
+91269.25840695528 4.0595775 -1103.2761
+91270.25840700556 4.0595384 -1103.2366
+91271.25840705588 4.0595775 -1103.2562
+91272.25840710616 4.059617 -1103.2168
+91273.25840715643 4.0595775 -1103.2168
+91274.25840720674 4.0595384 -1103.2168
+91275.25840725705 4.059617 -1103.2959
+91276.25840730732 4.0595775 -1103.2959
+91277.2584073576 4.0595384 -1103.2562
+91278.25840740792 4.0596561 -1103.2562
+91279.2584074582 4.0595384 -1103.1378
+91280.25840750847 4.0595384 -1103.2959
+91281.25840755878 4.0595384 -1103.197
+91282.25840760909 4.0595384 -1103.2366
+91283.25840765936 4.0595775 -1103.2168
+91284.25840770964 4.0595384 -1103.2366
+91285.25840775996 4.0595384 -1103.2366
+91286.25840781024 4.0594988 -1103.2366
+91287.25840786051 4.0595775 -1103.2366
+91288.25840791082 4.0595775 -1103.1378
+91289.25840796113 4.0595384 -1103.2761
+91290.2584080114 4.0594988 -1103.2959
+91291.25840806168 4.0594988 -1103.2562
+91292.258408112 4.0594988 -1103.2761
+91293.25840816228 4.0594201 -1103.2562
+91294.25840821255 4.0594597 -1103.3156
+91295.25840826286 4.0594988 -1103.2366
+91296.25840831317 4.0594201 -1103.2761
+91297.25840836344 4.0594597 -1103.2366
+91298.25840841372 4.0594988 -1103.2366
+91299.25840846404 4.0594988 -1103.2959
+91300.25840851432 4.0594597 -1103.2366
+91301.2584085646 4.0594597 -1103.197
+91302.2584086149 4.0595775 -1103.2168
+91303.2584086652 4.059381 -1103.2366
+91304.25840871548 4.059381 -1103.2168
+91305.25840876576 4.0593414 -1103.1576
+91306.25840881608 4.0594201 -1103.2562
+91307.25840886636 4.0594201 -1103.2761
+91308.25840891663 4.0592628 -1103.2366
+91309.25840896694 4.0594988 -1103.2562
+91310.25840901725 4.059381 -1103.1378
+91311.25840906752 4.059381 -1103.2168
+91312.2584091178 4.0594597 -1103.197
+91313.25840916812 4.059381 -1103.2562
+91314.2584092184 4.059381 -1103.2366
+91315.25840926867 4.0592232 -1103.1576
+91316.25840931898 4.0593019 -1103.2562
+91317.25840936929 4.0593019 -1103.2366
+91318.25840941956 4.0593019 -1103.1182
+91319.25840946984 4.0592232 -1103.2562
+91320.25840952016 4.0592628 -1103.2366
+91321.25840957044 4.0592628 -1103.2168
+91322.25840962071 4.0593414 -1103.2761
+91323.25840967102 4.0592232 -1103.2761
+91324.25840972133 4.0593414 -1103.2366
+91325.2584097716 4.0593019 -1103.197
+91326.25840982188 4.0592232 -1103.3156
+91327.2584098722 4.0592232 -1103.2562
+91328.25840992248 4.0592628 -1103.2959
+91329.25840997275 4.0592628 -1103.2562
+91330.25841002306 4.0592628 -1103.2761
+91331.25841007337 4.0591445 -1103.2366
+91332.25841012364 4.0592232 -1103.2366
+91333.25841017392 4.0591841 -1103.3353
+91334.25841022424 4.0591841 -1103.2562
+91335.25841027452 4.0591841 -1103.2168
+91336.2584103248 4.0591841 -1103.2761
+91337.2584103751 4.0591054 -1103.1774
+91338.2584104254 4.0591445 -1103.2761
+91339.25841047568 4.0591841 -1103.1378
+91340.25841052596 4.0591054 -1103.2366
+91341.25841057628 4.0591445 -1103.2168
+91342.25841062656 4.0591445 -1103.2366
+91343.25841067683 4.0591445 -1103.2366
+91344.25841072714 4.0591054 -1103.2562
+91345.25841077745 4.0590262 -1103.2959
+91346.25841082772 4.0591054 -1103.2168
+91347.258410878 4.0590658 -1103.2562
+91348.25841092832 4.0590262 -1103.1378
+91349.2584109786 4.0590658 -1103.2366
+91350.25841102887 4.0590658 -1103.2168
+91351.25841107918 4.0591445 -1103.2168
+91352.25841112949 4.0591445 -1103.1182
+91353.25841117976 4.0591054 -1103.2562
+91354.25841123004 4.0590658 -1103.1576
+91355.25841128036 4.0590262 -1103.2562
+91356.25841133064 4.0590658 -1103.1576
+91357.25841138091 4.0590658 -1103.2761
+91358.25841143122 4.0590658 -1103.197
+91359.25841148153 4.0589476 -1103.2366
+91360.2584115318 4.0591054 -1103.2168
+91361.25841158208 4.0590658 -1103.3156
+91362.2584116324 4.0589476 -1103.2366
+91363.25841168268 4.0591054 -1103.2761
+91364.25841173295 4.0589085 -1103.2366
+91365.25841178326 4.0589476 -1103.3353
+91366.25841183357 4.0590658 -1103.2761
+91367.25841188384 4.0589871 -1103.2366
+91368.25841193412 4.0590262 -1103.1774
+91369.25841198444 4.0589085 -1103.2761
+91370.25841203472 4.0589476 -1103.197
+91371.258412085 4.0590262 -1103.197
+91372.2584121353 4.0590658 -1103.3156
+91373.2584121856 4.0589085 -1103.2562
+91374.25841223588 4.0588689 -1103.2366
+91375.25841228616 4.0590262 -1103.2168
+91376.25841233648 4.0588689 -1103.2168
+91377.25841238676 4.0589476 -1103.1378
+91378.25841243703 4.0589871 -1103.2168
+91379.25841248734 4.0589085 -1103.2366
+91380.25841253765 4.0589085 -1103.2562
+91381.25841258792 4.0588298 -1103.2168
+91382.2584126382 4.0589085 -1103.2168
+91383.2584126885 4.0589871 -1103.197
+91384.2584127388 4.0588689 -1103.1576
+91385.25841278907 4.0588298 -1103.1576
+91386.25841283938 4.0589871 -1103.3156
+91387.25841288969 4.0588298 -1103.2562
+91388.25841293996 4.0589085 -1103.197
+91389.25841299024 4.0589085 -1103.2761
+91390.25841304054 4.0589085 -1103.2366
+91391.25841309084 4.0588689 -1103.2366
+91392.25841314111 4.0588298 -1103.1774
+91393.25841319142 4.0588298 -1103.2366
+91394.25841324173 4.0588689 -1103.2959
+91395.258413292 4.0588689 -1103.2168
+91396.25841334228 4.0588298 -1103.2366
+91397.25841339258 4.0588298 -1103.2761
+91398.25841344288 4.0588298 -1103.2366
+91399.25841349315 4.0587511 -1103.2959
+91400.25841354346 4.0587902 -1103.2562
+91401.25841359376 4.0587511 -1103.2366
+91402.25841364404 4.0588298 -1103.2959
+91403.25841369432 4.0587902 -1103.2959
+91404.25841374462 4.0587902 -1103.2168
+91405.25841379492 4.0587115 -1103.2366
+91406.2584138452 4.0587115 -1103.3353
+91407.2584138955 4.0587115 -1103.197
+91408.2584139458 4.0588298 -1103.2562
+91409.25841399608 4.0587902 -1103.197
+91410.25841404636 4.0586329 -1103.1576
+91411.25841409666 4.0586329 -1103.2761
+91412.25841414696 4.058672 -1103.3353
+91413.25841419723 4.0587511 -1103.197
+91414.25841424754 4.0587511 -1103.1774
+91415.25841429784 4.0587115 -1103.2168
+91416.25841434812 4.0587902 -1103.1774
+91417.2584143984 4.0587511 -1103.1378
+91418.2584144487 4.0586329 -1103.197
+91419.258414499 4.0587115 -1103.1774
+91420.25841454927 4.0585933 -1103.197
+91421.25841459958 4.058672 -1103.1774
+91422.25841464988 4.058672 -1103.2761
+91423.25841470016 4.0586329 -1103.2562
+91424.25841475044 4.0587115 -1103.1774
+91425.25841480074 4.0586329 -1103.2761
+91426.25841485104 4.0586329 -1103.2562
+91427.25841490131 4.0587115 -1103.2562
+91428.25841495162 4.0586329 -1103.2366
+91429.25841500192 4.0585933 -1103.2366
+91430.2584150522 4.0585542 -1103.2366
+91431.25841510248 4.0586329 -1103.1576
+91432.25841515278 4.0586329 -1103.2366
+91433.25841520308 4.0585933 -1103.3156
+91434.25841525337 4.0586329 -1103.2366
+91435.25841530366 4.0585933 -1103.197
+91436.25841535396 4.0585933 -1103.2366
+91437.25841540424 4.0584755 -1103.2959
+91438.25841545452 4.0585933 -1103.2761
+91439.25841550482 4.0585146 -1103.2562
+91440.25841555512 4.0585146 -1103.197
+91441.2584156054 4.0585542 -1103.2366
+91442.2584156557 4.0584755 -1103.0785
+91443.258415706 4.058672 -1103.2562
+91444.25841575628 4.0585542 -1103.1774
+91445.25841580656 4.0584755 -1103.197
+91446.25841585686 4.0585542 -1103.2366
+91447.25841590716 4.0585542 -1103.2168
+91448.25841595745 4.0583572 -1103.2168
+91449.25841600774 4.0584755 -1103.2168
+91450.25841605804 4.0584755 -1103.2168
+91451.25841610832 4.0584359 -1103.2761
+91452.2584161586 4.0585146 -1103.2366
+91453.2584162089 4.0584755 -1103.2366
+91454.2584162592 4.0583963 -1103.2168
+91455.25841630949 4.0585146 -1103.2562
+91456.25841635978 4.0584359 -1103.2168
+91457.25841641008 4.0585146 -1103.2366
+91458.25841646036 4.0584359 -1103.2168
+91459.25841651064 4.0585542 -1103.3353
+91460.25841656094 4.0583963 -1103.2366
+91461.25841661124 4.0583572 -1103.197
+91462.25841666153 4.0583963 -1103.2761
+91463.25841671182 4.0583177 -1103.3156
+91464.25841676212 4.0583177 -1103.2959
+91465.2584168124 4.0583963 -1103.2959
+91466.25841686268 4.0584359 -1103.3156
+91467.25841691298 4.0583572 -1103.2366
+91468.25841696328 4.0583177 -1103.1774
+91469.25841701357 4.0583963 -1103.197
+91470.25841706386 4.0583177 -1103.2562
+91471.25841711416 4.0583963 -1103.197
+91472.25841716444 4.0583572 -1103.2761
+91473.25841721472 4.0583177 -1103.2761
+91474.25841726502 4.0582786 -1103.2366
+91475.25841731532 4.0583177 -1103.2366
+91476.2584173656 4.058239 -1103.2168
+91477.2584174159 4.0582786 -1103.2761
+91478.2584174662 4.0583572 -1103.2366
+91479.25841751648 4.0583177 -1103.1774
+91480.25841756676 4.0583177 -1103.1576
+91481.25841761706 4.0582786 -1103.2562
+91482.25841766736 4.0581999 -1103.2959
+91483.25841771765 4.058239 -1103.2366
+91484.25841776794 4.0581999 -1103.2959
+91485.25841781824 4.0583177 -1103.1774
+91486.25841786852 4.058239 -1103.2959
+91487.2584179188 4.058239 -1103.2366
+91488.2584179691 4.0581999 -1103.2366
+91489.2584180194 4.0581603 -1103.197
+91490.25841806969 4.0581603 -1103.2366
+91491.25841811998 4.0581999 -1103.2562
+91492.25841817028 4.0581999 -1103.2761
+91493.25841822056 4.0582786 -1103.197
+91494.25841827084 4.058239 -1103.2366
+91495.25841832114 4.0581603 -1103.2168
+91496.25841837144 4.0581212 -1103.2761
+91497.25841842173 4.0582786 -1103.1378
+91498.25841847202 4.058239 -1103.2761
+91499.25841852232 4.058239 -1103.2761
+91500.2584185726 4.0581999 -1103.3156
+91501.25841862288 4.0581603 -1103.197
+91502.25841867318 4.0581212 -1103.1378
+91503.25841872348 4.0580816 -1103.2761
+91504.25841877377 4.058042 -1103.2761
+91505.25841882406 4.058042 -1103.197
+91506.25841887436 4.0581212 -1103.2168
+91507.25841892464 4.0581212 -1103.3156
+91508.25841897492 4.0580816 -1103.2366
+91509.25841902522 4.0581212 -1103.2761
+91510.25841907552 4.0580816 -1103.1774
+91511.2584191258 4.0580816 -1103.2366
+91512.2584191761 4.0581212 -1103.2168
+91513.2584192264 4.058042 -1103.2168
+91514.25841927668 4.0581212 -1103.1576
+91515.25841932696 4.0580029 -1103.2366
+91516.25841937726 4.0580816 -1103.2562
+91517.25841942756 4.0581212 -1103.2366
+91518.25841947785 4.058042 -1103.197
+91519.25841952814 4.0580029 -1103.2761
+91520.25841957844 4.0580816 -1103.2366
+91521.25841962872 4.0579634 -1103.2168
+91522.258419679 4.0580029 -1103.197
+91523.2584197293 4.0580029 -1103.197
+91524.2584197796 4.0579634 -1103.2562
+91525.25841982989 4.0580029 -1103.2959
+91526.25841988018 4.0579243 -1103.2366
+91527.25841993048 4.0579634 -1103.1576
+91528.25841998076 4.0579243 -1103.2959
+91529.25842003104 4.0580029 -1103.2761
+91530.25842008134 4.0579634 -1103.1774
+91531.25842013163 4.0579634 -1103.2168
+91532.25842018193 4.0579243 -1103.1182
+91533.25842023222 4.058042 -1103.2959
+91534.25842028252 4.0579634 -1103.197
+91535.2584203328 4.0579243 -1103.2761
+91536.25842038308 4.0578847 -1103.2761
+91537.25842043338 4.0578456 -1103.3156
+91538.25842048367 4.0579243 -1103.2761
+91539.25842053397 4.0579243 -1103.2562
+91540.25842058426 4.0579243 -1103.2168
+91541.25842063456 4.0579243 -1103.2959
+91542.25842068484 4.0578456 -1103.2562
+91543.25842073512 4.0579243 -1103.2168
+91544.25842078542 4.0578456 -1103.1774
+91545.25842083571 4.0578847 -1103.2761
+91546.258420886 4.0578847 -1103.3749
+91547.2584209363 4.0578456 -1103.1576
+91548.2584209866 4.0579243 -1103.2366
+91549.25842103688 4.0577664 -1103.2168
+91550.25842108716 4.057806 -1103.2562
+91551.25842113746 4.057806 -1103.2562
+91552.25842118775 4.0577664 -1103.2366
+91553.25842123805 4.0577664 -1103.1774
+91554.25842128834 4.0578456 -1103.2562
+91555.25842133864 4.0578456 -1103.2959
+91556.25842138892 4.0578847 -1103.2761
+91557.2584214392 4.057806 -1103.2366
+91558.2584214895 4.0577273 -1103.2168
+91559.2584215398 4.0578456 -1103.2366
+91560.25842159009 4.0577273 -1103.1774
+91561.25842164038 4.0577664 -1103.2168
+91562.25842169068 4.0576878 -1103.2168
+91563.25842174096 4.0577664 -1103.2366
+91564.25842179124 4.0578456 -1103.197
+91565.25842184154 4.0577273 -1103.3156
+91566.25842189183 4.0576878 -1103.2959
+91567.25842194213 4.0577664 -1103.2562
+91568.25842199242 4.0576878 -1103.2761
+91569.25842204272 4.0576878 -1103.2168
+91570.258422093 4.0577273 -1103.197
+91571.25842214328 4.0576487 -1103.2168
+91572.25842219358 4.0576487 -1103.3156
+91573.25842224387 4.0576487 -1103.1774
+91574.25842229417 4.0577273 -1103.2168
+91575.25842234446 4.0577664 -1103.2761
+91576.25842239476 4.0576487 -1103.197
+91577.25842244504 4.05757 -1103.2761
+91578.25842249532 4.0576878 -1103.2562
+91579.25842254562 4.05757 -1103.197
+91580.25842259591 4.0577664 -1103.2761
+91581.2584226462 4.0576487 -1103.2761
+91582.2584226965 4.0577664 -1103.2562
+91583.2584227468 4.0576878 -1103.2366
+91584.25842279708 4.05757 -1103.3156
+91585.25842284736 4.0576091 -1103.1774
+91586.25842289766 4.0576091 -1103.197
+91587.25842294795 4.0576878 -1103.2168
+91588.25842299825 4.0576091 -1103.2168
+91589.25842304854 4.0575304 -1103.2168
+91590.25842309884 4.0574908 -1103.3353
+91591.25842314912 4.0575304 -1103.1378
+91592.2584231994 4.0574908 -1103.2959
+91593.2584232497 4.0576091 -1103.197
+91594.2584233 4.0576091 -1103.2761
+91595.25842335029 4.0576878 -1103.2562
+91596.25842340058 4.05757 -1103.1378
+91597.25842345088 4.0576091 -1103.2959
+91598.25842350116 4.05757 -1103.2761
+91599.25842355144 4.0575304 -1103.1182
+91600.25842360174 4.0575304 -1103.2168
+91601.25842365203 4.05757 -1103.2562
+91602.25842370233 4.0574908 -1103.2168
+91603.25842375262 4.0575304 -1103.2562
+91604.25842380292 4.0574517 -1103.2366
+91605.2584238532 4.0574908 -1103.2562
+91606.25842390348 4.05757 -1103.2562
+91607.25842395378 4.0575304 -1103.2959
+91608.25842400407 4.0574121 -1103.2959
+91609.25842405437 4.0574908 -1103.2959
+91610.25842410466 4.0574121 -1103.2366
+91611.25842415496 4.0574908 -1103.1774
+91612.25842420524 4.0574908 -1103.2168
+91613.25842425552 4.0574121 -1103.2562
+91614.25842430582 4.0574517 -1103.197
+91615.25842435611 4.0574517 -1103.2168
+91616.2584244064 4.0573335 -1103.3156
+91617.2584244567 4.057373 -1103.2761
+91618.258424507 4.057373 -1103.2562
+91619.25842455728 4.0574121 -1103.2366
+91620.25842460756 4.0572944 -1103.2959
+91621.25842465786 4.0573335 -1103.2366
+91622.25842470815 4.057373 -1103.2562
+91623.25842475845 4.057373 -1103.197
+91624.25842480874 4.0573335 -1103.2168
+91625.25842485904 4.0572944 -1103.2366
+91626.25842490932 4.0572944 -1103.1774
+91627.2584249596 4.0572944 -1103.2168
+91628.2584250099 4.057373 -1103.197
+91629.2584250602 4.0572944 -1103.2562
+91630.25842511049 4.0573335 -1103.2168
+91631.25842516078 4.0572548 -1103.197
+91632.25842521108 4.0572944 -1103.1576
+91633.25842526136 4.0573335 -1103.2562
+91634.25842531164 4.0571365 -1103.2562
+91635.25842536194 4.0573335 -1103.197
+91636.25842541223 4.0573335 -1103.2366
+91637.25842546253 4.0572944 -1103.2168
+91638.25842551282 4.0572944 -1103.2168
+91639.25842556312 4.0572944 -1103.197
+91640.2584256134 4.0571761 -1103.2366
+91641.25842566368 4.0572157 -1103.2168
+91642.25842571398 4.0572944 -1103.2366
+91643.25842576427 4.0572157 -1103.2562
+91644.25842581457 4.0572157 -1103.1182
+91645.25842586486 4.0572944 -1103.1774
+91646.25842591516 4.0572548 -1103.2366
+91647.25842596544 4.0572548 -1103.197
+91648.25842601572 4.0572944 -1103.2168
+91649.25842606602 4.0571761 -1103.197
+91650.25842611631 4.0571365 -1103.2168
+91651.2584261666 4.0572157 -1103.1774
+91652.2584262169 4.0571761 -1103.2562
+91653.2584262672 4.0571761 -1103.1774
+91654.25842631748 4.0571761 -1103.1182
+91655.25842636776 4.0571365 -1103.2562
+91656.25842641806 4.0572157 -1103.1182
+91657.25842646835 4.0571365 -1103.2761
+91658.25842651865 4.0572157 -1103.2366
+91659.25842656894 4.0571365 -1103.197
+91660.25842661924 4.0571365 -1103.197
+91661.25842666952 4.0570974 -1103.1774
+91662.2584267198 4.0571761 -1103.1774
+91663.2584267701 4.0571365 -1103.2168
+91664.2584268204 4.0571365 -1103.197
+91665.25842687069 4.0570579 -1103.2366
+91666.25842692098 4.0570974 -1103.2761
+91667.25842697128 4.0570974 -1103.2562
+91668.25842702156 4.0570188 -1103.2562
+91669.25842707184 4.0570579 -1103.1774
+91670.25842712214 4.0569792 -1103.1774
+91671.25842717243 4.0570579 -1103.2761
+91672.25842722273 4.0569401 -1103.2168
+91673.25842727302 4.0570188 -1103.1774
+91674.25842732332 4.0570579 -1103.1774
+91675.2584273736 4.0570188 -1103.2761
+91676.25842742388 4.0570188 -1103.2168
+91677.25842747418 4.0570188 -1103.2761
+91678.25842752447 4.0569792 -1103.2168
+91679.25842757476 4.0569401 -1103.2168
+91680.25842762506 4.0569792 -1103.2168
+91681.25842767536 4.0570579 -1103.2959
+91682.25842772564 4.0569005 -1103.2366
+91683.25842777592 4.0569401 -1103.1774
+91684.25842782622 4.0568609 -1103.2562
+91685.25842787651 4.0568609 -1103.2366
+91686.2584279268 4.0569792 -1103.1774
+91687.2584279771 4.0569401 -1103.2562
+91688.2584280274 4.0569005 -1103.2168
+91689.25842807768 4.0569401 -1103.197
+91690.25842812796 4.0569005 -1103.2761
+91691.25842817826 4.0568218 -1103.2366
+91692.25842822855 4.0569005 -1103.2562
+91693.25842827884 4.0569005 -1103.1774
+91694.25842832914 4.0568609 -1103.2366
+91695.25842837944 4.0569005 -1103.2761
+91696.25842842972 4.0569005 -1103.1378
+91697.25842848 4.0569792 -1103.2562
+91698.2584285303 4.0569005 -1103.1378
+91699.2584285806 4.0568609 -1103.2562
+91700.25842863088 4.0568609 -1103.2366
+91701.25842868118 4.0567822 -1103.2366
+91702.25842873148 4.0569005 -1103.1378
+91703.25842878176 4.0568218 -1103.2366
+91704.25842883204 4.0569005 -1103.1774
+91705.25842888234 4.0568609 -1103.1576
+91706.25842893263 4.0567431 -1103.2562
+91707.25842898292 4.0568609 -1103.2366
+91708.25842903322 4.0567431 -1103.2366
+91709.25842908352 4.0568609 -1103.1378
+91710.2584291338 4.0567431 -1103.197
+91711.25842918408 4.0568218 -1103.197
+91712.25842923438 4.0568218 -1103.2168
+91713.25842928467 4.0568218 -1103.2366
+91714.25842933496 4.0567036 -1103.197
+91715.25842938526 4.0568218 -1103.1576
+91716.25842943556 4.0567431 -1103.197
+91717.25842948584 4.0567431 -1103.1378
+91718.25842953612 4.0567822 -1103.197
+91719.25842958642 4.0567036 -1103.3156
+91720.25842963671 4.0567036 -1103.2562
+91721.258429687 4.0567036 -1103.2959
+91722.2584297373 4.0566645 -1103.197
+91723.2584297876 4.0566645 -1103.1576
+91724.25842983788 4.0566249 -1103.2366
+91725.25842988816 4.0567036 -1103.2761
+91726.25842993846 4.0566645 -1103.197
+91727.25842998875 4.0565462 -1103.1576
+91728.25843003904 4.0567036 -1103.2761
+91729.25843008934 4.0567036 -1103.2366
+91730.25843013964 4.0567036 -1103.1774
+91731.25843018992 4.0567036 -1103.197
+91732.2584302402 4.0567431 -1103.2761
+91733.2584302905 4.0567036 -1103.2959
+91734.2584303408 4.0565462 -1103.1774
+91735.25843039108 4.0566249 -1103.2366
+91736.25843044138 4.0567036 -1103.3353
+91737.25843049168 4.0566645 -1103.2761
+91738.25843054196 4.0566249 -1103.1774
+91739.25843059224 4.0565858 -1103.2761
+91740.25843064254 4.0565462 -1103.2761
+91741.25843069283 4.0565858 -1103.1576
+91742.25843074312 4.0565462 -1103.2959
+91743.25843079342 4.0565462 -1103.2959
+91744.25843084372 4.0565462 -1103.2366
+91745.258430894 4.0566249 -1103.2366
+91746.25843094428 4.0566249 -1103.2761
+91747.25843099458 4.0565858 -1103.2366
+91748.25843104487 4.0565066 -1103.2761
+91749.25843109516 4.0565462 -1103.2959
+91750.25843114546 4.0565462 -1103.2366
+91751.25843119576 4.0564675 -1103.2366
+91752.25843124604 4.056428 -1103.0984
+91753.25843129632 4.0565066 -1103.3353
+91754.25843134662 4.0564675 -1103.2562
+91755.25843139691 4.0564675 -1103.197
+91756.2584314472 4.056428 -1103.2168
+91757.2584314975 4.056428 -1103.1774
+91758.2584315478 4.056428 -1103.2366
+91759.25843159808 4.0565462 -1103.2562
+91760.25843164836 4.0563889 -1103.2366
+91761.25843169866 4.0565066 -1103.197
+91762.25843174897 4.0563493 -1103.2168
+91763.25843179924 4.0563493 -1103.2761
+91764.25843184954 4.056428 -1103.2168
+91765.25843189984 4.0565462 -1103.2168
+91766.25843195012 4.0563889 -1103.2168
+91767.2584320004 4.056428 -1103.1774
+91768.2584320507 4.056428 -1103.2168
+91769.258432101 4.0565066 -1103.2562
+91770.25843215128 4.0562706 -1103.197
+91771.25843220158 4.0561523 -1103.1774
+91772.25843225188 4.0563493 -1103.2761
+91773.25843230216 4.0563102 -1103.2761
+91774.25843235244 4.0563493 -1103.1774
+91775.25843240274 4.056428 -1103.197
+91776.25843245305 4.056428 -1103.2562
+91777.25843250332 4.0563493 -1103.2562
+91778.25843255362 4.0563493 -1103.2366
+91779.25843260392 4.0563889 -1103.197
+91780.2584326542 4.0562706 -1103.2562
+91781.25843270448 4.0563889 -1103.197
+91782.25843275478 4.0563889 -1103.2366
+91783.25843280509 4.0563889 -1103.2562
+91784.25843285536 4.056231 -1103.2366
+91785.25843290566 4.0562706 -1103.2366
+91786.25843295596 4.0561919 -1103.197
+91787.25843300624 4.056231 -1103.2366
+91788.25843305652 4.0563102 -1103.1378
+91789.25843310682 4.056231 -1103.3353
+91790.25843315713 4.0562706 -1103.197
+91791.2584332074 4.0562706 -1103.1774
+91792.2584332577 4.0561523 -1103.2168
+91793.258433308 4.0561523 -1103.2168
+91794.25843335828 4.0561919 -1103.197
+91795.25843340855 4.0561919 -1103.197
+91796.25843345886 4.0561919 -1103.2959
+91797.25843350917 4.056231 -1103.2562
+91798.25843355944 4.0561919 -1103.1576
+91799.25843360974 4.056231 -1103.2562
+91800.25843366004 4.0561523 -1103.1774
+91801.25843371032 4.0561523 -1103.2366
+91802.2584337606 4.0563102 -1103.1774
+91803.2584338109 4.0561132 -1103.2366
+91804.2584338612 4.0561132 -1103.2168
+91805.25843391148 4.0561523 -1103.2761
+91806.25843396178 4.0560737 -1103.2562
+91807.25843401208 4.0561132 -1103.2366
+91808.25843406236 4.0560737 -1103.2168
+91809.25843411263 4.0560346 -1103.2366
+91810.25843416294 4.0560737 -1103.2366
+91811.25843421325 4.0561523 -1103.2959
+91812.25843426352 4.055995 -1103.1576
+91813.25843431382 4.0561919 -1103.2366
+91814.25843436412 4.0560346 -1103.2366
+91815.2584344144 4.0561132 -1103.1774
+91816.25843446467 4.0561132 -1103.2562
+91817.25843451498 4.0560737 -1103.2761
+91818.25843456529 4.0560346 -1103.197
+91819.25843461556 4.0560346 -1103.2562
+91820.25843466586 4.0561132 -1103.2168
+91821.25843471616 4.0560346 -1103.197
+91822.25843476644 4.0560346 -1103.1774
+91823.25843481671 4.0560737 -1103.2366
+91824.25843486702 4.0559163 -1103.2761
+91825.25843491733 4.0559554 -1103.2168
+91826.2584349676 4.055995 -1103.197
+91827.2584350179 4.055995 -1103.3156
+91828.2584350682 4.0559163 -1103.1774
+91829.25843511848 4.0559554 -1103.2761
+91830.25843516875 4.0558767 -1103.2959
+91831.25843521906 4.0559554 -1103.1576
+91832.25843526937 4.0558767 -1103.0984
+91833.25843531964 4.0559554 -1103.2168
+91834.25843536992 4.0558767 -1103.2562
+91835.25843542024 4.0558767 -1103.2366
+91836.25843547052 4.0559163 -1103.2366
+91837.2584355208 4.0558767 -1103.197
+91838.2584355711 4.0558376 -1103.2761
+91839.2584356214 4.0559554 -1103.197
+91840.25843567168 4.0558376 -1103.0785
+91841.25843572196 4.0558376 -1103.2562
+91842.25843577228 4.055759 -1103.197
+91843.25843582256 4.0559163 -1103.1378
+91844.25843587283 4.0558376 -1103.197
+91845.25843592314 4.0559163 -1103.2562
+91846.25843597345 4.0557194 -1103.2959
+91847.25843602372 4.0558376 -1103.2761
+91848.258436074 4.0559163 -1103.2366
+91849.25843612432 4.0557981 -1103.1774
+91850.2584361746 4.0557194 -1103.197
+91851.25843622487 4.0559163 -1103.2562
+91852.25843627518 4.055759 -1103.2168
+91853.25843632549 4.0557981 -1103.2366
+91854.25843637576 4.0558767 -1103.2761
+91855.25843642604 4.0558767 -1103.2366
+91856.25843647636 4.055759 -1103.197
+91857.25843652664 4.0557194 -1103.2562
+91858.25843657691 4.0557981 -1103.197
+91859.25843662722 4.0556803 -1103.2761
+91860.25843667753 4.0557194 -1103.2959
+91861.2584367278 4.055759 -1103.2959
+91862.25843677808 4.055759 -1103.1774
+91863.2584368284 4.055759 -1103.1378
+91864.25843687868 4.055759 -1103.197
+91865.25843692895 4.0556803 -1103.2366
+91866.25843697926 4.0556011 -1103.2959
+91867.25843702957 4.0556011 -1103.2562
+91868.25843707984 4.055759 -1103.2168
+91869.25843713012 4.055759 -1103.2366
+91870.25843718044 4.055562 -1103.2761
+91871.25843723072 4.0557981 -1103.2168
+91872.258437281 4.0556803 -1103.2168
+91873.2584373313 4.0556803 -1103.1774
+91874.2584373816 4.0556803 -1103.197
+91875.25843743188 4.0556011 -1103.1378
+91876.25843748216 4.0556011 -1103.197
+91877.25843753248 4.0557194 -1103.2366
+91878.25843758276 4.055759 -1103.2959
+91879.25843763303 4.0556011 -1103.1774
+91880.25843768334 4.0556011 -1103.1378
+91881.25843773365 4.0556011 -1103.1576
+91882.25843778392 4.0556011 -1103.2562
+91883.2584378342 4.0556011 -1103.2366
+91884.25843788452 4.0556011 -1103.2562
+91885.2584379348 4.0555224 -1103.1576
+91886.25843798507 4.055562 -1103.2168
+91887.25843803538 4.055562 -1103.2562
+91888.25843808569 4.0554833 -1103.197
+91889.25843813596 4.0554833 -1103.2562
+91890.25843818624 4.0556011 -1103.1774
+91891.25843823656 4.0556803 -1103.197
+91892.25843828684 4.0554047 -1103.197
+91893.25843833711 4.0554438 -1103.2366
+91894.25843838742 4.0554833 -1103.2168
+91895.25843843773 4.0556011 -1103.2562
+91896.258438488 4.0556407 -1103.197
+91897.25843853828 4.0554833 -1103.2366
+91898.2584385886 4.0555224 -1103.2366
+91899.25843863888 4.0556011 -1103.2959
+91900.25843868915 4.0554833 -1103.1774
+91901.25843873946 4.0554047 -1103.2168
+91902.25843878977 4.0554833 -1103.2562
+91903.25843884004 4.0554833 -1103.197
+91904.25843889032 4.0556011 -1103.2168
+91905.25843894064 4.0554047 -1103.1774
+91906.25843899092 4.0554438 -1103.2959
+91907.2584390412 4.0554833 -1103.2168
+91908.2584390915 4.0554047 -1103.2168
+91909.2584391418 4.0555224 -1103.2761
+91910.25843919208 4.0554438 -1103.197
+91911.25843924236 4.0553255 -1103.2366
+91912.25843929268 4.0554833 -1103.2168
+91913.25843934296 4.0554438 -1103.2366
+91914.25843939323 4.0553651 -1103.2168
+91915.25843944354 4.0553651 -1103.2366
+91916.25843949385 4.0553651 -1103.2761
+91917.25843954412 4.0553255 -1103.2562
+91918.2584395944 4.0554438 -1103.197
+91919.25843964472 4.0553255 -1103.3353
+91920.258439695 4.0552864 -1103.2168
+91921.25843974527 4.0553255 -1103.2168
+91922.25843979558 4.0553651 -1103.2168
+91923.25843984589 4.0552077 -1103.2366
+91924.25843989616 4.0552864 -1103.197
+91925.25843994644 4.0553255 -1103.2761
+91926.25843999676 4.0552077 -1103.1576
+91927.25844004704 4.0552864 -1103.197
+91928.25844009731 4.0552864 -1103.197
+91929.25844014762 4.0551682 -1103.1774
+91930.25844019793 4.0552864 -1103.2168
+91931.2584402482 4.0552077 -1103.1576
+91932.25844029848 4.0552864 -1103.1774
+91933.2584403488 4.0552468 -1103.2366
+91934.25844039908 4.0552077 -1103.2761
+91935.25844044935 4.0553255 -1103.2168
+91936.25844049966 4.0552077 -1103.2366
+91937.25844054997 4.0552077 -1103.1576
+91938.25844060024 4.0551291 -1103.1576
+91939.25844065052 4.0551682 -1103.2168
+91940.25844070084 4.0552077 -1103.2168
+91941.25844075112 4.0551682 -1103.2168
+91942.2584408014 4.0552077 -1103.197
+91943.2584408517 4.0551682 -1103.2168
+91944.258440902 4.0550108 -1103.3156
+91945.25844095228 4.0550895 -1103.1378
+91946.25844100256 4.0552077 -1103.2562
+91947.25844105288 4.0551291 -1103.1774
+91948.25844110316 4.0550108 -1103.197
+91949.25844115343 4.0551682 -1103.1378
+91950.25844120374 4.0550895 -1103.1774
+91951.25844125405 4.0551291 -1103.1774
+91952.25844130432 4.0550108 -1103.2562
+91953.2584413546 4.0550895 -1103.2761
+91954.25844140492 4.0550895 -1103.1378
+91955.2584414552 4.0550504 -1103.2168
+91956.25844150547 4.0551682 -1103.197
+91957.25844155578 4.0551291 -1103.197
+91958.25844160609 4.0550895 -1103.2366
+91959.25844165636 4.0550504 -1103.2366
+91960.25844170664 4.0550895 -1103.197
+91961.25844175696 4.0550108 -1103.3353
+91962.25844180724 4.0550108 -1103.2366
+91963.25844185751 4.0549321 -1103.1774
+91964.25844190782 4.0550504 -1103.2562
+91965.25844195813 4.0550108 -1103.2562
+91966.2584420084 4.0550504 -1103.197
+91967.25844205868 4.0550504 -1103.1576
+91968.258442109 4.0550504 -1103.2761
+91969.25844215928 4.0549712 -1103.197
+91970.25844220955 4.0549321 -1103.197
+91971.25844225986 4.0549712 -1103.2761
+91972.25844231017 4.0550108 -1103.2959
+91973.25844236044 4.0549712 -1103.1774
+91974.25844241072 4.0548925 -1103.2562
+91975.25844246104 4.0549712 -1103.2959
+91976.25844251132 4.0548925 -1103.2168
+91977.2584425616 4.0548534 -1103.2562
+91978.2584426119 4.0548925 -1103.2168
+91979.2584426622 4.0548925 -1103.2168
+91980.25844271248 4.0548139 -1103.1774
+91981.25844276276 4.0549321 -1103.1774
+91982.25844281306 4.0548534 -1103.2366
+91983.25844286336 4.0548534 -1103.197
+91984.25844291363 4.0548534 -1103.3353
+91985.25844296394 4.0548534 -1103.197
+91986.25844301425 4.0547748 -1103.2562
+91987.25844306452 4.0548534 -1103.2562
+91988.2584431148 4.0548534 -1103.1378
+91989.2584431651 4.0548139 -1103.2562
+91990.2584432154 4.0548925 -1103.2168
+91991.25844326567 4.0548139 -1103.2761
+91992.25844331598 4.0548139 -1103.2168
+91993.25844336629 4.0548139 -1103.197
+91994.25844341656 4.0547352 -1103.2366
+91995.25844346684 4.0547748 -1103.197
+91996.25844351714 4.0547352 -1103.2959
+91997.25844356744 4.0547748 -1103.2168
+91998.25844361771 4.0548139 -1103.2761
+91999.25844366802 4.0547352 -1103.2366
+92000.25844371832 4.0548139 -1103.2168
+92001.2584437686 4.0547352 -1103.2168
+92002.25844381888 4.0547748 -1103.197
+92003.25844386918 4.0546956 -1103.2168
+92004.25844391948 4.0548139 -1103.3353
+92005.25844396975 4.0547748 -1103.2366
+92006.25844402006 4.0547748 -1103.1774
+92007.25844407036 4.0547352 -1103.1576
+92008.25844412064 4.0546956 -1103.2168
+92009.25844417092 4.0547352 -1103.197
+92010.25844422122 4.0546565 -1103.197
+92011.25844427152 4.0547352 -1103.2366
+92012.2584443218 4.0546169 -1103.2761
+92013.2584443721 4.0546169 -1103.1774
+92014.2584444224 4.0546565 -1103.2168
+92015.25844447268 4.0546565 -1103.1378
+92016.25844452296 4.0546169 -1103.2761
+92017.25844457326 4.0546565 -1103.2366
+92018.25844462356 4.0545778 -1103.2366
+92019.25844467383 4.0546169 -1103.2562
+92020.25844472414 4.0546169 -1103.2761
+92021.25844477444 4.0545778 -1103.197
+92022.25844482472 4.0544991 -1103.2366
+92023.258444875 4.0545778 -1103.2761
+92024.2584449253 4.0546169 -1103.2168
+92025.2584449756 4.0544991 -1103.2168
+92026.25844502587 4.0544991 -1103.2562
+92027.25844507618 4.0544991 -1103.2168
+92028.25844512648 4.0544596 -1103.2562
+92029.25844517676 4.0546169 -1103.2562
+92030.25844522704 4.0544991 -1103.2562
+92031.25844527734 4.0544991 -1103.2761
+92032.25844532764 4.0544596 -1103.3156
+92033.25844537793 4.0545778 -1103.2168
+92034.25844542822 4.0544991 -1103.2366
+92035.25844547852 4.0543809 -1103.2761
+92036.2584455288 4.0544991 -1103.197
+92037.25844557908 4.0544991 -1103.2168
+92038.25844562938 4.05442 -1103.197
+92039.25844567968 4.0545382 -1103.2761
+92040.25844572997 4.0544596 -1103.197
+92041.25844578026 4.0544596 -1103.2168
+92042.25844583056 4.0544596 -1103.197
+92043.25844588084 4.0543809 -1103.1576
+92044.25844593112 4.0543809 -1103.197
+92045.25844598142 4.0543413 -1103.2562
+92046.25844603172 4.0544991 -1103.3156
+92047.258446082 4.0543809 -1103.2168
+92048.2584461323 4.0543022 -1103.2168
+92049.2584461826 4.05442 -1103.2562
+92050.25844623288 4.0543809 -1103.2366
+92051.25844628316 4.0544596 -1103.2761
+92052.25844633346 4.0543809 -1103.2168
+92053.25844638376 4.0543413 -1103.2562
+92054.25844643405 4.05442 -1103.2366
+92055.25844648434 4.0542626 -1103.2761
+92056.25844653464 4.0543413 -1103.197
+92057.25844658492 4.0543413 -1103.2168
+92058.2584466352 4.0543809 -1103.2562
+92059.2584466855 4.0543022 -1103.1774
+92060.2584467358 4.0543809 -1103.3156
+92061.25844678609 4.0542235 -1103.2959
+92062.25844683638 4.0543022 -1103.2168
+92063.25844688668 4.0543022 -1103.2168
+92064.25844693696 4.0542235 -1103.2761
+92065.25844698724 4.0542235 -1103.2168
+92066.25844703754 4.0542235 -1103.2761
+92067.25844708784 4.0542626 -1103.2168
+92068.25844713813 4.0543022 -1103.197
+92069.25844718842 4.0543413 -1103.2562
+92070.25844723872 4.054184 -1103.2562
+92071.258447289 4.0542235 -1103.2366
+92072.25844733928 4.0543022 -1103.2168
+92073.25844738958 4.0541053 -1103.2761
+92074.25844743988 4.0542235 -1103.2366
+92075.25844749017 4.0541449 -1103.0984
+92076.25844754046 4.0541053 -1103.1576
+92077.25844759076 4.0542626 -1103.1774
+92078.25844764104 4.0542235 -1103.3551
+92079.25844769132 4.0542235 -1103.1576
+92080.25844774162 4.0541053 -1103.2959
+92081.25844779192 4.054184 -1103.2761
+92082.2584478422 4.0542235 -1103.2366
+92083.2584478925 4.0540657 -1103.2168
+92084.2584479428 4.0540657 -1103.2761
+92085.25844799308 4.054184 -1103.1774
+92086.25844804336 4.0541053 -1103.2959
+92087.25844809366 4.0541053 -1103.197
+92088.25844814396 4.0540657 -1103.1774
+92089.25844819425 4.0541053 -1103.197
+92090.25844824454 4.0540266 -1103.3156
+92091.25844829484 4.0542235 -1103.2761
+92092.25844834512 4.0541053 -1103.2562
+92093.2584483954 4.0541449 -1103.197
+92094.2584484457 4.0541053 -1103.2168
+92095.258448496 4.0540657 -1103.197
+92096.25844854629 4.0540266 -1103.197
+92097.25844859658 4.053987 -1103.197
+92098.25844864688 4.053987 -1103.2959
+92099.25844869716 4.0541053 -1103.2959
+92100.25844874744 4.053987 -1103.1182
+92101.25844879774 4.0540657 -1103.1774
+92102.25844884804 4.0539479 -1103.197
+92103.25844889833 4.053987 -1103.2562
+92104.25844894862 4.0539083 -1103.2562
+92105.25844899892 4.0540266 -1103.2562
+92106.2584490492 4.053987 -1103.197
+92107.25844909948 4.0539479 -1103.2761
+92108.25844914978 4.0539479 -1103.1576
+92109.25844920008 4.0539479 -1103.1576
+92110.25844925037 4.0538692 -1103.2168
+92111.25844930066 4.053987 -1103.2168
+92112.25844935096 4.0538297 -1103.2562
+92113.25844940124 4.0539083 -1103.2366
+92114.25844945152 4.0540266 -1103.1774
+92115.25844950182 4.0539479 -1103.2168
+92116.25844955212 4.0539479 -1103.1774
+92117.2584496024 4.0538692 -1103.2761
+92118.2584496527 4.0538692 -1103.2168
+92119.258449703 4.0538297 -1103.1774
+92120.25844975328 4.0539083 -1103.2168
+92121.25844980356 4.0539083 -1103.197
+92122.25844985386 4.0538692 -1103.197
+92123.25844990415 4.0537901 -1103.2562
+92124.25844995445 4.053751 -1103.2761
+92125.25845000474 4.0538692 -1103.1774
+92126.25845005504 4.0537901 -1103.2562
+92127.25845010532 4.053751 -1103.2366
+92128.2584501556 4.0538297 -1103.2562
+92129.2584502059 4.053751 -1103.2366
+92130.2584502562 4.0537901 -1103.2168
+92131.25845030649 4.053751 -1103.197
+92132.25845035678 4.053751 -1103.197
+92133.25845040708 4.053751 -1103.1774
+92134.25845045736 4.0537901 -1103.197
+92135.25845050764 4.053751 -1103.197
+92136.25845055794 4.0537901 -1103.2168
+92137.25845060823 4.0537114 -1103.3353
+92138.25845065853 4.0538297 -1103.2168
+92139.25845070882 4.053751 -1103.2761
+92140.25845075912 4.0536327 -1103.2366
+92141.2584508094 4.053751 -1103.3156
+92142.25845085968 4.0536723 -1103.2761
+92143.25845090998 4.053751 -1103.2366
+92144.25845096027 4.0537114 -1103.197
+92145.25845101057 4.0537114 -1103.2168
+92146.25845106086 4.0535936 -1103.2366
+92147.25845111116 4.0536327 -1103.2366
+92148.25845116144 4.0536327 -1103.2562
+92149.25845121172 4.0536723 -1103.2562
+92150.25845126202 4.0536327 -1103.1378
+92151.25845131231 4.0535936 -1103.3551
+92152.2584513626 4.0535936 -1103.2168
+92153.2584514129 4.0536723 -1103.197
+92154.2584514632 4.0536723 -1103.1576
+92155.25845151348 4.0536723 -1103.2366
+92156.25845156376 4.0535936 -1103.2366
+92157.25845161406 4.0534754 -1103.1774
+92158.25845166435 4.0535541 -1103.197
+92159.25845171465 4.0535541 -1103.197
+92160.25845176494 4.0537114 -1103.2761
+92161.25845181524 4.0536327 -1103.2562
+92162.25845186552 4.0535541 -1103.2366
+92163.2584519158 4.0535936 -1103.2168
+92164.2584519661 4.0535936 -1103.2761
+92165.2584520164 4.0535541 -1103.2562
+92166.25845206669 4.053515 -1103.1182
+92167.25845211698 4.0535936 -1103.2761
+92168.25845216728 4.0535541 -1103.2562
+92169.25845221756 4.0534754 -1103.2366
+92170.25845226784 4.053515 -1103.2168
+92171.25845231814 4.0534754 -1103.197
+92172.25845236843 4.053515 -1103.2366
+92173.25845241873 4.0534754 -1103.2959
+92174.25845246902 4.0534754 -1103.2761
+92175.25845251932 4.053515 -1103.2562
+92176.2584525696 4.0533967 -1103.2168
+92177.25845261988 4.0534358 -1103.2168
+92178.25845267018 4.0533967 -1103.2366
+92179.25845272047 4.0533571 -1103.197
+92180.25845277077 4.0534754 -1103.197
+92181.25845282106 4.0533571 -1103.2366
+92182.25845287136 4.0534358 -1103.2959
+92183.25845292164 4.0534754 -1103.2168
+92184.25845297192 4.0533571 -1103.2168
+92185.25845302222 4.0533967 -1103.2959
+92186.25845307251 4.0533967 -1103.3156
+92187.2584531228 4.053318 -1103.1576
+92188.2584531731 4.053318 -1103.1774
+92189.2584532234 4.0532784 -1103.2168
+92190.25845327368 4.0534358 -1103.1774
+92191.25845332396 4.053318 -1103.197
+92192.25845337426 4.053318 -1103.1774
+92193.25845342455 4.0532784 -1103.2761
+92194.25845347485 4.053318 -1103.2562
+92195.25845352514 4.0532784 -1103.2761
+92196.25845357544 4.0532784 -1103.2366
+92197.25845362572 4.0531998 -1103.2562
+92198.258453676 4.0532393 -1103.1774
+92199.2584537263 4.0532784 -1103.3551
+92200.2584537766 4.0532784 -1103.3945
+92201.25845382689 4.0531998 -1103.2366
+92202.25845387718 4.0533571 -1103.1774
+92203.25845392748 4.0532393 -1103.197
+92204.25845397776 4.0532393 -1103.1774
+92205.25845402804 4.053318 -1103.2168
+92206.25845407834 4.0531998 -1103.2959
+92207.25845412863 4.0532393 -1103.1576
+92208.25845417893 4.0531998 -1103.2366
+92209.25845422922 4.0531998 -1103.197
+92210.25845427952 4.0531998 -1103.1774
+92211.2584543298 4.0531998 -1103.1576
+92212.25845438008 4.0531998 -1103.197
+92213.25845443038 4.0531211 -1103.2562
+92214.25845448067 4.0531998 -1103.197
+92215.25845453097 4.0531211 -1103.2168
+92216.25845458126 4.0531998 -1103.3156
+92217.25845463156 4.0531211 -1103.2562
+92218.25845468184 4.0531602 -1103.1774
+92219.25845473212 4.0531602 -1103.2366
+92220.25845478242 4.0530424 -1103.2562
+92221.25845483271 4.0530815 -1103.2959
+92222.258454883 4.0531211 -1103.2761
+92223.2584549333 4.0530815 -1103.2168
+92224.2584549836 4.0530028 -1103.1576
+92225.25845503388 4.0529242 -1103.2562
+92226.25845508416 4.0530815 -1103.1182
+92227.25845513446 4.0530815 -1103.197
+92228.25845518475 4.0531211 -1103.1774
+92229.25845523505 4.0530815 -1103.2366
+92230.25845528534 4.0530815 -1103.1774
+92231.25845533564 4.0530424 -1103.2761
+92232.25845538592 4.0529637 -1103.197
+92233.2584554362 4.0530815 -1103.1576
+92234.2584554865 4.0529637 -1103.2562
+92235.2584555368 4.0530028 -1103.2562
+92236.25845558709 4.0530815 -1103.2168
+92237.25845563738 4.0530424 -1103.2761
+92238.25845568768 4.0530424 -1103.2168
+92239.25845573796 4.0530028 -1103.2959
+92240.25845578824 4.0529242 -1103.2366
+92241.25845583854 4.0528851 -1103.1774
+92242.25845588883 4.0530424 -1103.2562
+92243.25845593913 4.0529242 -1103.2761
+92244.25845598942 4.0530028 -1103.2959
+92245.25845603972 4.0529637 -1103.2959
+92246.25845609 4.0530028 -1103.2168
+92247.25845614028 4.0529242 -1103.2168
+92248.25845619058 4.0529242 -1103.1378
+92249.25845624087 4.0528059 -1103.2761
+92250.25845629117 4.0527668 -1103.2168
+92251.25845634146 4.0528455 -1103.197
+92252.25845639176 4.0529242 -1103.2168
+92253.25845644204 4.0528059 -1103.2761
+92254.25845649232 4.0528059 -1103.3156
+92255.25845654262 4.0527668 -1103.1774
+92256.25845659291 4.0527668 -1103.197
+92257.2584566432 4.0528455 -1103.2168
+92258.2584566935 4.0528059 -1103.197
+92259.2584567438 4.0528059 -1103.2168
+92260.25845679408 4.0527668 -1103.2168
+92261.25845684436 4.0527668 -1103.2168
+92262.25845689466 4.0528455 -1103.2366
+92263.25845694495 4.0528059 -1103.1774
+92264.25845699525 4.0527272 -1103.2366
+92265.25845704554 4.0528851 -1103.2761
+92266.25845709584 4.0527272 -1103.197
+92267.25845714612 4.0528455 -1103.197
+92268.2584571964 4.0528059 -1103.2562
+92269.2584572467 4.0528059 -1103.2366
+92270.258457297 4.0527272 -1103.197
+92271.25845734729 4.0526881 -1103.2168
+92272.25845739758 4.0526881 -1103.2562
+92273.25845744788 4.0526881 -1103.2562
+92274.25845749816 4.0527272 -1103.1774
+92275.25845754844 4.0528059 -1103.2168
+92276.25845759874 4.0526094 -1103.2761
+92277.25845764903 4.0526881 -1103.197
+92278.25845769932 4.0526485 -1103.1774
+92279.25845774962 4.0526485 -1103.2562
+92280.25845779992 4.0526094 -1103.1576
+92281.2584578502 4.0526881 -1103.2366
+92282.25845790048 4.0526485 -1103.2562
+92283.25845795078 4.0526881 -1103.2562
+92284.25845800107 4.0525699 -1103.2562
+92285.25845805136 4.0526881 -1103.197
+92286.25845810166 4.0526094 -1103.2366
+92287.25845815196 4.0526881 -1103.2168
+92288.25845820224 4.0524912 -1103.2366
+92289.25845825252 4.0526094 -1103.2959
+92290.25845830282 4.0526094 -1103.2562
+92291.25845835311 4.0526485 -1103.197
+92292.2584584034 4.0526094 -1103.2366
+92293.2584584537 4.0524516 -1103.2168
+92294.258458504 4.0526485 -1103.2366
+92295.25845855428 4.0524125 -1103.197
+92296.25845860456 4.0525699 -1103.2562
+92297.25845865486 4.0524516 -1103.2168
+92298.25845870515 4.0526094 -1103.1576
+92299.25845875544 4.0524125 -1103.1182
+92300.25845880574 4.0523729 -1103.2366
+92301.25845885604 4.0524125 -1103.2366
+92302.25845890632 4.0525699 -1103.2366
+92303.2584589566 4.0524125 -1103.2761
+92304.2584590069 4.0524912 -1103.2959
+92305.2584590572 4.0524125 -1103.2168
+92306.25845910748 4.0524125 -1103.2168
+92307.25845915778 4.0524516 -1103.1576
+92308.25845920808 4.0526094 -1103.2168
+92309.25845925836 4.0525303 -1103.2761
+92310.25845930864 4.0524125 -1103.1378
+92311.25845935894 4.0523729 -1103.2562
+92312.25845940923 4.0524912 -1103.2168
+92313.25845945952 4.0524516 -1103.2168
+92314.25845950982 4.0523729 -1103.2366
+92315.25845956012 4.0523729 -1103.2366
+92316.2584596104 4.0523729 -1103.2366
+92317.25845966068 4.0523338 -1103.3353
+92318.25845971098 4.0522943 -1103.2168
+92319.25845976127 4.0523338 -1103.2761
+92320.25845981156 4.0524125 -1103.2366
+92321.25845986186 4.0524125 -1103.2366
+92322.25845991216 4.052176 -1103.1774
+92323.25845996244 4.0522943 -1103.197
+92324.25846001272 4.0523338 -1103.2168
+92325.25846006302 4.0522156 -1103.2168
+92326.25846011331 4.052176 -1103.1774
+92327.2584601636 4.0523729 -1103.1774
+92328.2584602139 4.0522547 -1103.2959
+92329.2584602642 4.0522547 -1103.2562
+92330.25846031448 4.0522943 -1103.2562
+92331.25846036476 4.0522547 -1103.2366
+92332.25846041506 4.0522156 -1103.2562
+92333.25846046535 4.0521369 -1103.2959
+92334.25846051564 4.0522156 -1103.197
+92335.25846056594 4.0522156 -1103.2562
+92336.25846061624 4.0522156 -1103.2168
+92337.25846066652 4.0522156 -1103.2761
+92338.2584607168 4.052176 -1103.2562
+92339.2584607671 4.0522547 -1103.1576
+92340.2584608174 4.052176 -1103.197
+92341.25846086768 4.0521369 -1103.2959
+92342.25846091798 4.052176 -1103.2366
+92343.25846096828 4.0520973 -1103.197
+92344.25846101856 4.052176 -1103.2959
+92345.25846106884 4.0520973 -1103.2168
+92346.25846111914 4.0522156 -1103.2168
+92347.25846116943 4.0520582 -1103.197
+92348.25846121972 4.0520973 -1103.1774
+92349.25846127002 4.0521369 -1103.2761
+92350.25846132032 4.0520973 -1103.2168
+92351.2584613706 4.0520973 -1103.2168
+92352.25846142088 4.0521369 -1103.2761
+92353.25846147118 4.0520973 -1103.2562
+92354.25846152147 4.0520186 -1103.2761
+92355.25846157176 4.0520973 -1103.1774
+92356.25846162206 4.0519795 -1103.3156
+92357.25846167236 4.0520973 -1103.2168
+92358.25846172264 4.0520582 -1103.2761
+92359.25846177292 4.0520582 -1103.2168
+92360.25846182322 4.0521369 -1103.2562
+92361.25846187353 4.0519795 -1103.1774
+92362.2584619238 4.0520186 -1103.2761
+92363.2584619741 4.0520186 -1103.2562
+92364.2584620244 4.0520582 -1103.197
+92365.25846207468 4.0520186 -1103.2168
+92366.25846212496 4.0520973 -1103.2562
+92367.25846217526 4.05194 -1103.2366
+92368.25846222557 4.0520186 -1103.197
+92369.25846227584 4.0519795 -1103.2761
+92370.25846232614 4.0519004 -1103.0984
+92371.25846237644 4.0518613 -1103.2366
+92372.25846242672 4.05194 -1103.2562
+92373.258462477 4.0519795 -1103.2761
+92374.2584625273 4.0518613 -1103.1378
+92375.2584625776 4.0518613 -1103.2168
+92376.25846262788 4.0518217 -1103.2168
+92377.25846267818 4.0518217 -1103.1774
+92378.25846272848 4.0518613 -1103.2562
+92379.25846277876 4.05194 -1103.197
+92380.25846282904 4.0518613 -1103.197
+92381.25846287934 4.0518613 -1103.2761
+92382.25846292965 4.0518217 -1103.3156
+92383.25846297992 4.051743 -1103.2168
+92384.25846303022 4.0519004 -1103.3353
+92385.25846308052 4.0518217 -1103.2168
+92386.2584631308 4.051743 -1103.197
+92387.25846318108 4.0517039 -1103.3156
+92388.25846323138 4.0517826 -1103.2761
+92389.25846328169 4.0517826 -1103.1774
+92390.25846333196 4.0517826 -1103.2761
+92391.25846338226 4.0517039 -1103.2168
+92392.25846343256 4.0517039 -1103.1774
+92393.25846348284 4.0517826 -1103.2366
+92394.25846353311 4.051743 -1103.197
+92395.25846358342 4.051743 -1103.197
+92396.25846363373 4.0517826 -1103.2959
+92397.258463684 4.0517826 -1103.2168
+92398.2584637343 4.0517039 -1103.2168
+92399.2584637846 4.0517039 -1103.2562
+92400.25846383488 4.0516644 -1103.2366
+92401.25846388515 4.051743 -1103.2168
+92402.25846393546 4.0517826 -1103.2366
+92403.25846398577 4.0517039 -1103.2366
+92404.25846403604 4.0517826 -1103.197
+92405.25846408634 4.051743 -1103.2168
+92406.25846413664 4.0516248 -1103.2366
+92407.25846418692 4.0516248 -1103.2562
+92408.2584642372 4.0516644 -1103.1576
+92409.2584642875 4.0515461 -1103.3353
+92410.2584643378 4.0515857 -1103.2366
+92411.25846438808 4.0516248 -1103.197
+92412.25846443838 4.0515857 -1103.2761
+92413.25846448868 4.0517039 -1103.2761
+92414.25846453896 4.0515461 -1103.2959
+92415.25846458923 4.051507 -1103.2959
+92416.25846463954 4.0515857 -1103.1576
+92417.25846468985 4.051507 -1103.2366
+92418.25846474012 4.0516644 -1103.2562
+92419.25846479042 4.051507 -1103.2562
+92420.25846484072 4.0515461 -1103.1182
+92421.258464891 4.0514674 -1103.2168
+92422.25846494127 4.051507 -1103.197
+92423.25846499158 4.051507 -1103.1774
+92424.25846504189 4.051507 -1103.2168
+92425.25846509216 4.0514674 -1103.2168
+92426.25846514245 4.051507 -1103.2366
+92427.25846519276 4.0515461 -1103.2761
+92428.25846524304 4.0515461 -1103.2959
+92429.25846529331 4.0513496 -1103.2366
+92430.25846534362 4.051507 -1103.2366
+92431.25846539393 4.0514283 -1103.2761
+92432.2584654442 4.0515461 -1103.3551
+92433.25846549448 4.0515461 -1103.2366
+92434.2584655448 4.0514283 -1103.2366
+92435.25846559508 4.0514283 -1103.2562
+92436.25846564535 4.0514283 -1103.2562
+92437.25846569566 4.0514283 -1103.2168
+92438.25846574597 4.0513496 -1103.2366
+92439.25846579624 4.0513887 -1103.2562
+92440.25846584652 4.0513101 -1103.3156
+92441.25846589684 4.0514283 -1103.1774
+92442.25846594712 4.0513496 -1103.3156
+92443.2584659974 4.0513101 -1103.2959
+92444.2584660477 4.0513101 -1103.1774
+92445.258466098 4.0512705 -1103.2366
+92446.25846614828 4.0513496 -1103.2761
+92447.25846619856 4.0513496 -1103.2562
+92448.25846624888 4.0513101 -1103.1774
+92449.25846629916 4.0512314 -1103.2562
+92450.25846634943 4.0511131 -1103.2562
+92451.25846639974 4.0512705 -1103.197
+92452.25846645005 4.0512705 -1103.2562
+92453.25846650032 4.0512314 -1103.2761
+92454.2584665506 4.0512705 -1103.2168
+92455.25846660092 4.0512314 -1103.2761
+92456.2584666512 4.0513101 -1103.2168
+92457.25846670147 4.0511918 -1103.2366
+92458.25846675178 4.0511918 -1103.2168
+92459.25846680209 4.0511918 -1103.2168
+92460.25846685236 4.0513101 -1103.1774
+92461.25846690264 4.0512314 -1103.3156
+92462.25846695296 4.0511527 -1103.2761
+92463.25846700324 4.0511918 -1103.2959
+92464.25846705351 4.0511527 -1103.2562
+92465.25846710382 4.0511918 -1103.2366
+92466.25846715413 4.0511527 -1103.2168
+92467.2584672044 4.0511527 -1103.2168
+92468.25846725468 4.0511131 -1103.2761
+92469.258467305 4.0511131 -1103.2959
+92470.25846735528 4.051074 -1103.2168
+92471.25846740555 4.0511131 -1103.197
+92472.25846745586 4.051074 -1103.1576
+92473.25846750617 4.0511918 -1103.2761
+92474.25846755644 4.051074 -1103.1774
+92475.25846760672 4.0510345 -1103.197
+92476.25846765704 4.051074 -1103.1774
+92477.25846770732 4.051074 -1103.1378
+92478.2584677576 4.0509558 -1103.197
+92479.2584678079 4.0511131 -1103.2959
+92480.2584678582 4.0509558 -1103.197
+92481.25846790848 4.0511131 -1103.1774
+92482.25846795876 4.051074 -1103.2366
+92483.25846800908 4.0509558 -1103.2366
+92484.25846805936 4.051074 -1103.1576
+92485.25846810963 4.0508375 -1103.2168
+92486.25846815994 4.0509558 -1103.2562
+92487.25846821025 4.0509558 -1103.2168
+92488.25846826052 4.0509949 -1103.1774
+92489.2584683108 4.051074 -1103.2959
+92490.25846836112 4.0509558 -1103.2366
+92491.2584684114 4.0509558 -1103.2168
+92492.25846846167 4.0508771 -1103.2761
+92493.25846851198 4.0509949 -1103.2168
+92494.25846856229 4.0508771 -1103.2168
+92495.25846861256 4.0508771 -1103.3156
+92496.25846866284 4.0509162 -1103.2168
+92497.25846871316 4.0508375 -1103.2959
+92498.25846876344 4.0508771 -1103.1774
+92499.25846881371 4.0509558 -1103.0984
+92500.25846886402 4.0508375 -1103.2562
+92501.25846891433 4.0508375 -1103.3353
+92502.2584689646 4.0509162 -1103.2366
+92503.25846901488 4.0508375 -1103.197
+92504.2584690652 4.0508771 -1103.1774
+92505.25846911548 4.0508375 -1103.2959
+92506.25846916575 4.0508375 -1103.197
+92507.25846921606 4.0508375 -1103.2366
+92508.25846926637 4.0508375 -1103.2562
+92509.25846931664 4.0509162 -1103.1182
+92510.25846936692 4.0509949 -1103.2366
+92511.25846941724 4.0507193 -1103.197
+92512.25846946752 4.0507193 -1103.2168
+92513.2584695178 4.0508771 -1103.2562
+92514.2584695681 4.0507193 -1103.1576
+92515.2584696184 4.0507588 -1103.2168
+92516.25846966868 4.0507588 -1103.2761
+92517.25846971896 4.0507984 -1103.2168
+92518.25846976928 4.0507588 -1103.1378
+92519.25846981956 4.0506802 -1103.3353
+92520.25846986983 4.0506802 -1103.197
+92521.25846992014 4.0507984 -1103.1774
+92522.25846997045 4.0507588 -1103.2562
+92523.25847002072 4.0506802 -1103.1378
+92524.258470071 4.0506406 -1103.2761
+92525.25847012132 4.0506802 -1103.2168
+92526.2584701716 4.0507193 -1103.1774
+92527.25847022187 4.0506015 -1103.197
+92528.25847027218 4.0507193 -1103.2959
+92529.25847032249 4.0506015 -1103.197
+92530.25847037276 4.0506802 -1103.197
+92531.25847042304 4.0506802 -1103.2562
+92532.25847047336 4.0506802 -1103.2168
+92533.25847052364 4.0507193 -1103.1378
+92534.25847057391 4.0504832 -1103.2366
+92535.25847062422 4.0506406 -1103.2562
+92536.25847067453 4.0505228 -1103.2562
+92537.2584707248 4.0505619 -1103.1774
+92538.25847077508 4.0505619 -1103.197
+92539.2584708254 4.0505619 -1103.2366
+92540.25847087568 4.0506406 -1103.2959
+92541.25847092595 4.0506406 -1103.197
+92542.25847097626 4.0505228 -1103.2366
+92543.25847102657 4.0506015 -1103.2366
+92544.25847107684 4.0505228 -1103.2959
+92545.25847112712 4.0504832 -1103.2761
+92546.25847117744 4.0504832 -1103.1378
+92547.25847122772 4.0504832 -1103.1774
+92548.258471278 4.0504832 -1103.2562
+92549.2584713283 4.0504441 -1103.2168
+92550.2584713786 4.0505619 -1103.2761
+92551.25847142888 4.0504441 -1103.2562
+92552.25847147916 4.0504441 -1103.1774
+92553.25847152948 4.0505619 -1103.1774
+92554.25847157976 4.0502863 -1103.197
+92555.25847163003 4.0503259 -1103.2366
+92556.25847168034 4.0504441 -1103.1774
+92557.25847173065 4.0504441 -1103.197
+92558.25847178092 4.050365 -1103.2366
+92559.2584718312 4.0504045 -1103.2562
+92560.25847188152 4.0504045 -1103.197
+92561.2584719318 4.0504832 -1103.1576
+92562.25847198207 4.0504045 -1103.2562
+92563.25847203238 4.050365 -1103.2761
+92564.25847208269 4.0502863 -1103.1378
+92565.25847213296 4.0502863 -1103.2168
+92566.25847218324 4.0502863 -1103.2761
+92567.25847223356 4.0503259 -1103.2168
+92568.25847228384 4.050365 -1103.2562
+92569.25847233411 4.0502472 -1103.2761
+92570.25847238442 4.0503259 -1103.197
+92571.25847243473 4.0503259 -1103.2562
+92572.258472485 4.0504045 -1103.197
+92573.25847253528 4.0502472 -1103.2168
+92574.2584725856 4.0502076 -1103.3156
+92575.25847263588 4.0502472 -1103.1378
+92576.25847268615 4.0502076 -1103.2562
+92577.25847273646 4.0502076 -1103.2562
+92578.25847278677 4.0502472 -1103.2168
+92579.25847283704 4.0502863 -1103.2168
+92580.25847288732 4.0501685 -1103.1576
+92581.25847293762 4.0502472 -1103.1576
+92582.25847298792 4.0501289 -1103.2562
+92583.2584730382 4.0501685 -1103.1182
+92584.2584730885 4.0502076 -1103.2959
+92585.2584731388 4.0501289 -1103.1576
+92586.25847318908 4.0501685 -1103.2366
+92587.25847323936 4.0500894 -1103.2168
+92588.25847328966 4.0500894 -1103.2562
+92589.25847333996 4.0501289 -1103.197
+92590.25847339023 4.0500503 -1103.2562
+92591.25847344054 4.0501685 -1103.2562
+92592.25847349085 4.0501289 -1103.1182
+92593.25847354112 4.0501289 -1103.2562
+92594.2584735914 4.0501685 -1103.197
+92595.2584736417 4.0501685 -1103.2562
+92596.258473692 4.0500107 -1103.2366
+92597.25847374227 4.0501685 -1103.2168
+92598.25847379258 4.0500894 -1103.197
+92599.25847384288 4.0500503 -1103.197
+92600.25847389316 4.0500894 -1103.2168
+92601.25847394344 4.0500503 -1103.2761
+92602.25847399374 4.0499716 -1103.197
+92603.25847404404 4.0500107 -1103.2562
+92604.25847409431 4.0500503 -1103.2562
+92605.25847414462 4.0500503 -1103.2366
+92606.25847419492 4.0499716 -1103.1182
+92607.2584742452 4.0499716 -1103.1774
+92608.25847429548 4.0498929 -1103.197
+92609.25847434578 4.0500503 -1103.3156
+92610.25847439608 4.0500107 -1103.197
+92611.25847444635 4.0499716 -1103.2168
+92612.25847449666 4.0499716 -1103.2168
+92613.25847454696 4.0499716 -1103.197
+92614.25847459724 4.049932 -1103.3156
+92615.25847464752 4.0498929 -1103.2168
+92616.25847469782 4.049932 -1103.197
+92617.25847474812 4.049932 -1103.2761
+92618.2584747984 4.049932 -1103.197
+92619.2584748487 4.049932 -1103.1774
+92620.258474899 4.0500107 -1103.197
+92621.25847494928 4.0498929 -1103.2761
+92622.25847499956 4.0497746 -1103.1576
+92623.25847504986 4.0498533 -1103.1774
+92624.25847510016 4.0498142 -1103.2562
+92625.25847515043 4.0497746 -1103.197
+92626.25847520074 4.0498929 -1103.2562
+92627.25847525104 4.0498533 -1103.2366
+92628.25847530132 4.0498142 -1103.2168
+92629.2584753516 4.0498533 -1103.2761
+92630.2584754019 4.0497746 -1103.2959
+92631.2584754522 4.0498142 -1103.2761
+92632.25847550249 4.049932 -1103.2168
+92633.25847555278 4.0498533 -1103.2959
+92634.25847560308 4.0498533 -1103.2168
+92635.25847565336 4.0496564 -1103.2562
+92636.25847570364 4.049696 -1103.2366
+92637.25847575394 4.049696 -1103.3156
+92638.25847580424 4.0496564 -1103.2562
+92639.25847585453 4.0497351 -1103.2761
+92640.25847590482 4.049696 -1103.2959
+92641.25847595512 4.0497746 -1103.2761
+92642.2584760054 4.0497351 -1103.2366
+92643.25847605568 4.0496564 -1103.1774
+92644.25847610598 4.0495777 -1103.197
+92645.25847615628 4.0496564 -1103.2959
+92646.25847620657 4.0495777 -1103.2366
+92647.25847625686 4.0496564 -1103.2366
+92648.25847630716 4.0496564 -1103.1774
+92649.25847635744 4.0496564 -1103.2562
+92650.25847640772 4.0496173 -1103.197
+92651.25847645802 4.0497351 -1103.2959
+92652.25847650832 4.0496564 -1103.2366
+92653.2584765586 4.0495777 -1103.197
+92654.2584766089 4.0496173 -1103.2168
+92655.2584766592 4.0494595 -1103.2366
+92656.25847670948 4.0496173 -1103.2761
+92657.25847675976 4.0495777 -1103.2366
+92658.25847681006 4.049499 -1103.197
+92659.25847686036 4.0494595 -1103.2761
+92660.25847691065 4.0495777 -1103.197
+92661.25847696094 4.0495386 -1103.2761
+92662.25847701124 4.0494595 -1103.2366
+92663.25847706152 4.0495777 -1103.1576
+92664.2584771118 4.0494595 -1103.2168
+92665.2584771621 4.0494204 -1103.2562
+92666.2584772124 4.0495777 -1103.2959
+92667.25847726269 4.049499 -1103.2761
+92668.25847731298 4.049499 -1103.2959
+92669.25847736328 4.0495386 -1103.0984
+92670.25847741356 4.0494595 -1103.2366
+92671.25847746384 4.0494204 -1103.2168
+92672.25847751414 4.049499 -1103.2959
+92673.25847756444 4.049499 -1103.2366
+92674.25847761473 4.0494595 -1103.2366
+92675.25847766502 4.0494204 -1103.2168
+92676.25847771532 4.0494204 -1103.2562
+92677.2584777656 4.0493417 -1103.1576
+92678.25847781588 4.0493808 -1103.3353
+92679.25847786618 4.0494595 -1103.2168
+92680.25847791648 4.0493808 -1103.2562
+92681.25847796677 4.0493808 -1103.1378
+92682.25847801706 4.0493808 -1103.2366
+92683.25847806736 4.0493417 -1103.2761
+92684.25847811764 4.0493021 -1103.2366
+92685.25847816792 4.0493808 -1103.2959
+92686.25847821822 4.049263 -1103.2168
+92687.25847826852 4.0494204 -1103.2366
+92688.2584783188 4.0493417 -1103.2168
+92689.2584783691 4.0493021 -1103.197
+92690.2584784194 4.049263 -1103.1182
+92691.25847846968 4.0492234 -1103.1182
+92692.25847851996 4.0492234 -1103.1576
+92693.25847857026 4.049263 -1103.1774
+92694.25847862056 4.0493021 -1103.2168
+92695.25847867085 4.0493021 -1103.2366
+92696.25847872114 4.0492234 -1103.197
+92697.25847877144 4.049263 -1103.2562
+92698.25847882172 4.0492234 -1103.0984
+92699.258478872 4.0491843 -1103.2562
+92700.2584789223 4.0491843 -1103.1576
+92701.2584789726 4.0492234 -1103.2761
+92702.25847902289 4.0491843 -1103.1774
+92703.25847907318 4.0492234 -1103.2562
+92704.25847912348 4.0491447 -1103.2761
+92705.25847917376 4.0491447 -1103.2168
+92706.25847922404 4.049263 -1103.2168
+92707.25847927434 4.0492234 -1103.1576
+92708.25847932464 4.0491447 -1103.1774
+92709.25847937493 4.0490661 -1103.1576
+92710.25847942522 4.0491447 -1103.1576
+92711.25847947552 4.0490661 -1103.2168
+92712.2584795258 4.0490661 -1103.1576
+92713.25847957608 4.0491447 -1103.1576
+92714.25847962638 4.0490661 -1103.2562
+92715.25847967668 4.0490661 -1103.2168
+92716.25847972697 4.0491447 -1103.3353
+92717.25847977726 4.0490661 -1103.2168
+92718.25847982756 4.0490661 -1103.197
+92719.25847987784 4.0491052 -1103.1774
+92720.25847992812 4.0490265 -1103.2366
+92721.25847997842 4.0490661 -1103.2366
+92722.25848002871 4.0489874 -1103.3156
+92723.258480079 4.0490265 -1103.197
+92724.2584801293 4.0489478 -1103.1774
+92725.2584801796 4.0489087 -1103.2959
+92726.25848022988 4.0490265 -1103.2366
+92727.25848028016 4.0489478 -1103.2366
+92728.25848033046 4.0489087 -1103.2168
+92729.25848038075 4.0490265 -1103.2959
+92730.25848043105 4.0489087 -1103.2366
+92731.25848048134 4.0489087 -1103.2366
+92732.25848053164 4.0487905 -1103.2959
+92733.25848058192 4.0489087 -1103.197
+92734.2584806322 4.0489087 -1103.2562
+92735.2584806825 4.0488296 -1103.2761
+92736.2584807328 4.0489087 -1103.197
+92737.25848078309 4.0489874 -1103.1774
+92738.25848083338 4.0488296 -1103.2168
+92739.25848088368 4.0487118 -1103.2959
+92740.25848093396 4.0489087 -1103.2761
+92741.25848098424 4.0487905 -1103.197
+92742.25848103454 4.0488691 -1103.1774
+92743.25848108483 4.0489087 -1103.2168
+92744.25848113513 4.0487118 -1103.2168
+92745.25848118542 4.0487509 -1103.2562
+92746.25848123572 4.0487905 -1103.1774
+92747.258481286 4.0487509 -1103.197
+92748.25848133628 4.0486722 -1103.2562
+92749.25848138658 4.0488691 -1103.2366
+92750.25848143687 4.0487118 -1103.2562
+92751.25848148717 4.0487118 -1103.2562
+92752.25848153746 4.0487905 -1103.2562
+92753.25848158776 4.0487509 -1103.197
+92754.25848163804 4.0487118 -1103.2366
+92755.25848168832 4.0487118 -1103.2959
+92756.25848173862 4.0487118 -1103.2562
+92757.25848178891 4.0487118 -1103.2366
+92758.2584818392 4.0486722 -1103.1774
+92759.2584818895 4.0486722 -1103.2168
+92760.2584819398 4.0487509 -1103.2366
+92761.25848199008 4.0486722 -1103.197
+92762.25848204036 4.0486722 -1103.2562
+92763.25848209066 4.0487118 -1103.2168
+92764.25848214095 4.0485935 -1103.2366
+92765.25848219125 4.0487118 -1103.2366
+92766.25848224154 4.0486722 -1103.197
+92767.25848229184 4.0486722 -1103.2562
+92768.25848234212 4.0486331 -1103.197
+92769.2584823924 4.0485539 -1103.2562
+92770.2584824427 4.0485539 -1103.197
+92771.258482493 4.0485935 -1103.2562
+92772.25848254329 4.0485935 -1103.2562
+92773.25848259358 4.0485539 -1103.1774
+92774.25848264388 4.0485539 -1103.197
+92775.25848269416 4.0485148 -1103.2562
+92776.25848274444 4.0484753 -1103.1576
+92777.25848279474 4.0485148 -1103.2168
+92778.25848284503 4.0485539 -1103.197
+92779.25848289533 4.0484753 -1103.2168
+92780.25848294562 4.0485539 -1103.2959
+92781.25848299592 4.0485539 -1103.3353
+92782.2584830462 4.0485935 -1103.3156
+92783.25848309648 4.0484362 -1103.2761
+92784.25848314678 4.0484753 -1103.2366
+92785.25848319707 4.0484753 -1103.2761
+92786.25848324737 4.0483966 -1103.2562
+92787.25848329766 4.0484753 -1103.2562
+92788.25848334796 4.0484362 -1103.1774
+92789.25848339824 4.0484362 -1103.2168
+92790.25848344852 4.0484362 -1103.2168
+92791.25848349882 4.0483966 -1103.2562
+92792.25848354911 4.0484753 -1103.2366
+92793.2584835994 4.0483179 -1103.1774
+92794.2584836497 4.0484362 -1103.197
+92795.2584837 4.0483575 -1103.2562
+92796.25848375028 4.0482788 -1103.1774
+92797.25848380056 4.0484362 -1103.2366
+92798.25848385086 4.0483179 -1103.2366
+92799.25848390115 4.0483966 -1103.1576
+92800.25848395145 4.0483575 -1103.1576
+92801.25848400174 4.0482788 -1103.2761
+92802.25848405204 4.0482392 -1103.2168
+92803.25848410232 4.0483966 -1103.2366
+92804.2584841526 4.0482392 -1103.2168
+92805.2584842029 4.0483575 -1103.2761
+92806.2584842532 4.0482392 -1103.2366
+92807.25848430349 4.0483179 -1103.197
+92808.25848435378 4.0483179 -1103.197
+92809.25848440408 4.0482788 -1103.2761
+92810.25848445436 4.0483966 -1103.2761
+92811.25848450464 4.0481997 -1103.3353
+92812.25848455494 4.0483179 -1103.2959
+92813.25848460523 4.0481997 -1103.2562
+92814.25848465553 4.0481997 -1103.2761
+92815.25848470582 4.048121 -1103.197
+92816.25848475612 4.048121 -1103.197
+92817.2584848064 4.0481606 -1103.2366
+92818.25848485668 4.0481997 -1103.2168
+92819.25848490698 4.0480423 -1103.2168
+92820.25848495727 4.0481997 -1103.2168
+92821.25848500757 4.048121 -1103.2168
+92822.25848505786 4.0480423 -1103.2562
+92823.25848510816 4.0480423 -1103.2366
+92824.25848515844 4.0480819 -1103.2562
+92825.25848520872 4.0480423 -1103.1774
+92826.25848525902 4.0480819 -1103.2168
+92827.25848530931 4.0480819 -1103.2562
+92828.2584853596 4.0480423 -1103.2366
+92829.2584854099 4.0480819 -1103.3156
+92830.2584854602 4.0480423 -1103.1774
+92831.25848551048 4.0480819 -1103.3156
+92832.25848556076 4.048121 -1103.2366
+92833.25848561106 4.0480819 -1103.2168
+92834.25848566135 4.0480423 -1103.197
+92835.25848571165 4.0480032 -1103.2761
+92836.25848576194 4.0480032 -1103.2366
+92837.25848581224 4.0480032 -1103.3353
+92838.25848586252 4.0479636 -1103.1774
+92839.2584859128 4.0480032 -1103.2959
+92840.2584859631 4.047924 -1103.2168
+92841.2584860134 4.0478849 -1103.197
+92842.25848606369 4.0478849 -1103.2562
+92843.25848611398 4.0479636 -1103.2168
+92844.25848616428 4.0479636 -1103.1774
+92845.25848621456 4.0478849 -1103.2761
+92846.25848626484 4.047924 -1103.3156
+92847.25848631514 4.047924 -1103.1576
+92848.25848636543 4.0478454 -1103.2366
+92849.25848641573 4.0478849 -1103.2761
+92850.25848646602 4.047924 -1103.197
+92851.25848651632 4.0478063 -1103.2168
+92852.2584865666 4.0479636 -1103.2959
+92853.25848661688 4.0478454 -1103.1576
+92854.25848666718 4.0478849 -1103.197
+92855.25848671747 4.0478454 -1103.2562
+92856.25848676777 4.0478063 -1103.3156
+92857.25848681806 4.0478454 -1103.2761
+92858.25848686836 4.0478849 -1103.2562
+92859.25848691864 4.0477667 -1103.2168
+92860.25848696892 4.0478849 -1103.2366
+92861.25848701922 4.0478454 -1103.2168
+92862.25848706951 4.0478454 -1103.2168
+92863.2584871198 4.0477667 -1103.2761
+92864.2584871701 4.0478063 -1103.3156
+92865.2584872204 4.0478063 -1103.2562
+92866.25848727068 4.0477667 -1103.197
+92867.25848732096 4.047688 -1103.197
+92868.25848737126 4.0477276 -1103.197
+92869.25848742155 4.0476489 -1103.1576
+92870.25848747185 4.0477276 -1103.2761
+92871.25848752214 4.0476489 -1103.2366
+92872.25848757244 4.0476489 -1103.2168
+92873.25848762272 4.0477276 -1103.2168
+92874.258487673 4.0477276 -1103.2761
+92875.2584877233 4.047688 -1103.2168
+92876.2584877736 4.047688 -1103.2168
+92877.25848782388 4.0476093 -1103.2366
+92878.25848787418 4.047688 -1103.2562
+92879.25848792448 4.0474911 -1103.2959
+92880.25848797476 4.047688 -1103.2761
+92881.25848802504 4.047688 -1103.2168
+92882.25848807534 4.047688 -1103.2761
+92883.25848812563 4.047688 -1103.2562
+92884.25848817592 4.0475307 -1103.2959
+92885.25848822622 4.0475307 -1103.2562
+92886.25848827652 4.0474911 -1103.2366
+92887.2584883268 4.0476489 -1103.2366
+92888.25848837708 4.0474911 -1103.2168
+92889.25848842738 4.047452 -1103.2168
+92890.25848847767 4.0475698 -1103.1576
+92891.25848852796 4.0475307 -1103.2366
+92892.25848857826 4.047452 -1103.3353
+92893.25848862856 4.0474124 -1103.2168
+92894.25848867884 4.0473733 -1103.2168
+92895.25848872912 4.0474124 -1103.197
+92896.25848877942 4.047452 -1103.197
+92897.25848882971 4.0473733 -1103.1576
+92898.25848888 4.047452 -1103.2168
+92899.2584889303 4.0472941 -1103.1576
+92900.2584889806 4.0474911 -1103.3156
+92901.25848903088 4.047452 -1103.2562
+92902.25848908116 4.0473733 -1103.197
+92903.25848913146 4.0473337 -1103.2761
+92904.25848918175 4.047452 -1103.2761
+92905.25848923204 4.0474124 -1103.2168
+92906.25848928234 4.0472941 -1103.2562
+92907.25848933264 4.0473337 -1103.2959
+92908.25848938292 4.0473733 -1103.2761
+92909.2584894332 4.0473337 -1103.1774
+92910.2584894835 4.0472941 -1103.2959
+92911.2584895338 4.0473733 -1103.1774
+92912.25848958408 4.0473733 -1103.2366
+92913.25848963438 4.0473337 -1103.197
+92914.25848968468 4.047255 -1103.2168
+92915.25848973496 4.0472941 -1103.2366
+92916.25848978524 4.0472941 -1103.2959
+92917.25848983554 4.0473337 -1103.2761
+92918.25848988583 4.0471764 -1103.2562
+92919.25848993612 4.047255 -1103.2761
+92920.25848998642 4.0472941 -1103.2562
+92921.25849003672 4.0472155 -1103.197
+92922.258490087 4.047255 -1103.2366
+92923.25849013728 4.047255 -1103.197
+92924.25849018758 4.0472155 -1103.2366
+92925.25849023787 4.047255 -1103.197
+92926.25849028816 4.0473337 -1103.197
+92927.25849033846 4.047255 -1103.2562
+92928.25849038876 4.0471764 -1103.1576
+92929.25849043904 4.0471368 -1103.2168
+92930.25849048932 4.0472155 -1103.197
+92931.25849053962 4.047255 -1103.1774
+92932.25849058991 4.0472155 -1103.2761
+92933.2584906402 4.0472155 -1103.1774
+92934.2584906905 4.0471764 -1103.3551
+92935.2584907408 4.0471764 -1103.2168
+92936.25849079108 4.0470581 -1103.197
+92937.25849084136 4.0469794 -1103.2366
+92938.25849089166 4.0470977 -1103.1774
+92939.25849094195 4.0470581 -1103.197
+92940.25849099224 4.0470581 -1103.2366
+92941.25849104254 4.0470581 -1103.197
+92942.25849109284 4.0470185 -1103.2168
+92943.25849114312 4.0470185 -1103.2168
+92944.2584911934 4.0470185 -1103.2959
+92945.2584912437 4.0470581 -1103.2562
+92946.258491294 4.0470185 -1103.2562
+92947.25849134428 4.0469398 -1103.197
+92948.25849139458 4.0469794 -1103.2168
+92949.25849144488 4.0469794 -1103.3156
+92950.25849149516 4.0469794 -1103.2168
+92951.25849154544 4.0469794 -1103.2366
+92952.25849159574 4.0470977 -1103.3156
+92953.25849164603 4.0469398 -1103.2168
+92954.25849169632 4.0469398 -1103.1774
+92955.25849174662 4.0468612 -1103.2761
+92956.25849179692 4.0468612 -1103.1774
+92957.2584918472 4.0469398 -1103.2168
+92958.25849189748 4.0469398 -1103.2366
+92959.25849194778 4.0469398 -1103.2168
+92960.25849199809 4.0469007 -1103.2168
+92961.25849204836 4.0468612 -1103.1774
+92962.25849209866 4.0468221 -1103.1576
+92963.25849214896 4.0468612 -1103.2761
+92964.25849219924 4.0468221 -1103.2562
+92965.25849224952 4.0468612 -1103.3156
+92966.25849229982 4.0468612 -1103.2959
+92967.25849235013 4.0467038 -1103.1774
+92968.2584924004 4.0467825 -1103.2168
+92969.2584924507 4.0468612 -1103.2562
+92970.258492501 4.0468221 -1103.2959
+92971.25849255128 4.0467434 -1103.2761
+92972.25849260156 4.0467434 -1103.2366
+92973.25849265186 4.0467434 -1103.2959
+92974.25849270217 4.0467038 -1103.2366
+92975.25849275244 4.0469007 -1103.3353
+92976.25849280274 4.0468612 -1103.2959
+92977.25849285304 4.0466251 -1103.2366
+92978.25849290332 4.0467434 -1103.2366
+92979.2584929536 4.0466642 -1103.2366
+92980.2584930039 4.0467434 -1103.2168
+92981.2584930542 4.0466642 -1103.2366
+92982.25849310448 4.0467434 -1103.2562
+92983.25849315478 4.0466642 -1103.2366
+92984.25849320508 4.0467038 -1103.2366
+92985.25849325536 4.0466642 -1103.3156
+92986.25849330564 4.0465856 -1103.1774
+92987.25849335594 4.0466251 -1103.3156
+92988.25849340625 4.0466251 -1103.2366
+92989.25849345652 4.0465465 -1103.2959
+92990.25849350682 4.0466642 -1103.2366
+92991.25849355712 4.0465069 -1103.197
+92992.2584936074 4.0465069 -1103.197
+92993.25849365767 4.0465856 -1103.2761
+92994.25849370798 4.0466251 -1103.2562
+92995.25849375829 4.0465069 -1103.197
+92996.25849380856 4.0465465 -1103.1774
+92997.25849385886 4.0464678 -1103.2761
+92998.25849390916 4.0465465 -1103.2168
+92999.25849395944 4.0465465 -1103.2366
+93000.25849400971 4.0464282 -1103.2562
+93001.25849406002 4.0466251 -1103.197
+93002.25849411033 4.0464678 -1103.2761
+93003.2584941606 4.0465069 -1103.2562
+93004.2584942109 4.0464678 -1103.2168
+93005.2584942612 4.0464678 -1103.2366
+93006.25849431148 4.0465465 -1103.2959
+93007.25849436175 4.0465069 -1103.2562
+93008.25849441206 4.0464282 -1103.2168
+93009.25849446237 4.0463495 -1103.2366
+93010.25849451264 4.0464282 -1103.2366
+93011.25849456294 4.0463495 -1103.2959
+93012.25849461324 4.0463886 -1103.2959
+93013.25849466352 4.0464678 -1103.2959
+93014.2584947138 4.0463495 -1103.2761
+93015.2584947641 4.0464678 -1103.2562
+93016.2584948144 4.0463495 -1103.2562
+93017.25849486468 4.0464282 -1103.2366
+93018.25849491498 4.0463495 -1103.1774
+93019.25849496528 4.0463099 -1103.2562
+93020.25849501556 4.0463099 -1103.2168
+93021.25849506583 4.0462313 -1103.2761
+93022.25849511614 4.0462313 -1103.2366
+93023.25849516645 4.0461526 -1103.3749
+93024.25849521672 4.0462313 -1103.2366
+93025.25849526701 4.0463495 -1103.2168
+93026.25849531732 4.0463099 -1103.197
+93027.2584953676 4.0461526 -1103.197
+93028.25849541787 4.0461922 -1103.3156
+93029.25849546818 4.0461922 -1103.2761
+93030.25849551849 4.0462313 -1103.2168
+93031.25849556876 4.0463099 -1103.2562
+93032.25849561904 4.0462708 -1103.2366
+93033.25849566936 4.0462708 -1103.2761
+93034.25849571964 4.0462313 -1103.2562
+93035.25849576991 4.0460739 -1103.2168
+93036.25849582022 4.0462313 -1103.2959
+93037.25849587053 4.0462708 -1103.3353
+93038.2584959208 4.0461526 -1103.197
+93039.25849597108 4.0461526 -1103.2761
+93040.2584960214 4.0461922 -1103.2168
+93041.25849607168 4.0461135 -1103.2168
+93042.25849612195 4.0460739 -1103.2168
+93043.25849617226 4.0461135 -1103.2761
+93044.25849622257 4.0461526 -1103.2959
+93045.25849627284 4.0460343 -1103.2366
+93046.25849632312 4.0462313 -1103.3156
+93047.25849637344 4.0459557 -1103.1774
+93048.25849642372 4.0460739 -1103.2761
+93049.258496474 4.0461526 -1103.2761
+93050.2584965243 4.0460739 -1103.2761
+93051.2584965746 4.0459952 -1103.3749
+93052.25849662488 4.0460739 -1103.1378
+93053.25849667516 4.0460739 -1103.2761
+93054.25849672548 4.0459952 -1103.2562
+93055.25849677576 4.0460739 -1103.2562
+93056.25849682603 4.0459952 -1103.2761
+93057.25849687634 4.0460343 -1103.2761
+93058.25849692665 4.0459952 -1103.3156
+93059.25849697692 4.0459166 -1103.1576
+93060.2584970272 4.0459952 -1103.2168
+93061.25849707752 4.0459166 -1103.2168
+93062.2584971278 4.0460343 -1103.2959
+93063.25849717807 4.0460343 -1103.1774
+93064.25849722838 4.0459166 -1103.2562
+93065.25849727869 4.045877 -1103.2562
+93066.25849732896 4.0459557 -1103.1576
+93067.25849737924 4.0457983 -1103.2562
+93068.25849742956 4.0459166 -1103.197
+93069.25849747984 4.0458379 -1103.2562
+93070.25849753011 4.0458379 -1103.3353
+93071.25849758042 4.0459166 -1103.2366
+93072.25849763073 4.0457983 -1103.2366
+93073.258497681 4.0457196 -1103.197
+93074.25849773128 4.0457587 -1103.2959
+93075.2584977816 4.0457983 -1103.2562
+93076.25849783188 4.0459166 -1103.2168
+93077.25849788215 4.0457587 -1103.2562
+93078.25849793246 4.0458379 -1103.2168
+93079.25849798277 4.0457983 -1103.2562
+93080.25849803304 4.0457587 -1103.197
+93081.25849808332 4.0457587 -1103.1774
+93082.25849813364 4.0458379 -1103.2761
+93083.25849818392 4.04568 -1103.197
+93084.2584982342 4.045877 -1103.2959
+93085.2584982845 4.0456014 -1103.1576
+93086.2584983348 4.0456409 -1103.1774
+93087.25849838508 4.0457196 -1103.2168
+93088.25849843536 4.0456409 -1103.2366
+93089.25849848568 4.04568 -1103.1182
+93090.25849853596 4.0457196 -1102.0912
+93091.25849858623 4.0456409 -1101.0443
+93092.25849863654 4.0457196 -1100.8666
+93093.25849868685 4.04568 -1100.9653
+93094.25849873712 4.0456014 -1105.5671
+93095.2584987874 4.0456409 -1105.4882
+93096.25849883772 4.0457196 -1107.7988
+93097.258498888 4.0457196 -1107.7988
+93098.25849893827 4.0457587 -1107.7791
+93099.25849898858 4.0454831 -1105.2906
+93100.25849903889 4.0455227 -1106.9298
+93101.25849908916 4.0454831 -1106.9496
+93102.25849913944 4.0455227 -1106.9496
+93103.25849918976 4.0455227 -1102.2096
+93104.25849924004 4.0455227 -1101.2023
+93105.25849929031 4.0456409 -1101.1825
+93106.25849934062 4.0455623 -1101.1628
+93107.25849939093 4.0454831 -1105.5868
+93108.2584994412 4.045444 -1102.7428
+93109.25849949148 4.045444 -1102.2491
+93110.2584995418 4.0454044 -1102.2491
+93111.25849959208 4.0455227 -1102.1898
+93112.25849964235 4.0454044 -1103.9871
+93113.25849969266 4.0454831 -1104.6191
+93114.25849974297 4.045444 -1104.6586
+93115.25849979324 4.0454044 -1104.6783
+93116.25849984352 4.0454044 -1102.9008
+93117.25849989384 4.0454044 -1102.6244
+93118.25849994412 4.045444 -1102.644
+93119.2584999944 4.045444 -1102.5848
+93120.2585000447 4.0453653 -1102.6244
+93121.258500095 4.0453653 -1103.6119
+93122.25850014528 4.0453653 -1103.9277
+93123.25850019556 4.0454044 -1103.9476
+93124.25850024588 4.0453258 -1103.8291
+93125.25850029616 4.0453653 -1103.4736
+93126.25850034643 4.0453258 -1103.6119
+93127.25850039674 4.0453653 -1103.5723
+93128.25850044705 4.0452867 -1103.6316
+93129.25850049732 4.0452867 -1103.2168
+93130.2585005476 4.0453258 -1103.3551
+93131.25850059792 4.0453258 -1103.3156
+93132.2585006482 4.0452867 -1103.3749
+93133.25850069847 4.0452867 -1103.3156
+93134.25850074878 4.045208 -1103.1378
+93135.25850079909 4.0452471 -1103.3551
+93136.25850084936 4.0452867 -1103.197
+93137.25850089964 4.0452471 -1103.2562
+93138.25850094996 4.0451288 -1103.2562
+93139.25850100024 4.0452471 -1103.1182
+93140.25850105051 4.045208 -1103.0588
+93141.25850110082 4.0452867 -1103.2366
+93142.25850115113 4.0452867 -1103.2761
+93143.2585012014 4.045208 -1103.2959
+93144.25850125168 4.0451684 -1103.1774
+93145.258501302 4.0452471 -1103.2959
+93146.25850135228 4.0451684 -1103.197
+93147.25850140255 4.0451684 -1103.2761
+93148.25850145286 4.0451288 -1103.1378
+93149.25850150317 4.0450501 -1103.2168
+93150.25850155344 4.0451288 -1103.2366
+93151.25850160372 4.0451288 -1103.2959
+93152.25850165404 4.0450897 -1103.1774
+93153.25850170432 4.0449324 -1103.1774
+93154.2585017546 4.0450501 -1103.2168
+93155.2585018049 4.045011 -1103.2168
+93156.2585018552 4.0451288 -1103.2761
+93157.25850190548 4.0450501 -1103.2562
+93158.25850195576 4.045011 -1103.2959
+93159.25850200608 4.0449715 -1103.197
+93160.25850205636 4.0450501 -1103.2562
+93161.25850210663 4.045011 -1103.2761
+93162.25850215694 4.0450501 -1103.2168
+93163.25850220725 4.0449715 -1103.3156
+93164.25850225752 4.0449715 -1103.2562
+93165.2585023078 4.0448532 -1103.1576
+93166.25850235812 4.0449715 -1103.2366
+93167.2585024084 4.0449324 -1103.2562
+93168.25850245867 4.0448141 -1103.2366
+93169.25850250898 4.0448928 -1103.2168
+93170.25850255929 4.0449324 -1103.2959
+93171.25850260956 4.0447745 -1103.2168
+93172.25850265984 4.0449324 -1103.2168
+93173.25850271016 4.0448141 -1103.1182
+93174.25850276044 4.0449324 -1103.2168
+93175.25850281071 4.0448928 -1103.2959
+93176.25850286102 4.0448532 -1103.3156
+93177.25850291133 4.0449324 -1103.2562
+93178.2585029616 4.0447354 -1103.2761
+93179.25850301188 4.0448141 -1103.2562
+93180.25850306218 4.0449324 -1103.0984
+93181.25850311248 4.0448141 -1103.2761
+93182.25850316275 4.0448141 -1103.1576
+93183.25850321306 4.0447354 -1103.2562
+93184.25850326337 4.0447354 -1103.1774
+93185.25850331364 4.0447354 -1103.197
+93186.25850336392 4.0447354 -1103.1378
+93187.25850341422 4.0446959 -1103.3156
+93188.25850346452 4.0447354 -1103.2761
+93189.2585035148 4.0447354 -1103.1774
+93190.2585035651 4.0446568 -1103.2168
+93191.2585036154 4.0446959 -1103.2366
+93192.25850366568 4.0447354 -1103.3156
+93193.25850371596 4.0446568 -1103.2366
+93194.25850376626 4.0445781 -1103.197
+93195.25850381656 4.0446959 -1103.2562
+93196.25850386683 4.0446172 -1103.2562
+93197.25850391714 4.0446568 -1103.2366
+93198.25850396744 4.0446568 -1103.1576
+93199.25850401772 4.0447745 -1103.2959
+93200.258504068 4.0445781 -1103.2168
+93201.2585041183 4.0446568 -1103.1378
+93202.2585041686 4.0446959 -1103.2168
+93203.25850421887 4.0446959 -1103.2562
+93204.25850426918 4.0445781 -1103.2761
+93205.25850431948 4.0445781 -1103.197
+93206.25850436976 4.0444989 -1103.2366
+93207.25850442004 4.0445385 -1103.2761
+93208.25850447034 4.0445781 -1103.1576
+93209.25850452064 4.0445781 -1103.2562
+93210.25850457091 4.0445385 -1103.2761
+93211.25850462122 4.0444598 -1103.1378
+93212.25850467152 4.0445385 -1103.3156
+93213.2585047218 4.0445385 -1103.2366
+93214.25850477208 4.0444598 -1103.197
+93215.25850482238 4.0445385 -1103.2761
+93216.25850487268 4.0444202 -1103.3156
+93217.25850492295 4.0444202 -1103.2959
+93218.25850497326 4.0444989 -1103.3156
+93219.25850502356 4.0444598 -1103.2366
+93220.25850507384 4.0444202 -1103.2366
+93221.25850512412 4.0443025 -1103.2761
+93222.25850517442 4.0444202 -1103.2168
+93223.25850522472 4.0444202 -1103.2562
+93224.258505275 4.0443416 -1103.1774
+93225.2585053253 4.0444989 -1103.2959
+93226.2585053756 4.0444598 -1103.2761
+93227.25850542588 4.0443025 -1103.2366
+93228.25850547616 4.0443416 -1103.2959
+93229.25850552646 4.0443025 -1103.2562
+93230.25850557676 4.0443416 -1103.2366
+93231.25850562705 4.0443025 -1103.2562
+93232.25850567734 4.0442629 -1103.2366
+93233.25850572764 4.0443811 -1103.2562
+93234.25850577792 4.0443416 -1103.2562
+93235.2585058282 4.0443416 -1103.1378
+93236.2585058785 4.0443416 -1103.2761
+93237.2585059288 4.0443025 -1103.2168
+93238.25850597909 4.0444202 -1103.2959
+93239.25850602938 4.0442629 -1103.3353
+93240.25850607968 4.0442629 -1103.3551
+93241.25850612996 4.0443416 -1103.197
+93242.25850618024 4.0443025 -1103.2168
+93243.25850623054 4.0441055 -1103.2761
+93244.25850628084 4.0441446 -1103.2366
+93245.25850633113 4.0442629 -1103.2761
+93246.25850638142 4.0441842 -1103.1774
+93247.25850643172 4.0442629 -1103.3156
+93248.258506482 4.0441446 -1103.2562
+93249.25850653228 4.0441842 -1103.2959
+93250.25850658258 4.0441446 -1103.2562
+93251.25850663288 4.0441446 -1103.2959
+93252.25850668317 4.0441446 -1103.2761
+93253.25850673346 4.0441055 -1103.3353
+93254.25850678376 4.0441446 -1103.2959
+93255.25850683404 4.044066 -1103.2761
+93256.25850688432 4.044066 -1103.2959
+93257.25850693462 4.044066 -1103.2168
+93258.25850698492 4.0441446 -1103.2366
+93259.2585070352 4.0441055 -1103.1774
+93260.2585070855 4.0439873 -1103.197
+93261.2585071358 4.044066 -1103.1576
+93262.25850718608 4.0441055 -1103.2761
+93263.25850723636 4.0439873 -1103.3156
+93264.25850728666 4.0440269 -1103.2168
+93265.25850733696 4.0439873 -1103.197
+93266.25850738725 4.0440269 -1103.2168
+93267.25850743754 4.044066 -1103.3156
+93268.25850748784 4.0439873 -1103.2168
+93269.25850753812 4.0439482 -1103.2562
+93270.2585075884 4.0439482 -1103.3156
+93271.2585076387 4.0439482 -1103.2562
+93272.258507689 4.0439482 -1103.2761
+93273.25850773929 4.0438299 -1103.2959
+93274.25850778958 4.043869 -1103.2562
+93275.25850783988 4.0439482 -1103.197
+93276.25850789016 4.0439086 -1103.2761
+93277.25850794044 4.043869 -1103.2761
+93278.25850799074 4.043869 -1103.197
+93279.25850804104 4.0437903 -1103.2562
+93280.25850809133 4.0439086 -1103.2168
+93281.25850814162 4.0438299 -1103.2959
+93282.25850819192 4.0438299 -1103.2168
+93283.2585082422 4.0436726 -1103.2959
+93284.25850829248 4.043869 -1103.2959
+93285.25850834278 4.0437512 -1103.2761
+93286.25850839308 4.0437903 -1103.2168
+93287.25850844337 4.0437117 -1103.2959
+93288.25850849366 4.0437512 -1103.197
+93289.25850854396 4.0436726 -1103.2366
+93290.25850859424 4.0437903 -1103.2761
+93291.25850864452 4.0437512 -1103.2562
+93292.25850869482 4.0437117 -1103.3156
+93293.25850874512 4.0436726 -1103.2168
+93294.2585087954 4.0437117 -1103.2168
+93295.2585088457 4.043633 -1103.1182
+93296.258508896 4.043633 -1103.2959
+93297.25850894628 4.0436726 -1103.1774
+93298.25850899656 4.0436726 -1103.3156
+93299.25850904686 4.043633 -1103.1576
+93300.25850909716 4.043633 -1103.2366
+93301.25850914745 4.0435934 -1103.3156
+93302.25850919774 4.043633 -1103.2761
+93303.25850924804 4.0434756 -1103.2761
+93304.25850929832 4.043633 -1103.197
+93305.2585093486 4.0435543 -1103.2562
+93306.2585093989 4.0434756 -1103.2366
+93307.2585094492 4.0435543 -1103.2959
+93308.25850949949 4.0435147 -1103.3156
+93309.25850954978 4.0435147 -1103.2366
+93310.25850960008 4.0435147 -1103.2959
+93311.25850965036 4.0434361 -1103.2761
+93312.25850970064 4.0435934 -1103.2366
+93313.25850975094 4.0433178 -1103.2562
+93314.25850980124 4.0435543 -1103.1378
+93315.25850985153 4.0434756 -1103.3156
+93316.25850990182 4.0434361 -1103.2562
+93317.25850995212 4.0435147 -1103.3749
+93318.2585100024 4.0434756 -1103.2562
+93319.25851005268 4.0434361 -1103.2562
+93320.25851010298 4.0434361 -1103.197
+93321.25851015327 4.0433178 -1103.3551
+93322.25851020357 4.0433969 -1103.1774
+93323.25851025386 4.0433969 -1103.1774
+93324.25851030416 4.0434361 -1103.197
+93325.25851035444 4.0434756 -1103.2168
+93326.25851040472 4.0433574 -1103.2168
+93327.25851045502 4.0434361 -1103.2168
+93328.25851050531 4.0433574 -1103.1576
+93329.2585105556 4.0432391 -1103.2761
+93330.2585106059 4.0434756 -1103.2562
+93331.2585106562 4.0432787 -1103.2761
+93332.25851070648 4.0433574 -1103.197
+93333.25851075676 4.0432 -1103.3156
+93334.25851080706 4.0433178 -1103.1378
+93335.25851085735 4.0432 -1103.1774
+93336.25851090765 4.0432787 -1103.197
+93337.25851095794 4.0432787 -1103.1576
+93338.25851100824 4.0432391 -1103.1378
+93339.25851105852 4.0432391 -1103.2366
+93340.2585111088 4.0431604 -1103.2562
+93341.2585111591 4.0432 -1103.197
+93342.2585112094 4.0432391 -1103.2959
+93343.25851125969 4.0432 -1103.2168
+93344.25851130998 4.0432391 -1103.2366
+93345.25851136028 4.0431604 -1103.2562
+93346.25851141056 4.0432 -1103.3156
+93347.25851146084 4.0431213 -1103.1774
+93348.25851151114 4.0431604 -1103.2366
+93349.25851156143 4.0432391 -1103.2168
+93350.25851161173 4.0431604 -1103.2562
+93351.25851166202 4.0431213 -1103.2761
+93352.25851171232 4.0431213 -1103.3156
+93353.2585117626 4.0431213 -1103.3551
+93354.25851181288 4.0430031 -1103.2562
+93355.25851186318 4.0430818 -1103.2168
+93356.25851191347 4.0430427 -1103.2168
+93357.25851196377 4.0431213 -1103.2959
+93358.25851201406 4.0431604 -1103.2562
+93359.25851206436 4.0430427 -1103.3749
+93360.25851211464 4.0430427 -1103.3551
+93361.25851216492 4.0430031 -1103.2168
+93362.25851221522 4.0429244 -1103.2761
+93363.25851226551 4.0430818 -1103.2168
+93364.2585123158 4.0430031 -1103.2168
+93365.2585123661 4.0430427 -1103.3156
+93366.2585124164 4.0430427 -1103.2562
+93367.25851246668 4.0429244 -1103.3156
+93368.25851251696 4.0429244 -1103.1774
+93369.25851256726 4.0428848 -1103.2562
+93370.25851261755 4.0430427 -1103.1378
+93371.25851266785 4.0429635 -1103.2366
+93372.25851271814 4.0429244 -1103.2761
+93373.25851276844 4.0428848 -1103.1774
+93374.25851281872 4.0429635 -1103.1774
+93375.258512869 4.0428061 -1103.2959
+93376.2585129193 4.0428457 -1103.2366
+93377.2585129696 4.0429635 -1103.197
+93378.25851301989 4.0428457 -1103.3353
+93379.25851307018 4.0429244 -1103.197
+93380.25851312048 4.0427275 -1103.2562
+93381.25851317076 4.0428457 -1103.2168
+93382.25851322104 4.042767 -1103.1774
+93383.25851327134 4.042767 -1103.2959
+93384.25851332163 4.0428061 -1103.1774
+93385.25851337193 4.042767 -1103.2562
+93386.25851342222 4.042767 -1103.197
+93387.25851347252 4.0427275 -1103.197
+93388.2585135228 4.0427275 -1103.2168
+93389.25851357308 4.0428457 -1103.2366
+93390.25851362338 4.0427275 -1103.2562
+93391.25851367367 4.0426092 -1103.2959
+93392.25851372397 4.042767 -1103.2366
+93393.25851377426 4.0426879 -1103.2366
+93394.25851382456 4.0427275 -1103.2959
+93395.25851387484 4.0426092 -1103.197
+93396.25851392512 4.0426879 -1103.1774
+93397.25851397542 4.0426092 -1103.1774
+93398.25851402571 4.0426879 -1103.197
+93399.258514076 4.0426092 -1103.197
+93400.2585141263 4.0426488 -1103.2168
+93401.2585141766 4.0426092 -1103.197
+93402.25851422688 4.0426092 -1103.2366
+93403.25851427716 4.0426488 -1103.1576
+93404.25851432746 4.0425701 -1103.1774
+93405.25851437775 4.0425701 -1103.2366
+93406.25851442805 4.0425701 -1103.2366
+93407.25851447834 4.0425701 -1103.2562
+93408.25851452864 4.0425701 -1103.2562
+93409.25851457892 4.0424914 -1103.2366
+93410.2585146292 4.0425701 -1103.1576
+93411.2585146795 4.0424914 -1103.1576
+93412.2585147298 4.0424914 -1103.2168
+93413.25851478009 4.0424914 -1103.2761
+93414.25851483038 4.0424128 -1103.2562
+93415.25851488068 4.0424914 -1103.2168
+93416.25851493096 4.0424128 -1103.2168
+93417.25851498124 4.0424519 -1103.2562
+93418.25851503154 4.0424519 -1103.2168
+93419.25851508183 4.0424128 -1103.1774
+93420.25851513213 4.0424519 -1103.2366
+93421.25851518242 4.0424128 -1103.2168
+93422.25851523272 4.0423732 -1103.197
+93423.258515283 4.0423732 -1103.2168
+93424.25851533328 4.0424128 -1103.197
+93425.25851538358 4.0424519 -1103.2562
+93426.25851543387 4.0423732 -1103.2562
+93427.25851548417 4.0422549 -1103.2562
+93428.25851553446 4.0423732 -1103.3551
+93429.25851558476 4.0423336 -1103.2562
+93430.25851563504 4.0423336 -1103.1774
+93431.25851568532 4.0423732 -1103.3353
+93432.25851573562 4.0423732 -1103.197
+93433.25851578591 4.0422945 -1103.197
+93434.2585158362 4.0422549 -1103.2562
+93435.2585158865 4.0422945 -1103.3353
+93436.2585159368 4.0422158 -1103.2168
+93437.25851598708 4.0422549 -1103.2168
+93438.25851603736 4.0422158 -1103.2168
+93439.25851608766 4.0422158 -1103.2366
+93440.25851613795 4.0422945 -1103.2168
+93441.25851618825 4.0422549 -1103.2761
+93442.25851623854 4.0421762 -1103.2761
+93443.25851628884 4.0420976 -1103.2168
+93444.25851633912 4.0420189 -1103.2761
+93445.2585163894 4.0422158 -1103.2761
+93446.2585164397 4.0422158 -1103.2959
+93447.25851649 4.0420976 -1103.3156
+93448.25851654029 4.0421371 -1103.2168
+93449.25851659058 4.0421371 -1103.1576
+93450.25851664088 4.0420976 -1103.2761
+93451.25851669116 4.042058 -1103.2761
+93452.25851674144 4.0421371 -1103.2761
+93453.25851679174 4.0420976 -1103.1576
+93454.25851684203 4.0420189 -1103.2168
+93455.25851689233 4.0419793 -1103.2562
+93456.25851694262 4.0420976 -1103.3551
+93457.25851699292 4.0419793 -1103.197
+93458.2585170432 4.0419402 -1103.2366
+93459.25851709348 4.0419793 -1103.2366
+93460.25851714378 4.0420189 -1103.1774
+93461.25851719407 4.042058 -1103.2562
+93462.25851724437 4.0420189 -1103.1774
+93463.25851729466 4.0419793 -1103.2168
+93464.25851734496 4.0419006 -1103.3156
+93465.25851739524 4.0419793 -1103.2366
+93466.25851744552 4.0419793 -1103.1774
+93467.25851749582 4.0419793 -1103.2761
+93468.25851754611 4.0419402 -1103.2761
+93469.2585175964 4.0419006 -1103.3353
+93470.2585176467 4.0419006 -1103.2562
+93471.258517697 4.0420189 -1103.2168
+93472.25851774728 4.0419402 -1103.2562
+93473.25851779756 4.0418615 -1103.2366
+93474.25851784786 4.0418615 -1103.2562
+93475.25851789815 4.0419402 -1103.2168
+93476.25851794844 4.0417824 -1103.2959
+93477.25851799874 4.0418615 -1103.3156
+93478.25851804904 4.0418615 -1103.2562
+93479.25851809932 4.0417824 -1103.2761
+93480.2585181496 4.041822 -1103.2168
+93481.2585181999 4.041822 -1103.3156
+93482.2585182502 4.0417824 -1103.197
+93483.25851830048 4.0417433 -1103.197
+93484.25851835078 4.0417037 -1103.2168
+93485.25851840108 4.0417037 -1103.2761
+93486.25851845136 4.0417037 -1103.2168
+93487.25851850164 4.0417824 -1103.1774
+93488.25851855194 4.0417433 -1103.2366
+93489.25851860223 4.0417037 -1103.2366
+93490.25851865252 4.041625 -1103.2562
+93491.25851870282 4.0415463 -1103.3156
+93492.25851875312 4.0415463 -1103.2168
+93493.2585188034 4.0415859 -1103.1774
+93494.25851885368 4.041625 -1103.2366
+93495.25851890398 4.041625 -1103.1774
+93496.25851895427 4.041625 -1103.2366
+93497.25851900456 4.0415859 -1103.2959
+93498.25851905486 4.0415859 -1103.3353
+93499.25851910516 4.0417433 -1103.2761
+93500.25851915544 4.041625 -1103.2168
+93501.25851920572 4.0416646 -1103.2562
+93502.25851925602 4.0415463 -1103.2168
+93503.25851930631 4.041625 -1103.2761
+93504.2585193566 4.0415072 -1103.197
+93505.2585194069 4.0415072 -1103.2562
+93506.2585194572 4.0415859 -1103.2366
+93507.25851950748 4.0415859 -1103.2562
+93508.25851955776 4.0415463 -1103.197
+93509.25851960806 4.0414677 -1103.2168
+93510.25851965835 4.0415072 -1103.197
+93511.25851970864 4.0414677 -1103.3156
+93512.25851975894 4.0414281 -1103.2562
+93513.25851980924 4.0414281 -1103.2562
+93514.25851985952 4.0414677 -1103.197
+93515.2585199098 4.0413103 -1103.2562
+93516.2585199601 4.0413494 -1103.2761
+93517.2585200104 4.041389 -1103.2168
+93518.25852006068 4.0414677 -1103.3156
+93519.25852011098 4.0414677 -1103.197
+93520.25852016128 4.041389 -1103.2562
+93521.25852021156 4.0413494 -1103.1774
+93522.25852026184 4.0413103 -1103.2761
+93523.25852031214 4.0413494 -1103.2562
+93524.25852036243 4.0413103 -1103.2761
+93525.25852041272 4.0413494 -1103.3156
+93526.25852046302 4.0413494 -1103.197
+93527.25852051332 4.0413103 -1103.1774
+93528.2585205636 4.0412707 -1103.2366
+93529.25852061388 4.0412707 -1103.2366
+93530.25852066418 4.041389 -1103.2168
+93531.25852071447 4.0413103 -1103.2366
+93532.25852076476 4.0412316 -1103.2168
+93533.25852081506 4.0411525 -1103.2959
+93534.25852086536 4.0412316 -1103.2168
+93535.25852091564 4.0412316 -1103.2366
+93536.25852096592 4.0413494 -1103.2168
+93537.25852101622 4.0411921 -1103.2366
+93538.25852106651 4.0411525 -1103.2562
+93539.2585211168 4.0411525 -1103.3156
+93540.2585211671 4.0411525 -1103.2366
+93541.2585212174 4.0411921 -1103.2761
+93542.25852126768 4.0412316 -1103.197
+93543.25852131796 4.0411921 -1103.2168
+93544.25852136826 4.0411525 -1103.2168
+93545.25852141855 4.0411525 -1103.2562
+93546.25852146884 4.0411134 -1103.2761
+93547.25852151914 4.0411525 -1103.2562
+93548.25852156944 4.0411134 -1103.2761
+93549.25852161972 4.0410738 -1103.2168
+93550.25852167 4.0409951 -1103.3156
+93551.2585217203 4.0411134 -1103.2168
+93552.2585217706 4.0411134 -1103.2168
+93553.25852182088 4.0410347 -1103.2562
+93554.25852187118 4.0409951 -1103.2761
+93555.25852192148 4.0409951 -1103.2959
+93556.25852197176 4.0409164 -1103.2168
+93557.25852202204 4.0409951 -1103.3156
+93558.25852207234 4.0409951 -1103.2959
+93559.25852212265 4.040956 -1103.2168
+93560.25852217292 4.0409951 -1103.197
+93561.25852222322 4.040956 -1103.2761
+93562.25852227352 4.0410347 -1103.2168
+93563.2585223238 4.0410347 -1103.2366
+93564.25852237408 4.0410347 -1103.197
+93565.25852242438 4.0408773 -1103.197
+93566.25852247469 4.0410738 -1103.2959
+93567.25852252496 4.040956 -1103.2562
+93568.25852257526 4.040956 -1103.2562
+93569.25852262556 4.0408378 -1103.2366
+93570.25852267584 4.0409164 -1103.2761
+93571.25852272612 4.0409164 -1103.2168
+93572.25852277642 4.0407591 -1103.197
+93573.25852282673 4.0408378 -1103.2562
+93574.258522877 4.0407982 -1103.2366
+93575.2585229273 4.0407591 -1103.2562
+93576.2585229776 4.0408773 -1103.2562
+93577.25852302788 4.0407982 -1103.197
+93578.25852307816 4.0407195 -1103.2761
+93579.25852312846 4.0408773 -1103.2761
+93580.25852317877 4.0408773 -1103.197
+93581.25852322904 4.0407591 -1103.2761
+93582.25852327934 4.0407982 -1103.3353
+93583.25852332964 4.0407982 -1103.2761
+93584.25852337992 4.0406804 -1103.1378
+93585.2585234302 4.0407195 -1103.197
+93586.2585234805 4.0407591 -1103.2562
+93587.2585235308 4.0407591 -1103.2761
+93588.25852358108 4.0407591 -1103.197
+93589.25852363138 4.0406804 -1103.2562
+93590.25852368168 4.0407195 -1103.197
+93591.25852373196 4.0406804 -1103.2168
+93592.25852378223 4.0407591 -1103.3156
+93593.25852383254 4.0406017 -1103.2761
+93594.25852388285 4.0406017 -1103.2366
+93595.25852393312 4.0406017 -1103.2562
+93596.25852398342 4.0406408 -1103.2761
+93597.25852403372 4.0405622 -1103.2959
+93598.258524084 4.0405622 -1103.2761
+93599.25852413427 4.0406017 -1103.2562
+93600.25852418458 4.0406017 -1103.2366
+93601.25852423489 4.0406408 -1103.2761
+93602.25852428516 4.0405226 -1103.2168
+93603.25852433546 4.0406017 -1103.2366
+93604.25852438576 4.0404439 -1103.1576
+93605.25852443604 4.0404439 -1103.2366
+93606.25852448631 4.0404439 -1103.2959
+93607.25852453662 4.0405226 -1103.197
+93608.25852458693 4.0404835 -1103.2366
+93609.2585246372 4.0404439 -1103.3945
+93610.2585246875 4.0404439 -1103.2562
+93611.2585247378 4.0404835 -1103.197
+93612.25852478808 4.0404439 -1103.197
+93613.25852483835 4.0405226 -1103.2366
+93614.25852488866 4.0403652 -1103.2366
+93615.25852493897 4.0403261 -1103.1774
+93616.25852498924 4.0404439 -1103.2366
+93617.25852503954 4.0403652 -1103.3945
+93618.25852508984 4.0404439 -1103.2562
+93619.25852514012 4.0403261 -1103.2761
+93620.2585251904 4.0403261 -1103.2959
+93621.2585252407 4.0403652 -1103.1774
+93622.258525291 4.0403652 -1103.2366
+93623.25852534128 4.0402865 -1103.2168
+93624.25852539157 4.0403261 -1103.2562
+93625.25852544188 4.0403652 -1103.1774
+93626.25852549216 4.0402865 -1103.2761
+93627.25852554243 4.0403261 -1103.1182
+93628.25852559274 4.0402865 -1103.2761
+93629.25852564305 4.0402474 -1103.2168
+93630.25852569332 4.0403652 -1103.2761
+93631.2585257436 4.0403261 -1103.1378
+93632.25852579392 4.0402474 -1103.1774
+93633.2585258442 4.0401683 -1103.2959
+93634.25852589447 4.0402474 -1103.2168
+93635.25852594478 4.0402079 -1103.2168
+93636.25852599509 4.0402079 -1103.2366
+93637.25852604536 4.0402474 -1103.2761
+93638.25852609564 4.0401683 -1103.2761
+93639.25852614596 4.0400896 -1103.197
+93640.25852619624 4.0400896 -1103.2168
+93641.25852624651 4.0402474 -1103.2366
+93642.25852629682 4.0402079 -1103.3156
+93643.25852634713 4.0400896 -1103.2761
+93644.2585263974 4.0400896 -1103.2366
+93645.25852644768 4.0401292 -1103.2761
+93646.258526498 4.0400109 -1103.2366
+93647.25852654828 4.0400896 -1103.2168
+93648.25852659855 4.0401292 -1103.2959
+93649.25852664886 4.0399718 -1103.2366
+93650.25852669917 4.0400896 -1103.2168
+93651.25852674944 4.0401292 -1103.1576
+93652.25852679972 4.0400505 -1103.1378
+93653.25852685004 4.0400505 -1103.3353
+93654.25852690032 4.0399718 -1103.1774
+93655.2585269506 4.0400109 -1103.2761
+93656.2585270009 4.0400505 -1103.2366
+93657.2585270512 4.0399323 -1103.2562
+93658.25852710148 4.0399718 -1103.2168
+93659.25852715176 4.0400109 -1103.2168
+93660.25852720208 4.0400109 -1103.2366
+93661.25852725236 4.0399718 -1103.2761
+93662.25852730263 4.0400109 -1103.2959
+93663.25852735294 4.0398927 -1103.2562
+93664.25852740325 4.0399718 -1103.2562
+93665.25852745352 4.0398927 -1103.3749
+93666.2585275038 4.0399718 -1103.2366
+93667.25852755412 4.0399323 -1103.3156
+93668.2585276044 4.039814 -1103.1774
+93669.25852765467 4.0398536 -1103.1774
+93670.25852770498 4.0399323 -1103.197
+93671.25852775529 4.039814 -1103.3156
+93672.25852780556 4.0398536 -1103.1576
+93673.25852785584 4.039814 -1103.197
+93674.25852790616 4.0398536 -1103.2366
+93675.25852795644 4.0397749 -1103.2562
+93676.25852800671 4.0397353 -1103.197
+93677.25852805702 4.0397353 -1103.2761
+93678.25852810733 4.039814 -1103.197
+93679.2585281576 4.0397353 -1103.2168
+93680.25852820788 4.0396566 -1103.2366
+93681.2585282582 4.0396962 -1103.1576
+93682.25852830848 4.0396962 -1103.1774
+93683.25852835875 4.0396962 -1103.2168
+93684.25852840906 4.0397353 -1103.2761
+93685.25852845937 4.0396962 -1103.2562
+93686.25852850964 4.0397353 -1103.2168
+93687.25852855992 4.0396962 -1103.2562
+93688.25852861024 4.0396566 -1103.2366
+93689.25852866052 4.0396962 -1103.1576
+93690.2585287108 4.0396962 -1103.2168
+93691.2585287611 4.039578 -1103.197
+93692.2585288114 4.0396171 -1103.2366
+93693.25852886168 4.039578 -1103.2168
+93694.25852891196 4.039578 -1103.2959
+93695.25852896228 4.039578 -1103.2761
+93696.25852901256 4.0396566 -1103.2761
+93697.25852906283 4.039578 -1103.1378
+93698.25852911314 4.0395384 -1103.1774
+93699.25852916345 4.0396171 -1103.2562
+93700.25852921372 4.0395384 -1103.2168
+93701.258529264 4.0394993 -1103.2562
+93702.25852931432 4.0396171 -1103.2562
+93703.2585293646 4.0394206 -1103.2562
+93704.25852941487 4.0394993 -1103.2562
+93705.25852946518 4.039578 -1103.2562
+93706.25852951549 4.0394993 -1103.197
+93707.25852956576 4.0395384 -1103.2959
+93708.25852961604 4.039578 -1103.2168
+93709.25852966636 4.0394597 -1103.2761
+93710.25852971664 4.039381 -1103.2366
+93711.25852976691 4.0394597 -1103.1576
+93712.25852981722 4.039381 -1103.2562
+93713.25852986753 4.0393419 -1103.197
+93714.2585299178 4.039381 -1103.1774
+93715.25852996808 4.0392628 -1103.2959
+93716.2585300184 4.0394206 -1103.2366
+93717.25853006868 4.0393419 -1103.197
+93718.25853011895 4.039381 -1103.2562
+93719.25853016926 4.0393419 -1103.2959
+93720.25853021957 4.0393419 -1103.2959
+93721.25853026984 4.0392628 -1103.2562
+93722.25853032012 4.039381 -1103.1774
+93723.25853037044 4.0393023 -1103.2366
+93724.25853042072 4.0393419 -1103.2366
+93725.258530471 4.0392628 -1103.2366
+93726.2585305213 4.0393023 -1103.2562
+93727.2585305716 4.0391841 -1103.2366
+93728.25853062188 4.0392237 -1103.2959
+93729.25853067216 4.039145 -1103.3551
+93730.25853072248 4.0392237 -1103.2562
+93731.25853077276 4.039381 -1103.3156
+93732.25853082303 4.039145 -1103.197
+93733.25853087334 4.039145 -1103.2959
+93734.25853092365 4.039145 -1103.1378
+93735.25853097392 4.0392237 -1103.3551
+93736.2585310242 4.0391054 -1103.2168
+93737.25853107452 4.0390663 -1103.197
+93738.2585311248 4.0391054 -1103.2761
+93739.25853117507 4.0390663 -1103.2366
+93740.25853122538 4.0391841 -1103.3156
+93741.25853127569 4.0390663 -1103.2168
+93742.25853132596 4.0391054 -1103.2168
+93743.25853137624 4.039145 -1103.3156
+93744.25853142656 4.0390267 -1103.2761
+93745.25853147684 4.039145 -1103.3353
+93746.25853152711 4.0390663 -1103.3156
+93747.25853157742 4.0389872 -1103.2761
+93748.25853162773 4.0389085 -1103.197
+93749.258531678 4.0389481 -1103.3156
+93750.25853172828 4.0390267 -1103.2959
+93751.2585317786 4.0390663 -1103.197
+93752.25853182888 4.0389481 -1103.2959
+93753.25853187915 4.0389872 -1103.2168
+93754.25853192946 4.0389872 -1103.2168
+93755.25853197977 4.0389481 -1103.197
+93756.25853203004 4.0388694 -1103.2366
+93757.25853208032 4.0389481 -1103.1774
+93758.25853213064 4.0389481 -1103.2761
+93759.25853218092 4.0388694 -1103.2366
+93760.2585322312 4.0389085 -1103.2366
+93761.2585322815 4.0390267 -1103.2562
+93762.2585323318 4.0387907 -1103.2168
+93763.25853238208 4.0387907 -1103.2562
+93764.25853243236 4.0388694 -1103.2761
+93765.25853248268 4.0388298 -1103.2562
+93766.25853253296 4.0389085 -1103.1182
+93767.25853258323 4.0389085 -1103.2366
+93768.25853263354 4.0387511 -1103.2761
+93769.25853268385 4.0387907 -1103.3551
+93770.25853273412 4.0388694 -1103.2761
+93771.2585327844 4.0387511 -1103.2562
+93772.25853283472 4.0388298 -1103.2761
+93773.258532885 4.0387511 -1103.2959
+93774.25853293527 4.0388694 -1103.3353
+93775.25853298558 4.038712 -1103.2761
+93776.25853303589 4.038712 -1103.3156
+93777.25853308616 4.038712 -1103.197
+93778.25853313644 4.038712 -1103.2562
+93779.25853318674 4.0386329 -1103.2761
+93780.25853323704 4.0387511 -1103.2168
+93781.25853328731 4.0386724 -1103.2562
+93782.25853333762 4.0386724 -1103.2761
+93783.25853338793 4.0385542 -1103.2366
+93784.2585334382 4.0386329 -1103.2366
+93785.25853348848 4.0386724 -1103.2168
+93786.25853353878 4.0385938 -1103.1774
+93787.25853358908 4.038712 -1103.2168
+93788.25853363935 4.0385542 -1103.2761
+93789.25853368966 4.0386329 -1103.2562
+93790.25853373997 4.0385938 -1103.3156
+93791.25853379024 4.0385938 -1103.1774
+93792.25853384052 4.0386329 -1103.2168
+93793.25853389082 4.0385542 -1103.2366
+93794.25853394112 4.0384364 -1103.2959
+93795.2585339914 4.0385542 -1103.2761
+93796.2585340417 4.0385151 -1103.197
+93797.258534092 4.0385151 -1103.2959
+93798.25853414228 4.0385151 -1103.2366
+93799.25853419256 4.0385151 -1103.2761
+93800.25853424286 4.0385151 -1103.2959
+93801.25853429316 4.0385151 -1103.3353
+93802.25853434343 4.0383968 -1103.197
+93803.25853439374 4.0382786 -1103.1774
+93804.25853444404 4.0384364 -1103.3353
+93805.25853449432 4.0384364 -1103.2959
+93806.2585345446 4.0383182 -1103.3156
+93807.2585345949 4.0385151 -1103.2562
+93808.2585346452 4.0383182 -1103.2959
+93809.25853469547 4.0383968 -1103.197
+93810.25853474578 4.0383182 -1103.2761
+93811.25853479608 4.0383968 -1103.1774
+93812.25853484636 4.0383573 -1103.2562
+93813.25853489664 4.0383573 -1103.197
+93814.25853494694 4.0381999 -1103.2959
+93815.25853499724 4.0383182 -1103.3353
+93816.25853504751 4.0382395 -1103.3156
+93817.25853509782 4.0382395 -1103.3156
+93818.25853514812 4.0381999 -1103.1774
+93819.2585351984 4.0381999 -1103.2366
+93820.25853524868 4.0382786 -1103.2168
+93821.25853529898 4.0383573 -1103.2168
+93822.25853534928 4.0381999 -1103.2168
+93823.25853539955 4.0381608 -1103.1576
+93824.25853544986 4.0382395 -1103.2562
+93825.25853550016 4.0381212 -1103.1576
+93826.25853555044 4.0381999 -1103.197
+93827.25853560072 4.0380816 -1103.197
+93828.25853565102 4.0381212 -1103.2562
+93829.25853570132 4.0382395 -1103.1774
+93830.2585357516 4.0381999 -1103.2761
+93831.2585358019 4.0381212 -1103.2168
+93832.2585358522 4.0381212 -1103.2562
+93833.25853590248 4.0380816 -1103.2959
+93834.25853595276 4.0381608 -1103.197
+93835.25853600306 4.0380425 -1103.2168
+93836.25853605336 4.0381212 -1103.2562
+93837.25853610365 4.0380425 -1103.2366
+93838.25853615394 4.0380816 -1103.2761
+93839.25853620424 4.0380816 -1103.2562
+93840.25853625452 4.0380425 -1103.2366
+93841.2585363048 4.038003 -1103.197
+93842.2585363551 4.0380425 -1103.1774
+93843.2585364054 4.0380425 -1103.2168
+93844.25853645569 4.0379639 -1103.3156
+93845.25853650598 4.0380425 -1103.3156
+93846.25853655628 4.038003 -1103.3353
+93847.25853660656 4.038003 -1103.2168
+93848.25853665684 4.0379639 -1103.1774
+93849.25853670714 4.0379243 -1103.2959
+93850.25853675744 4.0379639 -1103.3353
+93851.25853680773 4.0378852 -1103.2761
+93852.25853685802 4.0378852 -1103.2168
+93853.25853690832 4.0379243 -1103.2168
+93854.2585369586 4.0378852 -1103.2168
+93855.25853700888 4.0378852 -1103.197
+93856.25853705918 4.0378456 -1103.2168
+93857.25853710948 4.0378456 -1103.3156
+93858.25853715977 4.0378456 -1103.1774
+93859.25853721006 4.0378852 -1103.1576
+93860.25853726036 4.0378065 -1103.2366
+93861.25853731064 4.0378065 -1103.2959
+93862.25853736092 4.0377274 -1103.2366
+93863.25853741122 4.0377669 -1103.2168
+93864.25853746152 4.0378065 -1103.1774
+93865.2585375118 4.0378456 -1103.2168
+93866.2585375621 4.0377274 -1103.1378
+93867.2585376124 4.0377669 -1103.1774
+93868.25853766268 4.0377669 -1103.2761
+93869.25853771296 4.0378852 -1103.3353
+93870.25853776326 4.0377274 -1103.2168
+93871.25853781356 4.0376487 -1103.2168
+93872.25853786385 4.0377274 -1103.2761
+93873.25853791414 4.0377274 -1103.2168
+93874.25853796444 4.0376487 -1103.2168
+93875.25853801472 4.0377274 -1103.3156
+93876.258538065 4.0376487 -1103.2959
+93877.2585381153 4.0376487 -1103.2959
+93878.2585381656 4.0376487 -1103.2959
+93879.25853821589 4.0375309 -1103.3156
+93880.25853826618 4.0375309 -1103.2761
+93881.25853831648 4.0376096 -1103.2366
+93882.25853836676 4.0376096 -1103.2562
+93883.25853841704 4.0375309 -1103.2168
+93884.25853846734 4.0375309 -1103.2562
+93885.25853851764 4.0375309 -1103.197
+93886.25853856793 4.0374517 -1103.1576
+93887.25853861822 4.0374913 -1103.2562
+93888.25853866852 4.0375309 -1103.2366
+93889.2585387188 4.0374913 -1103.3156
+93890.25853876908 4.0374913 -1103.2168
+93891.25853881938 4.0374517 -1103.2168
+93892.25853886968 4.0374517 -1103.2959
+93893.25853891997 4.0374126 -1103.2761
+93894.25853897026 4.0374126 -1103.2366
+93895.25853902056 4.0373731 -1103.3353
+93896.25853907084 4.0374517 -1103.2761
+93897.25853912112 4.0374517 -1103.2959
+93898.25853917142 4.0373731 -1103.2562
+93899.25853922172 4.0373731 -1103.1576
+93900.258539272 4.0373731 -1103.2761
+93901.2585393223 4.0374126 -1103.2562
+93902.2585393726 4.0374126 -1103.2168
+93903.25853942288 4.037334 -1103.2562
+93904.25853947316 4.0372553 -1103.2761
+93905.25853952346 4.037334 -1103.2168
+93906.25853957376 4.0372944 -1103.197
+93907.25853962405 4.0371766 -1103.2761
+93908.25853967434 4.0372944 -1103.2366
+93909.25853972464 4.0372553 -1103.2168
+93910.25853977492 4.0372553 -1103.2761
+93911.2585398252 4.0372157 -1103.2761
+93912.2585398755 4.0372157 -1103.3156
+93913.2585399258 4.0372157 -1103.3353
+93914.25853997609 4.0372944 -1103.3156
+93915.25854002638 4.0371766 -1103.3551
+93916.25854007668 4.0372553 -1103.2761
+93917.25854012696 4.0372553 -1103.2959
+93918.25854017724 4.037137 -1103.197
+93919.25854022754 4.0372157 -1103.3551
+93920.25854027783 4.037137 -1103.2562
+93921.25854032813 4.0371766 -1103.2959
+93922.25854037842 4.0372157 -1103.2959
+93923.25854042872 4.037137 -1103.2168
+93924.258540479 4.037137 -1103.2959
+93925.25854052928 4.037137 -1103.2761
+93926.25854057958 4.0370584 -1103.2168
+93927.25854062987 4.0370584 -1103.2959
+93928.25854068017 4.0371766 -1103.2761
+93929.25854073046 4.0370584 -1103.2562
+93930.25854078076 4.0370584 -1103.2761
+93931.25854083104 4.0370188 -1103.3156
+93932.25854088132 4.0370188 -1103.3353
+93933.25854093162 4.0369797 -1103.2761
+93934.25854098191 4.0370188 -1103.2366
+93935.2585410322 4.0370188 -1103.197
+93936.2585410825 4.0369797 -1103.3551
+93937.2585411328 4.0370188 -1103.2562
+93938.25854118308 4.0368218 -1103.2761
+93939.25854123336 4.0369401 -1103.2366
+93940.25854128366 4.0369797 -1103.2168
+93941.25854133395 4.0369797 -1103.1774
+93942.25854138425 4.0369401 -1103.2168
+93943.25854143454 4.0370188 -1103.2366
+93944.25854148484 4.0368614 -1103.1774
+93945.25854153512 4.0367827 -1103.1774
+93946.2585415854 4.0368218 -1103.2366
+93947.2585416357 4.0368218 -1103.197
+93948.258541686 4.0369401 -1103.2562
+93949.25854173629 4.0368218 -1103.2959
+93950.25854178658 4.0368218 -1103.2562
+93951.25854183688 4.0367432 -1103.3156
+93952.25854188716 4.0368218 -1103.3749
+93953.25854193744 4.0367432 -1103.2168
+93954.25854198774 4.0367432 -1103.2761
+93955.25854203803 4.0367827 -1103.2562
+93956.25854208833 4.0367432 -1103.3156
+93957.25854213862 4.0367827 -1103.2562
+93958.25854218892 4.0367432 -1103.2168
+93959.2585422392 4.0366645 -1103.197
+93960.25854228948 4.0367041 -1103.2366
+93961.25854233978 4.0367041 -1103.1576
+93962.25854239007 4.0367827 -1103.3156
+93963.25854244037 4.0366254 -1103.197
+93964.25854249066 4.0366254 -1103.2562
+93965.25854254096 4.0366254 -1103.2168
+93966.25854259124 4.0367041 -1103.2562
+93967.25854264152 4.0366254 -1103.2562
+93968.25854269182 4.0367041 -1103.2761
+93969.25854274211 4.0365858 -1103.197
+93970.2585427924 4.0365858 -1103.2366
+93971.2585428427 4.0367041 -1103.2168
+93972.258542893 4.0366645 -1103.2761
+93973.25854294328 4.0365858 -1103.2562
+93974.25854299356 4.0365858 -1103.197
+93975.25854304386 4.0366254 -1103.2959
+93976.25854309415 4.0365858 -1103.2562
+93977.25854314445 4.0365071 -1103.2959
+93978.25854319474 4.0365071 -1103.2959
+93979.25854324504 4.0365462 -1103.2959
+93980.25854329532 4.0364285 -1103.2959
+93981.2585433456 4.0364676 -1103.2761
+93982.2585433959 4.0364285 -1103.3156
+93983.2585434462 4.0365071 -1103.2959
+93984.25854349649 4.0364676 -1103.3156
+93985.25854354678 4.0364676 -1103.2761
+93986.25854359708 4.0365462 -1103.2366
+93987.25854364736 4.0364285 -1103.2761
+93988.25854369764 4.0363889 -1103.2959
+93989.25854374794 4.0363102 -1103.2168
+93990.25854379823 4.0363498 -1103.3156
+93991.25854384853 4.0364676 -1103.2366
+93992.25854389882 4.0363498 -1103.2959
+93993.25854394912 4.0363102 -1103.197
+93994.2585439994 4.0365071 -1103.2366
+93995.25854404968 4.0363102 -1103.2761
+93996.25854409998 4.0363498 -1103.1182
+93997.25854415027 4.0362315 -1103.197
+93998.25854420057 4.0362315 -1103.2959
+93999.25854425086 4.0362711 -1103.2168
+94000.25854430116 4.0362711 -1103.2562
+94001.25854435144 4.0361528 -1103.2562
+94002.25854440172 4.0362315 -1103.2562
+94003.25854445202 4.0362315 -1103.2562
+94004.25854450231 4.0361919 -1103.1576
+94005.2585445526 4.0362315 -1103.2168
+94006.2585446029 4.0361919 -1103.197
+94007.2585446532 4.0361919 -1103.2168
+94008.25854470348 4.0361919 -1103.2366
+94009.25854475376 4.0361528 -1103.2761
+94010.25854480406 4.0361919 -1103.2168
+94011.25854485435 4.0360346 -1103.2562
+94012.25854490465 4.0361919 -1103.2168
+94013.25854495494 4.0361528 -1103.2959
+94014.25854500524 4.0361133 -1103.2562
+94015.25854505552 4.0361528 -1103.2366
+94016.2585451058 4.0360742 -1103.2562
+94017.2585451561 4.0361133 -1103.2366
+94018.2585452064 4.0360346 -1103.2562
+94019.25854525669 4.0360346 -1103.2366
+94020.25854530698 4.0361133 -1103.2366
+94021.25854535728 4.0361133 -1103.2168
+94022.25854540756 4.0361133 -1103.2562
+94023.25854545784 4.0359955 -1103.2959
+94024.25854550814 4.0360346 -1103.2959
+94025.25854555843 4.0360346 -1103.2959
+94026.25854560873 4.0359955 -1103.2761
+94027.25854565902 4.0358772 -1103.1576
+94028.25854570932 4.0360346 -1103.1576
+94029.2585457596 4.0359163 -1103.2761
+94030.25854580988 4.0359559 -1103.3749
+94031.25854586018 4.0359163 -1103.1774
+94032.25854591047 4.0358772 -1103.2168
+94033.25854596077 4.0358377 -1103.2562
+94034.25854601106 4.0358377 -1103.2761
+94035.25854606136 4.0357985 -1103.2761
+94036.25854611164 4.0358772 -1103.2562
+94037.25854616192 4.0358377 -1103.3749
+94038.25854621222 4.0357985 -1103.2761
+94039.25854626251 4.0358377 -1103.2761
+94040.2585463128 4.035759 -1103.2562
+94041.2585463631 4.0358377 -1103.2761
+94042.2585464134 4.035759 -1103.2562
+94043.25854646368 4.0357199 -1103.2168
+94044.25854651396 4.0358377 -1103.2562
+94045.25854656426 4.0356803 -1103.3156
+94046.25854661455 4.0357199 -1103.3749
+94047.25854666485 4.0357199 -1103.2366
+94048.25854671514 4.0356412 -1103.2168
+94049.25854676544 4.0356803 -1103.2562
+94050.25854681572 4.0357199 -1103.3945
+94051.258546866 4.0357199 -1103.2366
+94052.2585469163 4.0357199 -1103.1576
+94053.2585469666 4.0356803 -1103.2761
+94054.25854701689 4.0356016 -1103.2366
+94055.25854706718 4.0357985 -1103.2761
+94056.25854711748 4.0356803 -1103.2959
+94057.25854716776 4.0356803 -1103.1774
+94058.25854721804 4.0356412 -1103.2761
+94059.25854726834 4.035562 -1103.2168
+94060.25854731863 4.0356016 -1103.1774
+94061.25854736893 4.0354834 -1103.2562
+94062.25854741922 4.0354443 -1103.3156
+94063.25854746952 4.0356016 -1103.2366
+94064.2585475198 4.0355229 -1103.2562
+94065.25854757008 4.0355229 -1103.1378
+94066.25854762038 4.035562 -1103.2761
+94067.25854767067 4.0355229 -1103.2366
+94068.25854772096 4.0355229 -1103.1774
+94069.25854777126 4.0355229 -1103.2168
+94070.25854782156 4.0354047 -1103.1576
+94071.25854787184 4.0352864 -1103.2168
+94072.25854792212 4.0354443 -1103.2562
+94073.25854797242 4.0355229 -1103.2761
+94074.25854802271 4.035326 -1103.2959
+94075.258548073 4.0353656 -1103.2562
+94076.2585481233 4.0354047 -1103.2562
+94077.2585481736 4.0354443 -1103.2959
+94078.25854822388 4.0354047 -1103.3353
+94079.25854827416 4.0354047 -1103.2761
+94080.25854832446 4.0354047 -1103.2562
+94081.25854837475 4.035326 -1103.2366
+94082.25854842504 4.0353656 -1103.2562
+94083.25854847534 4.0352864 -1103.2366
+94084.25854852564 4.035326 -1103.2562
+94085.25854857592 4.0352864 -1103.2761
+94086.2585486262 4.035326 -1103.3945
+94087.2585486765 4.035326 -1103.2959
+94088.2585487268 4.0353656 -1103.3156
+94089.25854877708 4.0352473 -1103.2959
+94090.25854882738 4.0352077 -1103.2366
+94091.25854887768 4.0352077 -1103.2562
+94092.25854892796 4.0352473 -1103.2761
+94093.25854897824 4.0351686 -1103.2562
+94094.25854902854 4.0352077 -1103.1576
+94095.25854907883 4.0352473 -1103.2761
+94096.25854912912 4.0351686 -1103.2959
+94097.25854917942 4.0352473 -1103.1576
+94098.25854922972 4.0351686 -1103.197
+94099.25854928 4.0351291 -1103.197
+94100.25854933028 4.0352077 -1103.3353
+94101.25854938058 4.0351291 -1103.2959
+94102.25854943087 4.0350113 -1103.2562
+94103.25854948116 4.0351291 -1103.2562
+94104.25854953146 4.0351291 -1103.2959
+94105.25854958176 4.03509 -1103.2168
+94106.25854963204 4.0350504 -1103.2959
+94107.25854968232 4.0351686 -1103.2168
+94108.25854973262 4.0350504 -1103.2168
+94109.25854978291 4.0350504 -1103.1378
+94110.2585498332 4.0350504 -1103.1576
+94111.2585498835 4.03509 -1103.2959
+94112.2585499338 4.0349321 -1103.2168
+94113.25854998408 4.0349717 -1103.2761
+94114.25855003436 4.0350504 -1103.1576
+94115.25855008466 4.03509 -1103.1378
+94116.25855013495 4.0350113 -1103.2168
+94117.25855018524 4.0349717 -1103.2366
+94118.25855023554 4.0349717 -1103.2761
+94119.25855028584 4.0349717 -1103.2168
+94120.25855033612 4.0349717 -1103.197
+94121.2585503864 4.0349717 -1103.2761
+94122.2585504367 4.0349717 -1103.1576
+94123.258550487 4.034893 -1103.2168
+94124.25855053728 4.0348144 -1103.2366
+94125.25855058758 4.0348535 -1103.197
+94126.25855063788 4.0348144 -1103.3551
+94127.25855068816 4.0348144 -1103.197
+94128.25855073844 4.0348535 -1103.3353
+94129.25855078874 4.0347748 -1103.2366
+94130.25855083903 4.0348535 -1103.2761
+94131.25855088932 4.0348144 -1103.2562
+94132.25855093962 4.0347748 -1103.2366
+94133.25855098992 4.0348144 -1103.197
+94134.2585510402 4.0346961 -1103.2366
+94135.25855109048 4.0347357 -1103.2562
+94136.25855114078 4.0346961 -1103.2761
+94137.25855119107 4.0346961 -1103.2366
+94138.25855124136 4.0346174 -1103.2562
+94139.25855129166 4.0347357 -1103.2168
+94140.25855134196 4.0346961 -1103.2959
+94141.25855139224 4.0346961 -1103.197
+94142.25855144252 4.0346961 -1103.2366
+94143.25855149282 4.0346961 -1103.3156
+94144.25855154311 4.0345778 -1103.1774
+94145.2585515934 4.0346565 -1103.197
+94146.2585516437 4.0347748 -1103.2959
+94147.258551694 4.0346565 -1103.1774
+94148.25855174428 4.0346565 -1103.2761
+94149.25855179456 4.0345778 -1103.2761
+94150.25855184486 4.0345387 -1103.2366
+94151.25855189515 4.0345778 -1103.3156
+94152.25855194544 4.0344992 -1103.2562
+94153.25855199574 4.0345778 -1103.2366
+94154.25855204604 4.0345387 -1103.2562
+94155.25855209632 4.0345387 -1103.1576
+94156.2585521466 4.0345387 -1103.2562
+94157.2585521969 4.0345387 -1103.1378
+94158.2585522472 4.0344601 -1103.2366
+94159.25855229748 4.0344601 -1103.1378
+94160.25855234778 4.0344205 -1103.2959
+94161.25855239808 4.0344601 -1103.2168
+94162.25855244836 4.0344601 -1103.2168
+94163.25855249864 4.0343809 -1103.2366
+94164.25855254894 4.0343809 -1103.2366
+94165.25855259925 4.0344205 -1103.2366
+94166.25855264952 4.0344205 -1103.2959
+94167.25855269982 4.0344205 -1103.2562
+94168.25855275012 4.0343418 -1103.2761
+94169.2585528004 4.0343418 -1103.197
+94170.25855285068 4.0343809 -1103.2366
+94171.25855290098 4.0343418 -1103.2761
+94172.25855295129 4.0343418 -1103.2562
+94173.25855300156 4.0343418 -1103.197
+94174.25855305186 4.0343418 -1103.2761
+94175.25855310216 4.0342631 -1103.2168
+94176.25855315244 4.0342631 -1103.2562
+94177.25855320272 4.0341845 -1103.2761
+94178.25855325302 4.0343418 -1103.3156
+94179.25855330333 4.0343022 -1103.2761
+94180.2585533536 4.0343022 -1103.2366
+94181.2585534039 4.0342236 -1103.2168
+94182.2585534542 4.0342631 -1103.2366
+94183.25855350448 4.0342631 -1103.2761
+94184.25855355476 4.0342236 -1103.2366
+94185.25855360506 4.0343418 -1103.2366
+94186.25855365537 4.0342631 -1103.197
+94187.25855370564 4.0341449 -1103.2761
+94188.25855375594 4.0341845 -1103.2562
+94189.25855380624 4.0340266 -1103.197
+94190.25855385652 4.0340662 -1103.2562
+94191.2585539068 4.0341449 -1103.1182
+94192.2585539571 4.0341058 -1103.2959
+94193.2585540074 4.0340266 -1103.3156
+94194.25855405768 4.0341058 -1103.2366
+94195.25855410798 4.0341058 -1103.2366
+94196.25855415828 4.0340662 -1103.1774
+94197.25855420856 4.0340662 -1103.2562
+94198.25855425883 4.0339875 -1103.2562
+94199.25855430914 4.0340266 -1103.2366
+94200.25855435945 4.0339875 -1103.2562
+94201.25855440972 4.0340266 -1103.2562
+94202.25855446002 4.0339875 -1103.3156
+94203.25855451032 4.0339088 -1103.197
+94204.2585545606 4.0339088 -1103.3749
+94205.25855461087 4.0338693 -1103.1774
+94206.25855466118 4.0338302 -1103.197
+94207.25855471149 4.0339479 -1103.2366
+94208.25855476176 4.0339088 -1103.2761
+94209.25855481206 4.0338693 -1103.197
+94210.25855486236 4.0339479 -1103.3156
+94211.25855491264 4.0338693 -1103.2761
+94212.25855496291 4.0339479 -1103.2959
+94213.25855501322 4.0338302 -1103.2761
+94214.25855506353 4.0337906 -1103.2562
+94215.2585551138 4.0338302 -1103.2562
+94216.2585551641 4.0338302 -1103.3156
+94217.2585552144 4.0338302 -1103.2761
+94218.25855526468 4.0337906 -1103.1774
+94219.25855531495 4.033751 -1103.3551
+94220.25855536526 4.033751 -1103.2959
+94221.25855541557 4.0337906 -1103.197
+94222.25855546584 4.033751 -1103.2562
+94223.25855551613 4.0336723 -1103.2168
+94224.25855556644 4.0338302 -1103.197
+94225.25855561672 4.033751 -1103.2366
+94226.258555667 4.0337906 -1103.2168
+94227.2585557173 4.0336332 -1103.2168
+94228.2585557676 4.0337119 -1103.3156
+94229.25855581788 4.0335937 -1103.1576
+94230.25855586816 4.0336723 -1103.197
+94231.25855591848 4.0337119 -1103.197
+94232.25855596876 4.0335546 -1103.2366
+94233.25855601903 4.033515 -1103.2366
+94234.25855606934 4.0335937 -1103.1774
+94235.25855611965 4.0335546 -1103.3353
+94236.25855616992 4.0335937 -1103.2959
+94237.2585562202 4.0335937 -1103.1378
+94238.25855627052 4.0335546 -1103.197
+94239.2585563208 4.0335546 -1103.2366
+94240.25855637107 4.0335937 -1103.2562
+94241.25855642138 4.0335546 -1103.2761
+94242.25855647169 4.0336332 -1103.3156
+94243.25855652196 4.0334759 -1103.2168
+94244.25855657224 4.0334759 -1103.3156
+94245.25855662256 4.033515 -1103.2562
+94246.25855667284 4.0333967 -1103.3353
+94247.25855672311 4.0334363 -1103.2761
+94248.25855677342 4.0334363 -1103.197
+94249.25855682373 4.0334759 -1103.2562
+94250.258556874 4.033515 -1103.1774
+94251.25855692428 4.033318 -1103.2366
+94252.2585569746 4.0333967 -1103.2562
+94253.25855702488 4.033318 -1103.2761
+94254.25855707515 4.0333576 -1103.2366
+94255.25855712546 4.0333576 -1103.2562
+94256.25855717577 4.0333576 -1103.2168
+94257.25855722604 4.0332394 -1103.1774
+94258.25855727632 4.033318 -1103.2168
+94259.25855732664 4.0332789 -1103.197
+94260.25855737692 4.0332003 -1103.2959
+94261.2585574272 4.0332394 -1103.2761
+94262.2585574775 4.0332003 -1103.2761
+94263.2585575278 4.033318 -1103.3156
+94264.25855757808 4.033318 -1103.2562
+94265.25855762836 4.0331607 -1103.3156
+94266.25855767868 4.0332003 -1103.3353
+94267.25855772896 4.0332003 -1103.197
+94268.25855777923 4.0332394 -1103.2959
+94269.25855782954 4.0332394 -1103.2562
+94270.25855787985 4.0331607 -1103.2959
+94271.25855793012 4.033082 -1103.2168
+94272.2585579804 4.0331211 -1103.2366
+94273.25855803072 4.0331607 -1103.2562
+94274.258558081 4.0331607 -1103.2761
+94275.25855813127 4.0331211 -1103.197
+94276.25855818158 4.033082 -1103.2959
+94277.25855823189 4.0331607 -1103.197
+94278.25855828216 4.0330424 -1103.2959
+94279.25855833244 4.033082 -1103.2959
+94280.25855838276 4.0330424 -1103.2562
+94281.25855843304 4.033082 -1103.2366
+94282.25855848331 4.0330424 -1103.2959
+94283.25855853362 4.033082 -1103.197
+94284.25855858393 4.0330033 -1103.1774
+94285.2585586342 4.0330424 -1103.2366
+94286.25855868448 4.0330424 -1103.197
+94287.2585587348 4.0329638 -1103.3156
+94288.25855878508 4.0329247 -1103.197
+94289.25855883535 4.0330033 -1103.2366
+94290.25855888566 4.0330033 -1103.3551
+94291.25855893597 4.0329638 -1103.2761
+94292.25855898624 4.0329247 -1103.197
+94293.25855903652 4.0329638 -1103.2366
+94294.25855908684 4.0329638 -1103.3156
+94295.25855913712 4.0328851 -1103.2366
+94296.2585591874 4.0328455 -1103.197
+94297.2585592377 4.0328455 -1103.2366
+94298.258559288 4.0328455 -1103.2761
+94299.25855933828 4.0328851 -1103.2761
+94300.25855938856 4.0328851 -1103.2168
+94301.25855943888 4.0329247 -1103.2959
+94302.25855948916 4.0328064 -1103.2761
+94303.25855953943 4.0327277 -1103.2562
+94304.25855958974 4.0326881 -1103.2761
+94305.25855964005 4.0327668 -1103.1576
+94306.25855969032 4.0328064 -1103.197
+94307.2585597406 4.0327668 -1103.3749
+94308.25855979092 4.0326881 -1103.2761
+94309.2585598412 4.0327277 -1103.2761
+94310.25855989147 4.0327277 -1103.2562
+94311.25855994178 4.032649 -1103.2168
+94312.25855999209 4.0328064 -1103.2562
+94313.25856004236 4.0326095 -1103.1182
+94314.25856009264 4.0327277 -1103.3156
+94315.25856014296 4.032649 -1103.2959
+94316.25856019324 4.0326881 -1103.3156
+94317.25856024351 4.0327277 -1103.2562
+94318.25856029382 4.0326881 -1103.2562
+94319.25856034413 4.0326095 -1103.1182
+94320.2585603944 4.0326095 -1103.2562
+94321.25856044468 4.0326095 -1103.2959
+94322.258560495 4.0325308 -1103.2959
+94323.25856054528 4.0325704 -1103.2168
+94324.25856059555 4.0324912 -1103.2761
+94325.25856064586 4.0325308 -1103.2562
+94326.25856069617 4.0323734 -1103.197
+94327.25856074644 4.032649 -1103.1576
+94328.25856079672 4.0325704 -1103.3156
+94329.25856084704 4.0324912 -1103.2761
+94330.25856089732 4.0324912 -1103.2562
+94331.2585609476 4.0324521 -1103.3353
+94332.2585609979 4.0324912 -1103.2366
+94333.2585610482 4.0324912 -1103.2168
+94334.25856109848 4.0324125 -1103.1774
+94335.25856114876 4.0324521 -1103.2168
+94336.25856119908 4.0324521 -1103.2366
+94337.25856124936 4.0324912 -1103.2366
+94338.25856129963 4.0324125 -1103.3156
+94339.25856134994 4.0323339 -1103.2761
+94340.25856140025 4.0323734 -1103.2761
+94341.25856145052 4.0324125 -1103.2761
+94342.2585615008 4.0322552 -1103.2761
+94343.25856155112 4.0322948 -1103.2366
+94344.2585616014 4.0322552 -1103.2366
+94345.25856165167 4.0323339 -1103.2959
+94346.25856170198 4.0323339 -1103.197
+94347.25856175229 4.0322552 -1103.197
+94348.25856180256 4.0323339 -1103.2761
+94349.25856185284 4.0323734 -1103.2168
+94350.25856190316 4.0322948 -1103.2761
+94351.25856195344 4.0322552 -1103.197
+94352.25856200371 4.0323339 -1103.1576
+94353.25856205402 4.0322552 -1103.3353
+94354.25856210433 4.0321765 -1103.197
+94355.2585621546 4.0322552 -1103.3353
+94356.25856220488 4.0320978 -1103.2562
+94357.2585622552 4.0320978 -1103.2562
+94358.25856230548 4.0321765 -1103.2366
+94359.25856235575 4.0320978 -1103.197
+94360.25856240606 4.0322156 -1103.2959
+94361.25856245637 4.0322552 -1103.2562
+94362.25856250664 4.0320582 -1103.2168
+94363.25856255692 4.0320582 -1103.3156
+94364.25856260724 4.0319405 -1103.2959
+94365.25856265752 4.0320978 -1103.1774
+94366.2585627078 4.0320582 -1103.1774
+94367.2585627581 4.0321369 -1103.2366
+94368.2585628084 4.0321369 -1103.2562
+94369.25856285868 4.0320978 -1103.2959
+94370.25856290896 4.0320191 -1103.1774
+94371.25856295928 4.0319009 -1103.1774
+94372.25856300956 4.0320191 -1103.2168
+94373.25856305983 4.0320978 -1103.2761
+94374.25856311014 4.0320191 -1103.2562
+94375.25856316045 4.0319796 -1103.2168
+94376.25856321072 4.0319796 -1103.2168
+94377.258563261 4.0319405 -1103.2761
+94378.2585633113 4.0319009 -1103.2761
+94379.2585633616 4.0318613 -1103.197
+94380.25856341187 4.0319405 -1103.3156
+94381.25856346218 4.0318613 -1103.197
+94382.25856351249 4.0319009 -1103.2366
+94383.25856356276 4.0318613 -1103.2168
+94384.25856361304 4.0318613 -1103.3749
+94385.25856366334 4.0318613 -1103.2562
+94386.25856371364 4.0318222 -1103.3156
+94387.25856376391 4.0319009 -1103.2562
+94388.25856381422 4.0317826 -1103.3353
+94389.25856386453 4.0318613 -1103.2168
+94390.2585639148 4.0317826 -1103.1774
+94391.25856396508 4.0317435 -1103.2168
+94392.25856401538 4.0317826 -1103.2761
+94393.25856406568 4.0317826 -1103.1774
+94394.25856411595 4.0317826 -1103.3156
+94395.25856416626 4.0316648 -1103.2562
+94396.25856421656 4.0318222 -1103.1774
+94397.25856426684 4.0316648 -1103.2562
+94398.25856431712 4.0317435 -1103.2366
+94399.25856436742 4.0317435 -1103.2761
+94400.25856441772 4.0316648 -1103.1576
+94401.258564468 4.0316648 -1103.197
+94402.2585645183 4.0316648 -1103.2761
+94403.2585645686 4.0316648 -1103.2562
+94404.25856461888 4.0316648 -1103.2761
+94405.25856466916 4.0315466 -1103.2366
+94406.25856471946 4.0315857 -1103.197
+94407.25856476976 4.0316648 -1103.197
+94408.25856482003 4.0315466 -1103.1576
+94409.25856487034 4.0316648 -1103.1576
+94410.25856492064 4.031507 -1103.1774
+94411.25856497092 4.0315857 -1103.2168
+94412.2585650212 4.0315466 -1103.2366
+94413.2585650715 4.031507 -1103.2366
+94414.2585651218 4.0314679 -1103.1774
+94415.25856517207 4.0314679 -1103.2366
+94416.25856522238 4.0314679 -1103.197
+94417.25856527268 4.0314679 -1103.2366
+94418.25856532296 4.031507 -1103.1774
+94419.25856537324 4.0313497 -1103.2562
+94420.25856542354 4.0314679 -1103.2562
+94421.25856547384 4.031507 -1103.197
+94422.25856552411 4.0313497 -1103.2761
+94423.25856557442 4.0314283 -1103.2761
+94424.25856562472 4.0314283 -1103.2366
+94425.258565675 4.0314679 -1103.2761
+94426.25856572528 4.0313106 -1103.2562
+94427.25856577558 4.0313892 -1103.1774
+94428.25856582588 4.0312314 -1103.1774
+94429.25856587617 4.0313892 -1103.2761
+94430.25856592646 4.0313892 -1103.2959
+94431.25856597676 4.0313892 -1103.1774
+94432.25856602704 4.0312314 -1103.2562
+94433.25856607732 4.031271 -1103.2366
+94434.25856612762 4.0313106 -1103.1182
+94435.25856617792 4.031271 -1103.2168
+94436.2585662282 4.0313106 -1103.2168
+94437.2585662785 4.0311527 -1103.3156
+94438.2585663288 4.0312314 -1103.2168
+94439.25856637908 4.0311923 -1103.2959
+94440.25856642936 4.0311923 -1103.2168
+94441.25856647966 4.0311527 -1103.2168
+94442.25856652996 4.031074 -1103.197
+94443.25856658025 4.0312314 -1103.2562
+94444.25856663054 4.0311136 -1103.2366
+94445.25856668084 4.0311136 -1103.2366
+94446.25856673112 4.031074 -1103.3353
+94447.2585667814 4.0311136 -1103.2761
+94448.2585668317 4.0311136 -1103.197
+94449.258566882 4.0311527 -1103.1378
+94450.25856693229 4.0311136 -1103.2168
+94451.25856698258 4.031074 -1103.2761
+94452.25856703288 4.0311136 -1103.197
+94453.25856708316 4.031074 -1103.2959
+94454.25856713344 4.0310349 -1103.3353
+94455.25856718374 4.0310349 -1103.3156
+94456.25856723404 4.031074 -1103.2761
+94457.25856728433 4.0309954 -1103.2761
+94458.25856733462 4.0309954 -1103.1774
+94459.25856738492 4.0310349 -1103.2168
+94460.2585674352 4.0309167 -1103.3353
+94461.25856748548 4.0310349 -1103.2562
+94462.25856753578 4.0309558 -1103.2168
+94463.25856758608 4.031074 -1103.1576
+94464.25856763637 4.0307593 -1103.2562
+94465.25856768666 4.030838 -1103.2366
+94466.25856773696 4.030838 -1103.197
+94467.25856778724 4.0309954 -1103.2959
+94468.25856783752 4.030838 -1103.2366
+94469.25856788782 4.0307984 -1103.2562
+94470.25856793812 4.030838 -1103.2562
+94471.2585679884 4.0308771 -1103.1576
+94472.2585680387 4.0307593 -1103.2168
+94473.258568089 4.0307984 -1103.2168
+94474.25856813928 4.0307984 -1103.197
+94475.25856818956 4.0307984 -1103.2761
+94476.25856823986 4.0307984 -1103.2366
+94477.25856829016 4.0306802 -1103.2168
+94478.25856834045 4.0307984 -1103.2761
+94479.25856839074 4.0307984 -1103.2761
+94480.25856844104 4.0307593 -1103.1774
+94481.25856849132 4.0307198 -1103.3156
+94482.2585685416 4.0308771 -1103.3156
+94483.2585685919 4.0306411 -1103.197
+94484.2585686422 4.0307198 -1103.197
+94485.25856869249 4.0306015 -1103.3156
+94486.25856874278 4.0306802 -1103.197
+94487.25856879308 4.0306802 -1103.2761
+94488.25856884336 4.0305624 -1103.2168
+94489.25856889364 4.0305624 -1103.1576
+94490.25856894394 4.0306802 -1103.197
+94491.25856899424 4.0305624 -1103.2761
+94492.25856904453 4.0305228 -1103.197
+94493.25856909482 4.0305228 -1103.2168
+94494.25856914512 4.0306802 -1103.2761
+94495.2585691954 4.0304837 -1103.2168
+94496.25856924568 4.0304837 -1103.3156
+94497.25856929598 4.0304837 -1103.2168
+94498.25856934628 4.0305228 -1103.3156
+94499.25856939657 4.0304837 -1103.2761
+94500.25856944686 4.0305228 -1103.197
+94501.25856949716 4.030405 -1103.2761
+94502.25856954744 4.0305228 -1103.2562
+94503.25856959772 4.0304441 -1103.2562
+94504.25856964802 4.0303655 -1103.3156
+94505.25856969832 4.0304441 -1103.2761
+94506.2585697486 4.030405 -1103.2562
+94507.2585697989 4.0304441 -1103.2366
+94508.2585698492 4.030405 -1103.1774
+94509.25856989948 4.0303655 -1103.3353
+94510.25856994976 4.030405 -1103.2168
+94511.25857000006 4.0304441 -1103.2168
+94512.25857005036 4.0303655 -1103.2562
+94513.25857010065 4.0302472 -1103.2168
+94514.25857015094 4.0303655 -1103.2562
+94515.25857020124 4.0302081 -1103.3156
+94516.25857025152 4.0303259 -1103.2761
+94517.2585703018 4.0303655 -1103.1774
+94518.2585703521 4.0303655 -1103.2959
+94519.2585704024 4.0302868 -1103.2959
+94520.25857045269 4.0302868 -1103.2168
+94521.25857050298 4.0302472 -1103.197
+94522.25857055328 4.0301685 -1103.3156
+94523.25857060356 4.0301294 -1103.3156
+94524.25857065384 4.0302081 -1103.197
+94525.25857070414 4.0301294 -1103.3156
+94526.25857075443 4.0301294 -1103.2366
+94527.25857080473 4.0302081 -1103.197
+94528.25857085502 4.0300112 -1103.2562
+94529.25857090532 4.0300503 -1103.1378
+94530.2585709556 4.0301685 -1103.197
+94531.25857100588 4.0300899 -1103.2168
+94532.25857105618 4.0300899 -1103.2761
+94533.25857110647 4.0300112 -1103.1576
+94534.25857115677 4.0300899 -1103.2366
+94535.25857120706 4.0300503 -1103.3353
+94536.25857125736 4.0300112 -1103.2761
+94537.25857130764 4.0301685 -1103.2168
+94538.25857135792 4.0300899 -1103.2959
+94539.25857140822 4.0299716 -1103.1774
+94540.25857145851 4.0300503 -1103.3353
+94541.2585715088 4.0300112 -1103.2562
+94542.2585715591 4.0300112 -1103.2168
+94543.2585716094 4.0299325 -1103.1576
+94544.25857165968 4.0298929 -1103.2366
+94545.25857170996 4.0300112 -1103.2761
+94546.25857176026 4.0298538 -1103.2366
+94547.25857181055 4.0299325 -1103.2562
+94548.25857186085 4.0299716 -1103.1774
+94549.25857191114 4.0300112 -1103.1774
+94550.25857196144 4.0298142 -1103.2761
+94551.25857201172 4.0297356 -1103.2562
+94552.258572062 4.0299325 -1103.3156
+94553.2585721123 4.0298142 -1103.2562
+94554.2585721626 4.0298142 -1103.2366
+94555.25857221289 4.0298929 -1103.1576
+94556.25857226318 4.0296173 -1103.2168
+94557.25857231348 4.0298929 -1103.2959
+94558.25857236376 4.0297751 -1103.2168
+94559.25857241404 4.0297751 -1103.2562
+94560.25857246434 4.029696 -1103.2562
+94561.25857251463 4.0297356 -1103.2959
+94562.25857256493 4.0297751 -1103.2959
+94563.25857261522 4.0298142 -1103.2366
+94564.25857266552 4.029696 -1103.1774
+94565.2585727158 4.0296569 -1103.2959
+94566.25857276608 4.0296569 -1103.2168
+94567.25857281638 4.0296569 -1103.3156
+94568.25857286667 4.0296173 -1103.2168
+94569.25857291697 4.0296569 -1103.2168
+94570.25857296726 4.0296173 -1103.2562
+94571.25857301756 4.0295782 -1103.2761
+94572.25857306784 4.029696 -1103.1774
+94573.25857311812 4.0295782 -1103.197
+94574.25857316842 4.0295782 -1103.2562
+94575.25857321871 4.0296173 -1103.3156
+94576.258573269 4.0295386 -1103.2562
+94577.2585733193 4.0294204 -1103.2168
+94578.2585733696 4.0296173 -1103.2761
+94579.25857341988 4.0296569 -1103.1182
+94580.25857347016 4.0294995 -1103.2761
+94581.25857352046 4.0295782 -1103.2761
+94582.25857357075 4.02946 -1103.2366
+94583.25857362105 4.02946 -1103.2366
+94584.25857367134 4.0295386 -1103.2562
+94585.25857372164 4.0294204 -1103.2761
+94586.25857377192 4.0294204 -1103.2366
+94587.2585738222 4.02946 -1103.197
+94588.2585738725 4.02946 -1103.2761
+94589.2585739228 4.02946 -1103.2366
+94590.25857397309 4.0294204 -1103.2562
+94591.25857402338 4.0293026 -1103.3156
+94592.25857407368 4.0294204 -1103.2366
+94593.25857412396 4.0293813 -1103.2959
+94594.25857417424 4.0293026 -1103.2562
+94595.25857422454 4.0293417 -1103.2366
+94596.25857427483 4.0293813 -1103.2168
+94597.25857432513 4.0293813 -1103.3749
+94598.25857437542 4.0292239 -1103.2959
+94599.25857442572 4.0293417 -1103.2959
+94600.258574476 4.0293026 -1103.1774
+94601.25857452628 4.0293026 -1103.2562
+94602.25857457658 4.0293417 -1103.2761
+94603.25857462687 4.0293417 -1103.197
+94604.25857467717 4.029263 -1103.1774
+94605.25857472746 4.0292239 -1103.2761
+94606.25857477776 4.0292239 -1103.2959
+94607.25857482804 4.0291843 -1103.2562
+94608.25857487832 4.0292239 -1103.1774
+94609.25857492862 4.029263 -1103.1774
+94610.25857497891 4.0292239 -1103.197
+94611.2585750292 4.0291448 -1103.3353
+94612.2585750795 4.0291448 -1103.3156
+94613.2585751298 4.0291448 -1103.2761
+94614.25857518008 4.0290661 -1103.1774
+94615.25857523036 4.0291057 -1103.197
+94616.25857528066 4.0291057 -1103.2761
+94617.25857533095 4.0290661 -1103.2168
+94618.25857538125 4.0291843 -1103.2562
+94619.25857543154 4.0291057 -1103.2562
+94620.25857548184 4.029027 -1103.197
+94621.25857553212 4.0289874 -1103.2959
+94622.2585755824 4.029027 -1103.2761
+94623.2585756327 4.0291057 -1103.2959
+94624.258575683 4.0289874 -1103.1774
+94625.25857573329 4.0289087 -1103.2959
+94626.25857578358 4.029027 -1103.2168
+94627.25857583388 4.0289874 -1103.2168
+94628.25857588416 4.0288696 -1103.2959
+94629.25857593444 4.029027 -1103.2168
+94630.25857598474 4.0287905 -1103.2168
+94631.25857603503 4.0289483 -1103.1774
+94632.25857608533 4.0289087 -1103.2366
+94633.25857613562 4.0288301 -1103.3156
+94634.25857618592 4.0288301 -1103.1182
+94635.2585762362 4.0287905 -1103.2366
+94636.25857628648 4.0287905 -1103.2168
+94637.25857633678 4.0288696 -1103.3353
+94638.25857638707 4.0288301 -1103.2168
+94639.25857643737 4.0288696 -1103.2959
+94640.25857648766 4.0287905 -1103.2562
+94641.25857653796 4.0287905 -1103.2959
+94642.25857658824 4.0287905 -1103.2562
+94643.25857663852 4.0288301 -1103.197
+94644.25857668882 4.0288301 -1103.2562
+94645.25857673911 4.0287905 -1103.2761
+94646.2585767894 4.0287514 -1103.3156
+94647.2585768397 4.0286727 -1103.2366
+94648.25857689 4.0287118 -1103.197
+94649.25857694028 4.0287514 -1103.2562
+94650.25857699056 4.0286331 -1103.2366
+94651.25857704086 4.0286727 -1103.2562
+94652.25857709115 4.0287514 -1103.2366
+94653.25857714145 4.028594 -1103.2168
+94654.25857719174 4.028594 -1103.1576
+94655.25857724204 4.0286727 -1103.2168
+94656.25857729232 4.0286727 -1103.2562
+94657.2585773426 4.0286727 -1103.2562
+94658.2585773929 4.0286331 -1103.2366
+94659.2585774432 4.0285544 -1103.197
+94660.25857749349 4.0287118 -1103.2761
+94661.25857754378 4.028594 -1103.3749
+94662.25857759408 4.0285149 -1103.197
+94663.25857764436 4.0286331 -1103.3353
+94664.25857769464 4.028594 -1103.2959
+94665.25857774494 4.0284758 -1103.2761
+94666.25857779523 4.0284758 -1103.2562
+94667.25857784552 4.0284362 -1103.2168
+94668.25857789582 4.0285544 -1103.2168
+94669.25857794612 4.0283971 -1103.3353
+94670.2585779964 4.0285149 -1103.2959
+94671.25857804668 4.0284362 -1103.197
+94672.25857809698 4.0283971 -1103.197
+94673.25857814727 4.0284362 -1103.2959
+94674.25857819756 4.0283184 -1103.2366
+94675.25857824786 4.0283575 -1103.2959
+94676.25857829816 4.0284362 -1103.2168
+94677.25857834844 4.0283971 -1103.2168
+94678.25857839872 4.0282397 -1103.2168
+94679.25857844902 4.0283971 -1103.2168
+94680.25857849931 4.0282788 -1103.1774
+94681.2585785496 4.0283184 -1103.2562
+94682.2585785999 4.0282001 -1103.2366
+94683.2585786502 4.0282788 -1103.2366
+94684.25857870048 4.0282788 -1103.3353
+94685.25857875076 4.0282788 -1103.2562
+94686.25857880106 4.0283184 -1103.2562
+94687.25857885135 4.0282001 -1103.2366
+94688.25857890164 4.0282001 -1103.2366
+94689.25857895194 4.0282788 -1103.2562
+94690.25857900224 4.0282788 -1103.3353
+94691.25857905252 4.0282001 -1103.2959
+94692.2585791028 4.0281215 -1103.1576
+94693.2585791531 4.0280428 -1103.2366
+94694.2585792034 4.0282001 -1103.2562
+94695.25857925368 4.0282397 -1103.1774
+94696.25857930398 4.0281606 -1103.2366
+94697.25857935428 4.0281215 -1103.2761
+94698.25857940456 4.0280819 -1103.2168
+94699.25857945484 4.0281606 -1103.2562
+94700.25857950514 4.0280428 -1103.2959
+94701.25857955543 4.0282001 -1103.2366
+94702.25857960572 4.0280819 -1103.2562
+94703.25857965602 4.0282001 -1103.2959
+94704.25857970632 4.0280819 -1103.3156
+94705.2585797566 4.0279641 -1103.2761
+94706.25857980688 4.0280032 -1103.2959
+94707.25857985718 4.0280032 -1103.2959
+94708.25857990747 4.0279245 -1103.2761
+94709.25857995776 4.0279245 -1103.2168
+94710.25858000806 4.0279641 -1103.2562
+94711.25858005836 4.027885 -1103.2562
+94712.25858010864 4.027885 -1103.2168
+94713.25858015892 4.0279641 -1103.2366
+94714.25858020922 4.0279245 -1103.2366
+94715.25858025951 4.0279245 -1103.3551
+94716.2585803098 4.027885 -1103.3551
+94717.2585803601 4.0278459 -1103.2959
+94718.2585804104 4.0278459 -1103.2562
+94719.25858046068 4.0278459 -1103.2562
+94720.25858051096 4.027885 -1103.2959
+94721.25858056126 4.027885 -1103.2366
+94722.25858061155 4.0278459 -1103.2562
+94723.25858066184 4.0278459 -1103.2168
+94724.25858071214 4.0276885 -1103.3749
+94725.25858076244 4.0277672 -1103.1774
+94726.25858081272 4.0278063 -1103.197
+94727.258580863 4.0276489 -1103.2959
+94728.2585809133 4.0276885 -1103.2959
+94729.2585809636 4.0276489 -1103.2168
+94730.25858101388 4.0277276 -1103.2366
+94731.25858106418 4.0276885 -1103.2168
+94732.25858111448 4.0276093 -1103.2959
+94733.25858116476 4.0276885 -1103.2761
+94734.25858121504 4.0276093 -1103.2761
+94735.25858126534 4.0276885 -1103.197
+94736.25858131563 4.0276093 -1103.2761
+94737.25858136592 4.0276885 -1103.2366
+94738.25858141622 4.0276885 -1103.2562
+94739.25858146652 4.0275702 -1103.2168
+94740.2585815168 4.0276489 -1103.2562
+94741.25858156708 4.0275702 -1103.1774
+94742.25858161738 4.027452 -1103.3156
+94743.25858166767 4.0274916 -1103.2562
+94744.25858171796 4.0275307 -1103.2562
+94745.25858176826 4.0276489 -1103.2562
+94746.25858181856 4.0275702 -1103.2761
+94747.25858186884 4.0275702 -1103.2761
+94748.25858191912 4.027452 -1103.2366
+94749.25858196942 4.0274129 -1103.2761
+94750.25858201971 4.0275307 -1103.2959
+94751.25858207 4.027452 -1103.2761
+94752.2585821203 4.0274129 -1103.2366
+94753.2585821706 4.027452 -1103.2562
+94754.25858222088 4.0273733 -1103.1774
+94755.25858227116 4.0274916 -1103.2761
+94756.25858232146 4.0273733 -1103.2168
+94757.25858237177 4.0273733 -1103.2366
+94758.25858242204 4.0272551 -1103.197
+94759.25858247234 4.027452 -1103.3353
+94760.25858252264 4.0273733 -1103.3749
+94761.25858257292 4.0273733 -1103.2168
+94762.2585826232 4.0272551 -1103.2366
+94763.2585826735 4.0273733 -1103.2366
+94764.2585827238 4.0272551 -1103.2562
+94765.25858277408 4.0271764 -1103.2168
+94766.25858282438 4.0272946 -1103.1576
+94767.25858287468 4.0272551 -1103.2562
+94768.25858292496 4.0272946 -1103.2959
+94769.25858297524 4.0271764 -1103.2168
+94770.25858302554 4.0272551 -1103.197
+94771.25858307585 4.0271764 -1103.2366
+94772.25858312612 4.0271373 -1103.1576
+94773.25858317642 4.0271373 -1103.2959
+94774.25858322672 4.0272551 -1103.2562
+94775.258583277 4.027216 -1103.197
+94776.25858332728 4.0271373 -1103.2562
+94777.25858337758 4.0271764 -1103.2562
+94778.25858342789 4.0271373 -1103.197
+94779.25858347816 4.0271373 -1103.2562
+94780.25858352846 4.0271373 -1103.2168
+94781.25858357876 4.0270977 -1103.2761
+94782.25858362904 4.0270586 -1103.2366
+94783.25858367932 4.027019 -1103.1576
+94784.25858372962 4.0270586 -1103.2959
+94785.25858377993 4.027019 -1103.2562
+94786.2585838302 4.0269794 -1103.1182
+94787.2585838805 4.0269794 -1103.2366
+94788.2585839308 4.027019 -1103.2366
+94789.25858398108 4.0269794 -1103.2168
+94790.25858403135 4.0269403 -1103.2562
+94791.25858408166 4.0270977 -1103.1378
+94792.25858413197 4.0268617 -1103.2366
+94793.25858418224 4.0268221 -1103.197
+94794.25858423254 4.027019 -1103.3156
+94795.25858428284 4.0269008 -1103.2959
+94796.25858433312 4.0269403 -1103.2168
+94797.2585843834 4.0269403 -1103.2168
+94798.2585844337 4.0268221 -1103.2366
+94799.258584484 4.0268617 -1103.1182
+94800.25858453428 4.0267043 -1103.2761
+94801.25858458458 4.0267434 -1103.2168
+94802.25858463488 4.0268221 -1103.2168
+94803.25858468516 4.0268617 -1103.2959
+94804.25858473543 4.0268221 -1103.3156
+94805.25858478574 4.0267043 -1103.2562
+94806.25858483605 4.026783 -1103.3353
+94807.25858488632 4.026783 -1103.2761
+94808.25858493662 4.0268221 -1103.3156
+94809.25858498692 4.0268221 -1103.2366
+94810.2585850372 4.026783 -1103.2959
+94811.25858508747 4.0266647 -1103.2761
+94812.25858513778 4.0267434 -1103.2761
+94813.25858518809 4.0267043 -1103.2959
+94814.25858523836 4.0267434 -1103.2366
+94815.25858528866 4.026783 -1103.2562
+94816.25858533896 4.0267043 -1103.1774
+94817.25858538924 4.0266252 -1103.2168
+94818.25858543951 4.0267434 -1103.197
+94819.25858548982 4.0267434 -1103.2562
+94820.25858554013 4.0265861 -1103.1774
+94821.2585855904 4.0266252 -1103.2562
+94822.25858564068 4.0266252 -1103.1774
+94823.258585691 4.0265861 -1103.2761
+94824.25858574128 4.0265465 -1103.3353
+94825.25858579155 4.0265465 -1103.2562
+94826.25858584186 4.0265861 -1103.2168
+94827.25858589217 4.0265465 -1103.1774
+94828.25858594244 4.0265861 -1103.2366
+94829.25858599272 4.0265861 -1103.2959
+94830.25858604304 4.0265074 -1103.2761
+94831.25858609332 4.0264678 -1103.2562
+94832.2585861436 4.0264287 -1103.2761
+94833.2585861939 4.0264678 -1103.2366
+94834.2585862442 4.0264678 -1103.3551
+94835.25858629448 4.0264287 -1103.2761
+94836.25858634476 4.0265074 -1103.2366
+94837.25858639508 4.0263495 -1103.2761
+94838.25858644536 4.0263104 -1103.2366
+94839.25858649563 4.0263495 -1103.2562
+94840.25858654594 4.0263891 -1103.2562
+94841.25858659625 4.0263104 -1103.2366
+94842.25858664652 4.0263495 -1103.2168
+94843.2585866968 4.0262318 -1103.1774
+94844.25858674712 4.0263495 -1103.2366
+94845.2585867974 4.0263104 -1103.1774
+94846.25858684767 4.0262709 -1103.1576
+94847.25858689798 4.0263104 -1103.2761
+94848.25858694829 4.0262709 -1103.2168
+94849.25858699856 4.0262709 -1103.2366
+94850.25858704884 4.0262709 -1103.2562
+94851.25858709916 4.0262318 -1103.2366
+94852.25858714944 4.0261135 -1103.2761
+94853.25858719971 4.0263104 -1103.2366
+94854.25858725002 4.0261531 -1103.1182
+94855.25858730033 4.0260744 -1103.2366
+94856.2585873506 4.0261922 -1103.3156
+94857.25858740088 4.0260744 -1103.2562
+94858.2585874512 4.0261531 -1103.2761
+94859.25858750148 4.0261135 -1103.2168
+94860.25858755175 4.0260744 -1103.1774
+94861.25858760206 4.0261135 -1103.2168
+94862.25858765237 4.0260744 -1103.1576
+94863.25858770264 4.0259953 -1103.2761
+94864.25858775292 4.0260348 -1103.2959
+94865.25858780324 4.0261922 -1103.2168
+94866.25858785352 4.0260348 -1103.2959
+94867.2585879038 4.0261135 -1103.2366
+94868.2585879541 4.0259953 -1103.2168
+94869.2585880044 4.0259562 -1103.197
+94870.25858805468 4.0260348 -1103.197
+94871.25858810496 4.0259562 -1103.2366
+94872.25858815528 4.0258379 -1103.2168
+94873.25858820556 4.0259562 -1103.2761
+94874.25858825583 4.0259562 -1103.2959
+94875.25858830614 4.0259166 -1103.3551
+94876.25858835645 4.0259166 -1103.2761
+94877.25858840672 4.0259562 -1103.2366
+94878.258588457 4.0257988 -1103.2366
+94879.25858850732 4.0258775 -1103.1774
+94880.2585885576 4.0257988 -1103.2366
+94881.25858860787 4.0258775 -1103.197
+94882.25858865818 4.0257592 -1103.3353
+94883.25858870849 4.0257988 -1103.197
+94884.25858875876 4.0257592 -1103.1378
+94885.25858880904 4.0257592 -1103.2366
+94886.25858885936 4.0257988 -1103.197
+94887.25858890964 4.0256805 -1103.1774
+94888.25858895991 4.025641 -1103.2761
+94889.25858901022 4.0258379 -1103.3353
+94890.25858906053 4.0257592 -1103.2761
+94891.2585891108 4.0256019 -1103.2959
+94892.25858916108 4.0256805 -1103.2366
+94893.2585892114 4.0257196 -1103.2366
+94894.25858926168 4.0257196 -1103.2761
+94895.25858931195 4.0256805 -1103.2761
+94896.25858936226 4.0257196 -1103.2761
+94897.25858941257 4.0256019 -1103.1774
+94898.25858946284 4.0256019 -1103.2168
+94899.25858951312 4.0255232 -1103.0984
+94900.25858956344 4.0256019 -1103.197
+94901.25858961372 4.0255623 -1103.2366
+94902.258589664 4.0257196 -1103.2366
+94903.2585897143 4.0255232 -1103.2366
+94904.2585897646 4.0255232 -1103.2168
+94905.25858981488 4.0255232 -1103.2366
+94906.25858986516 4.0256019 -1103.2761
+94907.25858991548 4.0256019 -1103.2761
+94908.25858996576 4.0254836 -1103.1576
+94909.25859001603 4.0254836 -1103.1576
+94910.25859006634 4.0255623 -1103.2562
+94911.25859011665 4.025444 -1103.2562
+94912.25859016692 4.0254049 -1103.2562
+94913.2585902172 4.0254836 -1103.2761
+94914.25859026752 4.0255232 -1103.2366
+94915.2585903178 4.025444 -1103.1774
+94916.25859036807 4.0253654 -1103.197
+94917.25859041838 4.0253654 -1103.3156
+94918.25859046869 4.0253654 -1103.2168
+94919.25859051896 4.0254049 -1103.2562
+94920.25859056924 4.0252867 -1103.1774
+94921.25859061956 4.0254049 -1103.2168
+94922.25859066984 4.0253654 -1103.2366
+94923.25859072011 4.0253263 -1103.2366
+94924.25859077042 4.0253654 -1103.2959
+94925.25859082073 4.0253263 -1103.1774
+94926.258590871 4.0252867 -1103.2761
+94927.25859092128 4.025208 -1103.2168
+94928.2585909716 4.0251689 -1103.2168
+94929.25859102188 4.0252867 -1103.2168
+94930.25859107215 4.025208 -1103.2562
+94931.25859112246 4.025208 -1103.197
+94932.25859117277 4.0253263 -1103.1774
+94933.25859122304 4.0252476 -1103.2168
+94934.25859127332 4.0251689 -1103.197
+94935.25859132364 4.0251689 -1103.3156
+94936.25859137392 4.0252476 -1103.2168
+94937.2585914242 4.0251689 -1103.2761
+94938.2585914745 4.0250897 -1103.2562
+94939.2585915248 4.0250506 -1103.2168
+94940.25859157508 4.0250111 -1103.2959
+94941.25859162536 4.0250897 -1103.3353
+94942.25859167568 4.0250897 -1103.2366
+94943.25859172596 4.024972 -1103.1576
+94944.25859177623 4.0250506 -1103.197
+94945.25859182654 4.0250506 -1103.197
+94946.25859187685 4.0248933 -1103.2366
+94947.25859192712 4.0250897 -1103.197
+94948.2585919774 4.024972 -1103.2366
+94949.25859202772 4.0250506 -1103.2562
+94950.258592078 4.024972 -1103.2562
+94951.25859212827 4.0249324 -1103.3353
+94952.25859217858 4.0248933 -1103.2761
+94953.25859222889 4.0248933 -1103.2168
+94954.25859227916 4.0249324 -1103.3156
+94955.25859232944 4.0249324 -1103.2959
+94956.25859237976 4.0248537 -1103.2761
+94957.25859243004 4.0248537 -1103.2562
+94958.25859248031 4.0248933 -1103.2168
+94959.25859253062 4.0248537 -1103.2366
+94960.25859258093 4.0248537 -1103.197
+94961.2585926312 4.0248141 -1103.2366
+94962.25859268148 4.0248537 -1103.2562
+94963.2585927318 4.0248933 -1103.2959
+94964.25859278208 4.0248141 -1103.2761
+94965.25859283235 4.024775 -1103.1774
+94966.25859288266 4.0248537 -1103.2168
+94967.25859293297 4.0248141 -1103.2366
+94968.25859298324 4.0248537 -1103.2168
+94969.25859303352 4.024775 -1103.2366
+94970.25859308384 4.024775 -1103.2366
+94971.25859313412 4.0247355 -1103.3156
+94972.2585931844 4.0246177 -1103.2562
+94973.2585932347 4.0247355 -1103.1774
+94974.258593285 4.0246568 -1103.197
+94975.25859333528 4.0246964 -1103.2761
+94976.25859338556 4.0246177 -1103.3353
+94977.25859343586 4.0245781 -1103.2168
+94978.25859348616 4.0245781 -1103.2761
+94979.25859353643 4.0244207 -1103.1774
+94980.25859358674 4.0246568 -1103.2761
+94981.25859363705 4.0244598 -1103.2168
+94982.25859368732 4.0244598 -1103.2562
+94983.2585937376 4.0245781 -1103.2562
+94984.2585937879 4.0244994 -1103.2562
+94985.2585938382 4.0244994 -1103.2761
+94986.25859388847 4.0246177 -1103.2562
+94987.25859393878 4.024539 -1103.2562
+94988.25859398909 4.0244207 -1103.2761
+94989.25859403936 4.0244598 -1103.2959
+94990.25859408964 4.0244994 -1103.2168
+94991.25859413994 4.0244598 -1103.2562
+94992.25859419024 4.0244994 -1103.2366
+94993.25859424051 4.0244598 -1103.2366
+94994.25859429082 4.0243812 -1103.197
+94995.25859434112 4.0243812 -1103.1576
+94996.2585943914 4.0244207 -1103.2959
+94997.25859444168 4.0243812 -1103.2761
+94998.25859449198 4.0243812 -1103.2562
+94999.25859454228 4.0243421 -1103.2761
+95000.25859459255 4.0244207 -1103.2562
+95001.25859464286 4.0243812 -1103.3353
+95002.25859469316 4.0242634 -1103.2562
+95003.25859474344 4.0243025 -1103.2168
+95004.25859479372 4.0243421 -1103.2959
+95005.25859484402 4.0242634 -1103.2959
+95006.25859489432 4.0244207 -1103.2562
+95007.2585949446 4.0243025 -1103.2168
+95008.2585949949 4.0242238 -1103.197
+95009.2585950452 4.0241451 -1103.2761
+95010.25859509548 4.0242238 -1103.2959
+95011.25859514576 4.0242634 -1103.2366
+95012.25859519606 4.0242238 -1103.2168
+95013.25859524636 4.0242238 -1103.2562
+95014.25859529663 4.0241842 -1103.2168
+95015.25859534694 4.0241055 -1103.3551
+95016.25859539724 4.0241842 -1103.1774
+95017.25859544752 4.0240664 -1103.2761
+95018.2585954978 4.0241055 -1103.2959
+95019.2585955481 4.0241842 -1103.2366
+95020.2585955984 4.0241451 -1103.1774
+95021.25859564867 4.0240664 -1103.1576
+95022.25859569898 4.0240664 -1103.2562
+95023.25859574928 4.0240664 -1103.1774
+95024.25859579956 4.0240269 -1103.2562
+95025.25859584984 4.0239482 -1103.2168
+95026.25859590014 4.0240269 -1103.2959
+95027.25859595044 4.0239878 -1103.2761
+95028.25859600073 4.0239482 -1103.2168
+95029.25859605102 4.0238695 -1103.3156
+95030.25859610132 4.0239086 -1103.2366
+95031.2585961516 4.0239482 -1103.2366
+95032.25859620188 4.0239878 -1103.2168
+95033.25859625218 4.0239086 -1103.1774
+95034.25859630248 4.0239482 -1103.2761
+95035.25859635277 4.0239086 -1103.2761
+95036.25859640306 4.0238299 -1103.2761
+95037.25859645336 4.0238299 -1103.197
+95038.25859650364 4.0238695 -1103.1774
+95039.25859655392 4.0238299 -1103.2366
+95040.25859660422 4.0237908 -1103.197
+95041.25859665452 4.0238299 -1103.197
+95042.2585967048 4.0237908 -1103.2366
+95043.2585967551 4.0238695 -1103.2562
+95044.2585968054 4.0236726 -1103.197
+95045.25859685568 4.0237513 -1103.2168
+95046.25859690596 4.0237122 -1103.2562
+95047.25859695626 4.0237513 -1103.1774
+95048.25859700656 4.0235939 -1103.197
+95049.25859705685 4.0236726 -1103.2168
+95050.25859710714 4.0236335 -1103.2366
+95051.25859715744 4.0236335 -1103.2761
+95052.25859720772 4.0237122 -1103.3156
+95053.258597258 4.0235939 -1103.2761
+95054.2585973083 4.0236726 -1103.2761
+95055.2585973586 4.0235543 -1103.2761
+95056.25859740889 4.0235939 -1103.2168
+95057.25859745918 4.0236726 -1103.197
+95058.25859750948 4.0235543 -1103.2959
+95059.25859755976 4.0236726 -1103.2562
+95060.25859761004 4.0234756 -1103.2366
+95061.25859766034 4.0235543 -1103.1576
+95062.25859771064 4.0235939 -1103.2366
+95063.25859776093 4.0234756 -1103.2562
+95064.25859781122 4.0234365 -1103.2761
+95065.25859786152 4.0236335 -1103.197
+95066.2585979118 4.0235152 -1103.2562
+95067.25859796208 4.0234365 -1103.2959
+95068.25859801238 4.0236335 -1103.2562
+95069.25859806268 4.0234756 -1103.2761
+95070.25859811297 4.0235152 -1103.2761
+95071.25859816326 4.0234756 -1103.2366
+95072.25859821356 4.0234365 -1103.2366
+95073.25859826384 4.0233183 -1103.1576
+95074.25859831412 4.023397 -1103.1774
+95075.25859836442 4.0233579 -1103.2168
+95076.25859841472 4.0233183 -1103.2761
+95077.258598465 4.0233183 -1103.1774
+95078.2585985153 4.023397 -1103.2562
+95079.2585985656 4.0233579 -1103.2562
+95080.25859861588 4.0233183 -1103.1182
+95081.25859866616 4.0232396 -1103.2761
+95082.25859871646 4.0233183 -1103.197
+95083.25859876676 4.0233579 -1103.1182
+95084.25859881705 4.0232787 -1103.3156
+95085.25859886734 4.0233183 -1103.2168
+95086.25859891764 4.0233183 -1103.2562
+95087.25859896792 4.0232396 -1103.3156
+95088.2585990182 4.0232396 -1103.2562
+95089.2585990685 4.0232 -1103.2168
+95090.2585991188 4.0231214 -1103.2168
+95091.25859916909 4.0231214 -1103.2366
+95092.25859921938 4.0231609 -1103.2761
+95093.25859926968 4.0230823 -1103.2366
+95094.25859931996 4.0232 -1103.3749
+95095.25859937024 4.0232 -1103.2761
+95096.25859942054 4.0230823 -1103.3353
+95097.25859947084 4.0230823 -1103.2761
+95098.25859952113 4.0230823 -1103.197
+95099.25859957142 4.0230427 -1103.2959
+95100.25859962172 4.0231609 -1103.1774
+95101.258599672 4.0230427 -1103.2761
+95102.25859972228 4.0231214 -1103.2761
+95103.25859977258 4.0230823 -1103.2366
+95104.25859982288 4.0229244 -1103.197
+95105.25859987317 4.022964 -1103.197
+95106.25859992346 4.0230427 -1103.2366
+95107.25859997376 4.0230036 -1103.2959
+95108.25860002404 4.0229244 -1103.2366
+95109.25860007432 4.022964 -1103.2562
+95110.25860012462 4.0228853 -1103.2761
+95111.25860017492 4.0228853 -1103.3156
+95112.2586002252 4.0228457 -1103.2562
+95113.2586002755 4.0227671 -1103.2366
+95114.2586003258 4.0229244 -1103.1182
+95115.25860037608 4.022964 -1103.2366
+95116.25860042636 4.0228853 -1103.2562
+95117.25860047666 4.0227671 -1103.2168
+95118.25860052695 4.0228457 -1103.1576
+95119.25860057725 4.0228853 -1103.2562
+95120.25860062754 4.0228457 -1103.2366
+95121.25860067784 4.0228066 -1103.2366
+95122.25860072812 4.0228066 -1103.2959
+95123.2586007784 4.0227671 -1103.1774
+95124.2586008287 4.0228457 -1103.2562
+95125.258600879 4.022728 -1103.197
+95126.25860092929 4.0226488 -1103.2562
+95127.25860097958 4.022728 -1103.1774
+95128.25860102988 4.022728 -1103.197
+95129.25860108016 4.0227671 -1103.2168
+95130.25860113044 4.0226884 -1103.2959
+95131.25860118074 4.0226488 -1103.197
+95132.25860123103 4.0226488 -1103.2168
+95133.25860128133 4.0226488 -1103.3551
+95134.25860133162 4.022531 -1103.2562
+95135.25860138192 4.0225701 -1103.2761
+95136.2586014322 4.0226488 -1103.2366
+95137.25860148248 4.0226488 -1103.2562
+95138.25860153278 4.0225701 -1103.2562
+95139.25860158307 4.0225701 -1103.1576
+95140.25860163337 4.0226097 -1103.1774
+95141.25860168366 4.0226097 -1103.2168
+95142.25860173396 4.0224128 -1103.2168
+95143.25860178424 4.0224128 -1103.2366
+95144.25860183452 4.0224915 -1103.2761
+95145.25860188482 4.0224524 -1103.2366
+95146.25860193511 4.0224915 -1103.2168
+95147.2586019854 4.0224915 -1103.2366
+95148.2586020357 4.022531 -1103.2168
+95149.258602086 4.022531 -1103.2562
+95150.25860213628 4.0224524 -1103.2761
+95151.25860218656 4.0224128 -1103.3749
+95152.25860223686 4.0223737 -1103.197
+95153.25860228715 4.0223737 -1103.197
+95154.25860233745 4.0223737 -1103.2761
+95155.25860238774 4.0223737 -1103.2761
+95156.25860243804 4.0223341 -1103.2959
+95157.25860248832 4.0223737 -1103.2761
+95158.2586025386 4.0222554 -1103.2761
+95159.2586025889 4.0222554 -1103.0984
+95160.2586026392 4.0222945 -1103.2959
+95161.25860268949 4.0222945 -1103.2562
+95162.25860273978 4.0222554 -1103.2761
+95163.25860279008 4.0223341 -1103.2761
+95164.25860284036 4.0221767 -1103.2761
+95165.25860289064 4.0222554 -1103.2366
+95166.25860294094 4.0222554 -1103.2761
+95167.25860299123 4.0222158 -1103.2168
+95168.25860304153 4.0221767 -1103.2761
+95169.25860309182 4.0221767 -1103.1774
+95170.25860314212 4.0222945 -1103.2168
+95171.2586031924 4.0222158 -1103.2959
+95172.25860324268 4.0220981 -1103.1774
+95173.25860329298 4.0221767 -1103.1576
+95174.25860334327 4.0220981 -1103.1378
+95175.25860339357 4.0220585 -1103.2168
+95176.25860344386 4.0221372 -1103.2562
+95177.25860349416 4.0220981 -1103.1378
+95178.25860354444 4.0220585 -1103.2562
+95179.25860359472 4.0219798 -1103.2366
+95180.25860364502 4.0221372 -1103.2366
+95181.25860369531 4.0219402 -1103.197
+95182.2586037456 4.0220585 -1103.2761
+95183.2586037959 4.0220189 -1103.2562
+95184.2586038462 4.0220585 -1103.2761
+95185.25860389648 4.0220189 -1103.2761
+95186.25860394676 4.0219798 -1103.2168
+95187.25860399706 4.0219011 -1103.2761
+95188.25860404735 4.0219798 -1103.2168
+95189.25860409765 4.0218225 -1103.2761
+95190.25860414794 4.0219011 -1103.2366
+95191.25860419824 4.0218225 -1103.2168
+95192.25860424852 4.0218225 -1103.2366
+95193.2586042988 4.0219402 -1103.197
+95194.2586043491 4.0218225 -1103.1774
+95195.2586043994 4.0218225 -1103.2366
+95196.25860444969 4.0218616 -1103.2761
+95197.25860449998 4.0218616 -1103.2761
+95198.25860455028 4.0219011 -1103.197
+95199.25860460056 4.0218225 -1103.3353
+95200.25860465084 4.0217829 -1103.2366
+95201.25860470114 4.0217433 -1103.3156
+95202.25860475143 4.0218225 -1103.2959
+95203.25860480173 4.0217433 -1103.2761
+95204.25860485202 4.0217433 -1103.1576
+95205.25860490232 4.0217829 -1103.2959
+95206.2586049526 4.0216255 -1103.2366
+95207.25860500288 4.0216255 -1103.2959
+95208.25860505318 4.0217042 -1103.197
+95209.25860510347 4.0217042 -1103.1576
+95210.25860515377 4.0216255 -1103.2562
+95211.25860520406 4.0216646 -1103.197
+95212.25860525436 4.0216646 -1103.2761
+95213.25860530464 4.0216255 -1103.197
+95214.25860535492 4.0215073 -1103.2761
+95215.25860540522 4.0216255 -1103.2959
+95216.25860545551 4.0215859 -1103.1182
+95217.2586055058 4.0215073 -1103.2562
+95218.2586055561 4.0216255 -1103.1774
+95219.2586056064 4.0215468 -1103.1576
+95220.25860565668 4.0215468 -1103.2366
+95221.25860570696 4.0215468 -1103.2366
+95222.25860575726 4.0214682 -1103.2761
+95223.25860580755 4.0215468 -1103.2168
+95224.25860585785 4.0214682 -1103.3156
+95225.25860590814 4.0215073 -1103.2168
+95226.25860595844 4.0214286 -1103.2366
+95227.25860600872 4.021389 -1103.2562
+95228.258606059 4.0215468 -1103.2366
+95229.2586061093 4.021389 -1103.2168
+95230.2586061596 4.0214682 -1103.2959
+95231.25860620989 4.021389 -1103.2168
+95232.25860626018 4.021389 -1103.197
+95233.25860631048 4.0213499 -1103.2761
+95234.25860636076 4.0213103 -1103.2366
+95235.25860641104 4.0213499 -1103.2562
+95236.25860646134 4.0212712 -1103.2366
+95237.25860651163 4.0212712 -1103.197
+95238.25860656193 4.0212317 -1103.2761
+95239.25860661222 4.0212317 -1103.2959
+95240.25860666252 4.0213103 -1103.2761
+95241.2586067128 4.0213103 -1103.3156
+95242.25860676308 4.0213499 -1103.2168
+95243.25860681338 4.0211926 -1103.2168
+95244.25860686367 4.0211134 -1103.2562
+95245.25860691397 4.0212712 -1103.3749
+95246.25860696426 4.021153 -1103.2562
+95247.25860701456 4.0211926 -1103.2168
+95248.25860706484 4.0212317 -1103.2761
+95249.25860711512 4.0210743 -1103.1182
+95250.25860716542 4.0211926 -1103.2366
+95251.25860721571 4.0211134 -1103.1774
+95252.258607266 4.0211134 -1103.197
+95253.2586073163 4.0212317 -1103.2761
+95254.2586073666 4.0211926 -1103.3551
+95255.25860741688 4.0212317 -1103.2562
+95256.25860746716 4.0209956 -1103.2761
+95257.25860751746 4.0210347 -1103.2761
+95258.25860756775 4.0209956 -1103.2168
+95259.25860761805 4.0209956 -1103.2366
+95260.25860766834 4.0209169 -1103.2366
+95261.25860771864 4.0210743 -1103.2562
+95262.25860776892 4.020956 -1103.2168
+95263.2586078192 4.0209169 -1103.2761
+95264.2586078695 4.0208774 -1103.2761
+95265.2586079198 4.0208774 -1103.2562
+95266.25860797008 4.0207987 -1103.3551
+95267.25860802038 4.0209169 -1103.2562
+95268.25860807068 4.0209169 -1103.2959
+95269.25860812096 4.0208383 -1103.197
+95270.25860817124 4.0207591 -1103.2168
+95271.25860822154 4.0207987 -1103.2168
+95272.25860827183 4.0209169 -1103.2366
+95273.25860832212 4.0208383 -1103.2168
+95274.25860837242 4.0207591 -1103.2562
+95275.25860842272 4.0207987 -1103.2761
+95276.258608473 4.02072 -1103.2366
+95277.25860852328 4.02072 -1103.2562
+95278.25860857358 4.0207591 -1103.2959
+95279.25860862387 4.0207591 -1103.2761
+95280.25860867416 4.0207591 -1103.2562
+95281.25860872446 4.0207591 -1103.3551
+95282.25860877476 4.0206804 -1103.2562
+95283.25860882504 4.0206413 -1103.2761
+95284.25860887532 4.0206804 -1103.197
+95285.25860892562 4.0206804 -1103.2761
+95286.25860897591 4.0206804 -1103.2761
+95287.2586090262 4.0206804 -1103.3156
+95288.2586090765 4.0206413 -1103.2168
+95289.2586091268 4.0206017 -1103.2562
+95290.25860917708 4.0206017 -1103.2959
+95291.25860922736 4.02072 -1103.1774
+95292.25860927766 4.0205626 -1103.2959
+95293.25860932795 4.0205626 -1103.2761
+95294.25860937824 4.0205231 -1103.3749
+95295.25860942854 4.0204444 -1103.2168
+95296.25860947884 4.0205231 -1103.197
+95297.25860952912 4.0203657 -1103.2761
+95298.2586095794 4.0205626 -1103.2168
+95299.2586096297 4.0204048 -1103.197
+95300.25860968 4.0204048 -1103.2761
+95301.25860973028 4.0203657 -1103.2562
+95302.25860978058 4.0204048 -1103.2761
+95303.25860983088 4.0203657 -1103.197
+95304.25860988116 4.0204835 -1103.1576
+95305.25860993144 4.0203657 -1103.2168
+95306.25860998174 4.0204835 -1103.2366
+95307.25861003203 4.0204048 -1103.3156
+95308.25861008232 4.020287 -1103.2761
+95309.25861013262 4.0203261 -1103.2761
+95310.25861018292 4.020287 -1103.1774
+95311.2586102332 4.0204048 -1103.2562
+95312.25861028348 4.0204048 -1103.2761
+95313.25861033378 4.0204444 -1103.2168
+95314.25861038407 4.0203261 -1103.2761
+95315.25861043436 4.0201688 -1103.1774
+95316.25861048466 4.0201688 -1103.1774
+95317.25861053496 4.0202475 -1103.2562
+95318.25861058524 4.0202079 -1103.3353
+95319.25861063552 4.0202079 -1103.2366
+95320.25861068582 4.0202475 -1103.2761
+95321.25861073611 4.0202079 -1103.2959
+95322.2586107864 4.0202079 -1103.2168
+95323.2586108367 4.0201292 -1103.1576
+95324.258610887 4.0201688 -1103.3353
+95325.25861093728 4.0200901 -1103.3353
+95326.25861098756 4.0200901 -1103.1576
+95327.25861103786 4.0201292 -1103.2366
+95328.25861108815 4.0200505 -1103.2562
+95329.25861113844 4.0201292 -1103.3353
+95330.25861118874 4.0200114 -1103.2562
+95331.25861123904 4.0200505 -1103.2562
+95332.25861128932 4.0199718 -1103.2366
+95333.2586113396 4.0200505 -1103.1774
+95334.2586113899 4.0199718 -1103.4143
+95335.2586114402 4.0200114 -1103.2959
+95336.25861149048 4.0199718 -1103.2959
+95337.25861154078 4.0199718 -1103.2562
+95338.25861159108 4.0198536 -1103.197
+95339.25861164136 4.0199327 -1103.2366
+95340.25861169164 4.0200505 -1103.2366
+95341.25861174194 4.0199327 -1103.2562
+95342.25861179223 4.0198932 -1103.3551
+95343.25861184252 4.0198932 -1103.197
+95344.25861189282 4.0198932 -1103.2562
+95345.25861194312 4.0198536 -1103.2168
+95346.2586119934 4.0198932 -1103.3156
+95347.25861204368 4.0197749 -1103.2761
+95348.25861209398 4.0198145 -1103.2562
+95349.25861214427 4.0197749 -1103.1774
+95350.25861219456 4.0198932 -1103.1774
+95351.25861224486 4.0198145 -1103.2366
+95352.25861229516 4.0197749 -1103.197
+95353.25861234544 4.0197358 -1103.2562
+95354.25861239572 4.0197749 -1103.2366
+95355.25861244602 4.0197749 -1103.2761
+95356.25861249633 4.0198536 -1103.197
+95357.2586125466 4.0197749 -1103.1774
+95358.2586125969 4.0197358 -1103.2761
+95359.2586126472 4.0197358 -1103.2761
+95360.25861269748 4.0196962 -1103.1774
+95361.25861274776 4.0196962 -1103.2959
+95362.25861279806 4.0196962 -1103.2366
+95363.25861284837 4.019578 -1103.2562
+95364.25861289864 4.0196571 -1103.2168
+95365.25861294894 4.0196176 -1103.2562
+95366.25861299924 4.019578 -1103.2366
+95367.25861304952 4.019578 -1103.2959
+95368.2586130998 4.019578 -1103.197
+95369.2586131501 4.0196176 -1103.1774
+95370.2586132004 4.0196176 -1103.1774
+95371.25861325068 4.0196176 -1103.2761
+95372.25861330098 4.019578 -1103.1576
+95373.25861335128 4.0195389 -1103.2168
+95374.25861340156 4.0195389 -1103.2959
+95375.25861345184 4.0195389 -1103.2168
+95376.25861350214 4.0194602 -1103.2959
+95377.25861355245 4.0194993 -1103.2562
+95378.25861360272 4.0194993 -1103.2366
+95379.25861365302 4.0194206 -1103.2168
+95380.25861370332 4.0194602 -1103.2168
+95381.2586137536 4.0194602 -1103.2366
+95382.25861380388 4.0193028 -1103.3156
+95383.25861385418 4.0194602 -1103.3156
+95384.25861390449 4.0194206 -1103.2761
+95385.25861395476 4.0194602 -1103.2366
+95386.25861400506 4.0192633 -1103.2168
+95387.25861405536 4.0193419 -1103.197
+95388.25861410564 4.0193815 -1103.2959
+95389.25861415591 4.0193419 -1103.2366
+95390.25861420622 4.0193815 -1103.2168
+95391.25861425653 4.0193419 -1103.2562
+95392.2586143068 4.0193028 -1103.2562
+95393.2586143571 4.0192237 -1103.2168
+95394.2586144074 4.0192633 -1103.3156
+95395.25861445768 4.0192237 -1103.1774
+95396.25861450795 4.0192237 -1103.2168
+95397.25861455826 4.0192237 -1103.2761
+95398.25861460857 4.019145 -1103.2959
+95399.25861465884 4.0191846 -1103.2168
+95400.25861470914 4.0192237 -1103.2168
+95401.25861475944 4.019145 -1103.2959
+95402.25861480972 4.0191059 -1103.197
+95403.25861486 4.0190663 -1103.2761
+95404.2586149103 4.0191059 -1103.2168
+95405.2586149606 4.0190663 -1103.2366
+95406.25861501088 4.0191059 -1103.2562
+95407.25861506118 4.0191846 -1103.2959
+95408.25861511148 4.0191059 -1103.2562
+95409.25861516176 4.0190272 -1103.197
+95410.25861521203 4.0189877 -1103.2562
+95411.25861526234 4.0190272 -1103.3353
+95412.25861531265 4.0190663 -1103.1774
+95413.25861536292 4.0190272 -1103.2366
+95414.25861541322 4.0189877 -1103.2168
+95415.25861546352 4.0190272 -1103.2562
+95416.2586155138 4.018909 -1103.2761
+95417.25861556407 4.0189481 -1103.2168
+95418.25861561438 4.0189877 -1103.2366
+95419.25861566469 4.0189481 -1103.2959
+95420.25861571496 4.018909 -1103.2168
+95421.25861576524 4.0188694 -1103.2562
+95422.25861581556 4.0187907 -1103.2562
+95423.25861586584 4.0188303 -1103.197
+95424.25861591611 4.0187516 -1103.2959
+95425.25861596642 4.0189877 -1103.3156
+95426.25861601673 4.0187516 -1103.3353
+95427.258616067 4.0187907 -1103.2562
+95428.25861611728 4.018712 -1103.1774
+95429.2586161676 4.0187907 -1103.1774
+95430.25861621788 4.0187907 -1103.2562
+95431.25861626815 4.0187516 -1103.1576
+95432.25861631846 4.0187516 -1103.2761
+95433.25861636877 4.0187516 -1103.1774
+95434.25861641904 4.018712 -1103.2562
+95435.25861646932 4.018712 -1103.2761
+95436.25861651964 4.0187907 -1103.2562
+95437.25861656992 4.018712 -1103.2168
+95438.2586166202 4.0186725 -1103.0984
+95439.2586166705 4.018712 -1103.2168
+95440.2586167208 4.0186725 -1103.2761
+95441.25861677108 4.0185547 -1103.1774
+95442.25861682136 4.0186334 -1103.2366
+95443.25861687168 4.0186725 -1103.2168
+95444.25861692196 4.0185938 -1103.1774
+95445.25861697223 4.0185938 -1103.2366
+95446.25861702254 4.0185547 -1103.2959
+95447.25861707285 4.018476 -1103.2562
+95448.25861712312 4.018476 -1103.2761
+95449.2586171734 4.0186725 -1103.2959
+95450.25861722372 4.0185151 -1103.2168
+95451.258617274 4.0185547 -1103.2562
+95452.25861732427 4.0185938 -1103.2366
+95453.25861737458 4.0185547 -1103.2959
+95454.25861742489 4.0183973 -1103.2366
+95455.25861747516 4.0183973 -1103.197
+95456.25861752544 4.018476 -1103.1576
+95457.25861757576 4.018476 -1103.3156
+95458.25861762604 4.0184364 -1103.197
+95459.25861767631 4.0183973 -1103.2562
+95460.25861772662 4.0182791 -1103.1378
+95461.25861777693 4.0184364 -1103.197
+95462.2586178272 4.0183182 -1103.2562
+95463.25861787748 4.0183182 -1103.2761
+95464.2586179278 4.0183578 -1103.2959
+95465.25861797808 4.0182791 -1103.2168
+95466.25861802835 4.0183182 -1103.1774
+95467.25861807866 4.0181217 -1103.3156
+95468.25861812897 4.0183578 -1103.2761
+95469.25861817924 4.0182395 -1103.2168
+95470.25861822952 4.0182004 -1103.2562
+95471.25861827984 4.0182791 -1103.2761
+95472.25861833012 4.0182791 -1103.2761
+95473.2586183804 4.0182004 -1103.3156
+95474.2586184307 4.0182004 -1103.2562
+95475.258618481 4.0181608 -1103.2168
+95476.25861853128 4.0181608 -1103.2366
+95477.25861858156 4.0182395 -1103.2366
+95478.25861863188 4.0181608 -1103.2168
+95479.25861868216 4.0181217 -1103.2562
+95480.25861873243 4.0181217 -1103.2366
+95481.25861878274 4.0180426 -1103.2168
+95482.25861883305 4.0181217 -1103.2366
+95483.25861888332 4.0181608 -1103.2562
+95484.2586189336 4.0179639 -1103.2366
+95485.25861898392 4.0180426 -1103.2562
+95486.2586190342 4.0179639 -1103.3156
+95487.25861908447 4.0180426 -1103.3353
+95488.25861913478 4.0179639 -1103.2959
+95489.25861918509 4.0180035 -1103.2366
+95490.25861923536 4.0180035 -1103.2168
+95491.25861928564 4.0180035 -1103.1774
+95492.25861933596 4.0179639 -1103.1378
+95493.25861938624 4.0180035 -1103.2366
+95494.25861943651 4.0178852 -1103.2959
+95495.25861948682 4.0179248 -1103.2168
+95496.25861953713 4.0178852 -1103.197
+95497.2586195874 4.0178852 -1103.2366
+95498.25861963768 4.0178852 -1103.2562
+95499.258619688 4.0178065 -1103.1576
+95500.25861973828 4.0177279 -1103.2761
+95501.25861978855 4.0176883 -1103.2168
+95502.25861983886 4.0178852 -1103.3156
+95503.25861988917 4.0178852 -1103.2761
+95504.25861993944 4.0177674 -1103.3353
+95505.25861998972 4.0178852 -1103.2366
+95506.25862004004 4.0178065 -1103.1576
+95507.25862009032 4.0177674 -1103.3353
+95508.2586201406 4.0178065 -1103.2366
+95509.2586201909 4.0177674 -1103.1774
+95510.2586202412 4.0177279 -1103.197
+95511.25862029148 4.0177674 -1103.2366
+95512.25862034176 4.0177279 -1103.2366
+95513.25862039208 4.0177279 -1103.1378
+95514.25862044236 4.0176492 -1103.2761
+95515.25862049263 4.0175309 -1103.2761
+95516.25862054294 4.0176096 -1103.2366
+95517.25862059325 4.0176492 -1103.2562
+95518.25862064352 4.0176492 -1103.197
+95519.2586206938 4.0175705 -1103.2959
+95520.25862074412 4.0176096 -1103.197
+95521.2586207944 4.0176096 -1103.2168
+95522.25862084467 4.0174522 -1103.2959
+95523.25862089498 4.0174918 -1103.2959
+95524.25862094529 4.0174918 -1103.2562
+95525.25862099556 4.0174522 -1103.2366
+95526.25862104584 4.0174522 -1103.2168
+95527.25862109616 4.0174522 -1103.197
+95528.25862114644 4.0175309 -1103.197
+95529.25862119671 4.0174127 -1103.197
+95530.25862124702 4.0173736 -1103.1576
+95531.25862129733 4.0174127 -1103.1378
+95532.2586213476 4.0174522 -1103.2168
+95533.25862139788 4.0172162 -1103.2562
+95534.2586214482 4.0174127 -1103.2761
+95535.25862149848 4.0172949 -1103.2761
+95536.25862154875 4.0172949 -1103.2562
+95537.25862159906 4.017334 -1103.2168
+95538.25862164937 4.0172949 -1103.2761
+95539.25862169964 4.0172553 -1103.197
+95540.25862174992 4.0172949 -1103.3551
+95541.25862180024 4.0172949 -1103.2959
+95542.25862185052 4.0172162 -1103.2168
+95543.2586219008 4.0171766 -1103.2761
+95544.2586219511 4.0171375 -1103.2562
+95545.2586220014 4.0171766 -1103.2562
+95546.25862205168 4.0172949 -1103.2562
+95547.25862210196 4.0172949 -1103.2562
+95548.25862215228 4.0171766 -1103.2562
+95549.25862220256 4.0171375 -1103.197
+95550.25862225283 4.0171375 -1103.2562
+95551.25862230314 4.0171375 -1103.2959
+95552.25862235345 4.0170584 -1103.2366
+95553.25862240372 4.0171766 -1103.2366
+95554.258622454 4.0171375 -1103.2959
+95555.25862250432 4.0170193 -1103.2366
+95556.2586225546 4.0170584 -1103.197
+95557.25862260487 4.0169797 -1103.2168
+95558.25862265518 4.0170584 -1103.3156
+95559.25862270549 4.0171375 -1103.3551
+95560.25862275576 4.0170584 -1103.2366
+95561.25862280604 4.0170979 -1103.2562
+95562.25862285636 4.016901 -1103.197
+95563.25862290664 4.0169797 -1103.2366
+95564.25862295691 4.0168619 -1103.2761
+95565.25862300722 4.016901 -1103.2562
+95566.25862305753 4.0169406 -1103.2761
+95567.2586231078 4.0169406 -1103.2366
+95568.25862315808 4.016901 -1103.2959
+95569.2586232084 4.0168619 -1103.2562
+95570.25862325868 4.0168223 -1103.197
+95571.25862330895 4.0167828 -1103.2959
+95572.25862335926 4.0168619 -1103.2168
+95573.25862340957 4.0167828 -1103.2366
+95574.25862345984 4.0168223 -1103.2366
+95575.25862351012 4.0167828 -1103.197
+95576.25862356042 4.0167437 -1103.3353
+95577.25862361072 4.0167437 -1103.2168
+95578.258623661 4.0167828 -1103.2562
+95579.2586237113 4.0167041 -1103.2562
+95580.2586237616 4.0167828 -1103.2959
+95581.25862381188 4.0167828 -1103.1774
+95582.25862386216 4.0167041 -1103.1774
+95583.25862391246 4.0167041 -1103.2366
+95584.25862396276 4.0167437 -1103.3156
+95585.25862401303 4.0165863 -1103.2366
+95586.25862406334 4.0166254 -1103.197
+95587.25862411365 4.0165863 -1103.2959
+95588.25862416392 4.016665 -1103.2366
+95589.2586242142 4.016665 -1103.2168
+95590.2586242645 4.016665 -1103.2168
+95591.2586243148 4.0167437 -1103.2562
+95592.25862436507 4.0166254 -1103.2761
+95593.25862441538 4.0165467 -1103.2959
+95594.25862446568 4.0165467 -1103.1774
+95595.25862451596 4.0165071 -1103.2168
+95596.25862456624 4.0165071 -1103.1576
+95597.25862461654 4.0165863 -1103.2761
+95598.25862466684 4.0165467 -1103.3156
+95599.25862471711 4.0164285 -1103.3156
+95600.25862476742 4.0165467 -1103.2959
+95601.25862481772 4.0165071 -1103.1774
+95602.258624868 4.016468 -1103.1774
+95603.25862491828 4.0163894 -1103.2761
+95604.25862496858 4.0164285 -1103.197
+95605.25862501888 4.0164285 -1103.3156
+95606.25862506915 4.0164285 -1103.2761
+95607.25862511946 4.0164285 -1103.1774
+95608.25862516976 4.0164285 -1103.2366
+95609.25862522004 4.0164285 -1103.1774
+95610.25862527032 4.0163894 -1103.197
+95611.25862532062 4.0162711 -1103.3353
+95612.25862537092 4.0164285 -1103.2366
+95613.2586254212 4.0163107 -1103.2959
+95614.2586254715 4.016232 -1103.1774
+95615.2586255218 4.0163498 -1103.1774
+95616.25862557208 4.0163107 -1103.2761
+95617.25862562236 4.0163107 -1103.2959
+95618.25862567266 4.0163498 -1103.2366
+95619.25862572296 4.0163107 -1103.2562
+95620.25862577323 4.016232 -1103.2366
+95621.25862582354 4.0161924 -1103.197
+95622.25862587384 4.0161529 -1103.3156
+95623.25862592412 4.0161924 -1103.1182
+95624.2586259744 4.016232 -1103.2959
+95625.2586260247 4.0160742 -1103.2168
+95626.258626075 4.0161138 -1103.2366
+95627.25862612529 4.0160742 -1103.1182
+95628.25862617558 4.0160351 -1103.2562
+95629.25862622588 4.0160351 -1103.2168
+95630.25862627616 4.0159955 -1103.2959
+95631.25862632644 4.0159955 -1103.2366
+95632.25862637674 4.0160742 -1103.197
+95633.25862642704 4.0159955 -1103.2761
+95634.25862647733 4.0160351 -1103.2168
+95635.25862652762 4.0159955 -1103.1774
+95636.25862657792 4.0159168 -1103.3156
+95637.2586266282 4.0159564 -1103.2366
+95638.25862667848 4.0159564 -1103.2562
+95639.25862672878 4.0159168 -1103.2562
+95640.25862677908 4.0159168 -1103.2168
+95641.25862682937 4.0158772 -1103.2562
+95642.25862687966 4.0159564 -1103.2366
+95643.25862692996 4.0158381 -1103.2562
+95644.25862698024 4.0159564 -1103.2959
+95645.25862703052 4.0158772 -1103.2761
+95646.25862708082 4.0159564 -1103.2366
+95647.25862713112 4.0158772 -1103.2761
+95648.2586271814 4.0158381 -1103.3156
+95649.2586272317 4.0158772 -1103.2761
+95650.258627282 4.0158772 -1103.2562
+95651.25862733228 4.0157199 -1103.2562
+95652.25862738256 4.0158772 -1103.2562
+95653.25862743286 4.0158772 -1103.2366
+95654.25862748316 4.0157595 -1103.2366
+95655.25862753345 4.0157595 -1103.197
+95656.25862758374 4.0157986 -1103.2562
+95657.25862763404 4.0156412 -1103.2562
+95658.25862768432 4.0157199 -1103.2366
+95659.2586277346 4.0156808 -1103.2761
+95660.2586277849 4.0157595 -1103.1774
+95661.2586278352 4.0156412 -1103.1774
+95662.25862788549 4.0156412 -1103.2959
+95663.25862793578 4.0156412 -1103.3353
+95664.25862798608 4.0156021 -1103.2562
+95665.25862803636 4.0155625 -1103.2366
+95666.25862808664 4.0156412 -1103.2562
+95667.25862813694 4.015523 -1103.2959
+95668.25862818724 4.0155625 -1103.2168
+95669.25862823753 4.0154839 -1103.2761
+95670.25862828782 4.0155625 -1103.2168
+95671.25862833812 4.015523 -1103.2562
+95672.2586283884 4.015523 -1103.2168
+95673.25862843868 4.0156021 -1103.2761
+95674.25862848898 4.015523 -1103.3551
+95675.25862853928 4.0153656 -1103.2168
+95676.25862858957 4.0154052 -1103.2761
+95677.25862863986 4.0154443 -1103.2761
+95678.25862869016 4.0154052 -1103.197
+95679.25862874044 4.0154443 -1103.3156
+95680.25862879072 4.0153656 -1103.2562
+95681.25862884102 4.0153265 -1103.1774
+95682.25862889132 4.0154052 -1103.2562
+95683.2586289416 4.0153656 -1103.2959
+95684.2586289919 4.0152869 -1103.2761
+95685.2586290422 4.0153265 -1103.2761
+95686.25862909248 4.0153265 -1103.2562
+95687.25862914276 4.0152473 -1103.2562
+95688.25862919306 4.0152082 -1103.2366
+95689.25862924336 4.0152473 -1103.197
+95690.25862929365 4.0152082 -1103.2959
+95691.25862934394 4.0152869 -1103.2761
+95692.25862939424 4.0151687 -1103.2366
+95693.25862944452 4.01509 -1103.2168
+95694.2586294948 4.0152473 -1103.2366
+95695.2586295451 4.0151296 -1103.2761
+95696.2586295954 4.01509 -1103.2366
+95697.25862964569 4.0151687 -1103.2562
+95698.25862969598 4.01509 -1103.2562
+95699.25862974628 4.0151687 -1103.1576
+95700.25862979656 4.0151296 -1103.2366
+95701.25862984684 4.01509 -1103.2168
+95702.25862989714 4.0152082 -1103.197
+95703.25862994744 4.0151296 -1103.197
+95704.25862999773 4.0151296 -1103.2959
+95705.25863004802 4.0151687 -1103.197
+95706.25863009832 4.0150509 -1103.2366
+95707.2586301486 4.0149717 -1103.197
+95708.25863019888 4.0150509 -1103.2366
+95709.25863024918 4.0150509 -1103.2761
+95710.25863029948 4.0150113 -1103.2959
+95711.25863034977 4.0150509 -1103.197
+95712.25863040006 4.0149326 -1103.2168
+95713.25863045036 4.0149326 -1103.2761
+95714.25863050064 4.0150113 -1103.197
+95715.25863055092 4.0149326 -1103.2168
+95716.25863060122 4.014854 -1103.1576
+95717.25863065151 4.014854 -1103.2168
+95718.2586307018 4.014854 -1103.2761
+95719.2586307521 4.0149326 -1103.3156
+95720.2586308024 4.014854 -1103.2366
+95721.25863085268 4.014854 -1103.2761
+95722.25863090296 4.0147753 -1103.197
+95723.25863095326 4.0148144 -1103.2168
+95724.25863100355 4.0147753 -1103.2761
+95725.25863105385 4.0147753 -1103.1576
+95726.25863110414 4.0146966 -1103.2366
+95727.25863115444 4.014854 -1103.197
+95728.25863120472 4.0147357 -1103.1774
+95729.258631255 4.0146966 -1103.2366
+95730.2586313053 4.0146966 -1103.2366
+95731.2586313556 4.0146966 -1103.2366
+95732.25863140589 4.0147357 -1103.2761
+95733.25863145618 4.014657 -1103.2562
+95734.25863150648 4.0146966 -1103.2562
+95735.25863155676 4.0147357 -1103.2366
+95736.25863160704 4.0146174 -1103.2562
+95737.25863165734 4.0145783 -1103.2168
+95738.25863170763 4.0145783 -1103.2168
+95739.25863175793 4.0145388 -1103.2168
+95740.25863180822 4.0144997 -1103.3551
+95741.25863185852 4.0144997 -1103.3353
+95742.2586319088 4.0144997 -1103.2168
+95743.25863195908 4.0146174 -1103.2366
+95744.25863200938 4.0145783 -1103.2562
+95745.25863205967 4.0144601 -1103.197
+95746.25863210997 4.0144997 -1103.3353
+95747.25863216026 4.014421 -1103.2761
+95748.25863221056 4.0144601 -1103.2168
+95749.25863226084 4.0144601 -1103.2959
+95750.25863231112 4.014421 -1103.2761
+95751.25863236142 4.0144601 -1103.1378
+95752.25863241171 4.0145783 -1103.3156
+95753.258632462 4.0143418 -1103.2761
+95754.2586325123 4.014421 -1103.2761
+95755.2586325626 4.0143418 -1103.1774
+95756.25863261288 4.014421 -1103.2168
+95757.25863266316 4.0143814 -1103.2959
+95758.25863271346 4.0143418 -1103.2562
+95759.25863276375 4.0142241 -1103.2366
+95760.25863281405 4.0143418 -1103.2562
+95761.25863286434 4.0141845 -1103.2959
+95762.25863291464 4.0143418 -1103.2168
+95763.25863296492 4.0143027 -1103.2366
+95764.2586330152 4.0141845 -1103.197
+95765.2586330655 4.0141454 -1103.3353
+95766.2586331158 4.0142632 -1103.2562
+95767.25863316609 4.0142241 -1103.2562
+95768.25863321638 4.0141845 -1103.2959
+95769.25863326668 4.0141454 -1103.2562
+95770.25863331696 4.0142632 -1103.197
+95771.25863336724 4.0141454 -1103.197
+95772.25863341754 4.0141454 -1103.2562
+95773.25863346783 4.0141454 -1103.2959
+95774.25863351813 4.0140667 -1103.2168
+95775.25863356842 4.0141058 -1103.2366
+95776.25863361872 4.0140667 -1103.2562
+95777.258633669 4.0140667 -1103.2959
+95778.25863371928 4.0141454 -1103.3156
+95779.25863376958 4.0140667 -1103.3156
+95780.25863381987 4.0140667 -1103.2761
+95781.25863387017 4.0140271 -1103.2366
+95782.25863392046 4.0140667 -1103.2959
+95783.25863397076 4.0140271 -1103.2168
+95784.25863402104 4.0139875 -1103.197
+95785.25863407132 4.0140271 -1103.2562
+95786.25863412162 4.0139484 -1103.2366
+95787.25863417191 4.0139089 -1103.2562
+95788.2586342222 4.0139875 -1103.197
+95789.2586342725 4.0138698 -1103.2761
+95790.2586343228 4.0138698 -1103.2366
+95791.25863437308 4.0139089 -1103.2562
+95792.25863442336 4.0138698 -1103.2761
+95793.25863447366 4.0138698 -1103.3156
+95794.25863452395 4.0137911 -1103.2366
+95795.25863457425 4.0137515 -1103.2562
+95796.25863462454 4.0138302 -1103.2959
+95797.25863467484 4.0138302 -1103.2562
+95798.25863472512 4.0137119 -1103.1774
+95799.2586347754 4.0137911 -1103.1774
+95800.2586348257 4.0137515 -1103.197
+95801.258634876 4.0137911 -1103.2366
+95802.25863492629 4.0137911 -1103.2366
+95803.25863497658 4.0137119 -1103.2562
+95804.25863502688 4.0137515 -1103.1576
+95805.25863507716 4.0137515 -1103.2168
+95806.25863512744 4.0136728 -1103.2562
+95807.25863517774 4.0136728 -1103.2959
+95808.25863522803 4.0135942 -1103.2761
+95809.25863527833 4.0135942 -1103.2366
+95810.25863532862 4.0135546 -1103.2959
+95811.25863537892 4.0135942 -1103.2562
+95812.2586354292 4.0135942 -1103.1774
+95813.25863547948 4.0136333 -1103.2366
+95814.25863552978 4.0135155 -1103.2366
+95815.25863558007 4.0134759 -1103.2562
+95816.25863563037 4.0135546 -1103.3353
+95817.25863568066 4.0135546 -1103.2761
+95818.25863573096 4.0134759 -1103.1774
+95819.25863578124 4.0135546 -1103.2761
+95820.25863583152 4.0134368 -1103.2761
+95821.25863588182 4.0134368 -1103.2366
+95822.25863593211 4.0134368 -1103.197
+95823.2586359824 4.0135155 -1103.2761
+95824.2586360327 4.0133972 -1103.2366
+95825.258636083 4.0134759 -1103.197
+95826.25863613328 4.0134759 -1103.2168
+95827.25863618356 4.0133972 -1103.2761
+95828.25863623386 4.0133972 -1103.2959
+95829.25863628415 4.0133185 -1103.2366
+95830.25863633445 4.0133576 -1103.1774
+95831.25863638474 4.0133972 -1103.2761
+95832.25863643504 4.0133576 -1103.2959
+95833.25863648532 4.0132399 -1103.2959
+95834.2586365356 4.0132399 -1103.2562
+95835.2586365859 4.0132003 -1103.1774
+95836.2586366362 4.013279 -1103.197
+95837.25863668649 4.0133185 -1103.2168
+95838.25863673678 4.013279 -1103.2562
+95839.25863678708 4.0132003 -1103.2168
+95840.25863683736 4.0131216 -1103.2366
+95841.25863688764 4.0132399 -1103.2959
+95842.25863693794 4.0131216 -1103.2761
+95843.25863698823 4.0132003 -1103.1774
+95844.25863703853 4.0132003 -1103.2959
+95845.25863708882 4.0131612 -1103.2761
+95846.25863713912 4.0131612 -1103.2761
+95847.2586371894 4.0131216 -1103.197
+95848.25863723968 4.0130429 -1103.2959
+95849.25863728998 4.013082 -1103.2168
+95850.25863734027 4.0130429 -1103.2366
+95851.25863739057 4.0130033 -1103.2562
+95852.25863744086 4.0130033 -1103.197
+95853.25863749116 4.0130429 -1103.2168
+95854.25863754144 4.0131216 -1103.2761
+95855.25863759172 4.0131216 -1103.197
+95856.25863764202 4.0129642 -1103.2761
+95857.25863769231 4.0129642 -1103.2562
+95858.2586377426 4.0130033 -1103.1576
+95859.2586377929 4.0129247 -1103.2562
+95860.2586378432 4.0129247 -1103.2366
+95861.25863789348 4.0128856 -1103.2761
+95862.25863794376 4.0129642 -1103.2366
+95863.25863799406 4.0129642 -1103.197
+95864.25863804435 4.0129642 -1103.2761
+95865.25863809464 4.0129642 -1103.2959
+95866.25863814494 4.0129247 -1103.197
+95867.25863819524 4.0128856 -1103.3156
+95868.25863824552 4.012846 -1103.2366
+95869.2586382958 4.0128064 -1103.2761
+95870.2586383461 4.0127673 -1103.3551
+95871.2586383964 4.012846 -1103.197
+95872.25863844668 4.0127673 -1103.197
+95873.25863849698 4.0127277 -1103.3749
+95874.25863854728 4.0127673 -1103.2761
+95875.25863859756 4.0127673 -1103.2168
+95876.25863864784 4.0126491 -1103.2562
+95877.25863869814 4.0126886 -1103.197
+95878.25863874843 4.0128064 -1103.197
+95879.25863879872 4.0126886 -1103.3353
+95880.25863884902 4.01261 -1103.2562
+95881.25863889932 4.0126491 -1103.2959
+95882.2586389496 4.0126491 -1103.2761
+95883.25863899988 4.0125704 -1103.2168
+95884.25863905018 4.01261 -1103.1576
+95885.25863910047 4.01261 -1103.2761
+95886.25863915076 4.0126491 -1103.1576
+95887.25863920106 4.01261 -1103.2366
+95888.25863925136 4.0125313 -1103.3156
+95889.25863930164 4.0124917 -1103.2366
+95890.25863935192 4.0125313 -1103.3353
+95891.25863940222 4.0125704 -1103.2168
+95892.25863945251 4.0125704 -1103.3353
+95893.2586395028 4.0124917 -1103.3749
+95894.2586395531 4.0124917 -1103.197
+95895.2586396034 4.0125704 -1103.1378
+95896.25863965368 4.0125313 -1103.2366
+95897.25863970396 4.0124917 -1103.1774
+95898.25863975426 4.0124917 -1103.2562
+95899.25863980455 4.0124521 -1103.2168
+95900.25863985484 4.0124521 -1103.2366
+95901.25863990514 4.012413 -1103.2562
+95902.25863995544 4.0123734 -1103.2562
+95903.25864000572 4.0122948 -1103.2761
+95904.258640056 4.0123343 -1103.3353
+95905.2586401063 4.0122948 -1103.2562
+95906.2586401566 4.0121765 -1103.2761
+95907.25864020688 4.0122948 -1103.3353
+95908.25864025718 4.0122948 -1103.2366
+95909.25864030748 4.0123343 -1103.2761
+95910.25864035776 4.0123734 -1103.2562
+95911.25864040804 4.0122948 -1103.197
+95912.25864045834 4.0122161 -1103.2366
+95913.25864050863 4.0121765 -1103.2959
+95914.25864055892 4.0121374 -1103.3156
+95915.25864060922 4.0122161 -1103.2562
+95916.25864065952 4.0121765 -1103.2761
+95917.2586407098 4.0120978 -1103.1774
+95918.25864076008 4.0121765 -1103.2366
+95919.25864081038 4.0122161 -1103.2366
+95920.25864086067 4.0121765 -1103.2168
+95921.25864091096 4.0121765 -1103.2562
+95922.25864096126 4.0120978 -1103.2562
+95923.25864101156 4.0121765 -1103.2761
+95924.25864106184 4.0120192 -1103.2761
+95925.25864111212 4.0120192 -1103.2562
+95926.25864116242 4.0120978 -1103.2168
+95927.25864121271 4.0120587 -1103.2168
+95928.258641263 4.0119801 -1103.2562
+95929.2586413133 4.0119801 -1103.2761
+95930.2586413636 4.0120587 -1103.2959
+95931.25864141388 4.0119405 -1103.2761
+95932.25864146416 4.0119801 -1103.2366
+95933.25864151446 4.0120192 -1103.2562
+95934.25864156475 4.0119801 -1103.2366
+95935.25864161504 4.0119801 -1103.2366
+95936.25864166534 4.0118618 -1103.2761
+95937.25864171564 4.0118222 -1103.1576
+95938.25864176592 4.0118618 -1103.197
+95939.2586418162 4.0118618 -1103.197
+95940.2586418665 4.0118618 -1103.3156
+95941.2586419168 4.0118222 -1103.2959
+95942.25864196708 4.0118222 -1103.2562
+95943.25864201738 4.0119014 -1103.3353
+95944.25864206768 4.0119014 -1103.2761
+95945.25864211796 4.0117044 -1103.2168
+95946.25864216824 4.0117044 -1103.2366
+95947.25864221854 4.0117044 -1103.2366
+95948.25864226883 4.0118222 -1103.3156
+95949.25864231912 4.0117044 -1103.3551
+95950.25864236942 4.0117044 -1103.2366
+95951.25864241972 4.0116649 -1103.2562
+95952.25864247 4.0117831 -1103.2562
+95953.25864252028 4.0116649 -1103.3156
+95954.25864257058 4.0116649 -1103.2761
+95955.25864262089 4.0116258 -1103.3156
+95956.25864267116 4.0117044 -1103.2168
+95957.25864272146 4.0115862 -1103.2562
+95958.25864277176 4.0115075 -1103.2168
+95959.25864282204 4.0114679 -1103.2761
+95960.25864287232 4.0115466 -1103.1182
+95961.25864292262 4.0115075 -1103.2761
+95962.25864297293 4.0115862 -1103.2959
+95963.2586430232 4.0115466 -1103.2562
+95964.2586430735 4.0115466 -1103.2761
+95965.2586431238 4.0113893 -1103.2366
+95966.25864317408 4.0116258 -1103.197
+95967.25864322436 4.0114288 -1103.2761
+95968.25864327466 4.0114288 -1103.2168
+95969.25864332497 4.0114679 -1103.197
+95970.25864337524 4.0113502 -1103.2761
+95971.25864342554 4.0113893 -1103.2366
+95972.25864347584 4.0115466 -1103.2562
+95973.25864352612 4.0114288 -1103.2562
+95974.2586435764 4.0114288 -1103.2959
+95975.2586436267 4.0113502 -1103.3353
+95976.258643677 4.0113893 -1103.1774
+95977.25864372728 4.0113106 -1103.2168
+95978.25864377758 4.0113893 -1103.2168
+95979.25864382788 4.0113106 -1103.2761
+95980.25864387816 4.011271 -1103.2959
+95981.25864392844 4.0113106 -1103.3156
+95982.25864397874 4.0112319 -1103.2562
+95983.25864402905 4.0113106 -1103.197
+95984.25864407932 4.0112319 -1103.2761
+95985.25864412962 4.0112319 -1103.2562
+95986.25864417992 4.0111532 -1103.2761
+95987.2586442302 4.0113502 -1103.2761
+95988.25864428047 4.0111532 -1103.2562
+95989.25864433078 4.0112319 -1103.197
+95990.25864438109 4.0111136 -1103.2959
+95991.25864443136 4.0112319 -1103.2959
+95992.25864448166 4.0110745 -1103.197
+95993.25864453196 4.0111136 -1103.2562
+95994.25864458224 4.0110745 -1103.2761
+95995.25864463251 4.0110745 -1103.2168
+95996.25864468282 4.0111136 -1103.2168
+95997.25864473313 4.0111136 -1103.2959
+95998.2586447834 4.0111923 -1103.2366
+95999.2586448337 4.0109959 -1103.2761
+96000.258644884 4.011035 -1103.3156
+96001.25864493428 4.0109959 -1103.2761
+96002.25864498455 4.0110745 -1103.2959
+96003.25864503486 4.0109167 -1103.2761
+96004.25864508517 4.0109959 -1103.2168
+96005.25864513544 4.0109563 -1103.2761
+96006.25864518574 4.0108776 -1103.197
+96007.25864523604 4.0109167 -1103.1774
+96008.25864528632 4.0109167 -1103.2959
+96009.2586453366 4.010838 -1103.2761
+96010.2586453869 4.0109167 -1103.1774
+96011.2586454372 4.0108776 -1103.2168
+96012.25864548748 4.0108776 -1103.2562
+96013.25864553778 4.0107989 -1103.2168
+96014.25864558808 4.0107594 -1103.2959
+96015.25864563836 4.0107989 -1103.2761
+96016.25864568863 4.0107203 -1103.2562
+96017.25864573894 4.0107989 -1103.2168
+96018.25864578925 4.0107594 -1103.2562
+96019.25864583952 4.010838 -1103.2959
+96020.2586458898 4.0106807 -1103.2168
+96021.25864594012 4.0107594 -1103.197
+96022.2586459904 4.0107203 -1103.1576
+96023.25864604067 4.0106807 -1103.3353
+96024.25864609098 4.010602 -1103.2562
+96025.25864614129 4.0107594 -1103.2366
+96026.25864619156 4.0105624 -1103.2562
+96027.25864624184 4.0106411 -1103.2168
+96028.25864629216 4.0105624 -1103.2562
+96029.25864634244 4.0106807 -1103.1774
+96030.25864639271 4.0105233 -1103.2366
+96031.25864644302 4.0106411 -1103.197
+96032.25864649333 4.0106411 -1103.2959
+96033.2586465436 4.0106411 -1103.2168
+96034.25864659388 4.0105624 -1103.2761
+96035.2586466442 4.0105624 -1103.1576
+96036.25864669448 4.0104837 -1103.197
+96037.25864674475 4.0105624 -1103.1576
+96038.25864679506 4.0105233 -1103.2761
+96039.25864684537 4.010366 -1103.1774
+96040.25864689564 4.0105233 -1103.2168
+96041.25864694592 4.0104446 -1103.2562
+96042.25864699624 4.0105624 -1103.2959
+96043.25864704652 4.0104446 -1103.2959
+96044.2586470968 4.0104051 -1103.2168
+96045.2586471471 4.0103264 -1103.2761
+96046.2586471974 4.0104837 -1103.2168
+96047.25864724768 4.010366 -1103.2562
+96048.25864729796 4.0103264 -1103.2761
+96049.25864734828 4.010366 -1103.3353
+96050.25864739856 4.0104051 -1103.2959
+96051.25864744883 4.0103264 -1103.2562
+96052.25864749914 4.0103264 -1103.2761
+96053.25864754945 4.0103264 -1103.3156
+96054.25864759972 4.0102477 -1103.2366
+96055.25864765 4.0102081 -1103.2761
+96056.25864770032 4.0104051 -1103.2761
+96057.2586477506 4.010169 -1103.3156
+96058.25864780087 4.0103264 -1103.197
+96059.25864785118 4.0102477 -1103.2366
+96060.25864790149 4.0102868 -1103.2168
+96061.25864795176 4.010169 -1103.2959
+96062.25864800204 4.010169 -1103.2168
+96063.25864805236 4.0101295 -1103.2168
+96064.25864810264 4.0101295 -1103.197
+96065.25864815291 4.0102081 -1103.2366
+96066.25864820322 4.0100508 -1103.2959
+96067.25864825353 4.010169 -1103.2959
+96068.2586483038 4.0099721 -1103.2959
+96069.25864835408 4.0100112 -1103.2562
+96070.2586484044 4.0099721 -1103.2168
+96071.25864845468 4.0100904 -1103.2168
+96072.25864850495 4.0099721 -1103.2366
+96073.25864855526 4.0100904 -1103.1774
+96074.25864860557 4.0100112 -1103.2168
+96075.25864865584 4.0099325 -1103.2366
+96076.25864870612 4.0100112 -1103.1774
+96077.25864875644 4.0099325 -1103.1774
+96078.25864880672 4.0099721 -1103.1576
+96079.258648857 4.0099721 -1103.2366
+96080.2586489073 4.0099721 -1103.2959
+96081.2586489576 4.0098934 -1103.197
+96082.25864900788 4.0098147 -1103.3353
+96083.25864905816 4.0098147 -1103.2366
+96084.25864910848 4.0098147 -1103.1774
+96085.25864915876 4.0098538 -1103.3156
+96086.25864920903 4.0098147 -1103.3156
+96087.25864925934 4.0098538 -1103.1576
+96088.25864930965 4.0098538 -1103.3353
+96089.25864935992 4.0097752 -1103.2562
+96090.2586494102 4.0097752 -1103.2168
+96091.25864946052 4.0096965 -1103.2761
+96092.2586495108 4.0097356 -1103.2366
+96093.25864956107 4.0097752 -1103.2959
+96094.25864961138 4.0097752 -1103.2366
+96095.25864966169 4.0096965 -1103.2366
+96096.25864971196 4.0096965 -1103.197
+96097.25864976224 4.0096569 -1103.1774
+96098.25864981256 4.0097356 -1103.2562
+96099.25864986284 4.0096965 -1103.2562
+96100.25864991311 4.0096569 -1103.2168
+96101.25864996342 4.0096569 -1103.2761
+96102.25865001373 4.0095782 -1103.197
+96103.258650064 4.0096178 -1103.2761
+96104.25865011428 4.0095782 -1103.2366
+96105.2586501646 4.0095391 -1103.2168
+96106.25865021488 4.0094995 -1103.2761
+96107.25865026515 4.0094995 -1103.2761
+96108.25865031546 4.0095782 -1103.2366
+96109.25865036577 4.0096178 -1103.2168
+96110.25865041604 4.0094995 -1103.2366
+96111.25865046632 4.0094995 -1103.1774
+96112.25865051664 4.0095391 -1103.197
+96113.25865056692 4.0094604 -1103.3156
+96114.2586506172 4.0094995 -1103.2366
+96115.2586506675 4.0093813 -1103.2761
+96116.2586507178 4.0094604 -1103.3156
+96117.25865076808 4.0094995 -1103.2168
+96118.25865081836 4.0093026 -1103.2562
+96119.25865086868 4.0094604 -1103.1774
+96120.25865091896 4.0092635 -1103.3353
+96121.25865096923 4.0093422 -1103.197
+96122.25865101954 4.0093422 -1103.2562
+96123.25865106985 4.0093026 -1103.2761
+96124.25865112012 4.0093422 -1103.2562
+96125.2586511704 4.0093026 -1103.1774
+96126.25865122072 4.0093422 -1103.2761
+96127.258651271 4.0091848 -1103.2959
+96128.25865132127 4.0092239 -1103.2761
+96129.25865137158 4.0091848 -1103.3353
+96130.25865142189 4.0092635 -1103.3156
+96131.25865147216 4.0091848 -1103.2959
+96132.25865152244 4.0093026 -1103.0984
+96133.25865157276 4.0091848 -1103.1774
+96134.25865162304 4.0092239 -1103.2366
+96135.25865167331 4.0092239 -1103.2761
+96136.25865172362 4.0092239 -1103.3156
+96137.25865177393 4.0091453 -1103.2366
+96138.2586518242 4.0091057 -1103.2761
+96139.25865187448 4.0091453 -1103.2366
+96140.2586519248 4.0090666 -1103.2168
+96141.25865197508 4.0089879 -1103.1182
+96142.25865202535 4.009027 -1103.2168
+96143.25865207566 4.0090666 -1103.2959
+96144.25865212597 4.0089483 -1103.1774
+96145.25865217624 4.0089879 -1103.2366
+96146.25865222652 4.009027 -1103.2761
+96147.25865227684 4.0089879 -1103.3551
+96148.25865232712 4.0089092 -1103.2168
+96149.2586523774 4.009027 -1103.2562
+96150.2586524277 4.0090666 -1103.197
+96151.258652478 4.0089483 -1103.3156
+96152.25865252828 4.0089483 -1103.1576
+96153.25865257856 4.0089092 -1103.2366
+96154.25865262888 4.0088696 -1103.197
+96155.25865267916 4.0089483 -1103.2168
+96156.25865272943 4.0088305 -1103.2366
+96157.25865277974 4.008791 -1103.2366
+96158.25865283005 4.0088696 -1103.197
+96159.25865288032 4.0088305 -1103.2168
+96160.2586529306 4.008791 -1103.2761
+96161.25865298092 4.0088305 -1103.2366
+96162.2586530312 4.0087514 -1103.2366
+96163.25865308147 4.008791 -1103.2168
+96164.25865313178 4.0087514 -1103.2959
+96165.25865318209 4.0088305 -1103.2366
+96166.25865323236 4.0087514 -1103.2562
+96167.25865328264 4.0087514 -1103.3156
+96168.25865333296 4.0087123 -1103.2366
+96169.25865338324 4.008594 -1103.2366
+96170.25865343351 4.0086336 -1103.2366
+96171.25865348382 4.0086336 -1103.2562
+96172.25865353413 4.008594 -1103.2366
+96173.2586535844 4.008594 -1103.2562
+96174.25865363468 4.0086336 -1103.2562
+96175.25865368498 4.0085549 -1103.2168
+96176.25865373528 4.0085549 -1103.2168
+96177.25865378555 4.0086336 -1103.3551
+96178.25865383586 4.008594 -1103.2562
+96179.25865388617 4.0084758 -1103.2168
+96180.25865393644 4.0085154 -1103.197
+96181.25865398672 4.0085549 -1103.2959
+96182.25865403702 4.0085154 -1103.2761
+96183.25865408732 4.0084367 -1103.2168
+96184.2586541376 4.0084367 -1103.2761
+96185.2586541879 4.0085154 -1103.2959
+96186.2586542382 4.0083971 -1103.1182
+96187.25865428848 4.0084367 -1103.2168
+96188.25865433876 4.0084367 -1103.3551
+96189.25865438906 4.0084367 -1103.3353
+96190.25865443936 4.008358 -1103.2168
+96191.25865448963 4.0083184 -1103.1774
+96192.25865453994 4.0083184 -1103.1774
+96193.25865459024 4.0083184 -1103.3353
+96194.25865464052 4.008358 -1103.3156
+96195.2586546908 4.0083971 -1103.197
+96196.2586547411 4.0083971 -1103.2168
+96197.2586547914 4.0082397 -1103.197
+96198.25865484167 4.0082397 -1103.1774
+96199.25865489198 4.008358 -1103.2168
+96200.25865494228 4.0082397 -1103.2959
+96201.25865499256 4.0081611 -1103.197
+96202.25865504284 4.0081611 -1103.3156
+96203.25865509314 4.0082397 -1103.197
+96204.25865514344 4.0082793 -1103.1774
+96205.25865519371 4.0081611 -1103.2959
+96206.25865524402 4.0081611 -1103.2959
+96207.25865529432 4.0082397 -1103.2366
+96208.2586553446 4.0081611 -1103.2168
+96209.25865539488 4.0080428 -1103.2562
+96210.25865544518 4.0080824 -1103.2562
+96211.25865549548 4.0081215 -1103.2959
+96212.25865554575 4.0081215 -1103.2366
+96213.25865559606 4.0081215 -1103.2959
+96214.25865564636 4.0080824 -1103.2959
+96215.25865569664 4.0080037 -1103.2168
+96216.25865574692 4.0080428 -1103.2168
+96217.25865579722 4.0079641 -1103.2761
+96218.25865584752 4.0079641 -1103.1576
+96219.2586558978 4.0080428 -1103.2562
+96220.2586559481 4.007925 -1103.2562
+96221.2586559984 4.0080037 -1103.197
+96222.25865604868 4.007925 -1103.2366
+96223.25865609896 4.007925 -1103.2562
+96224.25865614926 4.007925 -1103.3156
+96225.25865619956 4.0077672 -1103.1774
+96226.25865624985 4.0078855 -1103.2761
+96227.25865630014 4.0078459 -1103.2959
+96228.25865635044 4.0078855 -1103.2562
+96229.25865640072 4.0078068 -1103.2168
+96230.258656451 4.0078459 -1103.197
+96231.2586565013 4.0077672 -1103.2168
+96232.2586565516 4.0078068 -1103.197
+96233.25865660189 4.0077672 -1103.2366
+96234.25865665218 4.0078068 -1103.2761
+96235.25865670248 4.0077672 -1103.1774
+96236.25865675276 4.0077281 -1103.2168
+96237.25865680304 4.0078068 -1103.2366
+96238.25865685334 4.0077281 -1103.3156
+96239.25865690364 4.0077281 -1103.197
+96240.25865695393 4.0076494 -1103.197
+96241.25865700422 4.0075703 -1103.2562
+96242.25865705452 4.0077281 -1103.197
+96243.2586571048 4.0076885 -1103.197
+96244.25865715508 4.0076885 -1103.2168
+96245.25865720538 4.0075703 -1103.2366
+96246.25865725568 4.0076098 -1103.2562
+96247.25865730597 4.0075703 -1103.2366
+96248.25865735626 4.0076098 -1103.197
+96249.25865740656 4.0075703 -1103.197
+96250.25865745684 4.0075312 -1103.2168
+96251.25865750712 4.0075312 -1103.197
+96252.25865755742 4.0075312 -1103.197
+96253.25865760772 4.0074525 -1103.2168
+96254.258657658 4.0076098 -1103.3156
+96255.2586577083 4.0074525 -1103.2366
+96256.2586577586 4.0074129 -1103.197
+96257.25865780888 4.0074525 -1103.2562
+96258.25865785916 4.0075312 -1103.2366
+96259.25865790946 4.0075312 -1103.197
+96260.25865795976 4.0074129 -1103.2366
+96261.25865801005 4.0074129 -1103.1774
+96262.25865806034 4.0073738 -1103.2366
+96263.25865811064 4.0073342 -1103.2366
+96264.25865816092 4.0073738 -1103.2366
+96265.2586582112 4.0073342 -1103.197
+96266.2586582615 4.0073342 -1103.2959
+96267.2586583118 4.0072556 -1103.2761
+96268.25865836209 4.0073342 -1103.2761
+96269.25865841238 4.0072951 -1103.2761
+96270.25865846268 4.0071769 -1103.1378
+96271.25865851296 4.007216 -1103.2168
+96272.25865856324 4.0072556 -1103.1576
+96273.25865861354 4.007216 -1103.2366
+96274.25865866384 4.0071769 -1103.1576
+96275.25865871413 4.0071373 -1103.2562
+96276.25865876442 4.0071769 -1103.2562
+96277.25865881472 4.0072556 -1103.1774
+96278.258658865 4.0070982 -1103.2761
+96279.25865891528 4.0071769 -1103.2959
+96280.25865896558 4.0071769 -1103.2761
+96281.25865901588 4.0070586 -1103.3551
+96282.25865906617 4.0069799 -1103.197
+96283.25865911646 4.0070982 -1103.1774
+96284.25865916676 4.0070195 -1103.2761
+96285.25865921704 4.0070195 -1103.2562
+96286.25865926732 4.0070982 -1103.3749
+96287.25865931762 4.0069404 -1103.197
+96288.25865936792 4.0071769 -1103.2761
+96289.2586594182 4.0069799 -1103.197
+96290.2586594685 4.0069404 -1103.2562
+96291.2586595188 4.0069799 -1103.2168
+96292.25865956908 4.0069404 -1103.2562
+96293.25865961936 4.0069799 -1103.2562
+96294.25865966966 4.0069013 -1103.2761
+96295.25865971996 4.0069013 -1103.3353
+96296.25865977025 4.0069013 -1103.2562
+96297.25865982054 4.0070195 -1103.3156
+96298.25865987084 4.0069013 -1103.2959
+96299.25865992112 4.0069013 -1103.197
+96300.2586599714 4.006783 -1103.197
+96301.2586600217 4.0067439 -1103.2366
+96302.258660072 4.006783 -1103.197
+96303.25866012229 4.0067439 -1103.1774
+96304.25866017258 4.0068226 -1103.2761
+96305.25866022288 4.0067439 -1103.197
+96306.25866027316 4.0066652 -1103.1774
+96307.25866032344 4.0067439 -1103.2366
+96308.25866037374 4.0066652 -1103.2562
+96309.25866042404 4.0067043 -1103.3156
+96310.25866047433 4.0067439 -1103.3156
+96311.25866052462 4.0067043 -1103.2366
+96312.25866057492 4.0067043 -1103.2562
+96313.2586606252 4.0067043 -1103.2366
+96314.25866067548 4.0066652 -1103.2168
+96315.25866072578 4.0066652 -1103.2168
+96316.25866077607 4.0066652 -1103.3156
+96317.25866082637 4.0065861 -1103.2959
+96318.25866087666 4.006547 -1103.2761
+96319.25866092696 4.0065861 -1103.2366
+96320.25866097724 4.0066652 -1103.3353
+96321.25866102752 4.006547 -1103.2366
+96322.25866107782 4.0065861 -1103.2562
+96323.25866112811 4.006547 -1103.2959
+96324.2586611784 4.0065074 -1103.2366
+96325.2586612287 4.006547 -1103.2562
+96326.258661279 4.0064287 -1103.2761
+96327.25866132928 4.0063896 -1103.2366
+96328.25866137956 4.006547 -1103.2761
+96329.25866142986 4.0064287 -1103.1774
+96330.25866148015 4.00635 -1103.2761
+96331.25866153045 4.0064683 -1103.2562
+96332.25866158074 4.0065074 -1103.3156
+96333.25866163104 4.0063105 -1103.3156
+96334.25866168132 4.0063105 -1103.3156
+96335.2586617316 4.0063105 -1103.3353
+96336.2586617819 4.0062714 -1103.2959
+96337.2586618322 4.0063105 -1103.2562
+96338.25866188249 4.00635 -1103.4143
+96339.25866193278 4.00635 -1103.2562
+96340.25866198308 4.0063105 -1103.1378
+96341.25866203336 4.0062714 -1103.2761
+96342.25866208364 4.0061927 -1103.2168
+96343.25866213394 4.0061531 -1103.2959
+96344.25866218423 4.0062318 -1103.2959
+96345.25866223453 4.0061927 -1103.2366
+96346.25866228482 4.0061927 -1103.3156
+96347.25866233512 4.0061927 -1103.197
+96348.2586623854 4.006114 -1103.3156
+96349.25866243568 4.0062318 -1103.1774
+96350.25866248598 4.0060744 -1103.2562
+96351.25866253627 4.0060744 -1103.2562
+96352.25866258657 4.0060349 -1103.2366
+96353.25866263686 4.0059562 -1103.2959
+96354.25866268716 4.0059562 -1103.2562
+96355.25866273744 4.0060349 -1103.2366
+96356.25866278772 4.0060349 -1103.2761
+96357.25866283802 4.0059562 -1103.2366
+96358.25866288831 4.0060349 -1103.2959
+96359.2586629386 4.006114 -1103.3156
+96360.2586629889 4.0059958 -1103.2761
+96361.2586630392 4.0059171 -1103.2366
+96362.25866308948 4.0058775 -1103.2366
+96363.25866313976 4.0059562 -1103.2761
+96364.25866319006 4.0059562 -1103.2366
+96365.25866324035 4.0059171 -1103.2761
+96366.25866329065 4.0057988 -1103.1378
+96367.25866334094 4.0058384 -1103.2959
+96368.25866339124 4.0059171 -1103.2562
+96369.25866344152 4.0059171 -1103.2562
+96370.2586634918 4.0058775 -1103.2366
+96371.2586635421 4.0058384 -1103.2761
+96372.2586635924 4.0056806 -1103.197
+96373.25866364269 4.0058384 -1103.3551
+96374.25866369298 4.0057988 -1103.2168
+96375.25866374328 4.0057597 -1103.2761
+96376.25866379356 4.0057988 -1103.1774
+96377.25866384384 4.0056019 -1103.1182
+96378.25866389414 4.0057988 -1103.1774
+96379.25866394443 4.0056806 -1103.2562
+96380.25866399473 4.0057201 -1103.2562
+96381.25866404502 4.0056806 -1103.2366
+96382.25866409532 4.0056019 -1103.2366
+96383.2586641456 4.0056806 -1103.3156
+96384.25866419588 4.0057201 -1103.2959
+96385.25866424618 4.0057201 -1103.197
+96386.25866429647 4.0056806 -1103.2366
+96387.25866434677 4.0056019 -1103.1774
+96388.25866439706 4.0056019 -1103.2761
+96389.25866444736 4.0055628 -1103.2761
+96390.25866449764 4.0054841 -1103.197
+96391.25866454792 4.0056019 -1103.1774
+96392.25866459822 4.0054445 -1103.2366
+96393.25866464851 4.0054841 -1103.2366
+96394.2586646988 4.0054841 -1103.2761
+96395.2586647491 4.0054049 -1103.3353
+96396.2586647994 4.0054445 -1103.2168
+96397.25866484968 4.0054841 -1103.2562
+96398.25866489996 4.0054049 -1103.2562
+96399.25866495026 4.0055628 -1103.2761
+96400.25866500055 4.0053658 -1103.2366
+96401.25866505085 4.0053658 -1103.2366
+96402.25866510114 4.0053263 -1103.2562
+96403.25866515144 4.0053263 -1103.1378
+96404.25866520172 4.0053658 -1103.2366
+96405.258665252 4.0053658 -1103.2168
+96406.2586653023 4.0053263 -1103.2562
+96407.2586653526 4.0054445 -1103.2562
+96408.25866540289 4.0052872 -1103.2168
+96409.25866545318 4.0052872 -1103.2168
+96410.25866550348 4.0052476 -1103.2959
+96411.25866555376 4.0052872 -1103.2761
+96412.25866560404 4.0051689 -1103.3156
+96413.25866565434 4.0052476 -1103.197
+96414.25866570463 4.0052476 -1103.2959
+96415.25866575493 4.0052476 -1103.2168
+96416.25866580522 4.0050902 -1103.2761
+96417.25866585552 4.0052085 -1103.3551
+96418.2586659058 4.0052085 -1103.2366
+96419.25866595608 4.0050507 -1103.2959
+96420.25866600638 4.0050507 -1103.2366
+96421.25866605667 4.0050116 -1103.2959
+96422.25866610697 4.0051298 -1103.2168
+96423.25866615726 4.0050116 -1103.2562
+96424.25866620756 4.0050902 -1103.2959
+96425.25866625784 4.0051298 -1103.3353
+96426.25866630812 4.0050116 -1103.3156
+96427.25866635842 4.0050116 -1103.2366
+96428.25866640871 4.0050507 -1103.2366
+96429.258666459 4.004972 -1103.1774
+96430.2586665093 4.0050116 -1103.2168
+96431.2586665596 4.0048933 -1103.1378
+96432.25866660988 4.0048933 -1103.2168
+96433.25866666016 4.004972 -1103.2562
+96434.25866671046 4.0050116 -1103.2366
+96435.25866676075 4.004972 -1103.2562
+96436.25866681105 4.0049329 -1103.2562
+96437.25866686134 4.0049329 -1103.2366
+96438.25866691164 4.0048933 -1103.2959
+96439.25866696192 4.0048542 -1103.2761
+96440.2586670122 4.0048542 -1103.2366
+96441.2586670625 4.004775 -1103.2761
+96442.2586671128 4.0047359 -1103.2761
+96443.25866716309 4.0048542 -1103.1378
+96444.25866721338 4.0048146 -1103.1774
+96445.25866726368 4.0047359 -1103.2761
+96446.25866731396 4.0048146 -1103.2761
+96447.25866736424 4.004775 -1103.2366
+96448.25866741454 4.004775 -1103.2366
+96449.25866746483 4.0047359 -1103.2761
+96450.25866751513 4.0047359 -1103.2562
+96451.25866756542 4.0046573 -1103.2168
+96452.25866761572 4.0046573 -1103.2366
+96453.258667666 4.0046573 -1103.2366
+96454.25866771628 4.0046573 -1103.2366
+96455.25866776658 4.0045786 -1103.2562
+96456.25866781687 4.0045786 -1103.2562
+96457.25866786717 4.0046964 -1103.2366
+96458.25866791746 4.0046573 -1103.2562
+96459.25866796776 4.0045786 -1103.2366
+96460.25866801804 4.0045786 -1103.2959
+96461.25866806832 4.0044603 -1103.2168
+96462.25866811862 4.0044999 -1103.3353
+96463.25866816891 4.004539 -1103.2761
+96464.2586682192 4.0044999 -1103.3353
+96465.2586682695 4.0044999 -1103.3156
+96466.2586683198 4.004539 -1103.2366
+96467.25866837008 4.0044603 -1103.2562
+96468.25866842036 4.0044208 -1103.3156
+96469.25866847066 4.0044208 -1103.1182
+96470.25866852095 4.0044603 -1103.3156
+96471.25866857124 4.0043421 -1103.1378
+96472.25866862154 4.0043421 -1103.197
+96473.25866867184 4.0044603 -1103.3353
+96474.25866872212 4.0043421 -1103.2761
+96475.2586687724 4.004303 -1103.197
+96476.2586688227 4.004303 -1103.2959
+96477.258668873 4.004303 -1103.197
+96478.25866892328 4.004303 -1103.1774
+96479.25866897358 4.004303 -1103.2959
+96480.25866902388 4.0042634 -1103.2959
+96481.25866907416 4.0041847 -1103.3353
+96482.25866912444 4.0042634 -1103.2761
+96483.25866917474 4.004303 -1103.3156
+96484.25866922503 4.0041847 -1103.3156
+96485.25866927532 4.0041451 -1103.3156
+96486.25866932562 4.0042634 -1103.197
+96487.25866937592 4.004106 -1103.2562
+96488.2586694262 4.0041847 -1103.3945
+96489.25866947648 4.0041847 -1103.1576
+96490.25866952678 4.0042243 -1103.2761
+96491.25866957707 4.0040274 -1103.2959
+96492.25866962736 4.0039878 -1103.2168
+96493.25866967766 4.0041451 -1103.2168
+96494.25866972796 4.0040665 -1103.2761
+96495.25866977824 4.004106 -1103.2366
+96496.25866982852 4.0040665 -1103.197
+96497.25866987882 4.0040665 -1103.1182
+96498.25866992911 4.0040274 -1103.3551
+96499.2586699794 4.0039487 -1103.1182
+96500.2586700297 4.0039487 -1103.197
+96501.25867008 4.0039878 -1103.2168
+96502.25867013028 4.0039091 -1103.2562
+96503.25867018056 4.0039487 -1103.1774
+96504.25867023086 4.0039091 -1103.2168
+96505.25867028115 4.0039487 -1103.1576
+96506.25867033144 4.0039487 -1103.2366
+96507.25867038174 4.0038695 -1103.2168
+96508.25867043204 4.0039091 -1103.2959
+96509.25867048232 4.0038695 -1103.2168
+96510.2586705326 4.0039091 -1103.1774
+96511.2586705829 4.0039487 -1103.1774
+96512.2586706332 4.0037909 -1103.3353
+96513.25867068348 4.0038304 -1103.2562
+96514.25867073378 4.0038695 -1103.2366
+96515.25867078408 4.0038304 -1103.1378
+96516.25867083436 4.0037909 -1103.2366
+96517.25867088464 4.0037909 -1103.2366
+96518.25867093494 4.0037518 -1103.1576
+96519.25867098523 4.0037122 -1103.197
+96520.25867103552 4.0037518 -1103.2366
+96521.25867108582 4.0037909 -1103.197
+96522.25867113612 4.0036731 -1103.2168
+96523.2586711864 4.0035944 -1103.3156
+96524.25867123668 4.0037122 -1103.2562
+96525.25867128698 4.0037122 -1103.1576
+96526.25867133727 4.0036731 -1103.3156
+96527.25867138756 4.0035548 -1103.3156
+96528.25867143786 4.0035152 -1103.2959
+96529.25867148816 4.0036335 -1103.197
+96530.25867153844 4.0035152 -1103.2562
+96531.25867158872 4.0035944 -1103.197
+96532.25867163902 4.0034366 -1103.2761
+96533.25867168931 4.0034761 -1103.3156
+96534.2586717396 4.0035152 -1103.2366
+96535.2586717899 4.0035152 -1103.2761
+96536.2586718402 4.0035152 -1103.1378
+96537.25867189048 4.0035152 -1103.2168
+96538.25867194076 4.0034761 -1103.197
+96539.25867199106 4.0034366 -1103.2761
+96540.25867204135 4.0033579 -1103.2168
+96541.25867209164 4.0034366 -1103.2562
+96542.25867214194 4.0034366 -1103.1774
+96543.25867219224 4.0033975 -1103.1774
+96544.25867224252 4.0034366 -1103.3749
+96545.2586722928 4.0033579 -1103.1774
+96546.2586723431 4.0032792 -1103.2168
+96547.2586723934 4.0033579 -1103.2168
+96548.25867244368 4.0032792 -1103.2168
+96549.25867249398 4.0033579 -1103.1774
+96550.25867254428 4.0033579 -1103.2761
+96551.25867259456 4.0032792 -1103.2959
+96552.25867264484 4.0032396 -1103.2366
+96553.25867269514 4.003161 -1103.2761
+96554.25867274545 4.0032396 -1103.2366
+96555.25867279572 4.0032396 -1103.2366
+96556.25867284602 4.0032792 -1103.2168
+96557.25867289632 4.0030823 -1103.3551
+96558.2586729466 4.0032396 -1103.2959
+96559.25867299688 4.003161 -1103.3551
+96560.25867304718 4.003161 -1103.197
+96561.25867309749 4.0032005 -1103.197
+96562.25867314776 4.0031219 -1103.3156
+96563.25867319806 4.0030432 -1103.197
+96564.25867324836 4.0031219 -1103.2562
+96565.25867329864 4.0030823 -1103.197
+96566.25867334892 4.0030432 -1103.2761
+96567.25867339922 4.0030036 -1103.3156
+96568.25867344953 4.0030432 -1103.2761
+96569.2586734998 4.0030036 -1103.2761
+96570.2586735501 4.0031219 -1103.2168
+96571.2586736004 4.0029645 -1103.2959
+96572.25867365068 4.0030432 -1103.2761
+96573.25867370096 4.0029645 -1103.2562
+96574.25867375126 4.0028853 -1103.2562
+96575.25867380157 4.0028462 -1103.2959
+96576.25867385184 4.0027676 -1103.2562
+96577.25867390214 4.0029249 -1103.1182
+96578.25867395244 4.0029249 -1103.2562
+96579.25867400272 4.0028067 -1103.1378
+96580.258674053 4.0027676 -1103.2366
+96581.2586741033 4.0028067 -1103.1774
+96582.2586741536 4.0028853 -1103.2562
+96583.25867420388 4.0028067 -1103.2761
+96584.25867425418 4.0028853 -1103.2761
+96585.25867430448 4.0028067 -1103.2562
+96586.25867435476 4.0028067 -1103.2761
+96587.25867440503 4.002728 -1103.3551
+96588.25867445534 4.0028067 -1103.1378
+96589.25867450565 4.0027676 -1103.2562
+96590.25867455592 4.0026889 -1103.3156
+96591.25867460622 4.0026493 -1103.2168
+96592.25867465652 4.002728 -1103.2366
+96593.2586747068 4.0026493 -1103.3156
+96594.25867475707 4.0026493 -1103.2562
+96595.25867480738 4.002492 -1103.197
+96596.25867485769 4.0026097 -1103.2366
+96597.25867490796 4.0026889 -1103.197
+96598.25867495826 4.0026493 -1103.2562
+96599.25867500856 4.002492 -1103.1182
+96600.25867505884 4.002492 -1103.2562
+96601.25867510911 4.0026493 -1103.197
+96602.25867515942 4.0026097 -1103.3156
+96603.25867520973 4.0025706 -1103.2761
+96604.25867526 4.0025706 -1103.1774
+96605.2586753103 4.0024524 -1103.1774
+96606.2586753606 4.002492 -1103.1576
+96607.25867541088 4.002492 -1103.2168
+96608.25867546115 4.0024133 -1103.3156
+96609.25867551146 4.0023737 -1103.2168
+96610.25867556177 4.0023737 -1103.3551
+96611.25867561204 4.0023737 -1103.3749
+96612.25867566234 4.0023341 -1103.2168
+96613.25867571264 4.0024524 -1103.1774
+96614.25867576292 4.0023737 -1103.2168
+96615.2586758132 4.0023341 -1103.2562
+96616.2586758635 4.0023737 -1103.2959
+96617.2586759138 4.002295 -1103.2168
+96618.25867596408 4.002295 -1103.1774
+96619.25867601436 4.0022554 -1103.2168
+96620.25867606468 4.0021768 -1103.2761
+96621.25867611496 4.0022163 -1103.2366
+96622.25867616523 4.002295 -1103.2168
+96623.25867621554 4.0022554 -1103.2168
+96624.25867626585 4.0022554 -1103.2562
+96625.25867631612 4.0022163 -1103.2562
+96626.2586763664 4.0022163 -1103.2562
+96627.25867641672 4.0021768 -1103.2168
+96628.258676467 4.0022163 -1103.2366
+96629.25867651727 4.0021377 -1103.2168
+96630.25867656758 4.0021377 -1103.2366
+96631.25867661789 4.0021377 -1103.2562
+96632.25867666816 4.002059 -1103.2761
+96633.25867671844 4.0021377 -1103.2168
+96634.25867676876 4.0021377 -1103.1774
+96635.25867681904 4.0020981 -1103.2366
+96636.25867686931 4.0019798 -1103.2168
+96637.25867691962 4.002059 -1103.2562
+96638.25867696993 4.0020194 -1103.1774
+96639.2586770202 4.0019798 -1103.197
+96640.25867707048 4.0019407 -1103.1182
+96641.2586771208 4.0019011 -1103.2562
+96642.25867717108 4.0019798 -1103.197
+96643.25867722135 4.0019798 -1103.1576
+96644.25867727166 4.0019407 -1103.2562
+96645.25867732197 4.0019407 -1103.2366
+96646.25867737224 4.0019798 -1103.2562
+96647.25867742252 4.0019798 -1103.2168
+96648.25867747284 4.0019011 -1103.3156
+96649.25867752312 4.0018225 -1103.3156
+96650.2586775734 4.0019011 -1103.2366
+96651.2586776237 4.0019011 -1103.1576
+96652.258677674 4.0017834 -1103.2562
+96653.25867772428 4.0017834 -1103.3156
+96654.25867777456 4.001862 -1103.197
+96655.25867782488 4.0017438 -1103.2562
+96656.25867787516 4.0018225 -1103.2366
+96657.25867792543 4.001862 -1103.197
+96658.25867797574 4.0017438 -1103.2366
+96659.25867802605 4.0017834 -1103.3156
+96660.25867807632 4.0016651 -1103.2562
+96661.2586781266 4.0016651 -1103.2562
+96662.25867817692 4.0016255 -1103.2959
+96663.2586782272 4.0016255 -1103.2761
+96664.25867827747 4.0017042 -1103.2366
+96665.25867832778 4.0015864 -1103.2168
+96666.25867837809 4.0016651 -1103.1774
+96667.25867842836 4.0016255 -1103.2168
+96668.25867847864 4.0015469 -1103.2562
+96669.25867852896 4.0015469 -1103.2168
+96670.25867857924 4.0015469 -1103.2761
+96671.25867862951 4.0015469 -1103.197
+96672.25867867982 4.0015864 -1103.2168
+96673.25867873013 4.0015864 -1103.2959
+96674.2586787804 4.0015469 -1103.1774
+96675.25867883068 4.0015469 -1103.2761
+96676.258678881 4.0013895 -1103.1576
+96677.25867893128 4.0013895 -1103.2761
+96678.25867898155 4.0015469 -1103.2366
+96679.25867903186 4.0014682 -1103.3156
+96680.25867908217 4.0013499 -1103.2366
+96681.25867913244 4.0013499 -1103.2562
+96682.25867918272 4.0013108 -1103.2959
+96683.25867923304 4.0013499 -1103.2562
+96684.25867928332 4.0013108 -1103.2959
+96685.2586793336 4.0013108 -1103.2562
+96686.2586793839 4.0013895 -1103.2562
+96687.2586794342 4.0012321 -1103.2959
+96688.25867948448 4.0013108 -1103.2168
+96689.25867953476 4.0013499 -1103.2761
+96690.25867958508 4.0011926 -1103.2959
+96691.25867963536 4.0012321 -1103.3156
+96692.25867968563 4.0013108 -1103.1774
+96693.25867973594 4.0013499 -1103.3551
+96694.25867978625 4.0011535 -1103.2366
+96695.25867983652 4.0011535 -1103.2761
+96696.2586798868 4.0011926 -1103.2168
+96697.25867993712 4.0012321 -1103.2959
+96698.2586799874 4.0011139 -1103.197
+96699.25868003767 4.0012321 -1103.3156
+96700.25868008798 4.0011926 -1103.2761
+96701.25868013829 4.0011139 -1103.197
+96702.25868018856 4.0010352 -1103.2959
+96703.25868023884 4.0010352 -1103.2562
+96704.25868028916 4.0009956 -1103.3551
+96705.25868033944 4.0009565 -1103.1774
+96706.25868038971 4.0009565 -1103.3353
+96707.25868044002 4.0009956 -1103.2562
+96708.25868049033 4.0009956 -1103.2366
+96709.2586805406 4.000917 -1103.2959
+96710.25868059088 4.0009956 -1103.2562
+96711.2586806412 4.000917 -1103.2761
+96712.25868069148 4.0009565 -1103.2366
+96713.25868074175 4.000917 -1103.3156
+96714.25868079206 4.0008779 -1103.2168
+96715.25868084237 4.0009956 -1103.2761
+96716.25868089264 4.000917 -1103.3353
+96717.25868094292 4.0008383 -1103.2562
+96718.25868099324 4.0008779 -1103.1576
+96719.25868104352 4.0008383 -1103.2562
+96720.2586810938 4.0008779 -1103.2761
+96721.2586811441 4.0008383 -1103.2366
+96722.2586811944 4.0007992 -1103.2562
+96723.25868124468 4.0008383 -1103.2562
+96724.25868129496 4.00072 -1103.2366
+96725.25868134528 4.00072 -1103.2959
+96726.25868139556 4.0007596 -1103.2366
+96727.25868144583 4.0008383 -1103.3156
+96728.25868149614 4.0006809 -1103.1774
+96729.25868154645 4.00072 -1103.1774
+96730.25868159672 4.0006022 -1103.197
+96731.258681647 4.0007596 -1103.2562
+96732.25868169732 4.0006413 -1103.3156
+96733.2586817476 4.0006022 -1103.2168
+96734.25868179787 4.0006022 -1103.197
+96735.25868184818 4.0006413 -1103.2562
+96736.25868189849 4.0006022 -1103.2366
+96737.25868194876 4.0006022 -1103.2366
+96738.25868199904 4.0005236 -1103.2562
+96739.25868204936 4.0005627 -1103.2366
+96740.25868209964 4.0005627 -1103.3353
+96741.25868214991 4.0006022 -1103.197
+96742.25868220022 4.0004444 -1103.1774
+96743.25868225053 4.0005236 -1103.2562
+96744.2586823008 4.0004053 -1103.3353
+96745.25868235108 4.000484 -1103.2562
+96746.2586824014 4.0004444 -1103.3551
+96747.25868245168 4.0004444 -1103.197
+96748.25868250195 4.0005236 -1103.2761
+96749.25868255226 4.0003266 -1103.2761
+96750.25868260257 4.0003657 -1103.2959
+96751.25868265284 4.0004444 -1103.3156
+96752.25868270312 4.0003657 -1103.3156
+96753.25868275344 4.0004053 -1103.2366
+96754.25868280372 4.0003657 -1103.2366
+96755.258682854 4.0004053 -1103.2168
+96756.2586829043 4.0003657 -1103.2959
+96757.2586829546 4.0002871 -1103.3353
+96758.25868300488 4.0003266 -1103.2168
+96759.25868305516 4.0003266 -1103.2562
+96760.25868310548 4.0003266 -1103.3156
+96761.25868315576 4.0002871 -1103.2761
+96762.25868320603 4.000248 -1103.2168
+96763.25868325634 4.000248 -1103.197
+96764.25868330665 4.0001297 -1103.2168
+96765.25868335692 4.0001688 -1103.2366
+96766.2586834072 4.0000901 -1103.2761
+96767.25868345752 4.0001297 -1103.2366
+96768.2586835078 4.0001297 -1103.2168
+96769.25868355807 4.000248 -1103.2366
+96770.25868360838 4.0002084 -1103.197
+96771.25868365869 4.0001297 -1103.3156
+96772.25868370896 3.9999723 -1103.2761
+96773.25868375924 4.000051 -1103.2562
+96774.25868380954 4.0000901 -1103.2366
+96775.25868385984 4.0001688 -1103.2761
+96776.25868391011 3.9999723 -1103.2959
+96777.25868396042 4.000051 -1103.197
+96778.25868401073 3.9999723 -1103.197
+96779.258684061 3.9999723 -1103.2366
+96780.25868411128 4.0000114 -1103.2562
+96781.25868416158 3.999933 -1103.197
+96782.25868421188 4.000051 -1103.1774
+96783.25868426215 3.9998541 -1103.2959
+96784.25868431246 3.9998541 -1103.2366
+96785.25868436277 3.999933 -1103.3156
+96786.25868441304 3.9998541 -1103.2366
+96787.25868446332 3.999933 -1103.3551
+96788.25868451362 3.9998937 -1103.197
+96789.25868456392 3.9998937 -1103.2562
+96790.2586846142 3.9998541 -1103.2761
+96791.2586846645 3.9996967 -1103.2562
+96792.2586847148 3.9997754 -1103.2168
+96793.25868476508 3.9997361 -1103.2366
+96794.25868481536 3.9997361 -1103.2761
+96795.25868486566 3.9997361 -1103.2562
+96796.25868491596 3.9997361 -1103.2562
+96797.25868496623 3.9996181 -1103.3156
+96798.25868501654 3.9996967 -1103.197
+96799.25868506684 3.9996181 -1103.3156
+96800.25868511712 3.9996181 -1103.1774
+96801.2586851674 3.9996967 -1103.2562
+96802.2586852177 3.9996967 -1103.2959
+96803.258685268 3.9996181 -1103.2168
+96804.25868531827 3.9996574 -1103.2761
+96805.25868536858 3.9996967 -1103.2761
+96806.25868541888 3.9995787 -1103.2761
+96807.25868546916 3.9996181 -1103.2168
+96808.25868551944 3.9994605 -1103.197
+96809.25868556974 3.9994998 -1103.2366
+96810.25868562004 3.9994998 -1103.1774
+96811.25868567031 3.9995391 -1103.2959
+96812.25868572062 3.9994998 -1103.2761
+96813.25868577092 3.9994605 -1103.2366
+96814.2586858212 3.9994605 -1103.2168
+96815.25868587148 3.9994211 -1103.2959
+96816.25868592178 3.9994605 -1103.2168
+96817.25868597208 3.9993818 -1103.2761
+96818.25868602235 3.9993818 -1103.2168
+96819.25868607266 3.9994998 -1103.197
+96820.25868612296 3.9993424 -1103.2761
+96821.25868617324 3.9993424 -1103.2761
+96822.25868622352 3.9993424 -1103.2959
+96823.25868627382 3.9993818 -1103.2562
+96824.25868632412 3.9993818 -1103.1774
+96825.2586863744 3.9992638 -1103.2761
+96826.2586864247 3.9993818 -1103.3156
+96827.258686475 3.9993031 -1103.3353
+96828.25868652528 3.9993031 -1103.197
+96829.25868657556 3.9992638 -1103.2562
+96830.25868662586 3.9992242 -1103.2168
+96831.25868667616 3.9991848 -1103.2366
+96832.25868672645 3.9992242 -1103.2366
+96833.25868677674 3.9991848 -1103.2562
+96834.25868682704 3.9991848 -1103.2959
+96835.25868687732 3.9991848 -1103.1576
+96836.2586869276 3.9992242 -1103.2168
+96837.2586869779 3.9991062 -1103.2761
+96838.2586870282 3.9990668 -1103.2366
+96839.25868707849 3.9990668 -1103.2366
+96840.25868712878 3.9991062 -1103.3156
+96841.25868717908 3.9990275 -1103.2366
+96842.25868722936 3.9990668 -1103.197
+96843.25868727964 3.9990668 -1103.1576
+96844.25868732994 3.9990275 -1103.2959
+96845.25868738024 3.9990668 -1103.3156
+96846.25868743053 3.9990668 -1103.2562
+96847.25868748082 3.9990275 -1103.2562
+96848.25868753112 3.9990275 -1103.2959
+96849.2586875814 3.9990668 -1103.2761
+96850.25868763168 3.9988699 -1103.1774
+96851.25868768198 3.9989092 -1103.2761
+96852.25868773228 3.9988699 -1103.3551
+96853.25868778257 3.9989092 -1103.2168
+96854.25868783286 3.9988306 -1103.3156
+96855.25868788316 3.9989882 -1103.2761
+96856.25868793344 3.9989486 -1103.2761
+96857.25868798372 3.9988306 -1103.197
+96858.25868803402 3.9987912 -1103.2168
+96859.25868808432 3.9989092 -1103.2366
+96860.2586881346 3.9988699 -1103.2761
+96861.2586881849 3.9987519 -1103.2761
+96862.2586882352 3.9988306 -1103.2168
+96863.25868828548 3.9987519 -1103.2168
+96864.25868833576 3.9987125 -1103.2959
+96865.25868838606 3.9987519 -1103.2959
+96866.25868843636 3.9987519 -1103.2562
+96867.25868848665 3.9987519 -1103.1378
+96868.25868853694 3.9986732 -1103.2562
+96869.25868858724 3.9986732 -1103.2761
+96870.25868863752 3.9985156 -1103.2562
+96871.2586886878 3.9985943 -1103.1576
+96872.2586887381 3.9985943 -1103.1576
+96873.2586887884 3.9986732 -1103.2959
+96874.25868883869 3.9985943 -1103.2562
+96875.25868888898 3.9986732 -1103.2366
+96876.25868893928 3.9985156 -1103.2366
+96877.25868898956 3.9985549 -1103.2168
+96878.25868903984 3.9985549 -1103.2366
+96879.25868909014 3.9985156 -1103.2562
+96880.25868914044 3.9985549 -1103.2366
+96881.25868919073 3.9985549 -1103.2761
+96882.25868924102 3.9984763 -1103.197
+96883.25868929132 3.9984763 -1103.1774
+96884.2586893416 3.9985156 -1103.2366
+96885.25868939188 3.9984369 -1103.2761
+96886.25868944218 3.9984763 -1103.3156
+96887.25868949248 3.9983976 -1103.2366
+96888.25868954277 3.9983582 -1103.2366
+96889.25868959306 3.9983582 -1103.197
+96890.25868964336 3.9983582 -1103.2761
+96891.25868969364 3.99824 -1103.2562
+96892.25868974392 3.9983582 -1103.3156
+96893.25868979422 3.9984369 -1103.2562
+96894.25868984452 3.9983582 -1103.2562
+96895.2586898948 3.9983976 -1103.2366
+96896.2586899451 3.99824 -1103.3156
+96897.2586899954 3.9983187 -1103.2366
+96898.25869004568 3.99824 -1103.2366
+96899.25869009596 3.9982793 -1103.2562
+96900.25869014626 3.9981613 -1103.2761
+96901.25869019656 3.998122 -1103.2959
+96902.25869024685 3.9981613 -1103.2959
+96903.25869029714 3.99824 -1103.3156
+96904.25869034744 3.9982007 -1103.2562
+96905.25869039772 3.998122 -1103.197
+96906.258690448 3.9981613 -1103.197
+96907.2586904983 3.9980826 -1103.2562
+96908.2586905486 3.99824 -1103.1378
+96909.25869059889 3.9980826 -1103.3156
+96910.25869064918 3.9980826 -1103.2959
+96911.25869069948 3.9980037 -1103.2366
+96912.25869074976 3.9980826 -1103.2562
+96913.25869080004 3.997925 -1103.2366
+96914.25869085034 3.998122 -1103.2366
+96915.25869090063 3.9980037 -1103.1576
+96916.25869095093 3.9980037 -1103.2562
+96917.25869100122 3.9979644 -1103.1378
+96918.25869105152 3.9980037 -1103.2761
+96919.2586911018 3.9980433 -1103.2562
+96920.25869115208 3.9978857 -1103.2168
+96921.25869120238 3.9979644 -1103.2168
+96922.25869125267 3.9978464 -1103.2761
+96923.25869130297 3.9978857 -1103.2761
+96924.25869135326 3.997807 -1103.2959
+96925.25869140356 3.997807 -1103.1774
+96926.25869145384 3.997925 -1103.2366
+96927.25869150412 3.997807 -1103.2168
+96928.25869155442 3.997807 -1103.3156
+96929.25869160471 3.9976888 -1103.2562
+96930.258691655 3.9978857 -1103.1378
+96931.2586917053 3.9977283 -1103.3156
+96932.2586917556 3.9977283 -1103.0984
+96933.25869180588 3.9977677 -1103.2562
+96934.25869185616 3.9977283 -1103.2366
+96935.25869190646 3.9977677 -1103.3156
+96936.25869195675 3.9976494 -1103.2959
+96937.25869200705 3.9976888 -1103.197
+96938.25869205734 3.9976494 -1103.197
+96939.25869210764 3.9976888 -1103.197
+96940.25869215792 3.9976494 -1103.2168
+96941.2586922082 3.9976101 -1103.2562
+96942.2586922585 3.9975314 -1103.2168
+96943.2586923088 3.9975708 -1103.2366
+96944.25869235909 3.9975708 -1103.2959
+96945.25869240938 3.9976494 -1103.2562
+96946.25869245968 3.9975314 -1103.197
+96947.25869250996 3.9974921 -1103.2959
+96948.25869256024 3.9975314 -1103.2761
+96949.25869261054 3.9975708 -1103.2761
+96950.25869266083 3.9975708 -1103.197
+96951.25869271113 3.9974921 -1103.3353
+96952.25869276142 3.9974134 -1103.2168
+96953.25869281172 3.9974921 -1103.2562
+96954.258692862 3.9975314 -1103.1774
+96955.25869291228 3.9973738 -1103.3156
+96956.25869296258 3.9973738 -1103.2959
+96957.25869301287 3.9973738 -1103.2761
+96958.25869306317 3.9974527 -1103.2562
+96959.25869311346 3.9973345 -1103.2366
+96960.25869316376 3.9972951 -1103.2366
+96961.25869321404 3.9974134 -1103.2168
+96962.25869326432 3.9973738 -1103.2168
+96963.25869331462 3.9973345 -1103.2761
+96964.25869336491 3.9972558 -1103.2761
+96965.2586934152 3.9972558 -1103.2562
+96966.2586934655 3.9972558 -1103.2562
+96967.2586935158 3.9972951 -1103.2168
+96968.25869356608 3.9972165 -1103.3551
+96969.25869361636 3.9972165 -1103.2168
+96970.25869366666 3.9972165 -1103.197
+96971.25869371695 3.9972558 -1103.2761
+96972.25869376725 3.9972165 -1103.1774
+96973.25869381754 3.9970589 -1103.2366
+96974.25869386784 3.9972165 -1103.2562
+96975.25869391812 3.9972558 -1103.2562
+96976.2586939684 3.9971771 -1103.1774
+96977.2586940187 3.9971378 -1103.2562
+96978.258694069 3.9972165 -1103.2562
+96979.25869411929 3.9969802 -1103.2959
+96980.25869416958 3.9970589 -1103.1774
+96981.25869421988 3.9970982 -1103.3156
+96982.25869427016 3.9970982 -1103.2366
+96983.25869432044 3.9970589 -1103.197
+96984.25869437074 3.9969802 -1103.2562
+96985.25869442103 3.9970195 -1103.2366
+96986.25869447133 3.9969409 -1103.3551
+96987.25869452162 3.9969409 -1103.2562
+96988.25869457192 3.9969802 -1103.3156
+96989.2586946222 3.9968622 -1103.1378
+96990.25869467248 3.9969802 -1103.3156
+96991.25869472278 3.9969015 -1103.2959
+96992.25869477307 3.9969015 -1103.2168
+96993.25869482337 3.9968622 -1103.1774
+96994.25869487366 3.9968622 -1103.2562
+96995.25869492396 3.9968228 -1103.197
+96996.25869497424 3.9969802 -1103.2366
+96997.25869502452 3.9967439 -1103.2366
+96998.25869507482 3.9968228 -1103.2366
+96999.25869512511 3.9968622 -1103.2761
+97000.2586951754 3.9967833 -1103.2761
+97001.2586952257 3.9968228 -1103.1774
+97002.258695276 3.9967439 -1103.197
+97003.25869532628 3.9966259 -1103.197
+97004.25869537656 3.9968228 -1103.2366
+97005.25869542686 3.9967046 -1103.197
+97006.25869547715 3.9966652 -1103.2562
+97007.25869552745 3.9967046 -1103.3551
+97008.25869557774 3.9966652 -1103.1774
+97009.25869562804 3.9966652 -1103.2761
+97010.25869567832 3.9966259 -1103.2562
+97011.2586957286 3.9966259 -1103.2168
+97012.2586957789 3.9966259 -1103.197
+97013.2586958292 3.9965866 -1103.2168
+97014.25869587949 3.9965079 -1103.1774
+97015.25869592978 3.9965472 -1103.197
+97016.25869598008 3.9965866 -1103.3551
+97017.25869603036 3.996429 -1103.1576
+97018.25869608064 3.9965079 -1103.2366
+97019.25869613094 3.9965079 -1103.2959
+97020.25869618123 3.996429 -1103.2562
+97021.25869623153 3.9965079 -1103.2562
+97022.25869628182 3.9965472 -1103.2168
+97023.25869633212 3.996429 -1103.2562
+97024.2586963824 3.9964683 -1103.197
+97025.25869643268 3.996429 -1103.3156
+97026.25869648298 3.9963503 -1103.2168
+97027.25869653327 3.9963503 -1103.197
+97028.25869658357 3.9963503 -1103.197
+97029.25869663386 3.9963503 -1103.2366
+97030.25869668416 3.9963503 -1103.2562
+97031.25869673444 3.9962323 -1103.2168
+97032.25869678472 3.996429 -1103.2761
+97033.25869683502 3.9962323 -1103.2366
+97034.25869688531 3.9963503 -1103.197
+97035.2586969356 3.9963109 -1103.2168
+97036.2586969859 3.9962716 -1103.2168
+97037.2586970362 3.9961534 -1103.2761
+97038.25869708648 3.9963109 -1103.1774
+97039.25869713676 3.9961534 -1103.2168
+97040.25869718706 3.9962323 -1103.2366
+97041.25869723735 3.9961534 -1103.2562
+97042.25869728765 3.9961929 -1103.2562
+97043.25869733794 3.996114 -1103.2959
+97044.25869738824 3.9962323 -1103.2761
+97045.25869743852 3.9961534 -1103.197
+97046.2586974888 3.9961534 -1103.2761
+97047.2586975391 3.9960747 -1103.1182
+97048.2586975894 3.9959567 -1103.1774
+97049.25869763969 3.9960353 -1103.2761
+97050.25869768998 3.9959567 -1103.2168
+97051.25869774028 3.9960353 -1103.197
+97052.25869779056 3.9960353 -1103.1774
+97053.25869784084 3.995996 -1103.2761
+97054.25869789114 3.9959567 -1103.2366
+97055.25869794143 3.995996 -1103.2366
+97056.25869799173 3.9959567 -1103.2562
+97057.25869804202 3.9959567 -1103.2761
+97058.25869809232 3.9959173 -1103.2168
+97059.2586981426 3.9959173 -1103.3353
+97060.25869819288 3.995878 -1103.2168
+97061.25869824318 3.9958384 -1103.2168
+97062.25869829347 3.995878 -1103.3353
+97063.25869834376 3.995878 -1103.2562
+97064.25869839406 3.995878 -1103.2168
+97065.25869844436 3.9957991 -1103.2761
+97066.25869849464 3.995878 -1103.2959
+97067.25869854492 3.9958384 -1103.1182
+97068.25869859522 3.9957597 -1103.1774
+97069.25869864551 3.9957991 -1103.2959
+97070.2586986958 3.9957204 -1103.2168
+97071.2586987461 3.9958384 -1103.3156
+97072.2586987964 3.9957597 -1103.1774
+97073.25869884668 3.9956417 -1103.2168
+97074.25869889696 3.9957597 -1103.2562
+97075.25869894726 3.9956417 -1103.1576
+97076.25869899755 3.995681 -1103.2168
+97077.25869904784 3.995681 -1103.2168
+97078.25869909814 3.995681 -1103.2366
+97079.25869914844 3.9957204 -1103.197
+97080.25869919872 3.9956417 -1103.197
+97081.258699249 3.9955235 -1103.2168
+97082.2586992993 3.995563 -1103.2366
+97083.2586993496 3.9956024 -1103.2366
+97084.25869939988 3.9955235 -1103.197
+97085.25869945018 3.995563 -1103.2562
+97086.25869950048 3.9954448 -1103.2959
+97087.25869955076 3.9954448 -1103.197
+97088.25869960104 3.995563 -1103.1774
+97089.25869965134 3.9954841 -1103.1774
+97090.25869970163 3.9954054 -1103.2959
+97091.25869975192 3.9954448 -1103.3156
+97092.25869980222 3.9954841 -1103.2761
+97093.25869985252 3.9955235 -1103.197
+97094.2586999028 3.9954448 -1103.2366
+97095.25869995308 3.9953268 -1103.1576
+97096.25870000338 3.9954448 -1103.2959
+97097.25870005367 3.9954841 -1103.1774
+97098.25870010396 3.9953661 -1103.2168
+97099.25870015426 3.9953661 -1103.3353
+97100.25870020456 3.9953268 -1103.2959
+97101.25870025484 3.9953268 -1103.2761
+97102.25870030512 3.9952478 -1103.2761
+97103.25870035542 3.9953268 -1103.197
+97104.25870040571 3.9953268 -1103.1774
+97105.258700456 3.9951692 -1103.2562
+97106.2587005063 3.9951692 -1103.2959
+97107.2587005566 3.9952478 -1103.2761
+97108.25870060688 3.9952478 -1103.3156
+97109.25870065716 3.9951692 -1103.2562
+97110.25870070746 3.9951298 -1103.1774
+97111.25870075775 3.9950905 -1103.197
+97112.25870080804 3.9952085 -1103.2366
+97113.25870085834 3.9951298 -1103.2366
+97114.25870090864 3.9950905 -1103.2959
+97115.25870095892 3.9950118 -1103.2366
+97116.2587010092 3.9950511 -1103.2366
+97117.2587010595 3.9950511 -1103.2959
+97118.2587011098 3.9951298 -1103.2168
+97119.25870116008 3.9950118 -1103.3353
+97120.25870121038 3.9950511 -1103.2366
+97121.25870126068 3.9950905 -1103.1774
+97122.25870131096 3.9950511 -1103.2366
+97123.25870136124 3.9949329 -1103.2761
+97124.25870141154 3.9950118 -1103.3353
+97125.25870146183 3.9950118 -1103.3551
+97126.25870151212 3.9949725 -1103.2168
+97127.25870156242 3.9949329 -1103.2761
+97128.25870161272 3.9948936 -1103.2562
+97129.258701663 3.9948542 -1103.2366
+97130.25870171328 3.9948149 -1103.3353
+97131.25870176358 3.9948936 -1103.2562
+97132.25870181387 3.9948149 -1103.3551
+97133.25870186416 3.9947755 -1103.2366
+97134.25870191446 3.9947362 -1103.2562
+97135.25870196476 3.9948149 -1103.2959
+97136.25870201504 3.9947755 -1103.2959
+97137.25870206532 3.9948936 -1103.2168
+97138.25870211562 3.9948149 -1103.2761
+97139.25870216591 3.9947362 -1103.2366
+97140.2587022162 3.9946575 -1103.2168
+97141.2587022665 3.9946969 -1103.2366
+97142.2587023168 3.9947362 -1103.2761
+97143.25870236708 3.9946969 -1103.2562
+97144.25870241736 3.9946179 -1103.2761
+97145.25870246766 3.9946969 -1103.2168
+97146.25870251795 3.9946575 -1103.197
+97147.25870256824 3.9947362 -1103.1774
+97148.25870261854 3.9947362 -1103.2366
+97149.25870266884 3.9945393 -1103.2562
+97150.25870271912 3.9945393 -1103.197
+97151.2587027694 3.9945786 -1103.1774
+97152.2587028197 3.9946179 -1103.2168
+97153.25870287 3.9945786 -1103.2761
+97154.25870292028 3.9945393 -1103.2761
+97155.25870297058 3.9946179 -1103.2366
+97156.25870302088 3.9945393 -1103.2959
+97157.25870307116 3.9944212 -1103.2562
+97158.25870312144 3.9944212 -1103.2168
+97159.25870317174 3.9944212 -1103.2761
+97160.25870322205 3.9944212 -1103.2562
+97161.25870327232 3.9944999 -1103.3156
+97162.25870332262 3.9943819 -1103.3156
+97163.25870337292 3.9944212 -1103.197
+97164.2587034232 3.9943819 -1103.197
+97165.25870347348 3.9944212 -1103.2366
+97166.25870352378 3.9943426 -1103.2761
+97167.25870357409 3.994303 -1103.2168
+97168.25870362436 3.994303 -1103.1774
+97169.25870367466 3.994303 -1103.2366
+97170.25870372496 3.9943426 -1103.197
+97171.25870377524 3.9942636 -1103.197
+97172.25870382552 3.994185 -1103.2366
+97173.25870387582 3.9942243 -1103.2761
+97174.25870392613 3.9942636 -1103.3156
+97175.2587039764 3.994185 -1103.2168
+97176.2587040267 3.9941063 -1103.3353
+97177.258704077 3.9942243 -1103.197
+97178.25870412728 3.9942243 -1103.2366
+97179.25870417756 3.994185 -1103.1774
+97180.25870422786 3.994067 -1103.2959
+97181.25870427817 3.994067 -1103.2959
+97182.25870432844 3.9941063 -1103.2761
+97183.25870437874 3.9940276 -1103.197
+97184.25870442904 3.9940276 -1103.2168
+97185.25870447932 3.994067 -1103.2366
+97186.2587045296 3.993988 -1103.2168
+97187.2587045799 3.993988 -1103.2562
+97188.2587046302 3.994067 -1103.2168
+97189.25870468048 3.993988 -1103.1182
+97190.25870473078 3.993988 -1103.1774
+97191.25870478108 3.9939487 -1103.2366
+97192.25870483136 3.9939094 -1103.197
+97193.25870488163 3.9939094 -1103.2761
+97194.25870493194 3.9940276 -1103.2761
+97195.25870498225 3.99387 -1103.2366
+97196.25870503252 3.993988 -1103.2761
+97197.25870508282 3.9939487 -1103.2168
+97198.25870513312 3.993752 -1103.2168
+97199.2587051834 3.99387 -1103.197
+97200.25870523367 3.99387 -1103.197
+97201.25870528398 3.9938307 -1103.2168
+97202.25870533429 3.99387 -1103.1774
+97203.25870538456 3.9938307 -1103.197
+97204.25870543486 3.993752 -1103.1774
+97205.25870548516 3.9937913 -1103.2562
+97206.25870553544 3.99387 -1103.2366
+97207.25870558571 3.9939094 -1103.2366
+97208.25870563602 3.9937913 -1103.197
+97209.25870568633 3.9937127 -1103.197
+97210.2587057366 3.993752 -1103.2562
+97211.2587057869 3.9937127 -1103.2562
+97212.2587058372 3.9935551 -1103.1774
+97213.25870588748 3.9935944 -1103.2562
+97214.25870593775 3.9936731 -1103.1774
+97215.25870598806 3.9936337 -1103.2761
+97216.25870603837 3.9937127 -1103.2562
+97217.25870608864 3.9937913 -1103.2959
+97218.25870613892 3.9935551 -1103.2761
+97219.25870618924 3.9935157 -1103.2562
+97220.25870623952 3.9935551 -1103.1774
+97221.2587062898 3.9934371 -1103.197
+97222.2587063401 3.9935157 -1103.197
+97223.2587063904 3.9935551 -1103.2761
+97224.25870644068 3.9934764 -1103.2959
+97225.25870649096 3.9934764 -1103.2168
+97226.25870654128 3.9935157 -1103.2761
+97227.25870659156 3.9933975 -1103.1774
+97228.25870664183 3.9933975 -1103.2959
+97229.25870669214 3.9933581 -1103.0984
+97230.25870674245 3.9934764 -1103.2366
+97231.25870679272 3.9934764 -1103.197
+97232.258706843 3.9933581 -1103.1774
+97233.25870689332 3.9932795 -1103.2761
+97234.2587069436 3.9933581 -1103.3551
+97235.25870699387 3.9932795 -1103.3353
+97236.25870704418 3.9932008 -1103.2761
+97237.25870709449 3.9932008 -1103.2761
+97238.25870714476 3.9932795 -1103.197
+97239.25870719504 3.9933188 -1103.2168
+97240.25870724536 3.9933188 -1103.2562
+97241.25870729564 3.9932008 -1103.1378
+97242.25870734591 3.9932008 -1103.2562
+97243.25870739622 3.9932401 -1103.1774
+97244.25870744653 3.9932008 -1103.197
+97245.2587074968 3.9931614 -1103.197
+97246.25870754708 3.9932795 -1103.2562
+97247.2587075974 3.9932401 -1103.2562
+97248.25870764768 3.9931614 -1103.2761
+97249.25870769795 3.9931221 -1103.197
+97250.25870774826 3.9932008 -1103.2168
+97251.25870779857 3.9931221 -1103.3156
+97252.25870784884 3.9931221 -1103.2366
+97253.25870789912 3.9930432 -1103.2562
+97254.25870794944 3.9929645 -1103.2366
+97255.25870799972 3.9930432 -1103.197
+97256.25870805 3.9930038 -1103.2562
+97257.2587081003 3.9929645 -1103.2959
+97258.2587081506 3.9930432 -1103.2366
+97259.25870820088 3.9929252 -1103.2562
+97260.25870825116 3.9930432 -1103.197
+97261.25870830148 3.9929252 -1103.2168
+97262.25870835176 3.9929645 -1103.2366
+97263.25870840203 3.9929645 -1103.197
+97264.25870845234 3.9929252 -1103.2366
+97265.25870850265 3.9928071 -1103.2562
+97266.25870855292 3.9928071 -1103.2562
+97267.2587086032 3.9927282 -1103.2562
+97268.25870865352 3.9929252 -1103.2562
+97269.2587087038 3.9927676 -1103.197
+97270.25870875407 3.9927676 -1103.2761
+97271.25870880438 3.9928071 -1103.2761
+97272.25870885469 3.9927282 -1103.3156
+97273.25870890496 3.9928858 -1103.2959
+97274.25870895524 3.9927676 -1103.2366
+97275.25870900556 3.9926889 -1103.1774
+97276.25870905584 3.9926889 -1103.197
+97277.25870910611 3.9927282 -1103.1774
+97278.25870915642 3.9927676 -1103.2562
+97279.25870920673 3.9926102 -1103.2562
+97280.258709257 3.9926496 -1103.2366
+97281.25870930728 3.9925709 -1103.197
+97282.2587093576 3.9926496 -1103.3551
+97283.25870940788 3.9925709 -1103.2959
+97284.25870945815 3.9926102 -1103.2959
+97285.25870950846 3.9926102 -1103.2761
+97286.25870955877 3.9926102 -1103.2761
+97287.25870960904 3.9926889 -1103.2168
+97288.25870965932 3.9925315 -1103.2366
+97289.25870970964 3.9925315 -1103.2168
+97290.25870975992 3.9924526 -1103.2761
+97291.2587098102 3.9925315 -1103.2562
+97292.2587098605 3.9924526 -1103.2562
+97293.2587099108 3.9924922 -1103.2761
+97294.25870996108 3.9924526 -1103.1774
+97295.25871001136 3.9925315 -1103.2168
+97296.25871006168 3.9924526 -1103.2562
+97297.25871011196 3.9924133 -1103.2562
+97298.25871016223 3.9923739 -1103.2168
+97299.25871021254 3.9924133 -1103.2562
+97300.25871026285 3.9923739 -1103.1576
+97301.25871031312 3.9924133 -1103.197
+97302.2587103634 3.9923739 -1103.2959
+97303.25871041372 3.9923346 -1103.2366
+97304.258710464 3.9922953 -1103.2761
+97305.25871051427 3.9922559 -1103.2959
+97306.25871056458 3.9922953 -1103.2562
+97307.25871061489 3.9922953 -1103.2761
+97308.25871066516 3.9922166 -1103.2168
+97309.25871071544 3.9922166 -1103.197
+97310.25871076576 3.9922166 -1103.197
+97311.25871081604 3.9921772 -1103.2366
+97312.25871086631 3.9922166 -1103.2761
+97313.25871091662 3.9921377 -1103.2959
+97314.25871096693 3.9922166 -1103.2562
+97315.2587110172 3.9920983 -1103.0984
+97316.25871106748 3.9922166 -1103.2959
+97317.2587111178 3.9922166 -1103.2562
+97318.25871116808 3.992059 -1103.197
+97319.25871121835 3.9920983 -1103.2562
+97320.25871126866 3.9921377 -1103.3156
+97321.25871131897 3.9921377 -1103.2562
+97322.25871136924 3.9919803 -1103.2959
+97323.25871141952 3.9920197 -1103.3353
+97324.25871146984 3.9920197 -1103.2562
+97325.25871152012 3.9920197 -1103.2366
+97326.2587115704 3.991941 -1103.3156
+97327.2587116207 3.9920197 -1103.2761
+97328.258711671 3.991941 -1103.2959
+97329.25871172128 3.991941 -1103.3156
+97330.25871177156 3.9919803 -1103.2959
+97331.25871182188 3.9918623 -1103.2761
+97332.25871187216 3.9919803 -1103.2959
+97333.25871192243 3.9919016 -1103.2168
+97334.25871197274 3.9917834 -1103.3353
+97335.25871202305 3.9918623 -1103.197
+97336.25871207332 3.9918623 -1103.2562
+97337.2587121236 3.9918227 -1103.2562
+97338.25871217392 3.9918623 -1103.2761
+97339.2587122242 3.9918227 -1103.1576
+97340.25871227447 3.9917834 -1103.2562
+97341.25871232478 3.9918227 -1103.2562
+97342.25871237509 3.9917834 -1103.3749
+97343.25871242536 3.9916654 -1103.2761
+97344.25871247564 3.9916654 -1103.2366
+97345.25871252596 3.9916654 -1103.2366
+97346.25871257624 3.9916654 -1103.1774
+97347.25871262651 3.9916654 -1103.2761
+97348.25871267682 3.9916654 -1103.2959
+97349.25871272713 3.9917047 -1103.2761
+97350.2587127774 3.9915867 -1103.197
+97351.25871282768 3.991626 -1103.2959
+97352.258712878 3.9915867 -1103.2562
+97353.25871292828 3.9915867 -1103.2366
+97354.25871297855 3.991626 -1103.2366
+97355.25871302886 3.9915867 -1103.1378
+97356.25871307917 3.991626 -1103.1576
+97357.25871312944 3.9915867 -1103.2366
+97358.25871317972 3.9915471 -1103.2168
+97359.25871323004 3.9915078 -1103.2562
+97360.25871328032 3.9914684 -1103.3551
+97361.2587133306 3.9914291 -1103.3156
+97362.2587133809 3.9915078 -1103.1774
+97363.2587134312 3.9914684 -1103.3156
+97364.25871348148 3.9914684 -1103.3156
+97365.25871353176 3.9912717 -1103.2562
+97366.25871358208 3.9914291 -1103.3156
+97367.25871363236 3.9914684 -1103.2959
+97368.25871368263 3.9913898 -1103.2168
+97369.25871373294 3.9913111 -1103.197
+97370.25871378325 3.9914291 -1103.2168
+97371.25871383352 3.9913898 -1103.2168
+97372.2587138838 3.9912717 -1103.2761
+97373.2587139341 3.9913898 -1103.2366
+97374.2587139844 3.9912322 -1103.2562
+97375.25871403467 3.9912717 -1103.2366
+97376.25871408498 3.9912717 -1103.2168
+97377.25871413529 3.9912717 -1103.2761
+97378.25871418556 3.9911141 -1103.2959
+97379.25871423584 3.9911928 -1103.2959
+97380.25871428614 3.9912717 -1103.2562
+97381.25871433644 3.9911535 -1103.2366
+97382.25871438671 3.9911141 -1103.2168
+97383.25871443702 3.9910748 -1103.2366
+97384.25871448733 3.9911535 -1103.2959
+97385.2587145376 3.9911141 -1103.1774
+97386.25871458788 3.9911141 -1103.1576
+97387.25871463818 3.9910355 -1103.2562
+97388.25871468848 3.9910748 -1103.197
+97389.25871473875 3.9911535 -1103.2366
+97390.25871478906 3.9909568 -1103.2562
+97391.25871483936 3.9911141 -1103.2168
+97392.25871488964 3.9909568 -1103.2761
+97393.25871493992 3.9909961 -1103.2562
+97394.25871499022 3.9910355 -1103.2761
+97395.25871504052 3.9909172 -1103.2761
+97396.2587150908 3.9909961 -1103.2168
+97397.2587151411 3.9908779 -1103.2959
+97398.2587151914 3.9909568 -1103.1774
+97399.25871524168 3.9909568 -1103.2168
+97400.25871529196 3.9907992 -1103.2761
+97401.25871534226 3.9908779 -1103.2959
+97402.25871539256 3.9907992 -1103.2366
+97403.25871544283 3.9907992 -1103.3156
+97404.25871549314 3.9908385 -1103.2562
+97405.25871554344 3.9907992 -1103.2562
+97406.25871559372 3.9908385 -1103.3156
+97407.258715644 3.9908779 -1103.2562
+97408.2587156943 3.9907598 -1103.2959
+97409.2587157446 3.9908779 -1103.2959
+97410.25871579487 3.9907992 -1103.3156
+97411.25871584518 3.9907205 -1103.2562
+97412.25871589548 3.9907598 -1103.2761
+97413.25871594576 3.9907598 -1103.2168
+97414.25871599604 3.9906812 -1103.3353
+97415.25871604634 3.9906812 -1103.2562
+97416.25871609664 3.9906812 -1103.197
+97417.25871614691 3.9906812 -1103.197
+97418.25871619722 3.9906418 -1103.2761
+97419.25871624752 3.9905236 -1103.2562
+97420.2587162978 3.9906418 -1103.2761
+97421.25871634808 3.9907205 -1103.3156
+97422.25871639838 3.9904449 -1103.1378
+97423.25871644868 3.9905236 -1103.2562
+97424.25871649897 3.9905236 -1103.2562
+97425.25871654926 3.9904449 -1103.1774
+97426.25871659956 3.9904842 -1103.197
+97427.25871664984 3.9905236 -1103.3156
+97428.25871670012 3.9904842 -1103.1378
+97429.25871675042 3.9904449 -1103.2168
+97430.25871680072 3.9904449 -1103.2366
+97431.258716851 3.9905236 -1103.2761
+97432.2587169013 3.9903662 -1103.197
+97433.2587169516 3.9903269 -1103.2562
+97434.25871700188 3.9904449 -1103.2959
+97435.25871705216 3.9903269 -1103.2168
+97436.25871710246 3.9903662 -1103.1576
+97437.25871715276 3.9903662 -1103.1576
+97438.25871720305 3.9903269 -1103.1576
+97439.25871725334 3.9903269 -1103.1774
+97440.25871730364 3.9902873 -1103.3551
+97441.25871735392 3.9903269 -1103.2959
+97442.2587174042 3.9904056 -1103.1774
+97443.2587174545 3.9902873 -1103.2168
+97444.2587175048 3.9901693 -1103.2761
+97445.25871755509 3.9902086 -1103.2168
+97446.25871760538 3.9901693 -1103.197
+97447.25871765568 3.9901299 -1103.2761
+97448.25871770596 3.9900906 -1103.2168
+97449.25871775624 3.9901299 -1103.2562
+97450.25871780654 3.990248 -1103.2168
+97451.25871785684 3.9901693 -1103.2761
+97452.25871790713 3.9901693 -1103.2562
+97453.25871795742 3.9900513 -1103.2168
+97454.25871800772 3.9900906 -1103.2562
+97455.258718058 3.9900513 -1103.2562
+97456.25871810828 3.9900906 -1103.3156
+97457.25871815858 3.9900513 -1103.2366
+97458.25871820888 3.9900513 -1103.3156
+97459.25871825917 3.9898937 -1103.3353
+97460.25871830946 3.9900117 -1103.1774
+97461.25871835976 3.9900513 -1103.3353
+97462.25871841004 3.989933 -1103.2168
+97463.25871846032 3.9899724 -1103.2761
+97464.25871851062 3.9899724 -1103.2366
+97465.25871856092 3.989933 -1103.2562
+97466.2587186112 3.989933 -1103.2168
+97467.2587186615 3.989933 -1103.3156
+97468.2587187118 3.9898937 -1103.2761
+97469.25871876208 3.9897757 -1103.2366
+97470.25871881236 3.9898543 -1103.2168
+97471.25871886266 3.9897757 -1103.2959
+97472.25871891296 3.9898543 -1103.2959
+97473.25871896325 3.989815 -1103.2168
+97474.25871901354 3.989815 -1103.1774
+97475.25871906384 3.9897757 -1103.2959
+97476.25871911412 3.9896181 -1103.2562
+97477.2587191644 3.9897363 -1103.2366
+97478.2587192147 3.9897757 -1103.197
+97479.258719265 3.989815 -1103.2562
+97480.25871931529 3.9896967 -1103.2168
+97481.25871936558 3.9896967 -1103.2562
+97482.25871941588 3.9896967 -1103.2168
+97483.25871946616 3.9897757 -1103.2168
+97484.25871951644 3.9896181 -1103.2761
+97485.25871956674 3.9896181 -1103.2761
+97486.25871961704 3.9895787 -1103.197
+97487.25871966733 3.9896967 -1103.3551
+97488.25871971762 3.9895787 -1103.2168
+97489.25871976792 3.9895394 -1103.3156
+97490.2587198182 3.9896574 -1103.2761
+97491.25871986848 3.9896574 -1103.2366
+97492.25871991878 3.9894607 -1103.2761
+97493.25871996908 3.9895394 -1103.197
+97494.25872001937 3.9895 -1103.2562
+97495.25872006966 3.9896181 -1103.2366
+97496.25872011996 3.9894214 -1103.2562
+97497.25872017024 3.9894214 -1103.2168
+97498.25872022052 3.9894214 -1103.2959
+97499.25872027082 3.9894607 -1103.1182
+97500.25872032112 3.9894214 -1103.2959
+97501.2587203714 3.9893818 -1103.2168
+97502.2587204217 3.9893818 -1103.2366
+97503.258720472 3.9893425 -1103.2562
+97504.25872052228 3.9893818 -1103.2761
+97505.25872057256 3.9892638 -1103.2761
+97506.25872062286 3.9893425 -1103.1774
+97507.25872067316 3.9893031 -1103.3353
+97508.25872072345 3.9893031 -1103.2761
+97509.25872077374 3.9892638 -1103.3353
+97510.25872082404 3.9892244 -1103.3156
+97511.25872087432 3.9892244 -1103.1576
+97512.2587209246 3.9893031 -1103.2959
+97513.2587209749 3.9892244 -1103.197
+97514.2587210252 3.9892244 -1103.197
+97515.25872107549 3.9893425 -1103.2168
+97516.25872112578 3.9891458 -1103.2761
+97517.25872117608 3.9891064 -1103.2562
+97518.25872122636 3.9891458 -1103.2562
+97519.25872127664 3.9891851 -1103.3749
+97520.25872132694 3.9890275 -1103.2959
+97521.25872137723 3.9891064 -1103.2168
+97522.25872142753 3.9890668 -1103.2168
+97523.25872147782 3.9890275 -1103.1774
+97524.25872152812 3.9890668 -1103.1774
+97525.2587215784 3.9890668 -1103.2366
+97526.25872162868 3.9890275 -1103.2168
+97527.25872167898 3.9891064 -1103.1774
+97528.25872172927 3.9889882 -1103.1774
+97529.25872177957 3.9889882 -1103.2366
+97530.25872182986 3.9889488 -1103.1774
+97531.25872188016 3.9889882 -1103.2366
+97532.25872193044 3.9889095 -1103.3156
+97533.25872198072 3.9889882 -1103.2562
+97534.25872203102 3.9888701 -1103.2959
+97535.25872208131 3.9888308 -1103.2168
+97536.2587221316 3.9888701 -1103.2168
+97537.2587221819 3.9889488 -1103.2366
+97538.2587222322 3.9887915 -1103.197
+97539.25872228248 3.9887915 -1103.3353
+97540.25872233276 3.9888701 -1103.1576
+97541.25872238306 3.9887519 -1103.2761
+97542.25872243335 3.9888701 -1103.2168
+97543.25872248365 3.9887915 -1103.3156
+97544.25872253394 3.9887125 -1103.2168
+97545.25872258424 3.9887915 -1103.2562
+97546.25872263452 3.9886732 -1103.2562
+97547.2587226848 3.9887519 -1103.2761
+97548.2587227351 3.9886732 -1103.2366
+97549.2587227854 3.9885945 -1103.2168
+97550.25872283569 3.9886732 -1103.2959
+97551.25872288598 3.9886339 -1103.3156
+97552.25872293628 3.9886339 -1103.3353
+97553.25872298656 3.9886339 -1103.2959
+97554.25872303684 3.9885552 -1103.3156
+97555.25872308714 3.9885552 -1103.2761
+97556.25872313743 3.9886732 -1103.2562
+97557.25872318773 3.9884765 -1103.1774
+97558.25872323802 3.9885159 -1103.3551
+97559.25872328832 3.9884765 -1103.197
+97560.2587233386 3.9884765 -1103.2366
+97561.25872338888 3.9884765 -1103.2366
+97562.25872343918 3.9885552 -1103.2761
+97563.25872348947 3.9884765 -1103.2366
+97564.25872353977 3.9885159 -1103.2168
+97565.25872359006 3.9884369 -1103.2562
+97566.25872364036 3.9883583 -1103.3353
+97567.25872369064 3.9884369 -1103.2366
+97568.25872374092 3.9883976 -1103.2366
+97569.25872379122 3.9882796 -1103.2168
+97570.25872384151 3.9884369 -1103.2168
+97571.2587238918 3.9884369 -1103.197
+97572.2587239421 3.9882796 -1103.2366
+97573.2587239924 3.9882796 -1103.2562
+97574.25872404268 3.9883583 -1103.2959
+97575.25872409296 3.9883189 -1103.3156
+97576.25872414326 3.9882796 -1103.3156
+97577.25872419355 3.9883189 -1103.2562
+97578.25872424385 3.9883189 -1103.197
+97579.25872429414 3.9882402 -1103.2761
+97580.25872434444 3.9882796 -1103.2761
+97581.25872439472 3.9882009 -1103.2168
+97582.258724445 3.9881613 -1103.3156
+97583.2587244953 3.9881613 -1103.2562
+97584.2587245456 3.9881613 -1103.2562
+97585.25872459589 3.9882009 -1103.2761
+97586.25872464618 3.988122 -1103.2959
+97587.25872469648 3.9881613 -1103.2562
+97588.25872474676 3.988122 -1103.2366
+97589.25872479704 3.9881613 -1103.2562
+97590.25872484734 3.9880826 -1103.2959
+97591.25872489763 3.9880826 -1103.2959
+97592.25872494793 3.9880433 -1103.2959
+97593.25872499822 3.9880433 -1103.2959
+97594.25872504852 3.988004 -1103.2168
+97595.2587250988 3.9879646 -1103.3551
+97596.25872514908 3.988122 -1103.2366
+97597.25872519938 3.987886 -1103.2366
+97598.25872524967 3.988004 -1103.2366
+97599.25872529997 3.9879253 -1103.2562
+97600.25872535026 3.988004 -1103.3353
+97601.25872540056 3.987886 -1103.2761
+97602.25872545084 3.9879253 -1103.2562
+97603.25872550112 3.9879253 -1103.1576
+97604.25872555142 3.9878464 -1103.2959
+97605.25872560171 3.9878464 -1103.2366
+97606.258725652 3.9878464 -1103.2562
+97607.2587257023 3.987807 -1103.2366
+97608.2587257526 3.9877284 -1103.2562
+97609.25872580288 3.9877677 -1103.2366
+97610.25872585316 3.9877677 -1103.2562
+97611.25872590346 3.9877677 -1103.3156
+97612.25872595375 3.987807 -1103.2366
+97613.25872600405 3.987807 -1103.2562
+97614.25872605434 3.9877284 -1103.2959
+97615.25872610464 3.9876497 -1103.2562
+97616.25872615492 3.9877284 -1103.197
+97617.2587262052 3.9877284 -1103.2366
+97618.2587262555 3.987689 -1103.2168
+97619.2587263058 3.987571 -1103.2562
+97620.25872635609 3.9876497 -1103.2562
+97621.25872640638 3.987571 -1103.2761
+97622.25872645668 3.9876103 -1103.2366
+97623.25872650696 3.9876103 -1103.2562
+97624.25872655724 3.9875314 -1103.3156
+97625.25872660754 3.9874921 -1103.2168
+97626.25872665783 3.9875314 -1103.2761
+97627.25872670813 3.9874921 -1103.2168
+97628.25872675842 3.9873741 -1103.2168
+97629.25872680872 3.9875314 -1103.2366
+97630.258726859 3.987571 -1103.3353
+97631.25872690928 3.9874134 -1103.2366
+97632.25872695958 3.9876103 -1103.2959
+97633.25872700987 3.9875314 -1103.2366
+97634.25872706017 3.9873741 -1103.2761
+97635.25872711046 3.9873741 -1103.2168
+97636.25872716076 3.9873347 -1103.2168
+97637.25872721104 3.9873741 -1103.2761
+97638.25872726132 3.9873741 -1103.3156
+97639.25872731162 3.9874134 -1103.2562
+97640.25872736191 3.9873741 -1103.3156
+97641.2587274122 3.9873347 -1103.2168
+97642.2587274625 3.9871771 -1103.2562
+97643.2587275128 3.9872954 -1103.2366
+97644.25872756308 3.9872561 -1103.2168
+97645.25872761336 3.9872954 -1103.2366
+97646.25872766366 3.9871771 -1103.1576
+97647.25872771395 3.9871771 -1103.2562
+97648.25872776425 3.9872165 -1103.2562
+97649.25872781454 3.9872165 -1103.3156
+97650.25872786484 3.9871771 -1103.3156
+97651.25872791512 3.9870985 -1103.2761
+97652.2587279654 3.9871378 -1103.2761
+97653.2587280157 3.9871378 -1103.2366
+97654.258728066 3.9870985 -1103.3749
+97655.25872811629 3.9870591 -1103.2761
+97656.25872816658 3.9871771 -1103.3156
+97657.25872821688 3.9870591 -1103.2366
+97658.25872826716 3.9870985 -1103.3353
+97659.25872831744 3.9870985 -1103.2562
+97660.25872836774 3.9870198 -1103.2366
+97661.25872841803 3.9871378 -1103.197
+97662.25872846832 3.9869804 -1103.2168
+97663.25872851862 3.9870198 -1103.2168
+97664.25872856892 3.9869411 -1103.2761
+97665.2587286192 3.9870198 -1103.2366
+97666.25872866948 3.9869804 -1103.3353
+97667.25872871978 3.9869015 -1103.2168
+97668.25872877007 3.9869411 -1103.3156
+97669.25872882036 3.9868622 -1103.3551
+97670.25872887066 3.9869015 -1103.3551
+97671.25872892096 3.9868622 -1103.2168
+97672.25872897124 3.9869015 -1103.2562
+97673.25872902152 3.9868228 -1103.2562
+97674.25872907182 3.9868622 -1103.2366
+97675.25872912211 3.9868622 -1103.2366
+97676.2587291724 3.9868228 -1103.2562
+97677.2587292227 3.9867048 -1103.2366
+97678.258729273 3.9868228 -1103.2761
+97679.25872932328 3.9867048 -1103.2959
+97680.25872937356 3.9867442 -1103.2562
+97681.25872942386 3.9867442 -1103.2168
+97682.25872947415 3.9868228 -1103.197
+97683.25872952444 3.9866261 -1103.2761
+97684.25872957474 3.9865866 -1103.197
+97685.25872962504 3.9865472 -1103.2562
+97686.25872967532 3.9866261 -1103.2761
+97687.2587297256 3.9866655 -1103.2366
+97688.2587297759 3.9865472 -1103.2168
+97689.2587298262 3.9866655 -1103.2168
+97690.25872987648 3.9866261 -1103.2761
+97691.25872992678 3.9866261 -1103.197
+97692.25872997708 3.9865079 -1103.1774
+97693.25873002736 3.9865866 -1103.2168
+97694.25873007764 3.9865866 -1103.1774
+97695.25873012794 3.9865472 -1103.2366
+97696.25873017823 3.9865472 -1103.2366
+97697.25873022852 3.9864292 -1103.2168
+97698.25873027882 3.9865079 -1103.2562
+97699.25873032912 3.9864686 -1103.2761
+97700.2587303794 3.9865079 -1103.197
+97701.25873042968 3.9864292 -1103.1774
+97702.25873047998 3.9864686 -1103.2168
+97703.25873053027 3.9864292 -1103.2761
+97704.25873058056 3.9863899 -1103.2959
+97705.25873063086 3.9863505 -1103.2959
+97706.25873068116 3.9863505 -1103.2959
+97707.25873073144 3.9862323 -1103.3551
+97708.25873078172 3.986311 -1103.197
+97709.25873083202 3.9863899 -1103.2562
+97710.25873088231 3.986311 -1103.2168
+97711.2587309326 3.9862716 -1103.2562
+97712.2587309829 3.9862323 -1103.2959
+97713.2587310332 3.9863505 -1103.3156
+97714.25873108348 3.9862716 -1103.1378
+97715.25873113376 3.986311 -1103.2959
+97716.25873118406 3.9860749 -1103.2761
+97717.25873123435 3.9861929 -1103.2366
+97718.25873128464 3.9861929 -1103.2959
+97719.25873133494 3.9862716 -1103.2562
+97720.25873138524 3.9860356 -1103.2761
+97721.25873143552 3.9862323 -1103.197
+97722.2587314858 3.9862323 -1103.197
+97723.2587315361 3.985996 -1103.2959
+97724.2587315864 3.9860356 -1103.2959
+97725.25873163668 3.9860356 -1103.2959
+97726.25873168698 3.9859567 -1103.2366
+97727.25873173728 3.9860356 -1103.2761
+97728.25873178756 3.9860356 -1103.2562
+97729.25873183784 3.985996 -1103.1774
+97730.25873188814 3.985996 -1103.2366
+97731.25873193843 3.9859567 -1103.2168
+97732.25873198872 3.985996 -1103.2959
+97733.25873203902 3.9859173 -1103.2761
+97734.25873208932 3.9860356 -1103.2168
+97735.2587321396 3.9859567 -1103.2562
+97736.25873218988 3.9859567 -1103.2168
+97737.25873224018 3.9859173 -1103.2168
+97738.25873229047 3.9858387 -1103.1774
+97739.25873234076 3.985878 -1103.3156
+97740.25873239106 3.9858387 -1103.2562
+97741.25873244136 3.9858387 -1103.197
+97742.25873249164 3.985878 -1103.1774
+97743.25873254192 3.9858387 -1103.2959
+97744.25873259222 3.9857993 -1103.2761
+97745.25873264251 3.985878 -1103.3749
+97746.2587326928 3.98576 -1103.2366
+97747.2587327431 3.98576 -1103.1774
+97748.2587327934 3.9857206 -1103.2959
+97749.25873284368 3.9857206 -1103.2168
+97750.25873289396 3.9857993 -1103.1774
+97751.25873294426 3.98576 -1103.197
+97752.25873299457 3.9856024 -1103.2168
+97753.25873304484 3.9856811 -1103.2168
+97754.25873309514 3.9856024 -1103.3156
+97755.25873314544 3.9856417 -1103.2562
+97756.25873319572 3.9856024 -1103.2562
+97757.258733246 3.985563 -1103.2168
+97758.2587332963 3.9856024 -1103.197
+97759.2587333466 3.985563 -1103.2168
+97760.25873339688 3.9856024 -1103.197
+97761.25873344718 3.9855237 -1103.2959
+97762.25873349748 3.985563 -1103.2562
+97763.25873354776 3.9854844 -1103.2761
+97764.25873359804 3.9855237 -1103.2168
+97765.25873364834 3.9855237 -1103.3551
+97766.25873369865 3.985445 -1103.197
+97767.25873374892 3.9854844 -1103.2959
+97768.25873379922 3.9854844 -1103.197
+97769.25873384952 3.9854057 -1103.1774
+97770.2587338998 3.9854844 -1103.1774
+97771.25873395008 3.9853661 -1103.2168
+97772.25873400038 3.9853661 -1103.2168
+97773.25873405069 3.985445 -1103.2168
+97774.25873410096 3.985445 -1103.2562
+97775.25873415126 3.9853661 -1103.2959
+97776.25873420156 3.9852874 -1103.2562
+97777.25873425184 3.9853268 -1103.2562
+97778.25873430212 3.9852481 -1103.197
+97779.25873435242 3.9852874 -1103.3749
+97780.25873440273 3.9852481 -1103.1774
+97781.258734453 3.9852874 -1103.1378
+97782.2587345033 3.9852087 -1103.2562
+97783.2587345536 3.9852481 -1103.2761
+97784.25873460388 3.9852087 -1103.2562
+97785.25873465415 3.9852087 -1103.1774
+97786.25873470446 3.9851301 -1103.1774
+97787.25873475477 3.9851694 -1103.2366
+97788.25873480504 3.9851301 -1103.197
+97789.25873485534 3.9851301 -1103.2562
+97790.25873490564 3.9851694 -1103.197
+97791.25873495592 3.9851301 -1103.2761
+97792.2587350062 3.9851301 -1103.3156
+97793.2587350565 3.9851301 -1103.3551
+97794.2587351068 3.9850512 -1103.2562
+97795.25873515708 3.9850512 -1103.3156
+97796.25873520738 3.9850118 -1103.2761
+97797.25873525768 3.9849331 -1103.2761
+97798.25873530796 3.9850118 -1103.2959
+97799.25873535823 3.9850512 -1103.197
+97800.25873540854 3.9849331 -1103.2761
+97801.25873545885 3.9850118 -1103.3353
+97802.25873550912 3.9850118 -1103.2168
+97803.25873555942 3.9850118 -1103.3156
+97804.25873560972 3.9850118 -1103.2761
+97805.25873566 3.9848151 -1103.2959
+97806.25873571027 3.9848545 -1103.2366
+97807.25873576058 3.9848151 -1103.2959
+97808.25873581089 3.9849331 -1103.197
+97809.25873586116 3.9848151 -1103.197
+97810.25873591146 3.9848151 -1103.2761
+97811.25873596176 3.9849331 -1103.2761
+97812.25873601204 3.9848151 -1103.2562
+97813.25873606231 3.9846575 -1103.2366
+97814.25873611262 3.9847362 -1103.2562
+97815.25873616293 3.9848151 -1103.2366
+97816.2587362132 3.9848151 -1103.2562
+97817.25873626348 3.9846969 -1103.2366
+97818.2587363138 3.9847362 -1103.2562
+97819.25873636408 3.9846575 -1103.1576
+97820.25873641435 3.9846182 -1103.2761
+97821.25873646466 3.9846182 -1103.2366
+97822.25873651497 3.9845002 -1103.1576
+97823.25873656524 3.9846182 -1103.2562
+97824.25873661552 3.9846182 -1103.1774
+97825.25873666584 3.9846575 -1103.2366
+97826.25873671612 3.9844606 -1103.2366
+97827.2587367664 3.9846182 -1103.1774
+97828.2587368167 3.9846182 -1103.2168
+97829.258736867 3.9845395 -1103.2168
+97830.25873691728 3.9845395 -1103.2761
+97831.25873696756 3.9845002 -1103.2562
+97832.25873701788 3.9844213 -1103.2366
+97833.25873706816 3.9845395 -1103.2959
+97834.25873711843 3.9844213 -1103.2562
+97835.25873716874 3.9844213 -1103.2168
+97836.25873721905 3.9844606 -1103.197
+97837.25873726932 3.9844213 -1103.2562
+97838.2587373196 3.9844213 -1103.2168
+97839.25873736992 3.9844606 -1103.197
+97840.2587374202 3.9843032 -1103.2168
+97841.25873747047 3.9844213 -1103.2761
+97842.25873752078 3.9842639 -1103.1774
+97843.25873757109 3.9844606 -1103.3156
+97844.25873762136 3.9843426 -1103.2959
+97845.25873767164 3.9843032 -1103.3353
+97846.25873772196 3.9843032 -1103.2168
+97847.25873777224 3.9842246 -1103.1576
+97848.25873782251 3.9842246 -1103.1774
+97849.25873787282 3.9842639 -1103.1576
+97850.25873792313 3.9841852 -1103.2562
+97851.2587379734 3.9841852 -1103.2761
+97852.25873802368 3.9843426 -1103.1576
+97853.258738074 3.9841852 -1103.1774
+97854.25873812428 3.9841063 -1103.2959
+97855.25873817455 3.9841852 -1103.2366
+97856.25873822486 3.9841456 -1103.197
+97857.25873827517 3.984067 -1103.2366
+97858.25873832544 3.9840276 -1103.2366
+97859.25873837572 3.984067 -1103.2168
+97860.25873842604 3.984067 -1103.197
+97861.25873847632 3.9841456 -1103.3353
+97862.2587385266 3.9841063 -1103.2761
+97863.2587385769 3.9840276 -1103.2366
+97864.2587386272 3.9841852 -1103.2959
+97865.25873867748 3.9839883 -1103.2366
+97866.25873872776 3.9839883 -1103.2959
+97867.25873877808 3.9839489 -1103.1774
+97868.25873882836 3.9840276 -1103.2562
+97869.25873887863 3.9839883 -1103.2562
+97870.25873892894 3.9839883 -1103.2761
+97871.25873897925 3.9838703 -1103.2562
+97872.25873902952 3.9838307 -1103.2562
+97873.2587390798 3.9839489 -1103.2562
+97874.25873913012 3.9838307 -1103.2366
+97875.2587391804 3.9837914 -1103.197
+97876.25873923067 3.9837127 -1103.2562
+97877.25873928098 3.9838703 -1103.2168
+97878.25873933129 3.9838703 -1103.197
+97879.25873938156 3.983752 -1103.2562
+97880.25873943184 3.9837127 -1103.1576
+97881.25873948216 3.9837914 -1103.2761
+97882.25873953244 3.9836733 -1103.1774
+97883.25873958271 3.9836733 -1103.2168
+97884.25873963302 3.983752 -1103.197
+97885.25873968333 3.9837127 -1103.2366
+97886.2587397336 3.983752 -1103.197
+97887.25873978388 3.9835947 -1103.3749
+97888.2587398342 3.983634 -1103.2562
+97889.25873988448 3.9835553 -1103.2761
+97890.25873993475 3.983634 -1103.1774
+97891.25873998506 3.9835553 -1103.2562
+97892.25874003537 3.9835553 -1103.2562
+97893.25874008564 3.9836733 -1103.1576
+97894.25874013592 3.9835947 -1103.2761
+97895.25874018624 3.9835947 -1103.2168
+97896.25874023652 3.9835553 -1103.2562
+97897.2587402868 3.9835157 -1103.2168
+97898.2587403371 3.9835553 -1103.3156
+97899.2587403874 3.9835157 -1103.3156
+97900.25874043768 3.9835553 -1103.2959
+97901.25874048796 3.9835553 -1103.2562
+97902.25874053828 3.9834371 -1103.2761
+97903.25874058856 3.9835157 -1103.2761
+97904.25874063883 3.9833977 -1103.197
+97905.25874068914 3.9835157 -1103.2366
+97906.25874073945 3.9833584 -1103.2168
+97907.25874078972 3.983319 -1103.2562
+97908.25874084 3.9834371 -1103.2366
+97909.25874089032 3.9833977 -1103.2168
+97910.2587409406 3.9832797 -1103.2761
+97911.25874099087 3.9832797 -1103.2959
+97912.25874104118 3.9833584 -1103.2168
+97913.25874109149 3.9833584 -1103.2366
+97914.25874114176 3.983319 -1103.2168
+97915.25874119204 3.983319 -1103.2168
+97916.25874124236 3.9832404 -1103.2761
+97917.25874129264 3.9832797 -1103.2562
+97918.25874134291 3.9832404 -1103.2168
+97919.25874139322 3.9832404 -1103.2366
+97920.25874144353 3.9830828 -1103.2761
+97921.2587414938 3.9831221 -1103.2562
+97922.25874154408 3.9831221 -1103.2562
+97923.2587415944 3.9830434 -1103.197
+97924.25874164468 3.9832008 -1103.2761
+97925.25874169495 3.9831221 -1103.3156
+97926.25874174526 3.9830828 -1103.2761
+97927.25874179557 3.9830828 -1103.2761
+97928.25874184584 3.9830828 -1103.2562
+97929.25874189612 3.9830434 -1103.1774
+97930.25874194644 3.9830434 -1103.2168
+97931.25874199672 3.9830041 -1103.2168
+97932.258742047 3.9830434 -1103.2366
+97933.2587420973 3.9831614 -1103.3156
+97934.2587421476 3.9828858 -1103.2959
+97935.25874219788 3.9830828 -1103.2168
+97936.25874224816 3.9829648 -1103.2562
+97937.25874229848 3.9829648 -1103.2168
+97938.25874234876 3.9829254 -1103.2562
+97939.25874239903 3.9828858 -1103.1774
+97940.25874244934 3.9828858 -1103.2168
+97941.25874249965 3.9829254 -1103.2366
+97942.25874254992 3.9828465 -1103.3156
+97943.2587426002 3.9828858 -1103.2168
+97944.25874265052 3.9828465 -1103.1774
+97945.2587427008 3.9828465 -1103.2959
+97946.25874275107 3.9827678 -1103.2168
+97947.25874280138 3.9828465 -1103.197
+97948.25874285169 3.9826891 -1103.1774
+97949.25874290196 3.9828072 -1103.2366
+97950.25874295224 3.9827678 -1103.2168
+97951.25874300256 3.9827678 -1103.2562
+97952.25874305284 3.9827285 -1103.2366
+97953.25874310311 3.9826891 -1103.2366
+97954.25874315342 3.9826891 -1103.2366
+97955.25874320373 3.9826102 -1103.2168
+97956.258743254 3.9826102 -1103.2366
+97957.25874330428 3.9825709 -1103.2366
+97958.2587433546 3.9826891 -1103.2366
+97959.25874340488 3.9825315 -1103.2959
+97960.25874345515 3.9826498 -1103.197
+97961.25874350546 3.9826102 -1103.2562
+97962.25874355577 3.9824922 -1103.2959
+97963.25874360604 3.9825315 -1103.197
+97964.25874365632 3.9824135 -1103.197
+97965.25874370664 3.9826102 -1103.2761
+97966.25874375692 3.9826102 -1103.1576
+97967.2587438072 3.9824135 -1103.1774
+97968.2587438575 3.9825709 -1103.3156
+97969.2587439078 3.9824529 -1103.2366
+97970.25874395808 3.9824922 -1103.2366
+97971.25874400836 3.9824922 -1103.2959
+97972.25874405866 3.9823349 -1103.2761
+97973.25874410896 3.9823349 -1103.2562
+97974.25874415923 3.9823349 -1103.197
+97975.25874420954 3.9823742 -1103.2366
+97976.25874425985 3.9823349 -1103.2761
+97977.25874431012 3.9822953 -1103.2366
+97978.2587443604 3.9822166 -1103.2562
+97979.2587444107 3.9824135 -1103.2366
+97980.258744461 3.9822166 -1103.1576
+97981.25874451127 3.9824135 -1103.2366
+97982.25874456158 3.9821379 -1103.2168
+97983.25874461189 3.9822166 -1103.2366
+97984.25874466216 3.9822559 -1103.1774
+97985.25874471244 3.9822953 -1103.2562
+97986.25874476274 3.9822953 -1103.197
+97987.25874481304 3.9822166 -1103.2959
+97988.25874486331 3.9821379 -1103.2959
+97989.25874491362 3.9820986 -1103.2168
+97990.25874496392 3.9820986 -1103.1774
+97991.2587450142 3.9820986 -1103.2168
+97992.25874506448 3.9820199 -1103.3156
+97993.25874511478 3.9821379 -1103.1774
+97994.25874516508 3.9820986 -1103.2366
+97995.25874521535 3.9820986 -1103.2562
+97996.25874526566 3.9820986 -1103.2959
+97997.25874531596 3.9820986 -1103.2562
+97998.25874536624 3.9820592 -1103.2366
+97999.25874541652 3.9820592 -1103.197
+98000.25874546682 3.981941 -1103.3156
+98001.25874551712 3.9818623 -1103.2959
+98002.2587455674 3.9819803 -1103.197
+98003.2587456177 3.9819803 -1103.3551
+98004.258745668 3.981941 -1103.1774
+98005.25874571828 3.9819803 -1103.2562
+98006.25874576856 3.981941 -1103.197
+98007.25874581886 3.981823 -1103.2959
+98008.25874586916 3.9817836 -1103.2366
+98009.25874591943 3.9817443 -1103.197
+98010.25874596974 3.981941 -1103.197
+98011.25874602004 3.981705 -1103.2562
+98012.25874607032 3.9818623 -1103.2168
+98013.2587461206 3.9817443 -1103.197
+98014.2587461709 3.9818623 -1103.197
+98015.2587462212 3.981823 -1103.2168
+98016.25874627147 3.981823 -1103.2761
+98017.25874632178 3.9817443 -1103.2366
+98018.25874637208 3.981705 -1103.2562
+98019.25874642236 3.9816654 -1103.197
+98020.25874647264 3.981626 -1103.2562
+98021.25874652294 3.9817836 -1103.2562
+98022.25874657324 3.981626 -1103.2562
+98023.25874662353 3.9816654 -1103.2761
+98024.25874667382 3.9815867 -1103.2168
+98025.25874672412 3.9816654 -1103.2168
+98026.2587467744 3.981626 -1103.2168
+98027.25874682468 3.9817443 -1103.2959
+98028.25874687498 3.9815474 -1103.2959
+98029.25874692528 3.9815867 -1103.197
+98030.25874697557 3.9815474 -1103.1774
+98031.25874702586 3.9815474 -1103.197
+98032.25874707616 3.9814687 -1103.1378
+98033.25874712644 3.981508 -1103.1576
+98034.25874717672 3.981508 -1103.2168
+98035.25874722702 3.981508 -1103.1378
+98036.25874727732 3.98139 -1103.2562
+98037.2587473276 3.9814293 -1103.2168
+98038.2587473779 3.9814293 -1103.1774
+98039.2587474282 3.98139 -1103.2562
+98040.25874747848 3.9812717 -1103.197
+98041.25874752876 3.9814293 -1103.2761
+98042.25874757906 3.9813111 -1103.2761
+98043.25874762936 3.9813111 -1103.2562
+98044.25874767965 3.9813111 -1103.2959
+98045.25874772994 3.9813504 -1103.197
+98046.25874778024 3.9812717 -1103.1774
+98047.25874783052 3.9812324 -1103.2366
+98048.2587478808 3.9813111 -1103.3749
+98049.2587479311 3.9813504 -1103.2366
+98050.2587479814 3.9811537 -1103.2761
+98051.25874803169 3.9811931 -1103.2168
+98052.25874808198 3.9811931 -1103.2366
+98053.25874813228 3.9812324 -1103.2562
+98054.25874818256 3.9813111 -1103.1774
+98055.25874823284 3.9812324 -1103.2366
+98056.25874828314 3.9811537 -1103.1774
+98057.25874833344 3.9811537 -1103.2562
+98058.25874838373 3.9811931 -1103.2168
+98059.25874843402 3.981075 -1103.3353
+98060.25874848432 3.9811537 -1103.2959
+98061.2587485346 3.9809961 -1103.2959
+98062.25874858488 3.9810355 -1103.2168
+98063.25874863518 3.981075 -1103.2366
+98064.25874868548 3.9811537 -1103.2366
+98065.25874873577 3.9811537 -1103.2168
+98066.25874878606 3.9810355 -1103.2959
+98067.25874883636 3.9809568 -1103.2562
+98068.25874888664 3.9809175 -1103.2562
+98069.25874893692 3.9809175 -1103.2366
+98070.25874898722 3.9811144 -1103.2562
+98071.25874903752 3.9809175 -1103.197
+98072.2587490878 3.9809568 -1103.2562
+98073.2587491381 3.9809961 -1103.2562
+98074.2587491884 3.9809175 -1103.2761
+98075.25874923868 3.9809175 -1103.2168
+98076.25874928896 3.9807994 -1103.2959
+98077.25874933926 3.9808388 -1103.2366
+98078.25874938956 3.9807599 -1103.2168
+98079.25874943985 3.9808388 -1103.2959
+98080.25874949014 3.9808388 -1103.2761
+98081.25874954044 3.9807994 -1103.2366
+98082.25874959072 3.9807599 -1103.2761
+98083.258749641 3.9806812 -1103.197
+98084.2587496913 3.9807994 -1103.2168
+98085.2587497416 3.9806812 -1103.2168
+98086.25874979189 3.9807205 -1103.2562
+98087.25874984218 3.9806418 -1103.2761
+98088.25874989248 3.9806418 -1103.2168
+98089.25874994276 3.9807599 -1103.2959
+98090.25874999304 3.9805238 -1103.1576
+98091.25875004334 3.9807599 -1103.1774
+98092.25875009364 3.9805632 -1103.2168
+98093.25875014393 3.9806812 -1103.1576
+98094.25875019422 3.9805238 -1103.2366
+98095.25875024452 3.9805238 -1103.1774
+98096.2587502948 3.9806418 -1103.2562
+98097.25875034508 3.9805238 -1103.2959
+98098.25875039538 3.9805238 -1103.2761
+98099.25875044568 3.9805238 -1103.3749
+98100.25875049597 3.9805238 -1103.2366
+98101.25875054626 3.9803662 -1103.1774
+98102.25875059656 3.9804056 -1103.2168
+98103.25875064684 3.9803662 -1103.2366
+98104.25875069712 3.9804449 -1103.2168
+98105.25875074742 3.9805238 -1103.2168
+98106.25875079772 3.9804056 -1103.2168
+98107.258750848 3.9803269 -1103.1774
+98108.2587508983 3.9803269 -1103.2168
+98109.2587509486 3.9803269 -1103.2562
+98110.25875099888 3.9804056 -1103.197
+98111.25875104916 3.9804056 -1103.2959
+98112.25875109946 3.9803662 -1103.2562
+98113.25875114975 3.9802876 -1103.2366
+98114.25875120005 3.9803662 -1103.2959
+98115.25875125034 3.9803269 -1103.197
+98116.25875130064 3.9802482 -1103.197
+98117.25875135092 3.9802876 -1103.2761
+98118.2587514012 3.9802089 -1103.2168
+98119.2587514515 3.9800513 -1103.197
+98120.2587515018 3.9801695 -1103.2959
+98121.25875155209 3.9802089 -1103.197
+98122.25875160238 3.9802089 -1103.2562
+98123.25875165268 3.9802089 -1103.2761
+98124.25875170296 3.9802482 -1103.2562
+98125.25875175324 3.9801695 -1103.2366
+98126.25875180354 3.9802089 -1103.2168
+98127.25875185383 3.98013 -1103.2168
+98128.25875190413 3.9800119 -1103.2168
+98129.25875195442 3.9800513 -1103.2562
+98130.25875200472 3.98013 -1103.1378
+98131.258752055 3.98013 -1103.1576
+98132.25875210528 3.9800119 -1103.3156
+98133.25875215558 3.9800513 -1103.1576
+98134.25875220587 3.9799726 -1103.197
+98135.25875225617 3.9799726 -1103.2168
+98136.25875230646 3.9800513 -1103.3156
+98137.25875235676 3.9799726 -1103.197
+98138.25875240704 3.9799726 -1103.2761
+98139.25875245732 3.9799333 -1103.2562
+98140.25875250762 3.9797757 -1103.197
+98141.25875255791 3.9799726 -1103.2761
+98142.2587526082 3.9798939 -1103.2761
+98143.2587526585 3.9798546 -1103.3156
+98144.2587527088 3.979815 -1103.2366
+98145.25875275908 3.9798546 -1103.197
+98146.25875280936 3.9797757 -1103.2168
+98147.25875285966 3.9797757 -1103.197
+98148.25875290995 3.9797757 -1103.2959
+98149.25875296025 3.9797363 -1103.2959
+98150.25875301054 3.979815 -1103.197
+98151.25875306084 3.9797363 -1103.2366
+98152.25875311112 3.9797757 -1103.1774
+98153.2587531614 3.9797363 -1103.1378
+98154.2587532117 3.9797363 -1103.2168
+98155.258753262 3.9797363 -1103.197
+98156.25875331229 3.9796183 -1103.2761
+98157.25875336258 3.979579 -1103.3353
+98158.25875341288 3.9796576 -1103.2366
+98159.25875346316 3.9796183 -1103.2366
+98160.25875351344 3.979579 -1103.2761
+98161.25875356374 3.9796576 -1103.3156
+98162.25875361403 3.979697 -1103.2959
+98163.25875366433 3.979697 -1103.2168
+98164.25875371462 3.979579 -1103.3156
+98165.25875376492 3.9796183 -1103.1774
+98166.2587538152 3.9795396 -1103.2959
+98167.25875386548 3.9794214 -1103.2761
+98168.25875391578 3.9795396 -1103.197
+98169.25875396607 3.9795001 -1103.2168
+98170.25875401637 3.9795396 -1103.197
+98171.25875406666 3.9794214 -1103.1774
+98172.25875411696 3.979382 -1103.2366
+98173.25875416724 3.9794607 -1103.2366
+98174.25875421752 3.979382 -1103.1378
+98175.25875426782 3.979382 -1103.3156
+98176.25875431811 3.9793427 -1103.2168
+98177.2587543684 3.979382 -1103.2761
+98178.2587544187 3.9793034 -1103.197
+98179.258754469 3.9793427 -1103.2168
+98180.25875451928 3.9793427 -1103.197
+98181.25875456956 3.9793427 -1103.2562
+98182.25875461986 3.9793427 -1103.2168
+98183.25875467015 3.9793034 -1103.2168
+98184.25875472045 3.9792244 -1103.2959
+98185.25875477074 3.9791458 -1103.197
+98186.25875482104 3.9791851 -1103.2366
+98187.25875487132 3.979264 -1103.2761
+98188.2587549216 3.9791064 -1103.2562
+98189.2587549719 3.9792244 -1103.2959
+98190.2587550222 3.9791458 -1103.2168
+98191.25875507249 3.9791458 -1103.2959
+98192.25875512278 3.9791064 -1103.2366
+98193.25875517308 3.9791851 -1103.2761
+98194.25875522336 3.9790671 -1103.2562
+98195.25875527364 3.9792244 -1103.2761
+98196.25875532394 3.9791458 -1103.2366
+98197.25875537423 3.9790277 -1103.1576
+98198.25875542453 3.9789884 -1103.2761
+98199.25875547482 3.9790277 -1103.2959
+98200.25875552512 3.9790671 -1103.2168
+98201.2587555754 3.9789095 -1103.2366
+98202.25875562568 3.9790671 -1103.197
+98203.25875567598 3.9789884 -1103.2366
+98204.25875572627 3.9789884 -1103.1576
+98205.25875577657 3.9789095 -1103.2562
+98206.25875582686 3.9789884 -1103.197
+98207.25875587716 3.9787915 -1103.2761
+98208.25875592744 3.9788702 -1103.2761
+98209.25875597772 3.9787521 -1103.3749
+98210.25875602802 3.9788702 -1103.197
+98211.25875607831 3.9789095 -1103.2562
+98212.2587561286 3.9787521 -1103.1576
+98213.2587561789 3.9787521 -1103.2761
+98214.2587562292 3.9787915 -1103.3353
+98215.25875627948 3.9787915 -1103.2168
+98216.25875632976 3.9787521 -1103.2562
+98217.25875638006 3.9787915 -1103.2761
+98218.25875643035 3.9787915 -1103.2168
+98219.25875648065 3.9787915 -1103.3156
+98220.25875653094 3.9787521 -1103.2562
+98221.25875658124 3.9786735 -1103.1576
+98222.25875663152 3.9785945 -1103.2761
+98223.2587566818 3.9786341 -1103.2562
+98224.2587567321 3.9787128 -1103.1774
+98225.2587567824 3.9786735 -1103.2761
+98226.25875683269 3.9785945 -1103.197
+98227.25875688298 3.9786341 -1103.2562
+98228.25875693328 3.9785552 -1103.3156
+98229.25875698356 3.9786341 -1103.1378
+98230.25875703384 3.9785945 -1103.1182
+98231.25875708414 3.9785552 -1103.2562
+98232.25875713443 3.9786341 -1103.2168
+98233.25875718473 3.9785159 -1103.2761
+98234.25875723502 3.9784765 -1103.3353
+98235.25875728532 3.9785159 -1103.1774
+98236.2587573356 3.9785945 -1103.2168
+98237.25875738588 3.9784372 -1103.2959
+98238.25875743618 3.9783585 -1103.2168
+98239.25875748647 3.9783585 -1103.197
+98240.25875753677 3.9784372 -1103.2761
+98241.25875758706 3.9784372 -1103.197
+98242.25875763736 3.9782403 -1103.2366
+98243.25875768764 3.9784372 -1103.2761
+98244.25875773792 3.9783978 -1103.197
+98245.25875778822 3.9782796 -1103.2959
+98246.25875783851 3.9783978 -1103.2366
+98247.2587578888 3.9782796 -1103.197
+98248.2587579391 3.9782796 -1103.2168
+98249.2587579894 3.9782796 -1103.2761
+98250.25875803968 3.9782403 -1103.2168
+98251.25875808996 3.9783192 -1103.3156
+98252.25875814026 3.9782009 -1103.2959
+98253.25875819055 3.9782796 -1103.2761
+98254.25875824085 3.9782403 -1103.2761
+98255.25875829114 3.9782403 -1103.2562
+98256.25875834144 3.9782403 -1103.2562
+98257.25875839172 3.9780829 -1103.2562
+98258.258758442 3.9781616 -1103.1774
+98259.2587584923 3.9780829 -1103.2366
+98260.2587585426 3.9781222 -1103.2562
+98261.25875859288 3.9781616 -1103.2168
+98262.25875864318 3.9780829 -1103.197
+98263.25875869348 3.9780436 -1103.197
+98264.25875874376 3.9780829 -1103.2761
+98265.25875879404 3.9780042 -1103.2562
+98266.25875884434 3.9779646 -1103.2562
+98267.25875889463 3.9780042 -1103.197
+98268.25875894492 3.9779646 -1103.2168
+98269.25875899522 3.9780042 -1103.2168
+98270.25875904552 3.9780042 -1103.2168
+98271.2587590958 3.9779253 -1103.2959
+98272.25875914608 3.9780042 -1103.2761
+98273.25875919638 3.9778466 -1103.2761
+98274.25875924667 3.9779253 -1103.2366
+98275.25875929696 3.9779253 -1103.2562
+98276.25875934726 3.977886 -1103.3353
+98277.25875939756 3.9778466 -1103.197
+98278.25875944784 3.9778073 -1103.2366
+98279.25875949812 3.9778073 -1103.2959
+98280.25875954842 3.977886 -1103.2761
+98281.25875959871 3.9778073 -1103.197
+98282.258759649 3.9777679 -1103.2562
+98283.2587596993 3.9777679 -1103.197
+98284.2587597496 3.9777286 -1103.2168
+98285.25875979988 3.9777286 -1103.1774
+98286.25875985016 3.9777679 -1103.197
+98287.25875990046 3.9776497 -1103.2168
+98288.25875995075 3.9777679 -1103.2366
+98289.25876000104 3.9777286 -1103.2366
+98290.25876005134 3.9777286 -1103.2761
+98291.25876010164 3.9775317 -1103.2562
+98292.25876015192 3.9777679 -1103.2168
+98293.2587602022 3.9776893 -1103.3353
+98294.2587602525 3.9775317 -1103.2562
+98295.2587603028 3.977571 -1103.2366
+98296.25876035308 3.977571 -1103.2366
+98297.25876040338 3.977453 -1103.2168
+98298.25876045368 3.9775317 -1103.2366
+98299.25876050396 3.9774923 -1103.2168
+98300.25876055424 3.9776103 -1103.2168
+98301.25876060454 3.977571 -1103.2959
+98302.25876065483 3.9774137 -1103.197
+98303.25876070512 3.977453 -1103.2168
+98304.25876075542 3.977453 -1103.1576
+98305.25876080572 3.9774923 -1103.1576
+98306.258760856 3.9774137 -1103.197
+98307.25876090628 3.977453 -1103.2959
+98308.25876095658 3.977453 -1103.2562
+98309.25876100687 3.9773347 -1103.2168
+98310.25876105716 3.9773741 -1103.2959
+98311.25876110746 3.9773741 -1103.2959
+98312.25876115776 3.9774137 -1103.2959
+98313.25876120804 3.9773347 -1103.2366
+98314.25876125832 3.9772561 -1103.1774
+98315.25876130862 3.9772954 -1103.197
+98316.25876135891 3.9773347 -1103.3156
+98317.2587614092 3.9772561 -1103.2366
+98318.2587614595 3.9771774 -1103.2562
+98319.2587615098 3.9772954 -1103.2959
+98320.25876156008 3.9772167 -1103.2168
+98321.25876161036 3.9772167 -1103.1576
+98322.25876166066 3.9772167 -1103.197
+98323.25876171095 3.977138 -1103.3156
+98324.25876176124 3.9772167 -1103.2761
+98325.25876181154 3.9770987 -1103.2562
+98326.25876186184 3.9771774 -1103.2959
+98327.25876191212 3.9772167 -1103.2366
+98328.2587619624 3.977138 -1103.1576
+98329.2587620127 3.9770987 -1103.2366
+98330.258762063 3.9770591 -1103.2959
+98331.25876211328 3.9770591 -1103.1774
+98332.25876216358 3.9770591 -1103.3156
+98333.25876221388 3.9769804 -1103.2168
+98334.25876226416 3.9769804 -1103.3551
+98335.25876231444 3.9770591 -1103.2562
+98336.25876236474 3.9769804 -1103.2562
+98337.25876241503 3.9769804 -1103.2562
+98338.25876246532 3.9770198 -1103.2761
+98339.25876251562 3.9769411 -1103.197
+98340.25876256592 3.9769804 -1103.2761
+98341.2587626162 3.9769411 -1103.3156
+98342.25876266648 3.9768624 -1103.2562
+98343.25876271678 3.9768231 -1103.2761
+98344.25876276707 3.9769018 -1103.2562
+98345.25876281736 3.9768231 -1103.2562
+98346.25876286766 3.9767838 -1103.1378
+98347.25876291796 3.9768624 -1103.2562
+98348.25876296824 3.9767838 -1103.2761
+98349.25876301852 3.9767838 -1103.2562
+98350.25876306882 3.9767442 -1103.3156
+98351.25876311913 3.9767838 -1103.2366
+98352.2587631694 3.9767442 -1103.3156
+98353.2587632197 3.9767048 -1103.197
+98354.25876327 3.9767442 -1103.2366
+98355.25876332028 3.9766262 -1103.197
+98356.25876337056 3.9766262 -1103.1576
+98357.25876342086 3.9767442 -1103.2168
+98358.25876347117 3.9767442 -1103.3156
+98359.25876352144 3.9767048 -1103.3551
+98360.25876357174 3.9765868 -1103.197
+98361.25876362204 3.9766655 -1103.197
+98362.25876367232 3.9766262 -1103.2562
+98363.2587637226 3.9766655 -1103.2562
+98364.2587637729 3.9766262 -1103.2761
+98365.2587638232 3.9766262 -1103.197
+98366.25876387348 3.9766262 -1103.3156
+98367.25876392378 3.9764688 -1103.2168
+98368.25876397408 3.9765475 -1103.2168
+98369.25876402436 3.9766262 -1103.197
+98370.25876407464 3.9765081 -1103.2168
+98371.25876412494 3.9765081 -1103.2761
+98372.25876417525 3.9764292 -1103.2562
+98373.25876422552 3.9763505 -1103.1576
+98374.25876427582 3.9764688 -1103.2366
+98375.25876432612 3.9763899 -1103.2761
+98376.2587643764 3.9764688 -1103.2959
+98377.25876442668 3.9764292 -1103.2168
+98378.25876447698 3.9764292 -1103.2168
+98379.25876452729 3.9763112 -1103.1378
+98380.25876457756 3.9763112 -1103.3156
+98381.25876462786 3.9762719 -1103.197
+98382.25876467816 3.9762325 -1103.3353
+98383.25876472844 3.9761539 -1103.2562
+98384.25876477871 3.9761932 -1103.2168
+98385.25876482902 3.9762325 -1103.2761
+98386.25876487933 3.9762719 -1103.2366
+98387.2587649296 3.9762325 -1103.197
+98388.2587649799 3.9762325 -1103.2959
+98389.2587650302 3.9762719 -1103.2562
+98390.25876508048 3.9762719 -1103.2562
+98391.25876513075 3.9761539 -1103.1576
+98392.25876518106 3.9761143 -1103.2761
+98393.25876523137 3.9761539 -1103.197
+98394.25876528164 3.9761539 -1103.2168
+98395.25876533194 3.9760749 -1103.2959
+98396.25876538224 3.9761143 -1103.2366
+98397.25876543252 3.9761539 -1103.1378
+98398.2587654828 3.9760749 -1103.3156
+98399.2587655331 3.9760749 -1103.1576
+98400.2587655834 3.9759569 -1103.2366
+98401.25876563368 3.9759176 -1103.2562
+98402.25876568398 3.9760749 -1103.2761
+98403.25876573428 3.9761143 -1103.3156
+98404.25876578456 3.9759963 -1103.2366
+98405.25876583483 3.9759963 -1103.2959
+98406.25876588514 3.9760356 -1103.1774
+98407.25876593545 3.9759176 -1103.2761
+98408.25876598572 3.9759569 -1103.2168
+98409.25876603602 3.9758782 -1103.2168
+98410.25876608632 3.9759176 -1103.2562
+98411.2587661366 3.9758389 -1103.2761
+98412.25876618687 3.9758389 -1103.2562
+98413.25876623718 3.9759569 -1103.2366
+98414.25876628749 3.9758389 -1103.1774
+98415.25876633776 3.9758389 -1103.197
+98416.25876638804 3.9758782 -1103.197
+98417.25876643836 3.9758782 -1103.2366
+98418.25876648864 3.9757993 -1103.2366
+98419.25876653891 3.9757206 -1103.2562
+98420.25876658922 3.9757206 -1103.1774
+98421.25876663953 3.975642 -1103.2168
+98422.2587666898 3.9757206 -1103.1576
+98423.25876674008 3.9757993 -1103.1774
+98424.2587667904 3.975642 -1103.3353
+98425.25876684068 3.9756026 -1103.2761
+98426.25876689095 3.9757206 -1103.2168
+98427.25876694126 3.9756813 -1103.3156
+98428.25876699157 3.975642 -1103.2366
+98429.25876704184 3.975642 -1103.2168
+98430.25876709212 3.9756813 -1103.2761
+98431.25876714244 3.9754057 -1103.2761
+98432.25876719272 3.9755237 -1103.1576
+98433.258767243 3.9755633 -1103.197
+98434.2587672933 3.9755237 -1103.2761
+98435.2587673436 3.975445 -1103.2168
+98436.25876739388 3.9754844 -1103.2168
+98437.25876744416 3.9755633 -1103.2366
+98438.25876749448 3.9754844 -1103.2168
+98439.25876754476 3.9754844 -1103.2366
+98440.25876759503 3.9755237 -1103.2761
+98441.25876764534 3.9755237 -1103.2562
+98442.25876769565 3.9754844 -1103.1774
+98443.25876774592 3.9753664 -1103.2959
+98444.2587677962 3.9754057 -1103.2168
+98445.25876784652 3.975327 -1103.2562
+98446.2587678968 3.9752877 -1103.2562
+98447.25876794707 3.9753664 -1103.2168
+98448.25876799738 3.9753664 -1103.2562
+98449.25876804769 3.975445 -1103.3156
+98450.25876809796 3.9752088 -1103.197
+98451.25876814824 3.9752088 -1103.2366
+98452.25876819856 3.9752877 -1103.3551
+98453.25876824884 3.9751694 -1103.2761
+98454.25876829911 3.9753664 -1103.2761
+98455.25876834942 3.9752483 -1103.2761
+98456.25876839973 3.9752483 -1103.2366
+98457.25876845 3.9752088 -1103.3156
+98458.25876850028 3.9751301 -1103.3353
+98459.2587685506 3.9751301 -1103.2562
+98460.25876860088 3.9751301 -1103.2562
+98461.25876865115 3.9751694 -1103.2366
+98462.25876870146 3.9750907 -1103.2168
+98463.25876875177 3.9751301 -1103.2562
+98464.25876880204 3.9751301 -1103.2366
+98465.25876885232 3.9750907 -1103.2366
+98466.25876890264 3.9750121 -1103.2168
+98467.25876895292 3.9749727 -1103.3156
+98468.2587690032 3.9750121 -1103.2761
+98469.2587690535 3.9749727 -1103.2959
+98470.2587691038 3.9750121 -1103.2562
+98471.25876915408 3.9750907 -1103.2761
+98472.25876920436 3.9748938 -1103.1182
+98473.25876925468 3.9748938 -1103.2761
+98474.25876930496 3.9749334 -1103.2959
+98475.25876935523 3.9749727 -1103.2562
+98476.25876940554 3.9748938 -1103.3156
+98477.25876945585 3.9748545 -1103.2959
+98478.25876950612 3.9748938 -1103.197
+98479.2587695564 3.9749334 -1103.1774
+98480.25876960672 3.9748938 -1103.2168
+98481.258769657 3.9748545 -1103.3156
+98482.25876970727 3.9748545 -1103.1774
+98483.25876975758 3.9748151 -1103.2562
+98484.25876980789 3.9747365 -1103.2761
+98485.25876985816 3.9747365 -1103.2562
+98486.25876990844 3.9746971 -1103.1576
+98487.25876995876 3.9746578 -1103.2168
+98488.25877000904 3.9747365 -1103.2168
+98489.25877005931 3.9747758 -1103.3353
+98490.25877010962 3.9746184 -1103.1774
+98491.25877015993 3.9746184 -1103.1774
+98492.2587702102 3.9746578 -1103.2168
+98493.25877026048 3.9746971 -1103.3551
+98494.2587703108 3.9746578 -1103.2168
+98495.25877036108 3.9745789 -1103.1774
+98496.25877041135 3.9746184 -1103.3156
+98497.25877046166 3.9746184 -1103.1774
+98498.25877051197 3.9746578 -1103.2366
+98499.25877056224 3.9745789 -1103.1576
+98500.25877061252 3.9745789 -1103.3156
+98501.25877066284 3.9745395 -1103.2168
+98502.25877071312 3.9745002 -1103.197
+98503.2587707634 3.9745395 -1103.2562
+98504.2587708137 3.9744215 -1103.3353
+98505.258770864 3.9744215 -1103.1576
+98506.25877091428 3.9744215 -1103.2562
+98507.25877096456 3.9745395 -1103.2761
+98508.25877101488 3.9744215 -1103.2366
+98509.25877106516 3.9744215 -1103.2959
+98510.25877111543 3.9745002 -1103.3156
+98511.25877116574 3.9744608 -1103.2562
+98512.25877121605 3.9743822 -1103.2366
+98513.25877126632 3.9744215 -1103.1576
+98514.2587713166 3.9743822 -1103.2562
+98515.25877136692 3.9743428 -1103.2366
+98516.2587714172 3.9743822 -1103.2366
+98517.25877146747 3.9743035 -1103.1576
+98518.25877151778 3.9742246 -1103.2168
+98519.25877156809 3.9743428 -1103.197
+98520.25877161836 3.9743428 -1103.2562
+98521.25877166864 3.9741852 -1103.2168
+98522.25877171896 3.9742246 -1103.2959
+98523.25877176924 3.9742246 -1103.197
+98524.25877181951 3.9741852 -1103.1774
+98525.25877186982 3.9741459 -1103.1576
+98526.25877192013 3.9741066 -1103.2168
+98527.2587719704 3.9740672 -1103.1576
+98528.25877202068 3.9742639 -1103.2168
+98529.258772071 3.9741852 -1103.2562
+98530.25877212128 3.9741852 -1103.2562
+98531.25877217155 3.9740279 -1103.1774
+98532.25877222186 3.9740672 -1103.2959
+98533.25877227217 3.9740279 -1103.1774
+98534.25877232244 3.9740279 -1103.2366
+98535.25877237272 3.9741066 -1103.2562
+98536.25877242304 3.9741066 -1103.2366
+98537.25877247332 3.9740279 -1103.2562
+98538.2587725236 3.973949 -1103.2959
+98539.2587725739 3.973949 -1103.2562
+98540.2587726242 3.973949 -1103.2959
+98541.25877267448 3.9739096 -1103.2562
+98542.25877272476 3.9739885 -1103.2168
+98543.25877277508 3.9739096 -1103.2562
+98544.25877282536 3.9738309 -1103.2366
+98545.25877287563 3.9739096 -1103.2959
+98546.25877292594 3.9739096 -1103.2168
+98547.25877297625 3.9737916 -1103.2168
+98548.25877302652 3.9738703 -1103.2761
+98549.2587730768 3.9738309 -1103.3156
+98550.25877312712 3.9739096 -1103.2366
+98551.2587731774 3.9738703 -1103.2562
+98552.25877322767 3.9737916 -1103.2959
+98553.25877327798 3.9737523 -1103.2562
+98554.25877332829 3.9737129 -1103.2366
+98555.25877337856 3.9737523 -1103.2168
+98556.25877342884 3.9738309 -1103.2168
+98557.25877347916 3.9737916 -1103.2168
+98558.25877352944 3.9737129 -1103.2168
+98559.25877357971 3.973634 -1103.2366
+98560.25877363002 3.973634 -1103.2168
+98561.25877368033 3.973634 -1103.2366
+98562.2587737306 3.9736733 -1103.1182
+98563.25877378088 3.9735947 -1103.2562
+98564.2587738312 3.973634 -1103.3156
+98565.25877388148 3.9735947 -1103.197
+98566.25877393175 3.9736733 -1103.2562
+98567.25877398206 3.973516 -1103.2366
+98568.25877403237 3.9734766 -1103.2168
+98569.25877408264 3.9735947 -1103.2959
+98570.25877413292 3.9734766 -1103.2168
+98571.25877418322 3.973516 -1103.1576
+98572.25877423352 3.9734373 -1103.1774
+98573.2587742838 3.9734766 -1103.2366
+98574.2587743341 3.9735553 -1103.3551
+98575.2587743844 3.9734766 -1103.2562
+98576.25877443468 3.9733191 -1103.2959
+98577.25877448496 3.973398 -1103.2168
+98578.25877453526 3.9733584 -1103.2168
+98579.25877458556 3.9734373 -1103.1378
+98580.25877463583 3.973398 -1103.3156
+98581.25877468614 3.9733191 -1103.3353
+98582.25877473645 3.9733191 -1103.2562
+98583.25877478672 3.9733191 -1103.3156
+98584.258774837 3.9733191 -1103.2761
+98585.2587748873 3.9732797 -1103.197
+98586.2587749376 3.9732797 -1103.3353
+98587.25877498787 3.9732797 -1103.2761
+98588.25877503818 3.973201 -1103.3353
+98589.25877508848 3.9732404 -1103.1576
+98590.25877513876 3.973201 -1103.1774
+98591.25877518904 3.9732404 -1103.2761
+98592.25877523934 3.9731224 -1103.2562
+98593.25877528964 3.973201 -1103.2366
+98594.25877533991 3.973083 -1103.3156
+98595.25877539022 3.9731617 -1103.3353
+98596.25877544052 3.973201 -1103.2761
+98597.2587754908 3.9730041 -1103.3156
+98598.25877554108 3.973083 -1103.1774
+98599.25877559138 3.973083 -1103.2761
+98600.25877564168 3.973083 -1103.2761
+98601.25877569195 3.9729648 -1103.2562
+98602.25877574226 3.9730041 -1103.2366
+98603.25877579256 3.973083 -1103.197
+98604.25877584284 3.9730434 -1103.1774
+98605.25877589312 3.9730434 -1103.2168
+98606.25877594342 3.973083 -1103.197
+98607.25877599372 3.9729648 -1103.2366
+98608.258776044 3.9729648 -1103.197
+98609.2587760943 3.9729254 -1103.2761
+98610.2587761446 3.9729254 -1103.2562
+98611.25877619488 3.9728861 -1103.1774
+98612.25877624516 3.9728074 -1103.2959
+98613.25877629546 3.9729254 -1103.2761
+98614.25877634576 3.9728861 -1103.2168
+98615.25877639603 3.9727681 -1103.2562
+98616.25877644634 3.9729648 -1103.2959
+98617.25877649664 3.9728467 -1103.1774
+98618.25877654692 3.9728861 -1103.2761
+98619.2587765972 3.9728074 -1103.2761
+98620.2587766475 3.9727285 -1103.2366
+98621.2587766978 3.9729648 -1103.2959
+98622.25877674809 3.9727681 -1103.2562
+98623.25877679838 3.9727285 -1103.2959
+98624.25877684868 3.9729254 -1103.3156
+98625.25877689896 3.9728074 -1103.2366
+98626.25877694924 3.9726498 -1103.197
+98627.25877699954 3.9726105 -1103.2562
+98628.25877704984 3.9726105 -1103.2366
+98629.25877710013 3.9725711 -1103.2366
+98630.25877715042 3.9725318 -1103.3551
+98631.25877720072 3.9726105 -1103.2562
+98632.258777251 3.9725318 -1103.2168
+98633.25877730128 3.9726498 -1103.2959
+98634.25877735158 3.9726105 -1103.197
+98635.25877740188 3.9725711 -1103.3156
+98636.25877745217 3.9725318 -1103.197
+98637.25877750246 3.9723742 -1103.2168
+98638.25877755276 3.9725318 -1103.1774
+98639.25877760304 3.9724531 -1103.1774
+98640.25877765332 3.9724135 -1103.2168
+98641.25877770362 3.9724925 -1103.2761
+98642.25877775392 3.9724135 -1103.2562
+98643.2587778042 3.9724531 -1103.1576
+98644.2587778545 3.9724135 -1103.197
+98645.2587779048 3.9723742 -1103.2562
+98646.25877795508 3.9724925 -1103.2562
+98647.25877800536 3.9723742 -1103.2168
+98648.25877805566 3.9724135 -1103.1774
+98649.25877810596 3.9723349 -1103.3156
+98650.25877815625 3.9722562 -1103.0984
+98651.25877820654 3.9723349 -1103.2168
+98652.25877825684 3.9722168 -1103.1774
+98653.25877830712 3.9722562 -1103.2761
+98654.2587783574 3.9722955 -1103.2366
+98655.2587784077 3.9723349 -1103.2366
+98656.258778458 3.9722562 -1103.1774
+98657.25877850829 3.9721775 -1103.2366
+98658.25877855858 3.9722168 -1103.2168
+98659.25877860888 3.9721775 -1103.1774
+98660.25877865916 3.9722562 -1103.197
+98661.25877870944 3.9721775 -1103.2562
+98662.25877875974 3.9720199 -1103.2562
+98663.25877881004 3.9720592 -1103.2761
+98664.25877886033 3.9720986 -1103.2959
+98665.25877891062 3.9720592 -1103.1576
+98666.25877896092 3.9720986 -1103.2562
+98667.2587790112 3.9720199 -1103.2168
+98668.25877906148 3.9722168 -1103.2761
+98669.25877911178 3.9720199 -1103.2761
+98670.25877916208 3.9720592 -1103.3156
+98671.25877921237 3.9721382 -1103.2562
+98672.25877926266 3.9720592 -1103.1774
+98673.25877931296 3.9719019 -1103.2959
+98674.25877936324 3.9720199 -1103.2168
+98675.25877941352 3.9719412 -1103.1774
+98676.25877946382 3.9719412 -1103.1576
+98677.25877951412 3.9719806 -1103.197
+98678.2587795644 3.9719019 -1103.3156
+98679.2587796147 3.9719019 -1103.2366
+98680.258779665 3.9719019 -1103.1576
+98681.25877971528 3.971823 -1103.197
+98682.25877976556 3.971823 -1103.2761
+98683.25877981586 3.9720199 -1103.2366
+98684.25877986616 3.9719019 -1103.3156
+98685.25877991645 3.9717836 -1103.1774
+98686.25877996674 3.9717443 -1103.2562
+98687.25878001704 3.971823 -1103.2366
+98688.25878006732 3.9718626 -1103.2366
+98689.2587801176 3.9717443 -1103.2168
+98690.2587801679 3.971705 -1103.2562
+98691.2587802182 3.9717836 -1103.197
+98692.25878026849 3.9716656 -1103.197
+98693.25878031878 3.9717443 -1103.2959
+98694.25878036908 3.971705 -1103.197
+98695.25878041936 3.971705 -1103.2959
+98696.25878046964 3.971705 -1103.2761
+98697.25878051994 3.9716656 -1103.1378
+98698.25878057024 3.9716656 -1103.2761
+98699.25878062053 3.9716656 -1103.3156
+98700.25878067082 3.9715476 -1103.2366
+98701.25878072112 3.971508 -1103.2366
+98702.2587807714 3.9715476 -1103.197
+98703.25878082168 3.9715869 -1103.197
+98704.25878087198 3.9715869 -1103.1774
+98705.25878092228 3.9715476 -1103.2366
+98706.25878097257 3.971508 -1103.1774
+98707.25878102286 3.9714687 -1103.2562
+98708.25878107316 3.9714293 -1103.2366
+98709.25878112344 3.9714293 -1103.2959
+98710.25878117372 3.9715476 -1103.2959
+98711.25878122402 3.9714687 -1103.2562
+98712.25878127431 3.9714293 -1103.2959
+98713.2587813246 3.9714687 -1103.2562
+98714.2587813749 3.9713507 -1103.2761
+98715.2587814252 3.9713507 -1103.2168
+98716.25878147548 3.9713113 -1103.2562
+98717.25878152576 3.97139 -1103.2168
+98718.25878157606 3.9713507 -1103.1774
+98719.25878162635 3.971272 -1103.2168
+98720.25878167665 3.9713507 -1103.197
+98721.25878172694 3.9712327 -1103.2761
+98722.25878177724 3.971272 -1103.3156
+98723.25878182752 3.971272 -1103.3156
+98724.2587818778 3.9711931 -1103.3156
+98725.2587819281 3.9712327 -1103.3156
+98726.2587819784 3.9711144 -1103.2168
+98727.25878202869 3.971272 -1103.2366
+98728.25878207898 3.9711931 -1103.2761
+98729.25878212928 3.9711931 -1103.3156
+98730.25878217956 3.9711144 -1103.2761
+98731.25878222984 3.9711144 -1103.197
+98732.25878228014 3.9711144 -1103.2366
+98733.25878233043 3.9710357 -1103.2168
+98734.25878238073 3.9711144 -1103.2959
+98735.25878243102 3.9710751 -1103.1576
+98736.25878248132 3.9711931 -1103.2168
+98737.2587825316 3.9709964 -1103.3156
+98738.25878258188 3.9711144 -1103.2366
+98739.25878263218 3.9709964 -1103.2168
+98740.25878268247 3.9709964 -1103.2168
+98741.25878273277 3.9710751 -1103.2168
+98742.25878278306 3.9709964 -1103.2562
+98743.25878283336 3.9710357 -1103.2761
+98744.25878288364 3.9708781 -1103.2562
+98745.25878293392 3.9709177 -1103.2168
+98746.25878298422 3.9709964 -1103.2761
+98747.25878303451 3.9707994 -1103.2562
+98748.2587830848 3.9708388 -1103.3353
+98749.2587831351 3.9709177 -1103.0984
+98750.2587831854 3.9708388 -1103.2168
+98751.25878323568 3.9708388 -1103.2761
+98752.25878328596 3.9709177 -1103.2366
+98753.25878333626 3.9707994 -1103.2562
+98754.25878338655 3.9707601 -1103.1576
+98755.25878343685 3.9707601 -1103.2366
+98756.25878348714 3.9707208 -1103.2761
+98757.25878353744 3.9707208 -1103.2761
+98758.25878358772 3.9707208 -1103.2761
+98759.258783638 3.9707208 -1103.2168
+98760.2587836883 3.9707601 -1103.197
+98761.2587837386 3.9707208 -1103.2562
+98762.25878378889 3.9706421 -1103.2168
+98763.25878383918 3.9706421 -1103.2168
+98764.25878388948 3.9706814 -1103.2366
+98765.25878393976 3.9706028 -1103.1576
+98766.25878399004 3.9706028 -1103.2959
+98767.25878404034 3.9705238 -1103.2366
+98768.25878409063 3.9705238 -1103.2366
+98769.25878414093 3.9706028 -1103.2562
+98770.25878419122 3.9705632 -1103.197
+98771.25878424152 3.9705632 -1103.2366
+98772.2587842918 3.9705238 -1103.2761
+98773.25878434208 3.9705238 -1103.3156
+98774.25878439238 3.9705238 -1103.2562
+98775.25878444267 3.9704058 -1103.2761
+98776.25878449297 3.9704845 -1103.197
+98777.25878454326 3.9705238 -1103.3156
+98778.25878459356 3.9704452 -1103.2562
+98779.25878464384 3.9704452 -1103.197
+98780.25878469412 3.9704058 -1103.197
+98781.25878474442 3.9703665 -1103.2761
+98782.25878479471 3.9703665 -1103.197
+98783.258784845 3.9703271 -1103.2366
+98784.2587848953 3.9702482 -1103.2168
+98785.2587849456 3.9703271 -1103.197
+98786.25878499588 3.9702876 -1103.2562
+98787.25878504616 3.9702482 -1103.2168
+98788.25878509646 3.9702089 -1103.197
+98789.25878514675 3.9702876 -1103.1774
+98790.25878519705 3.9702089 -1103.3156
+98791.25878524734 3.9702089 -1103.2168
+98792.25878529764 3.9703271 -1103.2761
+98793.25878534792 3.9703271 -1103.2959
+98794.2587853982 3.9702482 -1103.2168
+98795.2587854485 3.9701695 -1103.2959
+98796.2587854988 3.9702876 -1103.2761
+98797.25878554909 3.9701695 -1103.197
+98798.25878559938 3.9701302 -1103.2366
+98799.25878564968 3.9700515 -1103.197
+98800.25878569996 3.9701302 -1103.2959
+98801.25878575024 3.9701695 -1103.2761
+98802.25878580054 3.9701302 -1103.197
+98803.25878585083 3.9700515 -1103.2168
+98804.25878590113 3.9699726 -1103.2761
+98805.25878595142 3.9700515 -1103.2366
+98806.25878600172 3.9700909 -1103.1774
+98807.258786052 3.9700909 -1103.2959
+98808.25878610228 3.9700122 -1103.2168
+98809.25878615258 3.9699726 -1103.2168
+98810.25878620287 3.9699333 -1103.2366
+98811.25878625317 3.9699726 -1103.2168
+98812.25878630346 3.9698939 -1103.2168
+98813.25878635376 3.9698939 -1103.2562
+98814.25878640404 3.9700515 -1103.2168
+98815.25878645432 3.9699333 -1103.3156
+98816.25878650462 3.9699726 -1103.0984
+98817.25878655491 3.9698546 -1103.3551
+98818.2587866052 3.9697366 -1103.2562
+98819.2587866555 3.9698939 -1103.2761
+98820.2587867058 3.9698153 -1103.3353
+98821.25878675608 3.9698153 -1103.3353
+98822.25878680636 3.9698546 -1103.3353
+98823.25878685666 3.9698153 -1103.1774
+98824.25878690695 3.9698546 -1103.2761
+98825.25878695725 3.9697759 -1103.2562
+98826.25878700754 3.9697366 -1103.2168
+98827.25878705784 3.9697759 -1103.3353
+98828.25878710812 3.9697366 -1103.2168
+98829.2587871584 3.9696972 -1103.2168
+98830.2587872087 3.9696577 -1103.197
+98831.258787259 3.9697366 -1103.2562
+98832.25878730929 3.9697366 -1103.2562
+98833.25878735958 3.969579 -1103.2366
+98834.25878740988 3.9696183 -1103.2562
+98835.25878746016 3.9696577 -1103.197
+98836.25878751044 3.969579 -1103.2168
+98837.25878756074 3.969461 -1103.2959
+98838.25878761103 3.969579 -1103.2562
+98839.25878766133 3.969461 -1103.1774
+98840.25878771162 3.9695396 -1103.2562
+98841.25878776192 3.9694216 -1103.2168
+98842.2587878122 3.9695003 -1103.3156
+98843.25878786248 3.9695003 -1103.1774
+98844.25878791278 3.969461 -1103.2168
+98845.25878796307 3.969461 -1103.2366
+98846.25878801337 3.9695003 -1103.1576
+98847.25878806366 3.969461 -1103.2366
+98848.25878811396 3.9693034 -1103.197
+98849.25878816424 3.9694216 -1103.2959
+98850.25878821452 3.9693427 -1103.2761
+98851.25878826482 3.9693427 -1103.2761
+98852.25878831511 3.9694216 -1103.3353
+98853.2587883654 3.969264 -1103.197
+98854.2587884157 3.969264 -1103.2959
+98855.258788466 3.9693427 -1103.1576
+98856.25878851628 3.9693823 -1103.2959
+98857.25878856656 3.9693034 -1103.2761
+98858.25878861686 3.969264 -1103.2168
+98859.25878866715 3.9693034 -1103.2761
+98860.25878871744 3.969264 -1103.1576
+98861.25878876774 3.9691854 -1103.2761
+98862.25878881804 3.9691067 -1103.2168
+98863.25878886832 3.9691854 -1103.2168
+98864.2587889186 3.9692247 -1103.2168
+98865.2587889689 3.9691067 -1103.3353
+98866.2587890192 3.9690673 -1103.2366
+98867.25878906948 3.9691854 -1103.197
+98868.25878911978 3.9692247 -1103.2366
+98869.25878917008 3.969146 -1103.2562
+98870.25878922036 3.9690673 -1103.2562
+98871.25878927064 3.9690278 -1103.2562
+98872.25878932094 3.9689884 -1103.2562
+98873.25878937123 3.9690278 -1103.1576
+98874.25878942152 3.9690278 -1103.2562
+98875.25878947182 3.9690278 -1103.197
+98876.25878952212 3.9689491 -1103.2959
+98877.2587895724 3.9689884 -1103.2761
+98878.25878962268 3.9690278 -1103.197
+98879.25878967298 3.9688704 -1103.2168
+98880.25878972327 3.9690673 -1103.1576
+98881.25878977356 3.9689491 -1103.2761
+98882.25878982386 3.9689097 -1103.197
+98883.25878987416 3.9688311 -1103.2366
+98884.25878992444 3.9689491 -1103.2761
+98885.25878997472 3.9689097 -1103.2366
+98886.25879002502 3.9687917 -1103.197
+98887.25879007531 3.9686735 -1103.2761
+98888.2587901256 3.9688704 -1103.197
+98889.2587901759 3.9688311 -1103.2168
+98890.2587902262 3.9687917 -1103.2761
+98891.25879027648 3.9688704 -1103.2366
+98892.25879032676 3.9687917 -1103.2761
+98893.25879037706 3.9687524 -1103.197
+98894.25879042735 3.9687524 -1103.2366
+98895.25879047764 3.9688311 -1103.2366
+98896.25879052794 3.9687128 -1103.3156
+98897.25879057824 3.9687128 -1103.2366
+98898.25879062852 3.9688311 -1103.2959
+98899.2587906788 3.9685948 -1103.2959
+98900.2587907291 3.9686735 -1103.2562
+98901.2587907794 3.9685948 -1103.2168
+98902.25879082968 3.9685948 -1103.2562
+98903.25879087998 3.9686341 -1103.197
+98904.25879093028 3.9686341 -1103.2366
+98905.25879098056 3.9685161 -1103.2562
+98906.25879103084 3.9685555 -1103.2168
+98907.25879108114 3.9685161 -1103.1576
+98908.25879113143 3.9685555 -1103.2168
+98909.25879118172 3.9684768 -1103.2959
+98910.25879123202 3.9683979 -1103.1182
+98911.25879128232 3.9684768 -1103.2168
+98912.2587913326 3.9684372 -1103.2562
+98913.25879138288 3.9685161 -1103.2366
+98914.25879143318 3.9685161 -1103.1378
+98915.25879148347 3.9685555 -1103.197
+98916.25879153376 3.9685161 -1103.2168
+98917.25879158406 3.9684372 -1103.2366
+98918.25879163436 3.9683192 -1103.197
+98919.25879168464 3.9683979 -1103.2761
+98920.25879173492 3.9683192 -1103.197
+98921.25879178522 3.9683192 -1103.197
+98922.25879183551 3.9683979 -1103.2959
+98923.2587918858 3.9683192 -1103.1774
+98924.2587919361 3.9682405 -1103.1576
+98925.2587919864 3.9682798 -1103.2761
+98926.25879203668 3.9682012 -1103.2562
+98927.25879208696 3.9682798 -1103.2562
+98928.25879213726 3.9682798 -1103.2366
+98929.25879218755 3.9683192 -1103.2366
+98930.25879223784 3.9682798 -1103.3156
+98931.25879228814 3.9681618 -1103.2366
+98932.25879233844 3.9682012 -1103.2959
+98933.25879238872 3.9681222 -1103.2761
+98934.258792439 3.9681222 -1103.1576
+98935.2587924893 3.9681222 -1103.2959
+98936.2587925396 3.9681222 -1103.2366
+98937.25879258988 3.9681618 -1103.2761
+98938.25879264018 3.9681222 -1103.197
+98939.25879269048 3.9681222 -1103.2366
+98940.25879274076 3.9680829 -1103.2366
+98941.25879279104 3.9680436 -1103.3353
+98942.25879284134 3.9679649 -1103.2562
+98943.25879289163 3.9679649 -1103.3156
+98944.25879294192 3.9680829 -1103.2168
+98945.25879299222 3.9679255 -1103.2959
+98946.25879304252 3.9680436 -1103.2562
+98947.2587930928 3.9680042 -1103.2168
+98948.25879314308 3.9679255 -1103.2366
+98949.25879319338 3.9678073 -1103.2761
+98950.25879324369 3.9678862 -1103.197
+98951.25879329396 3.9679649 -1103.1774
+98952.25879334426 3.9680042 -1103.197
+98953.25879339456 3.9679649 -1103.2168
+98954.25879344484 3.9678073 -1103.3156
+98955.25879349512 3.9678469 -1103.1378
+98956.25879354542 3.9678073 -1103.2168
+98957.25879359573 3.9679649 -1103.2168
+98958.258793646 3.9677286 -1103.2168
+98959.2587936963 3.9678073 -1103.2761
+98960.2587937466 3.967768 -1103.2168
+98961.25879379688 3.967768 -1103.2366
+98962.25879384716 3.967768 -1103.2168
+98963.25879389746 3.9676893 -1103.3156
+98964.25879394777 3.9676893 -1103.1774
+98965.25879399804 3.9676893 -1103.2366
+98966.25879404834 3.9678073 -1103.1774
+98967.25879409864 3.9676893 -1103.2959
+98968.25879414892 3.9676893 -1103.197
+98969.2587941992 3.967768 -1103.2168
+98970.2587942495 3.9675713 -1103.2168
+98971.2587942998 3.9676106 -1103.2168
+98972.25879435008 3.9676499 -1103.2761
+98973.25879440038 3.9674923 -1103.2562
+98974.25879445068 3.9675713 -1103.1774
+98975.25879450096 3.9676106 -1103.2168
+98976.25879455124 3.9675319 -1103.2562
+98977.25879460154 3.9675713 -1103.2366
+98978.25879465185 3.9674923 -1103.2562
+98979.25879470212 3.9675713 -1103.1774
+98980.25879475242 3.967453 -1103.1774
+98981.25879480272 3.9675713 -1103.2761
+98982.258794853 3.9675319 -1103.2761
+98983.25879490327 3.9673743 -1103.2761
+98984.25879495358 3.9674137 -1103.2761
+98985.25879500389 3.9674137 -1103.2959
+98986.25879505416 3.9674137 -1103.2168
+98987.25879510446 3.967335 -1103.2761
+98988.25879515476 3.9673743 -1103.197
+98989.25879520504 3.9673743 -1103.2761
+98990.25879525531 3.9672563 -1103.2366
+98991.25879530562 3.967335 -1103.1774
+98992.25879535593 3.967335 -1103.2168
+98993.2587954062 3.9671774 -1103.197
+98994.2587954565 3.967217 -1103.2168
+98995.2587955068 3.9672956 -1103.197
+98996.25879555708 3.967217 -1103.2168
+98997.25879560735 3.967217 -1103.197
+98998.25879565766 3.9672563 -1103.2366
+98999.25879570797 3.967217 -1103.2366
+99000.25879575824 3.9671774 -1103.1774
+99001.25879580854 3.9671774 -1103.1576
+99002.25879585884 3.967217 -1103.197
+99003.25879590912 3.9670987 -1103.197
+99004.2587959594 3.9671381 -1103.2562
+99005.2587960097 3.9671381 -1103.197
+99006.25879606 3.9670987 -1103.2168
+99007.25879611028 3.9671381 -1103.2761
+99008.25879616058 3.9669414 -1103.2366
+99009.25879621088 3.9671381 -1103.2562
+99010.25879626116 3.9670987 -1103.1774
+99011.25879631143 3.9670987 -1103.197
+99012.25879636174 3.9669414 -1103.2761
+99013.25879641205 3.9669414 -1103.2168
+99014.25879646232 3.96702 -1103.2168
+99015.2587965126 3.9669414 -1103.3353
+99016.25879656292 3.9669414 -1103.2562
+99017.2587966132 3.9669414 -1103.1576
+99018.25879666347 3.96702 -1103.1774
+99019.25879671378 3.966902 -1103.1774
+99020.25879676409 3.9669414 -1103.1182
+99021.25879681436 3.9668231 -1103.3156
+99022.25879686464 3.9668624 -1103.197
+99023.25879691496 3.966902 -1103.2366
+99024.25879696524 3.9668231 -1103.2366
+99025.25879701551 3.9668624 -1103.2168
+99026.25879706582 3.9668231 -1103.2366
+99027.25879711613 3.9667051 -1103.2562
+99028.2587971664 3.9667838 -1103.2366
+99029.25879721668 3.9668231 -1103.1576
+99030.258797267 3.9667444 -1103.2562
+99031.25879731728 3.9667051 -1103.2959
+99032.25879736755 3.9666657 -1103.2366
+99033.25879741786 3.9667051 -1103.0984
+99034.25879746817 3.9668231 -1103.2959
+99035.25879751844 3.9666657 -1103.2168
+99036.25879756872 3.9665868 -1103.2168
+99037.25879761904 3.9666264 -1103.2366
+99038.25879766932 3.9665868 -1103.197
+99039.2587977196 3.9666264 -1103.2366
+99040.2587977699 3.9665082 -1103.2168
+99041.2587978202 3.9665868 -1103.2168
+99042.25879787048 3.9664688 -1103.1576
+99043.25879792076 3.9665082 -1103.2168
+99044.25879797108 3.9664688 -1103.2366
+99045.25879802136 3.9665475 -1103.3353
+99046.25879807163 3.9664295 -1103.2168
+99047.25879812194 3.9664688 -1103.2959
+99048.25879817225 3.9664688 -1103.2168
+99049.25879822252 3.9664295 -1103.2366
+99050.2587982728 3.9664295 -1103.2761
+99051.25879832312 3.9664295 -1103.2761
+99052.2587983734 3.9664688 -1103.2366
+99053.25879842367 3.9663901 -1103.2761
+99054.25879847398 3.9663115 -1103.2562
+99055.25879852429 3.9663115 -1103.2562
+99056.25879857456 3.9662719 -1103.2366
+99057.25879862484 3.9663115 -1103.197
+99058.25879867516 3.9663508 -1103.2959
+99059.25879872544 3.9663901 -1103.2959
+99060.25879877571 3.9663115 -1103.197
+99061.25879882602 3.9661539 -1103.2761
+99062.25879887633 3.9663508 -1103.3156
+99063.2587989266 3.9661932 -1103.1576
+99064.25879897688 3.9662325 -1103.2168
+99065.2587990272 3.9661932 -1103.1378
+99066.25879907748 3.9662719 -1103.2562
+99067.25879912775 3.9661145 -1103.3156
+99068.25879917806 3.9661539 -1103.2366
+99069.25879922837 3.9661932 -1103.197
+99070.25879927864 3.9661539 -1103.2761
+99071.25879932892 3.9661932 -1103.2959
+99072.25879937924 3.9660752 -1103.2761
+99073.25879942952 3.9660358 -1103.2562
+99074.2587994798 3.9659965 -1103.1576
+99075.2587995301 3.9661145 -1103.2562
+99076.2587995804 3.9660752 -1103.2562
+99077.25879963068 3.9660752 -1103.2366
+99078.25879968096 3.9659176 -1103.2761
+99079.25879973128 3.9660752 -1103.3156
+99080.25879978156 3.9660358 -1103.197
+99081.25879983183 3.9660358 -1103.2168
+99082.25879988214 3.9658782 -1103.2761
+99083.25879993245 3.9659569 -1103.2366
+99084.25879998272 3.9659176 -1103.2366
+99085.258800033 3.9659176 -1103.2168
+99086.25880008332 3.9659965 -1103.2562
+99087.2588001336 3.9658389 -1103.1576
+99088.25880018387 3.9659569 -1103.2562
+99089.25880023418 3.9658389 -1103.2761
+99090.25880028449 3.9658782 -1103.2366
+99091.25880033476 3.9657996 -1103.2366
+99092.25880038504 3.9657996 -1103.1378
+99093.25880043536 3.9658389 -1103.1378
+99094.25880048564 3.9657209 -1103.2366
+99095.25880053591 3.9657209 -1103.2366
+99096.25880058622 3.9656816 -1103.1576
+99097.25880063653 3.9657602 -1103.2366
+99098.2588006868 3.9656026 -1103.3156
+99099.25880073708 3.965642 -1103.197
+99100.2588007874 3.9656816 -1103.2366
+99101.25880083768 3.9657209 -1103.2761
+99102.25880088795 3.9656816 -1103.2959
+99103.25880093826 3.965642 -1103.197
+99104.25880098857 3.965642 -1103.2366
+99105.25880103884 3.9656026 -1103.2959
+99106.25880108912 3.9656026 -1103.2761
+99107.25880113944 3.9655633 -1103.2959
+99108.25880118972 3.9655633 -1103.2761
+99109.25880124 3.965524 -1103.3353
+99110.2588012903 3.9654846 -1103.3551
+99111.2588013406 3.9656026 -1103.197
+99112.25880139088 3.9655633 -1103.197
+99113.25880144116 3.9655633 -1103.2562
+99114.25880149148 3.9654059 -1103.2562
+99115.25880154176 3.9654453 -1103.2761
+99116.25880159203 3.9655633 -1103.2562
+99117.25880164234 3.965524 -1103.2959
+99118.25880169265 3.9653666 -1103.2168
+99119.25880174292 3.965327 -1103.2562
+99120.2588017932 3.9653666 -1103.1774
+99121.25880184352 3.9654059 -1103.2562
+99122.2588018938 3.9653666 -1103.197
+99123.25880194407 3.9652877 -1103.1576
+99124.25880199438 3.9653666 -1103.2562
+99125.25880204469 3.965327 -1103.2761
+99126.25880209496 3.9652877 -1103.197
+99127.25880214524 3.9653666 -1103.3156
+99128.25880219556 3.965327 -1103.2562
+99129.25880224584 3.965209 -1103.1774
+99130.25880229611 3.9652877 -1103.2562
+99131.25880234642 3.9652483 -1103.2562
+99132.25880239673 3.965209 -1103.2761
+99133.258802447 3.965209 -1103.2959
+99134.25880249728 3.965209 -1103.2366
+99135.2588025476 3.9651697 -1103.2366
+99136.25880259788 3.965209 -1103.2366
+99137.25880264815 3.9651697 -1103.197
+99138.25880269846 3.9651697 -1103.0984
+99139.25880274877 3.9651303 -1103.1774
+99140.25880279904 3.965091 -1103.197
+99141.25880284932 3.9651303 -1103.2562
+99142.25880289964 3.9650517 -1103.2959
+99143.25880294992 3.9650517 -1103.1774
+99144.2588030002 3.9650121 -1103.2366
+99145.2588030505 3.9649727 -1103.2959
+99146.2588031008 3.9650121 -1103.3353
+99147.25880315108 3.9649334 -1103.197
+99148.25880320136 3.9649727 -1103.3353
+99149.25880325168 3.9649334 -1103.2959
+99150.25880330196 3.9649727 -1103.2366
+99151.25880335223 3.9650121 -1103.197
+99152.25880340254 3.9650121 -1103.197
+99153.25880345285 3.9648941 -1103.1774
+99154.25880350312 3.9649727 -1103.2959
+99155.2588035534 3.9648941 -1103.2761
+99156.25880360372 3.9649727 -1103.2562
+99157.258803654 3.964776 -1103.1774
+99158.25880370427 3.9648154 -1103.3156
+99159.25880375458 3.9647365 -1103.2959
+99160.25880380489 3.9648154 -1103.2168
+99161.25880385516 3.964776 -1103.1774
+99162.25880390544 3.9647365 -1103.2761
+99163.25880395576 3.964776 -1103.2562
+99164.25880400604 3.9647365 -1103.2366
+99165.25880405631 3.964776 -1103.197
+99166.25880410662 3.964776 -1103.2761
+99167.25880415693 3.9648154 -1103.197
+99168.2588042072 3.9647365 -1103.2562
+99169.25880425748 3.9647365 -1103.2959
+99170.25880430778 3.9646578 -1103.1774
+99171.25880435808 3.9647365 -1103.2168
+99172.25880440835 3.9646578 -1103.2366
+99173.25880445866 3.9646184 -1103.2168
+99174.25880450897 3.9646578 -1103.2562
+99175.25880455924 3.9646184 -1103.3156
+99176.25880460952 3.9645398 -1103.2168
+99177.25880465982 3.9646184 -1103.1576
+99178.25880471012 3.9645791 -1103.2366
+99179.2588047604 3.9645004 -1103.2562
+99180.2588048107 3.9644611 -1103.2562
+99181.258804861 3.9645004 -1103.2761
+99182.25880491128 3.9644611 -1103.2562
+99183.25880496156 3.9645004 -1103.2761
+99184.25880501186 3.9644215 -1103.2168
+99185.25880506216 3.9644611 -1103.2366
+99186.25880511243 3.9644611 -1103.2366
+99187.25880516274 3.9643822 -1103.197
+99188.25880521304 3.9645004 -1103.2168
+99189.25880526332 3.9644215 -1103.2959
+99190.2588053136 3.9642642 -1103.2761
+99191.2588053639 3.9643822 -1103.2168
+99192.2588054142 3.9643035 -1103.197
+99193.25880546447 3.9643822 -1103.2168
+99194.25880551478 3.9643035 -1103.3156
+99195.25880556508 3.9642642 -1103.3353
+99196.25880561536 3.9642642 -1103.3156
+99197.25880566564 3.9643035 -1103.1378
+99198.25880571594 3.9642642 -1103.2366
+99199.25880576624 3.9641066 -1103.1774
+99200.25880581651 3.9641855 -1103.2562
+99201.25880586682 3.9641855 -1103.2168
+99202.25880591712 3.9641066 -1103.2366
+99203.2588059674 3.9641066 -1103.2562
+99204.25880601768 3.9641066 -1103.3156
+99205.25880606798 3.9641461 -1103.1774
+99206.25880611828 3.9641066 -1103.2761
+99207.25880616855 3.9642248 -1103.1576
+99208.25880621886 3.9640672 -1103.2761
+99209.25880626916 3.9641461 -1103.197
+99210.25880631944 3.9640279 -1103.3156
+99211.25880636972 3.9639885 -1103.2562
+99212.25880642002 3.9641066 -1103.2366
+99213.25880647032 3.9640279 -1103.2959
+99214.2588065206 3.9639492 -1103.2562
+99215.2588065709 3.9640279 -1103.2168
+99216.2588066212 3.9639885 -1103.2761
+99217.25880667148 3.9639492 -1103.2366
+99218.25880672176 3.9639885 -1103.2366
+99219.25880677206 3.9639099 -1103.2761
+99220.25880682236 3.9639492 -1103.2366
+99221.25880687265 3.9638705 -1103.2168
+99222.25880692294 3.9639492 -1103.1774
+99223.25880697324 3.9638312 -1103.2366
+99224.25880702352 3.9638705 -1103.2562
+99225.2588070738 3.9637916 -1103.1182
+99226.2588071241 3.9637129 -1103.1378
+99227.2588071744 3.9637523 -1103.3749
+99228.25880722469 3.9637916 -1103.2168
+99229.25880727498 3.9638312 -1103.197
+99230.25880732528 3.9637916 -1103.2168
+99231.25880737556 3.9637129 -1103.2168
+99232.25880742584 3.9637523 -1103.2562
+99233.25880747614 3.9637523 -1103.1576
+99234.25880752644 3.9635949 -1103.2562
+99235.25880757673 3.9637129 -1103.197
+99236.25880762702 3.9636736 -1103.2562
+99237.25880767732 3.9637129 -1103.2366
+99238.2588077276 3.9635949 -1103.197
+99239.25880777788 3.9637129 -1103.2366
+99240.25880782818 3.9636736 -1103.1774
+99241.25880787848 3.9635556 -1103.2761
+99242.25880792877 3.9636343 -1103.1378
+99243.25880797906 3.9636343 -1103.3156
+99244.25880802936 3.9635556 -1103.2959
+99245.25880807964 3.9635556 -1103.2959
+99246.25880812992 3.9635162 -1103.1576
+99247.25880818022 3.9636343 -1103.2562
+99248.25880823052 3.9635162 -1103.2168
+99249.2588082808 3.9635556 -1103.2366
+99250.2588083311 3.9635162 -1103.2959
+99251.2588083814 3.963398 -1103.2761
+99252.25880843168 3.963398 -1103.1774
+99253.25880848196 3.9635162 -1103.2562
+99254.25880853226 3.9636343 -1103.1182
+99255.25880858256 3.9633586 -1103.2366
+99256.25880863285 3.9634767 -1103.2959
+99257.25880868314 3.9634767 -1103.3551
+99258.25880873344 3.9633193 -1103.2562
+99259.25880878372 3.9634767 -1103.2959
+99260.258808834 3.963398 -1103.197
+99261.2588088843 3.9633586 -1103.2562
+99262.2588089346 3.96328 -1103.2761
+99263.25880898489 3.9633586 -1103.197
+99264.25880903518 3.9633586 -1103.2168
+99265.25880908548 3.96328 -1103.2366
+99266.25880913576 3.9632013 -1103.2168
+99267.25880918604 3.96328 -1103.2959
+99268.25880923634 3.9632406 -1103.2366
+99269.25880928664 3.9631617 -1103.2168
+99270.25880933693 3.9631617 -1103.2562
+99271.25880938722 3.9632406 -1103.3353
+99272.25880943752 3.9631617 -1103.2562
+99273.2588094878 3.9631224 -1103.2366
+99274.25880953808 3.9631224 -1103.2366
+99275.25880958838 3.9632406 -1103.1378
+99276.25880963868 3.963083 -1103.2366
+99277.25880968897 3.9631617 -1103.197
+99278.25880973926 3.963083 -1103.1774
+99279.25880978956 3.963083 -1103.2562
+99280.25880983984 3.9630437 -1103.2366
+99281.25880989012 3.9631224 -1103.3353
+99282.25880994042 3.9630437 -1103.197
+99283.25880999072 3.962965 -1103.197
+99284.258810041 3.9630437 -1103.2562
+99285.2588100913 3.9630437 -1103.2562
+99286.2588101416 3.9629257 -1103.3551
+99287.25881019188 3.9630044 -1103.2366
+99288.25881024216 3.9628861 -1103.2168
+99289.25881029246 3.9628861 -1103.3156
+99290.25881034276 3.9629257 -1103.2761
+99291.25881039305 3.9630044 -1103.3551
+99292.25881044334 3.962965 -1103.2562
+99293.25881049364 3.9628074 -1103.2168
+99294.25881054392 3.9628074 -1103.197
+99295.2588105942 3.9629257 -1103.2562
+99296.2588106445 3.9627681 -1103.2562
+99297.2588106948 3.9628468 -1103.1774
+99298.25881074509 3.9628074 -1103.2168
+99299.25881079538 3.9627681 -1103.2168
+99300.25881084568 3.9628468 -1103.3156
+99301.25881089596 3.9627681 -1103.1774
+99302.25881094624 3.9625711 -1103.2168
+99303.25881099654 3.9627287 -1103.197
+99304.25881104684 3.9626501 -1103.2761
+99305.25881109713 3.9628074 -1103.2168
+99306.25881114742 3.9626501 -1103.2959
+99307.25881119772 3.9626894 -1103.1774
+99308.258811248 3.9626894 -1103.197
+99309.25881129828 3.9626107 -1103.2366
+99310.25881134858 3.9626107 -1103.2959
+99311.25881139887 3.9625711 -1103.3156
+99312.25881144917 3.9625711 -1103.2366
+99313.25881149946 3.9625711 -1103.2366
+99314.25881154976 3.9625318 -1103.197
+99315.25881160004 3.9625711 -1103.2366
+99316.25881165032 3.9625318 -1103.2959
+99317.25881170062 3.9624925 -1103.2366
+99318.25881175091 3.9624531 -1103.2761
+99319.2588118012 3.9624531 -1103.197
+99320.2588118515 3.9624925 -1103.2562
+99321.2588119018 3.9624925 -1103.2168
+99322.25881195208 3.9624925 -1103.2761
+99323.25881200236 3.9623744 -1103.2562
+99324.25881205266 3.9624138 -1103.1774
+99325.25881210295 3.9624531 -1103.2562
+99326.25881215325 3.9623744 -1103.2366
+99327.25881220354 3.9622958 -1103.2761
+99328.25881225384 3.9622958 -1103.2562
+99329.25881230412 3.9623744 -1103.2562
+99330.2588123544 3.9623744 -1103.2562
+99331.2588124047 3.9623351 -1103.2959
+99332.258812455 3.9623744 -1103.3156
+99333.25881250529 3.9624138 -1103.197
+99334.25881255558 3.9621775 -1103.2168
+99335.25881260588 3.9622562 -1103.2959
+99336.25881265616 3.9622562 -1103.197
+99337.25881270644 3.9622562 -1103.2959
+99338.25881275674 3.9621775 -1103.2761
+99339.25881280703 3.9621775 -1103.2562
+99340.25881285733 3.9621775 -1103.2366
+99341.25881290762 3.9621382 -1103.2168
+99342.25881295792 3.9622169 -1103.2168
+99343.2588130082 3.9620595 -1103.2168
+99344.25881305848 3.9620595 -1103.2168
+99345.25881310878 3.9621382 -1103.3156
+99346.25881315907 3.9621382 -1103.2562
+99347.25881320937 3.9620595 -1103.1774
+99348.25881325966 3.9620595 -1103.197
+99349.25881330996 3.9620202 -1103.2366
+99350.25881336024 3.9620595 -1103.2761
+99351.25881341052 3.9620595 -1103.197
+99352.25881346082 3.9619808 -1103.197
+99353.25881351111 3.9619019 -1103.2168
+99354.2588135614 3.9619412 -1103.1774
+99355.2588136117 3.9619412 -1103.3353
+99356.258813662 3.9619412 -1103.2562
+99357.25881371228 3.9619808 -1103.2562
+99358.25881376256 3.9619412 -1103.2366
+99359.25881381286 3.9618232 -1103.2761
+99360.25881386315 3.9619019 -1103.2959
+99361.25881391345 3.9619412 -1103.2562
+99362.25881396374 3.9618626 -1103.197
+99363.25881401404 3.9618232 -1103.2562
+99364.25881406432 3.9617839 -1103.2366
+99365.2588141146 3.9617839 -1103.2562
+99366.2588141649 3.9617445 -1103.197
+99367.2588142152 3.9619019 -1103.2761
+99368.25881426549 3.9618232 -1103.2366
+99369.25881431578 3.9618626 -1103.2366
+99370.25881436608 3.9616659 -1103.2959
+99371.25881441636 3.9617052 -1103.3353
+99372.25881446664 3.9616659 -1103.2959
+99373.25881451694 3.9617445 -1103.2959
+99374.25881456723 3.9617052 -1103.1576
+99375.25881461753 3.9617052 -1103.3749
+99376.25881466782 3.961587 -1103.2366
+99377.25881471812 3.961587 -1103.2366
+99378.2588147684 3.9616263 -1103.2761
+99379.25881481868 3.9617052 -1103.2366
+99380.25881486898 3.961587 -1103.197
+99381.25881491927 3.9615083 -1103.3156
+99382.25881496957 3.9615476 -1103.2959
+99383.25881501986 3.961587 -1103.2761
+99384.25881507016 3.9615083 -1103.2562
+99385.25881512044 3.9615476 -1103.2761
+99386.25881517072 3.9614689 -1103.2366
+99387.25881522102 3.9614296 -1103.2366
+99388.25881527131 3.9613903 -1103.2562
+99389.2588153216 3.9615083 -1103.2168
+99390.2588153719 3.9615083 -1103.2761
+99391.2588154222 3.9614689 -1103.2366
+99392.25881547248 3.9614689 -1103.2959
+99393.25881552276 3.9614689 -1103.2959
+99394.25881557306 3.961272 -1103.2366
+99395.25881562335 3.9614689 -1103.0785
+99396.25881567365 3.9613507 -1103.2959
+99397.25881572394 3.9613903 -1103.197
+99398.25881577424 3.9613903 -1103.1774
+99399.25881582452 3.9614296 -1103.2959
+99400.2588158748 3.9613507 -1103.2168
+99401.2588159251 3.9613507 -1103.197
+99402.2588159754 3.961272 -1103.2366
+99403.25881602569 3.961272 -1103.2959
+99404.25881607598 3.9611933 -1103.2959
+99405.25881612628 3.961272 -1103.1576
+99406.25881617656 3.9613507 -1103.2366
+99407.25881622684 3.9612327 -1103.2761
+99408.25881627714 3.961272 -1103.3353
+99409.25881632743 3.9610357 -1103.2168
+99410.25881637773 3.9610357 -1103.2366
+99411.25881642802 3.9611146 -1103.2168
+99412.25881647832 3.9611933 -1103.2168
+99413.2588165286 3.9610753 -1103.2761
+99414.25881657888 3.9610753 -1103.2562
+99415.25881662918 3.961154 -1103.2959
+99416.25881667947 3.9610357 -1103.2168
+99417.25881672977 3.9610753 -1103.2366
+99418.25881678006 3.9609964 -1103.2366
+99419.25881683036 3.9609964 -1103.197
+99420.25881688064 3.9609964 -1103.1774
+99421.25881693092 3.9609177 -1103.2366
+99422.25881698122 3.9609964 -1103.2168
+99423.25881703151 3.9609177 -1103.2761
+99424.2588170818 3.9607997 -1103.2761
+99425.2588171321 3.9610753 -1103.3156
+99426.2588171824 3.9609571 -1103.3551
+99427.25881723268 3.9609571 -1103.2366
+99428.25881728296 3.9609571 -1103.2761
+99429.25881733326 3.9608784 -1103.2168
+99430.25881738355 3.9609177 -1103.197
+99431.25881743385 3.9608784 -1103.2562
+99432.25881748414 3.9609177 -1103.2168
+99433.25881753444 3.960839 -1103.2168
+99434.25881758472 3.9607997 -1103.1774
+99435.258817635 3.9607604 -1103.2562
+99436.2588176853 3.9607208 -1103.2366
+99437.2588177356 3.9607604 -1103.2959
+99438.25881778589 3.9607997 -1103.197
+99439.25881783618 3.9607997 -1103.2959
+99440.25881788648 3.9607604 -1103.2168
+99441.25881793676 3.9607208 -1103.2562
+99442.25881798704 3.9607208 -1103.1576
+99443.25881803734 3.9607208 -1103.197
+99444.25881808763 3.9606421 -1103.2366
+99445.25881813793 3.9606028 -1103.2761
+99446.25881818822 3.9606028 -1103.2366
+99447.25881823852 3.9606028 -1103.2168
+99448.2588182888 3.9607208 -1103.1774
+99449.25881833908 3.9606421 -1103.197
+99450.25881838938 3.9605634 -1103.2562
+99451.25881843967 3.9605241 -1103.2761
+99452.25881848997 3.9604847 -1103.2562
+99453.25881854026 3.9605634 -1103.197
+99454.25881859056 3.9604847 -1103.197
+99455.25881864084 3.9604454 -1103.2761
+99456.25881869112 3.9605634 -1103.1774
+99457.25881874142 3.9605241 -1103.2168
+99458.25881879171 3.9604454 -1103.2168
+99459.258818842 3.9605241 -1103.1576
+99460.2588188923 3.9604454 -1103.1774
+99461.2588189426 3.9604058 -1103.2168
+99462.25881899288 3.9603271 -1103.3353
+99463.25881904316 3.9604454 -1103.197
+99464.25881909346 3.9603665 -1103.2168
+99465.25881914375 3.9603665 -1103.2168
+99466.25881919404 3.9602485 -1103.2366
+99467.25881924434 3.9604058 -1103.2761
+99468.25881929464 3.9602878 -1103.2168
+99469.25881934492 3.9602878 -1103.197
+99470.2588193952 3.9603271 -1103.2959
+99471.2588194455 3.9602878 -1103.2562
+99472.2588194958 3.9602091 -1103.1774
+99473.25881954608 3.9600909 -1103.2761
+99474.25881959638 3.9602091 -1103.2366
+99475.25881964668 3.9602091 -1103.2168
+99476.25881969696 3.9602091 -1103.2959
+99477.25881974724 3.9601698 -1103.2562
+99478.25881979754 3.9602485 -1103.197
+99479.25881984783 3.9600909 -1103.197
+99480.25881989812 3.9601698 -1103.1774
+99481.25881994842 3.9601305 -1103.1774
+99482.25881999872 3.9601305 -1103.2959
+99483.258820049 3.9600909 -1103.2562
+99484.25882009928 3.9601305 -1103.2562
+99485.25882014958 3.9600909 -1103.2366
+99486.25882019987 3.9600122 -1103.2562
+99487.25882025016 3.9600909 -1103.1774
+99488.25882030046 3.9600515 -1103.3156
+99489.25882035076 3.9599335 -1103.2761
+99490.25882040104 3.9599729 -1103.2959
+99491.25882045132 3.9600122 -1103.2959
+99492.25882050162 3.9600122 -1103.2366
+99493.25882055191 3.9598548 -1103.2168
+99494.2588206022 3.9598942 -1103.2562
+99495.2588206525 3.9598155 -1103.2761
+99496.2588207028 3.9600122 -1103.2562
+99497.25882075308 3.9599335 -1103.1774
+99498.25882080336 3.9598942 -1103.2168
+99499.25882085366 3.9599335 -1103.2562
+99500.25882090395 3.9598155 -1103.2168
+99501.25882095424 3.9598548 -1103.1774
+99502.25882100454 3.9598942 -1103.2562
+99503.25882105484 3.9598548 -1103.2168
+99504.25882110512 3.9598548 -1103.1182
+99505.2588211554 3.9597759 -1103.2761
+99506.2588212057 3.9597366 -1103.3156
+99507.258821256 3.9597366 -1103.197
+99508.25882130628 3.9597366 -1103.2366
+99509.25882135658 3.9597759 -1103.2366
+99510.25882140688 3.9597366 -1103.2959
+99511.25882145716 3.9596972 -1103.1774
+99512.25882150744 3.9596972 -1103.2366
+99513.25882155774 3.9595792 -1103.2168
+99514.25882160803 3.9596579 -1103.3156
+99515.25882165832 3.9596972 -1103.2959
+99516.25882170862 3.9596579 -1103.2366
+99517.25882175892 3.9595792 -1103.1774
+99518.2588218092 3.9595003 -1103.2366
+99519.25882185948 3.9596186 -1103.3353
+99520.25882190978 3.9596186 -1103.1774
+99521.25882196007 3.9596186 -1103.1774
+99522.25882201036 3.9595399 -1103.2366
+99523.25882206066 3.9595792 -1103.3551
+99524.25882211096 3.9595399 -1103.2366
+99525.25882216124 3.9595003 -1103.2562
+99526.25882221152 3.9595399 -1103.2959
+99527.25882226182 3.9593823 -1103.2562
+99528.25882231211 3.9593823 -1103.2761
+99529.2588223624 3.9593823 -1103.2168
+99530.2588224127 3.9594216 -1103.2562
+99531.258822463 3.959343 -1103.1576
+99532.25882251328 3.9593823 -1103.2168
+99533.25882256356 3.9593036 -1103.2168
+99534.25882261386 3.9593036 -1103.2168
+99535.25882266415 3.959343 -1103.2168
+99536.25882271444 3.9593036 -1103.2959
+99537.25882276474 3.9593036 -1103.2959
+99538.25882281504 3.9593036 -1103.2366
+99539.25882286532 3.9592643 -1103.2761
+99540.2588229156 3.9592643 -1103.2959
+99541.2588229659 3.9592249 -1103.197
+99542.2588230162 3.9592643 -1103.2366
+99543.25882306648 3.9592643 -1103.2959
+99544.25882311678 3.9593036 -1103.2761
+99545.25882316708 3.9591854 -1103.197
+99546.25882321736 3.9590673 -1103.2168
+99547.25882326764 3.9592249 -1103.3156
+99548.25882331794 3.9591854 -1103.2168
+99549.25882336825 3.959028 -1103.2959
+99550.25882341852 3.9591854 -1103.2366
+99551.25882346882 3.9591067 -1103.2959
+99552.25882351912 3.959028 -1103.1576
+99553.2588235694 3.9591067 -1103.1182
+99554.25882361968 3.9590673 -1103.1774
+99555.25882366998 3.9591067 -1103.2562
+99556.25882372029 3.959028 -1103.2761
+99557.25882377056 3.9590673 -1103.197
+99558.25882382086 3.959028 -1103.3156
+99559.25882387116 3.959028 -1103.1378
+99560.25882392144 3.9590673 -1103.2562
+99561.25882397172 3.9589493 -1103.197
+99562.25882402202 3.95891 -1103.2562
+99563.25882407233 3.9588704 -1103.2562
+99564.2588241226 3.9588704 -1103.2959
+99565.2588241729 3.9588704 -1103.1576
+99566.2588242232 3.9588704 -1103.1774
+99567.25882427348 3.9588704 -1103.3353
+99568.25882432376 3.9588311 -1103.2761
+99569.25882437406 3.9588704 -1103.2761
+99570.25882442437 3.95891 -1103.2366
+99571.25882447464 3.9588704 -1103.2959
+99572.25882452494 3.9588311 -1103.2761
+99573.25882457524 3.9587917 -1103.197
+99574.25882462552 3.9587524 -1103.2959
+99575.2588246758 3.9587524 -1103.2168
+99576.2588247261 3.9587131 -1103.2366
+99577.2588247764 3.9587524 -1103.2562
+99578.25882482668 3.9588311 -1103.1576
+99579.25882487698 3.9587131 -1103.2959
+99580.25882492728 3.9587131 -1103.2761
+99581.25882497756 3.9586344 -1103.2168
+99582.25882502783 3.9587917 -1103.1774
+99583.25882507814 3.9586737 -1103.2168
+99584.25882512845 3.958595 -1103.2366
+99585.25882517872 3.9586344 -1103.2761
+99586.25882522902 3.9585555 -1103.2168
+99587.25882527932 3.9585161 -1103.1378
+99588.2588253296 3.958595 -1103.2168
+99589.25882537987 3.9584768 -1103.2562
+99590.25882543018 3.958595 -1103.2562
+99591.25882548049 3.9585161 -1103.2168
+99592.25882553076 3.9584768 -1103.2168
+99593.25882558106 3.9583588 -1103.2761
+99594.25882563136 3.9585161 -1103.197
+99595.25882568164 3.9583588 -1103.1774
+99596.25882573191 3.9584374 -1103.2562
+99597.25882578222 3.9585161 -1103.2168
+99598.25882583253 3.9584374 -1103.3156
+99599.2588258828 3.9584374 -1103.197
+99600.2588259331 3.9585161 -1103.2168
+99601.2588259834 3.9583981 -1103.2562
+99602.25882603368 3.9583981 -1103.3551
+99603.25882608395 3.9584374 -1103.2562
+99604.25882613426 3.9583194 -1103.2562
+99605.25882618457 3.9582801 -1103.197
+99606.25882623484 3.9582801 -1103.2761
+99607.25882628514 3.9583194 -1103.2562
+99608.25882633544 3.9582801 -1103.197
+99609.25882638572 3.9581618 -1103.2168
+99610.258826436 3.9583194 -1103.2366
+99611.2588264863 3.9583194 -1103.2366
+99612.2588265366 3.9580438 -1103.2366
+99613.25882658688 3.9582012 -1103.197
+99614.25882663716 3.9582405 -1103.2761
+99615.25882668748 3.9581225 -1103.2168
+99616.25882673776 3.9582012 -1103.2562
+99617.25882678803 3.9581225 -1103.2761
+99618.25882683834 3.9581618 -1103.2168
+99619.25882688865 3.9580832 -1103.2562
+99620.25882693892 3.9580832 -1103.2168
+99621.2588269892 3.9580438 -1103.2562
+99622.25882703952 3.9580045 -1103.2366
+99623.2588270898 3.9580438 -1103.2959
+99624.25882714007 3.9580438 -1103.2959
+99625.25882719038 3.9580438 -1103.197
+99626.25882724069 3.9580438 -1103.1774
+99627.25882729096 3.9579651 -1103.2366
+99628.25882734124 3.9579651 -1103.2959
+99629.25882739156 3.9580438 -1103.197
+99630.25882744184 3.9579256 -1103.2562
+99631.25882749211 3.9580438 -1103.197
+99632.25882754242 3.9580832 -1103.2366
+99633.25882759273 3.9579256 -1103.2562
+99634.258827643 3.9580045 -1103.1774
+99635.25882769328 3.9579256 -1103.2761
+99636.2588277436 3.9579651 -1103.2761
+99637.25882779388 3.9577682 -1103.197
+99638.25882784415 3.9578469 -1103.2366
+99639.25882789446 3.9577682 -1103.2761
+99640.25882794477 3.9578469 -1103.197
+99641.25882799504 3.9578469 -1103.2562
+99642.25882804532 3.9577682 -1103.2562
+99643.25882809564 3.9579256 -1103.2366
+99644.25882814592 3.9577682 -1103.2366
+99645.2588281962 3.9577682 -1103.2761
+99646.2588282465 3.9577289 -1103.3156
+99647.2588282968 3.9576895 -1103.2959
+99648.25882834708 3.9576499 -1103.1774
+99649.25882839736 3.9577289 -1103.1576
+99650.25882844768 3.9576895 -1103.197
+99651.25882849796 3.9577289 -1103.2959
+99652.25882854823 3.9576895 -1103.2168
+99653.25882859854 3.9576499 -1103.3353
+99654.25882864885 3.9576499 -1103.3156
+99655.25882869912 3.9576895 -1103.2562
+99656.2588287494 3.9575713 -1103.2168
+99657.25882879972 3.9576499 -1103.2366
+99658.25882885 3.9576499 -1103.2959
+99659.25882890027 3.9575713 -1103.2761
+99660.25882895058 3.9575319 -1103.2562
+99661.25882900089 3.9575319 -1103.1774
+99662.25882905116 3.9574926 -1103.2761
+99663.25882910144 3.9574533 -1103.2761
+99664.25882915176 3.9574926 -1103.1774
+99665.25882920204 3.9574926 -1103.1774
+99666.25882925231 3.9574533 -1103.2562
+99667.25882930262 3.9574533 -1103.1774
+99668.25882935293 3.9574533 -1103.2366
+99669.2588294032 3.9574926 -1103.2168
+99670.25882945348 3.9573746 -1103.2959
+99671.2588295038 3.9574139 -1103.2168
+99672.25882955408 3.957335 -1103.2562
+99673.25882960435 3.957335 -1103.2761
+99674.25882965466 3.9574139 -1103.2168
+99675.25882970497 3.9573746 -1103.2562
+99676.25882975524 3.957335 -1103.3551
+99677.25882980552 3.9572563 -1103.197
+99678.25882985584 3.9572957 -1103.2366
+99679.25882990612 3.957217 -1103.2761
+99680.2588299564 3.9571776 -1103.197
+99681.2588300067 3.9572563 -1103.2366
+99682.258830057 3.957217 -1103.2168
+99683.25883010728 3.9571776 -1103.1576
+99684.25883015756 3.957099 -1103.2168
+99685.25883020788 3.9572563 -1103.1576
+99686.25883025816 3.95702 -1103.197
+99687.25883030843 3.957217 -1103.1378
+99688.25883035874 3.9570596 -1103.197
+99689.25883040905 3.957217 -1103.2168
+99690.25883045932 3.957099 -1103.2562
+99691.2588305096 3.9570596 -1103.2562
+99692.25883055992 3.9570596 -1103.1774
+99693.2588306102 3.9569414 -1103.3156
+99694.25883066047 3.957099 -1103.197
+99695.25883071078 3.957099 -1103.2562
+99696.25883076109 3.95702 -1103.2761
+99697.25883081136 3.95702 -1103.2366
+99698.25883086164 3.9570596 -1103.2366
+99699.25883091196 3.9569414 -1103.1774
+99700.25883096224 3.9569414 -1103.1576
+99701.25883101251 3.9569414 -1103.2761
+99702.25883106282 3.9569807 -1103.2366
+99703.25883111313 3.956902 -1103.2366
+99704.2588311634 3.9568233 -1103.197
+99705.25883121368 3.9568627 -1103.197
+99706.258831264 3.956902 -1103.2959
+99707.25883131428 3.956902 -1103.1774
+99708.25883136455 3.956784 -1103.2366
+99709.25883141486 3.9568233 -1103.2366
+99710.25883146517 3.956902 -1103.1774
+99711.25883151544 3.9568233 -1103.2168
+99712.25883156572 3.9567447 -1103.197
+99713.25883161604 3.956784 -1103.2562
+99714.25883166632 3.956784 -1103.2959
+99715.2588317166 3.9567447 -1103.2366
+99716.2588317669 3.9568233 -1103.2761
+99717.2588318172 3.9567051 -1103.2761
+99718.25883186748 3.9567447 -1103.2168
+99719.25883191776 3.9567051 -1103.2761
+99720.25883196808 3.9567051 -1103.1774
+99721.25883201836 3.9565871 -1103.2761
+99722.25883206863 3.9565871 -1103.2366
+99723.25883211894 3.9566658 -1103.1774
+99724.25883216925 3.9566264 -1103.2168
+99725.25883221952 3.9566264 -1103.197
+99726.2588322698 3.9565871 -1103.197
+99727.25883232012 3.9567051 -1103.197
+99728.2588323704 3.9566264 -1103.197
+99729.25883242067 3.9565084 -1103.2366
+99730.25883247098 3.9565084 -1103.2168
+99731.25883252129 3.9564297 -1103.2959
+99732.25883257156 3.9563901 -1103.1774
+99733.25883262184 3.9565871 -1103.2959
+99734.25883267216 3.9563901 -1103.2959
+99735.25883272244 3.9565084 -1103.2168
+99736.25883277271 3.9564691 -1103.2959
+99737.25883282302 3.9564297 -1103.1378
+99738.25883287333 3.9564691 -1103.197
+99739.2588329236 3.9565477 -1103.2562
+99740.25883297388 3.9564691 -1103.3156
+99741.2588330242 3.9563508 -1103.2366
+99742.25883307448 3.9563901 -1103.1576
+99743.25883312475 3.9565084 -1103.1774
+99744.25883317506 3.9563115 -1103.2366
+99745.25883322537 3.9563115 -1103.2761
+99746.25883327564 3.9563901 -1103.2168
+99747.25883332592 3.9563508 -1103.2562
+99748.25883337624 3.9562328 -1103.3749
+99749.25883342652 3.9562328 -1103.2168
+99750.2588334768 3.9563901 -1103.2562
+99751.2588335271 3.9562328 -1103.2168
+99752.2588335774 3.9562328 -1103.2761
+99753.25883362768 3.9561934 -1103.197
+99754.25883367796 3.9562721 -1103.2168
+99755.25883372828 3.9561934 -1103.2168
+99756.25883377856 3.9561541 -1103.197
+99757.25883382883 3.9561541 -1103.2761
+99758.25883387914 3.9561541 -1103.3353
+99759.25883392945 3.9560752 -1103.2761
+99760.25883397972 3.9561148 -1103.2562
+99761.25883403 3.9561148 -1103.2562
+99762.25883408032 3.9560359 -1103.197
+99763.2588341306 3.9561148 -1103.2366
+99764.25883418087 3.9559178 -1103.3353
+99765.25883423118 3.9561541 -1103.2168
+99766.25883428149 3.9559572 -1103.2366
+99767.25883433176 3.9559965 -1103.2366
+99768.25883438204 3.9560359 -1103.1182
+99769.25883443234 3.9559178 -1103.2168
+99770.25883448264 3.9559965 -1103.2366
+99771.25883453291 3.9559572 -1103.2761
+99772.25883458322 3.9559572 -1103.2761
+99773.25883463353 3.9559178 -1103.2959
+99774.2588346838 3.9559572 -1103.197
+99775.25883473408 3.9558392 -1103.2168
+99776.25883478438 3.9558785 -1103.1774
+99777.25883483468 3.9557996 -1103.2761
+99778.25883488495 3.9558785 -1103.197
+99779.25883493526 3.9558785 -1103.197
+99780.25883498557 3.9559178 -1103.197
+99781.25883503584 3.9557602 -1103.2168
+99782.25883508612 3.9557996 -1103.1774
+99783.25883513642 3.9557602 -1103.1576
+99784.25883518672 3.9557209 -1103.2562
+99785.258835237 3.9557209 -1103.197
+99786.2588352873 3.9557209 -1103.2168
+99787.2588353376 3.9556816 -1103.2761
+99788.25883538788 3.9556816 -1103.2168
+99789.25883543816 3.9556422 -1103.2562
+99790.25883548846 3.9556816 -1103.2761
+99791.25883553876 3.9556816 -1103.3156
+99792.25883558903 3.9556816 -1103.3156
+99793.25883563934 3.9556029 -1103.197
+99794.25883568964 3.9556816 -1103.1576
+99795.25883573992 3.9556422 -1103.197
+99796.2588357902 3.9556029 -1103.2366
+99797.2588358405 3.9555242 -1103.2562
+99798.2588358908 3.9556029 -1103.2168
+99799.25883594107 3.9554846 -1103.2562
+99800.25883599138 3.9556029 -1103.2761
+99801.25883604168 3.9554453 -1103.2366
+99802.25883609196 3.9555242 -1103.2168
+99803.25883614224 3.9557209 -1103.2562
+99804.25883619254 3.955406 -1103.2959
+99805.25883624284 3.9554453 -1103.2168
+99806.25883629311 3.955406 -1103.197
+99807.25883634342 3.9554846 -1103.197
+99808.25883639372 3.9554846 -1103.2959
+99809.258836444 3.9554453 -1103.2761
+99810.25883649428 3.955406 -1103.1576
+99811.25883654458 3.955406 -1103.1576
+99812.25883659488 3.9553666 -1103.197
+99813.25883664515 3.9553273 -1103.2959
+99814.25883669546 3.9553666 -1103.1774
+99815.25883674576 3.9553273 -1103.2168
+99816.25883679604 3.9553666 -1103.2562
+99817.25883684632 3.9553273 -1103.2168
+99818.25883689662 3.9552486 -1103.2761
+99819.25883694692 3.9553666 -1103.2761
+99820.2588369972 3.9553666 -1103.197
+99821.2588370475 3.9552879 -1103.1774
+99822.2588370978 3.9552093 -1103.2366
+99823.25883714808 3.9552093 -1103.2168
+99824.25883719836 3.9552093 -1103.2366
+99825.25883724866 3.9552093 -1103.3156
+99826.25883729896 3.9551303 -1103.2761
+99827.25883734925 3.9552093 -1103.2168
+99828.25883739954 3.9551303 -1103.2366
+99829.25883744984 3.9551697 -1103.197
+99830.25883750012 3.9551303 -1103.197
+99831.2588375504 3.9550517 -1103.2562
+99832.2588376007 3.9550517 -1103.1774
+99833.258837651 3.955091 -1103.1576
+99834.25883770129 3.955091 -1103.2168
+99835.25883775158 3.955091 -1103.2562
+99836.25883780188 3.954973 -1103.197
+99837.25883785216 3.954973 -1103.197
+99838.25883790244 3.9550123 -1103.2366
+99839.25883795274 3.954973 -1103.2168
+99840.25883800304 3.9550123 -1103.2761
+99841.25883805333 3.954973 -1103.2366
+99842.25883810362 3.9548943 -1103.2959
+99843.25883815392 3.955091 -1103.1774
+99844.2588382042 3.9548943 -1103.2562
+99845.25883825448 3.9548943 -1103.2366
+99846.25883830478 3.9548154 -1103.2366
+99847.25883835508 3.9548547 -1103.3156
+99848.25883840537 3.9548547 -1103.3353
+99849.25883845566 3.9548154 -1103.2168
+99850.25883850596 3.9548943 -1103.2168
+99851.25883855624 3.9546974 -1103.2168
+99852.25883860652 3.954776 -1103.3156
+99853.25883865682 3.9547367 -1103.2168
+99854.25883870712 3.9548154 -1103.2168
+99855.2588387574 3.9546974 -1103.197
+99856.2588388077 3.9547367 -1103.2562
+99857.258838858 3.9546974 -1103.2562
+99858.25883890828 3.9547367 -1103.2366
+99859.25883895856 3.954658 -1103.1774
+99860.25883900886 3.9546974 -1103.2562
+99861.25883905916 3.9546974 -1103.2761
+99862.25883910945 3.9546974 -1103.1378
+99863.25883915974 3.9545794 -1103.2366
+99864.25883921004 3.9546974 -1103.2562
+99865.25883926032 3.954658 -1103.2562
+99866.2588393106 3.9545398 -1103.2366
+99867.2588393609 3.9546187 -1103.2562
+99868.2588394112 3.9546187 -1103.2562
+99869.25883946149 3.9544611 -1103.1576
+99870.25883951178 3.9545794 -1103.2761
+99871.25883956208 3.9545004 -1103.1576
+99872.25883961236 3.9544611 -1103.2366
+99873.25883966264 3.9544611 -1103.1576
+99874.25883971294 3.9544611 -1103.2959
+99875.25883976324 3.9544218 -1103.2761
+99876.25883981353 3.9545004 -1103.2366
+99877.25883986382 3.9544218 -1103.2562
+99878.25883991412 3.9545004 -1103.1774
+99879.2588399644 3.9545004 -1103.197
+99880.25884001468 3.9543037 -1103.1774
+99881.25884006498 3.9544611 -1103.1774
+99882.25884011528 3.9543824 -1103.2761
+99883.25884016557 3.9543824 -1103.2761
+99884.25884021586 3.9543037 -1103.2366
+99885.25884026616 3.9543824 -1103.2761
+99886.25884031644 3.9542644 -1103.2168
+99887.25884036672 3.9543037 -1103.1576
+99888.25884041702 3.9543431 -1103.2168
+99889.25884046732 3.9542644 -1103.197
+99890.2588405176 3.9542644 -1103.2562
+99891.2588405679 3.9542248 -1103.2366
+99892.2588406182 3.9541461 -1103.2168
+99893.25884066848 3.9541855 -1103.1774
+99894.25884071876 3.9541855 -1103.2761
+99895.25884076906 3.9541461 -1103.2562
+99896.25884081936 3.9542248 -1103.2959
+99897.25884086965 3.9541461 -1103.197
+99898.25884091994 3.9541461 -1103.2562
+99899.25884097024 3.9541068 -1103.2562
+99900.25884102052 3.9541068 -1103.2168
+99901.2588410708 3.9540675 -1103.2562
+99902.2588411211 3.9540675 -1103.2761
+99903.2588411714 3.9541068 -1103.2366
+99904.25884122169 3.9539492 -1103.1576
+99905.25884127198 3.9540281 -1103.2366
+99906.25884132228 3.9539888 -1103.2366
+99907.25884137256 3.9539888 -1103.2761
+99908.25884142284 3.9539888 -1103.197
+99909.25884147314 3.9540281 -1103.2761
+99910.25884152343 3.9539099 -1103.2168
+99911.25884157373 3.9539888 -1103.1774
+99912.25884162402 3.9538705 -1103.2761
+99913.25884167432 3.9537525 -1103.1774
+99914.2588417246 3.9539099 -1103.197
+99915.25884177488 3.9539888 -1103.2761
+99916.25884182518 3.9539099 -1103.3156
+99917.25884187547 3.9538312 -1103.2366
+99918.25884192577 3.9538705 -1103.3156
+99919.25884197606 3.9539099 -1103.2761
+99920.25884202636 3.9537132 -1103.197
+99921.25884207664 3.9539099 -1103.2562
+99922.25884212692 3.9538312 -1103.2959
+99923.25884217722 3.9536738 -1103.1182
+99924.25884222751 3.9537525 -1103.2562
+99925.2588422778 3.9536738 -1103.2366
+99926.2588423281 3.9537525 -1103.2562
+99927.2588423784 3.9537919 -1103.197
+99928.25884242868 3.9537525 -1103.2562
+99929.25884247896 3.9535949 -1103.3156
+99930.25884252926 3.9537525 -1103.2168
+99931.25884257955 3.9536343 -1103.2959
+99932.25884262985 3.9536738 -1103.3551
+99933.25884268014 3.9535949 -1103.2562
+99934.25884273044 3.9537132 -1103.2959
+99935.25884278072 3.9536738 -1103.1182
+99936.258842831 3.9536343 -1103.2959
+99937.2588428813 3.9535949 -1103.197
+99938.2588429316 3.9535162 -1103.197
+99939.25884298189 3.9534769 -1103.197
+99940.25884303218 3.9535556 -1103.2761
+99941.25884308248 3.9535162 -1103.2761
+99942.25884313276 3.9534769 -1103.2366
+99943.25884318304 3.9535162 -1103.1774
+99944.25884323334 3.9534769 -1103.2761
+99945.25884328363 3.9535162 -1103.2959
+99946.25884333393 3.9535162 -1103.2562
+99947.25884338422 3.9533982 -1103.2562
+99948.25884343452 3.9534376 -1103.2761
+99949.2588434848 3.9533193 -1103.2959
+99950.25884353508 3.9533589 -1103.197
+99951.25884358538 3.9534376 -1103.2366
+99952.25884363567 3.9533193 -1103.1774
+99953.25884368597 3.9534376 -1103.2366
+99954.25884373626 3.9533589 -1103.2168
+99955.25884378656 3.9532013 -1103.3353
+99956.25884383684 3.9532406 -1103.3551
+99957.25884388712 3.9532013 -1103.1774
+99958.25884393742 3.95328 -1103.2562
+99959.25884398771 3.95328 -1103.2562
+99960.258844038 3.95328 -1103.2761
+99961.2588440883 3.9532406 -1103.3353
+99962.2588441386 3.9532013 -1103.2168
+99963.25884418888 3.9532013 -1103.197
+99964.25884423916 3.9531226 -1103.2366
+99965.25884428946 3.953162 -1103.197
+99966.25884433975 3.9531226 -1103.2366
+99967.25884439005 3.9531226 -1103.2562
+99968.25884444034 3.9531226 -1103.2959
+99969.25884449064 3.953162 -1103.2366
+99970.25884454092 3.9530439 -1103.2168
+99971.2588445912 3.9530833 -1103.2366
+99972.2588446415 3.9530439 -1103.3156
+99973.2588446918 3.9530833 -1103.197
+99974.25884474209 3.9530044 -1103.2761
+99975.25884479238 3.9531226 -1103.2959
+99976.25884484268 3.9531226 -1103.2562
+99977.25884489296 3.9529257 -1103.2562
+99978.25884494324 3.9530044 -1103.197
+99979.25884499354 3.952965 -1103.2761
+99980.25884504383 3.9528863 -1103.2959
+99981.25884509413 3.9530044 -1103.2562
+99982.25884514442 3.952847 -1103.2366
+99983.25884519472 3.9529257 -1103.2761
+99984.258845245 3.9528077 -1103.2562
+99985.25884529528 3.9529257 -1103.9081
+99986.25884534558 3.952847 -1104.4612
+99987.25884539587 3.952965 -1104.54
+99988.25884544617 3.952847 -1104.4808
+99989.25884549646 3.952847 -1101.854
+99990.25884554676 3.952729 -1099.8988
+99991.25884559704 3.9526894 -1099.958
+99992.25884564732 3.952847 -1099.9976
+99993.25884569762 3.9526894 -1099.9976
+99994.25884574791 3.952729 -1105.2511
+99995.2588457982 3.9526107 -1107.7198
+99996.2588458485 3.9526107 -1107.7002
+99997.2588458988 3.9526501 -1107.6804
+99998.25884594908 3.9527683 -1101.3406
+99999.25884599936 3.9526501 -1099.5236
+100000.2588460497 3.9526894 -1099.5631
+100001.2588461 3.9526501 -1099.5631
+100002.2588461502 3.9526107 -1102.6046
+100003.2588462005 3.9526107 -1102.0912
+100004.2588462508 3.9525714 -1102.1504
+100005.2588463011 3.9526501 -1102.1306
+100006.2588463514 3.9526107 -1102.0912
+100007.2588464017 3.9525321 -1103.3353
+100008.258846452 3.9526107 -1103.4143
+100009.2588465023 3.9525714 -1103.4736
+100010.2588465526 3.9524927 -1103.3945
+100011.2588466029 3.9524927 -1103.4934
+100012.2588466532 3.9524927 -1103.7303
+100013.2588467035 3.9525321 -1103.8093
+100014.2588467537 3.9525321 -1103.6711
+100015.258846804 3.9524927 -1103.197
+100016.2588468543 3.952414 -1103.2761
+100017.2588469046 3.9524534 -1103.1576
+100018.2588469549 3.952414 -1103.2168
+100019.2588470052 3.9523745 -1103.2168
+100020.2588470555 3.9523745 -1103.1576
+100021.2588471058 3.9523745 -1103.0785
+100022.2588471561 3.9523745 -1103.1576
+100023.2588472064 3.9523745 -1103.0588
+100024.2588472567 3.9523351 -1103.2562
+100025.2588473069 3.9523351 -1103.2366
+100026.2588473572 3.9523745 -1103.2562
+100027.2588474075 3.9523351 -1103.3156
+100028.2588474578 3.952414 -1103.3156
+100029.2588475081 3.9523351 -1103.0785
+100030.2588475584 3.9522564 -1103.4143
+100031.2588476087 3.9522958 -1103.1576
+100032.258847659 3.9522171 -1103.3945
+100033.2588477093 3.9522564 -1103.2168
+100034.2588477596 3.9521384 -1103.2168
+100035.2588478099 3.9522171 -1103.3551
+100036.2588478602 3.9521384 -1103.1774
+100037.2588479104 3.9522171 -1103.1774
+100038.2588479607 3.9521778 -1103.2168
+100039.258848011 3.9521778 -1103.2168
+100040.2588480613 3.9521384 -1103.2366
+100041.2588481116 3.9521384 -1103.1182
+100042.2588481619 3.9520595 -1103.2761
+100043.2588482122 3.9520988 -1103.2761
+100044.2588482625 3.9520988 -1103.2761
+100045.2588483128 3.9520595 -1103.2366
+100046.2588483631 3.9520202 -1103.3353
+100047.2588484134 3.9519415 -1103.2959
+100048.2588484637 3.9520202 -1103.2168
+100049.2588485139 3.9519808 -1103.2562
+100050.2588485642 3.9519808 -1103.2562
+100051.2588486145 3.9519808 -1103.2761
+100052.2588486648 3.9519808 -1103.197
+100053.2588487151 3.9520202 -1103.2366
+100054.2588487654 3.9519808 -1103.3156
+100055.2588488157 3.9519022 -1103.2562
+100056.258848866 3.9519415 -1103.2959
+100057.2588489163 3.9519022 -1103.2761
+100058.2588489666 3.9519022 -1103.2959
+100059.2588490169 3.9518235 -1103.2366
+100060.2588490671 3.9517839 -1103.197
+100061.2588491174 3.9517839 -1103.2562
+100062.2588491677 3.9518628 -1103.2562
+100063.258849218 3.9517839 -1103.1774
+100064.2588492683 3.9518628 -1103.2562
+100065.2588493186 3.9518235 -1103.197
+100066.2588493689 3.9517839 -1103.2562
+100067.2588494192 3.9518628 -1103.197
+100068.2588494695 3.9517446 -1103.2168
+100069.2588495198 3.9516659 -1103.1576
+100070.2588495701 3.9516265 -1103.2761
+100071.2588496204 3.9516659 -1103.2959
+100072.2588496706 3.9515479 -1103.1576
+100073.2588497209 3.9516265 -1103.3353
+100074.2588497712 3.9517052 -1103.197
+100075.2588498215 3.9516265 -1103.1774
+100076.2588498718 3.9516265 -1103.2562
+100077.2588499221 3.9515872 -1103.2366
+100078.2588499724 3.9515872 -1103.2168
+100079.2588500227 3.9515872 -1103.2168
+100080.258850073 3.9515872 -1103.197
+100081.2588501233 3.9515872 -1103.197
+100082.2588501736 3.9515085 -1103.2366
+100083.2588502239 3.9516265 -1103.3156
+100084.2588502741 3.9515872 -1103.2562
+100085.2588503244 3.9514296 -1103.2761
+100086.2588503747 3.9514296 -1103.2366
+100087.258850425 3.9515479 -1103.1576
+100088.2588504753 3.9513509 -1103.3156
+100089.2588505256 3.9515479 -1103.3156
+100090.2588505759 3.9514296 -1103.1378
+100091.2588506262 3.9513509 -1103.2168
+100092.2588506765 3.9514689 -1103.2562
+100093.2588507268 3.9513509 -1103.1576
+100094.2588507771 3.9513116 -1103.2168
+100095.2588508273 3.9513116 -1103.2168
+100096.2588508776 3.9513116 -1103.2366
+100097.2588509279 3.9513509 -1103.197
+100098.2588509782 3.9513509 -1103.197
+100099.2588510285 3.9512722 -1103.2366
+100100.2588510788 3.9512722 -1103.2562
+100101.2588511291 3.9511936 -1103.2366
+100102.2588511794 3.9512722 -1103.2366
+100103.2588512297 3.9513509 -1103.2168
+100104.25885128 3.9513116 -1103.2168
+100105.2588513303 3.951154 -1103.2366
+100106.2588513806 3.9511147 -1103.197
+100107.2588514308 3.9511936 -1103.2168
+100108.2588514811 3.9511147 -1103.2366
+100109.2588515314 3.9512329 -1103.2168
+100110.2588515817 3.9511147 -1103.2761
+100111.258851632 3.9511936 -1103.2562
+100112.2588516823 3.9510753 -1103.1576
+100113.2588517326 3.9510753 -1103.2761
+100114.2588517829 3.9510753 -1103.2959
+100115.2588518332 3.9511147 -1103.2366
+100116.2588518835 3.9511147 -1103.2366
+100117.2588519338 3.9509966 -1103.2366
+100118.2588519841 3.9509966 -1103.2562
+100119.2588520343 3.9509573 -1103.2959
+100120.2588520846 3.9509966 -1103.2562
+100121.2588521349 3.9508786 -1103.2366
+100122.2588521852 3.9509573 -1103.2959
+100123.2588522355 3.9509573 -1103.2959
+100124.2588522858 3.9509573 -1103.197
+100125.2588523361 3.950839 -1103.2366
+100126.2588523864 3.9509573 -1103.3156
+100127.2588524367 3.9508786 -1103.1774
+100128.258852487 3.9508786 -1103.2562
+100129.2588525373 3.9508786 -1103.3156
+100130.2588525875 3.950839 -1103.2562
+100131.2588526378 3.9508786 -1103.2562
+100132.2588526881 3.9508786 -1103.2562
+100133.2588527384 3.9508786 -1103.2168
+100134.2588527887 3.9507604 -1103.197
+100135.258852839 3.950839 -1103.1378
+100136.2588528893 3.9507604 -1103.2761
+100137.2588529396 3.9507604 -1103.2562
+100138.2588529899 3.9507604 -1103.1774
+100139.2588530402 3.9507604 -1103.1774
+100140.2588530905 3.950721 -1103.197
+100141.2588531408 3.9507604 -1103.2562
+100142.258853191 3.950721 -1103.2562
+100143.2588532413 3.950603 -1103.1774
+100144.2588532916 3.950603 -1103.2366
+100145.2588533419 3.9506817 -1103.197
+100146.2588533922 3.9506423 -1103.2168
+100147.2588534425 3.9505634 -1103.1576
+100148.2588534928 3.950603 -1103.2761
+100149.2588535431 3.950603 -1103.2959
+100150.2588535934 3.9505634 -1103.1774
+100151.2588536437 3.9505634 -1103.1576
+100152.258853694 3.9504454 -1103.2168
+100153.2588537443 3.9505634 -1103.2168
+100154.2588537945 3.9504848 -1103.2562
+100155.2588538448 3.9505241 -1103.2562
+100156.2588538951 3.9504454 -1103.2959
+100157.2588539454 3.9505241 -1103.2366
+100158.2588539957 3.9504848 -1103.2168
+100159.258854046 3.9504454 -1103.3353
+100160.2588540963 3.9503667 -1103.2168
+100161.2588541466 3.9504848 -1103.2562
+100162.2588541969 3.9503667 -1103.2168
+100163.2588542472 3.9503667 -1103.2168
+100164.2588542975 3.9503667 -1103.2761
+100165.2588543477 3.9504454 -1103.2366
+100166.258854398 3.9503667 -1103.2168
+100167.2588544483 3.9503667 -1103.2366
+100168.2588544986 3.9502091 -1103.2168
+100169.2588545489 3.9503667 -1103.2761
+100170.2588545992 3.9502881 -1103.2168
+100171.2588546495 3.9502881 -1103.2761
+100172.2588546998 3.9502485 -1103.2562
+100173.2588547501 3.9502881 -1103.2366
+100174.2588548004 3.9502485 -1103.2168
+100175.2588548507 3.9502485 -1103.2168
+100176.258854901 3.9501698 -1103.3353
+100177.2588549512 3.9502485 -1103.2562
+100178.2588550015 3.9500518 -1103.1774
+100179.2588550518 3.9501698 -1103.2761
+100180.2588551021 3.9501305 -1103.197
+100181.2588551524 3.9502091 -1103.2761
+100182.2588552027 3.9501698 -1103.197
+100183.258855253 3.9500518 -1103.3551
+100184.2588553033 3.9501305 -1103.197
+100185.2588553536 3.9501305 -1103.1576
+100186.2588554039 3.9500124 -1103.3353
+100187.2588554542 3.9499731 -1103.2959
+100188.2588555045 3.9500518 -1103.2168
+100189.2588555547 3.9499731 -1103.2761
+100190.258855605 3.9499731 -1103.2168
+100191.2588556553 3.9499335 -1103.2168
+100192.2588557056 3.9500518 -1103.2168
+100193.2588557559 3.9499335 -1103.2959
+100194.2588558062 3.9498942 -1103.2761
+100195.2588558565 3.9499335 -1103.2761
+100196.2588559068 3.9499731 -1103.2959
+100197.2588559571 3.9499731 -1103.2366
+100198.2588560074 3.9498549 -1103.2366
+100199.2588560577 3.9498942 -1103.197
+100200.2588561079 3.9498942 -1103.197
+100201.2588561582 3.9498155 -1103.2761
+100202.2588562085 3.9499731 -1103.1774
+100203.2588562588 3.9498155 -1103.2366
+100204.2588563091 3.9497762 -1103.1774
+100205.2588563594 3.9498155 -1103.197
+100206.2588564097 3.9497368 -1103.3353
+100207.25885646 3.9498155 -1103.2562
+100208.2588565103 3.9498155 -1103.2959
+100209.2588565606 3.9498155 -1103.2562
+100210.2588566109 3.9497368 -1103.1774
+100211.2588566612 3.9496975 -1103.2168
+100212.2588567114 3.9496975 -1103.2562
+100213.2588567617 3.9496582 -1103.2366
+100214.258856812 3.9496186 -1103.1774
+100215.2588568623 3.9495792 -1103.2366
+100216.2588569126 3.9496582 -1103.2168
+100217.2588569629 3.9495399 -1103.197
+100218.2588570132 3.9496186 -1103.1774
+100219.2588570635 3.9496186 -1103.2562
+100220.2588571138 3.9495006 -1103.2168
+100221.2588571641 3.9495792 -1103.2761
+100222.2588572144 3.9495399 -1103.2366
+100223.2588572646 3.9495399 -1103.197
+100224.2588573149 3.9495792 -1103.3156
+100225.2588573652 3.9494219 -1103.1378
+100226.2588574155 3.9495006 -1103.197
+100227.2588574658 3.9494612 -1103.2366
+100228.2588575161 3.9493825 -1103.2959
+100229.2588575664 3.9494219 -1103.2168
+100230.2588576167 3.9493432 -1103.197
+100231.258857667 3.9493825 -1103.1774
+100232.2588577173 3.9494219 -1103.2959
+100233.2588577676 3.9494219 -1103.3749
+100234.2588578179 3.9493432 -1103.2761
+100235.2588578681 3.9493036 -1103.2366
+100236.2588579184 3.9494612 -1103.2959
+100237.2588579687 3.9493825 -1103.2366
+100238.258858019 3.9493825 -1103.2366
+100239.2588580693 3.9493036 -1103.2761
+100240.2588581196 3.9492249 -1103.2761
+100241.2588581699 3.9492249 -1103.1576
+100242.2588582202 3.9493036 -1103.1774
+100243.2588582705 3.9492643 -1103.2366
+100244.2588583208 3.9491856 -1103.2562
+100245.2588583711 3.9492249 -1103.2562
+100246.2588584214 3.9491856 -1103.2562
+100247.2588584716 3.9492249 -1103.2366
+100248.2588585219 3.9491856 -1103.2366
+100249.2588585722 3.9491463 -1103.2168
+100250.2588586225 3.9491463 -1103.2959
+100251.2588586728 3.9491856 -1103.1576
+100252.2588587231 3.9490283 -1103.2562
+100253.2588587734 3.9490283 -1103.3551
+100254.2588588237 3.9489887 -1103.2761
+100255.258858874 3.9490676 -1103.197
+100256.2588589243 3.9490676 -1103.2366
+100257.2588589746 3.9489493 -1103.197
+100258.2588590248 3.9490676 -1103.2562
+100259.2588590751 3.94891 -1103.2761
+100260.2588591254 3.9489493 -1103.2168
+100261.2588591757 3.9490676 -1103.2562
+100262.258859226 3.9490676 -1103.2761
+100263.2588592763 3.9489887 -1103.2959
+100264.2588593266 3.9489493 -1103.197
+100265.2588593769 3.9489493 -1103.197
+100266.2588594272 3.94891 -1103.2562
+100267.2588594775 3.94891 -1103.1774
+100268.2588595278 3.9488313 -1103.2168
+100269.2588595781 3.9488707 -1103.2366
+100270.2588596283 3.9489493 -1103.2366
+100271.2588596786 3.9488707 -1103.2761
+100272.2588597289 3.948792 -1103.2366
+100273.2588597792 3.9488313 -1103.3156
+100274.2588598295 3.9488707 -1103.2761
+100275.2588598798 3.9487131 -1103.2168
+100276.2588599301 3.948792 -1103.1774
+100277.2588599804 3.9487526 -1103.2168
+100278.2588600307 3.9487131 -1103.2959
+100279.258860081 3.9487526 -1103.2761
+100280.2588601313 3.9486737 -1103.1774
+100281.2588601816 3.9487131 -1103.2761
+100282.2588602318 3.9487131 -1103.2562
+100283.2588602821 3.9487131 -1103.2562
+100284.2588603324 3.9486737 -1103.2562
+100285.2588603827 3.9486737 -1103.2562
+100286.258860433 3.9486344 -1103.2959
+100287.2588604833 3.9485164 -1103.2761
+100288.2588605336 3.9486737 -1103.2366
+100289.2588605839 3.948595 -1103.2366
+100290.2588606342 3.948595 -1103.2562
+100291.2588606845 3.948595 -1103.2959
+100292.2588607348 3.9485557 -1103.2761
+100293.258860785 3.948477 -1103.2562
+100294.2588608353 3.9485557 -1103.197
+100295.2588608856 3.9485164 -1103.3156
+100296.2588609359 3.9485557 -1103.2959
+100297.2588609862 3.9484377 -1103.2366
+100298.2588610365 3.948477 -1103.2959
+100299.2588610868 3.948477 -1103.2366
+100300.2588611371 3.948477 -1103.2366
+100301.2588611874 3.9484377 -1103.3156
+100302.2588612377 3.948477 -1103.2761
+100303.258861288 3.948477 -1103.2761
+100304.2588613383 3.9483194 -1103.2366
+100305.2588613885 3.9483194 -1103.2168
+100306.2588614388 3.9483588 -1103.1774
+100307.2588614891 3.9483981 -1103.2761
+100308.2588615394 3.9483194 -1103.3353
+100309.2588615897 3.9484377 -1103.2168
+100310.25886164 3.9482801 -1103.2959
+100311.2588616903 3.9483194 -1103.2168
+100312.2588617406 3.9482801 -1103.2168
+100313.2588617909 3.9482014 -1103.1576
+100314.2588618412 3.9483981 -1103.1774
+100315.2588618915 3.9482408 -1103.1774
+100316.2588619418 3.9482801 -1103.2168
+100317.258861992 3.9481621 -1103.3156
+100318.2588620423 3.9482014 -1103.1774
+100319.2588620926 3.9482014 -1103.3353
+100320.2588621429 3.9482014 -1103.2959
+100321.2588621932 3.9481621 -1103.1576
+100322.2588622435 3.9481621 -1103.2761
+100323.2588622938 3.9481227 -1103.2959
+100324.2588623441 3.9481621 -1103.2959
+100325.2588623944 3.9480438 -1103.1774
+100326.2588624447 3.9480832 -1103.2366
+100327.258862495 3.9480832 -1103.3945
+100328.2588625452 3.9480832 -1103.2168
+100329.2588625955 3.9480045 -1103.2959
+100330.2588626458 3.9480438 -1103.3156
+100331.2588626961 3.9479651 -1103.197
+100332.2588627464 3.9480438 -1103.2562
+100333.2588627967 3.9480045 -1103.2562
+100334.258862847 3.9480045 -1103.2562
+100335.2588628973 3.9479651 -1103.2366
+100336.2588629476 3.9479258 -1103.2761
+100337.2588629979 3.9479651 -1103.2959
+100338.2588630482 3.9478471 -1103.2168
+100339.2588630985 3.9478865 -1103.197
+100340.2588631487 3.9477682 -1103.3353
+100341.258863199 3.9479258 -1103.2959
+100342.2588632493 3.9478865 -1103.2761
+100343.2588632996 3.9477289 -1103.2761
+100344.2588633499 3.9478471 -1103.2959
+100345.2588634002 3.9478078 -1103.2959
+100346.2588634505 3.9479258 -1103.3749
+100347.2588635008 3.9477289 -1103.2168
+100348.2588635511 3.9478471 -1103.2761
+100349.2588636014 3.9477289 -1103.2168
+100350.2588636517 3.9477289 -1103.2562
+100351.258863702 3.9477289 -1103.3353
+100352.2588637522 3.9476109 -1103.2761
+100353.2588638025 3.9476502 -1103.2366
+100354.2588638528 3.9477682 -1103.2562
+100355.2588639031 3.9476502 -1103.2168
+100356.2588639534 3.9476502 -1103.1774
+100357.2588640037 3.9476502 -1103.197
+100358.258864054 3.9476502 -1103.1774
+100359.2588641043 3.9476895 -1103.2761
+100360.2588641546 3.9476109 -1103.2562
+100361.2588642049 3.9475322 -1103.2366
+100362.2588642552 3.9476895 -1103.2366
+100363.2588643054 3.9476109 -1103.1576
+100364.2588643557 3.9476109 -1103.197
+100365.258864406 3.9474533 -1103.2366
+100366.2588644563 3.9475322 -1103.3945
+100367.2588645066 3.9475715 -1103.197
+100368.2588645569 3.9474928 -1103.2761
+100369.2588646072 3.9474928 -1103.2761
+100370.2588646575 3.9474533 -1103.2959
+100371.2588647078 3.9474928 -1103.2761
+100372.2588647581 3.9474139 -1103.2761
+100373.2588648084 3.9474928 -1103.1774
+100374.2588648587 3.9474139 -1103.2366
+100375.2588649089 3.9474533 -1103.2761
+100376.2588649592 3.9474139 -1103.2562
+100377.2588650095 3.9474533 -1103.2761
+100378.2588650598 3.9473746 -1103.1378
+100379.2588651101 3.9472959 -1103.2168
+100380.2588651604 3.9473746 -1103.3156
+100381.2588652107 3.9472172 -1103.197
+100382.258865261 3.9472959 -1103.197
+100383.2588653113 3.9472959 -1103.197
+100384.2588653616 3.9472172 -1103.2366
+100385.2588654119 3.9472959 -1103.2761
+100386.2588654622 3.9473352 -1103.2366
+100387.2588655124 3.9472172 -1103.3156
+100388.2588655627 3.9471779 -1103.3156
+100389.258865613 3.9471383 -1103.197
+100390.2588656633 3.9472172 -1103.2562
+100391.2588657136 3.9472172 -1103.2168
+100392.2588657639 3.9471383 -1103.2959
+100393.2588658142 3.9471383 -1103.2959
+100394.2588658645 3.9471383 -1103.2366
+100395.2588659148 3.947099 -1103.2562
+100396.2588659651 3.9472172 -1103.2366
+100397.2588660154 3.9470596 -1103.1576
+100398.2588660656 3.9470203 -1103.3156
+100399.2588661159 3.9470203 -1103.2562
+100400.2588661662 3.9470203 -1103.2562
+100401.2588662165 3.947099 -1103.2168
+100402.2588662668 3.946981 -1103.3156
+100403.2588663171 3.9469023 -1103.2562
+100404.2588663674 3.947099 -1103.3156
+100405.2588664177 3.9470203 -1103.1774
+100406.258866468 3.9470596 -1103.2761
+100407.2588665183 3.9468627 -1103.2761
+100408.2588665686 3.9470596 -1103.3353
+100409.2588666189 3.9469023 -1103.2761
+100410.2588666691 3.9469023 -1103.2168
+100411.2588667194 3.9469023 -1103.2366
+100412.2588667697 3.9470203 -1103.2366
+100413.25886682 3.9468234 -1103.1576
+100414.2588668703 3.9468234 -1103.2761
+100415.2588669206 3.9469023 -1103.2761
+100416.2588669709 3.9467447 -1103.2168
+100417.2588670212 3.9467447 -1103.2168
+100418.2588670715 3.9467447 -1103.1774
+100419.2588671218 3.9468234 -1103.2761
+100420.2588671721 3.9468234 -1103.2168
+100421.2588672224 3.9467447 -1103.2562
+100422.2588672726 3.9467447 -1103.2562
+100423.2588673229 3.9467447 -1103.1774
+100424.2588673732 3.9466267 -1103.2366
+100425.2588674235 3.9467447 -1103.2959
+100426.2588674738 3.946666 -1103.2366
+100427.2588675241 3.9467447 -1103.2959
+100428.2588675744 3.9465873 -1103.2168
+100429.2588676247 3.9466267 -1103.2761
+100430.258867675 3.9465873 -1103.3156
+100431.2588677253 3.9465873 -1103.2761
+100432.2588677756 3.9465084 -1103.2959
+100433.2588678258 3.9465873 -1103.1774
+100434.2588678761 3.9465477 -1103.2366
+100435.2588679264 3.9466267 -1103.1576
+100436.2588679767 3.9465873 -1103.2761
+100437.258868027 3.9464691 -1103.2168
+100438.2588680773 3.9465084 -1103.1774
+100439.2588681276 3.9465477 -1103.3551
+100440.2588681779 3.9464691 -1103.2366
+100441.2588682282 3.9464297 -1103.2366
+100442.2588682785 3.9465084 -1103.3156
+100443.2588683288 3.9465084 -1103.2562
+100444.2588683791 3.9464297 -1103.2959
+100445.2588684293 3.9464297 -1103.3156
+100446.2588684796 3.9463511 -1103.2366
+100447.2588685299 3.9464297 -1103.197
+100448.2588685802 3.9463117 -1103.2168
+100449.2588686305 3.9464297 -1103.2168
+100450.2588686808 3.9463117 -1103.2168
+100451.2588687311 3.9463904 -1103.2959
+100452.2588687814 3.9463117 -1103.2959
+100453.2588688317 3.9462724 -1103.2761
+100454.258868882 3.9463117 -1103.3353
+100455.2588689323 3.9462724 -1103.197
+100456.2588689826 3.9462328 -1103.2562
+100457.2588690328 3.9463117 -1103.1774
+100458.2588690831 3.9463117 -1103.197
+100459.2588691334 3.9462328 -1103.2366
+100460.2588691837 3.9462724 -1103.2366
+100461.258869234 3.9461541 -1103.197
+100462.2588692843 3.9462724 -1103.2562
+100463.2588693346 3.9461541 -1103.2366
+100464.2588693849 3.9461148 -1103.2562
+100465.2588694352 3.9461541 -1103.2562
+100466.2588694855 3.9461148 -1103.2168
+100467.2588695358 3.9461148 -1103.2366
+100468.258869586 3.9460754 -1103.2168
+100469.2588696363 3.9460754 -1103.2959
+100470.2588696866 3.9461148 -1103.2562
+100471.2588697369 3.9461148 -1103.3353
+100472.2588697872 3.9461541 -1103.2959
+100473.2588698375 3.9459968 -1103.2562
+100474.2588698878 3.9460754 -1103.2366
+100475.2588699381 3.9461148 -1103.2366
+100476.2588699884 3.9461148 -1103.1774
+100477.2588700387 3.9459968 -1103.2366
+100478.258870089 3.9459178 -1103.2366
+100479.2588701393 3.9458785 -1103.2168
+100480.2588701895 3.9459574 -1103.2168
+100481.2588702398 3.9458785 -1103.2959
+100482.2588702901 3.9459574 -1103.2562
+100483.2588703404 3.9458392 -1103.2761
+100484.2588703907 3.9457998 -1103.197
+100485.258870441 3.9459178 -1103.2562
+100486.2588704913 3.9457998 -1103.2761
+100487.2588705416 3.9457605 -1103.1576
+100488.2588705919 3.9457998 -1103.2761
+100489.2588706422 3.9457998 -1103.197
+100490.2588706925 3.9457605 -1103.2168
+100491.2588707427 3.9458392 -1103.2168
+100492.258870793 3.9457605 -1103.2562
+100493.2588708433 3.9457605 -1103.1774
+100494.2588708936 3.9457605 -1103.2761
+100495.2588709439 3.9456818 -1103.2168
+100496.2588709942 3.9456818 -1103.2366
+100497.2588710445 3.9456818 -1103.3156
+100498.2588710948 3.9457211 -1103.2959
+100499.2588711451 3.9456818 -1103.2562
+100500.2588711954 3.9456425 -1103.2168
+100501.2588712457 3.9455636 -1103.2562
+100502.258871296 3.9456029 -1103.197
+100503.2588713462 3.9455242 -1103.2168
+100504.2588713965 3.9455636 -1103.1774
+100505.2588714468 3.9456425 -1103.2562
+100506.2588714971 3.9456425 -1103.2959
+100507.2588715474 3.9456029 -1103.3353
+100508.2588715977 3.9454849 -1103.2168
+100509.258871648 3.9455242 -1103.2959
+100510.2588716983 3.9454849 -1103.2761
+100511.2588717486 3.9455242 -1103.2562
+100512.2588717989 3.9454455 -1103.2168
+100513.2588718492 3.9453669 -1103.2761
+100514.2588718995 3.9453669 -1103.2366
+100515.2588719497 3.9454455 -1103.2959
+100516.258872 3.9454849 -1103.2761
+100517.2588720503 3.9454062 -1103.2562
+100518.2588721006 3.9453669 -1103.2562
+100519.2588721509 3.9453275 -1103.197
+100520.2588722012 3.9454849 -1103.2168
+100521.2588722515 3.9454062 -1103.2366
+100522.2588723018 3.9454455 -1103.2562
+100523.2588723521 3.9453275 -1103.2761
+100524.2588724024 3.9453669 -1103.2168
+100525.2588724527 3.9452486 -1103.2562
+100526.2588725029 3.9453275 -1103.2168
+100527.2588725532 3.9453275 -1103.2761
+100528.2588726035 3.9451699 -1103.2562
+100529.2588726538 3.9452093 -1103.1774
+100530.2588727041 3.9452486 -1103.3353
+100531.2588727544 3.9452879 -1103.2168
+100532.2588728047 3.9452486 -1103.1774
+100533.258872855 3.9452486 -1103.2959
+100534.2588729053 3.9451306 -1103.2959
+100535.2588729556 3.9450912 -1103.2562
+100536.2588730059 3.9451306 -1103.1576
+100537.2588730562 3.9452093 -1103.3156
+100538.2588731064 3.9450519 -1103.197
+100539.2588731567 3.9450519 -1103.2761
+100540.258873207 3.9452093 -1103.2366
+100541.2588732573 3.9451306 -1103.2168
+100542.2588733076 3.9452093 -1103.1774
+100543.2588733579 3.9450519 -1103.2562
+100544.2588734082 3.9450123 -1103.3353
+100545.2588734585 3.9450123 -1103.2562
+100546.2588735088 3.9450123 -1103.2168
+100547.2588735591 3.944973 -1103.2366
+100548.2588736094 3.9449337 -1103.2168
+100549.2588736597 3.9449337 -1103.197
+100550.2588737099 3.944973 -1103.197
+100551.2588737602 3.9447763 -1103.2168
+100552.2588738105 3.944855 -1103.2959
+100553.2588738608 3.944855 -1103.2761
+100554.2588739111 3.9448943 -1103.2562
+100555.2588739614 3.944973 -1103.197
+100556.2588740117 3.9448943 -1103.2562
+100557.258874062 3.944973 -1103.3156
+100558.2588741123 3.9448943 -1103.1774
+100559.2588741626 3.9447763 -1103.1774
+100560.2588742129 3.9448943 -1103.2366
+100561.2588742631 3.9448156 -1103.197
+100562.2588743134 3.944855 -1103.2168
+100563.2588743637 3.9448156 -1103.197
+100564.258874414 3.9447763 -1103.3551
+100565.2588744643 3.9446974 -1103.2168
+100566.2588745146 3.9446974 -1103.2168
+100567.2588745649 3.944737 -1103.2761
+100568.2588746152 3.9447763 -1103.197
+100569.2588746655 3.9447763 -1103.2562
+100570.2588747158 3.944658 -1103.2761
+100571.2588747661 3.9445794 -1103.2761
+100572.2588748164 3.9446187 -1103.2562
+100573.2588748666 3.9446187 -1103.2366
+100574.2588749169 3.94454 -1103.197
+100575.2588749672 3.944658 -1103.1774
+100576.2588750175 3.9446187 -1103.197
+100577.2588750678 3.94454 -1103.1774
+100578.2588751181 3.94454 -1103.2366
+100579.2588751684 3.9445794 -1103.1576
+100580.2588752187 3.9445794 -1103.2562
+100581.258875269 3.9446187 -1103.2366
+100582.2588753193 3.9445007 -1103.197
+100583.2588753696 3.944422 -1103.2366
+100584.2588754199 3.9443824 -1103.1182
+100585.2588754701 3.9443824 -1103.2562
+100586.2588755204 3.9444613 -1103.2761
+100587.2588755707 3.9444613 -1103.1774
+100588.258875621 3.944422 -1103.2761
+100589.2588756713 3.9443824 -1103.2366
+100590.2588757216 3.9443038 -1103.2168
+100591.2588757719 3.9443431 -1103.2562
+100592.2588758222 3.9443824 -1103.2959
+100593.2588758725 3.9443038 -1103.1576
+100594.2588759228 3.9443431 -1103.2168
+100595.2588759731 3.9443038 -1103.2366
+100596.2588760233 3.9443038 -1103.2366
+100597.2588760736 3.9442644 -1103.2761
+100598.2588761239 3.9443824 -1103.2959
+100599.2588761742 3.9441857 -1103.2168
+100600.2588762245 3.9441857 -1103.2366
+100601.2588762748 3.9441857 -1103.2562
+100602.2588763251 3.9442251 -1103.2562
+100603.2588763754 3.9443038 -1103.2761
+100604.2588764257 3.9441464 -1103.2959
+100605.258876476 3.9440675 -1103.3156
+100606.2588765263 3.9441464 -1103.2366
+100607.2588765766 3.9441071 -1103.1576
+100608.2588766268 3.9442251 -1103.2959
+100609.2588766771 3.9442251 -1103.2562
+100610.2588767274 3.9441857 -1103.2168
+100611.2588767777 3.9441071 -1103.2168
+100612.258876828 3.9441071 -1103.2761
+100613.2588768783 3.9440281 -1103.2761
+100614.2588769286 3.9440675 -1103.2168
+100615.2588769789 3.9440281 -1103.197
+100616.2588770292 3.9440281 -1103.2761
+100617.2588770795 3.9438708 -1103.2761
+100618.2588771298 3.9439495 -1103.2168
+100619.2588771801 3.9439495 -1103.2168
+100620.2588772303 3.9441071 -1103.2366
+100621.2588772806 3.9440281 -1103.2366
+100622.2588773309 3.9439888 -1103.2366
+100623.2588773812 3.9438708 -1103.2168
+100624.2588774315 3.9439495 -1103.3551
+100625.2588774818 3.9440281 -1103.2168
+100626.2588775321 3.9439101 -1103.2168
+100627.2588775824 3.9438708 -1103.2366
+100628.2588776327 3.9438314 -1103.1378
+100629.258877683 3.9438314 -1103.2366
+100630.2588777333 3.9437921 -1103.2168
+100631.2588777835 3.9438708 -1103.2959
+100632.2588778338 3.9437525 -1103.2562
+100633.2588778841 3.9438314 -1103.3551
+100634.2588779344 3.9437525 -1103.2761
+100635.2588779847 3.9437525 -1103.2168
+100636.258878035 3.9437525 -1103.2168
+100637.2588780853 3.9438314 -1103.2168
+100638.2588781356 3.9437525 -1103.2562
+100639.2588781859 3.9437525 -1103.2959
+100640.2588782362 3.9436738 -1103.2366
+100641.2588782865 3.9437132 -1103.2168
+100642.2588783368 3.9436345 -1103.2168
+100643.258878387 3.9436345 -1103.2366
+100644.2588784373 3.9435952 -1103.3749
+100645.2588784876 3.9435165 -1103.197
+100646.2588785379 3.9435558 -1103.2366
+100647.2588785882 3.9435558 -1103.2366
+100648.2588786385 3.9436738 -1103.2562
+100649.2588786888 3.9436345 -1103.1182
+100650.2588787391 3.9435165 -1103.3156
+100651.2588787894 3.9435952 -1103.2366
+100652.2588788397 3.9436345 -1103.2366
+100653.25887889 3.9435558 -1103.2959
+100654.2588789403 3.9435165 -1103.2761
+100655.2588789905 3.9435165 -1103.2366
+100656.2588790408 3.9434772 -1103.2562
+100657.2588790911 3.9434376 -1103.1182
+100658.2588791414 3.9435165 -1103.197
+100659.2588791917 3.9434376 -1103.2366
+100660.258879242 3.9435165 -1103.2366
+100661.2588792923 3.9435165 -1103.197
+100662.2588793426 3.9433196 -1103.2761
+100663.2588793929 3.9433589 -1103.2366
+100664.2588794432 3.9433589 -1103.2562
+100665.2588794935 3.9433589 -1103.2562
+100666.2588795437 3.9432409 -1103.2168
+100667.258879594 3.9432802 -1103.1774
+100668.2588796443 3.9432409 -1103.2562
+100669.2588796946 3.9432802 -1103.2168
+100670.2588797449 3.9432802 -1103.2761
+100671.2588797952 3.9432015 -1103.1576
+100672.2588798455 3.9432409 -1103.2168
+100673.2588798958 3.943162 -1103.1774
+100674.2588799461 3.9433196 -1103.2959
+100675.2588799964 3.9432015 -1103.1774
+100676.2588800467 3.9432015 -1103.2562
+100677.258880097 3.9431226 -1103.2562
+100678.2588801472 3.943162 -1103.197
+100679.2588801975 3.9432015 -1103.3156
+100680.2588802478 3.9430833 -1103.3353
+100681.2588802981 3.9432015 -1103.2168
+100682.2588803484 3.9431226 -1103.2959
+100683.2588803987 3.9430046 -1103.3156
+100684.258880449 3.9430833 -1103.197
+100685.2588804993 3.9429653 -1103.2562
+100686.2588805496 3.9430439 -1103.2168
+100687.2588805999 3.9430439 -1103.2562
+100688.2588806502 3.9429653 -1103.2562
+100689.2588807005 3.9429653 -1103.2366
+100690.2588807507 3.9430046 -1103.2959
+100691.258880801 3.9429653 -1103.197
+100692.2588808513 3.9429653 -1103.2761
+100693.2588809016 3.9430439 -1103.197
+100694.2588809519 3.9428866 -1103.1576
+100695.2588810022 3.9429259 -1103.1774
+100696.2588810525 3.9429259 -1103.3945
+100697.2588811028 3.9428866 -1103.2168
+100698.2588811531 3.9428866 -1103.2168
+100699.2588812034 3.9429653 -1103.1774
+100700.2588812537 3.942847 -1103.2366
+100701.2588813039 3.9428866 -1103.2168
+100702.2588813542 3.9428077 -1103.3156
+100703.2588814045 3.9427683 -1103.1378
+100704.2588814548 3.942847 -1103.3156
+100705.2588815051 3.942847 -1103.2761
+100706.2588815554 3.9428077 -1103.2761
+100707.2588816057 3.942729 -1103.2562
+100708.258881656 3.9428077 -1103.2959
+100709.2588817063 3.9426897 -1103.2562
+100710.2588817566 3.942729 -1103.2168
+100711.2588818069 3.942729 -1103.1774
+100712.2588818572 3.9428077 -1103.3156
+100713.2588819074 3.9426503 -1103.3156
+100714.2588819577 3.942611 -1103.3156
+100715.258882008 3.942611 -1103.2366
+100716.2588820583 3.942611 -1103.2959
+100717.2588821086 3.9426897 -1103.2168
+100718.2588821589 3.9426503 -1103.2366
+100719.2588822092 3.942611 -1103.2562
+100720.2588822595 3.942611 -1103.2761
+100721.2588823098 3.9425321 -1103.2959
+100722.2588823601 3.9424534 -1103.2366
+100723.2588824104 3.9425716 -1103.3156
+100724.2588824607 3.9425321 -1103.2168
+100725.2588825109 3.9424927 -1103.197
+100726.2588825612 3.9425321 -1103.2168
+100727.2588826115 3.9425716 -1103.2562
+100728.2588826618 3.9425321 -1103.2761
+100729.2588827121 3.9423354 -1103.2366
+100730.2588827624 3.942414 -1103.2959
+100731.2588828127 3.942414 -1103.3156
+100732.258882863 3.9423747 -1103.2562
+100733.2588829133 3.9424534 -1103.2168
+100734.2588829636 3.9423747 -1103.2168
+100735.2588830139 3.9423354 -1103.2562
+100736.2588830641 3.942414 -1103.3156
+100737.2588831144 3.9422567 -1103.197
+100738.2588831647 3.9423354 -1103.1774
+100739.258883215 3.9423354 -1103.2562
+100740.2588832653 3.9423354 -1103.197
+100741.2588833156 3.942296 -1103.2168
+100742.2588833659 3.9422567 -1103.2168
+100743.2588834162 3.9423747 -1103.2562
+100744.2588834665 3.942296 -1103.3749
+100745.2588835168 3.9422171 -1103.197
+100746.2588835671 3.9422171 -1103.1774
+100747.2588836174 3.9422171 -1103.2562
+100748.2588836676 3.9422567 -1103.2366
+100749.2588837179 3.9420991 -1103.2761
+100750.2588837682 3.9421384 -1103.2959
+100751.2588838185 3.9421384 -1103.197
+100752.2588838688 3.9420991 -1103.3551
+100753.2588839191 3.9420991 -1103.2959
+100754.2588839694 3.9421384 -1103.2959
+100755.2588840197 3.9420204 -1103.2761
+100756.25888407 3.9420598 -1103.2761
+100757.2588841203 3.9420204 -1103.2761
+100758.2588841706 3.9420204 -1103.197
+100759.2588842209 3.9420204 -1103.2366
+100760.2588842711 3.9420204 -1103.2366
+100761.2588843214 3.9419417 -1103.2366
+100762.2588843717 3.9420598 -1103.2959
+100763.258884422 3.9419417 -1103.2168
+100764.2588844723 3.9420204 -1103.3156
+100765.2588845226 3.9419022 -1103.2562
+100766.2588845729 3.9419417 -1103.1576
+100767.2588846232 3.9419022 -1103.2959
+100768.2588846735 3.9419022 -1103.2366
+100769.2588847238 3.9419022 -1103.2562
+100770.2588847741 3.9418235 -1103.3945
+100771.2588848243 3.9418235 -1103.2366
+100772.2588848746 3.9417448 -1103.2959
+100773.2588849249 3.9418235 -1103.2562
+100774.2588849752 3.9418235 -1103.2761
+100775.2588850255 3.9418235 -1103.2562
+100776.2588850758 3.9417841 -1103.197
+100777.2588851261 3.9417841 -1103.2366
+100778.2588851764 3.9417841 -1103.2761
+100779.2588852267 3.9418628 -1103.2761
+100780.258885277 3.9417448 -1103.2562
+100781.2588853273 3.9416265 -1103.2168
+100782.2588853776 3.9417055 -1103.2366
+100783.2588854278 3.9416661 -1103.2761
+100784.2588854781 3.9417055 -1103.2959
+100785.2588855284 3.9415872 -1103.2562
+100786.2588855787 3.9416661 -1103.197
+100787.258885629 3.9415872 -1103.2761
+100788.2588856793 3.9415479 -1103.2761
+100789.2588857296 3.9416265 -1103.2761
+100790.2588857799 3.9415085 -1103.2761
+100791.2588858302 3.9415872 -1103.2959
+100792.2588858805 3.9415479 -1103.1774
+100793.2588859308 3.9415872 -1103.2366
+100794.258885981 3.9415872 -1103.2168
+100795.2588860313 3.9415085 -1103.3353
+100796.2588860816 3.9414299 -1103.197
+100797.2588861319 3.9414299 -1103.2959
+100798.2588861822 3.9414299 -1103.197
+100799.2588862325 3.9414692 -1103.2761
+100800.2588862828 3.9414299 -1103.2366
+100801.2588863331 3.9414299 -1103.2761
+100802.2588863834 3.9414299 -1103.3551
+100803.2588864337 3.9414692 -1103.197
+100804.258886484 3.9415085 -1103.197
+100805.2588865343 3.9414299 -1103.2562
+100806.2588865845 3.9413512 -1103.2168
+100807.2588866348 3.9414299 -1103.1774
+100808.2588866851 3.9413116 -1103.2959
+100809.2588867354 3.9412723 -1103.2761
+100810.2588867857 3.9412723 -1103.2168
+100811.258886836 3.9413905 -1103.2168
+100812.2588868863 3.9412723 -1103.2366
+100813.2588869366 3.9412723 -1103.197
+100814.2588869869 3.9411542 -1103.2761
+100815.2588870372 3.9413116 -1103.197
+100816.2588870875 3.9411936 -1103.2562
+100817.2588871378 3.9412329 -1103.2562
+100818.258887188 3.9412329 -1103.2168
+100819.2588872383 3.9412329 -1103.2168
+100820.2588872886 3.9411936 -1103.2168
+100821.2588873389 3.9411542 -1103.2761
+100822.2588873892 3.9411149 -1103.1774
+100823.2588874395 3.9411542 -1103.2959
+100824.2588874898 3.9410756 -1103.197
+100825.2588875401 3.9411149 -1103.2761
+100826.2588875904 3.9409573 -1103.2168
+100827.2588876407 3.9411149 -1103.2562
+100828.258887691 3.9409966 -1103.197
+100829.2588877412 3.9410362 -1103.2761
+100830.2588877915 3.9411542 -1103.3156
+100831.2588878418 3.9410362 -1103.2761
+100832.2588878921 3.9409573 -1103.197
+100833.2588879424 3.9411149 -1103.2959
+100834.2588879927 3.9410362 -1103.2959
+100835.258888043 3.9408393 -1103.2562
+100836.2588880933 3.940918 -1103.2562
+100837.2588881436 3.9409573 -1103.2366
+100838.2588881939 3.9408393 -1103.3156
+100839.2588882442 3.9409966 -1103.2761
+100840.2588882945 3.940918 -1103.2562
+100841.2588883447 3.940918 -1103.1774
+100842.258888395 3.940918 -1103.2366
+100843.2588884453 3.9408393 -1103.2562
+100844.2588884956 3.9408 -1103.3156
+100845.2588885459 3.9408786 -1103.2168
+100846.2588885962 3.9408786 -1103.2959
+100847.2588886465 3.9408 -1103.3156
+100848.2588886968 3.9408 -1103.2366
+100849.2588887471 3.9408393 -1103.2959
+100850.2588887974 3.9407606 -1103.2761
+100851.2588888477 3.9408393 -1103.2366
+100852.258888898 3.9407213 -1103.2959
+100853.2588889482 3.9407606 -1103.2168
+100854.2588889985 3.9407213 -1103.2562
+100855.2588890488 3.9407213 -1103.197
+100856.2588890991 3.9408 -1103.2366
+100857.2588891494 3.9407213 -1103.3353
+100858.2588891997 3.9407213 -1103.2366
+100859.25888925 3.9407213 -1103.1576
+100860.2588893003 3.9406424 -1103.2366
+100861.2588893506 3.9406424 -1103.2366
+100862.2588894009 3.940603 -1103.2168
+100863.2588894512 3.940603 -1103.2168
+100864.2588895014 3.940603 -1103.2761
+100865.2588895517 3.9405243 -1103.2761
+100866.258889602 3.9405637 -1103.3156
+100867.2588896523 3.9405637 -1103.2761
+100868.2588897026 3.9404457 -1103.197
+100869.2588897529 3.9405637 -1103.2366
+100870.2588898032 3.9405243 -1103.3353
+100871.2588898535 3.940603 -1103.2366
+100872.2588899038 3.9405637 -1103.197
+100873.2588899541 3.9405637 -1103.197
+100874.2588900044 3.9405243 -1103.3353
+100875.2588900547 3.9404457 -1103.2761
+100876.2588901049 3.9403274 -1103.2761
+100877.2588901552 3.9403274 -1103.1576
+100878.2588902055 3.9403274 -1103.3156
+100879.2588902558 3.9403667 -1103.2366
+100880.2588903061 3.9403274 -1103.2366
+100881.2588903564 3.9402487 -1103.2366
+100882.2588904067 3.9404063 -1103.2562
+100883.258890457 3.9403274 -1103.2168
+100884.2588905073 3.9403667 -1103.2959
+100885.2588905576 3.9402881 -1103.2366
+100886.2588906079 3.9403667 -1103.2761
+100887.2588906582 3.9402881 -1103.197
+100888.2588907084 3.9402881 -1103.1774
+100889.2588907587 3.9403274 -1103.2366
+100890.258890809 3.94017 -1103.3551
+100891.2588908593 3.94017 -1103.1774
+100892.2588909096 3.9400518 -1103.197
+100893.2588909599 3.9400914 -1103.2959
+100894.2588910102 3.94017 -1103.2562
+100895.2588910605 3.9400914 -1103.2761
+100896.2588911108 3.94017 -1103.3156
+100897.2588911611 3.9402094 -1103.2168
+100898.2588912114 3.94017 -1103.2562
+100899.2588912616 3.9401307 -1103.1576
+100900.2588913119 3.9400914 -1103.2168
+100901.2588913622 3.94017 -1103.2562
+100902.2588914125 3.9400518 -1103.2366
+100903.2588914628 3.9400125 -1103.2562
+100904.2588915131 3.9400125 -1103.1576
+100905.2588915634 3.9400518 -1103.1576
+100906.2588916137 3.9400518 -1103.2168
+100907.258891664 3.9400125 -1103.2761
+100908.2588917143 3.9400125 -1103.1774
+100909.2588917646 3.9399338 -1103.2562
+100910.2588918149 3.9399338 -1103.2761
+100911.2588918651 3.9400125 -1103.2761
+100912.2588919154 3.9399338 -1103.1774
+100913.2588919657 3.9398551 -1103.1774
+100914.258892016 3.9398551 -1103.2168
+100915.2588920663 3.9399731 -1103.2366
+100916.2588921166 3.9398551 -1103.2562
+100917.2588921669 3.9398944 -1103.2168
+100918.2588922172 3.9398158 -1103.2168
+100919.2588922675 3.9398944 -1103.3156
+100920.2588923178 3.9398158 -1103.2562
+100921.2588923681 3.9398551 -1103.3749
+100922.2588924184 3.9397368 -1103.2366
+100923.2588924686 3.9398158 -1103.2761
+100924.2588925189 3.9396582 -1103.2168
+100925.2588925692 3.9397762 -1103.2761
+100926.2588926195 3.9396975 -1103.2168
+100927.2588926698 3.9397762 -1103.2959
+100928.2588927201 3.9397368 -1103.2562
+100929.2588927704 3.9396188 -1103.2168
+100930.2588928207 3.9396582 -1103.2562
+100931.258892871 3.9396975 -1103.2366
+100932.2588929213 3.9395795 -1103.2168
+100933.2588929716 3.9396188 -1103.2366
+100934.2588930218 3.9395795 -1103.2959
+100935.2588930721 3.9396188 -1103.2761
+100936.2588931224 3.9396188 -1103.197
+100937.2588931727 3.9396188 -1103.2366
+100938.258893223 3.9395795 -1103.3156
+100939.2588932733 3.9395401 -1103.2366
+100940.2588933236 3.9396188 -1103.197
+100941.2588933739 3.9395008 -1103.2761
+100942.2588934242 3.9395401 -1103.1576
+100943.2588934745 3.9395401 -1103.197
+100944.2588935248 3.9395008 -1103.3156
+100945.2588935751 3.9394612 -1103.197
+100946.2588936253 3.9395008 -1103.2761
+100947.2588936756 3.9394219 -1103.197
+100948.2588937259 3.9393826 -1103.197
+100949.2588937762 3.9393432 -1103.2959
+100950.2588938265 3.9393432 -1103.2959
+100951.2588938768 3.9393039 -1103.2366
+100952.2588939271 3.9393432 -1103.2562
+100953.2588939774 3.9392645 -1103.2761
+100954.2588940277 3.9393432 -1103.2761
+100955.258894078 3.9393432 -1103.2562
+100956.2588941283 3.9392252 -1103.2959
+100957.2588941786 3.9393039 -1103.197
+100958.2588942288 3.9393432 -1103.1774
+100959.2588942791 3.9392645 -1103.2959
+100960.2588943294 3.9392252 -1103.2366
+100961.2588943797 3.9393039 -1103.2168
+100962.25889443 3.9392645 -1103.2761
+100963.2588944803 3.9391859 -1103.2366
+100964.2588945306 3.9391859 -1103.2761
+100965.2588945809 3.9392252 -1103.2366
+100966.2588946312 3.9390676 -1103.2168
+100967.2588946815 3.9392645 -1103.2959
+100968.2588947318 3.9392645 -1103.2366
+100969.258894782 3.9391463 -1103.2168
+100970.2588948323 3.9391859 -1103.3156
+100971.2588948826 3.9391069 -1103.2959
+100972.2588949329 3.9390283 -1103.2761
+100973.2588949832 3.9391069 -1103.2366
+100974.2588950335 3.9391463 -1103.2366
+100975.2588950838 3.9390283 -1103.197
+100976.2588951341 3.9390676 -1103.2168
+100977.2588951844 3.9390676 -1103.2366
+100978.2588952347 3.9390676 -1103.2959
+100979.258895285 3.9389496 -1103.197
+100980.2588953353 3.9389102 -1103.1774
+100981.2588953855 3.9389889 -1103.2366
+100982.2588954358 3.9389889 -1103.2959
+100983.2588954861 3.938792 -1103.2959
+100984.2588955364 3.9389889 -1103.2366
+100985.2588955867 3.9389102 -1103.3156
+100986.258895637 3.9388313 -1103.2168
+100987.2588956873 3.9389496 -1103.2959
+100988.2588957376 3.9388709 -1103.197
+100989.2588957879 3.9389496 -1103.2761
+100990.2588958382 3.9388313 -1103.1378
+100991.2588958885 3.9388313 -1103.2959
+100992.2588959388 3.938792 -1103.197
+100993.258895989 3.9387527 -1103.197
+100994.2588960393 3.9387527 -1103.197
+100995.2588960896 3.938792 -1103.3156
+100996.2588961399 3.9388313 -1103.2562
+100997.2588961902 3.9387527 -1103.3156
+100998.2588962405 3.9387133 -1103.1774
+100999.2588962908 3.938792 -1103.2562
+101000.2588963411 3.9387133 -1103.1774
+101001.2588963914 3.9387527 -1103.2761
+101002.2588964417 3.9387527 -1103.2366
+101003.258896492 3.938792 -1103.2366
+101004.2588965422 3.9387527 -1103.3156
+101005.2588965925 3.938674 -1103.2366
+101006.2588966428 3.9386346 -1103.2366
+101007.2588966931 3.938674 -1103.3551
+101008.2588967434 3.9387133 -1103.1774
+101009.2588967937 3.938556 -1103.2168
+101010.258896844 3.9385953 -1103.2761
+101011.2588968943 3.938556 -1103.2562
+101012.2588969446 3.938477 -1103.3156
+101013.2588969949 3.938556 -1103.2562
+101014.2588970452 3.9385164 -1103.1576
+101015.2588970955 3.9385164 -1103.2959
+101016.2588971457 3.9384377 -1103.197
+101017.258897196 3.938477 -1103.2761
+101018.2588972463 3.938477 -1103.2168
+101019.2588972966 3.9384377 -1103.2761
+101020.2588973469 3.938477 -1103.3353
+101021.2588973972 3.938477 -1103.197
+101022.2588974475 3.9384377 -1103.197
+101023.2588974978 3.9383984 -1103.2562
+101024.2588975481 3.9383197 -1103.2366
+101025.2588975984 3.9383984 -1103.2959
+101026.2588976487 3.9382803 -1103.197
+101027.258897699 3.9383197 -1103.2168
+101028.2588977492 3.9384377 -1103.197
+101029.2588977995 3.938359 -1103.2168
+101030.2588978498 3.9383197 -1103.1774
+101031.2588979001 3.9383197 -1103.1576
+101032.2588979504 3.938359 -1103.2366
+101033.2588980007 3.9382803 -1103.2366
+101034.258898051 3.9382014 -1103.2761
+101035.2588981013 3.938241 -1103.3156
+101036.2588981516 3.9382803 -1103.2168
+101037.2588982019 3.9381621 -1103.2761
+101038.2588982522 3.938241 -1103.197
+101039.2588983024 3.9381621 -1103.3551
+101040.2588983527 3.9381621 -1103.2562
+101041.258898403 3.9382014 -1103.2959
+101042.2588984533 3.9381621 -1103.2366
+101043.2588985036 3.9381621 -1103.2761
+101044.2588985539 3.9380834 -1103.3156
+101045.2588986042 3.9381227 -1103.2761
+101046.2588986545 3.9380047 -1103.2562
+101047.2588987048 3.9381621 -1103.2562
+101048.2588987551 3.9380834 -1103.1774
+101049.2588988054 3.9380834 -1103.2366
+101050.2588988557 3.9381227 -1103.2168
+101051.2588989059 3.9380441 -1103.2562
+101052.2588989562 3.9380441 -1103.1774
+101053.2588990065 3.9380047 -1103.2761
+101054.2588990568 3.9380047 -1103.2366
+101055.2588991071 3.9380047 -1103.2562
+101056.2588991574 3.9380047 -1103.2761
+101057.2588992077 3.9379654 -1103.2562
+101058.258899258 3.9378865 -1103.2562
+101059.2588993083 3.9378865 -1103.1774
+101060.2588993586 3.9379258 -1103.197
+101061.2588994089 3.9379258 -1103.197
+101062.2588994592 3.9378471 -1103.2562
+101063.2588995094 3.9378865 -1103.2168
+101064.2588995597 3.9378865 -1103.2761
+101065.25889961 3.9378865 -1103.3353
+101066.2588996603 3.9378865 -1103.2761
+101067.2588997106 3.9378471 -1103.2168
+101068.2588997609 3.9377291 -1103.3353
+101069.2588998112 3.9377291 -1103.2366
+101070.2588998615 3.9378078 -1103.2366
+101071.2588999118 3.9377291 -1103.197
+101072.2588999621 3.9377291 -1103.2761
+101073.2589000124 3.9376898 -1103.2761
+101074.2589000626 3.9376898 -1103.1774
+101075.2589001129 3.9376898 -1103.2761
+101076.2589001632 3.9376504 -1103.2562
+101077.2589002135 3.9375715 -1103.1576
+101078.2589002638 3.9376109 -1103.2168
+101079.2589003141 3.9376504 -1103.3156
+101080.2589003644 3.9376898 -1103.2168
+101081.2589004147 3.9376109 -1103.197
+101082.258900465 3.9377291 -1103.2761
+101083.2589005153 3.9376504 -1103.2562
+101084.2589005656 3.9376504 -1103.2761
+101085.2589006159 3.9375715 -1103.2959
+101086.2589006661 3.9375322 -1103.2366
+101087.2589007164 3.9374142 -1103.1576
+101088.2589007667 3.9375715 -1103.2562
+101089.258900817 3.9375715 -1103.2761
+101090.2589008673 3.9376898 -1103.3156
+101091.2589009176 3.9374535 -1103.2761
+101092.2589009679 3.9375322 -1103.197
+101093.2589010182 3.9375322 -1103.2562
+101094.2589010685 3.9374142 -1103.3156
+101095.2589011188 3.9374142 -1103.2959
+101096.2589011691 3.9374142 -1103.197
+101097.2589012193 3.9373355 -1103.2562
+101098.2589012696 3.9374928 -1103.2366
+101099.2589013199 3.9374928 -1103.2168
+101100.2589013702 3.9372959 -1103.2959
+101101.2589014205 3.9373748 -1103.1774
+101102.2589014708 3.9373355 -1103.197
+101103.2589015211 3.9373748 -1103.2168
+101104.2589015714 3.9372959 -1103.2562
+101105.2589016217 3.9373748 -1103.1774
+101106.258901672 3.9373355 -1103.2959
+101107.2589017223 3.9372959 -1103.3353
+101108.2589017726 3.9372959 -1103.2562
+101109.2589018228 3.9372566 -1103.2959
+101110.2589018731 3.9371779 -1103.2562
+101111.2589019234 3.9372566 -1103.1774
+101112.2589019737 3.9372172 -1103.2168
+101113.258902024 3.9372566 -1103.197
+101114.2589020743 3.9373748 -1103.1378
+101115.2589021246 3.9372172 -1103.2168
+101116.2589021749 3.9371386 -1103.1576
+101117.2589022252 3.9370599 -1103.2562
+101118.2589022755 3.9371779 -1103.2366
+101119.2589023258 3.9370992 -1103.2562
+101120.2589023761 3.9372172 -1103.2761
+101121.2589024263 3.9370992 -1103.2761
+101122.2589024766 3.9371386 -1103.2366
+101123.2589025269 3.9370599 -1103.2168
+101124.2589025772 3.9370205 -1103.1378
+101125.2589026275 3.9370992 -1103.2168
+101126.2589026778 3.9370992 -1103.2562
+101127.2589027281 3.9369023 -1103.2761
+101128.2589027784 3.9370205 -1103.197
+101129.2589028287 3.936981 -1103.1774
+101130.258902879 3.936981 -1103.2562
+101131.2589029293 3.9369023 -1103.2959
+101132.2589029795 3.9369023 -1103.2168
+101133.2589030298 3.9369023 -1103.2959
+101134.2589030801 3.9369023 -1103.2761
+101135.2589031304 3.9368629 -1103.197
+101136.2589031807 3.9369023 -1103.3353
+101137.258903231 3.9368629 -1103.1576
+101138.2589032813 3.9367449 -1103.3156
+101139.2589033316 3.9368236 -1103.2761
+101140.2589033819 3.9368629 -1103.2761
+101141.2589034322 3.9369416 -1103.2959
+101142.2589034825 3.9369023 -1103.1774
+101143.2589035328 3.9367449 -1103.2366
+101144.258903583 3.9368629 -1103.2366
+101145.2589036333 3.9368236 -1103.2562
+101146.2589036836 3.9368236 -1103.3353
+101147.2589037339 3.936666 -1103.2959
+101148.2589037842 3.9367449 -1103.2562
+101149.2589038345 3.9367056 -1103.1774
+101150.2589038848 3.9366267 -1103.2562
+101151.2589039351 3.9366267 -1103.2366
+101152.2589039854 3.9365873 -1103.2562
+101153.2589040357 3.9365873 -1103.2168
+101154.258904086 3.9365873 -1103.2959
+101155.2589041363 3.936666 -1103.2761
+101156.2589041865 3.9366267 -1103.2562
+101157.2589042368 3.9366267 -1103.1774
+101158.2589042871 3.9365873 -1103.2562
+101159.2589043374 3.9366267 -1103.1576
+101160.2589043877 3.936548 -1103.2562
+101161.258904438 3.9366267 -1103.2761
+101162.2589044883 3.93643 -1103.2959
+101163.2589045386 3.936548 -1103.2562
+101164.2589045889 3.9365873 -1103.3353
+101165.2589046392 3.9365087 -1103.3156
+101166.2589046895 3.9365087 -1103.2761
+101167.2589047397 3.9365087 -1103.2168
+101168.25890479 3.9365087 -1103.2168
+101169.2589048403 3.93643 -1103.2168
+101170.2589048906 3.93643 -1103.2366
+101171.2589049409 3.9363511 -1103.2168
+101172.2589049912 3.9362724 -1103.2168
+101173.2589050415 3.93643 -1103.197
+101174.2589050918 3.9365087 -1103.3551
+101175.2589051421 3.9363117 -1103.2959
+101176.2589051924 3.9363117 -1103.197
+101177.2589052427 3.9363511 -1103.2562
+101178.258905293 3.9363906 -1103.2366
+101179.2589053432 3.9363511 -1103.2562
+101180.2589053935 3.9362724 -1103.1378
+101181.2589054438 3.9363117 -1103.2562
+101182.2589054941 3.936233 -1103.197
+101183.2589055444 3.9361937 -1103.2366
+101184.2589055947 3.9362724 -1103.2959
+101185.258905645 3.9361937 -1103.2761
+101186.2589056953 3.9362724 -1103.1774
+101187.2589057456 3.9361544 -1103.2366
+101188.2589057959 3.9363117 -1103.3945
+101189.2589058462 3.936233 -1103.2761
+101190.2589058965 3.936115 -1103.197
+101191.2589059467 3.936233 -1103.197
+101192.258905997 3.936115 -1103.2761
+101193.2589060473 3.9361544 -1103.2959
+101194.2589060976 3.9360754 -1103.197
+101195.2589061479 3.9359574 -1103.2366
+101196.2589061982 3.9360361 -1103.2366
+101197.2589062485 3.9360361 -1103.3156
+101198.2589062988 3.936115 -1103.2562
+101199.2589063491 3.9360361 -1103.1576
+101200.2589063994 3.9360754 -1103.1774
+101201.2589064497 3.9360754 -1103.2168
+101202.2589064999 3.9359968 -1103.2761
+101203.2589065502 3.9359968 -1103.197
+101204.2589066005 3.9360754 -1103.2366
+101205.2589066508 3.9360361 -1103.2366
+101206.2589067011 3.9359968 -1103.3156
+101207.2589067514 3.9359968 -1103.197
+101208.2589068017 3.9358788 -1103.1576
+101209.258906852 3.9359181 -1103.2761
+101210.2589069023 3.9358788 -1103.2761
+101211.2589069526 3.9359181 -1103.2761
+101212.2589070029 3.9358394 -1103.1378
+101213.2589070532 3.9358001 -1103.2366
+101214.2589071034 3.9358001 -1103.1774
+101215.2589071537 3.9358001 -1103.2959
+101216.258907204 3.9358001 -1103.1576
+101217.2589072543 3.9359181 -1103.2168
+101218.2589073046 3.9358001 -1103.2366
+101219.2589073549 3.9358394 -1103.2168
+101220.2589074052 3.9357605 -1103.2761
+101221.2589074555 3.9357605 -1103.2168
+101222.2589075058 3.9357605 -1103.2168
+101223.2589075561 3.9358394 -1103.2366
+101224.2589076064 3.9356425 -1103.2959
+101225.2589076567 3.9356818 -1103.2761
+101226.2589077069 3.9357605 -1103.2959
+101227.2589077572 3.9356031 -1103.2562
+101228.2589078075 3.9356818 -1103.1576
+101229.2589078578 3.9356818 -1103.1774
+101230.2589079081 3.9355638 -1103.2366
+101231.2589079584 3.9356031 -1103.2562
+101232.2589080087 3.9356031 -1103.2562
+101233.258908059 3.9355245 -1103.3156
+101234.2589081093 3.9355638 -1103.2366
+101235.2589081596 3.9354851 -1103.2959
+101236.2589082099 3.9356031 -1103.2366
+101237.2589082601 3.9354851 -1103.2562
+101238.2589083104 3.9354455 -1103.2366
+101239.2589083607 3.9355638 -1103.2366
+101240.258908411 3.9354851 -1103.197
+101241.2589084613 3.9354455 -1103.2168
+101242.2589085116 3.9354062 -1103.197
+101243.2589085619 3.9355245 -1103.2168
+101244.2589086122 3.9353669 -1103.197
+101245.2589086625 3.9354062 -1103.2168
+101246.2589087128 3.9354851 -1103.2761
+101247.2589087631 3.9354455 -1103.2562
+101248.2589088134 3.9352882 -1103.2366
+101249.2589088636 3.9353669 -1103.2562
+101250.2589089139 3.9352882 -1103.2761
+101251.2589089642 3.9354455 -1103.2562
+101252.2589090145 3.9352882 -1103.2168
+101253.2589090648 3.9354062 -1103.2562
+101254.2589091151 3.9353669 -1103.3156
+101255.2589091654 3.9352882 -1103.2959
+101256.2589092157 3.9352489 -1103.197
+101257.258909266 3.9353275 -1103.197
+101258.2589093163 3.9352882 -1103.2562
+101259.2589093666 3.9352882 -1103.2168
+101260.2589094169 3.9351306 -1103.2959
+101261.2589094671 3.9352095 -1103.3353
+101262.2589095174 3.9352882 -1103.2366
+101263.2589095677 3.9352095 -1103.3156
+101264.258909618 3.9350519 -1103.1774
+101265.2589096683 3.9351306 -1103.2959
+101266.2589097186 3.9351306 -1103.2761
+101267.2589097689 3.9351702 -1103.197
+101268.2589098192 3.9350913 -1103.3156
+101269.2589098695 3.9350913 -1103.1182
+101270.2589099198 3.9351306 -1103.2168
+101271.2589099701 3.9351306 -1103.2168
+101272.2589100203 3.9350519 -1103.2366
+101273.2589100706 3.9350519 -1103.197
+101274.2589101209 3.9350519 -1103.2761
+101275.2589101712 3.9349732 -1103.2959
+101276.2589102215 3.9350126 -1103.197
+101277.2589102718 3.9350126 -1103.1576
+101278.2589103221 3.9349732 -1103.3551
+101279.2589103724 3.9349732 -1103.197
+101280.2589104227 3.9348552 -1103.2168
+101281.258910473 3.9348946 -1103.2562
+101282.2589105233 3.9348946 -1103.3353
+101283.2589105736 3.9348946 -1103.2366
+101284.2589106238 3.9349732 -1103.2168
+101285.2589106741 3.9349339 -1103.3156
+101286.2589107244 3.9348156 -1103.2562
+101287.2589107747 3.9348552 -1103.2761
+101288.258910825 3.9348946 -1103.2168
+101289.2589108753 3.9348552 -1103.2168
+101290.2589109256 3.9350126 -1103.2562
+101291.2589109759 3.9348946 -1103.3551
+101292.2589110262 3.9348156 -1103.197
+101293.2589110765 3.9347763 -1103.2761
+101294.2589111268 3.9348156 -1103.2761
+101295.2589111771 3.9348946 -1103.2761
+101296.2589112273 3.9346976 -1103.3156
+101297.2589112776 3.9346976 -1103.2168
+101298.2589113279 3.934737 -1103.1182
+101299.2589113782 3.9346583 -1103.2959
+101300.2589114285 3.9346976 -1103.197
+101301.2589114788 3.9346976 -1103.197
+101302.2589115291 3.9346976 -1103.2959
+101303.2589115794 3.9346583 -1103.1576
+101304.2589116297 3.9345403 -1103.2761
+101305.25891168 3.9345403 -1103.1774
+101306.2589117303 3.9346189 -1103.2366
+101307.2589117805 3.9346976 -1103.197
+101308.2589118308 3.9344614 -1103.3156
+101309.2589118811 3.9345796 -1103.2366
+101310.2589119314 3.9345403 -1103.2168
+101311.2589119817 3.9345796 -1103.2366
+101312.258912032 3.9344614 -1103.2168
+101313.2589120823 3.9345007 -1103.2366
+101314.2589121326 3.9343827 -1103.197
+101315.2589121829 3.9345403 -1103.197
+101316.2589122332 3.9344614 -1103.2168
+101317.2589122835 3.9343433 -1103.2761
+101318.2589123338 3.9343827 -1103.3156
+101319.258912384 3.9343827 -1103.2761
+101320.2589124343 3.9343433 -1103.2761
+101321.2589124846 3.934304 -1103.2761
+101322.2589125349 3.9343433 -1103.2562
+101323.2589125852 3.934304 -1103.1774
+101324.2589126355 3.9342647 -1103.2761
+101325.2589126858 3.9343433 -1103.2168
+101326.2589127361 3.9343827 -1103.2761
+101327.2589127864 3.934304 -1103.2761
+101328.2589128367 3.934304 -1103.3551
+101329.258912887 3.9343433 -1103.2168
+101330.2589129373 3.9341857 -1103.2959
+101331.2589129875 3.934304 -1103.2168
+101332.2589130378 3.9342647 -1103.2959
+101333.2589130881 3.9341857 -1103.2761
+101334.2589131384 3.9342251 -1103.2761
+101335.2589131887 3.9341857 -1103.1378
+101336.258913239 3.9341464 -1103.2366
+101337.2589132893 3.9342647 -1103.2168
+101338.2589133396 3.9340677 -1103.2959
+101339.2589133899 3.9341857 -1103.2366
+101340.2589134402 3.9341071 -1103.2761
+101341.2589134905 3.9341071 -1103.197
+101342.2589135407 3.9341071 -1103.3156
+101343.258913591 3.9341071 -1103.2761
+101344.2589136413 3.9341857 -1103.3156
+101345.2589136916 3.933989 -1103.2168
+101346.2589137419 3.9340284 -1103.2761
+101347.2589137922 3.9341071 -1103.2168
+101348.2589138425 3.9340284 -1103.2168
+101349.2589138928 3.933989 -1103.2366
+101350.2589139431 3.9340284 -1103.1576
+101351.2589139934 3.933989 -1103.2366
+101352.2589140437 3.9338708 -1103.1774
+101353.258914094 3.9338315 -1103.3156
+101354.2589141442 3.9340284 -1103.2366
+101355.2589141945 3.9339497 -1103.2366
+101356.2589142448 3.9338315 -1103.2366
+101357.2589142951 3.9338708 -1103.2562
+101358.2589143454 3.9338708 -1103.2168
+101359.2589143957 3.9339101 -1103.2366
+101360.258914446 3.9339497 -1103.2366
+101361.2589144963 3.9337921 -1103.2168
+101362.2589145466 3.9338708 -1103.3749
+101363.2589145969 3.9338315 -1103.2959
+101364.2589146472 3.9339101 -1103.2959
+101365.2589146975 3.9337134 -1103.2761
+101366.2589147477 3.9338708 -1103.2959
+101367.258914798 3.9337921 -1103.1576
+101368.2589148483 3.9337134 -1103.2959
+101369.2589148986 3.9337921 -1103.2761
+101370.2589149489 3.9337528 -1103.2168
+101371.2589149992 3.9337921 -1103.1576
+101372.2589150495 3.9336348 -1103.2761
+101373.2589150998 3.9337134 -1103.197
+101374.2589151501 3.9336348 -1103.2761
+101375.2589152004 3.9336741 -1103.2761
+101376.2589152507 3.9335952 -1103.2761
+101377.2589153009 3.9336348 -1103.2168
+101378.2589153512 3.9336741 -1103.2761
+101379.2589154015 3.9335952 -1103.2761
+101380.2589154518 3.9335952 -1103.2562
+101381.2589155021 3.9335558 -1103.2168
+101382.2589155524 3.9335558 -1103.3156
+101383.2589156027 3.9335952 -1103.1576
+101384.258915653 3.9335165 -1103.2761
+101385.2589157033 3.9334378 -1103.2959
+101386.2589157536 3.9334772 -1103.2761
+101387.2589158039 3.9335165 -1103.1774
+101388.2589158542 3.9335558 -1103.2761
+101389.2589159044 3.9334772 -1103.1774
+101390.2589159547 3.9334378 -1103.2562
+101391.258916005 3.9334378 -1103.2959
+101392.2589160553 3.9334772 -1103.2366
+101393.2589161056 3.9333985 -1103.2761
+101394.2589161559 3.9333985 -1103.2761
+101395.2589162062 3.9333985 -1103.197
+101396.2589162565 3.9333591 -1103.1774
+101397.2589163068 3.9333591 -1103.2761
+101398.2589163571 3.9333591 -1103.2366
+101399.2589164074 3.9333198 -1103.3156
+101400.2589164576 3.9333985 -1103.2168
+101401.2589165079 3.9333591 -1103.2366
+101402.2589165582 3.9332802 -1103.2366
+101403.2589166085 3.9332016 -1103.1378
+101404.2589166588 3.9333198 -1103.1774
+101405.2589167091 3.9333198 -1103.2366
+101406.2589167594 3.9332409 -1103.3156
+101407.2589168097 3.9332802 -1103.197
+101408.25891686 3.9332409 -1103.2761
+101409.2589169103 3.9331229 -1103.197
+101410.2589169606 3.9331622 -1103.2562
+101411.2589170109 3.9332409 -1103.197
+101412.2589170611 3.9332016 -1103.2562
+101413.2589171114 3.9331622 -1103.197
+101414.2589171617 3.9331622 -1103.2366
+101415.258917212 3.9331229 -1103.2761
+101416.2589172623 3.9332016 -1103.2959
+101417.2589173126 3.9331622 -1103.2168
+101418.2589173629 3.9330049 -1103.197
+101419.2589174132 3.9329653 -1103.2562
+101420.2589174635 3.9330835 -1103.2366
+101421.2589175138 3.9329653 -1103.2168
+101422.2589175641 3.9330049 -1103.2366
+101423.2589176144 3.9330049 -1103.197
+101424.2589176646 3.9330442 -1103.2959
+101425.2589177149 3.9329653 -1103.2959
+101426.2589177652 3.9330835 -1103.197
+101427.2589178155 3.9330049 -1103.2959
+101428.2589178658 3.9330049 -1103.2761
+101429.2589179161 3.9329259 -1103.3156
+101430.2589179664 3.9328866 -1103.2761
+101431.2589180167 3.9328079 -1103.2562
+101432.258918067 3.9329259 -1103.2562
+101433.2589181173 3.9328079 -1103.3156
+101434.2589181676 3.9328866 -1103.3156
+101435.2589182178 3.9328473 -1103.2761
+101436.2589182681 3.9328079 -1103.2761
+101437.2589183184 3.9328473 -1103.3551
+101438.2589183687 3.9328866 -1103.2366
+101439.258918419 3.9328079 -1103.2562
+101440.2589184693 3.9327292 -1103.197
+101441.2589185196 3.9327292 -1103.1378
+101442.2589185699 3.9326897 -1103.1774
+101443.2589186202 3.9328866 -1103.2959
+101444.2589186705 3.9327292 -1103.3156
+101445.2589187208 3.9327686 -1103.2562
+101446.2589187711 3.9326503 -1103.3353
+101447.2589188213 3.9326897 -1103.3353
+101448.2589188716 3.9326897 -1103.197
+101449.2589189219 3.9326503 -1103.2761
+101450.2589189722 3.932611 -1103.2959
+101451.2589190225 3.9327686 -1103.2959
+101452.2589190728 3.9326503 -1103.197
+101453.2589191231 3.9325716 -1103.197
+101454.2589191734 3.932611 -1103.1576
+101455.2589192237 3.9325716 -1103.2366
+101456.258919274 3.9325323 -1103.2761
+101457.2589193243 3.9325323 -1103.2761
+101458.2589193746 3.9325323 -1103.2761
+101459.2589194248 3.9325716 -1103.197
+101460.2589194751 3.9325323 -1103.2562
+101461.2589195254 3.932493 -1103.197
+101462.2589195757 3.9325716 -1103.2562
+101463.258919626 3.932493 -1103.2366
+101464.2589196763 3.9325323 -1103.2562
+101465.2589197266 3.932493 -1103.1576
+101466.2589197769 3.932493 -1103.2562
+101467.2589198272 3.9323747 -1103.2959
+101468.2589198775 3.9323747 -1103.2562
+101469.2589199278 3.9323354 -1103.2366
+101470.258919978 3.9325323 -1103.2959
+101471.2589200283 3.9324143 -1103.1576
+101472.2589200786 3.9324143 -1103.2562
+101473.2589201289 3.9324143 -1103.2366
+101474.2589201792 3.9323747 -1103.2168
+101475.2589202295 3.9323354 -1103.2959
+101476.2589202798 3.9322567 -1103.2168
+101477.2589203301 3.9323354 -1103.3353
+101478.2589203804 3.9322567 -1103.2761
+101479.2589204307 3.9322567 -1103.2959
+101480.258920481 3.9322567 -1103.2761
+101481.2589205313 3.932296 -1103.2168
+101482.2589205815 3.932178 -1103.2168
+101483.2589206318 3.932178 -1103.2761
+101484.2589206821 3.9322174 -1103.2959
+101485.2589207324 3.9322174 -1103.2562
+101486.2589207827 3.932178 -1103.2366
+101487.258920833 3.932178 -1103.2168
+101488.2589208833 3.9320993 -1103.1774
+101489.2589209336 3.9320598 -1103.3551
+101490.2589209839 3.932178 -1103.2959
+101491.2589210342 3.9320598 -1103.197
+101492.2589210845 3.9320993 -1103.2761
+101493.2589211348 3.9319417 -1103.2761
+101494.258921185 3.9320993 -1103.2562
+101495.2589212353 3.9320993 -1103.1576
+101496.2589212856 3.9320204 -1103.3156
+101497.2589213359 3.9319811 -1103.0984
+101498.2589213862 3.9319811 -1103.197
+101499.2589214365 3.9320598 -1103.2366
+101500.2589214868 3.9319417 -1103.197
+101501.2589215371 3.9320598 -1103.2959
+101502.2589215874 3.9319811 -1103.2761
+101503.2589216377 3.9319024 -1103.1774
+101504.258921688 3.9319024 -1103.197
+101505.2589217382 3.9318631 -1103.3156
+101506.2589217885 3.9319417 -1103.3156
+101507.2589218388 3.9318631 -1103.1576
+101508.2589218891 3.9319024 -1103.2761
+101509.2589219394 3.9318631 -1103.2366
+101510.2589219897 3.9317448 -1103.3945
+101511.25892204 3.9318631 -1103.197
+101512.2589220903 3.9318237 -1103.3156
+101513.2589221406 3.9317844 -1103.2168
+101514.2589221909 3.9319024 -1103.1774
+101515.2589222412 3.9317844 -1103.197
+101516.2589222915 3.9318237 -1103.3353
+101517.2589223417 3.9317055 -1103.2562
+101518.258922392 3.9318237 -1103.2959
+101519.2589224423 3.9317844 -1103.2168
+101520.2589224926 3.9316268 -1103.2562
+101521.2589225429 3.9317448 -1103.2761
+101522.2589225932 3.9317448 -1103.197
+101523.2589226435 3.9317055 -1103.2562
+101524.2589226938 3.9316268 -1103.2562
+101525.2589227441 3.9316661 -1103.2366
+101526.2589227944 3.9316661 -1103.2168
+101527.2589228447 3.9317055 -1103.2168
+101528.258922895 3.9316268 -1103.1774
+101529.2589229452 3.9316661 -1103.2562
+101530.2589229955 3.9315481 -1103.3749
+101531.2589230458 3.9315481 -1103.1774
+101532.2589230961 3.9315088 -1103.197
+101533.2589231464 3.9315481 -1103.2959
+101534.2589231967 3.9315481 -1103.2366
+101535.258923247 3.9314694 -1103.2366
+101536.2589232973 3.9314694 -1103.197
+101537.2589233476 3.9315088 -1103.2761
+101538.2589233979 3.9314694 -1103.197
+101539.2589234482 3.9313905 -1103.197
+101540.2589234984 3.9313905 -1103.2959
+101541.2589235487 3.9315088 -1103.2761
+101542.258923599 3.9314299 -1103.2168
+101543.2589236493 3.9314694 -1103.3156
+101544.2589236996 3.9315088 -1103.2562
+101545.2589237499 3.9312725 -1103.2168
+101546.2589238002 3.9314299 -1103.2959
+101547.2589238505 3.9313512 -1103.1774
+101548.2589239008 3.9313118 -1103.2562
+101549.2589239511 3.9313905 -1103.2959
+101550.2589240014 3.9313512 -1103.2562
+101551.2589240517 3.9312725 -1103.2366
+101552.2589241019 3.9313118 -1103.2168
+101553.2589241522 3.9312725 -1103.197
+101554.2589242025 3.9311938 -1103.2761
+101555.2589242528 3.9311545 -1103.3156
+101556.2589243031 3.9311938 -1103.3156
+101557.2589243534 3.9312332 -1103.3353
+101558.2589244037 3.9312725 -1103.2168
+101559.258924454 3.9311545 -1103.2761
+101560.2589245043 3.9312332 -1103.2562
+101561.2589245546 3.9312332 -1103.2366
+101562.2589246049 3.9310756 -1103.197
+101563.2589246552 3.9311545 -1103.2366
+101564.2589247054 3.9310362 -1103.2959
+101565.2589247557 3.9311149 -1103.2562
+101566.258924806 3.9311149 -1103.2761
+101567.2589248563 3.9311545 -1103.2959
+101568.2589249066 3.9311149 -1103.197
+101569.2589249569 3.9311938 -1103.1774
+101570.2589250072 3.9309576 -1103.2959
+101571.2589250575 3.9309182 -1103.2761
+101572.2589251078 3.9309576 -1103.3156
+101573.2589251581 3.9310756 -1103.2959
+101574.2589252084 3.9309969 -1103.0984
+101575.2589252586 3.9309576 -1103.197
+101576.2589253089 3.9310362 -1103.2761
+101577.2589253592 3.9311149 -1103.2366
+101578.2589254095 3.9309576 -1103.2761
+101579.2589254598 3.9309182 -1103.2366
+101580.2589255101 3.9309182 -1103.2168
+101581.2589255604 3.9308789 -1103.2168
+101582.2589256107 3.9309182 -1103.2959
+101583.258925661 3.9308 -1103.1774
+101584.2589257113 3.9309182 -1103.2761
+101585.2589257616 3.9308789 -1103.197
+101586.2589258119 3.9309182 -1103.2168
+101587.2589258621 3.9308393 -1103.2366
+101588.2589259124 3.9308 -1103.197
+101589.2589259627 3.9308 -1103.1774
+101590.258926013 3.9308789 -1103.2761
+101591.2589260633 3.9306819 -1103.1774
+101592.2589261136 3.9307606 -1103.2761
+101593.2589261639 3.9306819 -1103.1576
+101594.2589262142 3.9306819 -1103.197
+101595.2589262645 3.9307606 -1103.3156
+101596.2589263148 3.9307213 -1103.2761
+101597.2589263651 3.9306819 -1103.2366
+101598.2589264154 3.9305639 -1103.3551
+101599.2589264656 3.9307213 -1103.2562
+101600.2589265159 3.9305639 -1103.2366
+101601.2589265662 3.9307213 -1103.2959
+101602.2589266165 3.9306819 -1103.3353
+101603.2589266668 3.9306033 -1103.2761
+101604.2589267171 3.9306819 -1103.2168
+101605.2589267674 3.9306426 -1103.2562
+101606.2589268177 3.9306033 -1103.1576
+101607.258926868 3.9306819 -1103.2959
+101608.2589269183 3.9305243 -1103.2366
+101609.2589269686 3.930485 -1103.2562
+101610.2589270188 3.9306033 -1103.3749
+101611.2589270691 3.9305639 -1103.2366
+101612.2589271194 3.930485 -1103.2168
+101613.2589271697 3.9304457 -1103.1576
+101614.25892722 3.9305639 -1103.2366
+101615.2589272703 3.9304457 -1103.1576
+101616.2589273206 3.9305243 -1103.2761
+101617.2589273709 3.930485 -1103.1774
+101618.2589274212 3.930367 -1103.2366
+101619.2589274715 3.9304063 -1103.2168
+101620.2589275218 3.9304063 -1103.2959
+101621.2589275721 3.9302883 -1103.2168
+101622.2589276223 3.930367 -1103.197
+101623.2589276726 3.9303277 -1103.197
+101624.2589277229 3.9303277 -1103.2959
+101625.2589277732 3.9303277 -1103.2366
+101626.2589278235 3.930249 -1103.3551
+101627.2589278738 3.9302883 -1103.2562
+101628.2589279241 3.9304063 -1103.197
+101629.2589279744 3.9302883 -1103.197
+101630.2589280247 3.9302883 -1103.2562
+101631.258928075 3.930249 -1103.2366
+101632.2589281253 3.9301307 -1103.197
+101633.2589281756 3.9302094 -1103.2168
+101634.2589282258 3.9301307 -1103.2366
+101635.2589282761 3.9302094 -1103.197
+101636.2589283264 3.9302094 -1103.2761
+101637.2589283767 3.9301307 -1103.2761
+101638.258928427 3.9302094 -1103.2168
+101639.2589284773 3.9302094 -1103.2761
+101640.2589285276 3.9300914 -1103.2168
+101641.2589285779 3.9301701 -1103.3749
+101642.2589286282 3.9301307 -1103.2366
+101643.2589286785 3.9300127 -1103.1576
+101644.2589287288 3.9300914 -1103.2959
+101645.258928779 3.9300127 -1103.2562
+101646.2589288293 3.9300914 -1103.2761
+101647.2589288796 3.9300914 -1103.2366
+101648.2589289299 3.9300127 -1103.2959
+101649.2589289802 3.9300127 -1103.2168
+101650.2589290305 3.9300127 -1103.2562
+101651.2589290808 3.9300127 -1103.2168
+101652.2589291311 3.9300127 -1103.2168
+101653.2589291814 3.9298551 -1103.2562
+101654.2589292317 3.9299734 -1103.1774
+101655.258929282 3.929934 -1103.2366
+101656.2589293323 3.9298551 -1103.3353
+101657.2589293825 3.9298944 -1103.2366
+101658.2589294328 3.929934 -1103.197
+101659.2589294831 3.9298551 -1103.2366
+101660.2589295334 3.9297764 -1103.2562
+101661.2589295837 3.9298944 -1103.2761
+101662.258929634 3.9298944 -1103.1774
+101663.2589296843 3.9297764 -1103.2562
+101664.2589297346 3.9298158 -1103.2562
+101665.2589297849 3.9299734 -1103.2562
+101666.2589298352 3.9298158 -1103.3156
+101667.2589298855 3.9297371 -1103.1576
+101668.2589299358 3.9298551 -1103.2168
+101669.258929986 3.9296978 -1103.3353
+101670.2589300363 3.9298158 -1103.2168
+101671.2589300866 3.9298551 -1103.197
+101672.2589301369 3.9297371 -1103.2168
+101673.2589301872 3.9296978 -1103.3156
+101674.2589302375 3.9296584 -1103.2562
+101675.2589302878 3.9296191 -1103.2761
+101676.2589303381 3.9295795 -1103.2168
+101677.2589303884 3.9296191 -1103.2366
+101678.2589304387 3.9296191 -1103.197
+101679.258930489 3.9296191 -1103.2366
+101680.2589305392 3.9296191 -1103.197
+101681.2589305895 3.9296584 -1103.1774
+101682.2589306398 3.9295795 -1103.2168
+101683.2589306901 3.9296584 -1103.1576
+101684.2589307404 3.9295795 -1103.197
+101685.2589307907 3.9296191 -1103.2761
+101686.258930841 3.9295008 -1103.2562
+101687.2589308913 3.9296191 -1103.2366
+101688.2589309416 3.9295402 -1103.2168
+101689.2589309919 3.9295402 -1103.2366
+101690.2589310422 3.9295008 -1103.2562
+101691.2589310925 3.9294615 -1103.2366
+101692.2589311427 3.9294615 -1103.197
+101693.258931193 3.9294221 -1103.1378
+101694.2589312433 3.9293435 -1103.2562
+101695.2589312936 3.9293828 -1103.1378
+101696.2589313439 3.9294221 -1103.2562
+101697.2589313942 3.9293041 -1103.2562
+101698.2589314445 3.9293435 -1103.1774
+101699.2589314948 3.9292645 -1103.197
+101700.2589315451 3.9293828 -1103.2168
+101701.2589315954 3.9293828 -1103.2168
+101702.2589316457 3.9293435 -1103.2562
+101703.2589316959 3.9294615 -1103.3353
+101704.2589317462 3.9293041 -1103.2366
+101705.2589317965 3.9293435 -1103.2168
+101706.2589318468 3.9292645 -1103.197
+101707.2589318971 3.9291465 -1103.2761
+101708.2589319474 3.9291465 -1103.2761
+101709.2589319977 3.9292252 -1103.197
+101710.258932048 3.9292252 -1103.2761
+101711.2589320983 3.9293041 -1103.2168
+101712.2589321486 3.9291465 -1103.1182
+101713.2589321989 3.9292252 -1103.2562
+101714.2589322492 3.9291465 -1103.2168
+101715.2589322994 3.9291465 -1103.2366
+101716.2589323497 3.9291072 -1103.3156
+101717.2589324 3.9291465 -1103.2562
+101718.2589324503 3.9291072 -1103.2562
+101719.2589325006 3.9290679 -1103.2168
+101720.2589325509 3.9290285 -1103.2168
+101721.2589326012 3.9290285 -1103.1774
+101722.2589326515 3.9291465 -1103.2761
+101723.2589327018 3.9289496 -1103.2366
+101724.2589327521 3.9290285 -1103.3156
+101725.2589328024 3.9290285 -1103.2959
+101726.2589328527 3.9290679 -1103.3156
+101727.2589329029 3.9290285 -1103.1378
+101728.2589329532 3.9290285 -1103.2366
+101729.2589330035 3.9289103 -1103.197
+101730.2589330538 3.9289103 -1103.2366
+101731.2589331041 3.9288709 -1103.2366
+101732.2589331544 3.9288709 -1103.3749
+101733.2589332047 3.9288316 -1103.2366
+101734.258933255 3.9289103 -1103.3945
+101735.2589333053 3.9287922 -1103.2366
+101736.2589333556 3.9289103 -1103.1378
+101737.2589334059 3.9288316 -1103.2562
+101738.2589334561 3.9288709 -1103.1774
+101739.2589335064 3.928674 -1103.197
+101740.2589335567 3.9287922 -1103.2959
+101741.258933607 3.9287529 -1103.2959
+101742.2589336573 3.9288316 -1103.2761
+101743.2589337076 3.9288316 -1103.197
+101744.2589337579 3.9287529 -1103.2168
+101745.2589338082 3.9288316 -1103.197
+101746.2589338585 3.9287529 -1103.2366
+101747.2589339088 3.928674 -1103.2562
+101748.2589339591 3.9287922 -1103.2761
+101749.2589340094 3.9287136 -1103.1774
+101750.2589340596 3.9287136 -1103.1774
+101751.2589341099 3.928674 -1103.197
+101752.2589341602 3.9287136 -1103.2761
+101753.2589342105 3.928674 -1103.2761
+101754.2589342608 3.9286346 -1103.197
+101755.2589343111 3.9285953 -1103.1774
+101756.2589343614 3.9286346 -1103.2562
+101757.2589344117 3.9285166 -1103.2562
+101758.258934462 3.9285166 -1103.2366
+101759.2589345123 3.9284773 -1103.1774
+101760.2589345626 3.9285166 -1103.2761
+101761.2589346129 3.928556 -1103.197
+101762.2589346631 3.9284379 -1103.2168
+101763.2589347134 3.9284379 -1103.3156
+101764.2589347637 3.9285953 -1103.1774
+101765.258934814 3.9283986 -1103.2761
+101766.2589348643 3.9284379 -1103.2168
+101767.2589349146 3.9284773 -1103.197
+101768.2589349649 3.9284379 -1103.2562
+101769.2589350152 3.928556 -1103.2959
+101770.2589350655 3.9283986 -1103.3353
+101771.2589351158 3.9284773 -1103.2168
+101772.2589351661 3.9284379 -1103.2761
+101773.2589352163 3.9282804 -1103.2366
+101774.2589352666 3.928359 -1103.1774
+101775.2589353169 3.928359 -1103.2761
+101776.2589353672 3.928241 -1103.2366
+101777.2589354175 3.9281623 -1103.2366
+101778.2589354678 3.9282804 -1103.197
+101779.2589355181 3.928241 -1103.1774
+101780.2589355684 3.9282804 -1103.197
+101781.2589356187 3.928241 -1103.3749
+101782.258935669 3.9283197 -1103.2761
+101783.2589357193 3.928241 -1103.2168
+101784.2589357696 3.9282804 -1103.2562
+101785.2589358198 3.9282017 -1103.2366
+101786.2589358701 3.928123 -1103.3353
+101787.2589359204 3.928123 -1103.2168
+101788.2589359707 3.9281623 -1103.2366
+101789.258936021 3.9281623 -1103.1774
+101790.2589360713 3.928123 -1103.197
+101791.2589361216 3.928123 -1103.2761
+101792.2589361719 3.9281623 -1103.1576
+101793.2589362222 3.9280837 -1103.2168
+101794.2589362725 3.9281623 -1103.2959
+101795.2589363228 3.9280441 -1103.2562
+101796.2589363731 3.9280441 -1103.2366
+101797.2589364233 3.928123 -1103.2761
+101798.2589364736 3.9279261 -1103.2761
+101799.2589365239 3.9280441 -1103.1182
+101800.2589365742 3.9278474 -1103.3156
+101801.2589366245 3.9280441 -1103.2761
+101802.2589366748 3.9280837 -1103.3156
+101803.2589367251 3.9280047 -1103.2761
+101804.2589367754 3.9279261 -1103.2562
+101805.2589368257 3.9278867 -1103.197
+101806.258936876 3.9279654 -1103.3353
+101807.2589369263 3.9280047 -1103.197
+101808.2589369765 3.9279261 -1103.2959
+101809.2589370268 3.9278867 -1103.2168
+101810.2589370771 3.927808 -1103.3353
+101811.2589371274 3.9278474 -1103.1576
+101812.2589371777 3.9278474 -1103.3156
+101813.258937228 3.9279654 -1103.2959
+101814.2589372783 3.9278474 -1103.2168
+101815.2589373286 3.9277687 -1103.2562
+101816.2589373789 3.9276898 -1103.2168
+101817.2589374292 3.9277687 -1103.2366
+101818.2589374795 3.9277687 -1103.2761
+101819.2589375298 3.9276898 -1103.1774
+101820.25893758 3.9277291 -1103.2366
+101821.2589376303 3.9278474 -1103.2959
+101822.2589376806 3.9278474 -1103.2366
+101823.2589377309 3.9277687 -1103.1774
+101824.2589377812 3.9276898 -1103.2168
+101825.2589378315 3.9276898 -1103.2366
+101826.2589378818 3.9277291 -1103.2562
+101827.2589379321 3.9276898 -1103.3156
+101828.2589379824 3.9276898 -1103.1774
+101829.2589380327 3.9276505 -1103.2366
+101830.258938083 3.9276111 -1103.2168
+101831.2589381333 3.9276898 -1103.2168
+101832.2589381835 3.9276898 -1103.2366
+101833.2589382338 3.9276111 -1103.3156
+101834.2589382841 3.9276111 -1103.2366
+101835.2589383344 3.9275324 -1103.197
+101836.2589383847 3.9274931 -1103.197
+101837.258938435 3.9275324 -1103.2168
+101838.2589384853 3.9275718 -1103.2761
+101839.2589385356 3.9276111 -1103.3156
+101840.2589385859 3.9274931 -1103.2562
+101841.2589386362 3.9274931 -1103.2168
+101842.2589386865 3.9274931 -1103.2761
+101843.2589387367 3.9274538 -1103.197
+101844.258938787 3.9275324 -1103.2366
+101845.2589388373 3.9274142 -1103.2366
+101846.2589388876 3.9274931 -1103.2562
+101847.2589389379 3.9273748 -1103.2366
+101848.2589389882 3.9274142 -1103.197
+101849.2589390385 3.9274538 -1103.2168
+101850.2589390888 3.9273748 -1103.2366
+101851.2589391391 3.9274538 -1103.2366
+101852.2589391894 3.9273748 -1103.1774
+101853.2589392397 3.9273355 -1103.2366
+101854.25893929 3.9272568 -1103.2761
+101855.2589393402 3.9273355 -1103.2959
+101856.2589393905 3.9272568 -1103.1774
+101857.2589394408 3.9272962 -1103.2959
+101858.2589394911 3.9272175 -1103.2366
+101859.2589395414 3.9271781 -1103.2366
+101860.2589395917 3.9273355 -1103.2366
+101861.258939642 3.9272568 -1103.2168
+101862.2589396923 3.9271781 -1103.2562
+101863.2589397426 3.9272175 -1103.2366
+101864.2589397929 3.9272568 -1103.2761
+101865.2589398432 3.9270992 -1103.197
+101866.2589398935 3.9270599 -1103.2761
+101867.2589399437 3.9270992 -1103.2562
+101868.258939994 3.9271386 -1103.3156
+101869.2589400443 3.9272175 -1103.2562
+101870.2589400946 3.9272568 -1103.3749
+101871.2589401449 3.9270992 -1103.2959
+101872.2589401952 3.9270992 -1103.2562
+101873.2589402455 3.9270992 -1103.2959
+101874.2589402958 3.9269812 -1103.197
+101875.2589403461 3.9270205 -1103.2562
+101876.2589403964 3.9271386 -1103.2761
+101877.2589404467 3.9270205 -1103.1774
+101878.2589404969 3.9269419 -1103.2366
+101879.2589405472 3.9269812 -1103.2168
+101880.2589405975 3.9270992 -1103.2168
+101881.2589406478 3.9269812 -1103.3353
+101882.2589406981 3.9269025 -1103.2168
+101883.2589407484 3.9269419 -1103.2761
+101884.2589407987 3.9269419 -1103.2761
+101885.258940849 3.9270205 -1103.2562
+101886.2589408993 3.9269419 -1103.2366
+101887.2589409496 3.9267843 -1103.1774
+101888.2589409999 3.9269025 -1103.2959
+101889.2589410502 3.9269419 -1103.2761
+101890.2589411004 3.9268632 -1103.2761
+101891.2589411507 3.9267449 -1103.3353
+101892.258941201 3.9268632 -1103.2562
+101893.2589412513 3.9267843 -1103.2168
+101894.2589413016 3.9268236 -1103.2761
+101895.2589413519 3.9268236 -1103.2168
+101896.2589414022 3.9268236 -1103.2959
+101897.2589414525 3.9267843 -1103.2562
+101898.2589415028 3.9266663 -1103.2168
+101899.2589415531 3.9267843 -1103.2761
+101900.2589416034 3.9267056 -1103.3353
+101901.2589416537 3.9267449 -1103.2761
+101902.2589417039 3.9266663 -1103.2562
+101903.2589417542 3.9267449 -1103.2168
+101904.2589418045 3.9266269 -1103.2761
+101905.2589418548 3.9266663 -1103.3156
+101906.2589419051 3.9265482 -1103.3156
+101907.2589419554 3.9266663 -1103.2168
+101908.2589420057 3.9265876 -1103.3156
+101909.258942056 3.9264693 -1103.2168
+101910.2589421063 3.9265876 -1103.2366
+101911.2589421566 3.9265087 -1103.2168
+101912.2589422069 3.9265482 -1103.197
+101913.2589422571 3.9265087 -1103.3353
+101914.2589423074 3.9265876 -1103.2959
+101915.2589423577 3.9265876 -1103.2959
+101916.258942408 3.9265482 -1103.197
+101917.2589424583 3.9263906 -1103.2168
+101918.2589425086 3.9265876 -1103.2366
+101919.2589425589 3.9264693 -1103.197
+101920.2589426092 3.9263513 -1103.2959
+101921.2589426595 3.9264693 -1103.2562
+101922.2589427098 3.9265087 -1103.1774
+101923.2589427601 3.9265087 -1103.2366
+101924.2589428104 3.9263906 -1103.197
+101925.2589428606 3.9263906 -1103.2562
+101926.2589429109 3.9263513 -1103.2562
+101927.2589429612 3.9263513 -1103.1774
+101928.2589430115 3.92643 -1103.197
+101929.2589430618 3.9263906 -1103.2168
+101930.2589431121 3.9262333 -1103.2959
+101931.2589431624 3.9262726 -1103.1774
+101932.2589432127 3.926312 -1103.2168
+101933.258943263 3.926312 -1103.2761
+101934.2589433133 3.9262726 -1103.2562
+101935.2589433636 3.9263513 -1103.2168
+101936.2589434139 3.9262333 -1103.2562
+101937.2589434641 3.9262726 -1103.2562
+101938.2589435144 3.9261937 -1103.2366
+101939.2589435647 3.9262333 -1103.2562
+101940.258943615 3.9261544 -1103.2168
+101941.2589436653 3.9261937 -1103.1378
+101942.2589437156 3.9262333 -1103.197
+101943.2589437659 3.9261544 -1103.2562
+101944.2589438162 3.9262333 -1103.3353
+101945.2589438665 3.9261544 -1103.2959
+101946.2589439168 3.9261544 -1103.2761
+101947.2589439671 3.926115 -1103.197
+101948.2589440173 3.926115 -1103.2761
+101949.2589440676 3.926115 -1103.1774
+101950.2589441179 3.9259577 -1103.197
+101951.2589441682 3.9260757 -1103.2761
+101952.2589442185 3.9260757 -1103.3156
+101953.2589442688 3.9260364 -1103.197
+101954.2589443191 3.9261544 -1103.197
+101955.2589443694 3.9259577 -1103.3156
+101956.2589444197 3.9259183 -1103.197
+101957.25894447 3.9259577 -1103.2959
+101958.2589445203 3.9260757 -1103.3353
+101959.2589445706 3.9258788 -1103.2761
+101960.2589446208 3.9259577 -1103.2366
+101961.2589446711 3.9260364 -1103.2562
+101962.2589447214 3.9258788 -1103.2562
+101963.2589447717 3.9259577 -1103.2562
+101964.258944822 3.9259183 -1103.2761
+101965.2589448723 3.9258788 -1103.2168
+101966.2589449226 3.9258394 -1103.1774
+101967.2589449729 3.9258001 -1103.197
+101968.2589450232 3.9258001 -1103.1378
+101969.2589450735 3.9257214 -1103.2761
+101970.2589451238 3.9258001 -1103.2366
+101971.2589451741 3.9258394 -1103.2366
+101972.2589452243 3.9258394 -1103.2761
+101973.2589452746 3.9258394 -1103.2168
+101974.2589453249 3.9257214 -1103.197
+101975.2589453752 3.9256427 -1103.1774
+101976.2589454255 3.9257607 -1103.2366
+101977.2589454758 3.9256821 -1103.197
+101978.2589455261 3.9257214 -1103.2366
+101979.2589455764 3.9256427 -1103.2366
+101980.2589456267 3.9256427 -1103.197
+101981.258945677 3.9256427 -1103.197
+101982.2589457273 3.9256427 -1103.2562
+101983.2589457775 3.9257214 -1103.2168
+101984.2589458278 3.9256821 -1103.2761
+101985.2589458781 3.9256821 -1103.2366
+101986.2589459284 3.9255638 -1103.3551
+101987.2589459787 3.9255638 -1103.2761
+101988.258946029 3.9254458 -1103.2761
+101989.2589460793 3.9256034 -1103.1774
+101990.2589461296 3.9255245 -1103.2562
+101991.2589461799 3.9254851 -1103.197
+101992.2589462302 3.9256427 -1103.2366
+101993.2589462805 3.9256034 -1103.2562
+101994.2589463308 3.9254851 -1103.2761
+101995.258946381 3.9254851 -1103.2761
+101996.2589464313 3.9255245 -1103.2168
+101997.2589464816 3.9255245 -1103.2366
+101998.2589465319 3.9253671 -1103.2168
+101999.2589465822 3.9253671 -1103.2761
+102000.2589466325 3.9254458 -1103.1774
+102001.2589466828 3.9254065 -1103.2168
+102002.2589467331 3.9253671 -1103.2562
+102003.2589467834 3.9253671 -1103.2959
+102004.2589468337 3.9255245 -1103.3353
+102005.258946884 3.9252882 -1103.2366
+102006.2589469342 3.9253671 -1103.3156
+102007.2589469845 3.9252095 -1103.197
+102008.2589470348 3.9252882 -1103.2562
+102009.2589470851 3.9252882 -1103.2168
+102010.2589471354 3.9253671 -1103.3353
+102011.2589471857 3.9253671 -1103.2959
+102012.258947236 3.9253278 -1103.2366
+102013.2589472863 3.9252095 -1103.3156
+102014.2589473366 3.9252882 -1103.2761
+102015.2589473869 3.9250915 -1103.2366
+102016.2589474372 3.9251308 -1103.2562
+102017.2589474875 3.9252489 -1103.2562
+102018.2589475377 3.9253278 -1103.2168
+102019.258947588 3.9252095 -1103.3353
+102020.2589476383 3.9251308 -1103.2168
+102021.2589476886 3.9251702 -1103.2168
+102022.2589477389 3.9251308 -1103.2959
+102023.2589477892 3.9251702 -1103.2562
+102024.2589478395 3.9252489 -1103.2562
+102025.2589478898 3.9251308 -1103.2168
+102026.2589479401 3.9250128 -1103.2761
+102027.2589479904 3.9250522 -1103.1576
+102028.2589480407 3.9250915 -1103.2366
+102029.258948091 3.9250915 -1103.3353
+102030.2589481412 3.9250915 -1103.2761
+102031.2589481915 3.9249732 -1103.3156
+102032.2589482418 3.9249732 -1103.2168
+102033.2589482921 3.9249732 -1103.2959
+102034.2589483424 3.9250128 -1103.2761
+102035.2589483927 3.9249732 -1103.2366
+102036.258948443 3.9249732 -1103.2366
+102037.2589484933 3.9249732 -1103.2562
+102038.2589485436 3.9250128 -1103.2959
+102039.2589485939 3.9249732 -1103.1774
+102040.2589486442 3.9248946 -1103.1576
+102041.2589486944 3.9249339 -1103.1774
+102042.2589487447 3.9248159 -1103.2366
+102043.258948795 3.9248946 -1103.197
+102044.2589488453 3.9248552 -1103.2366
+102045.2589488956 3.9247766 -1103.2959
+102046.2589489459 3.9248159 -1103.197
+102047.2589489962 3.9246979 -1103.2959
+102048.2589490465 3.9246979 -1103.2366
+102049.2589490968 3.9248552 -1103.3353
+102050.2589491471 3.9247766 -1103.197
+102051.2589491974 3.9247766 -1103.2959
+102052.2589492477 3.9246979 -1103.2366
+102053.2589492979 3.9247372 -1103.1774
+102054.2589493482 3.9246979 -1103.1774
+102055.2589493985 3.9246583 -1103.2959
+102056.2589494488 3.9247372 -1103.2168
+102057.2589494991 3.9246979 -1103.2562
+102058.2589495494 3.9246979 -1103.1774
+102059.2589495997 3.9246979 -1103.2959
+102060.25894965 3.9246979 -1103.1774
+102061.2589497003 3.924619 -1103.2366
+102062.2589497506 3.924619 -1103.197
+102063.2589498009 3.9246979 -1103.1378
+102064.2589498512 3.9245796 -1103.2562
+102065.2589499014 3.924619 -1103.2168
+102066.2589499517 3.924619 -1103.2562
+102067.258950002 3.9245009 -1103.197
+102068.2589500523 3.9244616 -1103.2761
+102069.2589501026 3.9245009 -1103.2562
+102070.2589501529 3.9245796 -1103.1774
+102071.2589502032 3.9245796 -1103.1182
+102072.2589502535 3.9244223 -1103.2366
+102073.2589503038 3.9245403 -1103.2959
+102074.2589503541 3.9244223 -1103.2959
+102075.2589504044 3.9244223 -1103.2562
+102076.2589504546 3.9245009 -1103.2959
+102077.2589505049 3.9243433 -1103.2168
+102078.2589505552 3.9243829 -1103.2562
+102079.2589506055 3.9244223 -1103.2168
+102080.2589506558 3.9243829 -1103.2168
+102081.2589507061 3.9243829 -1103.2562
+102082.2589507564 3.9243433 -1103.2366
+102083.2589508067 3.9243829 -1103.2562
+102084.258950857 3.9243433 -1103.1774
+102085.2589509073 3.9244223 -1103.2761
+102086.2589509576 3.9242647 -1103.2562
+102087.2589510079 3.9243829 -1103.2761
+102088.2589510581 3.9242647 -1103.2562
+102089.2589511084 3.9242253 -1103.197
+102090.2589511587 3.9243829 -1103.2366
+102091.258951209 3.9242647 -1103.3156
+102092.2589512593 3.9242253 -1103.2168
+102093.2589513096 3.9242253 -1103.2168
+102094.2589513599 3.9241467 -1103.197
+102095.2589514102 3.924186 -1103.2168
+102096.2589514605 3.9242647 -1103.2562
+102097.2589515108 3.9241073 -1103.2168
+102098.2589515611 3.924186 -1103.197
+102099.2589516114 3.9242253 -1103.2562
+102100.2589516616 3.9241467 -1103.2761
+102101.2589517119 3.9241467 -1103.3353
+102102.2589517622 3.924068 -1103.2168
+102103.2589518125 3.924186 -1103.2366
+102104.2589518628 3.9241073 -1103.197
+102105.2589519131 3.9240284 -1103.3353
+102106.2589519634 3.9241467 -1103.197
+102107.2589520137 3.9241073 -1103.197
+102108.258952064 3.924068 -1103.3156
+102109.2589521143 3.9239497 -1103.197
+102110.2589521646 3.924068 -1103.2562
+102111.2589522148 3.9240284 -1103.2168
+102112.2589522651 3.9239891 -1103.2562
+102113.2589523154 3.9240284 -1103.3353
+102114.2589523657 3.9239497 -1103.2366
+102115.258952416 3.923871 -1103.1378
+102116.2589524663 3.9239497 -1103.2366
+102117.2589525166 3.9239891 -1103.3749
+102118.2589525669 3.9239104 -1103.1576
+102119.2589526172 3.9239104 -1103.1774
+102120.2589526675 3.923871 -1103.197
+102121.2589527178 3.9238317 -1103.2168
+102122.2589527681 3.923871 -1103.2761
+102123.2589528183 3.9238317 -1103.2168
+102124.2589528686 3.9239104 -1103.197
+102125.2589529189 3.9237924 -1103.2761
+102126.2589529692 3.923871 -1103.2562
+102127.2589530195 3.923753 -1103.2761
+102128.2589530698 3.9237134 -1103.2168
+102129.2589531201 3.923753 -1103.2168
+102130.2589531704 3.9237134 -1103.2168
+102131.2589532207 3.9236741 -1103.2366
+102132.258953271 3.9237924 -1103.2761
+102133.2589533213 3.923753 -1103.2562
+102134.2589533716 3.9237134 -1103.2761
+102135.2589534218 3.9236741 -1103.1378
+102136.2589534721 3.9236741 -1103.2562
+102137.2589535224 3.9236348 -1103.2959
+102138.2589535727 3.9236348 -1103.197
+102139.258953623 3.9235561 -1103.1378
+102140.2589536733 3.9235561 -1103.1576
+102141.2589537236 3.9235954 -1103.2761
+102142.2589537739 3.9235954 -1103.2562
+102143.2589538242 3.9236741 -1103.3353
+102144.2589538745 3.9235561 -1103.2959
+102145.2589539248 3.9235561 -1103.1774
+102146.258953975 3.9235561 -1103.2562
+102147.2589540253 3.9234774 -1103.2366
+102148.2589540756 3.9235168 -1103.2562
+102149.2589541259 3.9235168 -1103.1774
+102150.2589541762 3.9235168 -1103.2761
+102151.2589542265 3.9233198 -1103.197
+102152.2589542768 3.9233985 -1103.2366
+102153.2589543271 3.9233592 -1103.3156
+102154.2589543774 3.9233592 -1103.2562
+102155.2589544277 3.9234774 -1103.2168
+102156.258954478 3.9232411 -1103.197
+102157.2589545283 3.9233985 -1103.2168
+102158.2589545785 3.9233985 -1103.2959
+102159.2589546288 3.9234378 -1103.2761
+102160.2589546791 3.9233198 -1103.197
+102161.2589547294 3.9233198 -1103.2761
+102162.2589547797 3.9233198 -1103.2168
+102163.25895483 3.9233198 -1103.2168
+102164.2589548803 3.9233198 -1103.2366
+102165.2589549306 3.9232805 -1103.2366
+102166.2589549809 3.9232805 -1103.2959
+102167.2589550312 3.9233985 -1103.1774
+102168.2589550815 3.9232805 -1103.2366
+102169.2589551318 3.9232411 -1103.2761
+102170.258955182 3.9232018 -1103.1774
+102171.2589552323 3.9231229 -1103.2761
+102172.2589552826 3.9230835 -1103.2168
+102173.2589553329 3.9231229 -1103.2366
+102174.2589553832 3.9232411 -1103.2366
+102175.2589554335 3.9232411 -1103.1774
+102176.2589554838 3.9232018 -1103.2761
+102177.2589555341 3.9230835 -1103.2168
+102178.2589555844 3.9231229 -1103.197
+102179.2589556347 3.9230442 -1103.197
+102180.258955685 3.9230442 -1103.2168
+102181.2589557352 3.9230835 -1103.2366
+102182.2589557855 3.9230835 -1103.2168
+102183.2589558358 3.9230835 -1103.2959
+102184.2589558861 3.9229262 -1103.1774
+102185.2589559364 3.9230442 -1103.2959
+102186.2589559867 3.9230835 -1103.197
+102187.258956037 3.9229655 -1103.2959
+102188.2589560873 3.9229262 -1103.2366
+102189.2589561376 3.9229655 -1103.2168
+102190.2589561879 3.9229655 -1103.2168
+102191.2589562382 3.9229655 -1103.3156
+102192.2589562885 3.9230049 -1103.1774
+102193.2589563387 3.9230049 -1103.2761
+102194.258956389 3.9228868 -1103.2366
+102195.2589564393 3.9229262 -1103.2562
+102196.2589564896 3.9228079 -1103.2959
+102197.2589565399 3.9228475 -1103.1378
+102198.2589565902 3.9228868 -1103.2168
+102199.2589566405 3.9227686 -1103.1774
+102200.2589566908 3.9227686 -1103.2366
+102201.2589567411 3.9228475 -1103.2562
+102202.2589567914 3.9227686 -1103.2761
+102203.2589568417 3.9228475 -1103.2761
+102204.258956892 3.9228079 -1103.2366
+102205.2589569422 3.9227293 -1103.2168
+102206.2589569925 3.9226899 -1103.2562
+102207.2589570428 3.9227686 -1103.2168
+102208.2589570931 3.9226506 -1103.2959
+102209.2589571434 3.9227293 -1103.2959
+102210.2589571937 3.9226506 -1103.2761
+102211.258957244 3.9226899 -1103.2168
+102212.2589572943 3.9227686 -1103.2562
+102213.2589573446 3.9227293 -1103.2959
+102214.2589573949 3.9226506 -1103.3353
+102215.2589574452 3.9226112 -1103.2562
+102216.2589574954 3.9226506 -1103.2366
+102217.2589575457 3.9225719 -1103.3156
+102218.258957596 3.9226506 -1103.2562
+102219.2589576463 3.9226506 -1103.3551
+102220.2589576966 3.9225719 -1103.2168
+102221.2589577469 3.9225326 -1103.2168
+102222.2589577972 3.9225326 -1103.2562
+102223.2589578475 3.9225719 -1103.2562
+102224.2589578978 3.9225326 -1103.2761
+102225.2589579481 3.9224536 -1103.2562
+102226.2589579984 3.922493 -1103.1774
+102227.2589580487 3.922493 -1103.1774
+102228.2589580989 3.9224536 -1103.2366
+102229.2589581492 3.9225326 -1103.3156
+102230.2589581995 3.9224536 -1103.2562
+102231.2589582498 3.9222963 -1103.2562
+102232.2589583001 3.9224143 -1103.1576
+102233.2589583504 3.9224143 -1103.2959
+102234.2589584007 3.9224143 -1103.197
+102235.258958451 3.9224536 -1103.197
+102236.2589585013 3.9224536 -1103.197
+102237.2589585516 3.9223356 -1103.2366
+102238.2589586019 3.9224536 -1103.2562
+102239.2589586522 3.9222569 -1103.2168
+102240.2589587024 3.9222963 -1103.3156
+102241.2589587527 3.9222569 -1103.197
+102242.258958803 3.9222963 -1103.2366
+102243.2589588533 3.9222569 -1103.3156
+102244.2589589036 3.9222569 -1103.3156
+102245.2589589539 3.9222569 -1103.197
+102246.2589590042 3.9221387 -1103.2959
+102247.2589590545 3.9223356 -1103.2562
+102248.2589591048 3.9222569 -1103.2366
+102249.2589591551 3.9222176 -1103.197
+102250.2589592054 3.9221387 -1103.2562
+102251.2589592556 3.9221387 -1103.197
+102252.2589593059 3.922178 -1103.2562
+102253.2589593562 3.9221387 -1103.1774
+102254.2589594065 3.9220994 -1103.2761
+102255.2589594568 3.922178 -1103.2959
+102256.2589595071 3.9220994 -1103.1576
+102257.2589595574 3.92206 -1103.2168
+102258.2589596077 3.92206 -1103.197
+102259.258959658 3.9221387 -1103.2959
+102260.2589597083 3.9221387 -1103.2959
+102261.2589597586 3.9220207 -1103.2761
+102262.2589598089 3.92206 -1103.2168
+102263.2589598591 3.9220994 -1103.2562
+102264.2589599094 3.92206 -1103.2959
+102265.2589599597 3.9220207 -1103.2366
+102266.25896001 3.921942 -1103.2366
+102267.2589600603 3.921942 -1103.2761
+102268.2589601106 3.9219024 -1103.2366
+102269.2589601609 3.9220207 -1103.3156
+102270.2589602112 3.921942 -1103.2366
+102271.2589602615 3.92206 -1103.197
+102272.2589603118 3.921942 -1103.197
+102273.2589603621 3.9219024 -1103.197
+102274.2589604124 3.9218237 -1103.197
+102275.2589604626 3.921942 -1103.2168
+102276.2589605129 3.9218237 -1103.197
+102277.2589605632 3.9218631 -1103.3156
+102278.2589606135 3.9218631 -1103.2959
+102279.2589606638 3.9218631 -1103.2366
+102280.2589607141 3.9217451 -1103.197
+102281.2589607644 3.9217844 -1103.3551
+102282.2589608147 3.921627 -1103.197
+102283.258960865 3.9219024 -1103.2562
+102284.2589609153 3.9216664 -1103.197
+102285.2589609656 3.9216664 -1103.3156
+102286.2589610158 3.9218237 -1103.2761
+102287.2589610661 3.921627 -1103.197
+102288.2589611164 3.9216664 -1103.2366
+102289.2589611667 3.921627 -1103.1576
+102290.258961217 3.9215875 -1103.3551
+102291.2589612673 3.9215481 -1103.3945
+102292.2589613176 3.9215875 -1103.2562
+102293.2589613679 3.9217057 -1103.1774
+102294.2589614182 3.921627 -1103.1378
+102295.2589614685 3.9216664 -1103.2761
+102296.2589615188 3.9215875 -1103.2366
+102297.2589615691 3.9215088 -1103.2366
+102298.2589616193 3.9215088 -1103.1774
+102299.2589616696 3.9214301 -1103.1774
+102300.2589617199 3.9214694 -1103.2168
+102301.2589617702 3.9215088 -1103.2168
+102302.2589618205 3.9214694 -1103.2168
+102303.2589618708 3.9215088 -1103.2168
+102304.2589619211 3.9215875 -1103.2168
+102305.2589619714 3.9214301 -1103.2761
+102306.2589620217 3.9214694 -1103.197
+102307.258962072 3.9214301 -1103.2366
+102308.2589621223 3.9213908 -1103.2562
+102309.2589621725 3.9213514 -1103.2562
+102310.2589622228 3.9213908 -1103.2761
+102311.2589622731 3.9213121 -1103.2366
+102312.2589623234 3.9213514 -1103.2168
+102313.2589623737 3.9213514 -1103.197
+102314.258962424 3.9213514 -1103.197
+102315.2589624743 3.9213121 -1103.2168
+102316.2589625246 3.9212725 -1103.2959
+102317.2589625749 3.9213908 -1103.2562
+102318.2589626252 3.9211938 -1103.2366
+102319.2589626755 3.9212725 -1103.1774
+102320.2589627258 3.9212725 -1103.2562
+102321.258962776 3.9211545 -1103.2761
+102322.2589628263 3.9212725 -1103.2761
+102323.2589628766 3.9211545 -1103.2761
+102324.2589629269 3.9212725 -1103.3156
+102325.2589629772 3.9211545 -1103.197
+102326.2589630275 3.9211938 -1103.2366
+102327.2589630778 3.9211545 -1103.197
+102328.2589631281 3.9211545 -1103.1576
+102329.2589631784 3.9211152 -1103.2761
+102330.2589632287 3.9211152 -1103.197
+102331.258963279 3.9211938 -1103.197
+102332.2589633293 3.9210758 -1103.2168
+102333.2589633795 3.9211545 -1103.2168
+102334.2589634298 3.9210758 -1103.2761
+102335.2589634801 3.9211152 -1103.2761
+102336.2589635304 3.9209971 -1103.2366
+102337.2589635807 3.9210758 -1103.3551
+102338.258963631 3.9211545 -1103.3156
+102339.2589636813 3.9209576 -1103.197
+102340.2589637316 3.9209971 -1103.2959
+102341.2589637819 3.9209971 -1103.2959
+102342.2589638322 3.9209182 -1103.2562
+102343.2589638825 3.9209182 -1103.197
+102344.2589639327 3.9209182 -1103.2168
+102345.258963983 3.9209576 -1103.3749
+102346.2589640333 3.9209182 -1103.2761
+102347.2589640836 3.9209182 -1103.1774
+102348.2589641339 3.9209971 -1103.2761
+102349.2589641842 3.9209971 -1103.197
+102350.2589642345 3.9208789 -1103.197
+102351.2589642848 3.9208395 -1103.2168
+102352.2589643351 3.9209182 -1103.197
+102353.2589643854 3.9208002 -1103.2366
+102354.2589644357 3.9208395 -1103.2562
+102355.258964486 3.9208395 -1103.2761
+102356.2589645362 3.9207215 -1103.197
+102357.2589645865 3.9207609 -1103.3156
+102358.2589646368 3.9207215 -1103.2366
+102359.2589646871 3.9207609 -1103.2959
+102360.2589647374 3.9207609 -1103.2562
+102361.2589647877 3.9206822 -1103.2959
+102362.258964838 3.9208002 -1103.2959
+102363.2589648883 3.9207215 -1103.2168
+102364.2589649386 3.9207215 -1103.2168
+102365.2589649889 3.9207215 -1103.2761
+102366.2589650392 3.9206822 -1103.2562
+102367.2589650895 3.9206426 -1103.2168
+102368.2589651397 3.9206426 -1103.2366
+102369.25896519 3.9206426 -1103.197
+102370.2589652403 3.9205246 -1103.2366
+102371.2589652906 3.9206822 -1103.4143
+102372.2589653409 3.9206426 -1103.2366
+102373.2589653912 3.9206426 -1103.197
+102374.2589654415 3.9205639 -1103.1576
+102375.2589654918 3.9205639 -1103.3156
+102376.2589655421 3.9206426 -1103.2562
+102377.2589655924 3.9204853 -1103.2959
+102378.2589656427 3.9205246 -1103.2366
+102379.2589656929 3.9205639 -1103.2366
+102380.2589657432 3.9204066 -1103.2562
+102381.2589657935 3.9204853 -1103.2959
+102382.2589658438 3.9204459 -1103.2959
+102383.2589658941 3.9203672 -1103.2761
+102384.2589659444 3.9203672 -1103.2562
+102385.2589659947 3.9204066 -1103.3156
+102386.258966045 3.9203672 -1103.2168
+102387.2589660953 3.9203672 -1103.2366
+102388.2589661456 3.9203672 -1103.1774
+102389.2589661959 3.9202883 -1103.3353
+102390.2589662462 3.9202883 -1103.1774
+102391.2589662964 3.9202883 -1103.2761
+102392.2589663467 3.9204459 -1103.2562
+102393.258966397 3.9202883 -1103.197
+102394.2589664473 3.920249 -1103.2366
+102395.2589664976 3.9203672 -1103.2366
+102396.2589665479 3.9202096 -1103.2562
+102397.2589665982 3.9201703 -1103.197
+102398.2589666485 3.9201703 -1103.197
+102399.2589666988 3.9202096 -1103.2959
+102400.2589667491 3.9201703 -1103.2168
+102401.2589667994 3.9202096 -1103.2761
+102402.2589668497 3.920131 -1103.2366
+102403.2589668999 3.920131 -1103.197
+102404.2589669502 3.9202096 -1103.2366
+102405.2589670005 3.9201703 -1103.1774
+102406.2589670508 3.920131 -1103.2366
+102407.2589671011 3.920131 -1103.2562
+102408.2589671514 3.9200127 -1103.2761
+102409.2589672017 3.920131 -1103.2168
+102410.258967252 3.9200916 -1103.2761
+102411.2589673023 3.9200521 -1103.2168
+102412.2589673526 3.9200916 -1103.1576
+102413.2589674029 3.9200916 -1103.2168
+102414.2589674531 3.9200916 -1103.2562
+102415.2589675034 3.9198947 -1103.2562
+102416.2589675537 3.9200916 -1103.2366
+102417.258967604 3.919934 -1103.2761
+102418.2589676543 3.9198947 -1103.2366
+102419.2589677046 3.9199734 -1103.2168
+102420.2589677549 3.9200521 -1103.2562
+102421.2589678052 3.9198947 -1103.2562
+102422.2589678555 3.9200521 -1103.2366
+102423.2589679058 3.919934 -1103.2562
+102424.2589679561 3.919816 -1103.2366
+102425.2589680064 3.9199734 -1103.2761
+102426.2589680566 3.9198947 -1103.1774
+102427.2589681069 3.9197767 -1103.3156
+102428.2589681572 3.9198554 -1103.3749
+102429.2589682075 3.9198554 -1103.1774
+102430.2589682578 3.9198554 -1103.2168
+102431.2589683081 3.9198947 -1103.3353
+102432.2589683584 3.9198947 -1103.2761
+102433.2589684087 3.9197767 -1103.2761
+102434.258968459 3.9197767 -1103.2366
+102435.2589685093 3.9198554 -1103.2562
+102436.2589685596 3.9197371 -1103.197
+102437.2589686099 3.9197767 -1103.197
+102438.2589686601 3.9197371 -1103.3156
+102439.2589687104 3.9197371 -1103.2761
+102440.2589687607 3.9197371 -1103.2168
+102441.258968811 3.919816 -1103.2168
+102442.2589688613 3.9196978 -1103.2366
+102443.2589689116 3.9195797 -1103.1182
+102444.2589689619 3.9196978 -1103.1774
+102445.2589690122 3.9195797 -1103.2168
+102446.2589690625 3.9196191 -1103.2562
+102447.2589691128 3.9196584 -1103.2761
+102448.2589691631 3.9195011 -1103.2562
+102449.2589692133 3.9195404 -1103.2562
+102450.2589692636 3.9195797 -1103.3353
+102451.2589693139 3.9195404 -1103.2168
+102452.2589693642 3.9195011 -1103.1378
+102453.2589694145 3.9194221 -1103.2562
+102454.2589694648 3.9195404 -1103.2366
+102455.2589695151 3.9195797 -1103.2366
+102456.2589695654 3.9195011 -1103.2366
+102457.2589696157 3.9194221 -1103.2761
+102458.258969666 3.9194221 -1103.197
+102459.2589697163 3.9194617 -1103.3551
+102460.2589697666 3.9193828 -1103.2366
+102461.2589698168 3.9195404 -1103.3353
+102462.2589698671 3.9194221 -1103.2562
+102463.2589699174 3.9193435 -1103.1774
+102464.2589699677 3.9193828 -1103.2366
+102465.258970018 3.9193828 -1103.2168
+102466.2589700683 3.9193435 -1103.2168
+102467.2589701186 3.9193435 -1103.2562
+102468.2589701689 3.9193828 -1103.3156
+102469.2589702192 3.9194617 -1103.2168
+102470.2589702695 3.9192648 -1103.2168
+102471.2589703198 3.9193435 -1103.2366
+102472.2589703701 3.9193041 -1103.2761
+102473.2589704203 3.9193828 -1103.197
+102474.2589704706 3.9191861 -1103.3551
+102475.2589705209 3.9192255 -1103.2366
+102476.2589705712 3.9192648 -1103.3156
+102477.2589706215 3.9193041 -1103.2959
+102478.2589706718 3.9192255 -1103.2168
+102479.2589707221 3.9192648 -1103.2366
+102480.2589707724 3.9190679 -1103.3551
+102481.2589708227 3.9189892 -1103.2562
+102482.258970873 3.9191468 -1103.197
+102483.2589709233 3.9191861 -1103.197
+102484.2589709735 3.9191468 -1103.1576
+102485.2589710238 3.9191468 -1103.2761
+102486.2589710741 3.9191861 -1103.2168
+102487.2589711244 3.9191468 -1103.2761
+102488.2589711747 3.9191468 -1103.2366
+102489.258971225 3.9191072 -1103.2761
+102490.2589712753 3.9191072 -1103.2761
+102491.2589713256 3.9191072 -1103.3551
+102492.2589713759 3.9190285 -1103.3156
+102493.2589714262 3.9189892 -1103.2959
+102494.2589714765 3.9189498 -1103.2168
+102495.2589715268 3.9189498 -1103.2366
+102496.258971577 3.9189892 -1103.197
+102497.2589716273 3.9189498 -1103.2562
+102498.2589716776 3.9189498 -1103.2366
+102499.2589717279 3.9188712 -1103.2761
+102500.2589717782 3.9188712 -1103.2562
+102501.2589718285 3.9189105 -1103.2168
+102502.2589718788 3.9189498 -1103.197
+102503.2589719291 3.9188712 -1103.2168
+102504.2589719794 3.9189105 -1103.1774
+102505.2589720297 3.9188318 -1103.2168
+102506.25897208 3.9187529 -1103.2366
+102507.2589721303 3.9188712 -1103.2562
+102508.2589721805 3.9189498 -1103.1774
+102509.2589722308 3.9188712 -1103.2168
+102510.2589722811 3.9188712 -1103.197
+102511.2589723314 3.9188318 -1103.2366
+102512.2589723817 3.9187529 -1103.197
+102513.258972432 3.9188318 -1103.3156
+102514.2589724823 3.9187529 -1103.2562
+102515.2589725326 3.9188712 -1103.2761
+102516.2589725829 3.9186349 -1103.197
+102517.2589726332 3.9187529 -1103.2761
+102518.2589726835 3.9187529 -1103.2761
+102519.2589727337 3.9186742 -1103.197
+102520.258972784 3.9186349 -1103.2366
+102521.2589728343 3.9187136 -1103.1576
+102522.2589728846 3.9185956 -1103.2761
+102523.2589729349 3.9185956 -1103.2168
+102524.2589729852 3.9187136 -1103.2761
+102525.2589730355 3.9186349 -1103.2168
+102526.2589730858 3.9186742 -1103.2366
+102527.2589731361 3.9185562 -1103.197
+102528.2589731864 3.9185956 -1103.2366
+102529.2589732367 3.9186742 -1103.3945
+102530.258973287 3.9186349 -1103.2366
+102531.2589733372 3.9185562 -1103.2562
+102532.2589733875 3.9184773 -1103.2761
+102533.2589734378 3.9185169 -1103.2761
+102534.2589734881 3.9185169 -1103.197
+102535.2589735384 3.9184773 -1103.2562
+102536.2589735887 3.9185562 -1103.2562
+102537.258973639 3.9184773 -1103.1576
+102538.2589736893 3.9184773 -1103.2366
+102539.2589737396 3.9183986 -1103.197
+102540.2589737899 3.9183986 -1103.2168
+102541.2589738402 3.9183199 -1103.2761
+102542.2589738905 3.9184773 -1103.2168
+102543.2589739407 3.9183593 -1103.3156
+102544.258973991 3.9183986 -1103.2366
+102545.2589740413 3.9182806 -1103.2562
+102546.2589740916 3.9183593 -1103.1774
+102547.2589741419 3.918438 -1103.2761
+102548.2589741922 3.9183199 -1103.3156
+102549.2589742425 3.9182413 -1103.2761
+102550.2589742928 3.9183593 -1103.3156
+102551.2589743431 3.9183199 -1103.2959
+102552.2589743934 3.9181623 -1103.2366
+102553.2589744437 3.9182806 -1103.2562
+102554.2589744939 3.9182413 -1103.197
+102555.2589745442 3.9183199 -1103.2959
+102556.2589745945 3.918123 -1103.2562
+102557.2589746448 3.9181623 -1103.197
+102558.2589746951 3.9182017 -1103.2366
+102559.2589747454 3.9182413 -1103.2761
+102560.2589747957 3.9180837 -1103.1182
+102561.258974846 3.9180837 -1103.2168
+102562.2589748963 3.918123 -1103.2168
+102563.2589749466 3.9180837 -1103.1774
+102564.2589749969 3.9180837 -1103.2761
+102565.2589750472 3.918123 -1103.2959
+102566.2589750974 3.9180837 -1103.2366
+102567.2589751477 3.9181623 -1103.2366
+102568.258975198 3.9180443 -1103.3551
+102569.2589752483 3.9179657 -1103.2562
+102570.2589752986 3.9180443 -1103.2562
+102571.2589753489 3.918005 -1103.2761
+102572.2589753992 3.9180837 -1103.2761
+102573.2589754495 3.9178867 -1103.3353
+102574.2589754998 3.918005 -1103.2168
+102575.2589755501 3.918005 -1103.3156
+102576.2589756004 3.9180443 -1103.2168
+102577.2589756507 3.9179263 -1103.2366
+102578.2589757009 3.9178474 -1103.197
+102579.2589757512 3.9178867 -1103.2562
+102580.2589758015 3.9178867 -1103.2761
+102581.2589758518 3.9179263 -1103.2168
+102582.2589759021 3.9177687 -1103.2959
+102583.2589759524 3.9179657 -1103.2366
+102584.2589760027 3.9178867 -1103.197
+102585.258976053 3.9178081 -1103.2562
+102586.2589761033 3.9177687 -1103.2168
+102587.2589761536 3.9178081 -1103.2959
+102588.2589762039 3.9177294 -1103.2959
+102589.2589762541 3.9177687 -1103.2168
+102590.2589763044 3.9177294 -1103.2366
+102591.2589763547 3.9177687 -1103.3353
+102592.258976405 3.9177294 -1103.2366
+102593.2589764553 3.91769 -1103.2168
+102594.2589765056 3.91769 -1103.2366
+102595.2589765559 3.9177294 -1103.2366
+102596.2589766062 3.9176507 -1103.2168
+102597.2589766565 3.91769 -1103.1774
+102598.2589767068 3.9177294 -1103.197
+102599.2589767571 3.91769 -1103.2168
+102600.2589768074 3.9176507 -1103.3551
+102601.2589768576 3.9177294 -1103.2562
+102602.2589769079 3.91769 -1103.1774
+102603.2589769582 3.9176114 -1103.2761
+102604.2589770085 3.9176114 -1103.2761
+102605.2589770588 3.9175324 -1103.3353
+102606.2589771091 3.9175718 -1103.2366
+102607.2589771594 3.9175718 -1103.3156
+102608.2589772097 3.9175324 -1103.2562
+102609.25897726 3.9175718 -1103.2761
+102610.2589773103 3.9175718 -1103.3156
+102611.2589773606 3.9174931 -1103.3551
+102612.2589774108 3.9174538 -1103.2168
+102613.2589774611 3.9175718 -1103.2562
+102614.2589775114 3.9174144 -1103.2562
+102615.2589775617 3.9175324 -1103.2562
+102616.258977612 3.9175324 -1103.1576
+102617.2589776623 3.9174931 -1103.2366
+102618.2589777126 3.9172964 -1103.2168
+102619.2589777629 3.9174144 -1103.2168
+102620.2589778132 3.9173357 -1103.2959
+102621.2589778635 3.9174144 -1103.3945
+102622.2589779138 3.9174144 -1103.3156
+102623.2589779641 3.9172568 -1103.2168
+102624.2589780143 3.9173751 -1103.2562
+102625.2589780646 3.9172175 -1103.2366
+102626.2589781149 3.9172175 -1103.1774
+102627.2589781652 3.9173751 -1103.2761
+102628.2589782155 3.9171388 -1103.2168
+102629.2589782658 3.9172175 -1103.2366
+102630.2589783161 3.9172964 -1103.2959
+102631.2589783664 3.9172964 -1103.1576
+102632.2589784167 3.9172964 -1103.1378
+102633.258978467 3.9172175 -1103.3353
+102634.2589785173 3.9172175 -1103.197
+102635.2589785676 3.9172568 -1103.2959
+102636.2589786178 3.9170995 -1103.2366
+102637.2589786681 3.9171388 -1103.2562
+102638.2589787184 3.9171782 -1103.2959
+102639.2589787687 3.9170995 -1103.2562
+102640.258978819 3.9172175 -1103.2168
+102641.2589788693 3.9171388 -1103.2959
+102642.2589789196 3.9170601 -1103.2761
+102643.2589789699 3.9170995 -1103.2761
+102644.2589790202 3.9170995 -1103.2959
+102645.2589790705 3.9171388 -1103.3156
+102646.2589791208 3.9171388 -1103.2959
+102647.258979171 3.9170995 -1103.2366
+102648.2589792213 3.9170601 -1103.2959
+102649.2589792716 3.9170208 -1103.2366
+102650.2589793219 3.9169419 -1103.197
+102651.2589793722 3.9169419 -1103.2366
+102652.2589794225 3.9169419 -1103.2562
+102653.2589794728 3.9169025 -1103.2959
+102654.2589795231 3.9169815 -1103.2366
+102655.2589795734 3.9170208 -1103.2959
+102656.2589796237 3.9167845 -1103.1774
+102657.258979674 3.9169025 -1103.2959
+102658.2589797243 3.9168239 -1103.2168
+102659.2589797745 3.9169419 -1103.2366
+102660.2589798248 3.9167845 -1103.2366
+102661.2589798751 3.9169419 -1103.2366
+102662.2589799254 3.9169025 -1103.2168
+102663.2589799757 3.9167845 -1103.2761
+102664.258980026 3.9167845 -1103.1774
+102665.2589800763 3.9167845 -1103.3749
+102666.2589801266 3.9168632 -1103.2366
+102667.2589801769 3.9168239 -1103.197
+102668.2589802272 3.9167845 -1103.2366
+102669.2589802775 3.9167058 -1103.3551
+102670.2589803278 3.9167058 -1103.197
+102671.258980378 3.9167452 -1103.2562
+102672.2589804283 3.9167452 -1103.2562
+102673.2589804786 3.9165876 -1103.2366
+102674.2589805289 3.9166665 -1103.2761
+102675.2589805792 3.9167845 -1103.2562
+102676.2589806295 3.9166269 -1103.2366
+102677.2589806798 3.9166665 -1103.2366
+102678.2589807301 3.9167058 -1103.1774
+102679.2589807804 3.9166665 -1103.3156
+102680.2589808307 3.9165483 -1103.2366
+102681.258980881 3.9165876 -1103.2959
+102682.2589809312 3.9166269 -1103.2562
+102683.2589809815 3.9165876 -1103.2562
+102684.2589810318 3.9165089 -1103.2761
+102685.2589810821 3.9165089 -1103.197
+102686.2589811324 3.9165089 -1103.2562
+102687.2589811827 3.9164696 -1103.2366
+102688.258981233 3.9165483 -1103.2366
+102689.2589812833 3.9165876 -1103.3156
+102690.2589813336 3.9164696 -1103.3156
+102691.2589813839 3.9165483 -1103.2366
+102692.2589814342 3.9164302 -1103.3156
+102693.2589814845 3.9164696 -1103.2366
+102694.2589815347 3.9163909 -1103.1576
+102695.258981585 3.9164302 -1103.3353
+102696.2589816353 3.9163513 -1103.2959
+102697.2589816856 3.9163909 -1103.3353
+102698.2589817359 3.9162333 -1103.2562
+102699.2589817862 3.9163513 -1103.2168
+102700.2589818365 3.9163513 -1103.2168
+102701.2589818868 3.9163909 -1103.2168
+102702.2589819371 3.9163513 -1103.1774
+102703.2589819874 3.9163513 -1103.2168
+102704.2589820377 3.916312 -1103.2366
+102705.258982088 3.9162726 -1103.2366
+102706.2589821382 3.9162333 -1103.2761
+102707.2589821885 3.9162333 -1103.2562
+102708.2589822388 3.916194 -1103.3156
+102709.2589822891 3.9162726 -1103.2168
+102710.2589823394 3.9162333 -1103.2168
+102711.2589823897 3.9162333 -1103.2562
+102712.25898244 3.916194 -1103.1774
+102713.2589824903 3.9161546 -1103.1576
+102714.2589825406 3.9161153 -1103.2959
+102715.2589825909 3.9161546 -1103.1576
+102716.2589826412 3.9161153 -1103.2562
+102717.2589826914 3.9160364 -1103.2366
+102718.2589827417 3.9161153 -1103.2959
+102719.258982792 3.9160759 -1103.3156
+102720.2589828423 3.9160364 -1103.2959
+102721.2589828926 3.916194 -1103.2761
+102722.2589829429 3.9160364 -1103.2168
+102723.2589829932 3.9161153 -1103.2168
+102724.2589830435 3.9160364 -1103.2366
+102725.2589830938 3.9160759 -1103.2562
+102726.2589831441 3.9159184 -1103.2959
+102727.2589831944 3.9160364 -1103.2562
+102728.2589832447 3.9159577 -1103.197
+102729.2589832949 3.9159577 -1103.2366
+102730.2589833452 3.9159577 -1103.2366
+102731.2589833955 3.9159184 -1103.2168
+102732.2589834458 3.9159577 -1103.2168
+102733.2589834961 3.9159184 -1103.2562
+102734.2589835464 3.915879 -1103.2366
+102735.2589835967 3.9159577 -1103.2366
+102736.258983647 3.9158397 -1103.2959
+102737.2589836973 3.9159184 -1103.2761
+102738.2589837476 3.9158397 -1103.1774
+102739.2589837979 3.9158397 -1103.2959
+102740.2589838482 3.9158003 -1103.2366
+102741.2589838984 3.9158397 -1103.1774
+102742.2589839487 3.9158003 -1103.2366
+102743.258983999 3.9159184 -1103.2761
+102744.2589840493 3.9157214 -1103.1774
+102745.2589840996 3.9157214 -1103.2761
+102746.2589841499 3.9157214 -1103.1774
+102747.2589842002 3.9155641 -1103.197
+102748.2589842505 3.915761 -1103.2761
+102749.2589843008 3.9156821 -1103.3156
+102750.2589843511 3.9156427 -1103.2366
+102751.2589844014 3.9157214 -1103.2761
+102752.2589844516 3.9156821 -1103.2366
+102753.2589845019 3.9156034 -1103.1774
+102754.2589845522 3.9156034 -1103.2562
+102755.2589846025 3.9156034 -1103.197
+102756.2589846528 3.9157214 -1103.197
+102757.2589847031 3.9156427 -1103.2168
+102758.2589847534 3.9157214 -1103.2168
+102759.2589848037 3.9156821 -1103.2562
+102760.258984854 3.9154854 -1103.2562
+102761.2589849043 3.9155247 -1103.2168
+102762.2589849546 3.9155641 -1103.2366
+102763.2589850049 3.9156427 -1103.2562
+102764.2589850551 3.9154854 -1103.2366
+102765.2589851054 3.915446 -1103.2562
+102766.2589851557 3.9154065 -1103.1774
+102767.258985206 3.9155641 -1103.2761
+102768.2589852563 3.9154854 -1103.2959
+102769.2589853066 3.9155641 -1103.2761
+102770.2589853569 3.9155247 -1103.2562
+102771.2589854072 3.915446 -1103.2168
+102772.2589854575 3.9154065 -1103.2366
+102773.2589855078 3.915446 -1103.197
+102774.2589855581 3.9155247 -1103.3156
+102775.2589856084 3.915446 -1103.3353
+102776.2589856586 3.9153671 -1103.2959
+102777.2589857089 3.9153671 -1103.2562
+102778.2589857592 3.9153278 -1103.197
+102779.2589858095 3.9152884 -1103.2168
+102780.2589858598 3.9153278 -1103.2168
+102781.2589859101 3.9153671 -1103.3156
+102782.2589859604 3.9152884 -1103.2959
+102783.2589860107 3.9152884 -1103.2562
+102784.258986061 3.9153278 -1103.197
+102785.2589861113 3.9152098 -1103.2761
+102786.2589861616 3.9152098 -1103.2366
+102787.2589862118 3.9153278 -1103.3156
+102788.2589862621 3.9151704 -1103.2366
+102789.2589863124 3.9152098 -1103.2366
+102790.2589863627 3.9154065 -1103.2562
+102791.258986413 3.9151704 -1103.2562
+102792.2589864633 3.9150915 -1103.3156
+102793.2589865136 3.9152098 -1103.2366
+102794.2589865639 3.9152098 -1103.2959
+102795.2589866142 3.9151311 -1103.2761
+102796.2589866645 3.9151704 -1103.2366
+102797.2589867148 3.9151311 -1103.2562
+102798.2589867651 3.9149735 -1103.3551
+102799.2589868153 3.9150915 -1103.2959
+102800.2589868656 3.9150522 -1103.2366
+102801.2589869159 3.9151704 -1103.2959
+102802.2589869662 3.9150915 -1103.197
+102803.2589870165 3.9150522 -1103.197
+102804.2589870668 3.9151704 -1103.2562
+102805.2589871171 3.9150128 -1103.2959
+102806.2589871674 3.9150522 -1103.2562
+102807.2589872177 3.9150128 -1103.2168
+102808.258987268 3.9150128 -1103.2562
+102809.2589873183 3.9149342 -1103.197
+102810.2589873686 3.9149735 -1103.197
+102811.2589874188 3.9148161 -1103.2761
+102812.2589874691 3.9150522 -1103.2168
+102813.2589875194 3.9149735 -1103.2366
+102814.2589875697 3.9148555 -1103.2959
+102815.25898762 3.9148161 -1103.197
+102816.2589876703 3.9148948 -1103.2168
+102817.2589877206 3.9149735 -1103.2761
+102818.2589877709 3.9148555 -1103.2761
+102819.2589878212 3.9148948 -1103.3353
+102820.2589878715 3.9148555 -1103.2562
+102821.2589879218 3.9147372 -1103.2168
+102822.258987972 3.9148161 -1103.1774
+102823.2589880223 3.9148948 -1103.2562
+102824.2589880726 3.9148161 -1103.2562
+102825.2589881229 3.9146979 -1103.2562
+102826.2589881732 3.9147766 -1103.197
+102827.2589882235 3.9146585 -1103.2168
+102828.2589882738 3.9147372 -1103.3353
+102829.2589883241 3.9147372 -1103.2168
+102830.2589883744 3.9146979 -1103.3156
+102831.2589884247 3.9147766 -1103.3353
+102832.258988475 3.9145405 -1103.2366
+102833.2589885253 3.9145799 -1103.4143
+102834.2589885755 3.9146979 -1103.2168
+102835.2589886258 3.9146585 -1103.2168
+102836.2589886761 3.9146192 -1103.2168
+102837.2589887264 3.9146585 -1103.197
+102838.2589887767 3.9146585 -1103.2959
+102839.258988827 3.9146192 -1103.2562
+102840.2589888773 3.9145405 -1103.1774
+102841.2589889276 3.914501 -1103.2168
+102842.2589889779 3.9144616 -1103.2168
+102843.2589890282 3.9145405 -1103.2761
+102844.2589890785 3.9145405 -1103.197
+102845.2589891288 3.9145799 -1103.1378
+102846.258989179 3.914501 -1103.2168
+102847.2589892293 3.9144616 -1103.1774
+102848.2589892796 3.9145799 -1103.2366
+102849.2589893299 3.9144223 -1103.2168
+102850.2589893802 3.914501 -1103.2761
+102851.2589894305 3.914501 -1103.1774
+102852.2589894808 3.9144616 -1103.2366
+102853.2589895311 3.914501 -1103.2761
+102854.2589895814 3.9144223 -1103.2761
+102855.2589896317 3.9142649 -1103.2366
+102856.258989682 3.9144223 -1103.2761
+102857.2589897322 3.9143043 -1103.2959
+102858.2589897825 3.9143829 -1103.2761
+102859.2589898328 3.9142649 -1103.2562
+102860.2589898831 3.9143436 -1103.197
+102861.2589899334 3.9143436 -1103.2366
+102862.2589899837 3.9143043 -1103.3156
+102863.258990034 3.9142649 -1103.1774
+102864.2589900843 3.914186 -1103.2562
+102865.2589901346 3.9142256 -1103.1182
+102866.2589901849 3.9142256 -1103.2366
+102867.2589902352 3.9143436 -1103.2562
+102868.2589902855 3.9143043 -1103.3353
+102869.2589903357 3.9143436 -1103.2168
+102870.258990386 3.9142649 -1103.2761
+102871.2589904363 3.9142256 -1103.2366
+102872.2589904866 3.9141073 -1103.2761
+102873.2589905369 3.9141073 -1103.3156
+102874.2589905872 3.9141073 -1103.197
+102875.2589906375 3.9141467 -1103.2761
+102876.2589906878 3.9141073 -1103.2959
+102877.2589907381 3.914186 -1103.2168
+102878.2589907884 3.914068 -1103.3156
+102879.2589908387 3.9141467 -1103.2366
+102880.258990889 3.9141073 -1103.2562
+102881.2589909392 3.914068 -1103.2168
+102882.2589909895 3.9141073 -1103.2168
+102883.2589910398 3.9140286 -1103.3156
+102884.2589910901 3.9139893 -1103.2562
+102885.2589911404 3.9139893 -1103.2761
+102886.2589911907 3.9139893 -1103.197
+102887.258991241 3.9140286 -1103.197
+102888.2589912913 3.9139893 -1103.2761
+102889.2589913416 3.9139893 -1103.2366
+102890.2589913919 3.91395 -1103.2366
+102891.2589914422 3.9139893 -1103.3156
+102892.2589914924 3.913871 -1103.2168
+102893.2589915427 3.9138317 -1103.2366
+102894.258991593 3.91395 -1103.2562
+102895.2589916433 3.9138317 -1103.2168
+102896.2589916936 3.913871 -1103.1774
+102897.2589917439 3.9137924 -1103.1774
+102898.2589917942 3.9138317 -1103.2761
+102899.2589918445 3.9139106 -1103.2168
+102900.2589918948 3.9137924 -1103.2168
+102901.2589919451 3.9138317 -1103.2562
+102902.2589919954 3.9138317 -1103.2366
+102903.2589920457 3.9137924 -1103.2761
+102904.2589920959 3.9138317 -1103.2761
+102905.2589921462 3.9138317 -1103.2562
+102906.2589921965 3.913753 -1103.2562
+102907.2589922468 3.9137137 -1103.2168
+102908.2589922971 3.913635 -1103.1378
+102909.2589923474 3.9137137 -1103.2168
+102910.2589923977 3.913635 -1103.197
+102911.258992448 3.913635 -1103.2959
+102912.2589924983 3.9136744 -1103.2366
+102913.2589925486 3.9135957 -1103.2761
+102914.2589925989 3.913635 -1103.197
+102915.2589926491 3.913753 -1103.1576
+102916.2589926994 3.913635 -1103.2761
+102917.2589927497 3.913635 -1103.2366
+102918.2589928 3.913635 -1103.1378
+102919.2589928503 3.9135561 -1103.2366
+102920.2589929006 3.9135561 -1103.2168
+102921.2589929509 3.9135957 -1103.197
+102922.2589930012 3.9135957 -1103.197
+102923.2589930515 3.9135561 -1103.2562
+102924.2589931018 3.9133987 -1103.2168
+102925.2589931521 3.9134381 -1103.2168
+102926.2589932024 3.9135168 -1103.2366
+102927.2589932526 3.9135561 -1103.2366
+102928.2589933029 3.9135168 -1103.197
+102929.2589933532 3.9134381 -1103.2168
+102930.2589934035 3.9134774 -1103.2168
+102931.2589934538 3.9133987 -1103.2168
+102932.2589935041 3.9134381 -1103.2761
+102933.2589935544 3.9134381 -1103.2366
+102934.2589936047 3.9133594 -1103.2168
+102935.258993655 3.9133201 -1103.2761
+102936.2589937053 3.9133594 -1103.2761
+102937.2589937556 3.9132807 -1103.2366
+102938.2589938059 3.9133201 -1103.2562
+102939.2589938561 3.9133594 -1103.2168
+102940.2589939064 3.9133594 -1103.2168
+102941.2589939567 3.9133201 -1103.2959
+102942.258994007 3.9132807 -1103.2168
+102943.2589940573 3.9132411 -1103.197
+102944.2589941076 3.9132411 -1103.197
+102945.2589941579 3.9132807 -1103.2562
+102946.2589942082 3.9132411 -1103.3156
+102947.2589942585 3.9132411 -1103.197
+102948.2589943088 3.9132018 -1103.2562
+102949.2589943591 3.9132411 -1103.2562
+102950.2589944093 3.9132018 -1103.2168
+102951.2589944596 3.9132018 -1103.2562
+102952.2589945099 3.9131231 -1103.2366
+102953.2589945602 3.9131231 -1103.2366
+102954.2589946105 3.9131625 -1103.2959
+102955.2589946608 3.9131231 -1103.2562
+102956.2589947111 3.9131231 -1103.2168
+102957.2589947614 3.9131231 -1103.2761
+102958.2589948117 3.9130838 -1103.1774
+102959.258994862 3.9130838 -1103.2959
+102960.2589949123 3.9129262 -1103.1576
+102961.2589949626 3.9130051 -1103.2168
+102962.2589950128 3.9129262 -1103.2366
+102963.2589950631 3.9130445 -1103.2168
+102964.2589951134 3.9130051 -1103.3353
+102965.2589951637 3.9129262 -1103.2168
+102966.258995214 3.9129655 -1103.2366
+102967.2589952643 3.9129655 -1103.3156
+102968.2589953146 3.9129655 -1103.2761
+102969.2589953649 3.9128475 -1103.2168
+102970.2589954152 3.9128475 -1103.2366
+102971.2589954655 3.9128869 -1103.2959
+102972.2589955158 3.9128082 -1103.2562
+102973.2589955661 3.9129655 -1103.3353
+102974.2589956163 3.9129262 -1103.2959
+102975.2589956666 3.9128082 -1103.2761
+102976.2589957169 3.9128082 -1103.2959
+102977.2589957672 3.9128082 -1103.2959
+102978.2589958175 3.9128475 -1103.197
+102979.2589958678 3.9128475 -1103.2562
+102980.2589959181 3.9126112 -1103.197
+102981.2589959684 3.9128082 -1103.197
+102982.2589960187 3.9127295 -1103.2761
+102983.258996069 3.9127295 -1103.1774
+102984.2589961193 3.9127295 -1103.2761
+102985.2589961695 3.9127295 -1103.2761
+102986.2589962198 3.9127295 -1103.197
+102987.2589962701 3.9126506 -1103.2366
+102988.2589963204 3.9126902 -1103.2366
+102989.2589963707 3.9127295 -1103.2761
+102990.258996421 3.9126902 -1103.2761
+102991.2589964713 3.9126506 -1103.2761
+102992.2589965216 3.9126506 -1103.2562
+102993.2589965719 3.9126506 -1103.2168
+102994.2589966222 3.9126902 -1103.2761
+102995.2589966725 3.9126112 -1103.2366
+102996.2589967228 3.9126112 -1103.2562
+102997.258996773 3.9125326 -1103.2562
+102998.2589968233 3.9125719 -1103.1774
+102999.2589968736 3.9125326 -1103.2168
+103000.2589969239 3.9126112 -1103.2562
+103001.2589969742 3.9124539 -1103.2366
+103002.2589970245 3.9125326 -1103.2168
+103003.2589970748 3.9124932 -1103.2761
+103004.2589971251 3.9124146 -1103.2168
+103005.2589971754 3.9124146 -1103.2366
+103006.2589972257 3.9125326 -1103.197
+103007.258997276 3.9124932 -1103.3156
+103008.2589973263 3.9124539 -1103.1576
+103009.2589973765 3.9124932 -1103.1576
+103010.2589974268 3.9124146 -1103.2366
+103011.2589974771 3.9123752 -1103.2761
+103012.2589975274 3.9123356 -1103.2761
+103013.2589975777 3.9123752 -1103.1576
+103014.258997628 3.9124932 -1103.2761
+103015.2589976783 3.9124146 -1103.2562
+103016.2589977286 3.912257 -1103.2761
+103017.2589977789 3.9122963 -1103.2168
+103018.2589978292 3.9122963 -1103.3353
+103019.2589978795 3.9122176 -1103.2761
+103020.2589979297 3.9123356 -1103.197
+103021.25899798 3.9122963 -1103.2761
+103022.2589980303 3.912257 -1103.2562
+103023.2589980806 3.9123356 -1103.2168
+103024.2589981309 3.912257 -1103.2366
+103025.2589981812 3.912257 -1103.2562
+103026.2589982315 3.912257 -1103.2761
+103027.2589982818 3.912257 -1103.2562
+103028.2589983321 3.912257 -1103.2761
+103029.2589983824 3.9121783 -1103.2168
+103030.2589984327 3.9121783 -1103.2562
+103031.258998483 3.9121783 -1103.2959
+103032.2589985332 3.9120996 -1103.2562
+103033.2589985835 3.9121783 -1103.2562
+103034.2589986338 3.9121389 -1103.2761
+103035.2589986841 3.9120996 -1103.2761
+103036.2589987344 3.9120996 -1103.2959
+103037.2589987847 3.9121389 -1103.2761
+103038.258998835 3.9121389 -1103.2366
+103039.2589988853 3.9120603 -1103.1774
+103040.2589989356 3.9120603 -1103.3156
+103041.2589989859 3.9120207 -1103.2761
+103042.2589990362 3.9120207 -1103.197
+103043.2589990865 3.9119027 -1103.2959
+103044.2589991367 3.911942 -1103.2562
+103045.258999187 3.9121783 -1103.1774
+103046.2589992373 3.911942 -1103.2168
+103047.2589992876 3.9119027 -1103.3156
+103048.2589993379 3.9118633 -1103.2761
+103049.2589993882 3.9119027 -1103.3156
+103050.2589994385 3.9119027 -1103.1774
+103051.2589994888 3.911942 -1103.2959
+103052.2589995391 3.9119027 -1103.2761
+103053.2589995894 3.9117846 -1103.197
+103054.2589996397 3.9118633 -1103.2168
+103055.2589996899 3.9118633 -1103.2562
+103056.2589997402 3.911942 -1103.1378
+103057.2589997905 3.9117846 -1103.3156
+103058.2589998408 3.9117057 -1103.197
+103059.2589998911 3.9118633 -1103.2562
+103060.2589999414 3.9117453 -1103.2562
+103061.2589999917 3.911824 -1103.2366
+103062.259000042 3.9117453 -1103.2562
+103063.2590000923 3.9117453 -1103.2366
+103064.2590001426 3.9117453 -1103.2761
+103065.2590001929 3.9116664 -1103.2562
+103066.2590002432 3.9116664 -1103.1576
+103067.2590002934 3.9117057 -1103.2562
+103068.2590003437 3.9116664 -1103.2959
+103069.259000394 3.9117057 -1103.2168
+103070.2590004443 3.9116271 -1103.3156
+103071.2590004946 3.9117453 -1103.2562
+103072.2590005449 3.9115877 -1103.2562
+103073.2590005952 3.9115877 -1103.2168
+103074.2590006455 3.911509 -1103.2168
+103075.2590006958 3.9115877 -1103.3156
+103076.2590007461 3.9116271 -1103.2168
+103077.2590007964 3.911509 -1103.2562
+103078.2590008467 3.9115484 -1103.2562
+103079.2590008969 3.9115484 -1103.1774
+103080.2590009472 3.911509 -1103.2562
+103081.2590009975 3.911509 -1103.2959
+103082.2590010478 3.9114304 -1103.2959
+103083.2590010981 3.9115877 -1103.1774
+103084.2590011484 3.9113908 -1103.1182
+103085.2590011987 3.9115484 -1103.2562
+103086.259001249 3.9113908 -1103.2366
+103087.2590012993 3.9114697 -1103.2761
+103088.2590013496 3.9114697 -1103.2959
+103089.2590013999 3.9113121 -1103.2168
+103090.2590014501 3.9113514 -1103.2761
+103091.2590015004 3.9113121 -1103.2959
+103092.2590015507 3.9112728 -1103.1576
+103093.259001601 3.9113908 -1103.2168
+103094.2590016513 3.9112334 -1103.2562
+103095.2590017016 3.9113514 -1103.2366
+103096.2590017519 3.9113514 -1103.2761
+103097.2590018022 3.9113514 -1103.2761
+103098.2590018525 3.9113121 -1103.2562
+103099.2590019028 3.9112728 -1103.2562
+103100.2590019531 3.9113121 -1103.2761
+103101.2590020034 3.9113121 -1103.2959
+103102.2590020536 3.9111941 -1103.3749
+103103.2590021039 3.9112334 -1103.2562
+103104.2590021542 3.9113121 -1103.2562
+103105.2590022045 3.9112334 -1103.2366
+103106.2590022548 3.9111941 -1103.2366
+103107.2590023051 3.9112334 -1103.2168
+103108.2590023554 3.9111941 -1103.2761
+103109.2590024057 3.9111941 -1103.2366
+103110.259002456 3.9112728 -1103.197
+103111.2590025063 3.9111152 -1103.2959
+103112.2590025566 3.9111941 -1103.2168
+103113.2590026069 3.9111547 -1103.197
+103114.2590026571 3.9111547 -1103.1576
+103115.2590027074 3.9110365 -1103.2761
+103116.2590027577 3.9110365 -1103.3551
+103117.259002808 3.9111152 -1103.2959
+103118.2590028583 3.9111547 -1103.197
+103119.2590029086 3.9111152 -1103.197
+103120.2590029589 3.9110758 -1103.2761
+103121.2590030092 3.9109578 -1103.1774
+103122.2590030595 3.9109185 -1103.2366
+103123.2590031098 3.9110758 -1103.197
+103124.2590031601 3.9110365 -1103.1774
+103125.2590032103 3.9109185 -1103.1576
+103126.2590032606 3.9108791 -1103.2168
+103127.2590033109 3.9108791 -1103.1774
+103128.2590033612 3.9110365 -1103.2959
+103129.2590034115 3.9108398 -1103.2562
+103130.2590034618 3.9108398 -1103.3156
+103131.2590035121 3.9108791 -1103.2366
+103132.2590035624 3.9108398 -1103.2168
+103133.2590036127 3.9108398 -1103.197
+103134.259003663 3.9108791 -1103.1774
+103135.2590037133 3.9108398 -1103.2959
+103136.2590037636 3.9108791 -1103.2562
+103137.2590038138 3.9108398 -1103.2562
+103138.2590038641 3.9108002 -1103.2562
+103139.2590039144 3.9108002 -1103.1774
+103140.2590039647 3.9106822 -1103.197
+103141.259004015 3.9108398 -1103.2168
+103142.2590040653 3.9107215 -1103.2562
+103143.2590041156 3.9107609 -1103.3353
+103144.2590041659 3.9107215 -1103.2168
+103145.2590042162 3.9107609 -1103.2168
+103146.2590042665 3.9106429 -1103.2168
+103147.2590043168 3.9106035 -1103.2366
+103148.2590043671 3.9106822 -1103.2562
+103149.2590044173 3.9106822 -1103.2959
+103150.2590044676 3.9106429 -1103.3156
+103151.2590045179 3.9106429 -1103.2168
+103152.2590045682 3.9106429 -1103.2959
+103153.2590046185 3.9105248 -1103.2168
+103154.2590046688 3.9105642 -1103.2366
+103155.2590047191 3.9106822 -1103.2366
+103156.2590047694 3.9104853 -1103.2366
+103157.2590048197 3.9105642 -1103.2562
+103158.25900487 3.9106429 -1103.2168
+103159.2590049203 3.9106035 -1103.197
+103160.2590049705 3.9106429 -1103.1774
+103161.2590050208 3.9104853 -1103.2959
+103162.2590050711 3.9104066 -1103.197
+103163.2590051214 3.9104853 -1103.2366
+103164.2590051717 3.9104853 -1103.2168
+103165.259005222 3.9103673 -1103.2366
+103166.2590052723 3.9103279 -1103.2761
+103167.2590053226 3.9104066 -1103.2959
+103168.2590053729 3.9104066 -1103.2761
+103169.2590054232 3.9103673 -1103.2562
+103170.2590054735 3.9103673 -1103.2562
+103171.2590055238 3.9103279 -1103.1182
+103172.259005574 3.9103673 -1103.2761
+103173.2590056243 3.9104459 -1103.1774
+103174.2590056746 3.9102492 -1103.2959
+103175.2590057249 3.9103673 -1103.3156
+103176.2590057752 3.9102886 -1103.2168
+103177.2590058255 3.9103673 -1103.2168
+103178.2590058758 3.9103673 -1103.2959
+103179.2590059261 3.9102886 -1103.2168
+103180.2590059764 3.9102492 -1103.2366
+103181.2590060267 3.9102492 -1103.2366
+103182.259006077 3.9102492 -1103.2366
+103183.2590061272 3.9102099 -1103.1576
+103184.2590061775 3.9102886 -1103.2761
+103185.2590062278 3.9102492 -1103.1774
+103186.2590062781 3.9101703 -1103.1774
+103187.2590063284 3.9100523 -1103.1774
+103188.2590063787 3.9102099 -1103.2366
+103189.259006429 3.9101703 -1103.2562
+103190.2590064793 3.9100523 -1103.2761
+103191.2590065296 3.9102099 -1103.2562
+103192.2590065799 3.910131 -1103.2562
+103193.2590066302 3.9100916 -1103.2168
+103194.2590066805 3.910131 -1103.2761
+103195.2590067307 3.9100523 -1103.2761
+103196.259006781 3.9100916 -1103.2168
+103197.2590068313 3.910013 -1103.2761
+103198.2590068816 3.910013 -1103.2366
+103199.2590069319 3.910131 -1103.2562
+103200.2590069822 3.9100523 -1103.2959
+103201.2590070325 3.9099343 -1103.2168
+103202.2590070828 3.9098949 -1103.2366
+103203.2590071331 3.9099343 -1103.2959
+103204.2590071834 3.9100916 -1103.197
+103205.2590072337 3.9098554 -1103.2168
+103206.259007284 3.9098949 -1103.3156
+103207.2590073342 3.9099343 -1103.2562
+103208.2590073845 3.9099736 -1103.2761
+103209.2590074348 3.9098554 -1103.2168
+103210.2590074851 3.9098554 -1103.1576
+103211.2590075354 3.909816 -1103.2168
+103212.2590075857 3.9098949 -1103.197
+103213.259007636 3.9097767 -1103.2562
+103214.2590076863 3.909816 -1103.2959
+103215.2590077366 3.909816 -1103.3353
+103216.2590077869 3.909816 -1103.197
+103217.2590078372 3.909816 -1103.2366
+103218.2590078874 3.9097767 -1103.2959
+103219.2590079377 3.9098554 -1103.2959
+103220.259007988 3.9097373 -1103.2562
+103221.2590080383 3.909698 -1103.2761
+103222.2590080886 3.909816 -1103.2761
+103223.2590081389 3.909816 -1103.1774
+103224.2590081892 3.9096193 -1103.2761
+103225.2590082395 3.9097767 -1103.2761
+103226.2590082898 3.9096587 -1103.2761
+103227.2590083401 3.9096587 -1103.3353
+103228.2590083904 3.9096193 -1103.2168
+103229.2590084407 3.90958 -1103.1774
+103230.2590084909 3.9096193 -1103.2761
+103231.2590085412 3.90958 -1103.2562
+103232.2590085915 3.9096193 -1103.2562
+103233.2590086418 3.9096587 -1103.2562
+103234.2590086921 3.9096193 -1103.1378
+103235.2590087424 3.90958 -1103.2168
+103236.2590087927 3.9095011 -1103.1774
+103237.259008843 3.9095404 -1103.2366
+103238.2590088933 3.90958 -1103.2959
+103239.2590089436 3.9095404 -1103.2562
+103240.2590089939 3.9095404 -1103.2562
+103241.2590090442 3.9095404 -1103.2366
+103242.2590090944 3.9094617 -1103.1774
+103243.2590091447 3.9096193 -1103.1774
+103244.259009195 3.9094617 -1103.2366
+103245.2590092453 3.9094617 -1103.1774
+103246.2590092956 3.9094224 -1103.2168
+103247.2590093459 3.9093831 -1103.2562
+103248.2590093962 3.9094224 -1103.1774
+103249.2590094465 3.9094617 -1103.3156
+103250.2590094968 3.9093044 -1103.1576
+103251.2590095471 3.9093437 -1103.197
+103252.2590095974 3.9093831 -1103.3156
+103253.2590096476 3.9093437 -1103.1774
+103254.2590096979 3.9093437 -1103.2562
+103255.2590097482 3.9092255 -1103.1774
+103256.2590097985 3.9093044 -1103.2562
+103257.2590098488 3.9092648 -1103.2761
+103258.2590098991 3.9092648 -1103.2168
+103259.2590099494 3.9093044 -1103.2562
+103260.2590099997 3.9093044 -1103.2562
+103261.25901005 3.9092255 -1103.2168
+103262.2590101003 3.9091074 -1103.2168
+103263.2590101506 3.9091468 -1103.197
+103264.2590102009 3.9092255 -1103.197
+103265.2590102511 3.9092255 -1103.2168
+103266.2590103014 3.9092648 -1103.2761
+103267.2590103517 3.9090681 -1103.1774
+103268.259010402 3.9091468 -1103.3156
+103269.2590104523 3.9091468 -1103.2366
+103270.2590105026 3.9091074 -1103.3353
+103271.2590105529 3.9090681 -1103.2168
+103272.2590106032 3.9092255 -1103.2761
+103273.2590106535 3.9091074 -1103.1576
+103274.2590107038 3.9091468 -1103.2168
+103275.2590107541 3.9090288 -1103.3156
+103276.2590108044 3.9090681 -1103.2562
+103277.2590108546 3.9090288 -1103.2168
+103278.2590109049 3.9090681 -1103.2761
+103279.2590109552 3.9090288 -1103.197
+103280.2590110055 3.9090681 -1103.197
+103281.2590110558 3.9090288 -1103.2168
+103282.2590111061 3.9091074 -1103.197
+103283.2590111564 3.9090288 -1103.197
+103284.2590112067 3.9089105 -1103.2761
+103285.259011257 3.9088712 -1103.197
+103286.2590113073 3.9089105 -1103.2366
+103287.2590113576 3.9088318 -1103.2761
+103288.2590114078 3.9089105 -1103.1774
+103289.2590114581 3.9088712 -1103.2366
+103290.2590115084 3.9089105 -1103.2168
+103291.2590115587 3.9087925 -1103.2366
+103292.259011609 3.9088712 -1103.197
+103293.2590116593 3.9088712 -1103.2562
+103294.2590117096 3.9088318 -1103.1378
+103295.2590117599 3.9088318 -1103.197
+103296.2590118102 3.9087925 -1103.2761
+103297.2590118605 3.9087138 -1103.2168
+103298.2590119108 3.9087925 -1103.2366
+103299.2590119611 3.9087925 -1103.2168
+103300.2590120113 3.9086745 -1103.2366
+103301.2590120616 3.9087138 -1103.2562
+103302.2590121119 3.9087532 -1103.2562
+103303.2590121622 3.9087138 -1103.3156
+103304.2590122125 3.9087138 -1103.2761
+103305.2590122628 3.9086349 -1103.3156
+103306.2590123131 3.9087925 -1103.1774
+103307.2590123634 3.9087138 -1103.2168
+103308.2590124137 3.9085956 -1103.2761
+103309.259012464 3.9087138 -1103.2168
+103310.2590125143 3.9085956 -1103.2562
+103311.2590125646 3.9085956 -1103.3353
+103312.2590126148 3.9085956 -1103.197
+103313.2590126651 3.9085562 -1103.2168
+103314.2590127154 3.9085956 -1103.3156
+103315.2590127657 3.9085562 -1103.3551
+103316.259012816 3.9085169 -1103.2562
+103317.2590128663 3.9085169 -1103.1774
+103318.2590129166 3.9084775 -1103.1378
+103319.2590129669 3.9084775 -1103.2366
+103320.2590130172 3.9084775 -1103.2761
+103321.2590130675 3.9084382 -1103.2959
+103322.2590131178 3.9085956 -1103.2562
+103323.259013168 3.9084382 -1103.2562
+103324.2590132183 3.9085169 -1103.2168
+103325.2590132686 3.9083989 -1103.2168
+103326.2590133189 3.9084382 -1103.197
+103327.2590133692 3.9083595 -1103.2168
+103328.2590134195 3.9084382 -1103.3156
+103329.2590134698 3.9083595 -1103.2366
+103330.2590135201 3.90832 -1103.2761
+103331.2590135704 3.90832 -1103.2168
+103332.2590136207 3.9082413 -1103.2761
+103333.259013671 3.9082806 -1103.2562
+103334.2590137213 3.90832 -1103.197
+103335.2590137715 3.9083595 -1103.3156
+103336.2590138218 3.9082413 -1103.3551
+103337.2590138721 3.9082413 -1103.2168
+103338.2590139224 3.9082413 -1103.2959
+103339.2590139727 3.9082806 -1103.197
+103340.259014023 3.9082019 -1103.1774
+103341.2590140733 3.9082019 -1103.197
+103342.2590141236 3.9082413 -1103.2562
+103343.2590141739 3.9082806 -1103.2168
+103344.2590142242 3.9081233 -1103.1774
+103345.2590142745 3.9081233 -1103.2562
+103346.2590143248 3.9081626 -1103.2168
+103347.259014375 3.9082019 -1103.2168
+103348.2590144253 3.908005 -1103.1576
+103349.2590144756 3.9080839 -1103.1774
+103350.2590145259 3.9080839 -1103.2168
+103351.2590145762 3.9080839 -1103.2562
+103352.2590146265 3.9080446 -1103.2959
+103353.2590146768 3.9080446 -1103.2761
+103354.2590147271 3.9080839 -1103.1576
+103355.2590147774 3.9079657 -1103.2562
+103356.2590148277 3.9080446 -1103.2562
+103357.259014878 3.9081233 -1103.2959
+103358.2590149282 3.9080446 -1103.2168
+103359.2590149785 3.908005 -1103.1774
+103360.2590150288 3.907887 -1103.2761
+103361.2590150791 3.908005 -1103.1774
+103362.2590151294 3.9079263 -1103.1576
+103363.2590151797 3.907887 -1103.2562
+103364.25901523 3.9079657 -1103.2168
+103365.2590152803 3.9078476 -1103.2366
+103366.2590153306 3.907887 -1103.2959
+103367.2590153809 3.9078083 -1103.3156
+103368.2590154312 3.907887 -1103.2366
+103369.2590154815 3.907769 -1103.2366
+103370.2590155317 3.9078476 -1103.2168
+103371.259015582 3.9078083 -1103.2562
+103372.2590156323 3.907769 -1103.2168
+103373.2590156826 3.9078083 -1103.3156
+103374.2590157329 3.9078083 -1103.2366
+103375.2590157832 3.9077296 -1103.2168
+103376.2590158335 3.907769 -1103.2761
+103377.2590158838 3.907769 -1103.197
+103378.2590159341 3.9076507 -1103.1378
+103379.2590159844 3.90769 -1103.2562
+103380.2590160347 3.90769 -1103.2959
+103381.259016085 3.9076507 -1103.2366
+103382.2590161352 3.9077296 -1103.2562
+103383.2590161855 3.90769 -1103.2959
+103384.2590162358 3.9076114 -1103.2366
+103385.2590162861 3.907572 -1103.2761
+103386.2590163364 3.9077296 -1103.197
+103387.2590163867 3.9076507 -1103.2562
+103388.259016437 3.9076507 -1103.3353
+103389.2590164873 3.9076114 -1103.2761
+103390.2590165376 3.907572 -1103.3156
+103391.2590165879 3.907572 -1103.197
+103392.2590166382 3.9075327 -1103.2562
+103393.2590166884 3.9076507 -1103.2366
+103394.2590167387 3.9074934 -1103.2562
+103395.259016789 3.9075327 -1103.2366
+103396.2590168393 3.9076114 -1103.1576
+103397.2590168896 3.9075327 -1103.2366
+103398.2590169399 3.9075327 -1103.1774
+103399.2590169902 3.9075327 -1103.1774
+103400.2590170405 3.9074934 -1103.2168
+103401.2590170908 3.9073751 -1103.2366
+103402.2590171411 3.907454 -1103.2761
+103403.2590171914 3.9073751 -1103.2366
+103404.2590172417 3.907454 -1103.2562
+103405.2590172919 3.9073751 -1103.197
+103406.2590173422 3.9073358 -1103.2168
+103407.2590173925 3.9072964 -1103.2761
+103408.2590174428 3.9073358 -1103.2168
+103409.2590174931 3.9073751 -1103.3156
+103410.2590175434 3.9072964 -1103.2761
+103411.2590175937 3.9073358 -1103.2562
+103412.259017644 3.9074144 -1103.2562
+103413.2590176943 3.9072177 -1103.197
+103414.2590177446 3.9073358 -1103.2959
+103415.2590177949 3.9072571 -1103.2959
+103416.2590178452 3.9073358 -1103.2761
+103417.2590178954 3.9072177 -1103.1378
+103418.2590179457 3.9071391 -1103.2959
+103419.259017996 3.9072177 -1103.3156
+103420.2590180463 3.9072571 -1103.197
+103421.2590180966 3.9072571 -1103.2959
+103422.2590181469 3.9072177 -1103.2366
+103423.2590181972 3.9072571 -1103.1774
+103424.2590182475 3.9071784 -1103.2366
+103425.2590182978 3.9072177 -1103.3749
+103426.2590183481 3.9071784 -1103.2761
+103427.2590183984 3.9070995 -1103.1774
+103428.2590184486 3.9070601 -1103.1576
+103429.2590184989 3.9070601 -1103.2761
+103430.2590185492 3.9070601 -1103.2562
+103431.2590185995 3.9070208 -1103.2366
+103432.2590186498 3.9069815 -1103.2366
+103433.2590187001 3.9070601 -1103.2562
+103434.2590187504 3.9070995 -1103.197
+103435.2590188007 3.9070995 -1103.2168
+103436.259018851 3.9070601 -1103.2959
+103437.2590189013 3.9069028 -1103.2562
+103438.2590189516 3.9069421 -1103.2959
+103439.2590190019 3.9069028 -1103.2562
+103440.2590190521 3.9069421 -1103.197
+103441.2590191024 3.9070208 -1103.197
+103442.2590191527 3.9069421 -1103.2761
+103443.259019203 3.9070208 -1103.2366
+103444.2590192533 3.9069421 -1103.2761
+103445.2590193036 3.9068635 -1103.2761
+103446.2590193539 3.9068241 -1103.2761
+103447.2590194042 3.9068635 -1103.2168
+103448.2590194545 3.9068241 -1103.2168
+103449.2590195048 3.9068241 -1103.2562
+103450.2590195551 3.9068241 -1103.2562
+103451.2590196054 3.9068635 -1103.1378
+103452.2590196556 3.9068635 -1103.2761
+103453.2590197059 3.9068241 -1103.2761
+103454.2590197562 3.9067845 -1103.2366
+103455.2590198065 3.9067452 -1103.2959
+103456.2590198568 3.9066665 -1103.197
+103457.2590199071 3.9067845 -1103.3156
+103458.2590199574 3.9067059 -1103.197
+103459.2590200077 3.9067059 -1103.2168
+103460.259020058 3.9067059 -1103.197
+103461.2590201083 3.9066665 -1103.2562
+103462.2590201586 3.9067845 -1103.2959
+103463.2590202088 3.9067059 -1103.2959
+103464.2590202591 3.9066665 -1103.2168
+103465.2590203094 3.9067059 -1103.3156
+103466.2590203597 3.9066272 -1103.2168
+103467.25902041 3.9066665 -1103.2168
+103468.2590204603 3.9067452 -1103.3353
+103469.2590205106 3.9067059 -1103.2959
+103470.2590205609 3.9065878 -1103.1774
+103471.2590206112 3.9064696 -1103.197
+103472.2590206615 3.9066665 -1103.2562
+103473.2590207118 3.9065092 -1103.2562
+103474.2590207621 3.9065485 -1103.2562
+103475.2590208123 3.9065092 -1103.2959
+103476.2590208626 3.9065092 -1103.2761
+103477.2590209129 3.9065092 -1103.1774
+103478.2590209632 3.9064696 -1103.1774
+103479.2590210135 3.9065485 -1103.2168
+103480.2590210638 3.9065485 -1103.2761
+103481.2590211141 3.9063909 -1103.1378
+103482.2590211644 3.9064302 -1103.2562
+103483.2590212147 3.9063516 -1103.2366
+103484.259021265 3.9064302 -1103.197
+103485.2590213153 3.9063909 -1103.2761
+103486.2590213655 3.9062335 -1103.1774
+103487.2590214158 3.9064302 -1103.2366
+103488.2590214661 3.9063909 -1103.3156
+103489.2590215164 3.9064302 -1103.2959
+103490.2590215667 3.9063122 -1103.197
+103491.259021617 3.9063909 -1103.2168
+103492.2590216673 3.9063516 -1103.2366
+103493.2590217176 3.9063122 -1103.2366
+103494.2590217679 3.9062335 -1103.2562
+103495.2590218182 3.9063122 -1103.197
+103496.2590218685 3.9061942 -1103.2366
+103497.2590219188 3.9062335 -1103.1774
+103498.259021969 3.9063122 -1103.2168
+103499.2590220193 3.9062729 -1103.2761
+103500.2590220696 3.9062335 -1103.2959
+103501.2590221199 3.9062335 -1103.1774
+103502.2590221702 3.9061153 -1103.2366
+103503.2590222205 3.9061153 -1103.2168
+103504.2590222708 3.9062335 -1103.197
+103505.2590223211 3.9062335 -1103.1774
+103506.2590223714 3.9061153 -1103.2366
+103507.2590224217 3.9062335 -1103.197
+103508.259022472 3.906076 -1103.2562
+103509.2590225223 3.9061153 -1103.0984
+103510.2590225725 3.906076 -1103.2366
+103511.2590226228 3.9059579 -1103.2168
+103512.2590226731 3.9059973 -1103.3749
+103513.2590227234 3.9060366 -1103.2562
+103514.2590227737 3.906076 -1103.1576
+103515.259022824 3.9059973 -1103.197
+103516.2590228743 3.9059579 -1103.2168
+103517.2590229246 3.9059973 -1103.2168
+103518.2590229749 3.9060366 -1103.2562
+103519.2590230252 3.9061546 -1103.2168
+103520.2590230755 3.9058793 -1103.3353
+103521.2590231257 3.9059579 -1103.2959
+103522.259023176 3.9059186 -1103.3156
+103523.2590232263 3.9059579 -1103.2168
+103524.2590232766 3.9058793 -1103.2168
+103525.2590233269 3.9059186 -1103.2562
+103526.2590233772 3.9059186 -1103.197
+103527.2590234275 3.9058793 -1103.2366
+103528.2590234778 3.9058793 -1103.2562
+103529.2590235281 3.9058397 -1103.2959
+103530.2590235784 3.9059186 -1103.2168
+103531.2590236287 3.9057217 -1103.2168
+103532.259023679 3.9058003 -1103.2366
+103533.2590237292 3.9059186 -1103.2366
+103534.2590237795 3.905761 -1103.2168
+103535.2590238298 3.9058003 -1103.197
+103536.2590238801 3.9058003 -1103.2959
+103537.2590239304 3.9057217 -1103.2761
+103538.2590239807 3.9058003 -1103.2761
+103539.259024031 3.9057217 -1103.2366
+103540.2590240813 3.905643 -1103.1576
+103541.2590241316 3.9057217 -1103.0984
+103542.2590241819 3.9056823 -1103.2959
+103543.2590242322 3.9057217 -1103.197
+103544.2590242825 3.9057217 -1103.2761
+103545.2590243327 3.905761 -1103.2562
+103546.259024383 3.9056823 -1103.1774
+103547.2590244333 3.905643 -1103.1774
+103548.2590244836 3.9055641 -1103.2959
+103549.2590245339 3.9055641 -1103.2168
+103550.2590245842 3.905643 -1103.2562
+103551.2590246345 3.9056823 -1103.2366
+103552.2590246848 3.9055247 -1103.2562
+103553.2590247351 3.9055247 -1103.1576
+103554.2590247854 3.9056036 -1103.2168
+103555.2590248357 3.9055247 -1103.1774
+103556.2590248859 3.9054854 -1103.197
+103557.2590249362 3.9054461 -1103.2959
+103558.2590249865 3.9054854 -1103.2761
+103559.2590250368 3.9055247 -1103.2366
+103560.2590250871 3.9053674 -1103.2562
+103561.2590251374 3.9054461 -1103.2761
+103562.2590251877 3.9052887 -1103.2168
+103563.259025238 3.9054067 -1103.2168
+103564.2590252883 3.9054854 -1103.2168
+103565.2590253386 3.9053674 -1103.1774
+103566.2590253889 3.9053674 -1103.2761
+103567.2590254392 3.9053674 -1103.2562
+103568.2590254894 3.9054461 -1103.2959
+103569.2590255397 3.9052887 -1103.2761
+103570.25902559 3.9052098 -1103.1378
+103571.2590256403 3.905328 -1103.2366
+103572.2590256906 3.9052098 -1103.2959
+103573.2590257409 3.9052098 -1103.197
+103574.2590257912 3.9052491 -1103.2761
+103575.2590258415 3.9052887 -1103.2366
+103576.2590258918 3.9052887 -1103.2562
+103577.2590259421 3.9052491 -1103.1182
+103578.2590259924 3.9052491 -1103.2366
+103579.2590260427 3.9052491 -1103.197
+103580.2590260929 3.9052491 -1103.3551
+103581.2590261432 3.9052098 -1103.2562
+103582.2590261935 3.9052491 -1103.1576
+103583.2590262438 3.9050524 -1103.2959
+103584.2590262941 3.9051704 -1103.2366
+103585.2590263444 3.9051311 -1103.2959
+103586.2590263947 3.9052098 -1103.2761
+103587.259026445 3.9051311 -1103.2959
+103588.2590264953 3.9051704 -1103.2366
+103589.2590265456 3.9051704 -1103.2366
+103590.2590265959 3.9050524 -1103.1576
+103591.2590266461 3.9050524 -1103.2959
+103592.2590266964 3.9051704 -1103.2366
+103593.2590267467 3.9050918 -1103.3156
+103594.259026797 3.9050918 -1103.2562
+103595.2590268473 3.9050524 -1103.197
+103596.2590268976 3.9050918 -1103.2761
+103597.2590269479 3.9051311 -1103.1576
+103598.2590269982 3.9049737 -1103.1774
+103599.2590270485 3.9049737 -1103.2168
+103600.2590270988 3.9050131 -1103.1774
+103601.2590271491 3.9049737 -1103.1576
+103602.2590271994 3.9049737 -1102.9205
+103603.2590272496 3.9048948 -1100.5703
+103604.2590272999 3.9048948 -1100.6099
+103605.2590273502 3.9050131 -1100.6887
+103606.2590274005 3.9048555 -1104.9944
+103607.2590274508 3.9048162 -1106.5151
+103608.2590275011 3.9049737 -1106.6534
+103609.2590275514 3.9048948 -1106.6335
+103610.2590276017 3.9048948 -1106.5941
+103611.259027652 3.9049342 -1104.3229
+103612.2590277023 3.9048948 -1105.4882
+103613.2590277526 3.9049342 -1105.6857
+103614.2590278029 3.9048948 -1105.5671
+103615.2590278531 3.9048162 -1102.1504
+103616.2590279034 3.9047375 -1101.1825
+103617.2590279537 3.9047768 -1101.1628
+103618.259028004 3.9047768 -1101.1825
+103619.2590280543 3.9047768 -1102.407
+103620.2590281046 3.9046981 -1101.6566
+103621.2590281549 3.9047768 -1101.5776
+103622.2590282052 3.9046981 -1101.6763
+103623.2590282555 3.9046981 -1101.6566
+103624.2590283058 3.9046588 -1102.6836
+103625.2590283561 3.9047768 -1102.2491
+103626.2590284063 3.9046192 -1102.1898
+103627.2590284566 3.9046588 -1102.2689
+103628.2590285069 3.9046192 -1103.2959
+103629.2590285572 3.9047375 -1103.2761
+103630.2590286075 3.9046981 -1103.4342
+103631.2590286578 3.9046192 -1103.3749
+103632.2590287081 3.9046192 -1103.4934
+103633.2590287584 3.9046192 -1103.3945
+103634.2590288087 3.9045405 -1103.6119
+103635.259028859 3.9045799 -1103.5723
+103636.2590289093 3.9044225 -1103.5131
+103637.2590289596 3.9045012 -1103.1378
+103638.2590290098 3.9045012 -1103.0391
+103639.2590290601 3.9046192 -1103.0785
+103640.2590291104 3.9044619 -1103.1378
+103641.2590291607 3.9044225 -1103.3551
+103642.259029211 3.9043832 -1103.4342
+103643.2590292613 3.9044619 -1103.5526
+103644.2590293116 3.9044225 -1103.5328
+103645.2590293619 3.9043438 -1103.2562
+103646.2590294122 3.9043832 -1103.1576
+103647.2590294625 3.9044225 -1103.1182
+103648.2590295128 3.9044619 -1103.3749
+103649.2590295631 3.9044225 -1102.9601
+103650.2590296133 3.9043438 -1103.1576
+103651.2590296636 3.9043043 -1103.2168
+103652.2590297139 3.9044225 -1103.2366
+103653.2590297642 3.9043832 -1103.1182
+103654.2590298145 3.9043043 -1103.197
+103655.2590298648 3.9043043 -1103.1378
+103656.2590299151 3.9043832 -1103.1774
+103657.2590299654 3.9041076 -1103.197
+103658.2590300157 3.9042256 -1103.1378
+103659.259030066 3.9041076 -1103.2168
+103660.2590301163 3.9041862 -1103.1576
+103661.2590301665 3.9042256 -1103.2959
+103662.2590302168 3.9041076 -1103.1182
+103663.2590302671 3.9041469 -1103.2959
+103664.2590303174 3.9042256 -1103.1378
+103665.2590303677 3.9041076 -1103.2168
+103666.259030418 3.9040682 -1103.1378
+103667.2590304683 3.9040682 -1103.1576
+103668.2590305186 3.9041076 -1103.2168
+103669.2590305689 3.9041469 -1103.197
+103670.2590306192 3.9041076 -1103.197
+103671.2590306695 3.9039893 -1103.0984
+103672.2590307198 3.9040682 -1103.2168
+103673.25903077 3.9040682 -1103.197
+103674.2590308203 3.90395 -1103.1378
+103675.2590308706 3.9040682 -1103.2366
+103676.2590309209 3.9039893 -1103.1774
+103677.2590309712 3.9040289 -1103.2366
+103678.2590310215 3.9040682 -1103.2562
+103679.2590310718 3.9040289 -1103.2366
+103680.2590311221 3.9039106 -1103.197
+103681.2590311724 3.9039893 -1103.1774
+103682.2590312227 3.9039106 -1103.0984
+103683.259031273 3.9039106 -1103.1774
+103684.2590313233 3.9039106 -1103.2168
+103685.2590313735 3.9039893 -1103.2366
+103686.2590314238 3.9038713 -1103.2168
+103687.2590314741 3.903832 -1103.1182
+103688.2590315244 3.9038713 -1103.2562
+103689.2590315747 3.9038713 -1103.2562
+103690.259031625 3.9037926 -1103.2168
+103691.2590316753 3.903832 -1103.2366
+103692.2590317256 3.9037533 -1103.1378
+103693.2590317759 3.9037926 -1103.1378
+103694.2590318262 3.9037137 -1103.197
+103695.2590318765 3.9037926 -1103.197
+103696.2590319267 3.9037926 -1103.2366
+103697.259031977 3.9037533 -1103.2168
+103698.2590320273 3.9036744 -1103.1774
+103699.2590320776 3.903832 -1103.2168
+103700.2590321279 3.903832 -1103.1774
+103701.2590321782 3.9036744 -1103.2168
+103702.2590322285 3.903635 -1103.197
+103703.2590322788 3.9037533 -1103.2562
+103704.2590323291 3.903635 -1103.2562
+103705.2590323794 3.9036744 -1103.2168
+103706.2590324297 3.9035957 -1103.1378
+103707.25903248 3.9035563 -1103.1576
+103708.2590325302 3.9036744 -1103.1774
+103709.2590325805 3.9035957 -1103.1576
+103710.2590326308 3.903517 -1103.1576
+103711.2590326811 3.903517 -1103.2168
+103712.2590327314 3.9034383 -1103.1774
+103713.2590327817 3.903517 -1103.2366
+103714.259032832 3.9035563 -1103.2168
+103715.2590328823 3.9035563 -1103.197
+103716.2590329326 3.9035957 -1103.2366
+103717.2590329829 3.9034777 -1103.197
+103718.2590330332 3.9034777 -1103.1576
+103719.2590330835 3.9034777 -1103.2366
+103720.2590331337 3.9033594 -1103.2562
+103721.259033184 3.9034383 -1103.2366
+103722.2590332343 3.9035563 -1103.2366
+103723.2590332846 3.9034383 -1103.197
+103724.2590333349 3.9033988 -1103.1182
+103725.2590333852 3.9033594 -1103.2761
+103726.2590334355 3.9033594 -1103.2168
+103727.2590334858 3.9032414 -1103.1774
+103728.2590335361 3.9033594 -1103.1576
+103729.2590335864 3.9032807 -1103.2366
+103730.2590336367 3.9033201 -1103.197
+103731.2590336869 3.9033594 -1103.197
+103732.2590337372 3.9033201 -1103.2366
+103733.2590337875 3.9032807 -1103.2168
+103734.2590338378 3.9033201 -1103.2366
+103735.2590338881 3.9033201 -1103.1576
+103736.2590339384 3.9033201 -1103.2168
+103737.2590339887 3.9032807 -1103.197
+103738.259034039 3.9031627 -1103.1576
+103739.2590340893 3.9032021 -1103.2168
+103740.2590341396 3.9032021 -1103.1378
+103741.2590341899 3.9032807 -1103.197
+103742.2590342402 3.9031627 -1103.1774
+103743.2590342904 3.9031627 -1103.2168
+103744.2590343407 3.9031627 -1103.197
+103745.259034391 3.9031234 -1103.1774
+103746.2590344413 3.9031627 -1103.2959
+103747.2590344916 3.9031627 -1103.2168
+103748.2590345419 3.9031627 -1103.1182
+103749.2590345922 3.9030445 -1103.3156
+103750.2590346425 3.9030838 -1103.197
+103751.2590346928 3.9030051 -1103.2168
+103752.2590347431 3.9030838 -1103.197
+103753.2590347934 3.9029658 -1103.1774
+103754.2590348437 3.9029658 -1103.2562
+103755.2590348939 3.9030051 -1103.2562
+103756.2590349442 3.9029264 -1103.2562
+103757.2590349945 3.9029658 -1103.2959
+103758.2590350448 3.9029264 -1103.2959
+103759.2590350951 3.9029658 -1103.1774
+103760.2590351454 3.9030051 -1103.2366
+103761.2590351957 3.9028871 -1103.3156
+103762.259035246 3.9029264 -1103.2366
+103763.2590352963 3.9028478 -1103.1774
+103764.2590353466 3.9029264 -1103.197
+103765.2590353969 3.9028478 -1103.2366
+103766.2590354471 3.9029658 -1103.2562
+103767.2590354974 3.9028478 -1103.1576
+103768.2590355477 3.9028478 -1103.2366
+103769.259035598 3.9028084 -1103.2761
+103770.2590356483 3.9028084 -1103.1576
+103771.2590356986 3.9027295 -1103.2168
+103772.2590357489 3.9026902 -1103.2366
+103773.2590357992 3.9027689 -1103.2168
+103774.2590358495 3.9027295 -1103.2168
+103775.2590358998 3.9026902 -1103.197
+103776.2590359501 3.9027689 -1103.1378
+103777.2590360004 3.9027689 -1103.197
+103778.2590360506 3.9027689 -1103.2168
+103779.2590361009 3.9026508 -1103.197
+103780.2590361512 3.9026115 -1103.2366
+103781.2590362015 3.9026508 -1103.1576
+103782.2590362518 3.9026115 -1103.197
+103783.2590363021 3.9025328 -1103.2168
+103784.2590363524 3.9027295 -1103.2562
+103785.2590364027 3.9026508 -1103.1576
+103786.259036453 3.9025328 -1103.197
+103787.2590365033 3.9026115 -1103.1576
+103788.2590365536 3.9026115 -1103.2168
+103789.2590366038 3.9026115 -1103.1576
+103790.2590366541 3.9025328 -1103.197
+103791.2590367044 3.9026508 -1103.2761
+103792.2590367547 3.9024935 -1103.2366
+103793.259036805 3.9024539 -1103.197
+103794.2590368553 3.9024539 -1103.1576
+103795.2590369056 3.9025722 -1103.2761
+103796.2590369559 3.9024935 -1103.1378
+103797.2590370062 3.9024935 -1103.2366
+103798.2590370565 3.9024539 -1103.197
+103799.2590371068 3.9024935 -1103.2366
+103800.2590371571 3.9024935 -1103.197
+103801.2590372073 3.9023752 -1103.2959
+103802.2590372576 3.9024146 -1103.2562
+103803.2590373079 3.9024539 -1103.2168
+103804.2590373582 3.9023359 -1103.1576
+103805.2590374085 3.9024539 -1103.2562
+103806.2590374588 3.9024146 -1103.2562
+103807.2590375091 3.9022572 -1103.2168
+103808.2590375594 3.9023359 -1103.1576
+103809.2590376097 3.9023752 -1103.2562
+103810.25903766 3.9022572 -1103.2562
+103811.2590377103 3.9023359 -1103.1378
+103812.2590377606 3.9023752 -1103.2168
+103813.2590378108 3.9022572 -1103.197
+103814.2590378611 3.9021783 -1103.1774
+103815.2590379114 3.9022179 -1103.3353
+103816.2590379617 3.9022572 -1103.197
+103817.259038012 3.9022965 -1103.2168
+103818.2590380623 3.9021389 -1103.2168
+103819.2590381126 3.9021783 -1103.1774
+103820.2590381629 3.9021783 -1103.2366
+103821.2590382132 3.9021389 -1103.2168
+103822.2590382635 3.9022179 -1103.1182
+103823.2590383138 3.9020603 -1103.2562
+103824.259038364 3.9021389 -1103.2562
+103825.2590384143 3.9020209 -1103.2562
+103826.2590384646 3.9020603 -1103.2562
+103827.2590385149 3.9020996 -1103.2168
+103828.2590385652 3.9021389 -1103.2168
+103829.2590386155 3.9019423 -1103.2366
+103830.2590386658 3.9020209 -1103.3551
+103831.2590387161 3.9020209 -1103.2168
+103832.2590387664 3.9020209 -1103.2366
+103833.2590388167 3.9020603 -1103.197
+103834.259038867 3.9019816 -1103.1576
+103835.2590389173 3.9018633 -1103.2366
+103836.2590389675 3.9019816 -1103.2366
+103837.2590390178 3.9019029 -1103.2366
+103838.2590390681 3.9019816 -1103.2562
+103839.2590391184 3.9019423 -1103.2168
+103840.2590391687 3.9019029 -1103.1378
+103841.259039219 3.9019423 -1103.2562
+103842.2590392693 3.9019029 -1103.1378
+103843.2590393196 3.9018633 -1103.2168
+103844.2590393699 3.901824 -1103.2168
+103845.2590394202 3.9018633 -1103.1182
+103846.2590394705 3.901824 -1103.2959
+103847.2590395208 3.901824 -1103.2168
+103848.259039571 3.901824 -1103.2168
+103849.2590396213 3.9017847 -1103.1774
+103850.2590396716 3.9016666 -1103.1378
+103851.2590397219 3.9017453 -1103.197
+103852.2590397722 3.9017453 -1103.3156
+103853.2590398225 3.901824 -1103.2366
+103854.2590398728 3.901706 -1103.2562
+103855.2590399231 3.9017847 -1103.197
+103856.2590399734 3.901706 -1103.2761
+103857.2590400237 3.901706 -1103.1774
+103858.259040074 3.901706 -1103.0785
+103859.2590401242 3.901588 -1103.2562
+103860.2590401745 3.9016273 -1103.2168
+103861.2590402248 3.9016273 -1103.2168
+103862.2590402751 3.901706 -1103.197
+103863.2590403254 3.9016273 -1103.2168
+103864.2590403757 3.901509 -1103.2959
+103865.259040426 3.901706 -1103.1774
+103866.2590404763 3.901509 -1103.2562
+103867.2590405266 3.901509 -1103.197
+103868.2590405769 3.9014697 -1103.2168
+103869.2590406272 3.901588 -1103.1774
+103870.2590406775 3.901509 -1103.2168
+103871.2590407277 3.901509 -1103.1182
+103872.259040778 3.901509 -1103.2366
+103873.2590408283 3.9014697 -1103.2168
+103874.2590408786 3.9014697 -1103.2366
+103875.2590409289 3.9014304 -1103.1378
+103876.2590409792 3.9014304 -1103.2761
+103877.2590410295 3.9014304 -1103.197
+103878.2590410798 3.9015484 -1103.1774
+103879.2590411301 3.9014697 -1103.2168
+103880.2590411804 3.901391 -1103.1774
+103881.2590412307 3.901391 -1103.1774
+103882.259041281 3.901273 -1103.1774
+103883.2590413312 3.9013517 -1103.1576
+103884.2590413815 3.901391 -1103.2168
+103885.2590414318 3.9013517 -1103.2366
+103886.2590414821 3.901273 -1103.1576
+103887.2590415324 3.9013124 -1103.2562
+103888.2590415827 3.9013124 -1103.0785
+103889.259041633 3.901273 -1103.1774
+103890.2590416833 3.9013517 -1103.197
+103891.2590417336 3.901273 -1103.1576
+103892.2590417839 3.9013517 -1103.197
+103893.2590418342 3.9013124 -1103.2959
+103894.2590418844 3.9011548 -1103.2562
+103895.2590419347 3.901273 -1103.2562
+103896.259041985 3.9011941 -1103.3156
+103897.2590420353 3.9010761 -1103.2562
+103898.2590420856 3.9011548 -1103.197
+103899.2590421359 3.9012334 -1103.197
+103900.2590421862 3.9010761 -1103.2168
+103901.2590422365 3.9011154 -1103.2366
+103902.2590422868 3.9010761 -1103.197
+103903.2590423371 3.9011154 -1103.2562
+103904.2590423874 3.9010367 -1103.1774
+103905.2590424377 3.9011941 -1103.1378
+103906.2590424879 3.9011154 -1103.1182
+103907.2590425382 3.9011154 -1103.2366
+103908.2590425885 3.9011154 -1103.2959
+103909.2590426388 3.9010367 -1103.2562
+103910.2590426891 3.9010367 -1103.197
+103911.2590427394 3.9009185 -1103.2562
+103912.2590427897 3.9010761 -1103.2168
+103913.25904284 3.9008398 -1103.1774
+103914.2590428903 3.9009581 -1103.2366
+103915.2590429406 3.9010761 -1103.1182
+103916.2590429909 3.9009185 -1103.1774
+103917.2590430412 3.9009185 -1103.197
+103918.2590430914 3.9009974 -1103.1576
+103919.2590431417 3.9008398 -1103.2959
+103920.259043192 3.9008791 -1103.2168
+103921.2590432423 3.9008791 -1103.1774
+103922.2590432926 3.9009974 -1103.2366
+103923.2590433429 3.9008005 -1103.3156
+103924.2590433932 3.9008398 -1103.2562
+103925.2590434435 3.9008005 -1103.2366
+103926.2590434938 3.9009581 -1103.2562
+103927.2590435441 3.9008005 -1103.2366
+103928.2590435944 3.9008398 -1103.2562
+103929.2590436446 3.9008791 -1103.1774
+103930.2590436949 3.9007611 -1103.3353
+103931.2590437452 3.9008398 -1103.2366
+103932.2590437955 3.9008005 -1103.2366
+103933.2590438458 3.9007611 -1103.2562
+103934.2590438961 3.9006824 -1103.1774
+103935.2590439464 3.9007218 -1103.197
+103936.2590439967 3.9007611 -1103.2168
+103937.259044047 3.9006431 -1103.3353
+103938.2590440973 3.9006431 -1103.1182
+103939.2590441476 3.9007218 -1103.2168
+103940.2590441979 3.9006431 -1103.2761
+103941.2590442481 3.9006035 -1103.1774
+103942.2590442984 3.9006431 -1103.197
+103943.2590443487 3.9006431 -1103.2168
+103944.259044399 3.9005249 -1103.197
+103945.2590444493 3.9006035 -1103.1774
+103946.2590444996 3.9004462 -1103.2168
+103947.2590445499 3.9005642 -1103.2761
+103948.2590446002 3.9004855 -1103.2168
+103949.2590446505 3.9004462 -1103.3156
+103950.2590447008 3.9005642 -1103.2366
+103951.2590447511 3.9005642 -1103.2168
+103952.2590448014 3.9004462 -1103.2761
+103953.2590448516 3.9005642 -1103.1774
+103954.2590449019 3.9004462 -1103.1576
+103955.2590449522 3.9004462 -1103.197
+103956.2590450025 3.9005642 -1103.2366
+103957.2590450528 3.9004068 -1103.197
+103958.2590451031 3.9003675 -1103.3353
+103959.2590451534 3.9004068 -1103.2168
+103960.2590452037 3.9004068 -1103.2366
+103961.259045254 3.9003279 -1103.2168
+103962.2590453043 3.9003279 -1103.2168
+103963.2590453546 3.9003279 -1103.3353
+103964.2590454048 3.9003675 -1103.2761
+103965.2590454551 3.9002886 -1103.1576
+103966.2590455054 3.9004068 -1103.1774
+103967.2590455557 3.9003675 -1103.2562
+103968.259045606 3.9003675 -1103.197
+103969.2590456563 3.9003279 -1103.1774
+103970.2590457066 3.9003675 -1103.1182
+103971.2590457569 3.9002886 -1103.1774
+103972.2590458072 3.9002886 -1103.2168
+103973.2590458575 3.9002099 -1103.1182
+103974.2590459078 3.9001706 -1103.197
+103975.2590459581 3.9002099 -1103.2562
+103976.2590460083 3.9002099 -1103.197
+103977.2590460586 3.9002099 -1103.1576
+103978.2590461089 3.9002099 -1103.2168
+103979.2590461592 3.9001706 -1103.2366
+103980.2590462095 3.9001312 -1103.2168
+103981.2590462598 3.9002099 -1103.2168
+103982.2590463101 3.9002099 -1103.0984
+103983.2590463604 3.9000525 -1103.1576
+103984.2590464107 3.900013 -1103.2168
+103985.259046461 3.900013 -1103.1378
+103986.2590465113 3.9000525 -1103.2366
+103987.2590465616 3.9001312 -1103.2562
+103988.2590466118 3.9000919 -1103.2366
+103989.2590466621 3.9000525 -1103.1774
+103990.2590467124 3.900013 -1103.2366
+103991.2590467627 3.9000525 -1103.1774
+103992.259046813 3.899895 -1103.2168
+103993.2590468633 3.8998556 -1103.1774
+103994.2590469136 3.900013 -1103.1774
+103995.2590469639 3.8999736 -1103.3156
+103996.2590470142 3.900013 -1103.1576
+103997.2590470645 3.899895 -1103.197
+103998.2590471148 3.8998163 -1103.2562
+103999.259047165 3.8999736 -1103.2562
+104000.2590472153 3.8999736 -1103.2761
+104001.2590472656 3.899895 -1103.2168
+104002.2590473159 3.8998556 -1103.2761
+104003.2590473662 3.8997769 -1103.2366
+104004.2590474165 3.8998163 -1103.1576
+104005.2590474668 3.8997769 -1103.1182
+104006.2590475171 3.8997769 -1103.2366
+104007.2590475674 3.8998163 -1103.1576
+104008.2590476177 3.899698 -1103.2168
+104009.259047668 3.8998556 -1103.197
+104010.2590477183 3.8997769 -1103.1576
+104011.2590477685 3.8998163 -1103.1378
+104012.2590478188 3.8997376 -1103.2168
+104013.2590478691 3.8997376 -1103.2168
+104014.2590479194 3.8998163 -1103.1774
+104015.2590479697 3.899698 -1103.2168
+104016.25904802 3.8997769 -1103.2168
+104017.2590480703 3.8997376 -1103.197
+104018.2590481206 3.8996587 -1103.2562
+104019.2590481709 3.8996193 -1103.1576
+104020.2590482212 3.8996587 -1103.197
+104021.2590482715 3.8997376 -1103.1576
+104022.2590483218 3.89958 -1103.1576
+104023.259048372 3.8997376 -1103.1378
+104024.2590484223 3.89958 -1103.2562
+104025.2590484726 3.89958 -1103.2168
+104026.2590485229 3.8995407 -1103.2366
+104027.2590485732 3.89958 -1103.2761
+104028.2590486235 3.8995407 -1103.197
+104029.2590486738 3.89958 -1103.197
+104030.2590487241 3.8995407 -1103.1576
+104031.2590487744 3.8995013 -1103.2366
+104032.2590488247 3.899462 -1103.197
+104033.259048875 3.899462 -1103.1576
+104034.2590489252 3.8994226 -1103.2562
+104035.2590489755 3.8995013 -1103.1774
+104036.2590490258 3.8995013 -1103.2168
+104037.2590490761 3.899462 -1103.2168
+104038.2590491264 3.8994226 -1103.1774
+104039.2590491767 3.8994226 -1103.197
+104040.259049227 3.8994226 -1103.2761
+104041.2590492773 3.8993831 -1103.1378
+104042.2590493276 3.8994226 -1103.3551
+104043.2590493779 3.8992257 -1103.197
+104044.2590494282 3.8993831 -1103.1576
+104045.2590494785 3.8993044 -1103.197
+104046.2590495287 3.8993831 -1103.1378
+104047.259049579 3.8993044 -1103.2366
+104048.2590496293 3.8993044 -1103.1774
+104049.2590496796 3.8993044 -1103.2761
+104050.2590497299 3.8992257 -1103.2366
+104051.2590497802 3.8992651 -1103.1576
+104052.2590498305 3.8993044 -1103.2562
+104053.2590498808 3.8991864 -1103.197
+104054.2590499311 3.8992257 -1103.197
+104055.2590499814 3.8991864 -1103.2366
+104056.2590500317 3.899147 -1103.2366
+104057.259050082 3.899147 -1103.0785
+104058.2590501322 3.899147 -1103.1576
+104059.2590501825 3.8991077 -1103.1774
+104060.2590502328 3.899147 -1103.197
+104061.2590502831 3.8991077 -1103.197
+104062.2590503334 3.8991077 -1103.3353
+104063.2590503837 3.899147 -1103.2761
+104064.259050434 3.8990681 -1103.1576
+104065.2590504843 3.8990681 -1103.1576
+104066.2590505346 3.8990288 -1103.1576
+104067.2590505849 3.899147 -1103.1576
+104068.2590506352 3.8990288 -1103.2366
+104069.2590506854 3.8991077 -1103.3156
+104070.2590507357 3.8990681 -1103.2168
+104071.259050786 3.8989894 -1103.1774
+104072.2590508363 3.8989501 -1103.197
+104073.2590508866 3.8989108 -1103.2366
+104074.2590509369 3.8989501 -1103.1378
+104075.2590509872 3.8989894 -1103.2366
+104076.2590510375 3.8989108 -1103.2562
+104077.2590510878 3.8989894 -1103.197
+104078.2590511381 3.8988714 -1103.1378
+104079.2590511884 3.8988321 -1103.2168
+104080.2590512387 3.8989108 -1103.1774
+104081.2590512889 3.8989501 -1103.1774
+104082.2590513392 3.8987927 -1103.2366
+104083.2590513895 3.8988714 -1103.2959
+104084.2590514398 3.8988714 -1103.1774
+104085.2590514901 3.8988321 -1103.2761
+104086.2590515404 3.8987138 -1103.1774
+104087.2590515907 3.8987927 -1103.1378
+104088.259051641 3.8987927 -1103.1378
+104089.2590516913 3.8986745 -1103.197
+104090.2590517416 3.8988321 -1103.1576
+104091.2590517919 3.8987138 -1103.2761
+104092.2590518421 3.8987532 -1103.2562
+104093.2590518924 3.8987927 -1103.2366
+104094.2590519427 3.8987138 -1103.2168
+104095.259051993 3.8986351 -1103.3156
+104096.2590520433 3.8986745 -1103.3353
+104097.2590520936 3.8986745 -1103.2366
+104098.2590521439 3.8985958 -1103.1774
+104099.2590521942 3.8985565 -1103.197
+104100.2590522445 3.8985958 -1103.1774
+104101.2590522948 3.8984776 -1103.197
+104102.2590523451 3.8985171 -1103.197
+104103.2590523954 3.8985171 -1103.2168
+104104.2590524456 3.8985958 -1103.1378
+104105.2590524959 3.8986745 -1103.1576
+104106.2590525462 3.8985958 -1103.1774
+104107.2590525965 3.8985565 -1103.1576
+104108.2590526468 3.8986745 -1103.1774
+104109.2590526971 3.8985171 -1103.2366
+104110.2590527474 3.8985171 -1103.1378
+104111.2590527977 3.8984382 -1103.197
+104112.259052848 3.8984382 -1103.197
+104113.2590528983 3.8984776 -1103.2366
+104114.2590529486 3.8983989 -1103.2168
+104115.2590529989 3.8984776 -1103.2562
+104116.2590530491 3.8983595 -1103.1182
+104117.2590530994 3.8983989 -1103.1576
+104118.2590531497 3.8983989 -1103.2562
+104119.2590532 3.8984776 -1103.2366
+104120.2590532503 3.8983202 -1103.2168
+104121.2590533006 3.8983989 -1103.2168
+104122.2590533509 3.8983595 -1103.3156
+104123.2590534012 3.8983989 -1103.2168
+104124.2590534515 3.8982415 -1103.2959
+104125.2590535018 3.8982809 -1103.2168
+104126.2590535521 3.8983202 -1103.2366
+104127.2590536023 3.8983202 -1103.1182
+104128.2590536526 3.8982415 -1103.2562
+104129.2590537029 3.8982809 -1103.1576
+104130.2590537532 3.8982022 -1103.197
+104131.2590538035 3.8981233 -1103.2168
+104132.2590538538 3.8981626 -1103.1378
+104133.2590539041 3.8983202 -1103.197
+104134.2590539544 3.8982022 -1103.2366
+104135.2590540047 3.8980839 -1103.197
+104136.259054055 3.8981233 -1103.1378
+104137.2590541053 3.8982809 -1103.2168
+104138.2590541556 3.8980446 -1103.2366
+104139.2590542058 3.8981233 -1103.2959
+104140.2590542561 3.8981233 -1103.197
+104141.2590543064 3.8981626 -1103.2761
+104142.2590543567 3.8980839 -1103.2168
+104143.259054407 3.8980446 -1103.2168
+104144.2590544573 3.8980446 -1103.1378
+104145.2590545076 3.8980446 -1103.2562
+104146.2590545579 3.8980052 -1103.2562
+104147.2590546082 3.8980052 -1103.2761
+104148.2590546585 3.8979659 -1103.197
+104149.2590547088 3.8980052 -1103.2562
+104150.2590547591 3.8979266 -1103.197
+104151.2590548093 3.8980446 -1103.1774
+104152.2590548596 3.8979266 -1103.197
+104153.2590549099 3.8978872 -1103.1774
+104154.2590549602 3.8978872 -1103.2366
+104155.2590550105 3.8978872 -1103.3156
+104156.2590550608 3.8978872 -1103.2366
+104157.2590551111 3.8980446 -1103.1774
+104158.2590551614 3.8978872 -1103.2562
+104159.2590552117 3.8979659 -1103.3156
+104160.259055262 3.8978477 -1103.2761
+104161.2590553123 3.8978083 -1103.2168
+104162.2590553625 3.8978083 -1103.2168
+104163.2590554128 3.8978477 -1103.2959
+104164.2590554631 3.897769 -1103.2168
+104165.2590555134 3.897769 -1103.197
+104166.2590555637 3.8978083 -1103.2168
+104167.259055614 3.897769 -1103.2959
+104168.2590556643 3.8978083 -1103.1774
+104169.2590557146 3.897651 -1103.2562
+104170.2590557649 3.897769 -1103.2168
+104171.2590558152 3.897769 -1103.2761
+104172.2590558655 3.8976116 -1103.1182
+104173.2590559158 3.8976903 -1103.2168
+104174.259055966 3.897651 -1103.2366
+104175.2590560163 3.897651 -1103.197
+104176.2590560666 3.8976116 -1103.2761
+104177.2590561169 3.8976116 -1103.2761
+104178.2590561672 3.8975327 -1103.2366
+104179.2590562175 3.8976903 -1103.1774
+104180.2590562678 3.8975327 -1103.197
+104181.2590563181 3.897651 -1103.197
+104182.2590563684 3.8975327 -1103.2366
+104183.2590564187 3.897651 -1103.1378
+104184.259056469 3.8974147 -1103.1774
+104185.2590565193 3.8975723 -1103.1182
+104186.2590565695 3.8975327 -1103.1576
+104187.2590566198 3.8975327 -1103.2761
+104188.2590566701 3.897454 -1103.197
+104189.2590567204 3.8975327 -1103.197
+104190.2590567707 3.897454 -1103.2562
+104191.259056821 3.8974934 -1103.197
+104192.2590568713 3.897336 -1103.197
+104193.2590569216 3.897454 -1103.1774
+104194.2590569719 3.8974934 -1103.1576
+104195.2590570222 3.8975327 -1103.2366
+104196.2590570725 3.897336 -1103.2168
+104197.2590571227 3.8974147 -1103.2562
+104198.259057173 3.897336 -1103.2562
+104199.2590572233 3.8974147 -1103.197
+104200.2590572736 3.8973753 -1103.2366
+104201.2590573239 3.8974147 -1103.2562
+104202.2590573742 3.8972967 -1103.2168
+104203.2590574245 3.8972967 -1103.197
+104204.2590574748 3.8972178 -1103.2562
+104205.2590575251 3.8972967 -1103.1774
+104206.2590575754 3.8972178 -1103.2761
+104207.2590576257 3.8974147 -1103.2168
+104208.259057676 3.8971784 -1103.2168
+104209.2590577262 3.8972573 -1103.197
+104210.2590577765 3.8972573 -1103.197
+104211.2590578268 3.8972178 -1103.1774
+104212.2590578771 3.8972573 -1103.2366
+104213.2590579274 3.8972178 -1103.2959
+104214.2590579777 3.8970997 -1103.1576
+104215.259058028 3.8970997 -1103.2562
+104216.2590580783 3.8970997 -1103.2761
+104217.2590581286 3.8970604 -1103.1576
+104218.2590581789 3.8972178 -1103.197
+104219.2590582292 3.8972178 -1103.2168
+104220.2590582795 3.8970604 -1103.197
+104221.2590583297 3.8971391 -1103.2562
+104222.25905838 3.8971391 -1103.2562
+104223.2590584303 3.8970604 -1103.1576
+104224.2590584806 3.8970604 -1103.1774
+104225.2590585309 3.8969817 -1103.2761
+104226.2590585812 3.8970211 -1103.2168
+104227.2590586315 3.8969424 -1103.1182
+104228.2590586818 3.8970604 -1103.1774
+104229.2590587321 3.8970604 -1103.2959
+104230.2590587824 3.8969424 -1103.1774
+104231.2590588327 3.8969817 -1103.1378
+104232.2590588829 3.8969424 -1103.2562
+104233.2590589332 3.8969028 -1103.197
+104234.2590589835 3.8969028 -1103.2168
+104235.2590590338 3.8969028 -1103.1576
+104236.2590590841 3.8968635 -1103.1576
+104237.2590591344 3.8968635 -1103.197
+104238.2590591847 3.8968241 -1103.2366
+104239.259059235 3.8968635 -1103.2761
+104240.2590592853 3.8967454 -1103.1182
+104241.2590593356 3.8969028 -1103.197
+104242.2590593859 3.8967848 -1103.1576
+104243.2590594362 3.8968241 -1103.2761
+104244.2590594864 3.8968241 -1103.1576
+104245.2590595367 3.8967848 -1103.2168
+104246.259059587 3.8967848 -1103.1182
+104247.2590596373 3.8967848 -1103.197
+104248.2590596876 3.8967454 -1103.2959
+104249.2590597379 3.8967061 -1103.2366
+104250.2590597882 3.8966272 -1103.1576
+104251.2590598385 3.8967454 -1103.2366
+104252.2590598888 3.8966668 -1103.3156
+104253.2590599391 3.8967454 -1103.197
+104254.2590599894 3.8966668 -1103.1774
+104255.2590600397 3.8967061 -1103.2168
+104256.2590600899 3.8966272 -1103.2366
+104257.2590601402 3.8965878 -1103.197
+104258.2590601905 3.8965485 -1103.1774
+104259.2590602408 3.8966668 -1103.2761
+104260.2590602911 3.8966272 -1103.1378
+104261.2590603414 3.8965878 -1103.2168
+104262.2590603917 3.8965485 -1103.2168
+104263.259060442 3.8965092 -1103.197
+104264.2590604923 3.8965092 -1103.1576
+104265.2590605426 3.8965092 -1103.1576
+104266.2590605929 3.8965485 -1103.2168
+104267.2590606431 3.8964305 -1103.2168
+104268.2590606934 3.8964698 -1103.2562
+104269.2590607437 3.8965485 -1103.2168
+104270.259060794 3.8964305 -1103.1774
+104271.2590608443 3.8963912 -1103.2761
+104272.2590608946 3.8965092 -1103.1774
+104273.2590609449 3.8964305 -1103.2562
+104274.2590609952 3.8964305 -1103.1774
+104275.2590610455 3.8964698 -1103.1774
+104276.2590610958 3.8963122 -1103.1774
+104277.2590611461 3.8963518 -1103.2366
+104278.2590611964 3.8963518 -1103.197
+104279.2590612466 3.8963912 -1103.2366
+104280.2590612969 3.8962336 -1103.2562
+104281.2590613472 3.8963912 -1103.2761
+104282.2590613975 3.8962729 -1103.1774
+104283.2590614478 3.8963122 -1103.1576
+104284.2590614981 3.8963518 -1103.197
+104285.2590615484 3.8963518 -1103.2168
+104286.2590615987 3.8961942 -1103.3353
+104287.259061649 3.8963122 -1103.2562
+104288.2590616993 3.8962729 -1103.1378
+104289.2590617496 3.8962336 -1103.1576
+104290.2590617999 3.8961942 -1103.2366
+104291.2590618501 3.8963122 -1103.1576
+104292.2590619004 3.8962336 -1103.197
+104293.2590619507 3.8961549 -1103.1378
+104294.259062001 3.8961549 -1103.2366
+104295.2590620513 3.8961549 -1103.1378
+104296.2590621016 3.8960369 -1103.1774
+104297.2590621519 3.8960762 -1103.2761
+104298.2590622022 3.8960762 -1103.2562
+104299.2590622525 3.8961549 -1103.2562
+104300.2590623028 3.8960762 -1103.2562
+104301.2590623531 3.8961155 -1103.2562
+104302.2590624033 3.8959973 -1103.2959
+104303.2590624536 3.8960369 -1103.2959
+104304.2590625039 3.8959579 -1103.197
+104305.2590625542 3.8960369 -1103.197
+104306.2590626045 3.8960369 -1103.1774
+104307.2590626548 3.8960762 -1103.197
+104308.2590627051 3.8959186 -1103.2562
+104309.2590627554 3.8958793 -1103.1576
+104310.2590628057 3.8959186 -1103.2761
+104311.259062856 3.8959186 -1103.2168
+104312.2590629063 3.8960369 -1103.197
+104313.2590629566 3.8959186 -1103.2168
+104314.2590630068 3.8959186 -1103.2168
+104315.2590630571 3.8958793 -1103.2168
+104316.2590631074 3.8958793 -1103.0984
+104317.2590631577 3.8958399 -1103.1774
+104318.259063208 3.8958006 -1103.1774
+104319.2590632583 3.8958793 -1103.2562
+104320.2590633086 3.8958793 -1103.1774
+104321.2590633589 3.8958399 -1103.2562
+104322.2590634092 3.8958399 -1103.2761
+104323.2590634595 3.8958006 -1103.1576
+104324.2590635098 3.8956823 -1103.2168
+104325.2590635601 3.8958399 -1103.2562
+104326.2590636103 3.8957219 -1103.1774
+104327.2590636606 3.8958006 -1103.1774
+104328.2590637109 3.895643 -1103.2366
+104329.2590637612 3.8957613 -1103.2366
+104330.2590638115 3.8956823 -1103.1576
+104331.2590638618 3.895643 -1103.2366
+104332.2590639121 3.8955643 -1103.2761
+104333.2590639624 3.8957613 -1103.2761
+104334.2590640127 3.8956037 -1103.2168
+104335.259064063 3.8956037 -1103.1576
+104336.2590641133 3.8956037 -1103.1774
+104337.2590641635 3.895643 -1103.2562
+104338.2590642138 3.8956823 -1103.2562
+104339.2590642641 3.895643 -1103.1774
+104340.2590643144 3.8956037 -1103.2562
+104341.2590643647 3.895643 -1103.197
+104342.259064415 3.8955643 -1103.2959
+104343.2590644653 3.8954856 -1103.2168
+104344.2590645156 3.8954856 -1103.197
+104345.2590645659 3.8955643 -1103.1774
+104346.2590646162 3.8956037 -1103.2168
+104347.2590646665 3.895525 -1103.2959
+104348.2590647168 3.8953674 -1103.2761
+104349.259064767 3.8954463 -1103.2168
+104350.2590648173 3.8954856 -1103.1774
+104351.2590648676 3.8953674 -1103.2761
+104352.2590649179 3.895328 -1103.1774
+104353.2590649682 3.8953674 -1103.197
+104354.2590650185 3.895328 -1103.1576
+104355.2590650688 3.895407 -1103.2366
+104356.2590651191 3.8954856 -1103.197
+104357.2590651694 3.8954463 -1103.197
+104358.2590652197 3.89521 -1103.2366
+104359.25906527 3.8953674 -1103.2168
+104360.2590653203 3.895328 -1103.2562
+104361.2590653705 3.895407 -1103.2366
+104362.2590654208 3.8952887 -1103.1378
+104363.2590654711 3.895328 -1103.1774
+104364.2590655214 3.8952887 -1103.2959
+104365.2590655717 3.8952494 -1103.2959
+104366.259065622 3.8951707 -1103.1774
+104367.2590656723 3.8952887 -1103.1774
+104368.2590657226 3.8953674 -1103.2562
+104369.2590657729 3.89521 -1103.1774
+104370.2590658232 3.8951707 -1103.2366
+104371.2590658735 3.8952494 -1103.2168
+104372.2590659237 3.8951313 -1103.1576
+104373.259065974 3.8950524 -1103.1576
+104374.2590660243 3.8951313 -1103.1774
+104375.2590660746 3.89521 -1103.1576
+104376.2590661249 3.895092 -1103.1378
+104377.2590661752 3.8951313 -1103.2168
+104378.2590662255 3.8950524 -1103.2168
+104379.2590662758 3.8951313 -1103.2562
+104380.2590663261 3.8950524 -1103.2761
+104381.2590663764 3.8950131 -1103.197
+104382.2590664267 3.8950524 -1103.2168
+104383.259066477 3.8950524 -1103.197
+104384.2590665272 3.8949738 -1103.1378
+104385.2590665775 3.8950524 -1103.2761
+104386.2590666278 3.8950524 -1103.2562
+104387.2590666781 3.8949738 -1103.2168
+104388.2590667284 3.8950131 -1103.2761
+104389.2590667787 3.8949738 -1103.1774
+104390.259066829 3.8949738 -1103.1774
+104391.2590668793 3.8949344 -1103.2168
+104392.2590669296 3.8948557 -1103.197
+104393.2590669799 3.8948557 -1103.2562
+104394.2590670302 3.8949738 -1103.2562
+104395.2590670804 3.8948951 -1103.1774
+104396.2590671307 3.8948557 -1103.197
+104397.259067181 3.8948557 -1103.2761
+104398.2590672313 3.8948557 -1103.2959
+104399.2590672816 3.8947768 -1103.1378
+104400.2590673319 3.8947768 -1103.2562
+104401.2590673822 3.8947375 -1103.2366
+104402.2590674325 3.8947768 -1103.2562
+104403.2590674828 3.8947768 -1103.2562
+104404.2590675331 3.8947375 -1103.1182
+104405.2590675834 3.8946588 -1103.2366
+104406.2590676337 3.8947375 -1103.1378
+104407.2590676839 3.8946981 -1103.3156
+104408.2590677342 3.8947375 -1103.197
+104409.2590677845 3.8947375 -1103.197
+104410.2590678348 3.8947768 -1103.2761
+104411.2590678851 3.8946195 -1103.197
+104412.2590679354 3.8947768 -1103.197
+104413.2590679857 3.8946981 -1103.197
+104414.259068036 3.8946981 -1103.1774
+104415.2590680863 3.8946195 -1103.1182
+104416.2590681366 3.8946588 -1103.0588
+104417.2590681869 3.8945408 -1103.2562
+104418.2590682372 3.8945801 -1103.197
+104419.2590682874 3.8945801 -1103.2168
+104420.2590683377 3.8946588 -1103.2761
+104421.259068388 3.8944619 -1103.1576
+104422.2590684383 3.8945014 -1103.2761
+104423.2590684886 3.8945408 -1103.1576
+104424.2590685389 3.8945014 -1103.1576
+104425.2590685892 3.8944619 -1103.1774
+104426.2590686395 3.8943832 -1103.2168
+104427.2590686898 3.8944619 -1103.2761
+104428.2590687401 3.8944225 -1103.2761
+104429.2590687904 3.8945408 -1103.197
+104430.2590688406 3.8944225 -1103.1774
+104431.2590688909 3.8943832 -1103.197
+104432.2590689412 3.8943832 -1103.2366
+104433.2590689915 3.8943045 -1103.1576
+104434.2590690418 3.8943832 -1103.2168
+104435.2590690921 3.8944619 -1103.0785
+104436.2590691424 3.8944619 -1103.1576
+104437.2590691927 3.8943832 -1103.2366
+104438.259069243 3.8944225 -1103.1774
+104439.2590692933 3.8943045 -1103.1774
+104440.2590693436 3.8942652 -1103.3156
+104441.2590693939 3.8941865 -1103.2366
+104442.2590694441 3.8943832 -1103.2959
+104443.2590694944 3.8941865 -1103.2761
+104444.2590695447 3.8942652 -1103.1378
+104445.259069595 3.8942652 -1103.2168
+104446.2590696453 3.8941865 -1103.1774
+104447.2590696956 3.8941865 -1103.197
+104448.2590697459 3.8941865 -1103.2562
+104449.2590697962 3.8941469 -1103.2168
+104450.2590698465 3.8940289 -1103.2366
+104451.2590698968 3.8941469 -1103.197
+104452.2590699471 3.8941865 -1103.1774
+104453.2590699974 3.8941469 -1103.1774
+104454.2590700476 3.8941469 -1103.1576
+104455.2590700979 3.8941076 -1103.2366
+104456.2590701482 3.8940682 -1103.1378
+104457.2590701985 3.8940289 -1103.2168
+104458.2590702488 3.8940682 -1103.2168
+104459.2590702991 3.8940682 -1103.197
+104460.2590703494 3.8941076 -1103.197
+104461.2590703997 3.8941076 -1103.197
+104462.25907045 3.8940289 -1103.2168
+104463.2590705003 3.8940682 -1103.2562
+104464.2590705506 3.8939502 -1103.2168
+104465.2590706008 3.8939109 -1103.2959
+104466.2590706511 3.8939896 -1103.1774
+104467.2590707014 3.8938715 -1103.2562
+104468.2590707517 3.8939109 -1103.2168
+104469.259070802 3.8938715 -1103.197
+104470.2590708523 3.8939109 -1103.197
+104471.2590709026 3.8939502 -1103.1576
+104472.2590709529 3.893832 -1103.1576
+104473.2590710032 3.8939109 -1103.1774
+104474.2590710535 3.8937926 -1103.1378
+104475.2590711038 3.8938715 -1103.1774
+104476.2590711541 3.8937926 -1103.2562
+104477.2590712043 3.8937926 -1103.1576
+104478.2590712546 3.8938715 -1103.2562
+104479.2590713049 3.8937926 -1103.2366
+104480.2590713552 3.893714 -1103.2168
+104481.2590714055 3.8936746 -1103.1774
+104482.2590714558 3.8937926 -1103.197
+104483.2590715061 3.8936746 -1103.1576
+104484.2590715564 3.8937926 -1103.2366
+104485.2590716067 3.8936746 -1103.2366
+104486.259071657 3.8937533 -1103.2959
+104487.2590717073 3.893714 -1103.2366
+104488.2590717576 3.893714 -1103.2562
+104489.2590718078 3.893714 -1103.2761
+104490.2590718581 3.8936353 -1103.2761
+104491.2590719084 3.8936353 -1103.197
+104492.2590719587 3.8936746 -1103.2562
+104493.259072009 3.8936353 -1103.2562
+104494.2590720593 3.8936353 -1103.197
+104495.2590721096 3.8935959 -1103.2366
+104496.2590721599 3.893517 -1103.1774
+104497.2590722102 3.8935566 -1103.1182
+104498.2590722605 3.8935566 -1103.2366
+104499.2590723108 3.893517 -1103.2366
+104500.259072361 3.8934777 -1103.1774
+104501.2590724113 3.8934777 -1103.1576
+104502.2590724616 3.8934383 -1103.2168
+104503.2590725119 3.8935959 -1103.2168
+104504.2590725622 3.8934383 -1103.2168
+104505.2590726125 3.8934777 -1103.197
+104506.2590726628 3.893399 -1103.197
+104507.2590727131 3.8934383 -1103.2168
+104508.2590727634 3.8934777 -1103.1774
+104509.2590728137 3.8934777 -1103.2366
+104510.259072864 3.8934777 -1103.1774
+104511.2590729143 3.8933597 -1103.2168
+104512.2590729645 3.8933597 -1103.2562
+104513.2590730148 3.8933597 -1103.1576
+104514.2590730651 3.893399 -1103.1576
+104515.2590731154 3.893399 -1103.1774
+104516.2590731657 3.893399 -1103.197
+104517.259073216 3.893281 -1103.2562
+104518.2590732663 3.893281 -1103.1774
+104519.2590733166 3.8933597 -1103.2366
+104520.2590733669 3.8931627 -1103.197
+104521.2590734172 3.893281 -1103.2761
+104522.2590734675 3.8933203 -1103.1182
+104523.2590735178 3.8933203 -1103.2761
+104524.259073568 3.8932414 -1103.2761
+104525.2590736183 3.893084 -1103.2761
+104526.2590736686 3.8931234 -1103.1774
+104527.2590737189 3.893281 -1103.1378
+104528.2590737692 3.8932021 -1103.2959
+104529.2590738195 3.893281 -1103.2366
+104530.2590738698 3.8931234 -1103.1576
+104531.2590739201 3.893084 -1103.1774
+104532.2590739704 3.8931234 -1103.2168
+104533.2590740207 3.893084 -1103.1378
+104534.259074071 3.8931234 -1103.2761
+104535.2590741212 3.893084 -1103.1378
+104536.2590741715 3.893084 -1103.2959
+104537.2590742218 3.8930054 -1103.1182
+104538.2590742721 3.893084 -1103.197
+104539.2590743224 3.8930447 -1103.1774
+104540.2590743727 3.8930054 -1103.1378
+104541.259074423 3.8929265 -1103.1576
+104542.2590744733 3.8929265 -1103.2562
+104543.2590745236 3.8929265 -1103.1774
+104544.2590745739 3.892966 -1103.3551
+104545.2590746242 3.893084 -1103.2366
+104546.2590746745 3.8928871 -1103.2366
+104547.2590747247 3.893084 -1103.2761
+104548.259074775 3.892966 -1103.1774
+104549.2590748253 3.8928871 -1103.1182
+104550.2590748756 3.8928478 -1103.2761
+104551.2590749259 3.8928084 -1103.197
+104552.2590749762 3.8927298 -1103.197
+104553.2590750265 3.8928084 -1103.1182
+104554.2590750768 3.8927298 -1103.2366
+104555.2590751271 3.8928871 -1103.2168
+104556.2590751774 3.8928084 -1103.2562
+104557.2590752277 3.8928871 -1103.197
+104558.259075278 3.8928871 -1103.2761
+104559.2590753282 3.8926904 -1103.1774
+104560.2590753785 3.8926511 -1103.2168
+104561.2590754288 3.8927298 -1103.2761
+104562.2590754791 3.8926904 -1103.197
+104563.2590755294 3.8925722 -1103.2761
+104564.2590755797 3.8926904 -1103.2959
+104565.25907563 3.8926511 -1103.2761
+104566.2590756803 3.8926511 -1103.1774
+104567.2590757306 3.8926904 -1103.2366
+104568.2590757809 3.8926511 -1103.2168
+104569.2590758312 3.8925722 -1103.1774
+104570.2590758814 3.8926511 -1103.2366
+104571.2590759317 3.8926904 -1103.1774
+104572.259075982 3.8925328 -1103.2168
+104573.2590760323 3.8925722 -1103.2562
+104574.2590760826 3.8926115 -1103.2562
+104575.2590761329 3.8926115 -1103.2366
+104576.2590761832 3.8924541 -1103.2168
+104577.2590762335 3.8924935 -1103.3156
+104578.2590762838 3.8925722 -1103.1378
+104579.2590763341 3.8925328 -1103.0984
+104580.2590763844 3.8924935 -1103.2168
+104581.2590764347 3.8925328 -1103.2366
+104582.2590764849 3.8923755 -1103.2366
+104583.2590765352 3.8923755 -1103.2366
+104584.2590765855 3.8924148 -1103.197
+104585.2590766358 3.8924148 -1103.3156
+104586.2590766861 3.8924541 -1103.2562
+104587.2590767364 3.8924148 -1103.1378
+104588.2590767867 3.8923755 -1103.2168
+104589.259076837 3.8923755 -1103.2562
+104590.2590768873 3.8924935 -1103.2168
+104591.2590769376 3.8924148 -1103.1774
+104592.2590769879 3.8923755 -1103.3156
+104593.2590770382 3.8922572 -1103.1576
+104594.2590770884 3.8923361 -1103.1774
+104595.2590771387 3.8922966 -1103.197
+104596.259077189 3.8923361 -1103.1576
+104597.2590772393 3.8922572 -1103.2366
+104598.2590772896 3.8922966 -1103.2366
+104599.2590773399 3.8922966 -1103.2366
+104600.2590773902 3.8922966 -1103.1576
+104601.2590774405 3.8922179 -1103.0588
+104602.2590774908 3.8921392 -1103.1774
+104603.2590775411 3.8921392 -1103.197
+104604.2590775914 3.8922572 -1103.2562
+104605.2590776416 3.8922179 -1103.1576
+104606.2590776919 3.8921785 -1103.2562
+104607.2590777422 3.8921785 -1103.2959
+104608.2590777925 3.8920999 -1103.2366
+104609.2590778428 3.8920605 -1103.1774
+104610.2590778931 3.8920605 -1103.1576
+104611.2590779434 3.8920212 -1103.1576
+104612.2590779937 3.8920605 -1103.1774
+104613.259078044 3.8921392 -1103.2366
+104614.2590780943 3.8920605 -1103.2168
+104615.2590781446 3.8920605 -1103.2168
+104616.2590781949 3.8920605 -1103.2366
+104617.2590782451 3.8920999 -1103.197
+104618.2590782954 3.8919816 -1103.2959
+104619.2590783457 3.8919816 -1103.1774
+104620.259078396 3.8919816 -1103.2761
+104621.2590784463 3.8919816 -1103.1774
+104622.2590784966 3.8919423 -1103.2168
+104623.2590785469 3.8919423 -1103.197
+104624.2590785972 3.8918636 -1103.2168
+104625.2590786475 3.8919816 -1103.1576
+104626.2590786978 3.8919816 -1103.1378
+104627.2590787481 3.8919029 -1103.2168
+104628.2590787984 3.8919423 -1103.3551
+104629.2590788486 3.8919423 -1103.2168
+104630.2590788989 3.8917456 -1103.2366
+104631.2590789492 3.8918242 -1103.1576
+104632.2590789995 3.8918636 -1103.197
+104633.2590790498 3.8918636 -1103.0984
+104634.2590791001 3.8918242 -1103.1378
+104635.2590791504 3.8918242 -1103.2761
+104636.2590792007 3.8917062 -1103.1774
+104637.259079251 3.8918242 -1103.2959
+104638.2590793013 3.8917062 -1103.1182
+104639.2590793516 3.8917062 -1103.1378
+104640.2590794018 3.8917456 -1103.2366
+104641.2590794521 3.8917456 -1103.2562
+104642.2590795024 3.891588 -1103.2761
+104643.2590795527 3.8917062 -1103.1774
+104644.259079603 3.8916667 -1103.197
+104645.2590796533 3.8916273 -1103.1774
+104646.2590797036 3.8916273 -1103.2562
+104647.2590797539 3.8917062 -1103.197
+104648.2590798042 3.8917062 -1103.2761
+104649.2590798545 3.8915486 -1103.197
+104650.2590799048 3.8915093 -1103.2562
+104651.2590799551 3.891588 -1103.2168
+104652.2590800053 3.8915093 -1103.3156
+104653.2590800556 3.8915486 -1103.197
+104654.2590801059 3.8915486 -1103.1774
+104655.2590801562 3.8915486 -1103.1576
+104656.2590802065 3.8914306 -1103.3156
+104657.2590802568 3.8915093 -1103.1378
+104658.2590803071 3.89147 -1103.1774
+104659.2590803574 3.8914306 -1103.2761
+104660.2590804077 3.8915093 -1103.2761
+104661.259080458 3.8913517 -1103.1774
+104662.2590805083 3.8915486 -1103.2761
+104663.2590805586 3.8914306 -1103.1576
+104664.2590806088 3.8914306 -1103.1576
+104665.2590806591 3.8914306 -1103.3156
+104666.2590807094 3.8913517 -1103.2761
+104667.2590807597 3.8913124 -1103.1576
+104668.25908081 3.8913517 -1103.197
+104669.2590808603 3.891273 -1103.197
+104670.2590809106 3.8913124 -1103.3156
+104671.2590809609 3.8911943 -1103.197
+104672.2590810112 3.891155 -1103.2168
+104673.2590810615 3.8912337 -1103.197
+104674.2590811118 3.891273 -1103.2761
+104675.259081162 3.891273 -1103.1576
+104676.2590812123 3.891155 -1103.1774
+104677.2590812626 3.891391 -1103.2761
+104678.2590813129 3.8912337 -1103.2168
+104679.2590813632 3.8911943 -1103.2366
+104680.2590814135 3.8911943 -1103.2366
+104681.2590814638 3.891155 -1103.3156
+104682.2590815141 3.8912337 -1103.2168
+104683.2590815644 3.8910761 -1103.197
+104684.2590816147 3.891155 -1103.2959
+104685.259081665 3.8910367 -1103.2366
+104686.2590817153 3.8910761 -1103.1378
+104687.2590817655 3.8909974 -1103.2366
+104688.2590818158 3.8910761 -1103.2959
+104689.2590818661 3.8909974 -1103.197
+104690.2590819164 3.8909974 -1103.197
+104691.2590819667 3.8911157 -1103.1774
+104692.259082017 3.8910761 -1103.2168
+104693.2590820673 3.8910367 -1103.1774
+104694.2590821176 3.8909581 -1103.1774
+104695.2590821679 3.8909974 -1103.2562
+104696.2590822182 3.8910367 -1103.1774
+104697.2590822685 3.8909187 -1103.2168
+104698.2590823187 3.8910367 -1103.197
+104699.259082369 3.8909581 -1103.2168
+104700.2590824193 3.8909187 -1103.2366
+104701.2590824696 3.8908401 -1103.2959
+104702.2590825199 3.8908794 -1103.2168
+104703.2590825702 3.8909187 -1103.2761
+104704.2590826205 3.8908007 -1103.1774
+104705.2590826708 3.8908007 -1103.1182
+104706.2590827211 3.8908794 -1103.2562
+104707.2590827714 3.8908401 -1103.2959
+104708.2590828217 3.8907218 -1103.2761
+104709.259082872 3.8908794 -1103.2761
+104710.2590829222 3.8907218 -1103.2168
+104711.2590829725 3.8908007 -1103.1774
+104712.2590830228 3.8908401 -1103.197
+104713.2590830731 3.8908401 -1103.2959
+104714.2590831234 3.8907218 -1103.1182
+104715.2590831737 3.8908007 -1103.2959
+104716.259083224 3.8907218 -1103.197
+104717.2590832743 3.8906825 -1103.2168
+104718.2590833246 3.8907611 -1103.1774
+104719.2590833749 3.8906431 -1103.2168
+104720.2590834252 3.8906431 -1103.197
+104721.2590834755 3.8906431 -1103.197
+104722.2590835257 3.8905644 -1103.0984
+104723.259083576 3.8906038 -1103.1378
+104724.2590836263 3.8906431 -1103.2366
+104725.2590836766 3.8905644 -1103.1576
+104726.2590837269 3.8905644 -1103.2562
+104727.2590837772 3.8906038 -1103.0984
+104728.2590838275 3.8904462 -1103.1774
+104729.2590838778 3.8905251 -1103.2366
+104730.2590839281 3.8905251 -1103.2366
+104731.2590839784 3.8905644 -1103.197
+104732.2590840287 3.8905644 -1103.2959
+104733.2590840789 3.8904068 -1103.2366
+104734.2590841292 3.8904462 -1103.2366
+104735.2590841795 3.8903675 -1103.197
+104736.2590842298 3.8904462 -1103.2959
+104737.2590842801 3.8904858 -1103.2761
+104738.2590843304 3.8904858 -1103.197
+104739.2590843807 3.8904462 -1103.1576
+104740.259084431 3.8904068 -1103.197
+104741.2590844813 3.8903675 -1103.2168
+104742.2590845316 3.8903282 -1103.197
+104743.2590845819 3.8904068 -1103.1576
+104744.2590846322 3.8904858 -1103.2168
+104745.2590846824 3.8903675 -1103.2366
+104746.2590847327 3.8902888 -1103.1576
+104747.259084783 3.8902888 -1103.1576
+104748.2590848333 3.8902102 -1103.197
+104749.2590848836 3.8903282 -1103.2168
+104750.2590849339 3.8903282 -1103.197
+104751.2590849842 3.8902102 -1103.2761
+104752.2590850345 3.8902888 -1103.1774
+104753.2590850848 3.8901312 -1103.2562
+104754.2590851351 3.8902495 -1103.2562
+104755.2590851854 3.8902102 -1103.2168
+104756.2590852357 3.8902102 -1103.197
+104757.2590852859 3.8900919 -1103.197
+104758.2590853362 3.8902102 -1103.2366
+104759.2590853865 3.8901312 -1103.2366
+104760.2590854368 3.8901312 -1103.2168
+104761.2590854871 3.8900526 -1103.1774
+104762.2590855374 3.8900919 -1103.197
+104763.2590855877 3.8900526 -1103.2562
+104764.259085638 3.8901708 -1103.3156
+104765.2590856883 3.8900132 -1103.197
+104766.2590857386 3.8899739 -1103.2168
+104767.2590857889 3.8900526 -1103.197
+104768.2590858391 3.8900526 -1103.1576
+104769.2590858894 3.8899345 -1103.2366
+104770.2590859397 3.8899739 -1103.197
+104771.25908599 3.8900132 -1103.1774
+104772.2590860403 3.8898952 -1103.1774
+104773.2590860906 3.8899345 -1103.2562
+104774.2590861409 3.8899739 -1103.3156
+104775.2590861912 3.8898952 -1103.1576
+104776.2590862415 3.8899739 -1103.197
+104777.2590862918 3.8899345 -1103.1378
+104778.2590863421 3.8899345 -1103.0984
+104779.2590863924 3.8898559 -1103.2366
+104780.2590864426 3.8898559 -1103.2562
+104781.2590864929 3.8898163 -1103.2761
+104782.2590865432 3.8897376 -1103.2761
+104783.2590865935 3.8897769 -1103.197
+104784.2590866438 3.8897376 -1103.2959
+104785.2590866941 3.8897376 -1103.2168
+104786.2590867444 3.8897769 -1103.197
+104787.2590867947 3.8897376 -1103.2562
+104788.259086845 3.8898163 -1103.2562
+104789.2590868953 3.8896983 -1103.1774
+104790.2590869456 3.8897376 -1103.2366
+104791.2590869959 3.8896589 -1103.2168
+104792.2590870461 3.8897769 -1103.2366
+104793.2590870964 3.8897376 -1103.2366
+104794.2590871467 3.8896983 -1103.2761
+104795.259087197 3.8896983 -1103.2959
+104796.2590872473 3.8897769 -1103.197
+104797.2590872976 3.8896196 -1103.2562
+104798.2590873479 3.8896196 -1103.2959
+104799.2590873982 3.8896196 -1103.2366
+104800.2590874485 3.8896589 -1103.2366
+104801.2590874988 3.8895407 -1103.2562
+104802.2590875491 3.8895802 -1103.2562
+104803.2590875993 3.8895407 -1103.2959
+104804.2590876496 3.8896196 -1103.1378
+104805.2590876999 3.889462 -1103.197
+104806.2590877502 3.8895802 -1103.2168
+104807.2590878005 3.8895407 -1103.2366
+104808.2590878508 3.8895013 -1103.1774
+104809.2590879011 3.889462 -1103.1774
+104810.2590879514 3.8894227 -1103.2366
+104811.2590880017 3.8893833 -1103.2562
+104812.259088052 3.889344 -1103.2761
+104813.2590881023 3.8895407 -1103.197
+104814.2590881526 3.889344 -1103.2761
+104815.2590882028 3.889344 -1103.1576
+104816.2590882531 3.889462 -1103.1774
+104817.2590883034 3.8893833 -1103.2562
+104818.2590883537 3.889344 -1103.2168
+104819.259088404 3.889344 -1103.197
+104820.2590884543 3.889344 -1103.2366
+104821.2590885046 3.8892257 -1103.197
+104822.2590885549 3.8893046 -1103.1576
+104823.2590886052 3.889344 -1103.2562
+104824.2590886555 3.8893046 -1103.1774
+104825.2590887058 3.8891864 -1103.1774
+104826.2590887561 3.8892257 -1103.2562
+104827.2590888063 3.8892653 -1103.1378
+104828.2590888566 3.8892653 -1103.2168
+104829.2590889069 3.8891864 -1103.1378
+104830.2590889572 3.8891864 -1103.2761
+104831.2590890075 3.889147 -1103.2366
+104832.2590890578 3.8892257 -1103.2168
+104833.2590891081 3.8892257 -1103.2366
+104834.2590891584 3.8891864 -1103.2366
+104835.2590892087 3.889147 -1103.2168
+104836.259089259 3.8892257 -1103.1576
+104837.2590893093 3.8890684 -1103.2366
+104838.2590893595 3.8890684 -1103.1774
+104839.2590894098 3.8891077 -1103.2366
+104840.2590894601 3.8889897 -1103.197
+104841.2590895104 3.8890684 -1103.1774
+104842.2590895607 3.889029 -1103.2366
+104843.259089611 3.889029 -1103.2168
+104844.2590896613 3.8889897 -1103.1576
+104845.2590897116 3.8889897 -1103.3156
+104846.2590897619 3.8889503 -1103.1774
+104847.2590898122 3.8889503 -1103.2168
+104848.2590898625 3.889029 -1103.0785
+104849.2590899128 3.8889108 -1103.1576
+104850.259089963 3.8888321 -1103.2168
+104851.2590900133 3.8889503 -1103.1774
+104852.2590900636 3.8889897 -1103.197
+104853.2590901139 3.8889108 -1103.1774
+104854.2590901642 3.8887928 -1103.2366
+104855.2590902145 3.8889897 -1103.1378
+104856.2590902648 3.8887928 -1103.2562
+104857.2590903151 3.8887928 -1103.2168
+104858.2590903654 3.8888321 -1103.2366
+104859.2590904157 3.8888321 -1103.2366
+104860.259090466 3.8888321 -1103.2562
+104861.2590905163 3.8887141 -1103.1774
+104862.2590905665 3.8886747 -1103.2168
+104863.2590906168 3.8887534 -1103.2562
+104864.2590906671 3.8888321 -1103.1576
+104865.2590907174 3.8887141 -1103.2366
+104866.2590907677 3.8886747 -1103.2366
+104867.259090818 3.8886747 -1103.197
+104868.2590908683 3.8888321 -1103.1576
+104869.2590909186 3.8887141 -1103.197
+104870.2590909689 3.8885958 -1103.2761
+104871.2590910192 3.8886747 -1103.2168
+104872.2590910695 3.8885958 -1103.1378
+104873.2590911197 3.8885958 -1103.1182
+104874.25909117 3.8885565 -1103.2168
+104875.2590912203 3.8885958 -1103.2366
+104876.2590912706 3.8885958 -1103.2168
+104877.2590913209 3.8885171 -1103.1576
+104878.2590913712 3.8886354 -1103.2168
+104879.2590914215 3.8886354 -1103.1378
+104880.2590914718 3.8883991 -1103.1378
+104881.2590915221 3.8885171 -1103.1774
+104882.2590915724 3.8885171 -1103.2168
+104883.2590916227 3.8885565 -1103.197
+104884.259091673 3.8885958 -1103.2562
+104885.2590917232 3.8884778 -1103.2168
+104886.2590917735 3.8883991 -1103.2366
+104887.2590918238 3.8884778 -1103.2366
+104888.2590918741 3.8883991 -1103.2168
+104889.2590919244 3.8884778 -1103.2168
+104890.2590919747 3.8883598 -1103.2562
+104891.259092025 3.8883598 -1103.2168
+104892.2590920753 3.8883598 -1103.197
+104893.2590921256 3.8883598 -1103.2959
+104894.2590921759 3.8884385 -1103.197
+104895.2590922262 3.8883598 -1103.2366
+104896.2590922765 3.8883991 -1103.2366
+104897.2590923267 3.8882809 -1103.2562
+104898.259092377 3.8884385 -1103.2366
+104899.2590924273 3.8882415 -1103.1576
+104900.2590924776 3.8882415 -1103.1774
+104901.2590925279 3.8883991 -1103.197
+104902.2590925782 3.8882415 -1103.197
+104903.2590926285 3.8881629 -1103.2168
+104904.2590926788 3.8882415 -1103.2168
+104905.2590927291 3.8882415 -1103.197
+104906.2590927794 3.8882022 -1103.1378
+104907.2590928297 3.8882022 -1103.2366
+104908.2590928799 3.8881629 -1103.2168
+104909.2590929302 3.8882022 -1103.2366
+104910.2590929805 3.8881629 -1103.1774
+104911.2590930308 3.8881235 -1103.1182
+104912.2590930811 3.8881629 -1103.1774
+104913.2590931314 3.8880842 -1103.197
+104914.2590931817 3.8881629 -1103.2168
+104915.259093232 3.8881629 -1103.2168
+104916.2590932823 3.8881235 -1103.2168
+104917.2590933326 3.8881629 -1103.2168
+104918.2590933829 3.8880055 -1103.1774
+104919.2590934332 3.8881629 -1103.197
+104920.2590934834 3.8880055 -1103.197
+104921.2590935337 3.8880055 -1103.2168
+104922.259093584 3.8879266 -1103.2562
+104923.2590936343 3.8880448 -1103.1576
+104924.2590936846 3.8879659 -1103.2366
+104925.2590937349 3.8879659 -1103.1576
+104926.2590937852 3.8879659 -1103.1576
+104927.2590938355 3.8879659 -1103.2562
+104928.2590938858 3.8880055 -1103.1774
+104929.2590939361 3.8879659 -1103.1774
+104930.2590939864 3.8879659 -1103.1774
+104931.2590940367 3.8878479 -1103.1576
+104932.2590940869 3.8878479 -1103.2761
+104933.2590941372 3.8878872 -1103.2959
+104934.2590941875 3.8878872 -1103.2168
+104935.2590942378 3.8878872 -1103.2761
+104936.2590942881 3.8878086 -1103.1576
+104937.2590943384 3.8878479 -1103.2366
+104938.2590943887 3.8879659 -1103.2761
+104939.259094439 3.8878086 -1103.2168
+104940.2590944893 3.8878086 -1103.2366
+104941.2590945396 3.8876903 -1103.2366
+104942.2590945899 3.8877299 -1103.2168
+104943.2590946401 3.8876903 -1103.197
+104944.2590946904 3.887651 -1103.2168
+104945.2590947407 3.8876116 -1103.2959
+104946.259094791 3.8877692 -1103.197
+104947.2590948413 3.8876903 -1103.0984
+104948.2590948916 3.8877299 -1103.2366
+104949.2590949419 3.887651 -1103.2761
+104950.2590949922 3.8876903 -1103.2959
+104951.2590950425 3.8875723 -1103.2168
+104952.2590950928 3.8876116 -1103.2761
+104953.2590951431 3.8876116 -1103.2168
+104954.2590951934 3.8874936 -1103.1774
+104955.2590952436 3.8875329 -1103.1378
+104956.2590952939 3.8874936 -1103.2761
+104957.2590953442 3.8875329 -1103.2168
+104958.2590953945 3.8874936 -1103.2562
+104959.2590954448 3.8874543 -1103.1576
+104960.2590954951 3.8875329 -1103.2562
+104961.2590955454 3.8874936 -1103.2168
+104962.2590955957 3.8875329 -1103.2562
+104963.259095646 3.8874543 -1103.2562
+104964.2590956963 3.8874149 -1103.2366
+104965.2590957466 3.8874149 -1103.197
+104966.2590957969 3.8874543 -1103.2562
+104967.2590958471 3.887336 -1103.2168
+104968.2590958974 3.8873754 -1103.2168
+104969.2590959477 3.8872967 -1103.2168
+104970.259095998 3.8874936 -1103.1378
+104971.2590960483 3.8873754 -1103.1774
+104972.2590960986 3.8874149 -1103.2959
+104973.2590961489 3.8873754 -1103.197
+104974.2590961992 3.8872967 -1103.197
+104975.2590962495 3.8872967 -1103.1576
+104976.2590962998 3.8872573 -1103.2168
+104977.2590963501 3.8872573 -1103.1576
+104978.2590964003 3.887218 -1103.2562
+104979.2590964506 3.8872573 -1103.2761
+104980.2590965009 3.8871787 -1103.1774
+104981.2590965512 3.887218 -1103.1576
+104982.2590966015 3.8872573 -1103.1774
+104983.2590966518 3.887218 -1103.2366
+104984.2590967021 3.8871787 -1103.197
+104985.2590967524 3.8871787 -1103.197
+104986.2590968027 3.8871787 -1103.2366
+104987.259096853 3.8871393 -1103.2562
+104988.2590969033 3.8871 -1103.1576
+104989.2590969536 3.8871 -1103.197
+104990.2590970038 3.8871393 -1103.1774
+104991.2590970541 3.8871787 -1103.197
+104992.2590971044 3.8871 -1103.1576
+104993.2590971547 3.8871787 -1103.2562
+104994.259097205 3.8871393 -1103.197
+104995.2590972553 3.8871393 -1103.2366
+104996.2590973056 3.8870604 -1103.1576
+104997.2590973559 3.8870604 -1103.1774
+104998.2590974062 3.8869424 -1103.2168
+104999.2590974565 3.8869424 -1103.2761
+105000.2590975068 3.8870211 -1103.2168
+105001.259097557 3.8870211 -1103.197
+105002.2590976073 3.886903 -1103.2168
+105003.2590976576 3.8868637 -1103.197
+105004.2590977079 3.886903 -1103.2761
+105005.2590977582 3.886903 -1103.1576
+105006.2590978085 3.8868637 -1103.1774
+105007.2590978588 3.8868637 -1103.1774
+105008.2590979091 3.8867455 -1103.2562
+105009.2590979594 3.886903 -1103.2168
+105010.2590980097 3.886785 -1103.197
+105011.25909806 3.8868637 -1103.2761
+105012.2590981103 3.8868244 -1103.197
+105013.2590981605 3.8869424 -1103.2562
+105014.2590982108 3.8868637 -1103.2168
+105015.2590982611 3.8867455 -1103.2761
+105016.2590983114 3.8868244 -1103.197
+105017.2590983617 3.8867455 -1103.197
+105018.259098412 3.8867061 -1103.2761
+105019.2590984623 3.886785 -1103.2168
+105020.2590985126 3.8867455 -1103.2959
+105021.2590985629 3.8866668 -1103.197
+105022.2590986132 3.8867061 -1103.2366
+105023.2590986635 3.8866668 -1103.1576
+105024.2590987138 3.8867061 -1103.3156
+105025.259098764 3.8866274 -1103.2168
+105026.2590988143 3.8866668 -1103.1774
+105027.2590988646 3.8866274 -1103.2562
+105028.2590989149 3.8865881 -1103.197
+105029.2590989652 3.8866274 -1103.2168
+105030.2590990155 3.8865881 -1103.197
+105031.2590990658 3.8866668 -1103.2562
+105032.2590991161 3.8866668 -1103.1774
+105033.2590991664 3.8865094 -1103.2366
+105034.2590992167 3.8866668 -1103.1774
+105035.259099267 3.8865094 -1103.1378
+105036.2590993172 3.8865488 -1103.2761
+105037.2590993675 3.8865488 -1103.1774
+105038.2590994178 3.8865488 -1103.2761
+105039.2590994681 3.8865094 -1103.2366
+105040.2590995184 3.8865488 -1103.1576
+105041.2590995687 3.8864701 -1103.1774
+105042.259099619 3.8865094 -1103.2959
+105043.2590996693 3.8864305 -1103.2761
+105044.2590997196 3.8863912 -1103.2761
+105045.2590997699 3.8865094 -1103.2959
+105046.2590998202 3.8863912 -1103.197
+105047.2590998705 3.8863125 -1103.197
+105048.2590999207 3.8862731 -1103.2761
+105049.259099971 3.8862731 -1103.1182
+105050.2591000213 3.8863125 -1103.197
+105051.2591000716 3.8863518 -1103.2562
+105052.2591001219 3.8863912 -1103.2959
+105053.2591001722 3.8863518 -1103.2562
+105054.2591002225 3.8862731 -1103.1378
+105055.2591002728 3.8862731 -1103.1774
+105056.2591003231 3.8861945 -1103.2366
+105057.2591003734 3.8862338 -1103.1378
+105058.2591004237 3.8861945 -1103.2168
+105059.259100474 3.8862338 -1103.2168
+105060.2591005242 3.8861156 -1103.2562
+105061.2591005745 3.8861156 -1103.2366
+105062.2591006248 3.8862338 -1103.1774
+105063.2591006751 3.8862731 -1103.2168
+105064.2591007254 3.8862338 -1103.2168
+105065.2591007757 3.8860762 -1103.0984
+105066.259100826 3.8862338 -1103.197
+105067.2591008763 3.8861945 -1103.1576
+105068.2591009266 3.8860762 -1103.1576
+105069.2591009769 3.8861945 -1103.197
+105070.2591010272 3.8861156 -1103.197
+105071.2591010774 3.8861551 -1103.197
+105072.2591011277 3.8860369 -1103.2562
+105073.259101178 3.8860369 -1103.2562
+105074.2591012283 3.8861156 -1103.2562
+105075.2591012786 3.8858795 -1103.1576
+105076.2591013289 3.8860369 -1103.2168
+105077.2591013792 3.8860369 -1103.2168
+105078.2591014295 3.8859582 -1103.2562
+105079.2591014798 3.8859582 -1103.2168
+105080.2591015301 3.8858795 -1103.197
+105081.2591015804 3.8858399 -1103.2562
+105082.2591016307 3.8859975 -1103.2168
+105083.2591016809 3.8858399 -1103.197
+105084.2591017312 3.8859189 -1103.2562
+105085.2591017815 3.8858006 -1103.197
+105086.2591018318 3.8858795 -1103.197
+105087.2591018821 3.8858795 -1103.2562
+105088.2591019324 3.8858399 -1103.1774
+105089.2591019827 3.8858399 -1103.2168
+105090.259102033 3.8857613 -1103.2562
+105091.2591020833 3.8858399 -1103.197
+105092.2591021336 3.8858399 -1103.2168
+105093.2591021839 3.8858006 -1103.2168
+105094.2591022342 3.8857613 -1103.0785
+105095.2591022844 3.8858795 -1103.2366
+105096.2591023347 3.8856826 -1103.2761
+105097.259102385 3.8858006 -1103.2562
+105098.2591024353 3.8856432 -1103.1774
+105099.2591024856 3.8856826 -1103.2562
+105100.2591025359 3.8856826 -1103.1774
+105101.2591025862 3.8857613 -1103.197
+105102.2591026365 3.8856432 -1103.1774
+105103.2591026868 3.8856432 -1103.2366
+105104.2591027371 3.8856039 -1103.2562
+105105.2591027874 3.8857219 -1103.2761
+105106.2591028376 3.8857219 -1103.1774
+105107.2591028879 3.8856432 -1103.2562
+105108.2591029382 3.885525 -1103.2959
+105109.2591029885 3.885525 -1103.1378
+105110.2591030388 3.8856039 -1103.2761
+105111.2591030891 3.8855646 -1103.2366
+105112.2591031394 3.8856039 -1103.1774
+105113.2591031897 3.885525 -1103.2168
+105114.25910324 3.885525 -1103.1378
+105115.2591032903 3.885525 -1103.1774
+105116.2591033406 3.8854463 -1103.1576
+105117.2591033909 3.8854856 -1103.3156
+105118.2591034411 3.8854463 -1103.197
+105119.2591034914 3.8855646 -1103.2562
+105120.2591035417 3.8853676 -1103.197
+105121.259103592 3.8854463 -1103.1576
+105122.2591036423 3.885289 -1103.1378
+105123.2591036926 3.8854856 -1103.1378
+105124.2591037429 3.8853676 -1103.1182
+105125.2591037932 3.8853283 -1103.2562
+105126.2591038435 3.885289 -1103.1774
+105127.2591038938 3.8853283 -1103.2168
+105128.2591039441 3.8853676 -1103.1378
+105129.2591039944 3.885407 -1103.1774
+105130.2591040446 3.8853283 -1103.197
+105131.2591040949 3.8853283 -1103.197
+105132.2591041452 3.8852496 -1103.2168
+105133.2591041955 3.88521 -1103.2562
+105134.2591042458 3.8852496 -1103.2562
+105135.2591042961 3.885289 -1103.2168
+105136.2591043464 3.8852496 -1103.0984
+105137.2591043967 3.8851314 -1103.1378
+105138.259104447 3.8851314 -1103.1774
+105139.2591044973 3.88521 -1103.1774
+105140.2591045476 3.8851707 -1103.2168
+105141.2591045978 3.8851314 -1103.2761
+105142.2591046481 3.8851707 -1103.1576
+105143.2591046984 3.8851314 -1103.197
+105144.2591047487 3.8851707 -1103.1576
+105145.259104799 3.885092 -1103.2562
+105146.2591048493 3.885092 -1103.2168
+105147.2591048996 3.885092 -1103.2168
+105148.2591049499 3.885092 -1103.2562
+105149.2591050002 3.885092 -1103.1378
+105150.2591050505 3.884974 -1103.197
+105151.2591051008 3.8850527 -1103.2168
+105152.2591051511 3.884974 -1103.1182
+105153.2591052013 3.8850133 -1103.2959
+105154.2591052516 3.8850527 -1103.1774
+105155.2591053019 3.8849347 -1103.2168
+105156.2591053522 3.8849347 -1103.2761
+105157.2591054025 3.8849347 -1103.197
+105158.2591054528 3.8850527 -1103.1774
+105159.2591055031 3.884974 -1103.2366
+105160.2591055534 3.8849347 -1103.1576
+105161.2591056037 3.8848557 -1103.2168
+105162.259105654 3.8849347 -1103.2168
+105163.2591057043 3.8848951 -1103.197
+105164.2591057546 3.8848557 -1103.2366
+105165.2591058048 3.8848557 -1103.2366
+105166.2591058551 3.8848164 -1103.2168
+105167.2591059054 3.8847771 -1103.1774
+105168.2591059557 3.8848951 -1103.2168
+105169.259106006 3.8847771 -1103.1182
+105170.2591060563 3.8847771 -1103.2761
+105171.2591061066 3.8848164 -1103.1774
+105172.2591061569 3.8846984 -1103.2168
+105173.2591062072 3.8847377 -1103.2366
+105174.2591062575 3.8846984 -1103.1576
+105175.2591063078 3.8846984 -1103.2562
+105176.259106358 3.8847377 -1103.1774
+105177.2591064083 3.8846591 -1103.2562
+105178.2591064586 3.8847377 -1103.2168
+105179.2591065089 3.8846197 -1103.1774
+105180.2591065592 3.8846197 -1103.2959
+105181.2591066095 3.8845801 -1103.1774
+105182.2591066598 3.8846197 -1103.197
+105183.2591067101 3.8846591 -1103.2959
+105184.2591067604 3.8846591 -1103.2562
+105185.2591068107 3.8845801 -1103.1576
+105186.259106861 3.8845015 -1103.2366
+105187.2591069113 3.8845801 -1103.2959
+105188.2591069615 3.8845801 -1103.1774
+105189.2591070118 3.8845408 -1103.2168
+105190.2591070621 3.8845408 -1103.2168
+105191.2591071124 3.8845015 -1103.2366
+105192.2591071627 3.8845408 -1103.2366
+105193.259107213 3.8845015 -1103.197
+105194.2591072633 3.8844228 -1103.2761
+105195.2591073136 3.8843834 -1103.2761
+105196.2591073639 3.8844621 -1103.2168
+105197.2591074142 3.8844228 -1103.2366
+105198.2591074645 3.8842652 -1103.2366
+105199.2591075148 3.8843834 -1103.197
+105200.259107565 3.8843834 -1103.0785
+105201.2591076153 3.8843834 -1103.2168
+105202.2591076656 3.8843045 -1103.1774
+105203.2591077159 3.8843441 -1103.2366
+105204.2591077662 3.8843045 -1103.2562
+105205.2591078165 3.8843441 -1103.197
+105206.2591078668 3.8843441 -1103.197
+105207.2591079171 3.8843045 -1103.2366
+105208.2591079674 3.8843441 -1103.197
+105209.2591080177 3.8842652 -1103.1378
+105210.259108068 3.8843045 -1103.197
+105211.2591081182 3.8842258 -1103.197
+105212.2591081685 3.8841865 -1103.1576
+105213.2591082188 3.8841472 -1103.2761
+105214.2591082691 3.8841472 -1103.2562
+105215.2591083194 3.8841865 -1103.2562
+105216.2591083697 3.8841472 -1103.2168
+105217.25910842 3.8841078 -1103.2168
+105218.2591084703 3.8840685 -1103.197
+105219.2591085206 3.8841078 -1103.1576
+105220.2591085709 3.8841472 -1103.2168
+105221.2591086212 3.8840685 -1103.2366
+105222.2591086715 3.8841078 -1103.2562
+105223.2591087217 3.8840292 -1103.2761
+105224.259108772 3.8840685 -1103.2366
+105225.2591088223 3.8840685 -1103.1774
+105226.2591088726 3.8840292 -1103.2761
+105227.2591089229 3.8840685 -1103.197
+105228.2591089732 3.8839896 -1103.1774
+105229.2591090235 3.8840292 -1103.2562
+105230.2591090738 3.8839502 -1103.2761
+105231.2591091241 3.8840292 -1103.2366
+105232.2591091744 3.8839109 -1103.1774
+105233.2591092247 3.8839109 -1103.2366
+105234.259109275 3.8839502 -1103.2366
+105235.2591093252 3.8838716 -1103.2761
+105236.2591093755 3.8839502 -1103.2168
+105237.2591094258 3.8839502 -1103.197
+105238.2591094761 3.8838322 -1103.2562
+105239.2591095264 3.8837535 -1103.2168
+105240.2591095767 3.8838716 -1103.2168
+105241.259109627 3.8839109 -1103.2168
+105242.2591096773 3.8838322 -1103.197
+105243.2591097276 3.8838716 -1103.2168
+105244.2591097779 3.8837929 -1103.2168
+105245.2591098282 3.8838322 -1103.197
+105246.2591098784 3.8837535 -1103.197
+105247.2591099287 3.8836746 -1103.2761
+105248.259109979 3.8837535 -1103.2959
+105249.2591100293 3.8837535 -1103.197
+105250.2591100796 3.8837929 -1103.2366
+105251.2591101299 3.8837142 -1103.2562
+105252.2591101802 3.8836746 -1103.1774
+105253.2591102305 3.8835566 -1103.2168
+105254.2591102808 3.8835566 -1103.2366
+105255.2591103311 3.8835959 -1103.2366
+105256.2591103814 3.8836746 -1103.1378
+105257.2591104317 3.8835566 -1103.1774
+105258.2591104819 3.8836353 -1103.2761
+105259.2591105322 3.8835959 -1103.1576
+105260.2591105825 3.8835566 -1103.2366
+105261.2591106328 3.8835566 -1103.1378
+105262.2591106831 3.8835566 -1103.3156
+105263.2591107334 3.8837142 -1103.2366
+105264.2591107837 3.8834386 -1103.197
+105265.259110834 3.8835566 -1103.2168
+105266.2591108843 3.8834779 -1103.1774
+105267.2591109346 3.8835173 -1103.2562
+105268.2591109849 3.8834779 -1103.2366
+105269.2591110352 3.8835566 -1103.197
+105270.2591110854 3.8834779 -1103.1378
+105271.2591111357 3.8833597 -1103.2761
+105272.259111186 3.8833597 -1103.2366
+105273.2591112363 3.8834386 -1103.2562
+105274.2591112866 3.8833597 -1103.3156
+105275.2591113369 3.8833597 -1103.2168
+105276.2591113872 3.8833992 -1103.2562
+105277.2591114375 3.8834386 -1103.2761
+105278.2591114878 3.8833597 -1103.2366
+105279.2591115381 3.8833597 -1103.2366
+105280.2591115884 3.8833597 -1103.2959
+105281.2591116386 3.883281 -1103.2168
+105282.2591116889 3.8833992 -1103.1182
+105283.2591117392 3.8833597 -1103.2366
+105284.2591117895 3.8833597 -1103.2366
+105285.2591118398 3.8832023 -1103.197
+105286.2591118901 3.8832023 -1103.1378
+105287.2591119404 3.883163 -1103.2168
+105288.2591119907 3.8831236 -1103.1774
+105289.259112041 3.8832417 -1103.1774
+105290.2591120913 3.8832023 -1103.2366
+105291.2591121416 3.883281 -1103.2366
+105292.2591121919 3.883281 -1103.2366
+105293.2591122421 3.8832023 -1103.197
+105294.2591122924 3.8832023 -1103.1774
+105295.2591123427 3.883163 -1103.2168
+105296.259112393 3.883163 -1103.2366
+105297.2591124433 3.8830447 -1103.1774
+105298.2591124936 3.8830054 -1103.197
+105299.2591125439 3.8830843 -1103.1576
+105300.2591125942 3.882966 -1103.1378
+105301.2591126445 3.8830054 -1103.2366
+105302.2591126948 3.8830054 -1103.2366
+105303.2591127451 3.8830447 -1103.197
+105304.2591127953 3.8830054 -1103.2168
+105305.2591128456 3.882966 -1103.1774
+105306.2591128959 3.8830447 -1103.2761
+105307.2591129462 3.882848 -1103.2761
+105308.2591129965 3.882966 -1103.2168
+105309.2591130468 3.8830447 -1103.0984
+105310.2591130971 3.8828087 -1103.1774
+105311.2591131474 3.8828874 -1103.1182
+105312.2591131977 3.8829267 -1103.2168
+105313.259113248 3.882848 -1103.2761
+105314.2591132983 3.8827693 -1103.1576
+105315.2591133486 3.8828874 -1103.2168
+105316.2591133988 3.8829267 -1103.197
+105317.2591134491 3.8828874 -1103.2366
+105318.2591134994 3.8828874 -1103.2168
+105319.2591135497 3.8828087 -1103.3551
+105320.2591136 3.8828874 -1103.1576
+105321.2591136503 3.882848 -1103.2168
+105322.2591137006 3.882848 -1103.1378
+105323.2591137509 3.8826904 -1103.2168
+105324.2591138012 3.8827693 -1103.0391
+105325.2591138515 3.8826904 -1103.1182
+105326.2591139018 3.8828087 -1103.197
+105327.2591139521 3.8827693 -1103.2562
+105328.2591140023 3.8826904 -1103.1182
+105329.2591140526 3.8826511 -1103.2168
+105330.2591141029 3.8826118 -1103.3353
+105331.2591141532 3.8825724 -1103.1774
+105332.2591142035 3.8826511 -1103.3551
+105333.2591142538 3.8824937 -1103.2562
+105334.2591143041 3.8826118 -1103.1576
+105335.2591143544 3.8825724 -1103.197
+105336.2591144047 3.8826118 -1103.2366
+105337.259114455 3.8824937 -1103.1378
+105338.2591145053 3.8825331 -1103.2168
+105339.2591145555 3.8825724 -1103.2959
+105340.2591146058 3.8824937 -1103.1774
+105341.2591146561 3.8823755 -1103.1774
+105342.2591147064 3.8824542 -1103.1576
+105343.2591147567 3.8825724 -1103.197
+105344.259114807 3.8824542 -1103.2761
+105345.2591148573 3.8824937 -1103.2366
+105346.2591149076 3.8824542 -1103.1774
+105347.2591149579 3.8824148 -1103.1576
+105348.2591150082 3.8824148 -1103.1774
+105349.2591150585 3.8823755 -1103.197
+105350.2591151088 3.8824542 -1103.1774
+105351.259115159 3.8824148 -1103.1182
+105352.2591152093 3.8824542 -1103.2562
+105353.2591152596 3.8823755 -1103.2168
+105354.2591153099 3.8822968 -1103.2168
+105355.2591153602 3.8823755 -1103.2562
+105356.2591154105 3.8822968 -1103.2366
+105357.2591154608 3.8822575 -1103.2168
+105358.2591155111 3.8822968 -1103.1378
+105359.2591155614 3.8822181 -1103.2366
+105360.2591156117 3.8821788 -1103.1774
+105361.259115662 3.8822575 -1103.2168
+105362.2591157123 3.8821788 -1103.2366
+105363.2591157625 3.8822575 -1103.197
+105364.2591158128 3.8821392 -1103.2761
+105365.2591158631 3.8821788 -1103.2168
+105366.2591159134 3.8822181 -1103.1774
+105367.2591159637 3.8821788 -1103.2168
+105368.259116014 3.8820605 -1103.197
+105369.2591160643 3.8821392 -1103.2761
+105370.2591161146 3.8822575 -1103.2168
+105371.2591161649 3.8820999 -1103.2168
+105372.2591162152 3.8821392 -1103.2761
+105373.2591162655 3.8820605 -1103.2168
+105374.2591163157 3.8820999 -1103.2761
+105375.259116366 3.8820605 -1103.1576
+105376.2591164163 3.8820212 -1103.1576
+105377.2591164666 3.8819818 -1103.1774
+105378.2591165169 3.8820605 -1103.2168
+105379.2591165672 3.8819425 -1103.197
+105380.2591166175 3.8820605 -1103.2959
+105381.2591166678 3.8819818 -1103.2168
+105382.2591167181 3.8819818 -1103.197
+105383.2591167684 3.8819032 -1103.2562
+105384.2591168187 3.8820212 -1103.2366
+105385.259116869 3.8818243 -1103.1576
+105386.2591169192 3.8819425 -1103.2366
+105387.2591169695 3.8818638 -1103.2959
+105388.2591170198 3.8818243 -1103.2168
+105389.2591170701 3.8818638 -1103.2562
+105390.2591171204 3.8818243 -1103.2366
+105391.2591171707 3.8817062 -1103.197
+105392.259117221 3.8817849 -1103.2168
+105393.2591172713 3.8818243 -1103.2168
+105394.2591173216 3.8817849 -1103.2562
+105395.2591173719 3.8817062 -1103.2168
+105396.2591174222 3.8817456 -1103.1774
+105397.2591174725 3.8817456 -1103.197
+105398.2591175227 3.8816669 -1103.1576
+105399.259117573 3.8816669 -1103.2562
+105400.2591176233 3.8817456 -1103.2366
+105401.2591176736 3.8817849 -1103.2168
+105402.2591177239 3.8818243 -1103.1576
+105403.2591177742 3.8816669 -1103.1576
+105404.2591178245 3.8817062 -1103.2168
+105405.2591178748 3.8816276 -1103.197
+105406.2591179251 3.8816276 -1103.1378
+105407.2591179754 3.8816669 -1103.1576
+105408.2591180257 3.8815882 -1103.2168
+105409.2591180759 3.8815489 -1103.2366
+105410.2591181262 3.8815489 -1103.2761
+105411.2591181765 3.8816669 -1103.1774
+105412.2591182268 3.8815093 -1103.197
+105413.2591182771 3.88147 -1103.2168
+105414.2591183274 3.8816669 -1103.2562
+105415.2591183777 3.8814306 -1103.1576
+105416.259118428 3.88147 -1103.2366
+105417.2591184783 3.88147 -1103.2366
+105418.2591185286 3.8813913 -1103.197
+105419.2591185789 3.88147 -1103.1378
+105420.2591186292 3.88147 -1103.197
+105421.2591186794 3.8814306 -1103.2366
+105422.2591187297 3.8813519 -1103.197
+105423.25911878 3.8813126 -1103.2366
+105424.2591188303 3.8813913 -1103.2168
+105425.2591188806 3.88147 -1103.197
+105426.2591189309 3.8813913 -1103.2168
+105427.2591189812 3.8813126 -1103.3353
+105428.2591190315 3.8812733 -1103.2761
+105429.2591190818 3.8814306 -1103.2761
+105430.2591191321 3.8812733 -1103.2366
+105431.2591191824 3.8812733 -1103.2168
+105432.2591192327 3.8812733 -1103.1378
+105433.2591192829 3.8812339 -1103.197
+105434.2591193332 3.8812733 -1103.2562
+105435.2591193835 3.8812733 -1103.3353
+105436.2591194338 3.8812733 -1103.1774
+105437.2591194841 3.8811157 -1103.2761
+105438.2591195344 3.881155 -1103.1182
+105439.2591195847 3.8811944 -1103.2168
+105440.259119635 3.8811157 -1103.1576
+105441.2591196853 3.881155 -1103.2761
+105442.2591197356 3.881037 -1103.197
+105443.2591197859 3.8809977 -1103.2761
+105444.2591198361 3.8811944 -1103.1774
+105445.2591198864 3.8809977 -1103.2761
+105446.2591199367 3.8810763 -1103.1774
+105447.259119987 3.881037 -1103.2562
+105448.2591200373 3.8809977 -1103.2562
+105449.2591200876 3.881037 -1103.1576
+105450.2591201379 3.881037 -1103.2366
+105451.2591201882 3.881037 -1103.2366
+105452.2591202385 3.880919 -1103.1378
+105453.2591202888 3.8809583 -1103.2761
+105454.2591203391 3.8809583 -1103.1378
+105455.2591203894 3.8808794 -1103.2168
+105456.2591204396 3.880919 -1103.197
+105457.2591204899 3.8809583 -1103.2168
+105458.2591205402 3.8809583 -1103.2366
+105459.2591205905 3.8808794 -1103.2168
+105460.2591206408 3.880919 -1103.1774
+105461.2591206911 3.8808007 -1103.2168
+105462.2591207414 3.880919 -1103.1182
+105463.2591207917 3.8808007 -1103.1774
+105464.259120842 3.8808007 -1103.2562
+105465.2591208923 3.8808794 -1103.1378
+105466.2591209426 3.8808794 -1103.2562
+105467.2591209929 3.8807614 -1103.2366
+105468.2591210431 3.880722 -1103.1378
+105469.2591210934 3.8808401 -1103.2562
+105470.2591211437 3.8806827 -1103.2168
+105471.259121194 3.8808007 -1103.2366
+105472.2591212443 3.8807614 -1103.2366
+105473.2591212946 3.8806827 -1103.2366
+105474.2591213449 3.8806827 -1103.1378
+105475.2591213952 3.8806827 -1103.2168
+105476.2591214455 3.8806038 -1103.1182
+105477.2591214958 3.8806434 -1103.2761
+105478.2591215461 3.8805645 -1103.1182
+105479.2591215963 3.8806827 -1103.1774
+105480.2591216466 3.8806038 -1103.197
+105481.2591216969 3.8806038 -1103.197
+105482.2591217472 3.8806434 -1103.1576
+105483.2591217975 3.8804858 -1103.197
+105484.2591218478 3.8806038 -1103.2562
+105485.2591218981 3.8804858 -1103.197
+105486.2591219484 3.8805251 -1103.1576
+105487.2591219987 3.8805251 -1103.2168
+105488.259122049 3.8806038 -1103.1774
+105489.2591220993 3.8805251 -1103.2366
+105490.2591221496 3.8804858 -1103.197
+105491.2591221998 3.8804858 -1103.2366
+105492.2591222501 3.8804464 -1103.1774
+105493.2591223004 3.8805645 -1103.197
+105494.2591223507 3.8804464 -1103.2168
+105495.259122401 3.8804464 -1103.2562
+105496.2591224513 3.8804071 -1103.2168
+105497.2591225016 3.8803678 -1103.1774
+105498.2591225519 3.8804071 -1103.1774
+105499.2591226022 3.8803284 -1103.1774
+105500.2591226525 3.8803284 -1103.1774
+105501.2591227028 3.8803284 -1103.1774
+105502.2591227531 3.8803284 -1103.1576
+105503.2591228033 3.8802888 -1103.2366
+105504.2591228536 3.8802495 -1103.2959
+105505.2591229039 3.8802102 -1103.2168
+105506.2591229542 3.8802495 -1103.2562
+105507.2591230045 3.8802888 -1103.2562
+105508.2591230548 3.8802102 -1103.197
+105509.2591231051 3.8802102 -1103.2168
+105510.2591231554 3.8802888 -1103.1576
+105511.2591232057 3.8802495 -1103.2168
+105512.259123256 3.8801708 -1103.1378
+105513.2591233063 3.8802102 -1103.2761
+105514.2591233565 3.8801708 -1103.2761
+105515.2591234068 3.8801708 -1103.3156
+105516.2591234571 3.8800921 -1103.1576
+105517.2591235074 3.8800528 -1103.197
+105518.2591235577 3.8801315 -1103.2366
+105519.259123608 3.8801708 -1103.1378
+105520.2591236583 3.8800528 -1103.2761
+105521.2591237086 3.8800921 -1103.2366
+105522.2591237589 3.8800528 -1103.2168
+105523.2591238092 3.8800921 -1103.1576
+105524.2591238595 3.8800135 -1103.1576
+105525.2591239098 3.8800921 -1103.1774
+105526.25912396 3.8799739 -1103.2366
+105527.2591240103 3.8799345 -1103.2959
+105528.2591240606 3.8799739 -1103.2562
+105529.2591241109 3.8798559 -1103.2761
+105530.2591241612 3.8799345 -1103.2562
+105531.2591242115 3.8799739 -1103.197
+105532.2591242618 3.8799739 -1103.1576
+105533.2591243121 3.8798952 -1103.1774
+105534.2591243624 3.8798952 -1103.2366
+105535.2591244127 3.8798559 -1103.1182
+105536.259124463 3.8797379 -1103.3353
+105537.2591245133 3.8798165 -1103.2959
+105538.2591245635 3.8798559 -1103.197
+105539.2591246138 3.8797772 -1103.1576
+105540.2591246641 3.8798952 -1103.2562
+105541.2591247144 3.8797772 -1103.2562
+105542.2591247647 3.8797772 -1103.2761
+105543.259124815 3.8797379 -1103.2562
+105544.2591248653 3.8797772 -1103.197
+105545.2591249156 3.8796589 -1103.3156
+105546.2591249659 3.8796985 -1103.1576
+105547.2591250162 3.8797379 -1103.2168
+105548.2591250665 3.8797379 -1103.1774
+105549.2591251167 3.8796589 -1103.197
+105550.259125167 3.8796589 -1103.197
+105551.2591252173 3.8796196 -1103.2168
+105552.2591252676 3.8796985 -1103.1774
+105553.2591253179 3.8795409 -1103.2562
+105554.2591253682 3.8797379 -1103.2168
+105555.2591254185 3.8795803 -1103.197
+105556.2591254688 3.8795409 -1103.2168
+105557.2591255191 3.8795409 -1103.3156
+105558.2591255694 3.8795803 -1103.197
+105559.2591256197 3.8795409 -1103.2168
+105560.25912567 3.8795409 -1103.2562
+105561.2591257202 3.8795409 -1103.2168
+105562.2591257705 3.8793836 -1103.1576
+105563.2591258208 3.8795016 -1103.1576
+105564.2591258711 3.8795016 -1103.2366
+105565.2591259214 3.8794622 -1103.2366
+105566.2591259717 3.8795016 -1103.2366
+105567.259126022 3.8794229 -1103.1774
+105568.2591260723 3.8793836 -1103.2562
+105569.2591261226 3.8793836 -1103.2168
+105570.2591261729 3.8794622 -1103.2168
+105571.2591262232 3.8794229 -1103.2366
+105572.2591262735 3.8793046 -1103.3156
+105573.2591263237 3.8793836 -1103.1576
+105574.259126374 3.879344 -1103.1774
+105575.2591264243 3.879344 -1103.0785
+105576.2591264746 3.8793046 -1103.197
+105577.2591265249 3.8793046 -1103.2761
+105578.2591265752 3.8793836 -1103.2168
+105579.2591266255 3.879226 -1103.197
+105580.2591266758 3.8793836 -1103.1774
+105581.2591267261 3.8792653 -1103.2562
+105582.2591267764 3.879226 -1103.2366
+105583.2591268267 3.8791866 -1103.2562
+105584.2591268769 3.8791473 -1103.2366
+105585.2591269272 3.879108 -1103.2761
+105586.2591269775 3.8791866 -1103.197
+105587.2591270278 3.8791866 -1103.1774
+105588.2591270781 3.8791473 -1103.1182
+105589.2591271284 3.879108 -1103.2168
+105590.2591271787 3.879108 -1103.1182
+105591.259127229 3.8790686 -1103.1774
+105592.2591272793 3.879029 -1103.2761
+105593.2591273296 3.879029 -1103.1576
+105594.2591273799 3.8791473 -1103.2366
+105595.2591274302 3.879108 -1103.1378
+105596.2591274804 3.8789897 -1103.2168
+105597.2591275307 3.8789897 -1103.197
+105598.259127581 3.8789504 -1103.2366
+105599.2591276313 3.879029 -1103.197
+105600.2591276816 3.8789504 -1103.2959
+105601.2591277319 3.879029 -1103.197
+105602.2591277822 3.8789897 -1103.197
+105603.2591278325 3.8789897 -1103.2366
+105604.2591278828 3.8789897 -1103.2168
+105605.2591279331 3.879029 -1103.197
+105606.2591279834 3.8788717 -1103.2366
+105607.2591280336 3.878911 -1103.2959
+105608.2591280839 3.8788323 -1103.197
+105609.2591281342 3.878911 -1103.3156
+105610.2591281845 3.8789504 -1103.2959
+105611.2591282348 3.8788717 -1103.1774
+105612.2591282851 3.878793 -1103.1774
+105613.2591283354 3.878793 -1103.2366
+105614.2591283857 3.8787141 -1103.1774
+105615.259128436 3.8785567 -1103.2168
+105616.2591284863 3.878793 -1103.2168
+105617.2591285366 3.878793 -1103.197
+105618.2591285869 3.8785961 -1103.2366
+105619.2591286371 3.878793 -1103.197
+105620.2591286874 3.8786354 -1103.2562
+105621.2591287377 3.8787141 -1103.1774
+105622.259128788 3.878793 -1103.1576
+105623.2591288383 3.8787534 -1103.2168
+105624.2591288886 3.8785567 -1103.2168
+105625.2591289389 3.8785961 -1103.2168
+105626.2591289892 3.8786354 -1103.1576
+105627.2591290395 3.8786354 -1103.197
+105628.2591290898 3.8786354 -1103.2366
+105629.2591291401 3.8785961 -1103.197
+105630.2591291904 3.8785567 -1103.2168
+105631.2591292406 3.8785961 -1103.1378
+105632.2591292909 3.8785567 -1103.2959
+105633.2591293412 3.8784781 -1103.1378
+105634.2591293915 3.8785174 -1103.1378
+105635.2591294418 3.8784385 -1103.2366
+105636.2591294921 3.8784781 -1103.2562
+105637.2591295424 3.8783991 -1103.2959
+105638.2591295927 3.8784385 -1103.197
+105639.259129643 3.8785174 -1103.2761
+105640.2591296933 3.8784385 -1103.2562
+105641.2591297436 3.8784781 -1103.1576
+105642.2591297938 3.8783991 -1103.1182
+105643.2591298441 3.8783991 -1103.2168
+105644.2591298944 3.8783991 -1103.1774
+105645.2591299447 3.8783205 -1103.197
+105646.259129995 3.8783598 -1103.2168
+105647.2591300453 3.8783598 -1103.2366
+105648.2591300956 3.8782811 -1103.1774
+105649.2591301459 3.8783205 -1103.1774
+105650.2591301962 3.8783205 -1103.2562
+105651.2591302465 3.8782418 -1103.197
+105652.2591302968 3.8782418 -1103.2761
+105653.2591303471 3.8783205 -1103.197
+105654.2591303973 3.8782811 -1103.2366
+105655.2591304476 3.8782418 -1103.2168
+105656.2591304979 3.8781631 -1103.2366
+105657.2591305482 3.8781631 -1103.1576
+105658.2591305985 3.8782024 -1103.2562
+105659.2591306488 3.8781235 -1103.2761
+105660.2591306991 3.8782024 -1103.197
+105661.2591307494 3.8780448 -1103.197
+105662.2591307997 3.8781235 -1103.2366
+105663.25913085 3.8781235 -1103.197
+105664.2591309003 3.8781235 -1103.1774
+105665.2591309506 3.8780448 -1103.2168
+105666.2591310008 3.8780448 -1103.1182
+105667.2591310511 3.8780448 -1103.1774
+105668.2591311014 3.8780055 -1103.2168
+105669.2591311517 3.8780055 -1103.1182
+105670.259131202 3.8778875 -1103.2168
+105671.2591312523 3.8778481 -1103.2761
+105672.2591313026 3.8779662 -1103.197
+105673.2591313529 3.8779662 -1103.2168
+105674.2591314032 3.8778875 -1103.2168
+105675.2591314535 3.8778875 -1103.1378
+105676.2591315038 3.8779268 -1103.1576
+105677.259131554 3.8779662 -1103.1576
+105678.2591316043 3.8778875 -1103.2761
+105679.2591316546 3.8780055 -1103.197
+105680.2591317049 3.8778086 -1103.1774
+105681.2591317552 3.8778875 -1103.2168
+105682.2591318055 3.8777299 -1103.0391
+105683.2591318558 3.8778086 -1103.2562
+105684.2591319061 3.8777692 -1103.2959
+105685.2591319564 3.8777692 -1103.197
+105686.2591320067 3.8778481 -1103.2168
+105687.259132057 3.8778086 -1103.2562
+105688.2591321073 3.8777299 -1103.2959
+105689.2591321575 3.8777692 -1103.1774
+105690.2591322078 3.8776906 -1103.1182
+105691.2591322581 3.8776119 -1103.1576
+105692.2591323084 3.8776512 -1103.2366
+105693.2591323587 3.8777299 -1103.2366
+105694.259132409 3.8776119 -1103.1774
+105695.2591324593 3.8776906 -1103.2562
+105696.2591325096 3.8776119 -1103.1378
+105697.2591325599 3.8776906 -1103.2366
+105698.2591326102 3.8775332 -1103.1576
+105699.2591326605 3.8775332 -1103.2761
+105700.2591327108 3.8776119 -1103.1774
+105701.259132761 3.8776119 -1103.1378
+105702.2591328113 3.8776119 -1103.2366
+105703.2591328616 3.8776119 -1103.2168
+105704.2591329119 3.8775725 -1103.1774
+105705.2591329622 3.8773756 -1103.1774
+105706.2591330125 3.8774543 -1103.2562
+105707.2591330628 3.8774936 -1103.2562
+105708.2591331131 3.8774543 -1103.197
+105709.2591331634 3.8774936 -1103.1576
+105710.2591332137 3.8775725 -1103.1576
+105711.259133264 3.8774543 -1103.1576
+105712.2591333142 3.8774543 -1103.197
+105713.2591333645 3.8773756 -1103.197
+105714.2591334148 3.8774149 -1103.197
+105715.2591334651 3.8772182 -1103.197
+105716.2591335154 3.8773363 -1103.1576
+105717.2591335657 3.8773756 -1103.197
+105718.259133616 3.8774149 -1103.2761
+105719.2591336663 3.8773363 -1103.0984
+105720.2591337166 3.8772969 -1103.0785
+105721.2591337669 3.8772576 -1103.2168
+105722.2591338172 3.8772969 -1103.197
+105723.2591338675 3.8772969 -1103.2366
+105724.2591339177 3.8772576 -1103.1182
+105725.259133968 3.8772576 -1103.1774
+105726.2591340183 3.8772969 -1103.2168
+105727.2591340686 3.8772182 -1103.2366
+105728.2591341189 3.8772969 -1103.197
+105729.2591341692 3.8771787 -1103.197
+105730.2591342195 3.8771787 -1103.1576
+105731.2591342698 3.8772182 -1103.1774
+105732.2591343201 3.8771787 -1103.197
+105733.2591343704 3.8771393 -1103.1774
+105734.2591344207 3.8770213 -1103.2562
+105735.259134471 3.8771393 -1103.1774
+105736.2591345212 3.8770607 -1103.1774
+105737.2591345715 3.8770213 -1103.197
+105738.2591346218 3.8771393 -1103.1774
+105739.2591346721 3.8770607 -1103.2761
+105740.2591347224 3.8771 -1103.2366
+105741.2591347727 3.876982 -1103.2562
+105742.259134823 3.8770607 -1103.2761
+105743.2591348733 3.8770607 -1103.2562
+105744.2591349236 3.8770607 -1103.1774
+105745.2591349739 3.8770607 -1103.197
+105746.2591350242 3.8768637 -1103.2761
+105747.2591350744 3.8769426 -1103.2959
+105748.2591351247 3.8770213 -1103.197
+105749.259135175 3.8768637 -1103.2761
+105750.2591352253 3.8769426 -1103.1774
+105751.2591352756 3.8768637 -1103.2168
+105752.2591353259 3.876982 -1103.1774
+105753.2591353762 3.8769426 -1103.197
+105754.2591354265 3.8767457 -1103.197
+105755.2591354768 3.876785 -1103.2562
+105756.2591355271 3.8767457 -1103.2562
+105757.2591355774 3.8768244 -1103.2168
+105758.2591356277 3.8768637 -1103.2562
+105759.2591356779 3.8767064 -1103.1774
+105760.2591357282 3.8767457 -1103.1576
+105761.2591357785 3.8768244 -1103.2168
+105762.2591358288 3.876785 -1103.2366
+105763.2591358791 3.876785 -1103.2761
+105764.2591359294 3.8768244 -1103.1774
+105765.2591359797 3.8767064 -1103.2761
+105766.25913603 3.876667 -1103.2562
+105767.2591360803 3.8766277 -1103.1774
+105768.2591361306 3.8767457 -1103.1774
+105769.2591361809 3.8766277 -1103.2366
+105770.2591362312 3.8765488 -1103.197
+105771.2591362814 3.876667 -1103.2366
+105772.2591363317 3.8765881 -1103.3156
+105773.259136382 3.8766277 -1103.2168
+105774.2591364323 3.8765881 -1103.1774
+105775.2591364826 3.876667 -1103.2562
+105776.2591365329 3.8765881 -1103.197
+105777.2591365832 3.8764701 -1103.2366
+105778.2591366335 3.8765094 -1103.1774
+105779.2591366838 3.8765488 -1103.2562
+105780.2591367341 3.8763914 -1103.2562
+105781.2591367844 3.8765094 -1103.197
+105782.2591368346 3.8764701 -1103.2168
+105783.2591368849 3.8764307 -1103.1774
+105784.2591369352 3.8763521 -1103.2562
+105785.2591369855 3.8764307 -1103.1576
+105786.2591370358 3.8764307 -1103.2562
+105787.2591370861 3.8763127 -1103.0984
+105788.2591371364 3.8763914 -1103.2366
+105789.2591371867 3.8763127 -1103.1378
+105790.259137237 3.8763914 -1103.2366
+105791.2591372873 3.8764307 -1103.1774
+105792.2591373376 3.8762732 -1103.2562
+105793.2591373879 3.8763521 -1103.197
+105794.2591374381 3.8762732 -1103.2761
+105795.2591374884 3.8762732 -1103.197
+105796.2591375387 3.8763521 -1103.2366
+105797.259137589 3.8763914 -1103.2366
+105798.2591376393 3.8762732 -1103.2562
+105799.2591376896 3.8763127 -1103.1576
+105800.2591377399 3.8762338 -1103.1576
+105801.2591377902 3.8761551 -1103.2761
+105802.2591378405 3.8760765 -1103.197
+105803.2591378908 3.8761551 -1103.197
+105804.2591379411 3.8762338 -1103.2366
+105805.2591379914 3.8762338 -1103.2168
+105806.2591380416 3.8761945 -1103.1774
+105807.2591380919 3.8761551 -1103.197
+105808.2591381422 3.8760371 -1103.1576
+105809.2591381925 3.8761945 -1103.197
+105810.2591382428 3.8761158 -1103.197
+105811.2591382931 3.8760765 -1103.2366
+105812.2591383434 3.8761158 -1103.1378
+105813.2591383937 3.8759582 -1103.1774
+105814.259138444 3.8760765 -1103.2562
+105815.2591384943 3.8760371 -1103.0984
+105816.2591385446 3.8759978 -1103.197
+105817.2591385948 3.8759582 -1103.1576
+105818.2591386451 3.8759582 -1103.197
+105819.2591386954 3.8759978 -1103.1182
+105820.2591387457 3.8759978 -1103.1182
+105821.259138796 3.8759189 -1103.197
+105822.2591388463 3.8759978 -1103.2761
+105823.2591388966 3.8759582 -1103.1378
+105824.2591389469 3.8758402 -1103.1774
+105825.2591389972 3.8758402 -1103.1576
+105826.2591390475 3.8758402 -1103.197
+105827.2591390978 3.8759978 -1103.3156
+105828.2591391481 3.8758008 -1103.197
+105829.2591391983 3.8757615 -1103.2761
+105830.2591392486 3.8758402 -1103.1576
+105831.2591392989 3.8758795 -1103.2168
+105832.2591393492 3.8757615 -1103.1576
+105833.2591393995 3.8757615 -1103.2366
+105834.2591394498 3.8757615 -1103.3156
+105835.2591395001 3.8757222 -1103.197
+105836.2591395504 3.8758008 -1103.197
+105837.2591396007 3.8758008 -1103.197
+105838.259139651 3.8757222 -1103.2168
+105839.2591397013 3.8756828 -1103.197
+105840.2591397516 3.8757222 -1103.1576
+105841.2591398018 3.8756433 -1103.1378
+105842.2591398521 3.8756433 -1103.1774
+105843.2591399024 3.8756433 -1103.1182
+105844.2591399527 3.8756828 -1103.197
+105845.259140003 3.8756433 -1103.2366
+105846.2591400533 3.8756039 -1103.2366
+105847.2591401036 3.8755646 -1103.2366
+105848.2591401539 3.8755252 -1103.197
+105849.2591402042 3.8754859 -1103.2761
+105850.2591402545 3.8754466 -1103.2562
+105851.2591403048 3.8756433 -1103.2366
+105852.259140355 3.8755646 -1103.197
+105853.2591404053 3.8755252 -1103.1774
+105854.2591404556 3.8754072 -1103.197
+105855.2591405059 3.8753679 -1103.1576
+105856.2591405562 3.8755646 -1103.2168
+105857.2591406065 3.8754466 -1103.2168
+105858.2591406568 3.8754072 -1103.2168
+105859.2591407071 3.8754466 -1103.197
+105860.2591407574 3.8754466 -1103.1378
+105861.2591408077 3.8754859 -1103.2959
+105862.259140858 3.8753283 -1103.2562
+105863.2591409083 3.8753679 -1103.2168
+105864.2591409585 3.8753679 -1103.197
+105865.2591410088 3.8753283 -1103.2168
+105866.2591410591 3.8753679 -1103.2366
+105867.2591411094 3.875289 -1103.1378
+105868.2591411597 3.8752103 -1103.1774
+105869.25914121 3.8752496 -1103.2168
+105870.2591412603 3.875289 -1103.1576
+105871.2591413106 3.8750923 -1103.1774
+105872.2591413609 3.8752103 -1103.2168
+105873.2591414112 3.8753679 -1103.2168
+105874.2591414615 3.8750923 -1103.2562
+105875.2591415118 3.8751709 -1103.0984
+105876.259141562 3.8750923 -1103.2562
+105877.2591416123 3.8751709 -1103.2562
+105878.2591416626 3.875289 -1103.1576
+105879.2591417129 3.8752496 -1103.197
+105880.2591417632 3.8751316 -1103.197
+105881.2591418135 3.8750527 -1103.2761
+105882.2591418638 3.8751316 -1103.2366
+105883.2591419141 3.8751316 -1103.3353
+105884.2591419644 3.8750134 -1103.2168
+105885.2591420147 3.8750527 -1103.1576
+105886.259142065 3.8750527 -1103.1774
+105887.2591421152 3.8750923 -1103.197
+105888.2591421655 3.8750527 -1103.3156
+105889.2591422158 3.874974 -1103.2366
+105890.2591422661 3.874974 -1103.2959
+105891.2591423164 3.8749347 -1103.1774
+105892.2591423667 3.8749347 -1103.2168
+105893.259142417 3.874974 -1103.1774
+105894.2591424673 3.8748953 -1103.2168
+105895.2591425176 3.874856 -1103.197
+105896.2591425679 3.874856 -1103.2761
+105897.2591426182 3.8748953 -1103.2562
+105898.2591426685 3.8748167 -1103.2562
+105899.2591427187 3.8748167 -1103.2168
+105900.259142769 3.874856 -1103.2366
+105901.2591428193 3.8748953 -1103.2959
+105902.2591428696 3.874856 -1103.3353
+105903.2591429199 3.8748167 -1103.2761
+105904.2591429702 3.8748167 -1103.2562
+105905.2591430205 3.8747377 -1103.197
+105906.2591430708 3.8746984 -1103.197
+105907.2591431211 3.8746591 -1103.1774
+105908.2591431714 3.8746591 -1103.2761
+105909.2591432217 3.8746984 -1103.197
+105910.2591432719 3.8747773 -1103.1378
+105911.2591433222 3.8747377 -1103.197
+105912.2591433725 3.8746591 -1103.2761
+105913.2591434228 3.8746197 -1103.1378
+105914.2591434731 3.8746591 -1103.2761
+105915.2591435234 3.8746591 -1103.2168
+105916.2591435737 3.8746591 -1103.2366
+105917.259143624 3.8746591 -1103.2562
+105918.2591436743 3.8745804 -1103.2168
+105919.2591437246 3.874541 -1103.2366
+105920.2591437749 3.8745804 -1103.1576
+105921.2591438252 3.874541 -1103.1576
+105922.2591438754 3.8744624 -1103.2168
+105923.2591439257 3.874541 -1103.197
+105924.259143976 3.8745804 -1103.2366
+105925.2591440263 3.8744624 -1103.2366
+105926.2591440766 3.8744624 -1103.197
+105927.2591441269 3.8744228 -1103.197
+105928.2591441772 3.8744624 -1103.2761
+105929.2591442275 3.8744228 -1103.2366
+105930.2591442778 3.8743834 -1103.2366
+105931.2591443281 3.8744228 -1103.2168
+105932.2591443784 3.8744624 -1103.197
+105933.2591444287 3.8744624 -1103.1576
+105934.2591444789 3.8743441 -1103.1774
+105935.2591445292 3.8743048 -1103.3156
+105936.2591445795 3.8742654 -1103.2168
+105937.2591446298 3.8743048 -1103.1576
+105938.2591446801 3.8741868 -1103.197
+105939.2591447304 3.8742654 -1103.2366
+105940.2591447807 3.8742654 -1103.2168
+105941.259144831 3.8742261 -1103.2761
+105942.2591448813 3.8743048 -1103.2562
+105943.2591449316 3.8742654 -1103.2168
+105944.2591449819 3.8741868 -1103.1378
+105945.2591450321 3.8741868 -1103.1576
+105946.2591450824 3.8740685 -1103.197
+105947.2591451327 3.8742261 -1103.2959
+105948.259145183 3.8743048 -1103.197
+105949.2591452333 3.8740292 -1103.2761
+105950.2591452836 3.8741868 -1103.2168
+105951.2591453339 3.8740292 -1103.1576
+105952.2591453842 3.8740685 -1103.2761
+105953.2591454345 3.8741078 -1103.1774
+105954.2591454848 3.8741078 -1103.2168
+105955.2591455351 3.8740292 -1103.1378
+105956.2591455854 3.8740685 -1103.2761
+105957.2591456356 3.8740685 -1103.3156
+105958.2591456859 3.8739505 -1103.1774
+105959.2591457362 3.8739898 -1103.1378
+105960.2591457865 3.8739898 -1103.2366
+105961.2591458368 3.8739898 -1103.2959
+105962.2591458871 3.8739898 -1103.2168
+105963.2591459374 3.8738325 -1103.197
+105964.2591459877 3.8739111 -1103.2366
+105965.259146038 3.8739505 -1103.2562
+105966.2591460883 3.8739505 -1103.2168
+105967.2591461386 3.8739111 -1103.197
+105968.2591461889 3.8738325 -1103.2168
+105969.2591462391 3.8738718 -1103.197
+105970.2591462894 3.8737929 -1103.2366
+105971.2591463397 3.8738325 -1103.2366
+105972.25914639 3.8738718 -1103.1378
+105973.2591464403 3.8739505 -1103.2366
+105974.2591464906 3.8738325 -1103.1378
+105975.2591465409 3.8737929 -1103.197
+105976.2591465912 3.8738718 -1103.2168
+105977.2591466415 3.8738325 -1103.197
+105978.2591466918 3.8736749 -1103.1378
+105979.2591467421 3.8737142 -1103.2366
+105980.2591467923 3.8737929 -1103.197
+105981.2591468426 3.8737142 -1103.1378
+105982.2591468929 3.8736355 -1103.1378
+105983.2591469432 3.8737142 -1103.197
+105984.2591469935 3.8737142 -1103.197
+105985.2591470438 3.8736749 -1103.2959
+105986.2591470941 3.8736355 -1103.2168
+105987.2591471444 3.8736355 -1103.1774
+105988.2591471947 3.8735962 -1103.2562
+105989.259147245 3.8735173 -1103.2366
+105990.2591472953 3.8736355 -1103.2168
+105991.2591473456 3.8735173 -1103.1774
+105992.2591473958 3.8736749 -1103.197
+105993.2591474461 3.8735173 -1103.2761
+105994.2591474964 3.8735173 -1103.2562
+105995.2591475467 3.8734386 -1103.2562
+105996.259147597 3.8735569 -1103.2761
+105997.2591476473 3.8735173 -1103.1774
+105998.2591476976 3.8734386 -1103.1576
+105999.2591477479 3.8735173 -1103.2562
+106000.2591477982 3.8733993 -1103.3156
+106001.2591478485 3.8733993 -1103.1378
+106002.2591478988 3.8733993 -1103.2366
+106003.2591479491 3.8734386 -1103.2562
+106004.2591479993 3.8733993 -1103.2562
+106005.2591480496 3.8733206 -1103.1576
+106006.2591480999 3.8733206 -1103.1576
+106007.2591481502 3.8732812 -1103.2562
+106008.2591482005 3.8733206 -1103.1774
+106009.2591482508 3.8732419 -1103.2168
+106010.2591483011 3.8733599 -1103.1774
+106011.2591483514 3.8732023 -1103.1774
+106012.2591484017 3.8732023 -1103.2168
+106013.259148452 3.8733599 -1103.197
+106014.2591485023 3.8732419 -1103.1378
+106015.2591485525 3.8732419 -1103.2562
+106016.2591486028 3.873163 -1103.197
+106017.2591486531 3.8730843 -1103.2562
+106018.2591487034 3.8731236 -1103.2168
+106019.2591487537 3.873163 -1103.197
+106020.259148804 3.8732023 -1103.1576
+106021.2591488543 3.8732023 -1103.2168
+106022.2591489046 3.8732419 -1103.1576
+106023.2591489549 3.873045 -1103.2168
+106024.2591490052 3.8731236 -1103.3156
+106025.2591490555 3.8730843 -1103.197
+106026.2591491058 3.8729663 -1103.1774
+106027.259149156 3.8730843 -1103.2168
+106028.2591492063 3.873045 -1103.2366
+106029.2591492566 3.8730056 -1103.1182
+106030.2591493069 3.8730056 -1103.2761
+106031.2591493572 3.8730056 -1103.2562
+106032.2591494075 3.872927 -1103.2168
+106033.2591494578 3.8730056 -1103.1576
+106034.2591495081 3.8728874 -1103.2168
+106035.2591495584 3.8730056 -1103.1774
+106036.2591496087 3.872927 -1103.2562
+106037.259149659 3.8728874 -1103.197
+106038.2591497093 3.872927 -1103.2761
+106039.2591497595 3.872848 -1103.2366
+106040.2591498098 3.872848 -1103.1378
+106041.2591498601 3.872848 -1103.2366
+106042.2591499104 3.8728874 -1103.1182
+106043.2591499607 3.872848 -1103.2168
+106044.259150011 3.8728087 -1103.1182
+106045.2591500613 3.8728087 -1103.197
+106046.2591501116 3.8728087 -1103.1774
+106047.2591501619 3.8726907 -1103.2959
+106048.2591502122 3.8728087 -1103.2366
+106049.2591502625 3.872612 -1103.197
+106050.2591503127 3.8726907 -1103.1774
+106051.259150363 3.87273 -1103.2562
+106052.2591504133 3.8726907 -1103.1576
+106053.2591504636 3.87273 -1103.2761
+106054.2591505139 3.8726513 -1103.2562
+106055.2591505642 3.8725724 -1103.2168
+106056.2591506145 3.8725331 -1103.1774
+106057.2591506648 3.8724937 -1103.2761
+106058.2591507151 3.8726513 -1103.2761
+106059.2591507654 3.872612 -1103.197
+106060.2591508157 3.8725331 -1103.1576
+106061.259150866 3.872612 -1103.1378
+106062.2591509162 3.8725724 -1103.1774
+106063.2591509665 3.8725331 -1103.2562
+106064.2591510168 3.872612 -1103.2168
+106065.2591510671 3.8723757 -1103.2168
+106066.2591511174 3.872612 -1103.2366
+106067.2591511677 3.8724544 -1103.1378
+106068.259151218 3.8724937 -1103.1378
+106069.2591512683 3.8725331 -1103.2168
+106070.2591513186 3.8724151 -1103.2761
+106071.2591513689 3.8725331 -1103.1576
+106072.2591514192 3.8723757 -1103.1774
+106073.2591514695 3.8724151 -1103.1774
+106074.2591515197 3.8723364 -1103.2168
+106075.25915157 3.8724151 -1103.2761
+106076.2591516203 3.8722575 -1103.1774
+106077.2591516706 3.8723364 -1103.1182
+106078.2591517209 3.8723364 -1103.1576
+106079.2591517712 3.8723364 -1103.2562
+106080.2591518215 3.8723364 -1103.197
+106081.2591518718 3.8721395 -1103.1576
+106082.2591519221 3.872297 -1103.1576
+106083.2591519724 3.872297 -1103.197
+106084.2591520227 3.8721395 -1103.1576
+106085.2591520729 3.8722181 -1103.2168
+106086.2591521232 3.8720608 -1103.2366
+106087.2591521735 3.8721788 -1103.2761
+106088.2591522238 3.8722575 -1103.1774
+106089.2591522741 3.8721395 -1103.1576
+106090.2591523244 3.8721001 -1103.1774
+106091.2591523747 3.8720608 -1103.1182
+106092.259152425 3.8720608 -1103.1576
+106093.2591524753 3.8720608 -1103.2366
+106094.2591525256 3.8720214 -1103.1182
+106095.2591525759 3.8719425 -1103.2562
+106096.2591526262 3.8721788 -1103.2761
+106097.2591526764 3.8719821 -1103.2366
+106098.2591527267 3.8719821 -1103.2366
+106099.259152777 3.8719821 -1103.2168
+106100.2591528273 3.8720608 -1103.197
+106101.2591528776 3.8719425 -1103.197
+106102.2591529279 3.8718245 -1103.2168
+106103.2591529782 3.8719032 -1103.2168
+106104.2591530285 3.8718638 -1103.197
+106105.2591530788 3.8719032 -1103.2366
+106106.2591531291 3.8718245 -1103.1182
+106107.2591531794 3.8718245 -1103.1774
+106108.2591532297 3.8718638 -1103.1182
+106109.2591532799 3.8717852 -1103.2366
+106110.2591533302 3.8718245 -1103.2168
+106111.2591533805 3.8717458 -1103.2168
+106112.2591534308 3.8718245 -1103.2562
+106113.2591534811 3.8717458 -1103.2562
+106114.2591535314 3.8717458 -1103.2168
+106115.2591535817 3.8717065 -1103.2562
+106116.259153632 3.8717852 -1103.197
+106117.2591536823 3.8717458 -1103.1182
+106118.2591537326 3.8717852 -1103.3353
+106119.2591537829 3.8716669 -1103.2562
+106120.2591538331 3.8716276 -1103.2562
+106121.2591538834 3.8716669 -1103.2959
+106122.2591539337 3.8717065 -1103.2761
+106123.259153984 3.8715882 -1103.197
+106124.2591540343 3.8715882 -1103.1774
+106125.2591540846 3.8715882 -1103.2168
+106126.2591541349 3.8715096 -1103.197
+106127.2591541852 3.8715489 -1103.1576
+106128.2591542355 3.8715489 -1103.1774
+106129.2591542858 3.8715096 -1103.2168
+106130.2591543361 3.8715096 -1103.2168
+106131.2591543864 3.8715489 -1103.2168
+106132.2591544366 3.8714702 -1103.2366
+106133.2591544869 3.8714702 -1103.197
+106134.2591545372 3.8714702 -1103.1576
+106135.2591545875 3.8714309 -1103.2562
+106136.2591546378 3.8713915 -1103.197
+106137.2591546881 3.8714309 -1103.1378
+106138.2591547384 3.8713126 -1103.2168
+106139.2591547887 3.8713915 -1103.2959
+106140.259154839 3.8713126 -1103.2168
+106141.2591548893 3.8714309 -1103.0984
+106142.2591549396 3.8714702 -1103.197
+106143.2591549899 3.871352 -1103.0785
+106144.2591550401 3.8713126 -1103.1576
+106145.2591550904 3.8712733 -1103.2562
+106146.2591551407 3.8712733 -1103.2761
+106147.259155191 3.8713126 -1103.2168
+106148.2591552413 3.8711946 -1103.2562
+106149.2591552916 3.8713915 -1103.2168
+106150.2591553419 3.8711553 -1103.2366
+106151.2591553922 3.8712339 -1103.197
+106152.2591554425 3.8712339 -1103.197
+106153.2591554928 3.8711553 -1103.2562
+106154.2591555431 3.8711946 -1103.2168
+106155.2591555933 3.8711553 -1103.0984
+106156.2591556436 3.8711946 -1103.2959
+106157.2591556939 3.8710766 -1103.2562
+106158.2591557442 3.8711159 -1103.2168
+106159.2591557945 3.8711553 -1103.1576
+106160.2591558448 3.871037 -1103.2168
+106161.2591558951 3.8711159 -1103.1774
+106162.2591559454 3.8710766 -1103.2562
+106163.2591559957 3.8709977 -1103.2366
+106164.259156046 3.8709977 -1103.2562
+106165.2591560963 3.870919 -1103.1378
+106166.2591561466 3.8709583 -1103.197
+106167.2591561968 3.8709977 -1103.197
+106168.2591562471 3.870919 -1103.2168
+106169.2591562974 3.8709977 -1103.2562
+106170.2591563477 3.8710766 -1103.1576
+106171.259156398 3.8709583 -1103.197
+106172.2591564483 3.8709583 -1103.1378
+106173.2591564986 3.8708403 -1103.2761
+106174.2591565489 3.8709583 -1103.2168
+106175.2591565992 3.8708797 -1103.2761
+106176.2591566495 3.870801 -1103.2366
+106177.2591566998 3.8708797 -1103.2366
+106178.25915675 3.8708797 -1103.197
+106179.2591568003 3.870801 -1103.0984
+106180.2591568506 3.870801 -1103.2366
+106181.2591569009 3.8707221 -1103.2366
+106182.2591569512 3.8707221 -1103.2562
+106183.2591570015 3.8707221 -1103.197
+106184.2591570518 3.8707221 -1103.1774
+106185.2591571021 3.8707221 -1103.2562
+106186.2591571524 3.870801 -1103.1774
+106187.2591572027 3.8705647 -1103.197
+106188.259157253 3.8707221 -1103.1576
+106189.2591573033 3.8707221 -1103.0588
+106190.2591573535 3.8706434 -1103.197
+106191.2591574038 3.870604 -1103.197
+106192.2591574541 3.8705647 -1103.197
+106193.2591575044 3.870604 -1103.1576
+106194.2591575547 3.8705647 -1103.2761
+106195.259157605 3.8705647 -1103.3156
+106196.2591576553 3.8705647 -1103.2168
+106197.2591577056 3.8705254 -1103.1576
+106198.2591577559 3.8706827 -1103.2168
+106199.2591578062 3.8705254 -1103.2168
+106200.2591578565 3.8704467 -1103.2761
+106201.2591579068 3.870486 -1103.2366
+106202.259157957 3.8705647 -1103.197
+106203.2591580073 3.8704071 -1103.2562
+106204.2591580576 3.8704071 -1103.197
+106205.2591581079 3.8705254 -1103.2366
+106206.2591581582 3.8704467 -1103.1774
+106207.2591582085 3.8703678 -1103.2959
+106208.2591582588 3.8704467 -1103.1576
+106209.2591583091 3.8702891 -1103.1576
+106210.2591583594 3.8703678 -1103.197
+106211.2591584097 3.8703284 -1103.2168
+106212.25915846 3.8704467 -1103.197
+106213.2591585102 3.8702891 -1103.1182
+106214.2591585605 3.8702891 -1103.2168
+106215.2591586108 3.8702497 -1103.197
+106216.2591586611 3.8702497 -1103.197
+106217.2591587114 3.8701711 -1103.1774
+106218.2591587617 3.8702891 -1103.1378
+106219.259158812 3.8702104 -1103.2168
+106220.2591588623 3.8702104 -1103.2168
+106221.2591589126 3.8701711 -1103.2366
+106222.2591589629 3.8700922 -1103.1774
+106223.2591590132 3.8701711 -1103.2168
+106224.2591590635 3.8700922 -1103.2959
+106225.2591591137 3.8701317 -1103.2366
+106226.259159164 3.8701317 -1103.2366
+106227.2591592143 3.8701317 -1103.1576
+106228.2591592646 3.8701711 -1103.2562
+106229.2591593149 3.8700922 -1103.2168
+106230.2591593652 3.8700922 -1103.1774
+106231.2591594155 3.8700135 -1103.2168
+106232.2591594658 3.8700528 -1103.2562
+106233.2591595161 3.8699741 -1103.2366
+106234.2591595664 3.8699741 -1103.2168
+106235.2591596167 3.8698955 -1103.2168
+106236.259159667 3.8698955 -1103.197
+106237.2591597172 3.8699348 -1103.1182
+106238.2591597675 3.8699348 -1103.2959
+106239.2591598178 3.8698955 -1103.2366
+106240.2591598681 3.8700528 -1103.2366
+106241.2591599184 3.8699741 -1103.1774
+106242.2591599687 3.8698561 -1103.1378
+106243.259160019 3.8698955 -1103.2562
+106244.2591600693 3.8698561 -1103.197
+106245.2591601196 3.8698561 -1103.1774
+106246.2591601699 3.8698955 -1103.1774
+106247.2591602202 3.8698165 -1103.0984
+106248.2591602704 3.8698561 -1103.1774
+106249.2591603207 3.8696985 -1103.2168
+106250.259160371 3.8698165 -1103.2168
+106251.2591604213 3.8697772 -1103.2168
+106252.2591604716 3.8697772 -1103.197
+106253.2591605219 3.8698955 -1103.2959
+106254.2591605722 3.8697772 -1103.197
+106255.2591606225 3.8697379 -1103.3156
+106256.2591606728 3.8696198 -1103.2168
+106257.2591607231 3.8696198 -1103.1576
+106258.2591607734 3.8696198 -1103.2366
+106259.2591608237 3.8695805 -1103.2959
+106260.2591608739 3.8696592 -1103.197
+106261.2591609242 3.8696198 -1103.2168
+106262.2591609745 3.8695412 -1103.197
+106263.2591610248 3.8695805 -1103.1774
+106264.2591610751 3.8695412 -1103.1774
+106265.2591611254 3.8695805 -1103.2366
+106266.2591611757 3.8695805 -1103.2366
+106267.259161226 3.8694623 -1103.2168
+106268.2591612763 3.8695016 -1103.2168
+106269.2591613266 3.8695016 -1103.2168
+106270.2591613769 3.8695412 -1103.2366
+106271.2591614272 3.8693836 -1103.2366
+106272.2591614774 3.8694623 -1103.197
+106273.2591615277 3.8694229 -1103.2168
+106274.259161578 3.8694229 -1103.1774
+106275.2591616283 3.8693442 -1103.3156
+106276.2591616786 3.8694229 -1103.2366
+106277.2591617289 3.8693049 -1103.2168
+106278.2591617792 3.8693442 -1103.1576
+106279.2591618295 3.8693836 -1103.2959
+106280.2591618798 3.8693442 -1103.2761
+106281.2591619301 3.8692262 -1103.2168
+106282.2591619804 3.8692656 -1103.2168
+106283.2591620306 3.8692262 -1103.2168
+106284.2591620809 3.8692262 -1103.1774
+106285.2591621312 3.8692262 -1103.1576
+106286.2591621815 3.8691866 -1103.1576
+106287.2591622318 3.8692656 -1103.1774
+106288.2591622821 3.8691473 -1103.2366
+106289.2591623324 3.8691866 -1103.3156
+106290.2591623827 3.8691473 -1103.2366
+106291.259162433 3.8691866 -1103.197
+106292.2591624833 3.869108 -1103.2366
+106293.2591625336 3.8691866 -1103.2562
+106294.2591625839 3.8690293 -1103.2168
+106295.2591626341 3.8690293 -1103.1576
+106296.2591626844 3.869108 -1103.1774
+106297.2591627347 3.8690293 -1103.2761
+106298.259162785 3.869108 -1103.1774
+106299.2591628353 3.8690293 -1103.2366
+106300.2591628856 3.8691473 -1103.1774
+106301.2591629359 3.8690293 -1103.197
+106302.2591629862 3.8690293 -1103.197
+106303.2591630365 3.8689113 -1103.1576
+106304.2591630868 3.8689506 -1103.1774
+106305.2591631371 3.8689899 -1103.2168
+106306.2591631874 3.8689506 -1103.2562
+106307.2591632376 3.8688717 -1103.197
+106308.2591632879 3.8689113 -1103.2168
+106309.2591633382 3.8688717 -1103.2168
+106310.2591633885 3.8689113 -1103.2562
+106311.2591634388 3.8689506 -1103.1576
+106312.2591634891 3.8688717 -1103.1774
+106313.2591635394 3.8688323 -1103.2168
+106314.2591635897 3.8688717 -1103.1378
+106315.25916364 3.8688323 -1103.197
+106316.2591636903 3.8687143 -1103.1576
+106317.2591637406 3.8687143 -1103.2761
+106318.2591637908 3.8687537 -1103.1774
+106319.2591638411 3.8687143 -1103.1576
+106320.2591638914 3.868675 -1103.2168
+106321.2591639417 3.8687143 -1103.1774
+106322.259163992 3.8687143 -1103.2366
+106323.2591640423 3.8688323 -1103.197
+106324.2591640926 3.8687143 -1103.2366
+106325.2591641429 3.868675 -1103.197
+106326.2591641932 3.8685963 -1103.2761
+106327.2591642435 3.8685963 -1103.2366
+106328.2591642938 3.868675 -1103.3156
+106329.2591643441 3.8685174 -1103.197
+106330.2591643943 3.8687143 -1103.2366
+106331.2591644446 3.8685174 -1103.1378
+106332.2591644949 3.8684781 -1103.1378
+106333.2591645452 3.8684781 -1103.2761
+106334.2591645955 3.8686357 -1103.2959
+106335.2591646458 3.8685174 -1103.1378
+106336.2591646961 3.8684387 -1103.1378
+106337.2591647464 3.8685567 -1103.2761
+106338.2591647967 3.8683994 -1103.2168
+106339.259164847 3.8685174 -1103.0984
+106340.2591648973 3.8685567 -1103.1774
+106341.2591649476 3.8684781 -1103.2168
+106342.2591649978 3.8684387 -1103.1182
+106343.2591650481 3.86836 -1103.1774
+106344.2591650984 3.8684781 -1103.197
+106345.2591651487 3.8683994 -1103.197
+106346.259165199 3.8682418 -1103.1378
+106347.2591652493 3.86836 -1103.2366
+106348.2591652996 3.8683994 -1103.2959
+106349.2591653499 3.8683207 -1103.2761
+106350.2591654002 3.86836 -1103.0984
+106351.2591654505 3.8683994 -1103.197
+106352.2591655008 3.8682814 -1103.1774
+106353.259165551 3.8682418 -1103.1576
+106354.2591656013 3.8683207 -1103.2366
+106355.2591656516 3.8682814 -1103.1774
+106356.2591657019 3.8682418 -1103.1576
+106357.2591657522 3.8683207 -1103.197
+106358.2591658025 3.8681238 -1103.1576
+106359.2591658528 3.8682024 -1103.1774
+106360.2591659031 3.8682418 -1103.2168
+106361.2591659534 3.8682418 -1103.1774
+106362.2591660037 3.8680844 -1103.2366
+106363.259166054 3.8681238 -1103.2366
+106364.2591661043 3.8681238 -1103.1774
+106365.2591661545 3.8680451 -1103.2168
+106366.2591662048 3.8681631 -1103.1774
+106367.2591662551 3.8679268 -1103.1378
+106368.2591663054 3.8680844 -1103.1576
+106369.2591663557 3.8680844 -1103.2168
+106370.259166406 3.8680451 -1103.1576
+106371.2591664563 3.8680451 -1103.3156
+106372.2591665066 3.8680058 -1103.2761
+106373.2591665569 3.8680451 -1103.1182
+106374.2591666072 3.8680058 -1103.1774
+106375.2591666575 3.8678875 -1103.197
+106376.2591667078 3.8678482 -1103.1576
+106377.259166758 3.8678875 -1103.1774
+106378.2591668083 3.8679662 -1103.2366
+106379.2591668586 3.8680451 -1103.1774
+106380.2591669089 3.8679662 -1103.1774
+106381.2591669592 3.8678482 -1103.1774
+106382.2591670095 3.8678875 -1103.197
+106383.2591670598 3.8679662 -1103.1378
+106384.2591671101 3.8678482 -1103.197
+106385.2591671604 3.8678088 -1103.2959
+106386.2591672107 3.8677301 -1103.2168
+106387.259167261 3.8676908 -1103.197
+106388.2591673112 3.8678875 -1103.3353
+106389.2591673615 3.8677301 -1103.2562
+106390.2591674118 3.8676908 -1103.1774
+106391.2591674621 3.8677301 -1103.2562
+106392.2591675124 3.8676908 -1103.197
+106393.2591675627 3.8676512 -1103.2959
+106394.259167613 3.8676908 -1103.1774
+106395.2591676633 3.8676512 -1103.2168
+106396.2591677136 3.8677301 -1103.2366
+106397.2591677639 3.8676908 -1103.2366
+106398.2591678142 3.8676512 -1103.2562
+106399.2591678645 3.8676119 -1103.2366
+106400.2591679147 3.8676119 -1103.2366
+106401.259167965 3.8675332 -1103.1576
+106402.2591680153 3.8676119 -1103.0984
+106403.2591680656 3.8674939 -1103.2366
+106404.2591681159 3.8675725 -1103.1378
+106405.2591681662 3.8675725 -1103.197
+106406.2591682165 3.8674939 -1103.2562
+106407.2591682668 3.8675332 -1103.1182
+106408.2591683171 3.8673759 -1103.3156
+106409.2591683674 3.8673759 -1103.2168
+106410.2591684177 3.8674545 -1103.2959
+106411.259168468 3.8674939 -1103.2168
+106412.2591685182 3.8674152 -1103.2366
+106413.2591685685 3.8673759 -1103.1576
+106414.2591686188 3.8674545 -1103.197
+106415.2591686691 3.8673363 -1103.1576
+106416.2591687194 3.8674545 -1103.197
+106417.2591687697 3.8674545 -1103.197
+106418.25916882 3.8673363 -1103.1576
+106419.2591688703 3.8673363 -1103.1774
+106420.2591689206 3.8672183 -1103.1774
+106421.2591689709 3.8672969 -1103.2168
+106422.2591690212 3.8672969 -1103.2168
+106423.2591690714 3.8674545 -1103.2168
+106424.2591691217 3.8672969 -1103.2168
+106425.259169172 3.8672576 -1103.2562
+106426.2591692223 3.8672969 -1103.2168
+106427.2591692726 3.8671789 -1103.2761
+106428.2591693229 3.8671789 -1103.1378
+106429.2591693732 3.8672183 -1103.2168
+106430.2591694235 3.8671789 -1103.2366
+106431.2591694738 3.8671396 -1103.3156
+106432.2591695241 3.8671396 -1103.1774
+106433.2591695744 3.8671396 -1103.1774
+106434.2591696247 3.866982 -1103.2562
+106435.2591696749 3.8671396 -1103.1378
+106436.2591697252 3.8670213 -1103.1182
+106437.2591697755 3.8670213 -1103.1576
+106438.2591698258 3.8670213 -1103.1182
+106439.2591698761 3.8670609 -1103.197
+106440.2591699264 3.866982 -1103.1576
+106441.2591699767 3.8670213 -1103.197
+106442.259170027 3.8667853 -1103.2168
+106443.2591700773 3.8670213 -1103.1774
+106444.2591701276 3.8669033 -1103.3353
+106445.2591701779 3.8669033 -1103.1378
+106446.2591702282 3.866982 -1103.2168
+106447.2591702784 3.8669426 -1103.2168
+106448.2591703287 3.8669033 -1103.2761
+106449.259170379 3.8669033 -1103.2168
+106450.2591704293 3.8669426 -1103.2366
+106451.2591704796 3.8669033 -1103.197
+106452.2591705299 3.866864 -1103.2168
+106453.2591705802 3.866864 -1103.2366
+106454.2591706305 3.8669033 -1103.2168
+106455.2591706808 3.8667853 -1103.1774
+106456.2591707311 3.8668246 -1103.2761
+106457.2591707814 3.8668246 -1103.0984
+106458.2591708316 3.8667459 -1103.2168
+106459.2591708819 3.8667459 -1103.2562
+106460.2591709322 3.8667853 -1103.197
+106461.2591709825 3.8666277 -1103.2366
+106462.2591710328 3.8666277 -1103.2366
+106463.2591710831 3.8667064 -1103.197
+106464.2591711334 3.866667 -1103.2168
+106465.2591711837 3.866667 -1103.2562
+106466.259171234 3.8666277 -1103.197
+106467.2591712843 3.8665884 -1103.2366
+106468.2591713346 3.8665884 -1103.1576
+106469.2591713849 3.866549 -1103.1576
+106470.2591714351 3.866549 -1103.1774
+106471.2591714854 3.8664703 -1103.0984
+106472.2591715357 3.866549 -1103.197
+106473.259171586 3.8664703 -1103.2562
+106474.2591716363 3.866431 -1103.1774
+106475.2591716866 3.866431 -1103.1576
+106476.2591717369 3.8665884 -1103.2168
+106477.2591717872 3.8664703 -1103.1774
+106478.2591718375 3.8663914 -1103.2168
+106479.2591718878 3.8665097 -1103.197
+106480.2591719381 3.866431 -1103.1774
+106481.2591719883 3.8664703 -1103.1576
+106482.2591720386 3.8665097 -1103.2366
+106483.2591720889 3.8663521 -1103.2562
+106484.2591721392 3.8663521 -1103.2562
+106485.2591721895 3.8662734 -1103.2168
+106486.2591722398 3.8663127 -1103.197
+106487.2591722901 3.8662341 -1103.1576
+106488.2591723404 3.8662734 -1103.3156
+106489.2591723907 3.8661554 -1103.2168
+106490.259172441 3.8661947 -1103.2562
+106491.2591724913 3.8661947 -1103.2366
+106492.2591725416 3.8661947 -1103.1576
+106493.2591725918 3.8661947 -1103.2168
+106494.2591726421 3.8661947 -1103.1774
+106495.2591726924 3.8662341 -1103.1576
+106496.2591727427 3.8660765 -1103.197
+106497.259172793 3.8661947 -1103.2366
+106498.2591728433 3.8661947 -1103.197
+106499.2591728936 3.8662341 -1103.2959
+106500.2591729439 3.8660765 -1103.1182
+106501.2591729942 3.8659191 -1103.2168
+106502.2591730445 3.8660765 -1103.2366
+106503.2591730948 3.8660371 -1103.197
+106504.2591731451 3.8660371 -1103.2168
+106505.2591731953 3.8659978 -1103.1774
+106506.2591732456 3.8660765 -1103.2168
+106507.2591732959 3.8659191 -1103.1774
+106508.2591733462 3.8658798 -1103.2562
+106509.2591733965 3.8659978 -1103.2366
+106510.2591734468 3.8660765 -1103.2366
+106511.2591734971 3.8658798 -1103.1576
+106512.2591735474 3.8659191 -1103.2761
+106513.2591735977 3.8659191 -1103.2168
+106514.259173648 3.8658798 -1103.2366
+106515.2591736983 3.8658798 -1103.2761
+106516.2591737485 3.8658798 -1103.1774
+106517.2591737988 3.8658404 -1103.1378
+106518.2591738491 3.8658009 -1103.2168
+106519.2591738994 3.8658009 -1103.197
+106520.2591739497 3.8658009 -1103.1774
+106521.259174 3.8657615 -1103.2366
+106522.2591740503 3.8657222 -1103.1182
+106523.2591741006 3.8658009 -1103.2761
+106524.2591741509 3.8656042 -1103.1576
+106525.2591742012 3.8657615 -1103.2168
+106526.2591742515 3.8657222 -1103.2562
+106527.2591743018 3.8656828 -1103.2366
+106528.259174352 3.8656042 -1103.2168
+106529.2591744023 3.8656435 -1103.197
+106530.2591744526 3.8656435 -1103.2959
+106531.2591745029 3.8656042 -1103.2562
+106532.2591745532 3.8656435 -1103.197
+106533.2591746035 3.8655255 -1103.2761
+106534.2591746538 3.8654859 -1103.1576
+106535.2591747041 3.8656435 -1103.1774
+106536.2591747544 3.8655648 -1103.1774
+106537.2591748047 3.8654859 -1103.2959
+106538.259174855 3.8656042 -1103.2168
+106539.2591749053 3.8654466 -1103.1378
+106540.2591749555 3.8656435 -1103.3551
+106541.2591750058 3.8654072 -1103.1774
+106542.2591750561 3.8654072 -1103.2562
+106543.2591751064 3.8654072 -1103.2168
+106544.2591751567 3.8655255 -1103.2761
+106545.259175207 3.8654466 -1103.1378
+106546.2591752573 3.8653679 -1103.2761
+106547.2591753076 3.8654072 -1103.2168
+106548.2591753579 3.8653679 -1103.2562
+106549.2591754082 3.8652892 -1103.197
+106550.2591754585 3.8654466 -1103.197
+106551.2591755087 3.8652892 -1103.2761
+106552.259175559 3.8652499 -1103.1576
+106553.2591756093 3.8652892 -1103.2366
+106554.2591756596 3.8652892 -1103.1378
+106555.2591757099 3.865171 -1103.2168
+106556.2591757602 3.8652499 -1103.1576
+106557.2591758105 3.865171 -1103.1774
+106558.2591758608 3.8652105 -1103.2168
+106559.2591759111 3.865171 -1103.197
+106560.2591759614 3.8650136 -1103.197
+106561.2591760117 3.8652892 -1103.2366
+106562.259176062 3.8650923 -1103.2366
+106563.2591761122 3.8650923 -1103.2366
+106564.2591761625 3.8651316 -1103.1774
+106565.2591762128 3.8650923 -1103.1774
+106566.2591762631 3.865171 -1103.2168
+106567.2591763134 3.8652105 -1103.2562
+106568.2591763637 3.8649743 -1103.2168
+106569.259176414 3.8650136 -1103.2366
+106570.2591764643 3.8649743 -1103.2366
+106571.2591765146 3.8649349 -1103.1774
+106572.2591765649 3.8649743 -1103.2562
+106573.2591766152 3.8649743 -1103.1576
+106574.2591766655 3.8649743 -1103.2168
+106575.2591767157 3.864856 -1103.2761
+106576.259176766 3.8649743 -1103.1378
+106577.2591768163 3.8648956 -1103.1576
+106578.2591768666 3.8648956 -1103.3353
+106579.2591769169 3.8649743 -1103.2366
+106580.2591769672 3.8648956 -1103.3156
+106581.2591770175 3.864856 -1103.2168
+106582.2591770678 3.864738 -1103.2562
+106583.2591771181 3.8648167 -1103.1182
+106584.2591771684 3.8648956 -1103.2959
+106585.2591772187 3.8648167 -1103.2168
+106586.2591772689 3.8648167 -1103.2562
+106587.2591773192 3.8646593 -1103.2366
+106588.2591773695 3.864738 -1103.2761
+106589.2591774198 3.8648167 -1103.1774
+106590.2591774701 3.8646593 -1103.2168
+106591.2591775204 3.8646986 -1103.2761
+106592.2591775707 3.8646593 -1103.1774
+106593.259177621 3.864738 -1103.1774
+106594.2591776713 3.8646593 -1103.1182
+106595.2591777216 3.8646986 -1103.1774
+106596.2591777719 3.8646593 -1103.2562
+106597.2591778222 3.8645804 -1103.2168
+106598.2591778724 3.86462 -1103.1774
+106599.2591779227 3.8646986 -1103.2366
+106600.259177973 3.8645804 -1103.2168
+106601.2591780233 3.8645411 -1103.2168
+106602.2591780736 3.8645411 -1103.2168
+106603.2591781239 3.86462 -1103.2168
+106604.2591781742 3.8644624 -1103.2562
+106605.2591782245 3.864423 -1103.2168
+106606.2591782748 3.8645411 -1103.2761
+106607.2591783251 3.8644624 -1103.2168
+106608.2591783754 3.8644624 -1103.1774
+106609.2591784257 3.8644624 -1103.1576
+106610.2591784759 3.8644624 -1103.197
+106611.2591785262 3.8643444 -1103.197
+106612.2591785765 3.8643837 -1103.197
+106613.2591786268 3.8644624 -1103.2168
+106614.2591786771 3.864305 -1103.2562
+106615.2591787274 3.8643837 -1103.2761
+106616.2591787777 3.864305 -1103.3551
+106617.259178828 3.8643444 -1103.1774
+106618.2591788783 3.8643837 -1103.2366
+106619.2591789286 3.8642261 -1103.2959
+106620.2591789789 3.8642654 -1103.2168
+106621.2591790291 3.8641474 -1103.1774
+106622.2591790794 3.8641868 -1103.2562
+106623.2591791297 3.8641868 -1103.2366
+106624.25917918 3.8642654 -1103.2562
+106625.2591792303 3.8641868 -1103.2168
+106626.2591792806 3.8641868 -1103.2168
+106627.2591793309 3.8642261 -1103.1774
+106628.2591793812 3.8641474 -1103.2562
+106629.2591794315 3.8641081 -1103.2168
+106630.2591794818 3.8641081 -1103.1182
+106631.2591795321 3.8642261 -1103.2366
+106632.2591795824 3.8640687 -1103.1182
+106633.2591796326 3.8640687 -1103.2366
+106634.2591796829 3.8639901 -1103.1378
+106635.2591797332 3.8640294 -1103.2366
+106636.2591797835 3.8640687 -1103.1774
+106637.2591798338 3.8640294 -1103.2562
+106638.2591798841 3.8640687 -1103.2168
+106639.2591799344 3.8639901 -1103.1774
+106640.2591799847 3.8639901 -1103.1774
+106641.259180035 3.8639112 -1103.2366
+106642.2591800853 3.8638718 -1103.197
+106643.2591801356 3.8638325 -1103.197
+106644.2591801859 3.8639112 -1103.197
+106645.2591802361 3.8640294 -1103.2562
+106646.2591802864 3.8639505 -1103.2959
+106647.2591803367 3.8637931 -1103.197
+106648.259180387 3.8638718 -1103.1774
+106649.2591804373 3.8637931 -1103.2366
+106650.2591804876 3.8638325 -1103.1774
+106651.2591805379 3.8637538 -1103.2366
+106652.2591805882 3.8637145 -1103.2761
+106653.2591806385 3.8637145 -1103.2168
+106654.2591806888 3.8638325 -1103.1378
+106655.2591807391 3.8637538 -1103.2366
+106656.2591807893 3.8637145 -1103.1774
+106657.2591808396 3.8637538 -1103.2366
+106658.2591808899 3.8637145 -1103.1576
+106659.2591809402 3.8636751 -1103.197
+106660.2591809905 3.8637145 -1103.2562
+106661.2591810408 3.8635962 -1103.2168
+106662.2591810911 3.8636751 -1103.197
+106663.2591811414 3.8636751 -1103.1774
+106664.2591811917 3.8636355 -1103.1378
+106665.259181242 3.8635569 -1103.2168
+106666.2591812923 3.8635962 -1103.1576
+106667.2591813426 3.8635962 -1103.2761
+106668.2591813928 3.8635569 -1103.1576
+106669.2591814431 3.8635962 -1103.197
+106670.2591814934 3.8635175 -1103.1576
+106671.2591815437 3.8635175 -1103.197
+106672.259181594 3.8634782 -1103.2168
+106673.2591816443 3.8635175 -1103.1576
+106674.2591816946 3.8634388 -1103.197
+106675.2591817449 3.8633602 -1103.1576
+106676.2591817952 3.8633602 -1103.197
+106677.2591818455 3.8633602 -1103.2562
+106678.2591818958 3.8633995 -1103.2562
+106679.2591819461 3.8633995 -1103.1774
+106680.2591819963 3.8633602 -1103.1774
+106681.2591820466 3.8633206 -1103.2562
+106682.2591820969 3.8633206 -1103.2168
+106683.2591821472 3.8633602 -1103.1182
+106684.2591821975 3.8632813 -1103.2366
+106685.2591822478 3.8633206 -1103.197
+106686.2591822981 3.8633206 -1103.1576
+106687.2591823484 3.8632419 -1103.1774
+106688.2591823987 3.8632813 -1103.1774
+106689.259182449 3.8631239 -1103.1774
+106690.2591824993 3.8632813 -1103.197
+106691.2591825495 3.8631239 -1103.2168
+106692.2591825998 3.8632813 -1103.3353
+106693.2591826501 3.8632026 -1103.2168
+106694.2591827004 3.8631239 -1103.2761
+106695.2591827507 3.8631239 -1103.2366
+106696.259182801 3.8631632 -1103.197
+106697.2591828513 3.8632026 -1103.2562
+106698.2591829016 3.8630846 -1103.1576
+106699.2591829519 3.8630846 -1103.1182
+106700.2591830022 3.8630846 -1103.2562
+106701.2591830525 3.8629663 -1103.1774
+106702.2591831028 3.8628876 -1103.1378
+106703.259183153 3.8630452 -1103.1774
+106704.2591832033 3.8630056 -1103.2761
+106705.2591832536 3.8628876 -1103.2562
+106706.2591833039 3.8630056 -1103.1774
+106707.2591833542 3.8630056 -1103.2366
+106708.2591834045 3.862927 -1103.197
+106709.2591834548 3.8628876 -1103.1576
+106710.2591835051 3.8628876 -1103.2562
+106711.2591835554 3.8627696 -1103.1576
+106712.2591836057 3.8628876 -1103.2366
+106713.259183656 3.8627696 -1103.197
+106714.2591837063 3.862927 -1103.3353
+106715.2591837565 3.86273 -1103.2562
+106716.2591838068 3.86273 -1103.2168
+106717.2591838571 3.8627696 -1103.197
+106718.2591839074 3.8628483 -1103.1774
+106719.2591839577 3.8628876 -1103.1774
+106720.259184008 3.8628089 -1103.2562
+106721.2591840583 3.8627696 -1103.2761
+106722.2591841086 3.8626513 -1103.2959
+106723.2591841589 3.86273 -1103.2366
+106724.2591842092 3.8626513 -1103.2366
+106725.2591842595 3.8626513 -1103.197
+106726.2591843097 3.8627696 -1103.2168
+106727.25918436 3.8626907 -1103.2562
+106728.2591844103 3.8627696 -1103.2562
+106729.2591844606 3.862612 -1103.197
+106730.2591845109 3.862612 -1103.1774
+106731.2591845612 3.8625727 -1103.1774
+106732.2591846115 3.8625333 -1103.197
+106733.2591846618 3.862612 -1103.1576
+106734.2591847121 3.8625727 -1103.2562
+106735.2591847624 3.8625333 -1103.1774
+106736.2591848127 3.8625333 -1103.1576
+106737.259184863 3.8624547 -1103.2562
+106738.2591849132 3.8624547 -1103.2366
+106739.2591849635 3.8623757 -1103.2168
+106740.2591850138 3.8624547 -1103.197
+106741.2591850641 3.8624151 -1103.1576
+106742.2591851144 3.8624151 -1103.197
+106743.2591851647 3.8622971 -1103.3156
+106744.259185215 3.8622577 -1103.3156
+106745.2591852653 3.8623757 -1103.2562
+106746.2591853156 3.8622577 -1103.2366
+106747.2591853659 3.8623757 -1103.197
+106748.2591854162 3.8623364 -1103.1774
+106749.2591854665 3.8622971 -1103.2761
+106750.2591855167 3.8622971 -1103.2168
+106751.259185567 3.8622577 -1103.2761
+106752.2591856173 3.8623364 -1103.1182
+106753.2591856676 3.862179 -1103.197
+106754.2591857179 3.8621397 -1103.197
+106755.2591857682 3.8622184 -1103.3353
+106756.2591858185 3.862179 -1103.197
+106757.2591858688 3.8621001 -1103.197
+106758.2591859191 3.8621397 -1103.2366
+106759.2591859694 3.8622184 -1103.2959
+106760.2591860197 3.8621001 -1103.197
+106761.2591860699 3.8620608 -1103.197
+106762.2591861202 3.8620214 -1103.2168
+106763.2591861705 3.8619821 -1103.197
+106764.2591862208 3.8620608 -1103.2168
+106765.2591862711 3.8620608 -1103.2562
+106766.2591863214 3.8620214 -1103.2168
+106767.2591863717 3.8619821 -1103.197
+106768.259186422 3.8619034 -1103.2168
+106769.2591864723 3.8619034 -1103.2562
+106770.2591865226 3.8619034 -1103.197
+106771.2591865729 3.8620608 -1103.2168
+106772.2591866232 3.8619428 -1103.2366
+106773.2591866734 3.8618248 -1103.2562
+106774.2591867237 3.8619821 -1103.1576
+106775.259186774 3.8619034 -1103.2168
+106776.2591868243 3.8619034 -1103.2366
+106777.2591868746 3.8618641 -1103.2959
+106778.2591869249 3.8619034 -1103.2366
+106779.2591869752 3.8619034 -1103.2168
+106780.2591870255 3.8617458 -1103.2761
+106781.2591870758 3.8617852 -1103.1774
+106782.2591871261 3.8618248 -1103.2562
+106783.2591871764 3.8618248 -1103.2562
+106784.2591872266 3.8617458 -1103.1378
+106785.2591872769 3.8617852 -1103.1774
+106786.2591873272 3.8617458 -1103.197
+106787.2591873775 3.8617065 -1103.2168
+106788.2591874278 3.8617458 -1103.2366
+106789.2591874781 3.8616672 -1103.197
+106790.2591875284 3.8618248 -1103.2366
+106791.2591875787 3.8616672 -1103.2366
+106792.259187629 3.8616672 -1103.2959
+106793.2591876793 3.8616278 -1103.2761
+106794.2591877296 3.8615491 -1103.2562
+106795.2591877799 3.8616672 -1103.2168
+106796.2591878301 3.8615885 -1103.2168
+106797.2591878804 3.8616278 -1103.2168
+106798.2591879307 3.8615885 -1103.2168
+106799.259187981 3.8613915 -1103.2168
+106800.2591880313 3.8615491 -1103.2366
+106801.2591880816 3.8615491 -1103.2168
+106802.2591881319 3.8615098 -1103.197
+106803.2591881822 3.8614309 -1103.2168
+106804.2591882325 3.8614309 -1103.1774
+106805.2591882828 3.8615098 -1103.2959
+106806.2591883331 3.8613915 -1103.2168
+106807.2591883834 3.8614702 -1103.1378
+106808.2591884336 3.8614309 -1103.2168
+106809.2591884839 3.8614309 -1103.2959
+106810.2591885342 3.8615098 -1103.2761
+106811.2591885845 3.8612735 -1103.2761
+106812.2591886348 3.8613129 -1103.2562
+106813.2591886851 3.8612735 -1103.197
+106814.2591887354 3.8613129 -1103.1576
+106815.2591887857 3.8611948 -1103.197
+106816.259188836 3.8613129 -1103.2366
+106817.2591888863 3.8612342 -1103.2168
+106818.2591889366 3.8613522 -1103.2168
+106819.2591889868 3.8613522 -1103.1378
+106820.2591890371 3.8611553 -1103.197
+106821.2591890874 3.8612342 -1103.2366
+106822.2591891377 3.8611159 -1103.2562
+106823.259189188 3.8611159 -1103.2168
+106824.2591892383 3.8611948 -1103.197
+106825.2591892886 3.8611159 -1103.2366
+106826.2591893389 3.8611948 -1103.2366
+106827.2591893892 3.8611553 -1103.1774
+106828.2591894395 3.8611159 -1103.2168
+106829.2591894898 3.8611159 -1103.1774
+106830.2591895401 3.8611553 -1103.197
+106831.2591895903 3.8610766 -1103.2366
+106832.2591896406 3.8610766 -1103.2366
+106833.2591896909 3.8610373 -1103.197
+106834.2591897412 3.8609979 -1103.1576
+106835.2591897915 3.8610373 -1103.2168
+106836.2591898418 3.8609586 -1103.1774
+106837.2591898921 3.8609586 -1103.197
+106838.2591899424 3.8610373 -1103.2562
+106839.2591899927 3.8608797 -1103.1774
+106840.259190043 3.8609979 -1103.2562
+106841.2591900933 3.8609192 -1103.2168
+106842.2591901436 3.860801 -1103.1576
+106843.2591901938 3.8608797 -1103.2562
+106844.2591902441 3.8609192 -1103.2168
+106845.2591902944 3.8608797 -1103.2959
+106846.2591903447 3.8608403 -1103.1182
+106847.259190395 3.8607616 -1103.2562
+106848.2591904453 3.8609192 -1103.2168
+106849.2591904956 3.860801 -1103.2562
+106850.2591905459 3.8607223 -1103.1182
+106851.2591905962 3.860801 -1103.2959
+106852.2591906465 3.860683 -1103.197
+106853.2591906968 3.8607616 -1103.197
+106854.259190747 3.8607616 -1103.197
+106855.2591907973 3.860683 -1103.2366
+106856.2591908476 3.860683 -1103.1774
+106857.2591908979 3.860683 -1103.2761
+106858.2591909482 3.8607223 -1103.2761
+106859.2591909985 3.860683 -1103.2168
+106860.2591910488 3.8606436 -1103.2761
+106861.2591910991 3.860683 -1103.197
+106862.2591911494 3.8606436 -1103.1774
+106863.2591911997 3.8606436 -1103.2366
+106864.25919125 3.8605254 -1103.2562
+106865.2591913003 3.860486 -1103.2168
+106866.2591913505 3.8604467 -1103.197
+106867.2591914008 3.8605254 -1103.2562
+106868.2591914511 3.8604074 -1103.2168
+106869.2591915014 3.8604467 -1103.2366
+106870.2591915517 3.860486 -1103.2168
+106871.259191602 3.8604074 -1103.2562
+106872.2591916523 3.8604074 -1103.197
+106873.2591917026 3.8603287 -1103.2959
+106874.2591917529 3.8604467 -1103.2366
+106875.2591918032 3.8603287 -1103.1576
+106876.2591918535 3.860368 -1103.2562
+106877.2591919038 3.8604467 -1103.2562
+106878.259191954 3.8602893 -1103.1774
+106879.2591920043 3.8602893 -1103.2562
+106880.2591920546 3.860368 -1103.197
+106881.2591921049 3.860368 -1103.1576
+106882.2591921552 3.8602498 -1103.197
+106883.2591922055 3.8603287 -1103.197
+106884.2591922558 3.8601711 -1103.2366
+106885.2591923061 3.8602104 -1103.197
+106886.2591923564 3.8602104 -1103.2168
+106887.2591924067 3.8601711 -1103.197
+106888.259192457 3.8602498 -1103.1182
+106889.2591925072 3.8600924 -1103.2366
+106890.2591925575 3.8601317 -1103.2168
+106891.2591926078 3.8601711 -1103.2761
+106892.2591926581 3.8601317 -1103.2168
+106893.2591927084 3.8599744 -1103.2562
+106894.2591927587 3.8600924 -1103.197
+106895.259192809 3.8601317 -1103.2562
+106896.2591928593 3.8601317 -1103.2366
+106897.2591929096 3.8600531 -1103.2168
+106898.2591929599 3.8600531 -1103.2366
+106899.2591930102 3.8599348 -1103.2562
+106900.2591930605 3.8599744 -1103.2366
+106901.2591931107 3.8600531 -1103.1774
+106902.259193161 3.8600137 -1103.197
+106903.2591932113 3.8598561 -1103.2562
+106904.2591932616 3.8598955 -1103.1774
+106905.2591933119 3.8599348 -1103.2366
+106906.2591933622 3.8599744 -1103.2562
+106907.2591934125 3.8599744 -1103.197
+106908.2591934628 3.8598955 -1103.2168
+106909.2591935131 3.8598561 -1103.3353
+106910.2591935634 3.8598561 -1103.2959
+106911.2591936137 3.8598561 -1103.2168
+106912.259193664 3.8597775 -1103.1774
+106913.2591937142 3.8598168 -1103.2366
+106914.2591937645 3.8598561 -1103.2562
+106915.2591938148 3.8598561 -1103.1576
+106916.2591938651 3.8596988 -1103.197
+106917.2591939154 3.8598168 -1103.2959
+106918.2591939657 3.8597775 -1103.197
+106919.259194016 3.8596594 -1103.2959
+106920.2591940663 3.8596594 -1103.2562
+106921.2591941166 3.8596199 -1103.197
+106922.2591941669 3.8596988 -1103.197
+106923.2591942172 3.8597381 -1103.2959
+106924.2591942674 3.8595805 -1103.1774
+106925.2591943177 3.8596988 -1103.2959
+106926.259194368 3.8595805 -1103.2761
+106927.2591944183 3.8596594 -1103.197
+106928.2591944686 3.8595805 -1103.1774
+106929.2591945189 3.8595805 -1103.1378
+106930.2591945692 3.8596199 -1103.197
+106931.2591946195 3.8595412 -1103.1378
+106932.2591946698 3.8594625 -1103.1576
+106933.2591947201 3.8596199 -1103.1774
+106934.2591947704 3.8595018 -1103.2168
+106935.2591948207 3.8595018 -1103.2168
+106936.2591948709 3.8595018 -1103.197
+106937.2591949212 3.8595412 -1103.2366
+106938.2591949715 3.8594625 -1103.1774
+106939.2591950218 3.8593838 -1103.2168
+106940.2591950721 3.8593838 -1103.2366
+106941.2591951224 3.8593445 -1103.2562
+106942.2591951727 3.8593049 -1103.1774
+106943.259195223 3.8593049 -1103.1774
+106944.2591952733 3.8593838 -1103.2562
+106945.2591953236 3.8593049 -1103.1378
+106946.2591953739 3.8592262 -1103.2168
+106947.2591954242 3.8593049 -1103.1378
+106948.2591954744 3.8593049 -1103.2366
+106949.2591955247 3.8592656 -1103.2562
+106950.259195575 3.8592262 -1103.2168
+106951.2591956253 3.8591869 -1103.2168
+106952.2591956756 3.8591869 -1103.2168
+106953.2591957259 3.8591869 -1103.1774
+106954.2591957762 3.8592262 -1103.0984
+106955.2591958265 3.8591082 -1103.2168
+106956.2591958768 3.8592262 -1103.1774
+106957.2591959271 3.8590689 -1103.197
+106958.2591959774 3.8590689 -1103.2562
+106959.2591960276 3.8591475 -1103.2761
+106960.2591960779 3.8591869 -1103.2562
+106961.2591961282 3.8590293 -1103.1774
+106962.2591961785 3.8591475 -1103.2761
+106963.2591962288 3.8590293 -1103.1576
+106964.2591962791 3.8590293 -1103.197
+106965.2591963294 3.8589113 -1103.2959
+106966.2591963797 3.85899 -1103.1576
+106967.25919643 3.85899 -1103.2366
+106968.2591964803 3.8589506 -1103.2761
+106969.2591965306 3.85899 -1103.2366
+106970.2591965809 3.8589113 -1103.2761
+106971.2591966311 3.8588719 -1103.2168
+106972.2591966814 3.8588719 -1103.2562
+106973.2591967317 3.8588719 -1103.1774
+106974.259196782 3.8589113 -1103.1774
+106975.2591968323 3.8588719 -1103.2562
+106976.2591968826 3.8588719 -1103.2959
+106977.2591969329 3.8588326 -1103.2761
+106978.2591969832 3.8588326 -1103.2366
+106979.2591970335 3.8587143 -1103.2168
+106980.2591970838 3.8587933 -1103.197
+106981.2591971341 3.8588326 -1103.2168
+106982.2591971844 3.8587143 -1103.1774
+106983.2591972346 3.8586357 -1103.2366
+106984.2591972849 3.8586357 -1103.3353
+106985.2591973352 3.8586357 -1103.3156
+106986.2591973855 3.858675 -1103.197
+106987.2591974358 3.858675 -1103.2168
+106988.2591974861 3.858675 -1103.1378
+106989.2591975364 3.8587143 -1103.1378
+106990.2591975867 3.8586357 -1103.3156
+106991.259197637 3.858675 -1103.2168
+106992.2591976873 3.858675 -1103.1576
+106993.2591977376 3.858557 -1103.197
+106994.2591977878 3.8586357 -1103.2562
+106995.2591978381 3.8585176 -1103.2959
+106996.2591978884 3.8583994 -1103.2168
+106997.2591979387 3.858439 -1103.2761
+106998.259197989 3.8585963 -1103.2562
+106999.2591980393 3.8585176 -1103.2168
+107000.2591980896 3.8583994 -1103.2562
+107001.2591981399 3.858439 -1103.2366
+107002.2591981902 3.8583994 -1103.197
+107003.2591982405 3.8585176 -1103.197
+107004.2591982908 3.8583994 -1103.1576
+107005.2591983411 3.8583601 -1103.2366
+107006.2591983913 3.8584783 -1103.1774
+107007.2591984416 3.8583601 -1103.1774
+107008.2591984919 3.858439 -1103.2761
+107009.2591985422 3.8583207 -1103.1182
+107010.2591985925 3.8582814 -1103.1774
+107011.2591986428 3.858439 -1103.2562
+107012.2591986931 3.8582814 -1103.2366
+107013.2591987434 3.8583207 -1103.197
+107014.2591987937 3.8583207 -1103.1774
+107015.259198844 3.8583207 -1103.2168
+107016.2591988943 3.8581634 -1103.2168
+107017.2591989446 3.8581634 -1103.1774
+107018.2591989948 3.8580451 -1103.1774
+107019.2591990451 3.8581634 -1103.1378
+107020.2591990954 3.858242 -1103.197
+107021.2591991457 3.858242 -1103.197
+107022.259199196 3.8581634 -1103.1774
+107023.2591992463 3.8580844 -1103.197
+107024.2591992966 3.8580451 -1103.2761
+107025.2591993469 3.858124 -1103.2562
+107026.2591993972 3.858124 -1103.3156
+107027.2591994475 3.8580844 -1103.2168
+107028.2591994978 3.8580844 -1103.2366
+107029.259199548 3.8580451 -1103.2761
+107030.2591995983 3.8580058 -1103.1378
+107031.2591996486 3.8579271 -1103.1182
+107032.2591996989 3.8579271 -1103.1774
+107033.2591997492 3.8579271 -1103.197
+107034.2591997995 3.8580451 -1103.2562
+107035.2591998498 3.8579664 -1103.2761
+107036.2591999001 3.8578877 -1103.2168
+107037.2591999504 3.8578877 -1103.197
+107038.2592000007 3.8579664 -1103.1576
+107039.259200051 3.8579271 -1103.1774
+107040.2592001013 3.8578877 -1103.2562
+107041.2592001515 3.8578484 -1103.2168
+107042.2592002018 3.8578484 -1103.2366
+107043.2592002521 3.8578091 -1103.1774
+107044.2592003024 3.8578877 -1103.2366
+107045.2592003527 3.8578091 -1103.2168
+107046.259200403 3.8577695 -1103.1378
+107047.2592004533 3.8577695 -1103.2366
+107048.2592005036 3.8578091 -1103.1774
+107049.2592005539 3.8577302 -1103.1774
+107050.2592006042 3.8577695 -1103.197
+107051.2592006545 3.8576121 -1103.197
+107052.2592007048 3.8577695 -1103.1576
+107053.259200755 3.8576908 -1103.2366
+107054.2592008053 3.8576515 -1103.2168
+107055.2592008556 3.8576121 -1103.2366
+107056.2592009059 3.8576515 -1103.197
+107057.2592009562 3.8576121 -1103.1774
+107058.2592010065 3.8576121 -1103.1774
+107059.2592010568 3.8575728 -1103.1576
+107060.2592011071 3.8575335 -1103.2168
+107061.2592011574 3.8576121 -1103.2562
+107062.2592012077 3.8575335 -1103.1576
+107063.259201258 3.8574941 -1103.2168
+107064.2592013082 3.8575335 -1103.1378
+107065.2592013585 3.8575335 -1103.2168
+107066.2592014088 3.8574545 -1103.197
+107067.2592014591 3.8574545 -1103.2168
+107068.2592015094 3.8573759 -1103.2562
+107069.2592015597 3.8574152 -1103.1576
+107070.25920161 3.8574152 -1103.2366
+107071.2592016603 3.8573759 -1103.2366
+107072.2592017106 3.8574941 -1103.2366
+107073.2592017609 3.8573365 -1103.1576
+107074.2592018112 3.8573365 -1103.1774
+107075.2592018615 3.8572578 -1103.2168
+107076.2592019117 3.8572972 -1103.197
+107077.259201962 3.8573365 -1103.2761
+107078.2592020123 3.8573365 -1103.1774
+107079.2592020626 3.8573759 -1103.197
+107080.2592021129 3.8572185 -1103.2168
+107081.2592021632 3.8572578 -1103.2761
+107082.2592022135 3.8571789 -1103.2366
+107083.2592022638 3.8572578 -1103.2168
+107084.2592023141 3.8572578 -1103.2761
+107085.2592023644 3.8572185 -1103.2366
+107086.2592024147 3.8571789 -1103.2168
+107087.2592024649 3.8571396 -1103.0785
+107088.2592025152 3.8571002 -1103.2562
+107089.2592025655 3.8571002 -1103.197
+107090.2592026158 3.8571396 -1103.1182
+107091.2592026661 3.8571002 -1103.1576
+107092.2592027164 3.8570216 -1103.1774
+107093.2592027667 3.8571002 -1103.1774
+107094.259202817 3.8569036 -1103.1774
+107095.2592028673 3.8570609 -1103.197
+107096.2592029176 3.8569822 -1103.2959
+107097.2592029679 3.8570216 -1103.2168
+107098.2592030182 3.8570609 -1103.2562
+107099.2592030684 3.8569822 -1103.1774
+107100.2592031187 3.8570216 -1103.2366
+107101.259203169 3.8570609 -1103.2366
+107102.2592032193 3.8570216 -1103.1576
+107103.2592032696 3.8569036 -1103.197
+107104.2592033199 3.8568246 -1103.197
+107105.2592033702 3.8569036 -1103.197
+107106.2592034205 3.8569036 -1103.2366
+107107.2592034708 3.8568246 -1103.1576
+107108.2592035211 3.856864 -1103.197
+107109.2592035714 3.8568246 -1103.2366
+107110.2592036217 3.8568246 -1103.197
+107111.2592036719 3.8569036 -1103.2168
+107112.2592037222 3.8567853 -1103.2761
+107113.2592037725 3.8567853 -1103.197
+107114.2592038228 3.856864 -1103.2959
+107115.2592038731 3.856746 -1103.2562
+107116.2592039234 3.8567853 -1103.1774
+107117.2592039737 3.8567066 -1103.1774
+107118.259204024 3.8567066 -1103.1576
+107119.2592040743 3.8566279 -1103.2168
+107120.2592041246 3.8565886 -1103.197
+107121.2592041749 3.8566673 -1103.1576
+107122.2592042251 3.8566673 -1103.1576
+107123.2592042754 3.8566673 -1103.1576
+107124.2592043257 3.8566279 -1103.2168
+107125.259204376 3.8565886 -1103.0984
+107126.2592044263 3.8566279 -1103.1774
+107127.2592044766 3.856549 -1103.2366
+107128.2592045269 3.856431 -1103.2168
+107129.2592045772 3.856549 -1103.1576
+107130.2592046275 3.8565097 -1103.2366
+107131.2592046778 3.8565097 -1103.1774
+107132.2592047281 3.8563917 -1103.2168
+107133.2592047784 3.8563523 -1103.197
+107134.2592048286 3.8565097 -1103.2761
+107135.2592048789 3.8563917 -1103.1774
+107136.2592049292 3.856431 -1103.1378
+107137.2592049795 3.8564703 -1103.2562
+107138.2592050298 3.856431 -1103.1576
+107139.2592050801 3.8563917 -1103.197
+107140.2592051304 3.8562737 -1103.1774
+107141.2592051807 3.8563523 -1103.197
+107142.259205231 3.856313 -1103.2168
+107143.2592052813 3.8562737 -1103.2168
+107144.2592053316 3.8562737 -1103.2761
+107145.2592053819 3.8562341 -1103.197
+107146.2592054321 3.8562737 -1103.2366
+107147.2592054824 3.8562737 -1103.197
+107148.2592055327 3.8561947 -1103.2959
+107149.259205583 3.8562341 -1103.1774
+107150.2592056333 3.8562341 -1103.2366
+107151.2592056836 3.8561947 -1103.197
+107152.2592057339 3.8560767 -1103.2562
+107153.2592057842 3.8560767 -1103.2366
+107154.2592058345 3.8561947 -1103.1576
+107155.2592058848 3.8561554 -1103.2168
+107156.2592059351 3.8561947 -1103.2168
+107157.2592059853 3.8559587 -1103.2366
+107158.2592060356 3.8558798 -1103.1774
+107159.2592060859 3.8561161 -1103.2168
+107160.2592061362 3.8559587 -1103.2562
+107161.2592061865 3.855998 -1103.1774
+107162.2592062368 3.8560767 -1103.2366
+107163.2592062871 3.8559587 -1103.197
+107164.2592063374 3.855998 -1103.2366
+107165.2592063877 3.8558798 -1103.1576
+107166.259206438 3.8559587 -1103.2366
+107167.2592064883 3.8559587 -1103.2761
+107168.2592065386 3.8559587 -1103.2761
+107169.2592065888 3.8559587 -1103.2168
+107170.2592066391 3.8558404 -1103.1378
+107171.2592066894 3.8558798 -1103.2366
+107172.2592067397 3.8559587 -1103.1378
+107173.25920679 3.8559191 -1103.2366
+107174.2592068403 3.8559587 -1103.2562
+107175.2592068906 3.8558011 -1103.1774
+107176.2592069409 3.8557618 -1103.1378
+107177.2592069912 3.8557618 -1103.2366
+107178.2592070415 3.8557224 -1103.2366
+107179.2592070918 3.8557224 -1103.2366
+107180.2592071421 3.8557618 -1103.2168
+107181.2592071923 3.8557224 -1103.2562
+107182.2592072426 3.8557618 -1103.1182
+107183.2592072929 3.8556831 -1103.1182
+107184.2592073432 3.8555648 -1103.2761
+107185.2592073935 3.8556435 -1103.197
+107186.2592074438 3.8556042 -1103.2959
+107187.2592074941 3.8556042 -1103.2562
+107188.2592075444 3.8556435 -1103.2366
+107189.2592075947 3.8555648 -1103.197
+107190.259207645 3.8555648 -1103.2168
+107191.2592076953 3.8555648 -1103.1378
+107192.2592077455 3.8555255 -1103.2168
+107193.2592077958 3.8554862 -1103.1774
+107194.2592078461 3.8555648 -1103.197
+107195.2592078964 3.8555255 -1103.2562
+107196.2592079467 3.8555255 -1103.2959
+107197.259207997 3.8554862 -1103.2168
+107198.2592080473 3.8554075 -1103.2562
+107199.2592080976 3.8553681 -1103.2562
+107200.2592081479 3.8554075 -1103.1774
+107201.2592081982 3.8554075 -1103.1182
+107202.2592082485 3.8553681 -1103.1774
+107203.2592082988 3.8553286 -1103.2168
+107204.259208349 3.8553681 -1103.2366
+107205.2592083993 3.8554862 -1103.197
+107206.2592084496 3.8552499 -1103.2562
+107207.2592084999 3.8553286 -1103.2366
+107208.2592085502 3.8552892 -1103.2168
+107209.2592086005 3.8552892 -1103.1774
+107210.2592086508 3.8553286 -1103.2562
+107211.2592087011 3.8552499 -1103.1576
+107212.2592087514 3.8552105 -1103.2562
+107213.2592088017 3.8552105 -1103.2366
+107214.259208852 3.8550532 -1103.2366
+107215.2592089023 3.8552892 -1103.3353
+107216.2592089525 3.8551712 -1105.2115
+107217.2592090028 3.8550925 -1105.1327
+107218.2592090531 3.8549743 -1105.1523
+107219.2592091034 3.8550925 -1104.066
+107220.2592091537 3.8550136 -1104.8759
+107221.259209204 3.8551319 -1104.9944
+107222.2592092543 3.8549743 -1104.9351
+107223.2592093046 3.8550925 -1100.1555
+107224.2592093549 3.8551319 -1097.4497
+107225.2592094052 3.8550925 -1097.4893
+107226.2592094555 3.8550532 -1097.4497
+107227.2592095057 3.8550532 -1101.6368
+107228.259209556 3.8549349 -1105.0536
+107229.2592096063 3.8548956 -1106.6732
+107230.2592096566 3.8548956 -1106.6732
+107231.2592097069 3.8547776 -1106.6929
+107232.2592097572 3.8548563 -1102.1504
+107233.2592098075 3.8550136 -1101.1628
+107234.2592098578 3.8549349 -1101.1628
+107235.2592099081 3.8548956 -1101.0839
+107236.2592099584 3.8547382 -1103.2168
+107237.2592100087 3.8549349 -1103.197
+107238.259210059 3.8549743 -1103.2562
+107239.2592101092 3.8547776 -1103.197
+107240.2592101595 3.8548563 -1103.2366
+107241.2592102098 3.8548169 -1102.723
+107242.2592102601 3.8548169 -1102.5651
+107243.2592103104 3.8547382 -1102.4861
+107244.2592103607 3.8546987 -1102.5255
+107245.259210411 3.8547776 -1103.3156
+107246.2592104613 3.8547776 -1103.6119
+107247.2592105116 3.85462 -1103.6316
+107248.2592105619 3.8546593 -1103.6316
+107249.2592106122 3.8546593 -1103.5131
+107250.2592106625 3.8546593 -1103.5526
+107251.2592107127 3.8547382 -1103.6316
+107252.259210763 3.8546593 -1103.7106
+107253.2592108133 3.8545413 -1103.6119
+107254.2592108636 3.85462 -1103.3551
+107255.2592109139 3.85462 -1103.4736
+107256.2592109642 3.854502 -1103.5526
+107257.2592110145 3.85462 -1103.5328
+107258.2592110648 3.8545806 -1103.0588
+107259.2592111151 3.8544626 -1103.3749
+107260.2592111654 3.8544233 -1103.1378
+107261.2592112157 3.8544626 -1103.4539
+107262.2592112659 3.854502 -1103.1774
+107263.2592113162 3.8544626 -1103.1774
+107264.2592113665 3.8544233 -1102.9996
+107265.2592114168 3.854305 -1103.2562
+107266.2592114671 3.8544233 -1103.2959
+107267.2592115174 3.854305 -1103.2168
+107268.2592115677 3.8544233 -1103.2366
+107269.259211618 3.8543837 -1103.2366
+107270.2592116683 3.8543444 -1103.1378
+107271.2592117186 3.8543444 -1103.2366
+107272.2592117689 3.8542657 -1103.3156
+107273.2592118192 3.854187 -1103.2168
+107274.2592118694 3.8542657 -1103.2562
+107275.2592119197 3.854305 -1103.1182
+107276.25921197 3.854187 -1103.2168
+107277.2592120203 3.8541477 -1103.1774
+107278.2592120706 3.8542264 -1103.2562
+107279.2592121209 3.8542264 -1103.2562
+107280.2592121712 3.8542264 -1103.197
+107281.2592122215 3.854187 -1103.197
+107282.2592122718 3.8541083 -1103.2562
+107283.2592123221 3.8542264 -1103.197
+107284.2592123724 3.8540294 -1103.197
+107285.2592124227 3.854187 -1103.2761
+107286.2592124729 3.8541083 -1103.197
+107287.2592125232 3.8540688 -1103.1774
+107288.2592125735 3.8539507 -1103.197
+107289.2592126238 3.8540294 -1103.197
+107290.2592126741 3.8541083 -1103.3551
+107291.2592127244 3.8540688 -1103.197
+107292.2592127747 3.8539507 -1103.2761
+107293.259212825 3.8539114 -1103.2761
+107294.2592128753 3.8539114 -1103.197
+107295.2592129256 3.8540294 -1103.2366
+107296.2592129759 3.8539901 -1103.3156
+107297.2592130261 3.8538721 -1103.2761
+107298.2592130764 3.8538721 -1103.2562
+107299.2592131267 3.8538721 -1103.2366
+107300.259213177 3.8538721 -1103.2959
+107301.2592132273 3.8538721 -1103.2761
+107302.2592132776 3.8538327 -1103.3156
+107303.2592133279 3.8538721 -1103.2761
+107304.2592133782 3.8538721 -1103.2761
+107305.2592134285 3.8537931 -1103.2761
+107306.2592134788 3.8537931 -1103.2562
+107307.2592135291 3.8538327 -1103.197
+107308.2592135794 3.8537145 -1103.2366
+107309.2592136296 3.8537145 -1103.1182
+107310.2592136799 3.8537145 -1103.2562
+107311.2592137302 3.8536751 -1103.197
+107312.2592137805 3.8537538 -1103.2761
+107313.2592138308 3.8536751 -1103.2959
+107314.2592138811 3.8535571 -1103.2562
+107315.2592139314 3.8535571 -1103.1576
+107316.2592139817 3.8536358 -1103.197
+107317.259214032 3.8535571 -1103.2366
+107318.2592140823 3.8535178 -1103.2562
+107319.2592141326 3.8536751 -1103.2761
+107320.2592141829 3.8536358 -1103.2168
+107321.2592142331 3.8535964 -1103.1774
+107322.2592142834 3.8535964 -1103.1774
+107323.2592143337 3.8534782 -1103.2366
+107324.259214384 3.8533995 -1103.2168
+107325.2592144343 3.8535178 -1103.1378
+107326.2592144846 3.8534782 -1103.197
+107327.2592145349 3.8534389 -1103.2168
+107328.2592145852 3.8534389 -1103.1774
+107329.2592146355 3.8534389 -1103.1774
+107330.2592146858 3.8533995 -1103.2366
+107331.2592147361 3.8533995 -1103.2366
+107332.2592147863 3.8534389 -1103.2761
+107333.2592148366 3.8533208 -1103.2761
+107334.2592148869 3.8533602 -1103.2562
+107335.2592149372 3.8533602 -1103.2562
+107336.2592149875 3.8533602 -1103.3353
+107337.2592150378 3.8533602 -1103.2959
+107338.2592150881 3.8532815 -1103.1774
+107339.2592151384 3.8532422 -1103.1576
+107340.2592151887 3.8533208 -1103.197
+107341.259215239 3.8531632 -1103.3156
+107342.2592152893 3.8532422 -1103.1378
+107343.2592153396 3.8531632 -1103.2366
+107344.2592153898 3.8531239 -1103.197
+107345.2592154401 3.8532422 -1103.2168
+107346.2592154904 3.8530846 -1103.2761
+107347.2592155407 3.8530846 -1103.2366
+107348.259215591 3.8531239 -1103.2366
+107349.2592156413 3.8530452 -1103.1774
+107350.2592156916 3.8531632 -1103.2366
+107351.2592157419 3.8530452 -1103.2366
+107352.2592157922 3.8530846 -1103.2168
+107353.2592158425 3.8530846 -1103.2366
+107354.2592158928 3.8529665 -1103.2366
+107355.2592159431 3.8530846 -1103.2366
+107356.2592159933 3.8530452 -1103.2366
+107357.2592160436 3.8530452 -1103.197
+107358.2592160939 3.8529665 -1103.197
+107359.2592161442 3.8529272 -1103.2761
+107360.2592161945 3.8529665 -1103.2562
+107361.2592162448 3.8529272 -1103.2761
+107362.2592162951 3.8530059 -1103.197
+107363.2592163454 3.8529272 -1103.2562
+107364.2592163957 3.8528483 -1103.2562
+107365.259216446 3.852809 -1103.1774
+107366.2592164963 3.8528483 -1103.197
+107367.2592165465 3.8527303 -1103.2366
+107368.2592165968 3.8527696 -1103.197
+107369.2592166471 3.8527696 -1103.1774
+107370.2592166974 3.852809 -1103.2168
+107371.2592167477 3.8527303 -1103.2562
+107372.259216798 3.8527696 -1103.2366
+107373.2592168483 3.8526909 -1103.1774
+107374.2592168986 3.8527696 -1103.2761
+107375.2592169489 3.8527303 -1103.1774
+107376.2592169992 3.8526909 -1103.2168
+107377.2592170495 3.8526516 -1103.2168
+107378.2592170998 3.8526516 -1103.197
+107379.25921715 3.8526909 -1103.2366
+107380.2592172003 3.8526909 -1103.197
+107381.2592172506 3.8525333 -1103.2761
+107382.2592173009 3.8526516 -1103.197
+107383.2592173512 3.852494 -1103.2168
+107384.2592174015 3.8526123 -1103.2761
+107385.2592174518 3.852494 -1103.2366
+107386.2592175021 3.8525333 -1103.197
+107387.2592175524 3.852494 -1103.197
+107388.2592176027 3.852494 -1103.2761
+107389.259217653 3.8524153 -1103.3551
+107390.2592177032 3.8524547 -1103.3156
+107391.2592177535 3.852494 -1103.2562
+107392.2592178038 3.8524153 -1103.2168
+107393.2592178541 3.852494 -1103.2562
+107394.2592179044 3.8524153 -1103.2168
+107395.2592179547 3.8524547 -1103.2562
+107396.259218005 3.8523366 -1103.197
+107397.2592180553 3.8522973 -1103.2168
+107398.2592181056 3.8522973 -1103.2761
+107399.2592181559 3.8523366 -1103.2959
+107400.2592182062 3.8522973 -1103.2366
+107401.2592182565 3.8522184 -1103.2168
+107402.2592183067 3.852258 -1103.2168
+107403.259218357 3.8522184 -1103.3353
+107404.2592184073 3.8522973 -1103.0984
+107405.2592184576 3.8521397 -1103.1182
+107406.2592185079 3.8522184 -1103.1182
+107407.2592185582 3.8522973 -1103.1378
+107408.2592186085 3.8521397 -1103.197
+107409.2592186588 3.8521397 -1103.2366
+107410.2592187091 3.8521004 -1103.1774
+107411.2592187594 3.8521791 -1103.2366
+107412.2592188097 3.8521791 -1103.2168
+107413.25921886 3.852061 -1103.2366
+107414.2592189102 3.8521397 -1103.2366
+107415.2592189605 3.8521004 -1103.2168
+107416.2592190108 3.8520217 -1103.197
+107417.2592190611 3.8520217 -1103.197
+107418.2592191114 3.8519428 -1103.197
+107419.2592191617 3.852061 -1103.2168
+107420.259219212 3.8519824 -1103.197
+107421.2592192623 3.852061 -1103.2168
+107422.2592193126 3.8520217 -1103.2761
+107423.2592193629 3.8519824 -1103.1774
+107424.2592194132 3.8519428 -1103.2562
+107425.2592194634 3.8519428 -1103.2959
+107426.2592195137 3.8519428 -1103.1774
+107427.259219564 3.8518641 -1103.2761
+107428.2592196143 3.8519428 -1103.2366
+107429.2592196646 3.8517854 -1103.2168
+107430.2592197149 3.8517854 -1103.3551
+107431.2592197652 3.8517461 -1103.197
+107432.2592198155 3.8518248 -1103.2168
+107433.2592198658 3.8517854 -1103.1774
+107434.2592199161 3.8519034 -1103.2959
+107435.2592199664 3.8517461 -1103.197
+107436.2592200167 3.8517461 -1103.2761
+107437.2592200669 3.8518248 -1103.197
+107438.2592201172 3.8517461 -1103.2366
+107439.2592201675 3.8515885 -1103.2562
+107440.2592202178 3.8516674 -1103.2959
+107441.2592202681 3.8515885 -1103.2168
+107442.2592203184 3.8515098 -1103.1774
+107443.2592203687 3.8516674 -1103.197
+107444.259220419 3.8516278 -1103.2562
+107445.2592204693 3.8515885 -1103.2761
+107446.2592205196 3.8515885 -1103.2562
+107447.2592205699 3.8516278 -1103.2562
+107448.2592206202 3.8515885 -1103.2562
+107449.2592206704 3.8515491 -1103.3749
+107450.2592207207 3.8515491 -1103.2959
+107451.259220771 3.8515491 -1103.3551
+107452.2592208213 3.8515885 -1103.2366
+107453.2592208716 3.8514311 -1103.3156
+107454.2592209219 3.8513918 -1103.2562
+107455.2592209722 3.8514311 -1103.2959
+107456.2592210225 3.8513525 -1103.1378
+107457.2592210728 3.8514311 -1103.2562
+107458.2592211231 3.8513918 -1103.1378
+107459.2592211734 3.8514311 -1103.197
+107460.2592212236 3.8514705 -1103.2366
+107461.2592212739 3.8513129 -1103.2366
+107462.2592213242 3.8513918 -1103.2959
+107463.2592213745 3.8513129 -1103.2366
+107464.2592214248 3.8512342 -1103.1774
+107465.2592214751 3.8513525 -1103.2761
+107466.2592215254 3.8511162 -1103.2366
+107467.2592215757 3.8512342 -1103.2168
+107468.259221626 3.8511949 -1103.2562
+107469.2592216763 3.8513129 -1103.2959
+107470.2592217266 3.8511949 -1103.2562
+107471.2592217769 3.8511162 -1103.2366
+107472.2592218271 3.8511949 -1103.197
+107473.2592218774 3.8511555 -1103.2168
+107474.2592219277 3.8511555 -1103.2366
+107475.259221978 3.8511555 -1103.2562
+107476.2592220283 3.8510375 -1103.2366
+107477.2592220786 3.8511555 -1103.2366
+107478.2592221289 3.8511555 -1103.2761
+107479.2592221792 3.8510375 -1103.2168
+107480.2592222295 3.8510768 -1103.1774
+107481.2592222798 3.8509979 -1103.197
+107482.2592223301 3.8509979 -1103.2761
+107483.2592223804 3.8509979 -1103.2562
+107484.2592224306 3.8509586 -1103.2761
+107485.2592224809 3.8509586 -1103.2761
+107486.2592225312 3.8508799 -1103.2761
+107487.2592225815 3.8509586 -1103.2562
+107488.2592226318 3.8509192 -1103.2761
+107489.2592226821 3.8508799 -1103.1774
+107490.2592227324 3.8508012 -1103.2562
+107491.2592227827 3.8508799 -1103.2761
+107492.259222833 3.8509192 -1103.2168
+107493.2592228833 3.8507619 -1103.3551
+107494.2592229336 3.8508012 -1103.2761
+107495.2592229838 3.8509192 -1103.1774
+107496.2592230341 3.8508012 -1103.2761
+107497.2592230844 3.8507226 -1103.2562
+107498.2592231347 3.8508012 -1103.2959
+107499.259223185 3.8507619 -1103.2168
+107500.2592232353 3.8507226 -1103.2761
+107501.2592232856 3.8507619 -1103.2168
+107502.2592233359 3.8506436 -1103.1774
+107503.2592233862 3.850565 -1103.3156
+107504.2592234365 3.850565 -1103.2366
+107505.2592234868 3.8506043 -1103.2168
+107506.2592235371 3.850683 -1103.1774
+107507.2592235873 3.850565 -1103.2761
+107508.2592236376 3.8506436 -1103.1774
+107509.2592236879 3.8505256 -1103.3156
+107510.2592237382 3.8506436 -1103.2761
+107511.2592237885 3.8506043 -1103.2366
+107512.2592238388 3.8506043 -1103.2168
+107513.2592238891 3.8506043 -1103.2562
+107514.2592239394 3.8504469 -1103.2562
+107515.2592239897 3.8504863 -1103.197
+107516.25922404 3.8504469 -1103.2366
+107517.2592240903 3.8504469 -1103.2168
+107518.2592241406 3.8504076 -1103.2562
+107519.2592241908 3.8504076 -1103.2761
+107520.2592242411 3.8504469 -1103.2959
+107521.2592242914 3.850368 -1103.2761
+107522.2592243417 3.850368 -1103.2761
+107523.259224392 3.8502893 -1103.2562
+107524.2592244423 3.850368 -1103.1576
+107525.2592244926 3.850368 -1103.2168
+107526.2592245429 3.8502893 -1103.3353
+107527.2592245932 3.8502893 -1103.2168
+107528.2592246435 3.85025 -1103.2366
+107529.2592246938 3.8502893 -1103.1774
+107530.259224744 3.8501713 -1103.2562
+107531.2592247943 3.850132 -1103.2366
+107532.2592248446 3.8502107 -1103.3353
+107533.2592248949 3.8502107 -1103.2562
+107534.2592249452 3.8501713 -1103.2168
+107535.2592249955 3.8501713 -1103.2959
+107536.2592250458 3.8502107 -1103.2959
+107537.2592250961 3.8501713 -1103.3353
+107538.2592251464 3.8501713 -1103.3156
+107539.2592251967 3.8501713 -1103.2562
+107540.259225247 3.850132 -1103.2562
+107541.2592252973 3.850132 -1103.2761
+107542.2592253475 3.8500924 -1103.2168
+107543.2592253978 3.8500137 -1103.2562
+107544.2592254481 3.8499744 -1103.2761
+107545.2592254984 3.8498957 -1103.2168
+107546.2592255487 3.8499351 -1103.2761
+107547.259225599 3.8500137 -1103.2168
+107548.2592256493 3.8499744 -1103.2562
+107549.2592256996 3.8500137 -1103.3156
+107550.2592257499 3.8498957 -1103.2168
+107551.2592258002 3.8498564 -1103.2562
+107552.2592258505 3.8498957 -1103.2168
+107553.2592259008 3.849817 -1103.197
+107554.259225951 3.8498957 -1103.197
+107555.2592260013 3.8498564 -1103.197
+107556.2592260516 3.849817 -1103.2168
+107557.2592261019 3.8498957 -1103.2168
+107558.2592261522 3.8496988 -1103.197
+107559.2592262025 3.8497381 -1103.2168
+107560.2592262528 3.8497775 -1103.2562
+107561.2592263031 3.8497775 -1103.1774
+107562.2592263534 3.8496988 -1103.1774
+107563.2592264037 3.8497775 -1103.2168
+107564.259226454 3.8496594 -1103.2761
+107565.2592265042 3.8496201 -1103.2366
+107566.2592265545 3.8496201 -1103.2562
+107567.2592266048 3.8496594 -1103.2761
+107568.2592266551 3.8495808 -1103.2959
+107569.2592267054 3.8496594 -1103.197
+107570.2592267557 3.8495414 -1103.3353
+107571.259226806 3.8495021 -1103.1182
+107572.2592268563 3.8494232 -1103.2562
+107573.2592269066 3.8495808 -1103.1774
+107574.2592269569 3.8495021 -1103.1774
+107575.2592270072 3.8494625 -1103.2168
+107576.2592270575 3.8495021 -1103.2366
+107577.2592271077 3.8494232 -1103.2761
+107578.259227158 3.8494625 -1103.2366
+107579.2592272083 3.8494625 -1103.1774
+107580.2592272586 3.8494625 -1103.3156
+107581.2592273089 3.8493445 -1103.1774
+107582.2592273592 3.8494232 -1103.2761
+107583.2592274095 3.8493838 -1103.2366
+107584.2592274598 3.8493445 -1103.2562
+107585.2592275101 3.8493445 -1103.2562
+107586.2592275604 3.8493445 -1103.2761
+107587.2592276107 3.8493052 -1103.2366
+107588.259227661 3.8492658 -1103.2366
+107589.2592277112 3.8493052 -1103.1576
+107590.2592277615 3.8492658 -1103.3156
+107591.2592278118 3.8492265 -1103.2761
+107592.2592278621 3.8491082 -1103.2761
+107593.2592279124 3.8493052 -1103.3156
+107594.2592279627 3.8492658 -1103.2168
+107595.259228013 3.8491476 -1103.3156
+107596.2592280633 3.8491476 -1103.2168
+107597.2592281136 3.8491082 -1103.197
+107598.2592281639 3.8491871 -1103.2168
+107599.2592282142 3.8491871 -1103.3156
+107600.2592282644 3.8491476 -1103.2366
+107601.2592283147 3.8490295 -1103.197
+107602.259228365 3.8489902 -1103.2366
+107603.2592284153 3.8491476 -1103.1576
+107604.2592284656 3.8490295 -1103.2366
+107605.2592285159 3.8490689 -1103.3945
+107606.2592285662 3.8489509 -1103.1774
+107607.2592286165 3.8489902 -1103.2366
+107608.2592286668 3.8489509 -1103.2366
+107609.2592287171 3.8489509 -1103.1774
+107610.2592287674 3.8489509 -1103.2761
+107611.2592288177 3.8489115 -1103.2366
+107612.2592288679 3.8490295 -1103.197
+107613.2592289182 3.8489115 -1103.2761
+107614.2592289685 3.8489115 -1103.1378
+107615.2592290188 3.8489115 -1103.2959
+107616.2592290691 3.8487539 -1103.2959
+107617.2592291194 3.8488326 -1103.2761
+107618.2592291697 3.8487933 -1103.1774
+107619.25922922 3.8488722 -1103.3156
+107620.2592292703 3.8488326 -1103.2366
+107621.2592293206 3.8487146 -1103.2562
+107622.2592293709 3.8486753 -1103.2761
+107623.2592294212 3.8487146 -1103.2168
+107624.2592294714 3.8487539 -1103.2562
+107625.2592295217 3.8487539 -1103.1378
+107626.259229572 3.8487146 -1103.2959
+107627.2592296223 3.8486753 -1103.2366
+107628.2592296726 3.8486359 -1103.2959
+107629.2592297229 3.8486359 -1103.2959
+107630.2592297732 3.8485966 -1103.197
+107631.2592298235 3.8485572 -1103.2562
+107632.2592298738 3.8485966 -1103.3156
+107633.2592299241 3.8485572 -1103.197
+107634.2592299744 3.8485966 -1103.1774
+107635.2592300246 3.8485177 -1103.197
+107636.2592300749 3.8485177 -1103.197
+107637.2592301252 3.8485572 -1103.2562
+107638.2592301755 3.8484783 -1103.2366
+107639.2592302258 3.8484783 -1103.2761
+107640.2592302761 3.8485572 -1103.3156
+107641.2592303264 3.8484783 -1103.2366
+107642.2592303767 3.8484783 -1103.2959
+107643.259230427 3.8485572 -1103.2562
+107644.2592304773 3.848321 -1103.2168
+107645.2592305276 3.8483603 -1103.2562
+107646.2592305779 3.8483996 -1103.2366
+107647.2592306281 3.8483996 -1103.3156
+107648.2592306784 3.8483603 -1103.2761
+107649.2592307287 3.848321 -1103.1576
+107650.259230779 3.8483996 -1103.2168
+107651.2592308293 3.848242 -1103.2168
+107652.2592308796 3.848242 -1103.2562
+107653.2592309299 3.8482816 -1103.2761
+107654.2592309802 3.8482816 -1103.2168
+107655.2592310305 3.848242 -1103.3353
+107656.2592310808 3.8482027 -1103.1774
+107657.2592311311 3.8481634 -1103.2168
+107658.2592311814 3.848124 -1103.2168
+107659.2592312316 3.8481634 -1103.2168
+107660.2592312819 3.8480453 -1103.1774
+107661.2592313322 3.848124 -1103.2366
+107662.2592313825 3.8481634 -1103.2366
+107663.2592314328 3.848124 -1103.3156
+107664.2592314831 3.8480453 -1103.2168
+107665.2592315334 3.848124 -1103.2366
+107666.2592315837 3.8480453 -1103.3353
+107667.259231634 3.848124 -1103.2366
+107668.2592316843 3.848006 -1103.1576
+107669.2592317346 3.848006 -1103.2761
+107670.2592317848 3.8479271 -1103.197
+107671.2592318351 3.8478878 -1103.2959
+107672.2592318854 3.8479667 -1103.2761
+107673.2592319357 3.8479667 -1103.2761
+107674.259231986 3.848006 -1103.197
+107675.2592320363 3.8478484 -1103.3156
+107676.2592320866 3.8478484 -1103.3551
+107677.2592321369 3.8478878 -1103.2562
+107678.2592321872 3.8478091 -1103.2959
+107679.2592322375 3.8478091 -1103.2168
+107680.2592322878 3.8479271 -1103.2366
+107681.2592323381 3.8477304 -1103.197
+107682.2592323883 3.8478091 -1103.2562
+107683.2592324386 3.8476911 -1103.2366
+107684.2592324889 3.8476911 -1103.197
+107685.2592325392 3.8477697 -1103.2168
+107686.2592325895 3.8476517 -1103.2761
+107687.2592326398 3.8476121 -1103.197
+107688.2592326901 3.8476517 -1103.2168
+107689.2592327404 3.8477304 -1103.2761
+107690.2592327907 3.8476911 -1103.2366
+107691.259232841 3.8476121 -1103.2959
+107692.2592328913 3.8476517 -1103.1576
+107693.2592329415 3.8477304 -1103.197
+107694.2592329918 3.8476121 -1103.2562
+107695.2592330421 3.8475728 -1103.2168
+107696.2592330924 3.8475335 -1103.2366
+107697.2592331427 3.8475335 -1103.3156
+107698.259233193 3.8475335 -1103.2168
+107699.2592332433 3.8473761 -1103.2959
+107700.2592332936 3.8475335 -1103.2168
+107701.2592333439 3.8474154 -1103.2959
+107702.2592333942 3.8474548 -1103.2761
+107703.2592334445 3.8475728 -1103.2959
+107704.2592334948 3.8474154 -1103.1576
+107705.259233545 3.8474154 -1103.2761
+107706.2592335953 3.8473368 -1103.2562
+107707.2592336456 3.8473761 -1103.2366
+107708.2592336959 3.8474154 -1103.1774
+107709.2592337462 3.8474154 -1103.197
+107710.2592337965 3.8473368 -1103.197
+107711.2592338468 3.8472972 -1103.2168
+107712.2592338971 3.8473368 -1103.2959
+107713.2592339474 3.8472579 -1103.2562
+107714.2592339977 3.8474154 -1103.197
+107715.259234048 3.8471792 -1103.197
+107716.2592340983 3.8472185 -1103.2562
+107717.2592341485 3.8472185 -1103.1576
+107718.2592341988 3.8472185 -1103.2761
+107719.2592342491 3.8471792 -1103.2959
+107720.2592342994 3.8471005 -1103.197
+107721.2592343497 3.8471792 -1103.2761
+107722.2592344 3.8470612 -1103.2761
+107723.2592344503 3.8471398 -1103.2562
+107724.2592345006 3.8470612 -1103.3156
+107725.2592345509 3.8471792 -1103.1774
+107726.2592346012 3.8470612 -1103.2366
+107727.2592346515 3.8471005 -1103.2562
+107728.2592347017 3.8470218 -1103.2366
+107729.259234752 3.8470218 -1103.2761
+107730.2592348023 3.8469429 -1103.1182
+107731.2592348526 3.8470612 -1103.2562
+107732.2592349029 3.8469036 -1103.3156
+107733.2592349532 3.8470218 -1103.2168
+107734.2592350035 3.8469429 -1103.2562
+107735.2592350538 3.8469822 -1103.2366
+107736.2592351041 3.8469036 -1103.2168
+107737.2592351544 3.8469429 -1103.197
+107738.2592352047 3.8469429 -1103.2959
+107739.259235255 3.8468642 -1103.2761
+107740.2592353052 3.8468249 -1103.1774
+107741.2592353555 3.8469429 -1103.2562
+107742.2592354058 3.8468249 -1103.1774
+107743.2592354561 3.8468642 -1103.2562
+107744.2592355064 3.8467855 -1103.2761
+107745.2592355567 3.8467855 -1103.2366
+107746.259235607 3.8467855 -1103.2959
+107747.2592356573 3.8468249 -1103.197
+107748.2592357076 3.8466673 -1103.3156
+107749.2592357579 3.8467069 -1103.2562
+107750.2592358082 3.846628 -1103.3156
+107751.2592358585 3.8465886 -1103.2761
+107752.2592359087 3.846628 -1103.1774
+107753.259235959 3.846628 -1103.2761
+107754.2592360093 3.846628 -1103.2562
+107755.2592360596 3.8465886 -1103.1774
+107756.2592361099 3.8465493 -1103.2562
+107757.2592361602 3.8464706 -1103.2366
+107758.2592362105 3.8467069 -1103.2562
+107759.2592362608 3.8465886 -1103.2562
+107760.2592363111 3.8465886 -1103.197
+107761.2592363614 3.8464313 -1103.1774
+107762.2592364117 3.8465099 -1103.1774
+107763.2592364619 3.8465099 -1103.2366
+107764.2592365122 3.8464313 -1103.2366
+107765.2592365625 3.8464313 -1103.197
+107766.2592366128 3.8463523 -1103.2562
+107767.2592366631 3.846313 -1103.3353
+107768.2592367134 3.846313 -1103.1378
+107769.2592367637 3.8464313 -1103.1774
+107770.259236814 3.8463917 -1103.2366
+107771.2592368643 3.8463523 -1103.2366
+107772.2592369146 3.8463917 -1103.2366
+107773.2592369649 3.8462737 -1103.197
+107774.2592370152 3.8463523 -1103.2562
+107775.2592370654 3.8462737 -1103.2761
+107776.2592371157 3.8462343 -1103.2366
+107777.259237166 3.8462343 -1103.2366
+107778.2592372163 3.846195 -1103.2761
+107779.2592372666 3.8462343 -1103.0984
+107780.2592373169 3.8462737 -1103.2761
+107781.2592373672 3.846195 -1103.1774
+107782.2592374175 3.8462343 -1103.1774
+107783.2592374678 3.8462343 -1103.2168
+107784.2592375181 3.8461163 -1103.2366
+107785.2592375684 3.8461163 -1103.1576
+107786.2592376187 3.846195 -1103.2562
+107787.2592376689 3.8461163 -1103.1774
+107788.2592377192 3.8460374 -1103.2761
+107789.2592377695 3.8460374 -1103.2959
+107790.2592378198 3.8459587 -1103.2562
+107791.2592378701 3.8461163 -1103.2761
+107792.2592379204 3.8460374 -1103.2366
+107793.2592379707 3.8459194 -1103.2761
+107794.259238021 3.84588 -1103.3353
+107795.2592380713 3.845998 -1103.1774
+107796.2592381216 3.8459194 -1103.1576
+107797.2592381719 3.8459194 -1103.2168
+107798.2592382221 3.8458407 -1103.1774
+107799.2592382724 3.84588 -1103.2959
+107800.2592383227 3.84588 -1103.2562
+107801.259238373 3.8457224 -1103.2168
+107802.2592384233 3.84588 -1103.2168
+107803.2592384736 3.8458407 -1103.197
+107804.2592385239 3.8457618 -1103.2168
+107805.2592385742 3.84588 -1103.2366
+107806.2592386245 3.8457618 -1103.2168
+107807.2592386748 3.8457618 -1103.2761
+107808.2592387251 3.8457618 -1103.197
+107809.2592387754 3.8457224 -1103.2168
+107810.2592388256 3.8456438 -1103.2168
+107811.2592388759 3.8457618 -1103.197
+107812.2592389262 3.8456438 -1103.2366
+107813.2592389765 3.8456438 -1103.2168
+107814.2592390268 3.8456438 -1103.197
+107815.2592390771 3.8456044 -1103.3353
+107816.2592391274 3.8455651 -1103.2168
+107817.2592391777 3.8454864 -1103.2168
+107818.259239228 3.8455257 -1103.2562
+107819.2592392783 3.8456044 -1103.2366
+107820.2592393286 3.8456438 -1103.1774
+107821.2592393789 3.8456044 -1103.2168
+107822.2592394291 3.8455651 -1103.2562
+107823.2592394794 3.8454468 -1103.2761
+107824.2592395297 3.8454468 -1103.2366
+107825.25923958 3.8455257 -1103.3156
+107826.2592396303 3.8454468 -1103.2761
+107827.2592396806 3.8456044 -1103.1576
+107828.2592397309 3.8453681 -1103.2366
+107829.2592397812 3.8454864 -1103.1774
+107830.2592398315 3.8454075 -1103.3156
+107831.2592398818 3.8454864 -1103.2168
+107832.2592399321 3.8453681 -1103.2168
+107833.2592399823 3.8454075 -1103.2366
+107834.2592400326 3.8453288 -1103.2168
+107835.2592400829 3.8452895 -1103.1378
+107836.2592401332 3.8452108 -1103.2761
+107837.2592401835 3.8453288 -1103.197
+107838.2592402338 3.8452895 -1103.2366
+107839.2592402841 3.8452895 -1103.1576
+107840.2592403344 3.8452108 -1103.197
+107841.2592403847 3.8452501 -1103.1576
+107842.259240435 3.8451715 -1103.1774
+107843.2592404853 3.8452108 -1103.1774
+107844.2592405356 3.8451319 -1103.2168
+107845.2592405858 3.8451319 -1103.197
+107846.2592406361 3.8451715 -1103.2168
+107847.2592406864 3.8450925 -1103.2959
+107848.2592407367 3.8450532 -1103.2562
+107849.259240787 3.8451319 -1103.2562
+107850.2592408373 3.8450532 -1103.1378
+107851.2592408876 3.8450139 -1103.3156
+107852.2592409379 3.8450532 -1103.3353
+107853.2592409882 3.8450532 -1103.2366
+107854.2592410385 3.8450925 -1103.2761
+107855.2592410888 3.8449745 -1103.1774
+107856.2592411391 3.8449352 -1103.2761
+107857.2592411893 3.8449352 -1103.2761
+107858.2592412396 3.8449352 -1103.2761
+107859.2592412899 3.8449745 -1103.2168
+107860.2592413402 3.8448958 -1103.3353
+107861.2592413905 3.8448563 -1103.2562
+107862.2592414408 3.8448958 -1103.2761
+107863.2592414911 3.8448169 -1103.1182
+107864.2592415414 3.8447776 -1103.2366
+107865.2592415917 3.8447776 -1103.2562
+107866.259241642 3.8448169 -1103.2366
+107867.2592416923 3.8447776 -1103.2959
+107868.2592417425 3.8447382 -1103.2366
+107869.2592417928 3.8447776 -1103.3156
+107870.2592418431 3.8447776 -1103.2168
+107871.2592418934 3.8448169 -1103.2562
+107872.2592419437 3.8446989 -1103.1182
+107873.259241994 3.8446202 -1103.2761
+107874.2592420443 3.8446989 -1103.2562
+107875.2592420946 3.8446202 -1103.2168
+107876.2592421449 3.8446596 -1103.2761
+107877.2592421952 3.8447382 -1103.2562
+107878.2592422455 3.8446202 -1103.2168
+107879.2592422958 3.8445809 -1103.2562
+107880.259242346 3.844502 -1103.2761
+107881.2592423963 3.8445413 -1103.197
+107882.2592424466 3.844502 -1103.2366
+107883.2592424969 3.8445413 -1103.1576
+107884.2592425472 3.8445413 -1103.197
+107885.2592425975 3.8444233 -1103.2168
+107886.2592426478 3.8444233 -1103.2366
+107887.2592426981 3.844502 -1103.2168
+107888.2592427484 3.8445809 -1103.197
+107889.2592427987 3.8445809 -1103.2562
+107890.259242849 3.8444626 -1103.2959
+107891.2592428993 3.8443446 -1103.3156
+107892.2592429495 3.844502 -1103.197
+107893.2592429998 3.844384 -1103.2761
+107894.2592430501 3.844384 -1103.2959
+107895.2592431004 3.8443446 -1103.197
+107896.2592431507 3.8442264 -1103.2168
+107897.259243201 3.844187 -1103.197
+107898.2592432513 3.844384 -1103.2366
+107899.2592433016 3.8443053 -1103.197
+107900.2592433519 3.8442264 -1103.3156
+107901.2592434022 3.8442659 -1103.197
+107902.2592434525 3.8442659 -1103.2761
+107903.2592435027 3.8442264 -1103.2761
+107904.259243553 3.8442659 -1103.2168
+107905.2592436033 3.8442659 -1103.1774
+107906.2592436536 3.844187 -1103.2168
+107907.2592437039 3.8441477 -1103.197
+107908.2592437542 3.844187 -1103.1378
+107909.2592438045 3.844069 -1103.2366
+107910.2592438548 3.843951 -1103.197
+107911.2592439051 3.8441083 -1103.2761
+107912.2592439554 3.844069 -1103.2761
+107913.2592440057 3.8441083 -1103.2366
+107914.259244056 3.8439903 -1103.0984
+107915.2592441062 3.8440297 -1103.2562
+107916.2592441565 3.844069 -1103.197
+107917.2592442068 3.844069 -1103.2366
+107918.2592442571 3.843951 -1103.197
+107919.2592443074 3.844069 -1103.2761
+107920.2592443577 3.843951 -1103.1576
+107921.259244408 3.8439903 -1103.2562
+107922.2592444583 3.843951 -1103.1774
+107923.2592445086 3.8439903 -1103.1774
+107924.2592445589 3.843951 -1103.2366
+107925.2592446092 3.843951 -1103.2366
+107926.2592446595 3.8437934 -1103.2168
+107927.2592447097 3.843951 -1103.2168
+107928.25924476 3.8438327 -1103.2562
+107929.2592448103 3.8437541 -1103.2366
+107930.2592448606 3.8439114 -1103.197
+107931.2592449109 3.8438721 -1103.3156
+107932.2592449612 3.8437541 -1103.1378
+107933.2592450115 3.8437541 -1103.2562
+107934.2592450618 3.8436754 -1103.3353
+107935.2592451121 3.8438327 -1103.1774
+107936.2592451624 3.8437541 -1103.2366
+107937.2592452127 3.843636 -1103.2366
+107938.2592452629 3.8436754 -1103.2761
+107939.2592453132 3.8435965 -1103.2959
+107940.2592453635 3.8436754 -1103.2562
+107941.2592454138 3.8435965 -1103.2562
+107942.2592454641 3.8436754 -1103.2562
+107943.2592455144 3.843636 -1103.3551
+107944.2592455647 3.8435965 -1103.1774
+107945.259245615 3.8435965 -1103.2366
+107946.2592456653 3.8435965 -1103.1774
+107947.2592457156 3.8435965 -1103.2366
+107948.2592457659 3.8435965 -1103.2366
+107949.2592458162 3.8435178 -1103.3156
+107950.2592458664 3.8434784 -1103.2562
+107951.2592459167 3.8435178 -1103.2168
+107952.259245967 3.8435571 -1103.3156
+107953.2592460173 3.8433998 -1103.2761
+107954.2592460676 3.8434784 -1103.2168
+107955.2592461179 3.8435178 -1103.1774
+107956.2592461682 3.8433604 -1103.3353
+107957.2592462185 3.8433211 -1103.197
+107958.2592462688 3.8433604 -1103.2366
+107959.2592463191 3.8434391 -1103.2562
+107960.2592463694 3.8434391 -1103.2562
+107961.2592464197 3.8433998 -1103.3353
+107962.2592464699 3.8433211 -1103.2562
+107963.2592465202 3.8432815 -1103.2761
+107964.2592465705 3.8431635 -1103.1774
+107965.2592466208 3.8432815 -1103.2761
+107966.2592466711 3.8432422 -1103.2959
+107967.2592467214 3.8432422 -1103.1774
+107968.2592467717 3.8432028 -1103.197
+107969.259246822 3.8431635 -1103.2761
+107970.2592468723 3.8431242 -1103.2562
+107971.2592469226 3.8431635 -1103.2168
+107972.2592469729 3.8432028 -1103.197
+107973.2592470231 3.8431242 -1103.2168
+107974.2592470734 3.8430455 -1103.2168
+107975.2592471237 3.8431635 -1103.2168
+107976.259247174 3.8430848 -1103.1774
+107977.2592472243 3.8430455 -1103.197
+107978.2592472746 3.8431635 -1103.1576
+107979.2592473249 3.8430455 -1103.1774
+107980.2592473752 3.8429666 -1103.2562
+107981.2592474255 3.8429666 -1103.1774
+107982.2592474758 3.8430455 -1103.1774
+107983.2592475261 3.8429666 -1103.2761
+107984.2592475764 3.8429272 -1103.2562
+107985.2592476266 3.8430059 -1103.2366
+107986.2592476769 3.8430455 -1103.197
+107987.2592477272 3.8429666 -1103.1774
+107988.2592477775 3.8428879 -1103.2562
+107989.2592478278 3.8428879 -1103.2562
+107990.2592478781 3.8427699 -1103.197
+107991.2592479284 3.8429666 -1103.1774
+107992.2592479787 3.8429272 -1103.2366
+107993.259248029 3.8428485 -1103.2366
+107994.2592480793 3.8426909 -1103.2959
+107995.2592481296 3.8427699 -1103.197
+107996.2592481798 3.8428092 -1103.2168
+107997.2592482301 3.8427305 -1103.1774
+107998.2592482804 3.8427305 -1103.2366
+107999.2592483307 3.8427699 -1103.197
+108000.259248381 3.8426909 -1103.3353
+108001.2592484313 3.8427305 -1103.2366
+108002.2592484816 3.8427305 -1103.197
+108003.2592485319 3.8425729 -1103.2959
+108004.2592485822 3.8427305 -1103.197
+108005.2592486325 3.8426123 -1103.2562
+108006.2592486828 3.8426123 -1103.2761
+108007.2592487331 3.8426516 -1103.197
+108008.2592487833 3.8427305 -1103.197
+108009.2592488336 3.8424156 -1103.2959
+108010.2592488839 3.8426123 -1103.3156
+108011.2592489342 3.8424549 -1103.2562
+108012.2592489845 3.8425729 -1103.2761
+108013.2592490348 3.8424942 -1103.2168
+108014.2592490851 3.8424549 -1103.2562
+108015.2592491354 3.8424942 -1103.2761
+108016.2592491857 3.8424156 -1103.197
+108017.259249236 3.842376 -1103.1774
+108018.2592492863 3.8423367 -1103.2366
+108019.2592493366 3.8423367 -1103.197
+108020.2592493868 3.842376 -1103.2959
+108021.2592494371 3.8422973 -1103.2959
+108022.2592494874 3.842376 -1103.2168
+108023.2592495377 3.8424156 -1103.2562
+108024.259249588 3.842258 -1103.2761
+108025.2592496383 3.8422973 -1103.3156
+108026.2592496886 3.8422973 -1103.2562
+108027.2592497389 3.8421793 -1103.1774
+108028.2592497892 3.8421793 -1103.2562
+108029.2592498395 3.8421793 -1103.2562
+108030.2592498898 3.84214 -1103.2761
+108031.25924994 3.842258 -1103.2366
+108032.2592499903 3.842258 -1103.3353
+108033.2592500406 3.8422186 -1103.1774
+108034.2592500909 3.84214 -1103.2959
+108035.2592501412 3.8421793 -1103.1576
+108036.2592501915 3.8421006 -1103.1774
+108037.2592502418 3.8421793 -1103.1182
+108038.2592502921 3.842061 -1103.2168
+108039.2592503424 3.842061 -1103.2761
+108040.2592503927 3.842061 -1103.1378
+108041.259250443 3.8420217 -1103.2168
+108042.2592504933 3.8420217 -1103.1774
+108043.2592505435 3.8420217 -1103.2366
+108044.2592505938 3.8419824 -1103.2366
+108045.2592506441 3.8420217 -1103.2959
+108046.2592506944 3.841943 -1103.3749
+108047.2592507447 3.8420217 -1103.2168
+108048.259250795 3.8419037 -1103.2366
+108049.2592508453 3.8419824 -1103.2761
+108050.2592508956 3.8417857 -1103.1774
+108051.2592509459 3.841943 -1103.197
+108052.2592509962 3.8417857 -1103.2168
+108053.2592510465 3.841825 -1103.3156
+108054.2592510968 3.8418643 -1103.1774
+108055.259251147 3.841825 -1103.1774
+108056.2592511973 3.841825 -1103.2168
+108057.2592512476 3.8417461 -1103.2761
+108058.2592512979 3.8417461 -1103.2168
+108059.2592513482 3.8417857 -1103.2562
+108060.2592513985 3.8417857 -1103.2761
+108061.2592514488 3.8417068 -1103.2959
+108062.2592514991 3.8417068 -1103.2562
+108063.2592515494 3.8417068 -1103.197
+108064.2592515997 3.8416281 -1103.2562
+108065.25925165 3.8416674 -1103.1774
+108066.2592517002 3.8416281 -1103.197
+108067.2592517505 3.8416674 -1103.2366
+108068.2592518008 3.8415887 -1103.2366
+108069.2592518511 3.8416674 -1103.2168
+108070.2592519014 3.8416281 -1103.197
+108071.2592519517 3.8415887 -1103.2168
+108072.259252002 3.8415887 -1103.197
+108073.2592520523 3.8416281 -1103.2366
+108074.2592521026 3.8415101 -1103.2761
+108075.2592521529 3.8415101 -1103.1378
+108076.2592522032 3.8415494 -1103.2366
+108077.2592522535 3.8414311 -1103.2366
+108078.2592523037 3.8413918 -1103.2168
+108079.259252354 3.8414311 -1103.1576
+108080.2592524043 3.8415101 -1103.2562
+108081.2592524546 3.8415101 -1103.1576
+108082.2592525049 3.8413918 -1103.2562
+108083.2592525552 3.8413525 -1103.1774
+108084.2592526055 3.8413131 -1103.2562
+108085.2592526558 3.8412738 -1103.2168
+108086.2592527061 3.8413131 -1103.2761
+108087.2592527564 3.8413525 -1103.2562
+108088.2592528067 3.8412738 -1103.2168
+108089.259252857 3.8413525 -1103.1774
+108090.2592529072 3.8411555 -1103.1576
+108091.2592529575 3.8412738 -1103.2959
+108092.2592530078 3.8412344 -1103.197
+108093.2592530581 3.8412738 -1103.2562
+108094.2592531084 3.8412738 -1103.2366
+108095.2592531587 3.8411951 -1103.2959
+108096.259253209 3.8412344 -1103.1774
+108097.2592532593 3.8410769 -1103.2761
+108098.2592533096 3.8412344 -1103.2366
+108099.2592533599 3.8410375 -1103.2761
+108100.2592534102 3.8411951 -1103.2168
+108101.2592534604 3.8411555 -1103.197
+108102.2592535107 3.8409982 -1103.197
+108103.259253561 3.8409982 -1103.3156
+108104.2592536113 3.8410375 -1103.3156
+108105.2592536616 3.8409982 -1103.2761
+108106.2592537119 3.8409982 -1103.2168
+108107.2592537622 3.8409982 -1103.2761
+108108.2592538125 3.8410375 -1103.2366
+108109.2592538628 3.8410375 -1103.2562
+108110.2592539131 3.8409982 -1103.1576
+108111.2592539634 3.8409982 -1103.2168
+108112.2592540137 3.8409195 -1103.2761
+108113.2592540639 3.8409195 -1103.2168
+108114.2592541142 3.8409588 -1103.2366
+108115.2592541645 3.8408406 -1103.2168
+108116.2592542148 3.8408012 -1103.2562
+108117.2592542651 3.8408012 -1103.2168
+108118.2592543154 3.8408012 -1103.2168
+108119.2592543657 3.8408012 -1103.2366
+108120.259254416 3.8408012 -1103.1774
+108121.2592544663 3.8408012 -1103.1378
+108122.2592545166 3.8408406 -1103.197
+108123.2592545669 3.8407619 -1103.1774
+108124.2592546172 3.8408406 -1103.1378
+108125.2592546674 3.8407226 -1103.2366
+108126.2592547177 3.8406832 -1103.2168
+108127.259254768 3.8407226 -1103.2168
+108128.2592548183 3.8407226 -1103.2562
+108129.2592548686 3.8406045 -1103.1774
+108130.2592549189 3.8407226 -1103.197
+108131.2592549692 3.8406832 -1103.2761
+108132.2592550195 3.8406439 -1103.1576
+108133.2592550698 3.8406832 -1103.2562
+108134.2592551201 3.8404863 -1103.2761
+108135.2592551704 3.8405652 -1103.3156
+108136.2592552206 3.8405256 -1103.197
+108137.2592552709 3.8405652 -1103.2761
+108138.2592553212 3.8404863 -1103.1576
+108139.2592553715 3.8404863 -1103.2761
+108140.2592554218 3.8404863 -1103.1182
+108141.2592554721 3.8404076 -1103.2761
+108142.2592555224 3.8405256 -1103.2959
+108143.2592555727 3.8404863 -1103.2562
+108144.259255623 3.8404076 -1103.2168
+108145.2592556733 3.8403683 -1103.3156
+108146.2592557236 3.8404863 -1103.1576
+108147.2592557739 3.8403289 -1103.2761
+108148.2592558241 3.8403683 -1103.1774
+108149.2592558744 3.8404863 -1103.1774
+108150.2592559247 3.8402503 -1103.197
+108151.259255975 3.8403683 -1103.2168
+108152.2592560253 3.8402107 -1103.2366
+108153.2592560756 3.8403289 -1103.2366
+108154.2592561259 3.8402503 -1103.2168
+108155.2592561762 3.840132 -1103.2562
+108156.2592562265 3.8402107 -1103.2562
+108157.2592562768 3.8403683 -1103.1182
+108158.2592563271 3.8402503 -1103.2761
+108159.2592563774 3.8402107 -1103.3353
+108160.2592564276 3.8400927 -1103.2366
+108161.2592564779 3.840132 -1103.2562
+108162.2592565282 3.8400927 -1103.2366
+108163.2592565785 3.8400927 -1103.2366
+108164.2592566288 3.8400927 -1103.2366
+108165.2592566791 3.840014 -1103.197
+108166.2592567294 3.8400927 -1103.2562
+108167.2592567797 3.8400927 -1103.2959
+108168.25925683 3.8400927 -1103.1576
+108169.2592568803 3.840014 -1103.197
+108170.2592569306 3.840014 -1103.1774
+108171.2592569808 3.8399746 -1103.197
+108172.2592570311 3.8399353 -1103.2168
+108173.2592570814 3.840014 -1103.1378
+108174.2592571317 3.8399746 -1103.2168
+108175.259257182 3.839817 -1103.2366
+108176.2592572323 3.8398957 -1103.3353
+108177.2592572826 3.8399353 -1103.2761
+108178.2592573329 3.8398564 -1103.2562
+108179.2592573832 3.8398957 -1103.2168
+108180.2592574335 3.8399353 -1103.197
+108181.2592574838 3.839817 -1103.2761
+108182.2592575341 3.8397384 -1103.2761
+108183.2592575843 3.8397777 -1103.197
+108184.2592576346 3.839817 -1103.1576
+108185.2592576849 3.8397384 -1103.1378
+108186.2592577352 3.8397384 -1103.2959
+108187.2592577855 3.8397777 -1103.2168
+108188.2592578358 3.839699 -1103.2959
+108189.2592578861 3.8397384 -1103.1774
+108190.2592579364 3.8397384 -1103.197
+108191.2592579867 3.8396597 -1103.2168
+108192.259258037 3.8396204 -1103.197
+108193.2592580873 3.839699 -1103.1576
+108194.2592581376 3.8396597 -1103.2562
+108195.2592581878 3.8396204 -1103.197
+108196.2592582381 3.8395414 -1103.2562
+108197.2592582884 3.8395808 -1103.197
+108198.2592583387 3.8396597 -1103.2168
+108199.259258389 3.8395414 -1103.2562
+108200.2592584393 3.8395021 -1103.197
+108201.2592584896 3.8394628 -1103.2761
+108202.2592585399 3.8394628 -1103.2562
+108203.2592585902 3.8395021 -1103.197
+108204.2592586405 3.8393841 -1103.1576
+108205.2592586908 3.8395021 -1103.2168
+108206.259258741 3.8393841 -1103.1378
+108207.2592587913 3.8394234 -1103.2562
+108208.2592588416 3.8393447 -1103.2761
+108209.2592588919 3.8393447 -1103.1774
+108210.2592589422 3.8393052 -1103.2366
+108211.2592589925 3.8393841 -1103.1774
+108212.2592590428 3.8393447 -1103.197
+108213.2592590931 3.8393841 -1103.197
+108214.2592591434 3.8391478 -1103.2761
+108215.2592591937 3.8392265 -1103.2959
+108216.259259244 3.8393841 -1103.2761
+108217.2592592943 3.8393052 -1103.1576
+108218.2592593445 3.8391478 -1103.1576
+108219.2592593948 3.8391478 -1103.2761
+108220.2592594451 3.8392658 -1103.1182
+108221.2592594954 3.8389902 -1103.2761
+108222.2592595457 3.8391871 -1103.2562
+108223.259259596 3.8391871 -1103.1378
+108224.2592596463 3.8391478 -1103.2562
+108225.2592596966 3.8390298 -1103.2366
+108226.2592597469 3.8391085 -1103.197
+108227.2592597972 3.8391085 -1103.2761
+108228.2592598475 3.8390298 -1103.2168
+108229.2592598978 3.8390691 -1103.2761
+108230.259259948 3.8390298 -1103.1182
+108231.2592599983 3.8389509 -1103.2168
+108232.2592600486 3.8389902 -1103.2168
+108233.2592600989 3.8389509 -1103.2562
+108234.2592601492 3.8389509 -1103.2562
+108235.2592601995 3.8389115 -1103.2366
+108236.2592602498 3.8389902 -1103.0984
+108237.2592603001 3.8389115 -1103.2366
+108238.2592603504 3.8389115 -1103.2959
+108239.2592604007 3.8389115 -1103.2562
+108240.259260451 3.8387935 -1103.2959
+108241.2592605012 3.8389115 -1103.2168
+108242.2592605515 3.8387935 -1103.1774
+108243.2592606018 3.8388329 -1103.2761
+108244.2592606521 3.8387542 -1103.1774
+108245.2592607024 3.8387542 -1103.197
+108246.2592607527 3.8387935 -1103.2366
+108247.259260803 3.8387148 -1103.2168
+108248.2592608533 3.8387148 -1103.1576
+108249.2592609036 3.8387148 -1103.197
+108250.2592609539 3.8386359 -1103.2366
+108251.2592610042 3.8387935 -1103.2168
+108252.2592610545 3.8387935 -1103.2562
+108253.2592611047 3.8387148 -1103.2366
+108254.259261155 3.8386359 -1103.2959
+108255.2592612053 3.8385966 -1103.2366
+108256.2592612556 3.8387148 -1103.197
+108257.2592613059 3.8385966 -1103.2562
+108258.2592613562 3.8384786 -1103.1774
+108259.2592614065 3.8386753 -1103.197
+108260.2592614568 3.8385966 -1103.3156
+108261.2592615071 3.8384786 -1103.2366
+108262.2592615574 3.8385179 -1103.197
+108263.2592616077 3.8384392 -1103.1774
+108264.259261658 3.8383999 -1103.2168
+108265.2592617082 3.8384392 -1103.1774
+108266.2592617585 3.8383999 -1103.197
+108267.2592618088 3.8383999 -1103.1774
+108268.2592618591 3.8384392 -1103.197
+108269.2592619094 3.8383999 -1103.2168
+108270.2592619597 3.8383999 -1103.2168
+108271.25926201 3.838321 -1103.2562
+108272.2592620603 3.838321 -1103.2761
+108273.2592621106 3.838321 -1103.2366
+108274.2592621609 3.8383603 -1103.2366
+108275.2592622112 3.838321 -1103.1774
+108276.2592622614 3.8382816 -1103.2366
+108277.2592623117 3.838203 -1103.2168
+108278.259262362 3.8382423 -1103.2168
+108279.2592624123 3.8383603 -1103.1576
+108280.2592624626 3.838203 -1103.2761
+108281.2592625129 3.838203 -1103.2562
+108282.2592625632 3.8382816 -1103.2959
+108283.2592626135 3.8381243 -1103.197
+108284.2592626638 3.8382816 -1103.1576
+108285.2592627141 3.838203 -1103.2366
+108286.2592627644 3.8381636 -1103.3156
+108287.2592628147 3.838203 -1103.197
+108288.2592628649 3.8380454 -1103.2366
+108289.2592629152 3.8380454 -1103.1774
+108290.2592629655 3.8380454 -1103.2562
+108291.2592630158 3.8380849 -1103.1576
+108292.2592630661 3.838006 -1103.2562
+108293.2592631164 3.8379667 -1103.1576
+108294.2592631667 3.8379667 -1103.2562
+108295.259263217 3.8379273 -1103.3156
+108296.2592632673 3.8379667 -1103.2366
+108297.2592633176 3.8379273 -1103.3156
+108298.2592633679 3.837888 -1103.2562
+108299.2592634181 3.8378487 -1103.2366
+108300.2592634684 3.8379667 -1103.2168
+108301.2592635187 3.8379667 -1103.2168
+108302.259263569 3.8378487 -1103.2366
+108303.2592636193 3.8378093 -1103.2168
+108304.2592636696 3.837888 -1103.1576
+108305.2592637199 3.8378487 -1103.2366
+108306.2592637702 3.8377304 -1103.2168
+108307.2592638205 3.837888 -1103.2761
+108308.2592638708 3.8377304 -1103.2168
+108309.2592639211 3.8377304 -1103.2761
+108310.2592639714 3.83777 -1103.1774
+108311.2592640216 3.8376911 -1103.1576
+108312.2592640719 3.8377304 -1103.197
+108313.2592641222 3.8376911 -1103.197
+108314.2592641725 3.8376124 -1103.3156
+108315.2592642228 3.8376911 -1103.197
+108316.2592642731 3.8375731 -1103.2168
+108317.2592643234 3.8375731 -1103.2562
+108318.2592643737 3.8375337 -1103.1774
+108319.259264424 3.8374944 -1103.2761
+108320.2592644743 3.8374944 -1103.1774
+108321.2592645246 3.8375337 -1103.2562
+108322.2592645749 3.8374944 -1103.1576
+108323.2592646251 3.8376124 -1103.1774
+108324.2592646754 3.8373368 -1103.2562
+108325.2592647257 3.8374548 -1103.1774
+108326.259264776 3.8374155 -1103.197
+108327.2592648263 3.8373761 -1103.1576
+108328.2592648766 3.8374548 -1103.2168
+108329.2592649269 3.8372974 -1103.2562
+108330.2592649772 3.8373368 -1103.2761
+108331.2592650275 3.8373761 -1103.2168
+108332.2592650778 3.8373761 -1103.3353
+108333.2592651281 3.8373368 -1103.2562
+108334.2592651783 3.8372974 -1103.1576
+108335.2592652286 3.8372581 -1103.0588
+108336.2592652789 3.8374155 -1103.3156
+108337.2592653292 3.8373368 -1103.2366
+108338.2592653795 3.8372581 -1103.1576
+108339.2592654298 3.8372188 -1103.197
+108340.2592654801 3.8371794 -1103.1774
+108341.2592655304 3.8372974 -1103.2959
+108342.2592655807 3.8371398 -1103.1576
+108343.259265631 3.8371005 -1103.2168
+108344.2592656813 3.8371398 -1103.2168
+108345.2592657316 3.8372188 -1103.2366
+108346.2592657818 3.8371398 -1103.2562
+108347.2592658321 3.8372188 -1103.2761
+108348.2592658824 3.8371398 -1103.2761
+108349.2592659327 3.8369825 -1103.1378
+108350.259265983 3.8371398 -1103.0984
+108351.2592660333 3.8370612 -1103.2761
+108352.2592660836 3.8370612 -1103.2366
+108353.2592661339 3.8370612 -1103.2761
+108354.2592661842 3.8370218 -1103.2366
+108355.2592662345 3.8369431 -1103.197
+108356.2592662848 3.8369431 -1103.2562
+108357.2592663351 3.8370218 -1103.2562
+108358.2592663853 3.8369825 -1103.2366
+108359.2592664356 3.8370218 -1103.2959
+108360.2592664859 3.8369038 -1103.197
+108361.2592665362 3.8369431 -1103.1576
+108362.2592665865 3.8368249 -1103.2168
+108363.2592666368 3.8368645 -1103.2366
+108364.2592666871 3.8368249 -1103.2366
+108365.2592667374 3.8368249 -1103.2366
+108366.2592667877 3.8369431 -1103.2168
+108367.259266838 3.8367069 -1103.1378
+108368.2592668883 3.8367462 -1103.2168
+108369.2592669385 3.8367462 -1103.2168
+108370.2592669888 3.8368249 -1103.197
+108371.2592670391 3.8366675 -1103.2366
+108372.2592670894 3.8366675 -1103.197
+108373.2592671397 3.8367069 -1103.2562
+108374.25926719 3.8366675 -1103.2562
+108375.2592672403 3.8366675 -1103.2959
+108376.2592672906 3.8366675 -1103.2168
+108377.2592673409 3.8366282 -1103.3156
+108378.2592673912 3.8366675 -1103.1774
+108379.2592674415 3.8366675 -1103.2959
+108380.2592674918 3.8366282 -1103.2562
+108381.259267542 3.8366282 -1103.1182
+108382.2592675923 3.8364706 -1103.1378
+108383.2592676426 3.8365099 -1103.1774
+108384.2592676929 3.8365889 -1103.2168
+108385.2592677432 3.8364313 -1103.1774
+108386.2592677935 3.8365889 -1103.1182
+108387.2592678438 3.8364706 -1103.0984
+108388.2592678941 3.8365495 -1103.2168
+108389.2592679444 3.8364706 -1103.1576
+108390.2592679947 3.8364706 -1103.1774
+108391.259268045 3.8364313 -1103.2761
+108392.2592680953 3.8364313 -1103.2168
+108393.2592681455 3.8363526 -1103.1774
+108394.2592681958 3.8364706 -1103.1378
+108395.2592682461 3.8363526 -1103.1378
+108396.2592682964 3.8363132 -1103.2168
+108397.2592683467 3.8362739 -1103.197
+108398.259268397 3.8362346 -1103.2168
+108399.2592684473 3.8362346 -1103.2168
+108400.2592684976 3.8362739 -1103.1774
+108401.2592685479 3.8362346 -1103.2168
+108402.2592685982 3.8362739 -1103.3156
+108403.2592686485 3.8362346 -1103.1576
+108404.2592686987 3.8362739 -1103.1774
+108405.259268749 3.836195 -1103.197
+108406.2592687993 3.8361163 -1103.2562
+108407.2592688496 3.8361163 -1103.1576
+108408.2592688999 3.8361163 -1103.197
+108409.2592689502 3.8361557 -1103.2168
+108410.2592690005 3.836077 -1103.2366
+108411.2592690508 3.836077 -1103.1774
+108412.2592691011 3.8360376 -1103.2761
+108413.2592691514 3.8361163 -1103.2761
+108414.2592692017 3.835959 -1103.197
+108415.259269252 3.8360376 -1103.2959
+108416.2592693022 3.8360376 -1103.2366
+108417.2592693525 3.8360376 -1103.3156
+108418.2592694028 3.8360376 -1103.197
+108419.2592694531 3.8359194 -1103.3156
+108420.2592695034 3.83588 -1103.2562
+108421.2592695537 3.835959 -1103.1378
+108422.259269604 3.8359194 -1103.2562
+108423.2592696543 3.8359983 -1103.2562
+108424.2592697046 3.8359194 -1103.2562
+108425.2592697549 3.8359194 -1103.2366
+108426.2592698052 3.8358407 -1103.1774
+108427.2592698555 3.83588 -1103.2168
+108428.2592699057 3.8358407 -1103.1576
+108429.259269956 3.835959 -1103.2168
+108430.2592700063 3.835762 -1103.2959
+108431.2592700566 3.8358407 -1103.2168
+108432.2592701069 3.8356833 -1103.1774
+108433.2592701572 3.8357227 -1103.197
+108434.2592702075 3.8356833 -1103.197
+108435.2592702578 3.8356044 -1103.2366
+108436.2592703081 3.8357227 -1103.2168
+108437.2592703584 3.835644 -1103.197
+108438.2592704087 3.835644 -1103.197
+108439.2592704589 3.8354864 -1103.2761
+108440.2592705092 3.8356833 -1103.1774
+108441.2592705595 3.8356044 -1103.197
+108442.2592706098 3.8356044 -1103.2959
+108443.2592706601 3.8355651 -1103.197
+108444.2592707104 3.8356044 -1103.2761
+108445.2592707607 3.8356833 -1103.197
+108446.259270811 3.8355258 -1103.197
+108447.2592708613 3.8354471 -1103.2959
+108448.2592709116 3.8354077 -1103.2168
+108449.2592709619 3.8356044 -1103.2562
+108450.2592710122 3.8354471 -1103.1774
+108451.2592710624 3.8354077 -1103.2562
+108452.2592711127 3.8355258 -1103.1576
+108453.259271163 3.8353684 -1103.2562
+108454.2592712133 3.8353684 -1103.2168
+108455.2592712636 3.8355258 -1103.2366
+108456.2592713139 3.8353291 -1103.2366
+108457.2592713642 3.8352895 -1103.1576
+108458.2592714145 3.8353684 -1103.1576
+108459.2592714648 3.8353291 -1103.1182
+108460.2592715151 3.8353291 -1103.1774
+108461.2592715654 3.8352501 -1103.2562
+108462.2592716157 3.8353291 -1103.2562
+108463.2592716659 3.8352501 -1103.2168
+108464.2592717162 3.8352501 -1103.2168
+108465.2592717665 3.8351715 -1103.1378
+108466.2592718168 3.8352501 -1103.2959
+108467.2592718671 3.8351715 -1103.1378
+108468.2592719174 3.8350534 -1103.2562
+108469.2592719677 3.8351715 -1103.2761
+108470.259272018 3.8351715 -1103.2168
+108471.2592720683 3.8350141 -1103.1378
+108472.2592721186 3.8350928 -1103.2168
+108473.2592721689 3.8350141 -1103.2366
+108474.2592722191 3.8351321 -1103.2168
+108475.2592722694 3.8350141 -1103.2562
+108476.2592723197 3.8350141 -1103.2168
+108477.25927237 3.8350141 -1103.197
+108478.2592724203 3.8349745 -1103.1182
+108479.2592724706 3.8350534 -1103.3353
+108480.2592725209 3.8349745 -1103.2562
+108481.2592725712 3.8349745 -1103.2168
+108482.2592726215 3.8349352 -1103.1576
+108483.2592726718 3.8349745 -1103.2959
+108484.2592727221 3.8349352 -1103.2366
+108485.2592727724 3.8348565 -1103.1774
+108486.2592728226 3.8348958 -1103.2959
+108487.2592728729 3.8349352 -1103.2366
+108488.2592729232 3.8348172 -1103.2562
+108489.2592729735 3.8348172 -1103.2366
+108490.2592730238 3.8348565 -1103.197
+108491.2592730741 3.8348172 -1103.1774
+108492.2592731244 3.8347385 -1103.1774
+108493.2592731747 3.8347385 -1103.1182
+108494.259273225 3.8347778 -1103.197
+108495.2592732753 3.8348172 -1103.0984
+108496.2592733256 3.8346202 -1103.1774
+108497.2592733759 3.8346992 -1103.1576
+108498.2592734261 3.8347778 -1103.2168
+108499.2592734764 3.8348172 -1103.2366
+108500.2592735267 3.8346202 -1103.1774
+108501.259273577 3.8346596 -1103.3353
+108502.2592736273 3.8346202 -1103.0984
+108503.2592736776 3.8345416 -1103.1774
+108504.2592737279 3.8345022 -1103.197
+108505.2592737782 3.8346202 -1103.197
+108506.2592738285 3.8346202 -1103.2959
+108507.2592738788 3.8346596 -1103.1576
+108508.2592739291 3.8344629 -1103.1182
+108509.2592739793 3.8344235 -1103.197
+108510.2592740296 3.8345022 -1103.2168
+108511.2592740799 3.8345022 -1103.2761
+108512.2592741302 3.8345022 -1103.2366
+108513.2592741805 3.8344629 -1103.2761
+108514.2592742308 3.8343842 -1103.1182
+108515.2592742811 3.8344629 -1103.2562
+108516.2592743314 3.8344629 -1103.2562
+108517.2592743817 3.8343446 -1103.2366
+108518.259274432 3.8343842 -1103.2168
+108519.2592744823 3.8343446 -1103.1774
+108520.2592745326 3.8343842 -1103.2168
+108521.2592745828 3.8343053 -1103.2366
+108522.2592746331 3.8342266 -1103.1576
+108523.2592746834 3.8343053 -1103.2168
+108524.2592747337 3.8342659 -1103.197
+108525.259274784 3.8342659 -1103.2168
+108526.2592748343 3.8341479 -1103.197
+108527.2592748846 3.8342266 -1103.2959
+108528.2592749349 3.8341873 -1103.1774
+108529.2592749852 3.8341873 -1103.1378
+108530.2592750355 3.8342266 -1103.2761
+108531.2592750858 3.8341479 -1103.2366
+108532.2592751361 3.8341086 -1103.3156
+108533.2592751863 3.8341873 -1103.2761
+108534.2592752366 3.8342266 -1103.2366
+108535.2592752869 3.8341086 -1103.2366
+108536.2592753372 3.8341086 -1103.1774
+108537.2592753875 3.8340297 -1103.2366
+108538.2592754378 3.834069 -1103.2168
+108539.2592754881 3.8339903 -1103.197
+108540.2592755384 3.834069 -1103.2761
+108541.2592755887 3.8340297 -1103.2562
+108542.259275639 3.834069 -1103.2366
+108543.2592756893 3.8339903 -1103.2366
+108544.2592757395 3.8338723 -1103.2562
+108545.2592757898 3.8339903 -1103.2761
+108546.2592758401 3.834069 -1103.1774
+108547.2592758904 3.8338723 -1103.197
+108548.2592759407 3.833833 -1103.2168
+108549.259275991 3.833951 -1103.2562
+108550.2592760413 3.8339117 -1103.2366
+108551.2592760916 3.8337936 -1103.1774
+108552.2592761419 3.8339117 -1103.2761
+108553.2592761922 3.8338723 -1103.197
+108554.2592762425 3.8339117 -1103.2761
+108555.2592762928 3.8337541 -1103.1576
+108556.259276343 3.8337541 -1103.2168
+108557.2592763933 3.8337147 -1103.2761
+108558.2592764436 3.8337147 -1103.1576
+108559.2592764939 3.8337147 -1103.3156
+108560.2592765442 3.8337541 -1103.2168
+108561.2592765945 3.8337147 -1103.2761
+108562.2592766448 3.833636 -1103.1378
+108563.2592766951 3.8337147 -1103.2366
+108564.2592767454 3.8337147 -1103.2168
+108565.2592767957 3.833636 -1103.1378
+108566.259276846 3.833518 -1103.2366
+108567.2592768963 3.833636 -1103.2366
+108568.2592769465 3.8335574 -1103.2562
+108569.2592769968 3.833636 -1103.2168
+108570.2592770471 3.833636 -1103.1774
+108571.2592770974 3.8335967 -1103.2562
+108572.2592771477 3.833518 -1103.2168
+108573.259277198 3.8334787 -1103.2366
+108574.2592772483 3.8335574 -1103.2168
+108575.2592772986 3.833518 -1103.1774
+108576.2592773489 3.8334787 -1103.2562
+108577.2592773992 3.8333998 -1103.2761
+108578.2592774495 3.8334787 -1103.1774
+108579.2592774997 3.8333998 -1103.1774
+108580.25927755 3.8333998 -1103.1774
+108581.2592776003 3.8333604 -1103.2959
+108582.2592776506 3.8333998 -1103.2366
+108583.2592777009 3.8333211 -1103.2761
+108584.2592777512 3.8333211 -1103.3156
+108585.2592778015 3.8333604 -1103.2366
+108586.2592778518 3.8332424 -1103.1774
+108587.2592779021 3.8333211 -1103.2366
+108588.2592779524 3.8332031 -1103.1576
+108589.2592780027 3.8332424 -1103.2761
+108590.259278053 3.8332031 -1103.2562
+108591.2592781032 3.8332031 -1103.2168
+108592.2592781535 3.8333211 -1103.2366
+108593.2592782038 3.8332031 -1103.2761
+108594.2592782541 3.8332031 -1103.2562
+108595.2592783044 3.8331242 -1103.197
+108596.2592783547 3.8331637 -1103.197
+108597.259278405 3.8331637 -1103.2562
+108598.2592784553 3.8330455 -1103.2366
+108599.2592785056 3.8330061 -1103.1182
+108600.2592785559 3.8330455 -1103.197
+108601.2592786062 3.8331242 -1103.1576
+108602.2592786564 3.8329668 -1103.1378
+108603.2592787067 3.8330455 -1103.2562
+108604.259278757 3.8330848 -1103.2168
+108605.2592788073 3.8330061 -1103.2168
+108606.2592788576 3.8329275 -1103.2761
+108607.2592789079 3.8329668 -1103.1774
+108608.2592789582 3.8329275 -1103.2168
+108609.2592790085 3.8329668 -1103.2366
+108610.2592790588 3.8329668 -1103.2366
+108611.2592791091 3.8329275 -1103.2562
+108612.2592791594 3.8328881 -1103.2168
+108613.2592792097 3.8328881 -1103.2761
+108614.2592792599 3.8328881 -1103.197
+108615.2592793102 3.8329668 -1103.1774
+108616.2592793605 3.8328092 -1103.197
+108617.2592794108 3.8329275 -1103.2562
+108618.2592794611 3.8327699 -1103.1576
+108619.2592795114 3.8327305 -1103.197
+108620.2592795617 3.8327305 -1103.197
+108621.259279612 3.8327699 -1103.1576
+108622.2592796623 3.8326912 -1103.2562
+108623.2592797126 3.8326519 -1103.2366
+108624.2592797629 3.8326912 -1103.1774
+108625.2592798132 3.8327305 -1103.2562
+108626.2592798634 3.8326125 -1103.2562
+108627.2592799137 3.8326519 -1103.2366
+108628.259279964 3.8326125 -1103.2562
+108629.2592800143 3.8326125 -1103.1182
+108630.2592800646 3.8325338 -1103.2761
+108631.2592801149 3.8326912 -1103.2562
+108632.2592801652 3.8325338 -1103.2562
+108633.2592802155 3.8326125 -1103.2168
+108634.2592802658 3.8325338 -1103.2168
+108635.2592803161 3.8324549 -1103.1378
+108636.2592803664 3.8324943 -1103.2168
+108637.2592804166 3.8324549 -1103.2366
+108638.2592804669 3.8324156 -1103.2761
+108639.2592805172 3.8324549 -1103.197
+108640.2592805675 3.8323369 -1103.2168
+108641.2592806178 3.8323369 -1103.2959
+108642.2592806681 3.8323762 -1103.2562
+108643.2592807184 3.8324156 -1103.2168
+108644.2592807687 3.8324549 -1103.2562
+108645.259280819 3.8322582 -1103.2366
+108646.2592808693 3.8323369 -1103.0588
+108647.2592809196 3.8323369 -1103.197
+108648.2592809699 3.8323369 -1103.197
+108649.2592810201 3.8324549 -1103.1774
+108650.2592810704 3.8322976 -1103.2168
+108651.2592811207 3.8322186 -1103.2959
+108652.259281171 3.8322582 -1103.2562
+108653.2592812213 3.8322186 -1103.2761
+108654.2592812716 3.8322186 -1103.2168
+108655.2592813219 3.8321793 -1103.2761
+108656.2592813722 3.8321793 -1103.1182
+108657.2592814225 3.8322582 -1103.1774
+108658.2592814728 3.83214 -1103.2366
+108659.2592815231 3.8322186 -1103.2366
+108660.2592815734 3.8320613 -1103.197
+108661.2592816236 3.8319826 -1103.2366
+108662.2592816739 3.83214 -1103.197
+108663.2592817242 3.8320613 -1103.1576
+108664.2592817745 3.832022 -1103.1774
+108665.2592818248 3.8320613 -1103.2366
+108666.2592818751 3.8320613 -1103.2168
+108667.2592819254 3.832022 -1103.2168
+108668.2592819757 3.832022 -1103.0984
+108669.259282026 3.8319826 -1103.2366
+108670.2592820763 3.8319433 -1103.1774
+108671.2592821266 3.8318644 -1103.2959
+108672.2592821768 3.8319826 -1103.2562
+108673.2592822271 3.8319037 -1103.2366
+108674.2592822774 3.8319433 -1103.1774
+108675.2592823277 3.8319037 -1103.2366
+108676.259282378 3.8318644 -1103.2562
+108677.2592824283 3.831707 -1103.2168
+108678.2592824786 3.831825 -1103.197
+108679.2592825289 3.8317857 -1103.197
+108680.2592825792 3.831825 -1103.2366
+108681.2592826295 3.8317857 -1103.2562
+108682.2592826798 3.831707 -1103.2366
+108683.2592827301 3.8317463 -1103.1576
+108684.2592827803 3.8317463 -1103.1774
+108685.2592828306 3.8317463 -1103.2959
+108686.2592828809 3.8317463 -1103.2761
+108687.2592829312 3.8316283 -1103.197
+108688.2592829815 3.8316283 -1103.197
+108689.2592830318 3.8315494 -1103.2168
+108690.2592830821 3.8315887 -1103.2366
+108691.2592831324 3.8315887 -1103.197
+108692.2592831827 3.8316677 -1103.0984
+108693.259283233 3.8316283 -1103.2366
+108694.2592832833 3.8315887 -1103.197
+108695.2592833336 3.8316283 -1103.197
+108696.2592833838 3.8314314 -1103.2562
+108697.2592834341 3.8315101 -1103.1774
+108698.2592834844 3.8315887 -1103.2168
+108699.2592835347 3.8314707 -1103.2366
+108700.259283585 3.8315101 -1103.2562
+108701.2592836353 3.8315101 -1103.2168
+108702.2592836856 3.8315494 -1103.2562
+108703.2592837359 3.8313527 -1103.2761
+108704.2592837862 3.8313527 -1103.1576
+108705.2592838365 3.8313527 -1103.1774
+108706.2592838868 3.8314314 -1103.1774
+108707.259283937 3.831392 -1103.2366
+108708.2592839873 3.831392 -1103.2761
+108709.2592840376 3.8313527 -1103.2562
+108710.2592840879 3.8313527 -1103.2761
+108711.2592841382 3.831392 -1103.2366
+108712.2592841885 3.8312738 -1103.2562
+108713.2592842388 3.8312738 -1103.1774
+108714.2592842891 3.8313134 -1103.2366
+108715.2592843394 3.8313134 -1103.197
+108716.2592843897 3.8313527 -1103.2761
+108717.25928444 3.8312345 -1103.1774
+108718.2592844903 3.8311558 -1103.1576
+108719.2592845405 3.8311951 -1103.2366
+108720.2592845908 3.8311164 -1103.3551
+108721.2592846411 3.8311951 -1103.197
+108722.2592846914 3.8312345 -1103.2168
+108723.2592847417 3.8311558 -1103.197
+108724.259284792 3.8311164 -1103.197
+108725.2592848423 3.8310378 -1103.2761
+108726.2592848926 3.8311164 -1103.1576
+108727.2592849429 3.8309984 -1103.2366
+108728.2592849932 3.8310378 -1103.197
+108729.2592850435 3.8310378 -1103.1576
+108730.2592850938 3.8310771 -1103.1774
+108731.259285144 3.8309984 -1103.2959
+108732.2592851943 3.8309588 -1103.3551
+108733.2592852446 3.8309984 -1103.1774
+108734.2592852949 3.8308802 -1103.2366
+108735.2592853452 3.8309195 -1103.197
+108736.2592853955 3.8309588 -1103.1774
+108737.2592854458 3.8309588 -1103.2168
+108738.2592854961 3.8308408 -1103.1774
+108739.2592855464 3.8308408 -1103.197
+108740.2592855967 3.8308015 -1103.2366
+108741.259285647 3.8309984 -1103.1576
+108742.2592856972 3.8308015 -1103.2366
+108743.2592857475 3.8308802 -1103.2761
+108744.2592857978 3.8307228 -1103.2959
+108745.2592858481 3.8307621 -1103.197
+108746.2592858984 3.8308408 -1103.3353
+108747.2592859487 3.8306835 -1103.1774
+108748.259285999 3.8307621 -1103.2168
+108749.2592860493 3.8307228 -1103.2562
+108750.2592860996 3.8306835 -1103.197
+108751.2592861499 3.8307228 -1103.2761
+108752.2592862002 3.8306835 -1103.197
+108753.2592862505 3.8306835 -1103.1774
+108754.2592863007 3.8306046 -1103.1774
+108755.259286351 3.8306046 -1103.2761
+108756.2592864013 3.8306046 -1103.2168
+108757.2592864516 3.8306046 -1103.2366
+108758.2592865019 3.8305652 -1103.2761
+108759.2592865522 3.8304472 -1103.2168
+108760.2592866025 3.8305259 -1103.1576
+108761.2592866528 3.8305652 -1103.1576
+108762.2592867031 3.8305259 -1103.2562
+108763.2592867534 3.8304865 -1103.2366
+108764.2592868037 3.8303683 -1103.2168
+108765.259286854 3.8304865 -1103.2168
+108766.2592869042 3.8304079 -1103.2168
+108767.2592869545 3.8304472 -1103.2366
+108768.2592870048 3.8304079 -1103.197
+108769.2592870551 3.8303683 -1103.2959
+108770.2592871054 3.8303683 -1103.3156
+108771.2592871557 3.8303683 -1103.2562
+108772.259287206 3.8304472 -1103.2168
+108773.2592872563 3.8302896 -1103.2959
+108774.2592873066 3.8303289 -1103.2366
+108775.2592873569 3.8303289 -1103.1378
+108776.2592874072 3.8302109 -1103.2168
+108777.2592874574 3.8303683 -1103.197
+108778.2592875077 3.8302109 -1103.1774
+108779.259287558 3.8302109 -1103.2761
+108780.2592876083 3.8302109 -1103.2168
+108781.2592876586 3.8301322 -1103.2366
+108782.2592877089 3.8301716 -1103.1576
+108783.2592877592 3.8302109 -1103.197
+108784.2592878095 3.8302109 -1103.1774
+108785.2592878598 3.8301322 -1103.197
+108786.2592879101 3.8301716 -1103.2366
+108787.2592879604 3.8301716 -1103.0984
+108788.2592880107 3.8300533 -1103.2761
+108789.2592880609 3.8301322 -1103.1576
+108790.2592881112 3.830014 -1103.2562
+108791.2592881615 3.8300533 -1103.1774
+108792.2592882118 3.8300533 -1103.2168
+108793.2592882621 3.830014 -1103.1774
+108794.2592883124 3.8300929 -1103.2168
+108795.2592883627 3.829896 -1103.2366
+108796.259288413 3.8300929 -1103.2959
+108797.2592884633 3.8299747 -1103.1378
+108798.2592885136 3.8299747 -1103.197
+108799.2592885639 3.829896 -1103.1576
+108800.2592886142 3.8299747 -1103.1774
+108801.2592886644 3.8299747 -1103.1774
+108802.2592887147 3.8299747 -1103.2562
+108803.259288765 3.8298566 -1103.197
+108804.2592888153 3.829778 -1103.2761
+108805.2592888656 3.8298566 -1103.1774
+108806.2592889159 3.829896 -1103.2366
+108807.2592889662 3.8298173 -1103.2168
+108808.2592890165 3.8298173 -1103.2959
+108809.2592890668 3.8297384 -1103.1576
+108810.2592891171 3.8296597 -1103.2168
+108811.2592891674 3.8297384 -1103.2761
+108812.2592892176 3.8297384 -1103.1576
+108813.2592892679 3.8296597 -1103.2168
+108814.2592893182 3.8296204 -1103.2168
+108815.2592893685 3.8297384 -1103.2562
+108816.2592894188 3.829699 -1103.3551
+108817.2592894691 3.8295417 -1103.2168
+108818.2592895194 3.8296204 -1103.1774
+108819.2592895697 3.829581 -1103.2366
+108820.25928962 3.8296204 -1103.1182
+108821.2592896703 3.829581 -1103.2959
+108822.2592897206 3.8296597 -1103.197
+108823.2592897709 3.8295417 -1103.2562
+108824.2592898211 3.8295023 -1103.197
+108825.2592898714 3.8294234 -1103.2562
+108826.2592899217 3.8295417 -1103.2366
+108827.259289972 3.8295023 -1103.2761
+108828.2592900223 3.8295023 -1103.2366
+108829.2592900726 3.8295023 -1103.1378
+108830.2592901229 3.829463 -1103.2761
+108831.2592901732 3.8295023 -1103.2562
+108832.2592902235 3.8294234 -1103.2761
+108833.2592902738 3.8294234 -1103.2562
+108834.2592903241 3.8293447 -1103.2366
+108835.2592903744 3.8294234 -1103.2366
+108836.2592904246 3.8294234 -1103.2959
+108837.2592904749 3.8293054 -1103.1774
+108838.2592905252 3.8292661 -1103.197
+108839.2592905755 3.8293054 -1103.2168
+108840.2592906258 3.8293054 -1103.2366
+108841.2592906761 3.8293054 -1103.2562
+108842.2592907264 3.8291481 -1103.1774
+108843.2592907767 3.8292661 -1103.197
+108844.259290827 3.8292661 -1103.2959
+108845.2592908773 3.8292267 -1103.2168
+108846.2592909276 3.8291874 -1103.2959
+108847.2592909778 3.8291481 -1103.2761
+108848.2592910281 3.8291085 -1103.197
+108849.2592910784 3.8291874 -1103.2562
+108850.2592911287 3.8291874 -1103.2761
+108851.259291179 3.8291481 -1103.2168
+108852.2592912293 3.8290298 -1103.197
+108853.2592912796 3.8289905 -1103.197
+108854.2592913299 3.8291085 -1103.1378
+108855.2592913802 3.8290298 -1103.2366
+108856.2592914305 3.8290691 -1103.3156
+108857.2592914808 3.8289511 -1103.197
+108858.2592915311 3.8290298 -1103.2366
+108859.2592915813 3.8289118 -1103.1576
+108860.2592916316 3.8290298 -1103.2168
+108861.2592916819 3.8289511 -1103.1576
+108862.2592917322 3.8289118 -1103.2168
+108863.2592917825 3.8289905 -1103.197
+108864.2592918328 3.8289118 -1103.1774
+108865.2592918831 3.8289118 -1103.3353
+108866.2592919334 3.8289511 -1103.1182
+108867.2592919837 3.8289511 -1103.1774
+108868.259292034 3.8288724 -1103.197
+108869.2592920843 3.8287935 -1103.197
+108870.2592921346 3.8287935 -1103.2562
+108871.2592921848 3.8287935 -1103.1774
+108872.2592922351 3.8287148 -1103.1576
+108873.2592922854 3.8287542 -1103.2168
+108874.2592923357 3.8287935 -1103.1378
+108875.259292386 3.8287148 -1103.1378
+108876.2592924363 3.8288331 -1103.2959
+108877.2592924866 3.8286362 -1103.2761
+108878.2592925369 3.8287148 -1103.2562
+108879.2592925872 3.8287148 -1103.1378
+108880.2592926375 3.8286362 -1103.2761
+108881.2592926878 3.8286362 -1103.1378
+108882.259292738 3.8287148 -1103.2562
+108883.2592927883 3.8287148 -1103.1182
+108884.2592928386 3.8285179 -1103.1774
+108885.2592928889 3.8285968 -1103.2562
+108886.2592929392 3.8285575 -1103.1774
+108887.2592929895 3.8285968 -1103.2761
+108888.2592930398 3.8284392 -1103.2168
+108889.2592930901 3.8285179 -1103.197
+108890.2592931404 3.8284786 -1103.2761
+108891.2592931907 3.8284392 -1103.197
+108892.259293241 3.8283999 -1103.2168
+108893.2592932913 3.8284392 -1103.2761
+108894.2592933415 3.8283999 -1103.1576
+108895.2592933918 3.8283606 -1103.1774
+108896.2592934421 3.8283999 -1103.2168
+108897.2592934924 3.8283999 -1103.197
+108898.2592935427 3.8284392 -1103.1774
+108899.259293593 3.8283212 -1103.2761
+108900.2592936433 3.828203 -1103.2366
+108901.2592936936 3.8283212 -1103.2366
+108902.2592937439 3.828203 -1103.2168
+108903.2592937942 3.8283212 -1103.2168
+108904.2592938445 3.8282425 -1103.2168
+108905.2592938947 3.8282819 -1103.2168
+108906.259293945 3.8282425 -1103.197
+108907.2592939953 3.8282819 -1103.2562
+108908.2592940456 3.8281243 -1103.197
+108909.2592940959 3.8281636 -1103.1378
+108910.2592941462 3.8281243 -1103.1576
+108911.2592941965 3.8281636 -1103.2168
+108912.2592942468 3.8281636 -1103.2168
+108913.2592942971 3.8281636 -1103.1576
+108914.2592943474 3.8281243 -1103.1576
+108915.2592943977 3.8281636 -1103.1774
+108916.259294448 3.8281243 -1103.1774
+108917.2592944982 3.8281243 -1103.2366
+108918.2592945485 3.8280849 -1103.1774
+108919.2592945988 3.8279276 -1103.2562
+108920.2592946491 3.8279669 -1103.2562
+108921.2592946994 3.8279276 -1103.197
+108922.2592947497 3.8279669 -1103.2168
+108923.2592948 3.827888 -1103.1774
+108924.2592948503 3.8278487 -1103.2366
+108925.2592949006 3.827888 -1103.1576
+108926.2592949509 3.8279276 -1103.1774
+108927.2592950012 3.8278093 -1103.2761
+108928.2592950515 3.827888 -1103.197
+108929.2592951017 3.8278487 -1103.1378
+108930.259295152 3.8278093 -1103.3156
+108931.2592952023 3.8278487 -1103.1774
+108932.2592952526 3.8278487 -1103.2366
+108933.2592953029 3.8278487 -1103.2366
+108934.2592953532 3.8277307 -1103.1774
+108935.2592954035 3.8278487 -1103.2366
+108936.2592954538 3.82777 -1103.197
+108937.2592955041 3.8276126 -1103.2761
+108938.2592955544 3.82777 -1103.1576
+108939.2592956047 3.8276913 -1103.2168
+108940.2592956549 3.8275731 -1103.2562
+108941.2592957052 3.82777 -1103.2562
+108942.2592957555 3.8276913 -1103.2761
+108943.2592958058 3.8276126 -1103.2168
+108944.2592958561 3.827652 -1103.2562
+108945.2592959064 3.8275731 -1103.2562
+108946.2592959567 3.8275337 -1103.197
+108947.259296007 3.8275731 -1103.2562
+108948.2592960573 3.8274944 -1103.2562
+108949.2592961076 3.8274157 -1103.2562
+108950.2592961579 3.8275731 -1103.2168
+108951.2592962082 3.8276126 -1103.2366
+108952.2592962584 3.8275731 -1103.197
+108953.2592963087 3.8273764 -1103.2168
+108954.259296359 3.8274157 -1103.2168
+108955.2592964093 3.8274944 -1103.1774
+108956.2592964596 3.8275337 -1103.1182
+108957.2592965099 3.827455 -1103.197
+108958.2592965602 3.8273764 -1103.2168
+108959.2592966105 3.8274157 -1103.2959
+108960.2592966608 3.8273764 -1103.1774
+108961.2592967111 3.827337 -1103.197
+108962.2592967614 3.8273764 -1103.1774
+108963.2592968117 3.8273764 -1103.2761
+108964.2592968619 3.827337 -1103.1576
+108965.2592969122 3.8272581 -1103.2761
+108966.2592969625 3.8272977 -1103.2761
+108967.2592970128 3.8272581 -1103.2562
+108968.2592970631 3.8271794 -1103.2168
+108969.2592971134 3.8272188 -1103.2562
+108970.2592971637 3.8272581 -1103.1774
+108971.259297214 3.8271401 -1103.197
+108972.2592972643 3.8271401 -1103.2562
+108973.2592973146 3.8272188 -1103.197
+108974.2592973649 3.8272188 -1103.197
+108975.2592974151 3.8271401 -1103.2366
+108976.2592974654 3.8272188 -1103.197
+108977.2592975157 3.8271794 -1103.2366
+108978.259297566 3.8271401 -1103.2168
+108979.2592976163 3.8271008 -1103.2168
+108980.2592976666 3.8271008 -1103.197
+108981.2592977169 3.8271401 -1103.2168
+108982.2592977672 3.8271401 -1103.2168
+108983.2592978175 3.8270221 -1103.2366
+108984.2592978678 3.8271008 -1103.197
+108985.2592979181 3.8270221 -1103.2562
+108986.2592979684 3.8269432 -1103.2562
+108987.2592980186 3.8270221 -1103.2168
+108988.2592980689 3.8269825 -1103.2761
+108989.2592981192 3.8269825 -1103.1774
+108990.2592981695 3.8269038 -1103.1774
+108991.2592982198 3.8269432 -1103.2366
+108992.2592982701 3.8269432 -1103.2168
+108993.2592983204 3.8269038 -1103.2168
+108994.2592983707 3.8268645 -1103.2366
+108995.259298421 3.8269038 -1103.1182
+108996.2592984713 3.8268251 -1103.2761
+108997.2592985216 3.8268251 -1103.1378
+108998.2592985719 3.8267465 -1103.2366
+108999.2592986221 3.8268251 -1103.2761
+109000.2592986724 3.8268645 -1103.2562
+109001.2592987227 3.8267465 -1103.197
+109002.259298773 3.8266282 -1103.1774
+109003.2592988233 3.8267465 -1103.2168
+109004.2592988736 3.8267071 -1103.197
+109005.2592989239 3.8266675 -1103.2168
+109006.2592989742 3.8266675 -1103.2761
+109007.2592990245 3.8267071 -1103.2366
+109008.2592990748 3.8266675 -1103.1182
+109009.2592991251 3.8266282 -1103.197
+109010.2592991753 3.8266282 -1103.2562
+109011.2592992256 3.8267465 -1103.197
+109012.2592992759 3.8265889 -1103.197
+109013.2592993262 3.8265889 -1103.2562
+109014.2592993765 3.8265495 -1103.1576
+109015.2592994268 3.8265495 -1103.2959
+109016.2592994771 3.8264709 -1103.2168
+109017.2592995274 3.8265495 -1103.2959
+109018.2592995777 3.8264315 -1103.1774
+109019.259299628 3.8264315 -1103.197
+109020.2592996783 3.8264709 -1103.2366
+109021.2592997286 3.8264315 -1103.2761
+109022.2592997788 3.8263526 -1103.1378
+109023.2592998291 3.8263922 -1103.2168
+109024.2592998794 3.8263922 -1103.2562
+109025.2592999297 3.8263922 -1103.1774
+109026.25929998 3.8264315 -1103.2168
+109027.2593000303 3.8262739 -1103.1774
+109028.2593000806 3.8263922 -1103.197
+109029.2593001309 3.8263133 -1103.197
+109030.2593001812 3.8263133 -1103.197
+109031.2593002315 3.8262739 -1103.2761
+109032.2593002818 3.8262739 -1103.1576
+109033.2593003321 3.8262739 -1103.2168
+109034.2593003823 3.8262739 -1103.197
+109035.2593004326 3.8262346 -1103.2168
+109036.2593004829 3.8263133 -1103.1774
+109037.2593005332 3.8261952 -1103.2761
+109038.2593005835 3.8262346 -1103.2168
+109039.2593006338 3.8262346 -1103.197
+109040.2593006841 3.8261952 -1103.2562
+109041.2593007344 3.8262346 -1103.2168
+109042.2593007847 3.8261559 -1103.2562
+109043.259300835 3.8261166 -1103.1576
+109044.2593008853 3.8261166 -1103.0785
+109045.2593009355 3.8261166 -1103.2562
+109046.2593009858 3.8261166 -1103.1182
+109047.2593010361 3.8260772 -1103.197
+109048.2593010864 3.8260772 -1103.2761
+109049.2593011367 3.8260772 -1103.2366
+109050.259301187 3.8259983 -1103.1576
+109051.2593012373 3.8259196 -1103.2761
+109052.2593012876 3.825959 -1103.2168
+109053.2593013379 3.825959 -1103.2366
+109054.2593013882 3.8259983 -1103.197
+109055.2593014385 3.8258803 -1103.2168
+109056.2593014888 3.8259196 -1103.2562
+109057.259301539 3.8257227 -1103.2366
+109058.2593015893 3.8257623 -1103.2168
+109059.2593016396 3.8259196 -1103.0984
+109060.2593016899 3.825841 -1103.197
+109061.2593017402 3.825841 -1103.197
+109062.2593017905 3.825841 -1103.2168
+109063.2593018408 3.825841 -1103.1774
+109064.2593018911 3.8257227 -1103.2761
+109065.2593019414 3.8258016 -1103.2168
+109066.2593019917 3.8257227 -1103.2562
+109067.259302042 3.8258016 -1103.197
+109068.2593020923 3.825644 -1103.2366
+109069.2593021425 3.8258016 -1103.1774
+109070.2593021928 3.8257227 -1103.2366
+109071.2593022431 3.8256834 -1103.197
+109072.2593022934 3.8257227 -1103.2562
+109073.2593023437 3.8256047 -1103.1182
+109074.259302394 3.8256047 -1103.1576
+109075.2593024443 3.8257227 -1103.1576
+109076.2593024946 3.8256047 -1103.1576
+109077.2593025449 3.8257227 -1103.197
+109078.2593025952 3.8255653 -1103.1576
+109079.2593026455 3.825526 -1103.3551
+109080.2593026957 3.825526 -1103.197
+109081.259302746 3.8255653 -1103.2562
+109082.2593027963 3.8256047 -1103.2168
+109083.2593028466 3.8254867 -1103.1378
+109084.2593028969 3.8254473 -1103.2959
+109085.2593029472 3.8254867 -1103.1576
+109086.2593029975 3.8254867 -1103.2168
+109087.2593030478 3.8254867 -1103.1182
+109088.2593030981 3.8254473 -1103.1774
+109089.2593031484 3.8254867 -1103.2168
+109090.2593031987 3.8254473 -1103.197
+109091.259303249 3.8253684 -1103.197
+109092.2593032992 3.8253684 -1103.2761
+109093.2593033495 3.8253291 -1103.2168
+109094.2593033998 3.8253684 -1103.2366
+109095.2593034501 3.8254077 -1103.2562
+109096.2593035004 3.825211 -1103.2366
+109097.2593035507 3.8252897 -1103.3353
+109098.259303601 3.8251717 -1103.1774
+109099.2593036513 3.825211 -1103.2562
+109100.2593037016 3.8252897 -1103.3551
+109101.2593037519 3.8251717 -1103.2366
+109102.2593038022 3.8251321 -1103.2761
+109103.2593038525 3.8251717 -1103.1378
+109104.2593039027 3.8250535 -1103.1774
+109105.259303953 3.8250928 -1103.2168
+109106.2593040033 3.825211 -1103.2168
+109107.2593040536 3.8250535 -1103.2562
+109108.2593041039 3.8250141 -1103.2366
+109109.2593041542 3.8250928 -1103.2562
+109110.2593042045 3.825211 -1103.197
+109111.2593042548 3.8250928 -1103.2761
+109112.2593043051 3.8250535 -1103.197
+109113.2593043554 3.8250141 -1103.2168
+109114.2593044057 3.8250928 -1103.2562
+109115.2593044559 3.8249354 -1103.2366
+109116.2593045062 3.8250535 -1103.2761
+109117.2593045565 3.8250535 -1103.1774
+109118.2593046068 3.8249748 -1103.2366
+109119.2593046571 3.8248961 -1103.197
+109120.2593047074 3.8248961 -1103.2168
+109121.2593047577 3.8248961 -1103.2168
+109122.259304808 3.8248961 -1103.197
+109123.2593048583 3.8248568 -1103.197
+109124.2593049086 3.8248961 -1103.2366
+109125.2593049589 3.8248172 -1103.2168
+109126.2593050092 3.8248568 -1103.197
+109127.2593050594 3.8248961 -1103.2366
+109128.2593051097 3.8248172 -1103.2761
+109129.25930516 3.8246992 -1103.1576
+109130.2593052103 3.8247778 -1103.2761
+109131.2593052606 3.8247778 -1103.1774
+109132.2593053109 3.8248172 -1103.197
+109133.2593053612 3.8246992 -1103.2562
+109134.2593054115 3.8248172 -1103.197
+109135.2593054618 3.8246598 -1103.2562
+109136.2593055121 3.8246598 -1103.2562
+109137.2593055624 3.8245811 -1103.1774
+109138.2593056127 3.8246598 -1103.2366
+109139.2593056629 3.8247778 -1103.1774
+109140.2593057132 3.8245811 -1103.2562
+109141.2593057635 3.8246205 -1103.197
+109142.2593058138 3.8245022 -1103.197
+109143.2593058641 3.8245418 -1103.2366
+109144.2593059144 3.8244629 -1103.1378
+109145.2593059647 3.8245022 -1103.1774
+109146.259306015 3.8245022 -1103.2168
+109147.2593060653 3.8245022 -1103.2761
+109148.2593061156 3.8244629 -1103.197
+109149.2593061659 3.8244236 -1103.197
+109150.2593062161 3.8245022 -1103.197
+109151.2593062664 3.8243842 -1103.1774
+109152.2593063167 3.8244236 -1103.1378
+109153.259306367 3.8243449 -1103.2761
+109154.2593064173 3.8244236 -1103.2761
+109155.2593064676 3.8244236 -1103.2761
+109156.2593065179 3.8243055 -1103.2366
+109157.2593065682 3.8243842 -1103.197
+109158.2593066185 3.8242662 -1103.197
+109159.2593066688 3.8242269 -1103.2366
+109160.2593067191 3.8242662 -1103.2562
+109161.2593067694 3.8243055 -1103.2761
+109162.2593068196 3.8242662 -1103.2366
+109163.2593068699 3.8242662 -1103.2761
+109164.2593069202 3.8242662 -1103.2168
+109165.2593069705 3.8242662 -1103.2168
+109166.2593070208 3.8242269 -1103.197
+109167.2593070711 3.8242269 -1103.2168
+109168.2593071214 3.8241873 -1103.2366
+109169.2593071717 3.8241479 -1103.2562
+109170.259307222 3.8241873 -1103.3353
+109171.2593072723 3.8241086 -1103.2168
+109172.2593073226 3.8241086 -1103.2168
+109173.2593073728 3.8241086 -1103.1182
+109174.2593074231 3.8241479 -1103.1774
+109175.2593074734 3.8241086 -1103.2168
+109176.2593075237 3.8240693 -1103.197
+109177.259307574 3.8240299 -1103.1378
+109178.2593076243 3.8241086 -1103.2562
+109179.2593076746 3.8241479 -1103.2366
+109180.2593077249 3.8241086 -1103.2168
+109181.2593077752 3.8239512 -1103.197
+109182.2593078255 3.8238723 -1103.1774
+109183.2593078758 3.8239119 -1103.2761
+109184.2593079261 3.8239906 -1103.2761
+109185.2593079763 3.8239512 -1103.1774
+109186.2593080266 3.8239119 -1103.2959
+109187.2593080769 3.8239119 -1103.197
+109188.2593081272 3.8238723 -1103.2562
+109189.2593081775 3.8239119 -1103.197
+109190.2593082278 3.8238723 -1103.197
+109191.2593082781 3.8238723 -1103.2366
+109192.2593083284 3.823833 -1103.1774
+109193.2593083787 3.8237543 -1103.2168
+109194.259308429 3.8237543 -1103.2366
+109195.2593084793 3.823833 -1103.3156
+109196.2593085296 3.823715 -1103.1378
+109197.2593085798 3.8237936 -1103.2761
+109198.2593086301 3.8237936 -1103.2168
+109199.2593086804 3.8236756 -1103.2562
+109200.2593087307 3.8237543 -1103.2366
+109201.259308781 3.8237543 -1103.2366
+109202.2593088313 3.823597 -1103.1774
+109203.2593088816 3.8236756 -1103.2562
+109204.2593089319 3.8235574 -1103.2366
+109205.2593089822 3.8236363 -1103.1774
+109206.2593090325 3.823715 -1103.197
+109207.2593090828 3.8236363 -1103.3156
+109208.259309133 3.823518 -1103.2959
+109209.2593091833 3.8235574 -1103.197
+109210.2593092336 3.8235574 -1103.2168
+109211.2593092839 3.8235574 -1103.2761
+109212.2593093342 3.823518 -1103.2562
+109213.2593093845 3.8235574 -1103.1576
+109214.2593094348 3.8235574 -1103.2761
+109215.2593094851 3.823518 -1103.2168
+109216.2593095354 3.8234787 -1103.2168
+109217.2593095857 3.8234787 -1103.1576
+109218.259309636 3.8233607 -1103.2366
+109219.2593096863 3.8234787 -1103.2761
+109220.2593097365 3.8234394 -1103.2761
+109221.2593097868 3.8233607 -1103.2959
+109222.2593098371 3.8233607 -1103.1378
+109223.2593098874 3.8234394 -1103.2761
+109224.2593099377 3.8233213 -1103.197
+109225.259309988 3.8234 -1103.2168
+109226.2593100383 3.8233607 -1103.1774
+109227.2593100886 3.8233607 -1103.197
+109228.2593101389 3.8232818 -1103.2168
+109229.2593101892 3.8233607 -1103.2562
+109230.2593102395 3.8232031 -1103.2562
+109231.2593102898 3.8232424 -1103.2168
+109232.25931034 3.8232031 -1103.2168
+109233.2593103903 3.8232818 -1103.2959
+109234.2593104406 3.8231637 -1103.1182
+109235.2593104909 3.8231244 -1103.2562
+109236.2593105412 3.8230851 -1103.197
+109237.2593105915 3.8230851 -1103.2761
+109238.2593106418 3.8230851 -1103.2366
+109239.2593106921 3.8230851 -1103.1774
+109240.2593107424 3.8230457 -1103.2168
+109241.2593107927 3.8230851 -1103.197
+109242.259310843 3.8229668 -1103.197
+109243.2593108932 3.8230064 -1103.2366
+109244.2593109435 3.8230851 -1103.2366
+109245.2593109938 3.8230064 -1103.2168
+109246.2593110441 3.8230457 -1103.2562
+109247.2593110944 3.8230064 -1103.197
+109248.2593111447 3.8230064 -1103.1378
+109249.259311195 3.8229668 -1103.197
+109250.2593112453 3.8229668 -1103.2168
+109251.2593112956 3.8229275 -1103.1774
+109252.2593113459 3.8228881 -1103.197
+109253.2593113962 3.8228488 -1103.2168
+109254.2593114465 3.8229668 -1103.2562
+109255.2593114967 3.8228881 -1103.1774
+109256.259311547 3.8227701 -1103.1378
+109257.2593115973 3.8229275 -1103.2959
+109258.2593116476 3.8228095 -1103.1378
+109259.2593116979 3.8226914 -1103.1774
+109260.2593117482 3.8229275 -1103.2168
+109261.2593117985 3.8227701 -1103.2366
+109262.2593118488 3.8227701 -1103.1378
+109263.2593118991 3.8226914 -1103.2959
+109264.2593119494 3.8227308 -1103.1576
+109265.2593119997 3.8227308 -1103.2168
+109266.25931205 3.8226914 -1103.2366
+109267.2593121002 3.8226519 -1103.1576
+109268.2593121505 3.8226914 -1103.2366
+109269.2593122008 3.8226519 -1103.2562
+109270.2593122511 3.8225732 -1103.2562
+109271.2593123014 3.8226914 -1103.1378
+109272.2593123517 3.8226125 -1103.2168
+109273.259312402 3.8224945 -1103.1378
+109274.2593124523 3.8226519 -1103.2761
+109275.2593125026 3.8224552 -1103.2959
+109276.2593125529 3.8224552 -1103.197
+109277.2593126032 3.8225732 -1103.2761
+109278.2593126534 3.8224552 -1103.2366
+109279.2593127037 3.8224945 -1103.1774
+109280.259312754 3.8225338 -1103.197
+109281.2593128043 3.8225338 -1103.1774
+109282.2593128546 3.8224945 -1103.2168
+109283.2593129049 3.8224158 -1103.2366
+109284.2593129552 3.8224945 -1103.2366
+109285.2593130055 3.8224158 -1103.2168
+109286.2593130558 3.8224158 -1103.197
+109287.2593131061 3.8223369 -1103.2761
+109288.2593131564 3.8222976 -1103.197
+109289.2593132067 3.8222976 -1103.197
+109290.2593132569 3.8223765 -1103.2761
+109291.2593133072 3.8222976 -1103.197
+109292.2593133575 3.8222976 -1103.2168
+109293.2593134078 3.8222582 -1103.2366
+109294.2593134581 3.8222582 -1103.2562
+109295.2593135084 3.8222189 -1103.2562
+109296.2593135587 3.8221402 -1103.1182
+109297.259313609 3.8222976 -1103.1774
+109298.2593136593 3.8222189 -1103.2562
+109299.2593137096 3.8221796 -1103.2562
+109300.2593137599 3.8221796 -1103.197
+109301.2593138102 3.8222189 -1103.2168
+109302.2593138604 3.8222189 -1103.197
+109303.2593139107 3.8221796 -1103.1378
+109304.259313961 3.8222189 -1103.2761
+109305.2593140113 3.8221402 -1103.2959
+109306.2593140616 3.8220615 -1103.2366
+109307.2593141119 3.8221402 -1103.2168
+109308.2593141622 3.8220615 -1103.1774
+109309.2593142125 3.8220615 -1103.2959
+109310.2593142628 3.822022 -1103.197
+109311.2593143131 3.8219826 -1103.2562
+109312.2593143634 3.8219826 -1103.1378
+109313.2593144136 3.8219826 -1103.197
+109314.2593144639 3.8218646 -1103.2959
+109315.2593145142 3.8219433 -1103.197
+109316.2593145645 3.8219826 -1103.2168
+109317.2593146148 3.822022 -1103.2562
+109318.2593146651 3.8218646 -1103.2366
+109319.2593147154 3.8219039 -1103.2366
+109320.2593147657 3.8219433 -1103.2366
+109321.259314816 3.8219039 -1103.1774
+109322.2593148663 3.8217859 -1103.2562
+109323.2593149166 3.8219039 -1103.197
+109324.2593149669 3.8219039 -1103.2168
+109325.2593150171 3.8218253 -1103.2168
+109326.2593150674 3.8217859 -1103.1774
+109327.2593151177 3.821707 -1103.1774
+109328.259315168 3.8217466 -1103.2366
+109329.2593152183 3.821707 -1103.2168
+109330.2593152686 3.8217466 -1103.197
+109331.2593153189 3.8216677 -1103.197
+109332.2593153692 3.8217859 -1103.3353
+109333.2593154195 3.8216677 -1103.2562
+109334.2593154698 3.8216283 -1103.2366
+109335.2593155201 3.8215103 -1103.197
+109336.2593155704 3.8216283 -1103.2168
+109337.2593156206 3.8217466 -1103.2366
+109338.2593156709 3.821707 -1103.2562
+109339.2593157212 3.821589 -1103.2761
+109340.2593157715 3.8215497 -1103.2366
+109341.2593158218 3.8215103 -1103.1774
+109342.2593158721 3.8215497 -1103.2168
+109343.2593159224 3.821589 -1103.197
+109344.2593159727 3.8216283 -1103.1378
+109345.259316023 3.821471 -1103.1576
+109346.2593160733 3.8215103 -1103.2959
+109347.2593161236 3.8215103 -1103.2562
+109348.2593161738 3.821471 -1103.1774
+109349.2593162241 3.821471 -1103.2761
+109350.2593162744 3.8214314 -1103.2761
+109351.2593163247 3.8214314 -1103.2562
+109352.259316375 3.8214314 -1103.2562
+109353.2593164253 3.821274 -1103.197
+109354.2593164756 3.8213527 -1103.2562
+109355.2593165259 3.8213134 -1103.2761
+109356.2593165762 3.8213527 -1103.2168
+109357.2593166265 3.8213134 -1103.197
+109358.2593166768 3.8213134 -1103.197
+109359.2593167271 3.8212347 -1103.2959
+109360.2593167773 3.8212347 -1103.1774
+109361.2593168276 3.821274 -1103.2366
+109362.2593168779 3.8212347 -1103.2168
+109363.2593169282 3.8212347 -1103.1774
+109364.2593169785 3.8212347 -1103.1774
+109365.2593170288 3.8212347 -1103.2366
+109366.2593170791 3.8212347 -1103.1576
+109367.2593171294 3.8211954 -1103.1774
+109368.2593171797 3.8211164 -1103.2168
+109369.25931723 3.8211164 -1103.2168
+109370.2593172803 3.8210771 -1103.197
+109371.2593173306 3.8211954 -1103.197
+109372.2593173808 3.8210771 -1103.1576
+109373.2593174311 3.8209591 -1103.2366
+109374.2593174814 3.8211164 -1103.2562
+109375.2593175317 3.8210771 -1103.1576
+109376.259317582 3.8211164 -1103.3551
+109377.2593176323 3.8209984 -1103.2366
+109378.2593176826 3.8209591 -1103.2168
+109379.2593177329 3.8210771 -1103.197
+109380.2593177832 3.8209984 -1103.1774
+109381.2593178335 3.8209198 -1103.197
+109382.2593178838 3.8209591 -1103.2562
+109383.259317934 3.8209591 -1103.2366
+109384.2593179843 3.8207622 -1103.2761
+109385.2593180346 3.8208015 -1103.1378
+109386.2593180849 3.8209591 -1103.2959
+109387.2593181352 3.8208804 -1103.2366
+109388.2593181855 3.8208804 -1103.197
+109389.2593182358 3.8209198 -1103.2366
+109390.2593182861 3.8208804 -1103.3156
+109391.2593183364 3.8208015 -1103.2959
+109392.2593183867 3.8208411 -1103.2562
+109393.259318437 3.8206835 -1103.1774
+109394.2593184873 3.8208804 -1103.197
+109395.2593185375 3.8206835 -1103.1774
+109396.2593185878 3.8207622 -1103.2959
+109397.2593186381 3.8207228 -1103.197
+109398.2593186884 3.8207622 -1103.2168
+109399.2593187387 3.8206835 -1103.1576
+109400.259318789 3.8206835 -1103.2959
+109401.2593188393 3.8206441 -1103.3156
+109402.2593188896 3.8206048 -1103.2366
+109403.2593189399 3.8205655 -1103.2562
+109404.2593189902 3.8206441 -1103.2959
+109405.2593190405 3.8206048 -1103.2562
+109406.2593190908 3.8205261 -1103.3156
+109407.259319141 3.8206048 -1103.1378
+109408.2593191913 3.8205261 -1103.2168
+109409.2593192416 3.8204865 -1103.2168
+109410.2593192919 3.8206048 -1103.2366
+109411.2593193422 3.8205261 -1103.1774
+109412.2593193925 3.8206048 -1103.1774
+109413.2593194428 3.8205261 -1103.3156
+109414.2593194931 3.8205261 -1103.2168
+109415.2593195434 3.8204472 -1103.2366
+109416.2593195937 3.8203685 -1103.2366
+109417.259319644 3.8204079 -1103.1774
+109418.2593196942 3.8204079 -1103.1774
+109419.2593197445 3.8204079 -1103.2959
+109420.2593197948 3.8203685 -1103.2168
+109421.2593198451 3.8204472 -1103.1576
+109422.2593198954 3.8203292 -1103.2761
+109423.2593199457 3.8203292 -1103.197
+109424.259319996 3.8202899 -1103.2761
+109425.2593200463 3.8203685 -1103.3156
+109426.2593200966 3.8203292 -1103.1576
+109427.2593201469 3.8202112 -1103.2959
+109428.2593201972 3.8202112 -1103.2761
+109429.2593202475 3.8203292 -1103.2959
+109430.2593202977 3.8203292 -1103.2168
+109431.259320348 3.8201323 -1103.197
+109432.2593203983 3.8202112 -1103.1576
+109433.2593204486 3.8202112 -1103.1774
+109434.2593204989 3.8201716 -1103.2168
+109435.2593205492 3.8201323 -1103.0984
+109436.2593205995 3.8201716 -1103.1774
+109437.2593206498 3.8200536 -1103.2366
+109438.2593207001 3.8200536 -1103.197
+109439.2593207504 3.8199356 -1103.2168
+109440.2593208007 3.8199749 -1103.1576
+109441.259320851 3.8201716 -1103.2366
+109442.2593209012 3.8200536 -1103.2562
+109443.2593209515 3.8199749 -1103.1576
+109444.2593210018 3.8200142 -1103.197
+109445.2593210521 3.8199749 -1103.2761
+109446.2593211024 3.8199749 -1103.2761
+109447.2593211527 3.8200142 -1103.2366
+109448.259321203 3.8199749 -1103.3156
+109449.2593212533 3.8199356 -1103.197
+109450.2593213036 3.8199749 -1103.197
+109451.2593213539 3.8199749 -1103.2959
+109452.2593214042 3.8199749 -1103.2168
+109453.2593214544 3.8200142 -1103.197
+109454.2593215047 3.8199356 -1103.2366
+109455.259321555 3.8198566 -1103.2366
+109456.2593216053 3.819778 -1103.2366
+109457.2593216556 3.8198173 -1103.2168
+109458.2593217059 3.8198566 -1103.2366
+109459.2593217562 3.8198173 -1103.2168
+109460.2593218065 3.819778 -1103.1576
+109461.2593218568 3.819778 -1103.2562
+109462.2593219071 3.8196993 -1103.2168
+109463.2593219574 3.819778 -1103.2761
+109464.2593220077 3.8196993 -1103.2168
+109465.2593220579 3.8196599 -1103.2168
+109466.2593221082 3.8196993 -1103.2761
+109467.2593221585 3.8196993 -1103.2168
+109468.2593222088 3.819581 -1103.1774
+109469.2593222591 3.8196206 -1103.2168
+109470.2593223094 3.8196206 -1103.2366
+109471.2593223597 3.8196599 -1103.2168
+109472.25932241 3.8196206 -1103.1576
+109473.2593224603 3.8196599 -1103.2366
+109474.2593225106 3.8196206 -1103.1576
+109475.2593225609 3.819463 -1103.1774
+109476.2593226111 3.819463 -1103.197
+109477.2593226614 3.8194237 -1103.2168
+109478.2593227117 3.819463 -1103.2366
+109479.259322762 3.8194237 -1103.2168
+109480.2593228123 3.8195024 -1103.2761
+109481.2593228626 3.8195417 -1103.2168
+109482.2593229129 3.8193843 -1103.1576
+109483.2593229632 3.8194237 -1103.2366
+109484.2593230135 3.819463 -1103.2761
+109485.2593230638 3.8193843 -1103.197
+109486.2593231141 3.8192661 -1103.2761
+109487.2593231644 3.8192661 -1103.1576
+109488.2593232146 3.8193843 -1103.1576
+109489.2593232649 3.8193843 -1103.1774
+109490.2593233152 3.8191874 -1103.2761
+109491.2593233655 3.819345 -1103.1774
+109492.2593234158 3.8192661 -1103.1378
+109493.2593234661 3.8192661 -1103.2366
+109494.2593235164 3.8192267 -1103.1774
+109495.2593235667 3.8193057 -1103.2562
+109496.259323617 3.8192267 -1103.2366
+109497.2593236673 3.8191874 -1103.197
+109498.2593237176 3.8191087 -1103.197
+109499.2593237679 3.8191874 -1103.2761
+109500.2593238181 3.8190694 -1103.2366
+109501.2593238684 3.8191874 -1103.2168
+109502.2593239187 3.8191481 -1103.2366
+109503.259323969 3.8191481 -1103.1774
+109504.2593240193 3.8191087 -1103.197
+109505.2593240696 3.8190694 -1103.2959
+109506.2593241199 3.8191481 -1103.2168
+109507.2593241702 3.8191087 -1103.1182
+109508.2593242205 3.81903 -1103.0984
+109509.2593242708 3.8190694 -1103.1774
+109510.2593243211 3.8189907 -1103.197
+109511.2593243713 3.8189511 -1103.2366
+109512.2593244216 3.8189907 -1103.2168
+109513.2593244719 3.8189907 -1103.1576
+109514.2593245222 3.8189907 -1103.2366
+109515.2593245725 3.8189511 -1103.1576
+109516.2593246228 3.8189511 -1103.2168
+109517.2593246731 3.8189907 -1103.2562
+109518.2593247234 3.8189118 -1103.2562
+109519.2593247737 3.8188331 -1103.2761
+109520.259324824 3.8188725 -1103.2959
+109521.2593248743 3.8188725 -1103.2562
+109522.2593249246 3.8188725 -1103.1378
+109523.2593249748 3.8188331 -1103.2366
+109524.2593250251 3.8187938 -1103.2366
+109525.2593250754 3.8187151 -1103.1774
+109526.2593251257 3.8187544 -1103.2562
+109527.259325176 3.8188331 -1103.2562
+109528.2593252263 3.8187544 -1103.197
+109529.2593252766 3.8187938 -1103.2366
+109530.2593253269 3.8186362 -1103.2366
+109531.2593253772 3.8187151 -1103.2959
+109532.2593254275 3.8186758 -1103.2168
+109533.2593254778 3.8186362 -1103.2761
+109534.2593255281 3.8186758 -1103.2366
+109535.2593255783 3.8185575 -1103.2366
+109536.2593256286 3.8186362 -1103.2366
+109537.2593256789 3.8185575 -1103.197
+109538.2593257292 3.8185968 -1103.2366
+109539.2593257795 3.8184788 -1103.1774
+109540.2593258298 3.8184788 -1103.2959
+109541.2593258801 3.8184788 -1103.2562
+109542.2593259304 3.8184788 -1103.197
+109543.2593259807 3.8184395 -1103.2168
+109544.259326031 3.8184395 -1103.1774
+109545.2593260813 3.8184395 -1103.1378
+109546.2593261315 3.8184788 -1103.197
+109547.2593261818 3.8184788 -1103.2562
+109548.2593262321 3.8184395 -1103.2168
+109549.2593262824 3.8184395 -1103.197
+109550.2593263327 3.8184395 -1103.2366
+109551.259326383 3.8183608 -1103.1576
+109552.2593264333 3.8183608 -1103.2562
+109553.2593264836 3.8183608 -1103.1774
+109554.2593265339 3.8183212 -1103.2168
+109555.2593265842 3.8183608 -1103.2959
+109556.2593266345 3.8183212 -1103.2168
+109557.2593266848 3.8183212 -1103.1774
+109558.259326735 3.8182819 -1103.2366
+109559.2593267853 3.8182032 -1103.2168
+109560.2593268356 3.8182425 -1103.2168
+109561.2593268859 3.8182425 -1103.2168
+109562.2593269362 3.8181639 -1103.2562
+109563.2593269865 3.8181639 -1103.2562
+109564.2593270368 3.8181245 -1103.2959
+109565.2593270871 3.8181639 -1103.2366
+109566.2593271374 3.8182032 -1103.1774
+109567.2593271877 3.8181245 -1103.2168
+109568.259327238 3.8182032 -1103.2761
+109569.2593272883 3.8180459 -1103.197
+109570.2593273385 3.8181245 -1103.2761
+109571.2593273888 3.8181639 -1103.2562
+109572.2593274391 3.8180459 -1103.2168
+109573.2593274894 3.8180459 -1103.1378
+109574.2593275397 3.8180063 -1103.1774
+109575.25932759 3.8179276 -1103.1576
+109576.2593276403 3.8179669 -1103.2366
+109577.2593276906 3.8179669 -1103.2761
+109578.2593277409 3.8179276 -1103.197
+109579.2593277912 3.8179276 -1103.1774
+109580.2593278415 3.8179669 -1103.2761
+109581.2593278917 3.8179276 -1103.1774
+109582.259327942 3.8179276 -1103.2168
+109583.2593279923 3.8179276 -1103.2366
+109584.2593280426 3.8178096 -1103.1774
+109585.2593280929 3.8178489 -1103.2562
+109586.2593281432 3.8178883 -1103.2761
+109587.2593281935 3.8178096 -1103.2959
+109588.2593282438 3.8177307 -1103.1774
+109589.2593282941 3.8178883 -1103.2562
+109590.2593283444 3.8178883 -1103.2366
+109591.2593283947 3.8177702 -1103.2761
+109592.259328445 3.8177702 -1103.1378
+109593.2593284952 3.8177702 -1103.1182
+109594.2593285455 3.8178096 -1103.2366
+109595.2593285958 3.817652 -1103.2366
+109596.2593286461 3.8177702 -1103.2562
+109597.2593286964 3.8177702 -1103.2366
+109598.2593287467 3.8176913 -1103.3156
+109599.259328797 3.8176126 -1103.197
+109600.2593288473 3.8177307 -1103.2562
+109601.2593288976 3.8175733 -1103.2562
+109602.2593289479 3.8176126 -1103.1576
+109603.2593289982 3.8176913 -1103.2761
+109604.2593290485 3.817652 -1103.2366
+109605.2593290987 3.8175733 -1103.2562
+109606.259329149 3.8174946 -1103.2761
+109607.2593291993 3.817534 -1103.2562
+109608.2593292496 3.817534 -1103.2562
+109609.2593292999 3.8174946 -1103.2562
+109610.2593293502 3.8174553 -1103.2366
+109611.2593294005 3.817534 -1103.197
+109612.2593294508 3.817534 -1103.197
+109613.2593295011 3.8174157 -1103.2366
+109614.2593295514 3.8174157 -1103.2562
+109615.2593296017 3.8175733 -1103.2168
+109616.2593296519 3.8174157 -1103.1774
+109617.2593297022 3.8173764 -1103.2761
+109618.2593297525 3.8173764 -1103.2366
+109619.2593298028 3.8174157 -1103.2168
+109620.2593298531 3.8173764 -1103.2168
+109621.2593299034 3.8172977 -1103.2366
+109622.2593299537 3.8172977 -1103.3551
+109623.259330004 3.8172977 -1103.2761
+109624.2593300543 3.8172584 -1103.2959
+109625.2593301046 3.8172977 -1103.2761
+109626.2593301549 3.817219 -1103.2761
+109627.2593302052 3.817219 -1103.1576
+109628.2593302554 3.8171797 -1103.2562
+109629.2593303057 3.8172584 -1103.2168
+109630.259330356 3.8171797 -1103.2168
+109631.2593304063 3.817219 -1103.2761
+109632.2593304566 3.817219 -1103.2168
+109633.2593305069 3.8171008 -1103.197
+109634.2593305572 3.8172584 -1103.2168
+109635.2593306075 3.8171403 -1103.2761
+109636.2593306578 3.8170614 -1103.2562
+109637.2593307081 3.8171008 -1103.3156
+109638.2593307584 3.8171008 -1103.197
+109639.2593308087 3.8170221 -1103.2562
+109640.2593308589 3.8170614 -1103.1774
+109641.2593309092 3.8171008 -1103.2168
+109642.2593309595 3.8170221 -1103.3156
+109643.2593310098 3.8169827 -1103.197
+109644.2593310601 3.8170221 -1103.197
+109645.2593311104 3.8169041 -1103.197
+109646.2593311607 3.8169827 -1103.2366
+109647.259331211 3.8169434 -1103.2562
+109648.2593312613 3.8169041 -1103.2366
+109649.2593313116 3.8169434 -1103.2366
+109650.2593313619 3.8169827 -1103.2168
+109651.2593314121 3.8168647 -1103.1774
+109652.2593314624 3.8168647 -1103.1576
+109653.2593315127 3.8168647 -1103.2562
+109654.259331563 3.8169827 -1103.2168
+109655.2593316133 3.8169041 -1103.2562
+109656.2593316636 3.8168254 -1103.1774
+109657.2593317139 3.8168254 -1103.197
+109658.2593317642 3.8168254 -1103.1774
+109659.2593318145 3.8166678 -1103.1576
+109660.2593318648 3.8168647 -1103.2761
+109661.2593319151 3.8167858 -1103.2562
+109662.2593319654 3.8168254 -1103.2761
+109663.2593320156 3.8166678 -1103.197
+109664.2593320659 3.8167071 -1103.2562
+109665.2593321162 3.8166678 -1103.0588
+109666.2593321665 3.8166285 -1103.2168
+109667.2593322168 3.8166678 -1103.1774
+109668.2593322671 3.8166678 -1103.197
+109669.2593323174 3.8165891 -1103.2366
+109670.2593323677 3.8166285 -1103.197
+109671.259332418 3.8165104 -1103.2562
+109672.2593324683 3.8165104 -1103.2761
+109673.2593325186 3.8165498 -1103.2761
+109674.2593325689 3.8165498 -1103.2366
+109675.2593326191 3.8164709 -1103.3156
+109676.2593326694 3.8165104 -1103.2761
+109677.2593327197 3.8165498 -1103.1774
+109678.25933277 3.8166285 -1103.2168
+109679.2593328203 3.8165104 -1103.197
+109680.2593328706 3.8164315 -1103.2366
+109681.2593329209 3.8165104 -1103.2168
+109682.2593329712 3.8164315 -1103.2761
+109683.2593330215 3.8165104 -1103.2761
+109684.2593330718 3.8164315 -1103.3353
+109685.2593331221 3.8163922 -1103.2168
+109686.2593331723 3.8163922 -1103.2562
+109687.2593332226 3.8165104 -1103.2366
+109688.2593332729 3.8163135 -1103.2168
+109689.2593333232 3.8163528 -1103.2562
+109690.2593333735 3.8163528 -1103.2562
+109691.2593334238 3.8163135 -1103.2168
+109692.2593334741 3.8163528 -1103.197
+109693.2593335244 3.8161559 -1103.1774
+109694.2593335747 3.8162742 -1103.2562
+109695.259333625 3.8164315 -1103.2366
+109696.2593336753 3.8162348 -1103.197
+109697.2593337256 3.8161559 -1103.197
+109698.2593337758 3.8161559 -1103.2366
+109699.2593338261 3.8162348 -1103.1576
+109700.2593338764 3.8162348 -1103.2366
+109701.2593339267 3.8161952 -1103.2168
+109702.259333977 3.8161952 -1103.2761
+109703.2593340273 3.8161952 -1103.1378
+109704.2593340776 3.8161559 -1103.2959
+109705.2593341279 3.8161166 -1103.2168
+109706.2593341782 3.8161166 -1103.2761
+109707.2593342285 3.8159986 -1103.1774
+109708.2593342788 3.8160772 -1103.3156
+109709.2593343291 3.8160772 -1103.2168
+109710.2593343793 3.8159592 -1103.197
+109711.2593344296 3.8160772 -1103.1774
+109712.2593344799 3.8160379 -1103.1576
+109713.2593345302 3.8159986 -1103.0785
+109714.2593345805 3.8159592 -1103.1378
+109715.2593346308 3.8159199 -1103.2168
+109716.2593346811 3.8159592 -1103.1576
+109717.2593347314 3.8159592 -1103.1576
+109718.2593347817 3.8158803 -1103.1576
+109719.259334832 3.8159199 -1103.1378
+109720.2593348823 3.8158803 -1103.2959
+109721.2593349325 3.8159199 -1103.3156
+109722.2593349828 3.8158016 -1103.197
+109723.2593350331 3.815841 -1103.2562
+109724.2593350834 3.8158803 -1103.1182
+109725.2593351337 3.8158803 -1103.1378
+109726.259335184 3.8158803 -1103.2366
+109727.2593352343 3.8156836 -1103.2761
+109728.2593352846 3.8156443 -1103.2366
+109729.2593353349 3.8158016 -1103.2959
+109730.2593353852 3.8156049 -1103.1774
+109731.2593354355 3.8156049 -1103.2366
+109732.2593354858 3.8157623 -1103.197
+109733.259335536 3.8156836 -1103.1774
+109734.2593355863 3.8157229 -1103.2562
+109735.2593356366 3.8156443 -1103.3353
+109736.2593356869 3.815526 -1103.2366
+109737.2593357372 3.8156443 -1103.2959
+109738.2593357875 3.8155653 -1103.3156
+109739.2593358378 3.8155653 -1103.2366
+109740.2593358881 3.8156443 -1103.2761
+109741.2593359384 3.8155653 -1103.2168
+109742.2593359887 3.8156049 -1103.2366
+109743.259336039 3.8156443 -1103.2168
+109744.2593360893 3.8154867 -1103.3156
+109745.2593361395 3.8153687 -1103.2562
+109746.2593361898 3.8154473 -1103.1182
+109747.2593362401 3.815408 -1103.2562
+109748.2593362904 3.8153293 -1103.2366
+109749.2593363407 3.815408 -1103.197
+109750.259336391 3.815408 -1103.3353
+109751.2593364413 3.8153687 -1103.2366
+109752.2593364916 3.815408 -1103.2562
+109753.2593365419 3.8154473 -1103.2168
+109754.2593365922 3.8153293 -1103.197
+109755.2593366425 3.8154473 -1103.197
+109756.2593366927 3.815408 -1103.2168
+109757.259336743 3.8153293 -1103.2562
+109758.2593367933 3.8153687 -1103.2761
+109759.2593368436 3.8153687 -1103.2959
+109760.2593368939 3.81529 -1103.2562
+109761.2593369442 3.8153293 -1103.3156
+109762.2593369945 3.81529 -1103.197
+109763.2593370448 3.8152504 -1103.197
+109764.2593370951 3.815093 -1103.197
+109765.2593371454 3.8152111 -1103.197
+109766.2593371957 3.8151324 -1103.2761
+109767.259337246 3.815093 -1103.1774
+109768.2593372962 3.8152111 -1103.2366
+109769.2593373465 3.8151717 -1103.2168
+109770.2593373968 3.8152111 -1103.1182
+109771.2593374471 3.8151324 -1103.2366
+109772.2593374974 3.8151324 -1103.2366
+109773.2593375477 3.815093 -1103.2761
+109774.259337598 3.8150144 -1103.1774
+109775.2593376483 3.8150537 -1103.2168
+109776.2593376986 3.814975 -1103.2959
+109777.2593377489 3.8150537 -1103.2168
+109778.2593377992 3.8151717 -1103.197
+109779.2593378494 3.814975 -1103.1774
+109780.2593378997 3.8149354 -1103.2366
+109781.25933795 3.8149354 -1103.3353
+109782.2593380003 3.8148961 -1103.197
+109783.2593380506 3.8149354 -1103.2761
+109784.2593381009 3.8148961 -1103.2366
+109785.2593381512 3.8149354 -1103.2562
+109786.2593382015 3.8148961 -1103.1378
+109787.2593382518 3.8148568 -1103.1774
+109788.2593383021 3.8147781 -1103.2366
+109789.2593383524 3.8147781 -1103.2366
+109790.2593384027 3.8148568 -1103.1774
+109791.2593384529 3.8148174 -1103.2959
+109792.2593385032 3.8148961 -1103.2366
+109793.2593385535 3.8147781 -1103.197
+109794.2593386038 3.8147781 -1103.3353
+109795.2593386541 3.8146601 -1103.1182
+109796.2593387044 3.8148568 -1103.2168
+109797.2593387547 3.8147781 -1103.2366
+109798.259338805 3.8147388 -1103.2562
+109799.2593388553 3.8146994 -1103.2562
+109800.2593389056 3.8146205 -1103.197
+109801.2593389559 3.8146205 -1103.1576
+109802.2593390062 3.8146205 -1103.2168
+109803.2593390564 3.8146994 -1103.1182
+109804.2593391067 3.8146601 -1103.197
+109805.259339157 3.8146205 -1103.2168
+109806.2593392073 3.8145418 -1103.2168
+109807.2593392576 3.8145418 -1103.1576
+109808.2593393079 3.8145812 -1103.2562
+109809.2593393582 3.8145418 -1103.2168
+109810.2593394085 3.8144631 -1103.2366
+109811.2593394588 3.8145418 -1103.2168
+109812.2593395091 3.8145025 -1103.2959
+109813.2593395594 3.8145812 -1103.1774
+109814.2593396096 3.8145812 -1103.2168
+109815.2593396599 3.8144631 -1103.1774
+109816.2593397102 3.8144238 -1103.1576
+109817.2593397605 3.8144631 -1103.2168
+109818.2593398108 3.8145025 -1103.1774
+109819.2593398611 3.8143055 -1103.197
+109820.2593399114 3.8143845 -1103.197
+109821.2593399617 3.8143845 -1103.2562
+109822.259340012 3.8143845 -1103.2761
+109823.2593400623 3.8143845 -1103.2562
+109824.2593401126 3.8142662 -1103.2168
+109825.2593401629 3.8143449 -1103.1576
+109826.2593402131 3.8142662 -1103.2168
+109827.2593402634 3.8143449 -1103.2168
+109828.2593403137 3.8142662 -1103.2168
+109829.259340364 3.8143055 -1103.2366
+109830.2593404143 3.8142662 -1103.2366
+109831.2593404646 3.8141875 -1103.2761
+109832.2593405149 3.8142662 -1103.2366
+109833.2593405652 3.8142662 -1103.2366
+109834.2593406155 3.8141875 -1103.1576
+109835.2593406658 3.8142662 -1103.3156
+109836.2593407161 3.8141088 -1103.1774
+109837.2593407664 3.8141482 -1103.1576
+109838.2593408166 3.8141088 -1103.2366
+109839.2593408669 3.8141482 -1103.1774
+109840.2593409172 3.8141875 -1103.197
+109841.2593409675 3.8141088 -1103.2959
+109842.2593410178 3.8140299 -1103.2366
+109843.2593410681 3.8139906 -1103.2562
+109844.2593411184 3.8140695 -1103.3156
+109845.2593411687 3.8139119 -1103.2761
+109846.259341219 3.8139906 -1103.2366
+109847.2593412693 3.8139906 -1103.1576
+109848.2593413196 3.8139906 -1103.197
+109849.2593413698 3.8140299 -1103.2562
+109850.2593414201 3.8139119 -1103.2168
+109851.2593414704 3.8139906 -1103.2562
+109852.2593415207 3.8138726 -1103.2761
+109853.259341571 3.8139119 -1103.2168
+109854.2593416213 3.8139119 -1103.2562
+109855.2593416716 3.8139119 -1103.2366
+109856.2593417219 3.8138332 -1103.2761
+109857.2593417722 3.8138332 -1103.2959
+109858.2593418225 3.8137939 -1103.2562
+109859.2593418728 3.8137939 -1103.3156
+109860.2593419231 3.8137939 -1103.197
+109861.2593419733 3.8137546 -1103.2168
+109862.2593420236 3.8137546 -1103.1774
+109863.2593420739 3.8136756 -1103.197
+109864.2593421242 3.8137546 -1103.2366
+109865.2593421745 3.8136363 -1103.2168
+109866.2593422248 3.8136363 -1103.197
+109867.2593422751 3.8136756 -1103.2761
+109868.2593423254 3.813715 -1103.197
+109869.2593423757 3.8136363 -1103.197
+109870.259342426 3.813597 -1103.2168
+109871.2593424763 3.813597 -1103.197
+109872.2593425266 3.8135183 -1103.2168
+109873.2593425768 3.813597 -1103.1774
+109874.2593426271 3.8135576 -1103.2168
+109875.2593426774 3.813597 -1103.2168
+109876.2593427277 3.8136756 -1103.2366
+109877.259342778 3.8135576 -1103.197
+109878.2593428283 3.8135576 -1103.2959
+109879.2593428786 3.8134789 -1103.3353
+109880.2593429289 3.8134396 -1103.2562
+109881.2593429792 3.8134789 -1103.1182
+109882.2593430295 3.8134396 -1103.1576
+109883.2593430798 3.8135576 -1103.2366
+109884.25934313 3.8134789 -1103.2562
+109885.2593431803 3.8133214 -1103.1378
+109886.2593432306 3.8134396 -1103.2366
+109887.2593432809 3.8134 -1103.2168
+109888.2593433312 3.8133607 -1103.2366
+109889.2593433815 3.8133607 -1103.1576
+109890.2593434318 3.8133214 -1103.1774
+109891.2593434821 3.8133607 -1103.197
+109892.2593435324 3.8133607 -1103.197
+109893.2593435827 3.813282 -1103.197
+109894.259343633 3.8133214 -1103.197
+109895.2593436833 3.8133607 -1103.2761
+109896.2593437335 3.8132427 -1103.2168
+109897.2593437838 3.8132427 -1103.197
+109898.2593438341 3.8132033 -1103.1576
+109899.2593438844 3.813164 -1103.2562
+109900.2593439347 3.8132427 -1103.197
+109901.259343985 3.8132427 -1103.197
+109902.2593440353 3.813282 -1103.1378
+109903.2593440856 3.8132033 -1103.197
+109904.2593441359 3.8131247 -1103.2168
+109905.2593441862 3.813164 -1103.1774
+109906.2593442365 3.8130851 -1103.2562
+109907.2593442868 3.8130851 -1103.1774
+109908.259344337 3.8130457 -1103.1774
+109909.2593443873 3.8130064 -1103.1378
+109910.2593444376 3.8130064 -1103.0984
+109911.2593444879 3.8128884 -1103.2366
+109912.2593445382 3.8130457 -1103.1576
+109913.2593445885 3.8129671 -1103.2168
+109914.2593446388 3.8129671 -1103.1774
+109915.2593446891 3.8129277 -1103.3353
+109916.2593447394 3.8130064 -1103.2959
+109917.2593447897 3.8129277 -1103.2168
+109918.25934484 3.8129277 -1103.1774
+109919.2593448902 3.8128884 -1103.2366
+109920.2593449405 3.812849 -1103.1576
+109921.2593449908 3.812849 -1103.3156
+109922.2593450411 3.812849 -1103.2761
+109923.2593450914 3.8128097 -1103.197
+109924.2593451417 3.812849 -1103.2366
+109925.259345192 3.812849 -1103.197
+109926.2593452423 3.8127308 -1103.3156
+109927.2593452926 3.8126915 -1103.197
+109928.2593453429 3.8126915 -1103.1576
+109929.2593453932 3.8126915 -1103.1774
+109930.2593454435 3.8126915 -1103.2366
+109931.2593454937 3.8127308 -1103.2168
+109932.259345544 3.8127701 -1103.2366
+109933.2593455943 3.8127308 -1103.2168
+109934.2593456446 3.8126915 -1103.2761
+109935.2593456949 3.8126521 -1103.197
+109936.2593457452 3.8127308 -1103.1774
+109937.2593457955 3.8126128 -1103.2366
+109938.2593458458 3.8126915 -1103.1378
+109939.2593458961 3.8126128 -1103.2366
+109940.2593459464 3.8126521 -1103.1774
+109941.2593459967 3.8126128 -1103.1378
+109942.259346047 3.8124945 -1103.2562
+109943.2593460972 3.8124552 -1103.3353
+109944.2593461475 3.8125341 -1103.2761
+109945.2593461978 3.8124552 -1103.197
+109946.2593462481 3.8124158 -1103.2168
+109947.2593462984 3.8124552 -1103.2168
+109948.2593463487 3.8124552 -1103.197
+109949.259346399 3.8125341 -1103.2366
+109950.2593464493 3.8124552 -1103.0984
+109951.2593464996 3.8123372 -1103.1774
+109952.2593465499 3.8124552 -1103.0984
+109953.2593466002 3.8122978 -1103.2168
+109954.2593466504 3.8123372 -1103.2168
+109955.2593467007 3.8122978 -1103.197
+109956.259346751 3.8123765 -1103.2168
+109957.2593468013 3.8123372 -1103.2168
+109958.2593468516 3.8123372 -1103.2168
+109959.2593469019 3.8122978 -1103.197
+109960.2593469522 3.8121796 -1103.2168
+109961.2593470025 3.8122978 -1103.2366
+109962.2593470528 3.8122978 -1103.197
+109963.2593471031 3.8122191 -1103.197
+109964.2593471534 3.8122585 -1103.2959
+109965.2593472037 3.8122585 -1103.2168
+109966.2593472539 3.8122191 -1103.2366
+109967.2593473042 3.8121796 -1103.2366
+109968.2593473545 3.8121402 -1103.1576
+109969.2593474048 3.8121796 -1103.2562
+109970.2593474551 3.8120615 -1103.2366
+109971.2593475054 3.8121402 -1103.197
+109972.2593475557 3.8121009 -1103.2761
+109973.259347606 3.8121402 -1103.197
+109974.2593476563 3.8119829 -1103.1182
+109975.2593477066 3.8121796 -1103.2168
+109976.2593477569 3.8120222 -1103.2168
+109977.2593478072 3.8119435 -1103.2168
+109978.2593478574 3.8120615 -1103.2562
+109979.2593479077 3.8119829 -1103.2562
+109980.259347958 3.8120222 -1103.197
+109981.2593480083 3.8120222 -1103.2562
+109982.2593480586 3.8119829 -1103.1576
+109983.2593481089 3.8120222 -1103.2168
+109984.2593481592 3.8119435 -1103.2168
+109985.2593482095 3.8119829 -1103.2168
+109986.2593482598 3.8119042 -1103.1774
+109987.2593483101 3.8119042 -1103.197
+109988.2593483604 3.8118646 -1103.3156
+109989.2593484106 3.8119042 -1103.2366
+109990.2593484609 3.8119042 -1103.2761
+109991.2593485112 3.8117859 -1103.2168
+109992.2593485615 3.8117466 -1103.2168
+109993.2593486118 3.8119042 -1103.2168
+109994.2593486621 3.8118253 -1103.2366
+109995.2593487124 3.8117859 -1103.2562
+109996.2593487627 3.8117859 -1103.1774
+109997.259348813 3.8116286 -1103.197
+109998.2593488633 3.8117859 -1103.2168
+109999.2593489136 3.8116679 -1103.197
+110000.2593489639 3.8116679 -1103.197
+110001.2593490141 3.8117466 -1103.2168
+110002.2593490644 3.8116679 -1103.197
+110003.2593491147 3.8116286 -1103.2761
+110004.259349165 3.8116679 -1103.1378
+110005.2593492153 3.8115892 -1103.1774
+110006.2593492656 3.8116286 -1103.2562
+110007.2593493159 3.8116286 -1103.1378
+110008.2593493662 3.8115892 -1103.2959
+110009.2593494165 3.8115892 -1103.197
+110010.2593494668 3.8115103 -1103.197
+110011.2593495171 3.8116286 -1103.1774
+110012.2593495674 3.8115103 -1103.2761
+110013.2593496176 3.8115497 -1103.2168
+110014.2593496679 3.8115103 -1103.2562
+110015.2593497182 3.8114316 -1103.2959
+110016.2593497685 3.811471 -1103.2959
+110017.2593498188 3.811353 -1103.197
+110018.2593498691 3.8113923 -1103.2959
+110019.2593499194 3.8113923 -1103.1774
+110020.2593499697 3.811353 -1103.1182
+110021.25935002 3.8115103 -1103.2366
+110022.2593500703 3.8113923 -1103.197
+110023.2593501206 3.8113136 -1103.2761
+110024.2593501708 3.811353 -1103.1774
+110025.2593502211 3.8113136 -1103.2168
+110026.2593502714 3.8113136 -1103.1378
+110027.2593503217 3.8112743 -1103.2562
+110028.259350372 3.8113136 -1103.1182
+110029.2593504223 3.8112743 -1103.3156
+110030.2593504726 3.8112743 -1103.1182
+110031.2593505229 3.811156 -1103.2366
+110032.2593505732 3.8111954 -1103.2761
+110033.2593506235 3.811156 -1103.1378
+110034.2593506738 3.8111954 -1103.2761
+110035.2593507241 3.811156 -1103.2959
+110036.2593507743 3.8111954 -1103.2366
+110037.2593508246 3.8110774 -1103.2168
+110038.2593508749 3.8111954 -1103.1378
+110039.2593509252 3.8111954 -1103.1576
+110040.2593509755 3.811156 -1103.3156
+110041.2593510258 3.8110774 -1103.1576
+110042.2593510761 3.811156 -1103.2761
+110043.2593511264 3.811038 -1103.1774
+110044.2593511767 3.8109987 -1103.2562
+110045.259351227 3.8109987 -1103.1774
+110046.2593512773 3.811038 -1103.2168
+110047.2593513276 3.8109593 -1103.2562
+110048.2593513778 3.8109987 -1103.197
+110049.2593514281 3.8109987 -1103.2562
+110050.2593514784 3.8109593 -1103.1576
+110051.2593515287 3.8109987 -1103.2761
+110052.259351579 3.8109987 -1103.2168
+110053.2593516293 3.8109593 -1103.2562
+110054.2593516796 3.8109593 -1103.2959
+110055.2593517299 3.8109987 -1103.2959
+110056.2593517802 3.8109198 -1103.2168
+110057.2593518305 3.8108411 -1103.1182
+110058.2593518808 3.8109593 -1103.197
+110059.259351931 3.8108017 -1103.2761
+110060.2593519813 3.8108017 -1103.2761
+110061.2593520316 3.8108411 -1103.2168
+110062.2593520819 3.8108017 -1103.1774
+110063.2593521322 3.8107231 -1103.1576
+110064.2593521825 3.8108411 -1103.1774
+110065.2593522328 3.8108017 -1103.2168
+110066.2593522831 3.8108017 -1103.2959
+110067.2593523334 3.8107624 -1103.2959
+110068.2593523837 3.8107624 -1103.2562
+110069.259352434 3.8106837 -1103.1378
+110070.2593524843 3.8107231 -1103.2562
+110071.2593525345 3.8107231 -1103.1774
+110072.2593525848 3.8106441 -1103.2959
+110073.2593526351 3.8107624 -1103.2366
+110074.2593526854 3.8106837 -1103.2168
+110075.2593527357 3.8106048 -1103.2761
+110076.259352786 3.8105261 -1103.2168
+110077.2593528363 3.8104868 -1103.197
+110078.2593528866 3.8105261 -1103.2562
+110079.2593529369 3.8106048 -1103.2761
+110080.2593529872 3.8105261 -1103.2168
+110081.2593530375 3.8104868 -1103.197
+110082.2593530877 3.8104868 -1103.1576
+110083.259353138 3.8106441 -1103.2366
+110084.2593531883 3.8104081 -1103.197
+110085.2593532386 3.8105261 -1103.1774
+110086.2593532889 3.8104081 -1103.2168
+110087.2593533392 3.8104868 -1103.2168
+110088.2593533895 3.8104081 -1103.2366
+110089.2593534398 3.8103688 -1103.2366
+110090.2593534901 3.8104475 -1103.2366
+110091.2593535404 3.8103292 -1103.197
+110092.2593535907 3.8103292 -1103.197
+110093.259353641 3.8103292 -1103.2562
+110094.2593536912 3.8102505 -1103.1182
+110095.2593537415 3.8102899 -1103.1576
+110096.2593537918 3.8104081 -1103.1774
+110097.2593538421 3.8103688 -1103.2366
+110098.2593538924 3.8102112 -1103.2761
+110099.2593539427 3.8102505 -1103.2959
+110100.259353993 3.8102112 -1103.2562
+110101.2593540433 3.8102505 -1103.2168
+110102.2593540936 3.8102505 -1103.1774
+110103.2593541439 3.8102112 -1103.2761
+110104.2593541942 3.8102899 -1103.197
+110105.2593542445 3.8102112 -1103.2168
+110106.2593542947 3.8101718 -1103.2959
+110107.259354345 3.8101718 -1103.197
+110108.2593543953 3.8100538 -1103.2562
+110109.2593544456 3.8100932 -1103.2761
+110110.2593544959 3.8101325 -1103.2562
+110111.2593545462 3.8101718 -1103.2366
+110112.2593545965 3.8101325 -1103.1774
+110113.2593546468 3.8099749 -1103.1576
+110114.2593546971 3.8100538 -1103.2562
+110115.2593547474 3.8100538 -1103.1774
+110116.2593547977 3.8099749 -1103.2366
+110117.2593548479 3.8098569 -1103.2761
+110118.2593548982 3.8099356 -1103.1774
+110119.2593549485 3.8099749 -1103.2168
+110120.2593549988 3.8098962 -1103.2562
+110121.2593550491 3.8099749 -1103.2168
+110122.2593550994 3.8099356 -1103.2761
+110123.2593551497 3.8099356 -1103.3551
+110124.2593552 3.8098569 -1103.2959
+110125.2593552503 3.8098569 -1103.1774
+110126.2593553006 3.8098962 -1103.2366
+110127.2593553509 3.8098176 -1103.197
+110128.2593554012 3.8098569 -1103.2562
+110129.2593554514 3.8098176 -1103.2761
+110130.2593555017 3.8097782 -1103.1378
+110131.259355552 3.8098176 -1103.2562
+110132.2593556023 3.8097782 -1103.197
+110133.2593556526 3.8097389 -1103.2168
+110134.2593557029 3.8096993 -1103.2562
+110135.2593557532 3.8096993 -1103.2761
+110136.2593558035 3.8096993 -1103.2366
+110137.2593558538 3.8097782 -1103.2168
+110138.2593559041 3.8096993 -1103.2366
+110139.2593559544 3.8096993 -1103.2366
+110140.2593560047 3.8096993 -1103.0984
+110141.2593560549 3.80966 -1103.2959
+110142.2593561052 3.8095813 -1103.1576
+110143.2593561555 3.8096206 -1103.2562
+110144.2593562058 3.80966 -1103.1576
+110145.2593562561 3.8095026 -1103.1774
+110146.2593563064 3.80966 -1103.1576
+110147.2593563567 3.8095026 -1103.2168
+110148.259356407 3.8095026 -1103.1576
+110149.2593564573 3.8095026 -1103.1576
+110150.2593565076 3.8095813 -1103.2366
+110151.2593565579 3.8095026 -1103.1774
+110152.2593566081 3.8095026 -1103.2761
+110153.2593566584 3.8094633 -1103.197
+110154.2593567087 3.8094239 -1103.1774
+110155.259356759 3.80966 -1103.197
+110156.2593568093 3.809345 -1103.1378
+110157.2593568596 3.8092663 -1103.1576
+110158.2593569099 3.809345 -1103.1576
+110159.2593569602 3.8094239 -1103.2761
+110160.2593570105 3.8093057 -1103.197
+110161.2593570608 3.8093843 -1103.2366
+110162.2593571111 3.809345 -1103.1182
+110163.2593571614 3.8094239 -1103.1774
+110164.2593572116 3.8091877 -1103.2562
+110165.2593572619 3.8093057 -1103.1774
+110166.2593573122 3.8092663 -1103.1774
+110167.2593573625 3.8093843 -1103.197
+110168.2593574128 3.8091877 -1103.2366
+110169.2593574631 3.809227 -1103.2168
+110170.2593575134 3.8091877 -1103.197
+110171.2593575637 3.8091483 -1103.1182
+110172.259357614 3.809227 -1103.197
+110173.2593576643 3.809227 -1103.2562
+110174.2593577146 3.8091877 -1103.2168
+110175.2593577649 3.8090694 -1103.2366
+110176.2593578151 3.809109 -1103.2562
+110177.2593578654 3.809109 -1103.2168
+110178.2593579157 3.8090301 -1103.2761
+110179.259357966 3.8091483 -1103.3156
+110180.2593580163 3.8089907 -1103.197
+110181.2593580666 3.8091483 -1103.2562
+110182.2593581169 3.8090301 -1103.2168
+110183.2593581672 3.8091483 -1103.2562
+110184.2593582175 3.8089907 -1103.2761
+110185.2593582678 3.8090301 -1103.2562
+110186.2593583181 3.8088727 -1103.197
+110187.2593583683 3.8089907 -1103.2366
+110188.2593584186 3.8087938 -1103.2366
+110189.2593584689 3.808912 -1103.1378
+110190.2593585192 3.8089514 -1103.2366
+110191.2593585695 3.808912 -1103.2168
+110192.2593586198 3.808912 -1103.2168
+110193.2593586701 3.8087938 -1103.2168
+110194.2593587204 3.8088334 -1103.2366
+110195.2593587707 3.8088727 -1103.1774
+110196.259358821 3.8088727 -1103.1774
+110197.2593588713 3.8088334 -1103.2366
+110198.2593589216 3.808912 -1103.2761
+110199.2593589718 3.8088334 -1103.2761
+110200.2593590221 3.8087544 -1103.3156
+110201.2593590724 3.8088334 -1103.197
+110202.2593591227 3.8087938 -1103.2366
+110203.259359173 3.8087938 -1103.2168
+110204.2593592233 3.8086758 -1103.2562
+110205.2593592736 3.8087151 -1103.1182
+110206.2593593239 3.8086758 -1103.2366
+110207.2593593742 3.8087151 -1103.2168
+110208.2593594245 3.8085184 -1103.1774
+110209.2593594748 3.8086364 -1103.1774
+110210.2593595251 3.8085971 -1103.2761
+110211.2593595753 3.8085971 -1103.2562
+110212.2593596256 3.8085184 -1103.1774
+110213.2593596759 3.8085971 -1103.2761
+110214.2593597262 3.8086364 -1103.1774
+110215.2593597765 3.8084788 -1103.197
+110216.2593598268 3.8085184 -1103.1774
+110217.2593598771 3.8085184 -1103.2366
+110218.2593599274 3.8085577 -1103.2366
+110219.2593599777 3.8084788 -1103.1774
+110220.259360028 3.8084395 -1103.197
+110221.2593600783 3.8084395 -1103.0984
+110222.2593601285 3.8084002 -1103.197
+110223.2593601788 3.8084002 -1103.1774
+110224.2593602291 3.8084395 -1103.1774
+110225.2593602794 3.8083215 -1103.2562
+110226.2593603297 3.8084395 -1103.2366
+110227.25936038 3.8084002 -1103.2959
+110228.2593604303 3.8084395 -1103.2366
+110229.2593604806 3.8083608 -1103.1774
+110230.2593605309 3.8082821 -1103.2366
+110231.2593605812 3.8083608 -1103.197
+110232.2593606315 3.8082035 -1103.2366
+110233.2593606818 3.8082821 -1103.3156
+110234.259360732 3.8082035 -1103.2959
+110235.2593607823 3.8082821 -1103.2562
+110236.2593608326 3.8082035 -1103.1774
+110237.2593608829 3.8081639 -1103.1576
+110238.2593609332 3.8080852 -1103.2562
+110239.2593609835 3.8081245 -1103.2168
+110240.2593610338 3.8081639 -1103.1774
+110241.2593610841 3.8081639 -1103.2959
+110242.2593611344 3.8080852 -1103.2959
+110243.2593611847 3.8081639 -1103.1774
+110244.259361235 3.8080852 -1103.1182
+110245.2593612853 3.8081245 -1103.197
+110246.2593613355 3.8080852 -1103.2168
+110247.2593613858 3.8081639 -1103.1774
+110248.2593614361 3.8080852 -1103.0391
+110249.2593614864 3.8079672 -1103.1576
+110250.2593615367 3.8080459 -1103.2168
+110251.259361587 3.8079278 -1103.197
+110252.2593616373 3.8080459 -1103.2168
+110253.2593616876 3.8080065 -1103.2366
+110254.2593617379 3.8080459 -1103.197
+110255.2593617882 3.8080852 -1103.2761
+110256.2593618385 3.8079672 -1103.2366
+110257.2593618887 3.8078885 -1103.2761
+110258.259361939 3.8080852 -1103.2761
+110259.2593619893 3.8078885 -1103.2761
+110260.2593620396 3.8078885 -1103.197
+110261.2593620899 3.8079278 -1103.197
+110262.2593621402 3.8078489 -1103.197
+110263.2593621905 3.8079278 -1103.1774
+110264.2593622408 3.8078489 -1103.2761
+110265.2593622911 3.8078096 -1103.1774
+110266.2593623414 3.8078885 -1103.2168
+110267.2593623917 3.8077309 -1103.3156
+110268.259362442 3.8078096 -1103.197
+110269.2593624922 3.8078096 -1103.197
+110270.2593625425 3.8076522 -1103.2168
+110271.2593625928 3.8076129 -1103.2761
+110272.2593626431 3.8077309 -1103.2168
+110273.2593626934 3.8076522 -1103.1576
+110274.2593627437 3.8076916 -1103.2168
+110275.259362794 3.8075736 -1103.2959
+110276.2593628443 3.8076129 -1103.2168
+110277.2593628946 3.8076916 -1103.2562
+110278.2593629449 3.8076916 -1103.2366
+110279.2593629952 3.8076522 -1103.3353
+110280.2593630455 3.8076129 -1103.2168
+110281.2593630957 3.807534 -1103.3156
+110282.259363146 3.807534 -1103.2562
+110283.2593631963 3.8074946 -1103.2959
+110284.2593632466 3.8075736 -1103.2959
+110285.2593632969 3.8074946 -1103.1774
+110286.2593633472 3.8074553 -1103.2761
+110287.2593633975 3.807416 -1103.1576
+110288.2593634478 3.8074553 -1103.197
+110289.2593634981 3.807534 -1103.1576
+110290.2593635484 3.8074553 -1103.2959
+110291.2593635987 3.8074553 -1103.2761
+110292.2593636489 3.8073766 -1103.1774
+110293.2593636992 3.8074553 -1103.2959
+110294.2593637495 3.8074946 -1103.3156
+110295.2593637998 3.807416 -1103.2366
+110296.2593638501 3.8072979 -1103.2168
+110297.2593639004 3.8073373 -1103.2959
+110298.2593639507 3.8072584 -1103.1774
+110299.259364001 3.8073373 -1103.2959
+110300.2593640513 3.8072979 -1103.1378
+110301.2593641016 3.8073373 -1103.2562
+110302.2593641519 3.8073373 -1103.2761
+110303.2593642022 3.8073373 -1103.2366
+110304.2593642524 3.807219 -1103.1378
+110305.2593643027 3.8071797 -1103.197
+110306.259364353 3.8071797 -1103.2959
+110307.2593644033 3.807219 -1103.2366
+110308.2593644536 3.8071404 -1103.2562
+110309.2593645039 3.8073373 -1103.2366
+110310.2593645542 3.807101 -1103.2562
+110311.2593646045 3.8071404 -1103.2366
+110312.2593646548 3.8070617 -1103.2959
+110313.2593647051 3.807101 -1103.2761
+110314.2593647554 3.8070617 -1103.2562
+110315.2593648057 3.8070223 -1103.2168
+110316.2593648559 3.8070617 -1103.3156
+110317.2593649062 3.8070223 -1103.197
+110318.2593649565 3.8070617 -1103.2366
+110319.2593650068 3.8070223 -1103.2366
+110320.2593650571 3.807101 -1103.197
+110321.2593651074 3.806983 -1103.1774
+110322.2593651577 3.806983 -1103.2366
+110323.259365208 3.8069041 -1103.2366
+110324.2593652583 3.806983 -1103.2168
+110325.2593653086 3.8068254 -1103.197
+110326.2593653589 3.8069434 -1103.197
+110327.2593654091 3.8068254 -1103.1576
+110328.2593654594 3.8068647 -1103.2366
+110329.2593655097 3.8068647 -1103.197
+110330.25936556 3.8067861 -1103.1576
+110331.2593656103 3.8068647 -1103.1182
+110332.2593656606 3.8068254 -1103.3156
+110333.2593657109 3.8067467 -1103.2366
+110334.2593657612 3.8067861 -1103.2366
+110335.2593658115 3.8068254 -1103.2168
+110336.2593658618 3.8067074 -1103.2366
+110337.2593659121 3.8068647 -1103.197
+110338.2593659624 3.8067467 -1103.1378
+110339.2593660126 3.806668 -1103.2562
+110340.2593660629 3.8067861 -1103.2761
+110341.2593661132 3.806668 -1103.197
+110342.2593661635 3.806668 -1103.2168
+110343.2593662138 3.806668 -1103.2761
+110344.2593662641 3.8067074 -1103.2562
+110345.2593663144 3.8065891 -1103.2959
+110346.2593663647 3.8067074 -1103.2959
+110347.259366415 3.8065891 -1103.2959
+110348.2593664653 3.8066285 -1103.2761
+110349.2593665156 3.8065891 -1103.2959
+110350.2593665659 3.8065498 -1103.2168
+110351.2593666161 3.8065891 -1103.2959
+110352.2593666664 3.8065498 -1103.2168
+110353.2593667167 3.8064318 -1103.2168
+110354.259366767 3.8065891 -1103.2562
+110355.2593668173 3.8063924 -1103.2168
+110356.2593668676 3.8065104 -1103.2562
+110357.2593669179 3.8063924 -1103.2562
+110358.2593669682 3.8065104 -1103.2959
+110359.2593670185 3.8065104 -1103.1576
+110360.2593670688 3.8063924 -1103.2761
+110361.2593671191 3.8063531 -1103.2959
+110362.2593671693 3.8064318 -1103.2366
+110363.2593672196 3.8063924 -1103.2366
+110364.2593672699 3.8064711 -1103.2168
+110365.2593673202 3.8062742 -1103.2959
+110366.2593673705 3.8063531 -1103.2366
+110367.2593674208 3.8063135 -1103.2168
+110368.2593674711 3.8063135 -1103.1774
+110369.2593675214 3.8064318 -1103.2562
+110370.2593675717 3.8062742 -1103.2168
+110371.259367622 3.8062742 -1103.3353
+110372.2593676723 3.8062742 -1103.2959
+110373.2593677226 3.8063531 -1103.1378
+110374.2593677728 3.8061955 -1103.2366
+110375.2593678231 3.8060775 -1103.3353
+110376.2593678734 3.8061955 -1103.1774
+110377.2593679237 3.8061955 -1103.2168
+110378.259367974 3.8061955 -1103.2761
+110379.2593680243 3.8062348 -1103.2761
+110380.2593680746 3.8061562 -1103.2562
+110381.2593681249 3.8061562 -1103.3551
+110382.2593681752 3.8061168 -1103.2761
+110383.2593682255 3.8060381 -1103.2168
+110384.2593682758 3.8061562 -1103.2168
+110385.259368326 3.8060775 -1103.2168
+110386.2593683763 3.8059986 -1103.197
+110387.2593684266 3.8060381 -1103.2366
+110388.2593684769 3.8060775 -1103.2562
+110389.2593685272 3.8059986 -1103.1774
+110390.2593685775 3.8059199 -1103.3353
+110391.2593686278 3.8058805 -1103.2168
+110392.2593686781 3.8059592 -1103.2761
+110393.2593687284 3.8059199 -1103.197
+110394.2593687787 3.8059592 -1103.197
+110395.259368829 3.8059592 -1103.2761
+110396.2593688793 3.8059592 -1103.197
+110397.2593689295 3.8058805 -1103.3156
+110398.2593689798 3.8058412 -1103.2761
+110399.2593690301 3.8058805 -1103.1774
+110400.2593690804 3.8058805 -1103.2562
+110401.2593691307 3.8058412 -1103.1774
+110402.259369181 3.8058019 -1103.2761
+110403.2593692313 3.8056443 -1103.2761
+110404.2593692816 3.8059199 -1103.2366
+110405.2593693319 3.8057232 -1103.2366
+110406.2593693822 3.8057625 -1103.197
+110407.2593694325 3.8056836 -1103.2959
+110408.2593694828 3.8056836 -1103.2562
+110409.259369533 3.8056836 -1103.2366
+110410.2593695833 3.8056836 -1103.2366
+110411.2593696336 3.8056836 -1103.2761
+110412.2593696839 3.8056836 -1103.1774
+110413.2593697342 3.8057232 -1103.2366
+110414.2593697845 3.8055263 -1103.2366
+110415.2593698348 3.8056049 -1103.2168
+110416.2593698851 3.8055656 -1103.2761
+110417.2593699354 3.8055656 -1103.2168
+110418.2593699857 3.8055656 -1103.197
+110419.259370036 3.8056049 -1103.2562
+110420.2593700862 3.8055656 -1103.2366
+110421.2593701365 3.8055263 -1103.1774
+110422.2593701868 3.8054869 -1103.1576
+110423.2593702371 3.8054476 -1103.2562
+110424.2593702874 3.8054476 -1103.3156
+110425.2593703377 3.8054476 -1103.2562
+110426.259370388 3.8054476 -1103.2366
+110427.2593704383 3.805408 -1103.2366
+110428.2593704886 3.8054869 -1103.2562
+110429.2593705389 3.8054476 -1103.2562
+110430.2593705892 3.805408 -1103.2562
+110431.2593706395 3.8053687 -1103.2168
+110432.2593706897 3.805408 -1103.2562
+110433.25937074 3.8053687 -1103.2366
+110434.2593707903 3.8053293 -1103.2562
+110435.2593708406 3.805408 -1103.2761
+110436.2593708909 3.80529 -1103.2562
+110437.2593709412 3.8053293 -1103.2366
+110438.2593709915 3.8054476 -1103.2168
+110439.2593710418 3.8052506 -1103.197
+110440.2593710921 3.8052506 -1103.2761
+110441.2593711424 3.805172 -1103.3156
+110442.2593711927 3.8052506 -1103.3353
+110443.259371243 3.8050931 -1103.2959
+110444.2593712932 3.8051326 -1103.197
+110445.2593713435 3.805172 -1103.2562
+110446.2593713938 3.8052113 -1103.197
+110447.2593714441 3.805172 -1103.1774
+110448.2593714944 3.8051326 -1103.2562
+110449.2593715447 3.8051326 -1103.2761
+110450.259371595 3.8051326 -1103.2168
+110451.2593716453 3.8050931 -1103.2562
+110452.2593716956 3.8050144 -1103.2366
+110453.2593717459 3.804975 -1103.197
+110454.2593717962 3.8050537 -1103.2959
+110455.2593718464 3.8050144 -1103.2761
+110456.2593718967 3.8048964 -1103.2562
+110457.259371947 3.8048964 -1103.2761
+110458.2593719973 3.8048964 -1103.2168
+110459.2593720476 3.8050537 -1103.2168
+110460.2593720979 3.8050144 -1103.2959
+110461.2593721482 3.8049357 -1103.197
+110462.2593721985 3.8049357 -1103.2168
+110463.2593722488 3.8049357 -1103.2366
+110464.2593722991 3.8048177 -1103.3156
+110465.2593723494 3.8049357 -1103.2168
+110466.2593723997 3.804857 -1103.197
+110467.2593724499 3.8048964 -1103.2168
+110468.2593725002 3.8049357 -1103.2761
+110469.2593725505 3.8048964 -1103.2562
+110470.2593726008 3.8049357 -1103.2562
+110471.2593726511 3.8049357 -1103.3156
+110472.2593727014 3.8047781 -1103.2366
+110473.2593727517 3.804857 -1103.1774
+110474.259372802 3.8047388 -1103.2959
+110475.2593728523 3.8047781 -1103.2562
+110476.2593729026 3.8048177 -1103.2366
+110477.2593729529 3.8047388 -1103.197
+110478.2593730032 3.8046207 -1103.197
+110479.2593730534 3.8047388 -1103.2168
+110480.2593731037 3.8047388 -1103.1576
+110481.259373154 3.8046601 -1103.2562
+110482.2593732043 3.8046207 -1103.197
+110483.2593732546 3.8046207 -1103.1774
+110484.2593733049 3.8045814 -1103.3156
+110485.2593733552 3.8046207 -1103.2562
+110486.2593734055 3.8046601 -1103.2959
+110487.2593734558 3.8045814 -1103.3156
+110488.2593735061 3.8045421 -1103.2562
+110489.2593735564 3.8045421 -1103.2562
+110490.2593736066 3.8045421 -1103.2168
+110491.2593736569 3.8045027 -1103.197
+110492.2593737072 3.8046207 -1103.2562
+110493.2593737575 3.8045814 -1103.2959
+110494.2593738078 3.8043845 -1103.2562
+110495.2593738581 3.8044631 -1103.1774
+110496.2593739084 3.8045421 -1103.2761
+110497.2593739587 3.8043058 -1103.197
+110498.259374009 3.8044238 -1103.2366
+110499.2593740593 3.8044238 -1103.1774
+110500.2593741096 3.8043845 -1103.2366
+110501.2593741599 3.8043845 -1103.2761
+110502.2593742101 3.8044631 -1103.2761
+110503.2593742604 3.8044238 -1103.197
+110504.2593743107 3.8043451 -1103.197
+110505.259374361 3.8042665 -1103.2562
+110506.2593744113 3.8042271 -1103.2366
+110507.2593744616 3.8044238 -1103.2168
+110508.2593745119 3.8042665 -1103.1774
+110509.2593745622 3.8043058 -1103.2366
+110510.2593746125 3.8041878 -1103.2168
+110511.2593746628 3.8041878 -1103.1378
+110512.2593747131 3.8042665 -1103.3353
+110513.2593747634 3.8041878 -1103.2168
+110514.2593748136 3.8041878 -1103.2366
+110515.2593748639 3.8041482 -1103.2168
+110516.2593749142 3.8041482 -1103.2562
+110517.2593749645 3.8041878 -1103.1774
+110518.2593750148 3.8041482 -1103.197
+110519.2593750651 3.8042271 -1103.2168
+110520.2593751154 3.8040302 -1103.2168
+110521.2593751657 3.8040695 -1103.197
+110522.259375216 3.8041089 -1103.2562
+110523.2593752663 3.8041089 -1103.3353
+110524.2593753166 3.8040695 -1103.2562
+110525.2593753668 3.8040302 -1103.2761
+110526.2593754171 3.8039908 -1103.3353
+110527.2593754674 3.8039122 -1103.2366
+110528.2593755177 3.8040302 -1103.1576
+110529.259375568 3.8039908 -1103.2562
+110530.2593756183 3.8039908 -1103.2761
+110531.2593756686 3.8040302 -1103.2168
+110532.2593757189 3.8039515 -1103.3156
+110533.2593757692 3.8038728 -1103.2366
+110534.2593758195 3.8038728 -1103.1774
+110535.2593758698 3.8038728 -1103.2168
+110536.2593759201 3.8037939 -1103.1774
+110537.2593759703 3.8039122 -1103.197
+110538.2593760206 3.8038728 -1103.1378
+110539.2593760709 3.8038332 -1103.2959
+110540.2593761212 3.8037939 -1103.2366
+110541.2593761715 3.8038728 -1103.2562
+110542.2593762218 3.8037546 -1103.197
+110543.2593762721 3.8037546 -1103.1774
+110544.2593763224 3.8036759 -1103.197
+110545.2593763727 3.8037546 -1103.1774
+110546.259376423 3.8036759 -1103.2959
+110547.2593764733 3.8037939 -1103.197
+110548.2593765236 3.8036366 -1103.1182
+110549.2593765738 3.8036759 -1103.197
+110550.2593766241 3.8036366 -1103.2959
+110551.2593766744 3.8037546 -1103.2562
+110552.2593767247 3.8036759 -1103.2562
+110553.259376775 3.8036366 -1103.2761
+110554.2593768253 3.8036366 -1103.1378
+110555.2593768756 3.8035972 -1103.197
+110556.2593769259 3.8035576 -1103.2959
+110557.2593769762 3.8036759 -1103.3156
+110558.2593770265 3.803479 -1103.1576
+110559.2593770768 3.8035972 -1103.2761
+110560.259377127 3.8035183 -1103.1576
+110561.2593771773 3.803479 -1103.2959
+110562.2593772276 3.803479 -1103.3156
+110563.2593772779 3.8034396 -1103.2366
+110564.2593773282 3.8035183 -1103.3156
+110565.2593773785 3.8034396 -1103.2761
+110566.2593774288 3.8033609 -1103.1576
+110567.2593774791 3.8033216 -1103.2168
+110568.2593775294 3.8034396 -1103.2761
+110569.2593775797 3.803479 -1103.1576
+110570.25937763 3.8033609 -1103.3156
+110571.2593776803 3.8032823 -1103.3353
+110572.2593777305 3.8032823 -1103.197
+110573.2593777808 3.8034396 -1103.1774
+110574.2593778311 3.8033609 -1103.2959
+110575.2593778814 3.8032033 -1103.3353
+110576.2593779317 3.8033216 -1103.2761
+110577.259377982 3.8032823 -1103.197
+110578.2593780323 3.8032427 -1103.2168
+110579.2593780826 3.8032427 -1103.2366
+110580.2593781329 3.8033216 -1103.1576
+110581.2593781832 3.8032823 -1103.197
+110582.2593782335 3.8032033 -1103.2366
+110583.2593782838 3.8032823 -1103.2562
+110584.259378334 3.803164 -1103.1182
+110585.2593783843 3.8032427 -1103.2761
+110586.2593784346 3.803164 -1103.2168
+110587.2593784849 3.803164 -1103.1576
+110588.2593785352 3.8030066 -1103.2562
+110589.2593785855 3.8030853 -1103.2562
+110590.2593786358 3.8030853 -1103.3353
+110591.2593786861 3.8031247 -1103.197
+110592.2593787364 3.8030066 -1103.2168
+110593.2593787867 3.8030853 -1103.2168
+110594.259378837 3.803046 -1103.2562
+110595.2593788872 3.8030066 -1103.2562
+110596.2593789375 3.803046 -1103.2761
+110597.2593789878 3.8030066 -1103.2366
+110598.2593790381 3.8030853 -1103.2366
+110599.2593790884 3.8029277 -1103.2168
+110600.2593791387 3.803046 -1103.2562
+110601.259379189 3.8030066 -1103.2562
+110602.2593792393 3.8029673 -1103.2168
+110603.2593792896 3.8028884 -1103.2366
+110604.2593793399 3.8029673 -1103.2562
+110605.2593793902 3.8029277 -1103.3156
+110606.2593794405 3.8028884 -1103.197
+110607.2593794907 3.8028884 -1103.2562
+110608.259379541 3.8028884 -1103.1774
+110609.2593795913 3.802731 -1103.2168
+110610.2593796416 3.8026917 -1103.3353
+110611.2593796919 3.8027704 -1103.197
+110612.2593797422 3.8027704 -1103.2168
+110613.2593797925 3.8028491 -1103.2562
+110614.2593798428 3.8027704 -1103.2366
+110615.2593798931 3.8028884 -1103.1774
+110616.2593799434 3.8028097 -1103.2168
+110617.2593799937 3.8026524 -1103.2959
+110618.259380044 3.8026524 -1103.197
+110619.2593800942 3.8026128 -1103.2366
+110620.2593801445 3.802731 -1103.2168
+110621.2593801948 3.8026524 -1103.2366
+110622.2593802451 3.8026917 -1103.2366
+110623.2593802954 3.802731 -1103.2366
+110624.2593803457 3.8026128 -1103.2959
+110625.259380396 3.8025734 -1103.3156
+110626.2593804463 3.8026128 -1103.1774
+110627.2593804966 3.8026524 -1103.2168
+110628.2593805469 3.8025341 -1103.2761
+110629.2593805972 3.8025734 -1103.1774
+110630.2593806474 3.8025341 -1103.2761
+110631.2593806977 3.8024948 -1103.2168
+110632.259380748 3.8024948 -1103.2959
+110633.2593807983 3.8024948 -1103.2366
+110634.2593808486 3.8023767 -1103.2562
+110635.2593808989 3.8024161 -1103.1774
+110636.2593809492 3.8024161 -1103.2168
+110637.2593809995 3.8024948 -1103.1774
+110638.2593810498 3.8023767 -1103.2562
+110639.2593811001 3.8025341 -1103.2959
+110640.2593811504 3.8023767 -1103.197
+110641.2593812007 3.8024554 -1103.2761
+110642.2593812509 3.8022192 -1103.197
+110643.2593813012 3.8022978 -1103.3156
+110644.2593813515 3.8022978 -1103.197
+110645.2593814018 3.8024554 -1103.2168
+110646.2593814521 3.8022978 -1103.2562
+110647.2593815024 3.8022192 -1103.2366
+110648.2593815527 3.8022978 -1103.2168
+110649.259381603 3.8022192 -1103.2168
+110650.2593816533 3.8022978 -1103.1774
+110651.2593817036 3.8022978 -1103.2562
+110652.2593817539 3.8021798 -1103.197
+110653.2593818042 3.8022978 -1103.2366
+110654.2593818544 3.8021405 -1103.2366
+110655.2593819047 3.8022192 -1103.2761
+110656.259381955 3.8022585 -1103.2959
+110657.2593820053 3.8022192 -1103.1774
+110658.2593820556 3.8021405 -1103.2761
+110659.2593821059 3.8022192 -1103.2168
+110660.2593821562 3.8021405 -1103.2761
+110661.2593822065 3.8021405 -1103.197
+110662.2593822568 3.8020618 -1103.3156
+110663.2593823071 3.8021405 -1103.197
+110664.2593823574 3.8021011 -1103.2959
+110665.2593824076 3.8020618 -1103.2562
+110666.2593824579 3.8019829 -1103.2761
+110667.2593825082 3.8021405 -1103.2562
+110668.2593825585 3.8020618 -1103.2959
+110669.2593826088 3.8020225 -1103.2168
+110670.2593826591 3.8019435 -1103.2959
+110671.2593827094 3.8019042 -1103.2562
+110672.2593827597 3.8020225 -1103.3156
+110673.25938281 3.8018649 -1103.197
+110674.2593828603 3.8019042 -1103.2562
+110675.2593829106 3.8019435 -1103.3156
+110676.2593829609 3.8018649 -1103.2562
+110677.2593830111 3.8019829 -1103.2366
+110678.2593830614 3.8019829 -1103.2168
+110679.2593831117 3.8018649 -1103.1182
+110680.259383162 3.8018649 -1103.2562
+110681.2593832123 3.8017073 -1103.197
+110682.2593832626 3.8018255 -1103.2761
+110683.2593833129 3.8018255 -1103.2168
+110684.2593833632 3.8018255 -1103.2562
+110685.2593834135 3.8018649 -1103.3353
+110686.2593834638 3.8017073 -1103.197
+110687.2593835141 3.8016286 -1103.197
+110688.2593835643 3.8015893 -1103.2562
+110689.2593836146 3.8017468 -1103.197
+110690.2593836649 3.8017862 -1103.2959
+110691.2593837152 3.8016679 -1103.197
+110692.2593837655 3.8015893 -1103.2168
+110693.2593838158 3.8016679 -1103.3551
+110694.2593838661 3.8016679 -1103.2366
+110695.2593839164 3.8015893 -1103.197
+110696.2593839667 3.8015499 -1103.1774
+110697.259384017 3.8016286 -1103.2562
+110698.2593840673 3.8015893 -1103.2562
+110699.2593841176 3.8016286 -1103.2168
+110700.2593841678 3.8015106 -1103.2366
+110701.2593842181 3.8015893 -1103.3156
+110702.2593842684 3.8014319 -1103.2562
+110703.2593843187 3.8015106 -1103.197
+110704.259384369 3.8014319 -1103.1576
+110705.2593844193 3.8015893 -1103.1774
+110706.2593844696 3.8014712 -1103.3353
+110707.2593845199 3.8013923 -1103.1774
+110708.2593845702 3.8014319 -1103.2562
+110709.2593846205 3.801353 -1103.2761
+110710.2593846708 3.8013923 -1103.1774
+110711.2593847211 3.8013923 -1103.2366
+110712.2593847713 3.801353 -1103.2959
+110713.2593848216 3.801353 -1103.2366
+110714.2593848719 3.8013136 -1103.3551
+110715.2593849222 3.8013136 -1103.2366
+110716.2593849725 3.8012743 -1103.1378
+110717.2593850228 3.8013136 -1103.2168
+110718.2593850731 3.8013136 -1103.2959
+110719.2593851234 3.8013136 -1103.2761
+110720.2593851737 3.8011956 -1103.197
+110721.259385224 3.8012743 -1103.3156
+110722.2593852743 3.8012743 -1103.2761
+110723.2593853245 3.8011956 -1103.1774
+110724.2593853748 3.8011956 -1103.2168
+110725.2593854251 3.801235 -1103.2366
+110726.2593854754 3.8010774 -1103.2562
+110727.2593855257 3.8011169 -1103.2959
+110728.259385576 3.8011563 -1103.2562
+110729.2593856263 3.8011956 -1103.2562
+110730.2593856766 3.8011563 -1103.2562
+110731.2593857269 3.8009987 -1103.1378
+110732.2593857772 3.8010774 -1103.2562
+110733.2593858275 3.8010774 -1103.2366
+110734.2593858778 3.8010774 -1103.1774
+110735.259385928 3.8010774 -1103.2168
+110736.2593859783 3.8009593 -1103.2168
+110737.2593860286 3.8009593 -1103.2959
+110738.2593860789 3.8009593 -1103.3353
+110739.2593861292 3.8010774 -1103.2168
+110740.2593861795 3.801038 -1103.2959
+110741.2593862298 3.8008807 -1103.2168
+110742.2593862801 3.80092 -1103.2761
+110743.2593863304 3.8009593 -1103.2168
+110744.2593863807 3.8009593 -1103.2562
+110745.259386431 3.80092 -1103.2562
+110746.2593864813 3.8008807 -1103.2761
+110747.2593865315 3.8008807 -1103.197
+110748.2593865818 3.8009593 -1103.2562
+110749.2593866321 3.8007624 -1103.2366
+110750.2593866824 3.8007231 -1103.2562
+110751.2593867327 3.8007624 -1103.2562
+110752.259386783 3.800802 -1103.3353
+110753.2593868333 3.8008413 -1103.2959
+110754.2593868836 3.800802 -1103.1378
+110755.2593869339 3.800802 -1103.197
+110756.2593869842 3.8008807 -1103.1774
+110757.2593870345 3.8006837 -1103.197
+110758.2593870847 3.8006837 -1103.1576
+110759.259387135 3.8006837 -1103.2959
+110760.2593871853 3.8006444 -1103.2366
+110761.2593872356 3.8006444 -1103.2168
+110762.2593872859 3.8006444 -1103.2761
+110763.2593873362 3.8005657 -1103.2366
+110764.2593873865 3.8005657 -1103.2168
+110765.2593874368 3.8006051 -1103.2168
+110766.2593874871 3.8006051 -1103.2168
+110767.2593875374 3.8006051 -1103.1576
+110768.2593875877 3.8005657 -1103.2562
+110769.259387638 3.8005657 -1103.2366
+110770.2593876882 3.8005264 -1103.2959
+110771.2593877385 3.8006444 -1103.197
+110772.2593877888 3.8004475 -1103.1378
+110773.2593878391 3.8005264 -1103.2562
+110774.2593878894 3.8004475 -1103.197
+110775.2593879397 3.8005264 -1103.1774
+110776.25938799 3.8004081 -1103.3353
+110777.2593880403 3.8004475 -1103.197
+110778.2593880906 3.8003688 -1103.1774
+110779.2593881409 3.8004081 -1103.197
+110780.2593881912 3.8004475 -1103.2562
+110781.2593882415 3.8003688 -1103.2168
+110782.2593882917 3.800487 -1103.2761
+110783.259388342 3.8002901 -1103.2761
+110784.2593883923 3.8003688 -1103.197
+110785.2593884426 3.8002901 -1103.2366
+110786.2593884929 3.8003294 -1103.2366
+110787.2593885432 3.8002508 -1103.197
+110788.2593885935 3.8002508 -1103.3156
+110789.2593886438 3.8002901 -1103.1182
+110790.2593886941 3.8002114 -1103.2168
+110791.2593887444 3.8002901 -1103.2366
+110792.2593887947 3.8002508 -1103.2959
+110793.2593888449 3.8002114 -1103.2168
+110794.2593888952 3.8002114 -1103.2366
+110795.2593889455 3.8001721 -1103.2366
+110796.2593889958 3.8001325 -1103.2168
+110797.2593890461 3.8001325 -1103.2168
+110798.2593890964 3.8001721 -1103.2562
+110799.2593891467 3.8000932 -1103.2366
+110800.259389197 3.8001325 -1103.1774
+110801.2593892473 3.7999358 -1103.2366
+110802.2593892976 3.8000538 -1103.2366
+110803.2593893479 3.8000145 -1103.2761
+110804.2593893982 3.8000145 -1103.3749
+110805.2593894484 3.7999752 -1103.2366
+110806.2593894987 3.8000145 -1103.2562
+110807.259389549 3.8000538 -1103.2366
+110808.2593895993 3.8000932 -1103.2761
+110809.2593896496 3.8000538 -1103.3156
+110810.2593896999 3.7998965 -1103.2562
+110811.2593897502 3.7998965 -1103.2562
+110812.2593898005 3.7999358 -1103.2168
+110813.2593898508 3.7998965 -1103.3353
+110814.2593899011 3.7999358 -1103.2366
+110815.2593899514 3.7998965 -1103.2562
+110816.2593900017 3.7997782 -1103.197
+110817.2593900519 3.7998965 -1103.2366
+110818.2593901022 3.7998569 -1103.2959
+110819.2593901525 3.7997782 -1103.197
+110820.2593902028 3.7998569 -1103.1576
+110821.2593902531 3.7998569 -1103.3156
+110822.2593903034 3.7998176 -1103.2366
+110823.2593903537 3.7997782 -1103.2562
+110824.259390404 3.7996995 -1103.2168
+110825.2593904543 3.7997389 -1103.2366
+110826.2593905046 3.7996602 -1103.3156
+110827.2593905549 3.7996602 -1103.197
+110828.2593906051 3.7996209 -1103.2761
+110829.2593906554 3.7996209 -1103.2562
+110830.2593907057 3.7996602 -1103.2562
+110831.259390756 3.7996209 -1103.2959
+110832.2593908063 3.799542 -1103.2168
+110833.2593908566 3.7995815 -1103.1774
+110834.2593909069 3.7996209 -1103.2959
+110835.2593909572 3.799542 -1103.2366
+110836.2593910075 3.799542 -1103.2366
+110837.2593910578 3.7996209 -1103.1774
+110838.2593911081 3.7996209 -1103.2366
+110839.2593911584 3.7994633 -1103.1576
+110840.2593912086 3.799542 -1103.2562
+110841.2593912589 3.7995026 -1103.2761
+110842.2593913092 3.7994633 -1103.197
+110843.2593913595 3.7994633 -1103.2366
+110844.2593914098 3.7994633 -1103.2761
+110845.2593914601 3.7994239 -1103.2366
+110846.2593915104 3.7994633 -1103.2366
+110847.2593915607 3.7994239 -1103.2366
+110848.259391611 3.7994633 -1103.2366
+110849.2593916613 3.7994633 -1103.1378
+110850.2593917116 3.7993846 -1103.2366
+110851.2593917619 3.7993453 -1103.197
+110852.2593918121 3.7994239 -1103.3156
+110853.2593918624 3.7992666 -1103.197
+110854.2593919127 3.7993453 -1103.2959
+110855.259391963 3.7992666 -1103.2168
+110856.2593920133 3.7993453 -1103.2366
+110857.2593920636 3.7992666 -1103.2366
+110858.2593921139 3.7991877 -1103.2761
+110859.2593921642 3.7992666 -1103.2366
+110860.2593922145 3.799227 -1103.2168
+110861.2593922648 3.7992666 -1103.2761
+110862.2593923151 3.7990303 -1103.2761
+110863.2593923653 3.7991877 -1103.1378
+110864.2593924156 3.7993059 -1103.2366
+110865.2593924659 3.7991483 -1103.3353
+110866.2593925162 3.7991483 -1103.2959
+110867.2593925665 3.799109 -1103.3156
+110868.2593926168 3.7990303 -1103.2168
+110869.2593926671 3.7990696 -1103.2366
+110870.2593927174 3.798991 -1103.2168
+110871.2593927677 3.798991 -1103.2168
+110872.259392818 3.7990303 -1103.197
+110873.2593928683 3.798991 -1103.2562
+110874.2593929186 3.7990696 -1103.197
+110875.2593929688 3.7990303 -1103.2168
+110876.2593930191 3.7990303 -1103.3353
+110877.2593930694 3.7990303 -1103.2761
+110878.2593931197 3.798991 -1103.2168
+110879.25939317 3.7989516 -1103.2959
+110880.2593932203 3.7988334 -1103.2959
+110881.2593932706 3.798991 -1103.3353
+110882.2593933209 3.7990303 -1103.2761
+110883.2593933712 3.7988727 -1103.2761
+110884.2593934215 3.7988334 -1103.2562
+110885.2593934718 3.7988727 -1103.2562
+110886.2593935221 3.798912 -1103.2562
+110887.2593935723 3.7988334 -1103.2366
+110888.2593936226 3.7988334 -1103.2366
+110889.2593936729 3.7987547 -1103.2366
+110890.2593937232 3.7988727 -1103.2761
+110891.2593937735 3.7987547 -1103.2168
+110892.2593938238 3.7987547 -1103.2168
+110893.2593938741 3.7987547 -1103.2168
+110894.2593939244 3.7987154 -1103.2366
+110895.2593939747 3.7987154 -1103.197
+110896.259394025 3.798676 -1103.197
+110897.2593940753 3.7986367 -1103.2562
+110898.2593941255 3.7987547 -1103.2366
+110899.2593941758 3.7987154 -1103.2168
+110900.2593942261 3.7987154 -1103.2168
+110901.2593942764 3.798676 -1103.2366
+110902.2593943267 3.7986367 -1103.2168
+110903.259394377 3.798676 -1103.3353
+110904.2593944273 3.798676 -1103.2959
+110905.2593944776 3.7985578 -1103.2366
+110906.2593945279 3.7986367 -1103.2959
+110907.2593945782 3.7984791 -1103.2761
+110908.2593946285 3.7985184 -1103.2562
+110909.2593946788 3.7985184 -1103.2761
+110910.259394729 3.7985971 -1103.2366
+110911.2593947793 3.7985184 -1103.3156
+110912.2593948296 3.7985184 -1103.197
+110913.2593948799 3.7985578 -1103.0984
+110914.2593949302 3.7984791 -1103.3156
+110915.2593949805 3.7984397 -1103.2168
+110916.2593950308 3.7984004 -1103.1576
+110917.2593950811 3.7985184 -1103.197
+110918.2593951314 3.7984397 -1103.2366
+110919.2593951817 3.7984397 -1103.1774
+110920.259395232 3.7984791 -1103.2366
+110921.2593952823 3.7984397 -1103.2168
+110922.2593953325 3.7983611 -1103.2761
+110923.2593953828 3.7984004 -1103.2562
+110924.2593954331 3.7983611 -1103.2168
+110925.2593954834 3.7984397 -1103.2366
+110926.2593955337 3.7983611 -1103.2562
+110927.259395584 3.7983217 -1103.2761
+110928.2593956343 3.7983217 -1103.2168
+110929.2593956846 3.7982428 -1103.1774
+110930.2593957349 3.7982821 -1103.2562
+110931.2593957852 3.7983611 -1103.2366
+110932.2593958355 3.7982821 -1103.197
+110933.2593958857 3.7983217 -1103.2761
+110934.259395936 3.7982035 -1103.2761
+110935.2593959863 3.7980855 -1103.2366
+110936.2593960366 3.7981641 -1103.197
+110937.2593960869 3.7981248 -1103.2168
+110938.2593961372 3.7981641 -1103.197
+110939.2593961875 3.7981248 -1103.2761
+110940.2593962378 3.7980855 -1103.2761
+110941.2593962881 3.7980855 -1103.197
+110942.2593963384 3.7981248 -1103.2761
+110943.2593963887 3.7981641 -1103.2761
+110944.259396439 3.7980461 -1103.3156
+110945.2593964892 3.7980461 -1103.1378
+110946.2593965395 3.7980065 -1103.2562
+110947.2593965898 3.7980855 -1103.2761
+110948.2593966401 3.7980855 -1103.1182
+110949.2593966904 3.7979672 -1103.2366
+110950.2593967407 3.7980461 -1103.2959
+110951.259396791 3.7979279 -1103.2562
+110952.2593968413 3.7980065 -1103.2168
+110953.2593968916 3.7979279 -1103.2761
+110954.2593969419 3.7980855 -1103.3353
+110955.2593969922 3.7979672 -1103.2761
+110956.2593970425 3.7978885 -1103.2761
+110957.2593970927 3.7978492 -1103.2562
+110958.259397143 3.7978098 -1103.2761
+110959.2593971933 3.7978885 -1103.3551
+110960.2593972436 3.7977705 -1103.2366
+110961.2593972939 3.7978098 -1103.3156
+110962.2593973442 3.7978098 -1103.2562
+110963.2593973945 3.7978098 -1103.2168
+110964.2593974448 3.7977705 -1103.2959
+110965.2593974951 3.7978098 -1103.2562
+110966.2593975454 3.7977312 -1103.2366
+110967.2593975957 3.7977705 -1103.2761
+110968.2593976459 3.7976522 -1103.2562
+110969.2593976962 3.7976916 -1103.2959
+110970.2593977465 3.7977312 -1103.2761
+110971.2593977968 3.7977312 -1103.2761
+110972.2593978471 3.7975736 -1103.2959
+110973.2593978974 3.7975736 -1103.2168
+110974.2593979477 3.7977312 -1103.2761
+110975.259397998 3.7976916 -1103.0984
+110976.2593980483 3.7976129 -1103.2959
+110977.2593980986 3.7976916 -1103.2761
+110978.2593981489 3.7975736 -1103.3353
+110979.2593981992 3.7975736 -1103.2168
+110980.2593982494 3.7975736 -1103.2168
+110981.2593982997 3.7974555 -1103.197
+110982.25939835 3.7974949 -1103.2366
+110983.2593984003 3.7975736 -1103.2562
+110984.2593984506 3.7975736 -1103.1378
+110985.2593985009 3.7975736 -1103.2366
+110986.2593985512 3.7975736 -1103.2562
+110987.2593986015 3.7975342 -1103.2959
+110988.2593986518 3.7974555 -1103.2366
+110989.2593987021 3.7973766 -1103.2366
+110990.2593987524 3.7974162 -1103.2761
+110991.2593988026 3.7974555 -1103.2562
+110992.2593988529 3.7974555 -1103.2959
+110993.2593989032 3.797298 -1103.2959
+110994.2593989535 3.797298 -1103.1576
+110995.2593990038 3.7973766 -1103.197
+110996.2593990541 3.7972586 -1103.1774
+110997.2593991044 3.7973373 -1103.2366
+110998.2593991547 3.7973766 -1103.3551
+110999.259399205 3.797298 -1103.1378
+111000.2593992553 3.797298 -1103.2761
+111001.2593993056 3.7973766 -1103.2168
+111002.2593993559 3.7972193 -1103.2959
+111003.2593994061 3.7973373 -1103.2168
+111004.2593994564 3.7972193 -1103.2366
+111005.2593995067 3.7972586 -1103.2168
+111006.259399557 3.7972193 -1103.2168
+111007.2593996073 3.7972193 -1103.2761
+111008.2593996576 3.7971799 -1103.2761
+111009.2593997079 3.7971406 -1103.1182
+111010.2593997582 3.7970617 -1103.1774
+111011.2593998085 3.7972193 -1103.2562
+111012.2593998588 3.7971799 -1103.2761
+111013.2593999091 3.7971013 -1103.2168
+111014.2593999594 3.7970223 -1103.3156
+111015.2594000096 3.7970617 -1103.197
+111016.2594000599 3.7971013 -1103.2366
+111017.2594001102 3.7970617 -1103.2761
+111018.2594001605 3.796983 -1103.2761
+111019.2594002108 3.7970223 -1103.2562
+111020.2594002611 3.7970617 -1103.2562
+111021.2594003114 3.7969437 -1103.2366
+111022.2594003617 3.7970223 -1103.2562
+111023.259400412 3.7970223 -1103.2562
+111024.2594004623 3.7970617 -1103.197
+111025.2594005126 3.7969043 -1103.2562
+111026.2594005628 3.796865 -1103.197
+111027.2594006131 3.796865 -1103.2959
+111028.2594006634 3.7969437 -1103.2562
+111029.2594007137 3.796865 -1103.2168
+111030.259400764 3.796865 -1103.3749
+111031.2594008143 3.7968256 -1103.2366
+111032.2594008646 3.7968256 -1103.3353
+111033.2594009149 3.796865 -1103.197
+111034.2594009652 3.796865 -1103.197
+111035.2594010155 3.7968256 -1103.1774
+111036.2594010658 3.7967074 -1103.2168
+111037.2594011161 3.7967863 -1103.2562
+111038.2594011663 3.7967863 -1103.2562
+111039.2594012166 3.7966681 -1103.2959
+111040.2594012669 3.7967467 -1103.2959
+111041.2594013172 3.7967467 -1103.2168
+111042.2594013675 3.7967467 -1103.2959
+111043.2594014178 3.7966681 -1103.1774
+111044.2594014681 3.7966287 -1103.2168
+111045.2594015184 3.7965894 -1103.2366
+111046.2594015687 3.7967074 -1103.2168
+111047.259401619 3.7966681 -1103.2168
+111048.2594016693 3.7967074 -1103.2959
+111049.2594017196 3.7965107 -1103.2168
+111050.2594017698 3.7965107 -1103.2168
+111051.2594018201 3.7966287 -1103.2761
+111052.2594018704 3.79655 -1103.2168
+111053.2594019207 3.7965107 -1103.2562
+111054.259401971 3.7965107 -1103.2959
+111055.2594020213 3.7966287 -1103.1774
+111056.2594020716 3.7964318 -1103.2562
+111057.2594021219 3.7964318 -1103.2959
+111058.2594021722 3.7964711 -1103.2562
+111059.2594022225 3.7964318 -1103.2959
+111060.2594022728 3.7963531 -1103.2562
+111061.259402323 3.7964711 -1103.2168
+111062.2594023733 3.7963531 -1103.2562
+111063.2594024236 3.7964711 -1103.2959
+111064.2594024739 3.7963531 -1103.2366
+111065.2594025242 3.7963138 -1103.2761
+111066.2594025745 3.7963531 -1103.3156
+111067.2594026248 3.7963924 -1103.2959
+111068.2594026751 3.7963924 -1103.2761
+111069.2594027254 3.7963924 -1103.3156
+111070.2594027757 3.7962744 -1103.1378
+111071.259402826 3.7964318 -1103.2562
+111072.2594028763 3.7962351 -1103.2168
+111073.2594029265 3.7962744 -1103.2168
+111074.2594029768 3.7962351 -1103.2168
+111075.2594030271 3.7962744 -1103.2959
+111076.2594030774 3.7962351 -1103.2761
+111077.2594031277 3.7962351 -1103.2562
+111078.259403178 3.7961562 -1103.2562
+111079.2594032283 3.7962351 -1103.2366
+111080.2594032786 3.7962744 -1103.2562
+111081.2594033289 3.7961957 -1103.2168
+111082.2594033792 3.7961562 -1103.2366
+111083.2594034295 3.7961168 -1103.2168
+111084.2594034798 3.7961168 -1103.197
+111085.25940353 3.7961168 -1103.2959
+111086.2594035803 3.7960382 -1103.2761
+111087.2594036306 3.7960382 -1103.1774
+111088.2594036809 3.7960775 -1103.2959
+111089.2594037312 3.7960775 -1103.2562
+111090.2594037815 3.7959988 -1103.2168
+111091.2594038318 3.7959595 -1103.2562
+111092.2594038821 3.7959988 -1103.3156
+111093.2594039324 3.7959201 -1103.2959
+111094.2594039827 3.7959988 -1103.2366
+111095.259404033 3.7959595 -1103.2562
+111096.2594040832 3.7959988 -1103.3156
+111097.2594041335 3.7959595 -1103.1774
+111098.2594041838 3.7959201 -1103.2761
+111099.2594042341 3.7959988 -1103.1774
+111100.2594042844 3.7959201 -1103.197
+111101.2594043347 3.7959201 -1103.2562
+111102.259404385 3.7959595 -1103.2562
+111103.2594044353 3.7958808 -1103.2366
+111104.2594044856 3.7958412 -1103.2366
+111105.2594045359 3.7958808 -1103.2959
+111106.2594045862 3.7958019 -1103.2562
+111107.2594046365 3.7957232 -1103.2562
+111108.2594046867 3.7957625 -1103.2562
+111109.259404737 3.7957232 -1103.2562
+111110.2594047873 3.7956839 -1103.3353
+111111.2594048376 3.7958019 -1103.197
+111112.2594048879 3.7957232 -1103.2562
+111113.2594049382 3.7957625 -1103.2366
+111114.2594049885 3.7956052 -1103.3156
+111115.2594050388 3.7956445 -1103.2761
+111116.2594050891 3.7956839 -1103.2562
+111117.2594051394 3.7957625 -1103.2761
+111118.2594051897 3.7957625 -1103.2366
+111119.25940524 3.7956445 -1103.3353
+111120.2594052902 3.7955658 -1103.2959
+111121.2594053405 3.7956052 -1103.2761
+111122.2594053908 3.7956445 -1103.1378
+111123.2594054411 3.7956052 -1103.2959
+111124.2594054914 3.7956052 -1103.2959
+111125.2594055417 3.7954476 -1103.197
+111126.259405592 3.7954476 -1103.197
+111127.2594056423 3.7955263 -1103.2168
+111128.2594056926 3.7955658 -1103.2562
+111129.2594057429 3.7954869 -1103.2168
+111130.2594057932 3.7955263 -1103.2366
+111131.2594058434 3.7954476 -1103.2366
+111132.2594058937 3.7954476 -1103.2168
+111133.259405944 3.7954476 -1103.2761
+111134.2594059943 3.7954082 -1103.2562
+111135.2594060446 3.7954476 -1103.197
+111136.2594060949 3.7954082 -1103.2562
+111137.2594061452 3.7953296 -1103.2366
+111138.2594061955 3.7954082 -1103.2168
+111139.2594062458 3.7954476 -1103.2366
+111140.2594062961 3.7953689 -1103.2761
+111141.2594063464 3.7953296 -1103.3353
+111142.2594063967 3.7953689 -1103.2562
+111143.2594064469 3.7952509 -1103.2761
+111144.2594064972 3.7953689 -1103.1774
+111145.2594065475 3.7953296 -1103.2761
+111146.2594065978 3.7952902 -1103.2168
+111147.2594066481 3.7953689 -1103.2168
+111148.2594066984 3.7952509 -1103.197
+111149.2594067487 3.7952113 -1103.2366
+111150.259406799 3.795172 -1103.2366
+111151.2594068493 3.7952509 -1103.2562
+111152.2594068996 3.795172 -1103.1576
+111153.2594069499 3.795172 -1103.2562
+111154.2594070002 3.7952509 -1103.1576
+111155.2594070504 3.795172 -1103.3353
+111156.2594071007 3.7951326 -1103.2366
+111157.259407151 3.7950933 -1103.197
+111158.2594072013 3.7950933 -1103.1576
+111159.2594072516 3.7950933 -1103.197
+111160.2594073019 3.795054 -1103.2562
+111161.2594073522 3.7951326 -1103.2761
+111162.2594074025 3.795054 -1103.197
+111163.2594074528 3.7949753 -1103.3156
+111164.2594075031 3.7950146 -1103.2168
+111165.2594075534 3.7949753 -1103.2761
+111166.2594076036 3.7950146 -1103.2366
+111167.2594076539 3.7949753 -1103.1378
+111168.2594077042 3.7949753 -1103.2761
+111169.2594077545 3.7949359 -1103.2366
+111170.2594078048 3.7948964 -1103.197
+111171.2594078551 3.7949753 -1103.2168
+111172.2594079054 3.7949359 -1103.2168
+111173.2594079557 3.7948964 -1103.1378
+111174.259408006 3.794857 -1103.197
+111175.2594080563 3.794857 -1103.197
+111176.2594081066 3.794857 -1103.3156
+111177.2594081569 3.7948964 -1103.2761
+111178.2594082071 3.7948964 -1103.2366
+111179.2594082574 3.7948177 -1103.3156
+111180.2594083077 3.794857 -1103.2761
+111181.259408358 3.7948177 -1103.197
+111182.2594084083 3.794739 -1103.2562
+111183.2594084586 3.7947783 -1103.3156
+111184.2594085089 3.794857 -1103.2562
+111185.2594085592 3.7946997 -1103.1774
+111186.2594086095 3.794739 -1103.2959
+111187.2594086598 3.794739 -1103.2562
+111188.2594087101 3.794739 -1103.3156
+111189.2594087604 3.7946603 -1103.2366
+111190.2594088106 3.7946603 -1103.2168
+111191.2594088609 3.7946208 -1103.3551
+111192.2594089112 3.7947783 -1103.3156
+111193.2594089615 3.7946997 -1103.2959
+111194.2594090118 3.7946208 -1103.2761
+111195.2594090621 3.7946208 -1103.1576
+111196.2594091124 3.7945421 -1103.3749
+111197.2594091627 3.7946208 -1103.197
+111198.259409213 3.7945814 -1103.2959
+111199.2594092633 3.7945814 -1103.1576
+111200.2594093136 3.7945814 -1103.2366
+111201.2594093638 3.7944241 -1103.2168
+111202.2594094141 3.7945421 -1103.2168
+111203.2594094644 3.7944634 -1103.3156
+111204.2594095147 3.7945027 -1103.2168
+111205.259409565 3.7944634 -1103.3353
+111206.2594096153 3.7944634 -1103.2761
+111207.2594096656 3.7943847 -1103.3156
+111208.2594097159 3.7944241 -1103.2959
+111209.2594097662 3.7943454 -1103.2168
+111210.2594098165 3.7943847 -1103.2562
+111211.2594098668 3.7944241 -1103.2562
+111212.2594099171 3.7944241 -1103.2761
+111213.2594099673 3.7943454 -1103.1774
+111214.2594100176 3.7943058 -1103.197
+111215.2594100679 3.7944634 -1103.2366
+111216.2594101182 3.7943454 -1103.2562
+111217.2594101685 3.7943058 -1103.2366
+111218.2594102188 3.7943454 -1103.2168
+111219.2594102691 3.7943454 -1103.1774
+111220.2594103194 3.7941878 -1103.2959
+111221.2594103697 3.7943454 -1103.2366
+111222.25941042 3.7943058 -1103.2168
+111223.2594104703 3.7942271 -1103.2168
+111224.2594105206 3.7942271 -1103.197
+111225.2594105708 3.7942271 -1103.197
+111226.2594106211 3.7941484 -1103.197
+111227.2594106714 3.7941878 -1103.2761
+111228.2594107217 3.7941878 -1103.2168
+111229.259410772 3.7941091 -1103.2562
+111230.2594108223 3.7941484 -1103.2366
+111231.2594108726 3.7940698 -1103.2761
+111232.2594109229 3.7941091 -1103.2562
+111233.2594109732 3.7941484 -1103.2366
+111234.2594110235 3.7941091 -1103.2366
+111235.2594110738 3.7941091 -1103.2168
+111236.259411124 3.7940698 -1103.197
+111237.2594111743 3.7941484 -1103.2761
+111238.2594112246 3.7940304 -1103.2562
+111239.2594112749 3.7939909 -1103.2761
+111240.2594113252 3.7939909 -1103.2562
+111241.2594113755 3.7939515 -1103.2562
+111242.2594114258 3.7939515 -1103.2366
+111243.2594114761 3.7939515 -1103.2562
+111244.2594115264 3.7939515 -1103.2562
+111245.2594115767 3.7939515 -1103.2761
+111246.259411627 3.7939122 -1103.197
+111247.2594116773 3.7939909 -1103.2562
+111248.2594117275 3.7938335 -1103.2168
+111249.2594117778 3.7939909 -1103.2168
+111250.2594118281 3.7938728 -1103.3156
+111251.2594118784 3.7938335 -1103.2366
+111252.2594119287 3.7938728 -1103.2562
+111253.259411979 3.7938728 -1103.2761
+111254.2594120293 3.7938335 -1103.2761
+111255.2594120796 3.7937942 -1103.2562
+111256.2594121299 3.7938728 -1103.2959
+111257.2594121802 3.7937548 -1103.2959
+111258.2594122305 3.7937942 -1103.197
+111259.2594122808 3.7937548 -1103.2366
+111260.259412331 3.7936759 -1103.2562
+111261.2594123813 3.7937155 -1103.2959
+111262.2594124316 3.7937548 -1103.3156
+111263.2594124819 3.7936759 -1103.2366
+111264.2594125322 3.7937548 -1103.3156
+111265.2594125825 3.7935972 -1103.1774
+111266.2594126328 3.7935972 -1103.2366
+111267.2594126831 3.7935972 -1103.2168
+111268.2594127334 3.7935972 -1103.2168
+111269.2594127837 3.7935972 -1103.2366
+111270.259412834 3.7935579 -1103.2562
+111271.2594128842 3.7934792 -1103.2761
+111272.2594129345 3.7935972 -1103.3353
+111273.2594129848 3.7935185 -1103.2168
+111274.2594130351 3.7935579 -1103.2562
+111275.2594130854 3.7934792 -1103.1576
+111276.2594131357 3.7934005 -1103.2761
+111277.259413186 3.7934399 -1103.2366
+111278.2594132363 3.7934399 -1103.2168
+111279.2594132866 3.7934399 -1103.2562
+111280.2594133369 3.7933609 -1103.2761
+111281.2594133872 3.7934005 -1103.2761
+111282.2594134375 3.7935185 -1103.3156
+111283.2594134877 3.7934792 -1103.2761
+111284.259413538 3.7934005 -1103.2168
+111285.2594135883 3.7934399 -1103.3551
+111286.2594136386 3.7934792 -1103.3551
+111287.2594136889 3.7934399 -1103.2562
+111288.2594137392 3.7932823 -1103.2366
+111289.2594137895 3.7933609 -1103.2959
+111290.2594138398 3.7933216 -1103.2761
+111291.2594138901 3.7932036 -1103.2761
+111292.2594139404 3.7932823 -1103.3551
+111293.2594139907 3.7933216 -1103.2366
+111294.2594140409 3.7932429 -1103.3156
+111295.2594140912 3.7931249 -1103.1378
+111296.2594141415 3.7932429 -1103.2562
+111297.2594141918 3.7932823 -1103.3353
+111298.2594142421 3.7932036 -1103.2562
+111299.2594142924 3.7932823 -1103.2168
+111300.2594143427 3.7932036 -1103.2168
+111301.259414393 3.7931249 -1103.2761
+111302.2594144433 3.7931249 -1103.2562
+111303.2594144936 3.7932036 -1103.2562
+111304.2594145439 3.7931249 -1103.2366
+111305.2594145942 3.7930856 -1103.197
+111306.2594146444 3.7931643 -1103.2366
+111307.2594146947 3.7930856 -1103.2761
+111308.259414745 3.793046 -1103.2168
+111309.2594147953 3.7930856 -1103.2562
+111310.2594148456 3.7930067 -1103.2168
+111311.2594148959 3.7930856 -1103.2366
+111312.2594149462 3.7930067 -1103.1774
+111313.2594149965 3.7929673 -1103.197
+111314.2594150468 3.7929673 -1103.197
+111315.2594150971 3.7930067 -1103.2168
+111316.2594151474 3.792928 -1103.2366
+111317.2594151977 3.7928886 -1103.197
+111318.2594152479 3.7929673 -1103.2959
+111319.2594152982 3.7928493 -1103.2168
+111320.2594153485 3.79281 -1103.197
+111321.2594153988 3.792928 -1103.2366
+111322.2594154491 3.792928 -1103.3156
+111323.2594154994 3.7928886 -1103.2168
+111324.2594155497 3.7926917 -1103.1576
+111325.2594156 3.79281 -1103.2959
+111326.2594156503 3.79281 -1103.197
+111327.2594157006 3.7927704 -1103.2761
+111328.2594157509 3.7928886 -1103.197
+111329.2594158011 3.7928493 -1103.1774
+111330.2594158514 3.7928493 -1103.2761
+111331.2594159017 3.7926524 -1103.2562
+111332.259415952 3.7926917 -1103.2959
+111333.2594160023 3.7927704 -1103.2168
+111334.2594160526 3.792731 -1103.2761
+111335.2594161029 3.7926524 -1103.2761
+111336.2594161532 3.7927704 -1103.3156
+111337.2594162035 3.792731 -1103.2761
+111338.2594162538 3.792613 -1103.2168
+111339.2594163041 3.7926917 -1103.2562
+111340.2594163544 3.7926917 -1103.2168
+111341.2594164046 3.7926524 -1103.1774
+111342.2594164549 3.7925737 -1103.2168
+111343.2594165052 3.7925737 -1103.2366
+111344.2594165555 3.792613 -1103.2168
+111345.2594166058 3.7925737 -1103.2959
+111346.2594166561 3.7925344 -1103.3156
+111347.2594167064 3.7924554 -1103.197
+111348.2594167567 3.792613 -1103.2366
+111349.259416807 3.7925344 -1103.2168
+111350.2594168573 3.7925737 -1103.2366
+111351.2594169076 3.7924554 -1103.1774
+111352.2594169579 3.7924161 -1103.2168
+111353.2594170081 3.7924161 -1103.2562
+111354.2594170584 3.7924554 -1103.2562
+111355.2594171087 3.792495 -1103.1774
+111356.259417159 3.7923768 -1103.2761
+111357.2594172093 3.7923768 -1103.2168
+111358.2594172596 3.7923374 -1103.197
+111359.2594173099 3.7923768 -1103.2366
+111360.2594173602 3.7923374 -1103.1774
+111361.2594174105 3.7922587 -1103.197
+111362.2594174608 3.7923374 -1103.2761
+111363.2594175111 3.7922981 -1103.2562
+111364.2594175613 3.7923374 -1103.2562
+111365.2594176116 3.7923374 -1103.3551
+111366.2594176619 3.7921801 -1103.3353
+111367.2594177122 3.7922587 -1103.2761
+111368.2594177625 3.7922587 -1103.3353
+111369.2594178128 3.7922194 -1103.2366
+111370.2594178631 3.7922194 -1103.2366
+111371.2594179134 3.7922587 -1103.3156
+111372.2594179637 3.7921405 -1103.2761
+111373.259418014 3.7922194 -1103.2168
+111374.2594180643 3.7922587 -1103.2959
+111375.2594181146 3.7920225 -1103.1378
+111376.2594181648 3.7921801 -1103.2959
+111377.2594182151 3.7921405 -1103.2366
+111378.2594182654 3.7921801 -1103.2959
+111379.2594183157 3.7920618 -1103.2959
+111380.259418366 3.7920618 -1103.2562
+111381.2594184163 3.7920225 -1103.2168
+111382.2594184666 3.7921011 -1103.3353
+111383.2594185169 3.7920618 -1103.2959
+111384.2594185672 3.7920618 -1103.2562
+111385.2594186175 3.7920225 -1103.197
+111386.2594186678 3.7920225 -1103.2366
+111387.2594187181 3.7919831 -1103.2761
+111388.2594187683 3.7920225 -1103.197
+111389.2594188186 3.7919831 -1103.2168
+111390.2594188689 3.7919438 -1103.1774
+111391.2594189192 3.7919831 -1103.2761
+111392.2594189695 3.7919044 -1103.1774
+111393.2594190198 3.7919438 -1103.3156
+111394.2594190701 3.7920225 -1103.2761
+111395.2594191204 3.7918255 -1103.2761
+111396.2594191707 3.7918651 -1103.2562
+111397.259419221 3.7918255 -1103.2761
+111398.2594192713 3.7918651 -1103.2168
+111399.2594193215 3.7918255 -1103.2562
+111400.2594193718 3.7918255 -1103.2366
+111401.2594194221 3.7917862 -1103.2959
+111402.2594194724 3.7918255 -1103.2761
+111403.2594195227 3.7917469 -1103.2761
+111404.259419573 3.7917469 -1103.2562
+111405.2594196233 3.7918651 -1103.2168
+111406.2594196736 3.7917469 -1103.2761
+111407.2594197239 3.7917862 -1103.2761
+111408.2594197742 3.7917469 -1103.2761
+111409.2594198245 3.7917075 -1103.2761
+111410.2594198748 3.7916682 -1103.3156
+111411.259419925 3.7915895 -1103.1774
+111412.2594199753 3.7917075 -1103.2168
+111413.2594200256 3.7917075 -1103.2562
+111414.2594200759 3.7915502 -1103.2168
+111415.2594201262 3.7916682 -1103.197
+111416.2594201765 3.7916682 -1103.1378
+111417.2594202268 3.7915502 -1103.3156
+111418.2594202771 3.7917469 -1103.2959
+111419.2594203274 3.7915106 -1103.2168
+111420.2594203777 3.7915106 -1103.2168
+111421.259420428 3.7915895 -1103.2761
+111422.2594204783 3.7916288 -1103.2761
+111423.2594205285 3.7914319 -1103.1774
+111424.2594205788 3.7915106 -1103.2959
+111425.2594206291 3.7913532 -1103.2562
+111426.2594206794 3.7915502 -1103.2168
+111427.2594207297 3.7914319 -1103.3156
+111428.25942078 3.7915106 -1103.2562
+111429.2594208303 3.7914319 -1103.2168
+111430.2594208806 3.7913926 -1103.2562
+111431.2594209309 3.7913926 -1103.2562
+111432.2594209812 3.7913926 -1103.197
+111433.2594210315 3.7914319 -1103.2168
+111434.2594210817 3.7914319 -1103.2168
+111435.259421132 3.7913532 -1103.2959
+111436.2594211823 3.7913926 -1103.2761
+111437.2594212326 3.7913139 -1103.1378
+111438.2594212829 3.7912352 -1103.3353
+111439.2594213332 3.7913139 -1103.3353
+111440.2594213835 3.7911956 -1103.1182
+111441.2594214338 3.7911956 -1103.2366
+111442.2594214841 3.7913139 -1103.2959
+111443.2594215344 3.7913532 -1103.2562
+111444.2594215847 3.7912352 -1103.2366
+111445.259421635 3.7912745 -1103.2761
+111446.2594216852 3.7911956 -1103.2761
+111447.2594217355 3.7911563 -1103.2562
+111448.2594217858 3.7911956 -1103.2959
+111449.2594218361 3.7912352 -1103.197
+111450.2594218864 3.791117 -1103.2959
+111451.2594219367 3.7912352 -1103.2562
+111452.259421987 3.7911563 -1103.2562
+111453.2594220373 3.791117 -1103.2761
+111454.2594220876 3.791117 -1103.197
+111455.2594221379 3.7910776 -1103.2761
+111456.2594221882 3.791117 -1103.2761
+111457.2594222385 3.7910383 -1103.2959
+111458.2594222887 3.7909989 -1103.2761
+111459.259422339 3.7910383 -1103.2562
+111460.2594223893 3.7909989 -1103.2168
+111461.2594224396 3.7909989 -1103.3353
+111462.2594224899 3.7910383 -1103.2562
+111463.2594225402 3.79092 -1103.2959
+111464.2594225905 3.79092 -1103.1774
+111465.2594226408 3.7909596 -1103.3156
+111466.2594226911 3.7909989 -1103.197
+111467.2594227414 3.7908413 -1103.3551
+111468.2594227917 3.79092 -1103.2168
+111469.2594228419 3.7909596 -1103.2959
+111470.2594228922 3.7909596 -1103.2562
+111471.2594229425 3.79092 -1103.2761
+111472.2594229928 3.790802 -1103.2168
+111473.2594230431 3.7908413 -1103.197
+111474.2594230934 3.7908413 -1103.2761
+111475.2594231437 3.7908413 -1103.2168
+111476.259423194 3.7908413 -1103.2366
+111477.2594232443 3.7908413 -1103.2366
+111478.2594232946 3.790802 -1103.3156
+111479.2594233449 3.7907627 -1103.197
+111480.2594233952 3.7907627 -1103.2761
+111481.2594234454 3.7907233 -1103.3156
+111482.2594234957 3.790684 -1103.2168
+111483.259423546 3.7907233 -1103.3353
+111484.2594235963 3.7906446 -1103.197
+111485.2594236466 3.7906446 -1103.3353
+111486.2594236969 3.7906051 -1103.2168
+111487.2594237472 3.7905657 -1103.2168
+111488.2594237975 3.7905264 -1103.2168
+111489.2594238478 3.7906051 -1103.2366
+111490.2594238981 3.790684 -1103.197
+111491.2594239484 3.7906051 -1103.2366
+111492.2594239987 3.7906051 -1103.3156
+111493.2594240489 3.7906446 -1103.2562
+111494.2594240992 3.7904871 -1103.2366
+111495.2594241495 3.7904477 -1103.3353
+111496.2594241998 3.7905264 -1103.2562
+111497.2594242501 3.7905657 -1103.3353
+111498.2594243004 3.7904084 -1103.1774
+111499.2594243507 3.7904871 -1103.2562
+111500.259424401 3.7904084 -1103.3156
+111501.2594244513 3.7904477 -1103.2366
+111502.2594245016 3.7902901 -1103.3551
+111503.2594245519 3.790369 -1103.3353
+111504.2594246021 3.7904084 -1103.3156
+111505.2594246524 3.7904084 -1103.197
+111506.2594247027 3.7904084 -1103.2959
+111507.259424753 3.7902901 -1103.2168
+111508.2594248033 3.790369 -1103.2562
+111509.2594248536 3.790369 -1103.2366
+111510.2594249039 3.7902508 -1103.2562
+111511.2594249542 3.7902901 -1103.2761
+111512.2594250045 3.7902508 -1103.2959
+111513.2594250548 3.7901328 -1103.3749
+111514.2594251051 3.7902508 -1103.2761
+111515.2594251554 3.7901328 -1103.3551
+111516.2594252056 3.7902114 -1103.2562
+111517.2594252559 3.7902508 -1103.2366
+111518.2594253062 3.7902114 -1103.197
+111519.2594253565 3.7900934 -1103.1576
+111520.2594254068 3.7902114 -1103.3353
+111521.2594254571 3.7901721 -1103.2168
+111522.2594255074 3.7902508 -1103.2168
+111523.2594255577 3.7901328 -1103.197
+111524.259425608 3.7900934 -1103.2168
+111525.2594256583 3.7901721 -1103.197
+111526.2594257086 3.7899752 -1103.2959
+111527.2594257589 3.7900934 -1103.3156
+111528.2594258091 3.7899752 -1103.2168
+111529.2594258594 3.7899752 -1103.197
+111530.2594259097 3.7900934 -1103.2959
+111531.25942596 3.7899358 -1103.2959
+111532.2594260103 3.7900934 -1103.2168
+111533.2594260606 3.7900541 -1103.1378
+111534.2594261109 3.7899358 -1103.2562
+111535.2594261612 3.7900147 -1103.2562
+111536.2594262115 3.7899752 -1103.2168
+111537.2594262618 3.7899358 -1103.2562
+111538.2594263121 3.7899752 -1103.2366
+111539.2594263623 3.7900147 -1103.2761
+111540.2594264126 3.7898965 -1103.2761
+111541.2594264629 3.7898571 -1103.2366
+111542.2594265132 3.7898571 -1103.2761
+111543.2594265635 3.7898178 -1103.2366
+111544.2594266138 3.7899358 -1103.2562
+111545.2594266641 3.7898178 -1103.197
+111546.2594267144 3.7897391 -1103.2761
+111547.2594267647 3.7897391 -1103.2761
+111548.259426815 3.7898571 -1103.2562
+111549.2594268653 3.7897785 -1103.3945
+111550.2594269156 3.7898178 -1103.2168
+111551.2594269658 3.7897785 -1103.2366
+111552.2594270161 3.7897785 -1103.2562
+111553.2594270664 3.7897785 -1103.197
+111554.2594271167 3.7896602 -1103.2761
+111555.259427167 3.7896998 -1103.197
+111556.2594272173 3.7896998 -1103.2761
+111557.2594272676 3.7896209 -1103.3156
+111558.2594273179 3.7896209 -1103.2959
+111559.2594273682 3.7895815 -1103.2959
+111560.2594274185 3.7895815 -1103.3551
+111561.2594274688 3.7896209 -1103.2366
+111562.2594275191 3.7896602 -1103.2562
+111563.2594275693 3.7896602 -1103.2959
+111564.2594276196 3.7895815 -1103.1576
+111565.2594276699 3.7894635 -1103.2761
+111566.2594277202 3.7894635 -1103.197
+111567.2594277705 3.7896209 -1103.3353
+111568.2594278208 3.7894635 -1103.1576
+111569.2594278711 3.7895422 -1103.2168
+111570.2594279214 3.7895422 -1103.2366
+111571.2594279717 3.7895422 -1103.1774
+111572.259428022 3.7893848 -1103.2761
+111573.2594280723 3.7893848 -1103.2959
+111574.2594281225 3.7894242 -1103.2168
+111575.2594281728 3.7894635 -1103.3156
+111576.2594282231 3.7893848 -1103.2761
+111577.2594282734 3.7893848 -1103.2761
+111578.2594283237 3.7893059 -1103.2761
+111579.259428374 3.7893059 -1103.1774
+111580.2594284243 3.7892666 -1103.197
+111581.2594284746 3.7893059 -1103.2959
+111582.2594285249 3.7892666 -1103.3353
+111583.2594285752 3.7893059 -1103.2761
+111584.2594286255 3.7893059 -1103.2168
+111585.2594286758 3.7892666 -1103.3353
+111586.259428726 3.7891879 -1103.197
+111587.2594287763 3.7892666 -1103.1774
+111588.2594288266 3.7891879 -1103.2562
+111589.2594288769 3.7892666 -1103.2366
+111590.2594289272 3.7892666 -1103.197
+111591.2594289775 3.7891486 -1103.2959
+111592.2594290278 3.7892272 -1103.197
+111593.2594290781 3.7891879 -1103.2562
+111594.2594291284 3.7891092 -1103.2366
+111595.2594291787 3.7891486 -1103.2761
+111596.259429229 3.7891486 -1103.2562
+111597.2594292792 3.7890697 -1103.2168
+111598.2594293295 3.7892272 -1103.197
+111599.2594293798 3.7890697 -1103.2366
+111600.2594294301 3.7890697 -1103.2562
+111601.2594294804 3.7890303 -1103.2168
+111602.2594295307 3.7889516 -1103.2168
+111603.259429581 3.7891486 -1103.2366
+111604.2594296313 3.7890303 -1103.2562
+111605.2594296816 3.7889516 -1103.2562
+111606.2594297319 3.7890303 -1103.2761
+111607.2594297822 3.788991 -1103.2168
+111608.2594298325 3.788991 -1103.2562
+111609.2594298827 3.7887943 -1103.2959
+111610.259429933 3.7889516 -1103.2959
+111611.2594299833 3.7889123 -1103.2366
+111612.2594300336 3.7889123 -1103.2562
+111613.2594300839 3.7889516 -1103.2761
+111614.2594301342 3.7888336 -1103.1576
+111615.2594301845 3.7887547 -1103.2761
+111616.2594302348 3.7887154 -1103.2761
+111617.2594302851 3.7887943 -1103.2562
+111618.2594303354 3.7888336 -1103.2562
+111619.2594303857 3.7887943 -1103.2562
+111620.259430436 3.7888336 -1103.1576
+111621.2594304862 3.788873 -1103.2562
+111622.2594305365 3.788676 -1103.2366
+111623.2594305868 3.7887154 -1103.2168
+111624.2594306371 3.7887547 -1103.3156
+111625.2594306874 3.7887943 -1103.3353
+111626.2594307377 3.7887154 -1103.1774
+111627.259430788 3.7887154 -1103.2366
+111628.2594308383 3.7886367 -1103.197
+111629.2594308886 3.788676 -1103.2562
+111630.2594309389 3.7886367 -1103.2761
+111631.2594309892 3.7885973 -1103.2761
+111632.2594310394 3.788558 -1103.2366
+111633.2594310897 3.7886367 -1103.3156
+111634.25943114 3.7886367 -1103.2366
+111635.2594311903 3.788558 -1103.2168
+111636.2594312406 3.7885973 -1103.2761
+111637.2594312909 3.7885973 -1103.2959
+111638.2594313412 3.7884793 -1103.2366
+111639.2594313915 3.7884004 -1103.2168
+111640.2594314418 3.7885187 -1103.2562
+111641.2594314921 3.7884793 -1103.2562
+111642.2594315424 3.7884398 -1103.2562
+111643.2594315927 3.7884004 -1103.2761
+111644.2594316429 3.7885187 -1103.2959
+111645.2594316932 3.7884398 -1103.2168
+111646.2594317435 3.7884004 -1103.2959
+111647.2594317938 3.7884398 -1103.2562
+111648.2594318441 3.7883611 -1103.2562
+111649.2594318944 3.7882824 -1103.2761
+111650.2594319447 3.7884004 -1103.2562
+111651.259431995 3.7882824 -1103.2366
+111652.2594320453 3.7884004 -1103.2761
+111653.2594320956 3.7883611 -1103.2168
+111654.2594321459 3.7882431 -1103.197
+111655.2594321962 3.7884004 -1103.2366
+111656.2594322464 3.7882824 -1103.3353
+111657.2594322967 3.7883217 -1103.1576
+111658.259432347 3.7882431 -1103.2761
+111659.2594323973 3.7881644 -1103.2761
+111660.2594324476 3.7882431 -1103.3156
+111661.2594324979 3.7881644 -1103.1774
+111662.2594325482 3.7882431 -1103.2168
+111663.2594325985 3.7881248 -1103.2562
+111664.2594326488 3.7881248 -1103.2366
+111665.2594326991 3.7880855 -1103.2959
+111666.2594327494 3.7881248 -1103.2168
+111667.2594327996 3.7880855 -1103.2366
+111668.2594328499 3.7882431 -1103.2761
+111669.2594329002 3.7880855 -1103.197
+111670.2594329505 3.7881248 -1103.2366
+111671.2594330008 3.7881644 -1103.2959
+111672.2594330511 3.7879674 -1103.3156
+111673.2594331014 3.7879674 -1103.2168
+111674.2594331517 3.7879674 -1103.197
+111675.259433202 3.7880461 -1103.197
+111676.2594332523 3.7880068 -1103.2959
+111677.2594333026 3.7879281 -1103.2761
+111678.2594333529 3.7879674 -1103.3156
+111679.2594334031 3.7879281 -1103.2562
+111680.2594334534 3.7878494 -1103.197
+111681.2594335037 3.7879281 -1103.2366
+111682.259433554 3.7879674 -1103.3353
+111683.2594336043 3.7878494 -1103.2168
+111684.2594336546 3.7878888 -1103.2168
+111685.2594337049 3.7878494 -1103.2761
+111686.2594337552 3.7878888 -1103.197
+111687.2594338055 3.7878098 -1103.2761
+111688.2594338558 3.7877705 -1103.2761
+111689.2594339061 3.7877705 -1103.2168
+111690.2594339564 3.7877312 -1103.2366
+111691.2594340066 3.7877312 -1103.2366
+111692.2594340569 3.7878098 -1103.2761
+111693.2594341072 3.7878098 -1103.2562
+111694.2594341575 3.7877312 -1103.2366
+111695.2594342078 3.7877312 -1103.2366
+111696.2594342581 3.7876525 -1103.3551
+111697.2594343084 3.7876525 -1103.2168
+111698.2594343587 3.7876918 -1103.2562
+111699.259434409 3.7876525 -1103.1774
+111700.2594344593 3.7875738 -1103.2366
+111701.2594345096 3.7876918 -1103.1576
+111702.2594345598 3.7876918 -1103.2761
+111703.2594346101 3.7875738 -1103.3945
+111704.2594346604 3.7876525 -1103.197
+111705.2594347107 3.7875342 -1103.2562
+111706.259434761 3.7874556 -1103.2562
+111707.2594348113 3.7875738 -1103.2562
+111708.2594348616 3.7875342 -1103.3156
+111709.2594349119 3.7874556 -1103.1774
+111710.2594349622 3.7875342 -1103.197
+111711.2594350125 3.7874949 -1103.1576
+111712.2594350628 3.7874162 -1103.3551
+111713.2594351131 3.7874556 -1103.2761
+111714.2594351633 3.7875738 -1103.2959
+111715.2594352136 3.7873769 -1103.2562
+111716.2594352639 3.7874162 -1103.197
+111717.2594353142 3.7874949 -1103.2366
+111718.2594353645 3.7873769 -1103.197
+111719.2594354148 3.7873769 -1103.197
+111720.2594354651 3.7874162 -1103.2366
+111721.2594355154 3.7873375 -1103.2562
+111722.2594355657 3.7872589 -1103.2366
+111723.259435616 3.7874162 -1103.197
+111724.2594356663 3.7873769 -1103.197
+111725.2594357166 3.7872193 -1103.2562
+111726.2594357668 3.7872589 -1103.2168
+111727.2594358171 3.7873375 -1103.1774
+111728.2594358674 3.7872982 -1103.197
+111729.2594359177 3.7873375 -1103.2562
+111730.259435968 3.7872982 -1103.2761
+111731.2594360183 3.7872589 -1103.2959
+111732.2594360686 3.7871799 -1103.2168
+111733.2594361189 3.7871406 -1103.2562
+111734.2594361692 3.7871799 -1103.2366
+111735.2594362195 3.7871406 -1103.2562
+111736.2594362698 3.7871013 -1103.1576
+111737.25943632 3.7870226 -1103.2959
+111738.2594363703 3.7871406 -1103.2366
+111739.2594364206 3.7870226 -1103.2366
+111740.2594364709 3.7870619 -1103.2562
+111741.2594365212 3.7871799 -1103.2761
+111742.2594365715 3.7871013 -1103.3353
+111743.2594366218 3.7870619 -1103.2168
+111744.2594366721 3.7870619 -1103.2168
+111745.2594367224 3.7870619 -1103.3156
+111746.2594367727 3.7870226 -1103.1774
+111747.259436823 3.7869833 -1103.2168
+111748.2594368733 3.7869439 -1103.197
+111749.2594369235 3.7870226 -1103.2562
+111750.2594369738 3.7869439 -1103.3156
+111751.2594370241 3.7869439 -1103.2959
+111752.2594370744 3.7869043 -1103.2761
+111753.2594371247 3.7868257 -1103.1576
+111754.259437175 3.7870226 -1103.2761
+111755.2594372253 3.7870226 -1103.3353
+111756.2594372756 3.786865 -1103.197
+111757.2594373259 3.7868257 -1103.3156
+111758.2594373762 3.786865 -1103.2366
+111759.2594374265 3.7867863 -1103.2168
+111760.2594374768 3.7868257 -1103.2168
+111761.259437527 3.786747 -1103.1378
+111762.2594375773 3.7867863 -1103.2761
+111763.2594376276 3.7867076 -1103.2562
+111764.2594376779 3.786747 -1103.2562
+111765.2594377282 3.7868257 -1103.2562
+111766.2594377785 3.786747 -1103.2959
+111767.2594378288 3.7867076 -1103.2761
+111768.2594378791 3.7867076 -1103.2761
+111769.2594379294 3.7867076 -1103.1774
+111770.2594379797 3.7867076 -1103.2366
+111771.25943803 3.7867863 -1103.197
+111772.2594380802 3.7865894 -1103.197
+111773.2594381305 3.78655 -1103.1182
+111774.2594381808 3.786629 -1103.2562
+111775.2594382311 3.78655 -1103.2761
+111776.2594382814 3.7865107 -1103.197
+111777.2594383317 3.786629 -1103.2366
+111778.259438382 3.7865894 -1103.2959
+111779.2594384323 3.78655 -1103.3156
+111780.2594384826 3.7864714 -1103.2168
+111781.2594385329 3.7865107 -1103.2366
+111782.2594385832 3.7865894 -1103.2562
+111783.2594386335 3.78655 -1103.1576
+111784.2594386837 3.7864714 -1103.2959
+111785.259438734 3.7865894 -1103.2168
+111786.2594387843 3.786432 -1103.2366
+111787.2594388346 3.7864714 -1103.3551
+111788.2594388849 3.7863927 -1103.2562
+111789.2594389352 3.7865107 -1103.2366
+111790.2594389855 3.7863927 -1103.2562
+111791.2594390358 3.786432 -1103.2168
+111792.2594390861 3.786432 -1103.197
+111793.2594391364 3.786432 -1103.2761
+111794.2594391867 3.786314 -1103.2562
+111795.259439237 3.7862744 -1103.2562
+111796.2594392872 3.7862744 -1103.197
+111797.2594393375 3.786314 -1103.2562
+111798.2594393878 3.7862351 -1103.2562
+111799.2594394381 3.7862351 -1103.1774
+111800.2594394884 3.7863533 -1103.2562
+111801.2594395387 3.7862351 -1103.2366
+111802.259439589 3.7862351 -1103.2562
+111803.2594396393 3.7861564 -1103.2761
+111804.2594396896 3.7861171 -1103.1182
+111805.2594397399 3.7861564 -1103.2761
+111806.2594397902 3.786314 -1103.2366
+111807.2594398404 3.7861171 -1103.2562
+111808.2594398907 3.7861564 -1103.197
+111809.259439941 3.7861958 -1103.3749
+111810.2594399913 3.7861564 -1103.2168
+111811.2594400416 3.7861171 -1103.197
+111812.2594400919 3.7861564 -1103.2168
+111813.2594401422 3.7860384 -1103.2168
+111814.2594401925 3.7861564 -1103.2761
+111815.2594402428 3.7860384 -1103.2168
+111816.2594402931 3.7860777 -1103.2761
+111817.2594403434 3.7860384 -1103.2761
+111818.2594403937 3.7860384 -1103.197
+111819.2594404439 3.7859595 -1103.1774
+111820.2594404942 3.7859991 -1103.197
+111821.2594405445 3.7859991 -1103.2761
+111822.2594405948 3.7859201 -1103.197
+111823.2594406451 3.7859201 -1103.197
+111824.2594406954 3.7858415 -1103.1774
+111825.2594407457 3.7858415 -1103.2562
+111826.259440796 3.7858021 -1103.2168
+111827.2594408463 3.7859201 -1103.2562
+111828.2594408966 3.7858415 -1103.2366
+111829.2594409469 3.7858415 -1103.197
+111830.2594409972 3.7858021 -1103.197
+111831.2594410474 3.7857234 -1103.2761
+111832.2594410977 3.7858021 -1103.2168
+111833.259441148 3.7858021 -1103.2959
+111834.2594411983 3.7858021 -1103.197
+111835.2594412486 3.7858021 -1103.2366
+111836.2594412989 3.7857234 -1103.2562
+111837.2594413492 3.7857628 -1103.2562
+111838.2594413995 3.7857628 -1103.2761
+111839.2594414498 3.7858021 -1103.2366
+111840.2594415001 3.7855659 -1103.1774
+111841.2594415504 3.7857234 -1103.1774
+111842.2594416006 3.7856052 -1103.2366
+111843.2594416509 3.7856445 -1103.2761
+111844.2594417012 3.7855659 -1103.2761
+111845.2594417515 3.7855265 -1103.2761
+111846.2594418018 3.7856052 -1103.2168
+111847.2594418521 3.7855659 -1103.2959
+111848.2594419024 3.7854872 -1103.2366
+111849.2594419527 3.7855659 -1103.197
+111850.259442003 3.7854872 -1103.2761
+111851.2594420533 3.7855265 -1103.2562
+111852.2594421036 3.7855265 -1103.1774
+111853.2594421539 3.7855265 -1103.3353
+111854.2594422041 3.7856052 -1103.2168
+111855.2594422544 3.7854872 -1103.197
+111856.2594423047 3.7854872 -1103.2761
+111857.259442355 3.7855265 -1103.197
+111858.2594424053 3.7854872 -1103.197
+111859.2594424556 3.7854478 -1103.2366
+111860.2594425059 3.7854085 -1103.197
+111861.2594425562 3.7855265 -1103.2366
+111862.2594426065 3.7853689 -1103.2761
+111863.2594426568 3.7854085 -1103.2562
+111864.2594427071 3.7852902 -1103.3353
+111865.2594427574 3.7853689 -1103.2562
+111866.2594428076 3.7852509 -1103.2168
+111867.2594428579 3.7853689 -1103.2168
+111868.2594429082 3.7854085 -1103.2959
+111869.2594429585 3.7853689 -1103.2366
+111870.2594430088 3.7852509 -1103.3749
+111871.2594430591 3.7854085 -1103.2168
+111872.2594431094 3.7852116 -1103.2168
+111873.2594431597 3.7852509 -1103.1774
+111874.25944321 3.7852116 -1103.2366
+111875.2594432603 3.7852509 -1103.2366
+111876.2594433106 3.7852116 -1103.2168
+111877.2594433608 3.7851329 -1103.1774
+111878.2594434111 3.7852116 -1103.2761
+111879.2594434614 3.7851329 -1103.2761
+111880.2594435117 3.7851722 -1103.2366
+111881.259443562 3.7852116 -1103.1182
+111882.2594436123 3.7851722 -1103.2366
+111883.2594436626 3.7850935 -1103.2366
+111884.2594437129 3.7850935 -1103.2761
+111885.2594437632 3.7851329 -1103.2168
+111886.2594438135 3.7850935 -1103.2562
+111887.2594438638 3.7850935 -1103.2366
+111888.2594439141 3.7850935 -1103.2562
+111889.2594439643 3.785054 -1103.3156
+111890.2594440146 3.785054 -1103.2761
+111891.2594440649 3.7849753 -1103.3156
+111892.2594441152 3.7848966 -1103.197
+111893.2594441655 3.7849753 -1103.3156
+111894.2594442158 3.7849753 -1103.197
+111895.2594442661 3.7848966 -1103.2761
+111896.2594443164 3.7849753 -1103.2761
+111897.2594443667 3.784936 -1103.2761
+111898.259444417 3.784936 -1103.2562
+111899.2594444673 3.784739 -1103.1774
+111900.2594445175 3.7848966 -1103.2168
+111901.2594445678 3.784936 -1103.1576
+111902.2594446181 3.7848179 -1103.1576
+111903.2594446684 3.7847786 -1103.3156
+111904.2594447187 3.7848573 -1103.2168
+111905.259444769 3.7848179 -1103.3551
+111906.2594448193 3.7848179 -1103.2168
+111907.2594448696 3.7848179 -1103.2761
+111908.2594449199 3.7848966 -1103.2168
+111909.2594449702 3.7846997 -1103.2168
+111910.2594450205 3.7848573 -1103.2959
+111911.2594450708 3.7848179 -1103.2366
+111912.259445121 3.784621 -1103.2168
+111913.2594451713 3.7846603 -1103.2761
+111914.2594452216 3.7845817 -1103.2168
+111915.2594452719 3.784621 -1103.3156
+111916.2594453222 3.7845817 -1103.2168
+111917.2594453725 3.7846997 -1103.1774
+111918.2594454228 3.7846603 -1103.1576
+111919.2594454731 3.7845423 -1103.1774
+111920.2594455234 3.784621 -1103.2168
+111921.2594455737 3.7846603 -1103.2761
+111922.259445624 3.7845423 -1103.2366
+111923.2594456743 3.7844241 -1103.2761
+111924.2594457245 3.7845423 -1103.2168
+111925.2594457748 3.7845423 -1103.197
+111926.2594458251 3.7843847 -1103.3156
+111927.2594458754 3.784503 -1103.1378
+111928.2594459257 3.7844241 -1103.2168
+111929.259445976 3.7844636 -1103.2168
+111930.2594460263 3.7844241 -1103.2168
+111931.2594460766 3.7844636 -1103.2168
+111932.2594461269 3.7844241 -1103.197
+111933.2594461772 3.7843847 -1103.2562
+111934.2594462275 3.7843454 -1103.2761
+111935.2594462777 3.7843847 -1103.1378
+111936.259446328 3.7843847 -1103.2366
+111937.2594463783 3.7844241 -1103.197
+111938.2594464286 3.7843454 -1103.2959
+111939.2594464789 3.784306 -1103.2168
+111940.2594465292 3.7843847 -1103.2761
+111941.2594465795 3.784306 -1103.2168
+111942.2594466298 3.7843454 -1103.197
+111943.2594466801 3.7843847 -1103.2959
+111944.2594467304 3.7842274 -1103.2366
+111945.2594467807 3.784306 -1103.197
+111946.259446831 3.7842667 -1103.2562
+111947.2594468812 3.7842667 -1103.2761
+111948.2594469315 3.784188 -1103.197
+111949.2594469818 3.7842274 -1103.197
+111950.2594470321 3.784188 -1103.1774
+111951.2594470824 3.784188 -1103.2366
+111952.2594471327 3.784188 -1103.2168
+111953.259447183 3.7840698 -1103.2562
+111954.2594472333 3.7841091 -1103.2168
+111955.2594472836 3.7841091 -1103.197
+111956.2594473339 3.784188 -1103.2562
+111957.2594473842 3.7840304 -1103.2366
+111958.2594474345 3.7840698 -1103.2366
+111959.2594474847 3.784188 -1103.2761
+111960.259447535 3.7840698 -1103.1774
+111961.2594475853 3.7839124 -1103.1774
+111962.2594476356 3.7840304 -1103.1774
+111963.2594476859 3.7840304 -1103.2761
+111964.2594477362 3.7839124 -1103.2959
+111965.2594477865 3.7839911 -1103.2366
+111966.2594478368 3.7839124 -1103.197
+111967.2594478871 3.7838731 -1103.1774
+111968.2594479374 3.7838731 -1103.2168
+111969.2594479877 3.7839911 -1103.1774
+111970.2594480379 3.7838731 -1103.2366
+111971.2594480882 3.7839124 -1103.2959
+111972.2594481385 3.7839124 -1103.2168
+111973.2594481888 3.7838335 -1103.197
+111974.2594482391 3.7837942 -1103.2168
+111975.2594482894 3.7837942 -1103.2761
+111976.2594483397 3.7838335 -1103.2366
+111977.25944839 3.7838731 -1103.3353
+111978.2594484403 3.7837942 -1103.2366
+111979.2594484906 3.7837548 -1103.2562
+111980.2594485409 3.7837942 -1103.197
+111981.2594485912 3.7836761 -1103.2761
+111982.2594486414 3.7836761 -1103.2761
+111983.2594486917 3.7837155 -1103.2562
+111984.259448742 3.7838335 -1103.2959
+111985.2594487923 3.7835581 -1103.2168
+111986.2594488426 3.7835975 -1103.2366
+111987.2594488929 3.7836368 -1103.2562
+111988.2594489432 3.7836368 -1103.2168
+111989.2594489935 3.7836761 -1103.197
+111990.2594490438 3.7836761 -1103.2366
+111991.2594490941 3.7836368 -1103.2366
+111992.2594491444 3.7835581 -1103.197
+111993.2594491947 3.7835186 -1103.2761
+111994.2594492449 3.7835975 -1103.2168
+111995.2594492952 3.7836368 -1103.2366
+111996.2594493455 3.7835581 -1103.2562
+111997.2594493958 3.7834005 -1103.3156
+111998.2594494461 3.7834399 -1103.2959
+111999.2594494964 3.7835581 -1103.2562
+112000.2594495467 3.7835975 -1103.2761
+112001.259449597 3.7834792 -1103.2366
+112002.2594496473 3.7834005 -1103.197
+112003.2594496976 3.7834792 -1103.2562
+112004.2594497479 3.7834005 -1103.197
+112005.2594497981 3.7834005 -1103.197
+112006.2594498484 3.7833219 -1103.2761
+112007.2594498987 3.7834399 -1103.2562
+112008.259449949 3.7834399 -1103.2168
+112009.2594499993 3.7833219 -1103.2168
+112010.2594500496 3.7832825 -1103.2562
+112011.2594500999 3.7832825 -1103.2562
+112012.2594501502 3.7832825 -1103.2366
+112013.2594502005 3.7834399 -1103.2168
+112014.2594502508 3.7832432 -1103.2959
+112015.2594503011 3.7832825 -1103.197
+112016.2594503514 3.7831249 -1103.2168
+112017.2594504016 3.7832825 -1103.2366
+112018.2594504519 3.7832036 -1103.197
+112019.2594505022 3.7832432 -1103.2761
+112020.2594505525 3.7832036 -1103.1576
+112021.2594506028 3.7832432 -1103.3156
+112022.2594506531 3.7831643 -1103.2562
+112023.2594507034 3.7831643 -1103.2168
+112024.2594507537 3.7831249 -1103.2761
+112025.259450804 3.7831249 -1103.2366
+112026.2594508543 3.7832432 -1103.2761
+112027.2594509046 3.7831249 -1103.197
+112028.2594509549 3.7830069 -1103.2366
+112029.2594510051 3.7830462 -1103.2168
+112030.2594510554 3.7830462 -1103.2168
+112031.2594511057 3.7830856 -1103.2562
+112032.259451156 3.7830856 -1103.2562
+112033.2594512063 3.7829676 -1103.2366
+112034.2594512566 3.7830462 -1103.2366
+112035.2594513069 3.7830069 -1103.2168
+112036.2594513572 3.7830856 -1103.2366
+112037.2594514075 3.7829676 -1103.2761
+112038.2594514578 3.7829676 -1103.2168
+112039.2594515081 3.7830069 -1103.1774
+112040.2594515583 3.7828887 -1103.2562
+112041.2594516086 3.7829676 -1103.2168
+112042.2594516589 3.7829282 -1103.3353
+112043.2594517092 3.7829676 -1103.3156
+112044.2594517595 3.7828887 -1103.1576
+112045.2594518098 3.7828493 -1103.2562
+112046.2594518601 3.7829676 -1103.2562
+112047.2594519104 3.78281 -1103.2366
+112048.2594519607 3.78281 -1103.2761
+112049.259452011 3.7827706 -1103.3353
+112050.2594520613 3.7828493 -1103.2562
+112051.2594521116 3.7827313 -1103.1774
+112052.2594521618 3.7827313 -1103.197
+112053.2594522121 3.78281 -1103.1774
+112054.2594522624 3.7827313 -1103.197
+112055.2594523127 3.7827706 -1103.2761
+112056.259452363 3.7827313 -1103.197
+112057.2594524133 3.7826526 -1103.2761
+112058.2594524636 3.782692 -1103.2168
+112059.2594525139 3.782692 -1103.197
+112060.2594525642 3.782692 -1103.2168
+112061.2594526145 3.7825737 -1103.2761
+112062.2594526648 3.7825344 -1103.1774
+112063.2594527151 3.7826133 -1103.2959
+112064.2594527653 3.7826133 -1103.3156
+112065.2594528156 3.7825737 -1103.2562
+112066.2594528659 3.7826133 -1103.2168
+112067.2594529162 3.7825344 -1103.1774
+112068.2594529665 3.7825344 -1103.2562
+112069.2594530168 3.7824557 -1103.2761
+112070.2594530671 3.7825344 -1103.1576
+112071.2594531174 3.782495 -1103.1774
+112072.2594531677 3.7825344 -1103.197
+112073.259453218 3.782495 -1103.1774
+112074.2594532683 3.7825344 -1103.197
+112075.2594533185 3.782495 -1103.197
+112076.2594533688 3.7825344 -1103.1182
+112077.2594534191 3.782377 -1103.2366
+112078.2594534694 3.782495 -1103.197
+112079.2594535197 3.782377 -1103.2761
+112080.25945357 3.7823377 -1103.2562
+112081.2594536203 3.7823377 -1103.2168
+112082.2594536706 3.7824163 -1103.2562
+112083.2594537209 3.7822983 -1103.1182
+112084.2594537712 3.7824163 -1103.2959
+112085.2594538215 3.7822983 -1103.197
+112086.2594538718 3.7822587 -1103.2366
+112087.259453922 3.7822587 -1103.2562
+112088.2594539723 3.7822983 -1103.2168
+112089.2594540226 3.7822587 -1103.1576
+112090.2594540729 3.7822587 -1103.197
+112091.2594541232 3.7821407 -1103.3156
+112092.2594541735 3.7822983 -1103.3156
+112093.2594542238 3.7822194 -1103.2562
+112094.2594542741 3.7821014 -1103.2562
+112095.2594543244 3.7821801 -1103.2366
+112096.2594543747 3.7822194 -1103.2366
+112097.259454425 3.7822194 -1103.2168
+112098.2594544753 3.7821407 -1103.2168
+112099.2594545255 3.7821407 -1103.2562
+112100.2594545758 3.7821014 -1103.1774
+112101.2594546261 3.7820621 -1103.2366
+112102.2594546764 3.7821014 -1103.1182
+112103.2594547267 3.7821014 -1103.2761
+112104.259454777 3.7819831 -1103.2366
+112105.2594548273 3.7821014 -1103.2959
+112106.2594548776 3.7821014 -1103.2761
+112107.2594549279 3.7820227 -1103.2959
+112108.2594549782 3.7820621 -1103.1774
+112109.2594550285 3.7819438 -1103.2761
+112110.2594550787 3.7820621 -1103.3551
+112111.259455129 3.7819045 -1103.2761
+112112.2594551793 3.7818651 -1103.2562
+112113.2594552296 3.7819045 -1103.3156
+112114.2594552799 3.7819045 -1103.2562
+112115.2594553302 3.7818651 -1103.197
+112116.2594553805 3.7818258 -1103.2959
+112117.2594554308 3.7818651 -1103.1774
+112118.2594554811 3.7819438 -1103.2761
+112119.2594555314 3.7817864 -1103.1774
+112120.2594555817 3.7818258 -1103.2761
+112121.259455632 3.7818258 -1103.2761
+112122.2594556822 3.7817471 -1103.2761
+112123.2594557325 3.7818258 -1103.2366
+112124.2594557828 3.7817864 -1103.2761
+112125.2594558331 3.7817864 -1103.2168
+112126.2594558834 3.7818258 -1103.2562
+112127.2594559337 3.7817078 -1103.2761
+112128.259455984 3.7818258 -1103.3156
+112129.2594560343 3.7817471 -1103.2168
+112130.2594560846 3.7816288 -1103.3551
+112131.2594561349 3.7816682 -1103.2168
+112132.2594561852 3.7816682 -1103.2761
+112133.2594562355 3.7816682 -1103.2959
+112134.2594562857 3.7816682 -1103.2562
+112135.259456336 3.7816288 -1103.2562
+112136.2594563863 3.7816288 -1103.2562
+112137.2594564366 3.7816288 -1103.2366
+112138.2594564869 3.7815895 -1103.2562
+112139.2594565372 3.7816682 -1103.2761
+112140.2594565875 3.7815502 -1103.2562
+112141.2594566378 3.7815895 -1103.2168
+112142.2594566881 3.7814322 -1103.1774
+112143.2594567384 3.7815108 -1103.2562
+112144.2594567887 3.7815502 -1103.2366
+112145.2594568389 3.7815108 -1103.1774
+112146.2594568892 3.7815108 -1103.2959
+112147.2594569395 3.7815108 -1103.2562
+112148.2594569898 3.7814322 -1103.197
+112149.2594570401 3.7815108 -1103.2168
+112150.2594570904 3.7814715 -1103.1774
+112151.2594571407 3.7814322 -1103.1576
+112152.259457191 3.7814715 -1103.3353
+112153.2594572413 3.7814322 -1103.2366
+112154.2594572916 3.7813928 -1103.2562
+112155.2594573419 3.7813532 -1103.3353
+112156.2594573922 3.7813928 -1103.2366
+112157.2594574424 3.7813928 -1103.2761
+112158.2594574927 3.7813532 -1103.2366
+112159.259457543 3.7813139 -1103.2761
+112160.2594575933 3.7813532 -1103.2366
+112161.2594576436 3.7811959 -1103.2562
+112162.2594576939 3.7813139 -1103.2562
+112163.2594577442 3.7812352 -1103.2959
+112164.2594577945 3.7812352 -1103.2168
+112165.2594578448 3.7811959 -1103.2168
+112166.2594578951 3.7813532 -1103.2562
+112167.2594579454 3.7811565 -1103.1774
+112168.2594579956 3.7811565 -1103.2959
+112169.2594580459 3.7811172 -1103.3551
+112170.2594580962 3.7810779 -1103.2959
+112171.2594581465 3.7810779 -1103.2366
+112172.2594581968 3.7811565 -1103.2761
+112173.2594582471 3.7809989 -1103.2562
+112174.2594582974 3.7810779 -1103.1576
+112175.2594583477 3.7811959 -1103.2366
+112176.259458398 3.7809989 -1103.197
+112177.2594584483 3.7809989 -1103.3551
+112178.2594584986 3.7810383 -1103.2761
+112179.2594585489 3.7810779 -1103.197
+112180.2594585991 3.7809596 -1103.2761
+112181.2594586494 3.7809203 -1103.2168
+112182.2594586997 3.7810779 -1103.2366
+112183.25945875 3.7810383 -1103.2959
+112184.2594588003 3.7809203 -1103.2366
+112185.2594588506 3.7808809 -1103.3156
+112186.2594589009 3.7809203 -1103.2168
+112187.2594589512 3.7808416 -1103.2562
+112188.2594590015 3.7808416 -1103.2562
+112189.2594590518 3.7809596 -1103.2959
+112190.2594591021 3.7808809 -1103.2562
+112191.2594591524 3.7809596 -1103.197
+112192.2594592026 3.7808809 -1103.2761
+112193.2594592529 3.7807629 -1103.2959
+112194.2594593032 3.7807629 -1103.197
+112195.2594593535 3.7808416 -1103.2366
+112196.2594594038 3.7808809 -1103.2562
+112197.2594594541 3.7808809 -1103.2761
+112198.2594595044 3.7808022 -1103.2959
+112199.2594595547 3.7808022 -1103.197
+112200.259459605 3.7808022 -1103.2761
+112201.2594596553 3.7807629 -1103.2562
+112202.2594597056 3.7806447 -1103.1576
+112203.2594597558 3.7806447 -1103.1774
+112204.2594598061 3.7806053 -1103.2168
+112205.2594598564 3.780684 -1103.2761
+112206.2594599067 3.7806447 -1103.2761
+112207.259459957 3.7806447 -1103.1774
+112208.2594600073 3.7806447 -1103.1182
+112209.2594600576 3.780566 -1103.2562
+112210.2594601079 3.7806447 -1103.2168
+112211.2594601582 3.7805266 -1103.1182
+112212.2594602085 3.7804873 -1103.2562
+112213.2594602588 3.7804084 -1103.2761
+112214.2594603091 3.7804873 -1103.2562
+112215.2594603593 3.7804873 -1103.2366
+112216.2594604096 3.780448 -1103.2562
+112217.2594604599 3.7806053 -1103.2168
+112218.2594605102 3.7805266 -1103.197
+112219.2594605605 3.780448 -1103.197
+112220.2594606108 3.7804084 -1103.2761
+112221.2594606611 3.7805266 -1103.197
+112222.2594607114 3.780448 -1103.2562
+112223.2594607617 3.780369 -1103.2959
+112224.259460812 3.7803297 -1103.2761
+112225.2594608623 3.7802904 -1103.2761
+112226.2594609126 3.780369 -1103.2562
+112227.2594609628 3.7803297 -1103.1774
+112228.2594610131 3.780369 -1103.2562
+112229.2594610634 3.780251 -1103.1774
+112230.2594611137 3.7802904 -1103.2562
+112231.259461164 3.7803297 -1103.197
+112232.2594612143 3.780369 -1103.2761
+112233.2594612646 3.7803297 -1103.197
+112234.2594613149 3.7802904 -1103.197
+112235.2594613652 3.7802117 -1103.197
+112236.2594614155 3.780251 -1103.3353
+112237.2594614658 3.7801723 -1103.2366
+112238.259461516 3.7800934 -1103.1576
+112239.2594615663 3.7801328 -1103.2168
+112240.2594616166 3.7802904 -1103.2761
+112241.2594616669 3.7801328 -1103.3156
+112242.2594617172 3.7800934 -1103.2168
+112243.2594617675 3.7801328 -1103.2959
+112244.2594618178 3.7800934 -1103.1774
+112245.2594618681 3.7801723 -1103.197
+112246.2594619184 3.7801723 -1103.3156
+112247.2594619687 3.7800541 -1103.1774
+112248.259462019 3.7801328 -1103.2761
+112249.2594620693 3.7800934 -1103.3156
+112250.2594621195 3.7799754 -1103.2366
+112251.2594621698 3.7799361 -1103.2562
+112252.2594622201 3.7799361 -1103.2168
+112253.2594622704 3.7800148 -1103.2562
+112254.2594623207 3.7799754 -1103.2959
+112255.259462371 3.7799361 -1103.2959
+112256.2594624213 3.7799361 -1103.197
+112257.2594624716 3.7800148 -1103.2761
+112258.2594625219 3.7798574 -1103.2562
+112259.2594625722 3.7798574 -1103.2366
+112260.2594626225 3.7798178 -1103.2761
+112261.2594626728 3.7798967 -1103.3353
+112262.259462723 3.7797391 -1103.2366
+112263.2594627733 3.7798967 -1103.2959
+112264.2594628236 3.7798574 -1103.2562
+112265.2594628739 3.7798178 -1103.197
+112266.2594629242 3.7798967 -1103.197
+112267.2594629745 3.7797391 -1103.2168
+112268.2594630248 3.7796605 -1103.2168
+112269.2594630751 3.7797785 -1103.2366
+112270.2594631254 3.7796211 -1103.2562
+112271.2594631757 3.7797785 -1103.197
+112272.259463226 3.7796998 -1103.197
+112273.2594632762 3.7796998 -1103.2562
+112274.2594633265 3.7796605 -1103.2168
+112275.2594633768 3.7796605 -1103.1774
+112276.2594634271 3.7796211 -1103.2562
+112277.2594634774 3.7796605 -1103.2761
+112278.2594635277 3.7796211 -1103.1774
+112279.259463578 3.7796211 -1103.2562
+112280.2594636283 3.7796605 -1103.2562
+112281.2594636786 3.7795029 -1103.197
+112282.2594637289 3.7796605 -1103.1774
+112283.2594637792 3.7795818 -1103.2366
+112284.2594638295 3.7795029 -1103.2366
+112285.2594638797 3.7795424 -1103.1774
+112286.25946393 3.7795029 -1103.2562
+112287.2594639803 3.7795424 -1103.2366
+112288.2594640306 3.7795029 -1103.1774
+112289.2594640809 3.7795818 -1103.1182
+112290.2594641312 3.7795424 -1103.3353
+112291.2594641815 3.7794242 -1103.3156
+112292.2594642318 3.7795029 -1103.197
+112293.2594642821 3.7793455 -1103.197
+112294.2594643324 3.7795424 -1103.2366
+112295.2594643827 3.7793849 -1103.2366
+112296.259464433 3.7794242 -1103.197
+112297.2594644832 3.7793062 -1103.3353
+112298.2594645335 3.7793455 -1103.2959
+112299.2594645838 3.7793849 -1103.197
+112300.2594646341 3.7793849 -1103.197
+112301.2594646844 3.7793062 -1103.197
+112302.2594647347 3.7793062 -1103.2562
+112303.259464785 3.7793062 -1103.197
+112304.2594648353 3.7792668 -1103.2366
+112305.2594648856 3.7792275 -1103.3353
+112306.2594649359 3.7792668 -1103.3353
+112307.2594649862 3.7792668 -1103.197
+112308.2594650364 3.7791879 -1103.3156
+112309.2594650867 3.7792668 -1103.2366
+112310.259465137 3.7791486 -1103.2562
+112311.2594651873 3.7792275 -1103.2366
+112312.2594652376 3.7791486 -1103.1576
+112313.2594652879 3.7790306 -1103.2168
+112314.2594653382 3.7791486 -1103.2168
+112315.2594653885 3.7790306 -1103.197
+112316.2594654388 3.7791092 -1103.1182
+112317.2594654891 3.7790699 -1103.197
+112318.2594655394 3.7790306 -1103.1774
+112319.2594655897 3.7791092 -1103.2761
+112320.2594656399 3.7791092 -1103.2959
+112321.2594656902 3.7790306 -1103.2761
+112322.2594657405 3.7790699 -1103.1576
+112323.2594657908 3.7789912 -1103.2562
+112324.2594658411 3.7789519 -1103.3353
+112325.2594658914 3.7789519 -1103.4539
+112326.2594659417 3.7789519 -1103.2168
+112327.259465992 3.7788336 -1103.2562
+112328.2594660423 3.7789912 -1103.2366
+112329.2594660926 3.7789125 -1103.2562
+112330.2594661429 3.7789519 -1103.197
+112331.2594661932 3.778873 -1103.1774
+112332.2594662434 3.7789125 -1103.197
+112333.2594662937 3.7788336 -1103.3156
+112334.259466344 3.7789125 -1103.2761
+112335.2594663943 3.7789125 -1103.2761
+112336.2594664446 3.7788336 -1103.2366
+112337.2594664949 3.778873 -1103.2562
+112338.2594665452 3.7787549 -1103.2761
+112339.2594665955 3.7787156 -1103.1774
+112340.2594666458 3.7787943 -1103.2366
+112341.2594666961 3.7787943 -1103.2761
+112342.2594667464 3.7787549 -1103.2562
+112343.2594667966 3.7788336 -1103.3353
+112344.2594668469 3.7787943 -1103.2366
+112345.2594668972 3.778873 -1103.3353
+112346.2594669475 3.7785974 -1103.2959
+112347.2594669978 3.7787156 -1103.197
+112348.2594670481 3.7786369 -1103.2168
+112349.2594670984 3.7787156 -1103.2959
+112350.2594671487 3.7785974 -1103.2168
+112351.259467199 3.7786369 -1103.2959
+112352.2594672493 3.7786369 -1103.2366
+112353.2594672996 3.778558 -1103.2168
+112354.2594673499 3.7786369 -1103.2168
+112355.2594674001 3.7785974 -1103.197
+112356.2594674504 3.7785974 -1103.2168
+112357.2594675007 3.7784007 -1103.2959
+112358.259467551 3.7786369 -1103.2959
+112359.2594676013 3.7785187 -1103.197
+112360.2594676516 3.7785187 -1103.2562
+112361.2594677019 3.778558 -1103.3156
+112362.2594677522 3.77844 -1103.2562
+112363.2594678025 3.77844 -1103.2761
+112364.2594678528 3.77844 -1103.1774
+112365.2594679031 3.7783613 -1103.2959
+112366.2594679534 3.7784007 -1103.2366
+112367.2594680036 3.7784007 -1103.2168
+112368.2594680539 3.778322 -1103.2761
+112369.2594681042 3.7783613 -1103.2761
+112370.2594681545 3.7782824 -1103.2761
+112371.2594682048 3.7782824 -1103.2959
+112372.2594682551 3.778322 -1103.2562
+112373.2594683054 3.7783613 -1103.2168
+112374.2594683557 3.778322 -1103.2366
+112375.259468406 3.7782824 -1103.2761
+112376.2594684563 3.778322 -1103.2366
+112377.2594685066 3.7782431 -1103.1378
+112378.2594685568 3.7782824 -1103.3156
+112379.2594686071 3.7782824 -1103.3156
+112380.2594686574 3.7782431 -1103.197
+112381.2594687077 3.7782037 -1103.2761
+112382.259468758 3.7782431 -1103.3156
+112383.2594688083 3.7780857 -1103.2366
+112384.2594688586 3.778125 -1103.2168
+112385.2594689089 3.7782037 -1103.2562
+112386.2594689592 3.778125 -1103.2761
+112387.2594690095 3.7780464 -1103.2168
+112388.2594690598 3.7780464 -1103.2366
+112389.2594691101 3.778125 -1103.2959
+112390.2594691603 3.778125 -1103.2366
+112391.2594692106 3.7780464 -1103.2562
+112392.2594692609 3.7780464 -1103.197
+112393.2594693112 3.778007 -1103.2562
+112394.2594693615 3.7780857 -1103.2168
+112395.2594694118 3.7780464 -1103.1774
+112396.2594694621 3.7779675 -1103.3353
+112397.2594695124 3.778007 -1103.2562
+112398.2594695627 3.7779281 -1103.2366
+112399.259469613 3.7779281 -1103.197
+112400.2594696633 3.7779281 -1103.2168
+112401.2594697136 3.7778888 -1103.2959
+112402.2594697638 3.7778888 -1103.2562
+112403.2594698141 3.7779281 -1103.197
+112404.2594698644 3.7778101 -1103.197
+112405.2594699147 3.7778888 -1103.1774
+112406.259469965 3.7778494 -1103.2366
+112407.2594700153 3.7778888 -1103.2761
+112408.2594700656 3.7778494 -1103.2959
+112409.2594701159 3.7778494 -1103.2562
+112410.2594701662 3.7779281 -1103.2761
+112411.2594702165 3.7778494 -1103.2168
+112412.2594702668 3.7778101 -1103.2761
+112413.259470317 3.7778101 -1103.2562
+112414.2594703673 3.7778101 -1103.2366
+112415.2594704176 3.7777314 -1103.2366
+112416.2594704679 3.7776525 -1103.1774
+112417.2594705182 3.7777708 -1103.2168
+112418.2594705685 3.7777708 -1103.2168
+112419.2594706188 3.7776921 -1103.2168
+112420.2594706691 3.7776921 -1103.2562
+112421.2594707194 3.7776132 -1103.2562
+112422.2594707697 3.7775738 -1103.197
+112423.25947082 3.7775738 -1103.1774
+112424.2594708703 3.7775345 -1103.2562
+112425.2594709205 3.7775345 -1103.1774
+112426.2594709708 3.7775345 -1103.2168
+112427.2594710211 3.7775345 -1103.2761
+112428.2594710714 3.7776132 -1103.2562
+112429.2594711217 3.7775738 -1103.2366
+112430.259471172 3.7774951 -1103.2959
+112431.2594712223 3.7775345 -1103.197
+112432.2594712726 3.7775345 -1103.3749
+112433.2594713229 3.7775345 -1103.2366
+112434.2594713732 3.7774951 -1103.3353
+112435.2594714235 3.7773376 -1103.2168
+112436.2594714738 3.7775345 -1103.2366
+112437.259471524 3.7774558 -1103.2168
+112438.2594715743 3.7774951 -1103.2761
+112439.2594716246 3.7774165 -1103.2168
+112440.2594716749 3.7773376 -1103.2168
+112441.2594717252 3.7774558 -1103.197
+112442.2594717755 3.7772589 -1103.2959
+112443.2594718258 3.7773376 -1103.2959
+112444.2594718761 3.7774165 -1103.2959
+112445.2594719264 3.7773771 -1103.2562
+112446.2594719767 3.7772589 -1103.2168
+112447.259472027 3.7772982 -1103.2562
+112448.2594720772 3.7772589 -1103.3156
+112449.2594721275 3.7772589 -1103.2959
+112450.2594721778 3.7772589 -1103.197
+112451.2594722281 3.7772589 -1103.2366
+112452.2594722784 3.7772589 -1103.2168
+112453.2594723287 3.7772982 -1103.2959
+112454.259472379 3.7772589 -1103.2366
+112455.2594724293 3.7771409 -1103.3353
+112456.2594724796 3.7772195 -1103.1774
+112457.2594725299 3.7771409 -1103.2761
+112458.2594725802 3.7771802 -1103.2366
+112459.2594726305 3.7771015 -1103.2366
+112460.2594726807 3.7770622 -1103.197
+112461.259472731 3.7771409 -1103.2168
+112462.2594727813 3.7771409 -1103.2562
+112463.2594728316 3.7770622 -1103.3156
+112464.2594728819 3.7771409 -1103.3156
+112465.2594729322 3.7771015 -1103.2761
+112466.2594729825 3.7770226 -1103.197
+112467.2594730328 3.7771015 -1103.2168
+112468.2594730831 3.7769439 -1103.2168
+112469.2594731334 3.7769833 -1103.2761
+112470.2594731837 3.7770226 -1103.2366
+112471.2594732339 3.7770226 -1103.1378
+112472.2594732842 3.7770226 -1103.2366
+112473.2594733345 3.7769046 -1103.2959
+112474.2594733848 3.7769833 -1103.1576
+112475.2594734351 3.7769046 -1103.1576
+112476.2594734854 3.7769833 -1103.3353
+112477.2594735357 3.7768652 -1103.3353
+112478.259473586 3.7768652 -1103.2959
+112479.2594736363 3.7768652 -1103.197
+112480.2594736866 3.7768652 -1103.1774
+112481.2594737369 3.7768652 -1103.2562
+112482.2594737872 3.7768259 -1103.2562
+112483.2594738374 3.7767866 -1103.2366
+112484.2594738877 3.776747 -1103.2366
+112485.259473938 3.7767076 -1103.197
+112486.2594739883 3.7768259 -1103.1378
+112487.2594740386 3.7767866 -1103.2959
+112488.2594740889 3.7767866 -1103.2366
+112489.2594741392 3.7767866 -1103.2562
+112490.2594741895 3.7767076 -1103.2168
+112491.2594742398 3.7766683 -1103.2959
+112492.2594742901 3.7766683 -1103.2761
+112493.2594743404 3.776629 -1103.2168
+112494.2594743907 3.7765896 -1103.2366
+112495.2594744409 3.7765896 -1103.2562
+112496.2594744912 3.7766683 -1103.1774
+112497.2594745415 3.7766683 -1103.2959
+112498.2594745918 3.7766683 -1103.197
+112499.2594746421 3.776629 -1103.2366
+112500.2594746924 3.776629 -1103.2366
+112501.2594747427 3.7765896 -1103.2168
+112502.259474793 3.776511 -1103.2562
+112503.2594748433 3.7765503 -1103.3156
+112504.2594748936 3.7765896 -1103.2168
+112505.2594749439 3.7765503 -1103.2761
+112506.2594749941 3.7765503 -1103.2562
+112507.2594750444 3.7765503 -1103.2562
+112508.2594750947 3.776432 -1103.1576
+112509.259475145 3.776314 -1103.2366
+112510.2594751953 3.7764716 -1103.2562
+112511.2594752456 3.7765503 -1103.2562
+112512.2594752959 3.7763927 -1103.2562
+112513.2594753462 3.7763534 -1103.2562
+112514.2594753965 3.776511 -1103.3156
+112515.2594754468 3.7763534 -1103.2366
+112516.2594754971 3.7763534 -1103.2959
+112517.2594755474 3.7763927 -1103.2562
+112518.2594755976 3.7763927 -1103.2168
+112519.2594756479 3.776314 -1103.1774
+112520.2594756982 3.7763927 -1103.197
+112521.2594757485 3.7763927 -1103.3156
+112522.2594757988 3.7762747 -1103.197
+112523.2594758491 3.776196 -1103.2959
+112524.2594758994 3.7762747 -1103.2168
+112525.2594759497 3.7763534 -1103.2168
+112526.259476 3.7762353 -1103.2761
+112527.2594760503 3.776314 -1103.2959
+112528.2594761006 3.7762353 -1103.1576
+112529.2594761509 3.7762747 -1103.3156
+112530.2594762011 3.776196 -1103.2562
+112531.2594762514 3.776196 -1103.197
+112532.2594763017 3.7761567 -1103.1378
+112533.259476352 3.7760384 -1103.2168
+112534.2594764023 3.7760777 -1103.1774
+112535.2594764526 3.7761567 -1103.2959
+112536.2594765029 3.7759991 -1103.2168
+112537.2594765532 3.7761171 -1103.197
+112538.2594766035 3.7760777 -1103.3156
+112539.2594766538 3.7760777 -1103.2366
+112540.2594767041 3.7760384 -1103.2168
+112541.2594767543 3.7759991 -1103.2562
+112542.2594768046 3.7760777 -1103.2366
+112543.2594768549 3.7759991 -1103.3156
+112544.2594769052 3.7760777 -1103.3353
+112545.2594769555 3.7760384 -1103.197
+112546.2594770058 3.7759204 -1103.2168
+112547.2594770561 3.7759991 -1103.2761
+112548.2594771064 3.7758417 -1103.2366
+112549.2594771567 3.7759597 -1103.2761
+112550.259477207 3.7759597 -1103.197
+112551.2594772573 3.7758417 -1103.1774
+112552.2594773076 3.7759204 -1103.3353
+112553.2594773578 3.7758811 -1103.2366
+112554.2594774081 3.7758811 -1103.2366
+112555.2594774584 3.7759204 -1103.2168
+112556.2594775087 3.7759597 -1103.197
+112557.259477559 3.7758021 -1103.2562
+112558.2594776093 3.7758811 -1103.2761
+112559.2594776596 3.7757628 -1103.2959
+112560.2594777099 3.7757235 -1103.197
+112561.2594777602 3.7757628 -1103.1576
+112562.2594778105 3.7758417 -1103.2366
+112563.2594778608 3.7758021 -1103.2761
+112564.2594779111 3.7757628 -1103.2959
+112565.2594779613 3.7756841 -1103.2562
+112566.2594780116 3.7757628 -1103.2168
+112567.2594780619 3.7757235 -1103.2761
+112568.2594781122 3.7757235 -1103.2959
+112569.2594781625 3.7757235 -1103.2562
+112570.2594782128 3.7756448 -1103.2168
+112571.2594782631 3.7757628 -1103.197
+112572.2594783134 3.7756448 -1103.197
+112573.2594783637 3.7755661 -1103.2761
+112574.259478414 3.7756054 -1103.2761
+112575.2594784643 3.7757235 -1103.1774
+112576.2594785145 3.7756448 -1103.3156
+112577.2594785648 3.7756054 -1103.2562
+112578.2594786151 3.7755661 -1103.2562
+112579.2594786654 3.7754478 -1103.197
+112580.2594787157 3.7756054 -1103.2562
+112581.259478766 3.7754085 -1103.2366
+112582.2594788163 3.7754872 -1103.2366
+112583.2594788666 3.7754872 -1103.2168
+112584.2594789169 3.7754478 -1103.1774
+112585.2594789672 3.7754872 -1103.2562
+112586.2594790175 3.7753298 -1103.197
+112587.2594790678 3.7754872 -1103.2366
+112588.259479118 3.7754085 -1103.1774
+112589.2594791683 3.7754085 -1103.2959
+112590.2594792186 3.7754478 -1103.2959
+112591.2594792689 3.7753298 -1103.1774
+112592.2594793192 3.7754085 -1103.2562
+112593.2594793695 3.7753692 -1103.2366
+112594.2594794198 3.7752905 -1103.2562
+112595.2594794701 3.7753298 -1103.2168
+112596.2594795204 3.7752118 -1103.2562
+112597.2594795707 3.7753692 -1103.197
+112598.259479621 3.7752905 -1103.1774
+112599.2594796713 3.7752512 -1103.2168
+112600.2594797215 3.7752118 -1103.0785
+112601.2594797718 3.7752905 -1103.1774
+112602.2594798221 3.7751722 -1103.1576
+112603.2594798724 3.7752118 -1103.197
+112604.2594799227 3.7752118 -1103.3353
+112605.259479973 3.7750936 -1103.2168
+112606.2594800233 3.7751722 -1103.2562
+112607.2594800736 3.7752512 -1103.3156
+112608.2594801239 3.7752512 -1103.2761
+112609.2594801742 3.7751329 -1103.2168
+112610.2594802245 3.7750542 -1103.2761
+112611.2594802747 3.7751329 -1103.2168
+112612.259480325 3.7751329 -1103.2761
+112613.2594803753 3.7751329 -1103.2761
+112614.2594804256 3.7750542 -1103.2366
+112615.2594804759 3.7749755 -1103.2562
+112616.2594805262 3.7750542 -1103.2562
+112617.2594805765 3.7750542 -1103.197
+112618.2594806268 3.7750542 -1103.2366
+112619.2594806771 3.7748966 -1103.1378
+112620.2594807274 3.7749362 -1103.197
+112621.2594807777 3.7750149 -1103.197
+112622.259480828 3.7750149 -1103.2366
+112623.2594808782 3.7748966 -1103.2761
+112624.2594809285 3.7749755 -1103.197
+112625.2594809788 3.7749755 -1103.197
+112626.2594810291 3.7748179 -1103.1774
+112627.2594810794 3.7748179 -1103.2562
+112628.2594811297 3.7748573 -1103.2562
+112629.25948118 3.7747786 -1103.2761
+112630.2594812303 3.7748573 -1103.2761
+112631.2594812806 3.7747786 -1103.2761
+112632.2594813309 3.7747786 -1103.1774
+112633.2594813812 3.7748573 -1103.1774
+112634.2594814315 3.7747786 -1103.2562
+112635.2594814817 3.7747786 -1103.3156
+112636.259481532 3.7748179 -1103.2168
+112637.2594815823 3.7748179 -1103.2761
+112638.2594816326 3.7747393 -1103.2366
+112639.2594816829 3.7748573 -1103.2366
+112640.2594817332 3.7747786 -1103.2168
+112641.2594817835 3.7746999 -1103.1182
+112642.2594818338 3.7747786 -1103.2761
+112643.2594818841 3.7746212 -1103.2562
+112644.2594819344 3.7746606 -1103.197
+112645.2594819847 3.7746212 -1103.197
+112646.2594820349 3.7746606 -1103.2562
+112647.2594820852 3.7745817 -1103.2761
+112648.2594821355 3.7746606 -1103.3353
+112649.2594821858 3.774503 -1103.2761
+112650.2594822361 3.7745817 -1103.197
+112651.2594822864 3.7745423 -1103.2761
+112652.2594823367 3.7745423 -1103.2366
+112653.259482387 3.7744637 -1103.2366
+112654.2594824373 3.774503 -1103.197
+112655.2594824876 3.7744637 -1103.1774
+112656.2594825379 3.7745817 -1103.2562
+112657.2594825882 3.7745423 -1103.2366
+112658.2594826384 3.774385 -1103.2168
+112659.2594826887 3.7744637 -1103.197
+112660.259482739 3.7744243 -1103.1774
+112661.2594827893 3.774385 -1103.1774
+112662.2594828396 3.7744637 -1103.2761
+112663.2594828899 3.774503 -1103.4143
+112664.2594829402 3.774385 -1103.2761
+112665.2594829905 3.7744637 -1103.1774
+112666.2594830408 3.7744243 -1103.2959
+112667.2594830911 3.774385 -1103.2562
+112668.2594831414 3.7744243 -1103.2761
+112669.2594831917 3.7743456 -1103.2366
+112670.2594832419 3.774385 -1103.2562
+112671.2594832922 3.7742667 -1103.3353
+112672.2594833425 3.7743456 -1103.2959
+112673.2594833928 3.7743063 -1103.2168
+112674.2594834431 3.774188 -1103.2366
+112675.2594834934 3.7743063 -1103.2761
+112676.2594835437 3.7742274 -1103.197
+112677.259483594 3.7742667 -1103.2562
+112678.2594836443 3.7742667 -1103.3156
+112679.2594836946 3.7742274 -1103.1774
+112680.2594837449 3.774188 -1103.1774
+112681.2594837951 3.7741487 -1103.2366
+112682.2594838454 3.7740307 -1103.2168
+112683.2594838957 3.7742274 -1103.2366
+112684.259483946 3.7740307 -1103.2761
+112685.2594839963 3.774188 -1103.2959
+112686.2594840466 3.7742274 -1103.2761
+112687.2594840969 3.77407 -1103.1774
+112688.2594841472 3.77407 -1103.2959
+112689.2594841975 3.7740307 -1103.1576
+112690.2594842478 3.7740307 -1103.2366
+112691.2594842981 3.7741094 -1103.2168
+112692.2594843484 3.7739518 -1103.1774
+112693.2594843986 3.7741094 -1103.197
+112694.2594844489 3.7739913 -1103.2168
+112695.2594844992 3.7739518 -1103.197
+112696.2594845495 3.7739124 -1103.2168
+112697.2594845998 3.7739518 -1103.197
+112698.2594846501 3.7739518 -1103.2366
+112699.2594847004 3.7739518 -1103.197
+112700.2594847507 3.7739124 -1103.2761
+112701.259484801 3.7738731 -1103.2761
+112702.2594848513 3.7739124 -1103.2366
+112703.2594849016 3.7739518 -1103.2959
+112704.2594849519 3.7738731 -1103.2366
+112705.2594850021 3.7738731 -1103.197
+112706.2594850524 3.7737944 -1103.1576
+112707.2594851027 3.7737944 -1103.2562
+112708.259485153 3.7738338 -1103.2366
+112709.2594852033 3.7737944 -1103.197
+112710.2594852536 3.7738338 -1103.1576
+112711.2594853039 3.7737944 -1103.2366
+112712.2594853542 3.7737944 -1103.2761
+112713.2594854045 3.7737551 -1103.2168
+112714.2594854548 3.7737944 -1103.1576
+112715.2594855051 3.7737157 -1103.2959
+112716.2594855553 3.7737551 -1103.2366
+112717.2594856056 3.7736368 -1103.197
+112718.2594856559 3.7737157 -1103.1774
+112719.2594857062 3.7735975 -1103.1774
+112720.2594857565 3.7736764 -1103.2761
+112721.2594858068 3.7737157 -1103.2168
+112722.2594858571 3.7735581 -1103.2168
+112723.2594859074 3.7736368 -1103.2761
+112724.2594859577 3.7736368 -1103.1774
+112725.259486008 3.7736368 -1103.2168
+112726.2594860583 3.7735188 -1103.3353
+112727.2594861086 3.7735188 -1103.197
+112728.2594861588 3.7735581 -1103.197
+112729.2594862091 3.7736368 -1103.197
+112730.2594862594 3.7734401 -1103.2761
+112731.2594863097 3.7734795 -1103.1774
+112732.25948636 3.7734795 -1103.1576
+112733.2594864103 3.7734795 -1103.2562
+112734.2594864606 3.7734795 -1103.2761
+112735.2594865109 3.7734008 -1103.2562
+112736.2594865612 3.7734008 -1103.2366
+112737.2594866115 3.7734795 -1103.1576
+112738.2594866618 3.7734795 -1103.1774
+112739.2594867121 3.7734008 -1103.2168
+112740.2594867623 3.7734008 -1103.1576
+112741.2594868126 3.7734401 -1103.2761
+112742.2594868629 3.7732432 -1103.2562
+112743.2594869132 3.7734795 -1103.2366
+112744.2594869635 3.7732825 -1103.2562
+112745.2594870138 3.7732825 -1103.1576
+112746.2594870641 3.7732432 -1103.197
+112747.2594871144 3.7733614 -1103.2366
+112748.2594871647 3.7732038 -1103.2168
+112749.259487215 3.7732825 -1103.3353
+112750.2594872653 3.7732825 -1103.2562
+112751.2594873155 3.7732038 -1103.2366
+112752.2594873658 3.7732432 -1103.3156
+112753.2594874161 3.7732038 -1103.2562
+112754.2594874664 3.7730858 -1103.2168
+112755.2594875167 3.7731645 -1103.2562
+112756.259487567 3.7731645 -1103.2168
+112757.2594876173 3.7731252 -1103.3156
+112758.2594876676 3.7730858 -1103.2959
+112759.2594877179 3.7731645 -1103.3945
+112760.2594877682 3.7731645 -1103.197
+112761.2594878185 3.7731252 -1103.2168
+112762.2594878688 3.7731252 -1103.2168
+112763.259487919 3.7730069 -1103.2366
+112764.2594879693 3.7730858 -1103.197
+112765.2594880196 3.7730858 -1103.2562
+112766.2594880699 3.7730463 -1103.197
+112767.2594881202 3.7730069 -1103.2168
+112768.2594881705 3.7729676 -1103.2959
+112769.2594882208 3.7729676 -1103.2366
+112770.2594882711 3.7728889 -1103.2366
+112771.2594883214 3.7729282 -1103.3156
+112772.2594883717 3.7728889 -1103.2959
+112773.259488422 3.7728496 -1103.2168
+112774.2594884722 3.7728889 -1103.197
+112775.2594885225 3.7729676 -1103.2168
+112776.2594885728 3.7729282 -1103.2366
+112777.2594886231 3.7728889 -1103.197
+112778.2594886734 3.7728102 -1103.2168
+112779.2594887237 3.7727709 -1103.2168
+112780.259488774 3.7728889 -1103.2366
+112781.2594888243 3.7727709 -1103.2168
+112782.2594888746 3.7727709 -1103.2168
+112783.2594889249 3.7728496 -1103.2562
+112784.2594889752 3.7728102 -1103.1576
+112785.2594890255 3.772692 -1103.2168
+112786.2594890757 3.7727709 -1103.2366
+112787.259489126 3.772692 -1103.2168
+112788.2594891763 3.772692 -1103.197
+112789.2594892266 3.7728102 -1103.2761
+112790.2594892769 3.772692 -1103.1774
+112791.2594893272 3.772692 -1103.2168
+112792.2594893775 3.7727313 -1103.2562
+112793.2594894278 3.7727313 -1103.1774
+112794.2594894781 3.7726526 -1103.2168
+112795.2594895284 3.7726526 -1103.3156
+112796.2594895787 3.7725739 -1103.2959
+112797.259489629 3.7725739 -1103.2761
+112798.2594896792 3.7726133 -1103.2959
+112799.2594897295 3.772692 -1103.2562
+112800.2594897798 3.7724559 -1103.2562
+112801.2594898301 3.7726526 -1103.2761
+112802.2594898804 3.7725346 -1103.2366
+112803.2594899307 3.7726133 -1103.197
+112804.259489981 3.7725346 -1103.2366
+112805.2594900313 3.772377 -1103.2366
+112806.2594900816 3.7724559 -1103.2366
+112807.2594901319 3.7725346 -1103.1576
+112808.2594901822 3.7724559 -1103.2168
+112809.2594902324 3.7724164 -1103.2761
+112810.2594902827 3.7725346 -1103.2562
+112811.259490333 3.7724164 -1103.1774
+112812.2594903833 3.7724164 -1103.3156
+112813.2594904336 3.7724953 -1103.2562
+112814.2594904839 3.7723377 -1103.2366
+112815.2594905342 3.7724559 -1103.1774
+112816.2594905845 3.772377 -1103.1182
+112817.2594906348 3.7722983 -1103.2366
+112818.2594906851 3.7721803 -1103.2562
+112819.2594907354 3.7722983 -1103.2562
+112820.2594907857 3.7724559 -1103.2366
+112821.2594908359 3.7721803 -1103.2168
+112822.2594908862 3.772259 -1103.2562
+112823.2594909365 3.7722983 -1103.2168
+112824.2594909868 3.772259 -1103.197
+112825.2594910371 3.772377 -1103.2562
+112826.2594910874 3.772141 -1103.2366
+112827.2594911377 3.7721803 -1103.2168
+112828.259491188 3.772141 -1103.2168
+112829.2594912383 3.7722197 -1103.2562
+112830.2594912886 3.7722197 -1103.3156
+112831.2594913389 3.7722197 -1103.1576
+112832.2594913892 3.772141 -1103.1774
+112833.2594914394 3.772141 -1103.2168
+112834.2594914897 3.772141 -1103.197
+112835.25949154 3.7721014 -1103.1378
+112836.2594915903 3.771944 -1103.2168
+112837.2594916406 3.7720227 -1103.1774
+112838.2594916909 3.7720227 -1103.3156
+112839.2594917412 3.7720621 -1103.1576
+112840.2594917915 3.7720621 -1103.2366
+112841.2594918418 3.771944 -1103.2562
+112842.2594918921 3.7721014 -1103.2366
+112843.2594919424 3.7719047 -1103.2366
+112844.2594919926 3.7720621 -1103.2366
+112845.2594920429 3.771944 -1103.2562
+112846.2594920932 3.7719834 -1103.2761
+112847.2594921435 3.771944 -1103.2959
+112848.2594921938 3.7718654 -1103.2366
+112849.2594922441 3.7718654 -1103.197
+112850.2594922944 3.771826 -1103.3156
+112851.2594923447 3.7718654 -1103.2959
+112852.259492395 3.771826 -1103.2761
+112853.2594924453 3.7718654 -1103.2562
+112854.2594924956 3.771826 -1103.2168
+112855.2594925459 3.7718654 -1103.197
+112856.2594925961 3.7718654 -1103.197
+112857.2594926464 3.7717865 -1103.1576
+112858.2594926967 3.771826 -1103.2562
+112859.259492747 3.7717471 -1103.2562
+112860.2594927973 3.7717471 -1103.2562
+112861.2594928476 3.7717471 -1103.2761
+112862.2594928979 3.7715504 -1103.2366
+112863.2594929482 3.7716291 -1103.2366
+112864.2594929985 3.7717078 -1103.2562
+112865.2594930488 3.7717078 -1103.2761
+112866.2594930991 3.7717078 -1103.2562
+112867.2594931494 3.7717078 -1103.2562
+112868.2594931996 3.7715898 -1103.197
+112869.2594932499 3.7716291 -1103.2562
+112870.2594933002 3.7716684 -1103.2761
+112871.2594933505 3.7715898 -1103.2562
+112872.2594934008 3.7715111 -1103.2761
+112873.2594934511 3.7715898 -1103.197
+112874.2594935014 3.7714715 -1103.2366
+112875.2594935517 3.7715898 -1103.2761
+112876.259493602 3.7715504 -1103.2168
+112877.2594936523 3.7715111 -1103.3156
+112878.2594937026 3.7715111 -1103.2168
+112879.2594937528 3.7715504 -1103.2761
+112880.2594938031 3.7715111 -1103.1576
+112881.2594938534 3.7714322 -1103.2562
+112882.2594939037 3.7713928 -1103.2959
+112883.259493954 3.7715111 -1103.197
+112884.2594940043 3.7714322 -1103.3156
+112885.2594940546 3.7714322 -1103.197
+112886.2594941049 3.7714322 -1103.2761
+112887.2594941552 3.7713535 -1103.2761
+112888.2594942055 3.7714715 -1103.1774
+112889.2594942558 3.7713141 -1103.2761
+112890.2594943061 3.7713535 -1103.2366
+112891.2594943563 3.7713928 -1103.2168
+112892.2594944066 3.7713141 -1103.197
+112893.2594944569 3.7713141 -1103.1774
+112894.2594945072 3.7713141 -1103.2761
+112895.2594945575 3.7712355 -1103.2761
+112896.2594946078 3.7711959 -1103.197
+112897.2594946581 3.7711172 -1103.1576
+112898.2594947084 3.7712355 -1103.3353
+112899.2594947587 3.7712748 -1103.2168
+112900.259494809 3.7712748 -1103.1774
+112901.2594948593 3.7711959 -1103.2761
+112902.2594949096 3.7711959 -1103.197
+112903.2594949598 3.7711172 -1103.2562
+112904.2594950101 3.7712355 -1103.197
+112905.2594950604 3.7712355 -1103.2562
+112906.2594951107 3.7710779 -1103.2168
+112907.259495161 3.7711172 -1103.2366
+112908.2594952113 3.7710779 -1103.2366
+112909.2594952616 3.7709992 -1103.197
+112910.2594953119 3.7710385 -1103.2168
+112911.2594953622 3.7711172 -1103.1576
+112912.2594954125 3.7710385 -1103.2366
+112913.2594954628 3.7711565 -1103.2168
+112914.259495513 3.7710779 -1103.2366
+112915.2594955633 3.7709599 -1103.2366
+112916.2594956136 3.7711172 -1103.2168
+112917.2594956639 3.7709599 -1103.197
+112918.2594957142 3.7709205 -1103.2959
+112919.2594957645 3.7709599 -1103.2761
+112920.2594958148 3.7709205 -1103.1774
+112921.2594958651 3.7708809 -1103.2959
+112922.2594959154 3.7709205 -1103.2562
+112923.2594959657 3.7709205 -1103.2168
+112924.259496016 3.7708023 -1103.2366
+112925.2594960663 3.7709205 -1103.3156
+112926.2594961165 3.7709205 -1103.3156
+112927.2594961668 3.7708809 -1103.1774
+112928.2594962171 3.7709205 -1103.2761
+112929.2594962674 3.7708416 -1103.2366
+112930.2594963177 3.7707629 -1103.2366
+112931.259496368 3.7708416 -1103.2366
+112932.2594964183 3.7706842 -1103.2366
+112933.2594964686 3.7708416 -1103.3353
+112934.2594965189 3.7708023 -1103.2761
+112935.2594965692 3.7706842 -1103.2168
+112936.2594966195 3.7706842 -1103.2366
+112937.2594966698 3.7706056 -1103.2562
+112938.25949672 3.7706842 -1103.2761
+112939.2594967703 3.7706842 -1103.2366
+112940.2594968206 3.7706056 -1103.2562
+112941.2594968709 3.7706449 -1103.2562
+112942.2594969212 3.7706842 -1103.2761
+112943.2594969715 3.7706056 -1103.1378
+112944.2594970218 3.770566 -1103.197
+112945.2594970721 3.770566 -1103.1576
+112946.2594971224 3.7706056 -1103.197
+112947.2594971727 3.7706449 -1103.2959
+112948.259497223 3.7706056 -1103.2366
+112949.2594972732 3.7706449 -1103.2366
+112950.2594973235 3.7704873 -1103.2761
+112951.2594973738 3.770448 -1103.2168
+112952.2594974241 3.7704873 -1103.197
+112953.2594974744 3.770566 -1103.1576
+112954.2594975247 3.7705266 -1103.3156
+112955.259497575 3.7704873 -1103.2366
+112956.2594976253 3.770448 -1103.197
+112957.2594976756 3.7704873 -1103.197
+112958.2594977259 3.7704086 -1103.2761
+112959.2594977762 3.7704873 -1103.2168
+112960.2594978265 3.7704086 -1103.1774
+112961.2594978767 3.7704086 -1103.0984
+112962.259497927 3.7703693 -1103.2761
+112963.2594979773 3.77033 -1103.2562
+112964.2594980276 3.7702906 -1103.2562
+112965.2594980779 3.7702906 -1103.2168
+112966.2594981282 3.7702906 -1103.2959
+112967.2594981785 3.7702906 -1103.2366
+112968.2594982288 3.770251 -1103.1576
+112969.2594982791 3.770251 -1103.2761
+112970.2594983294 3.7702117 -1103.197
+112971.2594983797 3.7702117 -1103.2366
+112972.25949843 3.770251 -1103.2168
+112973.2594984802 3.7701724 -1103.2959
+112974.2594985305 3.7702117 -1103.2959
+112975.2594985808 3.770133 -1103.197
+112976.2594986311 3.7702117 -1103.197
+112977.2594986814 3.7700937 -1103.197
+112978.2594987317 3.770133 -1103.3156
+112979.259498782 3.7700937 -1103.197
+112980.2594988323 3.770015 -1103.2168
+112981.2594988826 3.7701724 -1103.3156
+112982.2594989329 3.7700543 -1103.2562
+112983.2594989832 3.7700543 -1103.2168
+112984.2594990334 3.7700937 -1103.1378
+112985.2594990837 3.7700937 -1103.3353
+112986.259499134 3.7700543 -1103.2366
+112987.2594991843 3.7700937 -1103.2366
+112988.2594992346 3.7700937 -1103.2366
+112989.2594992849 3.770015 -1103.197
+112990.2594993352 3.7700543 -1103.2959
+112991.2594993855 3.7699757 -1103.2761
+112992.2594994358 3.7699361 -1103.2761
+112993.2594994861 3.7698967 -1103.2366
+112994.2594995364 3.7698574 -1103.2562
+112995.2594995867 3.7698967 -1103.2366
+112996.2594996369 3.7698967 -1103.3156
+112997.2594996872 3.7698967 -1103.197
+112998.2594997375 3.7698574 -1103.2366
+112999.2594997878 3.7699361 -1103.1576
+113000.2594998381 3.7698967 -1103.2562
+113001.2594998884 3.7699361 -1103.2366
+113002.2594999387 3.7698574 -1103.3353
+113003.259499989 3.7698574 -1103.2168
+113004.2595000393 3.7697787 -1103.197
+113005.2595000896 3.7697394 -1103.2366
+113006.2595001399 3.7698181 -1103.2959
+113007.2595001902 3.7698181 -1103.2168
+113008.2595002404 3.7697001 -1103.197
+113009.2595002907 3.7697001 -1103.2168
+113010.259500341 3.7697787 -1103.2959
+113011.2595003913 3.7696211 -1103.3156
+113012.2595004416 3.7696607 -1103.197
+113013.2595004919 3.7697394 -1103.2959
+113014.2595005422 3.7695818 -1103.197
+113015.2595005925 3.7696607 -1103.2761
+113016.2595006428 3.7696211 -1103.2761
+113017.2595006931 3.7696211 -1103.2366
+113018.2595007434 3.7695031 -1103.2366
+113019.2595007936 3.7695818 -1103.2562
+113020.2595008439 3.7695818 -1103.2562
+113021.2595008942 3.7695031 -1103.1774
+113022.2595009445 3.7694638 -1103.2761
+113023.2595009948 3.7695425 -1103.2168
+113024.2595010451 3.7695818 -1103.1774
+113025.2595010954 3.7695818 -1103.197
+113026.2595011457 3.7696211 -1103.197
+113027.259501196 3.7695031 -1103.2562
+113028.2595012463 3.7694638 -1103.2366
+113029.2595012966 3.7694244 -1103.2366
+113030.2595013469 3.7695031 -1103.2168
+113031.2595013971 3.7694244 -1103.2562
+113032.2595014474 3.7693455 -1103.197
+113033.2595014977 3.7693851 -1103.1378
+113034.259501548 3.7693851 -1103.2168
+113035.2595015983 3.7694244 -1103.197
+113036.2595016486 3.7694638 -1103.2959
+113037.2595016989 3.7692275 -1103.2761
+113038.2595017492 3.7693062 -1103.2562
+113039.2595017995 3.7693455 -1103.197
+113040.2595018498 3.7692668 -1103.197
+113041.2595019001 3.7693851 -1103.2959
+113042.2595019504 3.7692668 -1103.197
+113043.2595020006 3.7691882 -1103.2761
+113044.2595020509 3.7692275 -1103.3156
+113045.2595021012 3.7693062 -1103.2366
+113046.2595021515 3.7692668 -1103.2562
+113047.2595022018 3.7692668 -1103.197
+113048.2595022521 3.7692275 -1103.1576
+113049.2595023024 3.7691488 -1103.1378
+113050.2595023527 3.7690701 -1103.2366
+113051.259502403 3.7691882 -1103.197
+113052.2595024533 3.7691882 -1103.2562
+113053.2595025036 3.7691882 -1103.2168
+113054.2595025538 3.7690701 -1103.2562
+113055.2595026041 3.7690701 -1103.197
+113056.2595026544 3.7691882 -1103.2168
+113057.2595027047 3.7691095 -1103.2366
+113058.259502755 3.7690701 -1103.2761
+113059.2595028053 3.7690701 -1103.3156
+113060.2595028556 3.7690306 -1103.2761
+113061.2595029059 3.7689126 -1103.1182
+113062.2595029562 3.7689912 -1103.1774
+113063.2595030065 3.7689912 -1103.2168
+113064.2595030568 3.7690306 -1103.2366
+113065.2595031071 3.7688732 -1103.197
+113066.2595031573 3.7689519 -1103.2366
+113067.2595032076 3.7688732 -1103.1774
+113068.2595032579 3.7689126 -1103.1774
+113069.2595033082 3.7689519 -1103.197
+113070.2595033585 3.7689126 -1103.197
+113071.2595034088 3.7689912 -1103.3353
+113072.2595034591 3.7688732 -1103.2562
+113073.2595035094 3.7688732 -1103.197
+113074.2595035597 3.7687945 -1103.2562
+113075.25950361 3.7689126 -1103.2761
+113076.2595036603 3.7688339 -1103.1576
+113077.2595037105 3.7689126 -1103.2168
+113078.2595037608 3.7687945 -1103.2562
+113079.2595038111 3.7687552 -1103.2959
+113080.2595038614 3.7687945 -1103.1774
+113081.2595039117 3.7688339 -1103.197
+113082.259503962 3.7687552 -1103.0984
+113083.2595040123 3.7687552 -1103.2366
+113084.2595040626 3.7687156 -1103.197
+113085.2595041129 3.7686763 -1103.2562
+113086.2595041632 3.7687156 -1103.2168
+113087.2595042135 3.7687552 -1103.2959
+113088.2595042638 3.7687156 -1103.2168
+113089.259504314 3.7685583 -1103.1774
+113090.2595043643 3.7685976 -1103.2959
+113091.2595044146 3.7685976 -1103.2562
+113092.2595044649 3.7686369 -1103.2562
+113093.2595045152 3.7685583 -1103.2562
+113094.2595045655 3.7685583 -1103.2562
+113095.2595046158 3.7685583 -1103.2366
+113096.2595046661 3.7686369 -1103.2761
+113097.2595047164 3.7686369 -1103.1576
+113098.2595047667 3.7683613 -1103.1774
+113099.259504817 3.7685583 -1103.1576
+113100.2595048673 3.7685189 -1103.1774
+113101.2595049175 3.7684796 -1103.2959
+113102.2595049678 3.7685189 -1103.3156
+113103.2595050181 3.7684007 -1103.2366
+113104.2595050684 3.7684402 -1103.1774
+113105.2595051187 3.7684402 -1103.2168
+113106.259505169 3.7685189 -1103.3156
+113107.2595052193 3.7684402 -1103.2959
+113108.2595052696 3.7683613 -1103.2168
+113109.2595053199 3.7684007 -1103.2761
+113110.2595053702 3.7683613 -1103.2168
+113111.2595054205 3.7683613 -1103.2562
+113112.2595054707 3.7683613 -1103.3156
+113113.259505521 3.7683613 -1103.2959
+113114.2595055713 3.768322 -1103.2761
+113115.2595056216 3.7684402 -1103.2562
+113116.2595056719 3.7682827 -1103.2366
+113117.2595057222 3.7682433 -1103.2168
+113118.2595057725 3.768322 -1103.1774
+113119.2595058228 3.768322 -1103.2959
+113120.2595058731 3.768322 -1103.2366
+113121.2595059234 3.7682433 -1103.2168
+113122.2595059737 3.768204 -1103.197
+113123.259506024 3.7681646 -1103.2959
+113124.2595060742 3.7681646 -1103.2562
+113125.2595061245 3.7681646 -1103.2761
+113126.2595061748 3.7681253 -1103.197
+113127.2595062251 3.7681253 -1103.2562
+113128.2595062754 3.7681646 -1103.2761
+113129.2595063257 3.768204 -1103.197
+113130.259506376 3.7681253 -1103.1576
+113131.2595064263 3.7680857 -1103.1182
+113132.2595064766 3.7680464 -1103.2761
+113133.2595065269 3.7680857 -1103.1576
+113134.2595065772 3.7681253 -1103.2366
+113135.2595066275 3.768007 -1103.3353
+113136.2595066777 3.7681253 -1103.2366
+113137.259506728 3.7680464 -1103.2366
+113138.2595067783 3.7680857 -1103.3156
+113139.2595068286 3.7679284 -1103.2168
+113140.2595068789 3.768007 -1103.2168
+113141.2595069292 3.7679677 -1103.2168
+113142.2595069795 3.7679677 -1103.3156
+113143.2595070298 3.7679677 -1103.2562
+113144.2595070801 3.7679284 -1103.2562
+113145.2595071304 3.767889 -1103.1576
+113146.2595071807 3.7678497 -1103.2562
+113147.2595072309 3.7678497 -1103.2761
+113148.2595072812 3.767889 -1103.2168
+113149.2595073315 3.767889 -1103.2168
+113150.2595073818 3.7676921 -1103.2168
+113151.2595074321 3.7678497 -1103.3156
+113152.2595074824 3.7678497 -1103.2168
+113153.2595075327 3.7678497 -1103.1774
+113154.259507583 3.7678101 -1103.2562
+113155.2595076333 3.7677708 -1103.2761
+113156.2595076836 3.7678101 -1103.2761
+113157.2595077339 3.7678497 -1103.1576
+113158.2595077842 3.7677708 -1103.2562
+113159.2595078344 3.7677314 -1103.1378
+113160.2595078847 3.7676134 -1103.2366
+113161.259507935 3.7677314 -1103.197
+113162.2595079853 3.7677314 -1103.2366
+113163.2595080356 3.7675741 -1103.1774
+113164.2595080859 3.7676921 -1103.2366
+113165.2595081362 3.7676921 -1103.2761
+113166.2595081865 3.7676134 -1103.2168
+113167.2595082368 3.7675741 -1103.2168
+113168.2595082871 3.7675347 -1103.2366
+113169.2595083374 3.7676528 -1103.1774
+113170.2595083877 3.7676134 -1103.3156
+113171.2595084379 3.7675347 -1103.2366
+113172.2595084882 3.7675347 -1103.197
+113173.2595085385 3.7674952 -1103.2366
+113174.2595085888 3.7674165 -1103.2761
+113175.2595086391 3.7674952 -1103.2562
+113176.2595086894 3.7674558 -1103.2366
+113177.2595087397 3.7675741 -1103.2959
+113178.25950879 3.7674165 -1103.1576
+113179.2595088403 3.7673378 -1103.2168
+113180.2595088906 3.7673378 -1103.3353
+113181.2595089409 3.7675347 -1103.2366
+113182.2595089911 3.7673378 -1103.2168
+113183.2595090414 3.7673378 -1103.2761
+113184.2595090917 3.7673771 -1103.2959
+113185.259509142 3.7673378 -1103.2168
+113186.2595091923 3.7673771 -1103.2168
+113187.2595092426 3.7672591 -1103.2761
+113188.2595092929 3.7673771 -1103.2562
+113189.2595093432 3.7673378 -1103.3353
+113190.2595093935 3.7672198 -1103.2562
+113191.2595094438 3.7672198 -1103.2562
+113192.2595094941 3.7672985 -1103.2562
+113193.2595095444 3.7671409 -1103.2959
+113194.2595095946 3.7672985 -1103.2366
+113195.2595096449 3.7672591 -1103.2562
+113196.2595096952 3.7672591 -1103.2562
+113197.2595097455 3.7671802 -1103.2562
+113198.2595097958 3.7671802 -1103.2168
+113199.2595098461 3.7671409 -1103.3156
+113200.2595098964 3.7671409 -1103.2562
+113201.2595099467 3.7672198 -1103.2168
+113202.259509997 3.7671409 -1103.2168
+113203.2595100473 3.7670622 -1103.1378
+113204.2595100976 3.7671409 -1103.2366
+113205.2595101479 3.7671015 -1103.2562
+113206.2595101981 3.7670622 -1103.2959
+113207.2595102484 3.7670622 -1103.1576
+113208.2595102987 3.7670622 -1103.197
+113209.259510349 3.7670228 -1103.2562
+113210.2595103993 3.7670622 -1103.197
+113211.2595104496 3.7670228 -1103.1774
+113212.2595104999 3.7669048 -1103.2366
+113213.2595105502 3.7669442 -1103.3156
+113214.2595106005 3.7670228 -1103.2959
+113215.2595106508 3.7669835 -1103.2562
+113216.2595107011 3.7669442 -1103.2168
+113217.2595107513 3.7670622 -1103.2168
+113218.2595108016 3.7669442 -1103.2168
+113219.2595108519 3.7668653 -1103.2366
+113220.2595109022 3.7669442 -1103.2761
+113221.2595109525 3.7668653 -1103.2168
+113222.2595110028 3.7669048 -1103.2761
+113223.2595110531 3.7668259 -1103.2168
+113224.2595111034 3.7667472 -1103.2168
+113225.2595111537 3.7667866 -1103.1774
+113226.259511204 3.7668259 -1103.1774
+113227.2595112543 3.7667079 -1103.2366
+113228.2595113046 3.7667866 -1103.1378
+113229.2595113548 3.7668259 -1103.2562
+113230.2595114051 3.7667472 -1103.1378
+113231.2595114554 3.7667472 -1103.2366
+113232.2595115057 3.7667079 -1103.197
+113233.259511556 3.7665899 -1103.3156
+113234.2595116063 3.7667079 -1103.2366
+113235.2595116566 3.7666292 -1103.1576
+113236.2595117069 3.7667472 -1103.2366
+113237.2595117572 3.7666686 -1103.2366
+113238.2595118075 3.7666686 -1103.2168
+113239.2595118578 3.7667472 -1103.2366
+113240.2595119081 3.7665899 -1103.2366
+113241.2595119583 3.7665503 -1103.2959
+113242.2595120086 3.766511 -1103.2562
+113243.2595120589 3.7665899 -1103.2168
+113244.2595121092 3.766511 -1103.2168
+113245.2595121595 3.766511 -1103.2562
+113246.2595122098 3.7666292 -1103.1576
+113247.2595122601 3.7665899 -1103.2761
+113248.2595123104 3.7663929 -1103.2168
+113249.2595123607 3.7664716 -1103.2761
+113250.259512411 3.7663536 -1103.2168
+113251.2595124613 3.7663929 -1103.2562
+113252.2595125115 3.7664716 -1103.1576
+113253.2595125618 3.766511 -1103.2168
+113254.2595126121 3.7664716 -1103.2366
+113255.2595126624 3.7664323 -1103.2366
+113256.2595127127 3.7664323 -1103.2366
+113257.259512763 3.7663536 -1103.2761
+113258.2595128133 3.7664323 -1103.1576
+113259.2595128636 3.7663143 -1103.2168
+113260.2595129139 3.7663929 -1103.2562
+113261.2595129642 3.7663536 -1103.1576
+113262.2595130145 3.7663929 -1103.197
+113263.2595130648 3.7662749 -1103.2366
+113264.259513115 3.7663536 -1103.2366
+113265.2595131653 3.7663536 -1103.2761
+113266.2595132156 3.7663143 -1103.2366
+113267.2595132659 3.7662749 -1103.1576
+113268.2595133162 3.7662354 -1103.2761
+113269.2595133665 3.7662354 -1103.2761
+113270.2595134168 3.766196 -1103.2168
+113271.2595134671 3.7662354 -1103.2761
+113272.2595135174 3.7661173 -1103.2959
+113273.2595135677 3.7662354 -1103.2366
+113274.259513618 3.766196 -1103.1774
+113275.2595136683 3.766196 -1103.2562
+113276.2595137185 3.7661567 -1103.3156
+113277.2595137688 3.7660387 -1103.2366
+113278.2595138191 3.7661173 -1103.1378
+113279.2595138694 3.7661173 -1103.2959
+113280.2595139197 3.7661173 -1103.2562
+113281.25951397 3.766196 -1103.2959
+113282.2595140203 3.7661173 -1103.1774
+113283.2595140706 3.7660387 -1103.197
+113284.2595141209 3.7659993 -1103.2761
+113285.2595141712 3.7659993 -1103.1576
+113286.2595142215 3.766078 -1103.2562
+113287.2595142717 3.7658811 -1103.1378
+113288.259514322 3.7659204 -1103.3156
+113289.2595143723 3.7659597 -1103.2366
+113290.2595144226 3.7658811 -1103.2168
+113291.2595144729 3.7659993 -1103.1576
+113292.2595145232 3.7659993 -1103.197
+113293.2595145735 3.7659204 -1103.2366
+113294.2595146238 3.7659204 -1103.2168
+113295.2595146741 3.7659597 -1103.2366
+113296.2595147244 3.7658417 -1103.197
+113297.2595147747 3.7658024 -1103.3156
+113298.259514825 3.7658024 -1103.197
+113299.2595148752 3.7658811 -1103.2761
+113300.2595149255 3.7658024 -1103.197
+113301.2595149758 3.7658417 -1103.197
+113302.2595150261 3.7657237 -1103.197
+113303.2595150764 3.765763 -1103.2959
+113304.2595151267 3.765763 -1103.2562
+113305.259515177 3.7657237 -1103.2959
+113306.2595152273 3.7657237 -1103.3353
+113307.2595152776 3.7656054 -1103.1774
+113308.2595153279 3.765763 -1103.2562
+113309.2595153782 3.7656844 -1103.2761
+113310.2595154285 3.7656448 -1103.2761
+113311.2595154787 3.7656054 -1103.1774
+113312.259515529 3.7656054 -1103.2366
+113313.2595155793 3.7656054 -1103.2761
+113314.2595156296 3.7655661 -1103.2168
+113315.2595156799 3.7656054 -1103.2959
+113316.2595157302 3.7656448 -1103.2761
+113317.2595157805 3.7655661 -1103.197
+113318.2595158308 3.7656054 -1103.2761
+113319.2595158811 3.7654088 -1103.197
+113320.2595159314 3.7656054 -1103.2168
+113321.2595159817 3.7656054 -1103.2562
+113322.2595160319 3.7655661 -1103.2366
+113323.2595160822 3.7655268 -1103.2562
+113324.2595161325 3.7655268 -1103.2761
+113325.2595161828 3.7654874 -1103.2168
+113326.2595162331 3.7654874 -1103.1774
+113327.2595162834 3.7653694 -1103.2562
+113328.2595163337 3.7654874 -1103.1774
+113329.259516384 3.7654481 -1103.3156
+113330.2595164343 3.7653298 -1103.1378
+113331.2595164846 3.7654481 -1103.197
+113332.2595165349 3.7653298 -1103.2761
+113333.2595165852 3.7653298 -1103.2366
+113334.2595166354 3.7653694 -1103.2562
+113335.2595166857 3.7654481 -1103.2168
+113336.259516736 3.7653694 -1103.1182
+113337.2595167863 3.7652512 -1103.1774
+113338.2595168366 3.7651725 -1103.2366
+113339.2595168869 3.7652118 -1103.2366
+113340.2595169372 3.7652118 -1103.3551
+113341.2595169875 3.7652512 -1103.1576
+113342.2595170378 3.7653694 -1103.3156
+113343.2595170881 3.7652118 -1103.197
+113344.2595171384 3.7651331 -1103.2959
+113345.2595171887 3.7652512 -1103.2562
+113346.2595172389 3.7652118 -1103.3156
+113347.2595172892 3.7652118 -1103.1774
+113348.2595173395 3.7651725 -1103.2761
+113349.2595173898 3.7650545 -1103.1774
+113350.2595174401 3.7651331 -1103.1576
+113351.2595174904 3.7650545 -1103.1774
+113352.2595175407 3.7651331 -1103.2168
+113353.259517591 3.7650545 -1103.2366
+113354.2595176413 3.7650938 -1103.2168
+113355.2595176916 3.7651331 -1103.2366
+113356.2595177419 3.7650545 -1103.2366
+113357.2595177921 3.7650545 -1103.1774
+113358.2595178424 3.7649362 -1103.197
+113359.2595178927 3.7649362 -1103.1378
+113360.259517943 3.7648969 -1103.197
+113361.2595179933 3.7650149 -1103.2562
+113362.2595180436 3.7649362 -1103.2562
+113363.2595180939 3.7649362 -1103.2562
+113364.2595181442 3.7650149 -1103.2959
+113365.2595181945 3.7648969 -1103.2959
+113366.2595182448 3.7648969 -1103.2168
+113367.2595182951 3.7648182 -1103.2959
+113368.2595183454 3.7648575 -1103.2761
+113369.2595183956 3.7648969 -1103.3353
+113370.2595184459 3.7648182 -1103.2366
+113371.2595184962 3.7648575 -1103.2366
+113372.2595185465 3.7648575 -1103.1774
+113373.2595185968 3.7647789 -1103.2562
+113374.2595186471 3.7647789 -1103.2366
+113375.2595186974 3.7646999 -1103.1774
+113376.2595187477 3.7646606 -1103.2761
+113377.259518798 3.7648182 -1103.2562
+113378.2595188483 3.7646999 -1103.197
+113379.2595188986 3.7648969 -1103.1774
+113380.2595189488 3.7646606 -1103.1774
+113381.2595189991 3.7646606 -1103.2761
+113382.2595190494 3.7646213 -1103.2562
+113383.2595190997 3.7647789 -1103.3353
+113384.25951915 3.7646999 -1103.1774
+113385.2595192003 3.7645819 -1103.197
+113386.2595192506 3.7646606 -1103.2168
+113387.2595193009 3.7646213 -1103.2366
+113388.2595193512 3.7645426 -1103.2959
+113389.2595194015 3.7645819 -1103.2761
+113390.2595194518 3.7646213 -1103.2562
+113391.2595195021 3.7645426 -1103.2761
+113392.2595195523 3.7646606 -1103.2366
+113393.2595196026 3.7644639 -1103.2366
+113394.2595196529 3.7645819 -1103.2562
+113395.2595197032 3.7645819 -1103.3551
+113396.2595197535 3.7645426 -1103.197
+113397.2595198038 3.764385 -1103.2562
+113398.2595198541 3.7645032 -1103.2366
+113399.2595199044 3.7644639 -1103.2366
+113400.2595199547 3.7645819 -1103.1774
+113401.259520005 3.7643456 -1103.2562
+113402.2595200553 3.764385 -1103.3156
+113403.2595201056 3.764385 -1103.2562
+113404.2595201558 3.7645032 -1103.2168
+113405.2595202061 3.7644246 -1103.197
+113406.2595202564 3.7643456 -1103.2761
+113407.2595203067 3.764385 -1103.1774
+113408.259520357 3.764385 -1103.2761
+113409.2595204073 3.764385 -1103.3353
+113410.2595204576 3.7643456 -1103.2562
+113411.2595205079 3.7643456 -1103.2761
+113412.2595205582 3.7642276 -1103.1378
+113413.2595206085 3.7642276 -1103.197
+113414.2595206588 3.7642276 -1103.2562
+113415.259520709 3.764267 -1103.2761
+113416.2595207593 3.7641883 -1103.2562
+113417.2595208096 3.7642276 -1103.197
+113418.2595208599 3.7641094 -1103.2562
+113419.2595209102 3.764149 -1103.3156
+113420.2595209605 3.7642276 -1103.2761
+113421.2595210108 3.764149 -1103.2168
+113422.2595210611 3.7642276 -1103.2366
+113423.2595211114 3.7641883 -1103.2366
+113424.2595211617 3.764149 -1103.197
+113425.259521212 3.7641883 -1103.1774
+113426.2595212623 3.76407 -1103.1576
+113427.2595213125 3.7641094 -1103.1576
+113428.2595213628 3.7641094 -1103.2959
+113429.2595214131 3.7640307 -1103.197
+113430.2595214634 3.7640307 -1103.2168
+113431.2595215137 3.7639914 -1103.197
+113432.259521564 3.763952 -1103.2366
+113433.2595216143 3.7639914 -1103.2168
+113434.2595216646 3.7639914 -1103.2761
+113435.2595217149 3.763952 -1103.2168
+113436.2595217652 3.7639127 -1103.2562
+113437.2595218155 3.7639914 -1103.3156
+113438.2595218658 3.7637944 -1103.2366
+113439.259521916 3.763952 -1103.1576
+113440.2595219663 3.7638733 -1103.2562
+113441.2595220166 3.7639914 -1103.2959
+113442.2595220669 3.763952 -1103.2366
+113443.2595221172 3.763952 -1103.2959
+113444.2595221675 3.7639914 -1103.2562
+113445.2595222178 3.7638733 -1103.2761
+113446.2595222681 3.7637944 -1103.197
+113447.2595223184 3.7639127 -1103.2168
+113448.2595223687 3.7637551 -1103.2562
+113449.259522419 3.7637944 -1103.2761
+113450.2595224692 3.7637944 -1103.197
+113451.2595225195 3.7637944 -1103.197
+113452.2595225698 3.7636764 -1103.1774
+113453.2595226201 3.7637157 -1103.2761
+113454.2595226704 3.7636764 -1103.2366
+113455.2595227207 3.7636764 -1103.3353
+113456.259522771 3.7636371 -1103.2562
+113457.2595228213 3.7636764 -1103.2366
+113458.2595228716 3.7636764 -1103.3156
+113459.2595229219 3.7636764 -1103.197
+113460.2595229722 3.7635584 -1103.2562
+113461.2595230225 3.7636371 -1103.2366
+113462.2595230727 3.7635584 -1103.3156
+113463.259523123 3.7635584 -1103.1576
+113464.2595231733 3.7636371 -1103.2761
+113465.2595232236 3.7635584 -1103.1774
+113466.2595232739 3.7635977 -1103.197
+113467.2595233242 3.7634795 -1103.197
+113468.2595233745 3.7634795 -1103.2562
+113469.2595234248 3.7635977 -1103.2562
+113470.2595234751 3.7634401 -1103.2168
+113471.2595235254 3.7634795 -1103.2366
+113472.2595235757 3.7635584 -1103.2366
+113473.259523626 3.7634795 -1103.2562
+113474.2595236762 3.7634795 -1103.3156
+113475.2595237265 3.7634401 -1103.2366
+113476.2595237768 3.7632828 -1103.2562
+113477.2595238271 3.7634401 -1103.2366
+113478.2595238774 3.7634008 -1103.2761
+113479.2595239277 3.7634401 -1103.3156
+113480.259523978 3.7632041 -1103.197
+113481.2595240283 3.7633221 -1103.1774
+113482.2595240786 3.7632434 -1103.2562
+113483.2595241289 3.7632434 -1103.1774
+113484.2595241792 3.7633221 -1103.2168
+113485.2595242294 3.7634008 -1103.3156
+113486.2595242797 3.7632434 -1103.2168
+113487.25952433 3.7632828 -1103.2562
+113488.2595243803 3.7631645 -1103.2366
+113489.2595244306 3.7632828 -1103.2366
+113490.2595244809 3.7632041 -1103.2366
+113491.2595245312 3.7631645 -1103.2761
+113492.2595245815 3.7632434 -1103.1576
+113493.2595246318 3.7630858 -1103.197
+113494.2595246821 3.7631252 -1103.197
+113495.2595247324 3.7630858 -1103.0984
+113496.2595247827 3.7631252 -1103.2562
+113497.2595248329 3.7631645 -1103.2562
+113498.2595248832 3.7632041 -1103.2562
+113499.2595249335 3.7632041 -1103.2562
+113500.2595249838 3.7631252 -1103.197
+113501.2595250341 3.7630858 -1103.2168
+113502.2595250844 3.7630465 -1103.2366
+113503.2595251347 3.7631645 -1103.197
+113504.259525185 3.7630465 -1103.2562
+113505.2595252353 3.7630465 -1103.3353
+113506.2595252856 3.7630465 -1103.2761
+113507.2595253359 3.7629678 -1103.2168
+113508.2595253862 3.7630072 -1103.2562
+113509.2595254364 3.7629285 -1103.1378
+113510.2595254867 3.7629678 -1103.2562
+113511.259525537 3.7629285 -1103.1378
+113512.2595255873 3.7628891 -1103.2562
+113513.2595256376 3.7629285 -1103.2761
+113514.2595256879 3.7629285 -1103.197
+113515.2595257382 3.7628891 -1103.2761
+113516.2595257885 3.7628891 -1103.2562
+113517.2595258388 3.7629285 -1103.2366
+113518.2595258891 3.7628496 -1103.1774
+113519.2595259394 3.7628496 -1103.2562
+113520.2595259896 3.7628496 -1103.2562
+113521.2595260399 3.7628102 -1103.197
+113522.2595260902 3.7628891 -1103.2366
+113523.2595261405 3.7628496 -1103.2366
+113524.2595261908 3.7627709 -1103.1774
+113525.2595262411 3.7627316 -1103.197
+113526.2595262914 3.7627316 -1103.2562
+113527.2595263417 3.7626922 -1103.2366
+113528.259526392 3.7627316 -1103.2562
+113529.2595264423 3.7627316 -1103.197
+113530.2595264926 3.7626922 -1103.2761
+113531.2595265429 3.7627316 -1103.2366
+113532.2595265931 3.7626922 -1103.1774
+113533.2595266434 3.7626922 -1103.2761
+113534.2595266937 3.7626529 -1103.2761
+113535.259526744 3.7625742 -1103.2761
+113536.2595267943 3.7625742 -1103.197
+113537.2595268446 3.7626529 -1103.1576
+113538.2595268949 3.7626529 -1103.2959
+113539.2595269452 3.7625346 -1103.197
+113540.2595269955 3.7625346 -1103.2959
+113541.2595270458 3.7625346 -1103.3945
+113542.2595270961 3.7625742 -1103.3945
+113543.2595271464 3.7625346 -1103.197
+113544.2595271966 3.7625346 -1103.2761
+113545.2595272469 3.7624559 -1103.2168
+113546.2595272972 3.7625346 -1103.2959
+113547.2595273475 3.7624166 -1103.2562
+113548.2595273978 3.7624953 -1103.2366
+113549.2595274481 3.7624559 -1103.197
+113550.2595274984 3.7623773 -1103.2562
+113551.2595275487 3.7624559 -1103.2761
+113552.259527599 3.7624559 -1103.2761
+113553.2595276493 3.7623379 -1103.197
+113554.2595276996 3.7623773 -1103.1774
+113555.2595277498 3.7623773 -1103.1774
+113556.2595278001 3.7623379 -1103.2168
+113557.2595278504 3.7623379 -1103.2761
+113558.2595279007 3.7622986 -1103.1774
+113559.259527951 3.7622986 -1103.2366
+113560.2595280013 3.7622986 -1103.2761
+113561.2595280516 3.762259 -1103.2168
+113562.2595281019 3.7623379 -1103.197
+113563.2595281522 3.7622986 -1103.3156
+113564.2595282025 3.7622986 -1103.2562
+113565.2595282528 3.762259 -1103.3156
+113566.2595283031 3.7622986 -1103.2168
+113567.2595283533 3.762259 -1103.197
+113568.2595284036 3.7622197 -1103.3156
+113569.2595284539 3.7622197 -1103.2168
+113570.2595285042 3.7621803 -1103.2168
+113571.2595285545 3.7621017 -1103.2366
+113572.2595286048 3.7619836 -1103.2168
+113573.2595286551 3.7620623 -1103.197
+113574.2595287054 3.7620623 -1103.1774
+113575.2595287557 3.7620623 -1103.1378
+113576.259528806 3.7621017 -1103.2366
+113577.2595288563 3.7620623 -1103.2959
+113578.2595289066 3.7620623 -1103.3156
+113579.2595289568 3.7621017 -1103.1378
+113580.2595290071 3.762023 -1103.2562
+113581.2595290574 3.7619047 -1103.2761
+113582.2595291077 3.762023 -1103.1774
+113583.259529158 3.762023 -1103.2366
+113584.2595292083 3.762023 -1103.2168
+113585.2595292586 3.7619836 -1103.1774
+113586.2595293089 3.7619441 -1103.2562
+113587.2595293592 3.7619441 -1103.1774
+113588.2595294095 3.7618654 -1103.2366
+113589.2595294598 3.762023 -1103.1774
+113590.25952951 3.761826 -1103.2959
+113591.2595295603 3.7617867 -1103.2761
+113592.2595296106 3.7619047 -1103.2761
+113593.2595296609 3.7619441 -1103.2366
+113594.2595297112 3.761826 -1103.3156
+113595.2595297615 3.7618654 -1103.2761
+113596.2595298118 3.7617474 -1103.2959
+113597.2595298621 3.761826 -1103.2959
+113598.2595299124 3.7619047 -1103.197
+113599.2595299627 3.761826 -1103.2959
+113600.259530013 3.7617867 -1103.2959
+113601.2595300633 3.7617474 -1103.2959
+113602.2595301135 3.7617474 -1103.1378
+113603.2595301638 3.7616687 -1103.2562
+113604.2595302141 3.7616687 -1103.197
+113605.2595302644 3.761708 -1103.2168
+113606.2595303147 3.761708 -1103.2168
+113607.259530365 3.761708 -1103.1774
+113608.2595304153 3.761708 -1103.2562
+113609.2595304656 3.761708 -1103.2761
+113610.2595305159 3.7616291 -1103.2366
+113611.2595305662 3.7615898 -1103.2562
+113612.2595306165 3.7616687 -1103.2168
+113613.2595306668 3.7615898 -1103.3353
+113614.259530717 3.7615898 -1103.3551
+113615.2595307673 3.7615111 -1103.2761
+113616.2595308176 3.7615504 -1103.197
+113617.2595308679 3.7615111 -1103.2562
+113618.2595309182 3.7616687 -1103.197
+113619.2595309685 3.7615504 -1103.2366
+113620.2595310188 3.7614717 -1103.2168
+113621.2595310691 3.7615504 -1103.197
+113622.2595311194 3.7615111 -1103.2761
+113623.2595311697 3.7614324 -1103.1774
+113624.25953122 3.7614717 -1103.2761
+113625.2595312702 3.7614324 -1103.2168
+113626.2595313205 3.7614324 -1103.3156
+113627.2595313708 3.7613931 -1103.2366
+113628.2595314211 3.7613142 -1103.2959
+113629.2595314714 3.7613931 -1103.2168
+113630.2595315217 3.7613537 -1103.2366
+113631.259531572 3.7613537 -1103.2366
+113632.2595316223 3.7613931 -1103.3353
+113633.2595316726 3.7613142 -1103.2959
+113634.2595317229 3.7612748 -1103.2562
+113635.2595317732 3.7613142 -1103.2366
+113636.2595318235 3.7613931 -1103.2959
+113637.2595318737 3.7612748 -1103.1378
+113638.259531924 3.7613142 -1103.2366
+113639.2595319743 3.7613537 -1103.3551
+113640.2595320246 3.7611961 -1103.2562
+113641.2595320749 3.7612355 -1103.2562
+113642.2595321252 3.7611961 -1103.1378
+113643.2595321755 3.7611961 -1103.2959
+113644.2595322258 3.7611961 -1103.197
+113645.2595322761 3.7612355 -1103.2168
+113646.2595323264 3.7611568 -1103.2562
+113647.2595323767 3.7611175 -1103.2168
+113648.259532427 3.7610781 -1103.2562
+113649.2595324772 3.7611568 -1103.2562
+113650.2595325275 3.7611568 -1103.2959
+113651.2595325778 3.7610781 -1103.2562
+113652.2595326281 3.7609599 -1103.2562
+113653.2595326784 3.7610781 -1103.197
+113654.2595327287 3.7609992 -1103.2168
+113655.259532779 3.7609992 -1103.197
+113656.2595328293 3.7609599 -1103.2959
+113657.2595328796 3.7609599 -1103.197
+113658.2595329299 3.7610388 -1103.2366
+113659.2595329802 3.7609992 -1103.2761
+113660.2595330304 3.7609599 -1103.2168
+113661.2595330807 3.7609599 -1103.1774
+113662.259533131 3.7609992 -1103.1378
+113663.2595331813 3.7609205 -1103.2959
+113664.2595332316 3.7609992 -1103.3156
+113665.2595332819 3.7608812 -1103.2366
+113666.2595333322 3.7608418 -1103.0984
+113667.2595333825 3.7608418 -1103.1774
+113668.2595334328 3.7608418 -1103.1774
+113669.2595334831 3.7608812 -1103.2761
+113670.2595335334 3.7608418 -1103.3156
+113671.2595335837 3.7608025 -1103.2562
+113672.2595336339 3.7608025 -1103.2761
+113673.2595336842 3.7608025 -1103.3551
+113674.2595337345 3.7607632 -1103.2562
+113675.2595337848 3.7606449 -1103.2761
+113676.2595338351 3.7608418 -1103.2562
+113677.2595338854 3.7606843 -1103.2562
+113678.2595339357 3.7607238 -1103.1774
+113679.259533986 3.7607238 -1103.2168
+113680.2595340363 3.7605269 -1103.2366
+113681.2595340866 3.7607238 -1103.2168
+113682.2595341369 3.7606449 -1103.2366
+113683.2595341871 3.7606449 -1103.2366
+113684.2595342374 3.7606449 -1103.2562
+113685.2595342877 3.7606056 -1103.2168
+113686.259534338 3.7606449 -1103.1774
+113687.2595343883 3.7605269 -1103.2366
+113688.2595344386 3.7606449 -1103.197
+113689.2595344889 3.7606449 -1103.2761
+113690.2595345392 3.7606843 -1103.2168
+113691.2595345895 3.7605662 -1103.2959
+113692.2595346398 3.7605662 -1103.2366
+113693.2595346901 3.7605269 -1103.197
+113694.2595347404 3.7604086 -1103.2562
+113695.2595347906 3.7604876 -1103.2168
+113696.2595348409 3.7605269 -1103.1182
+113697.2595348912 3.7604482 -1103.2168
+113698.2595349415 3.7605269 -1103.2366
+113699.2595349918 3.7604086 -1103.1774
+113700.2595350421 3.7604876 -1103.3353
+113701.2595350924 3.7604482 -1103.2168
+113702.2595351427 3.76033 -1103.2168
+113703.259535193 3.7604482 -1103.1774
+113704.2595352433 3.7603693 -1103.1774
+113705.2595352936 3.7603693 -1103.2562
+113706.2595353439 3.7603693 -1103.2761
+113707.2595353941 3.76033 -1103.1774
+113708.2595354444 3.76033 -1103.1774
+113709.2595354947 3.7602513 -1103.197
+113710.259535545 3.7602513 -1103.2168
+113711.2595355953 3.76033 -1103.1378
+113712.2595356456 3.7602906 -1103.2366
+113713.2595356959 3.7602119 -1103.2168
+113714.2595357462 3.7602119 -1103.2168
+113715.2595357965 3.7602119 -1103.2168
+113716.2595358468 3.7602119 -1103.2761
+113717.2595358971 3.76033 -1103.2959
+113718.2595359473 3.7602119 -1103.2562
+113719.2595359976 3.7600937 -1103.2761
+113720.2595360479 3.7602513 -1103.1774
+113721.2595360982 3.7601726 -1103.197
+113722.2595361485 3.7601333 -1103.2562
+113723.2595361988 3.7600937 -1103.1378
+113724.2595362491 3.7600543 -1103.3156
+113725.2595362994 3.7600543 -1103.1576
+113726.2595363497 3.7600937 -1103.2761
+113727.2595364 3.7600543 -1103.2168
+113728.2595364503 3.7601333 -1103.0984
+113729.2595365006 3.760015 -1103.197
+113730.2595365508 3.760015 -1103.197
+113731.2595366011 3.760015 -1103.2761
+113732.2595366514 3.7600543 -1103.197
+113733.2595367017 3.760015 -1103.1774
+113734.259536752 3.7600937 -1103.2168
+113735.2595368023 3.7598577 -1103.1774
+113736.2595368526 3.7598577 -1103.2562
+113737.2595369029 3.7598577 -1103.2168
+113738.2595369532 3.7599363 -1103.1378
+113739.2595370035 3.7599363 -1103.2959
+113740.2595370538 3.7598577 -1103.3551
+113741.2595371041 3.759897 -1103.2168
+113742.2595371543 3.7598577 -1103.2168
+113743.2595372046 3.7597787 -1103.2562
+113744.2595372549 3.759897 -1103.2761
+113745.2595373052 3.7599363 -1103.2366
+113746.2595373555 3.7597787 -1103.2366
+113747.2595374058 3.7597394 -1103.197
+113748.2595374561 3.7598183 -1103.2168
+113749.2595375064 3.7597787 -1103.2366
+113750.2595375567 3.7598183 -1103.2562
+113751.259537607 3.7597001 -1103.2562
+113752.2595376573 3.7597394 -1103.2761
+113753.2595377075 3.7597787 -1103.3353
+113754.2595377578 3.7597394 -1103.2562
+113755.2595378081 3.7597001 -1103.2562
+113756.2595378584 3.7596214 -1103.2366
+113757.2595379087 3.7597001 -1103.2366
+113758.259537959 3.7597001 -1103.1774
+113759.2595380093 3.7596214 -1103.2168
+113760.2595380596 3.759582 -1103.2959
+113761.2595381099 3.7596607 -1103.2761
+113762.2595381602 3.7595427 -1103.3156
+113763.2595382105 3.759582 -1103.1774
+113764.2595382608 3.7595427 -1103.3353
+113765.259538311 3.7595427 -1103.2366
+113766.2595383613 3.7595427 -1103.197
+113767.2595384116 3.7595427 -1103.197
+113768.2595384619 3.7595034 -1103.197
+113769.2595385122 3.7594638 -1103.3749
+113770.2595385625 3.7595034 -1103.197
+113771.2595386128 3.7595034 -1103.197
+113772.2595386631 3.7595034 -1103.1378
+113773.2595387134 3.7594638 -1103.197
+113774.2595387637 3.7594638 -1103.2168
+113775.259538814 3.7594638 -1103.2959
+113776.2595388643 3.7593458 -1103.2366
+113777.2595389145 3.7594638 -1103.3353
+113778.2595389648 3.7594244 -1103.1774
+113779.2595390151 3.7593064 -1103.2168
+113780.2595390654 3.7593851 -1103.197
+113781.2595391157 3.7592671 -1103.2562
+113782.259539166 3.7593064 -1103.2761
+113783.2595392163 3.7593458 -1103.197
+113784.2595392666 3.7592278 -1103.1774
+113785.2595393169 3.7593458 -1103.2959
+113786.2595393672 3.7592671 -1103.2366
+113787.2595394175 3.7592671 -1103.2562
+113788.2595394677 3.7591884 -1103.1774
+113789.259539518 3.7593458 -1103.2168
+113790.2595395683 3.7591488 -1103.1774
+113791.2595396186 3.7592671 -1103.2562
+113792.2595396689 3.7593064 -1103.3156
+113793.2595397192 3.7592671 -1103.2168
+113794.2595397695 3.7592278 -1103.197
+113795.2595398198 3.7591884 -1103.1576
+113796.2595398701 3.7591488 -1103.2761
+113797.2595399204 3.7591488 -1103.2168
+113798.2595399707 3.7591095 -1103.2761
+113799.259540021 3.7592278 -1103.197
+113800.2595400712 3.7591488 -1103.2168
+113801.2595401215 3.7590308 -1103.2761
+113802.2595401718 3.7590702 -1103.1576
+113803.2595402221 3.7590702 -1103.2959
+113804.2595402724 3.7590308 -1103.2761
+113805.2595403227 3.7590308 -1103.2168
+113806.259540373 3.7589915 -1103.1774
+113807.2595404233 3.7589915 -1103.2761
+113808.2595404736 3.7589128 -1103.2761
+113809.2595405239 3.7590702 -1103.2761
+113810.2595405742 3.7589128 -1103.2761
+113811.2595406245 3.7589128 -1103.2562
+113812.2595406747 3.7589915 -1103.2366
+113813.259540725 3.7588732 -1103.197
+113814.2595407753 3.7588339 -1103.2168
+113815.2595408256 3.7589128 -1103.2168
+113816.2595408759 3.7588339 -1103.2562
+113817.2595409262 3.7588339 -1103.2366
+113818.2595409765 3.7588339 -1103.197
+113819.2595410268 3.7587945 -1103.2366
+113820.2595410771 3.7588339 -1103.2562
+113821.2595411274 3.7587159 -1103.2959
+113822.2595411777 3.7587945 -1103.3551
+113823.2595412279 3.7588339 -1103.2366
+113824.2595412782 3.7587945 -1103.2959
+113825.2595413285 3.7587552 -1103.2761
+113826.2595413788 3.7587159 -1103.2168
+113827.2595414291 3.7587159 -1103.2562
+113828.2595414794 3.7587159 -1103.1774
+113829.2595415297 3.7587159 -1103.2761
+113830.25954158 3.7587159 -1103.2562
+113831.2595416303 3.7587159 -1103.2168
+113832.2595416806 3.7585583 -1103.2168
+113833.2595417309 3.7585979 -1103.197
+113834.2595417812 3.7585583 -1103.1774
+113835.2595418314 3.7585979 -1103.1774
+113836.2595418817 3.7585979 -1103.2562
+113837.259541932 3.7586372 -1103.197
+113838.2595419823 3.7586372 -1103.197
+113839.2595420326 3.7585583 -1103.2366
+113840.2595420829 3.7585583 -1103.2168
+113841.2595421332 3.7584403 -1103.197
+113842.2595421835 3.7585583 -1103.1576
+113843.2595422338 3.7585189 -1103.2168
+113844.2595422841 3.7584009 -1103.2959
+113845.2595423344 3.7584796 -1103.2959
+113846.2595423847 3.7583616 -1103.3156
+113847.2595424349 3.7584796 -1103.197
+113848.2595424852 3.7584403 -1103.2761
+113849.2595425355 3.7584009 -1103.2761
+113850.2595425858 3.7584796 -1103.2562
+113851.2595426361 3.7585189 -1103.2366
+113852.2595426864 3.7582829 -1103.2366
+113853.2595427367 3.7584009 -1103.2562
+113854.259542787 3.7583222 -1103.2168
+113855.2595428373 3.7582829 -1103.3353
+113856.2595428876 3.7584403 -1103.3156
+113857.2595429379 3.7583616 -1103.2562
+113858.2595429881 3.7582433 -1103.197
+113859.2595430384 3.7582829 -1103.2959
+113860.2595430887 3.7582433 -1103.2366
+113861.259543139 3.7583222 -1103.2168
+113862.2595431893 3.7582433 -1103.2366
+113863.2595432396 3.758204 -1103.1576
+113864.2595432899 3.7582433 -1103.2959
+113865.2595433402 3.758204 -1103.2168
+113866.2595433905 3.7581646 -1103.2366
+113867.2595434408 3.7581253 -1103.2366
+113868.2595434911 3.7581646 -1103.197
+113869.2595435414 3.7581253 -1103.2366
+113870.2595435916 3.7581253 -1103.2562
+113871.2595436419 3.7581253 -1103.3353
+113872.2595436922 3.758204 -1103.1774
+113873.2595437425 3.758086 -1103.2562
+113874.2595437928 3.7581253 -1103.1774
+113875.2595438431 3.7581253 -1103.2366
+113876.2595438934 3.7581646 -1103.197
+113877.2595439437 3.7579284 -1103.1774
+113878.259543994 3.7581253 -1103.2562
+113879.2595440443 3.7580073 -1103.1774
+113880.2595440946 3.7580073 -1103.2761
+113881.2595441449 3.7580466 -1103.197
+113882.2595441951 3.7580466 -1103.2562
+113883.2595442454 3.7579679 -1103.2562
+113884.2595442957 3.7580073 -1103.2168
+113885.259544346 3.7579679 -1103.2168
+113886.2595443963 3.7579284 -1103.2959
+113887.2595444466 3.7579284 -1103.2168
+113888.2595444969 3.7579284 -1103.197
+113889.2595445472 3.7578497 -1103.2761
+113890.2595445975 3.7578497 -1103.2562
+113891.2595446478 3.7578497 -1103.2168
+113892.2595446981 3.757889 -1103.1576
+113893.2595447483 3.7579284 -1103.197
+113894.2595447986 3.7578104 -1103.2761
+113895.2595448489 3.7578497 -1103.1774
+113896.2595448992 3.7578104 -1103.3353
+113897.2595449495 3.757771 -1103.2761
+113898.2595449998 3.7576923 -1103.3353
+113899.2595450501 3.7578104 -1103.2168
+113900.2595451004 3.7578104 -1103.2366
+113901.2595451507 3.757771 -1103.1774
+113902.259545201 3.7576923 -1103.2761
+113903.2595452513 3.757653 -1103.197
+113904.2595453016 3.757653 -1103.3353
+113905.2595453518 3.7577317 -1103.2168
+113906.2595454021 3.7576923 -1103.2168
+113907.2595454524 3.7575741 -1103.2761
+113908.2595455027 3.757653 -1103.3749
+113909.259545553 3.7575741 -1103.1774
+113910.2595456033 3.7576923 -1103.2959
+113911.2595456536 3.7576923 -1103.3156
+113912.2595457039 3.7576134 -1103.2562
+113913.2595457542 3.7575347 -1103.3353
+113914.2595458045 3.7575347 -1103.197
+113915.2595458548 3.7574561 -1103.3353
+113916.2595459051 3.7576134 -1103.2168
+113917.2595459553 3.7575347 -1103.2366
+113918.2595460056 3.7575347 -1103.2366
+113919.2595460559 3.7574561 -1103.3156
+113920.2595461062 3.7574954 -1103.2562
+113921.2595461565 3.7574561 -1103.2761
+113922.2595462068 3.7574167 -1103.2959
+113923.2595462571 3.7574167 -1103.2761
+113924.2595463074 3.7572591 -1103.197
+113925.2595463577 3.757338 -1103.1378
+113926.259546408 3.7574954 -1103.2562
+113927.2595464583 3.7574167 -1103.2562
+113928.2595465085 3.757338 -1103.2562
+113929.2595465588 3.7573774 -1103.2959
+113930.2595466091 3.7573774 -1103.3156
+113931.2595466594 3.7572985 -1103.2366
+113932.2595467097 3.7572985 -1103.1774
+113933.25954676 3.7572591 -1103.2366
+113934.2595468103 3.7572591 -1103.2761
+113935.2595468606 3.7572591 -1103.2562
+113936.2595469109 3.7572198 -1103.2168
+113937.2595469612 3.7572198 -1103.2761
+113938.2595470115 3.7572985 -1103.2959
+113939.2595470618 3.7571411 -1103.3156
+113940.259547112 3.7571805 -1103.1774
+113941.2595471623 3.7572198 -1103.2366
+113942.2595472126 3.7571805 -1103.2366
+113943.2595472629 3.7572198 -1103.3156
+113944.2595473132 3.7571805 -1103.2366
+113945.2595473635 3.7571411 -1103.2366
+113946.2595474138 3.7572198 -1103.2168
+113947.2595474641 3.7570624 -1103.2366
+113948.2595475144 3.7571411 -1103.2562
+113949.2595475647 3.7571411 -1103.197
+113950.259547615 3.7570229 -1103.2959
+113951.2595476653 3.7571411 -1103.2366
+113952.2595477155 3.7570624 -1103.197
+113953.2595477658 3.7571018 -1103.2959
+113954.2595478161 3.7570624 -1103.2168
+113955.2595478664 3.7569835 -1103.1576
+113956.2595479167 3.7571018 -1103.2562
+113957.259547967 3.7569442 -1103.2562
+113958.2595480173 3.7569442 -1103.2168
+113959.2595480676 3.7569835 -1103.197
+113960.2595481179 3.7568655 -1103.1182
+113961.2595481682 3.7569442 -1103.1774
+113962.2595482185 3.7568655 -1103.2959
+113963.2595482687 3.7568262 -1103.2562
+113964.259548319 3.7567475 -1103.2761
+113965.2595483693 3.7568262 -1103.2168
+113966.2595484196 3.7568655 -1103.2562
+113967.2595484699 3.7568262 -1103.2366
+113968.2595485202 3.7568655 -1103.2168
+113969.2595485705 3.7568655 -1103.3156
+113970.2595486208 3.7567868 -1103.2562
+113971.2595486711 3.7567079 -1103.2562
+113972.2595487214 3.7567475 -1103.2366
+113973.2595487717 3.7567868 -1103.2761
+113974.259548822 3.7567868 -1103.197
+113975.2595488722 3.7567079 -1103.2761
+113976.2595489225 3.7566686 -1103.2761
+113977.2595489728 3.7566686 -1103.3353
+113978.2595490231 3.7567079 -1103.2562
+113979.2595490734 3.7566292 -1103.197
+113980.2595491237 3.7566686 -1103.2562
+113981.259549174 3.7567475 -1103.1182
+113982.2595492243 3.7565899 -1103.2168
+113983.2595492746 3.7565899 -1103.2168
+113984.2595493249 3.7566686 -1103.2366
+113985.2595493752 3.7565899 -1103.3353
+113986.2595494254 3.7567079 -1103.197
+113987.2595494757 3.7565899 -1103.2761
+113988.259549526 3.7566292 -1103.2366
+113989.2595495763 3.7565899 -1103.197
+113990.2595496266 3.7565506 -1103.2168
+113991.2595496769 3.7565112 -1103.2562
+113992.2595497272 3.7564719 -1103.197
+113993.2595497775 3.7565112 -1103.2761
+113994.2595498278 3.7564325 -1103.2366
+113995.2595498781 3.756393 -1103.2959
+113996.2595499284 3.7565112 -1103.3353
+113997.2595499787 3.7564325 -1103.2366
+113998.2595500289 3.7563536 -1103.2562
+113999.2595500792 3.7564325 -1103.2562
+114000.2595501295 3.7564719 -1103.2562
+114001.2595501798 3.756393 -1103.197
+114002.2595502301 3.7563536 -1103.2562
+114003.2595502804 3.7563143 -1103.2761
+114004.2595503307 3.7563143 -1103.2366
+114005.259550381 3.756393 -1103.1576
+114006.2595504313 3.7563536 -1103.1774
+114007.2595504816 3.7563143 -1103.1774
+114008.2595505319 3.7563536 -1103.1576
+114009.2595505822 3.7562356 -1103.2562
+114010.2595506324 3.7563143 -1103.197
+114011.2595506827 3.7562356 -1103.2562
+114012.259550733 3.7563143 -1103.2562
+114013.2595507833 3.7561963 -1103.2168
+114014.2595508336 3.7562749 -1103.2168
+114015.2595508839 3.7561569 -1103.2761
+114016.2595509342 3.7561963 -1103.1774
+114017.2595509845 3.756078 -1103.2562
+114018.2595510348 3.7560387 -1103.2761
+114019.2595510851 3.7561176 -1103.2168
+114020.2595511354 3.7561569 -1103.2366
+114021.2595511856 3.7561176 -1103.2366
+114022.2595512359 3.7561963 -1103.2761
+114023.2595512862 3.756078 -1103.2562
+114024.2595513365 3.756078 -1103.2168
+114025.2595513868 3.7560387 -1103.1774
+114026.2595514371 3.7559993 -1103.197
+114027.2595514874 3.7561963 -1103.1576
+114028.2595515377 3.7559206 -1103.2168
+114029.259551588 3.7560387 -1103.2562
+114030.2595516383 3.7561176 -1103.2366
+114031.2595516886 3.7559993 -1103.2366
+114032.2595517389 3.7560387 -1103.2562
+114033.2595517891 3.7559993 -1103.2366
+114034.2595518394 3.75596 -1103.2168
+114035.2595518897 3.7559993 -1103.2761
+114036.25955194 3.7558813 -1103.2761
+114037.2595519903 3.7559206 -1103.2562
+114038.2595520406 3.7559206 -1103.2761
+114039.2595520909 3.7558813 -1103.2366
+114040.2595521412 3.755842 -1103.2168
+114041.2595521915 3.7558026 -1103.2761
+114042.2595522418 3.755842 -1103.2366
+114043.2595522921 3.755842 -1103.2761
+114044.2595523424 3.7557631 -1103.3156
+114045.2595523926 3.7558026 -1103.2168
+114046.2595524429 3.7558026 -1103.2761
+114047.2595524932 3.755842 -1103.2562
+114048.2595525435 3.7557631 -1103.2562
+114049.2595525938 3.7557631 -1103.2562
+114050.2595526441 3.7556844 -1103.3156
+114051.2595526944 3.7557237 -1103.197
+114052.2595527447 3.755645 -1103.2366
+114053.259552795 3.7557237 -1103.2761
+114054.2595528453 3.7556844 -1103.2761
+114055.2595528956 3.7557631 -1103.2761
+114056.2595529458 3.7555664 -1103.2562
+114057.2595529961 3.7556057 -1103.2168
+114058.2595530464 3.755645 -1103.2366
+114059.2595530967 3.7555664 -1103.2562
+114060.259553147 3.7555664 -1103.2366
+114061.2595531973 3.7554877 -1103.3156
+114062.2595532476 3.7555664 -1103.2562
+114063.2595532979 3.755527 -1103.2168
+114064.2595533482 3.7556057 -1103.1774
+114065.2595533985 3.755645 -1103.197
+114066.2595534488 3.755527 -1103.197
+114067.2595534991 3.7554481 -1103.2959
+114068.2595535493 3.7555664 -1103.3353
+114069.2595535996 3.7555664 -1103.1774
+114070.2595536499 3.7554088 -1103.2562
+114071.2595537002 3.7554877 -1103.2761
+114072.2595537505 3.7553694 -1103.3156
+114073.2595538008 3.7554088 -1103.2761
+114074.2595538511 3.755527 -1103.2366
+114075.2595539014 3.7553694 -1103.2366
+114076.2595539517 3.7553694 -1103.2366
+114077.259554002 3.7553301 -1103.2761
+114078.2595540523 3.7553694 -1103.1774
+114079.2595541026 3.7552907 -1103.1774
+114080.2595541528 3.7553301 -1103.2366
+114081.2595542031 3.7554088 -1103.2562
+114082.2595542534 3.7553301 -1103.2562
+114083.2595543037 3.7553694 -1103.2562
+114084.259554354 3.7552907 -1103.2761
+114085.2595544043 3.7552907 -1103.197
+114086.2595544546 3.7553301 -1103.197
+114087.2595545049 3.7552514 -1103.2168
+114088.2595545552 3.7552907 -1103.2366
+114089.2595546055 3.7552907 -1103.3353
+114090.2595546558 3.7552121 -1103.3156
+114091.259554706 3.7552121 -1103.1774
+114092.2595547563 3.7551725 -1103.2761
+114093.2595548066 3.7552514 -1103.2366
+114094.2595548569 3.7551725 -1103.1774
+114095.2595549072 3.7551332 -1103.2562
+114096.2595549575 3.7549758 -1103.2562
+114097.2595550078 3.7550151 -1103.3156
+114098.2595550581 3.7550938 -1103.2761
+114099.2595551084 3.7550938 -1103.2366
+114100.2595551587 3.7550151 -1103.197
+114101.259555209 3.7549758 -1103.3156
+114102.2595552593 3.7550151 -1103.2959
+114103.2595553095 3.7550545 -1103.2959
+114104.2595553598 3.7549758 -1103.2761
+114105.2595554101 3.7550151 -1103.3156
+114106.2595554604 3.7549365 -1103.197
+114107.2595555107 3.7550151 -1103.2562
+114108.259555561 3.7549365 -1103.1774
+114109.2595556113 3.7548971 -1103.2366
+114110.2595556616 3.7549758 -1103.197
+114111.2595557119 3.7548575 -1103.2562
+114112.2595557622 3.7549758 -1103.2168
+114113.2595558125 3.7548575 -1103.2168
+114114.2595558628 3.7548971 -1103.2366
+114115.259555913 3.7548575 -1103.2761
+114116.2595559633 3.7548575 -1103.2562
+114117.2595560136 3.7548182 -1103.3156
+114118.2595560639 3.7548971 -1103.2761
+114119.2595561142 3.7548182 -1103.2168
+114120.2595561645 3.7548182 -1103.3551
+114121.2595562148 3.7547002 -1103.2366
+114122.2595562651 3.7548182 -1103.2761
+114123.2595563154 3.7548182 -1103.197
+114124.2595563657 3.7547395 -1103.2168
+114125.259556416 3.7547002 -1103.2562
+114126.2595564662 3.7546608 -1103.1576
+114127.2595565165 3.7547395 -1103.1378
+114128.2595565668 3.7546608 -1103.2959
+114129.2595566171 3.7547002 -1103.2168
+114130.2595566674 3.7547002 -1103.1774
+114131.2595567177 3.7546608 -1103.2959
+114132.259556768 3.7545822 -1103.2562
+114133.2595568183 3.7545822 -1103.2562
+114134.2595568686 3.7546215 -1103.2168
+114135.2595569189 3.7546215 -1103.2168
+114136.2595569692 3.7545822 -1103.3353
+114137.2595570195 3.7545426 -1103.2761
+114138.2595570697 3.7544639 -1103.1774
+114139.25955712 3.7544246 -1103.2366
+114140.2595571703 3.7546215 -1103.2366
+114141.2595572206 3.7544639 -1103.2959
+114142.2595572709 3.7545033 -1103.2562
+114143.2595573212 3.7544639 -1103.3156
+114144.2595573715 3.7545426 -1103.1774
+114145.2595574218 3.7544639 -1103.2562
+114146.2595574721 3.7544639 -1103.2366
+114147.2595575224 3.7544246 -1103.2562
+114148.2595575727 3.7544246 -1103.2168
+114149.259557623 3.7543852 -1103.2562
+114150.2595576732 3.7544246 -1103.2366
+114151.2595577235 3.7544246 -1103.2761
+114152.2595577738 3.7543459 -1103.2959
+114153.2595578241 3.7544246 -1103.2168
+114154.2595578744 3.7543459 -1103.2562
+114155.2595579247 3.7543066 -1103.2761
+114156.259557975 3.7543852 -1103.2366
+114157.2595580253 3.7543066 -1103.1774
+114158.2595580756 3.7542276 -1103.2959
+114159.2595581259 3.7543066 -1103.2366
+114160.2595581762 3.7542672 -1103.3156
+114161.2595582264 3.7542276 -1103.3945
+114162.2595582767 3.7541883 -1103.2168
+114163.259558327 3.7541883 -1103.1378
+114164.2595583773 3.7542672 -1103.0193
+114165.2595584276 3.7542276 -1101.1431
+114166.2595584779 3.7542276 -1101.1036
+114167.2595585282 3.754149 -1101.222
+114168.2595585785 3.754149 -1102.9601
+114169.2595586288 3.7540703 -1101.9923
+114170.2595586791 3.7539523 -1101.0839
+114171.2595587294 3.7541096 -1101.1825
+114172.2595587797 3.7540309 -1101.1628
+114173.2595588299 3.7540309 -1100.3728
+114174.2595588802 3.7540703 -1097.5486
+114175.2595589305 3.7539916 -1097.5684
+114176.2595589808 3.7540703 -1097.588
+114177.2595590311 3.7541096 -1101.3406
+114178.2595590814 3.754149 -1099.484
+114179.2595591317 3.7540309 -1099.5433
+114180.259559182 3.7540703 -1099.5829
+114181.2595592323 3.7539916 -1099.4248
+114182.2595592826 3.7541096 -1104.4215
+114183.2595593329 3.7540309 -1105.2708
+114184.2595593832 3.7539523 -1105.2906
+114185.2595594334 3.7539127 -1105.2906
+114186.2595594837 3.7539916 -1102.644
+114187.259559534 3.7539127 -1102.1504
+114188.2595595843 3.7539127 -1102.0515
+114189.2595596346 3.753834 -1101.9923
+114190.2595596849 3.7537947 -1103.6711
+114191.2595597352 3.7539127 -1103.9476
+114192.2595597855 3.753834 -1103.9871
+114193.2595598358 3.7538733 -1103.9871
+114194.2595598861 3.7537553 -1104.0068
+114195.2595599364 3.7536767 -1103.2959
+114196.2595599866 3.753716 -1103.3749
+114197.2595600369 3.7537553 -1103.4342
+114198.2595600872 3.7537947 -1103.3749
+114199.2595601375 3.7536767 -1102.9404
+114200.2595601878 3.7537947 -1102.9404
+114201.2595602381 3.7537553 -1102.8613
+114202.2595602884 3.7537553 -1102.9008
+114203.2595603387 3.7536373 -1103.2761
+114204.259560389 3.753716 -1103.2366
+114205.2595604393 3.7536767 -1103.3749
+114206.2595604896 3.753716 -1103.4736
+114207.2595605399 3.7536767 -1103.2562
+114208.2595605901 3.7536767 -1103.1182
+114209.2595606404 3.7534797 -1103.3551
+114210.2595606907 3.7536767 -1103.1576
+114211.259560741 3.7535584 -1103.3156
+114212.2595607913 3.753716 -1103.2959
+114213.2595608416 3.7535977 -1103.3551
+114214.2595608919 3.753401 -1103.3945
+114215.2595609422 3.7535191 -1103.2761
+114216.2595609925 3.7535191 -1103.1576
+114217.2595610428 3.7535977 -1103.1576
+114218.2595610931 3.7534797 -1103.0785
+114219.2595611434 3.7534404 -1103.0984
+114220.2595611936 3.753401 -1103.0984
+114221.2595612439 3.7534404 -1103.1774
+114222.2595612942 3.7535584 -1103.2366
+114223.2595613445 3.7534404 -1103.2366
+114224.2595613948 3.7534404 -1103.2761
+114225.2595614451 3.753401 -1103.2366
+114226.2595614954 3.7533617 -1103.2761
+114227.2595615457 3.753401 -1103.3551
+114228.259561596 3.7533221 -1103.2168
+114229.2595616463 3.7532828 -1103.3156
+114230.2595616966 3.7533617 -1103.2562
+114231.2595617468 3.7533617 -1103.2959
+114232.2595617971 3.7533221 -1103.2366
+114233.2595618474 3.7533221 -1103.2366
+114234.2595618977 3.7532828 -1103.2366
+114235.259561948 3.7530861 -1103.1378
+114236.2595619983 3.7532041 -1103.3353
+114237.2595620486 3.7532828 -1103.1576
+114238.2595620989 3.7532041 -1103.2761
+114239.2595621492 3.7532828 -1103.2562
+114240.2595621995 3.7532041 -1103.2562
+114241.2595622498 3.7531648 -1103.2761
+114242.2595623001 3.7531254 -1103.2562
+114243.2595623503 3.7530861 -1103.3156
+114244.2595624006 3.7531648 -1103.2959
+114245.2595624509 3.7531254 -1103.3551
+114246.2595625012 3.7530861 -1103.3551
+114247.2595625515 3.7531648 -1103.2761
+114248.2595626018 3.7530468 -1103.2562
+114249.2595626521 3.7530861 -1103.1774
+114250.2595627024 3.7530468 -1103.197
+114251.2595627527 3.7530072 -1103.3156
+114252.259562803 3.7530072 -1103.2959
+114253.2595628533 3.7530072 -1103.2562
+114254.2595629036 3.7529285 -1103.2168
+114255.2595629538 3.7528892 -1103.3156
+114256.2595630041 3.7530861 -1103.2562
+114257.2595630544 3.7528892 -1103.2761
+114258.2595631047 3.7530072 -1103.2761
+114259.259563155 3.7528892 -1103.197
+114260.2595632053 3.7529285 -1103.2366
+114261.2595632556 3.7529285 -1103.197
+114262.2595633059 3.7528892 -1103.1774
+114263.2595633562 3.7528892 -1103.2562
+114264.2595634065 3.7528892 -1103.3353
+114265.2595634568 3.7528892 -1103.2959
+114266.259563507 3.7528105 -1103.1576
+114267.2595635573 3.7528892 -1103.2562
+114268.2595636076 3.7528892 -1103.2366
+114269.2595636579 3.7528498 -1103.2562
+114270.2595637082 3.7527318 -1103.1774
+114271.2595637585 3.7527711 -1103.1774
+114272.2595638088 3.7528105 -1103.1774
+114273.2595638591 3.7526922 -1103.2761
+114274.2595639094 3.7528105 -1103.3156
+114275.2595639597 3.7527711 -1103.2366
+114276.25956401 3.7526529 -1103.2366
+114277.2595640603 3.7526529 -1103.2168
+114278.2595641105 3.7526922 -1103.3156
+114279.2595641608 3.7526135 -1103.3551
+114280.2595642111 3.7526922 -1103.2959
+114281.2595642614 3.7525742 -1103.3156
+114282.2595643117 3.7525349 -1103.197
+114283.259564362 3.7526135 -1103.2366
+114284.2595644123 3.7524955 -1103.2168
+114285.2595644626 3.7526135 -1103.3156
+114286.2595645129 3.7524955 -1103.2562
+114287.2595645632 3.7525349 -1103.2959
+114288.2595646135 3.7525742 -1103.1774
+114289.2595646637 3.7525349 -1103.2562
+114290.259564714 3.7524168 -1103.3156
+114291.2595647643 3.7525742 -1103.197
+114292.2595648146 3.7524955 -1103.2959
+114293.2595648649 3.7524955 -1103.2959
+114294.2595649152 3.7524562 -1103.2562
+114295.2595649655 3.7524955 -1103.197
+114296.2595650158 3.7524168 -1103.197
+114297.2595650661 3.7524168 -1103.2168
+114298.2595651164 3.7523773 -1103.2959
+114299.2595651667 3.7523773 -1103.2168
+114300.259565217 3.7522986 -1103.2562
+114301.2595652672 3.7523379 -1103.1182
+114302.2595653175 3.7523379 -1103.2761
+114303.2595653678 3.7523379 -1103.2562
+114304.2595654181 3.7522986 -1103.2959
+114305.2595654684 3.7522986 -1103.197
+114306.2595655187 3.7522986 -1103.1576
+114307.259565569 3.7522986 -1103.1774
+114308.2595656193 3.7522199 -1103.2959
+114309.2595656696 3.7522986 -1103.2562
+114310.2595657199 3.7522199 -1103.2562
+114311.2595657702 3.7521806 -1103.2366
+114312.2595658205 3.7522593 -1103.2761
+114313.2595658707 3.7522986 -1103.3156
+114314.259565921 3.7521806 -1103.2562
+114315.2595659713 3.7522199 -1103.1576
+114316.2595660216 3.7521806 -1103.3156
+114317.2595660719 3.7521019 -1103.197
+114318.2595661222 3.7521019 -1103.3551
+114319.2595661725 3.7521806 -1103.2168
+114320.2595662228 3.7521412 -1103.2168
+114321.2595662731 3.752023 -1103.3353
+114322.2595663234 3.7520623 -1103.3749
+114323.2595663737 3.7520623 -1103.3551
+114324.2595664239 3.7521019 -1103.197
+114325.2595664742 3.7520623 -1103.3156
+114326.2595665245 3.7519836 -1103.2168
+114327.2595665748 3.752023 -1103.2168
+114328.2595666251 3.752023 -1103.2366
+114329.2595666754 3.7519443 -1103.3353
+114330.2595667257 3.7520623 -1103.2562
+114331.259566776 3.7519836 -1103.2562
+114332.2595668263 3.751905 -1103.2562
+114333.2595668766 3.752023 -1103.2959
+114334.2595669269 3.751905 -1103.197
+114335.2595669772 3.751905 -1103.2959
+114336.2595670274 3.7519836 -1103.2959
+114337.2595670777 3.751905 -1103.3156
+114338.259567128 3.7518656 -1103.1774
+114339.2595671783 3.7518656 -1103.2761
+114340.2595672286 3.7518656 -1103.1774
+114341.2595672789 3.7518656 -1103.2168
+114342.2595673292 3.7518263 -1103.3156
+114343.2595673795 3.7518656 -1103.2366
+114344.2595674298 3.7518656 -1103.2761
+114345.2595674801 3.7517869 -1103.3156
+114346.2595675304 3.7518263 -1103.2562
+114347.2595675807 3.7517474 -1103.2959
+114348.2595676309 3.7516687 -1103.197
+114349.2595676812 3.7516687 -1103.2761
+114350.2595677315 3.751708 -1103.3156
+114351.2595677818 3.7516687 -1103.2562
+114352.2595678321 3.7516687 -1103.2761
+114353.2595678824 3.751708 -1103.2761
+114354.2595679327 3.7514718 -1103.1774
+114355.259567983 3.7516294 -1103.2168
+114356.2595680333 3.7516294 -1103.2366
+114357.2595680836 3.75159 -1103.2761
+114358.2595681339 3.7516294 -1103.2366
+114359.2595681841 3.7515507 -1103.2168
+114360.2595682344 3.7515113 -1103.197
+114361.2595682847 3.7514718 -1103.2366
+114362.259568335 3.7515113 -1103.2562
+114363.2595683853 3.7515507 -1103.2168
+114364.2595684356 3.7515113 -1103.3353
+114365.2595684859 3.7514718 -1103.3156
+114366.2595685362 3.7515113 -1103.2562
+114367.2595685865 3.7516294 -1103.2761
+114368.2595686368 3.7515113 -1103.2168
+114369.2595686871 3.75159 -1103.2959
+114370.2595687374 3.7514718 -1103.197
+114371.2595687876 3.7513931 -1103.2168
+114372.2595688379 3.7515113 -1103.2366
+114373.2595688882 3.7513931 -1103.2959
+114374.2595689385 3.7513931 -1103.2562
+114375.2595689888 3.7513931 -1103.1576
+114376.2595690391 3.7513144 -1103.1774
+114377.2595690894 3.7512751 -1103.2761
+114378.2595691397 3.7513537 -1103.197
+114379.25956919 3.7513537 -1103.2168
+114380.2595692403 3.7513931 -1103.2761
+114381.2595692906 3.7513537 -1103.2959
+114382.2595693409 3.7513144 -1103.3156
+114383.2595693911 3.7512357 -1103.2959
+114384.2595694414 3.7512357 -1103.3551
+114385.2595694917 3.7513931 -1103.197
+114386.259569542 3.7512357 -1103.1576
+114387.2595695923 3.7511964 -1103.2366
+114388.2595696426 3.7512357 -1103.2562
+114389.2595696929 3.7512357 -1103.2959
+114390.2595697432 3.7511568 -1103.2761
+114391.2595697935 3.7511964 -1103.1576
+114392.2595698438 3.7511964 -1103.2761
+114393.2595698941 3.7511964 -1103.2366
+114394.2595699443 3.7511175 -1103.2366
+114395.2595699946 3.7510781 -1103.3156
+114396.2595700449 3.7509995 -1103.3156
+114397.2595700952 3.7510388 -1103.2562
+114398.2595701455 3.7509995 -1103.2562
+114399.2595701958 3.7510388 -1103.2761
+114400.2595702461 3.7510388 -1103.2562
+114401.2595702964 3.7509995 -1103.2761
+114402.2595703467 3.7509995 -1103.2562
+114403.259570397 3.7509995 -1103.1774
+114404.2595704473 3.7510388 -1103.3353
+114405.2595704976 3.7509601 -1103.2959
+114406.2595705478 3.7509208 -1103.2761
+114407.2595705981 3.7510781 -1103.3156
+114408.2595706484 3.7509601 -1103.2366
+114409.2595706987 3.7509208 -1103.1774
+114410.259570749 3.7508419 -1103.2959
+114411.2595707993 3.7508025 -1103.2562
+114412.2595708496 3.7508814 -1103.197
+114413.2595708999 3.7508419 -1103.2562
+114414.2595709502 3.7508814 -1103.3353
+114415.2595710005 3.7508025 -1103.2168
+114416.2595710508 3.7508419 -1103.2168
+114417.2595711011 3.7508419 -1103.2168
+114418.2595711513 3.7506845 -1103.2366
+114419.2595712016 3.7507632 -1103.2168
+114420.2595712519 3.7506845 -1103.2959
+114421.2595713022 3.7506845 -1103.2959
+114422.2595713525 3.7507632 -1103.3551
+114423.2595714028 3.7506845 -1103.2366
+114424.2595714531 3.7506845 -1103.2959
+114425.2595715034 3.7507632 -1103.1576
+114426.2595715537 3.7507238 -1103.2168
+114427.259571604 3.7507632 -1103.2562
+114428.2595716543 3.7506845 -1103.1576
+114429.2595717045 3.7508025 -1103.2959
+114430.2595717548 3.7505665 -1103.2761
+114431.2595718051 3.7506452 -1103.1774
+114432.2595718554 3.7506845 -1103.2761
+114433.2595719057 3.7506845 -1103.2366
+114434.259571956 3.7504876 -1103.2959
+114435.2595720063 3.7506058 -1103.3156
+114436.2595720566 3.7505269 -1103.3353
+114437.2595721069 3.7505665 -1103.2761
+114438.2595721572 3.7504876 -1103.2562
+114439.2595722075 3.7504876 -1103.2761
+114440.2595722578 3.7504089 -1103.2562
+114441.259572308 3.7504876 -1103.2366
+114442.2595723583 3.7504482 -1103.2761
+114443.2595724086 3.7505665 -1103.2168
+114444.2595724589 3.7504482 -1103.3353
+114445.2595725092 3.7504876 -1103.2168
+114446.2595725595 3.7504482 -1103.197
+114447.2595726098 3.7504089 -1103.2959
+114448.2595726601 3.7504876 -1103.2366
+114449.2595727104 3.7504482 -1103.2366
+114450.2595727607 3.7504482 -1103.2366
+114451.259572811 3.7503695 -1103.197
+114452.2595728613 3.7503302 -1103.2761
+114453.2595729115 3.7503302 -1103.3353
+114454.2595729618 3.7503695 -1103.2562
+114455.2595730121 3.7502909 -1103.3353
+114456.2595730624 3.7503302 -1103.197
+114457.2595731127 3.7502909 -1103.2562
+114458.259573163 3.7502515 -1103.2168
+114459.2595732133 3.7502909 -1103.3749
+114460.2595732636 3.7502515 -1103.1774
+114461.2595733139 3.750212 -1103.2959
+114462.2595733642 3.7501333 -1103.2761
+114463.2595734145 3.7501726 -1103.2562
+114464.2595734647 3.750212 -1103.197
+114465.259573515 3.7502515 -1103.2366
+114466.2595735653 3.7501333 -1103.2562
+114467.2595736156 3.7501333 -1103.2959
+114468.2595736659 3.7500546 -1103.1774
+114469.2595737162 3.7500546 -1103.2168
+114470.2595737665 3.7500939 -1103.2366
+114471.2595738168 3.7500153 -1103.2168
+114472.2595738671 3.7500546 -1103.2562
+114473.2595739174 3.7500546 -1103.2168
+114474.2595739677 3.7500939 -1103.2168
+114475.259574018 3.7499759 -1103.2959
+114476.2595740682 3.7500153 -1103.2959
+114477.2595741185 3.7499759 -1103.2562
+114478.2595741688 3.7500939 -1103.197
+114479.2595742191 3.7500153 -1103.2959
+114480.2595742694 3.749897 -1103.2366
+114481.2595743197 3.7499363 -1103.1774
+114482.25957437 3.7500546 -1103.1576
+114483.2595744203 3.749897 -1103.197
+114484.2595744706 3.7498183 -1103.2366
+114485.2595745209 3.7499759 -1103.2168
+114486.2595745712 3.7499759 -1103.3353
+114487.2595746215 3.749897 -1103.197
+114488.2595746717 3.7498577 -1103.2761
+114489.259574722 3.7498183 -1103.2562
+114490.2595747723 3.7498183 -1103.1774
+114491.2595748226 3.7497396 -1103.2366
+114492.2595748729 3.7498577 -1103.3156
+114493.2595749232 3.749779 -1103.2959
+114494.2595749735 3.749897 -1103.2562
+114495.2595750238 3.7498183 -1103.2562
+114496.2595750741 3.749779 -1103.1182
+114497.2595751244 3.7497003 -1103.2562
+114498.2595751747 3.7497003 -1103.2168
+114499.2595752249 3.7497003 -1103.197
+114500.2595752752 3.7497003 -1103.2168
+114501.2595753255 3.7496214 -1103.2168
+114502.2595753758 3.749661 -1103.2761
+114503.2595754261 3.7497396 -1103.2959
+114504.2595754764 3.7495821 -1103.2366
+114505.2595755267 3.7496214 -1103.2366
+114506.259575577 3.7496214 -1103.2562
+114507.2595756273 3.7495821 -1103.1774
+114508.2595756776 3.7495821 -1103.2366
+114509.2595757279 3.7496214 -1103.2761
+114510.2595757782 3.7495427 -1103.2366
+114511.2595758284 3.7495427 -1103.2168
+114512.2595758787 3.7495821 -1103.2959
+114513.259575929 3.7495034 -1103.2562
+114514.2595759793 3.7495427 -1103.1378
+114515.2595760296 3.7495821 -1103.2168
+114516.2595760799 3.7495034 -1103.3551
+114517.2595761302 3.7495034 -1103.2366
+114518.2595761805 3.749464 -1103.2366
+114519.2595762308 3.749464 -1103.197
+114520.2595762811 3.7494247 -1103.2168
+114521.2595763314 3.7495034 -1103.2366
+114522.2595763817 3.7493854 -1103.2168
+114523.2595764319 3.749346 -1103.3353
+114524.2595764822 3.749346 -1103.2562
+114525.2595765325 3.749346 -1103.2959
+114526.2595765828 3.7494247 -1103.197
+114527.2595766331 3.7491884 -1103.2959
+114528.2595766834 3.7492671 -1103.2761
+114529.2595767337 3.749346 -1103.2959
+114530.259576784 3.7492278 -1103.2366
+114531.2595768343 3.7493854 -1103.1774
+114532.2595768846 3.7492671 -1103.2562
+114533.2595769349 3.7492671 -1103.2168
+114534.2595769851 3.7493064 -1103.2959
+114535.2595770354 3.7492671 -1103.2562
+114536.2595770857 3.7491884 -1103.2959
+114537.259577136 3.7491884 -1103.2168
+114538.2595771863 3.7491884 -1103.2959
+114539.2595772366 3.7492278 -1103.1576
+114540.2595772869 3.7491884 -1103.2761
+114541.2595773372 3.7491491 -1103.0984
+114542.2595773875 3.7490704 -1103.2168
+114543.2595774378 3.7491097 -1103.2168
+114544.2595774881 3.7491097 -1103.2562
+114545.2595775384 3.7490311 -1103.2761
+114546.2595775886 3.7490311 -1103.2562
+114547.2595776389 3.7489128 -1103.1576
+114548.2595776892 3.7489915 -1103.2366
+114549.2595777395 3.7490704 -1103.2366
+114550.2595777898 3.7489915 -1103.2761
+114551.2595778401 3.7490311 -1103.2366
+114552.2595778904 3.7490311 -1103.2366
+114553.2595779407 3.7489915 -1103.1774
+114554.259577991 3.7490311 -1103.1774
+114555.2595780413 3.7489915 -1103.2959
+114556.2595780916 3.7488735 -1103.2761
+114557.2595781419 3.7489522 -1103.1774
+114558.2595781921 3.7489128 -1103.2168
+114559.2595782424 3.7489522 -1103.2761
+114560.2595782927 3.7488341 -1103.197
+114561.259578343 3.7488735 -1103.2761
+114562.2595783933 3.7488341 -1103.2562
+114563.2595784436 3.7488341 -1103.2168
+114564.2595784939 3.7488341 -1103.2761
+114565.2595785442 3.7488735 -1103.2366
+114566.2595785945 3.7488735 -1103.197
+114567.2595786448 3.7487948 -1103.1774
+114568.2595786951 3.7488341 -1103.197
+114569.2595787453 3.7487161 -1103.2761
+114570.2595787956 3.7487948 -1103.197
+114571.2595788459 3.7488341 -1103.197
+114572.2595788962 3.7487161 -1103.2366
+114573.2595789465 3.7487555 -1103.2562
+114574.2595789968 3.7486765 -1103.1576
+114575.2595790471 3.7488341 -1103.2761
+114576.2595790974 3.7485979 -1103.2366
+114577.2595791477 3.7486765 -1103.2761
+114578.259579198 3.7486372 -1103.2959
+114579.2595792483 3.7486372 -1103.2168
+114580.2595792986 3.7486765 -1103.1774
+114581.2595793488 3.7486765 -1103.2761
+114582.2595793991 3.7486372 -1103.197
+114583.2595794494 3.7486372 -1103.2366
+114584.2595794997 3.7485192 -1103.2761
+114585.25957955 3.7485192 -1103.2366
+114586.2595796003 3.7485979 -1103.2562
+114587.2595796506 3.7485585 -1103.197
+114588.2595797009 3.7484798 -1103.2562
+114589.2595797512 3.7484798 -1103.197
+114590.2595798015 3.7485585 -1103.2562
+114591.2595798518 3.7485192 -1103.1774
+114592.259579902 3.7484405 -1103.2562
+114593.2595799523 3.7484012 -1103.197
+114594.2595800026 3.7484798 -1103.3551
+114595.2595800529 3.7484405 -1103.3156
+114596.2595801032 3.7485192 -1103.2366
+114597.2595801535 3.7483616 -1103.2562
+114598.2595802038 3.7482436 -1103.2959
+114599.2595802541 3.7482829 -1103.2366
+114600.2595803044 3.7483222 -1103.2562
+114601.2595803547 3.7483222 -1103.3353
+114602.259580405 3.7482829 -1103.2761
+114603.2595804553 3.7483616 -1103.2168
+114604.2595805055 3.7483616 -1103.2366
+114605.2595805558 3.7483222 -1103.2168
+114606.2595806061 3.7483616 -1103.2168
+114607.2595806564 3.7482436 -1103.1774
+114608.2595807067 3.7483222 -1103.2168
+114609.259580757 3.7482042 -1103.197
+114610.2595808073 3.7482829 -1103.3156
+114611.2595808576 3.7481649 -1103.2761
+114612.2595809079 3.7481256 -1103.2168
+114613.2595809582 3.7481649 -1103.2562
+114614.2595810085 3.7482829 -1103.197
+114615.2595810588 3.7482436 -1103.2366
+114616.259581109 3.7481256 -1103.2168
+114617.2595811593 3.7482436 -1103.2562
+114618.2595812096 3.7481256 -1103.2562
+114619.2595812599 3.748086 -1103.2168
+114620.2595813102 3.7480466 -1103.197
+114621.2595813605 3.748086 -1103.2366
+114622.2595814108 3.7480073 -1103.2562
+114623.2595814611 3.7480466 -1103.2562
+114624.2595815114 3.748086 -1103.2761
+114625.2595815617 3.748086 -1103.3156
+114626.259581612 3.747968 -1103.2168
+114627.2595816622 3.747968 -1103.1774
+114628.2595817125 3.747968 -1103.2562
+114629.2595817628 3.7478893 -1103.2959
+114630.2595818131 3.7478893 -1103.2761
+114631.2595818634 3.7479286 -1103.2562
+114632.2595819137 3.747968 -1103.2761
+114633.259581964 3.7479286 -1103.2562
+114634.2595820143 3.7478893 -1103.2562
+114635.2595820646 3.7478893 -1103.3156
+114636.2595821149 3.7478499 -1103.2366
+114637.2595821652 3.7478106 -1103.3353
+114638.2595822155 3.7478893 -1103.2366
+114639.2595822657 3.7479286 -1103.197
+114640.259582316 3.747771 -1103.1774
+114641.2595823663 3.7478499 -1103.2959
+114642.2595824166 3.747771 -1103.3156
+114643.2595824669 3.7478106 -1103.2761
+114644.2595825172 3.747653 -1103.2761
+114645.2595825675 3.7478106 -1103.2562
+114646.2595826178 3.747771 -1103.2366
+114647.2595826681 3.747653 -1103.2168
+114648.2595827184 3.7476923 -1103.2959
+114649.2595827687 3.7476137 -1103.2761
+114650.259582819 3.747653 -1103.1576
+114651.2595828692 3.7477317 -1103.2959
+114652.2595829195 3.7476923 -1103.2562
+114653.2595829698 3.747535 -1103.2366
+114654.2595830201 3.7475743 -1103.2168
+114655.2595830704 3.7476137 -1103.2761
+114656.2595831207 3.747535 -1103.197
+114657.259583171 3.7476137 -1103.2168
+114658.2595832213 3.747535 -1103.2761
+114659.2595832716 3.7475743 -1103.3353
+114660.2595833219 3.747535 -1103.1774
+114661.2595833722 3.7475743 -1103.2761
+114662.2595834224 3.7475743 -1103.2562
+114663.2595834727 3.7474957 -1103.3353
+114664.259583523 3.7474957 -1103.1576
+114665.2595835733 3.7474957 -1103.2562
+114666.2595836236 3.7474957 -1103.2168
+114667.2595836739 3.7474167 -1103.2168
+114668.2595837242 3.747535 -1103.197
+114669.2595837745 3.7474167 -1103.2761
+114670.2595838248 3.7473774 -1103.197
+114671.2595838751 3.7474561 -1103.2168
+114672.2595839254 3.7474167 -1103.2959
+114673.2595839757 3.7474167 -1103.197
+114674.2595840259 3.7473381 -1103.2959
+114675.2595840762 3.7473774 -1103.2562
+114676.2595841265 3.7473381 -1103.2366
+114677.2595841768 3.7472987 -1103.2366
+114678.2595842271 3.7474167 -1103.2168
+114679.2595842774 3.7472594 -1103.2168
+114680.2595843277 3.7472987 -1103.2959
+114681.259584378 3.7472987 -1103.2366
+114682.2595844283 3.7472594 -1103.2761
+114683.2595844786 3.74722 -1103.2959
+114684.2595845289 3.7472987 -1103.2761
+114685.2595845792 3.7472987 -1103.2761
+114686.2595846294 3.7472987 -1103.2168
+114687.2595846797 3.7472594 -1103.2366
+114688.25958473 3.7471807 -1103.2562
+114689.2595847803 3.7471807 -1103.2562
+114690.2595848306 3.7471411 -1103.197
+114691.2595848809 3.7472594 -1103.2562
+114692.2595849312 3.7471018 -1103.2366
+114693.2595849815 3.74722 -1103.2366
+114694.2595850318 3.7470624 -1103.2366
+114695.2595850821 3.7471411 -1103.197
+114696.2595851324 3.7470624 -1103.3551
+114697.2595851826 3.7471411 -1103.2761
+114698.2595852329 3.7470231 -1103.2366
+114699.2595852832 3.7471018 -1103.2562
+114700.2595853335 3.7470231 -1103.2168
+114701.2595853838 3.7470624 -1103.2761
+114702.2595854341 3.7470231 -1103.2366
+114703.2595854844 3.7470231 -1103.2562
+114704.2595855347 3.7469051 -1103.197
+114705.259585585 3.7469051 -1103.3156
+114706.2595856353 3.7469838 -1103.1774
+114707.2595856856 3.7470624 -1103.2761
+114708.2595857359 3.7469051 -1103.2761
+114709.2595857861 3.7468657 -1103.1774
+114710.2595858364 3.7469444 -1103.3353
+114711.2595858867 3.7469051 -1103.2761
+114712.259585937 3.7469051 -1103.2366
+114713.2595859873 3.7469051 -1103.2761
+114714.2595860376 3.7469051 -1103.2959
+114715.2595860879 3.7467868 -1103.3156
+114716.2595861382 3.7467475 -1103.2366
+114717.2595861885 3.7467868 -1103.197
+114718.2595862388 3.7468262 -1103.2959
+114719.2595862891 3.7467868 -1103.2366
+114720.2595863394 3.7467475 -1103.2366
+114721.2595863896 3.7467082 -1103.2959
+114722.2595864399 3.7467868 -1103.2959
+114723.2595864902 3.7467475 -1103.2562
+114724.2595865405 3.7468657 -1103.1774
+114725.2595865908 3.7467868 -1103.2562
+114726.2595866411 3.7467082 -1103.2366
+114727.2595866914 3.7467082 -1103.2562
+114728.2595867417 3.7466295 -1103.2562
+114729.259586792 3.7465508 -1103.2168
+114730.2595868423 3.7465901 -1103.2168
+114731.2595868926 3.7465901 -1103.2366
+114732.2595869428 3.7465901 -1103.3156
+114733.2595869931 3.7465508 -1103.2366
+114734.2595870434 3.7467082 -1103.3156
+114735.2595870937 3.7465508 -1103.197
+114736.259587144 3.7465901 -1103.2562
+114737.2595871943 3.7465901 -1103.2168
+114738.2595872446 3.7465508 -1103.197
+114739.2595872949 3.7465112 -1103.1378
+114740.2595873452 3.7464325 -1103.3156
+114741.2595873955 3.7465508 -1103.1774
+114742.2595874458 3.7464719 -1103.197
+114743.2595874961 3.7464325 -1103.2366
+114744.2595875463 3.7465508 -1103.197
+114745.2595875966 3.7465112 -1103.2366
+114746.2595876469 3.7464719 -1103.2366
+114747.2595876972 3.7464719 -1103.1576
+114748.2595877475 3.7464325 -1103.2761
+114749.2595877978 3.7463932 -1103.2959
+114750.2595878481 3.7464719 -1103.2366
+114751.2595878984 3.7463145 -1103.2959
+114752.2595879487 3.7464325 -1103.3353
+114753.259587999 3.7463539 -1103.2168
+114754.2595880493 3.7463539 -1103.2366
+114755.2595880996 3.7463145 -1103.2366
+114756.2595881498 3.7463145 -1103.2761
+114757.2595882001 3.7462752 -1103.197
+114758.2595882504 3.7462752 -1103.2366
+114759.2595883007 3.7461963 -1103.2761
+114760.259588351 3.7462356 -1103.2761
+114761.2595884013 3.7461963 -1103.197
+114762.2595884516 3.7462752 -1103.2761
+114763.2595885019 3.7462356 -1103.2562
+114764.2595885522 3.7462356 -1103.2562
+114765.2595886025 3.7461176 -1103.2168
+114766.2595886528 3.7461569 -1103.197
+114767.259588703 3.7461176 -1103.2168
+114768.2595887533 3.7461176 -1103.2761
+114769.2595888036 3.7461569 -1103.2168
+114770.2595888539 3.7461176 -1103.1774
+114771.2595889042 3.7461176 -1103.1774
+114772.2595889545 3.7460783 -1103.3156
+114773.2595890048 3.7460783 -1103.1774
+114774.2595890551 3.7460389 -1103.2761
+114775.2595891054 3.7459602 -1103.2168
+114776.2595891557 3.7459996 -1103.2168
+114777.259589206 3.7460389 -1103.2366
+114778.2595892563 3.7460783 -1103.197
+114779.2595893065 3.7460783 -1103.2562
+114780.2595893568 3.7458813 -1103.2761
+114781.2595894071 3.7459602 -1103.197
+114782.2595894574 3.7459207 -1103.2959
+114783.2595895077 3.7459996 -1103.2959
+114784.259589558 3.7459602 -1103.2366
+114785.2595896083 3.7459602 -1103.1774
+114786.2595896586 3.7459207 -1103.1576
+114787.2595897089 3.7459207 -1103.2366
+114788.2595897592 3.7458026 -1103.197
+114789.2595898095 3.7459602 -1103.2168
+114790.2595898598 3.7458813 -1103.2761
+114791.25958991 3.7456846 -1103.2366
+114792.2595899603 3.7458813 -1103.2562
+114793.2595900106 3.7458026 -1103.2761
+114794.2595900609 3.7457633 -1103.2168
+114795.2595901112 3.7458026 -1103.1576
+114796.2595901615 3.7458813 -1103.3156
+114797.2595902118 3.7458026 -1103.197
+114798.2595902621 3.745724 -1103.2366
+114799.2595903124 3.7456846 -1103.2959
+114800.2595903627 3.7457633 -1103.2366
+114801.259590413 3.7456846 -1103.197
+114802.2595904632 3.7458026 -1103.1378
+114803.2595905135 3.7456846 -1103.2562
+114804.2595905638 3.7456846 -1103.197
+114805.2595906141 3.7456057 -1103.197
+114806.2595906644 3.7456057 -1103.2959
+114807.2595907147 3.7456846 -1103.197
+114808.259590765 3.7456057 -1103.2562
+114809.2595908153 3.7455664 -1103.2959
+114810.2595908656 3.7456057 -1103.197
+114811.2595909159 3.7456057 -1103.2562
+114812.2595909662 3.745527 -1103.2366
+114813.2595910165 3.7455664 -1103.3156
+114814.2595910667 3.7454877 -1103.1774
+114815.259591117 3.745527 -1103.2761
+114816.2595911673 3.745527 -1103.2366
+114817.2595912176 3.7454877 -1103.197
+114818.2595912679 3.7454877 -1103.2761
+114819.2595913182 3.7454877 -1103.2366
+114820.2595913685 3.7454877 -1103.3156
+114821.2595914188 3.745409 -1103.2959
+114822.2595914691 3.7454484 -1103.3353
+114823.2595915194 3.745409 -1103.1774
+114824.2595915697 3.7453697 -1103.2959
+114825.25959162 3.745409 -1103.3353
+114826.2595916702 3.7453697 -1103.2761
+114827.2595917205 3.745409 -1103.3551
+114828.2595917708 3.7453697 -1103.2959
+114829.2595918211 3.7453303 -1103.2366
+114830.2595918714 3.7453697 -1103.197
+114831.2595919217 3.7453303 -1103.1774
+114832.259591972 3.7453303 -1103.2761
+114833.2595920223 3.7452908 -1103.2959
+114834.2595920726 3.7452121 -1103.2168
+114835.2595921229 3.7452514 -1103.197
+114836.2595921732 3.7452908 -1103.2168
+114837.2595922234 3.7451727 -1103.197
+114838.2595922737 3.7452121 -1103.2366
+114839.259592324 3.7451727 -1103.1774
+114840.2595923743 3.7451727 -1103.2562
+114841.2595924246 3.7452514 -1103.197
+114842.2595924749 3.7452908 -1103.2562
+114843.2595925252 3.7451334 -1103.1774
+114844.2595925755 3.7451727 -1103.1774
+114845.2595926258 3.7450941 -1103.2959
+114846.2595926761 3.7451334 -1103.2761
+114847.2595927264 3.7451334 -1103.3156
+114848.2595927767 3.7451334 -1103.197
+114849.2595928269 3.7450547 -1103.197
+114850.2595928772 3.7450941 -1103.2366
+114851.2595929275 3.7451334 -1103.1774
+114852.2595929778 3.7450941 -1103.2168
+114853.2595930281 3.7450154 -1103.2562
+114854.2595930784 3.7449758 -1103.3156
+114855.2595931287 3.7450154 -1103.197
+114856.259593179 3.7450154 -1103.2761
+114857.2595932293 3.7450547 -1103.2959
+114858.2595932796 3.7449365 -1103.2168
+114859.2595933299 3.7448971 -1103.3156
+114860.2595933802 3.7449758 -1103.2562
+114861.2595934304 3.7449365 -1103.1774
+114862.2595934807 3.7449758 -1103.2168
+114863.259593531 3.7448971 -1103.3156
+114864.2595935813 3.7448578 -1103.2168
+114865.2595936316 3.7448971 -1103.1774
+114866.2595936819 3.7448578 -1103.197
+114867.2595937322 3.7448578 -1103.2366
+114868.2595937825 3.7448578 -1103.2168
+114869.2595938328 3.7448578 -1103.3156
+114870.2595938831 3.7447791 -1103.3353
+114871.2595939334 3.7447791 -1103.1576
+114872.2595939836 3.7448578 -1103.2168
+114873.2595940339 3.7447398 -1103.2562
+114874.2595940842 3.7447398 -1103.1774
+114875.2595941345 3.7447791 -1103.2366
+114876.2595941848 3.7447398 -1103.1774
+114877.2595942351 3.7447791 -1103.2761
+114878.2595942854 3.7446609 -1103.2366
+114879.2595943357 3.7447004 -1103.197
+114880.259594386 3.7447398 -1103.2366
+114881.2595944363 3.7446609 -1103.2366
+114882.2595944866 3.7446609 -1103.197
+114883.2595945369 3.7445428 -1103.2168
+114884.2595945871 3.7446609 -1103.3353
+114885.2595946374 3.7446215 -1103.197
+114886.2595946877 3.7446215 -1103.2168
+114887.259594738 3.7446609 -1103.2959
+114888.2595947883 3.7446215 -1103.2366
+114889.2595948386 3.7445822 -1103.197
+114890.2595948889 3.7445035 -1103.1576
+114891.2595949392 3.7445428 -1103.1576
+114892.2595949895 3.7445035 -1103.197
+114893.2595950398 3.7445428 -1103.2959
+114894.2595950901 3.7445428 -1103.2959
+114895.2595951403 3.7444642 -1103.2761
+114896.2595951906 3.7444642 -1103.2959
+114897.2595952409 3.7445035 -1103.2562
+114898.2595952912 3.7445035 -1103.3156
+114899.2595953415 3.7444642 -1103.2761
+114900.2595953918 3.7444642 -1103.2168
+114901.2595954421 3.7444248 -1103.2959
+114902.2595954924 3.7444248 -1103.2168
+114903.2595955427 3.7443459 -1103.1774
+114904.259595593 3.7443459 -1103.2959
+114905.2595956433 3.7443852 -1103.2366
+114906.2595956936 3.7443459 -1103.2562
+114907.2595957438 3.7443852 -1103.1774
+114908.2595957941 3.7442672 -1103.2562
+114909.2595958444 3.7443459 -1103.2366
+114910.2595958947 3.7443066 -1103.2366
+114911.259595945 3.7443066 -1103.2562
+114912.2595959953 3.7442672 -1103.3156
+114913.2595960456 3.7441885 -1103.3156
+114914.2595960959 3.7442672 -1103.2761
+114915.2595961462 3.7442279 -1103.3551
+114916.2595961965 3.7441885 -1103.197
+114917.2595962468 3.7441492 -1103.197
+114918.2595962971 3.7442279 -1103.1774
+114919.2595963473 3.7441885 -1103.3156
+114920.2595963976 3.7441099 -1103.2366
+114921.2595964479 3.7442279 -1103.2366
+114922.2595964982 3.744031 -1103.2168
+114923.2595965485 3.7441885 -1103.2562
+114924.2595965988 3.7440703 -1103.2761
+114925.2595966491 3.7441099 -1103.2761
+114926.2595966994 3.7441099 -1103.1378
+114927.2595967497 3.7441099 -1103.1576
+114928.2595968 3.7441099 -1103.2761
+114929.2595968503 3.7439916 -1103.2761
+114930.2595969005 3.7441492 -1103.1576
+114931.2595969508 3.7441099 -1103.2366
+114932.2595970011 3.7439523 -1103.2959
+114933.2595970514 3.7439916 -1103.2168
+114934.2595971017 3.7439916 -1103.1774
+114935.259597152 3.7439523 -1103.2366
+114936.2595972023 3.7439523 -1103.2959
+114937.2595972526 3.7439523 -1103.2168
+114938.2595973029 3.7439523 -1103.2168
+114939.2595973532 3.7438736 -1103.2366
+114940.2595974035 3.7439523 -1103.2761
+114941.2595974538 3.7438736 -1103.2562
+114942.259597504 3.7438343 -1103.2761
+114943.2595975543 3.7439129 -1103.3156
+114944.2595976046 3.7437949 -1103.3156
+114945.2595976549 3.743716 -1103.2168
+114946.2595977052 3.7438343 -1103.2168
+114947.2595977555 3.7438343 -1103.1576
+114948.2595978058 3.7437949 -1103.2562
+114949.2595978561 3.7438343 -1103.2168
+114950.2595979064 3.7437949 -1103.2959
+114951.2595979567 3.7438343 -1103.197
+114952.259598007 3.7437949 -1103.3156
+114953.2595980573 3.7438343 -1103.3156
+114954.2595981075 3.743716 -1103.2761
+114955.2595981578 3.743598 -1103.1378
+114956.2595982081 3.7436767 -1103.2168
+114957.2595982584 3.7436373 -1103.2366
+114958.2595983087 3.7437949 -1103.3156
+114959.259598359 3.7436767 -1103.2761
+114960.2595984093 3.743716 -1103.2168
+114961.2595984596 3.7436373 -1103.2168
+114962.2595985099 3.7436767 -1103.2168
+114963.2595985602 3.7436373 -1103.2562
+114964.2595986105 3.74348 -1103.197
+114965.2595986607 3.7436373 -1103.2366
+114966.259598711 3.7435586 -1103.2168
+114967.2595987613 3.7435586 -1103.3156
+114968.2595988116 3.7434011 -1103.2168
+114969.2595988619 3.7435193 -1103.2168
+114970.2595989122 3.7435586 -1103.2562
+114971.2595989625 3.74348 -1103.2761
+114972.2595990128 3.74348 -1103.197
+114973.2595990631 3.7434404 -1103.2168
+114974.2595991134 3.7434404 -1103.2168
+114975.2595991637 3.74348 -1103.2959
+114976.259599214 3.7434011 -1103.2761
+114977.2595992642 3.74348 -1103.2168
+114978.2595993145 3.7433617 -1103.2366
+114979.2595993648 3.7434404 -1103.2761
+114980.2595994151 3.7434011 -1103.2168
+114981.2595994654 3.7433224 -1103.2168
+114982.2595995157 3.74348 -1103.2562
+114983.259599566 3.7433224 -1103.2168
+114984.2595996163 3.7433617 -1103.2366
+114985.2595996666 3.743165 -1103.2562
+114986.2595997169 3.7432437 -1103.2761
+114987.2595997672 3.743283 -1103.2562
+114988.2595998175 3.743283 -1103.2168
+114989.2595998677 3.743283 -1103.3551
+114990.259599918 3.7432437 -1103.1774
+114991.2595999683 3.743165 -1103.197
+114992.2596000186 3.7432437 -1103.2168
+114993.2596000689 3.7432044 -1103.2959
+114994.2596001192 3.743165 -1103.1576
+114995.2596001695 3.743165 -1103.2366
+114996.2596002198 3.7431254 -1103.2562
+114997.2596002701 3.743165 -1103.2168
+114998.2596003204 3.7430468 -1103.2761
+114999.2596003707 3.7431254 -1103.1774
+115000.2596004209 3.743165 -1103.2761
+115001.2596004712 3.7430861 -1103.2562
+115002.2596005215 3.7431254 -1103.2366
+115003.2596005718 3.7430861 -1103.2366
+115004.2596006221 3.7430468 -1103.197
+115005.2596006724 3.7431254 -1103.2761
+115006.2596007227 3.7430468 -1103.2562
+115007.259600773 3.7429681 -1103.1774
+115008.2596008233 3.7430074 -1103.197
+115009.2596008736 3.7430468 -1103.2168
+115010.2596009239 3.7430074 -1103.197
+115011.2596009742 3.7429681 -1103.1576
+115012.2596010244 3.7429287 -1103.2959
+115013.2596010747 3.7428894 -1103.2168
+115014.259601125 3.7430074 -1103.2562
+115015.2596011753 3.7429287 -1103.2562
+115016.2596012256 3.7429287 -1103.3551
+115017.2596012759 3.7429681 -1103.2168
+115018.2596013262 3.7429287 -1103.1774
+115019.2596013765 3.7428501 -1103.2761
+115020.2596014268 3.7428501 -1103.2959
+115021.2596014771 3.7427711 -1103.2562
+115022.2596015274 3.7428105 -1103.2562
+115023.2596015777 3.7427711 -1103.3156
+115024.2596016279 3.7428501 -1103.2761
+115025.2596016782 3.7428105 -1103.2761
+115026.2596017285 3.7428105 -1103.2366
+115027.2596017788 3.7425745 -1103.2562
+115028.2596018291 3.7427711 -1103.2168
+115029.2596018794 3.7427318 -1103.2761
+115030.2596019297 3.7427711 -1103.197
+115031.25960198 3.7426925 -1103.3156
+115032.2596020303 3.7425745 -1103.197
+115033.2596020806 3.7426138 -1103.2366
+115034.2596021309 3.7426138 -1103.2366
+115035.2596021811 3.7426531 -1103.2168
+115036.2596022314 3.7425745 -1103.2761
+115037.2596022817 3.7425349 -1103.2562
+115038.259602332 3.7425745 -1103.2562
+115039.2596023823 3.7426531 -1103.1576
+115040.2596024326 3.7425745 -1103.2366
+115041.2596024829 3.7424955 -1103.2366
+115042.2596025332 3.7425349 -1103.1576
+115043.2596025835 3.7425745 -1103.3353
+115044.2596026338 3.7425349 -1103.2761
+115045.2596026841 3.7425349 -1103.3353
+115046.2596027344 3.7424562 -1103.197
+115047.2596027846 3.7424955 -1103.2761
+115048.2596028349 3.7424562 -1103.2959
+115049.2596028852 3.7424169 -1103.197
+115050.2596029355 3.7424955 -1103.3353
+115051.2596029858 3.7423382 -1103.2761
+115052.2596030361 3.7424562 -1103.2366
+115053.2596030864 3.7423775 -1103.2562
+115054.2596031367 3.7424955 -1103.2168
+115055.259603187 3.7423775 -1103.2761
+115056.2596032373 3.7422988 -1103.2168
+115057.2596032876 3.7423382 -1103.2366
+115058.2596033379 3.7422988 -1103.2366
+115059.2596033881 3.7423382 -1103.2562
+115060.2596034384 3.7421806 -1103.2761
+115061.2596034887 3.7423382 -1103.2761
+115062.259603539 3.7422988 -1103.2366
+115063.2596035893 3.7422988 -1103.2761
+115064.2596036396 3.7422595 -1103.2959
+115065.2596036899 3.7422199 -1103.197
+115066.2596037402 3.7421806 -1103.2366
+115067.2596037905 3.7422199 -1103.2562
+115068.2596038408 3.7422595 -1103.2959
+115069.2596038911 3.7421806 -1103.2366
+115070.2596039413 3.7421019 -1103.2959
+115071.2596039916 3.7421019 -1103.3156
+115072.2596040419 3.7421412 -1103.1774
+115073.2596040922 3.7421019 -1103.2562
+115074.2596041425 3.7421019 -1103.2761
+115075.2596041928 3.7421019 -1103.1774
+115076.2596042431 3.7421019 -1103.3156
+115077.2596042934 3.7420626 -1103.2366
+115078.2596043437 3.7421019 -1103.2562
+115079.259604394 3.7421019 -1103.2562
+115080.2596044443 3.7420626 -1103.2761
+115081.2596044946 3.7420626 -1103.2761
+115082.2596045448 3.7420626 -1103.2562
+115083.2596045951 3.7419839 -1103.197
+115084.2596046454 3.7419446 -1103.2168
+115085.2596046957 3.7418263 -1103.2761
+115086.259604746 3.7419446 -1103.2366
+115087.2596047963 3.7418656 -1103.2959
+115088.2596048466 3.741905 -1103.2562
+115089.2596048969 3.7420626 -1103.3156
+115090.2596049472 3.7419446 -1103.2761
+115091.2596049975 3.7418263 -1103.2168
+115092.2596050478 3.741787 -1103.2562
+115093.2596050981 3.7418656 -1103.2761
+115094.2596051483 3.741905 -1103.2168
+115095.2596051986 3.7418263 -1103.2168
+115096.2596052489 3.741787 -1103.2562
+115097.2596052992 3.7418263 -1103.2959
+115098.2596053495 3.741787 -1103.2562
+115099.2596053998 3.7417083 -1103.2761
+115100.2596054501 3.741787 -1103.2168
+115101.2596055004 3.7419446 -1103.2761
+115102.2596055507 3.7417476 -1103.2959
+115103.259605601 3.7417083 -1103.197
+115104.2596056513 3.7416296 -1103.1576
+115105.2596057015 3.7417083 -1103.2168
+115106.2596057518 3.741787 -1103.2366
+115107.2596058021 3.7417476 -1103.2959
+115108.2596058524 3.741787 -1103.2562
+115109.2596059027 3.7416689 -1103.197
+115110.259605953 3.7416689 -1103.2562
+115111.2596060033 3.7417083 -1103.2366
+115112.2596060536 3.7415507 -1103.2562
+115113.2596061039 3.7415507 -1103.3156
+115114.2596061542 3.741472 -1103.2761
+115115.2596062045 3.741472 -1103.197
+115116.2596062548 3.74159 -1103.2168
+115117.259606305 3.7415113 -1103.197
+115118.2596063553 3.7415507 -1103.2761
+115119.2596064056 3.7414327 -1103.2562
+115120.2596064559 3.7414327 -1103.2562
+115121.2596065062 3.741472 -1103.1774
+115122.2596065565 3.7415113 -1103.1182
+115123.2596066068 3.7414327 -1103.2959
+115124.2596066571 3.741354 -1103.2366
+115125.2596067074 3.7413933 -1103.1774
+115126.2596067577 3.741354 -1103.2366
+115127.259606808 3.7415113 -1103.2168
+115128.2596068583 3.7414327 -1103.2959
+115129.2596069085 3.741472 -1103.197
+115130.2596069588 3.741354 -1103.2366
+115131.2596070091 3.7413933 -1103.2168
+115132.2596070594 3.7413933 -1103.2562
+115133.2596071097 3.741354 -1103.2168
+115134.25960716 3.7413146 -1103.2168
+115135.2596072103 3.7412751 -1103.2562
+115136.2596072606 3.7412751 -1103.2366
+115137.2596073109 3.7413146 -1103.2761
+115138.2596073612 3.7412751 -1103.2761
+115139.2596074115 3.7411571 -1103.2562
+115140.2596074617 3.7411964 -1103.3156
+115141.259607512 3.7412357 -1103.2761
+115142.2596075623 3.7412357 -1103.2562
+115143.2596076126 3.7411177 -1103.2959
+115144.2596076629 3.7411964 -1103.2562
+115145.2596077132 3.7411964 -1103.3353
+115146.2596077635 3.7411571 -1103.2761
+115147.2596078138 3.7411571 -1103.3156
+115148.2596078641 3.7411177 -1103.2761
+115149.2596079144 3.7411571 -1103.2761
+115150.2596079647 3.7411177 -1103.1774
+115151.259608015 3.7411571 -1103.1576
+115152.2596080652 3.741039 -1103.3353
+115153.2596081155 3.7409997 -1103.2366
+115154.2596081658 3.7410784 -1103.2562
+115155.2596082161 3.7411177 -1103.4143
+115156.2596082664 3.7409601 -1103.197
+115157.2596083167 3.7409601 -1103.2761
+115158.259608367 3.7409997 -1103.2366
+115159.2596084173 3.7409997 -1103.2959
+115160.2596084676 3.7409601 -1103.3551
+115161.2596085179 3.741039 -1103.2959
+115162.2596085682 3.7409208 -1103.3353
+115163.2596086184 3.7408814 -1103.2959
+115164.2596086687 3.7409208 -1103.3156
+115165.259608719 3.7409208 -1103.2761
+115166.2596087693 3.741039 -1103.2366
+115167.2596088196 3.7408814 -1103.2168
+115168.2596088699 3.7408421 -1103.2562
+115169.2596089202 3.7408814 -1103.2562
+115170.2596089705 3.7409208 -1103.3353
+115171.2596090208 3.7407634 -1103.1774
+115172.2596090711 3.7407634 -1103.1774
+115173.2596091214 3.7408028 -1103.2562
+115174.2596091717 3.7407241 -1103.2168
+115175.2596092219 3.7408421 -1103.3156
+115176.2596092722 3.7407241 -1103.2366
+115177.2596093225 3.7407241 -1103.197
+115178.2596093728 3.7408028 -1103.3156
+115179.2596094231 3.7407241 -1103.2761
+115180.2596094734 3.7406845 -1103.2562
+115181.2596095237 3.7406452 -1103.197
+115182.259609574 3.7406845 -1103.2168
+115183.2596096243 3.7406845 -1103.3551
+115184.2596096746 3.7406452 -1103.2366
+115185.2596097249 3.7406452 -1103.2562
+115186.2596097752 3.7406058 -1103.2761
+115187.2596098254 3.7405272 -1103.1774
+115188.2596098757 3.7406452 -1103.197
+115189.259609926 3.7407241 -1103.2562
+115190.2596099763 3.7406058 -1103.3353
+115191.2596100266 3.7405272 -1103.2366
+115192.2596100769 3.7404878 -1103.2761
+115193.2596101272 3.7404878 -1103.1576
+115194.2596101775 3.7405272 -1103.197
+115195.2596102278 3.7404485 -1103.2366
+115196.2596102781 3.7404485 -1103.2761
+115197.2596103284 3.7404485 -1103.2366
+115198.2596103786 3.7404878 -1103.2562
+115199.2596104289 3.7404485 -1103.2562
+115200.2596104792 3.7404485 -1103.2959
+115201.2596105295 3.7403696 -1103.2761
+115202.2596105798 3.7404485 -1103.2959
+115203.2596106301 3.7403302 -1103.1182
+115204.2596106804 3.7403696 -1103.2959
+115205.2596107307 3.7403302 -1103.2168
+115206.259610781 3.7403302 -1103.2761
+115207.2596108313 3.7403302 -1103.1774
+115208.2596108816 3.7403302 -1103.1774
+115209.2596109319 3.7403302 -1103.2366
+115210.2596109821 3.7402515 -1103.1378
+115211.2596110324 3.7402515 -1103.2959
+115212.2596110827 3.7403302 -1103.2366
+115213.259611133 3.7402909 -1103.2366
+115214.2596111833 3.7402122 -1103.2366
+115215.2596112336 3.7402122 -1103.2761
+115216.2596112839 3.7403302 -1103.2168
+115217.2596113342 3.7402122 -1103.2366
+115218.2596113845 3.7402515 -1103.2366
+115219.2596114348 3.7401335 -1103.3156
+115220.2596114851 3.7401335 -1103.2366
+115221.2596115354 3.7401729 -1103.2562
+115222.2596115856 3.7401729 -1103.2761
+115223.2596116359 3.7400546 -1103.2562
+115224.2596116862 3.7400153 -1103.2168
+115225.2596117365 3.7400942 -1103.2168
+115226.2596117868 3.7400942 -1103.2562
+115227.2596118371 3.7400153 -1103.2366
+115228.2596118874 3.7400546 -1103.3156
+115229.2596119377 3.7400153 -1103.2168
+115230.259611988 3.7400153 -1103.2761
+115231.2596120383 3.7400153 -1103.2168
+115232.2596120886 3.7399366 -1103.3156
+115233.2596121388 3.7399759 -1103.197
+115234.2596121891 3.7399759 -1103.2168
+115235.2596122394 3.7399366 -1103.197
+115236.2596122897 3.7398973 -1103.2168
+115237.25961234 3.7399366 -1103.2959
+115238.2596123903 3.7398973 -1103.2959
+115239.2596124406 3.7398973 -1103.3156
+115240.2596124909 3.7399759 -1103.2761
+115241.2596125412 3.7399366 -1103.2761
+115242.2596125915 3.7398973 -1103.2761
+115243.2596126418 3.7398973 -1103.197
+115244.2596126921 3.7398579 -1103.2168
+115245.2596127423 3.7398186 -1103.2366
+115246.2596127926 3.7397792 -1103.2959
+115247.2596128429 3.7398186 -1103.197
+115248.2596128932 3.7397792 -1103.1576
+115249.2596129435 3.7397397 -1103.2168
+115250.2596129938 3.7397397 -1103.2562
+115251.2596130441 3.7398186 -1103.197
+115252.2596130944 3.7397397 -1103.1576
+115253.2596131447 3.7397397 -1103.2562
+115254.259613195 3.7397397 -1103.2168
+115255.2596132453 3.739661 -1103.1378
+115256.2596132956 3.7397003 -1103.2168
+115257.2596133458 3.7397003 -1103.197
+115258.2596133961 3.7397003 -1103.197
+115259.2596134464 3.7397003 -1103.2761
+115260.2596134967 3.7396216 -1103.197
+115261.259613547 3.739661 -1103.2562
+115262.2596135973 3.7395823 -1103.2761
+115263.2596136476 3.739543 -1103.3353
+115264.2596136979 3.739543 -1103.2562
+115265.2596137482 3.7395823 -1103.2168
+115266.2596137985 3.7396216 -1103.2366
+115267.2596138488 3.7395823 -1103.1378
+115268.259613899 3.7395036 -1103.1576
+115269.2596139493 3.7394247 -1103.2366
+115270.2596139996 3.7394247 -1103.2562
+115271.2596140499 3.739543 -1103.2959
+115272.2596141002 3.7394247 -1103.1182
+115273.2596141505 3.7395036 -1103.2366
+115274.2596142008 3.7393854 -1103.2761
+115275.2596142511 3.7394247 -1103.2562
+115276.2596143014 3.7395036 -1103.2562
+115277.2596143517 3.7394643 -1103.3156
+115278.259614402 3.7394247 -1103.2562
+115279.2596144523 3.7393067 -1103.2959
+115280.2596145025 3.7394643 -1103.2761
+115281.2596145528 3.7394643 -1103.2761
+115282.2596146031 3.7392673 -1103.2366
+115283.2596146534 3.7394247 -1103.2366
+115284.2596147037 3.739346 -1103.2959
+115285.259614754 3.7393067 -1103.2761
+115286.2596148043 3.739346 -1103.2959
+115287.2596148546 3.7391887 -1103.2366
+115288.2596149049 3.739228 -1103.2761
+115289.2596149552 3.739228 -1103.197
+115290.2596150055 3.7391887 -1103.2168
+115291.2596150558 3.739228 -1103.197
+115292.259615106 3.7391887 -1103.2761
+115293.2596151563 3.7392673 -1103.2959
+115294.2596152066 3.739228 -1103.2366
+115295.2596152569 3.7391491 -1103.197
+115296.2596153072 3.7392673 -1103.2168
+115297.2596153575 3.7391098 -1103.2761
+115298.2596154078 3.7391098 -1103.2562
+115299.2596154581 3.7391098 -1103.2562
+115300.2596155084 3.7391098 -1103.197
+115301.2596155587 3.7391098 -1103.1774
+115302.259615609 3.7389917 -1103.2761
+115303.2596156592 3.7390311 -1103.2761
+115304.2596157095 3.7390704 -1103.2168
+115305.2596157598 3.7390311 -1103.3551
+115306.2596158101 3.7389917 -1103.2366
+115307.2596158604 3.7390704 -1103.197
+115308.2596159107 3.7389917 -1103.197
+115309.259615961 3.7389917 -1103.2761
+115310.2596160113 3.7390311 -1103.2761
+115311.2596160616 3.7389917 -1103.2562
+115312.2596161119 3.7389917 -1103.2959
+115313.2596161622 3.7389524 -1103.2761
+115314.2596162125 3.7389917 -1103.1774
+115315.2596162627 3.7389131 -1103.2959
+115316.259616313 3.7387948 -1103.1774
+115317.2596163633 3.7388737 -1103.2562
+115318.2596164136 3.7388737 -1103.2761
+115319.2596164639 3.7388737 -1103.197
+115320.2596165142 3.7389131 -1103.2168
+115321.2596165645 3.7388341 -1103.2959
+115322.2596166148 3.7387555 -1103.2562
+115323.2596166651 3.7387555 -1103.2366
+115324.2596167154 3.7388341 -1103.1576
+115325.2596167657 3.7388341 -1103.2168
+115326.259616816 3.7387948 -1103.2562
+115327.2596168662 3.7387161 -1103.2168
+115328.2596169165 3.7387555 -1103.3156
+115329.2596169668 3.7387948 -1103.2562
+115330.2596170171 3.7387161 -1103.2562
+115331.2596170674 3.7387555 -1103.3749
+115332.2596171177 3.7386768 -1103.2366
+115333.259617168 3.7385981 -1103.197
+115334.2596172183 3.7385588 -1103.2761
+115335.2596172686 3.7386768 -1103.3156
+115336.2596173189 3.7385588 -1103.1774
+115337.2596173692 3.7385981 -1103.2366
+115338.2596174194 3.7385981 -1103.2366
+115339.2596174697 3.7385981 -1103.2761
+115340.25961752 3.7385981 -1103.1576
+115341.2596175703 3.7385192 -1103.2168
+115342.2596176206 3.7384799 -1103.2366
+115343.2596176709 3.7384799 -1103.2366
+115344.2596177212 3.7385981 -1103.2959
+115345.2596177715 3.7385588 -1103.2761
+115346.2596178218 3.7385981 -1103.2562
+115347.2596178721 3.7384405 -1103.2959
+115348.2596179224 3.7384405 -1103.2366
+115349.2596179727 3.7384799 -1103.3156
+115350.2596180229 3.7384405 -1103.2168
+115351.2596180732 3.7385588 -1103.2168
+115352.2596181235 3.7384799 -1103.2366
+115353.2596181738 3.7384012 -1103.2959
+115354.2596182241 3.7384405 -1103.2366
+115355.2596182744 3.7383225 -1103.2562
+115356.2596183247 3.7384012 -1103.2562
+115357.259618375 3.7383225 -1103.2761
+115358.2596184253 3.7383225 -1103.1378
+115359.2596184756 3.7382438 -1103.2761
+115360.2596185259 3.7383618 -1103.1774
+115361.2596185762 3.7382832 -1103.2168
+115362.2596186264 3.7382438 -1103.2366
+115363.2596186767 3.7382832 -1103.2562
+115364.259618727 3.7382438 -1103.1576
+115365.2596187773 3.7382042 -1103.1774
+115366.2596188276 3.7382438 -1103.3156
+115367.2596188779 3.7381256 -1103.2366
+115368.2596189282 3.7381649 -1103.2366
+115369.2596189785 3.7382438 -1103.1774
+115370.2596190288 3.7382042 -1103.2168
+115371.2596190791 3.7382042 -1103.2366
+115372.2596191294 3.7382042 -1103.2366
+115373.2596191796 3.7381256 -1103.2168
+115374.2596192299 3.7381256 -1103.2761
+115375.2596192802 3.7380469 -1103.2366
+115376.2596193305 3.7381649 -1103.1774
+115377.2596193808 3.7380075 -1103.2366
+115378.2596194311 3.7380469 -1103.2168
+115379.2596194814 3.7380862 -1103.2366
+115380.2596195317 3.7380469 -1103.2168
+115381.259619582 3.7380469 -1103.2366
+115382.2596196323 3.7380862 -1103.2761
+115383.2596196826 3.7380469 -1103.2168
+115384.2596197329 3.7380862 -1103.2761
+115385.2596197831 3.7380469 -1103.3156
+115386.2596198334 3.7380469 -1103.2168
+115387.2596198837 3.7380075 -1103.2168
+115388.259619934 3.7380075 -1103.2959
+115389.2596199843 3.7378893 -1103.2761
+115390.2596200346 3.7378893 -1103.2366
+115391.2596200849 3.73785 -1103.2761
+115392.2596201352 3.73785 -1103.197
+115393.2596201855 3.7378893 -1103.1378
+115394.2596202358 3.7378106 -1103.3156
+115395.2596202861 3.73785 -1103.2761
+115396.2596203364 3.7378106 -1103.2168
+115397.2596203866 3.7378106 -1103.2959
+115398.2596204369 3.7377713 -1103.2562
+115399.2596204872 3.7378106 -1103.197
+115400.2596205375 3.7377713 -1103.197
+115401.2596205878 3.7377713 -1103.3749
+115402.2596206381 3.7375743 -1103.2168
+115403.2596206884 3.7377319 -1103.197
+115404.2596207387 3.7376533 -1103.2761
+115405.259620789 3.7376926 -1103.2168
+115406.2596208393 3.7376533 -1103.197
+115407.2596208896 3.7377319 -1103.2959
+115408.2596209398 3.7377713 -1103.2959
+115409.2596209901 3.7377319 -1103.2168
+115410.2596210404 3.7376533 -1103.1774
+115411.2596210907 3.7375743 -1103.2562
+115412.259621141 3.7376533 -1103.2959
+115413.2596211913 3.7375743 -1103.2562
+115414.2596212416 3.7374563 -1103.2366
+115415.2596212919 3.7375743 -1103.2761
+115416.2596213422 3.7375743 -1103.2959
+115417.2596213925 3.737535 -1103.2168
+115418.2596214428 3.737535 -1103.2959
+115419.2596214931 3.737535 -1103.2761
+115420.2596215433 3.7374563 -1103.2761
+115421.2596215936 3.7374563 -1103.3156
+115422.2596216439 3.737417 -1103.1576
+115423.2596216942 3.737535 -1103.1774
+115424.2596217445 3.7374957 -1103.2562
+115425.2596217948 3.7373776 -1103.2761
+115426.2596218451 3.737417 -1103.2366
+115427.2596218954 3.737417 -1103.3156
+115428.2596219457 3.7373776 -1103.2761
+115429.259621996 3.737417 -1103.1774
+115430.2596220463 3.737417 -1103.2562
+115431.2596220966 3.7373776 -1103.2562
+115432.2596221468 3.7373776 -1103.1774
+115433.2596221971 3.7374563 -1103.2959
+115434.2596222474 3.73722 -1103.2562
+115435.2596222977 3.7372987 -1103.1774
+115436.259622348 3.7372594 -1103.3353
+115437.2596223983 3.7372594 -1103.2562
+115438.2596224486 3.7372594 -1103.2761
+115439.2596224989 3.7372987 -1103.2168
+115440.2596225492 3.73722 -1103.1576
+115441.2596225995 3.73722 -1103.3156
+115442.2596226498 3.73722 -1103.2562
+115443.2596227 3.7371807 -1103.2562
+115444.2596227503 3.7371807 -1103.0391
+115445.2596228006 3.73722 -1103.2366
+115446.2596228509 3.737102 -1103.2761
+115447.2596229012 3.7371807 -1103.2366
+115448.2596229515 3.73722 -1103.2168
+115449.2596230018 3.7371807 -1103.197
+115450.2596230521 3.737102 -1103.3156
+115451.2596231024 3.737102 -1103.2168
+115452.2596231527 3.7369838 -1103.2761
+115453.259623203 3.737102 -1103.1774
+115454.2596232533 3.7370234 -1103.2366
+115455.2596233035 3.7369838 -1103.1576
+115456.2596233538 3.7369444 -1103.2959
+115457.2596234041 3.7369838 -1103.2366
+115458.2596234544 3.7370627 -1103.197
+115459.2596235047 3.7369838 -1103.3749
+115460.259623555 3.7369051 -1103.3551
+115461.2596236053 3.7369838 -1103.2959
+115462.2596236556 3.7369051 -1103.2761
+115463.2596237059 3.7368264 -1103.2761
+115464.2596237562 3.7369051 -1103.3156
+115465.2596238065 3.7368264 -1103.3551
+115466.2596238567 3.7369444 -1103.197
+115467.259623907 3.7367871 -1103.2761
+115468.2596239573 3.7367477 -1103.3156
+115469.2596240076 3.7367477 -1103.2761
+115470.2596240579 3.7367477 -1103.2562
+115471.2596241082 3.7368264 -1103.2168
+115472.2596241585 3.7368264 -1103.1378
+115473.2596242088 3.7368264 -1103.2959
+115474.2596242591 3.7367871 -1103.3353
+115475.2596243094 3.7367871 -1103.1576
+115476.2596243597 3.7368264 -1103.197
+115477.25962441 3.7368264 -1103.3353
+115478.2596244602 3.7366688 -1103.3156
+115479.2596245105 3.7367084 -1103.2168
+115480.2596245608 3.7367477 -1103.2168
+115481.2596246111 3.7367084 -1103.1774
+115482.2596246614 3.7366688 -1103.2562
+115483.2596247117 3.7366688 -1103.1774
+115484.259624762 3.7367084 -1103.2562
+115485.2596248123 3.7366295 -1103.2562
+115486.2596248626 3.7367084 -1103.2959
+115487.2596249129 3.7365901 -1103.3353
+115488.2596249632 3.7365901 -1103.2168
+115489.2596250135 3.7365508 -1103.3551
+115490.2596250637 3.7366295 -1103.2562
+115491.259625114 3.7365115 -1103.2168
+115492.2596251643 3.7365115 -1103.2562
+115493.2596252146 3.7365115 -1103.2761
+115494.2596252649 3.7364721 -1103.2761
+115495.2596253152 3.7365508 -1103.2562
+115496.2596253655 3.7365115 -1103.2959
+115497.2596254158 3.7364328 -1103.197
+115498.2596254661 3.7364328 -1103.3156
+115499.2596255164 3.7363935 -1103.2168
+115500.2596255667 3.7363539 -1103.2959
+115501.2596256169 3.7363935 -1103.2959
+115502.2596256672 3.7364721 -1103.2562
+115503.2596257175 3.7364328 -1103.2366
+115504.2596257678 3.7363145 -1103.3353
+115505.2596258181 3.7364328 -1103.2168
+115506.2596258684 3.7363145 -1103.1774
+115507.2596259187 3.7362359 -1103.197
+115508.259625969 3.7363935 -1103.2168
+115509.2596260193 3.7363145 -1103.2562
+115510.2596260696 3.7362359 -1103.2562
+115511.2596261199 3.7363145 -1103.197
+115512.2596261702 3.7363539 -1103.2959
+115513.2596262204 3.7362752 -1103.2562
+115514.2596262707 3.7361572 -1103.2366
+115515.259626321 3.7362359 -1103.2168
+115516.2596263713 3.7362359 -1103.1378
+115517.2596264216 3.7361572 -1103.2366
+115518.2596264719 3.7361572 -1103.3156
+115519.2596265222 3.7361572 -1103.2761
+115520.2596265725 3.7361178 -1103.197
+115521.2596266228 3.7361965 -1103.2761
+115522.2596266731 3.7361178 -1103.2366
+115523.2596267234 3.7361178 -1103.197
+115524.2596267737 3.7360389 -1103.2366
+115525.2596268239 3.7361965 -1103.2366
+115526.2596268742 3.7361572 -1103.2562
+115527.2596269245 3.7360785 -1103.1774
+115528.2596269748 3.7360785 -1103.2366
+115529.2596270251 3.7360785 -1103.2761
+115530.2596270754 3.7360389 -1103.2959
+115531.2596271257 3.7359996 -1103.2761
+115532.259627176 3.7359996 -1103.2761
+115533.2596272263 3.7360389 -1103.2562
+115534.2596272766 3.7359602 -1103.2562
+115535.2596273269 3.7359602 -1103.3156
+115536.2596273771 3.7359602 -1103.2959
+115537.2596274274 3.7359209 -1103.3156
+115538.2596274777 3.7358816 -1103.2366
+115539.259627528 3.7359209 -1103.3156
+115540.2596275783 3.7359209 -1103.2761
+115541.2596276286 3.7359209 -1103.2168
+115542.2596276789 3.7359602 -1103.2562
+115543.2596277292 3.735724 -1103.3156
+115544.2596277795 3.7358816 -1103.2761
+115545.2596278298 3.7358422 -1103.2761
+115546.2596278801 3.7357635 -1103.2761
+115547.2596279304 3.7358816 -1103.2168
+115548.2596279806 3.7358029 -1103.2761
+115549.2596280309 3.7358029 -1103.3353
+115550.2596280812 3.7357635 -1103.197
+115551.2596281315 3.735724 -1103.2168
+115552.2596281818 3.7356453 -1103.2168
+115553.2596282321 3.7357635 -1103.2562
+115554.2596282824 3.735724 -1103.1576
+115555.2596283327 3.7356846 -1103.1576
+115556.259628383 3.7356846 -1103.197
+115557.2596284333 3.7356846 -1103.2168
+115558.2596284836 3.7356453 -1103.2366
+115559.2596285339 3.735606 -1103.2761
+115560.2596285841 3.7356453 -1103.1378
+115561.2596286344 3.7355666 -1103.2562
+115562.2596286847 3.7357635 -1103.2562
+115563.259628735 3.735606 -1103.2761
+115564.2596287853 3.735606 -1103.2562
+115565.2596288356 3.7354879 -1103.2761
+115566.2596288859 3.7354879 -1103.2366
+115567.2596289362 3.7355273 -1103.2562
+115568.2596289865 3.7355273 -1103.2761
+115569.2596290368 3.7355273 -1103.2366
+115570.2596290871 3.7355273 -1103.2168
+115571.2596291373 3.7353697 -1103.2168
+115572.2596291876 3.7354484 -1103.2366
+115573.2596292379 3.7354879 -1103.2562
+115574.2596292882 3.7354879 -1103.3156
+115575.2596293385 3.7353697 -1103.197
+115576.2596293888 3.735409 -1103.2562
+115577.2596294391 3.7353697 -1103.0984
+115578.2596294894 3.7353697 -1103.1378
+115579.2596295397 3.7353303 -1103.2366
+115580.25962959 3.7353303 -1103.2562
+115581.2596296403 3.735291 -1103.197
+115582.2596296906 3.7353697 -1103.2366
+115583.2596297408 3.7352517 -1103.2761
+115584.2596297911 3.735291 -1103.2562
+115585.2596298414 3.7353303 -1103.2959
+115586.2596298917 3.7353303 -1103.2562
+115587.259629942 3.735291 -1103.2761
+115588.2596299923 3.7353303 -1103.197
+115589.2596300426 3.7352123 -1103.2761
+115590.2596300929 3.7352517 -1103.2366
+115591.2596301432 3.7352517 -1103.2168
+115592.2596301935 3.7351334 -1103.1774
+115593.2596302438 3.7352123 -1103.1576
+115594.2596302941 3.735173 -1103.2366
+115595.2596303443 3.7350941 -1103.3156
+115596.2596303946 3.7351334 -1103.3551
+115597.2596304449 3.7350941 -1103.2959
+115598.2596304952 3.735173 -1103.2366
+115599.2596305455 3.7351334 -1103.2959
+115600.2596305958 3.7350547 -1103.2761
+115601.2596306461 3.7350154 -1103.2562
+115602.2596306964 3.7350547 -1103.1576
+115603.2596307467 3.7350941 -1103.2168
+115604.259630797 3.7350547 -1103.2761
+115605.2596308473 3.7350547 -1103.3156
+115606.2596308975 3.7350547 -1103.197
+115607.2596309478 3.7350154 -1103.1774
+115608.2596309981 3.7350547 -1103.2562
+115609.2596310484 3.7349761 -1103.2562
+115610.2596310987 3.7349367 -1103.2168
+115611.259631149 3.7349367 -1103.2366
+115612.2596311993 3.7348974 -1103.3156
+115613.2596312496 3.7348974 -1103.197
+115614.2596312999 3.7349761 -1103.2168
+115615.2596313502 3.7348185 -1103.2761
+115616.2596314005 3.734858 -1103.197
+115617.2596314508 3.7349761 -1103.2959
+115618.259631501 3.7349367 -1103.2168
+115619.2596315513 3.7348185 -1103.3156
+115620.2596316016 3.734858 -1103.2959
+115621.2596316519 3.7347791 -1103.2366
+115622.2596317022 3.7347791 -1103.2168
+115623.2596317525 3.734858 -1103.2168
+115624.2596318028 3.7348974 -1103.2366
+115625.2596318531 3.7346611 -1103.2761
+115626.2596319034 3.7347791 -1103.2761
+115627.2596319537 3.7347004 -1103.2959
+115628.259632004 3.7347398 -1103.2168
+115629.2596320543 3.7348185 -1103.197
+115630.2596321045 3.7346611 -1103.2959
+115631.2596321548 3.7346611 -1103.2562
+115632.2596322051 3.7346611 -1103.3749
+115633.2596322554 3.7347398 -1103.2761
+115634.2596323057 3.7346611 -1103.3156
+115635.259632356 3.7345035 -1103.2562
+115636.2596324063 3.7345431 -1103.2562
+115637.2596324566 3.7346218 -1103.2959
+115638.2596325069 3.7345431 -1103.1576
+115639.2596325572 3.7345431 -1103.2959
+115640.2596326075 3.7344642 -1103.2761
+115641.2596326577 3.7346218 -1103.2562
+115642.259632708 3.7345824 -1103.2168
+115643.2596327583 3.7344642 -1103.2959
+115644.2596328086 3.7345035 -1103.2168
+115645.2596328589 3.7344248 -1103.2761
+115646.2596329092 3.7345035 -1103.2959
+115647.2596329595 3.7345035 -1103.2761
+115648.2596330098 3.7344642 -1103.3156
+115649.2596330601 3.7344642 -1103.2959
+115650.2596331104 3.7344642 -1103.2562
+115651.2596331607 3.7344248 -1103.197
+115652.259633211 3.7344642 -1103.3353
+115653.2596332612 3.7344248 -1103.2562
+115654.2596333115 3.7343855 -1103.2562
+115655.2596333618 3.7342675 -1103.2761
+115656.2596334121 3.7343462 -1103.197
+115657.2596334624 3.7343068 -1103.1576
+115658.2596335127 3.7342675 -1103.2168
+115659.259633563 3.7342675 -1103.3156
+115660.2596336133 3.7343462 -1103.2761
+115661.2596336636 3.7342675 -1103.3156
+115662.2596337139 3.7342281 -1103.3156
+115663.2596337642 3.7342675 -1103.2168
+115664.2596338145 3.7343462 -1103.2562
+115665.2596338647 3.7342675 -1103.1774
+115666.259633915 3.7341886 -1103.2168
+115667.2596339653 3.7342281 -1103.1378
+115668.2596340156 3.7341492 -1103.2168
+115669.2596340659 3.7341492 -1103.1774
+115670.2596341162 3.7342281 -1103.1774
+115671.2596341665 3.7341099 -1103.2761
+115672.2596342168 3.7341099 -1103.1774
+115673.2596342671 3.7342281 -1103.2761
+115674.2596343174 3.7341886 -1103.2761
+115675.2596343677 3.7340705 -1103.2562
+115676.2596344179 3.7340705 -1103.2562
+115677.2596344682 3.7340705 -1103.2366
+115678.2596345185 3.7340312 -1103.2366
+115679.2596345688 3.7341099 -1103.2761
+115680.2596346191 3.7339919 -1103.2366
+115681.2596346694 3.7340705 -1103.197
+115682.2596347197 3.7339919 -1103.2562
+115683.25963477 3.7339525 -1103.3353
+115684.2596348203 3.7339525 -1103.2959
+115685.2596348706 3.7339525 -1103.2761
+115686.2596349209 3.7339132 -1103.1378
+115687.2596349712 3.7339132 -1103.2366
+115688.2596350214 3.7339525 -1103.2562
+115689.2596350717 3.7338736 -1103.2959
+115690.259635122 3.7339132 -1103.197
+115691.2596351723 3.7338736 -1103.3156
+115692.2596352226 3.7338736 -1103.2562
+115693.2596352729 3.7338736 -1103.2168
+115694.2596353232 3.7337556 -1103.197
+115695.2596353735 3.7338343 -1103.2562
+115696.2596354238 3.7338736 -1103.2959
+115697.2596354741 3.7337556 -1103.2761
+115698.2596355244 3.7337162 -1103.2366
+115699.2596355747 3.7337949 -1103.3551
+115700.2596356249 3.7336769 -1103.2168
+115701.2596356752 3.7337949 -1103.2562
+115702.2596357255 3.7337556 -1103.2959
+115703.2596357758 3.733598 -1103.197
+115704.2596358261 3.7336769 -1103.2562
+115705.2596358764 3.7337162 -1103.1774
+115706.2596359267 3.7336769 -1103.2366
+115707.259635977 3.7336769 -1103.2761
+115708.2596360273 3.7336769 -1103.1774
+115709.2596360776 3.7335587 -1103.3353
+115710.2596361279 3.7335193 -1103.3945
+115711.2596361781 3.7335587 -1103.3156
+115712.2596362284 3.7335193 -1103.2761
+115713.2596362787 3.7334406 -1103.3156
+115714.259636329 3.7335587 -1103.1378
+115715.2596363793 3.7335587 -1103.2562
+115716.2596364296 3.7334013 -1103.197
+115717.2596364799 3.7335193 -1103.2168
+115718.2596365302 3.73348 -1103.1576
+115719.2596365805 3.7335193 -1103.2562
+115720.2596366308 3.73348 -1103.2366
+115721.2596366811 3.7335193 -1103.2168
+115722.2596367314 3.73348 -1103.2366
+115723.2596367816 3.73348 -1103.3156
+115724.2596368319 3.7334406 -1103.2959
+115725.2596368822 3.733362 -1103.2562
+115726.2596369325 3.73348 -1103.2761
+115727.2596369828 3.7334406 -1103.2366
+115728.2596370331 3.7333226 -1103.2562
+115729.2596370834 3.733283 -1103.2168
+115730.2596371337 3.73348 -1103.2959
+115731.259637184 3.7333226 -1103.2168
+115732.2596372343 3.7334013 -1103.3353
+115733.2596372846 3.733283 -1103.2168
+115734.2596373349 3.733362 -1103.197
+115735.2596373851 3.733283 -1103.197
+115736.2596374354 3.733283 -1103.2168
+115737.2596374857 3.733283 -1103.1774
+115738.259637536 3.7332437 -1103.2366
+115739.2596375863 3.733165 -1103.2366
+115740.2596376366 3.7332044 -1103.3156
+115741.2596376869 3.7332437 -1103.3353
+115742.2596377372 3.7331257 -1103.2168
+115743.2596377875 3.733283 -1103.2562
+115744.2596378378 3.7331257 -1103.2366
+115745.2596378881 3.7332044 -1103.2562
+115746.2596379383 3.733047 -1103.2761
+115747.2596379886 3.7332044 -1103.3156
+115748.2596380389 3.7330863 -1103.1774
+115749.2596380892 3.7332044 -1103.2168
+115750.2596381395 3.733047 -1103.2761
+115751.2596381898 3.733047 -1103.1576
+115752.2596382401 3.7330863 -1103.2562
+115753.2596382904 3.733047 -1103.2959
+115754.2596383407 3.733047 -1103.2366
+115755.259638391 3.7330863 -1103.3156
+115756.2596384413 3.7330863 -1103.2168
+115757.2596384916 3.7329288 -1103.2168
+115758.2596385418 3.7330077 -1103.2761
+115759.2596385921 3.7328501 -1103.2562
+115760.2596386424 3.7329681 -1103.197
+115761.2596386927 3.7328501 -1103.2761
+115762.259638743 3.7329288 -1103.2562
+115763.2596387933 3.7328107 -1103.2168
+115764.2596388436 3.7329288 -1103.2761
+115765.2596388939 3.7329288 -1103.2562
+115766.2596389442 3.7329681 -1103.3749
+115767.2596389945 3.7328501 -1103.2761
+115768.2596390448 3.7329288 -1103.2366
+115769.259639095 3.7327714 -1103.1576
+115770.2596391453 3.7328107 -1103.1774
+115771.2596391956 3.7328107 -1103.2761
+115772.2596392459 3.7328107 -1103.2366
+115773.2596392962 3.7327714 -1103.3749
+115774.2596393465 3.7327714 -1103.2562
+115775.2596393968 3.7328107 -1103.2761
+115776.2596394471 3.7327714 -1103.2168
+115777.2596394974 3.7327714 -1103.3353
+115778.2596395477 3.7326531 -1103.2562
+115779.259639598 3.7326531 -1103.1774
+115780.2596396483 3.7326531 -1103.3156
+115781.2596396985 3.7326531 -1103.1774
+115782.2596397488 3.7326927 -1103.197
+115783.2596397991 3.7326927 -1103.2168
+115784.2596398494 3.7325745 -1103.3353
+115785.2596398997 3.7326531 -1103.2562
+115786.25963995 3.7326927 -1103.2366
+115787.2596400003 3.7325745 -1103.197
+115788.2596400506 3.7326531 -1103.3551
+115789.2596401009 3.7326138 -1103.2761
+115790.2596401512 3.7325745 -1103.3353
+115791.2596402015 3.7324171 -1103.1774
+115792.2596402518 3.7325351 -1103.2168
+115793.259640302 3.7325745 -1103.2959
+115794.2596403523 3.7325351 -1103.2959
+115795.2596404026 3.7324958 -1103.3353
+115796.2596404529 3.7324564 -1103.3156
+115797.2596405032 3.7324958 -1103.197
+115798.2596405535 3.7325351 -1103.197
+115799.2596406038 3.7324958 -1103.197
+115800.2596406541 3.7324958 -1103.2366
+115801.2596407044 3.7324171 -1103.197
+115802.2596407547 3.7324171 -1103.2366
+115803.259640805 3.7323382 -1103.3551
+115804.2596408552 3.7323382 -1103.2366
+115805.2596409055 3.7323382 -1103.1576
+115806.2596409558 3.7322989 -1103.2366
+115807.2596410061 3.7323382 -1103.2761
+115808.2596410564 3.7323778 -1103.1774
+115809.2596411067 3.7322989 -1103.2562
+115810.259641157 3.7323778 -1103.1774
+115811.2596412073 3.7323382 -1103.2562
+115812.2596412576 3.7322202 -1103.2959
+115813.2596413079 3.7322989 -1103.3156
+115814.2596413582 3.7321808 -1103.2562
+115815.2596414085 3.7322989 -1103.2761
+115816.2596414587 3.7321808 -1103.1774
+115817.259641509 3.7322595 -1103.3156
+115818.2596415593 3.7322202 -1103.2562
+115819.2596416096 3.7321808 -1103.197
+115820.2596416599 3.7321808 -1103.2562
+115821.2596417102 3.7322202 -1103.2761
+115822.2596417605 3.7321808 -1103.2366
+115823.2596418108 3.7321022 -1103.2959
+115824.2596418611 3.7321415 -1103.2168
+115825.2596419114 3.7320628 -1103.2562
+115826.2596419617 3.7321415 -1103.3353
+115827.259642012 3.7320628 -1103.197
+115828.2596420622 3.7321022 -1103.2168
+115829.2596421125 3.7321415 -1103.2168
+115830.2596421628 3.7320232 -1103.2168
+115831.2596422131 3.7320628 -1103.1182
+115832.2596422634 3.7319446 -1103.2761
+115833.2596423137 3.7320628 -1103.1576
+115834.259642364 3.7319839 -1103.2562
+115835.2596424143 3.7320232 -1103.2959
+115836.2596424646 3.7319839 -1103.2562
+115837.2596425149 3.7319052 -1103.2168
+115838.2596425652 3.7318659 -1103.2366
+115839.2596426154 3.7318265 -1103.197
+115840.2596426657 3.7319839 -1103.2168
+115841.259642716 3.7319446 -1103.2761
+115842.2596427663 3.7318659 -1103.1182
+115843.2596428166 3.7318265 -1103.1774
+115844.2596428669 3.7318659 -1103.2761
+115845.2596429172 3.7317476 -1103.2562
+115846.2596429675 3.7318659 -1103.2761
+115847.2596430178 3.7317476 -1103.2168
+115848.2596430681 3.7317476 -1103.2562
+115849.2596431184 3.7318659 -1103.2168
+115850.2596431687 3.7317476 -1103.2761
+115851.2596432189 3.7317476 -1103.197
+115852.2596432692 3.7317476 -1103.197
+115853.2596433195 3.7317872 -1103.3353
+115854.2596433698 3.7317476 -1103.2959
+115855.2596434201 3.7316689 -1103.197
+115856.2596434704 3.7316689 -1103.2562
+115857.2596435207 3.7317083 -1103.1774
+115858.259643571 3.7316689 -1103.2168
+115859.2596436213 3.7316689 -1103.2366
+115860.2596436716 3.7316296 -1103.2562
+115861.2596437219 3.7316296 -1103.2959
+115862.2596437722 3.7316689 -1103.197
+115863.2596438224 3.7316689 -1103.2168
+115864.2596438727 3.7315903 -1103.1774
+115865.259643923 3.7316689 -1103.2168
+115866.2596439733 3.7315509 -1103.2562
+115867.2596440236 3.7316689 -1103.2562
+115868.2596440739 3.7315116 -1103.2761
+115869.2596441242 3.7315116 -1103.2562
+115870.2596441745 3.7314723 -1103.2168
+115871.2596442248 3.7315116 -1103.2366
+115872.2596442751 3.7314723 -1103.2761
+115873.2596443254 3.7314327 -1103.2168
+115874.2596443756 3.7314327 -1103.2366
+115875.2596444259 3.7314327 -1103.3156
+115876.2596444762 3.7314723 -1103.1774
+115877.2596445265 3.7314327 -1103.2562
+115878.2596445768 3.7314327 -1103.2168
+115879.2596446271 3.7314327 -1103.3156
+115880.2596446774 3.7313933 -1103.2366
+115881.2596447277 3.7314327 -1103.2959
+115882.259644778 3.731354 -1103.2366
+115883.2596448283 3.7312753 -1103.197
+115884.2596448786 3.7313147 -1103.2366
+115885.2596449289 3.7312753 -1103.2562
+115886.2596449791 3.7312753 -1103.2366
+115887.2596450294 3.7313147 -1103.2761
+115888.2596450797 3.7311966 -1103.3353
+115889.25964513 3.7313933 -1103.2168
+115890.2596451803 3.731236 -1103.197
+115891.2596452306 3.7311966 -1103.2366
+115892.2596452809 3.731236 -1103.2168
+115893.2596453312 3.7313147 -1103.2168
+115894.2596453815 3.7311966 -1103.3156
+115895.2596454318 3.731236 -1103.2168
+115896.2596454821 3.731236 -1103.3156
+115897.2596455324 3.7311966 -1103.2959
+115898.2596455826 3.7311573 -1103.1774
+115899.2596456329 3.731039 -1103.2168
+115900.2596456832 3.7311177 -1103.2168
+115901.2596457335 3.7309997 -1103.1774
+115902.2596457838 3.7310784 -1103.197
+115903.2596458341 3.7311573 -1103.1576
+115904.2596458844 3.7311177 -1103.197
+115905.2596459347 3.7310784 -1103.2761
+115906.259645985 3.730921 -1103.2761
+115907.2596460353 3.7309997 -1103.2959
+115908.2596460856 3.7309997 -1103.2168
+115909.2596461358 3.731039 -1103.197
+115910.2596461861 3.7309997 -1103.2761
+115911.2596462364 3.7309604 -1103.197
+115912.2596462867 3.7309997 -1103.2761
+115913.259646337 3.730921 -1103.2562
+115914.2596463873 3.730921 -1103.2168
+115915.2596464376 3.7309604 -1103.2168
+115916.2596464879 3.7309997 -1103.2366
+115917.2596465382 3.7307634 -1103.2366
+115918.2596465885 3.7308817 -1103.2562
+115919.2596466388 3.7309604 -1103.2959
+115920.2596466891 3.7307634 -1103.1774
+115921.2596467393 3.730921 -1103.2366
+115922.2596467896 3.7308424 -1103.2562
+115923.2596468399 3.7307634 -1103.2366
+115924.2596468902 3.7307241 -1103.197
+115925.2596469405 3.7308028 -1103.2761
+115926.2596469908 3.7307634 -1103.2366
+115927.2596470411 3.7308424 -1103.2168
+115928.2596470914 3.7306848 -1103.2168
+115929.2596471417 3.7306848 -1103.3353
+115930.259647192 3.7307241 -1103.2761
+115931.2596472423 3.7307634 -1103.2366
+115932.2596472926 3.7306848 -1103.2366
+115933.2596473428 3.7306454 -1103.2562
+115934.2596473931 3.7307634 -1103.2562
+115935.2596474434 3.7306848 -1103.2168
+115936.2596474937 3.7306061 -1103.2562
+115937.259647544 3.7306061 -1103.2366
+115938.2596475943 3.7306454 -1103.2562
+115939.2596476446 3.7306454 -1103.1774
+115940.2596476949 3.7305667 -1103.1576
+115941.2596477452 3.7306454 -1103.1774
+115942.2596477955 3.7306061 -1103.2366
+115943.2596478458 3.7306061 -1103.2168
+115944.259647896 3.7305667 -1103.2562
+115945.2596479463 3.7306061 -1103.2562
+115946.2596479966 3.7305667 -1103.2562
+115947.2596480469 3.7305274 -1103.2959
+115948.2596480972 3.7304485 -1103.3156
+115949.2596481475 3.7305274 -1103.2366
+115950.2596481978 3.7305667 -1103.2959
+115951.2596482481 3.7303698 -1103.2761
+115952.2596482984 3.7304878 -1103.1576
+115953.2596483487 3.7304091 -1103.2959
+115954.259648399 3.7305667 -1103.2562
+115955.2596484493 3.7304878 -1103.2959
+115956.2596484995 3.7303698 -1103.2761
+115957.2596485498 3.7303305 -1103.2959
+115958.2596486001 3.7303305 -1103.197
+115959.2596486504 3.7302911 -1103.2761
+115960.2596487007 3.7303305 -1103.2168
+115961.259648751 3.7302911 -1103.197
+115962.2596488013 3.7302518 -1103.2168
+115963.2596488516 3.7302911 -1103.2562
+115964.2596489019 3.7303305 -1103.2562
+115965.2596489522 3.7302911 -1103.3156
+115966.2596490025 3.7302518 -1103.2959
+115967.2596490528 3.7303698 -1103.2366
+115968.259649103 3.7301729 -1103.2168
+115969.2596491533 3.7303305 -1103.2959
+115970.2596492036 3.7302122 -1103.2959
+115971.2596492539 3.7301729 -1103.2168
+115972.2596493042 3.7301729 -1103.1576
+115973.2596493545 3.7300942 -1103.2366
+115974.2596494048 3.7301729 -1103.2959
+115975.2596494551 3.7300942 -1103.2168
+115976.2596495054 3.7300549 -1103.2562
+115977.2596495557 3.7300549 -1103.3156
+115978.259649606 3.7300942 -1103.2761
+115979.2596496562 3.7300549 -1103.1576
+115980.2596497065 3.7300155 -1103.197
+115981.2596497568 3.7300155 -1103.197
+115982.2596498071 3.7300155 -1103.2761
+115983.2596498574 3.7299762 -1103.3156
+115984.2596499077 3.7299368 -1103.2959
+115985.259649958 3.7300155 -1103.2959
+115986.2596500083 3.7300155 -1103.1774
+115987.2596500586 3.7300155 -1103.2761
+115988.2596501089 3.7299368 -1103.2562
+115989.2596501592 3.7298579 -1103.2959
+115990.2596502095 3.7300155 -1103.2168
+115991.2596502597 3.7298973 -1103.2562
+115992.25965031 3.7298973 -1103.1576
+115993.2596503603 3.7298973 -1103.2761
+115994.2596504106 3.7298186 -1103.2168
+115995.2596504609 3.7298579 -1103.3156
+115996.2596505112 3.7298973 -1103.2761
+115997.2596505615 3.7298186 -1103.2761
+115998.2596506118 3.7298973 -1103.2761
+115999.2596506621 3.7298579 -1103.2366
+116000.2596507124 3.7298579 -1103.2366
+116001.2596507627 3.7297792 -1103.2761
+116002.259650813 3.7297792 -1103.1774
+116003.2596508632 3.7296612 -1103.2168
+116004.2596509135 3.7297006 -1103.1576
+116005.2596509638 3.7297006 -1103.1378
+116006.2596510141 3.7295823 -1103.1378
+116007.2596510644 3.7296219 -1103.2562
+116008.2596511147 3.7296612 -1103.197
+116009.259651165 3.7296612 -1103.1774
+116010.2596512153 3.7296219 -1103.2168
+116011.2596512656 3.7295823 -1103.2562
+116012.2596513159 3.7297399 -1103.2959
+116013.2596513662 3.729543 -1103.2168
+116014.2596514164 3.729543 -1103.2168
+116015.2596514667 3.7295036 -1103.2366
+116016.259651517 3.7295823 -1103.2168
+116017.2596515673 3.7296219 -1103.1774
+116018.2596516176 3.7295036 -1103.2366
+116019.2596516679 3.7296612 -1103.3945
+116020.2596517182 3.7295036 -1103.2562
+116021.2596517685 3.7295036 -1103.0984
+116022.2596518188 3.729543 -1103.2366
+116023.2596518691 3.7295036 -1103.2366
+116024.2596519194 3.7293856 -1103.3353
+116025.2596519697 3.729543 -1103.1576
+116026.2596520199 3.7294643 -1103.2562
+116027.2596520702 3.7294643 -1103.197
+116028.2596521205 3.729425 -1103.2562
+116029.2596521708 3.7293856 -1103.2168
+116030.2596522211 3.7293069 -1103.2959
+116031.2596522714 3.7293069 -1103.2761
+116032.2596523217 3.7293856 -1103.2366
+116033.259652372 3.7293463 -1103.2562
+116034.2596524223 3.7293463 -1103.197
+116035.2596524726 3.7292674 -1103.2562
+116036.2596525229 3.7293463 -1103.2168
+116037.2596525732 3.7291887 -1103.1774
+116038.2596526234 3.729228 -1103.2761
+116039.2596526737 3.7292674 -1103.2761
+116040.259652724 3.7293463 -1103.3156
+116041.2596527743 3.729228 -1103.3353
+116042.2596528246 3.7292674 -1103.2761
+116043.2596528749 3.729228 -1103.2761
+116044.2596529252 3.729228 -1103.2168
+116045.2596529755 3.7291493 -1103.2366
+116046.2596530258 3.729228 -1103.1774
+116047.2596530761 3.7291887 -1103.2959
+116048.2596531264 3.7291493 -1103.2366
+116049.2596531766 3.7291887 -1103.2959
+116050.2596532269 3.7291887 -1103.2562
+116051.2596532772 3.7290707 -1103.2761
+116052.2596533275 3.7291493 -1103.2366
+116053.2596533778 3.72911 -1103.197
+116054.2596534281 3.7291887 -1103.2562
+116055.2596534784 3.7290313 -1103.2168
+116056.2596535287 3.728992 -1103.2761
+116057.259653579 3.72911 -1103.197
+116058.2596536293 3.7290313 -1103.2366
+116059.2596536796 3.7290313 -1103.1774
+116060.2596537299 3.728992 -1103.2562
+116061.2596537801 3.7289524 -1103.3156
+116062.2596538304 3.7289524 -1103.2366
+116063.2596538807 3.728992 -1103.197
+116064.259653931 3.728992 -1103.2562
+116065.2596539813 3.7290313 -1103.2562
+116066.2596540316 3.728992 -1103.2959
+116067.2596540819 3.7288737 -1103.3353
+116068.2596541322 3.7289524 -1103.3156
+116069.2596541825 3.7288344 -1103.1774
+116070.2596542328 3.7289524 -1103.2168
+116071.2596542831 3.7288344 -1103.2562
+116072.2596543333 3.7289524 -1103.2366
+116073.2596543836 3.7288344 -1103.2959
+116074.2596544339 3.7289131 -1103.2366
+116075.2596544842 3.7287557 -1103.197
+116076.2596545345 3.7287951 -1103.2761
+116077.2596545848 3.7288737 -1103.197
+116078.2596546351 3.7287557 -1103.2959
+116079.2596546854 3.7288344 -1103.2366
+116080.2596547357 3.728677 -1103.3551
+116081.259654786 3.728677 -1103.1774
+116082.2596548363 3.7286375 -1103.1774
+116083.2596548866 3.7287557 -1103.2761
+116084.2596549368 3.7286375 -1103.2761
+116085.2596549871 3.728677 -1103.2366
+116086.2596550374 3.7286375 -1103.197
+116087.2596550877 3.728677 -1103.197
+116088.259655138 3.7285981 -1103.3156
+116089.2596551883 3.7285981 -1103.2366
+116090.2596552386 3.728677 -1103.1576
+116091.2596552889 3.7287164 -1103.2562
+116092.2596553392 3.7285588 -1103.2168
+116093.2596553895 3.7285588 -1103.2761
+116094.2596554398 3.7285981 -1103.2168
+116095.2596554901 3.7285194 -1103.197
+116096.2596555403 3.7284801 -1103.1378
+116097.2596555906 3.7285194 -1103.0785
+116098.2596556409 3.7284801 -1103.2168
+116099.2596556912 3.7284801 -1103.2366
+116100.2596557415 3.7284801 -1103.2959
+116101.2596557918 3.7284408 -1103.2168
+116102.2596558421 3.7284014 -1103.2959
+116103.2596558924 3.7284408 -1103.2959
+116104.2596559427 3.7284801 -1103.2562
+116105.259655993 3.7283225 -1103.197
+116106.2596560433 3.7284408 -1103.2168
+116107.2596560935 3.7284801 -1103.2562
+116108.2596561438 3.7283618 -1103.2959
+116109.2596561941 3.7284014 -1103.3156
+116110.2596562444 3.7283225 -1103.2168
+116111.2596562947 3.7282438 -1103.2168
+116112.259656345 3.7283225 -1103.3156
+116113.2596563953 3.7282832 -1103.1378
+116114.2596564456 3.7284014 -1103.1576
+116115.2596564959 3.7283618 -1103.197
+116116.2596565462 3.7282832 -1103.3353
+116117.2596565965 3.7282045 -1103.2366
+116118.2596566468 3.7281258 -1103.2562
+116119.259656697 3.7282045 -1103.2959
+116120.2596567473 3.7281651 -1103.2562
+116121.2596567976 3.7281258 -1103.2168
+116122.2596568479 3.7282045 -1103.0984
+116123.2596568982 3.7282438 -1103.2761
+116124.2596569485 3.7282438 -1103.1576
+116125.2596569988 3.7281258 -1103.2562
+116126.2596570491 3.7281651 -1103.3551
+116127.2596570994 3.7282045 -1103.2761
+116128.2596571497 3.7280469 -1103.1774
+116129.2596572 3.7280469 -1103.2959
+116130.2596572503 3.7281258 -1103.2366
+116131.2596573005 3.7280469 -1103.2761
+116132.2596573508 3.7280865 -1103.2562
+116133.2596574011 3.7279289 -1103.2366
+116134.2596574514 3.7279682 -1103.2959
+116135.2596575017 3.7280865 -1103.2959
+116136.259657552 3.7280865 -1103.2959
+116137.2596576023 3.7279682 -1103.2761
+116138.2596576526 3.7279289 -1103.3156
+116139.2596577029 3.7279289 -1103.2761
+116140.2596577532 3.7279289 -1103.2366
+116141.2596578035 3.7278895 -1103.2168
+116142.2596578537 3.7278109 -1103.2959
+116143.259657904 3.7279682 -1103.2168
+116144.2596579543 3.7279682 -1103.2562
+116145.2596580046 3.7278895 -1103.3353
+116146.2596580549 3.7278895 -1103.2761
+116147.2596581052 3.7278502 -1103.2761
+116148.2596581555 3.7278895 -1103.2168
+116149.2596582058 3.7279289 -1103.2168
+116150.2596582561 3.7278109 -1103.197
+116151.2596583064 3.7278502 -1103.197
+116152.2596583567 3.7277715 -1103.2761
+116153.259658407 3.7276926 -1103.2366
+116154.2596584572 3.7277319 -1103.2959
+116155.2596585075 3.7276533 -1103.197
+116156.2596585578 3.7277715 -1103.1378
+116157.2596586081 3.7278502 -1103.2168
+116158.2596586584 3.7277715 -1103.2366
+116159.2596587087 3.7276533 -1103.2761
+116160.259658759 3.7276533 -1103.2168
+116161.2596588093 3.7276533 -1103.2562
+116162.2596588596 3.7277715 -1103.2562
+116163.2596589099 3.7276533 -1103.2761
+116164.2596589602 3.7276533 -1103.3551
+116165.2596590105 3.7275746 -1103.2959
+116166.2596590607 3.7274959 -1103.2366
+116167.259659111 3.7274566 -1103.2366
+116168.2596591613 3.7276139 -1103.2168
+116169.2596592116 3.7274566 -1103.2366
+116170.2596592619 3.7276139 -1103.2761
+116171.2596593122 3.7275352 -1103.2959
+116172.2596593625 3.7275746 -1103.2562
+116173.2596594128 3.7275746 -1103.1576
+116174.2596594631 3.7275352 -1103.2168
+116175.2596595134 3.7275352 -1103.1774
+116176.2596595637 3.7274566 -1103.2366
+116177.2596596139 3.7274566 -1103.3156
+116178.2596596642 3.727417 -1103.2959
+116179.2596597145 3.727417 -1103.2761
+116180.2596597648 3.7274959 -1103.2562
+116181.2596598151 3.7273777 -1103.197
+116182.2596598654 3.7273777 -1103.2168
+116183.2596599157 3.727417 -1103.2562
+116184.259659966 3.7273383 -1103.2761
+116185.2596600163 3.7273777 -1103.2168
+116186.2596600666 3.727299 -1103.2959
+116187.2596601169 3.7272596 -1103.197
+116188.2596601672 3.7272203 -1103.1774
+116189.2596602174 3.727299 -1103.2959
+116190.2596602677 3.727299 -1103.2168
+116191.259660318 3.727417 -1103.2761
+116192.2596603683 3.727299 -1103.2366
+116193.2596604186 3.7272596 -1103.3156
+116194.2596604689 3.727181 -1103.3156
+116195.2596605192 3.7272203 -1103.2366
+116196.2596605695 3.727181 -1103.3156
+116197.2596606198 3.727299 -1103.2562
+116198.2596606701 3.7272203 -1103.197
+116199.2596607204 3.727102 -1103.2761
+116200.2596607707 3.727181 -1103.2562
+116201.2596608209 3.7271416 -1103.2761
+116202.2596608712 3.7271416 -1103.197
+116203.2596609215 3.7272203 -1103.2959
+116204.2596609718 3.727102 -1103.2562
+116205.2596610221 3.727102 -1103.2761
+116206.2596610724 3.727102 -1103.2562
+116207.2596611227 3.7271416 -1103.2959
+116208.259661173 3.727102 -1103.1576
+116209.2596612233 3.7270234 -1103.2761
+116210.2596612736 3.7270234 -1103.2761
+116211.2596613239 3.7269447 -1103.2168
+116212.2596613741 3.726866 -1103.197
+116213.2596614244 3.7270234 -1103.197
+116214.2596614747 3.726984 -1103.1774
+116215.259661525 3.726866 -1103.2959
+116216.2596615753 3.7269053 -1103.1774
+116217.2596616256 3.726866 -1103.2562
+116218.2596616759 3.7269053 -1103.197
+116219.2596617262 3.7269447 -1103.197
+116220.2596617765 3.726984 -1103.1378
+116221.2596618268 3.726866 -1103.2168
+116222.2596618771 3.7269447 -1103.2761
+116223.2596619274 3.7268267 -1103.1774
+116224.2596619776 3.7269053 -1103.2761
+116225.2596620279 3.7269447 -1103.2959
+116226.2596620782 3.7267871 -1103.2761
+116227.2596621285 3.7268267 -1103.1774
+116228.2596621788 3.7268267 -1103.2562
+116229.2596622291 3.726866 -1103.2366
+116230.2596622794 3.7267871 -1103.2761
+116231.2596623297 3.7267871 -1103.2761
+116232.25966238 3.7266691 -1103.2366
+116233.2596624303 3.7267478 -1103.2366
+116234.2596624806 3.7267478 -1103.1576
+116235.2596625309 3.7267084 -1103.2761
+116236.2596625811 3.7266691 -1103.2366
+116237.2596626314 3.7267478 -1103.2366
+116238.2596626817 3.7267478 -1103.2562
+116239.259662732 3.7266297 -1103.197
+116240.2596627823 3.7266691 -1103.2959
+116241.2596628326 3.7266691 -1103.2562
+116242.2596628829 3.7265511 -1103.3156
+116243.2596629332 3.7266297 -1103.197
+116244.2596629835 3.7265904 -1103.1576
+116245.2596630338 3.7265511 -1103.197
+116246.2596630841 3.7265115 -1103.2366
+116247.2596631343 3.7265511 -1103.1774
+116248.2596631846 3.7265904 -1103.197
+116249.2596632349 3.7265115 -1103.3156
+116250.2596632852 3.7265511 -1103.2959
+116251.2596633355 3.7265904 -1103.2959
+116252.2596633858 3.7265511 -1103.2168
+116253.2596634361 3.7264721 -1103.3551
+116254.2596634864 3.7263935 -1103.2562
+116255.2596635367 3.7263935 -1103.2562
+116256.259663587 3.7264328 -1103.1576
+116257.2596636373 3.7263541 -1103.197
+116258.2596636876 3.7263935 -1103.2366
+116259.2596637378 3.7263148 -1103.2562
+116260.2596637881 3.7265115 -1103.2959
+116261.2596638384 3.7263148 -1103.2168
+116262.2596638887 3.7263541 -1103.2562
+116263.259663939 3.7263541 -1103.2168
+116264.2596639893 3.7262361 -1103.2959
+116265.2596640396 3.7263935 -1103.3353
+116266.2596640899 3.7263935 -1103.2366
+116267.2596641402 3.7263148 -1103.2959
+116268.2596641905 3.7263148 -1103.197
+116269.2596642408 3.7261965 -1103.3156
+116270.2596642911 3.7261965 -1103.2562
+116271.2596643413 3.7261965 -1103.3156
+116272.2596643916 3.7262361 -1103.2761
+116273.2596644419 3.7262754 -1103.2366
+116274.2596644922 3.7261572 -1103.2562
+116275.2596645425 3.7261572 -1103.2562
+116276.2596645928 3.7260785 -1103.2761
+116277.2596646431 3.7261572 -1103.2761
+116278.2596646934 3.7261178 -1103.2168
+116279.2596647437 3.7260392 -1103.2562
+116280.259664794 3.7260785 -1103.2366
+116281.2596648443 3.7260785 -1103.2366
+116282.2596648945 3.7260392 -1103.2959
+116283.2596649448 3.7260785 -1103.2562
+116284.2596649951 3.7260392 -1103.3156
+116285.2596650454 3.7260392 -1103.2366
+116286.2596650957 3.7259605 -1103.3749
+116287.259665146 3.7260392 -1103.2761
+116288.2596651963 3.7259998 -1103.3156
+116289.2596652466 3.7260392 -1103.2168
+116290.2596652969 3.7259605 -1103.197
+116291.2596653472 3.7258816 -1103.2168
+116292.2596653975 3.7258816 -1103.3353
+116293.2596654478 3.7258816 -1103.3156
+116294.259665498 3.7258029 -1103.2761
+116295.2596655483 3.7259212 -1103.2761
+116296.2596655986 3.7259605 -1103.2959
+116297.2596656489 3.7258422 -1103.2562
+116298.2596656992 3.7258816 -1103.2959
+116299.2596657495 3.7257242 -1103.3156
+116300.2596657998 3.7257636 -1103.2366
+116301.2596658501 3.7258816 -1103.2366
+116302.2596659004 3.7258422 -1103.2562
+116303.2596659507 3.7258422 -1103.1774
+116304.259666001 3.7257636 -1103.2959
+116305.2596660513 3.7257636 -1103.2562
+116306.2596661015 3.7258029 -1103.2168
+116307.2596661518 3.7258422 -1103.2366
+116308.2596662021 3.7256455 -1103.2761
+116309.2596662524 3.7257242 -1103.2761
+116310.2596663027 3.7257242 -1103.2168
+116311.259666353 3.7257242 -1103.197
+116312.2596664033 3.7256455 -1103.2761
+116313.2596664536 3.7255666 -1103.1774
+116314.2596665039 3.7256455 -1103.3353
+116315.2596665542 3.7256849 -1103.2168
+116316.2596666045 3.7256062 -1103.2562
+116317.2596666547 3.7256455 -1103.2959
+116318.259666705 3.7256849 -1103.2366
+116319.2596667553 3.7256062 -1103.1774
+116320.2596668056 3.7254879 -1103.3353
+116321.2596668559 3.7256062 -1103.2761
+116322.2596669062 3.7256062 -1103.3551
+116323.2596669565 3.7254879 -1103.197
+116324.2596670068 3.7254879 -1103.197
+116325.2596670571 3.7255666 -1103.2562
+116326.2596671074 3.7255666 -1103.2168
+116327.2596671577 3.7254093 -1103.2959
+116328.259667208 3.7254093 -1103.2562
+116329.2596672582 3.7254879 -1103.2366
+116330.2596673085 3.7254486 -1103.1576
+116331.2596673588 3.7254879 -1103.2959
+116332.2596674091 3.7253306 -1103.2959
+116333.2596674594 3.7254486 -1103.2959
+116334.2596675097 3.7254486 -1103.197
+116335.25966756 3.7254879 -1103.2168
+116336.2596676103 3.7253699 -1103.1182
+116337.2596676606 3.7252517 -1103.1774
+116338.2596677109 3.7253699 -1103.2959
+116339.2596677612 3.7252123 -1103.2761
+116340.2596678115 3.7253306 -1103.1774
+116341.2596678617 3.7252517 -1103.2562
+116342.259667912 3.7252123 -1103.2168
+116343.2596679623 3.7252517 -1103.2168
+116344.2596680126 3.7253699 -1103.3551
+116345.2596680629 3.7252517 -1103.2562
+116346.2596681132 3.7252123 -1103.1378
+116347.2596681635 3.7252123 -1103.197
+116348.2596682138 3.725173 -1103.2761
+116349.2596682641 3.7252517 -1103.1774
+116350.2596683144 3.7252123 -1103.2761
+116351.2596683647 3.725173 -1103.2959
+116352.2596684149 3.7250943 -1103.197
+116353.2596684652 3.725173 -1103.2761
+116354.2596685155 3.7250943 -1103.1378
+116355.2596685658 3.725173 -1103.2959
+116356.2596686161 3.7251337 -1103.2959
+116357.2596686664 3.725173 -1103.3156
+116358.2596687167 3.725173 -1103.2168
+116359.259668767 3.7250943 -1103.2959
+116360.2596688173 3.7250156 -1103.2168
+116361.2596688676 3.7250156 -1103.1378
+116362.2596689179 3.725055 -1103.2366
+116363.2596689682 3.7250156 -1103.2366
+116364.2596690184 3.7250156 -1103.1576
+116365.2596690687 3.7250156 -1103.2168
+116366.259669119 3.7249367 -1103.2761
+116367.2596691693 3.7249763 -1103.2366
+116368.2596692196 3.7250156 -1103.2366
+116369.2596692699 3.7249367 -1103.1774
+116370.2596693202 3.7249367 -1103.197
+116371.2596693705 3.724858 -1103.3156
+116372.2596694208 3.7248187 -1103.2562
+116373.2596694711 3.724858 -1103.197
+116374.2596695214 3.7248974 -1103.2168
+116375.2596695716 3.724858 -1103.197
+116376.2596696219 3.724858 -1103.3156
+116377.2596696722 3.7248187 -1103.2168
+116378.2596697225 3.7248187 -1103.197
+116379.2596697728 3.724858 -1103.2562
+116380.2596698231 3.72474 -1103.2761
+116381.2596698734 3.7248974 -1103.2366
+116382.2596699237 3.7248187 -1103.2562
+116383.259669974 3.7248974 -1103.2761
+116384.2596700243 3.7246218 -1103.2562
+116385.2596700746 3.7247794 -1103.2168
+116386.2596701249 3.72474 -1103.2959
+116387.2596701751 3.72474 -1103.197
+116388.2596702254 3.7246611 -1103.2761
+116389.2596702757 3.7246218 -1103.2761
+116390.259670326 3.7246611 -1103.2366
+116391.2596703763 3.7247007 -1103.2959
+116392.2596704266 3.7247007 -1103.2959
+116393.2596704769 3.7246611 -1103.2562
+116394.2596705272 3.7245824 -1103.3551
+116395.2596705775 3.7245824 -1103.2168
+116396.2596706278 3.7246218 -1103.197
+116397.2596706781 3.7246218 -1103.2562
+116398.2596707284 3.7244644 -1103.2168
+116399.2596707786 3.7246218 -1103.2562
+116400.2596708289 3.7245431 -1103.3551
+116401.2596708792 3.7245824 -1103.197
+116402.2596709295 3.7246611 -1103.3156
+116403.2596709798 3.7245431 -1103.2562
+116404.2596710301 3.7244644 -1103.197
+116405.2596710804 3.7243462 -1103.2761
+116406.2596711307 3.7244644 -1103.3156
+116407.259671181 3.7245431 -1103.2366
+116408.2596712313 3.7244251 -1103.3945
+116409.2596712816 3.7245431 -1103.2366
+116410.2596713318 3.7243068 -1103.2562
+116411.2596713821 3.7244644 -1103.2761
+116412.2596714324 3.7243462 -1103.2168
+116413.2596714827 3.7243462 -1103.2959
+116414.259671533 3.7243068 -1103.2366
+116415.2596715833 3.7244251 -1103.1576
+116416.2596716336 3.7243462 -1103.2366
+116417.2596716839 3.7242281 -1103.197
+116418.2596717342 3.7242675 -1103.1774
+116419.2596717845 3.7242675 -1103.2761
+116420.2596718348 3.7242281 -1103.2959
+116421.2596718851 3.7242281 -1103.2168
+116422.2596719353 3.7242281 -1103.2168
+116423.2596719856 3.7242281 -1103.1774
+116424.2596720359 3.7242281 -1103.2168
+116425.2596720862 3.7242281 -1103.2366
+116426.2596721365 3.7241101 -1103.2959
+116427.2596721868 3.7241888 -1103.2761
+116428.2596722371 3.7242281 -1103.2366
+116429.2596722874 3.7241495 -1103.2562
+116430.2596723377 3.7241101 -1103.2761
+116431.259672388 3.7241101 -1103.197
+116432.2596724383 3.7240708 -1103.197
+116433.2596724886 3.7241101 -1103.2959
+116434.2596725388 3.7241495 -1103.2761
+116435.2596725891 3.7240312 -1103.2562
+116436.2596726394 3.7240708 -1103.2168
+116437.2596726897 3.7239919 -1103.197
+116438.25967274 3.7241101 -1103.2168
+116439.2596727903 3.7239919 -1103.3353
+116440.2596728406 3.7239525 -1103.2959
+116441.2596728909 3.7239919 -1103.2761
+116442.2596729412 3.7238739 -1103.3353
+116443.2596729915 3.7239132 -1103.2168
+116444.2596730418 3.7239525 -1103.3353
+116445.259673092 3.7239132 -1103.3156
+116446.2596731423 3.7239525 -1103.2168
+116447.2596731926 3.7239132 -1103.3749
+116448.2596732429 3.7240312 -1103.2562
+116449.2596732932 3.7238739 -1103.2562
+116450.2596733435 3.7239132 -1103.3156
+116451.2596733938 3.7237952 -1103.2366
+116452.2596734441 3.7239132 -1103.1774
+116453.2596734944 3.7239525 -1103.2562
+116454.2596735447 3.7237558 -1103.2959
+116455.259673595 3.7237558 -1103.2366
+116456.2596736453 3.7238739 -1103.2959
+116457.2596736955 3.7238345 -1103.2562
+116458.2596737458 3.7237952 -1103.2366
+116459.2596737961 3.7237163 -1103.2366
+116460.2596738464 3.7237558 -1103.2366
+116461.2596738967 3.7237163 -1103.2168
+116462.259673947 3.7237163 -1103.2562
+116463.2596739973 3.7237163 -1103.2168
+116464.2596740476 3.7237558 -1103.3749
+116465.2596740979 3.7235982 -1103.2366
+116466.2596741482 3.7236769 -1103.2761
+116467.2596741985 3.7236769 -1103.2366
+116468.2596742488 3.7236376 -1103.2562
+116469.259674299 3.7235982 -1103.1576
+116470.2596743493 3.7236376 -1103.2366
+116471.2596743996 3.7235982 -1103.2761
+116472.2596744499 3.7236376 -1103.2761
+116473.2596745002 3.7235982 -1103.2562
+116474.2596745505 3.7235982 -1103.2366
+116475.2596746008 3.7236376 -1103.2761
+116476.2596746511 3.7235589 -1103.2761
+116477.2596747014 3.7235196 -1103.3551
+116478.2596747517 3.7235196 -1103.2562
+116479.259674802 3.7235196 -1103.197
+116480.2596748522 3.7234802 -1103.197
+116481.2596749025 3.7235196 -1103.197
+116482.2596749528 3.7234802 -1103.2562
+116483.2596750031 3.7234802 -1103.1774
+116484.2596750534 3.7234409 -1103.1576
+116485.2596751037 3.7234802 -1103.2366
+116486.259675154 3.7233226 -1103.3353
+116487.2596752043 3.7234013 -1103.197
+116488.2596752546 3.7233226 -1103.3156
+116489.2596753049 3.7234013 -1103.2959
+116490.2596753552 3.7233226 -1103.2761
+116491.2596754055 3.723362 -1103.2959
+116492.2596754557 3.723362 -1103.2959
+116493.259675506 3.7234802 -1103.2761
+116494.2596755563 3.7232833 -1103.3156
+116495.2596756066 3.723244 -1103.1576
+116496.2596756569 3.723244 -1103.2761
+116497.2596757072 3.723244 -1103.2366
+116498.2596757575 3.7233226 -1103.1774
+116499.2596758078 3.723244 -1103.2761
+116500.2596758581 3.7232833 -1103.2366
+116501.2596759084 3.7232046 -1103.2562
+116502.2596759587 3.7232833 -1103.2562
+116503.259676009 3.723244 -1103.2366
+116504.2596760592 3.7232046 -1103.2366
+116505.2596761095 3.7233226 -1103.2366
+116506.2596761598 3.7232046 -1103.2366
+116507.2596762101 3.7231259 -1103.2959
+116508.2596762604 3.7231259 -1103.2761
+116509.2596763107 3.7231653 -1103.2168
+116510.259676361 3.7230077 -1103.197
+116511.2596764113 3.7230864 -1103.2366
+116512.2596764616 3.7231259 -1103.2761
+116513.2596765119 3.7230864 -1103.2761
+116514.2596765622 3.723047 -1103.2959
+116515.2596766124 3.7231259 -1103.2366
+116516.2596766627 3.7230864 -1103.2366
+116517.259676713 3.723047 -1103.2761
+116518.2596767633 3.7231259 -1103.2562
+116519.2596768136 3.7229683 -1103.2761
+116520.2596768639 3.7230077 -1103.3156
+116521.2596769142 3.7230077 -1103.1774
+116522.2596769645 3.7229683 -1103.197
+116523.2596770148 3.723047 -1103.2168
+116524.2596770651 3.7229683 -1103.2366
+116525.2596771154 3.7228503 -1103.2761
+116526.2596771657 3.7228897 -1103.197
+116527.2596772159 3.7228897 -1103.3551
+116528.2596772662 3.7229683 -1103.2366
+116529.2596773165 3.7228107 -1103.2761
+116530.2596773668 3.7228107 -1103.2761
+116531.2596774171 3.722929 -1103.1774
+116532.2596774674 3.7228503 -1103.197
+116533.2596775177 3.7228107 -1103.2761
+116534.259677568 3.7228107 -1103.2168
+116535.2596776183 3.7227714 -1103.2562
+116536.2596776686 3.7227714 -1103.197
+116537.2596777189 3.7227714 -1103.1774
+116538.2596777692 3.7227321 -1103.2562
+116539.2596778194 3.7226534 -1103.197
+116540.2596778697 3.7227321 -1103.2168
+116541.25967792 3.7227321 -1103.197
+116542.2596779703 3.7227714 -1103.2761
+116543.2596780206 3.7226927 -1103.2562
+116544.2596780709 3.7226927 -1103.2168
+116545.2596781212 3.7225747 -1103.2366
+116546.2596781715 3.7226534 -1103.2168
+116547.2596782218 3.7225747 -1103.2562
+116548.2596782721 3.7227321 -1103.2562
+116549.2596783224 3.7227321 -1103.2562
+116550.2596783726 3.7225747 -1103.2959
+116551.2596784229 3.7226534 -1103.1774
+116552.2596784732 3.7226534 -1103.2366
+116553.2596785235 3.722614 -1103.1378
+116554.2596785738 3.722614 -1103.2562
+116555.2596786241 3.7225747 -1103.2761
+116556.2596786744 3.7225354 -1103.2168
+116557.2596787247 3.7225354 -1103.3353
+116558.259678775 3.7224565 -1103.2168
+116559.2596788253 3.7225747 -1103.197
+116560.2596788756 3.7224171 -1103.197
+116561.2596789259 3.7223778 -1103.2761
+116562.2596789761 3.7224171 -1103.197
+116563.2596790264 3.7224171 -1103.2562
+116564.2596790767 3.7224565 -1103.2761
+116565.259679127 3.7224171 -1103.197
+116566.2596791773 3.7224171 -1103.2562
+116567.2596792276 3.7224565 -1103.2366
+116568.2596792779 3.7224565 -1103.197
+116569.2596793282 3.7223384 -1103.2959
+116570.2596793785 3.7222991 -1103.1774
+116571.2596794288 3.7223384 -1103.2562
+116572.2596794791 3.7223778 -1103.3156
+116573.2596795294 3.7222204 -1103.1774
+116574.2596795796 3.7222991 -1103.2761
+116575.2596796299 3.7222991 -1103.2761
+116576.2596796802 3.7221808 -1103.2168
+116577.2596797305 3.7222991 -1103.2959
+116578.2596797808 3.7222598 -1103.2366
+116579.2596798311 3.7222598 -1103.2761
+116580.2596798814 3.7222204 -1103.2168
+116581.2596799317 3.7221022 -1103.2168
+116582.259679982 3.7221022 -1103.1774
+116583.2596800323 3.7222598 -1103.197
+116584.2596800826 3.7221808 -1103.1774
+116585.2596801328 3.7221022 -1103.2168
+116586.2596801831 3.7221415 -1103.1774
+116587.2596802334 3.7221415 -1103.2562
+116588.2596802837 3.7221808 -1103.2562
+116589.259680334 3.7221808 -1103.2168
+116590.2596803843 3.7221022 -1103.2562
+116591.2596804346 3.7221808 -1103.197
+116592.2596804849 3.7220628 -1103.197
+116593.2596805352 3.7220235 -1103.2366
+116594.2596805855 3.7218659 -1103.2168
+116595.2596806358 3.7219055 -1103.1774
+116596.2596806861 3.7220235 -1103.3353
+116597.2596807363 3.7220235 -1103.2562
+116598.2596807866 3.7219841 -1103.2959
+116599.2596808369 3.7219055 -1103.3156
+116600.2596808872 3.7218659 -1103.2562
+116601.2596809375 3.7219448 -1103.3156
+116602.2596809878 3.7219055 -1103.2168
+116603.2596810381 3.7219055 -1103.2562
+116604.2596810884 3.7219055 -1103.2761
+116605.2596811387 3.7219448 -1103.2562
+116606.259681189 3.7219448 -1103.2168
+116607.2596812393 3.7219448 -1103.2366
+116608.2596812896 3.7217872 -1103.197
+116609.2596813398 3.7217479 -1103.1576
+116610.2596813901 3.7218266 -1103.1378
+116611.2596814404 3.7218266 -1103.197
+116612.2596814907 3.7217872 -1103.2366
+116613.259681541 3.7217085 -1103.1774
+116614.2596815913 3.7217872 -1103.2562
+116615.2596816416 3.7217085 -1103.2562
+116616.2596816919 3.7217872 -1103.2562
+116617.2596817422 3.7216692 -1103.2168
+116618.2596817925 3.7217479 -1103.2562
+116619.2596818428 3.7215509 -1103.2168
+116620.259681893 3.7217872 -1103.197
+116621.2596819433 3.7216299 -1103.197
+116622.2596819936 3.7215905 -1103.1576
+116623.2596820439 3.7217085 -1103.2761
+116624.2596820942 3.7217085 -1103.2168
+116625.2596821445 3.7215509 -1103.3156
+116626.2596821948 3.7215905 -1103.3353
+116627.2596822451 3.7215905 -1103.197
+116628.2596822954 3.7216692 -1103.2761
+116629.2596823457 3.7216692 -1103.2168
+116630.259682396 3.7214329 -1103.1378
+116631.2596824463 3.7215116 -1103.2562
+116632.2596824965 3.7216299 -1103.2366
+116633.2596825468 3.7215116 -1103.2562
+116634.2596825971 3.7215509 -1103.2761
+116635.2596826474 3.7215116 -1103.2168
+116636.2596826977 3.7216299 -1103.2366
+116637.259682748 3.7215116 -1103.2562
+116638.2596827983 3.7215116 -1103.2562
+116639.2596828486 3.7214329 -1103.197
+116640.2596828989 3.7213936 -1103.197
+116641.2596829492 3.7214329 -1103.197
+116642.2596829995 3.7213149 -1103.2366
+116643.2596830498 3.7213542 -1103.1774
+116644.2596831 3.7213936 -1103.3156
+116645.2596831503 3.7213542 -1103.1774
+116646.2596832006 3.7212756 -1103.2562
+116647.2596832509 3.7213542 -1103.2168
+116648.2596833012 3.7213936 -1103.2761
+116649.2596833515 3.7213149 -1103.2562
+116650.2596834018 3.7212756 -1103.2366
+116651.2596834521 3.7212756 -1103.2366
+116652.2596835024 3.7212756 -1103.1576
+116653.2596835527 3.7213149 -1103.1576
+116654.259683603 3.721236 -1103.3156
+116655.2596836532 3.7211573 -1103.1774
+116656.2596837035 3.721236 -1103.2562
+116657.2596837538 3.7213542 -1103.2366
+116658.2596838041 3.7211967 -1103.3353
+116659.2596838544 3.721118 -1103.2168
+116660.2596839047 3.7211573 -1103.1576
+116661.259683955 3.7210786 -1103.2366
+116662.2596840053 3.7211967 -1103.197
+116663.2596840556 3.721118 -1103.2959
+116664.2596841059 3.7211573 -1103.2562
+116665.2596841562 3.7210786 -1103.2562
+116666.2596842065 3.721118 -1103.2562
+116667.2596842567 3.7210786 -1103.2168
+116668.259684307 3.7210786 -1103.2959
+116669.2596843573 3.721118 -1103.3156
+116670.2596844076 3.721 -1103.2761
+116671.2596844579 3.7210393 -1103.2562
+116672.2596845082 3.7210786 -1103.2761
+116673.2596845585 3.721 -1103.2562
+116674.2596846088 3.7209604 -1103.2562
+116675.2596846591 3.720921 -1103.2562
+116676.2596847094 3.7209604 -1103.2562
+116677.2596847597 3.720921 -1103.2761
+116678.2596848099 3.721 -1103.2761
+116679.2596848602 3.7209604 -1103.2366
+116680.2596849105 3.720921 -1103.2168
+116681.2596849608 3.720921 -1103.2168
+116682.2596850111 3.7208424 -1103.2562
+116683.2596850614 3.7208424 -1103.1774
+116684.2596851117 3.7208817 -1103.1774
+116685.259685162 3.7207637 -1103.197
+116686.2596852123 3.7208424 -1103.2761
+116687.2596852626 3.7208424 -1103.2366
+116688.2596853129 3.7208424 -1103.2761
+116689.2596853632 3.7207243 -1103.2761
+116690.2596854134 3.7207637 -1103.2761
+116691.2596854637 3.7207243 -1103.2761
+116692.259685514 3.720685 -1103.1774
+116693.2596855643 3.720803 -1103.2562
+116694.2596856146 3.720685 -1103.2761
+116695.2596856649 3.720685 -1103.3156
+116696.2596857152 3.720685 -1103.2959
+116697.2596857655 3.7206454 -1103.2562
+116698.2596858158 3.7207243 -1103.197
+116699.2596858661 3.720685 -1103.2959
+116700.2596859164 3.7205667 -1103.2366
+116701.2596859667 3.7206454 -1103.2366
+116702.2596860169 3.7207637 -1103.2366
+116703.2596860672 3.7205667 -1103.2168
+116704.2596861175 3.7204881 -1103.2366
+116705.2596861678 3.7205667 -1103.2562
+116706.2596862181 3.7205667 -1103.2562
+116707.2596862684 3.7206454 -1103.2168
+116708.2596863187 3.7205274 -1103.2761
+116709.259686369 3.7205667 -1103.2562
+116710.2596864193 3.7204881 -1103.2761
+116711.2596864696 3.7205667 -1103.1576
+116712.2596865199 3.7204487 -1103.2562
+116713.2596865701 3.7204881 -1103.2761
+116714.2596866204 3.7204881 -1103.2761
+116715.2596866707 3.7204487 -1103.2366
+116716.259686721 3.7204881 -1103.2168
+116717.2596867713 3.7204094 -1103.2366
+116718.2596868216 3.7203701 -1103.2761
+116719.2596868719 3.7203305 -1103.1774
+116720.2596869222 3.7203701 -1103.2761
+116721.2596869725 3.7204094 -1103.197
+116722.2596870228 3.7204094 -1103.2761
+116723.2596870731 3.7203305 -1103.197
+116724.2596871234 3.7202911 -1103.1576
+116725.2596871736 3.7203305 -1103.2168
+116726.2596872239 3.7203701 -1103.2168
+116727.2596872742 3.7202518 -1103.2959
+116728.2596873245 3.7202911 -1103.3353
+116729.2596873748 3.7202911 -1103.2366
+116730.2596874251 3.7203305 -1103.1378
+116731.2596874754 3.7202518 -1103.3353
+116732.2596875257 3.7201731 -1103.1576
+116733.259687576 3.7202518 -1103.2959
+116734.2596876263 3.7202518 -1103.1378
+116735.2596876766 3.7201731 -1103.197
+116736.2596877269 3.7200944 -1103.2959
+116737.2596877771 3.7201338 -1103.197
+116738.2596878274 3.7201731 -1103.2562
+116739.2596878777 3.7201338 -1103.3353
+116740.259687928 3.7201338 -1103.2761
+116741.2596879783 3.7200155 -1103.2761
+116742.2596880286 3.7201731 -1103.3353
+116743.2596880789 3.7200551 -1103.2761
+116744.2596881292 3.7200944 -1103.2168
+116745.2596881795 3.7200944 -1103.2562
+116746.2596882298 3.7201731 -1103.1774
+116747.2596882801 3.7200551 -1103.2562
+116748.2596883303 3.7200944 -1103.2761
+116749.2596883806 3.7200155 -1103.2366
+116750.2596884309 3.7200155 -1103.2168
+116751.2596884812 3.7200551 -1103.2366
+116752.2596885315 3.7199368 -1103.2562
+116753.2596885818 3.7199762 -1103.2562
+116754.2596886321 3.7199368 -1103.2168
+116755.2596886824 3.7199368 -1103.1378
+116756.2596887327 3.7199762 -1103.2168
+116757.259688783 3.7198582 -1103.3156
+116758.2596888333 3.7198975 -1103.2761
+116759.2596888836 3.7198582 -1103.1774
+116760.2596889338 3.7198975 -1103.2959
+116761.2596889841 3.7198582 -1103.2168
+116762.2596890344 3.7197795 -1103.1774
+116763.2596890847 3.7198582 -1103.2168
+116764.259689135 3.7198188 -1103.2562
+116765.2596891853 3.7197795 -1103.2168
+116766.2596892356 3.7198188 -1103.3156
+116767.2596892859 3.7198188 -1103.2562
+116768.2596893362 3.7198582 -1103.2959
+116769.2596893865 3.7197795 -1103.2366
+116770.2596894368 3.7197795 -1103.2366
+116771.2596894871 3.7196612 -1103.2366
+116772.2596895373 3.7197006 -1103.2959
+116773.2596895876 3.7196219 -1103.197
+116774.2596896379 3.7197402 -1103.2761
+116775.2596896882 3.7197402 -1103.2761
+116776.2596897385 3.7196219 -1103.2562
+116777.2596897888 3.7195432 -1103.2366
+116778.2596898391 3.7196219 -1103.3353
+116779.2596898894 3.7196612 -1103.2562
+116780.2596899397 3.7196219 -1103.1576
+116781.25968999 3.7195826 -1103.2366
+116782.2596900403 3.7196219 -1103.3353
+116783.2596900905 3.7196219 -1103.197
+116784.2596901408 3.7195432 -1103.2761
+116785.2596901911 3.7195039 -1103.3156
+116786.2596902414 3.7195826 -1103.2366
+116787.2596902917 3.7195039 -1103.2562
+116788.259690342 3.7194645 -1103.2168
+116789.2596903923 3.7193856 -1103.3749
+116790.2596904426 3.719425 -1103.2761
+116791.2596904929 3.7195039 -1103.2168
+116792.2596905432 3.7193856 -1103.2761
+116793.2596905935 3.7194645 -1103.2168
+116794.2596906438 3.7193856 -1103.2168
+116795.259690694 3.7193856 -1103.3353
+116796.2596907443 3.7192676 -1103.2168
+116797.2596907946 3.7193856 -1103.2168
+116798.2596908449 3.7193069 -1103.2562
+116799.2596908952 3.7193463 -1103.2562
+116800.2596909455 3.7193856 -1103.3156
+116801.2596909958 3.7193463 -1103.2959
+116802.2596910461 3.7193069 -1103.197
+116803.2596910964 3.7193463 -1103.2366
+116804.2596911467 3.7193069 -1103.3353
+116805.259691197 3.7192283 -1103.2562
+116806.2596912473 3.7193069 -1103.1774
+116807.2596912975 3.7192676 -1103.2761
+116808.2596913478 3.7192676 -1103.2168
+116809.2596913981 3.7192283 -1103.2366
+116810.2596914484 3.7191496 -1103.197
+116811.2596914987 3.7192283 -1103.2366
+116812.259691549 3.7192676 -1103.197
+116813.2596915993 3.7192283 -1103.2168
+116814.2596916496 3.7191889 -1103.197
+116815.2596916999 3.71911 -1103.2562
+116816.2596917502 3.7190313 -1103.197
+116817.2596918005 3.7190313 -1103.2366
+116818.2596918507 3.7190313 -1103.3156
+116819.259691901 3.7191496 -1103.3551
+116820.2596919513 3.7191889 -1103.2562
+116821.2596920016 3.7190313 -1103.2366
+116822.2596920519 3.7190707 -1103.2959
+116823.2596921022 3.718992 -1103.2959
+116824.2596921525 3.7190313 -1103.3353
+116825.2596922028 3.7190707 -1103.2366
+116826.2596922531 3.718992 -1103.3551
+116827.2596923034 3.7189527 -1103.3353
+116828.2596923537 3.71911 -1103.2366
+116829.259692404 3.718874 -1103.2562
+116830.2596924542 3.7190313 -1103.3156
+116831.2596925045 3.718992 -1103.1774
+116832.2596925548 3.7189133 -1103.1774
+116833.2596926051 3.7189133 -1103.2761
+116834.2596926554 3.718992 -1103.2959
+116835.2596927057 3.7189133 -1103.2761
+116836.259692756 3.7188346 -1103.2562
+116837.2596928063 3.7189133 -1103.2761
+116838.2596928566 3.7189133 -1103.2761
+116839.2596929069 3.718874 -1103.2366
+116840.2596929572 3.7187951 -1103.2168
+116841.2596930075 3.7188346 -1103.2959
+116842.2596930577 3.7187164 -1103.2761
+116843.259693108 3.7187557 -1103.2168
+116844.2596931583 3.7187951 -1103.197
+116845.2596932086 3.7187557 -1103.2562
+116846.2596932589 3.7187557 -1103.2168
+116847.2596933092 3.7187164 -1103.2761
+116848.2596933595 3.7187164 -1103.2761
+116849.2596934098 3.7185984 -1103.2562
+116850.2596934601 3.7187951 -1103.3945
+116851.2596935104 3.718677 -1103.2366
+116852.2596935607 3.7186377 -1103.2168
+116853.2596936109 3.718677 -1103.1182
+116854.2596936612 3.7185984 -1103.3551
+116855.2596937115 3.7186377 -1103.3353
+116856.2596937618 3.7185984 -1103.2168
+116857.2596938121 3.7186377 -1103.197
+116858.2596938624 3.7185984 -1103.2562
+116859.2596939127 3.7186377 -1103.2168
+116860.259693963 3.718559 -1103.2562
+116861.2596940133 3.718559 -1103.197
+116862.2596940636 3.7185197 -1103.197
+116863.2596941139 3.7185984 -1103.2168
+116864.2596941642 3.718559 -1103.2366
+116865.2596942144 3.7184801 -1103.3551
+116866.2596942647 3.7184408 -1103.1774
+116867.259694315 3.7184801 -1103.197
+116868.2596943653 3.7185197 -1103.2366
+116869.2596944156 3.7185197 -1103.2761
+116870.2596944659 3.7184801 -1103.2168
+116871.2596945162 3.7184014 -1103.2959
+116872.2596945665 3.7184801 -1103.2959
+116873.2596946168 3.7184014 -1103.2366
+116874.2596946671 3.7184408 -1103.197
+116875.2596947174 3.7183621 -1103.2562
+116876.2596947677 3.7183621 -1103.3156
+116877.2596948179 3.7183621 -1103.197
+116878.2596948682 3.7183228 -1103.2959
+116879.2596949185 3.7182047 -1103.197
+116880.2596949688 3.7182441 -1103.1182
+116881.2596950191 3.7183228 -1103.2366
+116882.2596950694 3.7183228 -1103.2959
+116883.2596951197 3.7182441 -1103.2366
+116884.25969517 3.7182047 -1103.2366
+116885.2596952203 3.7183228 -1103.2168
+116886.2596952706 3.7181258 -1103.197
+116887.2596953209 3.7182834 -1103.2959
+116888.2596953711 3.7182834 -1103.2168
+116889.2596954214 3.7181258 -1103.2959
+116890.2596954717 3.7181258 -1103.2761
+116891.259695522 3.7181258 -1103.2366
+116892.2596955723 3.7180865 -1103.1576
+116893.2596956226 3.7180865 -1103.2168
+116894.2596956729 3.7181258 -1103.1774
+116895.2596957232 3.7181258 -1103.2562
+116896.2596957735 3.7180471 -1103.2366
+116897.2596958238 3.7180471 -1103.2562
+116898.2596958741 3.7180865 -1103.2761
+116899.2596959244 3.7180471 -1103.2168
+116900.2596959746 3.7179685 -1103.1774
+116901.2596960249 3.7180865 -1103.2959
+116902.2596960752 3.7180078 -1103.2168
+116903.2596961255 3.7180078 -1103.2366
+116904.2596961758 3.7179685 -1103.3156
+116905.2596962261 3.7180471 -1103.2761
+116906.2596962764 3.7180078 -1103.2168
+116907.2596963267 3.7178898 -1103.1182
+116908.259696377 3.7179291 -1103.1378
+116909.2596964273 3.7178502 -1103.2562
+116910.2596964776 3.7179291 -1103.2366
+116911.2596965279 3.7178502 -1103.2562
+116912.2596965781 3.7179291 -1103.2562
+116913.2596966284 3.7179291 -1103.3156
+116914.2596966787 3.7178109 -1103.2168
+116915.259696729 3.7179685 -1103.2366
+116916.2596967793 3.7177715 -1103.2959
+116917.2596968296 3.7177322 -1103.197
+116918.2596968799 3.7177715 -1103.2761
+116919.2596969302 3.7178898 -1103.2366
+116920.2596969805 3.7178109 -1103.2761
+116921.2596970308 3.7177715 -1103.3156
+116922.2596970811 3.7177322 -1103.2366
+116923.2596971313 3.7176929 -1103.2562
+116924.2596971816 3.7177715 -1103.1576
+116925.2596972319 3.7178109 -1103.197
+116926.2596972822 3.7177322 -1103.2366
+116927.2596973325 3.7177322 -1103.2168
+116928.2596973828 3.7176142 -1103.3156
+116929.2596974331 3.7176929 -1103.2959
+116930.2596974834 3.7176929 -1103.2366
+116931.2596975337 3.7175746 -1103.3156
+116932.259697584 3.7176142 -1103.2562
+116933.2596976343 3.7176535 -1103.2366
+116934.2596976846 3.7176142 -1103.3353
+116935.2596977348 3.7174959 -1103.3353
+116936.2596977851 3.7174959 -1103.1576
+116937.2596978354 3.7175353 -1103.3156
+116938.2596978857 3.7176535 -1103.2562
+116939.259697936 3.7175353 -1103.3156
+116940.2596979863 3.7174566 -1103.2168
+116941.2596980366 3.7174959 -1103.2959
+116942.2596980869 3.7174959 -1103.1576
+116943.2596981372 3.7174959 -1103.2366
+116944.2596981875 3.7174172 -1103.3353
+116945.2596982378 3.7174959 -1103.3749
+116946.2596982881 3.7174172 -1103.2562
+116947.2596983383 3.7173386 -1103.2761
+116948.2596983886 3.7173386 -1103.1576
+116949.2596984389 3.7173779 -1103.2761
+116950.2596984892 3.7173779 -1103.2168
+116951.2596985395 3.7174566 -1103.2562
+116952.2596985898 3.7173779 -1103.2366
+116953.2596986401 3.7172992 -1103.197
+116954.2596986904 3.7173779 -1103.2366
+116955.2596987407 3.7172992 -1103.197
+116956.259698791 3.7173779 -1103.2562
+116957.2596988413 3.7172203 -1103.2366
+116958.2596988915 3.7173386 -1103.2366
+116959.2596989418 3.7172203 -1103.2366
+116960.2596989921 3.7173386 -1103.3551
+116961.2596990424 3.7172992 -1103.2761
+116962.2596990927 3.7173779 -1103.2761
+116963.259699143 3.7172596 -1103.197
+116964.2596991933 3.717181 -1103.2959
+116965.2596992436 3.7170236 -1103.2168
+116966.2596992939 3.7172596 -1103.2562
+116967.2596993442 3.717181 -1103.2366
+116968.2596993945 3.7171416 -1103.3156
+116969.2596994448 3.7171023 -1103.1774
+116970.259699495 3.7172203 -1103.2959
+116971.2596995453 3.7171023 -1103.1774
+116972.2596995956 3.7171023 -1103.1774
+116973.2596996459 3.7171023 -1103.197
+116974.2596996962 3.717181 -1103.2562
+116975.2596997465 3.7171023 -1103.3353
+116976.2596997968 3.7171023 -1103.1378
+116977.2596998471 3.7170236 -1103.2562
+116978.2596998974 3.7171023 -1103.2562
+116979.2596999477 3.7169843 -1103.3945
+116980.259699998 3.717063 -1103.1774
+116981.2597000482 3.7169843 -1103.2168
+116982.2597000985 3.7169447 -1103.2959
+116983.2597001488 3.7169843 -1103.2168
+116984.2597001991 3.7170236 -1103.1576
+116985.2597002494 3.716866 -1103.2562
+116986.2597002997 3.7169447 -1103.1774
+116987.25970035 3.7168267 -1103.1774
+116988.2597004003 3.7169054 -1103.2562
+116989.2597004506 3.7169054 -1103.2562
+116990.2597005009 3.716866 -1103.2562
+116991.2597005512 3.7169054 -1103.3749
+116992.2597006015 3.716866 -1103.1774
+116993.2597006517 3.716866 -1103.1774
+116994.259700702 3.7169054 -1103.2562
+116995.2597007523 3.7168267 -1103.2562
+116996.2597008026 3.716866 -1103.2562
+116997.2597008529 3.7167087 -1103.2562
+116998.2597009032 3.716748 -1103.3353
+116999.2597009535 3.7167873 -1103.1774
+117000.2597010038 3.7167873 -1103.2761
+117001.2597010541 3.7167087 -1103.2761
+117002.2597011044 3.7166693 -1103.197
+117003.2597011547 3.7166297 -1103.2562
+117004.259701205 3.7165904 -1103.2366
+117005.2597012552 3.7166693 -1103.1576
+117006.2597013055 3.7166693 -1103.1774
+117007.2597013558 3.7166693 -1103.197
+117008.2597014061 3.7167087 -1103.1774
+117009.2597014564 3.7166693 -1103.2366
+117010.2597015067 3.7166693 -1103.2168
+117011.259701557 3.7166297 -1103.2168
+117012.2597016073 3.7165904 -1103.197
+117013.2597016576 3.7165511 -1103.2168
+117014.2597017079 3.7165511 -1103.1576
+117015.2597017582 3.7165511 -1103.2366
+117016.2597018084 3.7165117 -1103.2761
+117017.2597018587 3.7166297 -1103.2168
+117018.259701909 3.7164724 -1103.2562
+117019.2597019593 3.7165904 -1103.2761
+117020.2597020096 3.7164724 -1103.2959
+117021.2597020599 3.7163937 -1103.2562
+117022.2597021102 3.7165117 -1103.2366
+117023.2597021605 3.7163937 -1103.2761
+117024.2597022108 3.7165117 -1103.1774
+117025.2597022611 3.7165117 -1103.2168
+117026.2597023114 3.7164724 -1103.2366
+117027.2597023617 3.7163148 -1103.2366
+117028.2597024119 3.7163937 -1103.2168
+117029.2597024622 3.7163937 -1103.2366
+117030.2597025125 3.7164724 -1103.1774
+117031.2597025628 3.7163937 -1103.1774
+117032.2597026131 3.7163148 -1103.1182
+117033.2597026634 3.7162361 -1103.1774
+117034.2597027137 3.7163148 -1103.2366
+117035.259702764 3.7162755 -1103.2168
+117036.2597028143 3.7163148 -1103.2168
+117037.2597028646 3.7161968 -1103.1774
+117038.2597029149 3.7161968 -1103.2562
+117039.2597029652 3.7162755 -1103.2562
+117040.2597030154 3.7161574 -1103.3156
+117041.2597030657 3.7161968 -1103.2761
+117042.259703116 3.7161574 -1103.197
+117043.2597031663 3.7160394 -1103.2168
+117044.2597032166 3.7161968 -1103.3353
+117045.2597032669 3.7161574 -1103.2562
+117046.2597033172 3.7161968 -1103.2168
+117047.2597033675 3.7160788 -1103.2959
+117048.2597034178 3.7161968 -1103.2562
+117049.2597034681 3.7161968 -1103.2366
+117050.2597035184 3.7162755 -1103.2366
+117051.2597035686 3.7160394 -1103.2761
+117052.2597036189 3.7161574 -1103.1774
+117053.2597036692 3.7161181 -1103.1774
+117054.2597037195 3.7159998 -1103.3353
+117055.2597037698 3.7161181 -1103.2562
+117056.2597038201 3.7160394 -1103.2366
+117057.2597038704 3.7160394 -1103.2562
+117058.2597039207 3.7159605 -1103.2168
+117059.259703971 3.7159998 -1103.1774
+117060.2597040213 3.7158031 -1103.2366
+117061.2597040716 3.7159212 -1103.197
+117062.2597041219 3.7161181 -1103.1774
+117063.2597041721 3.7160394 -1103.2168
+117064.2597042224 3.7159605 -1103.197
+117065.2597042727 3.7158425 -1103.2562
+117066.259704323 3.7159212 -1103.2366
+117067.2597043733 3.7158425 -1103.1576
+117068.2597044236 3.7158818 -1103.2168
+117069.2597044739 3.7157638 -1103.2168
+117070.2597045242 3.7158818 -1103.2562
+117071.2597045745 3.7158031 -1103.2562
+117072.2597046248 3.7158818 -1103.2366
+117073.2597046751 3.7159212 -1103.197
+117074.2597047254 3.7157638 -1103.2959
+117075.2597047756 3.7157242 -1103.2168
+117076.2597048259 3.7158031 -1103.1378
+117077.2597048762 3.7158031 -1103.1774
+117078.2597049265 3.7157638 -1103.2562
+117079.2597049768 3.7156456 -1103.2761
+117080.2597050271 3.7156849 -1103.1774
+117081.2597050774 3.7156456 -1103.1774
+117082.2597051277 3.7157242 -1103.2366
+117083.259705178 3.7157242 -1103.2562
+117084.2597052283 3.7156062 -1103.2959
+117085.2597052786 3.7157638 -1103.2959
+117086.2597053288 3.7156456 -1103.2761
+117087.2597053791 3.7156456 -1103.2168
+117088.2597054294 3.7156456 -1103.2366
+117089.2597054797 3.7155669 -1103.2959
+117090.25970553 3.7156062 -1103.2562
+117091.2597055803 3.7156062 -1103.2562
+117092.2597056306 3.7155669 -1103.2366
+117093.2597056809 3.7155669 -1103.2168
+117094.2597057312 3.7156062 -1103.2562
+117095.2597057815 3.7155669 -1103.2761
+117096.2597058318 3.7154489 -1103.3551
+117097.2597058821 3.7154882 -1103.2562
+117098.2597059323 3.7154093 -1103.2168
+117099.2597059826 3.7155275 -1103.2366
+117100.2597060329 3.7154093 -1103.2366
+117101.2597060832 3.7154882 -1103.1774
+117102.2597061335 3.7154489 -1103.3156
+117103.2597061838 3.7156062 -1103.2168
+117104.2597062341 3.7153699 -1103.3156
+117105.2597062844 3.7152913 -1103.2366
+117106.2597063347 3.7153699 -1103.2562
+117107.259706385 3.7153699 -1103.2562
+117108.2597064353 3.7154093 -1103.2366
+117109.2597064856 3.7152913 -1103.3353
+117110.2597065358 3.7153306 -1103.2959
+117111.2597065861 3.7152126 -1103.2168
+117112.2597066364 3.7152913 -1103.197
+117113.2597066867 3.7152519 -1103.2959
+117114.259706737 3.7151732 -1103.2366
+117115.2597067873 3.7152519 -1103.2366
+117116.2597068376 3.7152126 -1103.2366
+117117.2597068879 3.7152519 -1103.2959
+117118.2597069382 3.7150943 -1103.2761
+117119.2597069885 3.7152519 -1103.1576
+117120.2597070388 3.7152519 -1103.3551
+117121.259707089 3.7150943 -1103.2366
+117122.2597071393 3.7151339 -1103.2761
+117123.2597071896 3.7151339 -1103.2366
+117124.2597072399 3.7150943 -1103.2562
+117125.2597072902 3.7151339 -1103.2562
+117126.2597073405 3.7151339 -1103.1774
+117127.2597073908 3.7150943 -1103.2761
+117128.2597074411 3.715055 -1103.2168
+117129.2597074914 3.7150943 -1103.2168
+117130.2597075417 3.715055 -1103.1774
+117131.259707592 3.7151339 -1103.2562
+117132.2597076423 3.7150156 -1103.2366
+117133.2597076925 3.715055 -1103.2168
+117134.2597077428 3.7148976 -1103.2562
+117135.2597077931 3.7150156 -1103.2761
+117136.2597078434 3.714937 -1103.3156
+117137.2597078937 3.7150156 -1103.3156
+117138.259707944 3.7150156 -1103.1774
+117139.2597079943 3.7148976 -1103.2562
+117140.2597080446 3.714937 -1103.2959
+117141.2597080949 3.7148583 -1103.2562
+117142.2597081452 3.7148976 -1103.2168
+117143.2597081955 3.7148583 -1103.2761
+117144.2597082458 3.7148976 -1103.3749
+117145.259708296 3.7148976 -1103.3156
+117146.2597083463 3.7147794 -1103.2562
+117147.2597083966 3.714819 -1103.197
+117148.2597084469 3.71474 -1103.2366
+117149.2597084972 3.7147794 -1103.2959
+117150.2597085475 3.7148583 -1103.2366
+117151.2597085978 3.7147007 -1103.2761
+117152.2597086481 3.714819 -1103.2562
+117153.2597086984 3.71474 -1103.2761
+117154.2597087487 3.7147794 -1103.1378
+117155.259708799 3.71474 -1103.2562
+117156.2597088492 3.7146614 -1103.197
+117157.2597088995 3.71474 -1103.2761
+117158.2597089498 3.7146614 -1103.1774
+117159.2597090001 3.7146614 -1103.2366
+117160.2597090504 3.7146614 -1103.2366
+117161.2597091007 3.7147007 -1103.2168
+117162.259709151 3.714622 -1103.197
+117163.2597092013 3.7145827 -1103.2761
+117164.2597092516 3.714622 -1103.197
+117165.2597093019 3.7146614 -1103.2366
+117166.2597093522 3.7145433 -1103.2366
+117167.2597094025 3.7145827 -1103.2562
+117168.2597094527 3.714622 -1103.3551
+117169.259709503 3.7145827 -1103.2366
+117170.2597095533 3.7145827 -1103.2761
+117171.2597096036 3.7145433 -1103.3156
+117172.2597096539 3.7145827 -1103.2761
+117173.2597097042 3.714504 -1103.197
+117174.2597097545 3.7144251 -1103.3156
+117175.2597098048 3.7143857 -1103.2562
+117176.2597098551 3.7144251 -1103.2562
+117177.2597099054 3.7144251 -1103.2562
+117178.2597099557 3.7144644 -1103.197
+117179.259710006 3.7143857 -1103.1774
+117180.2597100562 3.7143464 -1103.197
+117181.2597101065 3.7144644 -1103.2761
+117182.2597101568 3.7143857 -1103.2366
+117183.2597102071 3.7143464 -1103.2959
+117184.2597102574 3.7143071 -1103.2761
+117185.2597103077 3.7143857 -1103.2366
+117186.259710358 3.7143071 -1103.3156
+117187.2597104083 3.7143071 -1103.1774
+117188.2597104586 3.7142677 -1103.1576
+117189.2597105089 3.7143464 -1103.3156
+117190.2597105592 3.7143857 -1103.197
+117191.2597106094 3.7143464 -1103.2168
+117192.2597106597 3.7143071 -1103.2168
+117193.25971071 3.7141891 -1103.2562
+117194.2597107603 3.7141891 -1103.197
+117195.2597108106 3.7142677 -1103.2959
+117196.2597108609 3.7141891 -1103.2761
+117197.2597109112 3.7142284 -1103.2562
+117198.2597109615 3.7142284 -1103.2761
+117199.2597110118 3.7141101 -1103.2168
+117200.2597110621 3.7141891 -1103.2366
+117201.2597111124 3.7140708 -1103.2168
+117202.2597111627 3.7140315 -1103.2959
+117203.2597112129 3.7141495 -1103.2761
+117204.2597112632 3.7140315 -1103.2562
+117205.2597113135 3.7140708 -1103.2959
+117206.2597113638 3.7140315 -1103.2761
+117207.2597114141 3.7141495 -1103.2562
+117208.2597114644 3.7141495 -1103.1378
+117209.2597115147 3.7140315 -1103.2761
+117210.259711565 3.7140708 -1103.197
+117211.2597116153 3.7139921 -1103.2366
+117212.2597116656 3.7140315 -1103.2562
+117213.2597117159 3.7139921 -1103.3156
+117214.2597117662 3.7139528 -1103.2366
+117215.2597118164 3.7139528 -1103.1774
+117216.2597118667 3.7139528 -1103.2761
+117217.259711917 3.7141101 -1103.2366
+117218.2597119673 3.7139528 -1103.2366
+117219.2597120176 3.7139134 -1103.1182
+117220.2597120679 3.7139528 -1103.2761
+117221.2597121182 3.7138739 -1103.197
+117222.2597121685 3.7139528 -1103.1774
+117223.2597122188 3.7138739 -1103.3156
+117224.2597122691 3.7137558 -1103.2562
+117225.2597123194 3.7139134 -1103.2366
+117226.2597123696 3.7138739 -1103.2562
+117227.2597124199 3.7137952 -1103.3156
+117228.2597124702 3.7137952 -1103.2761
+117229.2597125205 3.7137558 -1103.1774
+117230.2597125708 3.7137952 -1103.2562
+117231.2597126211 3.7137558 -1103.2366
+117232.2597126714 3.7137558 -1103.2562
+117233.2597127217 3.7137558 -1103.2366
+117234.259712772 3.7136772 -1103.1774
+117235.2597128223 3.7137558 -1103.197
+117236.2597128726 3.7136772 -1103.197
+117237.2597129229 3.7136378 -1103.2366
+117238.2597129731 3.7136378 -1103.2168
+117239.2597130234 3.7136378 -1103.3156
+117240.2597130737 3.7135196 -1103.197
+117241.259713124 3.7136378 -1103.2366
+117242.2597131743 3.7136378 -1103.2959
+117243.2597132246 3.7135985 -1103.2366
+117244.2597132749 3.7135196 -1103.2168
+117245.2597133252 3.7135589 -1103.197
+117246.2597133755 3.7135985 -1103.2366
+117247.2597134258 3.7134802 -1103.2562
+117248.2597134761 3.7135589 -1103.1774
+117249.2597135264 3.7134802 -1103.2366
+117250.2597135766 3.7135589 -1103.197
+117251.2597136269 3.7134802 -1103.2366
+117252.2597136772 3.7134802 -1103.2761
+117253.2597137275 3.7135196 -1103.2168
+117254.2597137778 3.7134802 -1103.2959
+117255.2597138281 3.7133622 -1103.3353
+117256.2597138784 3.7134409 -1103.2959
+117257.2597139287 3.7135196 -1103.2366
+117258.259713979 3.7134802 -1103.2562
+117259.2597140293 3.7134802 -1103.2366
+117260.2597140796 3.7134016 -1103.2959
+117261.2597141298 3.7134016 -1103.2562
+117262.2597141801 3.7132835 -1103.3156
+117263.2597142304 3.7133622 -1103.1774
+117264.2597142807 3.7132835 -1103.3156
+117265.259714331 3.7132046 -1103.2366
+117266.2597143813 3.7133229 -1103.1774
+117267.2597144316 3.713244 -1103.2168
+117268.2597144819 3.7132835 -1103.2562
+117269.2597145322 3.7132046 -1103.2366
+117270.2597145825 3.7131653 -1103.2168
+117271.2597146328 3.7132835 -1103.2562
+117272.2597146831 3.7131653 -1103.2562
+117273.2597147333 3.7131653 -1103.2959
+117274.2597147836 3.7131653 -1103.2562
+117275.2597148339 3.7131653 -1103.1576
+117276.2597148842 3.7131653 -1103.2761
+117277.2597149345 3.7130866 -1103.197
+117278.2597149848 3.7131653 -1103.2366
+117279.2597150351 3.7130866 -1103.3156
+117280.2597150854 3.7130866 -1103.2168
+117281.2597151357 3.7130473 -1103.2761
+117282.259715186 3.7130866 -1103.3156
+117283.2597152363 3.7131259 -1103.2959
+117284.2597152865 3.7131653 -1103.2761
+117285.2597153368 3.7130079 -1103.2562
+117286.2597153871 3.7130473 -1103.2959
+117287.2597154374 3.7130866 -1103.2959
+117288.2597154877 3.7129686 -1103.2562
+117289.259715538 3.7130866 -1103.2366
+117290.2597155883 3.7129686 -1103.2562
+117291.2597156386 3.7130473 -1103.3353
+117292.2597156889 3.7129686 -1103.2168
+117293.2597157392 3.7129686 -1103.2959
+117294.2597157895 3.7129686 -1103.2761
+117295.2597158398 3.712929 -1103.197
+117296.25971589 3.7128897 -1103.2959
+117297.2597159403 3.7128897 -1103.1774
+117298.2597159906 3.7128897 -1103.2562
+117299.2597160409 3.712929 -1103.2366
+117300.2597160912 3.712811 -1103.2366
+117301.2597161415 3.7128897 -1103.2562
+117302.2597161918 3.7128503 -1103.3353
+117303.2597162421 3.7128503 -1103.2562
+117304.2597162924 3.7128503 -1103.2562
+117305.2597163427 3.7127323 -1103.2562
+117306.259716393 3.712811 -1103.2168
+117307.2597164433 3.7127323 -1103.197
+117308.2597164935 3.7127323 -1103.3353
+117309.2597165438 3.712693 -1103.2168
+117310.2597165941 3.712693 -1103.1378
+117311.2597166444 3.712693 -1103.2168
+117312.2597166947 3.7127717 -1103.2761
+117313.259716745 3.7126536 -1103.3353
+117314.2597167953 3.712693 -1103.2366
+117315.2597168456 3.7126536 -1103.197
+117316.2597168959 3.712693 -1103.2562
+117317.2597169462 3.7126536 -1103.2562
+117318.2597169965 3.7126141 -1103.2366
+117319.2597170467 3.7126141 -1103.2959
+117320.259717097 3.7124567 -1103.2761
+117321.2597171473 3.7126536 -1103.2366
+117322.2597171976 3.712693 -1103.2562
+117323.2597172479 3.7125747 -1103.2366
+117324.2597172982 3.7126141 -1103.197
+117325.2597173485 3.7126141 -1103.2168
+117326.2597173988 3.7124567 -1103.2366
+117327.2597174491 3.7125354 -1103.2168
+117328.2597174994 3.7125354 -1103.197
+117329.2597175497 3.7124567 -1103.2761
+117330.2597176 3.7124567 -1103.2366
+117331.2597176502 3.7125354 -1103.2366
+117332.2597177005 3.712378 -1103.2562
+117333.2597177508 3.7124174 -1103.2168
+117334.2597178011 3.7124567 -1103.2562
+117335.2597178514 3.7124567 -1103.2959
+117336.2597179017 3.7122991 -1103.2562
+117337.259717952 3.7124174 -1103.3551
+117338.2597180023 3.7122991 -1103.2959
+117339.2597180526 3.712378 -1103.2959
+117340.2597181029 3.7123387 -1103.3551
+117341.2597181532 3.7123387 -1103.2959
+117342.2597182035 3.7123387 -1103.2761
+117343.2597182537 3.7122991 -1103.2366
+117344.259718304 3.7122204 -1103.2366
+117345.2597183543 3.7122991 -1103.2366
+117346.2597184046 3.7122991 -1103.2761
+117347.2597184549 3.7122598 -1103.3353
+117348.2597185052 3.7122991 -1103.2366
+117349.2597185555 3.7121811 -1103.1576
+117350.2597186058 3.712378 -1103.2562
+117351.2597186561 3.7122204 -1103.2959
+117352.2597187064 3.7121024 -1103.2366
+117353.2597187567 3.7122598 -1103.197
+117354.2597188069 3.7121024 -1103.1576
+117355.2597188572 3.7121418 -1103.2366
+117356.2597189075 3.7120631 -1103.2366
+117357.2597189578 3.7122204 -1103.2562
+117358.2597190081 3.7121024 -1103.3156
+117359.2597190584 3.7121418 -1103.3156
+117360.2597191087 3.7121024 -1103.2562
+117361.259719159 3.7121024 -1103.3749
+117362.2597192093 3.7121418 -1103.2562
+117363.2597192596 3.7121811 -1103.2562
+117364.2597193099 3.7119842 -1103.2562
+117365.2597193602 3.7120235 -1103.197
+117366.2597194104 3.7119448 -1103.2366
+117367.2597194607 3.7120235 -1103.2366
+117368.259719511 3.7120235 -1103.1774
+117369.2597195613 3.7120235 -1103.197
+117370.2597196116 3.7119055 -1103.2761
+117371.2597196619 3.7120235 -1103.2168
+117372.2597197122 3.7119055 -1103.2761
+117373.2597197625 3.7119055 -1103.2959
+117374.2597198128 3.7118661 -1103.2761
+117375.2597198631 3.7119448 -1103.3353
+117376.2597199134 3.7118268 -1103.2168
+117377.2597199637 3.7117875 -1103.2366
+117378.2597200139 3.7118661 -1103.2959
+117379.2597200642 3.7118661 -1103.2366
+117380.2597201145 3.7118661 -1103.3156
+117381.2597201648 3.7117481 -1103.2562
+117382.2597202151 3.7118268 -1103.2761
+117383.2597202654 3.7117875 -1103.2562
+117384.2597203157 3.7117085 -1103.2959
+117385.259720366 3.7117085 -1103.1576
+117386.2597204163 3.7116692 -1103.1576
+117387.2597204666 3.7117481 -1103.3156
+117388.2597205169 3.7116692 -1103.2366
+117389.2597205671 3.7116692 -1103.1774
+117390.2597206174 3.7117481 -1103.2562
+117391.2597206677 3.7117875 -1103.2562
+117392.259720718 3.7116692 -1103.2366
+117393.2597207683 3.7117085 -1103.2562
+117394.2597208186 3.7116692 -1103.2366
+117395.2597208689 3.7116299 -1103.3156
+117396.2597209192 3.7116692 -1103.1774
+117397.2597209695 3.7116299 -1103.2366
+117398.2597210198 3.7116692 -1103.2959
+117399.2597210701 3.7116692 -1103.2959
+117400.2597211204 3.7115119 -1103.197
+117401.2597211706 3.7115119 -1103.2562
+117402.2597212209 3.7115119 -1103.2562
+117403.2597212712 3.7116692 -1103.2168
+117404.2597213215 3.7115119 -1103.2168
+117405.2597213718 3.7114332 -1103.3156
+117406.2597214221 3.7114725 -1103.2168
+117407.2597214724 3.7114725 -1103.2562
+117408.2597215227 3.7114725 -1103.2366
+117409.259721573 3.7114332 -1103.2761
+117410.2597216233 3.7114332 -1103.2959
+117411.2597216736 3.7113936 -1103.2366
+117412.2597217239 3.7113543 -1103.2168
+117413.2597217741 3.7112756 -1103.1378
+117414.2597218244 3.7114332 -1103.2562
+117415.2597218747 3.7114725 -1103.2168
+117416.259721925 3.7113149 -1103.2761
+117417.2597219753 3.7113149 -1103.2761
+117418.2597220256 3.7113936 -1103.2168
+117419.2597220759 3.7114725 -1103.2168
+117420.2597221262 3.7113543 -1103.197
+117421.2597221765 3.7115119 -1103.2366
+117422.2597222268 3.7113543 -1103.2761
+117423.2597222771 3.7112362 -1103.2366
+117424.2597223273 3.7111576 -1103.2168
+117425.2597223776 3.7112756 -1103.2366
+117426.2597224279 3.7112756 -1103.2562
+117427.2597224782 3.7111969 -1103.3551
+117428.2597225285 3.7112362 -1103.197
+117429.2597225788 3.7112362 -1103.2168
+117430.2597226291 3.7112756 -1103.2168
+117431.2597226794 3.7111969 -1103.2959
+117432.2597227297 3.7112362 -1103.2959
+117433.25972278 3.7111576 -1103.2761
+117434.2597228303 3.7111969 -1103.2562
+117435.2597228806 3.7110393 -1103.3353
+117436.2597229308 3.7112362 -1103.2168
+117437.2597229811 3.7110786 -1103.3156
+117438.2597230314 3.7110786 -1103.2761
+117439.2597230817 3.7110393 -1103.197
+117440.259723132 3.711 -1103.2168
+117441.2597231823 3.7110393 -1103.3353
+117442.2597232326 3.711 -1103.197
+117443.2597232829 3.711 -1103.2761
+117444.2597233332 3.7111182 -1103.3156
+117445.2597233835 3.7109606 -1103.3156
+117446.2597234338 3.711 -1103.2761
+117447.2597234841 3.7109213 -1103.197
+117448.2597235343 3.711 -1103.1576
+117449.2597235846 3.7109606 -1103.197
+117450.2597236349 3.7108819 -1103.2366
+117451.2597236852 3.7108819 -1103.197
+117452.2597237355 3.711 -1103.2761
+117453.2597237858 3.7109213 -1103.2366
+117454.2597238361 3.7109606 -1103.2168
+117455.2597238864 3.7108426 -1103.2562
+117456.2597239367 3.7107637 -1103.2761
+117457.259723987 3.7108033 -1103.3551
+117458.2597240373 3.7108033 -1103.2366
+117459.2597240875 3.7108033 -1103.2366
+117460.2597241378 3.7108033 -1103.2366
+117461.2597241881 3.7107244 -1103.2761
+117462.2597242384 3.7107637 -1103.2959
+117463.2597242887 3.710685 -1103.197
+117464.259724339 3.7108033 -1103.2562
+117465.2597243893 3.7107637 -1103.197
+117466.2597244396 3.7106457 -1103.2562
+117467.2597244899 3.7108033 -1103.1774
+117468.2597245402 3.7107637 -1103.1576
+117469.2597245905 3.7107637 -1103.2168
+117470.2597246408 3.7106457 -1103.2562
+117471.259724691 3.710685 -1103.2366
+117472.2597247413 3.7106457 -1103.2168
+117473.2597247916 3.710567 -1103.2168
+117474.2597248419 3.710567 -1103.2168
+117475.2597248922 3.7105277 -1103.2761
+117476.2597249425 3.7105277 -1103.2366
+117477.2597249928 3.7104881 -1103.2366
+117478.2597250431 3.7106457 -1103.2959
+117479.2597250934 3.7104881 -1103.2959
+117480.2597251437 3.7104881 -1103.2366
+117481.259725194 3.7106063 -1103.2366
+117482.2597252443 3.7105277 -1103.2959
+117483.2597252945 3.7105277 -1103.2168
+117484.2597253448 3.7104881 -1103.2366
+117485.2597253951 3.7105277 -1103.2366
+117486.2597254454 3.7105277 -1103.2562
+117487.2597254957 3.7103701 -1103.2959
+117488.259725546 3.7103701 -1103.2761
+117489.2597255963 3.7103307 -1103.2562
+117490.2597256466 3.7104487 -1103.2168
+117491.2597256969 3.7104487 -1103.2562
+117492.2597257472 3.7103701 -1103.1576
+117493.2597257975 3.7104094 -1103.197
+117494.2597258477 3.7103307 -1103.2562
+117495.259725898 3.7103307 -1103.1576
+117496.2597259483 3.710252 -1103.2562
+117497.2597259986 3.710252 -1103.197
+117498.2597260489 3.7102914 -1103.3749
+117499.2597260992 3.7102914 -1103.2761
+117500.2597261495 3.7102127 -1103.3156
+117501.2597261998 3.710252 -1103.2168
+117502.2597262501 3.710252 -1103.2562
+117503.2597263004 3.7102914 -1103.2562
+117504.2597263507 3.710252 -1103.2168
+117505.259726401 3.710252 -1103.2366
+117506.2597264512 3.710252 -1103.2562
+117507.2597265015 3.7102127 -1103.2366
+117508.2597265518 3.7103307 -1103.2168
+117509.2597266021 3.7100551 -1103.2761
+117510.2597266524 3.7103307 -1103.2959
+117511.2597267027 3.7101731 -1103.3156
+117512.259726753 3.7102127 -1103.2168
+117513.2597268033 3.7100945 -1103.2959
+117514.2597268536 3.7101338 -1103.1378
+117515.2597269039 3.7101338 -1103.2761
+117516.2597269542 3.7099371 -1103.2562
+117517.2597270045 3.7100158 -1103.1774
+117518.2597270547 3.7101338 -1103.1576
+117519.259727105 3.7099371 -1103.2562
+117520.2597271553 3.7099764 -1103.2761
+117521.2597272056 3.7100551 -1103.2562
+117522.2597272559 3.7099764 -1103.197
+117523.2597273062 3.7099764 -1103.2366
+117524.2597273565 3.7099371 -1103.2562
+117525.2597274068 3.7099764 -1103.1774
+117526.2597274571 3.7099764 -1103.2562
+117527.2597275074 3.7098978 -1103.2761
+117528.2597275577 3.7099371 -1103.2366
+117529.2597276079 3.7099371 -1103.2562
+117530.2597276582 3.7098978 -1103.3156
+117531.2597277085 3.7098978 -1103.2562
+117532.2597277588 3.7098582 -1103.1576
+117533.2597278091 3.7099371 -1103.2168
+117534.2597278594 3.7098188 -1103.2562
+117535.2597279097 3.7098582 -1103.2366
+117536.25972796 3.7098188 -1103.2562
+117537.2597280103 3.7098188 -1103.3353
+117538.2597280606 3.7097795 -1103.2959
+117539.2597281109 3.7097008 -1103.2761
+117540.2597281612 3.7098582 -1103.2959
+117541.2597282114 3.7097795 -1103.2562
+117542.2597282617 3.7096615 -1103.2761
+117543.259728312 3.7097402 -1103.2168
+117544.2597283623 3.7096615 -1103.2168
+117545.2597284126 3.7097008 -1103.197
+117546.2597284629 3.7096615 -1103.1182
+117547.2597285132 3.7097402 -1103.3156
+117548.2597285635 3.7096615 -1103.2761
+117549.2597286138 3.7095828 -1103.2168
+117550.2597286641 3.7096615 -1103.2562
+117551.2597287144 3.7095432 -1103.2761
+117552.2597287647 3.7095432 -1103.2366
+117553.2597288149 3.7095039 -1103.2366
+117554.2597288652 3.7096221 -1103.2959
+117555.2597289155 3.7096221 -1103.2761
+117556.2597289658 3.7095039 -1103.3156
+117557.2597290161 3.7095828 -1103.1774
+117558.2597290664 3.7094646 -1103.2761
+117559.2597291167 3.7095432 -1103.2562
+117560.259729167 3.7094252 -1103.2959
+117561.2597292173 3.7095039 -1103.2562
+117562.2597292676 3.7095828 -1103.2562
+117563.2597293179 3.7094646 -1103.1576
+117564.2597293681 3.7094252 -1103.3156
+117565.2597294184 3.7094646 -1103.197
+117566.2597294687 3.7093859 -1103.2761
+117567.259729519 3.7093859 -1103.1774
+117568.2597295693 3.7094252 -1103.2168
+117569.2597296196 3.7093465 -1103.2168
+117570.2597296699 3.7093465 -1103.2168
+117571.2597297202 3.7094252 -1103.2761
+117572.2597297705 3.7093859 -1103.2562
+117573.2597298208 3.7093465 -1103.2959
+117574.2597298711 3.7093465 -1103.197
+117575.2597299214 3.7092283 -1103.2959
+117576.2597299716 3.7093072 -1103.3156
+117577.2597300219 3.7092679 -1103.2366
+117578.2597300722 3.7092679 -1103.2168
+117579.2597301225 3.7093072 -1103.3156
+117580.2597301728 3.7092679 -1103.2366
+117581.2597302231 3.7092679 -1103.1774
+117582.2597302734 3.7091889 -1103.2366
+117583.2597303237 3.7092679 -1103.2761
+117584.259730374 3.7092283 -1103.2168
+117585.2597304243 3.7091889 -1103.197
+117586.2597304746 3.7092283 -1103.2168
+117587.2597305248 3.7091889 -1103.197
+117588.2597305751 3.7091889 -1103.2562
+117589.2597306254 3.7091496 -1103.2366
+117590.2597306757 3.7091103 -1103.2959
+117591.259730726 3.7091103 -1103.2366
+117592.2597307763 3.7091496 -1103.2366
+117593.2597308266 3.7091103 -1103.2959
+117594.2597308769 3.7091496 -1103.2168
+117595.2597309272 3.7090316 -1103.2366
+117596.2597309775 3.7089922 -1103.197
+117597.2597310278 3.7090709 -1103.3156
+117598.2597310781 3.7089922 -1103.2761
+117599.2597311283 3.7090709 -1103.3156
+117600.2597311786 3.7090316 -1103.197
+117601.2597312289 3.7089922 -1103.2959
+117602.2597312792 3.7089529 -1103.2562
+117603.2597313295 3.7089133 -1103.1576
+117604.2597313798 3.7089922 -1103.2761
+117605.2597314301 3.7089133 -1103.1378
+117606.2597314804 3.7089529 -1103.197
+117607.2597315307 3.708874 -1103.2562
+117608.259731581 3.7089133 -1103.197
+117609.2597316313 3.708874 -1103.2168
+117610.2597316816 3.7089529 -1103.197
+117611.2597317318 3.7087953 -1103.2366
+117612.2597317821 3.708756 -1103.2366
+117613.2597318324 3.708874 -1103.2366
+117614.2597318827 3.7088346 -1103.1774
+117615.259731933 3.7087953 -1103.197
+117616.2597319833 3.708756 -1103.2562
+117617.2597320336 3.7087953 -1103.2959
+117618.2597320839 3.708874 -1103.3353
+117619.2597321342 3.7088346 -1103.2761
+117620.2597321845 3.708756 -1103.2761
+117621.2597322348 3.708874 -1103.1774
+117622.259732285 3.7086773 -1103.197
+117623.2597323353 3.7086773 -1103.197
+117624.2597323856 3.7086377 -1103.2366
+117625.2597324359 3.7085984 -1103.2366
+117626.2597324862 3.7086377 -1103.2959
+117627.2597325365 3.708559 -1103.2168
+117628.2597325868 3.7085984 -1103.2562
+117629.2597326371 3.7087166 -1103.3156
+117630.2597326874 3.7086773 -1103.197
+117631.2597327377 3.7085984 -1103.2366
+117632.259732788 3.7086377 -1103.2366
+117633.2597328383 3.7086377 -1103.2366
+117634.2597328885 3.708559 -1103.197
+117635.2597329388 3.708559 -1103.2562
+117636.2597329891 3.708441 -1103.1774
+117637.2597330394 3.7085197 -1103.2761
+117638.2597330897 3.7085197 -1103.1378
+117639.25973314 3.7085197 -1103.2959
+117640.2597331903 3.708441 -1103.2366
+117641.2597332406 3.708559 -1103.2761
+117642.2597332909 3.7084017 -1103.2562
+117643.2597333412 3.7084017 -1103.3156
+117644.2597333915 3.7084804 -1103.2562
+117645.2597334418 3.7083623 -1103.2959
+117646.259733492 3.7084017 -1103.2562
+117647.2597335423 3.708441 -1103.197
+117648.2597335926 3.7084017 -1103.2366
+117649.2597336429 3.7083623 -1103.2761
+117650.2597336932 3.7083228 -1103.197
+117651.2597337435 3.7083623 -1103.197
+117652.2597337938 3.7084017 -1103.1576
+117653.2597338441 3.7082834 -1103.2562
+117654.2597338944 3.7082834 -1103.2366
+117655.2597339447 3.7083623 -1103.2366
+117656.259733995 3.7083623 -1103.2761
+117657.2597340452 3.7083623 -1103.1576
+117658.2597340955 3.7082834 -1103.2761
+117659.2597341458 3.7082441 -1103.2562
+117660.2597341961 3.7082047 -1103.2562
+117661.2597342464 3.7081654 -1103.2366
+117662.2597342967 3.7082441 -1103.2168
+117663.259734347 3.7081654 -1103.2959
+117664.2597343973 3.7082047 -1103.2562
+117665.2597344476 3.7081261 -1103.2562
+117666.2597344979 3.7081654 -1103.3749
+117667.2597345482 3.7080474 -1103.2366
+117668.2597345985 3.7080474 -1103.2761
+117669.2597346487 3.7080867 -1103.2761
+117670.259734699 3.7080474 -1103.1378
+117671.2597347493 3.7081261 -1103.2959
+117672.2597347996 3.7080474 -1103.2168
+117673.2597348499 3.7080867 -1103.1378
+117674.2597349002 3.7080078 -1103.2959
+117675.2597349505 3.7080078 -1103.2562
+117676.2597350008 3.7080867 -1103.2168
+117677.2597350511 3.7080474 -1103.2761
+117678.2597351014 3.7080078 -1103.2959
+117679.2597351517 3.7079291 -1103.3551
+117680.259735202 3.7080078 -1103.197
+117681.2597352522 3.7080474 -1103.2562
+117682.2597353025 3.7078898 -1103.2959
+117683.2597353528 3.7078505 -1103.2366
+117684.2597354031 3.7079291 -1103.3156
+117685.2597354534 3.7079291 -1103.2168
+117686.2597355037 3.7078505 -1103.2366
+117687.259735554 3.7078505 -1103.3353
+117688.2597356043 3.7079291 -1103.3353
+117689.2597356546 3.7078111 -1103.2959
+117690.2597357049 3.7078505 -1103.2761
+117691.2597357552 3.7078111 -1103.2562
+117692.2597358054 3.7077718 -1103.2761
+117693.2597358557 3.7078505 -1103.2168
+117694.259735906 3.7078505 -1103.2562
+117695.2597359563 3.7077718 -1103.2761
+117696.2597360066 3.7076929 -1103.2366
+117697.2597360569 3.7076929 -1103.2562
+117698.2597361072 3.7077718 -1103.1774
+117699.2597361575 3.7078111 -1103.3156
+117700.2597362078 3.7077324 -1103.2366
+117701.2597362581 3.7076929 -1103.2168
+117702.2597363084 3.7077324 -1103.2168
+117703.2597363587 3.7076929 -1103.2959
+117704.2597364089 3.7076929 -1103.3353
+117705.2597364592 3.7076535 -1103.3156
+117706.2597365095 3.7076142 -1103.2959
+117707.2597365598 3.7076929 -1103.0785
+117708.2597366101 3.7075355 -1103.2366
+117709.2597366604 3.7075355 -1103.2168
+117710.2597367107 3.7075748 -1103.2168
+117711.259736761 3.7076535 -1103.2168
+117712.2597368113 3.7075355 -1103.2959
+117713.2597368616 3.7074962 -1103.1774
+117714.2597369119 3.7075748 -1103.2366
+117715.2597369622 3.7074962 -1103.2959
+117716.2597370124 3.7075748 -1103.3156
+117717.2597370627 3.7075748 -1103.2761
+117718.259737113 3.7074175 -1103.1378
+117719.2597371633 3.7074962 -1103.2366
+117720.2597372136 3.7074568 -1103.2366
+117721.2597372639 3.7074962 -1103.2366
+117722.2597373142 3.7073779 -1103.197
+117723.2597373645 3.7074175 -1103.2168
+117724.2597374148 3.7074175 -1103.2168
+117725.2597374651 3.7073386 -1103.2761
+117726.2597375154 3.7074175 -1103.2366
+117727.2597375656 3.7074175 -1103.197
+117728.2597376159 3.7074568 -1103.2168
+117729.2597376662 3.7073779 -1103.2366
+117730.2597377165 3.7073386 -1103.1774
+117731.2597377668 3.7072599 -1103.1576
+117732.2597378171 3.7073386 -1103.197
+117733.2597378674 3.7073386 -1103.2761
+117734.2597379177 3.7072206 -1103.197
+117735.259737968 3.7072206 -1103.2366
+117736.2597380183 3.7071419 -1103.3945
+117737.2597380686 3.7071812 -1103.2761
+117738.2597381189 3.7072206 -1103.2366
+117739.2597381691 3.7073386 -1103.2168
+117740.2597382194 3.7071812 -1103.2562
+117741.2597382697 3.7071419 -1103.2959
+117742.25973832 3.7071419 -1103.1774
+117743.2597383703 3.7071025 -1103.2168
+117744.2597384206 3.7071812 -1103.2366
+117745.2597384709 3.7071419 -1103.2366
+117746.2597385212 3.707063 -1103.197
+117747.2597385715 3.7071025 -1103.2959
+117748.2597386218 3.7071025 -1103.2562
+117749.2597386721 3.7071025 -1103.2168
+117750.2597387224 3.7071419 -1103.2562
+117751.2597387726 3.7069449 -1103.1576
+117752.2597388229 3.7070236 -1103.2761
+117753.2597388732 3.7070236 -1103.2761
+117754.2597389235 3.7070236 -1103.2761
+117755.2597389738 3.7071025 -1103.2562
+117756.2597390241 3.707063 -1103.2959
+117757.2597390744 3.7071025 -1103.2562
+117758.2597391247 3.7069843 -1103.2168
+117759.259739175 3.7069843 -1103.2761
+117760.2597392253 3.7069056 -1103.197
+117761.2597392756 3.7070236 -1103.197
+117762.2597393258 3.7067873 -1103.2366
+117763.2597393761 3.7069843 -1103.2562
+117764.2597394264 3.7069843 -1103.1774
+117765.2597394767 3.7067873 -1103.2366
+117766.259739527 3.7068269 -1103.2168
+117767.2597395773 3.7069056 -1103.2959
+117768.2597396276 3.7068269 -1103.2562
+117769.2597396779 3.7068269 -1103.2761
+117770.2597397282 3.7068269 -1103.1774
+117771.2597397785 3.7068663 -1103.2761
+117772.2597398288 3.7069056 -1103.2761
+117773.2597398791 3.706748 -1103.1378
+117774.2597399293 3.7066693 -1103.2366
+117775.2597399796 3.7067087 -1103.1378
+117776.2597400299 3.706748 -1103.2562
+117777.2597400802 3.7066693 -1103.2959
+117778.2597401305 3.706748 -1103.2562
+117779.2597401808 3.7067087 -1103.2366
+117780.2597402311 3.7066693 -1103.2562
+117781.2597402814 3.70663 -1103.2168
+117782.2597403317 3.7067087 -1103.2168
+117783.259740382 3.7066693 -1103.1774
+117784.2597404323 3.70663 -1103.1774
+117785.2597404826 3.70663 -1103.2761
+117786.2597405328 3.7065907 -1103.2761
+117787.2597405831 3.70663 -1103.2366
+117788.2597406334 3.7065513 -1103.1576
+117789.2597406837 3.7065513 -1103.2562
+117790.259740734 3.7065907 -1103.2761
+117791.2597407843 3.7065513 -1103.2562
+117792.2597408346 3.7064724 -1103.2761
+117793.2597408849 3.7065513 -1103.1576
+117794.2597409352 3.7065513 -1103.197
+117795.2597409855 3.7065513 -1103.2562
+117796.2597410358 3.7064724 -1103.2959
+117797.259741086 3.7063937 -1103.2761
+117798.2597411363 3.7063937 -1103.2959
+117799.2597411866 3.7063937 -1103.197
+117800.2597412369 3.706512 -1103.2168
+117801.2597412872 3.7064724 -1103.1182
+117802.2597413375 3.7063937 -1103.2168
+117803.2597413878 3.7064724 -1103.1576
+117804.2597414381 3.7063544 -1103.2168
+117805.2597414884 3.7063544 -1103.2366
+117806.2597415387 3.706315 -1103.197
+117807.259741589 3.7064331 -1103.2761
+117808.2597416393 3.7064724 -1103.2366
+117809.2597416895 3.7062757 -1103.197
+117810.2597417398 3.7063544 -1103.2959
+117811.2597417901 3.706315 -1103.2366
+117812.2597418404 3.7063544 -1103.197
+117813.2597418907 3.7062757 -1103.2959
+117814.259741941 3.7062364 -1103.2366
+117815.2597419913 3.7061574 -1103.2562
+117816.2597420416 3.7062757 -1103.2562
+117817.2597420919 3.7062364 -1103.2366
+117818.2597421422 3.706315 -1103.2562
+117819.2597421925 3.7062364 -1103.2959
+117820.2597422428 3.7060788 -1103.2168
+117821.259742293 3.7062757 -1103.2562
+117822.2597423433 3.7061574 -1103.2366
+117823.2597423936 3.7061181 -1103.2168
+117824.2597424439 3.706197 -1103.2562
+117825.2597424942 3.7061574 -1103.2168
+117826.2597425445 3.7061181 -1103.1774
+117827.2597425948 3.7061181 -1103.2168
+117828.2597426451 3.7060001 -1103.2761
+117829.2597426954 3.7060788 -1103.2562
+117830.2597427457 3.7060394 -1103.2761
+117831.259742796 3.7061181 -1103.2168
+117832.2597428462 3.7061181 -1103.2562
+117833.2597428965 3.7060788 -1103.1576
+117834.2597429468 3.7058425 -1103.1774
+117835.2597429971 3.7059214 -1103.2366
+117836.2597430474 3.7059608 -1103.197
+117837.2597430977 3.7060788 -1103.2761
+117838.259743148 3.7058821 -1103.2761
+117839.2597431983 3.7059214 -1103.2168
+117840.2597432486 3.7059214 -1103.2562
+117841.2597432989 3.7058821 -1103.2562
+117842.2597433492 3.7058425 -1103.2761
+117843.2597433995 3.7059214 -1103.1774
+117844.2597434497 3.7058821 -1103.3353
+117845.2597435 3.7058425 -1103.197
+117846.2597435503 3.7058032 -1103.2761
+117847.2597436006 3.7059214 -1103.2761
+117848.2597436509 3.7058821 -1103.2562
+117849.2597437012 3.7058425 -1103.2761
+117850.2597437515 3.7058032 -1103.2761
+117851.2597438018 3.7057638 -1103.197
+117852.2597438521 3.7058425 -1103.1378
+117853.2597439024 3.7057245 -1103.2761
+117854.2597439527 3.7058425 -1103.2366
+117855.2597440029 3.7056851 -1103.2366
+117856.2597440532 3.7057245 -1103.2959
+117857.2597441035 3.7057638 -1103.2761
+117858.2597441538 3.7057245 -1103.2168
+117859.2597442041 3.7056065 -1103.2959
+117860.2597442544 3.7056065 -1103.2366
+117861.2597443047 3.7055671 -1103.2562
+117862.259744355 3.7056458 -1103.197
+117863.2597444053 3.7055671 -1103.1378
+117864.2597444556 3.7055671 -1103.1774
+117865.2597445059 3.7056458 -1103.2761
+117866.2597445562 3.7056065 -1103.197
+117867.2597446064 3.7055671 -1103.1774
+117868.2597446567 3.7055275 -1103.2959
+117869.259744707 3.7055275 -1103.1576
+117870.2597447573 3.7054882 -1103.2761
+117871.2597448076 3.7054489 -1103.2562
+117872.2597448579 3.7054882 -1103.2366
+117873.2597449082 3.7055671 -1103.2562
+117874.2597449585 3.7054095 -1103.2366
+117875.2597450088 3.7054489 -1103.2959
+117876.2597450591 3.7055275 -1103.2168
+117877.2597451094 3.7054489 -1103.197
+117878.2597451597 3.7054489 -1103.2168
+117879.2597452099 3.7054882 -1103.2168
+117880.2597452602 3.7052915 -1103.2366
+117881.2597453105 3.7053308 -1103.2366
+117882.2597453608 3.7053308 -1103.3353
+117883.2597454111 3.7054095 -1103.2366
+117884.2597454614 3.7053308 -1103.2562
+117885.2597455117 3.7053308 -1103.2168
+117886.259745562 3.7053308 -1103.2168
+117887.2597456123 3.7054095 -1103.2562
+117888.2597456626 3.7053702 -1103.1774
+117889.2597457129 3.7053308 -1103.2168
+117890.2597457631 3.7053308 -1103.1576
+117891.2597458134 3.7051733 -1103.2168
+117892.2597458637 3.7052915 -1103.2366
+117893.259745914 3.7051339 -1103.2562
+117894.2597459643 3.7052126 -1103.2562
+117895.2597460146 3.7052522 -1103.197
+117896.2597460649 3.7052522 -1103.2168
+117897.2597461152 3.7051733 -1103.2366
+117898.2597461655 3.7051733 -1103.1576
+117899.2597462158 3.7052126 -1103.3156
+117900.2597462661 3.7050552 -1103.2761
+117901.2597463164 3.7051339 -1103.2168
+117902.2597463666 3.7051339 -1103.1576
+117903.2597464169 3.7050946 -1103.2761
+117904.2597464672 3.7050159 -1103.197
+117905.2597465175 3.7050552 -1103.197
+117906.2597465678 3.7051339 -1103.197
+117907.2597466181 3.7050159 -1103.2366
+117908.2597466684 3.7051339 -1103.2366
+117909.2597467187 3.7050159 -1103.2366
+117910.259746769 3.7050159 -1103.2761
+117911.2597468193 3.7050552 -1103.2959
+117912.2597468696 3.7050946 -1103.2959
+117913.2597469199 3.7050552 -1103.2562
+117914.2597469701 3.704937 -1103.3353
+117915.2597470204 3.704937 -1103.2761
+117916.2597470707 3.7049766 -1103.1774
+117917.259747121 3.7050946 -1103.2366
+117918.2597471713 3.704937 -1103.2366
+117919.2597472216 3.7048583 -1103.3156
+117920.2597472719 3.7048976 -1103.2366
+117921.2597473222 3.7048583 -1103.2562
+117922.2597473725 3.7048976 -1103.3156
+117923.2597474228 3.704819 -1103.2562
+117924.2597474731 3.7048583 -1103.2761
+117925.2597475233 3.704819 -1103.2959
+117926.2597475736 3.7048583 -1103.197
+117927.2597476239 3.7047403 -1103.2959
+117928.2597476742 3.7047009 -1103.2366
+117929.2597477245 3.7048976 -1103.2562
+117930.2597477748 3.704819 -1103.2168
+117931.2597478251 3.7047796 -1103.2959
+117932.2597478754 3.7047403 -1103.197
+117933.2597479257 3.7047009 -1103.2761
+117934.259747976 3.7047009 -1103.1182
+117935.2597480263 3.7047403 -1103.197
+117936.2597480766 3.7047403 -1103.2562
+117937.2597481268 3.7046616 -1103.2562
+117938.2597481771 3.7047009 -1103.2562
+117939.2597482274 3.7045827 -1103.3156
+117940.2597482777 3.7047796 -1103.2959
+117941.259748328 3.7047009 -1103.2761
+117942.2597483783 3.7046616 -1103.2168
+117943.2597484286 3.7046616 -1103.2168
+117944.2597484789 3.7045434 -1103.2366
+117945.2597485292 3.7045434 -1103.2366
+117946.2597485795 3.704622 -1103.2366
+117947.2597486298 3.7044647 -1103.2562
+117948.2597486801 3.7045434 -1103.2562
+117949.2597487303 3.7045434 -1103.2366
+117950.2597487806 3.7044647 -1103.197
+117951.2597488309 3.7044647 -1103.2168
+117952.2597488812 3.704504 -1103.197
+117953.2597489315 3.7045434 -1103.2562
+117954.2597489818 3.7044253 -1103.2366
+117955.2597490321 3.7044647 -1103.3156
+117956.2597490824 3.7044253 -1103.2959
+117957.2597491327 3.7044253 -1103.197
+117958.259749183 3.7044647 -1103.2366
+117959.2597492333 3.7043071 -1103.2959
+117960.2597492835 3.7044253 -1103.1774
+117961.2597493338 3.7044647 -1103.2168
+117962.2597493841 3.7043071 -1103.197
+117963.2597494344 3.704386 -1103.2761
+117964.2597494847 3.7044253 -1103.197
+117965.259749535 3.7043071 -1103.2168
+117966.2597495853 3.7042677 -1103.197
+117967.2597496356 3.7042677 -1103.1774
+117968.2597496859 3.7042677 -1103.197
+117969.2597497362 3.7042677 -1103.2168
+117970.2597497865 3.7042677 -1103.2562
+117971.2597498368 3.7042677 -1103.2366
+117972.259749887 3.7042284 -1103.197
+117973.2597499373 3.7041891 -1103.2366
+117974.2597499876 3.7041497 -1103.2168
+117975.2597500379 3.7042284 -1103.1378
+117976.2597500882 3.7041891 -1103.3156
+117977.2597501385 3.7041104 -1103.2366
+117978.2597501888 3.7041891 -1103.3353
+117979.2597502391 3.7041104 -1103.1182
+117980.2597502894 3.7041497 -1103.2168
+117981.2597503397 3.7041891 -1103.2168
+117982.25975039 3.704071 -1103.197
+117983.2597504403 3.7041104 -1103.2761
+117984.2597504905 3.7040317 -1103.1774
+117985.2597505408 3.704071 -1103.2168
+117986.2597505911 3.7041891 -1103.3551
+117987.2597506414 3.7040317 -1103.2562
+117988.2597506917 3.7041104 -1103.2761
+117989.259750742 3.704071 -1103.2366
+117990.2597507923 3.7039135 -1103.2366
+117991.2597508426 3.704071 -1103.2366
+117992.2597508929 3.7039528 -1103.2959
+117993.2597509432 3.7039921 -1103.2761
+117994.2597509935 3.7039135 -1103.2366
+117995.2597510437 3.7039921 -1103.2562
+117996.259751094 3.7039921 -1103.2761
+117997.2597511443 3.7039135 -1103.2366
+117998.2597511946 3.7039528 -1103.197
+117999.2597512449 3.7039135 -1103.3156
+118000.2597512952 3.7038348 -1103.2761
+118001.2597513455 3.7038741 -1103.2366
+118002.2597513958 3.7038348 -1103.2366
+118003.2597514461 3.7037561 -1103.2562
+118004.2597514964 3.7038348 -1103.1576
+118005.2597515467 3.7037561 -1103.2366
+118006.259751597 3.7039135 -1103.2562
+118007.2597516472 3.7037954 -1103.2761
+118008.2597516975 3.7037561 -1103.2562
+118009.2597517478 3.7037561 -1103.2562
+118010.2597517981 3.7037168 -1103.2168
+118011.2597518484 3.7037561 -1103.2562
+118012.2597518987 3.7036772 -1103.2366
+118013.259751949 3.7037954 -1103.2562
+118014.2597519993 3.7037954 -1103.2562
+118015.2597520496 3.7035985 -1103.2366
+118016.2597520999 3.7036772 -1103.197
+118017.2597521502 3.7036378 -1103.1774
+118018.2597522005 3.7036378 -1103.2959
+118019.2597522507 3.7035985 -1103.1576
+118020.259752301 3.7036378 -1103.197
+118021.2597523513 3.7035592 -1103.2366
+118022.2597524016 3.7036378 -1103.1774
+118023.2597524519 3.7035592 -1103.197
+118024.2597525022 3.7035198 -1103.1576
+118025.2597525525 3.7036378 -1103.197
+118026.2597526028 3.7034018 -1103.2168
+118027.2597526531 3.7035592 -1103.197
+118028.2597527034 3.7035985 -1103.3156
+118029.2597527537 3.7035198 -1103.2562
+118030.2597528039 3.7034411 -1103.3156
+118031.2597528542 3.7034018 -1103.197
+118032.2597529045 3.7034805 -1103.2761
+118033.2597529548 3.7034018 -1103.1576
+118034.2597530051 3.7034411 -1103.197
+118035.2597530554 3.7033622 -1103.2562
+118036.2597531057 3.7034411 -1103.2168
+118037.259753156 3.7034018 -1103.1576
+118038.2597532063 3.7034411 -1103.2959
+118039.2597532566 3.7033622 -1103.197
+118040.2597533069 3.7034018 -1103.1774
+118041.2597533572 3.7034411 -1103.2366
+118042.2597534074 3.7034018 -1103.2959
+118043.2597534577 3.7034411 -1103.2168
+118044.259753508 3.7032442 -1103.2168
+118045.2597535583 3.7032442 -1103.2562
+118046.2597536086 3.7032835 -1103.2562
+118047.2597536589 3.7033622 -1103.3156
+118048.2597537092 3.7033622 -1103.2168
+118049.2597537595 3.7032049 -1103.0984
+118050.2597538098 3.7032835 -1103.2761
+118051.2597538601 3.7032835 -1103.2168
+118052.2597539104 3.7032835 -1103.1774
+118053.2597539607 3.7032049 -1103.3156
+118054.2597540109 3.7032049 -1103.2168
+118055.2597540612 3.7031655 -1103.3353
+118056.2597541115 3.7032049 -1103.1378
+118057.2597541618 3.7030866 -1103.197
+118058.2597542121 3.7032049 -1103.2168
+118059.2597542624 3.7031655 -1103.2761
+118060.2597543127 3.7030079 -1103.197
+118061.259754363 3.7031262 -1103.2168
+118062.2597544133 3.7031262 -1103.2761
+118063.2597544636 3.7029686 -1103.3353
+118064.2597545139 3.7030866 -1103.3156
+118065.2597545641 3.7030866 -1103.2366
+118066.2597546144 3.7029293 -1103.2168
+118067.2597546647 3.7031262 -1103.2168
+118068.259754715 3.7030079 -1103.2562
+118069.2597547653 3.7031262 -1103.197
+118070.2597548156 3.7029686 -1103.2562
+118071.2597548659 3.7030473 -1103.2761
+118072.2597549162 3.7028899 -1103.197
+118073.2597549665 3.7029293 -1103.2168
+118074.2597550168 3.7028899 -1103.2562
+118075.2597550671 3.7028506 -1103.2366
+118076.2597551174 3.7028112 -1103.2761
+118077.2597551676 3.7029686 -1103.2562
+118078.2597552179 3.7029293 -1103.2168
+118079.2597552682 3.7028112 -1103.2562
+118080.2597553185 3.7028112 -1103.2761
+118081.2597553688 3.7028899 -1103.3156
+118082.2597554191 3.7028112 -1103.2761
+118083.2597554694 3.7028112 -1103.2959
+118084.2597555197 3.7028506 -1103.2562
+118085.25975557 3.7027717 -1103.2761
+118086.2597556203 3.7028112 -1103.2366
+118087.2597556706 3.7028112 -1103.2168
+118088.2597557209 3.7027323 -1103.197
+118089.2597557711 3.7028112 -1103.2562
+118090.2597558214 3.7026536 -1103.1774
+118091.2597558717 3.7028112 -1103.3156
+118092.259755922 3.7027323 -1103.2168
+118093.2597559723 3.7027323 -1103.197
+118094.2597560226 3.7026536 -1103.2562
+118095.2597560729 3.7027717 -1103.2366
+118096.2597561232 3.7026536 -1103.2959
+118097.2597561735 3.7026143 -1103.2366
+118098.2597562238 3.7026143 -1103.1182
+118099.2597562741 3.702575 -1103.197
+118100.2597563243 3.7026536 -1103.1774
+118101.2597563746 3.7026143 -1103.3551
+118102.2597564249 3.702575 -1103.2366
+118103.2597564752 3.702575 -1103.197
+118104.2597565255 3.7026143 -1103.2761
+118105.2597565758 3.702575 -1103.2168
+118106.2597566261 3.702575 -1103.2761
+118107.2597566764 3.7024963 -1103.1774
+118108.2597567267 3.7024567 -1103.2366
+118109.259756777 3.7024963 -1103.197
+118110.2597568273 3.702378 -1103.2562
+118111.2597568776 3.702378 -1103.2562
+118112.2597569278 3.7024963 -1103.1774
+118113.2597569781 3.7024567 -1103.2761
+118114.2597570284 3.7024963 -1103.197
+118115.2597570787 3.7024567 -1103.2168
+118116.259757129 3.702378 -1103.2562
+118117.2597571793 3.7024174 -1103.2562
+118118.2597572296 3.7024174 -1103.2562
+118119.2597572799 3.7023387 -1103.197
+118120.2597573302 3.7023387 -1103.2366
+118121.2597573805 3.7023387 -1103.3156
+118122.2597574308 3.702378 -1103.1774
+118123.2597574811 3.7022994 -1103.2168
+118124.2597575313 3.7022207 -1103.197
+118125.2597575816 3.7023387 -1103.2761
+118126.2597576319 3.70226 -1103.2168
+118127.2597576822 3.7021813 -1103.2168
+118128.2597577325 3.70226 -1103.2761
+118129.2597577828 3.70226 -1103.2761
+118130.2597578331 3.702378 -1103.2366
+118131.2597578834 3.7021813 -1103.2366
+118132.2597579337 3.7022207 -1103.2761
+118133.259757984 3.7021024 -1103.2168
+118134.2597580343 3.7021418 -1103.2366
+118135.2597580845 3.7021813 -1103.2761
+118136.2597581348 3.7021813 -1103.2168
+118137.2597581851 3.7021813 -1103.1774
+118138.2597582354 3.7021418 -1103.2366
+118139.2597582857 3.7021418 -1103.3156
+118140.259758336 3.7021418 -1103.2366
+118141.2597583863 3.7021418 -1103.2959
+118142.2597584366 3.7021024 -1103.2562
+118143.2597584869 3.7020631 -1103.3353
+118144.2597585372 3.7020237 -1103.2562
+118145.2597585875 3.7019844 -1103.1774
+118146.2597586378 3.7019844 -1103.2562
+118147.259758688 3.7020237 -1103.2366
+118148.2597587383 3.7020237 -1103.2562
+118149.2597587886 3.7019451 -1103.1774
+118150.2597588389 3.7019844 -1103.3551
+118151.2597588892 3.7019451 -1103.2562
+118152.2597589395 3.7019844 -1103.197
+118153.2597589898 3.7019844 -1103.1576
+118154.2597590401 3.7018268 -1103.2959
+118155.2597590904 3.7019057 -1103.2168
+118156.2597591407 3.7019057 -1103.2562
+118157.259759191 3.7019057 -1103.197
+118158.2597592412 3.7019057 -1103.2168
+118159.2597592915 3.7018268 -1103.2366
+118160.2597593418 3.7018664 -1103.2562
+118161.2597593921 3.7017875 -1103.2366
+118162.2597594424 3.7017481 -1103.2366
+118163.2597594927 3.7017481 -1103.3353
+118164.259759543 3.7018664 -1103.2366
+118165.2597595933 3.7018268 -1103.197
+118166.2597596436 3.7018268 -1103.2366
+118167.2597596939 3.7017875 -1103.2168
+118168.2597597442 3.7017875 -1103.2959
+118169.2597597945 3.7017481 -1103.3156
+118170.2597598447 3.7017481 -1103.2366
+118171.259759895 3.7016695 -1103.197
+118172.2597599453 3.7017481 -1103.2168
+118173.2597599956 3.7016301 -1103.2959
+118174.2597600459 3.7016301 -1103.197
+118175.2597600962 3.7017088 -1103.2168
+118176.2597601465 3.7016301 -1103.2366
+118177.2597601968 3.7017875 -1103.2366
+118178.2597602471 3.7015908 -1103.2168
+118179.2597602974 3.7017088 -1103.2366
+118180.2597603477 3.7015119 -1103.1774
+118181.259760398 3.7015512 -1103.2959
+118182.2597604482 3.7015908 -1103.2366
+118183.2597604985 3.7015908 -1103.2761
+118184.2597605488 3.7015908 -1103.2761
+118185.2597605991 3.7015119 -1103.2168
+118186.2597606494 3.7015119 -1103.2761
+118187.2597606997 3.7015512 -1103.2168
+118188.25976075 3.7014332 -1103.2562
+118189.2597608003 3.7014725 -1103.2366
+118190.2597608506 3.7014332 -1103.3156
+118191.2597609009 3.7015119 -1103.1576
+118192.2597609512 3.7014332 -1103.2562
+118193.2597610014 3.7014332 -1103.197
+118194.2597610517 3.7013938 -1103.2366
+118195.259761102 3.7015119 -1103.1378
+118196.2597611523 3.7013545 -1103.2959
+118197.2597612026 3.7013545 -1103.2168
+118198.2597612529 3.7013152 -1103.2562
+118199.2597613032 3.7013152 -1103.2761
+118200.2597613535 3.7013938 -1103.2761
+118201.2597614038 3.7012362 -1103.2168
+118202.2597614541 3.7013545 -1103.2562
+118203.2597615044 3.7012362 -1103.2761
+118204.2597615547 3.7013545 -1103.2562
+118205.2597616049 3.7012758 -1103.2761
+118206.2597616552 3.7013152 -1103.2366
+118207.2597617055 3.7012362 -1103.1576
+118208.2597617558 3.7011969 -1103.2761
+118209.2597618061 3.7011576 -1103.2366
+118210.2597618564 3.7011969 -1103.2761
+118211.2597619067 3.7011969 -1103.1576
+118212.259761957 3.7011969 -1103.2959
+118213.2597620073 3.7011182 -1103.197
+118214.2597620576 3.7011576 -1103.2761
+118215.2597621079 3.7011969 -1103.2959
+118216.2597621582 3.7011576 -1103.2366
+118217.2597622084 3.7012362 -1103.2366
+118218.2597622587 3.7011576 -1103.2959
+118219.259762309 3.7010002 -1103.3156
+118220.2597623593 3.7010789 -1103.1774
+118221.2597624096 3.7010002 -1103.197
+118222.2597624599 3.7010002 -1103.2761
+118223.2597625102 3.7009609 -1103.2366
+118224.2597625605 3.7010002 -1103.2562
+118225.2597626108 3.7010002 -1103.2562
+118226.2597626611 3.7010002 -1103.197
+118227.2597627114 3.7010002 -1103.197
+118228.2597627616 3.7009609 -1103.2761
+118229.2597628119 3.7010002 -1103.3353
+118230.2597628622 3.7009213 -1103.2168
+118231.2597629125 3.7009213 -1103.2168
+118232.2597629628 3.700882 -1103.2366
+118233.2597630131 3.7010396 -1103.2366
+118234.2597630634 3.700882 -1103.2761
+118235.2597631137 3.7008033 -1103.2366
+118236.259763164 3.7009213 -1103.2959
+118237.2597632143 3.7009609 -1103.2168
+118238.2597632646 3.700882 -1103.2562
+118239.2597633149 3.7007246 -1103.1774
+118240.2597633651 3.7008033 -1103.2168
+118241.2597634154 3.7008033 -1103.2562
+118242.2597634657 3.7007639 -1103.2366
+118243.259763516 3.7006853 -1103.197
+118244.2597635663 3.7008033 -1103.2366
+118245.2597636166 3.7007246 -1103.2366
+118246.2597636669 3.7007639 -1103.2562
+118247.2597637172 3.7007246 -1103.2761
+118248.2597637675 3.7006853 -1103.1576
+118249.2597638178 3.7008033 -1103.2168
+118250.2597638681 3.700567 -1103.3156
+118251.2597639184 3.7006459 -1103.2168
+118252.2597639686 3.7006853 -1103.1576
+118253.2597640189 3.7006063 -1103.2761
+118254.2597640692 3.7006853 -1103.2761
+118255.2597641195 3.7006459 -1103.2366
+118256.2597641698 3.7006063 -1103.2366
+118257.2597642201 3.700567 -1103.2366
+118258.2597642704 3.7006063 -1103.197
+118259.2597643207 3.7005277 -1103.2761
+118260.259764371 3.7005277 -1103.197
+118261.2597644213 3.7006459 -1103.2168
+118262.2597644716 3.7005277 -1103.1378
+118263.2597645218 3.7006459 -1103.2761
+118264.2597645721 3.7004883 -1103.3156
+118265.2597646224 3.7004883 -1103.1774
+118266.2597646727 3.7004883 -1103.197
+118267.259764723 3.700449 -1103.197
+118268.2597647733 3.7004883 -1103.2761
+118269.2597648236 3.700449 -1103.2761
+118270.2597648739 3.7003703 -1103.1576
+118271.2597649242 3.7004883 -1103.2959
+118272.2597649745 3.7003703 -1103.1378
+118273.2597650248 3.700449 -1103.2168
+118274.2597650751 3.700331 -1103.197
+118275.2597651253 3.7003703 -1103.2366
+118276.2597651756 3.700331 -1103.2168
+118277.2597652259 3.700331 -1103.2366
+118278.2597652762 3.700331 -1103.2168
+118279.2597653265 3.7002521 -1103.2562
+118280.2597653768 3.7002914 -1103.0984
+118281.2597654271 3.7002914 -1103.1774
+118282.2597654774 3.7002521 -1103.1774
+118283.2597655277 3.7002521 -1103.197
+118284.259765578 3.7002914 -1103.3353
+118285.2597656283 3.7002127 -1103.2168
+118286.2597656786 3.7002127 -1103.1774
+118287.2597657288 3.7002521 -1103.2959
+118288.2597657791 3.7002521 -1103.197
+118289.2597658294 3.7002127 -1103.2959
+118290.2597658797 3.7002521 -1103.197
+118291.25976593 3.7002521 -1103.2959
+118292.2597659803 3.7001734 -1103.2366
+118293.2597660306 3.7000947 -1103.1774
+118294.2597660809 3.7001734 -1103.2562
+118295.2597661312 3.700134 -1103.1378
+118296.2597661815 3.7000947 -1103.3156
+118297.2597662318 3.7001734 -1103.2562
+118298.259766282 3.6999764 -1103.3156
+118299.2597663323 3.7000947 -1103.2562
+118300.2597663826 3.7000554 -1103.2168
+118301.2597664329 3.7000554 -1103.2562
+118302.2597664832 3.700016 -1103.2168
+118303.2597665335 3.6999764 -1103.2168
+118304.2597665838 3.6999371 -1103.2761
+118305.2597666341 3.7000554 -1103.2366
+118306.2597666844 3.6999764 -1103.2168
+118307.2597667347 3.6999371 -1103.1378
+118308.259766785 3.6998978 -1103.2761
+118309.2597668353 3.6999764 -1103.1378
+118310.2597668855 3.6999764 -1103.2959
+118311.2597669358 3.6998978 -1103.1774
+118312.2597669861 3.6998191 -1103.3156
+118313.2597670364 3.6998978 -1103.2168
+118314.2597670867 3.6999371 -1103.1182
+118315.259767137 3.6998584 -1103.2562
+118316.2597671873 3.6999371 -1103.197
+118317.2597672376 3.6998584 -1103.2562
+118318.2597672879 3.6998584 -1103.2168
+118319.2597673382 3.6997797 -1103.2168
+118320.2597673885 3.6997404 -1103.2562
+118321.2597674388 3.6998978 -1103.3353
+118322.259767489 3.6997404 -1103.2168
+118323.2597675393 3.6997797 -1103.2761
+118324.2597675896 3.6997008 -1103.1774
+118325.2597676399 3.6997404 -1103.3156
+118326.2597676902 3.6996615 -1103.2366
+118327.2597677405 3.6997404 -1103.2168
+118328.2597677908 3.6997008 -1103.2562
+118329.2597678411 3.6996615 -1103.2366
+118330.2597678914 3.6996222 -1103.2562
+118331.2597679417 3.6997797 -1103.2761
+118332.259767992 3.6997404 -1103.2562
+118333.2597680422 3.6995828 -1103.2366
+118334.2597680925 3.6997008 -1103.1774
+118335.2597681428 3.6995435 -1103.2366
+118336.2597681931 3.6996222 -1103.2168
+118337.2597682434 3.6996222 -1103.2959
+118338.2597682937 3.6996615 -1103.2959
+118339.259768344 3.6995828 -1103.1576
+118340.2597683943 3.6995435 -1103.197
+118341.2597684446 3.6995435 -1103.2168
+118342.2597684949 3.6994648 -1103.2562
+118343.2597685452 3.6993859 -1103.197
+118344.2597685955 3.6995041 -1103.1576
+118345.2597686457 3.6995041 -1103.2366
+118346.259768696 3.6994255 -1103.197
+118347.2597687463 3.6994255 -1103.2761
+118348.2597687966 3.6993859 -1103.2562
+118349.2597688469 3.6994648 -1103.2168
+118350.2597688972 3.6993859 -1103.2366
+118351.2597689475 3.6994648 -1103.2366
+118352.2597689978 3.6994255 -1103.2761
+118353.2597690481 3.6993859 -1103.2168
+118354.2597690984 3.6993072 -1103.2168
+118355.2597691487 3.6993859 -1103.2168
+118356.259769199 3.6993072 -1103.2168
+118357.2597692492 3.6993072 -1103.1774
+118358.2597692995 3.6993072 -1103.2168
+118359.2597693498 3.6992679 -1103.2366
+118360.2597694001 3.6992679 -1103.3551
+118361.2597694504 3.6993072 -1103.2562
+118362.2597695007 3.6993072 -1103.197
+118363.259769551 3.6991498 -1103.197
+118364.2597696013 3.6992679 -1103.197
+118365.2597696516 3.6992285 -1103.1576
+118366.2597697019 3.6991498 -1103.2562
+118367.2597697522 3.6992285 -1103.197
+118368.2597698024 3.6991892 -1103.197
+118369.2597698527 3.6992285 -1103.2366
+118370.259769903 3.6992285 -1103.2562
+118371.2597699533 3.6991498 -1103.2761
+118372.2597700036 3.6990709 -1103.1576
+118373.2597700539 3.6991498 -1103.2562
+118374.2597701042 3.6990709 -1103.197
+118375.2597701545 3.6990709 -1103.2366
+118376.2597702048 3.6991498 -1103.2168
+118377.2597702551 3.6991105 -1103.2562
+118378.2597703054 3.6991498 -1103.1774
+118379.2597703557 3.6990316 -1103.2562
+118380.2597704059 3.6990709 -1103.3156
+118381.2597704562 3.6990709 -1103.1774
+118382.2597705065 3.6990709 -1103.197
+118383.2597705568 3.6989136 -1103.2366
+118384.2597706071 3.6990316 -1103.3353
+118385.2597706574 3.6989923 -1103.2168
+118386.2597707077 3.6990316 -1103.2168
+118387.259770758 3.6989529 -1103.197
+118388.2597708083 3.6988742 -1103.2168
+118389.2597708586 3.6989136 -1103.2562
+118390.2597709089 3.6989136 -1103.2168
+118391.2597709592 3.6988742 -1103.2168
+118392.2597710094 3.6988742 -1103.2761
+118393.2597710597 3.6988742 -1103.2562
+118394.25977111 3.6988349 -1103.2761
+118395.2597711603 3.6988349 -1103.2562
+118396.2597712106 3.6987166 -1103.2761
+118397.2597712609 3.6989136 -1103.2562
+118398.2597713112 3.698756 -1103.2168
+118399.2597713615 3.698756 -1103.197
+118400.2597714118 3.698756 -1103.2366
+118401.2597714621 3.6987166 -1103.2366
+118402.2597715124 3.6987166 -1103.1774
+118403.2597715626 3.6987956 -1103.3353
+118404.2597716129 3.6987166 -1103.2959
+118405.2597716632 3.6986773 -1103.2366
+118406.2597717135 3.698638 -1103.2562
+118407.2597717638 3.6987166 -1103.1576
+118408.2597718141 3.698638 -1103.2562
+118409.2597718644 3.698756 -1103.2562
+118410.2597719147 3.698638 -1103.2562
+118411.259771965 3.6986773 -1103.197
+118412.2597720153 3.6986773 -1103.2562
+118413.2597720656 3.6985986 -1103.2366
+118414.2597721159 3.698638 -1103.2562
+118415.2597721661 3.6985986 -1103.2366
+118416.2597722164 3.698638 -1103.2562
+118417.2597722667 3.6985986 -1103.2562
+118418.259772317 3.6985593 -1103.1576
+118419.2597723673 3.6985593 -1103.2761
+118420.2597724176 3.6985593 -1103.1774
+118421.2597724679 3.6985593 -1103.2562
+118422.2597725182 3.6985199 -1103.3156
+118423.2597725685 3.6985593 -1103.2959
+118424.2597726188 3.6985199 -1103.2168
+118425.2597726691 3.698441 -1103.2168
+118426.2597727194 3.6984017 -1103.2959
+118427.2597727696 3.698441 -1103.2366
+118428.2597728199 3.6984806 -1103.2761
+118429.2597728702 3.698441 -1103.2366
+118430.2597729205 3.6984806 -1103.3156
+118431.2597729708 3.6984017 -1103.2761
+118432.2597730211 3.6983624 -1103.2366
+118433.2597730714 3.6984017 -1103.2562
+118434.2597731217 3.698323 -1103.2366
+118435.259773172 3.6983624 -1103.2168
+118436.2597732223 3.6983624 -1103.2168
+118437.2597732726 3.6984017 -1103.197
+118438.2597733228 3.698323 -1103.2959
+118439.2597733731 3.6982837 -1103.197
+118440.2597734234 3.6982443 -1103.2168
+118441.2597734737 3.6984017 -1103.2562
+118442.259773524 3.6982443 -1103.2761
+118443.2597735743 3.6982837 -1103.1774
+118444.2597736246 3.698205 -1103.2562
+118445.2597736749 3.6982837 -1103.2366
+118446.2597737252 3.6981657 -1103.1576
+118447.2597737755 3.6981657 -1103.1576
+118448.2597738258 3.698205 -1103.2562
+118449.2597738761 3.6982837 -1103.197
+118450.2597739263 3.6982443 -1103.2168
+118451.2597739766 3.6982443 -1103.2562
+118452.2597740269 3.6981261 -1103.197
+118453.2597740772 3.6980081 -1103.3353
+118454.2597741275 3.6981261 -1103.2761
+118455.2597741778 3.6980867 -1103.2168
+118456.2597742281 3.6981657 -1103.197
+118457.2597742784 3.6980081 -1103.2562
+118458.2597743287 3.6980474 -1103.3353
+118459.259774379 3.6980081 -1103.2168
+118460.2597744293 3.6980474 -1103.3156
+118461.2597744795 3.6980474 -1103.2562
+118462.2597745298 3.6979294 -1103.197
+118463.2597745801 3.6979687 -1103.197
+118464.2597746304 3.6980081 -1103.2168
+118465.2597746807 3.6980474 -1103.2168
+118466.259774731 3.69789 -1103.197
+118467.2597747813 3.6980081 -1103.197
+118468.2597748316 3.6979687 -1103.2168
+118469.2597748819 3.6979294 -1103.2562
+118470.2597749322 3.6979294 -1103.1774
+118471.2597749825 3.6979294 -1103.2366
+118472.2597750328 3.6977718 -1103.2562
+118473.259775083 3.6978111 -1103.197
+118474.2597751333 3.69789 -1103.2168
+118475.2597751836 3.6978111 -1103.1774
+118476.2597752339 3.69789 -1103.197
+118477.2597752842 3.6978111 -1103.2366
+118478.2597753345 3.6978505 -1103.2366
+118479.2597753848 3.6978505 -1103.197
+118480.2597754351 3.6977324 -1103.2366
+118481.2597754854 3.6977718 -1103.2761
+118482.2597755357 3.6976538 -1103.197
+118483.259775586 3.6978111 -1103.2366
+118484.2597756363 3.6977324 -1103.2959
+118485.2597756865 3.6977324 -1103.2366
+118486.2597757368 3.6976931 -1103.2366
+118487.2597757871 3.6975751 -1103.2562
+118488.2597758374 3.6977324 -1103.1378
+118489.2597758877 3.6976538 -1103.2168
+118490.259775938 3.6976931 -1103.2168
+118491.2597759883 3.6976144 -1103.2168
+118492.2597760386 3.6975355 -1103.2366
+118493.2597760889 3.6976144 -1103.2168
+118494.2597761392 3.6976538 -1103.2562
+118495.2597761895 3.6975751 -1103.2562
+118496.2597762397 3.6975355 -1103.1774
+118497.25977629 3.6976144 -1103.1378
+118498.2597763403 3.6975751 -1103.2959
+118499.2597763906 3.6975751 -1103.197
+118500.2597764409 3.6974568 -1103.2366
+118501.2597764912 3.6975355 -1103.2168
+118502.2597765415 3.6974568 -1103.2366
+118503.2597765918 3.6974962 -1103.2366
+118504.2597766421 3.6974568 -1103.2168
+118505.2597766924 3.6974962 -1103.2761
+118506.2597767427 3.6974962 -1103.2562
+118507.259776793 3.6974175 -1103.197
+118508.2597768432 3.6974175 -1103.2562
+118509.2597768935 3.6974175 -1103.3156
+118510.2597769438 3.6972601 -1103.2959
+118511.2597769941 3.6972601 -1103.2168
+118512.2597770444 3.6973388 -1103.1576
+118513.2597770947 3.6973388 -1103.2562
+118514.259777145 3.6972601 -1103.2959
+118515.2597771953 3.6974568 -1103.2761
+118516.2597772456 3.6973388 -1103.2366
+118517.2597772959 3.6972206 -1103.2562
+118518.2597773462 3.6972206 -1103.2168
+118519.2597773965 3.6972601 -1103.197
+118520.2597774467 3.6972601 -1103.2959
+118521.259777497 3.6972206 -1103.2366
+118522.2597775473 3.6973388 -1103.2562
+118523.2597775976 3.6972206 -1103.2168
+118524.2597776479 3.6971812 -1103.1576
+118525.2597776982 3.6972206 -1103.1576
+118526.2597777485 3.6971812 -1103.2562
+118527.2597777988 3.6972206 -1103.197
+118528.2597778491 3.6972206 -1103.197
+118529.2597778994 3.6972206 -1103.2168
+118530.2597779497 3.6971025 -1103.1774
+118531.2597779999 3.6971025 -1103.2562
+118532.2597780502 3.6971419 -1103.2366
+118533.2597781005 3.6971025 -1103.2959
+118534.2597781508 3.6970239 -1103.2562
+118535.2597782011 3.6971025 -1103.1774
+118536.2597782514 3.6971419 -1103.197
+118537.2597783017 3.6971419 -1103.2168
+118538.259778352 3.6970632 -1103.197
+118539.2597784023 3.6970632 -1103.2168
+118540.2597784526 3.6969845 -1103.197
+118541.2597785029 3.6969056 -1103.2562
+118542.2597785532 3.6970632 -1103.2959
+118543.2597786034 3.6969056 -1103.2168
+118544.2597786537 3.6969845 -1103.2366
+118545.259778704 3.6969056 -1103.3353
+118546.2597787543 3.6969845 -1103.2562
+118547.2597788046 3.6969056 -1103.2562
+118548.2597788549 3.6969056 -1103.2562
+118549.2597789052 3.6968663 -1103.2366
+118550.2597789555 3.6969452 -1103.2562
+118551.2597790058 3.6968269 -1103.2168
+118552.2597790561 3.6968663 -1103.1774
+118553.2597791064 3.6968663 -1103.1774
+118554.2597791567 3.6968663 -1103.1576
+118555.2597792069 3.6968269 -1103.1576
+118556.2597792572 3.6967483 -1103.2168
+118557.2597793075 3.6967089 -1103.2562
+118558.2597793578 3.6967089 -1103.1378
+118559.2597794081 3.6967089 -1103.2761
+118560.2597794584 3.6967483 -1103.2168
+118561.2597795087 3.6967089 -1103.2562
+118562.259779559 3.6968269 -1103.1774
+118563.2597796093 3.6968269 -1103.1576
+118564.2597796596 3.6966302 -1103.2366
+118565.2597797099 3.6968269 -1103.3156
+118566.2597797601 3.6965907 -1103.2761
+118567.2597798104 3.6967089 -1103.2959
+118568.2597798607 3.6967089 -1103.2959
+118569.259779911 3.6966302 -1103.2761
+118570.2597799613 3.6966696 -1103.2168
+118571.2597800116 3.6966302 -1103.2761
+118572.2597800619 3.6965513 -1103.197
+118573.2597801122 3.6966302 -1103.2562
+118574.2597801625 3.6966302 -1103.197
+118575.2597802128 3.6965907 -1103.2562
+118576.2597802631 3.6965513 -1103.1774
+118577.2597803134 3.6965513 -1103.3156
+118578.2597803636 3.696512 -1103.3156
+118579.2597804139 3.6964726 -1103.2366
+118580.2597804642 3.6964333 -1103.2366
+118581.2597805145 3.6964726 -1103.2168
+118582.2597805648 3.696512 -1103.2959
+118583.2597806151 3.6964726 -1103.1576
+118584.2597806654 3.696394 -1103.197
+118585.2597807157 3.6964333 -1103.2168
+118586.259780766 3.6964726 -1103.2562
+118587.2597808163 3.6965907 -1103.2562
+118588.2597808666 3.696394 -1103.2562
+118589.2597809169 3.6963546 -1103.2366
+118590.2597809671 3.6964726 -1103.197
+118591.2597810174 3.6963546 -1103.3551
+118592.2597810677 3.6963153 -1103.3551
+118593.259781118 3.696394 -1103.2366
+118594.2597811683 3.6963546 -1103.3353
+118595.2597812186 3.6963546 -1103.2168
+118596.2597812689 3.6963153 -1103.2959
+118597.2597813192 3.6962757 -1103.2366
+118598.2597813695 3.696197 -1103.2562
+118599.2597814198 3.6962364 -1103.2562
+118600.2597814701 3.6962364 -1103.2168
+118601.2597815203 3.6962364 -1103.2168
+118602.2597815706 3.6962757 -1103.2366
+118603.2597816209 3.696197 -1103.2366
+118604.2597816712 3.6962757 -1103.1774
+118605.2597817215 3.6961184 -1103.2761
+118606.2597817718 3.696197 -1103.1774
+118607.2597818221 3.6961577 -1103.1774
+118608.2597818724 3.696197 -1103.3353
+118609.2597819227 3.6961184 -1103.197
+118610.259781973 3.6961184 -1103.197
+118611.2597820233 3.6961184 -1103.197
+118612.2597820736 3.696197 -1103.2168
+118613.2597821238 3.6961184 -1103.2366
+118614.2597821741 3.696079 -1103.197
+118615.2597822244 3.6960397 -1103.3551
+118616.2597822747 3.6961184 -1103.197
+118617.259782325 3.696079 -1103.1378
+118618.2597823753 3.6960397 -1103.1774
+118619.2597824256 3.6961184 -1103.2562
+118620.2597824759 3.6959214 -1103.2366
+118621.2597825262 3.6959608 -1103.2168
+118622.2597825765 3.6959608 -1103.2168
+118623.2597826268 3.6959608 -1103.2562
+118624.2597826771 3.6959608 -1103.197
+118625.2597827273 3.6959214 -1103.1774
+118626.2597827776 3.6958821 -1103.2959
+118627.2597828279 3.6960001 -1103.2959
+118628.2597828782 3.6958821 -1103.2562
+118629.2597829285 3.6960397 -1103.2562
+118630.2597829788 3.6958034 -1103.2366
+118631.2597830291 3.6958821 -1103.2959
+118632.2597830794 3.6959214 -1103.197
+118633.2597831297 3.6958821 -1103.2562
+118634.25978318 3.6959214 -1103.2168
+118635.2597832303 3.6958427 -1103.197
+118636.2597832805 3.6958034 -1103.2366
+118637.2597833308 3.6958034 -1103.2366
+118638.2597833811 3.6957247 -1103.2959
+118639.2597834314 3.6957641 -1103.2761
+118640.2597834817 3.6957641 -1103.3353
+118641.259783532 3.6956458 -1103.1774
+118642.2597835823 3.6957641 -1103.2168
+118643.2597836326 3.6957247 -1103.2562
+118644.2597836829 3.6956851 -1103.2562
+118645.2597837332 3.6957247 -1103.2761
+118646.2597837835 3.6957247 -1103.2168
+118647.2597838338 3.6957641 -1103.3353
+118648.259783884 3.6956851 -1103.2959
+118649.2597839343 3.6956065 -1103.2761
+118650.2597839846 3.6956065 -1103.2761
+118651.2597840349 3.6956851 -1103.2168
+118652.2597840852 3.6956065 -1103.1576
+118653.2597841355 3.6956458 -1103.2562
+118654.2597841858 3.6954885 -1103.2562
+118655.2597842361 3.6954491 -1103.2562
+118656.2597842864 3.6956065 -1103.1576
+118657.2597843367 3.6955278 -1103.2761
+118658.259784387 3.6955671 -1103.2761
+118659.2597844373 3.6955278 -1103.2366
+118660.2597844875 3.6955671 -1103.197
+118661.2597845378 3.6954098 -1103.2562
+118662.2597845881 3.6954098 -1103.197
+118663.2597846384 3.6954098 -1103.2366
+118664.2597846887 3.6955278 -1103.2168
+118665.259784739 3.6953702 -1103.2761
+118666.2597847893 3.6954491 -1103.1378
+118667.2597848396 3.6954098 -1103.2761
+118668.2597848899 3.6954491 -1103.2366
+118669.2597849402 3.6954098 -1103.2168
+118670.2597849905 3.6953702 -1103.2562
+118671.2597850407 3.6953309 -1103.2168
+118672.259785091 3.6952915 -1103.2562
+118673.2597851413 3.6953702 -1103.2562
+118674.2597851916 3.6953309 -1103.2959
+118675.2597852419 3.6952915 -1103.2959
+118676.2597852922 3.6953702 -1103.3156
+118677.2597853425 3.6952915 -1103.2168
+118678.2597853928 3.6951735 -1103.197
+118679.2597854431 3.6952915 -1103.2761
+118680.2597854934 3.6952522 -1103.2959
+118681.2597855437 3.6952128 -1103.1774
+118682.259785594 3.6952522 -1103.1774
+118683.2597856442 3.6951342 -1103.2366
+118684.2597856945 3.6952128 -1103.3156
+118685.2597857448 3.6950948 -1103.197
+118686.2597857951 3.6951735 -1103.2366
+118687.2597858454 3.6952522 -1103.2168
+118688.2597858957 3.6951342 -1103.1576
+118689.259785946 3.6950948 -1103.1774
+118690.2597859963 3.6952128 -1103.2366
+118691.2597860466 3.6950552 -1103.2562
+118692.2597860969 3.6951342 -1103.2562
+118693.2597861472 3.6951342 -1103.1774
+118694.2597861975 3.6950948 -1103.2366
+118695.2597862477 3.6950552 -1103.197
+118696.259786298 3.6950159 -1103.2562
+118697.2597863483 3.6949372 -1103.2562
+118698.2597863986 3.6950552 -1103.2168
+118699.2597864489 3.6950159 -1103.2959
+118700.2597864992 3.6949766 -1103.2168
+118701.2597865495 3.6949372 -1103.197
+118702.2597865998 3.6950552 -1103.1774
+118703.2597866501 3.6949372 -1103.1774
+118704.2597867004 3.6948979 -1103.2366
+118705.2597867507 3.6950159 -1103.2168
+118706.2597868009 3.6947799 -1103.2562
+118707.2597868512 3.6948979 -1103.2168
+118708.2597869015 3.6949372 -1103.1774
+118709.2597869518 3.6948586 -1103.2366
+118710.2597870021 3.6949372 -1103.2366
+118711.2597870524 3.6949372 -1103.2761
+118712.2597871027 3.6948192 -1103.2761
+118713.259787153 3.6948192 -1103.3551
+118714.2597872033 3.6948586 -1103.0785
+118715.2597872536 3.6948192 -1103.2366
+118716.2597873039 3.6947403 -1103.2959
+118717.2597873542 3.6948979 -1103.2562
+118718.2597874044 3.694701 -1103.3353
+118719.2597874547 3.6947799 -1103.3551
+118720.259787505 3.6946616 -1103.3551
+118721.2597875553 3.6947403 -1103.2959
+118722.2597876056 3.6947799 -1103.3551
+118723.2597876559 3.6945829 -1103.2366
+118724.2597877062 3.6947403 -1103.2366
+118725.2597877565 3.6948192 -1103.2761
+118726.2597878068 3.6947403 -1103.197
+118727.2597878571 3.6947403 -1103.2366
+118728.2597879074 3.6946616 -1103.2366
+118729.2597879577 3.6946616 -1103.2168
+118730.2597880079 3.6946616 -1103.1576
+118731.2597880582 3.6946223 -1103.2366
+118732.2597881085 3.6945829 -1103.2761
+118733.2597881588 3.6945436 -1103.2366
+118734.2597882091 3.6945829 -1103.2562
+118735.2597882594 3.6945436 -1103.2366
+118736.2597883097 3.6945829 -1103.2959
+118737.25978836 3.6945043 -1103.2562
+118738.2597884103 3.6946223 -1103.2562
+118739.2597884606 3.6945829 -1103.1576
+118740.2597885109 3.694386 -1103.2168
+118741.2597885611 3.6944649 -1103.197
+118742.2597886114 3.6945043 -1103.2366
+118743.2597886617 3.6943467 -1103.1774
+118744.259788712 3.6944649 -1103.2168
+118745.2597887623 3.6944649 -1103.197
+118746.2597888126 3.6945436 -1103.2168
+118747.2597888629 3.6944649 -1103.2366
+118748.2597889132 3.6944253 -1103.2562
+118749.2597889635 3.6944253 -1103.2562
+118750.2597890138 3.6944253 -1103.2168
+118751.2597890641 3.694386 -1103.2366
+118752.2597891144 3.6944253 -1103.2366
+118753.2597891646 3.694386 -1103.2562
+118754.2597892149 3.694268 -1103.197
+118755.2597892652 3.694386 -1103.2168
+118756.2597893155 3.694386 -1103.2366
+118757.2597893658 3.694386 -1103.2959
+118758.2597894161 3.694386 -1103.3353
+118759.2597894664 3.694268 -1103.2562
+118760.2597895167 3.6941497 -1103.3551
+118761.259789567 3.694268 -1103.2761
+118762.2597896173 3.694268 -1103.2366
+118763.2597896676 3.6941497 -1103.2761
+118764.2597897178 3.6941893 -1103.2366
+118765.2597897681 3.6942286 -1103.2366
+118766.2597898184 3.6941497 -1103.197
+118767.2597898687 3.6941104 -1103.2562
+118768.259789919 3.6941497 -1103.2366
+118769.2597899693 3.6942286 -1103.2168
+118770.2597900196 3.6941497 -1103.197
+118771.2597900699 3.6940711 -1103.1774
+118772.2597901202 3.6941497 -1103.2168
+118773.2597901705 3.6940711 -1103.197
+118774.2597902208 3.6941104 -1103.2562
+118775.2597902711 3.6939924 -1103.2959
+118776.2597903213 3.693953 -1103.2761
+118777.2597903716 3.6940711 -1103.197
+118778.2597904219 3.6941497 -1103.3156
+118779.2597904722 3.6940317 -1103.2959
+118780.2597905225 3.6939924 -1103.2366
+118781.2597905728 3.6939924 -1103.2562
+118782.2597906231 3.693953 -1103.2562
+118783.2597906734 3.6940317 -1103.2366
+118784.2597907237 3.693953 -1103.2562
+118785.259790774 3.6940317 -1103.1378
+118786.2597908243 3.6939924 -1103.2168
+118787.2597908746 3.6938744 -1103.2366
+118788.2597909248 3.6939137 -1103.2366
+118789.2597909751 3.6938744 -1103.2761
+118790.2597910254 3.6938744 -1103.2366
+118791.2597910757 3.6939137 -1103.1378
+118792.259791126 3.6937561 -1103.2366
+118793.2597911763 3.6938744 -1103.3156
+118794.2597912266 3.6939137 -1103.197
+118795.2597912769 3.6938348 -1103.2168
+118796.2597913272 3.6937954 -1103.197
+118797.2597913775 3.6937561 -1103.3353
+118798.2597914278 3.6938744 -1103.3156
+118799.259791478 3.6937954 -1103.2366
+118800.2597915283 3.6937168 -1103.2168
+118801.2597915786 3.6937954 -1103.3156
+118802.2597916289 3.6937561 -1103.2761
+118803.2597916792 3.6937561 -1103.2168
+118804.2597917295 3.6937561 -1103.2366
+118805.2597917798 3.6936381 -1103.2168
+118806.2597918301 3.6936381 -1103.2168
+118807.2597918804 3.6936381 -1103.197
+118808.2597919307 3.6936381 -1103.3156
+118809.259791981 3.6936774 -1103.3156
+118810.2597920313 3.6936381 -1103.1576
+118811.2597920815 3.6936774 -1103.1576
+118812.2597921318 3.6937168 -1103.2761
+118813.2597921821 3.6936774 -1103.2366
+118814.2597922324 3.6935987 -1103.2562
+118815.2597922827 3.6936381 -1103.2366
+118816.259792333 3.6935594 -1103.2562
+118817.2597923833 3.6935198 -1103.1378
+118818.2597924336 3.6935594 -1103.1182
+118819.2597924839 3.6935987 -1103.197
+118820.2597925342 3.6934805 -1103.2366
+118821.2597925845 3.6934018 -1103.2761
+118822.2597926348 3.6934412 -1103.197
+118823.259792685 3.6934805 -1103.2562
+118824.2597927353 3.6934805 -1103.3156
+118825.2597927856 3.6934018 -1103.1576
+118826.2597928359 3.6934412 -1103.2366
+118827.2597928862 3.6934805 -1103.197
+118828.2597929365 3.6934018 -1103.3551
+118829.2597929868 3.6934018 -1103.1576
+118830.2597930371 3.6934412 -1103.2761
+118831.2597930874 3.6934018 -1103.1378
+118832.2597931377 3.6933231 -1103.197
+118833.259793188 3.6934018 -1103.2168
+118834.2597932382 3.6934412 -1103.2562
+118835.2597932885 3.6933625 -1103.2366
+118836.2597933388 3.6934018 -1103.2168
+118837.2597933891 3.6932838 -1103.2959
+118838.2597934394 3.6932445 -1103.2761
+118839.2597934897 3.6933231 -1103.2761
+118840.25979354 3.6932049 -1103.1774
+118841.2597935903 3.6932049 -1103.2761
+118842.2597936406 3.6933231 -1103.2761
+118843.2597936909 3.6932445 -1103.2366
+118844.2597937412 3.6932838 -1103.1182
+118845.2597937915 3.6932445 -1103.1378
+118846.2597938417 3.6932049 -1103.2959
+118847.259793892 3.6932838 -1103.197
+118848.2597939423 3.6931262 -1103.2168
+118849.2597939926 3.6931262 -1103.1774
+118850.2597940429 3.6931655 -1103.1774
+118851.2597940932 3.6931655 -1103.2562
+118852.2597941435 3.6931655 -1103.2761
+118853.2597941938 3.6931262 -1103.2761
+118854.2597942441 3.6931262 -1103.2562
+118855.2597942944 3.6930082 -1103.197
+118856.2597943447 3.6930869 -1103.197
+118857.259794395 3.6930475 -1103.2366
+118858.2597944452 3.6929688 -1103.197
+118859.2597944955 3.6930082 -1103.2168
+118860.2597945458 3.6929688 -1103.197
+118861.2597945961 3.6929295 -1103.2168
+118862.2597946464 3.6930869 -1103.197
+118863.2597946967 3.6929295 -1103.1576
+118864.259794747 3.6929688 -1103.2562
+118865.2597947973 3.6928506 -1103.2761
+118866.2597948476 3.6930082 -1103.2959
+118867.2597948979 3.6929688 -1103.2959
+118868.2597949482 3.6929295 -1103.197
+118869.2597949984 3.6928899 -1103.2366
+118870.2597950487 3.6928899 -1103.2761
+118871.259795099 3.6929295 -1103.2562
+118872.2597951493 3.6929295 -1103.1774
+118873.2597951996 3.6928899 -1103.2761
+118874.2597952499 3.6928113 -1103.0984
+118875.2597953002 3.6928899 -1103.197
+118876.2597953505 3.6929295 -1103.2562
+118877.2597954008 3.6927719 -1103.3156
+118878.2597954511 3.6928113 -1103.197
+118879.2597955014 3.6928113 -1103.2562
+118880.2597955517 3.6928113 -1103.1182
+118881.2597956019 3.6927719 -1103.2168
+118882.2597956522 3.6928113 -1103.2366
+118883.2597957025 3.6928113 -1103.2366
+118884.2597957528 3.6926539 -1103.197
+118885.2597958031 3.6926539 -1103.2959
+118886.2597958534 3.6927326 -1103.2168
+118887.2597959037 3.6926146 -1103.2366
+118888.259795954 3.6927326 -1103.1774
+118889.2597960043 3.6926146 -1103.2168
+118890.2597960546 3.6927326 -1103.1774
+118891.2597961049 3.6926539 -1103.197
+118892.2597961552 3.6926932 -1103.2562
+118893.2597962054 3.6926146 -1103.197
+118894.2597962557 3.6925356 -1103.2761
+118895.259796306 3.692575 -1103.0984
+118896.2597963563 3.6925356 -1103.197
+118897.2597964066 3.692575 -1103.197
+118898.2597964569 3.692457 -1103.2562
+118899.2597965072 3.692575 -1103.3353
+118900.2597965575 3.6925356 -1103.3353
+118901.2597966078 3.6925356 -1103.2959
+118902.2597966581 3.692457 -1103.2761
+118903.2597967084 3.6924963 -1103.2562
+118904.2597967586 3.692457 -1103.1576
+118905.2597968089 3.6924963 -1103.3156
+118906.2597968592 3.692457 -1103.2562
+118907.2597969095 3.6924963 -1103.2168
+118908.2597969598 3.6923783 -1103.197
+118909.2597970101 3.692457 -1103.3156
+118910.2597970604 3.6923783 -1103.1774
+118911.2597971107 3.6924176 -1103.2366
+118912.259797161 3.6923389 -1103.197
+118913.2597972113 3.6923389 -1103.2959
+118914.2597972616 3.6924176 -1103.1774
+118915.2597973119 3.6923783 -1103.2366
+118916.2597973621 3.6923389 -1103.2959
+118917.2597974124 3.6923783 -1103.2562
+118918.2597974627 3.69226 -1103.2562
+118919.259797513 3.6922207 -1103.2761
+118920.2597975633 3.6922994 -1103.2562
+118921.2597976136 3.6922207 -1103.3156
+118922.2597976639 3.69226 -1103.2761
+118923.2597977142 3.6922207 -1103.197
+118924.2597977645 3.6923389 -1103.1774
+118925.2597978148 3.6921813 -1103.1774
+118926.2597978651 3.6922207 -1103.2168
+118927.2597979154 3.6921813 -1103.2761
+118928.2597979656 3.69226 -1103.2366
+118929.2597980159 3.6921027 -1103.2562
+118930.2597980662 3.6921813 -1103.2168
+118931.2597981165 3.6921027 -1103.2761
+118932.2597981668 3.69226 -1103.2959
+118933.2597982171 3.692142 -1103.2562
+118934.2597982674 3.6921027 -1103.2562
+118935.2597983177 3.6921027 -1103.1774
+118936.259798368 3.692142 -1103.197
+118937.2597984183 3.692142 -1103.2959
+118938.2597984686 3.6921027 -1103.2168
+118939.2597985188 3.6920633 -1103.2562
+118940.2597985691 3.692024 -1103.197
+118941.2597986194 3.6920633 -1103.197
+118942.2597986697 3.6919844 -1103.2761
+118943.25979872 3.6919451 -1103.197
+118944.2597987703 3.6920633 -1103.2959
+118945.2597988206 3.6919451 -1103.2562
+118946.2597988709 3.692024 -1103.197
+118947.2597989212 3.6919844 -1103.1774
+118948.2597989715 3.6919844 -1103.2168
+118949.2597990218 3.6918664 -1103.3156
+118950.2597990721 3.692024 -1103.197
+118951.2597991223 3.6919451 -1103.197
+118952.2597991726 3.6918664 -1103.2366
+118953.2597992229 3.6918664 -1103.2562
+118954.2597992732 3.6919057 -1103.2562
+118955.2597993235 3.6918271 -1103.2366
+118956.2597993738 3.6917877 -1103.1774
+118957.2597994241 3.6917484 -1103.3551
+118958.2597994744 3.6917484 -1103.2366
+118959.2597995247 3.6917877 -1103.3156
+118960.259799575 3.6917877 -1103.197
+118961.2597996253 3.6917877 -1103.2366
+118962.2597996756 3.6917484 -1103.2366
+118963.2597997258 3.6916695 -1103.2168
+118964.2597997761 3.691709 -1103.197
+118965.2597998264 3.6916695 -1103.197
+118966.2597998767 3.6916695 -1103.2562
+118967.259799927 3.6918664 -1103.2366
+118968.2597999773 3.6917484 -1103.197
+118969.2598000276 3.6917484 -1103.2562
+118970.2598000779 3.6916695 -1103.2366
+118971.2598001282 3.6916695 -1103.197
+118972.2598001785 3.6916301 -1103.2366
+118973.2598002288 3.6915908 -1103.2168
+118974.259800279 3.6915514 -1103.197
+118975.2598003293 3.6915908 -1103.2761
+118976.2598003796 3.6914728 -1103.2562
+118977.2598004299 3.6915908 -1103.2366
+118978.2598004802 3.6915514 -1103.2366
+118979.2598005305 3.6915121 -1103.2168
+118980.2598005808 3.6915908 -1103.3353
+118981.2598006311 3.6916301 -1103.2959
+118982.2598006814 3.6914728 -1103.2168
+118983.2598007317 3.6915121 -1103.197
+118984.259800782 3.6914728 -1103.2366
+118985.2598008323 3.6914334 -1103.2562
+118986.2598008825 3.6915514 -1103.197
+118987.2598009328 3.6914334 -1103.2366
+118988.2598009831 3.6914728 -1103.2761
+118989.2598010334 3.6913545 -1103.2562
+118990.2598010837 3.6913152 -1103.2168
+118991.259801134 3.6915121 -1103.2562
+118992.2598011843 3.6914334 -1103.2562
+118993.2598012346 3.6913152 -1103.197
+118994.2598012849 3.6913545 -1103.1774
+118995.2598013352 3.6914334 -1103.2366
+118996.2598013855 3.6913152 -1103.2959
+118997.2598014358 3.6914334 -1103.2168
+118998.259801486 3.6913545 -1103.2366
+118999.2598015363 3.6912758 -1103.2168
+119000.2598015866 3.6913152 -1103.2761
+119001.2598016369 3.6913152 -1103.2959
+119002.2598016872 3.6913545 -1103.2761
+119003.2598017375 3.6911972 -1103.1774
+119004.2598017878 3.6911578 -1103.2168
+119005.2598018381 3.6911972 -1103.2959
+119006.2598018884 3.6912758 -1103.2959
+119007.2598019387 3.6911578 -1103.2168
+119008.259801989 3.6911972 -1103.2562
+119009.2598020392 3.6911972 -1103.3156
+119010.2598020895 3.6911972 -1103.2761
+119011.2598021398 3.6911972 -1103.197
+119012.2598021901 3.6911972 -1103.2168
+119013.2598022404 3.6910791 -1103.1774
+119014.2598022907 3.6912365 -1103.2366
+119015.259802341 3.6910791 -1103.197
+119016.2598023913 3.6911185 -1103.2959
+119017.2598024416 3.6911578 -1103.2168
+119018.2598024919 3.6910396 -1103.2562
+119019.2598025422 3.6911185 -1103.2562
+119020.2598025925 3.6911185 -1103.3156
+119021.2598026427 3.6911185 -1103.2562
+119022.259802693 3.6910002 -1103.2562
+119023.2598027433 3.6910002 -1103.3353
+119024.2598027936 3.6910396 -1103.3156
+119025.2598028439 3.6909609 -1103.197
+119026.2598028942 3.6910791 -1103.2366
+119027.2598029445 3.6909609 -1103.197
+119028.2598029948 3.6908822 -1103.2761
+119029.2598030451 3.6908822 -1103.2366
+119030.2598030954 3.6909609 -1103.3353
+119031.2598031457 3.6908822 -1103.3156
+119032.259803196 3.6910002 -1103.2168
+119033.2598032462 3.6908822 -1103.2959
+119034.2598032965 3.6908822 -1103.1774
+119035.2598033468 3.6909215 -1103.2366
+119036.2598033971 3.6908822 -1103.2168
+119037.2598034474 3.6908429 -1103.2366
+119038.2598034977 3.6909215 -1103.197
+119039.259803548 3.6908035 -1103.2168
+119040.2598035983 3.6908429 -1103.2761
+119041.2598036486 3.690764 -1103.197
+119042.2598036989 3.6908429 -1103.197
+119043.2598037492 3.6908035 -1103.3156
+119044.2598037994 3.6908035 -1103.2168
+119045.2598038497 3.6907246 -1103.2168
+119046.2598039 3.6907246 -1103.2562
+119047.2598039503 3.6906459 -1103.2168
+119048.2598040006 3.6908429 -1103.2959
+119049.2598040509 3.6908429 -1103.2761
+119050.2598041012 3.6906853 -1103.2562
+119051.2598041515 3.6906853 -1103.2168
+119052.2598042018 3.6906853 -1103.2366
+119053.2598042521 3.6907246 -1103.1774
+119054.2598043024 3.6906459 -1103.2761
+119055.2598043527 3.690764 -1103.197
+119056.2598044029 3.6905673 -1103.2761
+119057.2598044532 3.6906459 -1103.1774
+119058.2598045035 3.6905673 -1103.2761
+119059.2598045538 3.6905673 -1103.2959
+119060.2598046041 3.6905279 -1103.1576
+119061.2598046544 3.6906459 -1103.2168
+119062.2598047047 3.6905279 -1103.2366
+119063.259804755 3.6906066 -1103.197
+119064.2598048053 3.6905673 -1103.2761
+119065.2598048556 3.6904886 -1103.2562
+119066.2598049059 3.6905673 -1103.2366
+119067.2598049561 3.6905279 -1103.3156
+119068.2598050064 3.690449 -1103.197
+119069.2598050567 3.690449 -1103.2761
+119070.259805107 3.6904097 -1103.2366
+119071.2598051573 3.6904097 -1103.3353
+119072.2598052076 3.6904097 -1103.1774
+119073.2598052579 3.6903703 -1103.2366
+119074.2598053082 3.6904097 -1103.1576
+119075.2598053585 3.690331 -1103.2168
+119076.2598054088 3.6905673 -1103.2562
+119077.2598054591 3.6903703 -1103.197
+119078.2598055094 3.690331 -1103.2959
+119079.2598055596 3.6903703 -1103.2366
+119080.2598056099 3.690331 -1103.197
+119081.2598056602 3.6903703 -1103.2168
+119082.2598057105 3.690331 -1103.2366
+119083.2598057608 3.690331 -1103.2168
+119084.2598058111 3.690331 -1103.2761
+119085.2598058614 3.6902916 -1103.1774
+119086.2598059117 3.690213 -1103.2366
+119087.259805962 3.6902916 -1103.2168
+119088.2598060123 3.6902523 -1103.1378
+119089.2598060626 3.690213 -1103.2168
+119090.2598061129 3.6902523 -1103.3156
+119091.2598061631 3.6902523 -1103.2562
+119092.2598062134 3.6900947 -1103.2366
+119093.2598062637 3.690213 -1103.197
+119094.259806314 3.6902523 -1103.2761
+119095.2598063643 3.690134 -1103.2959
+119096.2598064146 3.690134 -1103.2562
+119097.2598064649 3.6900554 -1103.2168
+119098.2598065152 3.6900947 -1103.2562
+119099.2598065655 3.690134 -1103.2366
+119100.2598066158 3.6900947 -1103.2168
+119101.2598066661 3.6900554 -1103.197
+119102.2598067163 3.690134 -1103.1774
+119103.2598067666 3.6899374 -1103.197
+119104.2598068169 3.690016 -1103.197
+119105.2598068672 3.6900554 -1103.2168
+119106.2598069175 3.6900554 -1103.2366
+119107.2598069678 3.6899767 -1103.197
+119108.2598070181 3.6899767 -1103.197
+119109.2598070684 3.6899374 -1103.1774
+119110.2598071187 3.6899374 -1103.2761
+119111.259807169 3.6899374 -1103.2761
+119112.2598072193 3.6899767 -1103.2959
+119113.2598072696 3.6899767 -1103.2366
+119114.2598073198 3.6899374 -1103.2168
+119115.2598073701 3.6898191 -1103.2168
+119116.2598074204 3.689898 -1103.2168
+119117.2598074707 3.689898 -1103.2761
+119118.259807521 3.6898587 -1103.2168
+119119.2598075713 3.6898191 -1103.2366
+119120.2598076216 3.6897798 -1103.2959
+119121.2598076719 3.689898 -1103.2366
+119122.2598077222 3.6897404 -1103.2959
+119123.2598077725 3.6897011 -1103.2168
+119124.2598078228 3.6897798 -1103.2168
+119125.2598078731 3.6898191 -1103.2168
+119126.2598079233 3.6897404 -1103.2761
+119127.2598079736 3.6898587 -1103.2168
+119128.2598080239 3.6897798 -1103.2959
+119129.2598080742 3.6897404 -1103.2168
+119130.2598081245 3.6896617 -1103.2562
+119131.2598081748 3.6897011 -1103.2168
+119132.2598082251 3.6895831 -1103.2366
+119133.2598082754 3.6897011 -1103.2168
+119134.2598083257 3.6896224 -1103.1576
+119135.259808376 3.6896617 -1103.2366
+119136.2598084263 3.6896224 -1103.2562
+119137.2598084765 3.6896617 -1103.2366
+119138.2598085268 3.6895831 -1103.2959
+119139.2598085771 3.6896224 -1103.2761
+119140.2598086274 3.6895831 -1103.2959
+119141.2598086777 3.6895437 -1103.2761
+119142.259808728 3.6895437 -1103.3156
+119143.2598087783 3.6894648 -1103.197
+119144.2598088286 3.6895831 -1103.2562
+119145.2598088789 3.6894648 -1103.197
+119146.2598089292 3.6895831 -1103.2959
+119147.2598089795 3.6895041 -1103.2761
+119148.2598090298 3.6894648 -1103.3156
+119149.25980908 3.6893861 -1103.2761
+119150.2598091303 3.6894255 -1103.2959
+119151.2598091806 3.6894648 -1103.2562
+119152.2598092309 3.6894648 -1103.3156
+119153.2598092812 3.6894648 -1103.2562
+119154.2598093315 3.6893861 -1103.2761
+119155.2598093818 3.6893861 -1103.2168
+119156.2598094321 3.6893075 -1103.2562
+119157.2598094824 3.6893861 -1103.2959
+119158.2598095327 3.6893075 -1103.1774
+119159.259809583 3.6893861 -1103.2761
+119160.2598096333 3.6892288 -1103.2168
+119161.2598096835 3.6893468 -1103.2168
+119162.2598097338 3.6893468 -1103.3353
+119163.2598097841 3.6892681 -1103.2366
+119164.2598098344 3.6892681 -1103.2562
+119165.2598098847 3.6893075 -1103.1576
+119166.259809935 3.6892288 -1103.2761
+119167.2598099853 3.6893075 -1103.1576
+119168.2598100356 3.6892681 -1103.0785
+119169.2598100859 3.6891105 -1103.2761
+119170.2598101362 3.6891499 -1103.197
+119171.2598101865 3.6891892 -1103.197
+119172.2598102367 3.6891499 -1103.197
+119173.259810287 3.6891892 -1103.2959
+119174.2598103373 3.6891499 -1103.2168
+119175.2598103876 3.6891105 -1103.2562
+119176.2598104379 3.6890318 -1103.197
+119177.2598104882 3.6892288 -1103.2761
+119178.2598105385 3.6891105 -1103.3156
+119179.2598105888 3.6891105 -1103.2168
+119180.2598106391 3.6890712 -1103.197
+119181.2598106894 3.6891105 -1103.2761
+119182.2598107397 3.6889925 -1103.2168
+119183.25981079 3.6891105 -1103.2366
+119184.2598108402 3.6889532 -1103.197
+119185.2598108905 3.6890712 -1103.2562
+119186.2598109408 3.6890318 -1103.1378
+119187.2598109911 3.6890318 -1103.1774
+119188.2598110414 3.6889925 -1103.1774
+119189.2598110917 3.6889532 -1103.1576
+119190.259811142 3.6888742 -1103.2366
+119191.2598111923 3.6889532 -1103.2761
+119192.2598112426 3.6888742 -1103.2168
+119193.2598112929 3.6888742 -1103.2168
+119194.2598113432 3.6889532 -1103.2366
+119195.2598113935 3.6888349 -1103.2562
+119196.2598114437 3.6889136 -1103.2366
+119197.259811494 3.6889136 -1103.2562
+119198.2598115443 3.6889925 -1103.2959
+119199.2598115946 3.6888349 -1103.2168
+119200.2598116449 3.6888349 -1103.2366
+119201.2598116952 3.6888742 -1103.2366
+119202.2598117455 3.6887169 -1103.2366
+119203.2598117958 3.6887169 -1103.1182
+119204.2598118461 3.6887169 -1103.1576
+119205.2598118964 3.6887956 -1103.1576
+119206.2598119467 3.6887562 -1103.2168
+119207.2598119969 3.6886382 -1103.2366
+119208.2598120472 3.6887562 -1103.2168
+119209.2598120975 3.6887169 -1103.2562
+119210.2598121478 3.6886775 -1103.1774
+119211.2598121981 3.6886775 -1103.2168
+119212.2598122484 3.6886775 -1103.2168
+119213.2598122987 3.6888349 -1103.2168
+119214.259812349 3.6886382 -1103.2959
+119215.2598123993 3.6886775 -1103.2761
+119216.2598124496 3.6886382 -1103.3551
+119217.2598124999 3.6885986 -1103.197
+119218.2598125502 3.6886382 -1103.197
+119219.2598126004 3.68852 -1103.2562
+119220.2598126507 3.6886382 -1103.2761
+119221.259812701 3.6885986 -1103.2761
+119222.2598127513 3.6884413 -1103.2366
+119223.2598128016 3.6885986 -1103.2959
+119224.2598128519 3.6884413 -1103.197
+119225.2598129022 3.6885986 -1103.2168
+119226.2598129525 3.6885986 -1103.2168
+119227.2598130028 3.68852 -1103.1774
+119228.2598130531 3.6884413 -1103.2366
+119229.2598131034 3.6884413 -1103.2959
+119230.2598131537 3.68852 -1103.2562
+119231.2598132039 3.6884806 -1103.1774
+119232.2598132542 3.6884413 -1103.197
+119233.2598133045 3.6883626 -1103.1774
+119234.2598133548 3.6884806 -1103.2168
+119235.2598134051 3.6884806 -1103.2366
+119236.2598134554 3.6883626 -1103.2959
+119237.2598135057 3.6883626 -1103.2959
+119238.259813556 3.6883626 -1103.2562
+119239.2598136063 3.6883626 -1103.197
+119240.2598136566 3.6884413 -1103.1774
+119241.2598137069 3.6883233 -1103.2761
+119242.2598137571 3.6882837 -1103.2366
+119243.2598138074 3.6883626 -1103.2562
+119244.2598138577 3.6882443 -1103.2366
+119245.259813908 3.6883233 -1103.3353
+119246.2598139583 3.688205 -1103.2366
+119247.2598140086 3.6882443 -1103.197
+119248.2598140589 3.6882443 -1103.2562
+119249.2598141092 3.6882837 -1103.3156
+119250.2598141595 3.6882837 -1103.3551
+119251.2598142098 3.688205 -1103.2366
+119252.2598142601 3.6881657 -1103.2366
+119253.2598143104 3.6881263 -1103.2168
+119254.2598143606 3.6881263 -1103.2761
+119255.2598144109 3.6881657 -1103.2959
+119256.2598144612 3.6881263 -1103.1774
+119257.2598145115 3.6881657 -1103.2366
+119258.2598145618 3.688087 -1103.2562
+119259.2598146121 3.688087 -1103.2168
+119260.2598146624 3.6881657 -1103.2168
+119261.2598147127 3.6880083 -1103.2168
+119262.259814763 3.688087 -1103.2168
+119263.2598148133 3.6879687 -1103.1576
+119264.2598148636 3.6880476 -1103.197
+119265.2598149139 3.6881263 -1103.2761
+119266.2598149641 3.6880083 -1103.2761
+119267.2598150144 3.688087 -1103.197
+119268.2598150647 3.6879294 -1103.2959
+119269.259815115 3.6879687 -1103.2562
+119270.2598151653 3.6880476 -1103.2366
+119271.2598152156 3.6879294 -1103.2562
+119272.2598152659 3.6878901 -1103.197
+119273.2598153162 3.6878114 -1103.3551
+119274.2598153665 3.6878901 -1103.2366
+119275.2598154168 3.687772 -1103.2562
+119276.2598154671 3.6878901 -1103.2366
+119277.2598155173 3.6878901 -1103.197
+119278.2598155676 3.6879294 -1103.2562
+119279.2598156179 3.6879687 -1103.2761
+119280.2598156682 3.6879294 -1103.197
+119281.2598157185 3.6878507 -1103.2562
+119282.2598157688 3.687772 -1103.2168
+119283.2598158191 3.6878114 -1103.2761
+119284.2598158694 3.687772 -1103.2562
+119285.2598159197 3.6877327 -1103.2168
+119286.25981597 3.6878114 -1103.2168
+119287.2598160203 3.6876934 -1103.2761
+119288.2598160706 3.6876934 -1103.2168
+119289.2598161208 3.687772 -1103.3156
+119290.2598161711 3.6876538 -1103.2959
+119291.2598162214 3.687772 -1103.2366
+119292.2598162717 3.6876934 -1103.2366
+119293.259816322 3.6876144 -1103.2562
+119294.2598163723 3.6876538 -1103.2761
+119295.2598164226 3.6876144 -1103.2366
+119296.2598164729 3.6875751 -1103.2761
+119297.2598165232 3.6876144 -1103.2761
+119298.2598165735 3.687772 -1103.3551
+119299.2598166238 3.6876934 -1103.0984
+119300.2598166741 3.6876934 -1103.2168
+119301.2598167243 3.6874571 -1103.2168
+119302.2598167746 3.6875751 -1103.1576
+119303.2598168249 3.6876144 -1103.197
+119304.2598168752 3.6875751 -1103.2366
+119305.2598169255 3.6874964 -1103.2168
+119306.2598169758 3.6875358 -1103.2168
+119307.2598170261 3.6874571 -1103.1774
+119308.2598170764 3.6874964 -1103.2562
+119309.2598171267 3.6875358 -1103.2562
+119310.259817177 3.6874571 -1103.2168
+119311.2598172273 3.6874177 -1103.2168
+119312.2598172775 3.6874177 -1103.2168
+119313.2598173278 3.6874964 -1103.3156
+119314.2598173781 3.6874177 -1103.1774
+119315.2598174284 3.6874571 -1103.2168
+119316.2598174787 3.6872995 -1103.197
+119317.259817529 3.6873784 -1103.2761
+119318.2598175793 3.6873784 -1103.2959
+119319.2598176296 3.6873388 -1103.2562
+119320.2598176799 3.6873784 -1103.2366
+119321.2598177302 3.6873388 -1103.197
+119322.2598177805 3.6874571 -1103.2761
+119323.2598178308 3.6872602 -1103.1774
+119324.259817881 3.6872208 -1103.2562
+119325.2598179313 3.6873784 -1103.2959
+119326.2598179816 3.6873388 -1103.3353
+119327.2598180319 3.6873388 -1103.1378
+119328.2598180822 3.6872208 -1103.1774
+119329.2598181325 3.6871815 -1103.2168
+119330.2598181828 3.6873784 -1103.2366
+119331.2598182331 3.6872208 -1103.2761
+119332.2598182834 3.6871421 -1103.2761
+119333.2598183337 3.6872208 -1103.2959
+119334.259818384 3.6872602 -1103.2366
+119335.2598184343 3.6871815 -1103.2761
+119336.2598184845 3.6871421 -1103.197
+119337.2598185348 3.6871028 -1103.2366
+119338.2598185851 3.6870239 -1103.3156
+119339.2598186354 3.6871028 -1103.1774
+119340.2598186857 3.6871028 -1103.197
+119341.259818736 3.6871028 -1103.197
+119342.2598187863 3.6870632 -1103.197
+119343.2598188366 3.6871028 -1103.2562
+119344.2598188869 3.6870239 -1103.2366
+119345.2598189372 3.6871028 -1103.197
+119346.2598189875 3.6870239 -1103.3156
+119347.2598190377 3.6869845 -1103.197
+119348.259819088 3.6869845 -1103.2366
+119349.2598191383 3.6870239 -1103.2366
+119350.2598191886 3.6869059 -1103.2366
+119351.2598192389 3.6869059 -1103.2366
+119352.2598192892 3.6870239 -1103.197
+119353.2598193395 3.6869845 -1103.2761
+119354.2598193898 3.6869059 -1103.2761
+119355.2598194401 3.6869845 -1103.3156
+119356.2598194904 3.6869059 -1103.2761
+119357.2598195407 3.6867878 -1103.1378
+119358.259819591 3.6869452 -1103.1774
+119359.2598196412 3.6868665 -1103.2168
+119360.2598196915 3.6868665 -1103.1378
+119361.2598197418 3.6867878 -1103.2562
+119362.2598197921 3.6868665 -1103.2562
+119363.2598198424 3.6869059 -1103.0984
+119364.2598198927 3.6868665 -1103.2761
+119365.259819943 3.6869059 -1103.2562
+119366.2598199933 3.6868272 -1103.2366
+119367.2598200436 3.6867089 -1103.2168
+119368.2598200939 3.6868272 -1103.3156
+119369.2598201442 3.6867089 -1103.2562
+119370.2598201944 3.6868272 -1103.3156
+119371.2598202447 3.6867878 -1103.2366
+119372.259820295 3.6867483 -1103.2959
+119373.2598203453 3.6867089 -1103.3156
+119374.2598203956 3.6867089 -1103.2366
+119375.2598204459 3.6865909 -1103.2366
+119376.2598204962 3.6866696 -1103.2761
+119377.2598205465 3.6866696 -1103.2366
+119378.2598205968 3.6866302 -1103.2761
+119379.2598206471 3.6865516 -1103.197
+119380.2598206974 3.6865122 -1103.2366
+119381.2598207477 3.6866696 -1103.2168
+119382.2598207979 3.6865909 -1103.2168
+119383.2598208482 3.6866696 -1103.197
+119384.2598208985 3.6866696 -1103.2562
+119385.2598209488 3.6865516 -1103.197
+119386.2598209991 3.6865909 -1103.2959
+119387.2598210494 3.6865122 -1103.2562
+119388.2598210997 3.6864729 -1103.2562
+119389.25982115 3.6864333 -1103.2959
+119390.2598212003 3.6865516 -1103.2959
+119391.2598212506 3.6865122 -1103.1774
+119392.2598213009 3.6865122 -1103.1576
+119393.2598213512 3.686394 -1103.3156
+119394.2598214014 3.6865122 -1103.2562
+119395.2598214517 3.6864333 -1103.2562
+119396.259821502 3.6864729 -1103.2761
+119397.2598215523 3.6864729 -1103.1576
+119398.2598216026 3.686394 -1103.2366
+119399.2598216529 3.6864333 -1103.2168
+119400.2598217032 3.6863153 -1103.197
+119401.2598217535 3.6863546 -1103.2959
+119402.2598218038 3.6862366 -1103.1576
+119403.2598218541 3.6863153 -1103.197
+119404.2598219044 3.6862366 -1103.2761
+119405.2598219546 3.6863153 -1103.2366
+119406.2598220049 3.686276 -1103.2761
+119407.2598220552 3.6863153 -1103.2168
+119408.2598221055 3.686276 -1103.2168
+119409.2598221558 3.6862366 -1103.2959
+119410.2598222061 3.6863153 -1103.3156
+119411.2598222564 3.6861184 -1103.1576
+119412.2598223067 3.6863153 -1103.2959
+119413.259822357 3.6861184 -1103.2562
+119414.2598224073 3.6861579 -1103.1774
+119415.2598224576 3.6861579 -1103.2959
+119416.2598225079 3.6861579 -1103.2562
+119417.2598225581 3.6861973 -1103.2562
+119418.2598226084 3.686079 -1103.1576
+119419.2598226587 3.6862366 -1103.197
+119420.259822709 3.6860397 -1103.2366
+119421.2598227593 3.6861184 -1103.2366
+119422.2598228096 3.686079 -1103.1576
+119423.2598228599 3.6861579 -1103.2168
+119424.2598229102 3.686079 -1103.2761
+119425.2598229605 3.686079 -1103.2366
+119426.2598230108 3.6860397 -1103.2168
+119427.2598230611 3.6860397 -1103.2761
+119428.2598231114 3.6860003 -1103.2562
+119429.2598231616 3.6860003 -1103.2959
+119430.2598232119 3.6860003 -1103.2366
+119431.2598232622 3.685961 -1103.2168
+119432.2598233125 3.6859217 -1103.2366
+119433.2598233628 3.6860003 -1103.197
+119434.2598234131 3.685961 -1103.2761
+119435.2598234634 3.6858823 -1103.2562
+119436.2598235137 3.6859217 -1103.2366
+119437.259823564 3.685843 -1103.2761
+119438.2598236143 3.6859217 -1103.2366
+119439.2598236646 3.6858823 -1103.2366
+119440.2598237148 3.685961 -1103.3156
+119441.2598237651 3.6858034 -1103.2959
+119442.2598238154 3.6858823 -1103.1576
+119443.2598238657 3.6859217 -1103.197
+119444.259823916 3.685843 -1103.197
+119445.2598239663 3.6857641 -1103.1774
+119446.2598240166 3.6857247 -1103.1576
+119447.2598240669 3.6857641 -1103.1576
+119448.2598241172 3.6858034 -1103.197
+119449.2598241675 3.6856854 -1103.2959
+119450.2598242178 3.6856854 -1103.2168
+119451.2598242681 3.6858034 -1103.197
+119452.2598243183 3.6857247 -1103.2761
+119453.2598243686 3.6858034 -1103.1774
+119454.2598244189 3.6857247 -1103.2562
+119455.2598244692 3.6857641 -1103.2168
+119456.2598245195 3.6857247 -1103.2959
+119457.2598245698 3.6855674 -1103.2168
+119458.2598246201 3.6856461 -1103.2761
+119459.2598246704 3.6856461 -1103.3156
+119460.2598247207 3.6857247 -1103.2366
+119461.259824771 3.6856067 -1103.3156
+119462.2598248213 3.6856067 -1103.2562
+119463.2598248716 3.6856854 -1103.2168
+119464.2598249218 3.6856067 -1103.1774
+119465.2598249721 3.685528 -1103.1774
+119466.2598250224 3.6855674 -1103.2168
+119467.2598250727 3.6855674 -1103.3156
+119468.259825123 3.6855674 -1103.2959
+119469.2598251733 3.685528 -1103.2168
+119470.2598252236 3.6855674 -1103.2761
+119471.2598252739 3.6854491 -1103.2168
+119472.2598253242 3.6854491 -1103.197
+119473.2598253745 3.6854885 -1103.1774
+119474.2598254248 3.6853704 -1103.2366
+119475.259825475 3.6854885 -1103.2366
+119476.2598255253 3.6854491 -1103.2168
+119477.2598255756 3.6854098 -1103.2959
+119478.2598256259 3.6854098 -1103.2761
+119479.2598256762 3.6853704 -1103.2366
+119480.2598257265 3.6854885 -1103.197
+119481.2598257768 3.6853704 -1103.2761
+119482.2598258271 3.6853704 -1103.197
+119483.2598258774 3.6852524 -1103.197
+119484.2598259277 3.6854098 -1103.2562
+119485.259825978 3.6853311 -1103.3353
+119486.2598260283 3.6853311 -1103.2562
+119487.2598260785 3.6852524 -1103.2562
+119488.2598261288 3.6852918 -1103.0984
+119489.2598261791 3.6853311 -1103.2366
+119490.2598262294 3.6853704 -1103.197
+119491.2598262797 3.6852918 -1103.2761
+119492.25982633 3.6852524 -1103.1774
+119493.2598263803 3.6852129 -1103.3156
+119494.2598264306 3.6850948 -1103.197
+119495.2598264809 3.6852129 -1103.1774
+119496.2598265312 3.6852918 -1103.1774
+119497.2598265815 3.6852129 -1103.2959
+119498.2598266318 3.6852129 -1103.2168
+119499.259826682 3.6850948 -1103.2761
+119500.2598267323 3.6851735 -1103.197
+119501.2598267826 3.6850948 -1103.2959
+119502.2598268329 3.6851735 -1103.2761
+119503.2598268832 3.6850948 -1103.2959
+119504.2598269335 3.6851342 -1103.2562
+119505.2598269838 3.6850948 -1103.2168
+119506.2598270341 3.6850555 -1103.2562
+119507.2598270844 3.6850948 -1103.2562
+119508.2598271347 3.6850162 -1103.2366
+119509.259827185 3.6850162 -1103.2761
+119510.2598272352 3.6849768 -1103.2366
+119511.2598272855 3.6850162 -1103.2761
+119512.2598273358 3.6850162 -1103.2168
+119513.2598273861 3.6849768 -1103.197
+119514.2598274364 3.6850162 -1103.197
+119515.2598274867 3.6849375 -1103.2366
+119516.259827537 3.6848979 -1103.2168
+119517.2598275873 3.6848586 -1103.2168
+119518.2598276376 3.6850162 -1103.1576
+119519.2598276879 3.6848586 -1103.2366
+119520.2598277382 3.6849768 -1103.2761
+119521.2598277885 3.6848586 -1103.2562
+119522.2598278387 3.6848979 -1103.2562
+119523.259827889 3.6847799 -1103.3156
+119524.2598279393 3.6848586 -1103.1774
+119525.2598279896 3.6848979 -1103.2562
+119526.2598280399 3.6848192 -1103.1378
+119527.2598280902 3.6848192 -1103.3156
+119528.2598281405 3.6847799 -1103.1378
+119529.2598281908 3.6847405 -1103.2761
+119530.2598282411 3.6847012 -1103.2761
+119531.2598282914 3.6848586 -1103.2168
+119532.2598283417 3.6847799 -1103.3353
+119533.259828392 3.6847012 -1103.2366
+119534.2598284422 3.6847405 -1103.2959
+119535.2598284925 3.6847405 -1103.197
+119536.2598285428 3.6847405 -1103.2761
+119537.2598285931 3.6847012 -1103.2761
+119538.2598286434 3.6847012 -1103.1378
+119539.2598286937 3.6846619 -1103.2761
+119540.259828744 3.6846619 -1103.1182
+119541.2598287943 3.6846225 -1103.2562
+119542.2598288446 3.6846225 -1103.1182
+119543.2598288949 3.6845829 -1103.2562
+119544.2598289452 3.6847012 -1103.197
+119545.2598289954 3.6845829 -1103.2562
+119546.2598290457 3.6846619 -1103.1774
+119547.259829096 3.6845829 -1103.2959
+119548.2598291463 3.6845043 -1103.2366
+119549.2598291966 3.6846225 -1103.2366
+119550.2598292469 3.6844649 -1103.197
+119551.2598292972 3.6845829 -1103.2168
+119552.2598293475 3.6844649 -1103.2562
+119553.2598293978 3.6845043 -1103.2959
+119554.2598294481 3.6845436 -1103.197
+119555.2598294984 3.6844256 -1103.197
+119556.2598295487 3.6845436 -1103.197
+119557.2598295989 3.6844649 -1103.1774
+119558.2598296492 3.6845043 -1103.2562
+119559.2598296995 3.6843863 -1103.3353
+119560.2598297498 3.6844649 -1103.2168
+119561.2598298001 3.6843863 -1103.2168
+119562.2598298504 3.6845043 -1103.2761
+119563.2598299007 3.6844649 -1103.2168
+119564.259829951 3.6843863 -1103.2761
+119565.2598300013 3.684268 -1103.197
+119566.2598300516 3.6843469 -1103.2761
+119567.2598301019 3.6844256 -1103.197
+119568.2598301522 3.6843076 -1103.2562
+119569.2598302024 3.6843863 -1103.2761
+119570.2598302527 3.6843469 -1103.2366
+119571.259830303 3.6843863 -1103.2366
+119572.2598303533 3.6843076 -1103.2562
+119573.2598304036 3.684268 -1103.2959
+119574.2598304539 3.6843469 -1103.1774
+119575.2598305042 3.684268 -1103.1774
+119576.2598305545 3.6841893 -1103.197
+119577.2598306048 3.6842287 -1103.2562
+119578.2598306551 3.68415 -1103.197
+119579.2598307054 3.6841893 -1103.2168
+119580.2598307556 3.6842287 -1103.3353
+119581.2598308059 3.6841893 -1103.2366
+119582.2598308562 3.684032 -1103.2366
+119583.2598309065 3.68415 -1103.2562
+119584.2598309568 3.6841106 -1103.2366
+119585.2598310071 3.6840713 -1103.2366
+119586.2598310574 3.6840713 -1103.2761
+119587.2598311077 3.6840713 -1103.2168
+119588.259831158 3.684032 -1103.2366
+119589.2598312083 3.6839926 -1103.2959
+119590.2598312586 3.683953 -1103.2366
+119591.2598313089 3.6839926 -1103.197
+119592.2598313591 3.6839926 -1103.2168
+119593.2598314094 3.6839137 -1103.3156
+119594.2598314597 3.6839926 -1103.2366
+119595.25983151 3.683953 -1103.2168
+119596.2598315603 3.683953 -1103.2761
+119597.2598316106 3.6839926 -1103.197
+119598.2598316609 3.6839137 -1103.197
+119599.2598317112 3.684032 -1103.197
+119600.2598317615 3.6839137 -1103.2761
+119601.2598318118 3.683953 -1103.2562
+119602.2598318621 3.6839137 -1103.1576
+119603.2598319124 3.6838744 -1103.197
+119604.2598319626 3.683835 -1103.2959
+119605.2598320129 3.6839137 -1103.2761
+119606.2598320632 3.6837957 -1103.2366
+119607.2598321135 3.6838744 -1103.2168
+119608.2598321638 3.683835 -1103.3353
+119609.2598322141 3.683835 -1103.197
+119610.2598322644 3.683717 -1103.2168
+119611.2598323147 3.6837564 -1103.1774
+119612.259832365 3.683835 -1103.2959
+119613.2598324153 3.6837564 -1103.2168
+119614.2598324656 3.6837957 -1103.2959
+119615.2598325158 3.6836777 -1103.2366
+119616.2598325661 3.6836777 -1103.2366
+119617.2598326164 3.6837957 -1103.197
+119618.2598326667 3.6837564 -1103.2562
+119619.259832717 3.6836777 -1103.2366
+119620.2598327673 3.683717 -1103.197
+119621.2598328176 3.683717 -1103.197
+119622.2598328679 3.6835988 -1103.2168
+119623.2598329182 3.683717 -1103.2761
+119624.2598329685 3.6836381 -1103.1576
+119625.2598330188 3.6836381 -1103.3156
+119626.2598330691 3.6835594 -1103.2168
+119627.2598331193 3.6835201 -1103.1378
+119628.2598331696 3.6836777 -1103.2562
+119629.2598332199 3.6835988 -1103.2562
+119630.2598332702 3.6835201 -1103.2562
+119631.2598333205 3.6834807 -1103.1576
+119632.2598333708 3.6836381 -1103.2562
+119633.2598334211 3.6834807 -1103.2168
+119634.2598334714 3.6835594 -1103.2959
+119635.2598335217 3.6834414 -1103.2562
+119636.259833572 3.6834414 -1103.2366
+119637.2598336223 3.6834807 -1103.2562
+119638.2598336726 3.6834021 -1103.1774
+119639.2598337228 3.6835201 -1103.2761
+119640.2598337731 3.6833625 -1103.2761
+119641.2598338234 3.6834807 -1103.2168
+119642.2598338737 3.6833625 -1103.1576
+119643.259833924 3.6832838 -1103.2562
+119644.2598339743 3.6834414 -1103.197
+119645.2598340246 3.6833231 -1103.2366
+119646.2598340749 3.6833625 -1103.2366
+119647.2598341252 3.6833231 -1103.2168
+119648.2598341755 3.6834021 -1103.2168
+119649.2598342258 3.6833625 -1103.2168
+119650.259834276 3.6832838 -1103.2562
+119651.2598343263 3.6833231 -1103.1378
+119652.2598343766 3.6832838 -1103.2959
+119653.2598344269 3.6833231 -1103.2366
+119654.2598344772 3.6832838 -1103.197
+119655.2598345275 3.6832051 -1103.1378
+119656.2598345778 3.6832838 -1103.2562
+119657.2598346281 3.6832445 -1103.1774
+119658.2598346784 3.6832051 -1103.2562
+119659.2598347287 3.6832445 -1103.2366
+119660.259834779 3.6833625 -1103.2761
+119661.2598348293 3.6831658 -1103.1378
+119662.2598348795 3.6831658 -1103.2366
+119663.2598349298 3.6831658 -1103.197
+119664.2598349801 3.6832445 -1103.2959
+119665.2598350304 3.6831658 -1103.197
+119666.2598350807 3.6831658 -1103.2562
+119667.259835131 3.6832051 -1103.2168
+119668.2598351813 3.6831264 -1103.197
+119669.2598352316 3.6831264 -1103.1576
+119670.2598352819 3.6830871 -1103.2562
+119671.2598353322 3.6831658 -1103.2959
+119672.2598353825 3.6830871 -1103.2366
+119673.2598354327 3.6830475 -1103.3353
+119674.259835483 3.6829689 -1103.1774
+119675.2598355333 3.6829295 -1103.2761
+119676.2598355836 3.6830082 -1103.1576
+119677.2598356339 3.6829689 -1103.2761
+119678.2598356842 3.6830475 -1103.1774
+119679.2598357345 3.6830475 -1103.2562
+119680.2598357848 3.6829689 -1103.2959
+119681.2598358351 3.6829689 -1103.2761
+119682.2598358854 3.6830082 -1103.1378
+119683.2598359357 3.6829295 -1103.197
+119684.259835986 3.6830871 -1103.3353
+119685.2598360362 3.6828508 -1103.197
+119686.2598360865 3.6828508 -1103.2366
+119687.2598361368 3.6828115 -1103.2168
+119688.2598361871 3.6830082 -1103.2562
+119689.2598362374 3.6827722 -1103.2761
+119690.2598362877 3.6828508 -1103.2366
+119691.259836338 3.6828902 -1103.2761
+119692.2598363883 3.6827722 -1103.2366
+119693.2598364386 3.6827722 -1103.1774
+119694.2598364889 3.6827722 -1103.2168
+119695.2598365392 3.6828508 -1103.2168
+119696.2598365895 3.6827722 -1103.2761
+119697.2598366397 3.6826932 -1103.2168
+119698.25983669 3.6826539 -1103.3353
+119699.2598367403 3.6826539 -1103.197
+119700.2598367906 3.6827326 -1103.2366
+119701.2598368409 3.6827722 -1103.197
+119702.2598368912 3.6826539 -1103.1576
+119703.2598369415 3.6826539 -1103.2168
+119704.2598369918 3.6826932 -1103.1576
+119705.2598370421 3.6826146 -1103.2168
+119706.2598370924 3.6826932 -1103.2168
+119707.2598371427 3.6826539 -1103.2168
+119708.2598371929 3.6825752 -1103.2761
+119709.2598372432 3.6825752 -1103.197
+119710.2598372935 3.6825752 -1103.197
+119711.2598373438 3.6826539 -1103.2168
+119712.2598373941 3.6826146 -1103.3353
+119713.2598374444 3.6826539 -1103.2168
+119714.2598374947 3.6825359 -1103.2168
+119715.259837545 3.6826146 -1103.2959
+119716.2598375953 3.6824572 -1103.2366
+119717.2598376456 3.6824965 -1103.2959
+119718.2598376959 3.6824572 -1103.2761
+119719.2598377462 3.6824176 -1103.2168
+119720.2598377964 3.6824965 -1103.2562
+119721.2598378467 3.6825359 -1103.197
+119722.259837897 3.6823783 -1103.2366
+119723.2598379473 3.6824572 -1103.2366
+119724.2598379976 3.6823783 -1103.1576
+119725.2598380479 3.6822996 -1103.1774
+119726.2598380982 3.6823783 -1103.3551
+119727.2598381485 3.6823783 -1103.3156
+119728.2598381988 3.6824176 -1103.2562
+119729.2598382491 3.682339 -1103.2761
+119730.2598382994 3.6822996 -1103.1774
+119731.2598383497 3.6823783 -1103.3156
+119732.2598383999 3.682339 -1103.1774
+119733.2598384502 3.682339 -1103.2168
+119734.2598385005 3.682339 -1103.2761
+119735.2598385508 3.6823783 -1103.1774
+119736.2598386011 3.6821816 -1103.197
+119737.2598386514 3.6821816 -1103.2366
+119738.2598387017 3.682339 -1103.2366
+119739.259838752 3.6822209 -1103.1378
+119740.2598388023 3.6822603 -1103.2366
+119741.2598388526 3.6822209 -1103.1774
+119742.2598389029 3.6821423 -1103.2366
+119743.2598389531 3.6822603 -1103.2959
+119744.2598390034 3.6822209 -1103.2959
+119745.2598390537 3.6822209 -1103.2562
+119746.259839104 3.6821423 -1103.2761
+119747.2598391543 3.6821423 -1103.1774
+119748.2598392046 3.6821027 -1103.2959
+119749.2598392549 3.6821816 -1103.197
+119750.2598393052 3.6822209 -1103.2761
+119751.2598393555 3.682024 -1103.2562
+119752.2598394058 3.6821027 -1103.1576
+119753.2598394561 3.6820633 -1103.2366
+119754.2598395064 3.6820633 -1103.2761
+119755.2598395566 3.6820633 -1103.197
+119756.2598396069 3.682024 -1103.2168
+119757.2598396572 3.6819453 -1103.2366
+119758.2598397075 3.6819453 -1103.2366
+119759.2598397578 3.6819847 -1103.2562
+119760.2598398081 3.682024 -1103.1576
+119761.2598398584 3.6821423 -1103.2168
+119762.2598399087 3.682024 -1103.2366
+119763.259839959 3.681906 -1103.2562
+119764.2598400093 3.6819847 -1103.2366
+119765.2598400596 3.6819847 -1103.2168
+119766.2598401099 3.6818666 -1103.2366
+119767.2598401601 3.6819453 -1103.1182
+119768.2598402104 3.6817877 -1103.2959
+119769.2598402607 3.6819847 -1103.2168
+119770.259840311 3.681906 -1103.2168
+119771.2598403613 3.6818666 -1103.2761
+119772.2598404116 3.6818666 -1103.197
+119773.2598404619 3.6819847 -1103.2761
+119774.2598405122 3.6818271 -1103.2366
+119775.2598405625 3.6817877 -1103.2366
+119776.2598406128 3.6818271 -1103.197
+119777.2598406631 3.6817877 -1103.1576
+119778.2598407133 3.6817484 -1103.2959
+119779.2598407636 3.6817877 -1103.3353
+119780.2598408139 3.6817877 -1103.2168
+119781.2598408642 3.6817877 -1103.3156
+119782.2598409145 3.6817091 -1103.0588
+119783.2598409648 3.6817484 -1103.2959
+119784.2598410151 3.6816697 -1103.2562
+119785.2598410654 3.6816697 -1103.2761
+119786.2598411157 3.6817091 -1103.3551
+119787.259841166 3.6816304 -1103.1576
+119788.2598412163 3.681591 -1103.2168
+119789.2598412666 3.681591 -1103.2562
+119790.2598413168 3.6816304 -1103.2562
+119791.2598413671 3.6816697 -1103.1576
+119792.2598414174 3.6816304 -1103.197
+119793.2598414677 3.6815517 -1103.1576
+119794.259841518 3.6816697 -1103.2761
+119795.2598415683 3.681591 -1103.2761
+119796.2598416186 3.681591 -1103.3156
+119797.2598416689 3.6815517 -1103.2761
+119798.2598417192 3.6814728 -1103.197
+119799.2598417695 3.6816304 -1103.2168
+119800.2598418198 3.6815517 -1103.2761
+119801.2598418701 3.6814728 -1103.1774
+119802.2598419203 3.6814728 -1103.197
+119803.2598419706 3.6814728 -1103.3156
+119804.2598420209 3.6813941 -1103.2562
+119805.2598420712 3.6815121 -1103.2761
+119806.2598421215 3.6813941 -1103.2366
+119807.2598421718 3.6814334 -1103.2761
+119808.2598422221 3.6814728 -1103.2562
+119809.2598422724 3.6813941 -1103.3353
+119810.2598423227 3.6813941 -1103.1774
+119811.259842373 3.6813941 -1103.197
+119812.2598424233 3.6814334 -1103.2366
+119813.2598424735 3.6814334 -1103.2761
+119814.2598425238 3.6813941 -1103.2168
+119815.2598425741 3.6813154 -1103.2761
+119816.2598426244 3.6811972 -1103.197
+119817.2598426747 3.6812761 -1103.2562
+119818.259842725 3.6813154 -1103.3156
+119819.2598427753 3.6813154 -1103.2366
+119820.2598428256 3.6813548 -1103.197
+119821.2598428759 3.6813154 -1103.2562
+119822.2598429262 3.6811972 -1103.2562
+119823.2598429765 3.6813548 -1103.2168
+119824.2598430268 3.6811578 -1103.2168
+119825.259843077 3.6811578 -1103.3156
+119826.2598431273 3.6811972 -1103.2168
+119827.2598431776 3.6812367 -1103.2761
+119828.2598432279 3.6811578 -1103.2761
+119829.2598432782 3.6811972 -1103.2959
+119830.2598433285 3.6811578 -1103.2168
+119831.2598433788 3.6811972 -1103.2366
+119832.2598434291 3.6811185 -1103.2366
+119833.2598434794 3.6810791 -1103.1576
+119834.2598435297 3.6811185 -1103.2959
+119835.25984358 3.6810791 -1103.2562
+119836.2598436303 3.6811578 -1103.1774
+119837.2598436805 3.6810398 -1103.2366
+119838.2598437308 3.6811185 -1103.2366
+119839.2598437811 3.6811578 -1103.2761
+119840.2598438314 3.6810398 -1103.2366
+119841.2598438817 3.6811185 -1103.1774
+119842.259843932 3.6810005 -1103.2168
+119843.2598439823 3.6810398 -1103.2761
+119844.2598440326 3.6809611 -1103.1774
+119845.2598440829 3.6811185 -1103.2761
+119846.2598441332 3.6810005 -1103.2562
+119847.2598441835 3.6810005 -1103.2562
+119848.2598442337 3.6809611 -1103.2168
+119849.259844284 3.6810005 -1103.1774
+119850.2598443343 3.6809218 -1103.1378
+119851.2598443846 3.6808822 -1103.1774
+119852.2598444349 3.6809218 -1103.2366
+119853.2598444852 3.6808822 -1103.197
+119854.2598445355 3.6808822 -1103.1774
+119855.2598445858 3.6808429 -1103.197
+119856.2598446361 3.6808822 -1103.1774
+119857.2598446864 3.6809218 -1103.1576
+119858.2598447367 3.6807249 -1103.1576
+119859.259844787 3.6808822 -1103.2366
+119860.2598448372 3.6808822 -1103.2366
+119861.2598448875 3.6808035 -1103.2366
+119862.2598449378 3.6809218 -1103.2761
+119863.2598449881 3.6807249 -1103.2761
+119864.2598450384 3.6807249 -1103.3156
+119865.2598450887 3.6807249 -1103.1576
+119866.259845139 3.6808035 -1103.2562
+119867.2598451893 3.6808035 -1103.2168
+119868.2598452396 3.6807642 -1103.197
+119869.2598452899 3.6806462 -1103.197
+119870.2598453402 3.6807642 -1103.2761
+119871.2598453905 3.6806462 -1103.2366
+119872.2598454407 3.6805673 -1103.197
+119873.259845491 3.6806462 -1103.2168
+119874.2598455413 3.6806462 -1103.197
+119875.2598455916 3.6805673 -1103.2562
+119876.2598456419 3.6805673 -1103.3156
+119877.2598456922 3.6805279 -1103.2959
+119878.2598457425 3.6806068 -1103.1774
+119879.2598457928 3.6805673 -1103.2761
+119880.2598458431 3.6806068 -1103.2761
+119881.2598458934 3.6805673 -1103.2168
+119882.2598459437 3.6805279 -1103.2562
+119883.2598459939 3.6805279 -1103.2366
+119884.2598460442 3.6804886 -1103.1576
+119885.2598460945 3.6804492 -1103.2959
+119886.2598461448 3.6805279 -1103.2366
+119887.2598461951 3.6804492 -1103.2366
+119888.2598462454 3.6804492 -1103.2168
+119889.2598462957 3.6804886 -1103.1378
+119890.259846346 3.6804099 -1103.2168
+119891.2598463963 3.6804886 -1103.2562
+119892.2598464466 3.6804099 -1103.2366
+119893.2598464969 3.6804099 -1103.3156
+119894.2598465472 3.6804099 -1103.2562
+119895.2598465974 3.6804492 -1103.1576
+119896.2598466477 3.6804099 -1103.1576
+119897.259846698 3.6804099 -1103.2168
+119898.2598467483 3.6804099 -1103.2959
+119899.2598467986 3.6803312 -1103.2168
+119900.2598468489 3.6804099 -1103.2366
+119901.2598468992 3.6802919 -1103.2168
+119902.2598469495 3.6803312 -1103.2168
+119903.2598469998 3.6802919 -1103.1774
+119904.2598470501 3.6801736 -1103.2562
+119905.2598471004 3.6802523 -1103.197
+119906.2598471507 3.6802523 -1103.2959
+119907.2598472009 3.680213 -1103.2562
+119908.2598472512 3.680213 -1103.2761
+119909.2598473015 3.6802523 -1103.2168
+119910.2598473518 3.6802523 -1103.3156
+119911.2598474021 3.680213 -1103.1774
+119912.2598474524 3.6802523 -1103.2168
+119913.2598475027 3.680213 -1103.1774
+119914.259847553 3.6801736 -1103.2168
+119915.2598476033 3.680095 -1103.197
+119916.2598476536 3.680095 -1103.2366
+119917.2598477039 3.6801343 -1103.2366
+119918.2598477541 3.680095 -1103.2959
+119919.2598478044 3.6801736 -1103.2366
+119920.2598478547 3.6801343 -1103.2366
+119921.259847905 3.680095 -1103.2562
+119922.2598479553 3.6801736 -1103.3156
+119923.2598480056 3.6800556 -1103.2562
+119924.2598480559 3.680095 -1103.1182
+119925.2598481062 3.6800163 -1103.1774
+119926.2598481565 3.6801343 -1103.2761
+119927.2598482068 3.6799374 -1103.197
+119928.2598482571 3.6800163 -1103.2366
+119929.2598483074 3.6799767 -1103.2366
+119930.2598483576 3.6799374 -1103.1576
+119931.2598484079 3.6800163 -1103.2761
+119932.2598484582 3.6800163 -1103.1378
+119933.2598485085 3.6799374 -1103.2761
+119934.2598485588 3.679898 -1103.2761
+119935.2598486091 3.6799767 -1103.2959
+119936.2598486594 3.6798193 -1103.3156
+119937.2598487097 3.679898 -1103.2959
+119938.25984876 3.679898 -1103.2366
+119939.2598488103 3.6798193 -1103.2761
+119940.2598488606 3.6798587 -1103.1774
+119941.2598489109 3.6798587 -1103.2366
+119942.2598489611 3.6798193 -1103.2761
+119943.2598490114 3.679898 -1103.2562
+119944.2598490617 3.6798587 -1103.2959
+119945.259849112 3.6798587 -1103.2168
+119946.2598491623 3.6799374 -1103.2761
+119947.2598492126 3.6798193 -1103.2562
+119948.2598492629 3.67978 -1103.2168
+119949.2598493132 3.6798193 -1103.197
+119950.2598493635 3.67978 -1103.1774
+119951.2598494138 3.6797013 -1103.2562
+119952.2598494641 3.6797013 -1103.2562
+119953.2598495143 3.6796618 -1103.197
+119954.2598495646 3.6797407 -1103.197
+119955.2598496149 3.6797013 -1103.197
+119956.2598496652 3.6796224 -1103.1774
+119957.2598497155 3.6796618 -1103.2959
+119958.2598497658 3.6797013 -1103.1576
+119959.2598498161 3.6797407 -1103.2366
+119960.2598498664 3.6796224 -1103.197
+119961.2598499167 3.6796618 -1103.2761
+119962.259849967 3.6795437 -1103.2959
+119963.2598500173 3.6797013 -1103.2366
+119964.2598500676 3.6795437 -1103.2168
+119965.2598501178 3.6795831 -1103.2562
+119966.2598501681 3.6795831 -1103.3156
+119967.2598502184 3.6797013 -1103.3156
+119968.2598502687 3.6795437 -1103.2168
+119969.259850319 3.6795044 -1103.3551
+119970.2598503693 3.6794257 -1103.2168
+119971.2598504196 3.6795044 -1103.1182
+119972.2598504699 3.6795437 -1103.2366
+119973.2598505202 3.6793864 -1103.197
+119974.2598505705 3.6794651 -1103.2168
+119975.2598506208 3.6795044 -1103.2168
+119976.259850671 3.6794651 -1103.2761
+119977.2598507213 3.6794257 -1103.1576
+119978.2598507716 3.6795044 -1103.2761
+119979.2598508219 3.6794651 -1103.2168
+119980.2598508722 3.6793468 -1103.197
+119981.2598509225 3.6793864 -1103.2366
+119982.2598509728 3.6794257 -1103.2562
+119983.2598510231 3.6794651 -1103.2366
+119984.2598510734 3.6793468 -1103.1774
+119985.2598511237 3.6793468 -1103.2761
+119986.259851174 3.6794257 -1103.2366
+119987.2598512243 3.6793468 -1103.2366
+119988.2598512745 3.6792681 -1103.2761
+119989.2598513248 3.6792681 -1103.3156
+119990.2598513751 3.6793075 -1103.2366
+119991.2598514254 3.6793468 -1103.1774
+119992.2598514757 3.6792681 -1103.2761
+119993.259851526 3.6793075 -1103.2168
+119994.2598515763 3.6793075 -1103.2562
+119995.2598516266 3.6793468 -1103.2761
+119996.2598516769 3.6792681 -1103.2168
+119997.2598517272 3.6792288 -1103.197
+119998.2598517775 3.6791501 -1103.2562
+119999.2598518278 3.6791108 -1103.2562
+120000.259851878 3.6791894 -1103.2168
+120001.2598519283 3.6791894 -1103.1576
+120002.2598519786 3.6791501 -1103.1774
+120003.2598520289 3.6791501 -1103.2366
+120004.2598520792 3.6791894 -1103.2562
+120005.2598521295 3.6791501 -1103.1774
+120006.2598521798 3.6790714 -1103.2168
+120007.2598522301 3.6790714 -1103.2562
+120008.2598522804 3.6790714 -1103.2168
+120009.2598523307 3.6790318 -1103.2562
+120010.259852381 3.6791108 -1103.1576
+120011.2598524312 3.6789925 -1103.2366
+120012.2598524815 3.6789925 -1103.2562
+120013.2598525318 3.6790318 -1103.2168
+120014.2598525821 3.6789925 -1103.2562
+120015.2598526324 3.6790714 -1103.2761
+120016.2598526827 3.6789532 -1103.2761
+120017.259852733 3.6789532 -1103.2366
+120018.2598527833 3.6789138 -1103.2562
+120019.2598528336 3.6789925 -1103.2562
+120020.2598528839 3.6788745 -1103.2168
+120021.2598529342 3.6789532 -1103.2761
+120022.2598529845 3.6789138 -1103.2168
+120023.2598530347 3.6788352 -1103.3156
+120024.259853085 3.6789138 -1103.1774
+120025.2598531353 3.6789138 -1103.1774
+120026.2598531856 3.6788745 -1103.2168
+120027.2598532359 3.6788352 -1103.1576
+120028.2598532862 3.6787958 -1103.2562
+120029.2598533365 3.6788352 -1103.1774
+120030.2598533868 3.6788352 -1103.197
+120031.2598534371 3.6787958 -1103.3353
+120032.2598534874 3.6788352 -1103.3156
+120033.2598535377 3.6789138 -1103.1774
+120034.259853588 3.6788745 -1103.197
+120035.2598536382 3.6787565 -1103.1182
+120036.2598536885 3.6787958 -1103.1576
+120037.2598537388 3.6787169 -1103.2168
+120038.2598537891 3.6786776 -1103.2761
+120039.2598538394 3.6787169 -1103.2168
+120040.2598538897 3.6787565 -1103.197
+120041.25985394 3.6787958 -1103.1576
+120042.2598539903 3.6786382 -1103.2562
+120043.2598540406 3.6786382 -1103.2366
+120044.2598540909 3.6785989 -1103.2761
+120045.2598541412 3.6785989 -1103.2761
+120046.2598541914 3.6785595 -1103.2366
+120047.2598542417 3.6787169 -1103.2761
+120048.259854292 3.6786776 -1103.2168
+120049.2598543423 3.6785595 -1103.2761
+120050.2598543926 3.6786382 -1103.2761
+120051.2598544429 3.6785202 -1103.2366
+120052.2598544932 3.6786382 -1103.2366
+120053.2598545435 3.6785989 -1103.1774
+120054.2598545938 3.6784809 -1103.2761
+120055.2598546441 3.6784809 -1103.2168
+120056.2598546944 3.6785595 -1103.2168
+120057.2598547447 3.6784415 -1103.1774
+120058.2598547949 3.6784415 -1103.2562
+120059.2598548452 3.6784809 -1103.2562
+120060.2598548955 3.6784415 -1103.2168
+120061.2598549458 3.6785989 -1103.197
+120062.2598549961 3.6784809 -1103.1774
+120063.2598550464 3.6784019 -1103.2761
+120064.2598550967 3.6785595 -1103.2761
+120065.259855147 3.6784019 -1103.2168
+120066.2598551973 3.6784415 -1103.2959
+120067.2598552476 3.6783626 -1103.1576
+120068.2598552979 3.6784019 -1103.1576
+120069.2598553482 3.6784415 -1103.2366
+120070.2598553984 3.6784019 -1103.197
+120071.2598554487 3.6783626 -1103.2959
+120072.259855499 3.6784019 -1103.2562
+120073.2598555493 3.6783233 -1103.2562
+120074.2598555996 3.6783233 -1103.2761
+120075.2598556499 3.6782839 -1103.2562
+120076.2598557002 3.6783233 -1103.1576
+120077.2598557505 3.6783626 -1103.3551
+120078.2598558008 3.6783626 -1103.2562
+120079.2598558511 3.6783233 -1103.2168
+120080.2598559014 3.6782053 -1103.2761
+120081.2598559516 3.6782839 -1103.1774
+120082.2598560019 3.678087 -1103.2761
+120083.2598560522 3.6782839 -1103.3156
+120084.2598561025 3.678087 -1103.2761
+120085.2598561528 3.6781659 -1103.2366
+120086.2598562031 3.6781659 -1103.2366
+120087.2598562534 3.678087 -1103.1774
+120088.2598563037 3.6781659 -1103.2168
+120089.259856354 3.6782053 -1103.2761
+120090.2598564043 3.6782053 -1103.197
+120091.2598564546 3.6781659 -1103.2168
+120092.2598565049 3.678087 -1103.3156
+120093.2598565551 3.6781659 -1103.2761
+120094.2598566054 3.6781659 -1103.2562
+120095.2598566557 3.6781263 -1103.1774
+120096.259856706 3.6780477 -1103.197
+120097.2598567563 3.6781263 -1103.2562
+120098.2598568066 3.6780477 -1103.2168
+120099.2598568569 3.6780083 -1103.2366
+120100.2598569072 3.6781263 -1103.1774
+120101.2598569575 3.6780477 -1103.1774
+120102.2598570078 3.6778903 -1103.197
+120103.2598570581 3.6780083 -1103.1774
+120104.2598571084 3.6778903 -1103.2168
+120105.2598571586 3.6780477 -1103.2168
+120106.2598572089 3.6780083 -1103.1774
+120107.2598572592 3.6778903 -1103.3156
+120108.2598573095 3.677851 -1103.2168
+120109.2598573598 3.677851 -1103.2366
+120110.2598574101 3.677969 -1103.2366
+120111.2598574604 3.677851 -1103.197
+120112.2598575107 3.6778903 -1103.3353
+120113.259857561 3.6778903 -1103.197
+120114.2598576113 3.677969 -1103.3156
+120115.2598576616 3.677851 -1103.1378
+120116.2598577118 3.677851 -1103.2366
+120117.2598577621 3.6778114 -1103.1774
+120118.2598578124 3.6778114 -1103.197
+120119.2598578627 3.6778114 -1103.197
+120120.259857913 3.677772 -1103.2562
+120121.2598579633 3.6778114 -1103.2761
+120122.2598580136 3.677851 -1103.2366
+120123.2598580639 3.677772 -1103.2168
+120124.2598581142 3.677654 -1103.1774
+120125.2598581645 3.677772 -1103.2366
+120126.2598582148 3.6777327 -1103.2366
+120127.2598582651 3.6777327 -1103.2959
+120128.2598583153 3.677654 -1103.2366
+120129.2598583656 3.6777327 -1103.2168
+120130.2598584159 3.677654 -1103.2168
+120131.2598584662 3.6776147 -1103.2562
+120132.2598585165 3.6776934 -1103.2168
+120133.2598585668 3.6776934 -1103.1182
+120134.2598586171 3.6776147 -1103.2366
+120135.2598586674 3.6776147 -1103.2761
+120136.2598587177 3.6775753 -1103.197
+120137.259858768 3.677654 -1103.2562
+120138.2598588183 3.677654 -1103.197
+120139.2598588686 3.677536 -1103.1774
+120140.2598589188 3.677536 -1103.2562
+120141.2598589691 3.6775753 -1103.2168
+120142.2598590194 3.677536 -1103.2366
+120143.2598590697 3.6774571 -1103.2168
+120144.25985912 3.6774571 -1103.2366
+120145.2598591703 3.6774571 -1103.2562
+120146.2598592206 3.6774571 -1103.2562
+120147.2598592709 3.6773391 -1103.197
+120148.2598593212 3.6773784 -1103.197
+120149.2598593715 3.6774571 -1103.197
+120150.2598594218 3.6774178 -1103.2168
+120151.259859472 3.6774178 -1103.197
+120152.2598595223 3.6774571 -1103.197
+120153.2598595726 3.6774178 -1103.197
+120154.2598596229 3.6773391 -1103.2366
+120155.2598596732 3.6773784 -1103.197
+120156.2598597235 3.6774571 -1103.2761
+120157.2598597738 3.6772997 -1103.2366
+120158.2598598241 3.6772211 -1103.2761
+120159.2598598744 3.6773391 -1103.1576
+120160.2598599247 3.6773391 -1103.2959
+120161.259859975 3.6774178 -1103.3353
+120162.2598600253 3.6772604 -1103.1378
+120163.2598600755 3.6772211 -1103.2562
+120164.2598601258 3.6771815 -1103.1774
+120165.2598601761 3.6772211 -1103.2562
+120166.2598602264 3.6772604 -1103.2366
+120167.2598602767 3.6772604 -1103.2366
+120168.259860327 3.6772211 -1103.197
+120169.2598603773 3.6772211 -1103.2168
+120170.2598604276 3.6772604 -1103.2366
+120171.2598604779 3.6772211 -1103.2366
+120172.2598605282 3.6771421 -1103.2366
+120173.2598605785 3.6771815 -1103.2366
+120174.2598606288 3.6771421 -1103.1576
+120175.259860679 3.6771815 -1103.2562
+120176.2598607293 3.6771421 -1103.2366
+120177.2598607796 3.6771028 -1103.2366
+120178.2598608299 3.6771028 -1103.1576
+120179.2598608802 3.6772211 -1103.2366
+120180.2598609305 3.6771815 -1103.2366
+120181.2598609808 3.6770635 -1103.2366
+120182.2598610311 3.6771421 -1103.2168
+120183.2598610814 3.6770635 -1103.2562
+120184.2598611317 3.6771028 -1103.2168
+120185.259861182 3.6770241 -1103.3353
+120186.2598612322 3.6771028 -1103.2366
+120187.2598612825 3.6769848 -1103.2761
+120188.2598613328 3.6770241 -1103.2168
+120189.2598613831 3.6769454 -1103.197
+120190.2598614334 3.6769454 -1103.2562
+120191.2598614837 3.6770635 -1103.2168
+120192.259861534 3.6770241 -1103.3156
+120193.2598615843 3.6769848 -1103.2366
+120194.2598616346 3.6768272 -1103.2761
+120195.2598616849 3.6769454 -1103.197
+120196.2598617352 3.6769454 -1103.2366
+120197.2598617855 3.6769454 -1103.2761
+120198.2598618357 3.6769061 -1103.2562
+120199.259861886 3.6768665 -1103.197
+120200.2598619363 3.6768665 -1103.2366
+120201.2598619866 3.6768665 -1103.2959
+120202.2598620369 3.6768665 -1103.2366
+120203.2598620872 3.6768665 -1103.3156
+120204.2598621375 3.6769061 -1103.197
+120205.2598621878 3.6768665 -1103.2168
+120206.2598622381 3.6767485 -1103.2562
+120207.2598622884 3.6767092 -1103.2366
+120208.2598623387 3.6768665 -1103.1774
+120209.259862389 3.6766698 -1103.197
+120210.2598624392 3.6767879 -1103.2366
+120211.2598624895 3.6766698 -1103.2761
+120212.2598625398 3.6767092 -1103.197
+120213.2598625901 3.6767485 -1103.2562
+120214.2598626404 3.6766305 -1103.1774
+120215.2598626907 3.6767092 -1103.197
+120216.259862741 3.6766305 -1103.2168
+120217.2598627913 3.6766698 -1103.2761
+120218.2598628416 3.6765912 -1103.2366
+120219.2598628919 3.6767485 -1103.2562
+120220.2598629422 3.6766305 -1103.2168
+120221.2598629924 3.6765912 -1103.2761
+120222.2598630427 3.6766698 -1103.2761
+120223.259863093 3.6767485 -1103.2761
+120224.2598631433 3.6766698 -1103.2562
+120225.2598631936 3.6765516 -1103.2959
+120226.2598632439 3.6765122 -1103.2562
+120227.2598632942 3.6765516 -1103.197
+120228.2598633445 3.6766305 -1103.1774
+120229.2598633948 3.6765516 -1103.197
+120230.2598634451 3.6763942 -1103.3353
+120231.2598634954 3.6765516 -1103.2168
+120232.2598635457 3.6764729 -1103.2366
+120233.2598635959 3.6765122 -1103.2366
+120234.2598636462 3.6764729 -1103.2562
+120235.2598636965 3.6764729 -1103.2366
+120236.2598637468 3.6766305 -1103.2562
+120237.2598637971 3.6764729 -1103.2761
+120238.2598638474 3.6763942 -1103.2168
+120239.2598638977 3.6764336 -1103.197
+120240.259863948 3.6764336 -1103.197
+120241.2598639983 3.6763942 -1103.3353
+120242.2598640486 3.6764729 -1103.1774
+120243.2598640989 3.6763942 -1103.2168
+120244.2598641492 3.676276 -1103.2366
+120245.2598641994 3.6764729 -1103.1576
+120246.2598642497 3.6763549 -1103.2761
+120247.2598643 3.6763549 -1103.3156
+120248.2598643503 3.676276 -1103.3551
+120249.2598644006 3.6763549 -1103.2366
+120250.2598644509 3.6762366 -1103.1576
+120251.2598645012 3.676276 -1103.3156
+120252.2598645515 3.6762366 -1103.2761
+120253.2598646018 3.6762366 -1103.2168
+120254.2598646521 3.676276 -1103.2366
+120255.2598647024 3.6761973 -1103.197
+120256.2598647526 3.6763549 -1103.2959
+120257.2598648029 3.676276 -1103.1378
+120258.2598648532 3.6762366 -1103.1774
+120259.2598649035 3.6761973 -1103.2168
+120260.2598649538 3.676158 -1103.2562
+120261.2598650041 3.676158 -1103.2959
+120262.2598650544 3.6762366 -1103.2562
+120263.2598651047 3.676158 -1103.2168
+120264.259865155 3.6761186 -1103.2761
+120265.2598652053 3.676158 -1103.2761
+120266.2598652556 3.6760793 -1103.2366
+120267.2598653059 3.6761186 -1103.2366
+120268.2598653561 3.6760793 -1103.2959
+120269.2598654064 3.6761186 -1103.2562
+120270.2598654567 3.6761186 -1103.2562
+120271.259865507 3.6761186 -1103.2761
+120272.2598655573 3.6761186 -1103.3156
+120273.2598656076 3.6760006 -1103.2366
+120274.2598656579 3.675961 -1103.2761
+120275.2598657082 3.6760399 -1103.2366
+120276.2598657585 3.6760006 -1103.2761
+120277.2598658088 3.6760793 -1103.197
+120278.2598658591 3.6760006 -1103.2168
+120279.2598659093 3.6759217 -1103.197
+120280.2598659596 3.6760399 -1103.197
+120281.2598660099 3.675961 -1103.1774
+120282.2598660602 3.6758823 -1103.2562
+120283.2598661105 3.6760006 -1103.2366
+120284.2598661608 3.6760006 -1103.197
+120285.2598662111 3.6759217 -1103.2959
+120286.2598662614 3.6759217 -1103.2366
+120287.2598663117 3.6758037 -1103.2761
+120288.259866362 3.6758823 -1103.2366
+120289.2598664123 3.6758037 -1103.3156
+120290.2598664626 3.6758823 -1103.197
+120291.2598665128 3.675843 -1103.2366
+120292.2598665631 3.675843 -1103.2959
+120293.2598666134 3.6757643 -1103.2562
+120294.2598666637 3.6758823 -1103.2761
+120295.259866714 3.6758823 -1103.2366
+120296.2598667643 3.675843 -1103.2761
+120297.2598668146 3.675725 -1103.2168
+120298.2598668649 3.675725 -1103.2761
+120299.2598669152 3.6756856 -1103.197
+120300.2598669655 3.675725 -1103.2168
+120301.2598670158 3.6756856 -1103.2562
+120302.2598670661 3.675725 -1103.1378
+120303.2598671163 3.6756461 -1103.1378
+120304.2598671666 3.6756461 -1103.2366
+120305.2598672169 3.6756067 -1103.1378
+120306.2598672672 3.6756461 -1103.2761
+120307.2598673175 3.6756067 -1103.2761
+120308.2598673678 3.6755674 -1103.2562
+120309.2598674181 3.6756461 -1103.2366
+120310.2598674684 3.6756461 -1103.197
+120311.2598675187 3.6755674 -1103.2366
+120312.259867569 3.675528 -1103.2168
+120313.2598676193 3.675528 -1103.2366
+120314.2598676695 3.675528 -1103.3353
+120315.2598677198 3.6756067 -1103.2366
+120316.2598677701 3.6755674 -1103.197
+120317.2598678204 3.675725 -1103.2761
+120318.2598678707 3.6754887 -1103.1774
+120319.259867921 3.6753707 -1103.3551
+120320.2598679713 3.675528 -1103.2168
+120321.2598680216 3.6754494 -1103.2761
+120322.2598680719 3.675528 -1103.2168
+120323.2598681222 3.6754494 -1103.2366
+120324.2598681725 3.6753707 -1103.2959
+120325.2598682228 3.6754887 -1103.2959
+120326.259868273 3.6754494 -1103.1774
+120327.2598683233 3.6753707 -1103.2562
+120328.2598683736 3.6754494 -1103.3156
+120329.2598684239 3.6753707 -1103.2959
+120330.2598684742 3.67541 -1103.2168
+120331.2598685245 3.67541 -1103.197
+120332.2598685748 3.6752918 -1103.2562
+120333.2598686251 3.6752918 -1103.1774
+120334.2598686754 3.6753707 -1103.1774
+120335.2598687257 3.6752524 -1103.1774
+120336.259868776 3.6752524 -1103.2168
+120337.2598688263 3.6752918 -1103.2168
+120338.2598688765 3.6754494 -1103.2366
+120339.2598689268 3.6753707 -1103.3156
+120340.2598689771 3.67541 -1103.2366
+120341.2598690274 3.6753311 -1103.2959
+120342.2598690777 3.6752524 -1103.2168
+120343.259869128 3.6752524 -1103.1378
+120344.2598691783 3.6752524 -1103.2562
+120345.2598692286 3.6751738 -1103.2959
+120346.2598692789 3.6752918 -1103.2959
+120347.2598693292 3.6751738 -1103.2366
+120348.2598693795 3.6752131 -1103.197
+120349.2598694297 3.6751344 -1103.197
+120350.25986948 3.6751738 -1103.2761
+120351.2598695303 3.6750951 -1103.2168
+120352.2598695806 3.6750951 -1103.2168
+120353.2598696309 3.6751738 -1103.3156
+120354.2598696812 3.6750951 -1103.2562
+120355.2598697315 3.6750951 -1103.2959
+120356.2598697818 3.6751344 -1103.2761
+120357.2598698321 3.6750951 -1103.1774
+120358.2598698824 3.6751738 -1103.1576
+120359.2598699327 3.6750162 -1103.2562
+120360.259869983 3.6751344 -1103.1378
+120361.2598700332 3.6750162 -1103.3353
+120362.2598700835 3.6750162 -1103.2366
+120363.2598701338 3.6750557 -1103.2761
+120364.2598701841 3.6749768 -1103.2959
+120365.2598702344 3.6749768 -1103.2366
+120366.2598702847 3.6750162 -1103.2366
+120367.259870335 3.6749375 -1103.2959
+120368.2598703853 3.6748981 -1103.197
+120369.2598704356 3.6749768 -1103.2761
+120370.2598704859 3.6748981 -1103.2959
+120371.2598705362 3.6748981 -1103.2366
+120372.2598705865 3.6749375 -1103.2562
+120373.2598706367 3.6749375 -1103.1774
+120374.259870687 3.6748981 -1103.2959
+120375.2598707373 3.6748195 -1103.2761
+120376.2598707876 3.6748981 -1103.3156
+120377.2598708379 3.6748195 -1103.1576
+120378.2598708882 3.6749375 -1103.2168
+120379.2598709385 3.6747801 -1103.2366
+120380.2598709888 3.6747801 -1103.2366
+120381.2598710391 3.6748195 -1103.2562
+120382.2598710894 3.6746619 -1103.2562
+120383.2598711397 3.6747408 -1103.2761
+120384.2598711899 3.6747801 -1103.2761
+120385.2598712402 3.6747408 -1103.197
+120386.2598712905 3.6746619 -1103.2168
+120387.2598713408 3.6747801 -1103.2366
+120388.2598713911 3.6747408 -1103.2366
+120389.2598714414 3.6747012 -1103.2959
+120390.2598714917 3.6747012 -1103.2366
+120391.259871542 3.6746225 -1103.1378
+120392.2598715923 3.6747801 -1103.2168
+120393.2598716426 3.6747408 -1103.0984
+120394.2598716929 3.6747408 -1103.2562
+120395.2598717432 3.6746619 -1103.2168
+120396.2598717934 3.6745832 -1103.2168
+120397.2598718437 3.6745832 -1103.2761
+120398.259871894 3.6747012 -1103.2562
+120399.2598719443 3.6746619 -1103.2168
+120400.2598719946 3.6745439 -1103.2959
+120401.2598720449 3.6746225 -1103.2366
+120402.2598720952 3.6746225 -1103.3156
+120403.2598721455 3.6745439 -1103.2366
+120404.2598721958 3.6745439 -1103.2562
+120405.2598722461 3.6745439 -1103.2562
+120406.2598722964 3.6745439 -1103.2959
+120407.2598723467 3.6745439 -1103.2959
+120408.2598723969 3.6745045 -1103.197
+120409.2598724472 3.6744256 -1103.1378
+120410.2598724975 3.6744652 -1103.2562
+120411.2598725478 3.6744256 -1103.2562
+120412.2598725981 3.6744652 -1103.2959
+120413.2598726484 3.6745045 -1103.197
+120414.2598726987 3.6743863 -1103.2366
+120415.259872749 3.6743863 -1103.2366
+120416.2598727993 3.6743469 -1103.3353
+120417.2598728496 3.6743076 -1103.2366
+120418.2598728999 3.6745045 -1103.2168
+120419.2598729501 3.6744256 -1103.3156
+120420.2598730004 3.6743076 -1103.2959
+120421.2598730507 3.6742682 -1103.1774
+120422.259873101 3.6743469 -1103.2366
+120423.2598731513 3.6743863 -1103.197
+120424.2598732016 3.6742682 -1103.197
+120425.2598732519 3.6743469 -1103.2562
+120426.2598733022 3.6743076 -1103.1182
+120427.2598733525 3.6743076 -1103.1774
+120428.2598734028 3.6743076 -1103.197
+120429.2598734531 3.6742682 -1103.197
+120430.2598735034 3.6743076 -1103.197
+120431.2598735536 3.6741502 -1103.1182
+120432.2598736039 3.6743076 -1103.1774
+120433.2598736542 3.6741896 -1103.2959
+120434.2598737045 3.6743076 -1103.2168
+120435.2598737548 3.6741896 -1103.197
+120436.2598738051 3.6741896 -1103.197
+120437.2598738554 3.6742289 -1103.1774
+120438.2598739057 3.6741502 -1103.1774
+120439.259873956 3.6741107 -1103.197
+120440.2598740063 3.6741896 -1103.2366
+120441.2598740566 3.6741107 -1103.2168
+120442.2598741069 3.6741107 -1103.2959
+120443.2598741571 3.6741107 -1103.2562
+120444.2598742074 3.6741107 -1103.197
+120445.2598742577 3.6739533 -1103.1774
+120446.259874308 3.6739926 -1103.197
+120447.2598743583 3.674032 -1103.1774
+120448.2598744086 3.6739533 -1103.2168
+120449.2598744589 3.6739926 -1103.2168
+120450.2598745092 3.6739533 -1103.2168
+120451.2598745595 3.6739926 -1103.2168
+120452.2598746098 3.6738353 -1103.2562
+120453.2598746601 3.673914 -1103.197
+120454.2598747103 3.6738353 -1103.2562
+120455.2598747606 3.673914 -1103.2168
+120456.2598748109 3.6739533 -1103.2168
+120457.2598748612 3.673914 -1103.2168
+120458.2598749115 3.6739926 -1103.2366
+120459.2598749618 3.6738746 -1103.1576
+120460.2598750121 3.673914 -1103.2761
+120461.2598750624 3.6738353 -1103.2761
+120462.2598751127 3.6739533 -1103.2562
+120463.259875163 3.673914 -1103.2168
+120464.2598752133 3.673914 -1103.197
+120465.2598752636 3.6738353 -1103.2168
+120466.2598753138 3.6738353 -1103.2366
+120467.2598753641 3.6738353 -1103.3353
+120468.2598754144 3.6738746 -1103.3156
+120469.2598754647 3.6737564 -1103.2959
+120470.259875515 3.6737957 -1103.2959
+120471.2598755653 3.6737564 -1103.2366
+120472.2598756156 3.673717 -1103.197
+120473.2598756659 3.6737957 -1103.2168
+120474.2598757162 3.673717 -1103.1774
+120475.2598757665 3.6736777 -1103.1576
+120476.2598758168 3.6736383 -1103.1774
+120477.2598758671 3.6737957 -1103.3353
+120478.2598759173 3.673717 -1103.3156
+120479.2598759676 3.6737564 -1103.1774
+120480.2598760179 3.673717 -1103.1576
+120481.2598760682 3.6735597 -1103.1774
+120482.2598761185 3.673599 -1103.2168
+120483.2598761688 3.673599 -1103.2168
+120484.2598762191 3.6735203 -1103.2562
+120485.2598762694 3.6736383 -1103.2168
+120486.2598763197 3.6736777 -1103.2959
+120487.25987637 3.6734807 -1103.197
+120488.2598764203 3.6735597 -1103.2168
+120489.2598764705 3.673599 -1103.2959
+120490.2598765208 3.6734807 -1103.2366
+120491.2598765711 3.6735203 -1103.1774
+120492.2598766214 3.6735597 -1103.197
+120493.2598766717 3.6735203 -1103.2959
+120494.259876722 3.6734807 -1103.2366
+120495.2598767723 3.6734807 -1103.2562
+120496.2598768226 3.6734414 -1103.197
+120497.2598768729 3.6735203 -1103.197
+120498.2598769232 3.6734807 -1103.2761
+120499.2598769735 3.6733627 -1103.2562
+120500.2598770238 3.6734021 -1103.2761
+120501.259877074 3.6734414 -1103.1774
+120502.2598771243 3.6734021 -1103.197
+120503.2598771746 3.6733627 -1103.2562
+120504.2598772249 3.6733627 -1103.2562
+120505.2598772752 3.6733627 -1103.2562
+120506.2598773255 3.6734021 -1103.2761
+120507.2598773758 3.6732841 -1103.2562
+120508.2598774261 3.6733627 -1103.1774
+120509.2598774764 3.6733627 -1103.2562
+120510.2598775267 3.6733627 -1103.2562
+120511.259877577 3.6731658 -1103.2366
+120512.2598776273 3.6733234 -1103.197
+120513.2598776775 3.6732841 -1103.2761
+120514.2598777278 3.6733234 -1103.2562
+120515.2598777781 3.6732054 -1103.2366
+120516.2598778284 3.6732841 -1103.2168
+120517.2598778787 3.6731658 -1103.197
+120518.259877929 3.6732054 -1103.197
+120519.2598779793 3.6731658 -1103.2761
+120520.2598780296 3.6732841 -1103.2562
+120521.2598780799 3.6732447 -1103.2168
+120522.2598781302 3.6731265 -1103.2562
+120523.2598781805 3.6732054 -1103.2761
+120524.2598782307 3.6732054 -1103.197
+120525.259878281 3.6731265 -1103.2562
+120526.2598783313 3.6731265 -1103.2366
+120527.2598783816 3.6732054 -1103.1774
+120528.2598784319 3.6731658 -1103.1576
+120529.2598784822 3.6732841 -1103.2366
+120530.2598785325 3.6731265 -1103.3353
+120531.2598785828 3.6731265 -1103.2562
+120532.2598786331 3.6730478 -1103.2562
+120533.2598786834 3.6730478 -1103.3353
+120534.2598787337 3.6730478 -1103.1774
+120535.259878784 3.6730871 -1103.2168
+120536.2598788342 3.6729298 -1103.2168
+120537.2598788845 3.6729691 -1103.1378
+120538.2598789348 3.6730478 -1103.2366
+120539.2598789851 3.6729691 -1103.2562
+120540.2598790354 3.6729691 -1103.2562
+120541.2598790857 3.6729691 -1103.2562
+120542.259879136 3.6729691 -1103.2168
+120543.2598791863 3.6731265 -1103.2562
+120544.2598792366 3.6728115 -1103.2366
+120545.2598792869 3.6728902 -1103.2562
+120546.2598793372 3.6730084 -1103.3353
+120547.2598793875 3.6729298 -1103.2366
+120548.2598794377 3.6728508 -1103.2761
+120549.259879488 3.6728508 -1103.197
+120550.2598795383 3.6728508 -1103.2366
+120551.2598795886 3.6728902 -1103.2168
+120552.2598796389 3.6728902 -1103.2366
+120553.2598796892 3.6729691 -1103.197
+120554.2598797395 3.6728508 -1103.2562
+120555.2598797898 3.6728508 -1103.2761
+120556.2598798401 3.6728115 -1103.2562
+120557.2598798904 3.6727722 -1103.2366
+120558.2598799407 3.6727722 -1103.2761
+120559.2598799909 3.6726935 -1103.2761
+120560.2598800412 3.6727328 -1103.1576
+120561.2598800915 3.6726935 -1103.197
+120562.2598801418 3.6728115 -1103.3353
+120563.2598801921 3.6727328 -1103.2168
+120564.2598802424 3.6726935 -1103.2562
+120565.2598802927 3.6726935 -1103.2562
+120566.259880343 3.6727328 -1103.2562
+120567.2598803933 3.6726935 -1103.2761
+120568.2598804436 3.6726935 -1103.2761
+120569.2598804939 3.6727328 -1103.2366
+120570.2598805442 3.6726935 -1103.197
+120571.2598805944 3.6725359 -1103.2168
+120572.2598806447 3.6725359 -1103.2959
+120573.259880695 3.6727328 -1103.2761
+120574.2598807453 3.6725359 -1103.3353
+120575.2598807956 3.6725752 -1103.2761
+120576.2598808459 3.6725359 -1103.2562
+120577.2598808962 3.6725359 -1103.2168
+120578.2598809465 3.6724966 -1103.2761
+120579.2598809968 3.6725752 -1103.2761
+120580.2598810471 3.6724572 -1103.2761
+120581.2598810974 3.6724966 -1103.2562
+120582.2598811476 3.6724572 -1103.2761
+120583.2598811979 3.6725359 -1103.2366
+120584.2598812482 3.6724966 -1103.2761
+120585.2598812985 3.6724572 -1103.2168
+120586.2598813488 3.6724572 -1103.1774
+120587.2598813991 3.6725752 -1103.2562
+120588.2598814494 3.6724179 -1103.2761
+120589.2598814997 3.6723392 -1103.2562
+120590.25988155 3.6724179 -1103.2168
+120591.2598816003 3.6724179 -1103.1774
+120592.2598816506 3.6723392 -1103.2366
+120593.2598817009 3.6724179 -1103.197
+120594.2598817511 3.6722999 -1103.2168
+120595.2598818014 3.6723392 -1103.3156
+120596.2598818517 3.6722209 -1103.197
+120597.259881902 3.6722603 -1103.2366
+120598.2598819523 3.6723392 -1103.2959
+120599.2598820026 3.6722603 -1103.1576
+120600.2598820529 3.6723785 -1103.197
+120601.2598821032 3.6723392 -1103.2761
+120602.2598821535 3.6722603 -1103.2366
+120603.2598822038 3.6722603 -1103.1774
+120604.2598822541 3.6722603 -1103.2562
+120605.2598823044 3.6721423 -1103.2959
+120606.2598823546 3.6723392 -1103.1774
+120607.2598824049 3.6722209 -1103.2562
+120608.2598824552 3.6721423 -1103.2562
+120609.2598825055 3.6722209 -1103.2168
+120610.2598825558 3.6722603 -1103.197
+120611.2598826061 3.6721423 -1103.2366
+120612.2598826564 3.6721816 -1103.2168
+120613.2598827067 3.6721029 -1103.2168
+120614.259882757 3.6721029 -1103.2366
+120615.2598828073 3.6720243 -1103.2366
+120616.2598828576 3.6721029 -1103.2366
+120617.2598829078 3.6720636 -1103.2562
+120618.2598829581 3.6721029 -1103.1378
+120619.2598830084 3.6720636 -1103.2761
+120620.2598830587 3.6721029 -1103.2761
+120621.259883109 3.6720636 -1103.2366
+120622.2598831593 3.6719849 -1103.2959
+120623.2598832096 3.6719849 -1103.2761
+120624.2598832599 3.6721029 -1103.3551
+120625.2598833102 3.6720636 -1103.2562
+120626.2598833605 3.6720636 -1103.2168
+120627.2598834108 3.6719453 -1103.2562
+120628.2598834611 3.6719849 -1103.2168
+120629.2598835113 3.671906 -1103.2761
+120630.2598835616 3.6720636 -1103.2761
+120631.2598836119 3.6719453 -1103.2959
+120632.2598836622 3.6718667 -1103.2366
+120633.2598837125 3.6719849 -1103.2168
+120634.2598837628 3.6719453 -1103.2168
+120635.2598838131 3.671906 -1103.197
+120636.2598838634 3.671788 -1103.2959
+120637.2598839137 3.6718667 -1103.3156
+120638.259883964 3.6718273 -1103.197
+120639.2598840143 3.6718667 -1103.2562
+120640.2598840646 3.6718667 -1103.3156
+120641.2598841148 3.671788 -1103.2366
+120642.2598841651 3.6718667 -1103.2168
+120643.2598842154 3.671788 -1103.3156
+120644.2598842657 3.6717486 -1103.2366
+120645.259884316 3.6717486 -1103.1378
+120646.2598843663 3.6718273 -1103.2761
+120647.2598844166 3.67167 -1103.2366
+120648.2598844669 3.671788 -1103.2366
+120649.2598845172 3.6717093 -1103.2761
+120650.2598845675 3.6717093 -1103.2761
+120651.2598846178 3.6717486 -1103.3353
+120652.259884668 3.67167 -1103.2366
+120653.2598847183 3.67167 -1103.2168
+120654.2598847686 3.6717486 -1103.2168
+120655.2598848189 3.6717093 -1103.197
+120656.2598848692 3.671591 -1103.3156
+120657.2598849195 3.6717093 -1103.2168
+120658.2598849698 3.671591 -1103.2562
+120659.2598850201 3.6716304 -1103.0984
+120660.2598850704 3.6716304 -1103.3551
+120661.2598851207 3.671473 -1103.2761
+120662.259885171 3.6715517 -1103.197
+120663.2598852213 3.6716304 -1103.2959
+120664.2598852715 3.6715517 -1103.2562
+120665.2598853218 3.671591 -1103.2168
+120666.2598853721 3.6715517 -1103.197
+120667.2598854224 3.671473 -1103.2168
+120668.2598854727 3.6715517 -1103.3353
+120669.259885523 3.671473 -1103.2562
+120670.2598855733 3.671473 -1103.2168
+120671.2598856236 3.6715517 -1103.3156
+120672.2598856739 3.6714337 -1103.2366
+120673.2598857242 3.671473 -1103.2959
+120674.2598857745 3.6715517 -1103.2168
+120675.2598858248 3.6713943 -1103.2761
+120676.259885875 3.6715124 -1103.2168
+120677.2598859253 3.6713154 -1103.3156
+120678.2598859756 3.6713943 -1103.2959
+120679.2598860259 3.6714337 -1103.2168
+120680.2598860762 3.671355 -1103.3156
+120681.2598861265 3.6713943 -1103.2761
+120682.2598861768 3.671355 -1103.2562
+120683.2598862271 3.6713154 -1103.197
+120684.2598862774 3.671355 -1103.2562
+120685.2598863277 3.6713154 -1103.197
+120686.259886378 3.671355 -1103.2959
+120687.2598864282 3.671355 -1103.2562
+120688.2598864785 3.6712761 -1103.2761
+120689.2598865288 3.6713154 -1103.2562
+120690.2598865791 3.6712761 -1103.2168
+120691.2598866294 3.6712761 -1103.2562
+120692.2598866797 3.6713154 -1103.2562
+120693.25988673 3.6711187 -1103.2761
+120694.2598867803 3.6712368 -1103.2562
+120695.2598868306 3.6712368 -1103.2366
+120696.2598868809 3.6711581 -1103.2562
+120697.2598869312 3.6712368 -1103.2168
+120698.2598869815 3.6713154 -1103.2366
+120699.2598870317 3.6711581 -1103.1774
+120700.259887082 3.6711974 -1103.2168
+120701.2598871323 3.6711581 -1103.197
+120702.2598871826 3.6712368 -1103.2761
+120703.2598872329 3.6710794 -1103.2366
+120704.2598872832 3.6710005 -1103.2562
+120705.2598873335 3.6711187 -1103.2562
+120706.2598873838 3.6711187 -1103.197
+120707.2598874341 3.6711581 -1103.2562
+120708.2598874844 3.6710005 -1103.2168
+120709.2598875347 3.6711187 -1103.2761
+120710.259887585 3.6710005 -1103.2366
+120711.2598876352 3.6710398 -1103.1774
+120712.2598876855 3.6710794 -1103.1774
+120713.2598877358 3.6710398 -1103.2761
+120714.2598877861 3.6709611 -1103.197
+120715.2598878364 3.6709218 -1103.2366
+120716.2598878867 3.6710005 -1103.197
+120717.259887937 3.6709611 -1103.197
+120718.2598879873 3.6708825 -1103.2959
+120719.2598880376 3.6709218 -1103.2366
+120720.2598880879 3.6708825 -1103.2761
+120721.2598881382 3.6709611 -1103.2761
+120722.2598881884 3.6708431 -1103.2168
+120723.2598882387 3.6709218 -1103.2168
+120724.259888289 3.6708825 -1103.3156
+120725.2598883393 3.6709611 -1103.2761
+120726.2598883896 3.6709218 -1103.2366
+120727.2598884399 3.6708431 -1103.2761
+120728.2598884902 3.6708038 -1103.2959
+120729.2598885405 3.6708431 -1103.2366
+120730.2598885908 3.6708038 -1103.3945
+120731.2598886411 3.6707644 -1103.2562
+120732.2598886914 3.6706855 -1103.2761
+120733.2598887417 3.6708825 -1103.2168
+120734.2598887919 3.6708038 -1103.2761
+120735.2598888422 3.6707644 -1103.2366
+120736.2598888925 3.6707249 -1103.197
+120737.2598889428 3.6707644 -1103.2959
+120738.2598889931 3.6707249 -1103.2168
+120739.2598890434 3.6706855 -1103.2366
+120740.2598890937 3.6706855 -1103.2366
+120741.259889144 3.6706069 -1103.2168
+120742.2598891943 3.6706855 -1103.2168
+120743.2598892446 3.6706069 -1103.2761
+120744.2598892949 3.6706462 -1103.2366
+120745.2598893452 3.6706462 -1103.2959
+120746.2598893954 3.6705675 -1103.1774
+120747.2598894457 3.6704888 -1103.3353
+120748.259889496 3.6706462 -1103.2562
+120749.2598895463 3.6706462 -1103.1576
+120750.2598895966 3.6706069 -1103.2761
+120751.2598896469 3.6705282 -1103.3156
+120752.2598896972 3.6706462 -1103.2959
+120753.2598897475 3.6705282 -1103.2562
+120754.2598897978 3.6705282 -1103.197
+120755.2598898481 3.6704888 -1103.197
+120756.2598898984 3.6704888 -1103.2761
+120757.2598899486 3.6706069 -1103.2761
+120758.2598899989 3.6704888 -1103.2959
+120759.2598900492 3.6705282 -1103.2761
+120760.2598900995 3.6704888 -1103.1774
+120761.2598901498 3.6704495 -1103.3156
+120762.2598902001 3.6703312 -1103.2366
+120763.2598902504 3.6704495 -1103.2959
+120764.2598903007 3.6704099 -1103.2562
+120765.259890351 3.6704888 -1103.197
+120766.2598904013 3.6704099 -1103.197
+120767.2598904516 3.6703312 -1103.2562
+120768.2598905019 3.6703706 -1103.2366
+120769.2598905521 3.6703706 -1103.2366
+120770.2598906024 3.6704099 -1103.2168
+120771.2598906527 3.6703312 -1103.2366
+120772.259890703 3.6703312 -1103.2761
+120773.2598907533 3.6702919 -1103.2168
+120774.2598908036 3.6702919 -1103.2761
+120775.2598908539 3.6703312 -1103.2168
+120776.2598909042 3.6702919 -1103.3156
+120777.2598909545 3.6702919 -1103.2366
+120778.2598910048 3.6702132 -1103.2168
+120779.2598910551 3.6702526 -1103.2562
+120780.2598911054 3.6702132 -1103.2366
+120781.2598911556 3.6703312 -1103.2366
+120782.2598912059 3.6701739 -1103.2761
+120783.2598912562 3.6702526 -1103.197
+120784.2598913065 3.6701739 -1103.2562
+120785.2598913568 3.6701739 -1103.3156
+120786.2598914071 3.6701345 -1103.2366
+120787.2598914574 3.6701345 -1103.2168
+120788.2598915077 3.6701739 -1103.2168
+120789.259891558 3.6702132 -1103.2959
+120790.2598916083 3.6701345 -1103.1378
+120791.2598916586 3.6701345 -1103.2562
+120792.2598917088 3.670095 -1103.1774
+120793.2598917591 3.6700163 -1103.2761
+120794.2598918094 3.670095 -1103.2761
+120795.2598918597 3.6701739 -1103.2761
+120796.25989191 3.670095 -1103.1576
+120797.2598919603 3.6700556 -1103.2761
+120798.2598920106 3.6699376 -1103.2761
+120799.2598920609 3.670095 -1103.197
+120800.2598921112 3.6700556 -1103.1774
+120801.2598921615 3.6700556 -1103.197
+120802.2598922118 3.6698983 -1103.2761
+120803.2598922621 3.6699769 -1103.2562
+120804.2598923123 3.6699376 -1103.2366
+120805.2598923626 3.6699376 -1103.1774
+120806.2598924129 3.6700163 -1103.2366
+120807.2598924632 3.6699769 -1103.2562
+120808.2598925135 3.6698983 -1103.197
+120809.2598925638 3.6699376 -1103.2168
+120810.2598926141 3.6698983 -1103.197
+120811.2598926644 3.6698983 -1103.2761
+120812.2598927147 3.6698196 -1103.3156
+120813.259892765 3.6698196 -1103.2959
+120814.2598928153 3.6698983 -1103.2168
+120815.2598928656 3.6698983 -1103.2168
+120816.2598929158 3.6698589 -1103.197
+120817.2598929661 3.6699376 -1103.2562
+120818.2598930164 3.6698196 -1103.1774
+120819.2598930667 3.6697407 -1103.2168
+120820.259893117 3.6698983 -1103.2562
+120821.2598931673 3.66978 -1103.2761
+120822.2598932176 3.66978 -1103.1774
+120823.2598932679 3.66978 -1103.1576
+120824.2598933182 3.6697407 -1103.2761
+120825.2598933685 3.669662 -1103.197
+120826.2598934188 3.669662 -1103.3353
+120827.259893469 3.669662 -1103.2366
+120828.2598935193 3.669662 -1103.2959
+120829.2598935696 3.6697013 -1103.2168
+120830.2598936199 3.6697013 -1103.197
+120831.2598936702 3.6696227 -1103.2366
+120832.2598937205 3.6697407 -1103.197
+120833.2598937708 3.669662 -1103.2366
+120834.2598938211 3.6695833 -1103.2366
+120835.2598938714 3.669662 -1103.2168
+120836.2598939217 3.6696227 -1103.1774
+120837.259893972 3.669662 -1103.2168
+120838.2598940223 3.6695833 -1103.2168
+120839.2598940725 3.669544 -1103.2761
+120840.2598941228 3.669544 -1103.2562
+120841.2598941731 3.6695046 -1103.1378
+120842.2598942234 3.6694651 -1103.2366
+120843.2598942737 3.6695046 -1103.2366
+120844.259894324 3.669544 -1103.197
+120845.2598943743 3.6696227 -1103.2959
+120846.2598944246 3.6694651 -1103.2366
+120847.2598944749 3.6695833 -1103.2562
+120848.2598945252 3.6695046 -1103.3353
+120849.2598945755 3.6695046 -1103.3353
+120850.2598946257 3.6695046 -1103.3353
+120851.259894676 3.6694651 -1103.2366
+120852.2598947263 3.6694257 -1103.2959
+120853.2598947766 3.6695046 -1103.2168
+120854.2598948269 3.6693077 -1103.3156
+120855.2598948772 3.6694257 -1103.2366
+120856.2598949275 3.669347 -1103.1576
+120857.2598949778 3.6694257 -1103.2761
+120858.2598950281 3.6693077 -1103.197
+120859.2598950784 3.6695046 -1103.2761
+120860.2598951287 3.669347 -1103.3156
+120861.259895179 3.6692684 -1103.2168
+120862.2598952292 3.669347 -1103.1774
+120863.2598952795 3.669347 -1103.2366
+120864.2598953298 3.6693864 -1103.2168
+120865.2598953801 3.6693077 -1103.2168
+120866.2598954304 3.6691895 -1103.1774
+120867.2598954807 3.6692684 -1103.2761
+120868.259895531 3.669229 -1103.2562
+120869.2598955813 3.6692684 -1103.197
+120870.2598956316 3.6691895 -1103.197
+120871.2598956819 3.6693077 -1103.3156
+120872.2598957322 3.6692684 -1103.2959
+120873.2598957825 3.6692684 -1103.197
+120874.2598958327 3.6691501 -1103.2168
+120875.259895883 3.6691895 -1103.197
+120876.2598959333 3.6691895 -1103.2959
+120877.2598959836 3.6691501 -1103.0984
+120878.2598960339 3.6691501 -1103.2959
+120879.2598960842 3.6691895 -1103.2562
+120880.2598961345 3.6691501 -1103.1774
+120881.2598961848 3.6691108 -1103.2366
+120882.2598962351 3.6691501 -1103.2366
+120883.2598962854 3.6690714 -1103.2959
+120884.2598963357 3.6691501 -1103.3353
+120885.2598963859 3.6690321 -1103.2366
+120886.2598964362 3.6690321 -1103.2366
+120887.2598964865 3.6691108 -1103.197
+120888.2598965368 3.6690321 -1103.2168
+120889.2598965871 3.6690321 -1103.2761
+120890.2598966374 3.6689928 -1103.2562
+120891.2598966877 3.6689534 -1103.2761
+120892.259896738 3.6689141 -1103.2562
+120893.2598967883 3.6690321 -1103.197
+120894.2598968386 3.6690321 -1103.2168
+120895.2598968889 3.6689141 -1103.2959
+120896.2598969392 3.6689141 -1103.3551
+120897.2598969894 3.6689534 -1103.2562
+120898.2598970397 3.6689928 -1103.2562
+120899.25989709 3.6689928 -1103.2761
+120900.2598971403 3.6689534 -1103.197
+120901.2598971906 3.6688352 -1103.2562
+120902.2598972409 3.6689928 -1103.2562
+120903.2598972912 3.6688352 -1103.197
+120904.2598973415 3.6689534 -1103.2366
+120905.2598973918 3.6689141 -1103.2761
+120906.2598974421 3.6688352 -1103.2562
+120907.2598974924 3.6688352 -1103.2168
+120908.2598975427 3.6688352 -1103.2959
+120909.2598975929 3.6687958 -1103.3156
+120910.2598976432 3.6687565 -1103.2959
+120911.2598976935 3.6687565 -1103.3353
+120912.2598977438 3.6687958 -1103.2562
+120913.2598977941 3.6688352 -1103.197
+120914.2598978444 3.6686385 -1103.3353
+120915.2598978947 3.6687958 -1103.3156
+120916.259897945 3.6687171 -1103.197
+120917.2598979953 3.6686778 -1103.2168
+120918.2598980456 3.6685596 -1103.2562
+120919.2598980959 3.6686778 -1103.2168
+120920.2598981461 3.6687565 -1103.2761
+120921.2598981964 3.6686778 -1103.197
+120922.2598982467 3.6685991 -1103.2562
+120923.259898297 3.6685596 -1103.2761
+120924.2598983473 3.6687171 -1103.197
+120925.2598983976 3.6685991 -1103.2168
+120926.2598984479 3.6685991 -1103.2562
+120927.2598984982 3.6685202 -1103.2366
+120928.2598985485 3.6685596 -1103.2366
+120929.2598985988 3.6685596 -1103.2761
+120930.2598986491 3.6685596 -1103.1378
+120931.2598986994 3.6685991 -1103.1774
+120932.2598987496 3.6685596 -1103.3156
+120933.2598987999 3.6684809 -1103.3156
+120934.2598988502 3.6685202 -1103.2366
+120935.2598989005 3.6685202 -1103.1774
+120936.2598989508 3.6684809 -1103.197
+120937.2598990011 3.6685202 -1103.197
+120938.2598990514 3.6684809 -1103.1774
+120939.2598991017 3.6685596 -1103.2168
+120940.259899152 3.6684809 -1103.2562
+120941.2598992023 3.6683629 -1103.1576
+120942.2598992526 3.6684415 -1103.197
+120943.2598993029 3.6684022 -1103.3156
+120944.2598993531 3.6683235 -1103.197
+120945.2598994034 3.6683629 -1103.2168
+120946.2598994537 3.6684809 -1103.2761
+120947.259899504 3.6684415 -1103.3551
+120948.2598995543 3.6683235 -1103.3551
+120949.2598996046 3.6683629 -1103.197
+120950.2598996549 3.6683629 -1103.197
+120951.2598997052 3.6684022 -1103.2562
+120952.2598997555 3.6683235 -1103.2761
+120953.2598998058 3.6682842 -1103.2168
+120954.2598998561 3.6682842 -1103.2761
+120955.2598999063 3.6683235 -1103.2366
+120956.2598999566 3.6683629 -1103.2366
+120957.2599000069 3.6683629 -1103.2168
+120958.2599000572 3.6682446 -1103.2168
+120959.2599001075 3.6682842 -1103.2959
+120960.2599001578 3.6682842 -1103.2168
+120961.2599002081 3.6683235 -1103.1774
+120962.2599002584 3.6681659 -1103.2168
+120963.2599003087 3.6682446 -1103.3353
+120964.259900359 3.6682053 -1103.2562
+120965.2599004093 3.6681659 -1103.2366
+120966.2599004596 3.6681266 -1103.2761
+120967.2599005098 3.6682053 -1103.2366
+120968.2599005601 3.6682446 -1103.197
+120969.2599006104 3.6681659 -1103.2959
+120970.2599006607 3.6680479 -1103.2562
+120971.259900711 3.6681266 -1103.2168
+120972.2599007613 3.6681659 -1103.2366
+120973.2599008116 3.6681659 -1103.3945
+120974.2599008619 3.6680872 -1103.1378
+120975.2599009122 3.6681266 -1103.3353
+120976.2599009625 3.6681266 -1103.2168
+120977.2599010128 3.6681266 -1103.2761
+120978.2599010631 3.6680086 -1103.2761
+120979.2599011133 3.6679692 -1103.2366
+120980.2599011636 3.6679692 -1103.197
+120981.2599012139 3.6680479 -1103.197
+120982.2599012642 3.6679296 -1103.2562
+120983.2599013145 3.6679692 -1103.2959
+120984.2599013648 3.6679296 -1103.2366
+120985.2599014151 3.6679296 -1103.2761
+120986.2599014654 3.6679296 -1103.2168
+120987.2599015157 3.6680086 -1103.3156
+120988.259901566 3.6679692 -1103.2562
+120989.2599016163 3.6679692 -1103.197
+120990.2599016665 3.6678116 -1103.2168
+120991.2599017168 3.6678903 -1103.2761
+120992.2599017671 3.6678116 -1103.197
+120993.2599018174 3.667851 -1103.2761
+120994.2599018677 3.667851 -1103.2366
+120995.259901918 3.6678116 -1103.2366
+120996.2599019683 3.6677723 -1103.2366
+120997.2599020186 3.6678116 -1103.1774
+120998.2599020689 3.6678116 -1103.1774
+120999.2599021192 3.6678116 -1103.1774
+121000.2599021695 3.6678116 -1103.2366
+121001.2599022198 3.6678116 -1103.2562
+121002.25990227 3.6677723 -1103.2168
+121003.2599023203 3.667851 -1103.2761
+121004.2599023706 3.6676936 -1103.2366
+121005.2599024209 3.6677723 -1103.2761
+121006.2599024712 3.6676543 -1103.2168
+121007.2599025215 3.6676936 -1103.3156
+121008.2599025718 3.6676543 -1103.2761
+121009.2599026221 3.6677723 -1103.2366
+121010.2599026724 3.6675754 -1103.3156
+121011.2599027227 3.6676936 -1103.3156
+121012.259902773 3.667733 -1103.2168
+121013.2599028233 3.6676936 -1103.2761
+121014.2599028735 3.6675754 -1103.2562
+121015.2599029238 3.6676936 -1103.3156
+121016.2599029741 3.6676936 -1103.2562
+121017.2599030244 3.6676147 -1103.197
+121018.2599030747 3.6675754 -1103.1774
+121019.259903125 3.6674573 -1103.2168
+121020.2599031753 3.6676147 -1103.2168
+121021.2599032256 3.6675754 -1103.2761
+121022.2599032759 3.6674573 -1103.3551
+121023.2599033262 3.6677723 -1103.2562
+121024.2599033765 3.667536 -1103.197
+121025.2599034267 3.6674573 -1103.3156
+121026.259903477 3.6676147 -1103.2366
+121027.2599035273 3.6674967 -1103.2562
+121028.2599035776 3.6674573 -1103.2168
+121029.2599036279 3.6674967 -1103.2366
+121030.2599036782 3.667536 -1103.197
+121031.2599037285 3.6674573 -1103.2959
+121032.2599037788 3.667536 -1103.2562
+121033.2599038291 3.6674573 -1103.3156
+121034.2599038794 3.667418 -1103.2562
+121035.2599039297 3.667418 -1103.2168
+121036.25990398 3.6674573 -1103.2959
+121037.2599040302 3.6673391 -1103.2562
+121038.2599040805 3.667418 -1103.2761
+121039.2599041308 3.6673391 -1103.1774
+121040.2599041811 3.6673787 -1103.2366
+121041.2599042314 3.6673787 -1103.2366
+121042.2599042817 3.6672997 -1103.1576
+121043.259904332 3.6673391 -1103.2959
+121044.2599043823 3.6672997 -1103.2168
+121045.2599044326 3.6672211 -1103.3551
+121046.2599044829 3.6673391 -1103.2959
+121047.2599045332 3.6672211 -1103.197
+121048.2599045835 3.6672604 -1103.2366
+121049.2599046337 3.6672997 -1103.1576
+121050.259904684 3.6672211 -1103.2562
+121051.2599047343 3.6672997 -1103.2761
+121052.2599047846 3.6672211 -1103.3156
+121053.2599048349 3.6671031 -1103.3156
+121054.2599048852 3.6672211 -1103.2562
+121055.2599049355 3.6671424 -1103.197
+121056.2599049858 3.6671424 -1103.2562
+121057.2599050361 3.6671817 -1103.2562
+121058.2599050864 3.6671424 -1103.2761
+121059.2599051367 3.6670637 -1103.3353
+121060.2599051869 3.6670637 -1103.2168
+121061.2599052372 3.6671031 -1103.1774
+121062.2599052875 3.6671817 -1103.1576
+121063.2599053378 3.6671817 -1102.6244
+121064.2599053881 3.6672211 -1101.9529
+121065.2599054384 3.6670637 -1102.0317
+121066.2599054887 3.6671031 -1101.9133
+121067.259905539 3.6669848 -1104.8167
+121068.2599055893 3.6670241 -1106.6335
+121069.2599056396 3.6671031 -1107.0089
+121070.2599056899 3.6670637 -1107.0681
+121071.2599057402 3.6671031 -1106.9496
+121072.2599057904 3.6670637 -1105.5868
+121073.2599058407 3.6670241 -1108.7074
+121074.259905891 3.6670637 -1108.6086
+121075.2599059413 3.6669455 -1108.6877
+121076.2599059916 3.6670241 -1104.7969
+121077.2599060419 3.6670241 -1106.1399
+121078.2599060922 3.6667488 -1106.1991
+121079.2599061425 3.6668668 -1106.1794
+121080.2599061928 3.6669455 -1103.7303
+121081.2599062431 3.6669455 -1103.6119
+121082.2599062936 3.6669455 -1104.1057
+121083.2599063439 3.6669455 -1104.0464
+121084.2599063942 3.6668668 -1104.066
+121085.2599064445 3.6669061 -1103.5328
+121086.2599064948 3.6668668 -1103.6908
+121087.259906545 3.6668668 -1103.75
+121088.2599065953 3.6669061 -1103.7699
+121089.2599066456 3.6667881 -1102.6244
+121090.2599066959 3.6668274 -1102.0912
+121091.2599067462 3.6667488 -1102.0515
+121092.2599067965 3.6667092 -1102.1108
+121093.2599068468 3.6667881 -1102.1504
+121094.2599068971 3.6667092 -1103.2761
+121095.2599069474 3.6667488 -1103.3353
+121096.2599069977 3.6667488 -1103.4539
+121097.259907048 3.6668274 -1103.4143
+121098.2599070983 3.6667092 -1103.3353
+121099.2599071485 3.6667488 -1103.2562
+121100.2599071988 3.6667881 -1103.2761
+121101.2599072491 3.6667092 -1103.2366
+121102.2599072994 3.6667488 -1103.0984
+121103.2599073497 3.6666305 -1103.0588
+121104.2599074 3.6666305 -1103.0193
+121105.2599074503 3.6667092 -1102.9799
+121106.2599075006 3.6667488 -1102.9996
+121107.2599075509 3.6666305 -1103.2959
+121108.2599076012 3.6665912 -1103.0984
+121109.2599076515 3.6666698 -1103.3749
+121110.2599077018 3.6665518 -1103.2366
+121111.259907752 3.6666698 -1103.1576
+121112.2599078023 3.6665912 -1103.2959
+121113.2599078526 3.6665518 -1103.3353
+121114.2599079029 3.6665518 -1103.3156
+121115.2599079532 3.6664732 -1103.1378
+121116.2599080035 3.6664338 -1103.2168
+121117.2599080538 3.6665518 -1103.1774
+121118.2599081041 3.6665125 -1103.2366
+121119.2599081544 3.6665125 -1103.1182
+121120.2599082047 3.6665518 -1103.3353
+121121.259908255 3.6664732 -1103.2562
+121122.2599083052 3.6665125 -1103.1774
+121123.2599083555 3.6664338 -1103.197
+121124.2599084058 3.6663549 -1103.2366
+121125.2599084561 3.6663942 -1103.2761
+121126.2599085064 3.6664732 -1103.2959
+121127.2599085567 3.6663942 -1103.2366
+121128.259908607 3.6663156 -1103.2366
+121129.2599086573 3.6663942 -1103.2366
+121130.2599087076 3.6663156 -1103.2562
+121131.2599087579 3.6663549 -1103.2761
+121132.2599088082 3.6663549 -1103.2562
+121133.2599088585 3.6663549 -1103.3551
+121134.2599089087 3.6663156 -1103.197
+121135.259908959 3.6662762 -1103.2562
+121136.2599090093 3.6662762 -1103.2562
+121137.2599090596 3.6663156 -1103.1774
+121138.2599091099 3.6661975 -1103.2366
+121139.2599091602 3.6663156 -1103.197
+121140.2599092105 3.6663549 -1103.2168
+121141.2599092608 3.6662762 -1103.1774
+121142.2599093111 3.6661975 -1103.197
+121143.2599093614 3.6662762 -1103.2761
+121144.2599094117 3.6661975 -1103.3156
+121145.259909462 3.6661582 -1103.2562
+121146.2599095122 3.6662369 -1103.197
+121147.2599095625 3.6661189 -1103.1378
+121148.2599096128 3.6661189 -1103.197
+121149.2599096631 3.6661582 -1103.2761
+121150.2599097134 3.6661582 -1103.2562
+121151.2599097637 3.6660793 -1103.2959
+121152.259909814 3.6660006 -1103.2761
+121153.2599098643 3.6661189 -1103.2366
+121154.2599099146 3.6660399 -1103.2168
+121155.2599099649 3.6660399 -1103.3551
+121156.2599100152 3.6660793 -1103.2959
+121157.2599100654 3.6660399 -1103.2959
+121158.2599101157 3.6659613 -1103.3353
+121159.259910166 3.6660399 -1103.2168
+121160.2599102163 3.6660399 -1103.1378
+121161.2599102666 3.6660793 -1103.2562
+121162.2599103169 3.6660006 -1103.2761
+121163.2599103672 3.6659613 -1103.197
+121164.2599104175 3.6660006 -1103.1774
+121165.2599104678 3.6659613 -1103.2366
+121166.2599105181 3.6660399 -1103.2168
+121167.2599105684 3.6660006 -1103.1774
+121168.2599106187 3.6659613 -1103.1378
+121169.2599106689 3.6659613 -1103.2761
+121170.2599107192 3.6659613 -1103.2959
+121171.2599107695 3.6659219 -1103.3156
+121172.2599108198 3.6659219 -1103.2168
+121173.2599108701 3.6658432 -1103.2366
+121174.2599109204 3.6659219 -1103.2761
+121175.2599109707 3.6658432 -1103.2562
+121176.259911021 3.6658826 -1103.2366
+121177.2599110713 3.6658039 -1103.197
+121178.2599111216 3.6658826 -1103.2562
+121179.2599111719 3.6658826 -1103.197
+121180.2599112222 3.6658039 -1103.3551
+121181.2599112724 3.6658432 -1103.2562
+121182.2599113227 3.6656857 -1103.2168
+121183.259911373 3.6657643 -1103.2761
+121184.2599114233 3.665725 -1103.197
+121185.2599114736 3.6658039 -1103.2366
+121186.2599115239 3.665725 -1103.2562
+121187.2599115742 3.6658039 -1103.2761
+121188.2599116245 3.6656857 -1103.2562
+121189.2599116748 3.665607 -1103.2562
+121190.2599117251 3.665725 -1103.2168
+121191.2599117754 3.665725 -1103.197
+121192.2599118256 3.6656463 -1103.1774
+121193.2599118759 3.665607 -1103.3551
+121194.2599119262 3.6656463 -1103.2168
+121195.2599119765 3.6656857 -1103.2959
+121196.2599120268 3.665607 -1103.2366
+121197.2599120771 3.665607 -1103.2168
+121198.2599121274 3.6656857 -1103.2761
+121199.2599121777 3.6655283 -1103.2562
+121200.259912228 3.6656463 -1103.2366
+121201.2599122783 3.6655676 -1103.2366
+121202.2599123286 3.6655676 -1103.3353
+121203.2599123789 3.665607 -1103.1774
+121204.2599124291 3.6655676 -1103.197
+121205.2599124794 3.6654887 -1103.2959
+121206.2599125297 3.6654494 -1103.1774
+121207.25991258 3.6655676 -1103.197
+121208.2599126303 3.6655283 -1103.2562
+121209.2599126806 3.6655676 -1103.2366
+121210.2599127309 3.66541 -1103.197
+121211.2599127812 3.6654887 -1103.2562
+121212.2599128315 3.66541 -1103.2366
+121213.2599128818 3.6654887 -1103.2168
+121214.2599129321 3.6654494 -1103.2562
+121215.2599129824 3.66541 -1103.197
+121216.2599130326 3.66541 -1103.2168
+121217.2599130829 3.6654494 -1103.1576
+121218.2599131332 3.6654494 -1103.1576
+121219.2599131835 3.6653314 -1103.197
+121220.2599132338 3.6655283 -1103.2562
+121221.2599132841 3.6653314 -1103.2366
+121222.2599133344 3.6653707 -1103.2562
+121223.2599133847 3.665292 -1103.3156
+121224.259913435 3.6653707 -1103.2562
+121225.2599134853 3.6653314 -1103.2366
+121226.2599135356 3.665292 -1103.2168
+121227.2599135858 3.6653314 -1103.2168
+121228.2599136361 3.6652527 -1103.197
+121229.2599136864 3.665292 -1103.2562
+121230.2599137367 3.6652527 -1103.2562
+121231.259913787 3.6653314 -1103.2168
+121232.2599138373 3.6652527 -1103.1576
+121233.2599138876 3.6651738 -1103.2761
+121234.2599139379 3.6652527 -1103.2562
+121235.2599139882 3.6653314 -1103.3749
+121236.2599140385 3.6652133 -1103.197
+121237.2599140888 3.6651738 -1103.2366
+121238.2599141391 3.6651738 -1103.2761
+121239.2599141893 3.6652527 -1103.2168
+121240.2599142396 3.6651344 -1103.2761
+121241.2599142899 3.6650951 -1103.197
+121242.2599143402 3.6650164 -1103.2168
+121243.2599143905 3.6650951 -1103.2562
+121244.2599144408 3.6650558 -1103.3353
+121245.2599144911 3.6651344 -1103.2959
+121246.2599145414 3.6651344 -1103.3156
+121247.2599145917 3.6649771 -1103.2366
+121248.259914642 3.6650558 -1103.197
+121249.2599146923 3.6650558 -1103.2761
+121250.2599147426 3.6650951 -1103.2366
+121251.2599147928 3.6650951 -1103.2562
+121252.2599148431 3.6650951 -1103.2562
+121253.2599148934 3.6650164 -1103.1774
+121254.2599149437 3.6649377 -1103.2366
+121255.259914994 3.6649771 -1103.2562
+121256.2599150443 3.6648984 -1103.2366
+121257.2599150946 3.6649771 -1103.2562
+121258.2599151449 3.6648984 -1103.197
+121259.2599151952 3.6649377 -1103.2562
+121260.2599152455 3.6649771 -1103.2168
+121261.2599152958 3.6650164 -1103.2168
+121262.259915346 3.6649377 -1103.197
+121263.2599153963 3.6648984 -1103.2168
+121264.2599154466 3.6647408 -1103.197
+121265.2599154969 3.6649377 -1103.2562
+121266.2599155472 3.6648588 -1103.2366
+121267.2599155975 3.6647801 -1103.2168
+121268.2599156478 3.6648195 -1103.2168
+121269.2599156981 3.6648984 -1103.2562
+121270.2599157484 3.6647408 -1103.2959
+121271.2599157987 3.6648195 -1103.3156
+121272.259915849 3.6647801 -1103.2168
+121273.2599158993 3.6647408 -1103.2168
+121274.2599159495 3.6648195 -1103.2562
+121275.2599159998 3.6648195 -1103.2959
+121276.2599160501 3.6646621 -1103.2761
+121277.2599161004 3.6647015 -1103.2168
+121278.2599161507 3.6646621 -1103.2366
+121279.259916201 3.6646621 -1103.197
+121280.2599162513 3.6647801 -1103.3156
+121281.2599163016 3.6646621 -1103.3353
+121282.2599163519 3.6646621 -1103.197
+121283.2599164022 3.6645834 -1103.2168
+121284.2599164525 3.6646228 -1103.197
+121285.2599165028 3.6646621 -1103.2959
+121286.259916553 3.6647408 -1103.2562
+121287.2599166033 3.6646228 -1103.2168
+121288.2599166536 3.6645834 -1103.3156
+121289.2599167039 3.6645045 -1103.2366
+121290.2599167542 3.6645834 -1103.2959
+121291.2599168045 3.6645439 -1103.2366
+121292.2599168548 3.6646621 -1103.3156
+121293.2599169051 3.6645439 -1103.2366
+121294.2599169554 3.6645045 -1103.2366
+121295.2599170057 3.6645439 -1103.2562
+121296.259917056 3.6645834 -1103.2959
+121297.2599171062 3.6644258 -1103.1576
+121298.2599171565 3.6644652 -1103.2168
+121299.2599172068 3.6645834 -1103.2562
+121300.2599172571 3.6644652 -1103.2562
+121301.2599173074 3.6644258 -1103.3156
+121302.2599173577 3.6645045 -1103.2562
+121303.259917408 3.6644258 -1103.2562
+121304.2599174583 3.6643472 -1103.2562
+121305.2599175086 3.6644258 -1103.197
+121306.2599175589 3.6643865 -1103.2562
+121307.2599176092 3.6644258 -1103.2168
+121308.2599176595 3.6641896 -1103.0785
+121309.2599177097 3.6643472 -1103.2168
+121310.25991776 3.6643865 -1103.2562
+121311.2599178103 3.6643865 -1103.2366
+121312.2599178606 3.6643472 -1103.1576
+121313.2599179109 3.6643078 -1103.2366
+121314.2599179612 3.6643865 -1103.1182
+121315.2599180115 3.6642289 -1103.2168
+121316.2599180618 3.6643078 -1103.2959
+121317.2599181121 3.6641502 -1103.197
+121318.2599181624 3.6643472 -1103.2366
+121319.2599182127 3.6643078 -1103.197
+121320.2599182629 3.6643078 -1103.2562
+121321.2599183132 3.6643078 -1103.197
+121322.2599183635 3.6642685 -1103.3156
+121323.2599184138 3.6641502 -1103.2168
+121324.2599184641 3.6642685 -1103.2562
+121325.2599185144 3.6641109 -1103.2168
+121326.2599185647 3.6641896 -1103.2959
+121327.259918615 3.6641502 -1103.3551
+121328.2599186653 3.6641109 -1103.2562
+121329.2599187156 3.6641109 -1103.2366
+121330.2599187659 3.6641502 -1103.2366
+121331.2599188162 3.6641502 -1103.197
+121332.2599188664 3.6641109 -1103.2562
+121333.2599189167 3.6639929 -1103.1774
+121334.259918967 3.6641502 -1103.2366
+121335.2599190173 3.6640322 -1103.2761
+121336.2599190676 3.6641109 -1103.197
+121337.2599191179 3.6641109 -1103.2366
+121338.2599191682 3.6639929 -1103.2562
+121339.2599192185 3.6640322 -1103.2761
+121340.2599192688 3.6640322 -1103.1576
+121341.2599193191 3.6640322 -1103.2366
+121342.2599193694 3.6639929 -1103.2562
+121343.2599194197 3.6640322 -1103.1576
+121344.2599194699 3.6640322 -1103.2959
+121345.2599195202 3.6639929 -1103.2761
+121346.2599195705 3.663914 -1103.2562
+121347.2599196208 3.6639929 -1103.2168
+121348.2599196711 3.6639535 -1103.1774
+121349.2599197214 3.663914 -1103.2562
+121350.2599197717 3.6639535 -1103.2761
+121351.259919822 3.6639535 -1103.2761
+121352.2599198723 3.663914 -1103.2959
+121353.2599199226 3.6637566 -1103.2761
+121354.2599199729 3.6638746 -1103.197
+121355.2599200231 3.6638353 -1103.2168
+121356.2599200734 3.6638746 -1103.1774
+121357.2599201237 3.663914 -1103.2366
+121358.259920174 3.6637566 -1103.2562
+121359.2599202243 3.6638353 -1103.2562
+121360.2599202746 3.6638746 -1103.2366
+121361.2599203249 3.6637566 -1103.1576
+121362.2599203752 3.6638353 -1103.2761
+121363.2599204255 3.6638353 -1103.3156
+121364.2599204758 3.6638746 -1103.2168
+121365.2599205261 3.6637173 -1103.2168
+121366.2599205764 3.6637173 -1103.2168
+121367.2599206266 3.6636779 -1103.2366
+121368.2599206769 3.6637173 -1103.2366
+121369.2599207272 3.6636779 -1103.197
+121370.2599207775 3.6637173 -1103.2959
+121371.2599208278 3.6636779 -1103.3353
+121372.2599208781 3.6636779 -1103.2168
+121373.2599209284 3.6637173 -1103.2366
+121374.2599209787 3.6637173 -1103.2366
+121375.259921029 3.6636384 -1103.2562
+121376.2599210793 3.6637566 -1103.2366
+121377.2599211296 3.6635597 -1103.197
+121378.2599211799 3.6637173 -1103.2761
+121379.2599212301 3.663599 -1103.2562
+121380.2599212804 3.6635203 -1103.1774
+121381.2599213307 3.663599 -1103.1774
+121382.259921381 3.6636384 -1103.2761
+121383.2599214313 3.6635203 -1103.2761
+121384.2599214816 3.6635597 -1103.3156
+121385.2599215319 3.6635203 -1103.2562
+121386.2599215822 3.6635203 -1103.2562
+121387.2599216325 3.6636384 -1103.2562
+121388.2599216828 3.663599 -1103.2562
+121389.2599217331 3.6634023 -1103.2366
+121390.2599217833 3.663481 -1103.3156
+121391.2599218336 3.6635597 -1103.197
+121392.2599218839 3.6634023 -1103.2366
+121393.2599219342 3.6634417 -1103.3353
+121394.2599219845 3.663481 -1103.2959
+121395.2599220348 3.6634023 -1103.2168
+121396.2599220851 3.6634023 -1103.2562
+121397.2599221354 3.6635203 -1103.1576
+121398.2599221857 3.6633234 -1103.197
+121399.259922236 3.663363 -1103.2761
+121400.2599222863 3.663481 -1103.3156
+121401.2599223366 3.6632841 -1103.2168
+121402.2599223868 3.6632841 -1103.2562
+121403.2599224371 3.6634023 -1103.2761
+121404.2599224874 3.6634023 -1103.2366
+121405.2599225377 3.6633234 -1103.2562
+121406.259922588 3.6632841 -1103.3156
+121407.2599226383 3.6634417 -1103.2562
+121408.2599226886 3.6634023 -1103.2366
+121409.2599227389 3.663363 -1103.1774
+121410.2599227892 3.6632447 -1103.1378
+121411.2599228395 3.6632447 -1103.3156
+121412.2599228898 3.663166 -1103.2562
+121413.2599229401 3.6632841 -1103.197
+121414.2599229903 3.6632841 -1103.1774
+121415.2599230406 3.6632447 -1103.1774
+121416.2599230909 3.6632841 -1103.1774
+121417.2599231412 3.6632054 -1103.2562
+121418.2599231915 3.663166 -1103.2168
+121419.2599232418 3.6631267 -1103.197
+121420.2599232921 3.663166 -1103.2562
+121421.2599233424 3.6632054 -1103.2761
+121422.2599233927 3.6632447 -1103.197
+121423.259923443 3.663166 -1103.2366
+121424.2599234933 3.6632054 -1103.2761
+121425.2599235435 3.6630874 -1103.1182
+121426.2599235938 3.6630874 -1103.2366
+121427.2599236441 3.6630874 -1103.1774
+121428.2599236944 3.6630874 -1103.2366
+121429.2599237447 3.6630874 -1103.2366
+121430.259923795 3.663166 -1103.3353
+121431.2599238453 3.663048 -1103.2366
+121432.2599238956 3.6630874 -1103.3353
+121433.2599239459 3.663048 -1103.2168
+121434.2599239962 3.663048 -1103.2366
+121435.2599240465 3.6629691 -1103.2168
+121436.2599240968 3.663048 -1103.2562
+121437.259924147 3.6630085 -1103.1576
+121438.2599241973 3.6630085 -1103.2366
+121439.2599242476 3.6629691 -1103.3353
+121440.2599242979 3.6629691 -1103.3156
+121441.2599243482 3.6629691 -1103.197
+121442.2599243985 3.6629691 -1103.1774
+121443.2599244488 3.6629691 -1103.2761
+121444.2599244991 3.6629298 -1103.2366
+121445.2599245494 3.6628904 -1103.2562
+121446.2599245997 3.6628511 -1103.2168
+121447.25992465 3.6629691 -1103.2562
+121448.2599247003 3.6627331 -1103.197
+121449.2599247505 3.6628904 -1103.197
+121450.2599248008 3.6628511 -1103.2562
+121451.2599248511 3.6628511 -1103.2562
+121452.2599249014 3.6627724 -1103.2562
+121453.2599249517 3.6628511 -1103.2562
+121454.259925002 3.6628511 -1103.2562
+121455.2599250523 3.6628904 -1103.197
+121456.2599251026 3.6627724 -1103.2562
+121457.2599251529 3.6627331 -1103.2959
+121458.2599252032 3.6627331 -1103.2562
+121459.2599252535 3.6628904 -1103.2959
+121460.2599253037 3.6627724 -1103.2366
+121461.259925354 3.6626542 -1103.2366
+121462.2599254043 3.6626542 -1103.2562
+121463.2599254546 3.6627331 -1103.3156
+121464.2599255049 3.6626935 -1103.2562
+121465.2599255552 3.6626542 -1103.2761
+121466.2599256055 3.6626542 -1103.1576
+121467.2599256558 3.6627724 -1103.197
+121468.2599257061 3.6626935 -1103.1774
+121469.2599257564 3.6626935 -1103.2562
+121470.2599258067 3.6626935 -1103.2761
+121471.259925857 3.6625755 -1103.2761
+121472.2599259072 3.6626542 -1103.2761
+121473.2599259575 3.6626148 -1103.2366
+121474.2599260078 3.6625361 -1103.2168
+121475.2599260581 3.6625361 -1103.2562
+121476.2599261084 3.6625361 -1103.197
+121477.2599261587 3.6625755 -1103.2761
+121478.259926209 3.6625755 -1103.197
+121479.2599262593 3.6625361 -1103.2761
+121480.2599263096 3.6625361 -1103.2562
+121481.2599263599 3.6625755 -1103.197
+121482.2599264102 3.6624968 -1103.2168
+121483.2599264605 3.6625361 -1103.2168
+121484.2599265107 3.6625361 -1103.2761
+121485.259926561 3.6624575 -1103.2562
+121486.2599266113 3.6624968 -1103.2562
+121487.2599266616 3.6624575 -1103.2562
+121488.2599267119 3.6624181 -1103.1576
+121489.2599267622 3.6624181 -1103.2366
+121490.2599268125 3.6624968 -1103.2959
+121491.2599268628 3.6622999 -1103.197
+121492.2599269131 3.6624181 -1103.2959
+121493.2599269634 3.6624575 -1103.2761
+121494.2599270137 3.6623392 -1103.197
+121495.2599270639 3.6623392 -1103.197
+121496.2599271142 3.6624181 -1103.2761
+121497.2599271645 3.6622605 -1103.197
+121498.2599272148 3.6623785 -1103.2959
+121499.2599272651 3.6623785 -1103.2761
+121500.2599273154 3.6622999 -1103.3156
+121501.2599273657 3.6623392 -1103.1774
+121502.259927416 3.6624181 -1103.3156
+121503.2599274663 3.6622605 -1103.2168
+121504.2599275166 3.6622999 -1103.2761
+121505.2599275669 3.6623392 -1103.2366
+121506.2599276172 3.6622212 -1103.3156
+121507.2599276674 3.6622212 -1103.2562
+121508.2599277177 3.6622212 -1103.3156
+121509.259927768 3.6622212 -1103.1774
+121510.2599278183 3.6622212 -1103.2366
+121511.2599278686 3.6621425 -1103.2366
+121512.2599279189 3.6621819 -1103.2168
+121513.2599279692 3.6622212 -1103.2366
+121514.2599280195 3.6621819 -1103.2562
+121515.2599280698 3.6621425 -1103.2366
+121516.2599281201 3.6621029 -1103.2562
+121517.2599281704 3.6622212 -1103.197
+121518.2599282207 3.6621029 -1103.2168
+121519.2599282709 3.6620243 -1103.197
+121520.2599283212 3.6621425 -1103.2562
+121521.2599283715 3.6621425 -1103.197
+121522.2599284218 3.6620243 -1103.2168
+121523.2599284721 3.6621819 -1103.1182
+121524.2599285224 3.6621029 -1103.2168
+121525.2599285727 3.6620243 -1103.2761
+121526.259928623 3.6621029 -1103.2761
+121527.2599286733 3.6621029 -1103.2168
+121528.2599287236 3.6620636 -1103.2761
+121529.2599287739 3.6619456 -1103.1576
+121530.2599288241 3.6619062 -1103.197
+121531.2599288744 3.6619456 -1103.2366
+121532.2599289247 3.6621029 -1103.1378
+121533.259928975 3.6619456 -1103.2761
+121534.2599290253 3.6619062 -1103.197
+121535.2599290756 3.6619849 -1103.2562
+121536.2599291259 3.6619062 -1103.2366
+121537.2599291762 3.6619849 -1103.2168
+121538.2599292265 3.6620243 -1103.2366
+121539.2599292768 3.6618276 -1103.2366
+121540.2599293271 3.6619062 -1103.2168
+121541.2599293774 3.6619062 -1103.2168
+121542.2599294276 3.6618669 -1103.2761
+121543.2599294779 3.6618276 -1103.2366
+121544.2599295282 3.6618276 -1103.2168
+121545.2599295785 3.6619062 -1103.197
+121546.2599296288 3.6618669 -1103.3156
+121547.2599296791 3.6618669 -1103.3353
+121548.2599297294 3.6619062 -1103.2562
+121549.2599297797 3.661788 -1103.2562
+121550.25992983 3.6618276 -1103.3156
+121551.2599298803 3.6618669 -1103.2562
+121552.2599299306 3.6617486 -1103.1774
+121553.2599299809 3.6618276 -1103.2761
+121554.2599300311 3.6617093 -1103.2959
+121555.2599300814 3.66167 -1103.3156
+121556.2599301317 3.6618669 -1103.2366
+121557.259930182 3.6617093 -1103.197
+121558.2599302323 3.6617486 -1103.2562
+121559.2599302826 3.6617093 -1103.1576
+121560.2599303329 3.6616306 -1103.1774
+121561.2599303832 3.66167 -1103.2959
+121562.2599304335 3.6616306 -1103.3156
+121563.2599304838 3.6616306 -1103.3156
+121564.2599305341 3.6616306 -1103.2562
+121565.2599305843 3.6616306 -1103.2562
+121566.2599306346 3.66167 -1103.2168
+121567.2599306849 3.6616306 -1103.2366
+121568.2599307352 3.6616306 -1103.2168
+121569.2599307855 3.6616306 -1103.2959
+121570.2599308358 3.661473 -1103.1774
+121571.2599308861 3.661552 -1103.2761
+121572.2599309364 3.6615126 -1103.1774
+121573.2599309867 3.661552 -1103.2959
+121574.259931037 3.6616306 -1103.2959
+121575.2599310873 3.6615913 -1103.2168
+121576.2599311376 3.661552 -1103.197
+121577.2599311878 3.6615126 -1103.2168
+121578.2599312381 3.661473 -1103.2562
+121579.2599312884 3.6613944 -1103.197
+121580.2599313387 3.6613944 -1103.2761
+121581.259931389 3.6615913 -1103.1774
+121582.2599314393 3.6614337 -1103.2959
+121583.2599314896 3.661473 -1103.2959
+121584.2599315399 3.6614337 -1103.2761
+121585.2599315902 3.661473 -1103.197
+121586.2599316405 3.6615126 -1103.2761
+121587.2599316908 3.661473 -1103.2761
+121588.2599317411 3.661355 -1103.3945
+121589.2599317913 3.6612763 -1103.2168
+121590.2599318416 3.6613157 -1103.2366
+121591.2599318919 3.6613944 -1103.2562
+121592.2599319422 3.6613157 -1103.1774
+121593.2599319925 3.6613157 -1103.2959
+121594.2599320428 3.6613157 -1103.197
+121595.2599320931 3.6613944 -1103.2168
+121596.2599321434 3.6613944 -1103.2168
+121597.2599321937 3.6613157 -1103.1774
+121598.259932244 3.6611977 -1103.2366
+121599.2599322943 3.6612763 -1103.2959
+121600.2599323445 3.6612763 -1103.2168
+121601.2599323948 3.6612763 -1103.197
+121602.2599324451 3.661237 -1103.2366
+121603.2599324954 3.6610794 -1103.1774
+121604.2599325457 3.6611977 -1103.2562
+121605.259932596 3.6611977 -1103.2562
+121606.2599326463 3.6611581 -1103.2562
+121607.2599326966 3.661237 -1103.2366
+121608.2599327469 3.6611977 -1103.1182
+121609.2599327972 3.6611977 -1103.2761
+121610.2599328475 3.6610794 -1103.2959
+121611.2599328978 3.6610794 -1103.2959
+121612.259932948 3.6610401 -1103.2959
+121613.2599329983 3.6611581 -1103.3353
+121614.2599330486 3.6610007 -1103.2562
+121615.2599330989 3.6611187 -1103.2562
+121616.2599331492 3.6610794 -1103.197
+121617.2599331995 3.6610401 -1103.3156
+121618.2599332498 3.6611581 -1103.2959
+121619.2599333001 3.6611187 -1103.3156
+121620.2599333504 3.6610401 -1103.2168
+121621.2599334007 3.6610007 -1103.3156
+121622.259933451 3.6609614 -1103.2761
+121623.2599335012 3.6609614 -1103.3156
+121624.2599335515 3.6609221 -1103.2562
+121625.2599336018 3.6609614 -1103.2168
+121626.2599336521 3.6610007 -1103.2562
+121627.2599337024 3.6610794 -1103.2366
+121628.2599337527 3.6610007 -1103.2168
+121629.259933803 3.6609221 -1103.1576
+121630.2599338533 3.6610401 -1103.2168
+121631.2599339036 3.6609221 -1103.3156
+121632.2599339539 3.6609614 -1103.2366
+121633.2599340042 3.6608431 -1103.1576
+121634.2599340545 3.6609614 -1103.2366
+121635.2599341047 3.6610007 -1103.2366
+121636.259934155 3.6609221 -1103.3353
+121637.2599342053 3.6609221 -1103.2562
+121638.2599342556 3.6608827 -1103.1378
+121639.2599343059 3.6608038 -1103.3156
+121640.2599343562 3.6608038 -1103.2761
+121641.2599344065 3.6608431 -1103.2761
+121642.2599344568 3.6609221 -1103.197
+121643.2599345071 3.6608827 -1103.2366
+121644.2599345574 3.6607645 -1103.197
+121645.2599346077 3.6608038 -1103.2366
+121646.259934658 3.6607251 -1103.1774
+121647.2599347082 3.6608038 -1103.2761
+121648.2599347585 3.6606858 -1103.2761
+121649.2599348088 3.6607251 -1103.197
+121650.2599348591 3.6606858 -1103.2761
+121651.2599349094 3.6607251 -1103.2562
+121652.2599349597 3.6605678 -1103.2562
+121653.25993501 3.6606071 -1103.1576
+121654.2599350603 3.6606464 -1103.1774
+121655.2599351106 3.6606071 -1103.3156
+121656.2599351609 3.6606071 -1103.2168
+121657.2599352112 3.6606464 -1103.1774
+121658.2599352614 3.6606858 -1103.2168
+121659.2599353117 3.6606858 -1103.2366
+121660.259935362 3.6606071 -1103.1774
+121661.2599354123 3.6605282 -1103.2562
+121662.2599354626 3.6607251 -1103.2366
+121663.2599355129 3.6605678 -1103.2761
+121664.2599355632 3.6606464 -1103.3156
+121665.2599356135 3.6605282 -1103.197
+121666.2599356638 3.6604888 -1103.2761
+121667.2599357141 3.6605678 -1103.2168
+121668.2599357644 3.6604888 -1103.2761
+121669.2599358147 3.6605678 -1103.2168
+121670.2599358649 3.6605282 -1103.2366
+121671.2599359152 3.6605282 -1103.2959
+121672.2599359655 3.6604888 -1103.2366
+121673.2599360158 3.6604102 -1103.2761
+121674.2599360661 3.6603708 -1103.2366
+121675.2599361164 3.6603708 -1103.2761
+121676.2599361667 3.6604495 -1103.2761
+121677.259936217 3.6603708 -1103.2168
+121678.2599362673 3.6604102 -1103.197
+121679.2599363176 3.6604102 -1103.2761
+121680.2599363679 3.6604102 -1103.2562
+121681.2599364182 3.6605282 -1103.2761
+121682.2599364684 3.6604102 -1103.1774
+121683.2599365187 3.6604102 -1103.1774
+121684.259936569 3.6604495 -1103.2366
+121685.2599366193 3.6603315 -1103.2761
+121686.2599366696 3.6603315 -1103.2761
+121687.2599367199 3.6603708 -1103.3353
+121688.2599367702 3.6602921 -1103.2562
+121689.2599368205 3.6603315 -1103.1774
+121690.2599368708 3.6602921 -1103.2562
+121691.2599369211 3.6602526 -1103.2959
+121692.2599369714 3.6602132 -1103.2761
+121693.2599370216 3.6602526 -1103.2168
+121694.2599370719 3.6602921 -1103.2366
+121695.2599371222 3.6602132 -1103.2562
+121696.2599371725 3.6601739 -1103.2366
+121697.2599372228 3.6602921 -1103.1774
+121698.2599372731 3.6602132 -1103.2761
+121699.2599373234 3.6601739 -1103.1774
+121700.2599373737 3.6601739 -1103.197
+121701.259937424 3.6601739 -1103.197
+121702.2599374743 3.6600559 -1103.2366
+121703.2599375246 3.6602132 -1103.2168
+121704.2599375749 3.6600559 -1103.2168
+121705.2599376251 3.6601346 -1103.2168
+121706.2599376754 3.6600559 -1103.2761
+121707.2599377257 3.6601346 -1103.2959
+121708.259937776 3.6601739 -1103.2366
+121709.2599378263 3.6600952 -1103.2761
+121710.2599378766 3.6600952 -1103.1378
+121711.2599379269 3.6600559 -1103.2168
+121712.2599379772 3.6600165 -1103.2366
+121713.2599380275 3.6599772 -1103.2761
+121714.2599380778 3.6600952 -1103.197
+121715.2599381281 3.6600165 -1103.2168
+121716.2599381784 3.6600165 -1103.197
+121717.2599382286 3.6599772 -1103.1774
+121718.2599382789 3.6599376 -1103.2366
+121719.2599383292 3.6600559 -1103.2761
+121720.2599383795 3.6599376 -1103.1774
+121721.2599384298 3.6599772 -1103.197
+121722.2599384801 3.6598589 -1103.2366
+121723.2599385304 3.6598196 -1103.2761
+121724.2599385807 3.6599772 -1103.2366
+121725.259938631 3.6599772 -1103.2168
+121726.2599386813 3.6598983 -1103.2761
+121727.2599387316 3.6598589 -1103.3156
+121728.2599387818 3.6599376 -1103.1378
+121729.2599388321 3.6598983 -1103.2562
+121730.2599388824 3.6598196 -1103.2761
+121731.2599389327 3.6598196 -1103.2959
+121732.259938983 3.6598589 -1103.1774
+121733.2599390333 3.6598983 -1103.197
+121734.2599390836 3.6598589 -1103.2761
+121735.2599391339 3.6598589 -1103.2562
+121736.2599391842 3.6597803 -1103.2562
+121737.2599392345 3.6598196 -1103.197
+121738.2599392848 3.6597803 -1103.2562
+121739.2599393351 3.6598196 -1103.2959
+121740.2599393853 3.6597409 -1103.2366
+121741.2599394356 3.6597409 -1103.1576
+121742.2599394859 3.6598196 -1103.2562
+121743.2599395362 3.6597409 -1103.3156
+121744.2599395865 3.6597409 -1103.2562
+121745.2599396368 3.6597409 -1103.197
+121746.2599396871 3.6597409 -1103.2761
+121747.2599397374 3.6597016 -1103.2168
+121748.2599397877 3.6596622 -1103.197
+121749.259939838 3.6596622 -1103.1774
+121750.2599398883 3.6596227 -1103.2168
+121751.2599399386 3.6597409 -1103.1576
+121752.2599399888 3.6597016 -1103.3156
+121753.2599400391 3.6597016 -1103.1774
+121754.2599400894 3.6596227 -1103.2761
+121755.2599401397 3.6596622 -1103.2761
+121756.25994019 3.6595833 -1103.197
+121757.2599402403 3.6596622 -1103.2366
+121758.2599402906 3.6595833 -1103.3156
+121759.2599403409 3.6596227 -1103.2761
+121760.2599403912 3.6596227 -1103.2959
+121761.2599404415 3.659544 -1103.2562
+121762.2599404918 3.6595833 -1103.197
+121763.259940542 3.659426 -1103.1378
+121764.2599405923 3.6594653 -1103.2366
+121765.2599406426 3.6595047 -1103.3353
+121766.2599406929 3.659544 -1103.2366
+121767.2599407432 3.6595047 -1103.1774
+121768.2599407935 3.6594653 -1103.2562
+121769.2599408438 3.659426 -1103.3353
+121770.2599408941 3.6593866 -1103.1774
+121771.2599409444 3.6593866 -1103.2959
+121772.2599409947 3.6593077 -1103.1774
+121773.259941045 3.6594653 -1103.1182
+121774.2599410953 3.6593866 -1103.197
+121775.2599411455 3.6594653 -1103.2562
+121776.2599411958 3.6593473 -1103.2562
+121777.2599412461 3.6593866 -1103.2761
+121778.2599412964 3.6594653 -1103.197
+121779.2599413467 3.6593077 -1103.2168
+121780.259941397 3.6592684 -1103.2366
+121781.2599414473 3.6592684 -1103.2168
+121782.2599414976 3.6593473 -1103.197
+121783.2599415479 3.6593473 -1103.2168
+121784.2599415982 3.6593473 -1103.3551
+121785.2599416485 3.6593077 -1103.2562
+121786.2599416988 3.6593077 -1103.2168
+121787.259941749 3.659229 -1103.2562
+121788.2599417993 3.659426 -1103.2366
+121789.2599418496 3.6593077 -1103.2761
+121790.2599418999 3.6592684 -1103.3156
+121791.2599419502 3.6593077 -1103.2562
+121792.2599420005 3.6593077 -1103.3156
+121793.2599420508 3.659229 -1103.197
+121794.2599421011 3.659229 -1103.2168
+121795.2599421514 3.6591897 -1103.2366
+121796.2599422017 3.659111 -1103.2959
+121797.259942252 3.6592684 -1103.2366
+121798.2599423022 3.6592684 -1103.1774
+121799.2599423525 3.6591504 -1103.2366
+121800.2599424028 3.6590717 -1103.197
+121801.2599424531 3.659229 -1103.2761
+121802.2599425034 3.6591504 -1103.2959
+121803.2599425537 3.659111 -1103.2562
+121804.259942604 3.659111 -1103.2562
+121805.2599426543 3.6591504 -1103.2168
+121806.2599427046 3.659111 -1103.2168
+121807.2599427549 3.6589928 -1103.2168
+121808.2599428052 3.6590717 -1103.3353
+121809.2599428555 3.6589928 -1103.3749
+121810.2599429057 3.6590323 -1103.2959
+121811.259942956 3.6590717 -1103.2366
+121812.2599430063 3.6590323 -1103.2761
+121813.2599430566 3.6590323 -1103.197
+121814.2599431069 3.6589928 -1103.2366
+121815.2599431572 3.6589534 -1103.2366
+121816.2599432075 3.6590323 -1103.2562
+121817.2599432578 3.6589534 -1103.2959
+121818.2599433081 3.6589928 -1103.2562
+121819.2599433584 3.6590717 -1103.3353
+121820.2599434087 3.6589141 -1103.197
+121821.259943459 3.6589928 -1103.1378
+121822.2599435092 3.6589534 -1103.2761
+121823.2599435595 3.6590323 -1103.197
+121824.2599436098 3.6589928 -1103.3353
+121825.2599436601 3.6588748 -1103.197
+121826.2599437104 3.6588748 -1103.2562
+121827.2599437607 3.6589141 -1103.2366
+121828.259943811 3.6588748 -1103.2366
+121829.2599438613 3.6589928 -1103.2168
+121830.2599439116 3.6588354 -1103.2761
+121831.2599439619 3.6588354 -1103.1576
+121832.2599440122 3.6588354 -1103.2366
+121833.2599440624 3.6587961 -1103.2366
+121834.2599441127 3.6587567 -1103.2761
+121835.259944163 3.6587567 -1103.2761
+121836.2599442133 3.6586778 -1103.197
+121837.2599442636 3.6587961 -1103.1576
+121838.2599443139 3.6588748 -1103.1576
+121839.2599443642 3.6587961 -1103.2366
+121840.2599444145 3.6586385 -1103.2761
+121841.2599444648 3.6587174 -1103.3156
+121842.2599445151 3.6587174 -1103.2562
+121843.2599445654 3.6587567 -1103.2562
+121844.2599446157 3.6586385 -1103.2761
+121845.2599446659 3.6586385 -1103.2168
+121846.2599447162 3.6586385 -1103.2761
+121847.2599447665 3.6586778 -1103.2562
+121848.2599448168 3.6587174 -1103.1774
+121849.2599448671 3.6586385 -1103.2366
+121850.2599449174 3.6586778 -1103.2168
+121851.2599449677 3.6586778 -1103.2761
+121852.259945018 3.6585205 -1103.3156
+121853.2599450683 3.6586778 -1103.1378
+121854.2599451186 3.6585205 -1103.2168
+121855.2599451689 3.6586385 -1103.2959
+121856.2599452192 3.6585598 -1103.3156
+121857.2599452694 3.6585205 -1103.2562
+121858.2599453197 3.6585205 -1103.2562
+121859.25994537 3.6585205 -1103.197
+121860.2599454203 3.6585205 -1103.2168
+121861.2599454706 3.6584811 -1103.197
+121862.2599455209 3.6584418 -1103.2562
+121863.2599455712 3.6585598 -1103.197
+121864.2599456215 3.6584022 -1103.3156
+121865.2599456718 3.6585205 -1103.2761
+121866.2599457221 3.6584811 -1103.2168
+121867.2599457724 3.6584811 -1103.2562
+121868.2599458226 3.6584418 -1103.2366
+121869.2599458729 3.6584811 -1103.2168
+121870.2599459232 3.6584418 -1103.2366
+121871.2599459735 3.6583629 -1103.2761
+121872.2599460238 3.6584418 -1103.1774
+121873.2599460741 3.6584418 -1103.2761
+121874.2599461244 3.6583235 -1103.197
+121875.2599461747 3.6584022 -1103.2959
+121876.259946225 3.6584022 -1103.2562
+121877.2599462753 3.6583235 -1103.197
+121878.2599463256 3.6583629 -1103.1576
+121879.2599463759 3.6583235 -1103.3353
+121880.2599464261 3.6582842 -1103.2562
+121881.2599464764 3.6582055 -1103.3353
+121882.2599465267 3.6582842 -1103.1774
+121883.259946577 3.6582842 -1103.197
+121884.2599466273 3.6583235 -1103.197
+121885.2599466776 3.6583629 -1103.2959
+121886.2599467279 3.6582448 -1103.2366
+121887.2599467782 3.6582842 -1103.1774
+121888.2599468285 3.6582842 -1103.2366
+121889.2599468788 3.6581662 -1103.2366
+121890.2599469291 3.6582055 -1103.197
+121891.2599469794 3.6582055 -1103.2761
+121892.2599470296 3.6580873 -1103.197
+121893.2599470799 3.6581268 -1103.2761
+121894.2599471302 3.6580479 -1103.2168
+121895.2599471805 3.6580086 -1103.1576
+121896.2599472308 3.6581662 -1103.2959
+121897.2599472811 3.6581268 -1103.2562
+121898.2599473314 3.6582448 -1103.2761
+121899.2599473817 3.6581268 -1103.2168
+121900.259947432 3.6581662 -1103.2761
+121901.2599474823 3.6579692 -1103.197
+121902.2599475326 3.6580873 -1103.2366
+121903.2599475828 3.6580086 -1103.2168
+121904.2599476331 3.6580873 -1103.1774
+121905.2599476834 3.6581268 -1103.1378
+121906.2599477337 3.6580479 -1103.3551
+121907.259947784 3.6580086 -1103.2562
+121908.2599478343 3.6580086 -1103.2761
+121909.2599478846 3.6579692 -1103.3156
+121910.2599479349 3.6579299 -1103.2562
+121911.2599479852 3.6579692 -1103.2366
+121912.2599480355 3.6579299 -1103.2959
+121913.2599480858 3.6578512 -1103.2761
+121914.2599481361 3.6579299 -1103.2366
+121915.2599481863 3.6578906 -1103.3156
+121916.2599482366 3.6578906 -1103.2959
+121917.2599482869 3.6579299 -1103.2761
+121918.2599483372 3.6578119 -1103.2562
+121919.2599483875 3.6578512 -1103.197
+121920.2599484378 3.6579299 -1103.1576
+121921.2599484881 3.6578906 -1103.2761
+121922.2599485384 3.6578512 -1103.197
+121923.2599485887 3.6578512 -1103.2168
+121924.259948639 3.6579299 -1103.2761
+121925.2599486893 3.6578512 -1103.3353
+121926.2599487395 3.6579299 -1103.2562
+121927.2599487898 3.6577723 -1103.2761
+121928.2599488401 3.6578119 -1103.2562
+121929.2599488904 3.6578512 -1103.2761
+121930.2599489407 3.657733 -1103.2168
+121931.259948991 3.6578119 -1103.2562
+121932.2599490413 3.6578119 -1103.3353
+121933.2599490916 3.6577723 -1103.2366
+121934.2599491419 3.657733 -1103.2168
+121935.2599491922 3.6576149 -1103.2366
+121936.2599492425 3.657733 -1103.2959
+121937.2599492928 3.6576543 -1103.3156
+121938.259949343 3.6576543 -1103.197
+121939.2599493933 3.6577723 -1103.2562
+121940.2599494436 3.657733 -1103.2562
+121941.2599494939 3.6576936 -1103.1774
+121942.2599495442 3.6576543 -1103.2959
+121943.2599495945 3.6576936 -1103.2168
+121944.2599496448 3.6576543 -1103.2168
+121945.2599496951 3.6576936 -1103.2959
+121946.2599497454 3.6575756 -1103.2761
+121947.2599497957 3.6576149 -1103.2562
+121948.259949846 3.6575363 -1103.2168
+121949.2599498963 3.6576149 -1103.2168
+121950.2599499465 3.6576149 -1103.2761
+121951.2599499968 3.6575363 -1103.3156
+121952.2599500471 3.6575756 -1103.2959
+121953.2599500974 3.6576149 -1103.3156
+121954.2599501477 3.6575363 -1103.2761
+121955.259950198 3.6575363 -1103.2562
+121956.2599502483 3.6575756 -1103.1774
+121957.2599502986 3.6574969 -1103.2959
+121958.2599503489 3.6574574 -1103.2168
+121959.2599503992 3.6575363 -1103.197
+121960.2599504495 3.6573787 -1103.197
+121961.2599504997 3.6573787 -1103.3156
+121962.25995055 3.6574969 -1103.197
+121963.2599506003 3.6573393 -1103.2366
+121964.2599506506 3.6574969 -1103.2168
+121965.2599507009 3.6574969 -1103.2562
+121966.2599507512 3.6574574 -1103.2168
+121967.2599508015 3.657418 -1103.3156
+121968.2599508518 3.6573393 -1103.2168
+121969.2599509021 3.6573787 -1103.2366
+121970.2599509524 3.6574574 -1103.1774
+121971.2599510027 3.6573393 -1103.2366
+121972.259951053 3.6573393 -1103.2959
+121973.2599511032 3.6573393 -1103.2959
+121974.2599511535 3.6573787 -1103.2366
+121975.2599512038 3.6573 -1103.2562
+121976.2599512541 3.6573393 -1103.2761
+121977.2599513044 3.6573 -1103.2761
+121978.2599513547 3.6573 -1103.2366
+121979.259951405 3.6572213 -1103.1774
+121980.2599514553 3.6572607 -1103.3156
+121981.2599515056 3.6572607 -1103.2562
+121982.2599515559 3.6572607 -1103.3551
+121983.2599516062 3.6572607 -1103.2562
+121984.2599516565 3.6572213 -1103.2168
+121985.2599517067 3.657182 -1103.2366
+121986.259951757 3.657182 -1103.2168
+121987.2599518073 3.6573 -1103.2366
+121988.2599518576 3.6572607 -1103.2761
+121989.2599519079 3.6571031 -1103.2562
+121990.2599519582 3.6571424 -1103.2168
+121991.2599520085 3.6571424 -1103.1576
+121992.2599520588 3.6572213 -1103.2168
+121993.2599521091 3.6571031 -1103.197
+121994.2599521594 3.6571031 -1103.2562
+121995.2599522097 3.6572607 -1103.2959
+121996.2599522599 3.6571424 -1103.2366
+121997.2599523102 3.6571031 -1103.2761
+121998.2599523605 3.6570244 -1103.2761
+121999.2599524108 3.6570637 -1103.1774
+122000.2599524611 3.6570637 -1103.2366
+122001.2599525114 3.6571031 -1103.3353
+122002.2599525617 3.6570244 -1103.2562
+122003.259952612 3.6571424 -1103.2761
+122004.2599526623 3.656985 -1103.3156
+122005.2599527126 3.6570244 -1103.197
+122006.2599527629 3.6569457 -1103.2366
+122007.2599528132 3.6571031 -1103.1182
+122008.2599528634 3.6569457 -1103.2366
+122009.2599529137 3.656985 -1103.2366
+122010.259952964 3.6569457 -1103.2562
+122011.2599530143 3.6569064 -1103.2168
+122012.2599530646 3.6569064 -1103.1774
+122013.2599531149 3.6569064 -1103.2761
+122014.2599531652 3.6569064 -1103.3156
+122015.2599532155 3.656867 -1103.2366
+122016.2599532658 3.656867 -1103.197
+122017.2599533161 3.656867 -1103.1774
+122018.2599533664 3.656867 -1103.2366
+122019.2599534167 3.656867 -1103.2562
+122020.2599534669 3.656867 -1103.1774
+122021.2599535172 3.6567881 -1103.2168
+122022.2599535675 3.6568274 -1103.2562
+122023.2599536178 3.656867 -1103.2761
+122024.2599536681 3.6568274 -1103.2366
+122025.2599537184 3.6566701 -1103.2959
+122026.2599537687 3.6568274 -1103.2761
+122027.259953819 3.6567881 -1103.1774
+122028.2599538693 3.6567488 -1103.2562
+122029.2599539196 3.6567881 -1103.2959
+122030.2599539699 3.6567881 -1103.3353
+122031.2599540201 3.6567094 -1103.2562
+122032.2599540704 3.6566308 -1103.2366
+122033.2599541207 3.6567881 -1103.2761
+122034.259954171 3.6567881 -1103.2761
+122035.2599542213 3.6566701 -1103.197
+122036.2599542716 3.6567488 -1103.2761
+122037.2599543219 3.6566701 -1103.2366
+122038.2599543722 3.6565914 -1103.2562
+122039.2599544225 3.6566701 -1103.2959
+122040.2599544728 3.6566308 -1103.197
+122041.2599545231 3.6565914 -1103.1576
+122042.2599545734 3.6566701 -1103.197
+122043.2599546236 3.6566308 -1103.1774
+122044.2599546739 3.6566308 -1103.2562
+122045.2599547242 3.6566308 -1103.2761
+122046.2599547745 3.6565518 -1103.197
+122047.2599548248 3.6565518 -1103.2168
+122048.2599548751 3.6565518 -1103.197
+122049.2599549254 3.6566308 -1103.2366
+122050.2599549757 3.6565125 -1103.2168
+122051.259955026 3.6565914 -1103.2761
+122052.2599550763 3.6564732 -1103.1378
+122053.2599551266 3.6564732 -1103.2761
+122054.2599551769 3.6564338 -1103.1774
+122055.2599552271 3.6564732 -1103.2562
+122056.2599552774 3.6563945 -1103.2366
+122057.2599553277 3.6564732 -1103.2168
+122058.259955378 3.6563551 -1103.2562
+122059.2599554283 3.6565518 -1103.2761
+122060.2599554786 3.6564732 -1103.2761
+122061.2599555289 3.6565518 -1103.2959
+122062.2599555792 3.6563158 -1103.197
+122063.2599556295 3.6564338 -1103.2366
+122064.2599556798 3.6564732 -1103.1576
+122065.2599557301 3.6563158 -1103.2366
+122066.2599557803 3.6563158 -1103.2562
+122067.2599558306 3.6563945 -1103.3156
+122068.2599558809 3.6564338 -1103.1576
+122069.2599559312 3.6563158 -1103.2761
+122070.2599559815 3.6563158 -1103.3353
+122071.2599560318 3.6564732 -1103.2366
+122072.2599560821 3.6563158 -1103.197
+122073.2599561324 3.6562765 -1103.2562
+122074.2599561827 3.6563158 -1103.197
+122075.259956233 3.6562765 -1103.2959
+122076.2599562833 3.6563551 -1103.197
+122077.2599563336 3.6561189 -1103.2761
+122078.2599563838 3.6562369 -1103.197
+122079.2599564341 3.6561582 -1103.2761
+122080.2599564844 3.6563158 -1103.197
+122081.2599565347 3.6562369 -1103.2168
+122082.259956585 3.6562765 -1103.2761
+122083.2599566353 3.6563158 -1103.2761
+122084.2599566856 3.6561582 -1103.2761
+122085.2599567359 3.6561975 -1103.2168
+122086.2599567862 3.6560795 -1103.2959
+122087.2599568365 3.6562765 -1103.2366
+122088.2599568868 3.6561189 -1103.2562
+122089.2599569371 3.6560795 -1103.2366
+122090.2599569873 3.6560402 -1103.1576
+122091.2599570376 3.6561189 -1103.2562
+122092.2599570879 3.6561975 -1103.2168
+122093.2599571382 3.6561189 -1103.2959
+122094.2599571885 3.6560795 -1103.197
+122095.2599572388 3.6561582 -1103.197
+122096.2599572891 3.6560795 -1103.1774
+122097.2599573394 3.6560795 -1103.2168
+122098.2599573897 3.6560402 -1103.1774
+122099.25995744 3.6560795 -1103.0984
+122100.2599574903 3.6560795 -1103.2562
+122101.2599575405 3.6560795 -1103.3551
+122102.2599575908 3.6559219 -1103.3353
+122103.2599576411 3.6559219 -1103.2366
+122104.2599576914 3.6559615 -1103.2562
+122105.2599577417 3.6560009 -1103.2168
+122106.259957792 3.6560402 -1103.2959
+122107.2599578423 3.6559615 -1103.197
+122108.2599578926 3.6558826 -1103.3945
+122109.2599579429 3.6558826 -1103.2562
+122110.2599579932 3.6560009 -1103.2761
+122111.2599580435 3.6559615 -1103.197
+122112.2599580938 3.6559615 -1103.197
+122113.259958144 3.6558039 -1103.2562
+122114.2599581943 3.6559219 -1103.197
+122115.2599582446 3.6559219 -1103.2562
+122116.2599582949 3.6558826 -1103.197
+122117.2599583452 3.6558826 -1103.2562
+122118.2599583955 3.6558826 -1103.2366
+122119.2599584458 3.6558826 -1103.3156
+122120.2599584961 3.6558039 -1103.197
+122121.2599585464 3.6558039 -1103.2168
+122122.2599585967 3.6558039 -1103.197
+122123.259958647 3.6558433 -1103.3551
+122124.2599586973 3.6558039 -1103.3353
+122125.2599587475 3.6558039 -1103.3551
+122126.2599587978 3.6557252 -1103.3156
+122127.2599588481 3.6556466 -1103.2562
+122128.2599588984 3.6557646 -1103.1774
+122129.2599589487 3.6556859 -1103.2366
+122130.259958999 3.6557646 -1103.2366
+122131.2599590493 3.6556466 -1103.2761
+122132.2599590996 3.6557646 -1103.2959
+122133.2599591499 3.655607 -1103.2366
+122134.2599592002 3.6557252 -1103.2168
+122135.2599592505 3.6556466 -1103.2168
+122136.2599593007 3.6556466 -1103.1576
+122137.259959351 3.655607 -1103.2366
+122138.2599594013 3.6555676 -1103.2761
+122139.2599594516 3.6555676 -1103.3749
+122140.2599595019 3.655607 -1103.2562
+122141.2599595522 3.6556859 -1103.3156
+122142.2599596025 3.655489 -1103.2761
+122143.2599596528 3.655607 -1103.2168
+122144.2599597031 3.6555676 -1103.3156
+122145.2599597534 3.655607 -1103.2761
+122146.2599598037 3.655607 -1103.1774
+122147.259959854 3.6555676 -1103.2168
+122148.2599599042 3.6555676 -1103.2562
+122149.2599599545 3.6555676 -1103.2366
+122150.2599600048 3.6555283 -1103.2761
+122151.2599600551 3.655607 -1103.2562
+122152.2599601054 3.655489 -1103.197
+122153.2599601557 3.6554496 -1103.197
+122154.259960206 3.6555676 -1103.2562
+122155.2599602563 3.6555283 -1103.2959
+122156.2599603066 3.6555676 -1103.1774
+122157.2599603569 3.6553316 -1103.2959
+122158.2599604072 3.655489 -1103.2562
+122159.2599604575 3.6554496 -1103.2562
+122160.2599605077 3.655489 -1103.2366
+122161.259960558 3.6553316 -1103.2959
+122162.2599606083 3.655489 -1103.197
+122163.2599606586 3.6554496 -1103.2366
+122164.2599607089 3.655489 -1103.2761
+122165.2599607592 3.655292 -1103.1774
+122166.2599608095 3.655371 -1103.1774
+122167.2599608598 3.655371 -1103.2366
+122168.2599609101 3.6553316 -1103.2168
+122169.2599609604 3.6553316 -1103.2761
+122170.2599610107 3.655292 -1103.2761
+122171.2599610609 3.6552134 -1103.2959
+122172.2599611112 3.6553316 -1103.2761
+122173.2599611615 3.655371 -1103.3945
+122174.2599612118 3.6552134 -1103.2562
+122175.2599612621 3.6552134 -1103.2562
+122176.2599613124 3.655292 -1103.197
+122177.2599613627 3.655292 -1103.2168
+122178.259961413 3.655292 -1103.2168
+122179.2599614633 3.6552134 -1103.2761
+122180.2599615136 3.6552134 -1103.2761
+122181.2599615639 3.6551347 -1103.2562
+122182.2599616142 3.655174 -1103.2761
+122183.2599616644 3.6550953 -1103.3353
+122184.2599617147 3.6551347 -1103.2959
+122185.259961765 3.655174 -1103.2562
+122186.2599618153 3.6552134 -1103.3353
+122187.2599618656 3.6550953 -1103.1774
+122188.2599619159 3.6551347 -1103.2168
+122189.2599619662 3.655292 -1103.2366
+122190.2599620165 3.655174 -1103.3156
+122191.2599620668 3.655056 -1103.2761
+122192.2599621171 3.6550953 -1103.197
+122193.2599621674 3.6551347 -1103.2562
+122194.2599622176 3.655056 -1103.197
+122195.2599622679 3.6550953 -1103.3156
+122196.2599623182 3.6551347 -1103.2761
+122197.2599623685 3.6549771 -1103.2562
+122198.2599624188 3.6549771 -1103.2168
+122199.2599624691 3.6550167 -1103.2168
+122200.2599625194 3.6550167 -1103.2959
+122201.2599625697 3.6549771 -1103.2168
+122202.25996262 3.6549771 -1103.2761
+122203.2599626703 3.6549771 -1103.2761
+122204.2599627206 3.6550167 -1103.2562
+122205.2599627709 3.6548591 -1103.2366
+122206.2599628211 3.6549771 -1103.2562
+122207.2599628714 3.6549771 -1103.2366
+122208.2599629217 3.6548984 -1103.2562
+122209.259962972 3.6549771 -1103.1774
+122210.2599630223 3.6548197 -1103.2562
+122211.2599630726 3.6548197 -1103.2366
+122212.2599631229 3.6548591 -1103.2761
+122213.2599631732 3.6548197 -1103.197
+122214.2599632235 3.6547804 -1103.2562
+122215.2599632738 3.6548591 -1103.197
+122216.2599633241 3.6548197 -1103.2562
+122217.2599633744 3.6549771 -1103.2562
+122218.2599634246 3.6548197 -1103.2562
+122219.2599634749 3.6548197 -1103.2761
+122220.2599635252 3.6548984 -1103.197
+122221.2599635755 3.6548591 -1103.197
+122222.2599636258 3.6548197 -1103.197
+122223.2599636761 3.6548197 -1103.1774
+122224.2599637264 3.6548591 -1103.3156
+122225.2599637767 3.6547804 -1103.1378
+122226.259963827 3.6548197 -1103.197
+122227.2599638773 3.6548197 -1103.2366
+122228.2599639276 3.6546621 -1103.3156
+122229.2599639778 3.6546621 -1103.2761
+122230.2599640281 3.654741 -1103.2959
+122231.2599640784 3.6546228 -1103.2168
+122232.2599641287 3.6546621 -1103.2366
+122233.259964179 3.6547015 -1103.1774
+122234.2599642293 3.6547015 -1103.1774
+122235.2599642796 3.6546228 -1103.2761
+122236.2599643299 3.654741 -1103.2562
+122237.2599643802 3.6546228 -1103.197
+122238.2599644305 3.6545835 -1103.2366
+122239.2599644808 3.6546228 -1103.2168
+122240.2599645311 3.6546228 -1103.2761
+122241.2599645813 3.6546228 -1103.2959
+122242.2599646316 3.6546621 -1103.2761
+122243.2599646819 3.6545835 -1103.2562
+122244.2599647322 3.6546228 -1103.2562
+122245.2599647825 3.6546228 -1103.2366
+122246.2599648328 3.6544654 -1103.2366
+122247.2599648831 3.6546621 -1103.197
+122248.2599649334 3.6545048 -1103.2366
+122249.2599649837 3.6545441 -1103.3156
+122250.259965034 3.6544654 -1103.2366
+122251.2599650843 3.6544654 -1103.2562
+122252.2599651346 3.6545048 -1103.2562
+122253.2599651848 3.6544654 -1103.2761
+122254.2599652351 3.6545048 -1103.2366
+122255.2599652854 3.6544654 -1103.2562
+122256.2599653357 3.6543865 -1103.2168
+122257.259965386 3.6543865 -1103.2562
+122258.2599654363 3.6543865 -1103.197
+122259.2599654866 3.6543865 -1103.2562
+122260.2599655369 3.6544261 -1103.2562
+122261.2599655872 3.6543472 -1103.2168
+122262.2599656375 3.6543865 -1103.1774
+122263.2599656878 3.6544654 -1103.2562
+122264.259965738 3.6543472 -1103.197
+122265.2599657883 3.6543865 -1103.2761
+122266.2599658386 3.6543472 -1103.2761
+122267.2599658889 3.6543865 -1103.2959
+122268.2599659392 3.6544261 -1103.197
+122269.2599659895 3.6542685 -1103.2761
+122270.2599660398 3.6543472 -1103.2366
+122271.2599660901 3.6543472 -1103.1378
+122272.2599661404 3.6542685 -1103.1774
+122273.2599661907 3.6541898 -1103.2562
+122274.259966241 3.6541898 -1103.2366
+122275.2599662913 3.6542292 -1103.2366
+122276.2599663415 3.6541505 -1103.2562
+122277.2599663918 3.6542292 -1103.2562
+122278.2599664421 3.6542685 -1103.2168
+122279.2599664924 3.6541898 -1103.197
+122280.2599665427 3.6541898 -1103.1774
+122281.259966593 3.6542292 -1103.2366
+122282.2599666433 3.6541505 -1103.197
+122283.2599666936 3.6541505 -1103.2366
+122284.2599667439 3.6541111 -1103.1774
+122285.2599667942 3.6541898 -1103.2761
+122286.2599668445 3.6541505 -1103.197
+122287.2599668948 3.6541505 -1103.2168
+122288.259966945 3.6541505 -1103.2168
+122289.2599669953 3.6540716 -1103.1774
+122290.2599670456 3.6541111 -1103.2562
+122291.2599670959 3.6540716 -1103.2168
+122292.2599671462 3.6541898 -1103.2168
+122293.2599671965 3.6540322 -1103.197
+122294.2599672468 3.6540322 -1103.2168
+122295.2599672971 3.6539929 -1103.2562
+122296.2599673474 3.6540322 -1103.2761
+122297.2599673977 3.6539536 -1103.2761
+122298.259967448 3.6539929 -1103.3156
+122299.2599674982 3.6539536 -1103.3156
+122300.2599675485 3.6539536 -1103.197
+122301.2599675988 3.6539929 -1103.3551
+122302.2599676491 3.6540322 -1103.3749
+122303.2599676994 3.6538355 -1103.197
+122304.2599677497 3.6539142 -1103.2366
+122305.2599678 3.6539929 -1103.197
+122306.2599678503 3.6539536 -1103.2168
+122307.2599679006 3.6539536 -1103.2168
+122308.2599679509 3.6538749 -1103.2168
+122309.2599680012 3.6538355 -1103.1774
+122310.2599680515 3.6539536 -1103.2366
+122311.2599681017 3.6539142 -1103.2366
+122312.259968152 3.6538749 -1103.2959
+122313.2599682023 3.6539142 -1103.3353
+122314.2599682526 3.6538355 -1103.2562
+122315.2599683029 3.6538355 -1103.2366
+122316.2599683532 3.6538749 -1103.2168
+122317.2599684035 3.6538355 -1103.2366
+122318.2599684538 3.6537962 -1103.3156
+122319.2599685041 3.6538355 -1103.197
+122320.2599685544 3.6538355 -1103.1576
+122321.2599686047 3.6537566 -1103.1774
+122322.259968655 3.6538355 -1103.2366
+122323.2599687052 3.6537566 -1103.1774
+122324.2599687555 3.6537173 -1103.1576
+122325.2599688058 3.6537566 -1103.2562
+122326.2599688561 3.6537566 -1103.2761
+122327.2599689064 3.6537962 -1103.2168
+122328.2599689567 3.6537173 -1103.2562
+122329.259969007 3.6537566 -1103.2366
+122330.2599690573 3.6537173 -1103.1576
+122331.2599691076 3.6536386 -1103.2761
+122332.2599691579 3.6537566 -1103.2562
+122333.2599692082 3.6536386 -1103.1576
+122334.2599692584 3.6537962 -1103.2168
+122335.2599693087 3.6536779 -1103.2168
+122336.259969359 3.6537173 -1103.1576
+122337.2599694093 3.6536779 -1103.2562
+122338.2599694596 3.6536779 -1103.2366
+122339.2599695099 3.6536386 -1103.2168
+122340.2599695602 3.6535993 -1103.2168
+122341.2599696105 3.6536386 -1103.2562
+122342.2599696608 3.6534812 -1103.197
+122343.2599697111 3.6534812 -1103.2168
+122344.2599697614 3.6535206 -1103.197
+122345.2599698117 3.6535993 -1103.197
+122346.2599698619 3.6534417 -1103.2366
+122347.2599699122 3.6535206 -1103.197
+122348.2599699625 3.6534812 -1103.1774
+122349.2599700128 3.6534812 -1103.2761
+122350.2599700631 3.6534417 -1103.1576
+122351.2599701134 3.6534023 -1103.2168
+122352.2599701637 3.6535206 -1103.2366
+122353.259970214 3.6534812 -1103.2761
+122354.2599702643 3.6534023 -1103.2562
+122355.2599703146 3.6534023 -1103.197
+122356.2599703649 3.6534812 -1103.3353
+122357.2599704152 3.6534023 -1103.2761
+122358.2599704654 3.653363 -1103.2168
+122359.2599705157 3.6535206 -1103.2959
+122360.259970566 3.6534417 -1103.2761
+122361.2599706163 3.6534812 -1103.2562
+122362.2599706666 3.653363 -1103.1774
+122363.2599707169 3.6534023 -1103.197
+122364.2599707672 3.653363 -1103.2761
+122365.2599708175 3.6533237 -1103.2168
+122366.2599708678 3.6533237 -1103.197
+122367.2599709181 3.6532843 -1103.2168
+122368.2599709684 3.6534023 -1103.2366
+122369.2599710186 3.653245 -1103.2761
+122370.2599710689 3.6532843 -1103.2366
+122371.2599711192 3.6532056 -1103.2562
+122372.2599711695 3.6532056 -1103.2562
+122373.2599712198 3.6532056 -1103.2562
+122374.2599712701 3.6532056 -1103.2761
+122375.2599713204 3.653245 -1103.2168
+122376.2599713707 3.653363 -1103.2761
+122377.259971421 3.6532056 -1103.2562
+122378.2599714713 3.6531661 -1103.2366
+122379.2599715216 3.653245 -1103.197
+122380.2599715719 3.653245 -1103.2168
+122381.2599716221 3.653245 -1103.2562
+122382.2599716724 3.6531661 -1103.3156
+122383.2599717227 3.6531661 -1103.2761
+122384.259971773 3.6531267 -1103.1576
+122385.2599718233 3.6531267 -1103.2562
+122386.2599718736 3.6531267 -1103.2959
+122387.2599719239 3.6530874 -1103.2761
+122388.2599719742 3.6531661 -1103.2761
+122389.2599720245 3.6530087 -1103.2761
+122390.2599720748 3.6529694 -1103.2959
+122391.2599721251 3.653048 -1103.2562
+122392.2599721754 3.6530087 -1103.2562
+122393.2599722256 3.6530874 -1103.2168
+122394.2599722759 3.653048 -1103.1774
+122395.2599723262 3.6530874 -1103.2562
+122396.2599723765 3.653048 -1103.197
+122397.2599724268 3.6529694 -1103.2168
+122398.2599724771 3.653048 -1103.197
+122399.2599725274 3.65293 -1103.3156
+122400.2599725777 3.6530087 -1103.2562
+122401.259972628 3.65293 -1103.2761
+122402.2599726783 3.6528907 -1103.2761
+122403.2599727286 3.6529694 -1103.2366
+122404.2599727788 3.6529694 -1103.197
+122405.2599728291 3.65293 -1103.2761
+122406.2599728794 3.6528511 -1103.2562
+122407.2599729297 3.6529694 -1103.2168
+122408.25997298 3.6528511 -1103.197
+122409.2599730303 3.6528511 -1103.2761
+122410.2599730806 3.65293 -1103.2562
+122411.2599731309 3.6528118 -1103.2761
+122412.2599731812 3.6528511 -1103.197
+122413.2599732315 3.6528511 -1103.2959
+122414.2599732818 3.6527724 -1103.2761
+122415.2599733321 3.6526937 -1103.3156
+122416.2599733823 3.6528907 -1103.2366
+122417.2599734326 3.6527331 -1103.2168
+122418.2599734829 3.6527724 -1103.197
+122419.2599735332 3.6527724 -1103.2562
+122420.2599735835 3.6528118 -1103.2366
+122421.2599736338 3.6527331 -1103.2168
+122422.2599736841 3.6527331 -1103.197
+122423.2599737344 3.6528907 -1103.2366
+122424.2599737847 3.6527724 -1103.197
+122425.259973835 3.6526544 -1103.1378
+122426.2599738853 3.6527331 -1103.2761
+122427.2599739356 3.6526544 -1103.2761
+122428.2599739858 3.6526544 -1103.2761
+122429.2599740361 3.6527331 -1103.2761
+122430.2599740864 3.6527724 -1103.1576
+122431.2599741367 3.6526544 -1103.2168
+122432.259974187 3.6525757 -1103.2959
+122433.2599742373 3.6525757 -1103.2959
+122434.2599742876 3.6526151 -1103.2366
+122435.2599743379 3.6525757 -1103.197
+122436.2599743882 3.6526544 -1103.2959
+122437.2599744385 3.6525757 -1103.2168
+122438.2599744888 3.6524968 -1103.2761
+122439.259974539 3.6525757 -1103.2761
+122440.2599745893 3.6525362 -1103.1774
+122441.2599746396 3.6525757 -1103.2959
+122442.2599746899 3.6525757 -1103.2168
+122443.2599747402 3.6525757 -1103.2761
+122444.2599747905 3.6526151 -1103.197
+122445.2599748408 3.6525757 -1103.2168
+122446.2599748911 3.6526151 -1103.2562
+122447.2599749414 3.6524575 -1103.2168
+122448.2599749917 3.6524181 -1103.2366
+122449.259975042 3.6524968 -1103.2168
+122450.2599750923 3.6524181 -1103.3551
+122451.2599751425 3.6524575 -1103.197
+122452.2599751928 3.6523788 -1103.1774
+122453.2599752431 3.6523395 -1103.2562
+122454.2599752934 3.6524968 -1103.2562
+122455.2599753437 3.6523788 -1103.1576
+122456.259975394 3.6524968 -1103.2959
+122457.2599754443 3.6523788 -1103.2168
+122458.2599754946 3.6524181 -1103.2168
+122459.2599755449 3.6523395 -1103.2366
+122460.2599755952 3.6523395 -1103.2168
+122461.2599756455 3.6523395 -1103.2562
+122462.2599756958 3.6524181 -1103.1774
+122463.259975746 3.6523395 -1103.2366
+122464.2599757963 3.6523788 -1103.2562
+122465.2599758466 3.6522608 -1103.3156
+122466.2599758969 3.6522608 -1103.2959
+122467.2599759472 3.6522212 -1103.3551
+122468.2599759975 3.6523395 -1103.2366
+122469.2599760478 3.6523001 -1103.2168
+122470.2599760981 3.6523395 -1103.2562
+122471.2599761484 3.6522608 -1103.2562
+122472.2599761987 3.6523395 -1103.3156
+122473.259976249 3.6522608 -1103.2761
+122474.2599762992 3.6522212 -1103.2168
+122475.2599763495 3.6523001 -1103.1576
+122476.2599763998 3.6521819 -1103.3156
+122477.2599764501 3.6521819 -1103.2366
+122478.2599765004 3.6521819 -1103.2366
+122479.2599765507 3.6521425 -1103.2562
+122480.259976601 3.6522212 -1103.2168
+122481.2599766513 3.6521819 -1103.2168
+122482.2599767016 3.6521032 -1103.2366
+122483.2599767519 3.6521425 -1103.2761
+122484.2599768022 3.6521425 -1103.2168
+122485.2599768525 3.6521425 -1103.2761
+122486.2599769027 3.6522212 -1103.2168
+122487.259976953 3.6521819 -1103.2761
+122488.2599770033 3.6521032 -1103.197
+122489.2599770536 3.6520638 -1103.2168
+122490.2599771039 3.6521425 -1103.2168
+122491.2599771542 3.6521032 -1103.1576
+122492.2599772045 3.6519852 -1103.197
+122493.2599772548 3.6520638 -1103.1774
+122494.2599773051 3.6520245 -1103.1774
+122495.2599773554 3.6520245 -1103.1182
+122496.2599774057 3.6520245 -1103.2562
+122497.2599774559 3.6519458 -1103.197
+122498.2599775062 3.6521032 -1103.1576
+122499.2599775565 3.6520638 -1103.2959
+122500.2599776068 3.6519458 -1103.197
+122501.2599776571 3.6519458 -1103.2959
+122502.2599777074 3.6519063 -1103.3156
+122503.2599777577 3.6520245 -1103.1378
+122504.259977808 3.6519063 -1103.3156
+122505.2599778583 3.6519458 -1103.2366
+122506.2599779086 3.6519458 -1103.2761
+122507.2599779589 3.6518669 -1103.197
+122508.2599780092 3.6519458 -1103.2562
+122509.2599780594 3.6519458 -1103.3749
+122510.2599781097 3.6518669 -1103.2168
+122511.25997816 3.6518669 -1103.2562
+122512.2599782103 3.6518276 -1103.2761
+122513.2599782606 3.6519063 -1103.2562
+122514.2599783109 3.6518276 -1103.2168
+122515.2599783612 3.6518276 -1103.197
+122516.2599784115 3.6517489 -1103.3156
+122517.2599784618 3.6518276 -1103.2562
+122518.2599785121 3.6517489 -1103.2761
+122519.2599785624 3.6517096 -1103.2366
+122520.2599786127 3.6518276 -1103.2761
+122521.2599786629 3.6518276 -1103.2562
+122522.2599787132 3.6517489 -1103.197
+122523.2599787635 3.6517489 -1103.197
+122524.2599788138 3.6517096 -1103.2562
+122525.2599788641 3.6518276 -1103.1774
+122526.2599789144 3.6517489 -1103.2562
+122527.2599789647 3.6516309 -1103.2168
+122528.259979015 3.6516309 -1103.2168
+122529.2599790653 3.6517096 -1103.2959
+122530.2599791156 3.6517096 -1103.2562
+122531.2599791659 3.6516309 -1103.1576
+122532.2599792161 3.6516309 -1103.2168
+122533.2599792664 3.6517096 -1103.2761
+122534.2599793167 3.6515126 -1103.2761
+122535.259979367 3.6515913 -1103.197
+122536.2599794173 3.6516702 -1103.2959
+122537.2599794676 3.6516309 -1103.197
+122538.2599795179 3.6516702 -1103.2959
+122539.2599795682 3.6515913 -1103.2761
+122540.2599796185 3.6514733 -1103.2761
+122541.2599796688 3.6517096 -1103.2959
+122542.2599797191 3.6516309 -1103.2562
+122543.2599797694 3.6515913 -1103.197
+122544.2599798196 3.6516309 -1103.197
+122545.2599798699 3.6516309 -1103.2562
+122546.2599799202 3.6515126 -1103.2562
+122547.2599799705 3.6514339 -1103.1576
+122548.2599800208 3.6514733 -1103.2959
+122549.2599800711 3.651552 -1103.197
+122550.2599801214 3.6515913 -1103.2366
+122551.2599801717 3.6515126 -1103.3353
+122552.259980222 3.6514733 -1103.2761
+122553.2599802723 3.6514733 -1103.2168
+122554.2599803226 3.6514733 -1103.2168
+122555.2599803729 3.6514733 -1103.197
+122556.2599804231 3.6514339 -1103.2761
+122557.2599804734 3.6515126 -1103.197
+122558.2599805237 3.6513946 -1103.2959
+122559.259980574 3.6513157 -1103.1576
+122560.2599806243 3.6513946 -1103.2168
+122561.2599806746 3.6513553 -1103.2761
+122562.2599807249 3.6513553 -1103.2562
+122563.2599807752 3.6513946 -1103.2168
+122564.2599808255 3.6514339 -1103.3156
+122565.2599808758 3.6514339 -1103.2761
+122566.2599809261 3.6513946 -1103.2562
+122567.2599809763 3.6513157 -1103.1774
+122568.2599810266 3.6512764 -1103.197
+122569.2599810769 3.6514733 -1103.1774
+122570.2599811272 3.6513157 -1103.1774
+122571.2599811775 3.6513553 -1103.2366
+122572.2599812278 3.6512764 -1103.2761
+122573.2599812781 3.6513946 -1103.3353
+122574.2599813284 3.6513157 -1103.2761
+122575.2599813787 3.6512764 -1103.2366
+122576.259981429 3.6511583 -1103.2168
+122577.2599814793 3.6511583 -1103.2562
+122578.2599815296 3.6511583 -1103.3156
+122579.2599815798 3.651237 -1103.3353
+122580.2599816301 3.6512764 -1103.2959
+122581.2599816804 3.651237 -1103.197
+122582.2599817307 3.651237 -1103.1576
+122583.259981781 3.6511583 -1103.2366
+122584.2599818313 3.6511977 -1103.2366
+122585.2599818816 3.651237 -1103.2959
+122586.2599819319 3.651119 -1103.2761
+122587.2599819822 3.6511977 -1103.1774
+122588.2599820325 3.6511977 -1103.2761
+122589.2599820828 3.651119 -1103.2761
+122590.2599821331 3.6510403 -1103.2562
+122591.2599821833 3.6510797 -1103.2959
+122592.2599822336 3.6511977 -1103.2366
+122593.2599822839 3.651119 -1103.2366
+122594.2599823342 3.6510403 -1103.2562
+122595.2599823845 3.6511583 -1103.2168
+122596.2599824348 3.6510797 -1103.2366
+122597.2599824851 3.651119 -1103.2562
+122598.2599825354 3.6510007 -1103.2761
+122599.2599825857 3.6510007 -1103.197
+122600.259982636 3.6509614 -1103.2562
+122601.2599826863 3.6510403 -1103.2168
+122602.2599827365 3.6510007 -1103.1576
+122603.2599827868 3.6509614 -1103.197
+122604.2599828371 3.6509614 -1103.3353
+122605.2599828874 3.6509221 -1103.2761
+122606.2599829377 3.6508827 -1103.2761
+122607.259982988 3.6510797 -1103.2168
+122608.2599830383 3.6509221 -1103.2366
+122609.2599830886 3.6508434 -1103.2366
+122610.2599831389 3.6508827 -1103.2168
+122611.2599831892 3.6509221 -1103.2366
+122612.2599832395 3.6509221 -1103.2366
+122613.2599832898 3.6509221 -1103.2959
+122614.25998334 3.6509221 -1103.3156
+122615.2599833903 3.6507647 -1103.1774
+122616.2599834406 3.6507254 -1103.2562
+122617.2599834909 3.6508434 -1103.2562
+122618.2599835412 3.6508434 -1103.2761
+122619.2599835915 3.6507647 -1103.2366
+122620.2599836418 3.6508434 -1103.2562
+122621.2599836921 3.650804 -1103.2562
+122622.2599837424 3.6508434 -1103.197
+122623.2599837927 3.6508434 -1103.3353
+122624.259983843 3.650804 -1103.2959
+122625.2599838933 3.6507647 -1103.2562
+122626.2599839435 3.650804 -1103.1774
+122627.2599839938 3.6507254 -1103.2168
+122628.2599840441 3.650804 -1103.2366
+122629.2599840944 3.6506858 -1103.2366
+122630.2599841447 3.6507254 -1103.2168
+122631.259984195 3.6506464 -1103.3353
+122632.2599842453 3.6507647 -1103.2366
+122633.2599842956 3.6506858 -1103.2761
+122634.2599843459 3.6506858 -1103.2761
+122635.2599843962 3.6506858 -1103.2761
+122636.2599844465 3.6506858 -1103.2366
+122637.2599844967 3.6506464 -1103.2761
+122638.259984547 3.6506071 -1103.2168
+122639.2599845973 3.6506858 -1103.2761
+122640.2599846476 3.6505678 -1103.2168
+122641.2599846979 3.6506071 -1103.2366
+122642.2599847482 3.6505284 -1103.197
+122643.2599847985 3.6505678 -1103.2168
+122644.2599848488 3.6504891 -1103.3156
+122645.2599848991 3.6506464 -1103.3353
+122646.2599849494 3.6505284 -1103.1774
+122647.2599849997 3.6504891 -1103.2761
+122648.25998505 3.6505678 -1103.197
+122649.2599851002 3.6506464 -1103.3156
+122650.2599851505 3.6505284 -1103.197
+122651.2599852008 3.6505678 -1103.197
+122652.2599852511 3.6504891 -1103.2168
+122653.2599853014 3.6505678 -1103.2366
+122654.2599853517 3.6505678 -1103.2366
+122655.259985402 3.6504498 -1103.2562
+122656.2599854523 3.6504498 -1103.2562
+122657.2599855026 3.6504104 -1103.2366
+122658.2599855529 3.6504498 -1103.197
+122659.2599856032 3.6505284 -1103.2366
+122660.2599856535 3.6504498 -1103.3353
+122661.2599857037 3.6503708 -1103.2562
+122662.259985754 3.6504891 -1103.2562
+122663.2599858043 3.6504498 -1103.197
+122664.2599858546 3.6503708 -1103.2761
+122665.2599859049 3.6503708 -1103.2366
+122666.2599859552 3.6503315 -1103.2562
+122667.2599860055 3.6503708 -1103.2761
+122668.2599860558 3.6503708 -1103.1576
+122669.2599861061 3.6504104 -1103.2366
+122670.2599861564 3.6503708 -1103.2761
+122671.2599862067 3.6503708 -1103.2562
+122672.2599862569 3.6503315 -1103.2761
+122673.2599863072 3.6503315 -1103.2366
+122674.2599863575 3.6504104 -1103.2761
+122675.2599864078 3.6502528 -1103.2959
+122676.2599864581 3.6502922 -1103.197
+122677.2599865084 3.6503708 -1103.2168
+122678.2599865587 3.6502528 -1103.3156
+122679.259986609 3.6502135 -1103.1774
+122680.2599866593 3.6502135 -1103.197
+122681.2599867096 3.6501741 -1103.2168
+122682.2599867599 3.6501348 -1103.3551
+122683.2599868102 3.6501348 -1103.2168
+122684.2599868604 3.6502135 -1103.197
+122685.2599869107 3.6503315 -1103.1774
+122686.259986961 3.6501348 -1103.2168
+122687.2599870113 3.6500955 -1103.2562
+122688.2599870616 3.6502135 -1103.2761
+122689.2599871119 3.6501348 -1103.197
+122690.2599871622 3.6500559 -1103.2562
+122691.2599872125 3.6501348 -1103.3749
+122692.2599872628 3.6500955 -1103.2366
+122693.2599873131 3.6501348 -1103.2366
+122694.2599873634 3.6500559 -1103.2366
+122695.2599874137 3.6501348 -1103.1182
+122696.2599874639 3.6500559 -1103.2366
+122697.2599875142 3.6500559 -1103.3156
+122698.2599875645 3.6500559 -1103.2562
+122699.2599876148 3.6500955 -1103.1378
+122700.2599876651 3.6500559 -1103.2168
+122701.2599877154 3.6499772 -1103.2959
+122702.2599877657 3.6500559 -1103.2562
+122703.259987816 3.6498985 -1103.2761
+122704.2599878663 3.6499772 -1103.2761
+122705.2599879166 3.6499772 -1103.2959
+122706.2599879669 3.6499772 -1103.2168
+122707.2599880171 3.6499379 -1103.2761
+122708.2599880674 3.6499772 -1103.197
+122709.2599881177 3.6498985 -1103.2959
+122710.259988168 3.6499379 -1103.1576
+122711.2599882183 3.6499379 -1103.2761
+122712.2599882686 3.6498985 -1103.2366
+122713.2599883189 3.6498592 -1103.3156
+122714.2599883692 3.6499772 -1103.1576
+122715.2599884195 3.6498199 -1103.2168
+122716.2599884698 3.6498985 -1103.2168
+122717.2599885201 3.6498592 -1103.3353
+122718.2599885704 3.6498592 -1103.2168
+122719.2599886206 3.6498985 -1103.2168
+122720.2599886709 3.6498592 -1103.2168
+122721.2599887212 3.6498199 -1103.2168
+122722.2599887715 3.6499379 -1103.2366
+122723.2599888218 3.6498199 -1103.2366
+122724.2599888721 3.6497805 -1103.2168
+122725.2599889224 3.6497805 -1103.2366
+122726.2599889727 3.6497016 -1103.2761
+122727.259989023 3.6497409 -1103.2366
+122728.2599890733 3.6497409 -1103.2562
+122729.2599891236 3.6497409 -1103.3156
+122730.2599891739 3.6496623 -1103.1774
+122731.2599892241 3.6495836 -1103.2761
+122732.2599892744 3.6496229 -1103.3156
+122733.2599893247 3.6496229 -1103.1576
+122734.259989375 3.6498199 -1103.2761
+122735.2599894253 3.6497016 -1103.2959
+122736.2599894756 3.6496623 -1103.2761
+122737.2599895259 3.6495836 -1103.197
+122738.2599895762 3.6497016 -1103.2761
+122739.2599896265 3.6496623 -1103.197
+122740.2599896768 3.6495836 -1103.2562
+122741.2599897271 3.6495836 -1103.2959
+122742.2599897773 3.6495836 -1103.1576
+122743.2599898276 3.6496229 -1103.2761
+122744.2599898779 3.6495442 -1103.3749
+122745.2599899282 3.6496229 -1103.2366
+122746.2599899785 3.6495836 -1103.2366
+122747.2599900288 3.6495836 -1103.2562
+122748.2599900791 3.6495836 -1103.2562
+122749.2599901294 3.6494653 -1103.2562
+122750.2599901797 3.6494653 -1103.197
+122751.25999023 3.6495442 -1103.3945
+122752.2599902803 3.6495836 -1103.2366
+122753.2599903306 3.6495049 -1103.2761
+122754.2599903808 3.6494653 -1103.3156
+122755.2599904311 3.6495049 -1103.3156
+122756.2599904814 3.6494653 -1103.2761
+122757.2599905317 3.6494653 -1103.2168
+122758.259990582 3.6494653 -1103.3156
+122759.2599906323 3.6494653 -1103.2562
+122760.2599906826 3.6493473 -1103.2168
+122761.2599907329 3.6494653 -1103.3156
+122762.2599907832 3.6494653 -1103.3353
+122763.2599908335 3.6494653 -1103.197
+122764.2599908838 3.6494653 -1103.2562
+122765.2599909341 3.6493866 -1103.2959
+122766.2599909843 3.6493866 -1103.3551
+122767.2599910346 3.6493866 -1103.2562
+122768.2599910849 3.649308 -1103.2761
+122769.2599911352 3.649426 -1103.3353
+122770.2599911855 3.6493473 -1103.3551
+122771.2599912358 3.6493473 -1103.2366
+122772.2599912861 3.6494653 -1103.197
+122773.2599913364 3.6492686 -1103.2168
+122774.2599913867 3.6492293 -1103.2562
+122775.259991437 3.6492686 -1103.3551
+122776.2599914873 3.6493473 -1103.2959
+122777.2599915375 3.6492686 -1103.2562
+122778.2599915878 3.6492686 -1103.2562
+122779.2599916381 3.6491899 -1103.3156
+122780.2599916884 3.6491504 -1103.3353
+122781.2599917387 3.6493866 -1103.3749
+122782.259991789 3.6491504 -1103.2562
+122783.2599918393 3.6491899 -1103.1774
+122784.2599918896 3.649111 -1103.197
+122785.2599919399 3.6491504 -1103.2366
+122786.2599919902 3.6491899 -1103.3353
+122787.2599920405 3.6492293 -1103.2168
+122788.2599920908 3.6491504 -1103.1774
+122789.259992141 3.649111 -1103.2761
+122790.2599921913 3.649111 -1103.2168
+122791.2599922416 3.6490324 -1103.3353
+122792.2599922919 3.649111 -1103.197
+122793.2599923422 3.6492293 -1103.3156
+122794.2599923925 3.6491504 -1103.2562
+122795.2599924428 3.6491504 -1103.2168
+122796.2599924931 3.6491504 -1103.197
+122797.2599925434 3.6491504 -1103.2168
+122798.2599925937 3.649111 -1103.2562
+122799.259992644 3.648993 -1103.2366
+122800.2599926942 3.649111 -1103.1774
+122801.2599927445 3.6491504 -1103.2366
+122802.2599927948 3.648993 -1103.2366
+122803.2599928451 3.6490324 -1103.2761
+122804.2599928954 3.6490324 -1103.2366
+122805.2599929457 3.6489143 -1103.2761
+122806.259992996 3.6490717 -1103.2959
+122807.2599930463 3.6490324 -1103.2366
+122808.2599930966 3.648993 -1103.2562
+122809.2599931469 3.6489143 -1103.2366
+122810.2599931972 3.6488354 -1103.2562
+122811.2599932475 3.6490717 -1103.2959
+122812.2599932977 3.6489143 -1103.2562
+122813.259993348 3.648875 -1103.2168
+122814.2599933983 3.6489537 -1103.197
+122815.2599934486 3.6488354 -1103.2959
+122816.2599934989 3.6489537 -1103.2761
+122817.2599935492 3.6489143 -1103.1576
+122818.2599935995 3.6489143 -1103.2168
+122819.2599936498 3.648993 -1103.2366
+122820.2599937001 3.648875 -1103.2562
+122821.2599937504 3.6487961 -1103.3749
+122822.2599938007 3.6488354 -1103.2168
+122823.259993851 3.6487567 -1103.3156
+122824.2599939012 3.6488354 -1103.2168
+122825.2599939515 3.6488354 -1103.2761
+122826.2599940018 3.6487961 -1103.197
+122827.2599940521 3.6487567 -1103.2761
+122828.2599941024 3.6487567 -1103.2168
+122829.2599941527 3.6487961 -1103.2168
+122830.259994203 3.6488354 -1103.2959
+122831.2599942533 3.6487174 -1103.2366
+122832.2599943036 3.6487174 -1103.2168
+122833.2599943539 3.6487567 -1103.197
+122834.2599944042 3.6487961 -1103.3156
+122835.2599944544 3.6487567 -1103.197
+122836.2599945047 3.6486781 -1103.2366
+122837.259994555 3.6487174 -1103.197
+122838.2599946053 3.6486387 -1103.2168
+122839.2599946556 3.6486781 -1103.197
+122840.2599947059 3.6485994 -1103.2168
+122841.2599947562 3.6485994 -1103.2366
+122842.2599948065 3.6486387 -1103.2761
+122843.2599948568 3.6486781 -1103.2761
+122844.2599949071 3.6485994 -1103.2366
+122845.2599949574 3.6486781 -1103.2366
+122846.2599950077 3.6485994 -1103.3156
+122847.2599950579 3.64856 -1103.2761
+122848.2599951082 3.6485994 -1103.2366
+122849.2599951585 3.6486387 -1103.2761
+122850.2599952088 3.6485994 -1103.2366
+122851.2599952591 3.6485994 -1103.3551
+122852.2599953094 3.6485205 -1103.2761
+122853.2599953597 3.64856 -1103.2959
+122854.25999541 3.6484418 -1103.2366
+122855.2599954603 3.6484811 -1103.3156
+122856.2599955106 3.6485205 -1103.2562
+122857.2599955609 3.6485205 -1103.1774
+122858.2599956112 3.6485205 -1103.3353
+122859.2599956614 3.64856 -1103.2366
+122860.2599957117 3.6484025 -1103.3156
+122861.259995762 3.6485205 -1103.1774
+122862.2599958123 3.6484811 -1103.2366
+122863.2599958626 3.6484811 -1103.2761
+122864.2599959129 3.6484025 -1103.1774
+122865.2599959632 3.6484025 -1103.2366
+122866.2599960135 3.6483631 -1103.2562
+122867.2599960638 3.6483238 -1103.197
+122868.2599961141 3.6484025 -1103.2562
+122869.2599961644 3.6484418 -1103.2168
+122870.2599962146 3.6484025 -1103.2168
+122871.2599962649 3.6483631 -1103.2562
+122872.2599963152 3.6483631 -1103.197
+122873.2599963655 3.6482844 -1103.197
+122874.2599964158 3.6483238 -1103.2168
+122875.2599964661 3.6482451 -1103.2562
+122876.2599965164 3.6483238 -1103.3353
+122877.2599965667 3.6483238 -1103.2168
+122878.259996617 3.6483238 -1103.2761
+122879.2599966673 3.6482844 -1103.197
+122880.2599967176 3.6483238 -1103.3353
+122881.2599967679 3.6482055 -1103.2168
+122882.2599968181 3.6482451 -1103.2562
+122883.2599968684 3.6482451 -1103.2959
+122884.2599969187 3.6481662 -1103.2366
+122885.259996969 3.6482451 -1103.2366
+122886.2599970193 3.6482844 -1103.2761
+122887.2599970696 3.6482451 -1103.2366
+122888.2599971199 3.6481662 -1103.197
+122889.2599971702 3.6481268 -1103.2562
+122890.2599972205 3.6481662 -1103.2366
+122891.2599972708 3.6482055 -1103.197
+122892.2599973211 3.6481268 -1103.2562
+122893.2599973714 3.6481268 -1103.2366
+122894.2599974216 3.6481268 -1103.197
+122895.2599974719 3.6481268 -1103.2761
+122896.2599975222 3.6481662 -1103.3551
+122897.2599975725 3.6481268 -1103.2168
+122898.2599976228 3.6480482 -1103.1774
+122899.2599976731 3.6480482 -1103.2168
+122900.2599977234 3.6481268 -1103.2168
+122901.2599977737 3.6480482 -1103.2168
+122902.259997824 3.6480482 -1103.2959
+122903.2599978743 3.6480088 -1103.2761
+122904.2599979246 3.6480088 -1103.197
+122905.2599979748 3.6480482 -1103.2562
+122906.2599980251 3.6480482 -1103.2959
+122907.2599980754 3.6479301 -1103.2366
+122908.2599981257 3.6480875 -1103.197
+122909.259998176 3.6479301 -1103.2959
+122910.2599982263 3.6479301 -1103.2761
+122911.2599982766 3.6480088 -1103.197
+122912.2599983269 3.6479301 -1103.3156
+122913.2599983772 3.6479695 -1103.3353
+122914.2599984275 3.6479301 -1103.2959
+122915.2599984778 3.6479695 -1103.2168
+122916.2599985281 3.6479695 -1103.197
+122917.2599985783 3.6479301 -1103.2562
+122918.2599986286 3.6478906 -1103.2959
+122919.2599986789 3.6478119 -1103.2168
+122920.2599987292 3.6478512 -1103.2562
+122921.2599987795 3.6478512 -1103.197
+122922.2599988298 3.6479301 -1103.1774
+122923.2599988801 3.6478906 -1103.2366
+122924.2599989304 3.6478512 -1103.2761
+122925.2599989807 3.6479301 -1103.2366
+122926.259999031 3.6477726 -1103.2959
+122927.2599990813 3.6478119 -1103.2168
+122928.2599991316 3.6478119 -1103.2562
+122929.2599991818 3.6478512 -1103.2366
+122930.2599992321 3.6476939 -1103.2168
+122931.2599992824 3.6476939 -1103.197
+122932.2599993327 3.6477726 -1103.1576
+122933.259999383 3.6478119 -1103.2761
+122934.2599994333 3.6478119 -1103.2761
+122935.2599994836 3.6477726 -1103.2761
+122936.2599995339 3.6476545 -1103.3156
+122937.2599995842 3.6476939 -1103.3156
+122938.2599996345 3.6477332 -1103.2366
+122939.2599996848 3.6478119 -1103.2959
+122940.259999735 3.6477332 -1103.2959
+122941.2599997853 3.6477726 -1103.2761
+122942.2599998356 3.6476939 -1103.2366
+122943.2599998859 3.6475756 -1103.2168
+122944.2599999362 3.6476545 -1103.3156
+122945.2599999865 3.6475756 -1103.2168
+122946.2600000368 3.6476939 -1103.2366
+122947.2600000871 3.6476939 -1103.3156
+122948.2600001374 3.647615 -1103.2562
+122949.2600001877 3.6476545 -1103.2562
+122950.260000238 3.647615 -1103.2761
+122951.2600002883 3.6475756 -1103.2366
+122952.2600003385 3.647615 -1103.2761
+122953.2600003888 3.6475756 -1103.2366
+122954.2600004391 3.6475756 -1103.3749
+122955.2600004894 3.6475756 -1103.1774
+122956.2600005397 3.6475756 -1103.2761
+122957.26000059 3.6475756 -1103.3156
+122958.2600006403 3.6475756 -1103.2168
+122959.2600006906 3.647615 -1103.2959
+122960.2600007409 3.6474576 -1103.2168
+122961.2600007912 3.6474576 -1103.2761
+122962.2600008415 3.6474576 -1103.2761
+122963.2600008918 3.6474183 -1103.2959
+122964.260000942 3.6474183 -1103.1378
+122965.2600009923 3.6475363 -1103.197
+122966.2600010426 3.6474183 -1103.2761
+122967.2600010929 3.6475363 -1103.2959
+122968.2600011432 3.6473789 -1103.1774
+122969.2600011935 3.6473789 -1103.2959
+122970.2600012438 3.6474183 -1103.2562
+122971.2600012941 3.6473789 -1103.2168
+122972.2600013444 3.6473 -1103.2562
+122973.2600013947 3.6473396 -1103.2562
+122974.260001445 3.6473789 -1103.2761
+122975.2600014952 3.6474576 -1103.197
+122976.2600015455 3.6474183 -1103.2562
+122977.2600015958 3.6473396 -1103.2366
+122978.2600016461 3.6472607 -1103.197
+122979.2600016964 3.6473 -1103.2168
+122980.2600017467 3.6473396 -1103.2168
+122981.260001797 3.6473396 -1103.2959
+122982.2600018473 3.6472607 -1103.3749
+122983.2600018976 3.6473 -1103.2562
+122984.2600019479 3.6472607 -1103.3156
+122985.2600019982 3.647182 -1103.2366
+122986.2600020485 3.6472607 -1103.2761
+122987.2600020987 3.647182 -1103.2761
+122988.260002149 3.647182 -1103.2562
+122989.2600021993 3.6473 -1103.197
+122990.2600022496 3.6472607 -1103.197
+122991.2600022999 3.6472213 -1103.2562
+122992.2600023502 3.647182 -1103.2959
+122993.2600024005 3.6473 -1103.2366
+122994.2600024508 3.647182 -1103.2761
+122995.2600025011 3.647182 -1103.2761
+122996.2600025514 3.6471033 -1103.2761
+122997.2600026017 3.6471426 -1103.3353
+122998.260002652 3.6471426 -1103.3156
+122999.2600027022 3.6471426 -1103.2562
+123000.2600027525 3.647182 -1103.197
+123001.2600028028 3.6471033 -1103.197
+123002.2600028531 3.6471033 -1103.197
+123003.2600029034 3.6471426 -1103.2959
+123004.2600029537 3.647064 -1103.3156
+123005.260003004 3.6471033 -1103.2562
+123006.2600030543 3.6471033 -1103.2562
+123007.2600031046 3.6471033 -1103.2366
+123008.2600031549 3.647064 -1103.3749
+123009.2600032052 3.6469851 -1103.2761
+123010.2600032554 3.6470246 -1103.2959
+123011.2600033057 3.6469457 -1103.3749
+123012.260003356 3.6470246 -1103.2168
+123013.2600034063 3.6470246 -1103.2366
+123014.2600034566 3.6470246 -1103.2366
+123015.2600035069 3.6469457 -1103.2761
+123016.2600035572 3.6469457 -1103.197
+123017.2600036075 3.6470246 -1103.2761
+123018.2600036578 3.6470246 -1103.2959
+123019.2600037081 3.646867 -1103.2366
+123020.2600037584 3.6469851 -1103.197
+123021.2600038087 3.6469064 -1103.1774
+123022.2600038589 3.6469064 -1103.2168
+123023.2600039092 3.6469064 -1103.197
+123024.2600039595 3.646867 -1103.2761
+123025.2600040098 3.646867 -1103.197
+123026.2600040601 3.6469064 -1103.197
+123027.2600041104 3.646867 -1103.197
+123028.2600041607 3.6469064 -1103.1576
+123029.260004211 3.6468277 -1103.2959
+123030.2600042613 3.6469457 -1103.2761
+123031.2600043116 3.6469457 -1103.2761
+123032.2600043619 3.6469064 -1103.2562
+123033.2600044122 3.6467097 -1103.2366
+123034.2600044624 3.6467884 -1103.2168
+123035.2600045127 3.646749 -1103.1576
+123036.260004563 3.6468277 -1103.1774
+123037.2600046133 3.646867 -1103.2959
+123038.2600046636 3.6467097 -1103.2761
+123039.2600047139 3.646749 -1103.2168
+123040.2600047642 3.6467097 -1103.2168
+123041.2600048145 3.646749 -1103.2959
+123042.2600048648 3.6467097 -1103.3353
+123043.2600049151 3.646749 -1103.3156
+123044.2600049654 3.6466701 -1103.2761
+123045.2600050156 3.6467097 -1103.2761
+123046.2600050659 3.6466701 -1103.1576
+123047.2600051162 3.6465914 -1103.1774
+123048.2600051665 3.6466308 -1103.2959
+123049.2600052168 3.6466701 -1103.2168
+123050.2600052671 3.646749 -1103.2761
+123051.2600053174 3.6466701 -1103.1774
+123052.2600053677 3.6466308 -1103.3156
+123053.260005418 3.6465521 -1103.197
+123054.2600054683 3.6465521 -1103.1774
+123055.2600055186 3.6465914 -1103.2959
+123056.2600055689 3.6465914 -1103.1774
+123057.2600056191 3.6465521 -1103.2366
+123058.2600056694 3.6466308 -1103.2761
+123059.2600057197 3.6465127 -1103.2959
+123060.26000577 3.6465914 -1103.2959
+123061.2600058203 3.6465127 -1103.2761
+123062.2600058706 3.6467097 -1103.2168
+123063.2600059209 3.6466308 -1103.2959
+123064.2600059712 3.6465914 -1103.1774
+123065.2600060215 3.6465127 -1103.197
+123066.2600060718 3.6465127 -1103.2761
+123067.2600061221 3.6464734 -1103.2366
+123068.2600061724 3.6463947 -1103.3551
+123069.2600062226 3.6463947 -1103.2168
+123070.2600062729 3.6464341 -1103.197
+123071.2600063232 3.6465127 -1103.197
+123072.2600063735 3.6464734 -1103.2761
+123073.2600064238 3.6464341 -1103.2366
+123074.2600064741 3.6464734 -1103.197
+123075.2600065244 3.6464341 -1103.2959
+123076.2600065747 3.6463947 -1103.1774
+123077.260006625 3.6464734 -1103.2562
+123078.2600066753 3.6463552 -1103.2761
+123079.2600067256 3.6464341 -1103.3156
+123080.2600067758 3.6463552 -1103.3353
+123081.2600068261 3.6464341 -1103.2761
+123082.2600068764 3.6463158 -1103.2959
+123083.2600069267 3.6464734 -1103.2761
+123084.260006977 3.6463552 -1103.2168
+123085.2600070273 3.6464341 -1103.2168
+123086.2600070776 3.6462765 -1103.2168
+123087.2600071279 3.6463552 -1103.2959
+123088.2600071782 3.6463552 -1103.2959
+123089.2600072285 3.6463552 -1103.3156
+123090.2600072788 3.6463158 -1103.1576
+123091.2600073291 3.6461978 -1103.2168
+123092.2600073793 3.6461978 -1103.197
+123093.2600074296 3.6463158 -1103.2959
+123094.2600074799 3.6461585 -1103.2761
+123095.2600075302 3.6462371 -1103.2562
+123096.2600075805 3.6462371 -1103.1774
+123097.2600076308 3.6462371 -1103.1774
+123098.2600076811 3.6461978 -1103.2168
+123099.2600077314 3.6462371 -1103.2562
+123100.2600077817 3.6461585 -1103.197
+123101.260007832 3.6461978 -1103.2168
+123102.2600078823 3.6461585 -1103.1378
+123103.2600079325 3.6461191 -1103.2959
+123104.2600079828 3.6461191 -1103.1774
+123105.2600080331 3.6461585 -1103.2366
+123106.2600080834 3.6461585 -1103.2761
+123107.2600081337 3.6461191 -1103.2761
+123108.260008184 3.6460009 -1103.197
+123109.2600082343 3.6461191 -1103.2168
+123110.2600082846 3.6460798 -1103.2562
+123111.2600083349 3.6461191 -1103.3551
+123112.2600083852 3.6461191 -1103.3551
+123113.2600084355 3.6461191 -1103.2366
+123114.2600084858 3.6460009 -1103.3156
+123115.260008536 3.6460798 -1103.1774
+123116.2600085863 3.6460009 -1103.2562
+123117.2600086366 3.6460402 -1103.2761
+123118.2600086869 3.6460402 -1103.1774
+123119.2600087372 3.6460798 -1103.2562
+123120.2600087875 3.6459615 -1103.197
+123121.2600088378 3.6460402 -1103.2168
+123122.2600088881 3.6459615 -1103.2168
+123123.2600089384 3.6460009 -1103.2366
+123124.2600089887 3.6459222 -1103.2959
+123125.260009039 3.6460009 -1103.2562
+123126.2600090893 3.6458828 -1103.2562
+123127.2600091395 3.6459222 -1103.2761
+123128.2600091898 3.6458042 -1103.2562
+123129.2600092401 3.6460009 -1103.2761
+123130.2600092904 3.6459222 -1103.197
+123131.2600093407 3.6459222 -1103.2562
+123132.260009391 3.6460009 -1103.2959
+123133.2600094413 3.6458828 -1103.2761
+123134.2600094916 3.6457646 -1103.2366
+123135.2600095419 3.6458828 -1103.2562
+123136.2600095922 3.6458828 -1103.2562
+123137.2600096425 3.6458042 -1103.2366
+123138.2600096927 3.6457646 -1103.3156
+123139.260009743 3.6458828 -1103.1774
+123140.2600097933 3.6458828 -1103.2168
+123141.2600098436 3.6458435 -1103.2562
+123142.2600098939 3.6458042 -1103.197
+123143.2600099442 3.6458435 -1103.2761
+123144.2600099945 3.6457646 -1103.197
+123145.2600100448 3.6457646 -1103.2959
+123146.2600100951 3.6458042 -1103.3156
+123147.2600101454 3.6457646 -1103.3551
+123148.2600101957 3.6458042 -1103.2761
+123149.260010246 3.6458042 -1103.2761
+123150.2600102962 3.6457646 -1103.2761
+123151.2600103465 3.6457253 -1103.2366
+123152.2600103968 3.6456859 -1103.2761
+123153.2600104471 3.6457253 -1103.197
+123154.2600104974 3.6457646 -1103.2366
+123155.2600105477 3.6456859 -1103.2366
+123156.260010598 3.6456859 -1103.2959
+123157.2600106483 3.6455679 -1103.2959
+123158.2600106986 3.6455679 -1103.1576
+123159.2600107489 3.6455679 -1103.2562
+123160.2600107992 3.6455286 -1103.2562
+123161.2600108495 3.6456466 -1103.2168
+123162.2600108997 3.6456072 -1103.2366
+123163.26001095 3.6456072 -1103.2366
+123164.2600110003 3.6456859 -1103.1378
+123165.2600110506 3.6456466 -1103.2761
+123166.2600111009 3.6455286 -1103.2959
+123167.2600111512 3.6456466 -1103.2366
+123168.2600112015 3.6455286 -1103.3156
+123169.2600112518 3.6454103 -1103.3353
+123170.2600113021 3.6456466 -1103.3749
+123171.2600113524 3.6454892 -1103.1182
+123172.2600114027 3.6456466 -1103.2761
+123173.2600114529 3.6455286 -1103.1576
+123174.2600115032 3.6455286 -1103.2562
+123175.2600115535 3.6454496 -1103.2366
+123176.2600116038 3.6454892 -1103.3156
+123177.2600116541 3.645371 -1103.2366
+123178.2600117044 3.6454892 -1103.2562
+123179.2600117547 3.6454496 -1103.2366
+123180.260011805 3.6455679 -1103.2168
+123181.2600118553 3.6454892 -1103.197
+123182.2600119056 3.6453316 -1103.2761
+123183.2600119559 3.6454892 -1103.2761
+123184.2600120062 3.645371 -1103.2562
+123185.2600120564 3.6454103 -1103.2366
+123186.2600121067 3.645371 -1103.2366
+123187.260012157 3.6454496 -1103.1774
+123188.2600122073 3.645371 -1103.2168
+123189.2600122576 3.6454103 -1103.3353
+123190.2600123079 3.6454103 -1103.2562
+123191.2600123582 3.6453316 -1103.197
+123192.2600124085 3.6453316 -1103.2168
+123193.2600124588 3.6453316 -1103.2959
+123194.2600125091 3.6452923 -1103.197
+123195.2600125594 3.645371 -1103.2366
+123196.2600126097 3.6452529 -1103.2366
+123197.2600126599 3.6452923 -1103.1774
+123198.2600127102 3.6453316 -1103.2168
+123199.2600127605 3.6452923 -1103.2168
+123200.2600128108 3.6452136 -1103.2366
+123201.2600128611 3.6452923 -1103.1576
+123202.2600129114 3.6453316 -1103.2761
+123203.2600129617 3.6452529 -1103.2366
+123204.260013012 3.6452529 -1103.197
+123205.2600130623 3.6452529 -1103.2562
+123206.2600131126 3.6452529 -1103.2366
+123207.2600131629 3.6452136 -1103.2168
+123208.2600132131 3.6452136 -1103.197
+123209.2600132634 3.6452529 -1103.197
+123210.2600133137 3.6451743 -1103.2366
+123211.260013364 3.6450953 -1103.1576
+123212.2600134143 3.6451347 -1103.1774
+123213.2600134646 3.6451347 -1103.2959
+123214.2600135149 3.6450953 -1103.197
+123215.2600135652 3.6450953 -1103.2366
+123216.2600136155 3.6450953 -1103.197
+123217.2600136658 3.6450953 -1103.2562
+123218.2600137161 3.6450953 -1103.2168
+123219.2600137664 3.6451347 -1103.1774
+123220.2600138166 3.645056 -1103.1576
+123221.2600138669 3.6450953 -1103.2562
+123222.2600139172 3.6451347 -1103.2168
+123223.2600139675 3.6451347 -1103.2168
+123224.2600140178 3.6449773 -1103.197
+123225.2600140681 3.6449773 -1103.2366
+123226.2600141184 3.6450953 -1103.2562
+123227.2600141687 3.6450167 -1103.197
+123228.260014219 3.6448987 -1103.2959
+123229.2600142693 3.6449773 -1103.1576
+123230.2600143196 3.644938 -1103.2761
+123231.2600143699 3.644938 -1103.2761
+123232.2600144201 3.6448987 -1103.2562
+123233.2600144704 3.6449773 -1103.2959
+123234.2600145207 3.6449773 -1103.2562
+123235.260014571 3.6448593 -1103.2761
+123236.2600146213 3.644938 -1103.1774
+123237.2600146716 3.6448987 -1103.2562
+123238.2600147219 3.6449773 -1103.2168
+123239.2600147722 3.6448593 -1103.2562
+123240.2600148225 3.6448593 -1103.2562
+123241.2600148728 3.6448987 -1103.197
+123242.2600149231 3.6448987 -1103.2366
+123243.2600149733 3.6448593 -1103.2168
+123244.2600150236 3.6448593 -1103.2959
+123245.2600150739 3.6448593 -1103.2366
+123246.2600151242 3.6448987 -1103.2168
+123247.2600151745 3.6448197 -1103.197
+123248.2600152248 3.6448593 -1103.2761
+123249.2600152751 3.6447017 -1103.3945
+123250.2600153254 3.6448197 -1103.3156
+123251.2600153757 3.6448593 -1103.2562
+123252.260015426 3.6447411 -1103.3156
+123253.2600154763 3.6447017 -1103.2761
+123254.2600155266 3.6448987 -1103.3156
+123255.2600155768 3.6447411 -1103.1774
+123256.2600156271 3.6446624 -1103.2562
+123257.2600156774 3.6447017 -1103.197
+123258.2600157277 3.6447804 -1103.2959
+123259.260015778 3.6447017 -1103.197
+123260.2600158283 3.6447411 -1103.2959
+123261.2600158786 3.6447017 -1103.2168
+123262.2600159289 3.6447017 -1103.1774
+123263.2600159792 3.6446624 -1103.197
+123264.2600160295 3.6447017 -1103.3156
+123265.2600160798 3.644623 -1103.0984
+123266.2600161301 3.644623 -1103.2168
+123267.2600161803 3.6446624 -1103.2168
+123268.2600162306 3.644623 -1103.2761
+123269.2600162809 3.6445444 -1103.2959
+123270.2600163312 3.6445837 -1103.1378
+123271.2600163815 3.6446624 -1103.2761
+123272.2600164318 3.6445444 -1103.2366
+123273.2600164821 3.6445837 -1103.2562
+123274.2600165324 3.644623 -1103.2366
+123275.2600165827 3.6446624 -1103.2562
+123276.260016633 3.6445444 -1103.3156
+123277.2600166833 3.6445837 -1103.1576
+123278.2600167335 3.6445837 -1103.1576
+123279.2600167838 3.6444261 -1103.2761
+123280.2600168341 3.6445048 -1103.2761
+123281.2600168844 3.6445444 -1103.197
+123282.2600169347 3.6445048 -1103.2562
+123283.260016985 3.6445444 -1103.2761
+123284.2600170353 3.6444261 -1103.197
+123285.2600170856 3.6443868 -1103.197
+123286.2600171359 3.6445048 -1103.1774
+123287.2600171862 3.6443868 -1103.2959
+123288.2600172365 3.6444654 -1103.2168
+123289.2600172868 3.6443868 -1103.2959
+123290.260017337 3.6443868 -1103.1774
+123291.2600173873 3.6445048 -1103.2168
+123292.2600174376 3.6443868 -1103.2366
+123293.2600174879 3.6444261 -1103.2168
+123294.2600175382 3.6443474 -1103.1774
+123295.2600175885 3.6443474 -1103.2959
+123296.2600176388 3.6444654 -1103.197
+123297.2600176891 3.6443474 -1103.197
+123298.2600177394 3.6443081 -1103.2168
+123299.2600177897 3.6442688 -1103.3551
+123300.26001784 3.6442688 -1103.2562
+123301.2600178903 3.6443868 -1103.2168
+123302.2600179405 3.6443081 -1103.2562
+123303.2600179908 3.6443081 -1103.1378
+123304.2600180411 3.6442688 -1103.1774
+123305.2600180914 3.6442688 -1103.2761
+123306.2600181417 3.6443474 -1103.2366
+123307.260018192 3.6443081 -1103.2562
+123308.2600182423 3.6442688 -1103.2168
+123309.2600182926 3.6442688 -1103.3353
+123310.2600183429 3.6442688 -1103.2366
+123311.2600183932 3.6443474 -1103.2168
+123312.2600184435 3.6441898 -1103.2366
+123313.2600184937 3.6442688 -1103.2761
+123314.260018544 3.6442688 -1103.2959
+123315.2600185943 3.6442688 -1103.3353
+123316.2600186446 3.6443474 -1103.2366
+123317.2600186949 3.6441898 -1103.2168
+123318.2600187452 3.6440718 -1103.197
+123319.2600187955 3.6441505 -1103.2562
+123320.2600188458 3.6441898 -1103.3353
+123321.2600188961 3.6441898 -1103.2168
+123322.2600189464 3.6441505 -1103.2168
+123323.2600189967 3.6441112 -1103.2761
+123324.260019047 3.6440718 -1103.2959
+123325.2600190972 3.6441112 -1103.2562
+123326.2600191475 3.6441898 -1103.1774
+123327.2600191978 3.6441112 -1103.2562
+123328.2600192481 3.6440718 -1103.197
+123329.2600192984 3.6440325 -1103.2168
+123330.2600193487 3.6440325 -1103.2761
+123331.260019399 3.6439931 -1103.2366
+123332.2600194493 3.6439931 -1103.2168
+123333.2600194996 3.6439931 -1103.1378
+123334.2600195499 3.6440718 -1103.2761
+123335.2600196002 3.6440718 -1103.2761
+123336.2600196505 3.6439538 -1103.197
+123337.2600197007 3.6440325 -1103.2366
+123338.260019751 3.6439142 -1103.2761
+123339.2600198013 3.6439538 -1103.2562
+123340.2600198516 3.6439538 -1103.3156
+123341.2600199019 3.6438749 -1103.2168
+123342.2600199522 3.6439142 -1103.1774
+123343.2600200025 3.6439538 -1103.2168
+123344.2600200528 3.6438749 -1103.2366
+123345.2600201031 3.6439538 -1103.2562
+123346.2600201534 3.6439142 -1103.2366
+123347.2600202037 3.6438749 -1103.2959
+123348.2600202539 3.6439931 -1103.2562
+123349.2600203042 3.6438355 -1103.2761
+123350.2600203545 3.6438749 -1103.2959
+123351.2600204048 3.6438749 -1103.2168
+123352.2600204551 3.6439538 -1103.2959
+123353.2600205054 3.6439142 -1103.2168
+123354.2600205557 3.6439142 -1103.2959
+123355.260020606 3.6438355 -1103.1774
+123356.2600206563 3.6437962 -1103.2562
+123357.2600207066 3.6438749 -1103.1774
+123358.2600207569 3.6437962 -1103.1576
+123359.2600208072 3.6437569 -1103.2761
+123360.2600208574 3.6438749 -1103.2761
+123361.2600209077 3.6437962 -1103.2562
+123362.260020958 3.6437569 -1103.2959
+123363.2600210083 3.6437569 -1103.2168
+123364.2600210586 3.6437569 -1103.2366
+123365.2600211089 3.6437175 -1103.2761
+123366.2600211592 3.6437569 -1103.2959
+123367.2600212095 3.6436782 -1103.2366
+123368.2600212598 3.6437175 -1103.1378
+123369.2600213101 3.6437569 -1103.2562
+123370.2600213604 3.6436782 -1103.2562
+123371.2600214107 3.6436782 -1103.2562
+123372.2600214609 3.6437175 -1103.2562
+123373.2600215112 3.6436782 -1103.3156
+123374.2600215615 3.6435993 -1103.3156
+123375.2600216118 3.6435993 -1103.1576
+123376.2600216621 3.6435599 -1103.3353
+123377.2600217124 3.6436782 -1103.2366
+123378.2600217627 3.6436782 -1103.2761
+123379.260021813 3.6436782 -1103.2761
+123380.2600218633 3.6435599 -1103.2761
+123381.2600219136 3.6436388 -1103.2168
+123382.2600219639 3.6435206 -1103.197
+123383.2600220141 3.6435599 -1103.2959
+123384.2600220644 3.6435993 -1103.197
+123385.2600221147 3.6435599 -1103.2168
+123386.260022165 3.6435993 -1103.3749
+123387.2600222153 3.6435599 -1103.2366
+123388.2600222656 3.6435599 -1103.2366
+123389.2600223159 3.6435599 -1103.2959
+123390.2600223662 3.6434419 -1103.2959
+123391.2600224165 3.6435993 -1103.2959
+123392.2600224668 3.6434813 -1103.1774
+123393.2600225171 3.6434419 -1103.1774
+123394.2600225674 3.6434419 -1103.2761
+123395.2600226176 3.6434813 -1103.197
+123396.2600226679 3.6434813 -1103.197
+123397.2600227182 3.6434813 -1103.2366
+123398.2600227685 3.6434813 -1103.1576
+123399.2600228188 3.6434419 -1103.2761
+123400.2600228691 3.6434813 -1103.197
+123401.2600229194 3.6434813 -1103.1774
+123402.2600229697 3.6434026 -1103.1576
+123403.26002302 3.6434026 -1103.2168
+123404.2600230703 3.6433632 -1103.2761
+123405.2600231206 3.6433632 -1103.197
+123406.2600231708 3.6434419 -1103.2959
+123407.2600232211 3.6434419 -1103.2168
+123408.2600232714 3.6433239 -1103.2366
+123409.2600233217 3.6433632 -1103.2168
+123410.260023372 3.6433632 -1103.2366
+123411.2600234223 3.6433632 -1103.2366
+123412.2600234726 3.6432843 -1103.1378
+123413.2600235229 3.6433632 -1103.2959
+123414.2600235732 3.6432843 -1103.2366
+123415.2600236235 3.6433632 -1103.1774
+123416.2600236738 3.643245 -1103.1774
+123417.2600237241 3.643245 -1103.2168
+123418.2600237743 3.6432056 -1103.1576
+123419.2600238246 3.6432843 -1103.1774
+123420.2600238749 3.6432843 -1103.2168
+123421.2600239252 3.6432843 -1103.2562
+123422.2600239755 3.6431663 -1103.2168
+123423.2600240258 3.6432843 -1103.2562
+123424.2600240761 3.643245 -1103.2959
+123425.2600241264 3.6432843 -1103.2959
+123426.2600241767 3.643127 -1103.1576
+123427.260024227 3.6431663 -1103.2168
+123428.2600242773 3.6431663 -1103.1182
+123429.2600243276 3.6432056 -1103.2959
+123430.2600243778 3.6430876 -1103.2959
+123431.2600244281 3.6432056 -1103.2959
+123432.2600244784 3.643127 -1103.2168
+123433.2600245287 3.6430876 -1103.2959
+123434.260024579 3.6430876 -1103.2366
+123435.2600246293 3.6430089 -1103.2366
+123436.2600246796 3.6430089 -1103.3156
+123437.2600247299 3.6430089 -1103.1774
+123438.2600247802 3.6430876 -1103.2366
+123439.2600248305 3.6430876 -1103.2761
+123440.2600248808 3.6430089 -1103.197
+123441.260024931 3.6430876 -1103.197
+123442.2600249813 3.64293 -1103.2366
+123443.2600250316 3.6430089 -1103.3353
+123444.2600250819 3.6430089 -1103.2366
+123445.2600251322 3.6429694 -1103.1378
+123446.2600251825 3.64293 -1103.2562
+123447.2600252328 3.6430483 -1103.3156
+123448.2600252831 3.6430089 -1103.3156
+123449.2600253334 3.6430089 -1103.1576
+123450.2600253837 3.6429694 -1103.2168
+123451.260025434 3.6430089 -1103.197
+123452.2600254843 3.6428907 -1103.2562
+123453.2600255345 3.6428907 -1103.2761
+123454.2600255848 3.6428907 -1103.197
+123455.2600256351 3.6428907 -1103.2366
+123456.2600256854 3.6429694 -1103.1774
+123457.2600257357 3.6430089 -1103.2959
+123458.260025786 3.64293 -1103.197
+123459.2600258363 3.6430089 -1103.2761
+123460.2600258866 3.642812 -1103.3749
+123461.2600259369 3.6428514 -1103.2366
+123462.2600259872 3.6428514 -1103.2168
+123463.2600260375 3.642812 -1103.2761
+123464.2600260878 3.6428514 -1103.3156
+123465.260026138 3.642694 -1103.2562
+123466.2600261883 3.6428514 -1103.2168
+123467.2600262386 3.6427727 -1103.197
+123468.2600262889 3.642812 -1103.1774
+123469.2600263392 3.6428907 -1103.197
+123470.2600263895 3.6428907 -1103.2366
+123471.2600264398 3.6428514 -1103.1576
+123472.2600264901 3.6428514 -1103.2562
+123473.2600265404 3.6428514 -1103.2168
+123474.2600265907 3.6427727 -1103.2959
+123475.260026641 3.6427333 -1103.2959
+123476.2600266912 3.6427333 -1103.2168
+123477.2600267415 3.642812 -1103.1774
+123478.2600267918 3.6427727 -1103.3353
+123479.2600268421 3.6426544 -1103.197
+123480.2600268924 3.642694 -1103.3156
+123481.2600269427 3.6427333 -1103.2366
+123482.260026993 3.6426151 -1103.2366
+123483.2600270433 3.6426544 -1103.197
+123484.2600270936 3.6425757 -1103.2366
+123485.2600271439 3.6425757 -1103.197
+123486.2600271942 3.6426151 -1103.2168
+123487.2600272445 3.6426151 -1103.3353
+123488.2600272947 3.6426151 -1103.3156
+123489.260027345 3.642694 -1103.2366
+123490.2600273953 3.6426151 -1103.197
+123491.2600274456 3.6425364 -1103.2761
+123492.2600274959 3.6425364 -1103.2959
+123493.2600275462 3.6425364 -1103.2366
+123494.2600275965 3.6426544 -1103.2366
+123495.2600276468 3.6425364 -1103.2562
+123496.2600276971 3.6426151 -1103.2761
+123497.2600277474 3.6424577 -1103.2761
+123498.2600277977 3.6424184 -1103.2959
+123499.260027848 3.6425757 -1103.1774
+123500.2600278982 3.6425757 -1103.3156
+123501.2600279485 3.6424577 -1103.2366
+123502.2600279988 3.6425757 -1103.2761
+123503.2600280491 3.6424577 -1103.2366
+123504.2600280994 3.6424577 -1103.197
+123505.2600281497 3.6423788 -1103.2761
+123506.2600282 3.6424184 -1103.2168
+123507.2600282503 3.6424971 -1103.2761
+123508.2600283006 3.6423788 -1103.2761
+123509.2600283509 3.6424971 -1103.3353
+123510.2600284012 3.6423001 -1103.2168
+123511.2600284514 3.6423395 -1103.1378
+123512.2600285017 3.6424971 -1103.2168
+123513.260028552 3.6424184 -1103.2168
+123514.2600286023 3.6423395 -1103.2562
+123515.2600286526 3.6423788 -1103.2761
+123516.2600287029 3.6423001 -1103.1182
+123517.2600287532 3.6424184 -1103.2562
+123518.2600288035 3.6423395 -1103.2562
+123519.2600288538 3.6423395 -1103.2168
+123520.2600289041 3.6423788 -1103.2959
+123521.2600289544 3.6423395 -1103.197
+123522.2600290047 3.6423788 -1103.3353
+123523.2600290549 3.6423395 -1103.2562
+123524.2600291052 3.6423001 -1103.2959
+123525.2600291555 3.6423395 -1103.197
+123526.2600292058 3.6422608 -1103.2168
+123527.2600292561 3.6422215 -1103.2761
+123528.2600293064 3.6423001 -1103.1774
+123529.2600293567 3.6421821 -1103.3353
+123530.260029407 3.6422215 -1103.2562
+123531.2600294573 3.6422215 -1103.3156
+123532.2600295076 3.6422215 -1103.3353
+123533.2600295579 3.6422215 -1103.2168
+123534.2600296082 3.6422215 -1103.2168
+123535.2600296584 3.6423001 -1103.2959
+123536.2600297087 3.6421428 -1103.2366
+123537.260029759 3.6421428 -1103.2366
+123538.2600298093 3.6421428 -1103.2562
+123539.2600298596 3.6421428 -1103.2959
+123540.2600299099 3.6420245 -1103.2168
+123541.2600299602 3.6422215 -1103.2761
+123542.2600300105 3.6421821 -1103.197
+123543.2600300608 3.6421428 -1103.2168
+123544.2600301111 3.6420245 -1103.2366
+123545.2600301614 3.6421034 -1103.2562
+123546.2600302116 3.6420245 -1103.2366
+123547.2600302619 3.6421428 -1103.2959
+123548.2600303122 3.6421428 -1103.2366
+123549.2600303625 3.6420245 -1103.197
+123550.2600304128 3.6421034 -1103.2761
+123551.2600304631 3.6420245 -1103.2562
+123552.2600305134 3.6420245 -1103.2168
+123553.2600305637 3.6421428 -1103.2366
+123554.260030614 3.6419852 -1103.3156
+123555.2600306643 3.6421034 -1103.1182
+123556.2600307146 3.6419852 -1103.2562
+123557.2600307649 3.6420245 -1103.2366
+123558.2600308151 3.6419458 -1103.2366
+123559.2600308654 3.6418672 -1103.1774
+123560.2600309157 3.6420639 -1103.2959
+123561.260030966 3.6419458 -1103.2168
+123562.2600310163 3.6419458 -1103.197
+123563.2600310666 3.6419065 -1103.1774
+123564.2600311169 3.6418672 -1103.2959
+123565.2600311672 3.6419065 -1103.2366
+123566.2600312175 3.6419065 -1103.2761
+123567.2600312678 3.6418672 -1103.2562
+123568.2600313181 3.6419065 -1103.3156
+123569.2600313684 3.6418672 -1103.2562
+123570.2600314186 3.6418672 -1103.2562
+123571.2600314689 3.6418672 -1103.2959
+123572.2600315192 3.6418672 -1103.197
+123573.2600315695 3.6417489 -1103.3353
+123574.2600316198 3.6417885 -1103.2761
+123575.2600316701 3.6417885 -1103.2761
+123576.2600317204 3.6417885 -1103.1378
+123577.2600317707 3.6418278 -1103.2562
+123578.260031821 3.6418278 -1103.2366
+123579.2600318713 3.6416702 -1103.197
+123580.2600319216 3.6417885 -1103.2562
+123581.2600319718 3.6417489 -1103.2168
+123582.2600320221 3.6417096 -1103.2168
+123583.2600320724 3.6417885 -1103.2562
+123584.2600321227 3.6417489 -1103.2761
+123585.260032173 3.6416309 -1103.1576
+123586.2600322233 3.6417096 -1103.2168
+123587.2600322736 3.6417489 -1103.2562
+123588.2600323239 3.6416309 -1103.2562
+123589.2600323742 3.6416309 -1103.2761
+123590.2600324245 3.6417096 -1103.2562
+123591.2600324748 3.6417096 -1103.2168
+123592.2600325251 3.6416309 -1103.2959
+123593.2600325753 3.6416702 -1103.2761
+123594.2600326256 3.6416309 -1103.2168
+123595.2600326759 3.6416309 -1103.2562
+123596.2600327262 3.6416309 -1103.197
+123597.2600327765 3.6416309 -1103.3156
+123598.2600328268 3.6416309 -1103.2761
+123599.2600328771 3.6417096 -1103.197
+123600.2600329274 3.6415129 -1103.1774
+123601.2600329777 3.6414735 -1103.3353
+123602.260033028 3.6415915 -1103.1576
+123603.2600330783 3.6416309 -1103.3156
+123604.2600331286 3.6415522 -1103.2168
+123605.2600331788 3.6415522 -1103.1774
+123606.2600332291 3.6415522 -1103.2959
+123607.2600332794 3.6417096 -1103.2761
+123608.2600333297 3.641434 -1103.1774
+123609.26003338 3.6415522 -1103.2761
+123610.2600334303 3.641434 -1103.2562
+123611.2600334806 3.6415129 -1103.2168
+123612.2600335309 3.6414735 -1103.3353
+123613.2600335812 3.6414735 -1103.2761
+123614.2600336315 3.6413159 -1103.2761
+123615.2600336818 3.6414735 -1103.2366
+123616.260033732 3.641434 -1103.2959
+123617.2600337823 3.641434 -1103.197
+123618.2600338326 3.641434 -1103.2366
+123619.2600338829 3.6413553 -1103.2761
+123620.2600339332 3.6413553 -1103.2168
+123621.2600339835 3.641434 -1103.3156
+123622.2600340338 3.641434 -1103.2761
+123623.2600340841 3.6412766 -1103.1774
+123624.2600341344 3.6413946 -1103.1576
+123625.2600341847 3.641434 -1103.2562
+123626.260034235 3.6413553 -1103.3156
+123627.2600342853 3.6412766 -1103.2959
+123628.2600343355 3.6413159 -1103.1774
+123629.2600343858 3.6413553 -1103.2562
+123630.2600344361 3.6413553 -1103.2168
+123631.2600344864 3.6413946 -1103.2366
+123632.2600345367 3.6412766 -1103.2168
+123633.260034587 3.6413553 -1103.2959
+123634.2600346373 3.6413159 -1103.2366
+123635.2600346876 3.6412766 -1103.197
+123636.2600347379 3.6412373 -1103.2761
+123637.2600347882 3.6412766 -1103.2562
+123638.2600348385 3.6413159 -1103.0785
+123639.2600348888 3.6412766 -1103.2562
+123640.260034939 3.6412373 -1103.2366
+123641.2600349893 3.6411979 -1103.3551
+123642.2600350396 3.6412373 -1103.197
+123643.2600350899 3.6411586 -1103.197
+123644.2600351402 3.6411979 -1103.197
+123645.2600351905 3.6411979 -1103.2562
+123646.2600352408 3.6412766 -1103.3156
+123647.2600352911 3.641119 -1103.2366
+123648.2600353414 3.6411586 -1103.2562
+123649.2600353917 3.641119 -1103.2168
+123650.260035442 3.6411586 -1103.3156
+123651.2600354922 3.641119 -1103.2366
+123652.2600355425 3.6410403 -1103.2168
+123653.2600355928 3.6411586 -1103.2366
+123654.2600356431 3.6411586 -1103.197
+123655.2600356934 3.641119 -1103.197
+123656.2600357437 3.641001 -1103.2366
+123657.260035794 3.641001 -1103.2959
+123658.2600358443 3.641001 -1103.2562
+123659.2600358946 3.6410797 -1103.2562
+123660.2600359449 3.6410797 -1103.1182
+123661.2600359952 3.641119 -1103.3156
+123662.2600360455 3.6410403 -1103.2168
+123663.2600360957 3.641119 -1103.3156
+123664.260036146 3.641001 -1103.2366
+123665.2600361963 3.641001 -1103.3353
+123666.2600362466 3.6410403 -1103.2562
+123667.2600362969 3.641001 -1103.2959
+123668.2600363472 3.6409223 -1103.197
+123669.2600363975 3.6410403 -1103.2366
+123670.2600364478 3.6409223 -1103.2168
+123671.2600364981 3.6410403 -1103.2761
+123672.2600365484 3.6409616 -1103.2959
+123673.2600365987 3.640883 -1103.2366
+123674.260036649 3.6409223 -1103.2562
+123675.2600366992 3.6408436 -1103.2366
+123676.2600367495 3.6408436 -1103.2562
+123677.2600367998 3.640883 -1103.2761
+123678.2600368501 3.6409223 -1103.2562
+123679.2600369004 3.6409223 -1103.3156
+123680.2600369507 3.6409616 -1103.2562
+123681.260037001 3.640883 -1103.3353
+123682.2600370513 3.6407647 -1103.197
+123683.2600371016 3.640883 -1103.2761
+123684.2600371519 3.6407254 -1103.2562
+123685.2600372022 3.6409616 -1103.2959
+123686.2600372524 3.6408436 -1103.197
+123687.2600373027 3.6408041 -1103.2168
+123688.260037353 3.640883 -1103.197
+123689.2600374033 3.6408436 -1103.2366
+123690.2600374536 3.6407254 -1103.2959
+123691.2600375039 3.6408041 -1103.2562
+123692.2600375542 3.6407647 -1103.3156
+123693.2600376045 3.6408436 -1103.197
+123694.2600376548 3.6407254 -1103.2562
+123695.2600377051 3.640686 -1103.3749
+123696.2600377554 3.6407254 -1103.2366
+123697.2600378057 3.6407254 -1103.2959
+123698.2600378559 3.6407254 -1103.1774
+123699.2600379062 3.6406467 -1103.197
+123700.2600379565 3.6407254 -1103.2366
+123701.2600380068 3.6406467 -1103.2366
+123702.2600380571 3.6407254 -1103.2562
+123703.2600381074 3.6406467 -1103.3156
+123704.2600381577 3.6405284 -1103.3156
+123705.260038208 3.6406467 -1103.197
+123706.2600382583 3.6406074 -1103.2168
+123707.2600383086 3.6406467 -1103.2959
+123708.2600383589 3.6407647 -1103.2366
+123709.2600384091 3.640568 -1103.1576
+123710.2600384594 3.6405284 -1103.2761
+123711.2600385097 3.6406467 -1103.1774
+123712.26003856 3.640568 -1103.3551
+123713.2600386103 3.6405284 -1103.2761
+123714.2600386606 3.640568 -1103.197
+123715.2600387109 3.6404891 -1103.2168
+123716.2600387612 3.6406074 -1103.2562
+123717.2600388115 3.6405284 -1103.2366
+123718.2600388618 3.6404891 -1103.2168
+123719.2600389121 3.6404498 -1103.197
+123720.2600389624 3.6404498 -1103.2761
+123721.2600390126 3.6405284 -1103.2366
+123722.2600390629 3.6404498 -1103.3156
+123723.2600391132 3.6404891 -1103.1774
+123724.2600391635 3.6405284 -1103.2366
+123725.2600392138 3.6405284 -1103.2366
+123726.2600392641 3.6405284 -1103.2761
+123727.2600393144 3.6403317 -1103.2168
+123728.2600393647 3.6404498 -1103.197
+123729.260039415 3.6404104 -1103.2366
+123730.2600394653 3.6404104 -1103.0984
+123731.2600395156 3.6403711 -1103.2366
+123732.2600395659 3.6402924 -1103.2168
+123733.2600396161 3.6404104 -1103.2761
+123734.2600396664 3.6403711 -1103.197
+123735.2600397167 3.6403711 -1103.2366
+123736.260039767 3.6404104 -1103.2168
+123737.2600398173 3.6402531 -1103.2366
+123738.2600398676 3.6402531 -1103.2761
+123739.2600399179 3.6403711 -1103.2959
+123740.2600399682 3.6403711 -1103.2366
+123741.2600400185 3.6403711 -1103.2168
+123742.2600400688 3.6402531 -1103.197
+123743.2600401191 3.6403317 -1103.3156
+123744.2600401693 3.6402924 -1103.2168
+123745.2600402196 3.6401742 -1103.2959
+123746.2600402699 3.6402531 -1103.2562
+123747.2600403202 3.6402924 -1103.3156
+123748.2600403705 3.6402135 -1103.2168
+123749.2600404208 3.6401742 -1103.2761
+123750.2600404711 3.6402135 -1103.197
+123751.2600405214 3.6402135 -1103.197
+123752.2600405717 3.6402135 -1103.2562
+123753.260040622 3.6401742 -1103.2168
+123754.2600406723 3.6402135 -1103.197
+123755.2600407226 3.6401348 -1103.2562
+123756.2600407728 3.6401742 -1103.197
+123757.2600408231 3.6401348 -1103.2366
+123758.2600408734 3.6400955 -1103.2959
+123759.2600409237 3.6401348 -1103.3749
+123760.260040974 3.6401348 -1103.2168
+123761.2600410243 3.6401348 -1103.2562
+123762.2600410746 3.6401348 -1103.1576
+123763.2600411249 3.6400561 -1103.197
+123764.2600411752 3.6400955 -1103.197
+123765.2600412255 3.6400561 -1103.2959
+123766.2600412758 3.6400955 -1103.2959
+123767.2600413261 3.6399775 -1103.197
+123768.2600413763 3.6400561 -1103.2168
+123769.2600414266 3.6400561 -1103.197
+123770.2600414769 3.6400561 -1103.2366
+123771.2600415272 3.6399775 -1103.2562
+123772.2600415775 3.6400955 -1103.2562
+123773.2600416278 3.6400955 -1103.1774
+123774.2600416781 3.6400168 -1103.2959
+123775.2600417284 3.6400168 -1103.197
+123776.2600417787 3.6399775 -1103.1576
+123777.260041829 3.6400561 -1103.2562
+123778.2600418793 3.6399381 -1103.3156
+123779.2600419295 3.6399381 -1103.2959
+123780.2600419798 3.6398592 -1103.2168
+123781.2600420301 3.6398199 -1103.2562
+123782.2600420804 3.6400168 -1103.3353
+123783.2600421307 3.6399775 -1103.2366
+123784.260042181 3.6398985 -1103.2761
+123785.2600422313 3.6398592 -1103.2168
+123786.2600422816 3.6398985 -1103.2168
+123787.2600423319 3.6397412 -1103.2366
+123788.2600423822 3.6399381 -1103.2959
+123789.2600424325 3.6399775 -1103.1378
+123790.2600424828 3.6398985 -1103.2761
+123791.260042533 3.6398199 -1103.2959
+123792.2600425833 3.6398592 -1103.1576
+123793.2600426336 3.6398592 -1103.2168
+123794.2600426839 3.6398592 -1103.2562
+123795.2600427342 3.6397805 -1103.3156
+123796.2600427845 3.6397805 -1103.2168
+123797.2600428348 3.6397018 -1103.2168
+123798.2600428851 3.6397805 -1103.2366
+123799.2600429354 3.6397412 -1103.1774
+123800.2600429857 3.6397412 -1103.197
+123801.260043036 3.6397805 -1103.2168
+123802.2600430863 3.6397412 -1103.2761
+123803.2600431365 3.6398199 -1103.2168
+123804.2600431868 3.6396625 -1103.3551
+123805.2600432371 3.6397805 -1103.197
+123806.2600432874 3.6397412 -1103.2366
+123807.2600433377 3.6398199 -1103.2168
+123808.260043388 3.6397412 -1103.197
+123809.2600434383 3.6396232 -1103.2959
+123810.2600434886 3.6397018 -1103.2366
+123811.2600435389 3.6397412 -1103.2366
+123812.2600435892 3.6397805 -1103.2761
+123813.2600436395 3.6397412 -1103.2366
+123814.2600436897 3.6396232 -1103.1774
+123815.26004374 3.6397018 -1103.1774
+123816.2600437903 3.6396232 -1103.2168
+123817.2600438406 3.6396625 -1103.2562
+123818.2600438909 3.6394656 -1103.2959
+123819.2600439412 3.6395836 -1103.2366
+123820.2600439915 3.6396625 -1103.2959
+123821.2600440418 3.6395836 -1103.2168
+123822.2600440921 3.6395836 -1103.2761
+123823.2600441424 3.6395049 -1103.2761
+123824.2600441927 3.6395442 -1103.2366
+123825.260044243 3.6395836 -1103.2761
+123826.2600442932 3.6395442 -1103.1182
+123827.2600443435 3.6395836 -1103.2562
+123828.2600443938 3.6395836 -1103.2562
+123829.2600444441 3.6394656 -1103.3156
+123830.2600444944 3.6395442 -1103.2168
+123831.2600445447 3.6394656 -1103.197
+123832.260044595 3.6394656 -1103.2761
+123833.2600446453 3.6395442 -1103.2761
+123834.2600446956 3.6395049 -1103.2761
+123835.2600447459 3.6394262 -1103.197
+123836.2600447962 3.6395049 -1103.1774
+123837.2600448465 3.6393869 -1103.2959
+123838.2600448967 3.6393476 -1103.2366
+123839.260044947 3.6393869 -1103.2366
+123840.2600449973 3.6394262 -1103.1774
+123841.2600450476 3.6393082 -1103.2761
+123842.2600450979 3.6393476 -1103.2168
+123843.2600451482 3.6392686 -1103.2562
+123844.2600451985 3.6394262 -1103.2168
+123845.2600452488 3.6393869 -1103.2562
+123846.2600452991 3.6394262 -1103.1576
+123847.2600453494 3.6393476 -1103.2168
+123848.2600453997 3.6393476 -1103.2761
+123849.2600454499 3.6393476 -1103.2761
+123850.2600455002 3.6392686 -1103.2366
+123851.2600455505 3.6393476 -1103.2761
+123852.2600456008 3.6393869 -1103.2168
+123853.2600456511 3.6392686 -1103.2562
+123854.2600457014 3.6393082 -1103.2959
+123855.2600457517 3.6392686 -1103.2761
+123856.260045802 3.6392293 -1103.197
+123857.2600458523 3.6392293 -1103.2761
+123858.2600459026 3.6393082 -1103.2366
+123859.2600459529 3.6392686 -1103.2366
+123860.2600460032 3.6393082 -1103.3156
+123861.2600460534 3.6391506 -1103.2168
+123862.2600461037 3.63919 -1103.2168
+123863.260046154 3.6391506 -1103.2366
+123864.2600462043 3.6391113 -1103.2959
+123865.2600462546 3.6391506 -1103.2959
+123866.2600463049 3.6393082 -1103.2366
+123867.2600463552 3.63919 -1103.2168
+123868.2600464055 3.6392293 -1103.1378
+123869.2600464558 3.6390719 -1103.2366
+123870.2600465061 3.6391506 -1103.3353
+123871.2600465564 3.6391113 -1103.1774
+123872.2600466067 3.6391113 -1103.2168
+123873.2600466569 3.6391113 -1103.2761
+123874.2600467072 3.6390719 -1103.3353
+123875.2600467575 3.6390719 -1103.197
+123876.2600468078 3.6391113 -1103.197
+123877.2600468581 3.6390326 -1103.2959
+123878.2600469084 3.6390326 -1103.2959
+123879.2600469587 3.6391506 -1103.1774
+123880.260047009 3.6390326 -1103.2168
+123881.2600470593 3.6390719 -1103.2761
+123882.2600471096 3.6390719 -1103.197
+123883.2600471599 3.6389933 -1103.2366
+123884.2600472101 3.6390326 -1103.197
+123885.2600472604 3.6389537 -1103.2562
+123886.2600473107 3.6390326 -1103.2366
+123887.260047361 3.6389143 -1103.197
+123888.2600474113 3.6389537 -1103.2366
+123889.2600474616 3.6389537 -1103.197
+123890.2600475119 3.6389537 -1103.2959
+123891.2600475622 3.6389143 -1103.2562
+123892.2600476125 3.6389143 -1103.2562
+123893.2600476628 3.6389143 -1103.2562
+123894.2600477131 3.6389537 -1103.2761
+123895.2600477634 3.638875 -1103.2168
+123896.2600478136 3.638875 -1103.197
+123897.2600478639 3.6389537 -1103.197
+123898.2600479142 3.638875 -1103.2761
+123899.2600479645 3.6389143 -1103.197
+123900.2600480148 3.638757 -1103.2761
+123901.2600480651 3.6387963 -1103.2959
+123902.2600481154 3.6389537 -1103.2168
+123903.2600481657 3.6387963 -1103.3353
+123904.260048216 3.6388357 -1103.2168
+123905.2600482663 3.6387177 -1103.2366
+123906.2600483166 3.6387177 -1103.2366
+123907.2600483669 3.638757 -1103.2959
+123908.2600484171 3.6388357 -1103.1774
+123909.2600484674 3.638757 -1103.2366
+123910.2600485177 3.6388357 -1103.2168
+123911.260048568 3.6388357 -1103.2959
+123912.2600486183 3.6387177 -1103.2168
+123913.2600486686 3.6386781 -1103.2959
+123914.2600487189 3.638757 -1103.2959
+123915.2600487692 3.638875 -1103.2168
+123916.2600488195 3.6387177 -1103.2761
+123917.2600488698 3.6387177 -1103.197
+123918.2600489201 3.6385994 -1103.197
+123919.2600489703 3.638757 -1103.1774
+123920.2600490206 3.638757 -1103.2168
+123921.2600490709 3.6386387 -1103.2761
+123922.2600491212 3.6386387 -1103.2959
+123923.2600491715 3.6387177 -1103.2366
+123924.2600492218 3.6385994 -1103.197
+123925.2600492721 3.6385994 -1103.2168
+123926.2600493224 3.6387177 -1103.2562
+123927.2600493727 3.6386387 -1103.2761
+123928.260049423 3.6386781 -1103.2562
+123929.2600494733 3.6385207 -1103.2562
+123930.2600495236 3.6385601 -1103.3353
+123931.2600495738 3.6386387 -1103.2761
+123932.2600496241 3.638757 -1103.2761
+123933.2600496744 3.6384814 -1103.197
+123934.2600497247 3.6385601 -1103.197
+123935.260049775 3.6385601 -1103.197
+123936.2600498253 3.6384814 -1103.2959
+123937.2600498756 3.6385601 -1103.2562
+123938.2600499259 3.6384814 -1103.1774
+123939.2600499762 3.6384814 -1103.2168
+123940.2600500265 3.638442 -1103.2168
+123941.2600500768 3.6384814 -1103.2168
+123942.2600501271 3.6384814 -1103.197
+123943.2600501773 3.6384814 -1103.2562
+123944.2600502276 3.6384027 -1103.2366
+123945.2600502779 3.6384814 -1103.3551
+123946.2600503282 3.6384027 -1103.197
+123947.2600503785 3.6384814 -1103.2366
+123948.2600504288 3.6383631 -1103.1774
+123949.2600504791 3.6383238 -1103.2562
+123950.2600505294 3.6382844 -1103.2959
+123951.2600505797 3.638442 -1103.1182
+123952.26005063 3.6384027 -1103.2562
+123953.2600506803 3.6384027 -1103.2959
+123954.2600507305 3.6384027 -1103.2761
+123955.2600507808 3.638442 -1103.2761
+123956.2600508311 3.6383238 -1103.2761
+123957.2600508814 3.6383238 -1103.3156
+123958.2600509317 3.6383238 -1103.2959
+123959.260050982 3.6383631 -1103.2366
+123960.2600510323 3.6383238 -1103.2562
+123961.2600510826 3.6382844 -1103.2562
+123962.2600511329 3.6382451 -1103.1774
+123963.2600511832 3.6382451 -1103.2959
+123964.2600512335 3.6383631 -1103.2366
+123965.2600512838 3.6382844 -1103.2562
+123966.260051334 3.6383631 -1103.3156
+123967.2600513843 3.6382451 -1103.1774
+123968.2600514346 3.6382844 -1103.197
+123969.2600514849 3.6382844 -1103.2366
+123970.2600515352 3.6382058 -1103.2366
+123971.2600515855 3.6381664 -1103.2562
+123972.2600516358 3.6382058 -1103.2761
+123973.2600516861 3.6382451 -1103.197
+123974.2600517364 3.6382451 -1103.2168
+123975.2600517867 3.6382844 -1103.2168
+123976.260051837 3.6382844 -1103.3156
+123977.2600518873 3.6381271 -1103.3353
+123978.2600519375 3.6382844 -1103.2761
+123979.2600519878 3.6382844 -1103.2366
+123980.2600520381 3.6380877 -1103.2168
+123981.2600520884 3.6379695 -1103.2562
+123982.2600521387 3.6380482 -1103.1576
+123983.260052189 3.6380877 -1103.2959
+123984.2600522393 3.6380482 -1103.2366
+123985.2600522896 3.6381271 -1103.2168
+123986.2600523399 3.6381271 -1103.2168
+123987.2600523902 3.6380482 -1103.2959
+123988.2600524405 3.6379695 -1103.2168
+123989.2600524907 3.6380088 -1103.2562
+123990.260052541 3.6380088 -1103.2761
+123991.2600525913 3.6380088 -1103.2168
+123992.2600526416 3.6380088 -1103.2761
+123993.2600526919 3.6380088 -1103.197
+123994.2600527422 3.6379695 -1103.2959
+123995.2600527925 3.6379695 -1103.2168
+123996.2600528428 3.6379302 -1103.197
+123997.2600528931 3.6380877 -1103.2959
+123998.2600529434 3.6379695 -1103.2168
+123999.2600529937 3.6379695 -1103.2562
+124000.260053044 3.6379695 -1103.2959
+124001.2600530942 3.6378908 -1103.2562
+124002.2600531445 3.6379302 -1103.2562
+124003.2600531948 3.6378515 -1103.2761
+124004.2600532451 3.6379695 -1103.1576
+124005.2600532954 3.6379302 -1103.2761
+124006.2600533457 3.6379695 -1103.2761
+124007.260053396 3.6378908 -1103.2761
+124008.2600534463 3.6378515 -1103.1182
+124009.2600534966 3.6378121 -1103.2562
+124010.2600535469 3.6378908 -1103.2366
+124011.2600535972 3.6378121 -1103.2168
+124012.2600536474 3.6378515 -1103.1576
+124013.2600536977 3.6378515 -1103.2366
+124014.260053748 3.6378908 -1103.2168
+124015.2600537983 3.6378121 -1103.2366
+124016.2600538486 3.6378515 -1103.2761
+124017.2600538989 3.6376545 -1103.2761
+124018.2600539492 3.6377728 -1103.2168
+124019.2600539995 3.6377728 -1103.2959
+124020.2600540498 3.6377728 -1103.197
+124021.2600541001 3.6377728 -1103.2366
+124022.2600541504 3.6378121 -1103.3551
+124023.2600542007 3.6377332 -1103.3156
+124024.2600542509 3.6377728 -1103.2562
+124025.2600543012 3.6376939 -1103.2366
+124026.2600543515 3.6376545 -1103.1576
+124027.2600544018 3.6378121 -1103.3156
+124028.2600544521 3.6377332 -1103.2562
+124029.2600545024 3.6377332 -1103.2562
+124030.2600545527 3.6376939 -1103.2761
+124031.260054603 3.6376545 -1103.2168
+124032.2600546533 3.6376545 -1103.1774
+124033.2600547036 3.6376939 -1103.2562
+124034.2600547539 3.6375759 -1103.2366
+124035.2600548042 3.6376152 -1103.2168
+124036.2600548544 3.6376152 -1103.197
+124037.2600549047 3.6376545 -1103.2168
+124038.260054955 3.6376152 -1103.2366
+124039.2600550053 3.6374972 -1103.2562
+124040.2600550556 3.6376545 -1103.2366
+124041.2600551059 3.6375365 -1103.2562
+124042.2600551562 3.6375365 -1103.197
+124043.2600552065 3.6375759 -1103.2366
+124044.2600552568 3.6376152 -1103.2168
+124045.2600553071 3.6375759 -1103.2366
+124046.2600553574 3.6376545 -1103.1774
+124047.2600554076 3.6375759 -1103.1576
+124048.2600554579 3.6374972 -1103.2761
+124049.2600555082 3.6375759 -1103.2366
+124050.2600555585 3.6374183 -1103.2959
+124051.2600556088 3.6374578 -1103.1774
+124052.2600556591 3.6373789 -1103.2761
+124053.2600557094 3.6374578 -1103.197
+124054.2600557597 3.6374972 -1103.197
+124055.26005581 3.6375365 -1103.2562
+124056.2600558603 3.6375365 -1103.1774
+124057.2600559106 3.6374578 -1103.2562
+124058.2600559609 3.6374183 -1103.2959
+124059.2600560111 3.6374183 -1103.2366
+124060.2600560614 3.6374578 -1103.2366
+124061.2600561117 3.6374578 -1103.2168
+124062.260056162 3.6374183 -1103.3156
+124063.2600562123 3.6374183 -1103.2562
+124064.2600562626 3.6373396 -1103.2761
+124065.2600563129 3.6373396 -1103.2168
+124066.2600563632 3.6374183 -1103.2761
+124067.2600564135 3.6374183 -1103.2366
+124068.2600564638 3.6373003 -1103.2562
+124069.2600565141 3.6372216 -1103.2959
+124070.2600565644 3.6373396 -1103.3156
+124071.2600566146 3.6373789 -1103.2366
+124072.2600566649 3.6373396 -1103.2761
+124073.2600567152 3.6373003 -1103.2959
+124074.2600567655 3.6373003 -1103.2366
+124075.2600568158 3.6373003 -1103.2168
+124076.2600568661 3.6373003 -1103.2761
+124077.2600569164 3.6371822 -1103.197
+124078.2600569667 3.6372216 -1103.197
+124079.260057017 3.6372609 -1103.2366
+124080.2600570673 3.6371822 -1103.2761
+124081.2600571176 3.6373003 -1103.197
+124082.2600571678 3.6372216 -1103.2168
+124083.2600572181 3.6371822 -1103.2366
+124084.2600572684 3.6372216 -1103.2168
+124085.2600573187 3.6371429 -1103.2562
+124086.260057369 3.6371822 -1103.2168
+124087.2600574193 3.6371429 -1103.2761
+124088.2600574696 3.6371033 -1103.2168
+124089.2600575199 3.6371033 -1103.2168
+124090.2600575702 3.6371822 -1103.1576
+124091.2600576205 3.6370246 -1103.3156
+124092.2600576708 3.6371033 -1103.2959
+124093.2600577211 3.6371822 -1103.2761
+124094.2600577713 3.6371429 -1103.2562
+124095.2600578216 3.6371822 -1103.197
+124096.2600578719 3.6371033 -1103.2168
+124097.2600579222 3.6371429 -1103.2168
+124098.2600579725 3.6371033 -1103.2366
+124099.2600580228 3.637064 -1103.2959
+124100.2600580731 3.6371033 -1103.2761
+124101.2600581234 3.637064 -1103.3353
+124102.2600581737 3.6371033 -1103.3353
+124103.260058224 3.637064 -1103.2761
+124104.2600582743 3.637064 -1103.1774
+124105.2600583246 3.6370246 -1103.2366
+124106.2600583748 3.637064 -1103.2959
+124107.2600584251 3.6370246 -1103.2366
+124108.2600584754 3.6370246 -1103.2366
+124109.2600585257 3.637064 -1103.2761
+124110.260058576 3.6369066 -1103.1576
+124111.2600586263 3.6369853 -1103.1378
+124112.2600586766 3.6369066 -1103.2168
+124113.2600587269 3.6369853 -1103.197
+124114.2600587772 3.636946 -1103.2959
+124115.2600588275 3.6368277 -1103.2168
+124116.2600588778 3.6368673 -1103.2366
+124117.260058928 3.636946 -1103.2959
+124118.2600589783 3.6369066 -1103.197
+124119.2600590286 3.6369066 -1103.1182
+124120.2600590789 3.6368277 -1103.2959
+124121.2600591292 3.6369066 -1103.3156
+124122.2600591795 3.6368277 -1103.2562
+124123.2600592298 3.6368673 -1103.2168
+124124.2600592801 3.6368673 -1103.2168
+124125.2600593304 3.6368673 -1103.197
+124126.2600593807 3.6367884 -1103.2366
+124127.260059431 3.636749 -1103.197
+124128.2600594813 3.6368673 -1103.2562
+124129.2600595315 3.6368673 -1103.2168
+124130.2600595818 3.6368673 -1103.2366
+124131.2600596321 3.6366704 -1103.2168
+124132.2600596824 3.6368277 -1103.2959
+124133.2600597327 3.6367884 -1103.2366
+124134.260059783 3.6367097 -1103.3551
+124135.2600598333 3.6368277 -1103.2366
+124136.2600598836 3.6366704 -1103.2366
+124137.2600599339 3.6367884 -1103.2761
+124138.2600599842 3.6367884 -1103.1576
+124139.2600600345 3.6367884 -1103.2562
+124140.2600600848 3.6367097 -1103.197
+124141.260060135 3.6366704 -1103.2366
+124142.2600601853 3.6366704 -1103.2366
+124143.2600602356 3.6365917 -1103.1576
+124144.2600602859 3.636631 -1103.2562
+124145.2600603362 3.6365917 -1103.1774
+124146.2600603865 3.6367097 -1103.2761
+124147.2600604368 3.6367097 -1103.197
+124148.2600604871 3.6367097 -1103.2366
+124149.2600605374 3.6365523 -1103.2562
+124150.2600605877 3.636631 -1103.1576
+124151.260060638 3.6365917 -1103.2168
+124152.2600606882 3.6366704 -1103.197
+124153.2600607385 3.6365523 -1103.1774
+124154.2600607888 3.6365917 -1103.2562
+124155.2600608391 3.6365917 -1103.2761
+124156.2600608894 3.636631 -1103.2761
+124157.2600609397 3.6365917 -1103.2761
+124158.26006099 3.6365128 -1103.2366
+124159.2600610403 3.6365128 -1103.2366
+124160.2600610906 3.6365523 -1103.1774
+124161.2600611409 3.6365917 -1103.1378
+124162.2600611912 3.6365523 -1103.2366
+124163.2600612415 3.6364734 -1103.2959
+124164.2600612917 3.6364341 -1103.2761
+124165.260061342 3.6364341 -1103.197
+124166.2600613923 3.6365523 -1103.2761
+124167.2600614426 3.6365128 -1103.2168
+124168.2600614929 3.6364734 -1103.2168
+124169.2600615432 3.6365523 -1103.1774
+124170.2600615935 3.6365523 -1103.197
+124171.2600616438 3.6363947 -1103.2761
+124172.2600616941 3.6363947 -1103.1378
+124173.2600617444 3.6365128 -1103.2761
+124174.2600617947 3.6363947 -1103.2366
+124175.260061845 3.6364341 -1103.2168
+124176.2600618952 3.6363947 -1103.2562
+124177.2600619455 3.6363554 -1103.2562
+124178.2600619958 3.6363161 -1103.2761
+124179.2600620461 3.6364341 -1103.2562
+124180.2600620964 3.6363161 -1103.2562
+124181.2600621467 3.6364341 -1103.1774
+124182.260062197 3.6363161 -1103.2959
+124183.2600622473 3.6364341 -1103.2761
+124184.2600622976 3.6363554 -1103.2366
+124185.2600623479 3.6362767 -1103.197
+124186.2600623982 3.6362767 -1103.2761
+124187.2600624484 3.6363554 -1103.3353
+124188.2600624987 3.6362374 -1103.2168
+124189.260062549 3.6361585 -1103.1774
+124190.2600625993 3.6363161 -1103.2562
+124191.2600626496 3.6363161 -1103.3156
+124192.2600626999 3.6362767 -1103.2761
+124193.2600627502 3.6362374 -1103.2366
+124194.2600628005 3.6362767 -1103.1378
+124195.2600628508 3.6362374 -1103.197
+124196.2600629011 3.6362374 -1103.197
+124197.2600629514 3.6362767 -1103.2562
+124198.2600630017 3.6361978 -1103.2168
+124199.2600630519 3.6361585 -1103.2366
+124200.2600631022 3.6361978 -1103.197
+124201.2600631525 3.6361585 -1103.2959
+124202.2600632028 3.6360798 -1103.2366
+124203.2600632531 3.6361191 -1103.2959
+124204.2600633034 3.6361191 -1103.3156
+124205.2600633537 3.6361191 -1103.197
+124206.260063404 3.6361978 -1103.2168
+124207.2600634543 3.6360011 -1103.2366
+124208.2600635046 3.6361191 -1103.2168
+124209.2600635549 3.6361191 -1103.2761
+124210.2600636052 3.6360404 -1103.2562
+124211.2600636554 3.6361191 -1103.2761
+124212.2600637057 3.6360011 -1103.1576
+124213.260063756 3.6360798 -1103.2562
+124214.2600638063 3.6361585 -1103.2761
+124215.2600638566 3.6360011 -1103.2959
+124216.2600639069 3.6359618 -1103.1774
+124217.2600639572 3.6359618 -1103.197
+124218.2600640075 3.6360404 -1103.2366
+124219.2600640578 3.6360011 -1103.3353
+124220.2600641081 3.6359618 -1103.2761
+124221.2600641584 3.6359224 -1103.2168
+124222.2600642086 3.6360404 -1103.1774
+124223.2600642589 3.6360011 -1103.197
+124224.2600643092 3.6359224 -1103.2761
+124225.2600643595 3.6359618 -1103.3156
+124226.2600644098 3.6358829 -1103.197
+124227.2600644601 3.6360011 -1103.2562
+124228.2600645104 3.6360011 -1103.2168
+124229.2600645607 3.6359224 -1103.1774
+124230.260064611 3.6358829 -1103.1576
+124231.2600646613 3.6358435 -1103.2959
+124232.2600647116 3.6358042 -1103.3156
+124233.2600647619 3.6358042 -1103.2366
+124234.2600648121 3.6357648 -1103.2959
+124235.2600648624 3.6358829 -1103.2562
+124236.2600649127 3.6359618 -1103.1576
+124237.260064963 3.6358829 -1103.2366
+124238.2600650133 3.6359224 -1103.2168
+124239.2600650636 3.6358829 -1103.2366
+124240.2600651139 3.6357255 -1103.2366
+124241.2600651642 3.6358042 -1103.197
+124242.2600652145 3.6356862 -1103.2168
+124243.2600652648 3.6357648 -1103.2168
+124244.2600653151 3.6358829 -1103.2562
+124245.2600653654 3.6358042 -1103.1774
+124246.2600654156 3.6357255 -1103.2761
+124247.2600654659 3.6358435 -1103.197
+124248.2600655162 3.6358042 -1103.197
+124249.2600655665 3.6357255 -1103.2959
+124250.2600656168 3.6358042 -1103.2562
+124251.2600656671 3.6356862 -1103.2168
+124252.2600657174 3.6357648 -1103.2761
+124253.2600657677 3.6356862 -1103.2761
+124254.260065818 3.6356468 -1103.2959
+124255.2600658683 3.6356862 -1103.197
+124256.2600659186 3.6356075 -1103.2959
+124257.2600659688 3.6356468 -1103.2562
+124258.2600660191 3.6356468 -1103.2562
+124259.2600660694 3.6356468 -1103.197
+124260.2600661197 3.6357255 -1103.2761
+124261.26006617 3.6357648 -1103.2959
+124262.2600662203 3.6356468 -1103.2366
+124263.2600662706 3.6355679 -1103.197
+124264.2600663209 3.6356468 -1103.2366
+124265.2600663712 3.6356468 -1103.1576
+124266.2600664215 3.6356468 -1103.2761
+124267.2600664718 3.6355679 -1103.2959
+124268.2600665221 3.6356075 -1103.2168
+124269.2600665723 3.6354892 -1103.1576
+124270.2600666226 3.6355679 -1103.1576
+124271.2600666729 3.6356075 -1103.0785
+124272.2600667232 3.6354892 -1103.1774
+124273.2600667735 3.6355679 -1103.2761
+124274.2600668238 3.6355286 -1103.2761
+124275.2600668741 3.6356075 -1103.197
+124276.2600669244 3.6355679 -1103.2562
+124277.2600669747 3.6354892 -1103.2562
+124278.260067025 3.6355286 -1103.3551
+124279.2600670753 3.6355286 -1103.2562
+124280.2600671256 3.6355286 -1103.2562
+124281.2600671758 3.6355286 -1103.2761
+124282.2600672261 3.6354105 -1103.3156
+124283.2600672764 3.6354105 -1103.197
+124284.2600673267 3.6354499 -1103.2168
+124285.260067377 3.6354499 -1103.2366
+124286.2600674273 3.6354105 -1103.197
+124287.2600674776 3.6354499 -1103.2168
+124288.2600675279 3.6352925 -1103.2562
+124289.2600675782 3.6353712 -1103.2761
+124290.2600676285 3.6353712 -1103.3156
+124291.2600676788 3.6353712 -1103.2562
+124292.260067729 3.6354499 -1103.2562
+124293.2600677793 3.6353712 -1103.2168
+124294.2600678296 3.6354105 -1103.1774
+124295.2600678799 3.6353712 -1103.2761
+124296.2600679302 3.635253 -1103.197
+124297.2600679805 3.6353319 -1103.2761
+124298.2600680308 3.6353319 -1103.197
+124299.2600680811 3.635253 -1103.2168
+124300.2600681314 3.6353319 -1103.2959
+124301.2600681817 3.6352136 -1103.2761
+124302.260068232 3.6353319 -1103.2959
+124303.2600682823 3.6353319 -1103.2366
+124304.2600683325 3.6353319 -1103.2168
+124305.2600683828 3.6352925 -1103.2562
+124306.2600684331 3.6353319 -1103.1774
+124307.2600684834 3.6352136 -1103.1576
+124308.2600685337 3.6351743 -1103.2168
+124309.260068584 3.6351349 -1103.2366
+124310.2600686343 3.6351743 -1103.197
+124311.2600686846 3.635253 -1103.1774
+124312.2600687349 3.6352136 -1103.2366
+124313.2600687852 3.635253 -1103.1774
+124314.2600688355 3.6353319 -1103.2761
+124315.2600688857 3.635253 -1103.197
+124316.260068936 3.6351349 -1103.2562
+124317.2600689863 3.6350956 -1103.1774
+124318.2600690366 3.6351743 -1103.2562
+124319.2600690869 3.6351743 -1103.1182
+124320.2600691372 3.6350956 -1103.1774
+124321.2600691875 3.6351743 -1103.1774
+124322.2600692378 3.6350563 -1103.197
+124323.2600692881 3.6350956 -1103.3156
+124324.2600693384 3.6352136 -1103.197
+124325.2600693887 3.6350563 -1103.197
+124326.260069439 3.6350563 -1103.2168
+124327.2600694892 3.6350956 -1103.2761
+124328.2600695395 3.6350563 -1103.2168
+124329.2600695898 3.6350956 -1103.2562
+124330.2600696401 3.634938 -1103.2761
+124331.2600696904 3.6349773 -1103.2168
+124332.2600697407 3.6349773 -1103.1182
+124333.260069791 3.6349773 -1103.197
+124334.2600698413 3.6349773 -1103.3551
+124335.2600698916 3.6349773 -1103.2168
+124336.2600699419 3.6350563 -1103.2761
+124337.2600699922 3.6350169 -1103.1774
+124338.2600700425 3.634938 -1103.197
+124339.2600700927 3.6349773 -1103.2761
+124340.260070143 3.634938 -1103.2168
+124341.2600701933 3.634938 -1103.197
+124342.2600702436 3.6349773 -1103.2959
+124343.2600702939 3.63482 -1103.1378
+124344.2600703442 3.634938 -1103.2366
+124345.2600703945 3.634938 -1103.2761
+124346.2600704448 3.6348987 -1103.1774
+124347.2600704951 3.6350169 -1103.2366
+124348.2600705454 3.6348593 -1103.2366
+124349.2600705957 3.6349773 -1103.2168
+124350.2600706459 3.6348593 -1103.2562
+124351.2600706962 3.6348987 -1103.2959
+124352.2600707465 3.6348593 -1103.2959
+124353.2600707968 3.6348593 -1103.2366
+124354.2600708471 3.63482 -1103.197
+124355.2600708974 3.6348593 -1103.2366
+124356.2600709477 3.6347806 -1103.2959
+124357.260070998 3.634702 -1103.2168
+124358.2600710483 3.63482 -1103.2761
+124359.2600710986 3.6347806 -1103.2959
+124360.2600711489 3.6348987 -1103.2761
+124361.2600711992 3.6347806 -1103.197
+124362.2600712494 3.6347413 -1103.197
+124363.2600712997 3.6347806 -1103.2168
+124364.26007135 3.6348593 -1103.2366
+124365.2600714003 3.634702 -1103.2168
+124366.2600714506 3.634702 -1103.2761
+124367.2600715009 3.6347806 -1103.2761
+124368.2600715512 3.634702 -1103.1182
+124369.2600716015 3.6347413 -1103.2366
+124370.2600716518 3.6347413 -1103.2562
+124371.2600717021 3.6345837 -1103.197
+124372.2600717524 3.6346231 -1103.3156
+124373.2600718027 3.6346231 -1103.2761
+124374.2600718529 3.6346624 -1103.2366
+124375.2600719032 3.6346624 -1103.2366
+124376.2600719535 3.6346624 -1103.2168
+124377.2600720038 3.6345837 -1103.2168
+124378.2600720541 3.6345837 -1103.2366
+124379.2600721044 3.6346231 -1103.2366
+124380.2600721547 3.6346624 -1103.197
+124381.260072205 3.6345444 -1103.2959
+124382.2600722553 3.6345837 -1103.2168
+124383.2600723056 3.634702 -1103.2562
+124384.2600723559 3.6345444 -1103.2562
+124385.2600724061 3.634505 -1103.1378
+124386.2600724564 3.6346231 -1103.2168
+124387.2600725067 3.6345837 -1103.2168
+124388.260072557 3.634505 -1103.1182
+124389.2600726073 3.634505 -1103.197
+124390.2600726576 3.6345837 -1103.2168
+124391.2600727079 3.6345444 -1103.2168
+124392.2600727582 3.634505 -1103.3156
+124393.2600728085 3.6345837 -1103.2366
+124394.2600728588 3.6346231 -1103.2168
+124395.2600729091 3.6345444 -1103.1774
+124396.2600729594 3.634387 -1103.1378
+124397.2600730096 3.634505 -1103.2761
+124398.2600730599 3.634505 -1103.2959
+124399.2600731102 3.6344657 -1103.2959
+124400.2600731605 3.6344657 -1103.197
+124401.2600732108 3.634505 -1103.2366
+124402.2600732611 3.6345444 -1103.2562
+124403.2600733114 3.6344264 -1103.2366
+124404.2600733617 3.6344657 -1103.2562
+124405.260073412 3.634387 -1103.3156
+124406.2600734623 3.6345444 -1103.3551
+124407.2600735126 3.6343474 -1103.3353
+124408.2600735629 3.634387 -1103.1774
+124409.2600736131 3.634387 -1103.2562
+124410.2600736634 3.634505 -1103.2761
+124411.2600737137 3.634387 -1103.2366
+124412.260073764 3.634387 -1103.2959
+124413.2600738143 3.634387 -1103.2761
+124414.2600738646 3.6342688 -1103.2761
+124415.2600739149 3.6343081 -1103.197
+124416.2600739652 3.6343474 -1103.3353
+124417.2600740155 3.6343081 -1103.2959
+124418.2600740658 3.6344264 -1103.1774
+124419.2600741161 3.6341901 -1103.2168
+124420.2600741663 3.6341901 -1103.2562
+124421.2600742166 3.6342688 -1103.2168
+124422.2600742669 3.6343081 -1103.2959
+124423.2600743172 3.6342688 -1103.2562
+124424.2600743675 3.6342294 -1103.2959
+124425.2600744178 3.6343081 -1103.2959
+124426.2600744681 3.6341901 -1103.2562
+124427.2600745184 3.6343081 -1103.197
+124428.2600745687 3.6341901 -1103.3156
+124429.260074619 3.6342294 -1103.1774
+124430.2600746693 3.6341901 -1103.2168
+124431.2600747196 3.6343081 -1103.2562
+124432.2600747698 3.6342294 -1103.2959
+124433.2600748201 3.6341901 -1103.3551
+124434.2600748704 3.6341901 -1103.2168
+124435.2600749207 3.6341507 -1103.2562
+124436.260074971 3.6341507 -1103.3353
+124437.2600750213 3.6342294 -1103.2366
+124438.2600750716 3.6340721 -1103.3156
+124439.2600751219 3.6341507 -1103.197
+124440.2600751722 3.6341114 -1103.197
+124441.2600752225 3.6341507 -1103.197
+124442.2600752728 3.6341507 -1103.1378
+124443.2600753231 3.6341901 -1103.2366
+124444.2600753733 3.6339931 -1103.2761
+124445.2600754236 3.6342294 -1103.2562
+124446.2600754739 3.6339931 -1103.2562
+124447.2600755242 3.6341507 -1103.2761
+124448.2600755745 3.6340325 -1103.197
+124449.2600756248 3.6341114 -1103.2168
+124450.2600756751 3.6341114 -1103.2366
+124451.2600757254 3.6341507 -1103.1378
+124452.2600757757 3.6340721 -1103.1182
+124453.260075826 3.6339538 -1103.197
+124454.2600758763 3.6339931 -1103.197
+124455.2600759265 3.6339931 -1103.2562
+124456.2600759768 3.6339931 -1103.197
+124457.2600760271 3.6339931 -1103.3156
+124458.2600760774 3.6339931 -1103.197
+124459.2600761277 3.6339538 -1103.2562
+124460.260076178 3.6338358 -1103.2761
+124461.2600762283 3.6339931 -1103.2168
+124462.2600762786 3.6339145 -1103.197
+124463.2600763289 3.6337965 -1103.2168
+124464.2600763792 3.6339145 -1103.197
+124465.2600764295 3.6339538 -1103.2562
+124466.2600764798 3.6338751 -1103.3353
+124467.26007653 3.6338751 -1103.1774
+124468.2600765803 3.6338751 -1103.2761
+124469.2600766306 3.6338751 -1103.1774
+124470.2600766809 3.6338751 -1103.2168
+124471.2600767312 3.6338751 -1103.197
+124472.2600767815 3.6339145 -1103.3156
+124473.2600768318 3.6339145 -1103.2959
+124474.2600768821 3.6338751 -1103.2366
+124475.2600769324 3.6338751 -1103.2366
+124476.2600769827 3.6338358 -1103.2366
+124477.260077033 3.6338358 -1103.197
+124478.2600770833 3.6337571 -1103.197
+124479.2600771335 3.6337571 -1103.197
+124480.2600771838 3.6337965 -1103.2959
+124481.2600772341 3.6338358 -1103.2761
+124482.2600772844 3.6338358 -1103.197
+124483.2600773347 3.6338358 -1103.2366
+124484.260077385 3.6337175 -1103.3353
+124485.2600774353 3.6337175 -1103.1774
+124486.2600774856 3.6336389 -1103.2959
+124487.2600775359 3.6337175 -1103.2168
+124488.2600775862 3.6337965 -1103.2562
+124489.2600776365 3.6337175 -1103.2562
+124490.2600776867 3.6335995 -1103.1774
+124491.260077737 3.6337175 -1103.2366
+124492.2600777873 3.6336389 -1103.2366
+124493.2600778376 3.6337175 -1103.2366
+124494.2600778879 3.6336389 -1103.2168
+124495.2600779382 3.6336782 -1103.197
+124496.2600779885 3.6337175 -1103.2366
+124497.2600780388 3.6336782 -1103.2366
+124498.2600780891 3.6336782 -1103.1576
+124499.2600781394 3.6336782 -1103.1182
+124500.2600781897 3.6337175 -1103.2562
+124501.26007824 3.6335602 -1103.2168
+124502.2600782902 3.6337175 -1103.2366
+124503.2600783405 3.6337175 -1103.3156
+124504.2600783908 3.6335995 -1103.1774
+124505.2600784411 3.6336389 -1103.2761
+124506.2600784914 3.6335602 -1103.2562
+124507.2600785417 3.6335602 -1103.2168
+124508.260078592 3.6336782 -1103.2959
+124509.2600786423 3.6335602 -1103.2562
+124510.2600786926 3.6336389 -1103.2562
+124511.2600787429 3.6335995 -1103.2959
+124512.2600787932 3.6334026 -1103.3945
+124513.2600788435 3.6335208 -1103.197
+124514.2600788937 3.6335602 -1103.3156
+124515.260078944 3.6335208 -1103.2562
+124516.2600789943 3.6333632 -1103.2562
+124517.2600790446 3.6335602 -1103.197
+124518.2600790949 3.6333632 -1103.2562
+124519.2600791452 3.6334815 -1103.197
+124520.2600791955 3.6334026 -1103.2562
+124521.2600792458 3.6334419 -1103.2366
+124522.2600792961 3.6334419 -1103.2761
+124523.2600793464 3.6333632 -1103.2562
+124524.2600793967 3.6334815 -1103.2562
+124525.2600794469 3.6333632 -1103.2366
+124526.2600794972 3.6334815 -1103.1774
+124527.2600795475 3.6334815 -1103.2761
+124528.2600795978 3.6332846 -1103.2168
+124529.2600796481 3.6334026 -1103.1378
+124530.2600796984 3.6334815 -1103.2366
+124531.2600797487 3.6332846 -1103.2168
+124532.260079799 3.6333632 -1103.2761
+124533.2600798493 3.6333632 -1103.2168
+124534.2600798996 3.6334419 -1103.1576
+124535.2600799499 3.6332846 -1103.1576
+124536.2600800002 3.6333632 -1103.3156
+124537.2600800504 3.6334026 -1103.2562
+124538.2600801007 3.6332846 -1103.2562
+124539.260080151 3.6333239 -1103.2562
+124540.2600802013 3.6332452 -1103.1774
+124541.2600802516 3.6331666 -1103.2366
+124542.2600803019 3.6333239 -1103.2168
+124543.2600803522 3.6332846 -1103.2366
+124544.2600804025 3.6332452 -1103.3156
+124545.2600804528 3.6332059 -1103.2761
+124546.2600805031 3.6332452 -1103.2959
+124547.2600805534 3.6332059 -1103.197
+124548.2600806037 3.6332059 -1103.3156
+124549.2600806539 3.6332452 -1103.2761
+124550.2600807042 3.6332059 -1103.2959
+124551.2600807545 3.6332452 -1103.2761
+124552.2600808048 3.6332059 -1103.197
+124553.2600808551 3.6332452 -1103.2562
+124554.2600809054 3.6332452 -1103.197
+124555.2600809557 3.6331666 -1103.2761
+124556.260081006 3.6332059 -1103.2761
+124557.2600810563 3.633127 -1103.2562
+124558.2600811066 3.633127 -1103.2959
+124559.2600811569 3.633127 -1103.2366
+124560.2600812071 3.633127 -1103.197
+124561.2600812574 3.6332452 -1103.2959
+124562.2600813077 3.6330483 -1103.1774
+124563.260081358 3.6330876 -1103.2562
+124564.2600814083 3.6330483 -1103.2562
+124565.2600814586 3.6330876 -1103.2366
+124566.2600815089 3.6330483 -1103.2761
+124567.2600815592 3.6330876 -1103.1774
+124568.2600816095 3.6330876 -1103.2168
+124569.2600816598 3.6329696 -1103.197
+124570.2600817101 3.633009 -1103.2168
+124571.2600817604 3.6330483 -1103.3353
+124572.2600818106 3.633009 -1103.2562
+124573.2600818609 3.6329696 -1103.1774
+124574.2600819112 3.633009 -1103.2562
+124575.2600819615 3.6328516 -1103.2366
+124576.2600820118 3.6328909 -1103.2562
+124577.2600820621 3.6328909 -1103.2562
+124578.2600821124 3.6329696 -1103.2959
+124579.2600821627 3.6329696 -1103.197
+124580.260082213 3.633009 -1103.2366
+124581.2600822633 3.6330483 -1103.2366
+124582.2600823136 3.6329696 -1103.2761
+124583.2600823639 3.6328516 -1103.2562
+124584.2600824141 3.6329696 -1103.2761
+124585.2600824644 3.6329303 -1103.197
+124586.2600825147 3.633009 -1103.3156
+124587.260082565 3.6328909 -1103.2366
+124588.2600826153 3.6328909 -1103.1774
+124589.2600826656 3.633009 -1103.2168
+124590.2600827159 3.6328516 -1103.2366
+124591.2600827662 3.6328516 -1103.2562
+124592.2600828165 3.6328909 -1103.3156
+124593.2600828668 3.6328909 -1103.2366
+124594.2600829171 3.6328516 -1103.3353
+124595.2600829673 3.6329696 -1103.197
+124596.2600830176 3.6328516 -1103.2959
+124597.2600830679 3.6329303 -1103.2562
+124598.2600831182 3.6327333 -1103.2761
+124599.2600831685 3.632812 -1103.2959
+124600.2600832188 3.6327727 -1103.3156
+124601.2600832691 3.6327333 -1103.2959
+124602.2600833194 3.6327727 -1103.197
+124603.2600833697 3.632694 -1103.1576
+124604.26008342 3.6327333 -1103.2168
+124605.2600834703 3.6327727 -1103.3156
+124606.2600835206 3.6327333 -1103.2366
+124607.2600835708 3.632812 -1103.2761
+124608.2600836211 3.6327727 -1103.2562
+124609.2600836714 3.6327333 -1103.2366
+124610.2600837217 3.6326153 -1103.197
+124611.260083772 3.6327333 -1103.2168
+124612.2600838223 3.6326547 -1103.2959
+124613.2600838726 3.6327333 -1103.2562
+124614.2600839229 3.632694 -1103.3156
+124615.2600839732 3.632694 -1103.2562
+124616.2600840235 3.632694 -1103.2562
+124617.2600840738 3.6326547 -1103.2562
+124618.260084124 3.632576 -1103.1774
+124619.2600841743 3.6325366 -1103.3156
+124620.2600842246 3.6326547 -1103.2562
+124621.2600842749 3.632694 -1103.2366
+124622.2600843252 3.6326153 -1103.2761
+124623.2600843755 3.6326153 -1103.2761
+124624.2600844258 3.6325366 -1103.2366
+124625.2600844761 3.6326153 -1103.2761
+124626.2600845264 3.6326153 -1103.3353
+124627.2600845767 3.6326547 -1103.2168
+124628.260084627 3.6326547 -1103.2366
+124629.2600846773 3.632576 -1103.2761
+124630.2600847275 3.6326547 -1103.3749
+124631.2600847778 3.6325366 -1103.2761
+124632.2600848281 3.6325366 -1103.2168
+124633.2600848784 3.6324971 -1103.2168
+124634.2600849287 3.6324971 -1103.2366
+124635.260084979 3.6324184 -1103.1774
+124636.2600850293 3.6324971 -1103.2366
+124637.2600850796 3.6324184 -1103.3156
+124638.2600851299 3.6324184 -1103.2562
+124639.2600851802 3.6324971 -1103.2562
+124640.2600852305 3.6324577 -1103.2761
+124641.2600852808 3.6324184 -1103.2366
+124642.260085331 3.6323791 -1103.2366
+124643.2600853813 3.6324184 -1103.2366
+124644.2600854316 3.6323791 -1103.2761
+124645.2600854819 3.6323004 -1103.2761
+124646.2600855322 3.6324184 -1103.3353
+124647.2600855825 3.6323004 -1103.2562
+124648.2600856328 3.6323004 -1103.2366
+124649.2600856831 3.6324577 -1103.1378
+124650.2600857334 3.6324184 -1103.3156
+124651.2600857837 3.6323004 -1103.2168
+124652.260085834 3.6323004 -1103.2761
+124653.2600858842 3.6324184 -1103.2959
+124654.2600859345 3.6323004 -1103.2562
+124655.2600859848 3.6323397 -1103.2168
+124656.2600860351 3.632261 -1103.2366
+124657.2600860854 3.632261 -1103.2761
+124658.2600861357 3.6323004 -1103.1576
+124659.260086186 3.6323397 -1103.1774
+124660.2600862363 3.6321428 -1103.2366
+124661.2600862866 3.6323397 -1103.2168
+124662.2600863369 3.6321428 -1103.2366
+124663.2600863872 3.6321821 -1103.197
+124664.2600864375 3.6321821 -1103.2168
+124665.2600864877 3.632261 -1103.197
+124666.260086538 3.6322217 -1103.2562
+124667.2600865883 3.6322217 -1103.2168
+124668.2600866386 3.6321821 -1103.2168
+124669.2600866889 3.6321821 -1103.2761
+124670.2600867392 3.6322217 -1103.2168
+124671.2600867895 3.6321428 -1103.2761
+124672.2600868398 3.6321821 -1103.2168
+124673.2600868901 3.632261 -1103.2366
+124674.2600869404 3.6321428 -1103.1774
+124675.2600869907 3.6321821 -1103.2168
+124676.260087041 3.6321428 -1103.1774
+124677.2600870912 3.6321428 -1103.1774
+124678.2600871415 3.6322217 -1103.2959
+124679.2600871918 3.6321428 -1103.1774
+124680.2600872421 3.6321821 -1102.1898
+124681.2600872924 3.6321428 -1101.3406
+124682.2600873427 3.6321034 -1101.222
+124683.260087393 3.6320248 -1101.301
+124684.2600874433 3.6321034 -1101.222
+124685.2600874936 3.6320641 -1099.2471
+124686.2600875439 3.6319854 -1099.2865
+124687.2600875942 3.6319461 -1099.326
+124688.2600876444 3.6321428 -1099.2668
+124689.2600876947 3.6321821 -1104.7179
+124690.260087745 3.6321821 -1106.1991
+124691.2600877953 3.6321428 -1106.2781
+124692.2600878456 3.6321428 -1106.1991
+124693.2600878959 3.6321034 -1101.3208
+124694.2600879462 3.6320641 -1099.6815
+124695.2600879965 3.6319854 -1099.7013
+124696.2600880468 3.6320641 -1099.8
+124697.2600880971 3.6319854 -1103.1182
+124698.2600881474 3.6320248 -1103.0391
+124699.2600881977 3.6321034 -1102.9799
+124700.2600882479 3.6319854 -1102.9799
+124701.2600882982 3.6319461 -1103.0193
+124702.2600883485 3.6318278 -1102.3676
+124703.2600883988 3.6319461 -1101.6566
+124704.2600884491 3.6318278 -1101.7158
+124705.2600884994 3.6319067 -1101.6763
+124706.2600885497 3.6319461 -1103.5328
+124707.2600886 3.6319067 -1103.8291
+124708.2600886503 3.6319854 -1103.8291
+124709.2600887006 3.6318278 -1103.8093
+124710.2600887509 3.6317885 -1103.6711
+124711.2600888012 3.6318278 -1102.7032
+124712.2600888514 3.6319067 -1102.4861
+124713.2600889017 3.6318278 -1102.4861
+124714.260088952 3.6317885 -1102.4861
+124715.2600890023 3.6319067 -1103.4143
+124716.2600890526 3.6318278 -1103.5131
+124717.2600891029 3.6318672 -1103.4539
+124718.2600891532 3.6317885 -1103.5131
+124719.2600892035 3.6319067 -1103.4143
+124720.2600892538 3.6317492 -1103.3551
+124721.2600893041 3.6318672 -1103.4143
+124722.2600893544 3.6317885 -1103.3749
+124723.2600894046 3.6317885 -1103.3749
+124724.2600894549 3.6317492 -1103.2562
+124725.2600895052 3.6317492 -1103.0588
+124726.2600895555 3.6317885 -1103.3353
+124727.2600896058 3.6317885 -1103.1774
+124728.2600896561 3.6316705 -1103.3156
+124729.2600897064 3.6317492 -1103.2761
+124730.2600897567 3.6318278 -1103.1182
+124731.260089807 3.6316311 -1103.1378
+124732.2600898573 3.6316705 -1103.197
+124733.2600899076 3.6315522 -1103.197
+124734.2600899579 3.6316705 -1103.2959
+124735.2600900081 3.6317098 -1103.2562
+124736.2600900584 3.6317492 -1103.2366
+124737.2600901087 3.6316705 -1103.1576
+124738.260090159 3.6316705 -1103.1576
+124739.2600902093 3.6315522 -1103.2959
+124740.2600902596 3.6316705 -1103.1774
+124741.2600903099 3.6315129 -1103.2562
+124742.2600903602 3.6316311 -1103.1576
+124743.2600904105 3.6315916 -1103.0391
+124744.2600904608 3.6316311 -1103.1378
+124745.2600905111 3.6315916 -1103.197
+124746.2600905614 3.6316311 -1103.1182
+124747.2600906116 3.6315129 -1103.2761
+124748.2600906619 3.6316705 -1103.2562
+124749.2600907122 3.6315522 -1103.197
+124750.2600907625 3.6315129 -1103.2366
+124751.2600908128 3.6315129 -1103.2562
+124752.2600908631 3.6314735 -1103.1774
+124753.2600909134 3.6315522 -1103.197
+124754.2600909637 3.6315522 -1103.197
+124755.260091014 3.6315522 -1103.1774
+124756.2600910643 3.6315129 -1103.197
+124757.2600911146 3.6314735 -1103.2168
+124758.2600911648 3.6314342 -1103.2168
+124759.2600912151 3.6315522 -1103.2562
+124760.2600912654 3.6314342 -1103.2168
+124761.2600913157 3.6315129 -1103.197
+124762.260091366 3.6313949 -1103.1774
+124763.2600914163 3.6314342 -1103.2168
+124764.2600914666 3.6313949 -1103.1774
+124765.2600915169 3.6313555 -1103.197
+124766.2600915672 3.6313555 -1103.2168
+124767.2600916175 3.6314342 -1103.2366
+124768.2600916678 3.6313949 -1103.197
+124769.2600917181 3.6314342 -1103.1774
+124770.2600917683 3.6314342 -1103.2366
+124771.2600918186 3.6313949 -1103.2168
+124772.2600918689 3.6313162 -1103.197
+124773.2600919192 3.6313162 -1103.1774
+124774.2600919695 3.6313949 -1103.1774
+124775.2600920198 3.6314342 -1103.2959
+124776.2600920701 3.6313162 -1103.1576
+124777.2600921204 3.6313162 -1103.1774
+124778.2600921707 3.6313555 -1103.1576
+124779.260092221 3.6313162 -1103.2366
+124780.2600922713 3.6313555 -1103.1378
+124781.2600923216 3.6312766 -1103.1182
+124782.2600923718 3.6313162 -1103.2366
+124783.2600924221 3.6313162 -1103.2168
+124784.2600924724 3.6312373 -1103.2366
+124785.2600925227 3.6312766 -1103.2366
+124786.260092573 3.6312766 -1103.2168
+124787.2600926233 3.6312373 -1103.1774
+124788.2600926736 3.6312373 -1103.1774
+124789.2600927239 3.6311979 -1103.2168
+124790.2600927742 3.6311586 -1103.2562
+124791.2600928245 3.6310799 -1103.2562
+124792.2600928748 3.6311193 -1103.1774
+124793.260092925 3.6311979 -1103.2366
+124794.2600929753 3.6311193 -1103.197
+124795.2600930256 3.6311586 -1103.1774
+124796.2600930759 3.6311586 -1103.2168
+124797.2600931262 3.6311193 -1103.2562
+124798.2600931765 3.6311979 -1103.2959
+124799.2600932268 3.6310799 -1103.2761
+124800.2600932771 3.6311586 -1103.1576
+124801.2600933274 3.6310799 -1103.2168
+124802.2600933777 3.6311193 -1103.197
+124803.260093428 3.6310799 -1103.1774
+124804.2600934783 3.6310799 -1103.2562
+124805.2600935285 3.6310012 -1103.1576
+124806.2600935788 3.6310799 -1103.197
+124807.2600936291 3.6310406 -1103.3156
+124808.2600936794 3.6309617 -1103.2168
+124809.2600937297 3.6310799 -1103.2761
+124810.26009378 3.6310799 -1103.1774
+124811.2600938303 3.6310406 -1103.1774
+124812.2600938806 3.6310012 -1103.2366
+124813.2600939309 3.6310012 -1103.2366
+124814.2600939812 3.6309617 -1103.1774
+124815.2600940315 3.6310406 -1103.2761
+124816.2600940818 3.6309223 -1103.2366
+124817.260094132 3.6309617 -1103.1182
+124818.2600941823 3.6309617 -1103.1774
+124819.2600942326 3.630883 -1103.2168
+124820.2600942829 3.6309617 -1103.2959
+124821.2600943332 3.6309223 -1103.2168
+124822.2600943835 3.6309617 -1103.2168
+124823.2600944338 3.6309617 -1103.1378
+124824.2600944841 3.630883 -1103.2366
+124825.2600945344 3.630765 -1103.2562
+124826.2600945847 3.6308436 -1103.2168
+124827.260094635 3.6308436 -1103.2562
+124828.2600946852 3.6309223 -1103.2562
+124829.2600947355 3.6308043 -1103.1182
+124830.2600947858 3.6308436 -1103.2366
+124831.2600948361 3.630765 -1103.2761
+124832.2600948864 3.6308436 -1103.1576
+124833.2600949367 3.6308436 -1103.2168
+124834.260094987 3.630765 -1103.1576
+124835.2600950373 3.6308436 -1103.2761
+124836.2600950876 3.6308043 -1103.2562
+124837.2600951379 3.6308043 -1103.2761
+124838.2600951882 3.630883 -1103.2366
+124839.2600952385 3.630765 -1103.2761
+124840.2600952887 3.6307256 -1103.0984
+124841.260095339 3.630765 -1103.1774
+124842.2600953893 3.6308043 -1103.1774
+124843.2600954396 3.6307256 -1103.2959
+124844.2600954899 3.6307256 -1103.2168
+124845.2600955402 3.6308043 -1103.1774
+124846.2600955905 3.6306863 -1103.1378
+124847.2600956408 3.6307256 -1103.2366
+124848.2600956911 3.6306863 -1103.2562
+124849.2600957414 3.630765 -1103.2168
+124850.2600957917 3.6306074 -1103.197
+124851.260095842 3.6306863 -1103.2761
+124852.2600958922 3.6306467 -1103.2168
+124853.2600959425 3.6306074 -1103.197
+124854.2600959928 3.6307256 -1103.1774
+124855.2600960431 3.6306863 -1103.2959
+124856.2600960934 3.6306467 -1103.1774
+124857.2600961437 3.6306467 -1103.1378
+124858.260096194 3.630568 -1103.2168
+124859.2600962443 3.6304893 -1103.1774
+124860.2600962946 3.6306467 -1103.2562
+124861.2600963449 3.6306467 -1103.1774
+124862.2600963952 3.6306863 -1103.2366
+124863.2600964454 3.6306074 -1103.197
+124864.2600964957 3.6304893 -1103.1182
+124865.260096546 3.6305287 -1103.1182
+124866.2600965963 3.630568 -1103.2562
+124867.2600966466 3.6305287 -1103.1576
+124868.2600966969 3.630568 -1103.2168
+124869.2600967472 3.6306074 -1103.197
+124870.2600967975 3.630568 -1103.2562
+124871.2600968478 3.6305287 -1103.2168
+124872.2600968981 3.6304893 -1103.197
+124873.2600969484 3.630568 -1103.1576
+124874.2600969987 3.63045 -1103.3156
+124875.2600970489 3.6305287 -1103.2168
+124876.2600970992 3.6303318 -1103.2959
+124877.2600971495 3.63045 -1103.197
+124878.2600971998 3.63045 -1103.2761
+124879.2600972501 3.6304107 -1103.2761
+124880.2600973004 3.6304107 -1103.2562
+124881.2600973507 3.6303713 -1103.1774
+124882.260097401 3.6303318 -1103.2366
+124883.2600974513 3.6303713 -1103.1774
+124884.2600975016 3.6303713 -1103.1774
+124885.2600975519 3.6303318 -1103.2168
+124886.2600976022 3.63045 -1103.2562
+124887.2600976524 3.6302924 -1103.1576
+124888.2600977027 3.6302924 -1103.197
+124889.260097753 3.6303713 -1103.2562
+124890.2600978033 3.6302924 -1103.2366
+124891.2600978536 3.6302531 -1103.2761
+124892.2600979039 3.6303318 -1103.2761
+124893.2600979542 3.6303713 -1103.2562
+124894.2600980045 3.6303713 -1103.197
+124895.2600980548 3.6303318 -1103.2562
+124896.2600981051 3.6302531 -1103.1774
+124897.2600981554 3.6303713 -1103.2366
+124898.2600982056 3.6303318 -1103.1576
+124899.2600982559 3.6302137 -1103.2168
+124900.2600983062 3.6302531 -1103.197
+124901.2600983565 3.6301744 -1103.2366
+124902.2600984068 3.6302137 -1103.2562
+124903.2600984571 3.6302137 -1103.1774
+124904.2600985074 3.6302137 -1103.2168
+124905.2600985577 3.6301351 -1103.1774
+124906.260098608 3.6300957 -1103.1576
+124907.2600986583 3.6301744 -1103.2761
+124908.2600987086 3.6300564 -1103.197
+124909.2600987589 3.6302531 -1103.2562
+124910.2600988091 3.6301744 -1103.1774
+124911.2600988594 3.6301744 -1103.2366
+124912.2600989097 3.6301351 -1103.0984
+124913.26009896 3.6301744 -1103.197
+124914.2600990103 3.6300957 -1103.197
+124915.2600990606 3.6301351 -1103.1182
+124916.2600991109 3.6300957 -1103.1576
+124917.2600991612 3.6300168 -1103.197
+124918.2600992115 3.6300957 -1103.2562
+124919.2600992618 3.6299381 -1103.1774
+124920.2600993121 3.6301351 -1103.2366
+124921.2600993623 3.6302137 -1103.2761
+124922.2600994126 3.6300957 -1103.2168
+124923.2600994629 3.6300168 -1103.2366
+124924.2600995132 3.6299775 -1103.2761
+124925.2600995635 3.6300168 -1103.1576
+124926.2600996138 3.6300957 -1103.2761
+124927.2600996641 3.6300168 -1103.197
+124928.2600997144 3.6299775 -1103.197
+124929.2600997647 3.6299775 -1103.2168
+124930.260099815 3.6300564 -1103.1774
+124931.2600998653 3.6299381 -1103.197
+124932.2600999156 3.6300168 -1103.197
+124933.2600999658 3.6299381 -1103.197
+124934.2601000161 3.6299775 -1103.2959
+124935.2601000664 3.6299381 -1103.197
+124936.2601001167 3.6299381 -1103.1378
+124937.260100167 3.6299381 -1103.2168
+124938.2601002173 3.6298594 -1103.2562
+124939.2601002676 3.6298988 -1103.2562
+124940.2601003179 3.6298988 -1103.2168
+124941.2601003682 3.6298988 -1103.2168
+124942.2601004185 3.6298594 -1103.2959
+124943.2601004688 3.6299381 -1103.2366
+124944.2601005191 3.6298988 -1103.1576
+124945.2601005693 3.6299775 -1103.1182
+124946.2601006196 3.6298201 -1103.2761
+124947.2601006699 3.6298201 -1103.1774
+124948.2601007202 3.6297808 -1103.2366
+124949.2601007705 3.6298594 -1103.1774
+124950.2601008208 3.6297808 -1103.2959
+124951.2601008711 3.6298594 -1103.2562
+124952.2601009214 3.6298201 -1103.2761
+124953.2601009717 3.6298201 -1103.2366
+124954.260101022 3.6298201 -1103.2959
+124955.2601010723 3.6298201 -1103.1774
+124956.2601011225 3.6297808 -1103.2366
+124957.2601011728 3.6297412 -1103.2168
+124958.2601012231 3.6297412 -1103.197
+124959.2601012734 3.6297019 -1103.197
+124960.2601013237 3.6298201 -1103.2562
+124961.260101374 3.6297412 -1103.2168
+124962.2601014243 3.6298594 -1103.2366
+124963.2601014746 3.6297019 -1103.197
+124964.2601015249 3.6296625 -1103.2168
+124965.2601015752 3.6297019 -1103.197
+124966.2601016255 3.6297019 -1103.197
+124967.2601016758 3.6296232 -1103.2366
+124968.260101726 3.6296232 -1103.2366
+124969.2601017763 3.6296625 -1103.2366
+124970.2601018266 3.6296625 -1103.2168
+124971.2601018769 3.6296625 -1103.2366
+124972.2601019272 3.6296625 -1103.1378
+124973.2601019775 3.6295838 -1103.197
+124974.2601020278 3.6296232 -1103.1182
+124975.2601020781 3.6296625 -1103.2366
+124976.2601021284 3.6295838 -1103.3156
+124977.2601021787 3.6295445 -1103.1774
+124978.260102229 3.6295838 -1103.2366
+124979.2601022793 3.6295838 -1103.2761
+124980.2601023295 3.6295052 -1103.0984
+124981.2601023798 3.6294658 -1103.2168
+124982.2601024301 3.6296232 -1103.1378
+124983.2601024804 3.6295445 -1103.2562
+124984.2601025307 3.6295838 -1103.1774
+124985.260102581 3.6295445 -1103.2366
+124986.2601026313 3.6294262 -1103.2366
+124987.2601026816 3.6294658 -1103.2562
+124988.2601027319 3.6295445 -1103.3353
+124989.2601027822 3.6294658 -1103.197
+124990.2601028325 3.6294262 -1103.197
+124991.2601028827 3.6294658 -1103.1774
+124992.260102933 3.6295052 -1103.1774
+124993.2601029833 3.6295838 -1103.2562
+124994.2601030336 3.6294658 -1103.2761
+124995.2601030839 3.6294658 -1103.197
+124996.2601031342 3.6295052 -1103.1774
+124997.2601031845 3.6293476 -1103.1774
+124998.2601032348 3.6294658 -1103.2761
+124999.2601032851 3.6294262 -1103.1576
+125000.2601033354 3.6293869 -1103.197
+125001.2601033857 3.6293082 -1103.2168
+125002.260103436 3.6293476 -1103.2562
+125003.2601034862 3.6293082 -1103.197
+125004.2601035365 3.6293869 -1103.2168
+125005.2601035868 3.6293869 -1103.2761
+125006.2601036371 3.6293476 -1103.2168
+125007.2601036874 3.6293869 -1103.2168
+125008.2601037377 3.6293476 -1103.1774
+125009.260103788 3.6293082 -1103.197
+125010.2601038383 3.6293476 -1103.2761
+125011.2601038886 3.6292295 -1103.2366
+125012.2601039389 3.6292689 -1103.2761
+125013.2601039892 3.6292295 -1103.1576
+125014.2601040395 3.6293869 -1103.2959
+125015.2601040897 3.6291902 -1103.1378
+125016.26010414 3.6292295 -1103.1576
+125017.2601041903 3.6292689 -1103.197
+125018.2601042406 3.6292295 -1103.2761
+125019.2601042909 3.6291509 -1103.2761
+125020.2601043412 3.6292295 -1103.2168
+125021.2601043915 3.6292689 -1103.2168
+125022.2601044418 3.6292295 -1103.197
+125023.2601044921 3.6291509 -1103.1182
+125024.2601045424 3.6292689 -1103.2168
+125025.2601045927 3.6291902 -1103.197
+125026.2601046429 3.6291113 -1103.1182
+125027.2601046932 3.6292295 -1103.2168
+125028.2601047435 3.6291509 -1103.1378
+125029.2601047938 3.6292295 -1103.2761
+125030.2601048441 3.629072 -1103.2761
+125031.2601048944 3.629072 -1103.2562
+125032.2601049447 3.6291113 -1103.2168
+125033.260104995 3.6291509 -1103.1378
+125034.2601050453 3.6291509 -1103.1576
+125035.2601050956 3.6291113 -1103.1774
+125036.2601051459 3.629072 -1103.2761
+125037.2601051962 3.629072 -1103.2761
+125038.2601052464 3.629072 -1103.1182
+125039.2601052967 3.6290326 -1103.2761
+125040.260105347 3.629072 -1103.1576
+125041.2601053973 3.629072 -1103.2366
+125042.2601054476 3.6291113 -1103.2168
+125043.2601054979 3.6290326 -1103.1378
+125044.2601055482 3.629072 -1103.2366
+125045.2601055985 3.6290326 -1103.197
+125046.2601056488 3.6289933 -1103.2168
+125047.2601056991 3.6290326 -1103.1774
+125048.2601057494 3.6289933 -1103.2168
+125049.2601057997 3.6291113 -1103.2761
+125050.2601058499 3.6289539 -1103.2168
+125051.2601059002 3.6289933 -1103.2761
+125052.2601059505 3.6288753 -1103.2366
+125053.2601060008 3.6288753 -1103.2366
+125054.2601060511 3.6289539 -1103.1182
+125055.2601061014 3.6289539 -1103.2761
+125056.2601061517 3.6289539 -1103.2761
+125057.260106202 3.6289146 -1103.2366
+125058.2601062523 3.6289146 -1103.197
+125059.2601063026 3.6289146 -1103.2366
+125060.2601063529 3.6289146 -1103.2168
+125061.2601064031 3.6289146 -1103.1774
+125062.2601064534 3.6288753 -1103.1378
+125063.2601065037 3.628757 -1103.2168
+125064.260106554 3.6288753 -1103.1182
+125065.2601066043 3.6287963 -1103.2366
+125066.2601066546 3.6287963 -1103.1378
+125067.2601067049 3.6288753 -1103.2168
+125068.2601067552 3.628757 -1103.2168
+125069.2601068055 3.6288359 -1103.2168
+125070.2601068558 3.628757 -1103.1576
+125071.2601069061 3.6288359 -1103.1576
+125072.2601069564 3.6287177 -1103.2168
+125073.2601070066 3.628757 -1103.197
+125074.2601070569 3.6288753 -1103.2366
+125075.2601071072 3.6287963 -1103.2959
+125076.2601071575 3.6286783 -1103.2168
+125077.2601072078 3.6287963 -1103.1182
+125078.2601072581 3.6286783 -1103.2366
+125079.2601073084 3.6287177 -1103.197
+125080.2601073587 3.6286783 -1103.1576
+125081.260107409 3.628757 -1103.1774
+125082.2601074593 3.6287177 -1103.2168
+125083.2601075096 3.6287177 -1103.197
+125084.2601075599 3.6286783 -1103.197
+125085.2601076101 3.6287177 -1103.3749
+125086.2601076604 3.628639 -1103.1774
+125087.2601077107 3.6287177 -1103.197
+125088.260107761 3.628639 -1103.1774
+125089.2601078113 3.6285996 -1103.2562
+125090.2601078616 3.6285996 -1103.2761
+125091.2601079119 3.6285996 -1103.2366
+125092.2601079622 3.6286783 -1103.2761
+125093.2601080125 3.6287177 -1103.3156
+125094.2601080628 3.6285603 -1103.1774
+125095.2601081131 3.628639 -1103.2366
+125096.2601081633 3.6286783 -1103.1774
+125097.2601082136 3.6284814 -1103.2168
+125098.2601082639 3.628521 -1103.2168
+125099.2601083142 3.6285603 -1103.2168
+125100.2601083645 3.628521 -1103.1774
+125101.2601084148 3.628521 -1103.1774
+125102.2601084651 3.6285603 -1103.2168
+125103.2601085154 3.6285603 -1103.2168
+125104.2601085657 3.6285603 -1103.1182
+125105.260108616 3.628442 -1103.1182
+125106.2601086663 3.628521 -1103.1774
+125107.2601087166 3.628521 -1103.2366
+125108.2601087668 3.628521 -1103.1774
+125109.2601088171 3.6285996 -1103.197
+125110.2601088674 3.628442 -1103.2562
+125111.2601089177 3.6284814 -1103.197
+125112.260108968 3.628521 -1103.2366
+125113.2601090183 3.628324 -1103.2959
+125114.2601090686 3.628442 -1103.197
+125115.2601091189 3.6284814 -1103.2168
+125116.2601091692 3.628521 -1103.1774
+125117.2601092195 3.628442 -1103.1378
+125118.2601092698 3.628521 -1103.3156
+125119.2601093201 3.6284814 -1103.2168
+125120.2601093703 3.628442 -1103.2366
+125121.2601094206 3.628324 -1103.1774
+125122.2601094709 3.6283634 -1103.2168
+125123.2601095212 3.628324 -1103.197
+125124.2601095715 3.6283634 -1103.1576
+125125.2601096218 3.628324 -1103.1576
+125126.2601096721 3.6283634 -1103.1774
+125127.2601097224 3.6283634 -1103.2366
+125128.2601097727 3.628324 -1103.1774
+125129.260109823 3.6284027 -1103.2761
+125130.2601098733 3.6283634 -1103.2366
+125131.2601099235 3.6282847 -1103.2366
+125132.2601099738 3.6282847 -1103.2562
+125133.2601100241 3.6282847 -1103.3156
+125134.2601100744 3.6283634 -1103.197
+125135.2601101247 3.628324 -1103.197
+125136.260110175 3.628324 -1103.197
+125137.2601102253 3.628206 -1103.2562
+125138.2601102756 3.6282454 -1103.197
+125139.2601103259 3.628324 -1103.197
+125140.2601103762 3.628206 -1103.1774
+125141.2601104265 3.6283634 -1103.197
+125142.2601104768 3.6284027 -1103.3353
+125143.260110527 3.6281664 -1103.197
+125144.2601105773 3.6282847 -1103.2761
+125145.2601106276 3.628206 -1103.2168
+125146.2601106779 3.6281271 -1103.2562
+125147.2601107282 3.6281271 -1103.2761
+125148.2601107785 3.6281664 -1103.1774
+125149.2601108288 3.6281271 -1103.1774
+125150.2601108791 3.6282847 -1103.1774
+125151.2601109294 3.628206 -1103.2562
+125152.2601109797 3.628206 -1103.2366
+125153.26011103 3.6281271 -1103.3156
+125154.2601110803 3.6281271 -1103.2366
+125155.2601111305 3.6280878 -1103.197
+125156.2601111808 3.6281271 -1103.197
+125157.2601112311 3.6280878 -1103.2959
+125158.2601112814 3.6280878 -1103.1774
+125159.2601113317 3.6280878 -1103.2761
+125160.260111382 3.6280878 -1103.197
+125161.2601114323 3.6280878 -1103.2366
+125162.2601114826 3.6280484 -1103.197
+125163.2601115329 3.6280878 -1103.2366
+125164.2601115832 3.6280484 -1103.2562
+125165.2601116335 3.6280091 -1103.2366
+125166.2601116837 3.6280091 -1103.1576
+125167.260111734 3.6280878 -1103.2562
+125168.2601117843 3.6280484 -1103.2366
+125169.2601118346 3.6279304 -1103.2366
+125170.2601118849 3.6279697 -1103.197
+125171.2601119352 3.6280091 -1103.2168
+125172.2601119855 3.6279697 -1103.1774
+125173.2601120358 3.6280091 -1103.1378
+125174.2601120861 3.6279697 -1103.2168
+125175.2601121364 3.6278908 -1103.2168
+125176.2601121867 3.6278908 -1103.1576
+125177.260112237 3.6279304 -1103.2562
+125178.2601122872 3.6278908 -1103.1378
+125179.2601123375 3.6279697 -1103.2168
+125180.2601123878 3.6278515 -1103.2562
+125181.2601124381 3.6278908 -1103.1774
+125182.2601124884 3.6277728 -1103.1774
+125183.2601125387 3.6278908 -1103.2761
+125184.260112589 3.6280091 -1103.2366
+125185.2601126393 3.6278121 -1103.2761
+125186.2601126896 3.6278121 -1103.2168
+125187.2601127399 3.6279304 -1103.2168
+125188.2601127902 3.6278121 -1103.2168
+125189.2601128404 3.6277728 -1103.197
+125190.2601128907 3.6278121 -1103.2168
+125191.260112941 3.6277728 -1103.1576
+125192.2601129913 3.6278515 -1103.2562
+125193.2601130416 3.6278908 -1103.2562
+125194.2601130919 3.6278515 -1103.2168
+125195.2601131422 3.6278908 -1103.3156
+125196.2601131925 3.6277335 -1103.2168
+125197.2601132428 3.6278121 -1103.0984
+125198.2601132931 3.6277728 -1103.197
+125199.2601133434 3.6278121 -1103.2168
+125200.2601133937 3.6278121 -1103.2168
+125201.2601134439 3.6278515 -1103.1576
+125202.2601134942 3.6276941 -1103.2366
+125203.2601135445 3.6277728 -1103.2366
+125204.2601135948 3.6276941 -1103.2366
+125205.2601136451 3.6278908 -1103.197
+125206.2601136954 3.6277728 -1103.1378
+125207.2601137457 3.6276548 -1103.2761
+125208.260113796 3.6277335 -1103.2366
+125209.2601138463 3.6276548 -1103.2168
+125210.2601138966 3.6276548 -1103.1774
+125211.2601139469 3.6276941 -1103.2562
+125212.2601139972 3.6276548 -1103.197
+125213.2601140474 3.6276155 -1103.2761
+125214.2601140977 3.6276155 -1103.1774
+125215.260114148 3.6277335 -1103.2168
+125216.2601141983 3.6274972 -1103.197
+125217.2601142486 3.6276548 -1103.197
+125218.2601142989 3.6276155 -1103.1774
+125219.2601143492 3.6274972 -1103.1576
+125220.2601143995 3.6276548 -1103.2366
+125221.2601144498 3.6276155 -1103.1774
+125222.2601145001 3.6276155 -1103.197
+125223.2601145504 3.6274972 -1103.2366
+125224.2601146006 3.6276155 -1103.1774
+125225.2601146509 3.6275365 -1103.2562
+125226.2601147012 3.6276155 -1103.197
+125227.2601147515 3.6275759 -1103.197
+125228.2601148018 3.6275759 -1103.2562
+125229.2601148521 3.6275365 -1103.2168
+125230.2601149024 3.6275759 -1103.2168
+125231.2601149527 3.6274185 -1103.2168
+125232.260115003 3.6274579 -1103.1576
+125233.2601150533 3.6274579 -1103.2168
+125234.2601151036 3.6274579 -1103.2562
+125235.2601151539 3.6275365 -1103.2761
+125236.2601152041 3.6273792 -1103.1576
+125237.2601152544 3.6273005 -1103.2168
+125238.2601153047 3.6274185 -1103.2366
+125239.260115355 3.6274579 -1103.3551
+125240.2601154053 3.6274579 -1103.2366
+125241.2601154556 3.6273792 -1103.1774
+125242.2601155059 3.6274579 -1103.2168
+125243.2601155562 3.6274185 -1103.2168
+125244.2601156065 3.6273398 -1103.2168
+125245.2601156568 3.6273792 -1103.1774
+125246.2601157071 3.6274579 -1103.2761
+125247.2601157574 3.6273792 -1103.1774
+125248.2601158076 3.6272609 -1103.2366
+125249.2601158579 3.6273398 -1103.2366
+125250.2601159082 3.6273792 -1103.1774
+125251.2601159585 3.6272609 -1103.1182
+125252.2601160088 3.6273398 -1103.2562
+125253.2601160591 3.6273398 -1103.2562
+125254.2601161094 3.6273005 -1103.2562
+125255.2601161597 3.6273792 -1103.2761
+125256.26011621 3.6273005 -1103.2168
+125257.2601162603 3.6274185 -1103.2168
+125258.2601163106 3.6272609 -1103.2562
+125259.2601163608 3.6273005 -1103.197
+125260.2601164111 3.6273005 -1103.2168
+125261.2601164614 3.6274185 -1103.197
+125262.2601165117 3.6272216 -1103.2366
+125263.260116562 3.6272216 -1103.2562
+125264.2601166123 3.6273005 -1103.1774
+125265.2601166626 3.6272216 -1103.1378
+125266.2601167129 3.6272609 -1103.2562
+125267.2601167632 3.6272216 -1103.2366
+125268.2601168135 3.6272609 -1103.1378
+125269.2601168638 3.6271822 -1103.2562
+125270.2601169141 3.6271822 -1103.2562
+125271.2601169643 3.6271429 -1103.1774
+125272.2601170146 3.6271822 -1103.2168
+125273.2601170649 3.6272216 -1103.2761
+125274.2601171152 3.6271036 -1103.2366
+125275.2601171655 3.6271822 -1103.2168
+125276.2601172158 3.6271822 -1103.2761
+125277.2601172661 3.6271036 -1103.197
+125278.2601173164 3.6270642 -1103.197
+125279.2601173667 3.6271429 -1103.2168
+125280.260117417 3.6271036 -1103.197
+125281.2601174673 3.6271429 -1103.2366
+125282.2601175176 3.6270642 -1103.2366
+125283.2601175678 3.6270249 -1103.3156
+125284.2601176181 3.6270642 -1103.1774
+125285.2601176684 3.6270642 -1103.1576
+125286.2601177187 3.626946 -1103.2168
+125287.260117769 3.6270249 -1103.2761
+125288.2601178193 3.6269855 -1103.197
+125289.2601178696 3.6270249 -1103.2562
+125290.2601179199 3.6270249 -1103.1576
+125291.2601179702 3.6270642 -1103.3156
+125292.2601180205 3.6270249 -1103.2366
+125293.2601180708 3.6270642 -1103.2562
+125294.260118121 3.6270642 -1103.3156
+125295.2601181713 3.6270642 -1103.0785
+125296.2601182216 3.6269066 -1103.2562
+125297.2601182719 3.6269066 -1103.2366
+125298.2601183222 3.6269855 -1103.2168
+125299.2601183725 3.6269066 -1103.2366
+125300.2601184228 3.6269855 -1103.197
+125301.2601184731 3.6269855 -1103.2562
+125302.2601185234 3.6269855 -1103.197
+125303.2601185737 3.6268673 -1103.2761
+125304.260118624 3.6270249 -1103.2168
+125305.2601186743 3.626828 -1103.1576
+125306.2601187245 3.6268673 -1103.1774
+125307.2601187748 3.626946 -1103.2562
+125308.2601188251 3.6268673 -1103.1576
+125309.2601188754 3.6269066 -1103.2168
+125310.2601189257 3.6269066 -1103.1774
+125311.260118976 3.626828 -1103.2562
+125312.2601190263 3.6267886 -1103.197
+125313.2601190766 3.6267886 -1103.2761
+125314.2601191269 3.6267886 -1103.2168
+125315.2601191772 3.6267886 -1103.1774
+125316.2601192275 3.626828 -1103.197
+125317.2601192778 3.6267886 -1103.2168
+125318.260119328 3.626828 -1103.2168
+125319.2601193783 3.626828 -1103.1774
+125320.2601194286 3.6267886 -1103.3353
+125321.2601194789 3.6267493 -1103.1576
+125322.2601195292 3.6267493 -1103.197
+125323.2601195795 3.6267493 -1103.2761
+125324.2601196298 3.6267886 -1103.2366
+125325.2601196801 3.6267493 -1103.2761
+125326.2601197304 3.6267099 -1103.1182
+125327.2601197807 3.6267493 -1103.1774
+125328.260119831 3.6268673 -1103.2562
+125329.2601198812 3.6267886 -1103.197
+125330.2601199315 3.6267099 -1103.2366
+125331.2601199818 3.6267493 -1103.2168
+125332.2601200321 3.6265917 -1103.1378
+125333.2601200824 3.6265917 -1103.2366
+125334.2601201327 3.6267493 -1103.2366
+125335.260120183 3.6265917 -1103.197
+125336.2601202333 3.6265917 -1103.2959
+125337.2601202836 3.6267099 -1103.1576
+125338.2601203339 3.6265523 -1103.1774
+125339.2601203842 3.626631 -1103.2959
+125340.2601204345 3.626513 -1103.2168
+125341.2601204847 3.626631 -1103.1774
+125342.260120535 3.626631 -1103.3156
+125343.2601205853 3.626513 -1103.2168
+125344.2601206356 3.6265917 -1103.2562
+125345.2601206859 3.6265523 -1103.2168
+125346.2601207362 3.6265523 -1103.197
+125347.2601207865 3.6265523 -1103.1774
+125348.2601208368 3.6264737 -1103.197
+125349.2601208871 3.626631 -1103.1576
+125350.2601209374 3.626513 -1103.197
+125351.2601209877 3.626513 -1103.197
+125352.260121038 3.626513 -1103.2168
+125353.2601210882 3.626513 -1103.1378
+125354.2601211385 3.6264737 -1103.2562
+125355.2601211888 3.6265523 -1103.2761
+125356.2601212391 3.6264343 -1103.197
+125357.2601212894 3.6264737 -1103.2959
+125358.2601213397 3.6264343 -1103.1378
+125359.26012139 3.626395 -1103.2168
+125360.2601214403 3.6264737 -1103.2562
+125361.2601214906 3.626395 -1103.2366
+125362.2601215409 3.6264343 -1103.2168
+125363.2601215912 3.6264737 -1103.197
+125364.2601216414 3.6264343 -1103.2761
+125365.2601216917 3.626631 -1103.2562
+125366.260121742 3.6264343 -1103.2168
+125367.2601217923 3.6263161 -1103.2168
+125368.2601218426 3.626395 -1103.2562
+125369.2601218929 3.6264737 -1103.197
+125370.2601219432 3.6263556 -1103.2366
+125371.2601219935 3.6264343 -1103.2168
+125372.2601220438 3.626395 -1103.2761
+125373.2601220941 3.626395 -1103.1774
+125374.2601221444 3.626395 -1103.1576
+125375.2601221947 3.626395 -1103.3551
+125376.2601222449 3.6263161 -1103.3551
+125377.2601222952 3.6262767 -1103.2761
+125378.2601223455 3.6264343 -1103.2562
+125379.2601223958 3.6263556 -1103.2366
+125380.2601224461 3.6261981 -1103.1378
+125381.2601224964 3.6263556 -1103.1576
+125382.2601225467 3.6262374 -1103.1774
+125383.260122597 3.6263556 -1103.1182
+125384.2601226473 3.6262374 -1103.2168
+125385.2601226976 3.62608 -1103.1774
+125386.2601227479 3.6262767 -1103.0984
+125387.2601227982 3.6262374 -1103.1576
+125388.2601228484 3.6262767 -1103.2168
+125389.2601228987 3.6262374 -1103.197
+125390.260122949 3.6262374 -1103.2168
+125391.2601229993 3.6262374 -1103.1774
+125392.2601230496 3.6262767 -1103.2562
+125393.2601230999 3.6262374 -1103.2168
+125394.2601231502 3.6261981 -1103.1774
+125395.2601232005 3.6261981 -1103.1774
+125396.2601232508 3.6261981 -1103.3353
+125397.2601233011 3.6261587 -1103.1378
+125398.2601233514 3.6261981 -1103.1576
+125399.2601234016 3.6261981 -1103.2959
+125400.2601234519 3.6261194 -1103.2366
+125401.2601235022 3.62608 -1103.1378
+125402.2601235525 3.6261587 -1103.2562
+125403.2601236028 3.6262374 -1103.1774
+125404.2601236531 3.6260405 -1103.1576
+125405.2601237034 3.6261587 -1103.197
+125406.2601237537 3.6260405 -1103.197
+125407.260123804 3.6260011 -1103.2168
+125408.2601238543 3.6260405 -1103.2168
+125409.2601239046 3.6261194 -1103.1576
+125410.2601239549 3.6261587 -1103.2761
+125411.2601240051 3.6260405 -1103.1774
+125412.2601240554 3.6261194 -1103.1576
+125413.2601241057 3.6260405 -1103.2562
+125414.260124156 3.6260011 -1103.197
+125415.2601242063 3.6260405 -1103.197
+125416.2601242566 3.6259618 -1103.1774
+125417.2601243069 3.6260011 -1103.197
+125418.2601243572 3.6259618 -1103.2168
+125419.2601244075 3.6258831 -1103.2761
+125420.2601244578 3.6260011 -1103.2366
+125421.2601245081 3.6260405 -1103.197
+125422.2601245584 3.6259618 -1103.2168
+125423.2601246086 3.6258438 -1103.2168
+125424.2601246589 3.6258831 -1103.2168
+125425.2601247092 3.6258831 -1103.2562
+125426.2601247595 3.6258044 -1103.1774
+125427.2601248098 3.6259224 -1103.2562
+125428.2601248601 3.6258438 -1103.197
+125429.2601249104 3.6259618 -1103.197
+125430.2601249607 3.6259224 -1103.197
+125431.260125011 3.6258438 -1103.2562
+125432.2601250613 3.6258831 -1103.197
+125433.2601251116 3.6259224 -1103.197
+125434.2601251618 3.6258831 -1103.1378
+125435.2601252121 3.6258438 -1103.197
+125436.2601252624 3.6258438 -1103.2761
+125437.2601253127 3.6257255 -1103.2562
+125438.260125363 3.6257651 -1103.2562
+125439.2601254133 3.6258044 -1103.2168
+125440.2601254636 3.6258044 -1103.2562
+125441.2601255139 3.6258438 -1103.1378
+125442.2601255642 3.6257651 -1103.2761
+125443.2601256145 3.6258831 -1103.197
+125444.2601256648 3.6257651 -1103.1774
+125445.2601257151 3.6257255 -1103.1182
+125446.2601257653 3.6256468 -1103.1182
+125447.2601258156 3.6257651 -1103.1378
+125448.2601258659 3.6257651 -1103.1378
+125449.2601259162 3.6257255 -1103.2761
+125450.2601259665 3.6257255 -1103.197
+125451.2601260168 3.6257255 -1103.2562
+125452.2601260671 3.6256862 -1103.1774
+125453.2601261174 3.6256862 -1103.2366
+125454.2601261677 3.6256468 -1103.2168
+125455.260126218 3.6256468 -1103.1576
+125456.2601262683 3.6256075 -1103.2366
+125457.2601263186 3.6257255 -1103.1576
+125458.2601263688 3.6256468 -1103.197
+125459.2601264191 3.6256862 -1103.2562
+125460.2601264694 3.6256075 -1103.197
+125461.2601265197 3.6257255 -1103.1774
+125462.26012657 3.6256862 -1103.197
+125463.2601266203 3.6256075 -1103.2761
+125464.2601266706 3.6254895 -1103.1378
+125465.2601267209 3.6256075 -1103.2168
+125466.2601267712 3.6256468 -1103.197
+125467.2601268215 3.6256075 -1103.1774
+125468.2601268718 3.6255682 -1103.2366
+125469.260126922 3.6256468 -1103.2366
+125470.2601269723 3.6255288 -1103.1774
+125471.2601270226 3.6256862 -1103.2959
+125472.2601270729 3.6254895 -1103.197
+125473.2601271232 3.6254895 -1103.1182
+125474.2601271735 3.6256075 -1103.2168
+125475.2601272238 3.6254895 -1103.1774
+125476.2601272741 3.6255288 -1103.2562
+125477.2601273244 3.6256075 -1103.2168
+125478.2601273747 3.6254895 -1103.2959
+125479.260127425 3.6254106 -1103.197
+125480.2601274753 3.6254895 -1103.0984
+125481.2601275255 3.6255288 -1103.2366
+125482.2601275758 3.6254895 -1103.197
+125483.2601276261 3.6254895 -1103.197
+125484.2601276764 3.6254106 -1103.1774
+125485.2601277267 3.6255288 -1103.2562
+125486.260127777 3.6254501 -1103.2366
+125487.2601278273 3.6254106 -1103.2168
+125488.2601278776 3.6254501 -1103.197
+125489.2601279279 3.6253319 -1103.197
+125490.2601279782 3.6252925 -1103.2562
+125491.2601280285 3.6252925 -1103.1774
+125492.2601280787 3.6254501 -1103.197
+125493.260128129 3.6254106 -1103.1576
+125494.2601281793 3.6254501 -1103.2562
+125495.2601282296 3.6254895 -1103.197
+125496.2601282799 3.6253319 -1103.1576
+125497.2601283302 3.6253319 -1103.1774
+125498.2601283805 3.6253712 -1103.2761
+125499.2601284308 3.6252925 -1103.1182
+125500.2601284811 3.6252925 -1103.2562
+125501.2601285314 3.6252532 -1103.2562
+125502.2601285817 3.6252925 -1103.2366
+125503.260128632 3.6252925 -1103.197
+125504.2601286822 3.6252925 -1103.1576
+125505.2601287325 3.6252925 -1103.1576
+125506.2601287828 3.6253319 -1103.0785
+125507.2601288331 3.6252532 -1103.2761
+125508.2601288834 3.6252925 -1103.1378
+125509.2601289337 3.6253712 -1103.2562
+125510.260128984 3.6253712 -1103.197
+125511.2601290343 3.6251745 -1103.1378
+125512.2601290846 3.6252139 -1103.197
+125513.2601291349 3.6251745 -1103.2366
+125514.2601291852 3.6252139 -1103.2562
+125515.2601292355 3.6252139 -1103.2761
+125516.2601292857 3.6252139 -1103.1774
+125517.260129336 3.6251352 -1103.1182
+125518.2601293863 3.6251352 -1103.1576
+125519.2601294366 3.6251745 -1103.197
+125520.2601294869 3.6250956 -1103.197
+125521.2601295372 3.6251352 -1103.2761
+125522.2601295875 3.6251352 -1103.197
+125523.2601296378 3.6252925 -1103.0588
+125524.2601296881 3.6251352 -1103.197
+125525.2601297384 3.6251745 -1103.2562
+125526.2601297887 3.6252139 -1103.2168
+125527.2601298389 3.6249776 -1103.2761
+125528.2601298892 3.6251745 -1103.2366
+125529.2601299395 3.6250956 -1103.1182
+125530.2601299898 3.6250563 -1103.2366
+125531.2601300401 3.6250563 -1103.2959
+125532.2601300904 3.6250956 -1103.1774
+125533.2601301407 3.6250956 -1103.2761
+125534.260130191 3.6251352 -1103.197
+125535.2601302413 3.6250956 -1103.2761
+125536.2601302916 3.6250563 -1103.1378
+125537.2601303419 3.6249382 -1103.2562
+125538.2601303922 3.6250956 -1103.2562
+125539.2601304424 3.6250956 -1103.2761
+125540.2601304927 3.6250169 -1103.197
+125541.260130543 3.6249776 -1103.2959
+125542.2601305933 3.6250169 -1103.1576
+125543.2601306436 3.6249382 -1103.1774
+125544.2601306939 3.6249382 -1103.2562
+125545.2601307442 3.6248596 -1103.2168
+125546.2601307945 3.6248596 -1103.197
+125547.2601308448 3.6249382 -1103.2366
+125548.2601308951 3.6249776 -1103.1576
+125549.2601309454 3.6248596 -1103.2366
+125550.2601309957 3.6249382 -1103.197
+125551.2601310459 3.6249382 -1103.2366
+125552.2601310962 3.6248596 -1103.2366
+125553.2601311465 3.6248596 -1103.2562
+125554.2601311968 3.6248989 -1103.1774
+125555.2601312471 3.6250169 -1103.197
+125556.2601312974 3.6248202 -1103.2761
+125557.2601313477 3.6248202 -1103.197
+125558.260131398 3.6248202 -1103.2168
+125559.2601314483 3.6248596 -1103.0984
+125560.2601314986 3.6248202 -1103.1774
+125561.2601315489 3.6248596 -1103.1774
+125562.2601315991 3.6248989 -1103.1774
+125563.2601316494 3.6247807 -1103.2562
+125564.2601316997 3.6248596 -1103.197
+125565.26013175 3.6247807 -1103.1774
+125566.2601318003 3.6248596 -1103.1576
+125567.2601318506 3.6248202 -1103.2168
+125568.2601319009 3.6247807 -1103.197
+125569.2601319512 3.6248202 -1103.2761
+125570.2601320015 3.6248202 -1103.2168
+125571.2601320518 3.6248202 -1103.197
+125572.2601321021 3.6246626 -1103.1774
+125573.2601321524 3.624702 -1103.2366
+125574.2601322026 3.6247807 -1103.1182
+125575.2601322529 3.6248202 -1103.1576
+125576.2601323032 3.624702 -1103.3156
+125577.2601323535 3.6247413 -1103.1774
+125578.2601324038 3.624702 -1103.1576
+125579.2601324541 3.6247807 -1103.1378
+125580.2601325044 3.624702 -1103.2761
+125581.2601325547 3.6246626 -1103.1774
+125582.260132605 3.6246626 -1103.1378
+125583.2601326553 3.6246233 -1103.197
+125584.2601327056 3.624584 -1103.2168
+125585.2601327559 3.6246233 -1103.197
+125586.2601328061 3.624702 -1103.197
+125587.2601328564 3.624584 -1103.2168
+125588.2601329067 3.624702 -1103.3156
+125589.260132957 3.624702 -1103.2562
+125590.2601330073 3.6246626 -1103.2168
+125591.2601330576 3.6246233 -1103.1774
+125592.2601331079 3.624584 -1103.197
+125593.2601331582 3.624584 -1103.1774
+125594.2601332085 3.6246233 -1103.2168
+125595.2601332588 3.6246626 -1103.1576
+125596.2601333091 3.624584 -1103.1774
+125597.2601333593 3.624505 -1103.2168
+125598.2601334096 3.6245446 -1103.1378
+125599.2601334599 3.6245446 -1103.1774
+125600.2601335102 3.624505 -1103.1774
+125601.2601335605 3.6245446 -1103.2959
+125602.2601336108 3.624505 -1103.2168
+125603.2601336611 3.624505 -1103.2168
+125604.2601337114 3.624505 -1103.1576
+125605.2601337617 3.6245446 -1103.2168
+125606.260133812 3.6244657 -1103.1774
+125607.2601338623 3.6244657 -1103.197
+125608.2601339126 3.6244657 -1103.1576
+125609.2601339628 3.6244657 -1103.1774
+125610.2601340131 3.624387 -1103.2168
+125611.2601340634 3.6244657 -1103.2761
+125612.2601341137 3.6244264 -1103.2761
+125613.260134164 3.624387 -1103.2168
+125614.2601342143 3.624387 -1103.2366
+125615.2601342646 3.624387 -1103.1774
+125616.2601343149 3.624387 -1103.2562
+125617.2601343652 3.624387 -1103.2562
+125618.2601344155 3.6243083 -1103.2366
+125619.2601344658 3.6243083 -1103.2168
+125620.2601345161 3.6242297 -1103.3156
+125621.2601345663 3.6244657 -1103.2168
+125622.2601346166 3.6244264 -1103.2761
+125623.2601346669 3.6243083 -1103.1576
+125624.2601347172 3.6243083 -1103.2959
+125625.2601347675 3.6243083 -1103.2168
+125626.2601348178 3.6242297 -1103.2562
+125627.2601348681 3.6243477 -1103.2168
+125628.2601349184 3.6243083 -1103.2761
+125629.2601349687 3.6242297 -1103.2168
+125630.260135019 3.624387 -1103.2562
+125631.2601350693 3.6242297 -1103.0785
+125632.2601351195 3.624387 -1103.197
+125633.2601351698 3.6242297 -1103.1774
+125634.2601352201 3.6242297 -1103.1378
+125635.2601352704 3.6243083 -1103.197
+125636.2601353207 3.624269 -1103.1774
+125637.260135371 3.624269 -1103.197
+125638.2601354213 3.624269 -1103.2168
+125639.2601354716 3.624269 -1103.2562
+125640.2601355219 3.6241508 -1103.197
+125641.2601355722 3.6241901 -1103.1774
+125642.2601356225 3.6241901 -1103.2366
+125643.2601356728 3.6242297 -1103.1378
+125644.260135723 3.6241901 -1103.197
+125645.2601357733 3.6241508 -1103.197
+125646.2601358236 3.6240721 -1103.1576
+125647.2601358739 3.6241508 -1103.1774
+125648.2601359242 3.6241508 -1103.2761
+125649.2601359745 3.624269 -1103.1774
+125650.2601360248 3.6241508 -1103.2366
+125651.2601360751 3.6240721 -1103.1774
+125652.2601361254 3.6241508 -1103.1378
+125653.2601361757 3.6240721 -1103.2366
+125654.260136226 3.6241114 -1103.2959
+125655.2601362763 3.6241508 -1103.1378
+125656.2601363265 3.6241901 -1103.1774
+125657.2601363768 3.6240327 -1103.1576
+125658.2601364271 3.6239934 -1103.2168
+125659.2601364774 3.6240721 -1103.1576
+125660.2601365277 3.6240327 -1103.1774
+125661.260136578 3.6239934 -1103.1576
+125662.2601366283 3.6239147 -1103.2366
+125663.2601366786 3.6239541 -1103.1378
+125664.2601367289 3.6239147 -1103.1378
+125665.2601367792 3.6239147 -1103.2562
+125666.2601368295 3.6241114 -1103.1774
+125667.2601368797 3.6239934 -1103.2366
+125668.26013693 3.6239934 -1103.2562
+125669.2601369803 3.6239541 -1103.1774
+125670.2601370306 3.6239934 -1103.1576
+125671.2601370809 3.6240327 -1103.2761
+125672.2601371312 3.6239934 -1103.2562
+125673.2601371815 3.6239147 -1103.1774
+125674.2601372318 3.6239541 -1103.1774
+125675.2601372821 3.6239934 -1103.1774
+125676.2601373324 3.6239541 -1103.1774
+125677.2601373827 3.6239147 -1103.2366
+125678.260137433 3.6239934 -1103.1774
+125679.2601374832 3.6238358 -1103.2562
+125680.2601375335 3.6239934 -1103.1774
+125681.2601375838 3.6239934 -1103.2562
+125682.2601376341 3.6238358 -1103.1774
+125683.2601376844 3.6239541 -1103.2562
+125684.2601377347 3.6239147 -1103.197
+125685.260137785 3.6238358 -1103.2959
+125686.2601378353 3.6238751 -1103.2761
+125687.2601378856 3.6238358 -1103.2366
+125688.2601379359 3.6238358 -1103.2366
+125689.2601379862 3.6238751 -1103.2366
+125690.2601380365 3.6237965 -1103.2562
+125691.2601380867 3.6237178 -1103.197
+125692.260138137 3.6237965 -1103.2959
+125693.2601381873 3.6237965 -1103.2761
+125694.2601382376 3.6237965 -1103.2562
+125695.2601382879 3.6237965 -1103.2761
+125696.2601383382 3.6237965 -1103.1576
+125697.2601383885 3.6238358 -1103.2168
+125698.2601384388 3.6237178 -1103.2168
+125699.2601384891 3.6237571 -1103.2168
+125700.2601385394 3.6236391 -1103.2562
+125701.2601385897 3.6236784 -1103.1774
+125702.2601386399 3.6236784 -1103.2366
+125703.2601386902 3.6237571 -1103.197
+125704.2601387405 3.6237571 -1103.2562
+125705.2601387908 3.6237965 -1103.2959
+125706.2601388411 3.6236784 -1103.2959
+125707.2601388914 3.6237178 -1103.2366
+125708.2601389417 3.6236391 -1103.2562
+125709.260138992 3.6236784 -1103.197
+125710.2601390423 3.6236391 -1103.2562
+125711.2601390926 3.6236391 -1103.197
+125712.2601391429 3.6236391 -1103.1774
+125713.2601391932 3.6235602 -1103.1378
+125714.2601392434 3.6236391 -1103.1378
+125715.2601392937 3.6236784 -1103.2168
+125716.260139344 3.6235998 -1103.2562
+125717.2601393943 3.6235602 -1103.197
+125718.2601394446 3.6235602 -1103.2168
+125719.2601394949 3.6236391 -1103.2761
+125720.2601395452 3.6235602 -1103.1576
+125721.2601395955 3.6236391 -1103.197
+125722.2601396458 3.6234815 -1103.197
+125723.2601396961 3.6235602 -1103.2761
+125724.2601397464 3.6235209 -1103.3156
+125725.2601397967 3.6235209 -1103.197
+125726.2601398469 3.6234815 -1103.1378
+125727.2601398972 3.6234815 -1103.1774
+125728.2601399475 3.6235602 -1103.2562
+125729.2601399978 3.6235602 -1103.3156
+125730.2601400481 3.6234815 -1103.197
+125731.2601400984 3.6235209 -1103.2168
+125732.2601401487 3.6234815 -1103.197
+125733.260140199 3.6233635 -1103.2562
+125734.2601402493 3.6234815 -1103.2168
+125735.2601402996 3.6233242 -1103.1576
+125736.2601403499 3.6234422 -1103.1576
+125737.2601404001 3.6235209 -1103.2366
+125738.2601404504 3.6234422 -1103.2562
+125739.2601405007 3.6234422 -1103.1576
+125740.260140551 3.6234422 -1103.197
+125741.2601406013 3.6233635 -1103.2366
+125742.2601406516 3.6233635 -1103.2562
+125743.2601407019 3.6232452 -1103.2562
+125744.2601407522 3.6233242 -1103.2366
+125745.2601408025 3.6234028 -1103.1378
+125746.2601408528 3.6234028 -1103.2562
+125747.2601409031 3.6234028 -1103.1378
+125748.2601409534 3.6233635 -1103.197
+125749.2601410036 3.6234028 -1103.1378
+125750.2601410539 3.6233635 -1103.2366
+125751.2601411042 3.6232848 -1103.197
+125752.2601411545 3.6234028 -1103.1378
+125753.2601412048 3.6234028 -1103.1576
+125754.2601412551 3.6233242 -1103.197
+125755.2601413054 3.6233635 -1103.1774
+125756.2601413557 3.6232848 -1103.2168
+125757.260141406 3.6232452 -1103.1774
+125758.2601414563 3.6232452 -1103.2168
+125759.2601415066 3.6233242 -1103.1774
+125760.2601415569 3.6232452 -1103.2366
+125761.2601416071 3.6231666 -1103.2562
+125762.2601416574 3.6231666 -1103.2366
+125763.2601417077 3.6232848 -1103.0984
+125764.260141758 3.6232059 -1103.197
+125765.2601418083 3.6232059 -1103.197
+125766.2601418586 3.6232848 -1103.3156
+125767.2601419089 3.6231272 -1103.2562
+125768.2601419592 3.6232059 -1103.2761
+125769.2601420095 3.6231666 -1103.2959
+125770.2601420598 3.6232452 -1103.2761
+125771.2601421101 3.6231666 -1103.2562
+125772.2601421603 3.6232059 -1103.2168
+125773.2601422106 3.6229699 -1103.1774
+125774.2601422609 3.6230485 -1103.2562
+125775.2601423112 3.6230879 -1103.1576
+125776.2601423615 3.6232059 -1103.2959
+125777.2601424118 3.6231666 -1103.1378
+125778.2601424621 3.6232059 -1103.1378
+125779.2601425124 3.6230879 -1103.197
+125780.2601425627 3.6230092 -1103.2761
+125781.260142613 3.6230092 -1103.2959
+125782.2601426633 3.6230879 -1103.2959
+125783.2601427136 3.6231272 -1103.1576
+125784.2601427638 3.6230485 -1103.2562
+125785.2601428141 3.6230879 -1103.197
+125786.2601428644 3.6230485 -1103.2366
+125787.2601429147 3.6230092 -1103.1576
+125788.260142965 3.6230485 -1103.1774
+125789.2601430153 3.6229699 -1103.2366
+125790.2601430656 3.6229699 -1103.2562
+125791.2601431159 3.6229699 -1103.2959
+125792.2601431662 3.6229699 -1103.0984
+125793.2601432165 3.6229699 -1103.2562
+125794.2601432668 3.6229303 -1103.1774
+125795.260143317 3.6230092 -1103.1774
+125796.2601433673 3.6230092 -1103.2366
+125797.2601434176 3.6230879 -1103.2168
+125798.2601434679 3.6230485 -1103.2168
+125799.2601435182 3.6229699 -1103.1378
+125800.2601435685 3.6229699 -1103.2168
+125801.2601436188 3.6228909 -1103.197
+125802.2601436691 3.6228909 -1103.2168
+125803.2601437194 3.6229303 -1103.0984
+125804.2601437697 3.6228909 -1103.2562
+125805.26014382 3.6229303 -1103.2366
+125806.2601438703 3.6229303 -1103.2562
+125807.2601439205 3.6228123 -1103.1576
+125808.2601439708 3.6228123 -1103.2562
+125809.2601440211 3.6228909 -1103.197
+125810.2601440714 3.6228909 -1103.2366
+125811.2601441217 3.6228123 -1103.1774
+125812.260144172 3.6229699 -1103.2761
+125813.2601442223 3.6228123 -1103.1774
+125814.2601442726 3.6228909 -1103.2761
+125815.2601443229 3.6228123 -1103.2562
+125816.2601443732 3.6228123 -1103.2366
+125817.2601444235 3.6227729 -1103.2562
+125818.2601444738 3.6228516 -1103.1576
+125819.260144524 3.6227729 -1103.197
+125820.2601445743 3.6227729 -1103.2168
+125821.2601446246 3.6228123 -1103.1774
+125822.2601446749 3.6228123 -1103.197
+125823.2601447252 3.6228516 -1103.1576
+125824.2601447755 3.6228123 -1103.2168
+125825.2601448258 3.6227729 -1103.1576
+125826.2601448761 3.6227336 -1103.2168
+125827.2601449264 3.6226547 -1103.1774
+125828.2601449767 3.6227336 -1103.2168
+125829.260145027 3.6226547 -1103.2959
+125830.2601450772 3.6226943 -1103.197
+125831.2601451275 3.6226943 -1103.197
+125832.2601451778 3.6226943 -1103.197
+125833.2601452281 3.622576 -1103.1774
+125834.2601452784 3.6226943 -1103.1576
+125835.2601453287 3.6226943 -1103.1576
+125836.260145379 3.6227336 -1103.1378
+125837.2601454293 3.6226547 -1103.197
+125838.2601454796 3.6226943 -1103.2168
+125839.2601455299 3.6226547 -1103.1182
+125840.2601455802 3.6226153 -1103.2168
+125841.2601456305 3.6226153 -1103.1576
+125842.2601456807 3.6226153 -1103.1774
+125843.260145731 3.6226547 -1103.1378
+125844.2601457813 3.6226547 -1103.2562
+125845.2601458316 3.622458 -1103.1774
+125846.2601458819 3.6226153 -1103.3156
+125847.2601459322 3.6224973 -1103.1774
+125848.2601459825 3.6224973 -1103.2168
+125849.2601460328 3.6224973 -1103.1576
+125850.2601460831 3.6224973 -1103.1378
+125851.2601461334 3.622576 -1103.2168
+125852.2601461837 3.6225367 -1103.1576
+125853.260146234 3.6224186 -1103.1576
+125854.2601462842 3.6225367 -1103.197
+125855.2601463345 3.6226153 -1103.2168
+125856.2601463848 3.6225367 -1103.197
+125857.2601464351 3.6225367 -1103.197
+125858.2601464854 3.6224973 -1103.2168
+125859.2601465357 3.6225367 -1103.2366
+125860.260146586 3.6224973 -1103.197
+125861.2601466363 3.6223793 -1103.197
+125862.2601466866 3.6223793 -1103.1774
+125863.2601467369 3.6224186 -1103.3551
+125864.2601467872 3.6223397 -1103.1576
+125865.2601468374 3.6224973 -1103.197
+125866.2601468877 3.6224186 -1103.2168
+125867.260146938 3.6224186 -1103.2168
+125868.2601469883 3.6224186 -1103.197
+125869.2601470386 3.6223793 -1103.197
+125870.2601470889 3.6224186 -1103.197
+125871.2601471392 3.6223397 -1103.2168
+125872.2601471895 3.6223397 -1103.1774
+125873.2601472398 3.622261 -1103.1774
+125874.2601472901 3.6223397 -1103.2959
+125875.2601473404 3.6223004 -1103.1182
+125876.2601473907 3.6223397 -1103.197
+125877.2601474409 3.6223397 -1103.197
+125878.2601474912 3.6223397 -1103.2366
+125879.2601475415 3.6222217 -1103.1576
+125880.2601475918 3.6223004 -1103.2366
+125881.2601476421 3.6222217 -1103.3156
+125882.2601476924 3.6223397 -1103.2168
+125883.2601477427 3.622261 -1103.197
+125884.260147793 3.622261 -1103.1378
+125885.2601478433 3.6221824 -1103.197
+125886.2601478936 3.6221824 -1103.197
+125887.2601479439 3.6221824 -1103.197
+125888.2601479942 3.6222217 -1103.1576
+125889.2601480444 3.622143 -1103.2366
+125890.2601480947 3.6222217 -1103.1378
+125891.260148145 3.622261 -1103.197
+125892.2601481953 3.622261 -1103.1576
+125893.2601482456 3.6222217 -1103.2761
+125894.2601482959 3.6222217 -1103.2761
+125895.2601483462 3.622143 -1103.2168
+125896.2601483965 3.6222217 -1103.1576
+125897.2601484468 3.6221824 -1103.2168
+125898.2601484971 3.6221824 -1103.197
+125899.2601485474 3.6221824 -1103.1774
+125900.2601485976 3.6221824 -1103.2168
+125901.2601486479 3.6221037 -1103.197
+125902.2601486982 3.6221037 -1103.2761
+125903.2601487485 3.6220644 -1103.2168
+125904.2601487988 3.6220644 -1103.1576
+125905.2601488491 3.6219854 -1103.2562
+125906.2601488994 3.6220248 -1103.197
+125907.2601489497 3.6221037 -1103.2168
+125908.260149 3.6220644 -1103.2959
+125909.2601490503 3.6220644 -1103.2959
+125910.2601491006 3.6220248 -1103.2761
+125911.2601491509 3.6220644 -1103.2366
+125912.2601492011 3.6219461 -1103.197
+125913.2601492514 3.6219854 -1103.197
+125914.2601493017 3.6219854 -1103.2168
+125915.260149352 3.6220644 -1103.1774
+125916.2601494023 3.6221037 -1103.2761
+125917.2601494526 3.6219068 -1103.1774
+125918.2601495029 3.6219461 -1103.2366
+125919.2601495532 3.6219854 -1103.3156
+125920.2601496035 3.6219461 -1103.2366
+125921.2601496538 3.6220644 -1103.2959
+125922.2601497041 3.6219068 -1103.2959
+125923.2601497544 3.6219461 -1103.2761
+125924.2601498046 3.6219068 -1103.2562
+125925.2601498549 3.6219854 -1103.2366
+125926.2601499052 3.6219068 -1103.197
+125927.2601499555 3.6218674 -1103.2168
+125928.2601500058 3.6219461 -1103.197
+125929.2601500561 3.6218281 -1103.197
+125930.2601501064 3.6219068 -1103.1576
+125931.2601501567 3.6218674 -1103.1774
+125932.260150207 3.6219461 -1103.2168
+125933.2601502573 3.6219461 -1103.1576
+125934.2601503076 3.6219068 -1103.1576
+125935.2601503578 3.6218281 -1103.2366
+125936.2601504081 3.6218674 -1103.2366
+125937.2601504584 3.6218281 -1103.2168
+125938.2601505087 3.6218281 -1103.2761
+125939.260150559 3.6217887 -1103.1378
+125940.2601506093 3.6217494 -1103.197
+125941.2601506596 3.6217494 -1103.197
+125942.2601507099 3.6217887 -1103.197
+125943.2601507602 3.6217887 -1103.2168
+125944.2601508105 3.6217887 -1103.1774
+125945.2601508608 3.6217887 -1103.2168
+125946.2601509111 3.6218281 -1103.197
+125947.2601509613 3.6217494 -1103.2959
+125948.2601510116 3.6218281 -1103.2366
+125949.2601510619 3.6217494 -1103.2366
+125950.2601511122 3.6217098 -1103.197
+125951.2601511625 3.6217494 -1103.1378
+125952.2601512128 3.6217494 -1103.2959
+125953.2601512631 3.6216705 -1103.197
+125954.2601513134 3.6216705 -1103.2562
+125955.2601513637 3.6215918 -1103.2761
+125956.260151414 3.6217494 -1103.2366
+125957.2601514643 3.6217098 -1103.1576
+125958.2601515146 3.6216705 -1103.1774
+125959.2601515648 3.6215918 -1103.197
+125960.2601516151 3.6216311 -1103.2366
+125961.2601516654 3.6216311 -1103.2959
+125962.2601517157 3.6217098 -1103.2366
+125963.260151766 3.6215918 -1103.197
+125964.2601518163 3.6216311 -1103.2168
+125965.2601518666 3.6216705 -1103.2761
+125966.2601519169 3.6215918 -1103.2562
+125967.2601519672 3.6216311 -1103.2168
+125968.2601520175 3.6215918 -1103.197
+125969.2601520678 3.6216705 -1103.2366
+125970.260152118 3.6215131 -1103.2366
+125971.2601521683 3.6215918 -1103.2761
+125972.2601522186 3.6214738 -1103.197
+125973.2601522689 3.6214738 -1103.2168
+125974.2601523192 3.6214738 -1103.197
+125975.2601523695 3.6215525 -1103.2366
+125976.2601524198 3.6215918 -1103.2366
+125977.2601524701 3.6215525 -1103.1774
+125978.2601525204 3.6215525 -1103.2366
+125979.2601525707 3.6214738 -1103.2562
+125980.260152621 3.6214738 -1103.1774
+125981.2601526713 3.6215131 -1103.1576
+125982.2601527215 3.6214345 -1103.197
+125983.2601527718 3.6214738 -1103.1774
+125984.2601528221 3.6213949 -1103.197
+125985.2601528724 3.6215131 -1103.197
+125986.2601529227 3.6214738 -1103.1576
+125987.260152973 3.6214738 -1103.3156
+125988.2601530233 3.6213949 -1103.1182
+125989.2601530736 3.6214738 -1103.2168
+125990.2601531239 3.6214345 -1103.2168
+125991.2601531742 3.6214738 -1103.2168
+125992.2601532245 3.6213162 -1103.197
+125993.2601532748 3.6213555 -1103.2168
+125994.260153325 3.6213555 -1103.197
+125995.2601533753 3.6213555 -1103.2562
+125996.2601534256 3.6213555 -1103.1182
+125997.2601534759 3.6213555 -1103.197
+125998.2601535262 3.6213162 -1103.2366
+125999.2601535765 3.6212769 -1103.1182
+126000.2601536268 3.6212769 -1103.2562
+126001.2601536771 3.6212769 -1103.1576
+126002.2601537274 3.6213949 -1103.197
+126003.2601537777 3.6213555 -1103.1774
+126004.260153828 3.6212375 -1103.197
+126005.2601538782 3.6213555 -1103.2562
+126006.2601539285 3.6212375 -1103.1774
+126007.2601539788 3.6213555 -1103.197
+126008.2601540291 3.6213555 -1103.2761
+126009.2601540794 3.6212375 -1103.197
+126010.2601541297 3.6212769 -1103.1378
+126011.26015418 3.6212375 -1103.1182
+126012.2601542303 3.6212375 -1103.1576
+126013.2601542806 3.6211982 -1103.0984
+126014.2601543309 3.6211982 -1103.1774
+126015.2601543812 3.6211588 -1103.2168
+126016.2601544315 3.6211982 -1103.1774
+126017.2601544817 3.6211982 -1103.2366
+126018.260154532 3.6212769 -1103.2366
+126019.2601545823 3.6211982 -1103.197
+126020.2601546326 3.6211588 -1103.3353
+126021.2601546829 3.6211982 -1103.3749
+126022.2601547332 3.6213162 -1103.3551
+126023.2601547835 3.6211588 -1103.2366
+126024.2601548338 3.6210799 -1103.2168
+126025.2601548841 3.6211982 -1103.3156
+126026.2601549344 3.6210799 -1103.1774
+126027.2601549847 3.6211588 -1103.2562
+126028.260155035 3.6211195 -1103.197
+126029.2601550852 3.6210406 -1103.1774
+126030.2601551355 3.6210012 -1103.197
+126031.2601551858 3.6210799 -1103.2761
+126032.2601552361 3.6210012 -1103.197
+126033.2601552864 3.6210406 -1103.2366
+126034.2601553367 3.6209619 -1103.2168
+126035.260155387 3.6210012 -1103.1576
+126036.2601554373 3.6210406 -1103.197
+126037.2601554876 3.6210406 -1103.2366
+126038.2601555379 3.6210799 -1103.197
+126039.2601555882 3.6209226 -1103.2366
+126040.2601556384 3.6209226 -1103.2168
+126041.2601556887 3.6208832 -1103.2366
+126042.260155739 3.6209226 -1103.1576
+126043.2601557893 3.6210012 -1103.2959
+126044.2601558396 3.6209226 -1103.2168
+126045.2601558899 3.6209619 -1103.2366
+126046.2601559402 3.6208832 -1103.197
+126047.2601559905 3.6209226 -1103.2761
+126048.2601560408 3.6208439 -1103.2959
+126049.2601560911 3.6208043 -1103.2761
+126050.2601561414 3.6209619 -1103.2168
+126051.2601561917 3.6209226 -1103.1774
+126052.2601562419 3.6209619 -1103.0984
+126053.2601562922 3.620765 -1103.197
+126054.2601563425 3.6208832 -1103.197
+126055.2601563928 3.6208439 -1103.2562
+126056.2601564431 3.6210012 -1103.2366
+126057.2601564934 3.6208439 -1103.2168
+126058.2601565437 3.6208043 -1103.2562
+126059.260156594 3.6209226 -1103.2959
+126060.2601566443 3.6208832 -1103.2562
+126061.2601566946 3.6208832 -1103.2761
+126062.2601567449 3.6208043 -1103.197
+126063.2601567952 3.6208439 -1103.1774
+126064.2601568454 3.620765 -1103.3551
+126065.2601568957 3.620765 -1103.197
+126066.260156946 3.620765 -1103.197
+126067.2601569963 3.620765 -1103.2959
+126068.2601570466 3.620765 -1103.1576
+126069.2601570969 3.6207256 -1103.2366
+126070.2601571472 3.6207256 -1103.2761
+126071.2601571975 3.620647 -1103.2366
+126072.2601572478 3.620765 -1103.2168
+126073.2601572981 3.6207256 -1103.1576
+126074.2601573484 3.6208043 -1103.2366
+126075.2601573986 3.6207256 -1103.1576
+126076.2601574489 3.620647 -1103.2366
+126077.2601574992 3.6206863 -1103.197
+126078.2601575495 3.6208043 -1103.1576
+126079.2601575998 3.6207256 -1103.1774
+126080.2601576501 3.6207256 -1103.1182
+126081.2601577004 3.6208043 -1103.2366
+126082.2601577507 3.6207256 -1103.1774
+126083.260157801 3.6206076 -1103.2366
+126084.2601578513 3.6207256 -1103.2366
+126085.2601579016 3.6206076 -1103.2959
+126086.2601579519 3.6206863 -1103.1774
+126087.2601580021 3.620647 -1103.2168
+126088.2601580524 3.620647 -1103.197
+126089.2601581027 3.6205289 -1103.2366
+126090.260158153 3.6205683 -1103.2366
+126091.2601582033 3.6205683 -1103.2366
+126092.2601582536 3.6206076 -1103.0984
+126093.2601583039 3.6205683 -1103.197
+126094.2601583542 3.6205289 -1103.1774
+126095.2601584045 3.6206076 -1103.1774
+126096.2601584548 3.6205683 -1103.197
+126097.2601585051 3.6206076 -1103.1378
+126098.2601585553 3.6204894 -1103.1378
+126099.2601586056 3.6204894 -1103.2366
+126100.2601586559 3.6205289 -1103.1774
+126101.2601587062 3.6205683 -1103.2366
+126102.2601587565 3.6205289 -1103.2366
+126103.2601588068 3.62045 -1103.2562
+126104.2601588571 3.6205683 -1103.2366
+126105.2601589074 3.6205683 -1103.1182
+126106.2601589577 3.62045 -1103.1378
+126107.260159008 3.6204894 -1103.2761
+126108.2601590583 3.6205683 -1103.197
+126109.2601591086 3.62045 -1103.197
+126110.2601591588 3.6204894 -1103.1774
+126111.2601592091 3.6203713 -1103.197
+126112.2601592594 3.6203713 -1103.2366
+126113.2601593097 3.62045 -1103.197
+126114.26015936 3.6203713 -1103.197
+126115.2601594103 3.6204107 -1103.197
+126116.2601594606 3.6204894 -1103.197
+126117.2601595109 3.620332 -1103.197
+126118.2601595612 3.620332 -1103.2168
+126119.2601596115 3.62045 -1103.2366
+126120.2601596618 3.6203713 -1103.2168
+126121.2601597121 3.6204107 -1103.3156
+126122.2601597623 3.6202533 -1103.3156
+126123.2601598126 3.620332 -1103.1774
+126124.2601598629 3.6202533 -1103.2562
+126125.2601599132 3.6203713 -1103.2562
+126126.2601599635 3.620332 -1103.1774
+126127.2601600138 3.6202927 -1103.2168
+126128.2601600641 3.6202927 -1103.1576
+126129.2601601144 3.6202533 -1103.2562
+126130.2601601647 3.6204107 -1103.2366
+126131.260160215 3.620214 -1103.2366
+126132.2601602653 3.620214 -1103.2366
+126133.2601603155 3.6202927 -1103.2959
+126134.2601603658 3.6201744 -1103.1774
+126135.2601604161 3.620214 -1103.197
+126136.2601604664 3.6202533 -1103.1378
+126137.2601605167 3.620214 -1103.2562
+126138.260160567 3.6202533 -1103.197
+126139.2601606173 3.6201351 -1103.1576
+126140.2601606676 3.6201351 -1103.2562
+126141.2601607179 3.6202927 -1103.1576
+126142.2601607682 3.620214 -1103.197
+126143.2601608185 3.620332 -1103.2562
+126144.2601608688 3.6200957 -1103.197
+126145.260160919 3.6201351 -1103.2366
+126146.2601609693 3.6200957 -1103.2761
+126147.2601610196 3.6200957 -1103.197
+126148.2601610699 3.6201744 -1103.197
+126149.2601611202 3.6201744 -1103.197
+126150.2601611705 3.6200957 -1103.2168
+126151.2601612208 3.6200957 -1103.2562
+126152.2601612711 3.6200564 -1103.2562
+126153.2601613214 3.6200564 -1103.2761
+126154.2601613717 3.6200957 -1103.1378
+126155.260161422 3.6200564 -1103.1774
+126156.2601614723 3.6199384 -1103.1774
+126157.2601615225 3.6200564 -1103.2366
+126158.2601615728 3.6199777 -1103.2761
+126159.2601616231 3.6199384 -1103.1774
+126160.2601616734 3.6200564 -1103.2168
+126161.2601617237 3.6199384 -1103.1182
+126162.260161774 3.6199384 -1103.2168
+126163.2601618243 3.6199777 -1103.2366
+126164.2601618746 3.6200957 -1103.2366
+126165.2601619249 3.6200171 -1103.2168
+126166.2601619752 3.6200171 -1103.2562
+126167.2601620255 3.6200171 -1103.1576
+126168.2601620757 3.6199384 -1103.2366
+126169.260162126 3.6200171 -1103.2562
+126170.2601621763 3.6200171 -1103.1378
+126171.2601622266 3.6198595 -1103.2366
+126172.2601622769 3.6199777 -1103.1774
+126173.2601623272 3.6200171 -1103.2168
+126174.2601623775 3.6200564 -1103.2168
+126175.2601624278 3.6198595 -1103.1774
+126176.2601624781 3.619899 -1103.0785
+126177.2601625284 3.6199384 -1103.1576
+126178.2601625787 3.619899 -1103.2168
+126179.260162629 3.6198595 -1103.197
+126180.2601626792 3.6198595 -1103.197
+126181.2601627295 3.619899 -1103.197
+126182.2601627798 3.6197808 -1103.3353
+126183.2601628301 3.619899 -1103.2366
+126184.2601628804 3.6197808 -1103.2168
+126185.2601629307 3.6198595 -1103.2959
+126186.260162981 3.6198595 -1103.2562
+126187.2601630313 3.6198201 -1103.197
+126188.2601630816 3.6198595 -1103.2562
+126189.2601631319 3.6197414 -1103.2168
+126190.2601631822 3.6197808 -1103.1774
+126191.2601632325 3.6198595 -1103.2366
+126192.2601632827 3.6197021 -1103.1378
+126193.260163333 3.6197021 -1103.1378
+126194.2601633833 3.6197414 -1103.2366
+126195.2601634336 3.6197414 -1103.197
+126196.2601634839 3.6197414 -1103.1774
+126197.2601635342 3.6197414 -1103.2761
+126198.2601635845 3.6197021 -1103.197
+126199.2601636348 3.6197021 -1103.197
+126200.2601636851 3.6196628 -1103.2562
+126201.2601637354 3.6197021 -1103.2761
+126202.2601637857 3.6196234 -1103.1576
+126203.2601638359 3.6197808 -1103.1774
+126204.2601638862 3.6197021 -1103.1774
+126205.2601639365 3.6196628 -1103.1576
+126206.2601639868 3.6197021 -1103.0785
+126207.2601640371 3.6195841 -1103.2366
+126208.2601640874 3.6197808 -1103.2168
+126209.2601641377 3.6197021 -1103.2562
+126210.260164188 3.6195841 -1103.2168
+126211.2601642383 3.6196234 -1103.1182
+126212.2601642886 3.6195445 -1103.2168
+126213.2601643389 3.6195445 -1103.2959
+126214.2601643892 3.6196628 -1103.197
+126215.2601644394 3.6195445 -1103.2168
+126216.2601644897 3.6196234 -1103.197
+126217.26016454 3.6195841 -1103.0984
+126218.2601645903 3.6195445 -1103.2366
+126219.2601646406 3.6195445 -1103.1182
+126220.2601646909 3.6195445 -1103.2168
+126221.2601647412 3.6195052 -1103.2761
+126222.2601647915 3.6194658 -1103.2168
+126223.2601648418 3.6195445 -1103.197
+126224.2601648921 3.6195445 -1103.1182
+126225.2601649424 3.6195445 -1103.2168
+126226.2601649927 3.6194658 -1103.197
+126227.2601650429 3.6195445 -1103.1774
+126228.2601650932 3.6194658 -1103.1774
+126229.2601651435 3.6195052 -1103.1774
+126230.2601651938 3.6193871 -1103.1576
+126231.2601652441 3.6194658 -1103.2761
+126232.2601652944 3.6194658 -1103.2168
+126233.2601653447 3.6195445 -1103.197
+126234.260165395 3.6194658 -1103.2761
+126235.2601654453 3.6195052 -1103.2168
+126236.2601654956 3.6194265 -1103.1576
+126237.2601655459 3.6194265 -1103.2366
+126238.2601655961 3.6193871 -1103.2761
+126239.2601656464 3.6193085 -1103.2168
+126240.2601656967 3.6193871 -1103.2168
+126241.260165747 3.6193871 -1103.1774
+126242.2601657973 3.6193478 -1103.1576
+126243.2601658476 3.6193478 -1103.197
+126244.2601658979 3.6193871 -1103.2168
+126245.2601659482 3.6195052 -1103.2366
+126246.2601659985 3.6192691 -1103.1774
+126247.2601660488 3.6192691 -1103.2366
+126248.2601660991 3.6193085 -1103.0984
+126249.2601661494 3.6193871 -1103.2562
+126250.2601661996 3.6192691 -1103.2168
+126251.2601662499 3.6191509 -1103.2168
+126252.2601663002 3.6192691 -1103.2959
+126253.2601663505 3.6192691 -1103.197
+126254.2601664008 3.6193085 -1103.2366
+126255.2601664511 3.6192691 -1103.197
+126256.2601665014 3.6193871 -1103.197
+126257.2601665517 3.6193085 -1103.1378
+126258.260166602 3.6191902 -1103.1576
+126259.2601666523 3.6191902 -1103.1774
+126260.2601667026 3.6191902 -1103.2366
+126261.2601667529 3.6191509 -1103.1774
+126262.2601668031 3.6191902 -1103.2366
+126263.2601668534 3.6192691 -1103.1378
+126264.2601669037 3.6192691 -1103.2366
+126265.260166954 3.6191115 -1103.197
+126266.2601670043 3.6192296 -1103.2168
+126267.2601670546 3.6191509 -1103.197
+126268.2601671049 3.6191902 -1103.1378
+126269.2601671552 3.6191902 -1103.2366
+126270.2601672055 3.6191115 -1103.197
+126271.2601672558 3.6191509 -1103.197
+126272.2601673061 3.6192296 -1103.2959
+126273.2601673563 3.6190329 -1103.2168
+126274.2601674066 3.6192296 -1103.3156
+126275.2601674569 3.6190722 -1103.1774
+126276.2601675072 3.6190722 -1103.2366
+126277.2601675575 3.6191509 -1103.2761
+126278.2601676078 3.6191509 -1103.1774
+126279.2601676581 3.6190329 -1103.2168
+126280.2601677084 3.6190722 -1103.1774
+126281.2601677587 3.6191509 -1103.1774
+126282.260167809 3.6190329 -1103.1774
+126283.2601678593 3.6189935 -1103.2168
+126284.2601679096 3.6189146 -1103.2168
+126285.2601679598 3.6191115 -1103.3156
+126286.2601680101 3.6189935 -1103.2366
+126287.2601680604 3.6189935 -1103.2562
+126288.2601681107 3.6190329 -1103.2761
+126289.260168161 3.6189539 -1103.2168
+126290.2601682113 3.6189935 -1103.197
+126291.2601682616 3.6189935 -1103.1774
+126292.2601683119 3.6189935 -1103.1182
+126293.2601683622 3.6189539 -1103.2959
+126294.2601684125 3.6189539 -1103.2562
+126295.2601684628 3.6189539 -1103.1182
+126296.2601685131 3.6188753 -1103.2366
+126297.2601685633 3.6189935 -1103.1774
+126298.2601686136 3.6188359 -1103.197
+126299.2601686639 3.6188753 -1103.2366
+126300.2601687142 3.6188753 -1103.1576
+126301.2601687645 3.6189146 -1103.2959
+126302.2601688148 3.6189146 -1103.2168
+126303.2601688651 3.6189146 -1103.2761
+126304.2601689154 3.6189539 -1103.1774
+126305.2601689657 3.6187966 -1103.2761
+126306.260169016 3.6188753 -1103.1774
+126307.2601690663 3.6188359 -1103.197
+126308.2601691165 3.6188359 -1103.2168
+126309.2601691668 3.6187966 -1103.1774
+126310.2601692171 3.6189146 -1103.2959
+126311.2601692674 3.6188359 -1103.197
+126312.2601693177 3.6188359 -1103.2366
+126313.260169368 3.6187966 -1103.2959
+126314.2601694183 3.6187966 -1103.197
+126315.2601694686 3.6187966 -1103.2366
+126316.2601695189 3.618639 -1103.1774
+126317.2601695692 3.6187572 -1103.197
+126318.2601696195 3.6187179 -1103.0984
+126319.2601696698 3.6187572 -1103.1774
+126320.26016972 3.6187966 -1103.1774
+126321.2601697703 3.6187572 -1103.197
+126322.2601698206 3.6186786 -1103.197
+126323.2601698709 3.6187179 -1103.2562
+126324.2601699212 3.6186786 -1103.2168
+126325.2601699715 3.6187572 -1103.1774
+126326.2601700218 3.618639 -1103.2366
+126327.2601700721 3.6187966 -1103.1182
+126328.2601701224 3.6186786 -1103.2366
+126329.2601701727 3.6185997 -1103.2366
+126330.260170223 3.6187179 -1103.2959
+126331.2601702733 3.6185997 -1103.2761
+126332.2601703235 3.618639 -1103.2959
+126333.2601703738 3.6187179 -1103.2366
+126334.2601704241 3.6185997 -1103.1378
+126335.2601704744 3.618521 -1103.2562
+126336.2601705247 3.618639 -1103.197
+126337.260170575 3.6184816 -1103.1774
+126338.2601706253 3.6185997 -1103.197
+126339.2601706756 3.6185603 -1103.2761
+126340.2601707259 3.618639 -1103.197
+126341.2601707762 3.6185603 -1103.2562
+126342.2601708265 3.6185603 -1103.1576
+126343.2601708767 3.6185997 -1103.1774
+126344.260170927 3.618521 -1103.2366
+126345.2601709773 3.6185997 -1103.2168
+126346.2601710276 3.6185997 -1103.2562
+126347.2601710779 3.6185603 -1103.1378
+126348.2601711282 3.618521 -1103.1576
+126349.2601711785 3.618521 -1103.2562
+126350.2601712288 3.618521 -1103.1182
+126351.2601712791 3.618521 -1103.3156
+126352.2601713294 3.6184816 -1103.2168
+126353.2601713797 3.618521 -1103.2168
+126354.26017143 3.6184423 -1103.1774
+126355.2601714802 3.618403 -1103.2168
+126356.2601715305 3.6184816 -1103.197
+126357.2601715808 3.618403 -1103.1774
+126358.2601716311 3.6184423 -1103.1378
+126359.2601716814 3.6184423 -1103.197
+126360.2601717317 3.618403 -1103.2562
+126361.260171782 3.6183636 -1103.2562
+126362.2601718323 3.6183636 -1103.197
+126363.2601718826 3.618324 -1103.197
+126364.2601719329 3.6184423 -1103.1182
+126365.2601719832 3.618324 -1103.1774
+126366.2601720335 3.618403 -1103.1576
+126367.2601720837 3.6184423 -1103.2366
+126368.260172134 3.618324 -1103.2168
+126369.2601721843 3.618324 -1103.2366
+126370.2601722346 3.6182847 -1103.2761
+126371.2601722849 3.6182847 -1103.197
+126372.2601723352 3.618206 -1103.2168
+126373.2601723855 3.618324 -1103.3156
+126374.2601724358 3.618324 -1103.197
+126375.2601724861 3.6182454 -1103.2761
+126376.2601725364 3.6182454 -1103.2366
+126377.2601725867 3.6183636 -1103.2562
+126378.2601726369 3.6182454 -1103.1182
+126379.2601726872 3.618324 -1103.2168
+126380.2601727375 3.6182847 -1103.1378
+126381.2601727878 3.618206 -1103.2168
+126382.2601728381 3.618206 -1103.197
+126383.2601728884 3.6181667 -1103.197
+126384.2601729387 3.6181667 -1103.1774
+126385.260172989 3.6182847 -1103.2562
+126386.2601730393 3.618206 -1103.2562
+126387.2601730896 3.6181667 -1103.197
+126388.2601731399 3.6182454 -1103.2168
+126389.2601731902 3.6182454 -1103.2366
+126390.2601732404 3.6181273 -1103.2168
+126391.2601732907 3.6181667 -1103.197
+126392.260173341 3.6182454 -1103.197
+126393.2601733913 3.6181273 -1103.1378
+126394.2601734416 3.6180487 -1103.1774
+126395.2601734919 3.618206 -1103.197
+126396.2601735422 3.6181273 -1103.2959
+126397.2601735925 3.618088 -1103.197
+126398.2601736428 3.6181273 -1103.197
+126399.2601736931 3.6181273 -1103.1378
+126400.2601737434 3.6180487 -1103.1576
+126401.2601737936 3.6180091 -1103.2761
+126402.2601738439 3.6180091 -1103.1774
+126403.2601738942 3.618088 -1103.1576
+126404.2601739445 3.6181667 -1103.2168
+126405.2601739948 3.6180091 -1103.1774
+126406.2601740451 3.618088 -1103.2562
+126407.2601740954 3.6180487 -1103.1576
+126408.2601741457 3.6180487 -1103.2959
+126409.260174196 3.6180487 -1103.2168
+126410.2601742463 3.6180091 -1103.2366
+126411.2601742966 3.618088 -1103.2168
+126412.2601743469 3.6180091 -1103.1378
+126413.2601743971 3.6180487 -1103.2168
+126414.2601744474 3.6180487 -1103.1774
+126415.2601744977 3.6180091 -1103.197
+126416.260174548 3.6179698 -1103.1774
+126417.2601745983 3.6178911 -1103.197
+126418.2601746486 3.6179304 -1103.197
+126419.2601746989 3.6179698 -1103.1576
+126420.2601747492 3.6180487 -1103.2168
+126421.2601747995 3.6178911 -1103.197
+126422.2601748498 3.6179698 -1103.2168
+126423.2601749001 3.6179698 -1103.2562
+126424.2601749504 3.6180091 -1103.2366
+126425.2601750006 3.6178124 -1103.197
+126426.2601750509 3.6178517 -1103.1576
+126427.2601751012 3.6178124 -1103.2562
+126428.2601751515 3.6178124 -1103.2959
+126429.2601752018 3.6179304 -1103.2562
+126430.2601752521 3.6178517 -1103.2168
+126431.2601753024 3.6179698 -1103.2562
+126432.2601753527 3.6178517 -1103.197
+126433.260175403 3.6179698 -1103.2168
+126434.2601754533 3.6178517 -1103.2562
+126435.2601755036 3.6178517 -1103.1378
+126436.2601755538 3.6177337 -1103.2562
+126437.2601756041 3.6178517 -1103.2562
+126438.2601756544 3.6178124 -1103.2562
+126439.2601757047 3.6178124 -1103.197
+126440.260175755 3.6178124 -1103.2761
+126441.2601758053 3.6177337 -1103.2366
+126442.2601758556 3.6178124 -1103.1774
+126443.2601759059 3.6177731 -1103.197
+126444.2601759562 3.6176941 -1103.197
+126445.2601760065 3.6176155 -1103.1774
+126446.2601760568 3.6177731 -1103.2562
+126447.2601761071 3.6176941 -1103.2562
+126448.2601761573 3.6177731 -1103.2562
+126449.2601762076 3.6177337 -1103.197
+126450.2601762579 3.6177731 -1103.2959
+126451.2601763082 3.6176548 -1103.2959
+126452.2601763585 3.6177337 -1103.2761
+126453.2601764088 3.6176941 -1103.197
+126454.2601764591 3.6176548 -1103.1774
+126455.2601765094 3.6177731 -1103.2366
+126456.2601765597 3.6176548 -1103.197
+126457.26017661 3.6177337 -1103.2562
+126458.2601766603 3.6176548 -1103.197
+126459.2601767106 3.6175761 -1103.1378
+126460.2601767608 3.6177337 -1103.1576
+126461.2601768111 3.6176155 -1103.3156
+126462.2601768614 3.6176155 -1103.2168
+126463.2601769117 3.6175368 -1103.1378
+126464.260176962 3.6174974 -1103.197
+126465.2601770123 3.6176155 -1103.2168
+126466.2601770626 3.6176548 -1103.1774
+126467.2601771129 3.6175761 -1103.1182
+126468.2601771632 3.6175761 -1103.2959
+126469.2601772135 3.6175761 -1103.2168
+126470.2601772638 3.6175761 -1103.2366
+126471.260177314 3.6174581 -1103.1378
+126472.2601773643 3.6176155 -1103.197
+126473.2601774146 3.6175368 -1103.1378
+126474.2601774649 3.6176155 -1103.1774
+126475.2601775152 3.6175368 -1103.2168
+126476.2601775655 3.6175368 -1103.1378
+126477.2601776158 3.6174581 -1103.1576
+126478.2601776661 3.6174188 -1103.2168
+126479.2601777164 3.6173792 -1103.2562
+126480.2601777667 3.6174188 -1103.197
+126481.260177817 3.6174974 -1103.0588
+126482.2601778673 3.6174188 -1103.2761
+126483.2601779175 3.6174188 -1103.1378
+126484.2601779678 3.6174188 -1103.2168
+126485.2601780181 3.6173792 -1103.1576
+126486.2601780684 3.6173792 -1103.1576
+126487.2601781187 3.6174188 -1103.0984
+126488.260178169 3.6174188 -1103.197
+126489.2601782193 3.6173792 -1103.2168
+126490.2601782696 3.6174581 -1103.2761
+126491.2601783199 3.6173792 -1103.2366
+126492.2601783702 3.6173398 -1103.2366
+126493.2601784205 3.6174581 -1103.1774
+126494.2601784708 3.6174581 -1103.1576
+126495.260178521 3.6173792 -1103.1378
+126496.2601785713 3.6173005 -1103.1774
+126497.2601786216 3.6174188 -1103.2366
+126498.2601786719 3.6174188 -1103.2562
+126499.2601787222 3.6174581 -1103.1774
+126500.2601787725 3.6173398 -1103.2168
+126501.2601788228 3.6173005 -1103.1378
+126502.2601788731 3.6173792 -1103.1182
+126503.2601789234 3.6173398 -1103.2761
+126504.2601789737 3.6173005 -1103.2562
+126505.260179024 3.6173398 -1103.2562
+126506.2601790742 3.6174188 -1103.2562
+126507.2601791245 3.6173005 -1103.197
+126508.2601791748 3.6172218 -1103.2168
+126509.2601792251 3.6171825 -1103.1774
+126510.2601792754 3.6172612 -1103.197
+126511.2601793257 3.6173398 -1103.197
+126512.260179376 3.6172218 -1103.2168
+126513.2601794263 3.6172218 -1103.2761
+126514.2601794766 3.6172612 -1103.197
+126515.2601795269 3.6171036 -1103.1774
+126516.2601795772 3.6173005 -1103.2366
+126517.2601796275 3.6172612 -1103.1576
+126518.2601796777 3.6172218 -1103.1576
+126519.260179728 3.6172612 -1103.1576
+126520.2601797783 3.6171825 -1103.2366
+126521.2601798286 3.6171432 -1103.2168
+126522.2601798789 3.6171432 -1103.1774
+126523.2601799292 3.6171036 -1103.1774
+126524.2601799795 3.6171036 -1103.197
+126525.2601800298 3.6171432 -1103.1774
+126526.2601800801 3.6171036 -1103.1774
+126527.2601801304 3.6171036 -1103.1576
+126528.2601801807 3.6171432 -1103.2168
+126529.260180231 3.6171036 -1103.2168
+126530.2601802812 3.6170249 -1103.197
+126531.2601803315 3.6171036 -1103.2366
+126532.2601803818 3.6170642 -1103.2168
+126533.2601804321 3.6169856 -1103.2562
+126534.2601804824 3.6171825 -1103.2366
+126535.2601805327 3.6170249 -1103.2562
+126536.260180583 3.6171432 -1103.1774
+126537.2601806333 3.6170642 -1103.2366
+126538.2601806836 3.6170642 -1103.1774
+126539.2601807339 3.6169462 -1103.2168
+126540.2601807842 3.6169856 -1103.2168
+126541.2601808344 3.6170642 -1103.1182
+126542.2601808847 3.6169462 -1103.2168
+126543.260180935 3.6169856 -1103.3156
+126544.2601809853 3.6170642 -1103.1576
+126545.2601810356 3.6169856 -1103.2761
+126546.2601810859 3.6169462 -1103.1774
+126547.2601811362 3.6170249 -1103.1576
+126548.2601811865 3.6169462 -1103.197
+126549.2601812368 3.6170249 -1103.1774
+126550.2601812871 3.6169856 -1103.1774
+126551.2601813374 3.6170249 -1103.197
+126552.2601813877 3.6169462 -1103.2562
+126553.2601814379 3.6169462 -1103.2959
+126554.2601814882 3.6168675 -1103.197
+126555.2601815385 3.6169856 -1103.1774
+126556.2601815888 3.6168675 -1103.2366
+126557.2601816391 3.6168675 -1103.197
+126558.2601816894 3.6168282 -1103.2168
+126559.2601817397 3.6168675 -1103.1182
+126560.26018179 3.6169856 -1103.1182
+126561.2601818403 3.6170249 -1103.1576
+126562.2601818906 3.6168282 -1103.1378
+126563.2601819409 3.6167886 -1103.1774
+126564.2601819912 3.6169069 -1103.197
+126565.2601820414 3.6167886 -1103.2168
+126566.2601820917 3.6168675 -1103.2366
+126567.260182142 3.6169069 -1103.2168
+126568.2601821923 3.6167886 -1103.2366
+126569.2601822426 3.6167493 -1103.197
+126570.2601822929 3.6168282 -1103.2168
+126571.2601823432 3.6167886 -1103.1182
+126572.2601823935 3.6168282 -1103.2562
+126573.2601824438 3.6166706 -1103.2562
+126574.2601824941 3.6166706 -1103.2562
+126575.2601825444 3.6166706 -1103.1378
+126576.2601825946 3.6166313 -1103.197
+126577.2601826449 3.6167099 -1103.1378
+126578.2601826952 3.6167886 -1103.2168
+126579.2601827455 3.6167099 -1103.197
+126580.2601827958 3.6167099 -1103.2366
+126581.2601828461 3.6167886 -1103.2168
+126582.2601828964 3.6167099 -1103.2366
+126583.2601829467 3.6167493 -1103.2168
+126584.260182997 3.6167493 -1103.2168
+126585.2601830473 3.6167886 -1103.1774
+126586.2601830976 3.6166706 -1103.2168
+126587.2601831479 3.6167099 -1103.0984
+126588.2601831981 3.6166313 -1103.1576
+126589.2601832484 3.6165919 -1103.2366
+126590.2601832987 3.6166313 -1103.2168
+126591.260183349 3.6166313 -1103.197
+126592.2601833993 3.6166706 -1103.197
+126593.2601834496 3.6165919 -1103.1378
+126594.2601834999 3.6165526 -1103.2366
+126595.2601835502 3.6165919 -1103.2168
+126596.2601836005 3.6165919 -1103.197
+126597.2601836508 3.6165526 -1103.2761
+126598.2601837011 3.6166313 -1103.2366
+126599.2601837514 3.6165526 -1103.2168
+126600.2601838016 3.6165133 -1103.3156
+126601.2601838519 3.6165526 -1103.2168
+126602.2601839022 3.6164343 -1103.197
+126603.2601839525 3.6165526 -1103.2761
+126604.2601840028 3.6165526 -1103.2168
+126605.2601840531 3.6165526 -1103.2168
+126606.2601841034 3.6165919 -1103.2168
+126607.2601841537 3.6164737 -1103.2959
+126608.260184204 3.616395 -1103.197
+126609.2601842543 3.6165133 -1103.2761
+126610.2601843046 3.6165133 -1103.2168
+126611.2601843548 3.6164343 -1103.3353
+126612.2601844051 3.616395 -1103.2168
+126613.2601844554 3.6164737 -1103.2366
+126614.2601845057 3.6164737 -1103.3156
+126615.260184556 3.6164737 -1103.2168
+126616.2601846063 3.6165919 -1103.1774
+126617.2601846566 3.6164737 -1103.3156
+126618.2601847069 3.6165133 -1103.2168
+126619.2601847572 3.6165133 -1103.2168
+126620.2601848075 3.6164737 -1103.197
+126621.2601848578 3.6164343 -1103.2562
+126622.2601849081 3.616395 -1103.2366
+126623.2601849583 3.6164343 -1103.0984
+126624.2601850086 3.6163557 -1103.2761
+126625.2601850589 3.616395 -1103.2562
+126626.2601851092 3.616277 -1103.2959
+126627.2601851595 3.6163163 -1103.1576
+126628.2601852098 3.6163163 -1103.1774
+126629.2601852601 3.616395 -1103.197
+126630.2601853104 3.6163557 -1103.2366
+126631.2601853607 3.616395 -1103.2562
+126632.260185411 3.6162376 -1103.2562
+126633.2601854613 3.6163163 -1103.2562
+126634.2601855116 3.616395 -1103.197
+126635.2601855618 3.6161983 -1103.197
+126636.2601856121 3.6161587 -1103.2562
+126637.2601856624 3.6161983 -1103.0984
+126638.2601857127 3.6163163 -1103.2562
+126639.260185763 3.616277 -1103.1378
+126640.2601858133 3.6162376 -1103.197
+126641.2601858636 3.616277 -1103.1774
+126642.2601859139 3.6161983 -1103.197
+126643.2601859642 3.6161983 -1103.197
+126644.2601860145 3.6161983 -1103.2366
+126645.2601860648 3.6161587 -1103.1576
+126646.260186115 3.6161983 -1103.2366
+126647.2601861653 3.6161983 -1103.2959
+126648.2601862156 3.6162376 -1103.1378
+126649.2601862659 3.6161983 -1103.1774
+126650.2601863162 3.6161194 -1103.1774
+126651.2601863665 3.6161983 -1103.2168
+126652.2601864168 3.6161983 -1103.2562
+126653.2601864671 3.6161587 -1103.2562
+126654.2601865174 3.61608 -1103.2761
+126655.2601865677 3.61608 -1103.2761
+126656.260186618 3.6161194 -1103.3156
+126657.2601866683 3.61608 -1103.2959
+126658.2601867185 3.61608 -1103.0984
+126659.2601867688 3.6161194 -1103.1774
+126660.2601868191 3.6160014 -1103.197
+126661.2601868694 3.6160014 -1103.1774
+126662.2601869197 3.61608 -1103.1774
+126663.26018697 3.6161587 -1103.1774
+126664.2601870203 3.6160014 -1103.1774
+126665.2601870706 3.6160407 -1103.197
+126666.2601871209 3.6160014 -1103.2761
+126667.2601871712 3.61608 -1103.197
+126668.2601872215 3.6160014 -1103.2168
+126669.2601872718 3.6160407 -1103.1774
+126670.260187322 3.6160014 -1103.2168
+126671.2601873723 3.6160407 -1103.2168
+126672.2601874226 3.6161194 -1103.2761
+126673.2601874729 3.6160014 -1103.2168
+126674.2601875232 3.6159227 -1103.197
+126675.2601875735 3.615962 -1103.1576
+126676.2601876238 3.61608 -1103.0984
+126677.2601876741 3.6160014 -1103.1774
+126678.2601877244 3.6159227 -1103.1774
+126679.2601877747 3.6160014 -1103.1182
+126680.260187825 3.615962 -1103.2168
+126681.2601878752 3.6159227 -1103.1576
+126682.2601879255 3.6159227 -1103.1182
+126683.2601879758 3.615962 -1103.197
+126684.2601880261 3.6160014 -1103.197
+126685.2601880764 3.6157651 -1103.1774
+126686.2601881267 3.6159227 -1103.2168
+126687.260188177 3.6159227 -1103.2366
+126688.2601882273 3.6158438 -1103.2366
+126689.2601882776 3.6158438 -1103.2761
+126690.2601883279 3.6159227 -1103.2168
+126691.2601883782 3.6159227 -1103.2366
+126692.2601884285 3.615962 -1103.197
+126693.2601884787 3.6158044 -1103.2168
+126694.260188529 3.6157651 -1103.2168
+126695.2601885793 3.6158438 -1103.1774
+126696.2601886296 3.6159227 -1103.2959
+126697.2601886799 3.6158834 -1103.2366
+126698.2601887302 3.6157651 -1103.1774
+126699.2601887805 3.6157651 -1103.2366
+126700.2601888308 3.6158044 -1103.1576
+126701.2601888811 3.6158438 -1103.197
+126702.2601889314 3.6158834 -1103.2168
+126703.2601889817 3.6158044 -1103.2959
+126704.2601890319 3.6158438 -1103.1774
+126705.2601890822 3.6157651 -1103.1576
+126706.2601891325 3.6157258 -1103.2959
+126707.2601891828 3.6156864 -1103.197
+126708.2601892331 3.6156471 -1103.197
+126709.2601892834 3.6156864 -1103.1378
+126710.2601893337 3.6157258 -1103.2168
+126711.260189384 3.6157258 -1103.1576
+126712.2601894343 3.6156864 -1103.2168
+126713.2601894846 3.6156471 -1103.1774
+126714.2601895349 3.6157651 -1103.2168
+126715.2601895852 3.6155684 -1103.2168
+126716.2601896354 3.6156471 -1103.1576
+126717.2601896857 3.6156864 -1103.2366
+126718.260189736 3.6156471 -1103.1576
+126719.2601897863 3.6156864 -1103.1774
+126720.2601898366 3.6156471 -1103.2366
+126721.2601898869 3.6156471 -1103.2366
+126722.2601899372 3.6154895 -1103.1774
+126723.2601899875 3.6155684 -1103.1774
+126724.2601900378 3.6156471 -1103.3353
+126725.2601900881 3.6155288 -1103.2366
+126726.2601901384 3.6156077 -1103.197
+126727.2601901887 3.6155684 -1103.197
+126728.2601902389 3.6155684 -1103.2168
+126729.2601902892 3.6154895 -1103.1182
+126730.2601903395 3.6156077 -1103.1378
+126731.2601903898 3.6154895 -1103.2761
+126732.2601904401 3.6154895 -1103.2366
+126733.2601904904 3.6155288 -1103.1774
+126734.2601905407 3.6154895 -1103.2366
+126735.260190591 3.6155684 -1103.1774
+126736.2601906413 3.6154895 -1103.2366
+126737.2601906916 3.6154501 -1103.1576
+126738.2601907419 3.6154895 -1103.197
+126739.2601907921 3.6155288 -1103.1378
+126740.2601908424 3.6155288 -1103.197
+126741.2601908927 3.6154108 -1103.2168
+126742.260190943 3.6154501 -1103.197
+126743.2601909933 3.6153715 -1103.197
+126744.2601910436 3.6154501 -1103.2168
+126745.2601910939 3.6153715 -1103.2366
+126746.2601911442 3.6152928 -1103.1576
+126747.2601911945 3.6154108 -1103.1774
+126748.2601912448 3.6153715 -1103.197
+126749.2601912951 3.6154108 -1103.1378
+126750.2601913454 3.6154108 -1103.2366
+126751.2601913956 3.6154895 -1103.2366
+126752.2601914459 3.6153321 -1103.1576
+126753.2601914962 3.6153715 -1103.2562
+126754.2601915465 3.6154501 -1103.2366
+126755.2601915968 3.6152532 -1103.2562
+126756.2601916471 3.6152928 -1103.2959
+126757.2601916974 3.6153321 -1103.1576
+126758.2601917477 3.6152532 -1103.2761
+126759.260191798 3.6152928 -1103.1774
+126760.2601918483 3.6152139 -1103.2168
+126761.2601918986 3.6153715 -1103.1774
+126762.2601919489 3.6152928 -1103.1182
+126763.2601919991 3.6153321 -1103.2366
+126764.2601920494 3.6152532 -1103.2562
+126765.2601920997 3.6152532 -1103.2168
+126766.26019215 3.6152928 -1103.1774
+126767.2601922003 3.6152532 -1103.2366
+126768.2601922506 3.6152532 -1103.2366
+126769.2601923009 3.6153321 -1103.2168
+126770.2601923512 3.6152928 -1103.2168
+126771.2601924015 3.6152139 -1103.2366
+126772.2601924518 3.6153715 -1103.2168
+126773.2601925021 3.6151745 -1103.1576
+126774.2601925523 3.6152532 -1103.197
+126775.2601926026 3.6152139 -1103.3156
+126776.2601926529 3.6151745 -1103.197
+126777.2601927032 3.6152532 -1103.197
+126778.2601927535 3.6150959 -1103.1774
+126779.2601928038 3.6152532 -1103.1378
+126780.2601928541 3.6152139 -1103.2959
+126781.2601929044 3.6150565 -1103.2366
+126782.2601929547 3.6151745 -1103.1774
+126783.260193005 3.6151352 -1103.1576
+126784.2601930553 3.6150959 -1103.1774
+126785.2601931056 3.6150959 -1103.2761
+126786.2601931558 3.6150172 -1103.1378
+126787.2601932061 3.6149778 -1103.2761
+126788.2601932564 3.6152139 -1103.2562
+126789.2601933067 3.6149778 -1103.2959
+126790.260193357 3.6151352 -1103.1774
+126791.2601934073 3.6151352 -1103.2562
+126792.2601934576 3.6150959 -1103.2366
+126793.2601935079 3.6150172 -1103.2366
+126794.2601935582 3.6150959 -1103.197
+126795.2601936085 3.6149383 -1103.2959
+126796.2601936588 3.6150172 -1103.197
+126797.2601937091 3.6150172 -1103.1378
+126798.2601937593 3.6150959 -1103.2366
+126799.2601938096 3.6150959 -1103.1774
+126800.2601938599 3.6149383 -1103.2168
+126801.2601939102 3.6149383 -1103.2168
+126802.2601939605 3.6150172 -1103.2761
+126803.2601940108 3.6149778 -1103.2168
+126804.2601940611 3.6149383 -1103.2168
+126805.2601941114 3.6149778 -1103.1378
+126806.2601941617 3.6148989 -1103.2366
+126807.260194212 3.6149383 -1103.1378
+126808.2601942623 3.6149383 -1103.1774
+126809.2601943125 3.6149383 -1103.1774
+126810.2601943628 3.6148596 -1103.1774
+126811.2601944131 3.6149383 -1103.2366
+126812.2601944634 3.6149383 -1103.2168
+126813.2601945137 3.6149383 -1103.1576
+126814.260194564 3.6148202 -1103.2959
+126815.2601946143 3.6149383 -1103.3156
+126816.2601946646 3.6149383 -1103.197
+126817.2601947149 3.6149383 -1103.2959
+126818.2601947652 3.6149383 -1103.2761
+126819.2601948155 3.6148989 -1103.3156
+126820.2601948658 3.6148596 -1103.197
+126821.260194916 3.6148202 -1103.197
+126822.2601949663 3.6148596 -1103.2168
+126823.2601950166 3.6147416 -1103.2168
+126824.2601950669 3.6148202 -1103.2366
+126825.2601951172 3.6148596 -1103.2168
+126826.2601951675 3.6147809 -1103.1774
+126827.2601952178 3.6147022 -1103.2562
+126828.2601952681 3.6147416 -1103.2366
+126829.2601953184 3.6147022 -1103.1774
+126830.2601953687 3.6147809 -1103.197
+126831.260195419 3.6147809 -1103.1378
+126832.2601954693 3.6147809 -1103.2562
+126833.2601955195 3.6148202 -1103.197
+126834.2601955698 3.6148202 -1103.1774
+126835.2601956201 3.6147022 -1103.2761
+126836.2601956704 3.6146233 -1103.1774
+126837.2601957207 3.6147022 -1103.2366
+126838.260195771 3.6147022 -1103.2168
+126839.2601958213 3.6147416 -1103.2562
+126840.2601958716 3.6146629 -1103.2366
+126841.2601959219 3.614584 -1103.197
+126842.2601959722 3.614584 -1103.2959
+126843.2601960225 3.6146629 -1103.2959
+126844.2601960727 3.6146233 -1103.1378
+126845.260196123 3.6145446 -1103.1774
+126846.2601961733 3.6146233 -1103.197
+126847.2601962236 3.614584 -1103.2562
+126848.2601962739 3.6145446 -1103.2562
+126849.2601963242 3.6146629 -1103.2562
+126850.2601963745 3.6146233 -1103.197
+126851.2601964248 3.6146233 -1103.2168
+126852.2601964751 3.6147022 -1103.2562
+126853.2601965254 3.614466 -1103.2761
+126854.2601965757 3.6146629 -1103.1774
+126855.260196626 3.6145446 -1103.2959
+126856.2601966762 3.614584 -1103.2168
+126857.2601967265 3.6145053 -1103.2562
+126858.2601967768 3.6146629 -1103.2168
+126859.2601968271 3.614466 -1103.2959
+126860.2601968774 3.6145053 -1103.2168
+126861.2601969277 3.614584 -1103.2761
+126862.260196978 3.6146233 -1103.1576
+126863.2601970283 3.614466 -1103.2366
+126864.2601970786 3.614584 -1103.2959
+126865.2601971289 3.6145053 -1103.2761
+126866.2601971792 3.614466 -1103.1774
+126867.2601972295 3.6144266 -1103.2366
+126868.2601972797 3.6145446 -1103.2761
+126869.26019733 3.6144266 -1103.2366
+126870.2601973803 3.6144266 -1103.2562
+126871.2601974306 3.6145446 -1103.1576
+126872.2601974809 3.614466 -1103.197
+126873.2601975312 3.6144266 -1103.197
+126874.2601975815 3.6144266 -1103.2168
+126875.2601976318 3.6143084 -1103.2366
+126876.2601976821 3.6143479 -1103.2366
+126877.2601977324 3.614269 -1103.2366
+126878.2601977827 3.6143479 -1103.197
+126879.2601978329 3.6144266 -1103.3156
+126880.2601978832 3.6144266 -1103.2761
+126881.2601979335 3.6144266 -1103.197
+126882.2601979838 3.6143873 -1103.0588
+126883.2601980341 3.6143479 -1103.1774
+126884.2601980844 3.6143873 -1103.2168
+126885.2601981347 3.6143479 -1103.1774
+126886.260198185 3.6143479 -1103.2168
+126887.2601982353 3.6143479 -1103.2168
+126888.2601982856 3.614269 -1103.1774
+126889.2601983359 3.6143873 -1103.2366
+126890.2601983862 3.6142297 -1103.2168
+126891.2601984364 3.614269 -1103.197
+126892.2601984867 3.614269 -1103.1774
+126893.260198537 3.6142297 -1103.2959
+126894.2601985873 3.6142297 -1103.2168
+126895.2601986376 3.614269 -1103.1576
+126896.2601986879 3.6143084 -1103.197
+126897.2601987382 3.6143873 -1103.2959
+126898.2601987885 3.614151 -1103.2168
+126899.2601988388 3.614151 -1103.197
+126900.2601988891 3.6142297 -1103.2366
+126901.2601989394 3.6141117 -1103.2959
+126902.2601989897 3.6140723 -1103.2562
+126903.2601990399 3.614151 -1103.197
+126904.2601990902 3.614151 -1103.2366
+126905.2601991405 3.6141117 -1103.2562
+126906.2601991908 3.6142297 -1103.2168
+126907.2601992411 3.6140723 -1103.3156
+126908.2601992914 3.6141117 -1103.2562
+126909.2601993417 3.6139934 -1103.197
+126910.260199392 3.6140723 -1103.2562
+126911.2601994423 3.6141903 -1103.2562
+126912.2601994926 3.614151 -1103.2959
+126913.2601995429 3.6141903 -1103.2366
+126914.2601995931 3.6142297 -1103.2562
+126915.2601996434 3.6141117 -1103.2761
+126916.2601996937 3.6141117 -1103.197
+126917.260199744 3.6141117 -1103.1378
+126918.2601997943 3.6141117 -1103.2562
+126919.2601998446 3.6139934 -1103.2366
+126920.2601998949 3.614151 -1103.2562
+126921.2601999452 3.614151 -1103.2959
+126922.2601999955 3.6140723 -1103.2366
+126923.2602000458 3.6140723 -1103.197
+126924.2602000961 3.6141117 -1103.197
+126925.2602001464 3.614033 -1103.1774
+126926.2602001966 3.6139934 -1103.197
+126927.2602002469 3.6139541 -1103.1378
+126928.2602002972 3.6139934 -1103.197
+126929.2602003475 3.614033 -1103.2562
+126930.2602003978 3.6139934 -1103.1576
+126931.2602004481 3.614033 -1103.1378
+126932.2602004984 3.614033 -1103.2562
+126933.2602005487 3.6139147 -1103.197
+126934.260200599 3.6139541 -1103.1576
+126935.2602006493 3.6139541 -1103.3156
+126936.2602006996 3.6139934 -1103.2562
+126937.2602007499 3.6139934 -1103.1774
+126938.2602008001 3.6139147 -1103.2168
+126939.2602008504 3.614033 -1103.2761
+126940.2602009007 3.6139147 -1103.2366
+126941.260200951 3.6139934 -1103.2761
+126942.2602010013 3.6139541 -1103.1774
+126943.2602010516 3.6138754 -1103.2366
+126944.2602011019 3.6139541 -1103.2366
+126945.2602011522 3.6138361 -1103.3156
+126946.2602012025 3.6138754 -1103.2168
+126947.2602012528 3.6139541 -1103.1774
+126948.2602013031 3.6138361 -1103.2562
+126949.2602013533 3.6138754 -1103.2761
+126950.2602014036 3.6138754 -1103.2366
+126951.2602014539 3.6138361 -1103.2366
+126952.2602015042 3.6138361 -1103.2562
+126953.2602015545 3.6138361 -1103.197
+126954.2602016048 3.6137574 -1103.197
+126955.2602016551 3.6138361 -1103.2168
+126956.2602017054 3.6137574 -1103.1576
+126957.2602017557 3.6137967 -1103.1774
+126958.260201806 3.6137967 -1103.2562
+126959.2602018563 3.6137574 -1103.2168
+126960.2602019066 3.6137574 -1103.2168
+126961.2602019568 3.6137574 -1103.2562
+126962.2602020071 3.6138754 -1103.3551
+126963.2602020574 3.6137178 -1103.2168
+126964.2602021077 3.6137178 -1103.2168
+126965.260202158 3.6137178 -1103.2168
+126966.2602022083 3.6136785 -1103.2366
+126967.2602022586 3.6137574 -1103.2761
+126968.2602023089 3.6137178 -1103.197
+126969.2602023592 3.6137178 -1103.1576
+126970.2602024095 3.6136785 -1103.2562
+126971.2602024598 3.6136785 -1103.2168
+126972.2602025101 3.6137967 -1103.2761
+126973.2602025603 3.6136391 -1103.2366
+126974.2602026106 3.6136785 -1103.2761
+126975.2602026609 3.6137574 -1103.2562
+126976.2602027112 3.6135604 -1103.2168
+126977.2602027615 3.6136785 -1103.197
+126978.2602028118 3.6137178 -1103.3551
+126979.2602028621 3.6136391 -1103.197
+126980.2602029124 3.6136785 -1103.2366
+126981.2602029627 3.6135998 -1103.1774
+126982.260203013 3.6135998 -1103.1774
+126983.2602030633 3.6135604 -1103.1774
+126984.2602031135 3.6135604 -1103.2366
+126985.2602031638 3.6135604 -1103.2761
+126986.2602032141 3.6134818 -1103.2761
+126987.2602032644 3.6135211 -1103.2366
+126988.2602033147 3.6136391 -1103.2562
+126989.260203365 3.6135604 -1103.1774
+126990.2602034153 3.6135604 -1103.2562
+126991.2602034656 3.6135998 -1103.197
+126992.2602035159 3.6133242 -1103.2168
+126993.2602035662 3.6135211 -1103.2168
+126994.2602036165 3.6135604 -1103.2168
+126995.2602036668 3.6135211 -1103.197
+126996.260203717 3.6134818 -1103.2168
+126997.2602037673 3.6134424 -1103.2562
+126998.2602038176 3.6134028 -1103.2168
+126999.2602038679 3.6134818 -1103.3156
+127000.2602039182 3.6134424 -1103.197
+127001.2602039685 3.6134818 -1103.2761
+127002.2602040188 3.6134424 -1103.2168
+127003.2602040691 3.6134424 -1103.2366
+127004.2602041194 3.6134818 -1103.2366
+127005.2602041697 3.6134424 -1103.2761
+127006.26020422 3.6134818 -1103.2168
+127007.2602042702 3.6134028 -1103.197
+127008.2602043205 3.6134818 -1103.197
+127009.2602043708 3.6133242 -1103.2761
+127010.2602044211 3.6134028 -1103.2761
+127011.2602044714 3.6134028 -1103.2959
+127012.2602045217 3.6132848 -1103.2168
+127013.260204572 3.6132848 -1103.2366
+127014.2602046223 3.6134818 -1103.2562
+127015.2602046726 3.6133242 -1103.2366
+127016.2602047229 3.6133242 -1103.2366
+127017.2602047732 3.6133635 -1103.1774
+127018.2602048235 3.6132848 -1103.2168
+127019.2602048737 3.6133635 -1103.197
+127020.260204924 3.6133635 -1103.2168
+127021.2602049743 3.6132455 -1103.197
+127022.2602050246 3.6133635 -1103.2366
+127023.2602050749 3.6132848 -1103.2366
+127024.2602051252 3.6132061 -1103.2366
+127025.2602051755 3.6132848 -1103.2959
+127026.2602052258 3.6132061 -1103.2562
+127027.2602052761 3.6132848 -1103.1378
+127028.2602053264 3.6132455 -1103.2168
+127029.2602053767 3.6130879 -1103.3156
+127030.260205427 3.6132455 -1103.197
+127031.2602054772 3.6131668 -1103.3353
+127032.2602055275 3.6132848 -1103.2959
+127033.2602055778 3.6132848 -1103.2959
+127034.2602056281 3.6131275 -1103.2366
+127035.2602056784 3.6132061 -1103.2562
+127036.2602057287 3.6131275 -1103.197
+127037.260205779 3.6132061 -1103.1576
+127038.2602058293 3.6132061 -1103.2168
+127039.2602058796 3.6131668 -1103.2168
+127040.2602059299 3.6131668 -1103.1576
+127041.2602059802 3.6131668 -1103.2366
+127042.2602060304 3.6131668 -1103.2562
+127043.2602060807 3.6130879 -1103.1378
+127044.260206131 3.6131275 -1103.2761
+127045.2602061813 3.6130092 -1103.2959
+127046.2602062316 3.6131275 -1103.2366
+127047.2602062819 3.6131275 -1103.1378
+127048.2602063322 3.6130092 -1103.2168
+127049.2602063825 3.6130486 -1103.2562
+127050.2602064328 3.6130092 -1103.1774
+127051.2602064831 3.6129699 -1103.0785
+127052.2602065334 3.6130879 -1103.2562
+127053.2602065837 3.6130092 -1103.2366
+127054.2602066339 3.6131275 -1103.2562
+127055.2602066842 3.6130092 -1103.1774
+127056.2602067345 3.6130879 -1103.1576
+127057.2602067848 3.6130879 -1103.197
+127058.2602068351 3.6129699 -1103.1774
+127059.2602068854 3.6128912 -1103.197
+127060.2602069357 3.6128912 -1103.197
+127061.260206986 3.6130092 -1103.1182
+127062.2602070363 3.6130092 -1103.2168
+127063.2602070866 3.6130879 -1103.3156
+127064.2602071369 3.6129699 -1103.2562
+127065.2602071872 3.6128519 -1103.2366
+127066.2602072374 3.6128912 -1103.2562
+127067.2602072877 3.6129305 -1103.197
+127068.260207338 3.6128519 -1103.2168
+127069.2602073883 3.6128912 -1103.1576
+127070.2602074386 3.6129305 -1103.2168
+127071.2602074889 3.6129305 -1103.2168
+127072.2602075392 3.6129305 -1103.2366
+127073.2602075895 3.6128519 -1103.197
+127074.2602076398 3.6127729 -1103.2168
+127075.2602076901 3.6128912 -1103.0588
+127076.2602077404 3.6128519 -1103.1774
+127077.2602077906 3.6129305 -1103.2366
+127078.2602078409 3.6128125 -1103.1774
+127079.2602078912 3.6128912 -1103.1774
+127080.2602079415 3.6128125 -1103.1774
+127081.2602079918 3.6128125 -1103.3353
+127082.2602080421 3.6127729 -1103.197
+127083.2602080924 3.6128125 -1103.1576
+127084.2602081427 3.6128519 -1103.2761
+127085.260208193 3.6128519 -1103.1774
+127086.2602082433 3.6128519 -1103.2562
+127087.2602082936 3.6128519 -1103.1576
+127088.2602083439 3.6128912 -1103.2168
+127089.2602083941 3.6127729 -1103.2562
+127090.2602084444 3.6126943 -1103.2366
+127091.2602084947 3.6127729 -1103.197
+127092.260208545 3.6128519 -1103.2562
+127093.2602085953 3.6128125 -1103.1182
+127094.2602086456 3.6127729 -1103.2366
+127095.2602086959 3.6126156 -1103.1774
+127096.2602087462 3.6126943 -1103.1182
+127097.2602087965 3.6126943 -1103.1378
+127098.2602088468 3.6126549 -1103.2562
+127099.2602088971 3.6127336 -1103.1774
+127100.2602089474 3.6127336 -1103.2562
+127101.2602089976 3.6126156 -1103.1774
+127102.2602090479 3.6127336 -1103.197
+127103.2602090982 3.6126549 -1103.2959
+127104.2602091485 3.6126549 -1103.197
+127105.2602091988 3.6126156 -1103.1378
+127106.2602092491 3.6125762 -1103.2761
+127107.2602092994 3.6126156 -1103.2168
+127108.2602093497 3.6126156 -1103.2959
+127109.2602094 3.6126156 -1103.3156
+127110.2602094503 3.6126549 -1103.1774
+127111.2602095006 3.6126156 -1103.2168
+127112.2602095508 3.6126549 -1103.2959
+127113.2602096011 3.6125762 -1103.1774
+127114.2602096514 3.6125762 -1103.1774
+127115.2602097017 3.6125369 -1103.2366
+127116.260209752 3.6126549 -1103.3353
+127117.2602098023 3.6125762 -1103.2366
+127118.2602098526 3.612458 -1103.2168
+127119.2602099029 3.6124976 -1103.2366
+127120.2602099532 3.6125762 -1103.197
+127121.2602100035 3.6125762 -1103.197
+127122.2602100538 3.6125369 -1103.2366
+127123.2602101041 3.6125369 -1103.2562
+127124.2602101543 3.6125369 -1103.2761
+127125.2602102046 3.6125369 -1103.2761
+127126.2602102549 3.612458 -1103.2562
+127127.2602103052 3.6124976 -1103.1576
+127128.2602103555 3.6124976 -1103.2366
+127129.2602104058 3.6124187 -1103.2168
+127130.2602104561 3.6124976 -1103.2562
+127131.2602105064 3.6124187 -1103.197
+127132.2602105567 3.6124187 -1103.1576
+127133.260210607 3.612458 -1103.197
+127134.2602106573 3.6123793 -1103.1182
+127135.2602107076 3.6124976 -1103.1774
+127136.2602107578 3.6123793 -1103.2761
+127137.2602108081 3.6124187 -1103.2366
+127138.2602108584 3.6124187 -1103.2168
+127139.2602109087 3.6123793 -1103.3156
+127140.260210959 3.6123793 -1103.1576
+127141.2602110093 3.612458 -1103.197
+127142.2602110596 3.6123006 -1103.2366
+127143.2602111099 3.6124187 -1103.197
+127144.2602111602 3.6123006 -1103.2562
+127145.2602112105 3.6123793 -1103.1378
+127146.2602112608 3.6123793 -1103.197
+127147.260211311 3.61234 -1103.2168
+127148.2602113613 3.6122613 -1103.2366
+127149.2602114116 3.61234 -1103.1182
+127150.2602114619 3.61234 -1103.1378
+127151.2602115122 3.61234 -1103.2366
+127152.2602115625 3.612222 -1103.1378
+127153.2602116128 3.6123793 -1103.2366
+127154.2602116631 3.6123006 -1103.197
+127155.2602117134 3.6122613 -1103.2562
+127156.2602117637 3.6122613 -1103.1774
+127157.260211814 3.6123006 -1103.197
+127158.2602118643 3.6122613 -1103.2562
+127159.2602119145 3.612222 -1103.2366
+127160.2602119648 3.612222 -1103.197
+127161.2602120151 3.6121826 -1103.197
+127162.2602120654 3.6122613 -1103.3156
+127163.2602121157 3.6123006 -1103.1378
+127164.260212166 3.612222 -1103.2168
+127165.2602122163 3.612222 -1103.2366
+127166.2602122666 3.612222 -1103.2168
+127167.2602123169 3.6123006 -1103.2168
+127168.2602123672 3.6122613 -1103.1378
+127169.2602124175 3.6120644 -1103.2562
+127170.2602124678 3.6121037 -1103.2761
+127171.260212518 3.6121037 -1103.2168
+127172.2602125683 3.6120644 -1103.1576
+127173.2602126186 3.612143 -1103.1774
+127174.2602126689 3.612222 -1103.1378
+127175.2602127192 3.6120644 -1103.1576
+127176.2602127695 3.6121037 -1103.2366
+127177.2602128198 3.6121037 -1103.2168
+127178.2602128701 3.6122613 -1103.3156
+127179.2602129204 3.6120644 -1103.2562
+127180.2602129707 3.6120644 -1103.2168
+127181.260213021 3.6121037 -1103.2562
+127182.2602130712 3.6119857 -1103.1576
+127183.2602131215 3.6120644 -1103.1576
+127184.2602131718 3.612025 -1103.2959
+127185.2602132221 3.6120644 -1103.2168
+127186.2602132724 3.6120644 -1103.1774
+127187.2602133227 3.612025 -1103.2168
+127188.260213373 3.612143 -1103.2168
+127189.2602134233 3.6119463 -1103.2168
+127190.2602134736 3.612025 -1103.2366
+127191.2602135239 3.6119463 -1103.2562
+127192.2602135742 3.6119463 -1103.1182
+127193.2602136245 3.6120644 -1103.2562
+127194.2602136747 3.6119857 -1103.1576
+127195.260213725 3.612025 -1103.197
+127196.2602137753 3.6119463 -1103.3353
+127197.2602138256 3.6119463 -1103.1378
+127198.2602138759 3.612025 -1103.197
+127199.2602139262 3.6119857 -1103.0785
+127200.2602139765 3.612025 -1103.1576
+127201.2602140268 3.6118281 -1103.3156
+127202.2602140771 3.611907 -1103.2761
+127203.2602141274 3.6118674 -1103.197
+127204.2602141777 3.6119857 -1103.2562
+127205.260214228 3.6119463 -1103.1774
+127206.2602142782 3.6119463 -1103.2366
+127207.2602143285 3.6119463 -1103.3156
+127208.2602143788 3.6118674 -1103.2562
+127209.2602144291 3.6119857 -1103.197
+127210.2602144794 3.612025 -1103.3353
+127211.2602145297 3.611907 -1103.2761
+127212.26021458 3.6117887 -1103.1774
+127213.2602146303 3.611907 -1103.2168
+127214.2602146806 3.6118674 -1103.2168
+127215.2602147309 3.6118281 -1103.1378
+127216.2602147812 3.6118281 -1103.3156
+127217.2602148314 3.6118281 -1103.197
+127218.2602148817 3.6118281 -1103.197
+127219.260214932 3.6117887 -1103.2959
+127220.2602149823 3.6117887 -1103.197
+127221.2602150326 3.6117887 -1103.1576
+127222.2602150829 3.6117887 -1103.3156
+127223.2602151332 3.6117887 -1103.1576
+127224.2602151835 3.6118281 -1103.2562
+127225.2602152338 3.6117887 -1103.197
+127226.2602152841 3.6117101 -1103.2562
+127227.2602153344 3.6117494 -1103.3156
+127228.2602153847 3.6118281 -1103.2761
+127229.2602154349 3.6117101 -1103.2168
+127230.2602154852 3.6117887 -1103.197
+127231.2602155355 3.6117494 -1103.1774
+127232.2602155858 3.6115921 -1103.197
+127233.2602156361 3.6117101 -1103.197
+127234.2602156864 3.6117101 -1103.1774
+127235.2602157367 3.6116707 -1103.2366
+127236.260215787 3.6116707 -1103.2761
+127237.2602158373 3.6116707 -1103.2168
+127238.2602158876 3.6116707 -1103.197
+127239.2602159379 3.6117101 -1103.3551
+127240.2602159882 3.6117494 -1103.3156
+127241.2602160384 3.6116314 -1103.197
+127242.2602160887 3.6116707 -1103.1774
+127243.260216139 3.6116314 -1103.2366
+127244.2602161893 3.6116707 -1103.1774
+127245.2602162396 3.6116314 -1103.2959
+127246.2602162899 3.6116707 -1103.1576
+127247.2602163402 3.6117101 -1103.2366
+127248.2602163905 3.6115921 -1103.2366
+127249.2602164408 3.6115131 -1103.197
+127250.2602164911 3.6115525 -1103.2562
+127251.2602165414 3.6115921 -1103.2959
+127252.2602165916 3.6115525 -1103.197
+127253.2602166419 3.6115131 -1103.2366
+127254.2602166922 3.6115525 -1103.1774
+127255.2602167425 3.6115131 -1103.2168
+127256.2602167928 3.6115131 -1103.197
+127257.2602168431 3.6115131 -1103.2959
+127258.2602168934 3.6114738 -1103.2366
+127259.2602169437 3.6114738 -1103.1774
+127260.260216994 3.6115131 -1103.2562
+127261.2602170443 3.6115525 -1103.2366
+127262.2602170946 3.6114738 -1103.1774
+127263.2602171449 3.6115525 -1103.2168
+127264.2602171951 3.6115131 -1103.3156
+127265.2602172454 3.6114738 -1103.1576
+127266.2602172957 3.6114345 -1103.1774
+127267.260217346 3.6114345 -1103.2366
+127268.2602173963 3.6114738 -1103.3156
+127269.2602174466 3.6114345 -1103.2168
+127270.2602174969 3.6113164 -1103.2562
+127271.2602175472 3.6113951 -1103.2562
+127272.2602175975 3.6113164 -1103.1774
+127273.2602176478 3.6113951 -1103.2366
+127274.2602176981 3.6114345 -1103.2761
+127275.2602177484 3.6113558 -1103.2168
+127276.2602177986 3.6115131 -1103.197
+127277.2602178489 3.6113558 -1103.197
+127278.2602178992 3.6113558 -1103.1774
+127279.2602179495 3.6112771 -1103.2562
+127280.2602179998 3.6113558 -1103.2366
+127281.2602180501 3.6113558 -1103.1182
+127282.2602181004 3.6113558 -1103.2168
+127283.2602181507 3.6113951 -1103.1576
+127284.260218201 3.6113951 -1103.2168
+127285.2602182513 3.6112375 -1103.197
+127286.2602183016 3.6113558 -1103.1576
+127287.2602183518 3.6113558 -1103.2168
+127288.2602184021 3.6113558 -1103.2168
+127289.2602184524 3.6112771 -1103.2562
+127290.2602185027 3.6112771 -1103.1576
+127291.260218553 3.6113558 -1103.2168
+127292.2602186033 3.6112375 -1103.2562
+127293.2602186536 3.6113558 -1103.1576
+127294.2602187039 3.6112375 -1103.2761
+127295.2602187542 3.6113164 -1103.2168
+127296.2602188045 3.6112771 -1103.1576
+127297.2602188548 3.6112771 -1103.2761
+127298.2602189051 3.6113164 -1103.2168
+127299.2602189553 3.6112375 -1103.1378
+127300.2602190056 3.6112375 -1103.2761
+127301.2602190559 3.6111982 -1103.2366
+127302.2602191062 3.6111982 -1103.197
+127303.2602191565 3.6111588 -1103.197
+127304.2602192068 3.6111588 -1103.1378
+127305.2602192571 3.6111982 -1103.2168
+127306.2602193074 3.6110802 -1103.2959
+127307.2602193577 3.6111588 -1103.2168
+127308.260219408 3.6111982 -1103.197
+127309.2602194583 3.6111982 -1103.197
+127310.2602195085 3.6111195 -1103.3156
+127311.2602195588 3.6111195 -1103.2366
+127312.2602196091 3.6111588 -1103.2959
+127313.2602196594 3.6111588 -1103.2761
+127314.2602197097 3.6111588 -1103.2168
+127315.26021976 3.6110408 -1103.2366
+127316.2602198103 3.6110802 -1103.1774
+127317.2602198606 3.6111195 -1103.197
+127318.2602199109 3.6110802 -1103.2168
+127319.2602199612 3.6110802 -1103.2366
+127320.2602200115 3.6111982 -1103.2562
+127321.2602200618 3.6110408 -1103.2168
+127322.260220112 3.6110015 -1103.2168
+127323.2602201623 3.6111195 -1103.197
+127324.2602202126 3.6111195 -1103.1774
+127325.2602202629 3.6110015 -1103.1576
+127326.2602203132 3.6109622 -1103.2562
+127327.2602203635 3.6110408 -1103.2366
+127328.2602204138 3.6110802 -1103.197
+127329.2602204641 3.6110015 -1103.1576
+127330.2602205144 3.6110015 -1103.2168
+127331.2602205647 3.6110015 -1103.2168
+127332.260220615 3.6108832 -1103.2168
+127333.2602206653 3.6110015 -1103.2366
+127334.2602207155 3.6109226 -1103.2761
+127335.2602207658 3.6108832 -1103.1774
+127336.2602208161 3.6108832 -1103.3749
+127337.2602208664 3.6109226 -1103.2366
+127338.2602209167 3.6108832 -1103.197
+127339.260220967 3.6109226 -1103.197
+127340.2602210173 3.6109226 -1103.1774
+127341.2602210676 3.6109226 -1103.1774
+127342.2602211179 3.6109226 -1103.2168
+127343.2602211682 3.6108832 -1103.2168
+127344.2602212185 3.6109226 -1103.197
+127345.2602212687 3.6109226 -1103.2562
+127346.260221319 3.6109226 -1103.2366
+127347.2602213693 3.6108832 -1103.197
+127348.2602214196 3.6108439 -1103.2959
+127349.2602214699 3.6108832 -1103.2959
+127350.2602215202 3.6108046 -1103.3749
+127351.2602215705 3.6108439 -1103.197
+127352.2602216208 3.6107652 -1103.2562
+127353.2602216711 3.6109622 -1103.2761
+127354.2602217214 3.6108046 -1103.2761
+127355.2602217717 3.6108439 -1103.2562
+127356.260221822 3.6108832 -1103.197
+127357.2602218722 3.6107259 -1103.2168
+127358.2602219225 3.6107652 -1103.1576
+127359.2602219728 3.6108046 -1103.2562
+127360.2602220231 3.6108046 -1103.2761
+127361.2602220734 3.6107652 -1103.1576
+127362.2602221237 3.6108046 -1103.2168
+127363.260222174 3.6108832 -1103.2366
+127364.2602222243 3.6107259 -1103.2761
+127365.2602222746 3.6106865 -1103.1774
+127366.2602223249 3.6107652 -1103.2168
+127367.2602223752 3.6106076 -1103.2168
+127368.2602224255 3.6107652 -1103.2761
+127369.2602224757 3.6106865 -1103.2366
+127370.260222526 3.6107652 -1103.1774
+127371.2602225763 3.6107259 -1103.2562
+127372.2602226266 3.6106865 -1103.2366
+127373.2602226769 3.6105289 -1103.2761
+127374.2602227272 3.6106865 -1103.1576
+127375.2602227775 3.6106472 -1103.2168
+127376.2602228278 3.6106076 -1103.2761
+127377.2602228781 3.6106865 -1103.2761
+127378.2602229284 3.6106865 -1103.197
+127379.2602229787 3.6106472 -1103.197
+127380.2602230289 3.6106076 -1103.2168
+127381.2602230792 3.6106076 -1103.1774
+127382.2602231295 3.6106076 -1103.2366
+127383.2602231798 3.6106076 -1103.2562
+127384.2602232301 3.6106076 -1103.1774
+127385.2602232804 3.6106076 -1103.2366
+127386.2602233307 3.6105683 -1103.197
+127387.260223381 3.6106472 -1103.1774
+127388.2602234313 3.6104503 -1103.1182
+127389.2602234816 3.6105683 -1103.1378
+127390.2602235319 3.6106076 -1103.1774
+127391.2602235822 3.6105683 -1103.2366
+127392.2602236324 3.6105289 -1103.2366
+127393.2602236827 3.6106076 -1103.1774
+127394.260223733 3.6105289 -1103.1576
+127395.2602237833 3.6104896 -1103.2761
+127396.2602238336 3.6104896 -1103.1774
+127397.2602238839 3.6104896 -1103.1576
+127398.2602239342 3.6104109 -1103.1378
+127399.2602239845 3.6105289 -1103.2959
+127400.2602240348 3.6104109 -1103.2562
+127401.2602240851 3.6104896 -1103.2168
+127402.2602241354 3.6104109 -1103.2366
+127403.2602241857 3.6103716 -1103.197
+127404.2602242359 3.6104896 -1103.2366
+127405.2602242862 3.6104896 -1103.1182
+127406.2602243365 3.6104503 -1103.1774
+127407.2602243868 3.6104109 -1103.197
+127408.2602244371 3.6104109 -1103.2168
+127409.2602244874 3.6104896 -1103.1774
+127410.2602245377 3.6104503 -1103.1182
+127411.260224588 3.6103716 -1103.1774
+127412.2602246383 3.6103716 -1103.2168
+127413.2602246886 3.6104109 -1103.197
+127414.2602247389 3.6104503 -1103.2366
+127415.2602247891 3.6104896 -1103.197
+127416.2602248394 3.6103323 -1103.197
+127417.2602248897 3.6103323 -1103.1378
+127418.26022494 3.6103716 -1103.2168
+127419.2602249903 3.6103323 -1103.2168
+127420.2602250406 3.6103716 -1103.2562
+127421.2602250909 3.6103716 -1103.2366
+127422.2602251412 3.6103716 -1103.1182
+127423.2602251915 3.6104109 -1103.2168
+127424.2602252418 3.6103323 -1103.1378
+127425.2602252921 3.6103323 -1103.197
+127426.2602253424 3.6103323 -1103.1576
+127427.2602253926 3.6103323 -1103.197
+127428.2602254429 3.6102533 -1103.197
+127429.2602254932 3.610214 -1103.0588
+127430.2602255435 3.6102533 -1103.2562
+127431.2602255938 3.6102927 -1103.197
+127432.2602256441 3.610214 -1103.1774
+127433.2602256944 3.6101353 -1103.2562
+127434.2602257447 3.6101747 -1103.2366
+127435.260225795 3.610214 -1103.2959
+127436.2602258453 3.610214 -1103.1774
+127437.2602258956 3.6102927 -1103.1774
+127438.2602259459 3.610096 -1103.2366
+127439.2602259961 3.610214 -1103.2562
+127440.2602260464 3.610214 -1103.2562
+127441.2602260967 3.6101747 -1103.1378
+127442.260226147 3.6100566 -1103.197
+127443.2602261973 3.610096 -1103.2366
+127444.2602262476 3.6101353 -1103.2761
+127445.2602262979 3.610096 -1103.197
+127446.2602263482 3.6100566 -1103.2168
+127447.2602263985 3.6101353 -1103.2366
+127448.2602264488 3.6100566 -1103.1774
+127449.2602264991 3.6101353 -1103.197
+127450.2602265493 3.610096 -1103.1576
+127451.2602265996 3.6100566 -1103.1576
+127452.2602266499 3.6101747 -1103.197
+127453.2602267002 3.6100171 -1103.1576
+127454.2602267505 3.610096 -1103.2366
+127455.2602268008 3.6099777 -1103.2761
+127456.2602268511 3.610096 -1103.2168
+127457.2602269014 3.6100171 -1103.197
+127458.2602269517 3.6100566 -1103.1576
+127459.260227002 3.6100171 -1103.2366
+127460.2602270523 3.6100171 -1103.2761
+127461.2602271026 3.6100566 -1103.197
+127462.2602271528 3.6100171 -1103.197
+127463.2602272031 3.6100566 -1103.1774
+127464.2602272534 3.6100171 -1103.1774
+127465.2602273037 3.610096 -1103.2168
+127466.260227354 3.6100171 -1103.1576
+127467.2602274043 3.6100171 -1103.2366
+127468.2602274546 3.6100171 -1103.1774
+127469.2602275049 3.6100566 -1103.2168
+127470.2602275552 3.6099777 -1103.2168
+127471.2602276055 3.6099384 -1103.197
+127472.2602276558 3.6100171 -1103.2366
+127473.2602277061 3.6099777 -1103.197
+127474.2602277563 3.6099384 -1103.197
+127475.2602278066 3.6099777 -1103.197
+127476.2602278569 3.6100171 -1103.2366
+127477.2602279072 3.6099384 -1103.197
+127478.2602279575 3.6099384 -1103.1576
+127479.2602280078 3.6099384 -1103.197
+127480.2602280581 3.6099384 -1103.1182
+127481.2602281084 3.6098597 -1103.2168
+127482.2602281587 3.6098597 -1103.2366
+127483.260228209 3.6099384 -1103.197
+127484.2602282593 3.6098204 -1103.197
+127485.2602283095 3.6098204 -1103.1378
+127486.2602283598 3.6098597 -1103.197
+127487.2602284101 3.6098597 -1103.2366
+127488.2602284604 3.609899 -1103.2562
+127489.2602285107 3.6098597 -1103.1576
+127490.260228561 3.6098204 -1103.1774
+127491.2602286113 3.609781 -1103.2761
+127492.2602286616 3.6098597 -1103.2366
+127493.2602287119 3.609781 -1103.0984
+127494.2602287622 3.609781 -1103.1182
+127495.2602288125 3.609781 -1103.1774
+127496.2602288628 3.6098204 -1103.2562
+127497.260228913 3.6097417 -1103.1774
+127498.2602289633 3.609781 -1103.0984
+127499.2602290136 3.6097021 -1103.2562
+127500.2602290639 3.6096234 -1103.2562
+127501.2602291142 3.609781 -1103.2959
+127502.2602291645 3.6097021 -1103.197
+127503.2602292148 3.609781 -1103.2168
+127504.2602292651 3.6097021 -1103.2959
+127505.2602293154 3.6097021 -1103.2168
+127506.2602293657 3.6097417 -1103.197
+127507.260229416 3.6096234 -1103.1774
+127508.2602294663 3.6097021 -1103.2366
+127509.2602295165 3.6095841 -1103.1576
+127510.2602295668 3.6096234 -1103.2168
+127511.2602296171 3.6097417 -1103.1774
+127512.2602296674 3.6097417 -1103.2562
+127513.2602297177 3.6096628 -1103.197
+127514.260229768 3.6096234 -1103.1182
+127515.2602298183 3.6096234 -1103.2562
+127516.2602298686 3.6095841 -1103.2562
+127517.2602299189 3.6096234 -1103.197
+127518.2602299692 3.6096628 -1103.1774
+127519.2602300195 3.6095054 -1103.0984
+127520.2602300697 3.6096234 -1103.2562
+127521.26023012 3.6095841 -1103.1774
+127522.2602301703 3.6095841 -1103.1378
+127523.2602302206 3.6094661 -1103.2168
+127524.2602302709 3.6095841 -1103.2366
+127525.2602303212 3.6094267 -1103.1378
+127526.2602303715 3.6095448 -1103.1774
+127527.2602304218 3.6095448 -1103.2761
+127528.2602304721 3.6095448 -1103.1774
+127529.2602305224 3.6095054 -1103.2366
+127530.2602305727 3.6095841 -1103.2168
+127531.260230623 3.6095054 -1103.2168
+127532.2602306732 3.6095054 -1103.2366
+127533.2602307235 3.6095448 -1103.197
+127534.2602307738 3.6094661 -1103.197
+127535.2602308241 3.6095054 -1103.197
+127536.2602308744 3.6094661 -1103.1774
+127537.2602309247 3.6094661 -1103.2761
+127538.260230975 3.6095054 -1103.1378
+127539.2602310253 3.6095054 -1103.1774
+127540.2602310756 3.6094267 -1103.1576
+127541.2602311259 3.6095054 -1103.2168
+127542.2602311762 3.6094661 -1103.197
+127543.2602312265 3.6094661 -1103.2168
+127544.2602312767 3.6095448 -1103.2168
+127545.260231327 3.6093872 -1103.1576
+127546.2602313773 3.6093872 -1103.2168
+127547.2602314276 3.6094267 -1103.1774
+127548.2602314779 3.6094661 -1103.2562
+127549.2602315282 3.6094267 -1103.3156
+127550.2602315785 3.6093872 -1103.197
+127551.2602316288 3.6093085 -1103.1774
+127552.2602316791 3.6093872 -1103.2959
+127553.2602317294 3.6092691 -1103.197
+127554.2602317797 3.6093085 -1103.2168
+127555.2602318299 3.6093085 -1103.197
+127556.2602318802 3.6094267 -1103.2366
+127557.2602319305 3.6093085 -1103.2761
+127558.2602319808 3.6092691 -1103.2168
+127559.2602320311 3.6092298 -1103.2562
+127560.2602320814 3.6092298 -1103.3156
+127561.2602321317 3.6092298 -1103.1378
+127562.260232182 3.6093085 -1103.2168
+127563.2602322323 3.6092691 -1103.1378
+127564.2602322826 3.6091905 -1103.197
+127565.2602323329 3.6093085 -1103.2168
+127566.2602323832 3.6093085 -1103.2168
+127567.2602324334 3.6091511 -1103.197
+127568.2602324837 3.6091905 -1103.1774
+127569.260232534 3.6092691 -1103.2761
+127570.2602325843 3.6092298 -1103.1182
+127571.2602326346 3.6091905 -1103.1774
+127572.2602326849 3.6091511 -1103.2366
+127573.2602327352 3.6091905 -1103.197
+127574.2602327855 3.6091511 -1103.2562
+127575.2602328358 3.6093085 -1103.2168
+127576.2602328861 3.6092691 -1103.2168
+127577.2602329364 3.6092298 -1103.1774
+127578.2602329867 3.6092298 -1103.1774
+127579.2602330369 3.6091905 -1103.2562
+127580.2602330872 3.6091905 -1103.197
+127581.2602331375 3.6091511 -1103.2959
+127582.2602331878 3.6091511 -1103.197
+127583.2602332381 3.6089935 -1103.197
+127584.2602332884 3.6091118 -1103.2761
+127585.2602333387 3.6090722 -1103.2168
+127586.260233389 3.6091118 -1103.3353
+127587.2602334393 3.6089935 -1103.2168
+127588.2602334896 3.6090722 -1103.2761
+127589.2602335399 3.6090722 -1103.1774
+127590.2602335901 3.6091511 -1103.2562
+127591.2602336404 3.6091118 -1103.2562
+127592.2602336907 3.6089935 -1103.2959
+127593.260233741 3.6090722 -1103.1378
+127594.2602337913 3.6091118 -1103.2959
+127595.2602338416 3.6089542 -1103.2366
+127596.2602338919 3.6089935 -1103.2761
+127597.2602339422 3.6089149 -1103.2366
+127598.2602339925 3.6089935 -1103.2562
+127599.2602340428 3.6090329 -1103.2562
+127600.2602340931 3.6089542 -1103.2168
+127601.2602341434 3.6089542 -1103.2366
+127602.2602341936 3.6089935 -1103.1774
+127603.2602342439 3.6089935 -1103.2168
+127604.2602342942 3.6090329 -1103.197
+127605.2602343445 3.6088755 -1103.2562
+127606.2602343948 3.6089542 -1103.1576
+127607.2602344451 3.6089935 -1103.197
+127608.2602344954 3.6089542 -1103.197
+127609.2602345457 3.6089542 -1103.197
+127610.260234596 3.6089542 -1103.197
+127611.2602346463 3.6089149 -1103.1774
+127612.2602346966 3.6088755 -1103.2366
+127613.2602347468 3.6088755 -1103.2366
+127614.2602347971 3.6088755 -1103.1774
+127615.2602348474 3.6088755 -1103.1576
+127616.2602348977 3.6089149 -1103.2168
+127617.260234948 3.6088755 -1103.1774
+127618.2602349983 3.6088755 -1103.197
+127619.2602350486 3.6089149 -1103.2168
+127620.2602350989 3.6088362 -1103.2168
+127621.2602351492 3.6089149 -1103.1774
+127622.2602351995 3.6087573 -1103.197
+127623.2602352498 3.6088362 -1103.2562
+127624.2602353001 3.6089149 -1103.2168
+127625.2602353503 3.6087179 -1103.2366
+127626.2602354006 3.6087968 -1103.2366
+127627.2602354509 3.6087968 -1103.2366
+127628.2602355012 3.6087968 -1103.2168
+127629.2602355515 3.6087968 -1103.1182
+127630.2602356018 3.6087573 -1103.197
+127631.2602356521 3.6087968 -1103.3156
+127632.2602357024 3.6087179 -1103.1774
+127633.2602357527 3.6087573 -1103.1576
+127634.260235803 3.6088362 -1103.197
+127635.2602358533 3.6088755 -1103.1774
+127636.2602359036 3.6087179 -1103.197
+127637.2602359538 3.6087179 -1103.1378
+127638.2602360041 3.6086392 -1103.1576
+127639.2602360544 3.6086392 -1103.2168
+127640.2602361047 3.6086392 -1103.2562
+127641.260236155 3.6086786 -1103.197
+127642.2602362053 3.6087179 -1103.2562
+127643.2602362556 3.6085999 -1103.197
+127644.2602363059 3.6086392 -1103.197
+127645.2602363562 3.6086786 -1103.1774
+127646.2602364065 3.6086786 -1103.1576
+127647.2602364568 3.6085606 -1103.1182
+127648.260236507 3.6085606 -1103.2168
+127649.2602365573 3.6086392 -1103.2168
+127650.2602366076 3.6086392 -1103.1774
+127651.2602366579 3.6087179 -1103.2168
+127652.2602367082 3.6085212 -1103.1576
+127653.2602367585 3.6084819 -1103.197
+127654.2602368088 3.6085999 -1103.1378
+127655.2602368591 3.6084819 -1103.1774
+127656.2602369094 3.6085212 -1103.1774
+127657.2602369597 3.6085999 -1103.197
+127658.26023701 3.6085606 -1103.1576
+127659.2602370603 3.6086392 -1103.1774
+127660.2602371105 3.6085606 -1103.1774
+127661.2602371608 3.6085999 -1103.2761
+127662.2602372111 3.6085606 -1103.1378
+127663.2602372614 3.6084819 -1103.2366
+127664.2602373117 3.6085999 -1103.197
+127665.260237362 3.6084819 -1103.197
+127666.2602374123 3.6084423 -1103.197
+127667.2602374626 3.6084819 -1103.1576
+127668.2602375129 3.6084819 -1103.1182
+127669.2602375632 3.6084819 -1103.2168
+127670.2602376135 3.608403 -1103.1182
+127671.2602376638 3.608403 -1103.2761
+127672.260237714 3.6084423 -1103.2562
+127673.2602377643 3.608403 -1103.2959
+127674.2602378146 3.6084819 -1103.2562
+127675.2602378649 3.608403 -1103.2959
+127676.2602379152 3.608403 -1103.1576
+127677.2602379655 3.608403 -1103.1774
+127678.2602380158 3.6083243 -1103.3551
+127679.2602380661 3.6084423 -1103.1774
+127680.2602381164 3.6083636 -1103.1378
+127681.2602381667 3.6082456 -1103.2366
+127682.260238217 3.6084423 -1103.197
+127683.2602382672 3.6084423 -1103.197
+127684.2602383175 3.6083636 -1103.1576
+127685.2602383678 3.6083636 -1103.197
+127686.2602384181 3.6083636 -1103.2366
+127687.2602384684 3.608285 -1103.1576
+127688.2602385187 3.608403 -1103.1774
+127689.260238569 3.6083636 -1103.2959
+127690.2602386193 3.6083636 -1103.197
+127691.2602386696 3.6083636 -1103.2168
+127692.2602387199 3.6081667 -1103.2761
+127693.2602387702 3.6082063 -1103.2562
+127694.2602388205 3.6081667 -1103.3749
+127695.2602388707 3.6083243 -1103.2562
+127696.260238921 3.608285 -1103.1774
+127697.2602389713 3.608285 -1103.197
+127698.2602390216 3.6082063 -1103.2366
+127699.2602390719 3.6082063 -1103.2562
+127700.2602391222 3.608285 -1103.2366
+127701.2602391725 3.6081274 -1103.1774
+127702.2602392228 3.6082456 -1103.2761
+127703.2602392731 3.6081274 -1103.1576
+127704.2602393234 3.6081667 -1103.2168
+127705.2602393737 3.6081667 -1103.1774
+127706.260239424 3.6081667 -1103.2366
+127707.2602394742 3.6081274 -1103.2562
+127708.2602395245 3.6082063 -1103.1182
+127709.2602395748 3.6081667 -1103.2168
+127710.2602396251 3.6080487 -1103.2366
+127711.2602396754 3.608088 -1103.2366
+127712.2602397257 3.608088 -1103.3551
+127713.260239776 3.6081667 -1103.197
+127714.2602398263 3.608088 -1103.197
+127715.2602398766 3.6081274 -1103.197
+127716.2602399269 3.6080093 -1103.1774
+127717.2602399772 3.60797 -1103.1774
+127718.2602400274 3.608088 -1103.1774
+127719.2602400777 3.6080093 -1103.2562
+127720.260240128 3.6080487 -1103.197
+127721.2602401783 3.6081274 -1103.2959
+127722.2602402286 3.608088 -1103.2168
+127723.2602402789 3.6081274 -1103.2168
+127724.2602403292 3.608088 -1103.2168
+127725.2602403795 3.6080487 -1103.1774
+127726.2602404298 3.608088 -1103.2168
+127727.2602404801 3.60797 -1103.2366
+127728.2602405304 3.608088 -1103.2562
+127729.2602405807 3.60797 -1103.2366
+127730.2602406309 3.6080093 -1103.197
+127731.2602406812 3.6080093 -1103.1576
+127732.2602407315 3.60797 -1103.197
+127733.2602407818 3.6080093 -1103.1774
+127734.2602408321 3.60797 -1103.1182
+127735.2602408824 3.6078124 -1103.1774
+127736.2602409327 3.6080093 -1103.2562
+127737.260240983 3.6080093 -1103.2168
+127738.2602410333 3.6078913 -1103.2959
+127739.2602410836 3.6078517 -1103.1576
+127740.2602411339 3.6079307 -1103.1774
+127741.2602411842 3.6078913 -1103.1774
+127742.2602412344 3.6079307 -1103.1576
+127743.2602412847 3.6079307 -1103.2168
+127744.260241335 3.6078517 -1103.1774
+127745.2602413853 3.6078517 -1103.2168
+127746.2602414356 3.6078913 -1103.2168
+127747.2602414859 3.6078517 -1103.2366
+127748.2602415362 3.6078913 -1103.1182
+127749.2602415865 3.6078913 -1103.3353
+127750.2602416368 3.6079307 -1103.2959
+127751.2602416871 3.6078913 -1103.197
+127752.2602417374 3.6078124 -1103.2959
+127753.2602417876 3.6076944 -1103.2168
+127754.2602418379 3.6078913 -1103.2761
+127755.2602418882 3.6078913 -1103.1774
+127756.2602419385 3.6077731 -1103.3156
+127757.2602419888 3.6078124 -1103.2562
+127758.2602420391 3.6078124 -1103.197
+127759.2602420894 3.6078517 -1103.1576
+127760.2602421397 3.6077731 -1103.197
+127761.26024219 3.6078124 -1103.2562
+127762.2602422403 3.6077337 -1103.2366
+127763.2602422906 3.6076944 -1103.2366
+127764.2602423409 3.6078124 -1103.2562
+127765.2602423911 3.6078124 -1103.2168
+127766.2602424414 3.6077731 -1103.2168
+127767.2602424917 3.6076944 -1103.197
+127768.260242542 3.6077731 -1103.197
+127769.2602425923 3.6076944 -1103.2562
+127770.2602426426 3.6076944 -1103.2366
+127771.2602426929 3.607655 -1103.2366
+127772.2602427432 3.607655 -1103.2168
+127773.2602427935 3.607655 -1103.2562
+127774.2602428438 3.6076157 -1103.2168
+127775.2602428941 3.6076944 -1103.2366
+127776.2602429444 3.6075368 -1103.197
+127777.2602429946 3.607655 -1103.1576
+127778.2602430449 3.6075368 -1103.2562
+127779.2602430952 3.6075764 -1103.1378
+127780.2602431455 3.6075764 -1103.2959
+127781.2602431958 3.6075368 -1103.2168
+127782.2602432461 3.6075764 -1103.1576
+127783.2602432964 3.6075764 -1103.1774
+127784.2602433467 3.6075764 -1103.1774
+127785.260243397 3.6075368 -1103.2562
+127786.2602434473 3.607655 -1103.1576
+127787.2602434976 3.6074581 -1103.2366
+127788.2602435478 3.6074975 -1103.2168
+127789.2602435981 3.6074581 -1103.197
+127790.2602436484 3.6074581 -1103.2168
+127791.2602436987 3.6074975 -1103.1378
+127792.260243749 3.6074975 -1103.1182
+127793.2602437993 3.6074581 -1103.2168
+127794.2602438496 3.6074581 -1103.2366
+127795.2602438999 3.6076157 -1103.1576
+127796.2602439502 3.6074581 -1103.1576
+127797.2602440005 3.6074975 -1103.197
+127798.2602440508 3.6074975 -1103.1576
+127799.2602441011 3.6074581 -1103.1182
+127800.2602441513 3.6074975 -1103.1774
+127801.2602442016 3.6074188 -1103.2562
+127802.2602442519 3.6073401 -1103.1182
+127803.2602443022 3.6075764 -1103.197
+127804.2602443525 3.6075368 -1103.2366
+127805.2602444028 3.6074581 -1103.197
+127806.2602444531 3.6074188 -1103.2366
+127807.2602445034 3.6074188 -1103.197
+127808.2602445537 3.6074188 -1103.2366
+127809.260244604 3.6073008 -1103.2168
+127810.2602446543 3.6073794 -1103.1378
+127811.2602447046 3.6074581 -1103.2761
+127812.2602447548 3.6073008 -1103.197
+127813.2602448051 3.6073794 -1103.1774
+127814.2602448554 3.6073794 -1103.197
+127815.2602449057 3.6073794 -1103.1774
+127816.260244956 3.6073008 -1103.3156
+127817.2602450063 3.6073008 -1103.2562
+127818.2602450566 3.6073401 -1103.1378
+127819.2602451069 3.6074188 -1103.1576
+127820.2602451572 3.6073008 -1103.197
+127821.2602452075 3.6073401 -1103.2366
+127822.2602452578 3.6073401 -1103.2366
+127823.260245308 3.6072614 -1103.2168
+127824.2602453583 3.6073008 -1103.2168
+127825.2602454086 3.6072218 -1103.2366
+127826.2602454589 3.6072218 -1103.2761
+127827.2602455092 3.6072218 -1103.2366
+127828.2602455595 3.6071825 -1103.2168
+127829.2602456098 3.6072218 -1103.1378
+127830.2602456601 3.6072218 -1103.2168
+127831.2602457104 3.6073401 -1103.2168
+127832.2602457607 3.6071825 -1103.2168
+127833.260245811 3.6071038 -1103.2168
+127834.2602458613 3.6073008 -1103.2562
+127835.2602459115 3.6071038 -1103.197
+127836.2602459618 3.6070645 -1103.2366
+127837.2602460121 3.6070645 -1103.1774
+127838.2602460624 3.6071825 -1103.1774
+127839.2602461127 3.6071825 -1103.197
+127840.260246163 3.6071038 -1103.1182
+127841.2602462133 3.6071432 -1103.2366
+127842.2602462636 3.6071825 -1103.197
+127843.2602463139 3.6071825 -1103.2562
+127844.2602463642 3.6071038 -1103.2562
+127845.2602464145 3.6071432 -1103.2168
+127846.2602464648 3.6071432 -1103.197
+127847.260246515 3.6071432 -1103.2761
+127848.2602465653 3.6070645 -1103.2168
+127849.2602466156 3.6071825 -1103.2959
+127850.2602466659 3.6071038 -1103.2562
+127851.2602467162 3.6070251 -1103.2562
+127852.2602467665 3.6071825 -1103.2168
+127853.2602468168 3.6070645 -1103.1774
+127854.2602468671 3.6071038 -1103.2168
+127855.2602469174 3.6069465 -1103.2761
+127856.2602469677 3.6070645 -1103.2366
+127857.260247018 3.6069465 -1103.197
+127858.2602470682 3.6069858 -1103.1774
+127859.2602471185 3.6070645 -1103.2562
+127860.2602471688 3.6069858 -1103.1576
+127861.2602472191 3.6070251 -1103.1774
+127862.2602472694 3.6070251 -1103.1576
+127863.2602473197 3.6070645 -1103.1774
+127864.26024737 3.6069069 -1103.2366
+127865.2602474203 3.6069465 -1103.1378
+127866.2602474706 3.6069069 -1103.1576
+127867.2602475209 3.6069069 -1103.2761
+127868.2602475712 3.6068676 -1103.1576
+127869.2602476215 3.6069069 -1103.2562
+127870.2602476717 3.6069858 -1103.1182
+127871.260247722 3.6069858 -1103.1774
+127872.2602477723 3.6069465 -1103.2366
+127873.2602478226 3.6069069 -1103.1576
+127874.2602478729 3.6069069 -1103.1378
+127875.2602479232 3.6068676 -1103.2168
+127876.2602479735 3.6068282 -1103.1378
+127877.2602480238 3.6068282 -1103.2366
+127878.2602480741 3.6068676 -1103.1774
+127879.2602481244 3.6068282 -1103.2366
+127880.2602481747 3.6068676 -1103.2168
+127881.260248225 3.6069465 -1103.2562
+127882.2602482752 3.6067889 -1103.2761
+127883.2602483255 3.6068676 -1103.0984
+127884.2602483758 3.6067495 -1103.197
+127885.2602484261 3.6067889 -1103.2366
+127886.2602484764 3.6068676 -1103.2366
+127887.2602485267 3.6069069 -1103.197
+127888.260248577 3.6068282 -1103.2168
+127889.2602486273 3.6068282 -1103.2366
+127890.2602486776 3.6067495 -1103.2366
+127891.2602487279 3.6068282 -1103.197
+127892.2602487782 3.6068676 -1103.2168
+127893.2602488284 3.6067495 -1103.2761
+127894.2602488787 3.6067102 -1103.2761
+127895.260248929 3.6067102 -1103.1774
+127896.2602489793 3.6068282 -1103.2168
+127897.2602490296 3.6067889 -1103.2168
+127898.2602490799 3.6068282 -1103.3156
+127899.2602491302 3.6066709 -1103.1774
+127900.2602491805 3.6067889 -1103.3551
+127901.2602492308 3.6067102 -1103.2366
+127902.2602492811 3.6067102 -1103.197
+127903.2602493314 3.6067495 -1103.1378
+127904.2602493817 3.6067889 -1103.2562
+127905.2602494319 3.6066315 -1103.2168
+127906.2602494822 3.6066709 -1103.1774
+127907.2602495325 3.6066709 -1103.2168
+127908.2602495828 3.6067495 -1103.2761
+127909.2602496331 3.6067102 -1103.2366
+127910.2602496834 3.6067889 -1103.2366
+127911.2602497337 3.6066315 -1103.2366
+127912.260249784 3.6065919 -1103.2366
+127913.2602498343 3.6066709 -1103.2168
+127914.2602498846 3.6065919 -1103.2562
+127915.2602499349 3.6066709 -1103.2959
+127916.2602499851 3.6065526 -1103.1774
+127917.2602500354 3.6065526 -1103.2366
+127918.2602500857 3.6065919 -1103.2168
+127919.260250136 3.6066315 -1103.197
+127920.2602501863 3.6065133 -1103.2761
+127921.2602502366 3.6065133 -1103.3156
+127922.2602502869 3.6065526 -1103.2168
+127923.2602503372 3.6065526 -1103.1576
+127924.2602503875 3.6065919 -1103.2761
+127925.2602504378 3.6064739 -1103.2761
+127926.2602504881 3.6065526 -1103.2761
+127927.2602505384 3.6065526 -1103.1774
+127928.2602505886 3.6065133 -1103.2366
+127929.2602506389 3.6065919 -1103.2168
+127930.2602506892 3.6065919 -1103.2366
+127931.2602507395 3.6064739 -1103.2959
+127932.2602507898 3.6065526 -1103.197
+127933.2602508401 3.6064739 -1103.1774
+127934.2602508904 3.6064739 -1103.2761
+127935.2602509407 3.6065526 -1103.2562
+127936.260250991 3.6065133 -1103.2366
+127937.2602510413 3.6065133 -1103.1774
+127938.2602510916 3.6064739 -1103.1576
+127939.2602511419 3.6064346 -1103.2168
+127940.2602511921 3.6065133 -1103.3156
+127941.2602512424 3.6064739 -1103.2168
+127942.2602512927 3.6064346 -1103.1576
+127943.260251343 3.6063952 -1103.2761
+127944.2602513933 3.6063952 -1103.1774
+127945.2602514436 3.6064739 -1103.1576
+127946.2602514939 3.6064346 -1103.2168
+127947.2602515442 3.6065133 -1103.2168
+127948.2602515945 3.6064346 -1103.2366
+127949.2602516448 3.6064346 -1103.197
+127950.2602516951 3.6063559 -1103.2761
+127951.2602517453 3.6063952 -1103.2168
+127952.2602517956 3.6063952 -1103.197
+127953.2602518459 3.6063559 -1103.2562
+127954.2602518962 3.6063952 -1103.1774
+127955.2602519465 3.6063952 -1103.197
+127956.2602519968 3.606277 -1103.1378
+127957.2602520471 3.6063559 -1103.2168
+127958.2602520974 3.606277 -1103.2168
+127959.2602521477 3.6063163 -1103.2761
+127960.260252198 3.6062376 -1103.2562
+127961.2602522483 3.6063952 -1103.197
+127962.2602522986 3.6063163 -1103.1576
+127963.2602523488 3.6061983 -1103.2168
+127964.2602523991 3.6063163 -1103.1576
+127965.2602524494 3.606277 -1103.2168
+127966.2602524997 3.606277 -1103.197
+127967.26025255 3.606277 -1103.197
+127968.2602526003 3.6062376 -1103.2562
+127969.2602526506 3.6062376 -1103.2562
+127970.2602527009 3.6062376 -1103.1378
+127971.2602527512 3.6061983 -1103.2168
+127972.2602528015 3.6061983 -1103.2562
+127973.2602528518 3.606277 -1103.2168
+127974.2602529021 3.6061983 -1103.2366
+127975.2602529523 3.606277 -1103.197
+127976.2602530026 3.6061196 -1103.2366
+127977.2602530529 3.606159 -1103.2168
+127978.2602531032 3.6061983 -1103.2168
+127979.2602531535 3.6061983 -1103.1774
+127980.2602532038 3.606159 -1103.2366
+127981.2602532541 3.6061983 -1103.1378
+127982.2602533044 3.6061983 -1103.2366
+127983.2602533547 3.6061196 -1103.1378
+127984.260253405 3.6061196 -1103.1774
+127985.2602534553 3.6061196 -1103.2168
+127986.2602535055 3.606041 -1103.197
+127987.2602535558 3.6060803 -1103.2366
+127988.2602536061 3.6061196 -1103.1774
+127989.2602536564 3.606159 -1103.1774
+127990.2602537067 3.6061983 -1103.2562
+127991.260253757 3.6061196 -1103.1378
+127992.2602538073 3.606159 -1103.2168
+127993.2602538576 3.6060803 -1103.1182
+127994.2602539079 3.6061196 -1103.1378
+127995.2602539582 3.6060803 -1103.1576
+127996.2602540085 3.606041 -1103.1774
+127997.2602540588 3.606041 -1103.2761
+127998.260254109 3.606041 -1103.1774
+127999.2602541593 3.6060014 -1103.2168
+128000.2602542096 3.606041 -1103.2761
+128001.2602542599 3.6060803 -1103.2168
+128002.2602543102 3.605962 -1103.197
+128003.2602543605 3.605962 -1103.197
+128004.2602544108 3.606041 -1103.1576
+128005.2602544611 3.6060014 -1103.1576
+128006.2602545114 3.6059227 -1103.1774
+128007.2602545617 3.6059227 -1103.1576
+128008.260254612 3.605962 -1103.197
+128009.2602546623 3.6060014 -1103.2761
+128010.2602547125 3.605962 -1103.1182
+128011.2602547628 3.6058834 -1103.2168
+128012.2602548131 3.605844 -1103.2366
+128013.2602548634 3.6060014 -1103.2562
+128014.2602549137 3.605844 -1103.2761
+128015.260254964 3.6057653 -1103.2168
+128016.2602550143 3.6058834 -1103.2562
+128017.2602550646 3.605844 -1103.197
+128018.2602551149 3.6058834 -1103.2168
+128019.2602551652 3.6058834 -1103.1576
+128020.2602552155 3.6059227 -1103.197
+128021.2602552657 3.6060014 -1103.2366
+128022.260255316 3.6059227 -1103.2366
+128023.2602553663 3.6057653 -1103.1182
+128024.2602554166 3.605844 -1103.2761
+128025.2602554669 3.6059227 -1103.197
+128026.2602555172 3.6058834 -1103.197
+128027.2602555675 3.6059227 -1103.2366
+128028.2602556178 3.6058047 -1103.2366
+128029.2602556681 3.6058834 -1103.2761
+128030.2602557184 3.6058834 -1103.1774
+128031.2602557687 3.605726 -1103.2366
+128032.260255819 3.605844 -1103.2168
+128033.2602558692 3.6058047 -1103.2562
+128034.2602559195 3.6057653 -1103.1378
+128035.2602559698 3.605844 -1103.197
+128036.2602560201 3.605844 -1103.1182
+128037.2602560704 3.6056864 -1103.3156
+128038.2602561207 3.6057653 -1103.2168
+128039.260256171 3.605726 -1103.2366
+128040.2602562213 3.605726 -1103.2562
+128041.2602562716 3.6057653 -1103.1576
+128042.2602563219 3.6056471 -1103.1576
+128043.2602563722 3.6056864 -1103.2562
+128044.2602564225 3.605726 -1103.1774
+128045.2602564727 3.6056077 -1103.1774
+128046.260256523 3.605726 -1103.2168
+128047.2602565733 3.6057653 -1103.1774
+128048.2602566236 3.6056077 -1103.2562
+128049.2602566739 3.6056077 -1103.2366
+128050.2602567242 3.6056471 -1103.197
+128051.2602567745 3.6056471 -1103.197
+128052.2602568248 3.6056864 -1103.2562
+128053.2602568751 3.6056077 -1103.2168
+128054.2602569254 3.6056864 -1103.2562
+128055.2602569757 3.6056077 -1103.197
+128056.2602570259 3.6056471 -1103.2562
+128057.2602570762 3.6056077 -1103.2366
+128058.2602571265 3.6056077 -1103.1576
+128059.2602571768 3.605726 -1103.1576
+128060.2602572271 3.6055684 -1103.1774
+128061.2602572774 3.6056077 -1103.2761
+128062.2602573277 3.6055684 -1103.1576
+128063.260257378 3.6055684 -1103.197
+128064.2602574283 3.6054897 -1103.1576
+128065.2602574786 3.6056077 -1103.197
+128066.2602575289 3.6054897 -1103.2562
+128067.2602575792 3.6054897 -1103.2366
+128068.2602576294 3.6055684 -1103.1774
+128069.2602576797 3.6056077 -1103.1576
+128070.26025773 3.6054504 -1103.2761
+128071.2602577803 3.6056077 -1103.1182
+128072.2602578306 3.6055291 -1103.1774
+128073.2602578809 3.6054504 -1103.197
+128074.2602579312 3.6055291 -1103.2562
+128075.2602579815 3.6054897 -1103.2562
+128076.2602580318 3.6054111 -1103.1182
+128077.2602580821 3.6054897 -1103.2168
+128078.2602581324 3.6054504 -1103.2168
+128079.2602581827 3.6054897 -1103.1774
+128080.2602582329 3.6055291 -1103.197
+128081.2602582832 3.6054504 -1103.2761
+128082.2602583335 3.6054504 -1103.197
+128083.2602583838 3.6054897 -1103.1378
+128084.2602584341 3.6054111 -1103.2366
+128085.2602584844 3.6054504 -1103.197
+128086.2602585347 3.6053715 -1103.197
+128087.260258585 3.6054897 -1103.2562
+128088.2602586353 3.6055291 -1103.197
+128089.2602586856 3.6054111 -1103.1774
+128090.2602587359 3.6053715 -1103.1774
+128091.2602587861 3.6054111 -1103.2761
+128092.2602588364 3.6053715 -1103.197
+128093.2602588867 3.6054111 -1103.197
+128094.260258937 3.6054111 -1103.1774
+128095.2602589873 3.6054111 -1103.2761
+128096.2602590376 3.6052535 -1103.1378
+128097.2602590879 3.6053321 -1103.2168
+128098.2602591382 3.6053715 -1103.2366
+128099.2602591885 3.6053321 -1103.1774
+128100.2602592388 3.6052928 -1103.2959
+128101.2602592891 3.6052928 -1103.197
+128102.2602593394 3.6053321 -1103.1774
+128103.2602593896 3.6053715 -1103.2168
+128104.2602594399 3.6053715 -1103.2168
+128105.2602594902 3.6052928 -1103.2959
+128106.2602595405 3.6052928 -1103.2366
+128107.2602595908 3.6052141 -1103.1576
+128108.2602596411 3.6051748 -1103.2761
+128109.2602596914 3.6052141 -1103.2168
+128110.2602597417 3.6052141 -1103.2168
+128111.260259792 3.6052141 -1103.2366
+128112.2602598423 3.6053321 -1103.2366
+128113.2602598926 3.6051354 -1103.2366
+128114.2602599429 3.6052141 -1103.2168
+128115.2602599931 3.6051354 -1103.197
+128116.2602600434 3.6052141 -1103.2366
+128117.2602600937 3.6052928 -1103.197
+128118.260260144 3.6052141 -1103.2366
+128119.2602601943 3.6052535 -1103.2168
+128120.2602602446 3.6050961 -1103.2168
+128121.2602602949 3.6052928 -1103.1378
+128122.2602603452 3.6052141 -1103.1576
+128123.2602603955 3.6050961 -1103.2366
+128124.2602604458 3.6051748 -1103.197
+128125.2602604961 3.6052141 -1103.2366
+128126.2602605463 3.6051748 -1103.197
+128127.2602605966 3.6051354 -1103.1378
+128128.2602606469 3.6051748 -1103.2168
+128129.2602606972 3.6051354 -1103.197
+128130.2602607475 3.6050961 -1103.2959
+128131.2602607978 3.6050961 -1103.197
+128132.2602608481 3.6050961 -1103.1378
+128133.2602608984 3.6049778 -1103.2761
+128134.2602609487 3.6051748 -1103.2761
+128135.260260999 3.6050961 -1103.1576
+128136.2602610493 3.6050172 -1103.2562
+128137.2602610996 3.6051354 -1103.2168
+128138.2602611498 3.6050961 -1103.2168
+128139.2602612001 3.6050565 -1103.197
+128140.2602612504 3.6050565 -1103.2761
+128141.2602613007 3.6050565 -1103.1774
+128142.260261351 3.6050565 -1103.2168
+128143.2602614013 3.6049778 -1103.2761
+128144.2602614516 3.6050565 -1103.2761
+128145.2602615019 3.6049385 -1103.2562
+128146.2602615522 3.6050172 -1103.2562
+128147.2602616025 3.6049385 -1103.2168
+128148.2602616528 3.6049385 -1103.197
+128149.2602617031 3.6049778 -1103.1182
+128150.2602617533 3.6049385 -1103.2761
+128151.2602618036 3.6049385 -1103.2761
+128152.2602618539 3.6049385 -1103.2168
+128153.2602619042 3.6049778 -1103.197
+128154.2602619545 3.6048992 -1103.197
+128155.2602620048 3.6048992 -1103.197
+128156.2602620551 3.6048598 -1103.1774
+128157.2602621054 3.6048992 -1103.1378
+128158.2602621557 3.6048992 -1103.0984
+128159.260262206 3.6049385 -1103.197
+128160.2602622563 3.6049385 -1103.2168
+128161.2602623065 3.6048992 -1103.2562
+128162.2602623568 3.6048598 -1103.2168
+128163.2602624071 3.6049385 -1103.2761
+128164.2602624574 3.6049385 -1103.2562
+128165.2602625077 3.6048598 -1103.1576
+128166.260262558 3.6048992 -1103.2168
+128167.2602626083 3.6048205 -1103.2761
+128168.2602626586 3.6048992 -1103.197
+128169.2602627089 3.6048598 -1103.2366
+128170.2602627592 3.6048992 -1103.2168
+128171.2602628095 3.6048205 -1103.1576
+128172.2602628598 3.6047809 -1103.197
+128173.26026291 3.6046629 -1103.197
+128174.2602629603 3.6048598 -1103.197
+128175.2602630106 3.6048598 -1103.2168
+128176.2602630609 3.6048598 -1103.2168
+128177.2602631112 3.6048598 -1103.197
+128178.2602631615 3.6048205 -1103.197
+128179.2602632118 3.6047809 -1103.2168
+128180.2602632621 3.6046629 -1103.2168
+128181.2602633124 3.6048205 -1103.3749
+128182.2602633627 3.6047022 -1103.2168
+128183.260263413 3.6047416 -1103.2562
+128184.2602634632 3.6047416 -1103.1576
+128185.2602635135 3.6047416 -1103.197
+128186.2602635638 3.6047022 -1103.1182
+128187.2602636141 3.6046236 -1103.197
+128188.2602636644 3.6047022 -1103.2168
+128189.2602637147 3.6046236 -1103.197
+128190.260263765 3.6047809 -1103.2959
+128191.2602638153 3.6045449 -1103.2366
+128192.2602638656 3.6047022 -1103.197
+128193.2602639159 3.6047022 -1103.197
+128194.2602639662 3.6047022 -1103.1182
+128195.2602640165 3.6047022 -1103.2562
+128196.2602640667 3.6045449 -1103.3156
+128197.260264117 3.6046629 -1103.1774
+128198.2602641673 3.6045842 -1103.1774
+128199.2602642176 3.6046236 -1103.1774
+128200.2602642679 3.6046236 -1103.2761
+128201.2602643182 3.6047022 -1103.1774
+128202.2602643685 3.6046236 -1103.197
+128203.2602644188 3.6045842 -1103.1576
+128204.2602644691 3.6046629 -1103.1774
+128205.2602645194 3.6045449 -1103.2761
+128206.2602645697 3.6046629 -1103.1774
+128207.26026462 3.6045055 -1103.0984
+128208.2602646702 3.6046629 -1103.2366
+128209.2602647205 3.6045842 -1103.197
+128210.2602647708 3.6045055 -1103.2168
+128211.2602648211 3.604466 -1103.2562
+128212.2602648714 3.6045055 -1103.197
+128213.2602649217 3.6044266 -1103.2366
+128214.260264972 3.6046236 -1103.2366
+128215.2602650223 3.6045449 -1103.2168
+128216.2602650726 3.6045055 -1103.3156
+128217.2602651229 3.6045055 -1103.2562
+128218.2602651732 3.6045055 -1103.197
+128219.2602652234 3.6045842 -1103.2168
+128220.2602652737 3.6045449 -1103.197
+128221.260265324 3.6045055 -1103.2168
+128222.2602653743 3.6044266 -1103.2366
+128223.2602654246 3.6043086 -1103.197
+128224.2602654749 3.604466 -1103.197
+128225.2602655252 3.604466 -1103.1378
+128226.2602655755 3.6043479 -1103.2168
+128227.2602656258 3.6043086 -1103.2168
+128228.2602656761 3.6043873 -1103.197
+128229.2602657264 3.6042693 -1103.2366
+128230.2602657767 3.6045055 -1103.2366
+128231.2602658269 3.6043479 -1103.2168
+128232.2602658772 3.6043873 -1103.197
+128233.2602659275 3.6042693 -1103.2168
+128234.2602659778 3.6043873 -1103.1378
+128235.2602660281 3.6043086 -1103.2562
+128236.2602660784 3.6043873 -1103.1774
+128237.2602661287 3.6045055 -1103.2168
+128238.260266179 3.6042299 -1103.1378
+128239.2602662293 3.6043086 -1103.197
+128240.2602662796 3.6043479 -1103.2366
+128241.2602663299 3.6042693 -1103.2168
+128242.2602663802 3.6043086 -1103.2168
+128243.2602664304 3.6042299 -1103.197
+128244.2602664807 3.6042299 -1103.2366
+128245.260266531 3.6042693 -1103.2562
+128246.2602665813 3.6042693 -1103.2562
+128247.2602666316 3.6042299 -1103.1576
+128248.2602666819 3.604151 -1103.197
+128249.2602667322 3.6041906 -1103.1774
+128250.2602667825 3.6042693 -1103.2366
+128251.2602668328 3.6041906 -1103.2168
+128252.2602668831 3.6042299 -1103.2562
+128253.2602669334 3.6042693 -1103.1774
+128254.2602669836 3.6041906 -1103.1774
+128255.2602670339 3.6042693 -1103.3156
+128256.2602670842 3.6041906 -1103.1774
+128257.2602671345 3.6040723 -1103.1774
+128258.2602671848 3.6041906 -1103.3156
+128259.2602672351 3.604151 -1103.1576
+128260.2602672854 3.6041906 -1103.1576
+128261.2602673357 3.604151 -1103.3749
+128262.260267386 3.6041906 -1103.2366
+128263.2602674363 3.6040723 -1103.1378
+128264.2602674866 3.6042299 -1103.1774
+128265.2602675369 3.604151 -1103.3156
+128266.2602675871 3.6041906 -1103.1182
+128267.2602676374 3.604151 -1103.2168
+128268.2602676877 3.6040723 -1103.2366
+128269.260267738 3.604033 -1103.197
+128270.2602677883 3.6041117 -1103.1576
+128271.2602678386 3.6042693 -1103.1774
+128272.2602678889 3.604033 -1103.2168
+128273.2602679392 3.6041117 -1103.1576
+128274.2602679895 3.604033 -1103.1576
+128275.2602680398 3.6039543 -1103.197
+128276.2602680901 3.6040723 -1103.1576
+128277.2602681404 3.6039937 -1103.2366
+128278.2602681906 3.6040723 -1103.2168
+128279.2602682409 3.6038756 -1103.2562
+128280.2602682912 3.6039937 -1103.1378
+128281.2602683415 3.6041117 -1103.2366
+128282.2602683918 3.6040723 -1103.1576
+128283.2602684421 3.6039543 -1103.2761
+128284.2602684924 3.6040723 -1103.1774
+128285.2602685427 3.6039937 -1103.2562
+128286.260268593 3.6040723 -1103.1774
+128287.2602686433 3.6039937 -1103.2562
+128288.2602686936 3.6040723 -1103.1576
+128289.2602687438 3.6039937 -1103.1774
+128290.2602687941 3.6039543 -1103.1774
+128291.2602688444 3.604033 -1103.2562
+128292.2602688947 3.6039543 -1103.3156
+128293.260268945 3.6039543 -1104.4414
+128294.2602689953 3.6038361 -1105.9819
+128295.2602690456 3.6038361 -1106.0017
+128296.2602690959 3.6038361 -1106.0214
+128297.2602691462 3.6039543 -1105.3302
+128298.2602691965 3.6040723 -1106.9694
+128299.2602692468 3.6039937 -1107.0089
+128300.2602692971 3.6039543 -1106.9298
+128301.2602693473 3.6039543 -1106.0411
+128302.2602693976 3.6037967 -1106.0017
+128303.2602694479 3.6038756 -1108.8062
+128304.2602694982 3.6039543 -1108.8062
+128305.2602695485 3.6039937 -1108.8457
+128306.2602695988 3.6038361 -1102.5453
+128307.2602696491 3.6038361 -1101.7554
+128308.2602696994 3.603915 -1101.8146
+128309.2602697497 3.6039543 -1101.8344
+128310.2602698 3.6038756 -1102.0713
+128311.2602698503 3.6038756 -1101.1233
+128312.2602699006 3.6038361 -1101.1628
+128313.2602699508 3.6038756 -1101.1628
+128314.2602700011 3.6038361 -1101.1431
+128315.2602700514 3.6036787 -1103.0588
+128316.2602701017 3.6038756 -1103.1774
+128317.260270152 3.6036787 -1103.197
+128318.2602702023 3.6037574 -1103.0785
+128319.2602702526 3.6037574 -1102.644
+128320.2602703029 3.603718 -1102.1108
+128321.2602703532 3.603718 -1102.2096
+128322.2602704035 3.6036 -1102.1306
+128323.2602704538 3.6036787 -1103.4539
+128324.260270504 3.6037967 -1103.7303
+128325.2602705543 3.6037574 -1103.6514
+128326.2602706046 3.6037574 -1103.7897
+128327.2602706549 3.6036 -1103.8093
+128328.2602707052 3.6036 -1103.2168
+128329.2602707555 3.6036394 -1103.1576
+128330.2602708058 3.6036394 -1103.0391
+128331.2602708561 3.6036 -1103.197
+128332.2602709064 3.6035607 -1103.3353
+128333.2602709567 3.603718 -1103.197
+128334.260271007 3.6036394 -1103.2761
+128335.2602710573 3.6036 -1103.2366
+128336.2602711075 3.6035607 -1103.197
+128337.2602711578 3.6036394 -1103.2761
+128338.2602712081 3.6036 -1103.1576
+128339.2602712584 3.6035607 -1103.3156
+128340.2602713087 3.6036 -1102.9996
+128341.260271359 3.6036 -1103.2959
+128342.2602714093 3.6035607 -1103.2168
+128343.2602714596 3.6036394 -1103.1378
+128344.2602715099 3.6034818 -1103.1182
+128345.2602715602 3.6034424 -1103.2366
+128346.2602716105 3.6035211 -1103.3353
+128347.2602716608 3.6034818 -1103.2761
+128348.260271711 3.6034424 -1103.3156
+128349.2602717613 3.6034818 -1103.2366
+128350.2602718116 3.6034818 -1103.2761
+128351.2602718619 3.6035607 -1103.2168
+128352.2602719122 3.6034818 -1103.2562
+128353.2602719625 3.6034424 -1103.1378
+128354.2602720128 3.6034424 -1103.2366
+128355.2602720631 3.6034031 -1103.2168
+128356.2602721134 3.6034031 -1103.3156
+128357.2602721637 3.6033638 -1103.2562
+128358.260272214 3.6034424 -1103.197
+128359.2602722642 3.6034424 -1103.2168
+128360.2602723145 3.6034818 -1103.2168
+128361.2602723648 3.6034031 -1103.1576
+128362.2602724151 3.6033244 -1103.1774
+128363.2602724654 3.6033638 -1103.2959
+128364.2602725157 3.6034818 -1103.2366
+128365.260272566 3.6033638 -1103.2562
+128366.2602726163 3.6034424 -1103.1378
+128367.2602726666 3.6034031 -1103.2562
+128368.2602727169 3.6033638 -1103.1774
+128369.2602727672 3.6034031 -1103.197
+128370.2602728175 3.6034031 -1103.1576
+128371.2602728677 3.6032457 -1103.2168
+128372.260272918 3.6034424 -1103.197
+128373.2602729683 3.6033638 -1103.2366
+128374.2602730186 3.6033244 -1103.1774
+128375.2602730689 3.6033244 -1103.2168
+128376.2602731192 3.6032062 -1103.197
+128377.2602731695 3.6033244 -1103.1182
+128378.2602732198 3.6032457 -1103.2562
+128379.2602732701 3.6032457 -1103.1774
+128380.2602733204 3.6032062 -1103.2761
+128381.2602733707 3.6032457 -1103.2562
+128382.260273421 3.6032851 -1103.3156
+128383.2602734712 3.6032851 -1103.2366
+128384.2602735215 3.6032062 -1103.0785
+128385.2602735718 3.6032457 -1103.2761
+128386.2602736221 3.6033244 -1103.1378
+128387.2602736724 3.6032062 -1103.1576
+128388.2602737227 3.6032851 -1103.3156
+128389.260273773 3.6031668 -1103.2366
+128390.2602738233 3.6031668 -1103.1576
+128391.2602738736 3.6031668 -1103.3156
+128392.2602739239 3.6032457 -1103.2562
+128393.2602739742 3.6032457 -1103.2761
+128394.2602740244 3.6031668 -1103.1774
+128395.2602740747 3.6032062 -1103.197
+128396.260274125 3.6031668 -1103.2168
+128397.2602741753 3.6031275 -1103.2562
+128398.2602742256 3.6031668 -1103.1182
+128399.2602742759 3.6031668 -1103.1774
+128400.2602743262 3.6030095 -1103.1774
+128401.2602743765 3.6031275 -1103.3156
+128402.2602744268 3.6030881 -1103.197
+128403.2602744771 3.6030488 -1103.197
+128404.2602745274 3.6030488 -1103.1774
+128405.2602745777 3.6030881 -1103.2761
+128406.2602746279 3.6030488 -1103.1576
+128407.2602746782 3.6030881 -1103.2168
+128408.2602747285 3.6030488 -1103.2761
+128409.2602747788 3.6030881 -1103.1182
+128410.2602748291 3.6030095 -1103.2168
+128411.2602748794 3.6029701 -1103.3353
+128412.2602749297 3.6030095 -1103.1378
+128413.26027498 3.6030095 -1103.2168
+128414.2602750303 3.6029701 -1103.2959
+128415.2602750806 3.6029701 -1103.2168
+128416.2602751309 3.6029305 -1103.1182
+128417.2602751812 3.6030488 -1103.1576
+128418.2602752314 3.6029701 -1103.2562
+128419.2602752817 3.6029305 -1103.1774
+128420.260275332 3.6028912 -1103.1576
+128421.2602753823 3.6030095 -1103.197
+128422.2602754326 3.6029305 -1103.2761
+128423.2602754829 3.6029701 -1103.2168
+128424.2602755332 3.6027732 -1103.2168
+128425.2602755835 3.6030881 -1103.1774
+128426.2602756338 3.6028519 -1103.2168
+128427.2602756841 3.6028912 -1103.1576
+128428.2602757344 3.6029701 -1103.3156
+128429.2602757846 3.6028125 -1103.197
+128430.2602758349 3.6029305 -1103.1378
+128431.2602758852 3.6028912 -1103.1774
+128432.2602759355 3.6028912 -1103.3156
+128433.2602759858 3.6028125 -1103.2366
+128434.2602760361 3.6028125 -1103.2366
+128435.2602760864 3.6028519 -1103.2366
+128436.2602761367 3.6028125 -1103.1576
+128437.260276187 3.6028125 -1103.2366
+128438.2602762373 3.6028125 -1103.1774
+128439.2602762876 3.6027732 -1103.1576
+128440.2602763379 3.6028125 -1103.2168
+128441.2602763881 3.6028125 -1103.2168
+128442.2602764384 3.6028912 -1103.1576
+128443.2602764887 3.6028125 -1103.2168
+128444.260276539 3.6027732 -1103.197
+128445.2602765893 3.6026945 -1103.2366
+128446.2602766396 3.6027339 -1103.2366
+128447.2602766899 3.6027339 -1103.0984
+128448.2602767402 3.6028519 -1103.2168
+128449.2602767905 3.6026552 -1103.197
+128450.2602768408 3.6026552 -1103.1378
+128451.2602768911 3.6028125 -1103.1774
+128452.2602769414 3.6027339 -1103.2366
+128453.2602769916 3.6027339 -1103.1774
+128454.2602770419 3.6026945 -1103.0984
+128455.2602770922 3.6027339 -1103.1774
+128456.2602771425 3.6027339 -1103.1378
+128457.2602771928 3.6026156 -1103.1774
+128458.2602772431 3.6027339 -1103.2366
+128459.2602772934 3.6026552 -1103.197
+128460.2602773437 3.6026552 -1103.3156
+128461.260277394 3.6026552 -1103.2168
+128462.2602774443 3.6026552 -1103.2761
+128463.2602774946 3.6026156 -1103.2168
+128464.2602775448 3.6026156 -1103.2761
+128465.2602775951 3.6026156 -1103.2168
+128466.2602776454 3.6025763 -1103.2168
+128467.2602776957 3.6026552 -1103.2562
+128468.260277746 3.6026945 -1103.1774
+128469.2602777963 3.6025763 -1103.2168
+128470.2602778466 3.6026552 -1103.1774
+128471.2602778969 3.6026156 -1103.2366
+128472.2602779472 3.6026156 -1103.2761
+128473.2602779975 3.6025763 -1103.1378
+128474.2602780478 3.6024976 -1103.1576
+128475.2602780981 3.6025369 -1103.2366
+128476.2602781483 3.6024976 -1103.1774
+128477.2602781986 3.6024976 -1103.2168
+128478.2602782489 3.6026156 -1103.197
+128479.2602782992 3.6025369 -1103.2366
+128480.2602783495 3.6024976 -1103.2366
+128481.2602783998 3.6024189 -1103.197
+128482.2602784501 3.6024976 -1103.2562
+128483.2602785004 3.6024582 -1103.2761
+128484.2602785507 3.6024189 -1103.2761
+128485.260278601 3.6024189 -1103.2761
+128486.2602786513 3.6024582 -1103.2562
+128487.2602787015 3.6025369 -1103.2168
+128488.2602787518 3.6024189 -1103.197
+128489.2602788021 3.6024189 -1103.197
+128490.2602788524 3.6023402 -1103.2366
+128491.2602789027 3.6024189 -1103.2761
+128492.260278953 3.6024582 -1103.2168
+128493.2602790033 3.6024582 -1103.2959
+128494.2602790536 3.6023402 -1103.2366
+128495.2602791039 3.6024582 -1103.197
+128496.2602791542 3.6024189 -1103.2562
+128497.2602792045 3.6023796 -1103.1774
+128498.2602792548 3.6024189 -1103.2562
+128499.260279305 3.6023006 -1103.1774
+128500.2602793553 3.6023402 -1103.2761
+128501.2602794056 3.6023402 -1103.3156
+128502.2602794559 3.6023402 -1103.3156
+128503.2602795062 3.6024189 -1103.197
+128504.2602795565 3.602222 -1103.1182
+128505.2602796068 3.6022613 -1103.2562
+128506.2602796571 3.6023006 -1103.197
+128507.2602797074 3.6023006 -1103.2168
+128508.2602797577 3.602222 -1103.2562
+128509.260279808 3.602222 -1103.197
+128510.2602798583 3.6022613 -1103.3156
+128511.2602799085 3.6021826 -1103.2366
+128512.2602799588 3.6021433 -1103.1774
+128513.2602800091 3.6022613 -1103.2168
+128514.2602800594 3.602222 -1103.2168
+128515.2602801097 3.6022613 -1103.2761
+128516.26028016 3.6022613 -1103.197
+128517.2602802103 3.6022613 -1103.2168
+128518.2602802606 3.6021039 -1103.1576
+128519.2602803109 3.602222 -1103.2761
+128520.2602803612 3.6023006 -1103.2562
+128521.2602804115 3.602222 -1103.2366
+128522.2602804617 3.6022613 -1103.197
+128523.260280512 3.6021039 -1103.2562
+128524.2602805623 3.6021826 -1103.1378
+128525.2602806126 3.6021433 -1103.2366
+128526.2602806629 3.6021826 -1103.2168
+128527.2602807132 3.6021039 -1103.2959
+128528.2602807635 3.6021433 -1103.2366
+128529.2602808138 3.6021826 -1103.197
+128530.2602808641 3.6021433 -1103.2366
+128531.2602809144 3.6020646 -1103.3156
+128532.2602809647 3.6021826 -1103.2168
+128533.260281015 3.6020646 -1103.1774
+128534.2602810652 3.6020646 -1103.2562
+128535.2602811155 3.6021826 -1103.1774
+128536.2602811658 3.6020646 -1103.2562
+128537.2602812161 3.6021433 -1103.1774
+128538.2602812664 3.6021039 -1103.2168
+128539.2602813167 3.6020646 -1103.2168
+128540.260281367 3.6021433 -1103.3353
+128541.2602814173 3.6020646 -1103.1774
+128542.2602814676 3.6020253 -1103.1182
+128543.2602815179 3.6021039 -1103.1378
+128544.2602815682 3.6019857 -1103.197
+128545.2602816185 3.6020646 -1103.2366
+128546.2602816687 3.6019464 -1103.2168
+128547.260281719 3.6019857 -1103.3156
+128548.2602817693 3.6020253 -1103.2562
+128549.2602818196 3.6019857 -1103.1774
+128550.2602818699 3.6020253 -1103.197
+128551.2602819202 3.601907 -1103.2761
+128552.2602819705 3.6019464 -1103.2168
+128553.2602820208 3.6019857 -1103.197
+128554.2602820711 3.601907 -1103.1182
+128555.2602821214 3.6018677 -1103.197
+128556.2602821717 3.601789 -1103.2562
+128557.2602822219 3.6018283 -1103.2168
+128558.2602822722 3.6019464 -1103.2366
+128559.2602823225 3.6019857 -1103.1378
+128560.2602823728 3.601907 -1103.2562
+128561.2602824231 3.6018283 -1103.2562
+128562.2602824734 3.6017103 -1103.2761
+128563.2602825237 3.6018677 -1103.197
+128564.260282574 3.601789 -1103.2761
+128565.2602826243 3.6018677 -1103.1774
+128566.2602826746 3.601789 -1103.1576
+128567.2602827249 3.601789 -1103.2168
+128568.2602827752 3.6017497 -1103.1774
+128569.2602828254 3.601789 -1103.2168
+128570.2602828757 3.6018283 -1103.3156
+128571.260282926 3.601789 -1103.1576
+128572.2602829763 3.601789 -1103.1774
+128573.2602830266 3.601789 -1103.2959
+128574.2602830769 3.6017497 -1103.2366
+128575.2602831272 3.6017497 -1103.2761
+128576.2602831775 3.6017497 -1103.2168
+128577.2602832278 3.601789 -1103.2168
+128578.2602832781 3.6017497 -1103.2168
+128579.2602833284 3.601789 -1103.2366
+128580.2602833787 3.6017497 -1103.2168
+128581.2602834289 3.6016314 -1103.2562
+128582.2602834792 3.6017103 -1103.1774
+128583.2602835295 3.6017103 -1103.197
+128584.2602835798 3.6016707 -1103.3156
+128585.2602836301 3.6015921 -1103.2761
+128586.2602836804 3.6016707 -1103.197
+128587.2602837307 3.6017497 -1103.2366
+128588.260283781 3.6017497 -1103.197
+128589.2602838313 3.6016707 -1103.2366
+128590.2602838816 3.6017497 -1103.197
+128591.2602839319 3.6017103 -1103.2562
+128592.2602839821 3.6015921 -1103.2562
+128593.2602840324 3.6015921 -1103.197
+128594.2602840827 3.6015527 -1103.2168
+128595.260284133 3.6015527 -1103.0984
+128596.2602841833 3.6016314 -1103.2761
+128597.2602842336 3.6015134 -1103.2761
+128598.2602842839 3.6015134 -1103.2562
+128599.2602843342 3.6015921 -1103.1378
+128600.2602843845 3.6015921 -1103.197
+128601.2602844348 3.6015921 -1103.2168
+128602.2602844851 3.6015921 -1103.2562
+128603.2602845354 3.6015921 -1103.2168
+128604.2602845856 3.6015921 -1103.197
+128605.2602846359 3.6015134 -1103.1774
+128606.2602846862 3.6015527 -1103.2959
+128607.2602847365 3.6014347 -1103.2168
+128608.2602847868 3.6015134 -1103.2562
+128609.2602848371 3.6015527 -1103.197
+128610.2602848874 3.6015527 -1103.2168
+128611.2602849377 3.6015134 -1103.2168
+128612.260284988 3.6015134 -1103.2366
+128613.2602850383 3.6014347 -1103.197
+128614.2602850886 3.6015134 -1103.1576
+128615.2602851389 3.6015527 -1103.2562
+128616.2602851891 3.6015134 -1103.2761
+128617.2602852394 3.6015134 -1103.1774
+128618.2602852897 3.601474 -1103.197
+128619.26028534 3.6015527 -1103.1378
+128620.2602853903 3.6015527 -1103.2761
+128621.2602854406 3.6013558 -1103.2959
+128622.2602854909 3.6013954 -1103.1576
+128623.2602855412 3.6014347 -1103.1378
+128624.2602855915 3.601474 -1103.2366
+128625.2602856418 3.6013954 -1103.3353
+128626.2602856921 3.6013558 -1103.2366
+128627.2602857423 3.6013954 -1103.2366
+128628.2602857926 3.601474 -1103.2366
+128629.2602858429 3.6013165 -1103.2562
+128630.2602858932 3.6013954 -1103.2366
+128631.2602859435 3.6012378 -1103.197
+128632.2602859938 3.6013558 -1103.2959
+128633.2602860441 3.6012771 -1103.2761
+128634.2602860944 3.6013558 -1103.1774
+128635.2602861447 3.601474 -1103.2366
+128636.260286195 3.6012771 -1103.2366
+128637.2602862453 3.6013954 -1103.2366
+128638.2602862956 3.6013558 -1103.3156
+128639.2602863458 3.6012378 -1103.3156
+128640.2602863961 3.6013165 -1103.197
+128641.2602864464 3.6012771 -1103.197
+128642.2602864967 3.6012771 -1103.2366
+128643.260286547 3.6013165 -1103.2168
+128644.2602865973 3.6011984 -1103.1576
+128645.2602866476 3.6011591 -1103.197
+128646.2602866979 3.6012378 -1103.197
+128647.2602867482 3.6012771 -1103.197
+128648.2602867985 3.6011984 -1103.197
+128649.2602868488 3.6011591 -1103.2761
+128650.2602868991 3.6011591 -1103.2761
+128651.2602869493 3.6012378 -1103.2562
+128652.2602869996 3.6012378 -1103.2366
+128653.2602870499 3.6010802 -1103.2366
+128654.2602871002 3.6011984 -1103.2959
+128655.2602871505 3.6011984 -1103.2366
+128656.2602872008 3.6012771 -1103.1576
+128657.2602872511 3.6011984 -1103.2366
+128658.2602873014 3.6011591 -1103.2562
+128659.2602873517 3.6011984 -1103.197
+128660.260287402 3.6011198 -1103.2761
+128661.2602874523 3.6010802 -1103.2366
+128662.2602875025 3.6011591 -1103.2168
+128663.2602875528 3.6010408 -1103.197
+128664.2602876031 3.6012378 -1103.2761
+128665.2602876534 3.6010802 -1103.2562
+128666.2602877037 3.6011198 -1103.2366
+128667.260287754 3.6010015 -1103.197
+128668.2602878043 3.6010802 -1103.2366
+128669.2602878546 3.6010802 -1103.1774
+128670.2602879049 3.6011591 -1103.197
+128671.2602879552 3.6010408 -1103.2761
+128672.2602880055 3.6010015 -1103.2168
+128673.2602880558 3.6011591 -1103.197
+128674.260288106 3.6010802 -1103.1576
+128675.2602881563 3.6011198 -1103.1774
+128676.2602882066 3.6010802 -1103.2366
+128677.2602882569 3.6010802 -1103.1576
+128678.2602883072 3.6009622 -1103.197
+128679.2602883575 3.6010802 -1103.2562
+128680.2602884078 3.6010408 -1103.1378
+128681.2602884581 3.6010015 -1103.2562
+128682.2602885084 3.6009228 -1103.2959
+128683.2602885587 3.6010015 -1103.1774
+128684.260288609 3.6008835 -1103.2562
+128685.2602886593 3.6008835 -1103.2168
+128686.2602887095 3.6009228 -1103.2959
+128687.2602887598 3.6009228 -1103.197
+128688.2602888101 3.6009622 -1103.2168
+128689.2602888604 3.6009622 -1103.2761
+128690.2602889107 3.6009622 -1103.2168
+128691.260288961 3.6008835 -1103.3353
+128692.2602890113 3.6008835 -1103.1378
+128693.2602890616 3.6008835 -1103.2959
+128694.2602891119 3.6008048 -1103.197
+128695.2602891622 3.6008835 -1103.2168
+128696.2602892125 3.6009228 -1103.2959
+128697.2602892627 3.6008835 -1103.2562
+128698.260289313 3.6007652 -1103.2366
+128699.2602893633 3.6008441 -1103.2366
+128700.2602894136 3.6008048 -1103.197
+128701.2602894639 3.6008048 -1103.2959
+128702.2602895142 3.6008441 -1103.1774
+128703.2602895645 3.6008048 -1103.2168
+128704.2602896148 3.6007652 -1103.2168
+128705.2602896651 3.6007259 -1103.2562
+128706.2602897154 3.6008441 -1103.1378
+128707.2602897657 3.6007259 -1103.3353
+128708.260289816 3.6008441 -1103.2168
+128709.2602898662 3.6007259 -1103.2168
+128710.2602899165 3.6007652 -1103.1774
+128711.2602899668 3.6007652 -1103.2562
+128712.2602900171 3.6007259 -1103.1774
+128713.2602900674 3.6008048 -1103.2366
+128714.2602901177 3.6008048 -1103.197
+128715.260290168 3.6007652 -1103.2168
+128716.2602902183 3.6006866 -1103.1378
+128717.2602902686 3.6007652 -1103.2168
+128718.2602903189 3.6007652 -1103.1774
+128719.2602903692 3.6006866 -1103.2168
+128720.2602904195 3.6007652 -1103.1774
+128721.2602904697 3.6006866 -1103.1774
+128722.26029052 3.6008048 -1103.2761
+128723.2602905703 3.6006866 -1103.2761
+128724.2602906206 3.6005292 -1103.197
+128725.2602906709 3.6007259 -1103.1774
+128726.2602907212 3.6006079 -1103.197
+128727.2602907715 3.6006472 -1103.1182
+128728.2602908218 3.6006079 -1103.1774
+128729.2602908721 3.6006866 -1103.197
+128730.2602909224 3.6006079 -1103.197
+128731.2602909727 3.6006472 -1103.2366
+128732.2602910229 3.6005685 -1103.2366
+128733.2602910732 3.6006866 -1103.2761
+128734.2602911235 3.6005292 -1103.197
+128735.2602911738 3.6006079 -1103.2562
+128736.2602912241 3.6005292 -1103.2168
+128737.2602912744 3.6007259 -1103.2562
+128738.2602913247 3.6005685 -1103.197
+128739.260291375 3.6004899 -1103.1774
+128740.2602914253 3.6005292 -1103.2366
+128741.2602914756 3.6006079 -1103.1774
+128742.2602915259 3.6005685 -1103.197
+128743.2602915762 3.6004503 -1103.2761
+128744.2602916264 3.6004899 -1103.2761
+128745.2602916767 3.6004899 -1103.2761
+128746.260291727 3.6006079 -1103.197
+128747.2602917773 3.6004899 -1103.197
+128748.2602918276 3.6004503 -1103.197
+128749.2602918779 3.6004503 -1103.2168
+128750.2602919282 3.6004899 -1103.2959
+128751.2602919785 3.6004899 -1103.2366
+128752.2602920288 3.6004109 -1103.2168
+128753.2602920791 3.6003323 -1103.2366
+128754.2602921294 3.6003716 -1103.2366
+128755.2602921797 3.6004109 -1103.2761
+128756.2602922299 3.6003716 -1103.2562
+128757.2602922802 3.6004109 -1103.2366
+128758.2602923305 3.6003716 -1103.2366
+128759.2602923808 3.6004503 -1103.2761
+128760.2602924311 3.6002536 -1103.1378
+128761.2602924814 3.6002929 -1103.1774
+128762.2602925317 3.6002929 -1103.1576
+128763.260292582 3.6003323 -1103.3156
+128764.2602926323 3.6003323 -1103.1378
+128765.2602926826 3.6003323 -1103.3156
+128766.2602927329 3.6002929 -1103.197
+128767.2602927831 3.6004503 -1103.197
+128768.2602928334 3.6004109 -1103.197
+128769.2602928837 3.6004109 -1103.197
+128770.260292934 3.6003323 -1103.2761
+128771.2602929843 3.6003323 -1103.2366
+128772.2602930346 3.6002142 -1103.2761
+128773.2602930849 3.6003323 -1103.2366
+128774.2602931352 3.6002929 -1103.2562
+128775.2602931855 3.6002929 -1103.197
+128776.2602932358 3.6001749 -1103.3156
+128777.2602932861 3.6002142 -1103.2366
+128778.2602933364 3.6002536 -1103.197
+128779.2602933866 3.6002536 -1103.197
+128780.2602934369 3.6002929 -1103.1774
+128781.2602934872 3.6003716 -1103.2168
+128782.2602935375 3.6002142 -1103.1378
+128783.2602935878 3.6001749 -1103.2168
+128784.2602936381 3.6002929 -1103.2562
+128785.2602936884 3.6001353 -1103.1378
+128786.2602937387 3.6001749 -1103.2168
+128787.260293789 3.6001353 -1103.197
+128788.2602938393 3.600096 -1103.2168
+128789.2602938896 3.6002142 -1103.2168
+128790.2602939398 3.6001353 -1103.197
+128791.2602939901 3.6002536 -1103.3156
+128792.2602940404 3.6002536 -1103.197
+128793.2602940907 3.6001749 -1103.2959
+128794.260294141 3.6002142 -1103.197
+128795.2602941913 3.6000173 -1103.2959
+128796.2602942416 3.6002142 -1103.2366
+128797.2602942919 3.6000566 -1103.2562
+128798.2602943422 3.600096 -1103.2366
+128799.2602943925 3.6001353 -1103.2366
+128800.2602944428 3.600096 -1103.1378
+128801.2602944931 3.6000173 -1103.1378
+128802.2602945433 3.6000566 -1103.1576
+128803.2602945936 3.6000566 -1103.2366
+128804.2602946439 3.600096 -1103.2168
+128805.2602946942 3.600096 -1103.2562
+128806.2602947445 3.599978 -1103.2168
+128807.2602947948 3.6000566 -1103.2168
+128808.2602948451 3.600096 -1103.2562
+128809.2602948954 3.5999386 -1103.2761
+128810.2602949457 3.6000566 -1103.2959
+128811.260294996 3.6000173 -1103.1576
+128812.2602950463 3.5999386 -1103.2366
+128813.2602950966 3.6000566 -1103.2959
+128814.2602951468 3.5998993 -1103.2562
+128815.2602951971 3.6000566 -1103.2562
+128816.2602952474 3.6000173 -1103.2761
+128817.2602952977 3.5999386 -1103.2959
+128818.260295348 3.5998204 -1103.2168
+128819.2602953983 3.5999386 -1103.2562
+128820.2602954486 3.599978 -1103.3156
+128821.2602954989 3.5998993 -1103.2562
+128822.2602955492 3.5998993 -1103.2366
+128823.2602955995 3.6000566 -1103.2959
+128824.2602956498 3.5999386 -1103.197
+128825.2602957 3.5998993 -1103.197
+128826.2602957503 3.59986 -1103.1774
+128827.2602958006 3.5998993 -1103.2366
+128828.2602958509 3.5999386 -1103.2168
+128829.2602959012 3.5998204 -1103.2562
+128830.2602959515 3.5998204 -1103.2366
+128831.2602960018 3.59986 -1103.2168
+128832.2602960521 3.5998204 -1103.2366
+128833.2602961024 3.5998204 -1103.1774
+128834.2602961527 3.59986 -1103.2366
+128835.260296203 3.5997417 -1103.2562
+128836.2602962533 3.599663 -1103.1576
+128837.2602963035 3.599781 -1103.197
+128838.2602963538 3.5998204 -1103.2168
+128839.2602964041 3.5997417 -1103.2959
+128840.2602964544 3.59986 -1103.2959
+128841.2602965047 3.5997024 -1103.2562
+128842.260296555 3.599781 -1103.1774
+128843.2602966053 3.5998993 -1103.1774
+128844.2602966556 3.599781 -1103.197
+128845.2602967059 3.5997024 -1103.2366
+128846.2602967562 3.5997024 -1103.1774
+128847.2602968065 3.5997417 -1103.2168
+128848.2602968568 3.599781 -1103.2168
+128849.260296907 3.5997024 -1103.3156
+128850.2602969573 3.599781 -1103.2562
+128851.2602970076 3.599663 -1103.197
+128852.2602970579 3.599663 -1103.3156
+128853.2602971082 3.5996237 -1103.197
+128854.2602971585 3.5997417 -1103.197
+128855.2602972088 3.599663 -1103.197
+128856.2602972591 3.599663 -1103.2366
+128857.2602973094 3.599545 -1103.2562
+128858.2602973597 3.5997024 -1103.197
+128859.26029741 3.5996237 -1103.2366
+128860.2602974602 3.5996237 -1103.1774
+128861.2602975105 3.5995843 -1103.2168
+128862.2602975608 3.599545 -1103.197
+128863.2602976111 3.5996237 -1103.2168
+128864.2602976614 3.5995843 -1103.197
+128865.2602977117 3.599545 -1103.2168
+128866.260297762 3.5996237 -1103.2959
+128867.2602978123 3.5995843 -1103.2168
+128868.2602978626 3.5995843 -1103.1774
+128869.2602979129 3.5996237 -1103.2168
+128870.2602979632 3.599545 -1103.197
+128871.2602980135 3.5995843 -1103.1378
+128872.2602980637 3.5995054 -1103.2761
+128873.260298114 3.5995054 -1103.2168
+128874.2602981643 3.599545 -1103.2562
+128875.2602982146 3.599545 -1103.2761
+128876.2602982649 3.5994661 -1103.2168
+128877.2602983152 3.5995054 -1103.197
+128878.2602983655 3.599545 -1103.2959
+128879.2602984158 3.599545 -1103.3156
+128880.2602984661 3.5995054 -1103.2168
+128881.2602985164 3.5995843 -1103.2366
+128882.2602985667 3.5994267 -1103.1774
+128883.260298617 3.5994661 -1103.2959
+128884.2602986672 3.5994267 -1103.2168
+128885.2602987175 3.5993087 -1103.2761
+128886.2602987678 3.5994661 -1103.197
+128887.2602988181 3.5993481 -1103.2168
+128888.2602988684 3.5993087 -1103.2959
+128889.2602989187 3.5994267 -1103.2562
+128890.260298969 3.5993481 -1103.2761
+128891.2602990193 3.5994661 -1103.3156
+128892.2602990696 3.5994661 -1103.197
+128893.2602991199 3.5993087 -1103.2761
+128894.2602991702 3.5992298 -1103.2959
+128895.2602992204 3.5993874 -1103.1774
+128896.2602992707 3.5993874 -1103.197
+128897.260299321 3.5993087 -1103.1774
+128898.2602993713 3.5992694 -1103.0984
+128899.2602994216 3.5993087 -1103.197
+128900.2602994719 3.5993481 -1103.2168
+128901.2602995222 3.5993481 -1103.1576
+128902.2602995725 3.5993087 -1103.1378
+128903.2602996228 3.5993087 -1103.197
+128904.2602996731 3.5992298 -1103.197
+128905.2602997234 3.5992694 -1103.2562
+128906.2602997737 3.5992298 -1103.3156
+128907.2602998239 3.5991905 -1103.2168
+128908.2602998742 3.5993481 -1103.2366
+128909.2602999245 3.5992298 -1103.2562
+128910.2602999748 3.5992298 -1103.2761
+128911.2603000251 3.5993481 -1103.2366
+128912.2603000754 3.5991511 -1103.2168
+128913.2603001257 3.5992298 -1103.3353
+128914.260300176 3.5991905 -1103.1774
+128915.2603002263 3.5992298 -1103.2366
+128916.2603002766 3.5991118 -1103.197
+128917.2603003269 3.5991511 -1103.0984
+128918.2603003772 3.5991511 -1103.2562
+128919.2603004274 3.5991118 -1103.1182
+128920.2603004777 3.5991511 -1103.197
+128921.260300528 3.5991118 -1103.2761
+128922.2603005783 3.5991905 -1103.2959
+128923.2603006286 3.5991905 -1103.2366
+128924.2603006789 3.5992298 -1103.2562
+128925.2603007292 3.5990331 -1103.197
+128926.2603007795 3.5991511 -1103.3156
+128927.2603008298 3.5990725 -1103.197
+128928.2603008801 3.5991118 -1103.2562
+128929.2603009304 3.5991118 -1103.2562
+128930.2603009806 3.5991118 -1103.197
+128931.2603010309 3.5990725 -1103.2168
+128932.2603010812 3.5991511 -1103.2366
+128933.2603011315 3.5990725 -1103.197
+128934.2603011818 3.5991118 -1103.2761
+128935.2603012321 3.5991118 -1103.2366
+128936.2603012824 3.5989544 -1103.2168
+128937.2603013327 3.5990725 -1103.2562
+128938.260301383 3.5989149 -1103.2168
+128939.2603014333 3.5989149 -1103.1576
+128940.2603014836 3.5990331 -1103.2562
+128941.2603015339 3.5989149 -1103.2366
+128942.2603015841 3.5990331 -1103.3156
+128943.2603016344 3.5989544 -1103.2366
+128944.2603016847 3.5990331 -1103.1576
+128945.260301735 3.5989544 -1103.1774
+128946.2603017853 3.5988755 -1103.2959
+128947.2603018356 3.5989149 -1103.197
+128948.2603018859 3.5988755 -1103.2168
+128949.2603019362 3.5989149 -1103.1378
+128950.2603019865 3.5989544 -1103.197
+128951.2603020368 3.5989544 -1103.1378
+128952.2603020871 3.5989149 -1103.2562
+128953.2603021374 3.5989149 -1103.2168
+128954.2603021876 3.5989938 -1103.2366
+128955.2603022379 3.5989149 -1103.2366
+128956.2603022882 3.5988755 -1103.1774
+128957.2603023385 3.5989149 -1103.2761
+128958.2603023888 3.5988755 -1103.2168
+128959.2603024391 3.5989149 -1103.197
+128960.2603024894 3.5989149 -1103.197
+128961.2603025397 3.5989544 -1103.2366
+128962.26030259 3.5987968 -1103.2366
+128963.2603026403 3.5989149 -1103.2562
+128964.2603026906 3.5989149 -1103.2761
+128965.2603027408 3.5988362 -1103.2168
+128966.2603027911 3.5987182 -1103.2366
+128967.2603028414 3.5988362 -1103.2366
+128968.2603028917 3.5987968 -1103.1576
+128969.260302942 3.5987575 -1103.2366
+128970.2603029923 3.5987968 -1103.2366
+128971.2603030426 3.5988362 -1103.2168
+128972.2603030929 3.5987575 -1103.2562
+128973.2603031432 3.5987575 -1103.2168
+128974.2603031935 3.5987968 -1103.197
+128975.2603032438 3.5987968 -1103.2168
+128976.2603032941 3.5987575 -1103.2562
+128977.2603033443 3.5985999 -1103.2562
+128978.2603033946 3.5987182 -1103.1774
+128979.2603034449 3.5987968 -1103.2168
+128980.2603034952 3.5986788 -1103.1774
+128981.2603035455 3.5986788 -1103.2959
+128982.2603035958 3.5986788 -1103.2562
+128983.2603036461 3.5987182 -1103.2562
+128984.2603036964 3.5987182 -1103.197
+128985.2603037467 3.5986788 -1103.2562
+128986.260303797 3.5986395 -1103.197
+128987.2603038473 3.5986395 -1103.2168
+128988.2603038976 3.5986395 -1103.2562
+128989.2603039478 3.5985212 -1103.1774
+128990.2603039981 3.5986395 -1103.3353
+128991.2603040484 3.5985999 -1103.2761
+128992.2603040987 3.5985999 -1103.2366
+128993.260304149 3.5985606 -1103.2168
+128994.2603041993 3.5985999 -1103.1576
+128995.2603042496 3.5986395 -1103.2761
+128996.2603042999 3.5985999 -1103.2168
+128997.2603043502 3.5985999 -1103.2562
+128998.2603044005 3.5985606 -1103.2366
+128999.2603044508 3.5986395 -1103.197
+129000.260304501 3.5984819 -1103.2168
+129001.2603045513 3.5985212 -1103.197
+129002.2603046016 3.5985212 -1103.2562
+129003.2603046519 3.5985606 -1103.2761
+129004.2603047022 3.5984426 -1103.2366
+129005.2603047525 3.5985212 -1103.2366
+129006.2603048028 3.5985606 -1103.2168
+129007.2603048531 3.5985606 -1103.1576
+129008.2603049034 3.5984819 -1103.2366
+129009.2603049537 3.5984426 -1103.1774
+129010.260305004 3.5985606 -1103.1378
+129011.2603050543 3.5984819 -1103.2366
+129012.2603051045 3.5984426 -1103.1378
+129013.2603051548 3.5984819 -1103.2562
+129014.2603052051 3.5984032 -1103.1378
+129015.2603052554 3.5983639 -1103.1774
+129016.2603053057 3.598285 -1103.2366
+129017.260305356 3.5984032 -1103.1774
+129018.2603054063 3.5984426 -1103.2562
+129019.2603054566 3.5984032 -1103.2168
+129020.2603055069 3.5984032 -1103.3156
+129021.2603055572 3.5984032 -1103.197
+129022.2603056075 3.5984032 -1103.2366
+129023.2603056578 3.5984032 -1103.2562
+129024.260305708 3.5983639 -1103.2562
+129025.2603057583 3.5983639 -1103.2366
+129026.2603058086 3.5983639 -1103.2761
+129027.2603058589 3.5984032 -1103.2562
+129028.2603059092 3.598285 -1103.197
+129029.2603059595 3.5984032 -1103.2168
+129030.2603060098 3.5983639 -1103.2959
+129031.2603060601 3.5983245 -1103.197
+129032.2603061104 3.5983639 -1103.2168
+129033.2603061607 3.598285 -1103.2562
+129034.260306211 3.598285 -1103.3353
+129035.2603062612 3.598285 -1103.197
+129036.2603063115 3.5981669 -1103.2761
+129037.2603063618 3.5983639 -1103.2168
+129038.2603064121 3.5982456 -1103.2168
+129039.2603064624 3.5982456 -1103.2562
+129040.2603065127 3.5982456 -1103.2168
+129041.260306563 3.5981669 -1103.1576
+129042.2603066133 3.598285 -1103.2168
+129043.2603066636 3.5982456 -1103.3353
+129044.2603067139 3.5983639 -1103.2168
+129045.2603067642 3.598285 -1103.2562
+129046.2603068145 3.5982063 -1103.2562
+129047.2603068647 3.598285 -1103.1774
+129048.260306915 3.5981276 -1103.1774
+129049.2603069653 3.5980883 -1103.197
+129050.2603070156 3.5981669 -1103.2562
+129051.2603070659 3.5981669 -1103.2562
+129052.2603071162 3.5981276 -1103.2168
+129053.2603071665 3.5982456 -1103.2366
+129054.2603072168 3.5981276 -1103.2366
+129055.2603072671 3.5980883 -1103.2168
+129056.2603073174 3.5980489 -1103.2366
+129057.2603073677 3.5980489 -1103.1576
+129058.260307418 3.5981276 -1103.2562
+129059.2603074682 3.5980489 -1103.2562
+129060.2603075185 3.5981276 -1103.2562
+129061.2603075688 3.5981276 -1103.197
+129062.2603076191 3.5981276 -1103.2761
+129063.2603076694 3.5980096 -1103.1576
+129064.2603077197 3.5980883 -1103.2761
+129065.26030777 3.5980096 -1103.1774
+129066.2603078203 3.5980489 -1103.2761
+129067.2603078706 3.5980489 -1103.2761
+129068.2603079209 3.5980096 -1103.3353
+129069.2603079712 3.5980096 -1103.1378
+129070.2603080214 3.5981276 -1103.2959
+129071.2603080717 3.5980096 -1103.1378
+129072.260308122 3.59797 -1103.1378
+129073.2603081723 3.5978913 -1103.2366
+129074.2603082226 3.5980489 -1103.1378
+129075.2603082729 3.5978913 -1103.197
+129076.2603083232 3.5980096 -1103.2959
+129077.2603083735 3.5978913 -1103.197
+129078.2603084238 3.5978913 -1103.2562
+129079.2603084741 3.5979307 -1103.2168
+129080.2603085244 3.5978913 -1103.197
+129081.2603085747 3.5978913 -1103.197
+129082.2603086249 3.5978127 -1103.2562
+129083.2603086752 3.59797 -1103.2761
+129084.2603087255 3.5978913 -1103.2366
+129085.2603087758 3.5979307 -1103.3156
+129086.2603088261 3.5978913 -1103.2168
+129087.2603088764 3.5978913 -1103.1774
+129088.2603089267 3.5978913 -1103.197
+129089.260308977 3.5978913 -1103.2366
+129090.2603090273 3.5978913 -1103.2562
+129091.2603090776 3.59797 -1103.1182
+129092.2603091279 3.5978913 -1103.2366
+129093.2603091781 3.5978127 -1103.2168
+129094.2603092284 3.5978913 -1103.2562
+129095.2603092787 3.5978127 -1103.2562
+129096.260309329 3.5977733 -1103.2366
+129097.2603093793 3.597852 -1103.2562
+129098.2603094296 3.597852 -1103.2562
+129099.2603094799 3.5978127 -1103.2168
+129100.2603095302 3.5978127 -1103.2366
+129101.2603095805 3.5978127 -1103.2168
+129102.2603096308 3.597852 -1103.1774
+129103.2603096811 3.5976946 -1103.2761
+129104.2603097314 3.5977733 -1103.3156
+129105.2603097816 3.5976946 -1103.2168
+129106.2603098319 3.597734 -1103.2562
+129107.2603098822 3.597734 -1103.2168
+129108.2603099325 3.5976946 -1103.1774
+129109.2603099828 3.5976946 -1103.2168
+129110.2603100331 3.5976946 -1103.2761
+129111.2603100834 3.5975764 -1103.2366
+129112.2603101337 3.5976946 -1103.2366
+129113.260310184 3.597734 -1103.197
+129114.2603102343 3.5976157 -1103.1774
+129115.2603102846 3.5977733 -1103.197
+129116.2603103349 3.597734 -1103.197
+129117.2603103851 3.5976946 -1103.2366
+129118.2603104354 3.5975764 -1103.2562
+129119.2603104857 3.5976157 -1103.2562
+129120.260310536 3.5974977 -1103.2761
+129121.2603105863 3.5975764 -1103.2959
+129122.2603106366 3.5976551 -1103.2366
+129123.2603106869 3.5976551 -1103.1378
+129124.2603107372 3.5976551 -1103.2168
+129125.2603107875 3.5976157 -1103.1576
+129126.2603108378 3.597537 -1103.2168
+129127.2603108881 3.5975764 -1103.2168
+129128.2603109383 3.597537 -1103.0984
+129129.2603109886 3.5974977 -1103.1576
+129130.2603110389 3.5975764 -1103.2366
+129131.2603110892 3.5974584 -1103.1576
+129132.2603111395 3.597537 -1103.2562
+129133.2603111898 3.597537 -1103.1576
+129134.2603112401 3.597537 -1103.2168
+129135.2603112904 3.5974977 -1103.2562
+129136.2603113407 3.5975764 -1103.2168
+129137.260311391 3.597537 -1103.3551
+129138.2603114413 3.597537 -1103.2168
+129139.2603114916 3.597537 -1103.2366
+129140.2603115418 3.5975764 -1103.197
+129141.2603115921 3.5975764 -1103.197
+129142.2603116424 3.5974584 -1103.2761
+129143.2603116927 3.597419 -1103.2562
+129144.260311743 3.597537 -1103.1774
+129145.2603117933 3.5974584 -1103.2168
+129146.2603118436 3.597419 -1103.1774
+129147.2603118939 3.5973794 -1103.1576
+129148.2603119442 3.5973401 -1103.2366
+129149.2603119945 3.5974977 -1103.2761
+129150.2603120448 3.597419 -1103.1378
+129151.2603120951 3.5974584 -1103.197
+129152.2603121453 3.597419 -1103.197
+129153.2603121956 3.5973794 -1103.1774
+129154.2603122459 3.5973794 -1103.197
+129155.2603122962 3.5973008 -1103.1774
+129156.2603123465 3.5973401 -1103.2366
+129157.2603123968 3.5973008 -1103.2959
+129158.2603124471 3.597419 -1103.2168
+129159.2603124974 3.5973401 -1103.2761
+129160.2603125477 3.5973401 -1103.2168
+129161.260312598 3.5973401 -1103.2562
+129162.2603126483 3.5973008 -1103.1576
+129163.2603126985 3.5973401 -1103.1378
+129164.2603127488 3.5973794 -1103.2761
+129165.2603127991 3.5973008 -1103.2959
+129166.2603128494 3.5973008 -1103.2168
+129167.2603128997 3.5972221 -1103.197
+129168.26031295 3.5972614 -1103.2366
+129169.2603130003 3.5972221 -1103.2366
+129170.2603130506 3.5973401 -1103.2366
+129171.2603131009 3.5971828 -1103.2168
+129172.2603131512 3.5972221 -1103.197
+129173.2603132015 3.5972221 -1103.2168
+129174.2603132518 3.5972614 -1103.2761
+129175.260313302 3.5972221 -1103.2366
+129176.2603133523 3.5972221 -1103.2168
+129177.2603134026 3.5972614 -1103.2761
+129178.2603134529 3.5971434 -1103.2562
+129179.2603135032 3.5972614 -1103.2366
+129180.2603135535 3.5972221 -1103.2562
+129181.2603136038 3.5972221 -1103.2168
+129182.2603136541 3.5972221 -1103.2366
+129183.2603137044 3.5973008 -1103.2562
+129184.2603137547 3.5970645 -1103.197
+129185.260313805 3.5971828 -1103.197
+129186.2603138553 3.5972221 -1103.2562
+129187.2603139055 3.5971828 -1103.2562
+129188.2603139558 3.5971041 -1103.1576
+129189.2603140061 3.5971041 -1103.2562
+129190.2603140564 3.5970645 -1103.2761
+129191.2603141067 3.5971434 -1103.2168
+129192.260314157 3.5970252 -1103.197
+129193.2603142073 3.5970252 -1103.3156
+129194.2603142576 3.5971828 -1103.2761
+129195.2603143079 3.5972221 -1103.3156
+129196.2603143582 3.5970645 -1103.2562
+129197.2603144085 3.5970645 -1103.2366
+129198.2603144587 3.5970252 -1103.1576
+129199.260314509 3.5970645 -1103.2366
+129200.2603145593 3.5970645 -1103.2168
+129201.2603146096 3.5970252 -1103.1182
+129202.2603146599 3.5969858 -1103.197
+129203.2603147102 3.5970252 -1103.197
+129204.2603147605 3.5969465 -1103.2366
+129205.2603148108 3.5969465 -1103.197
+129206.2603148611 3.5970252 -1103.197
+129207.2603149114 3.5970252 -1103.1378
+129208.2603149617 3.5970252 -1103.2366
+129209.260315012 3.5969071 -1103.1774
+129210.2603150622 3.5969858 -1103.2168
+129211.2603151125 3.5969071 -1103.2761
+129212.2603151628 3.5970645 -1103.197
+129213.2603152131 3.5969465 -1103.2959
+129214.2603152634 3.5969465 -1103.1576
+129215.2603153137 3.5969465 -1103.2761
+129216.260315364 3.5968285 -1103.1774
+129217.2603154143 3.5969071 -1103.3156
+129218.2603154646 3.5969465 -1103.2366
+129219.2603155149 3.5970252 -1103.197
+129220.2603155652 3.5968678 -1103.2761
+129221.2603156155 3.5968678 -1103.1576
+129222.2603156657 3.5968285 -1103.2168
+129223.260315716 3.5968678 -1103.2761
+129224.2603157663 3.5969465 -1103.1182
+129225.2603158166 3.5968678 -1103.1774
+129226.2603158669 3.5969071 -1103.197
+129227.2603159172 3.5969071 -1103.2959
+129228.2603159675 3.5968285 -1103.2562
+129229.2603160178 3.5967891 -1103.1774
+129230.2603160681 3.5968678 -1103.197
+129231.2603161184 3.5968285 -1103.2168
+129232.2603161687 3.5968285 -1103.1576
+129233.2603162189 3.5967495 -1103.197
+129234.2603162692 3.5968678 -1103.197
+129235.2603163195 3.5967495 -1103.2366
+129236.2603163698 3.5967102 -1103.2366
+129237.2603164201 3.5967891 -1103.1576
+129238.2603164704 3.5968285 -1103.2562
+129239.2603165207 3.5967495 -1103.2168
+129240.260316571 3.5967495 -1103.2959
+129241.2603166213 3.5967495 -1103.197
+129242.2603166716 3.5967102 -1103.2168
+129243.2603167219 3.5967495 -1103.197
+129244.2603167722 3.5967495 -1103.1576
+129245.2603168224 3.5967495 -1103.2562
+129246.2603168727 3.5967102 -1103.1774
+129247.260316923 3.5967102 -1103.1182
+129248.2603169733 3.5966315 -1103.197
+129249.2603170236 3.5966709 -1103.2168
+129250.2603170739 3.5965528 -1103.2366
+129251.2603171242 3.5966315 -1103.2168
+129252.2603171745 3.5966315 -1103.197
+129253.2603172248 3.5966709 -1103.2366
+129254.2603172751 3.5965922 -1103.1576
+129255.2603173254 3.5966315 -1103.2366
+129256.2603173757 3.5966315 -1103.1576
+129257.2603174259 3.5967495 -1103.2761
+129258.2603174762 3.5965922 -1103.2366
+129259.2603175265 3.5965528 -1103.2562
+129260.2603175768 3.5965922 -1103.2168
+129261.2603176271 3.5965922 -1103.197
+129262.2603176774 3.5965922 -1103.1774
+129263.2603177277 3.5965528 -1103.2168
+129264.260317778 3.5967102 -1103.1774
+129265.2603178283 3.5966709 -1103.2366
+129266.2603178786 3.5965135 -1103.2562
+129267.2603179289 3.5966315 -1103.2761
+129268.2603179791 3.5965135 -1103.3156
+129269.2603180294 3.5965135 -1103.3156
+129270.2603180797 3.5964742 -1103.2562
+129271.26031813 3.5964346 -1103.2168
+129272.2603181803 3.5964742 -1103.2761
+129273.2603182306 3.5966315 -1103.3156
+129274.2603182809 3.5965528 -1103.2562
+129275.2603183312 3.5965135 -1103.1774
+129276.2603183815 3.5964742 -1103.1774
+129277.2603184318 3.5964742 -1103.2761
+129278.2603184821 3.5963953 -1103.1774
+129279.2603185324 3.5963953 -1103.2562
+129280.2603185826 3.5964742 -1103.2761
+129281.2603186329 3.5964346 -1103.2562
+129282.2603186832 3.5963953 -1103.2761
+129283.2603187335 3.5963953 -1103.2168
+129284.2603187838 3.5964346 -1103.197
+129285.2603188341 3.5963559 -1103.1774
+129286.2603188844 3.5963559 -1103.2168
+129287.2603189347 3.5963953 -1103.2562
+129288.260318985 3.5964346 -1103.2761
+129289.2603190353 3.5961986 -1103.2761
+129290.2603190856 3.5965135 -1103.1378
+129291.2603191359 3.5964742 -1103.2959
+129292.2603191861 3.5963559 -1103.1774
+129293.2603192364 3.5963559 -1103.2366
+129294.2603192867 3.5964346 -1103.197
+129295.260319337 3.5964346 -1103.2168
+129296.2603193873 3.5962772 -1103.2562
+129297.2603194376 3.5963559 -1103.2366
+129298.2603194879 3.5961986 -1103.197
+129299.2603195382 3.5963166 -1103.2366
+129300.2603195885 3.5962772 -1103.2562
+129301.2603196388 3.5962379 -1103.1576
+129302.2603196891 3.5961986 -1103.2562
+129303.2603197393 3.5963559 -1103.1182
+129304.2603197896 3.5963166 -1103.1182
+129305.2603198399 3.5962772 -1103.2168
+129306.2603198902 3.5962772 -1103.197
+129307.2603199405 3.5961986 -1103.2168
+129308.2603199908 3.5963166 -1103.2959
+129309.2603200411 3.5961592 -1103.2366
+129310.2603200914 3.5961986 -1103.2168
+129311.2603201417 3.5961592 -1103.2366
+129312.260320192 3.5962772 -1103.197
+129313.2603202423 3.5962772 -1103.2562
+129314.2603202926 3.5961592 -1103.1576
+129315.2603203428 3.5962379 -1103.1774
+129316.2603203931 3.5961592 -1103.2761
+129317.2603204434 3.5961592 -1103.2761
+129318.2603204937 3.5961196 -1103.1378
+129319.260320544 3.5961196 -1103.2366
+129320.2603205943 3.5961592 -1103.1378
+129321.2603206446 3.5961592 -1103.1774
+129322.2603206949 3.5960803 -1103.2366
+129323.2603207452 3.5961196 -1103.2366
+129324.2603207955 3.596041 -1103.2562
+129325.2603208458 3.5961986 -1103.2366
+129326.2603208961 3.5961196 -1103.2168
+129327.2603209463 3.596041 -1103.2562
+129328.2603209966 3.5960803 -1103.2168
+129329.2603210469 3.5960803 -1103.2366
+129330.2603210972 3.5960803 -1103.197
+129331.2603211475 3.5961196 -1103.1378
+129332.2603211978 3.5961196 -1103.1774
+129333.2603212481 3.596041 -1103.2562
+129334.2603212984 3.5960803 -1103.2761
+129335.2603213487 3.5960016 -1103.2366
+129336.260321399 3.596041 -1103.2168
+129337.2603214493 3.5960016 -1103.2562
+129338.2603214995 3.5960016 -1103.2562
+129339.2603215498 3.5959623 -1103.2168
+129340.2603216001 3.5959229 -1103.2761
+129341.2603216504 3.5960803 -1103.1774
+129342.2603217007 3.5960016 -1103.1774
+129343.260321751 3.5959623 -1103.2366
+129344.2603218013 3.5959229 -1103.197
+129345.2603218516 3.5958836 -1103.2562
+129346.2603219019 3.5958836 -1103.2959
+129347.2603219522 3.5959229 -1103.2761
+129348.2603220025 3.5958836 -1103.2366
+129349.2603220528 3.5960016 -1103.2168
+129350.260322103 3.5958047 -1103.197
+129351.2603221533 3.5959229 -1103.2959
+129352.2603222036 3.595844 -1103.2168
+129353.2603222539 3.5959229 -1103.2366
+129354.2603223042 3.5958836 -1103.1774
+129355.2603223545 3.5958047 -1103.197
+129356.2603224048 3.5959623 -1103.1774
+129357.2603224551 3.5958836 -1103.2168
+129358.2603225054 3.5959623 -1103.2168
+129359.2603225557 3.5959229 -1103.2366
+129360.260322606 3.5958047 -1103.3156
+129361.2603226563 3.5959229 -1103.2366
+129362.2603227065 3.595726 -1103.2366
+129363.2603227568 3.5957654 -1103.1774
+129364.2603228071 3.5957654 -1103.1576
+129365.2603228574 3.5958836 -1103.2168
+129366.2603229077 3.5957654 -1103.2562
+129367.260322958 3.595844 -1103.197
+129368.2603230083 3.5957654 -1103.197
+129369.2603230586 3.595726 -1103.2959
+129370.2603231089 3.595726 -1103.2168
+129371.2603231592 3.5956867 -1103.2959
+129372.2603232095 3.5957654 -1103.2366
+129373.2603232597 3.5958047 -1103.3156
+129374.26032331 3.5957654 -1103.197
+129375.2603233603 3.5957654 -1103.2168
+129376.2603234106 3.595726 -1103.2562
+129377.2603234609 3.5956867 -1103.2959
+129378.2603235112 3.5957654 -1103.1774
+129379.2603235615 3.5958047 -1103.197
+129380.2603236118 3.5956867 -1103.197
+129381.2603236621 3.5956473 -1103.2761
+129382.2603237124 3.5956473 -1103.2168
+129383.2603237627 3.5956867 -1103.2366
+129384.260323813 3.5956867 -1103.2366
+129385.2603238632 3.5956867 -1103.1576
+129386.2603239135 3.595608 -1103.2366
+129387.2603239638 3.595608 -1103.1378
+129388.2603240141 3.5956473 -1103.2366
+129389.2603240644 3.595726 -1103.2168
+129390.2603241147 3.5956473 -1103.2366
+129391.260324165 3.5956867 -1103.2366
+129392.2603242153 3.595608 -1103.2761
+129393.2603242656 3.595608 -1103.3353
+129394.2603243159 3.5955291 -1103.2168
+129395.2603243662 3.5956473 -1103.1378
+129396.2603244164 3.5955291 -1103.2366
+129397.2603244667 3.5954897 -1103.2761
+129398.260324517 3.5955687 -1103.2562
+129399.2603245673 3.5955687 -1103.2761
+129400.2603246176 3.5955687 -1103.2168
+129401.2603246679 3.5956473 -1103.1576
+129402.2603247182 3.5955687 -1103.1774
+129403.2603247685 3.5954897 -1103.197
+129404.2603248188 3.5954897 -1103.2366
+129405.2603248691 3.5954897 -1103.2168
+129406.2603249194 3.5955687 -1103.2366
+129407.2603249697 3.5955291 -1103.2562
+129408.2603250199 3.5954504 -1103.2168
+129409.2603250702 3.5954111 -1103.2959
+129410.2603251205 3.5955687 -1103.2562
+129411.2603251708 3.5955291 -1103.1774
+129412.2603252211 3.5954504 -1103.1576
+129413.2603252714 3.5955291 -1103.3156
+129414.2603253217 3.5954504 -1103.2366
+129415.260325372 3.5954111 -1103.1182
+129416.2603254223 3.5954897 -1103.2562
+129417.2603254726 3.5954111 -1103.2168
+129418.2603255229 3.5954111 -1103.1774
+129419.2603255732 3.5953717 -1103.2959
+129420.2603256234 3.5953324 -1103.2168
+129421.2603256737 3.5953717 -1103.197
+129422.260325724 3.5954111 -1103.2168
+129423.2603257743 3.5954111 -1103.2366
+129424.2603258246 3.5953717 -1103.2761
+129425.2603258749 3.5952537 -1103.2562
+129426.2603259252 3.5954111 -1103.2366
+129427.2603259755 3.5953324 -1103.1182
+129428.2603260258 3.5953324 -1103.2366
+129429.2603260761 3.5953324 -1103.2366
+129430.2603261264 3.5953324 -1103.2366
+129431.2603261766 3.5952537 -1103.2168
+129432.2603262269 3.5951748 -1103.197
+129433.2603262772 3.595293 -1103.1774
+129434.2603263275 3.5953324 -1103.3156
+129435.2603263778 3.5951748 -1103.197
+129436.2603264281 3.5952141 -1103.2959
+129437.2603264784 3.5952141 -1103.2761
+129438.2603265287 3.595293 -1103.197
+129439.260326579 3.5952141 -1103.2959
+129440.2603266293 3.5952141 -1103.197
+129441.2603266796 3.595293 -1103.197
+129442.2603267299 3.5952141 -1103.1774
+129443.2603267801 3.5952537 -1103.2168
+129444.2603268304 3.5951748 -1103.2366
+129445.2603268807 3.5951748 -1103.2761
+129446.260326931 3.5952141 -1103.197
+129447.2603269813 3.5951748 -1103.1378
+129448.2603270316 3.5952537 -1103.1576
+129449.2603270819 3.5950961 -1103.2562
+129450.2603271322 3.5951748 -1103.2168
+129451.2603271825 3.5951355 -1103.1774
+129452.2603272328 3.5950174 -1103.1774
+129453.2603272831 3.5951355 -1103.197
+129454.2603273334 3.5951748 -1103.2562
+129455.2603273836 3.5950174 -1103.0785
+129456.2603274339 3.5951355 -1103.197
+129457.2603274842 3.5951355 -1103.1774
+129458.2603275345 3.5951748 -1103.2366
+129459.2603275848 3.5951355 -1103.197
+129460.2603276351 3.5950568 -1103.1378
+129461.2603276854 3.5951355 -1103.197
+129462.2603277357 3.5951355 -1103.2168
+129463.260327786 3.5950174 -1103.2366
+129464.2603278363 3.5949781 -1103.2959
+129465.2603278866 3.5949781 -1103.1576
+129466.2603279368 3.5950174 -1103.2366
+129467.2603279871 3.5951355 -1103.2959
+129468.2603280374 3.5950961 -1103.2168
+129469.2603280877 3.5950568 -1103.197
+129470.260328138 3.5949781 -1103.1774
+129471.2603281883 3.5950174 -1103.2562
+129472.2603282386 3.5949781 -1103.2761
+129473.2603282889 3.5949781 -1103.2562
+129474.2603283392 3.5948992 -1103.2168
+129475.2603283895 3.5949388 -1103.1378
+129476.2603284398 3.5949781 -1103.2168
+129477.2603284901 3.5949388 -1103.2562
+129478.2603285403 3.5948598 -1103.2168
+129479.2603285906 3.5949388 -1103.3749
+129480.2603286409 3.5948598 -1103.1774
+129481.2603286912 3.5948205 -1103.1774
+129482.2603287415 3.5948992 -1103.197
+129483.2603287918 3.5948992 -1103.2562
+129484.2603288421 3.5949388 -1103.2366
+129485.2603288924 3.5950174 -1103.2366
+129486.2603289427 3.5949781 -1103.2366
+129487.260328993 3.5948992 -1103.1774
+129488.2603290433 3.5948992 -1103.2168
+129489.2603290936 3.5949388 -1103.2761
+129490.2603291438 3.5948598 -1103.2761
+129491.2603291941 3.5947812 -1103.2959
+129492.2603292444 3.5948598 -1103.2366
+129493.2603292947 3.5948598 -1103.197
+129494.260329345 3.5947418 -1103.2562
+129495.2603293953 3.5948205 -1103.197
+129496.2603294456 3.5947812 -1103.1576
+129497.2603294959 3.5947418 -1103.2168
+129498.2603295462 3.5948598 -1103.1378
+129499.2603295965 3.5948205 -1103.3156
+129500.2603296468 3.5947812 -1103.2366
+129501.260329697 3.5948205 -1103.2366
+129502.2603297473 3.5947025 -1103.197
+129503.2603297976 3.5947418 -1103.197
+129504.2603298479 3.5947812 -1103.197
+129505.2603298982 3.5947418 -1103.1774
+129506.2603299485 3.5947812 -1103.2168
+129507.2603299988 3.5947025 -1103.2168
+129508.2603300491 3.5947812 -1103.2366
+129509.2603300994 3.5947418 -1103.2562
+129510.2603301497 3.5946631 -1103.2168
+129511.2603302 3.5946631 -1103.197
+129512.2603302503 3.5946631 -1103.1576
+129513.2603303005 3.5946631 -1103.1774
+129514.2603303508 3.5946238 -1103.2959
+129515.2603304011 3.5946238 -1103.1774
+129516.2603304514 3.5947418 -1103.1576
+129517.2603305017 3.5946238 -1103.2366
+129518.260330552 3.5945449 -1103.2959
+129519.2603306023 3.5945842 -1103.2562
+129520.2603306526 3.5947418 -1103.2168
+129521.2603307029 3.5946631 -1103.2168
+129522.2603307532 3.5945449 -1103.2168
+129523.2603308035 3.5946238 -1103.197
+129524.2603308538 3.5945842 -1103.1378
+129525.260330904 3.5945449 -1103.197
+129526.2603309543 3.5945842 -1103.1774
+129527.2603310046 3.5945055 -1103.2366
+129528.2603310549 3.5946238 -1103.2562
+129529.2603311052 3.5945055 -1103.197
+129530.2603311555 3.5946631 -1103.2366
+129531.2603312058 3.5945055 -1103.3156
+129532.2603312561 3.5945449 -1103.2562
+129533.2603313064 3.5944269 -1103.1576
+129534.2603313567 3.5943875 -1103.2562
+129535.260331407 3.5943875 -1103.2168
+129536.2603314572 3.5945449 -1103.1576
+129537.2603315075 3.5944662 -1103.2168
+129538.2603315578 3.5945055 -1103.2366
+129539.2603316081 3.5945055 -1103.197
+129540.2603316584 3.5945055 -1103.2366
+129541.2603317087 3.5945842 -1103.197
+129542.260331759 3.5944269 -1103.2959
+129543.2603318093 3.5943875 -1103.1774
+129544.2603318596 3.5943875 -1103.1774
+129545.2603319099 3.5944269 -1103.2366
+129546.2603319602 3.5945449 -1103.197
+129547.2603320105 3.5943089 -1103.1378
+129548.2603320607 3.5944269 -1103.2562
+129549.260332111 3.5943089 -1103.2562
+129550.2603321613 3.5944662 -1103.197
+129551.2603322116 3.5942693 -1103.2366
+129552.2603322619 3.5943482 -1103.3353
+129553.2603323122 3.5943482 -1103.1774
+129554.2603323625 3.5942693 -1103.2168
+129555.2603324128 3.5943482 -1103.197
+129556.2603324631 3.5943482 -1103.1576
+129557.2603325134 3.5942299 -1103.2959
+129558.2603325637 3.5943089 -1103.197
+129559.260332614 3.5943089 -1103.2562
+129560.2603326642 3.5942299 -1103.2366
+129561.2603327145 3.5942299 -1103.1774
+129562.2603327648 3.5943089 -1103.197
+129563.2603328151 3.5942693 -1103.2366
+129564.2603328654 3.5943089 -1103.2366
+129565.2603329157 3.5941906 -1103.2168
+129566.260332966 3.5941906 -1103.2366
+129567.2603330163 3.5941906 -1103.1774
+129568.2603330666 3.5941906 -1103.1378
+129569.2603331169 3.5942299 -1103.197
+129570.2603331672 3.5942299 -1103.2761
+129571.2603332174 3.5941513 -1103.2761
+129572.2603332677 3.5942299 -1103.2761
+129573.260333318 3.5941906 -1103.2761
+129574.2603333683 3.5941906 -1103.1378
+129575.2603334186 3.5941513 -1103.2366
+129576.2603334689 3.5941513 -1103.1774
+129577.2603335192 3.5941513 -1103.2168
+129578.2603335695 3.5941906 -1103.2168
+129579.2603336198 3.5941119 -1103.2761
+129580.2603336701 3.5941119 -1103.2761
+129581.2603337204 3.5941906 -1103.2959
+129582.2603337707 3.5942299 -1103.2366
+129583.2603338209 3.5941119 -1103.1774
+129584.2603338712 3.5940332 -1103.2761
+129585.2603339215 3.5940726 -1103.2168
+129586.2603339718 3.5940726 -1103.2168
+129587.2603340221 3.5940726 -1103.2562
+129588.2603340724 3.593915 -1103.1774
+129589.2603341227 3.5941119 -1103.2562
+129590.260334173 3.5940726 -1103.2366
+129591.2603342233 3.5940332 -1103.2168
+129592.2603342736 3.5939543 -1103.1576
+129593.2603343239 3.5940726 -1103.2761
+129594.2603343742 3.5939543 -1103.197
+129595.2603344244 3.5940332 -1103.1774
+129596.2603344747 3.5940726 -1103.2168
+129597.260334525 3.5939543 -1103.2168
+129598.2603345753 3.5939937 -1103.197
+129599.2603346256 3.5939937 -1103.2562
+129600.2603346759 3.5940332 -1103.2562
+129601.2603347262 3.5939543 -1103.2761
+129602.2603347765 3.5940332 -1103.2366
+129603.2603348268 3.5939543 -1103.1576
+129604.2603348771 3.593915 -1103.1378
+129605.2603349274 3.5940332 -1103.1774
+129606.2603349776 3.5939543 -1103.2366
+129607.2603350279 3.593915 -1103.1378
+129608.2603350782 3.593915 -1103.197
+129609.2603351285 3.593915 -1103.1378
+129610.2603351788 3.5939937 -1103.2761
+129611.2603352291 3.5938756 -1103.1378
+129612.2603352794 3.593915 -1103.2366
+129613.2603353297 3.593915 -1103.197
+129614.26033538 3.593797 -1103.2959
+129615.2603354303 3.5938363 -1103.2562
+129616.2603354806 3.593797 -1103.2562
+129617.2603355309 3.593915 -1103.2168
+129618.2603355811 3.5939543 -1103.2366
+129619.2603356314 3.593797 -1103.197
+129620.2603356817 3.5938363 -1103.2562
+129621.260335732 3.5938363 -1103.2366
+129622.2603357823 3.593797 -1103.2168
+129623.2603358326 3.593797 -1103.2761
+129624.2603358829 3.5937183 -1103.2562
+129625.2603359332 3.593797 -1103.2959
+129626.2603359835 3.593797 -1103.2366
+129627.2603360338 3.593797 -1103.1182
+129628.2603360841 3.5938756 -1103.1576
+129629.2603361344 3.5936787 -1103.2562
+129630.2603361846 3.5937183 -1103.2366
+129631.2603362349 3.593797 -1103.2562
+129632.2603362852 3.593797 -1103.2761
+129633.2603363355 3.5937183 -1103.197
+129634.2603363858 3.5936787 -1103.2168
+129635.2603364361 3.5937183 -1103.2366
+129636.2603364864 3.5937183 -1103.1378
+129637.2603365367 3.5937183 -1103.197
+129638.260336587 3.5936787 -1103.2366
+129639.2603366373 3.5936787 -1103.2168
+129640.2603366876 3.5937183 -1103.2761
+129641.2603367378 3.5936787 -1103.2959
+129642.2603367881 3.5936787 -1103.1774
+129643.2603368384 3.5937183 -1103.2562
+129644.2603368887 3.5936394 -1103.2562
+129645.260336939 3.5936 -1103.2761
+129646.2603369893 3.5936787 -1103.197
+129647.2603370396 3.5936 -1103.2562
+129648.2603370899 3.5936394 -1103.2168
+129649.2603371402 3.5936 -1103.2366
+129650.2603371905 3.5935607 -1103.197
+129651.2603372408 3.5935607 -1103.2761
+129652.2603372911 3.5936 -1103.3353
+129653.2603373413 3.5936 -1103.2959
+129654.2603373916 3.5935214 -1103.2366
+129655.2603374419 3.5935607 -1103.2168
+129656.2603374922 3.5935214 -1103.197
+129657.2603375425 3.5935607 -1103.1378
+129658.2603375928 3.5936 -1103.1576
+129659.2603376431 3.5935607 -1103.2366
+129660.2603376934 3.5935607 -1103.1576
+129661.2603377437 3.593482 -1103.2168
+129662.260337794 3.5935607 -1103.3551
+129663.2603378443 3.5934033 -1103.2366
+129664.2603378946 3.5935214 -1103.2366
+129665.2603379448 3.5935214 -1103.2959
+129666.2603379951 3.5934427 -1103.1576
+129667.2603380454 3.5935214 -1103.2562
+129668.2603380957 3.5933638 -1103.2168
+129669.260338146 3.5935214 -1103.2168
+129670.2603381963 3.5934427 -1103.197
+129671.2603382466 3.5934033 -1103.3156
+129672.2603382969 3.5934033 -1103.2562
+129673.2603383472 3.5934033 -1103.1774
+129674.2603383975 3.5934033 -1103.2562
+129675.2603384478 3.593482 -1103.0588
+129676.260338498 3.5934033 -1103.2761
+129677.2603385483 3.5933244 -1103.197
+129678.2603385986 3.5933244 -1103.197
+129679.2603386489 3.5933244 -1103.2168
+129680.2603386992 3.5933638 -1103.2761
+129681.2603387495 3.5933244 -1103.197
+129682.2603387998 3.5933638 -1103.3156
+129683.2603388501 3.5934033 -1103.2168
+129684.2603389004 3.5933244 -1103.1774
+129685.2603389507 3.5932851 -1103.197
+129686.260339001 3.5933638 -1103.2168
+129687.2603390513 3.5932457 -1103.1378
+129688.2603391015 3.5932851 -1103.1576
+129689.2603391518 3.5933244 -1103.2562
+129690.2603392021 3.5932851 -1103.197
+129691.2603392524 3.5932064 -1103.2168
+129692.2603393027 3.5932851 -1103.1774
+129693.260339353 3.5932064 -1103.2562
+129694.2603394033 3.5932851 -1103.2366
+129695.2603394536 3.5932064 -1103.2366
+129696.2603395039 3.5931671 -1103.2366
+129697.2603395542 3.5932064 -1103.0984
+129698.2603396045 3.5932457 -1103.2168
+129699.2603396547 3.5932851 -1103.2168
+129700.260339705 3.5931671 -1103.2562
+129701.2603397553 3.5931671 -1103.197
+129702.2603398056 3.5932064 -1103.2168
+129703.2603398559 3.5932457 -1103.2366
+129704.2603399062 3.5932064 -1103.2562
+129705.2603399565 3.5930884 -1103.2761
+129706.2603400068 3.5932851 -1103.2562
+129707.2603400571 3.5931671 -1103.2366
+129708.2603401074 3.5932457 -1103.3156
+129709.2603401577 3.5931671 -1103.2168
+129710.260340208 3.5930488 -1103.3156
+129711.2603402582 3.5930884 -1103.2366
+129712.2603403085 3.5931277 -1103.2761
+129713.2603403588 3.5930884 -1103.2366
+129714.2603404091 3.5930488 -1103.2562
+129715.2603404594 3.5930884 -1103.2562
+129716.2603405097 3.5930488 -1103.197
+129717.26034056 3.5931277 -1103.2562
+129718.2603406103 3.5930488 -1103.2761
+129719.2603406606 3.5930884 -1103.2761
+129720.2603407109 3.5930488 -1103.2761
+129721.2603407612 3.5930488 -1103.197
+129722.2603408115 3.5930884 -1103.2366
+129723.2603408617 3.5930488 -1103.197
+129724.260340912 3.5930095 -1103.1182
+129725.2603409623 3.5929701 -1103.2562
+129726.2603410126 3.5930095 -1103.2168
+129727.2603410629 3.5929701 -1103.197
+129728.2603411132 3.5930095 -1103.2562
+129729.2603411635 3.5930095 -1103.1774
+129730.2603412138 3.5930095 -1103.2168
+129731.2603412641 3.5929308 -1103.2562
+129732.2603413144 3.5929701 -1103.2959
+129733.2603413647 3.5929701 -1103.197
+129734.2603414149 3.5928915 -1103.2959
+129735.2603414652 3.5929701 -1103.197
+129736.2603415155 3.5928915 -1103.197
+129737.2603415658 3.5930095 -1103.197
+129738.2603416161 3.5928521 -1103.1774
+129739.2603416664 3.5930095 -1103.2366
+129740.2603417167 3.5928128 -1103.3551
+129741.260341767 3.5928521 -1103.2168
+129742.2603418173 3.5929701 -1103.2168
+129743.2603418676 3.5928521 -1103.197
+129744.2603419179 3.5930095 -1103.2168
+129745.2603419682 3.5928521 -1103.1576
+129746.2603420184 3.5928521 -1103.1774
+129747.2603420687 3.5927734 -1103.1774
+129748.260342119 3.5928521 -1103.2959
+129749.2603421693 3.5928128 -1103.2168
+129750.2603422196 3.5928128 -1103.2761
+129751.2603422699 3.5928915 -1103.3353
+129752.2603423202 3.5929308 -1103.2562
+129753.2603423705 3.5928915 -1103.2562
+129754.2603424208 3.5928521 -1103.3156
+129755.2603424711 3.5927734 -1103.197
+129756.2603425214 3.5928521 -1103.1774
+129757.2603425717 3.5928128 -1103.2959
+129758.2603426219 3.5928128 -1103.2366
+129759.2603426722 3.5926945 -1103.2168
+129760.2603427225 3.5928521 -1103.2168
+129761.2603427728 3.5927734 -1103.2168
+129762.2603428231 3.5927734 -1103.1774
+129763.2603428734 3.5927339 -1103.197
+129764.2603429237 3.5927734 -1103.1774
+129765.260342974 3.5927339 -1103.2366
+129766.2603430243 3.5926945 -1103.2562
+129767.2603430746 3.5927339 -1103.1774
+129768.2603431249 3.5927339 -1103.2168
+129769.2603431751 3.5925765 -1103.2168
+129770.2603432254 3.5926552 -1103.1774
+129771.2603432757 3.5926945 -1103.3156
+129772.260343326 3.5926158 -1103.2562
+129773.2603433763 3.5926945 -1103.2366
+129774.2603434266 3.5926945 -1103.197
+129775.2603434769 3.5926158 -1103.2761
+129776.2603435272 3.5926945 -1103.2562
+129777.2603435775 3.5926552 -1103.2761
+129778.2603436278 3.5925372 -1103.1378
+129779.2603436781 3.5926945 -1103.2562
+129780.2603437284 3.5925765 -1103.1774
+129781.2603437786 3.5925765 -1103.2562
+129782.2603438289 3.5925765 -1103.0984
+129783.2603438792 3.5925765 -1103.1774
+129784.2603439295 3.5925765 -1103.2168
+129785.2603439798 3.5925765 -1103.197
+129786.2603440301 3.5924978 -1103.2959
+129787.2603440804 3.5925372 -1103.197
+129788.2603441307 3.5925372 -1103.197
+129789.260344181 3.5925372 -1103.2761
+129790.2603442313 3.5924978 -1103.2562
+129791.2603442816 3.5924189 -1103.2761
+129792.2603443319 3.5924585 -1103.2366
+129793.2603443821 3.5925372 -1103.197
+129794.2603444324 3.5924978 -1103.2168
+129795.2603444827 3.5924189 -1103.3156
+129796.260344533 3.5925372 -1103.1774
+129797.2603445833 3.5924978 -1103.197
+129798.2603446336 3.5924585 -1103.2168
+129799.2603446839 3.5924978 -1103.2366
+129800.2603447342 3.5923796 -1103.1576
+129801.2603447845 3.5924585 -1103.2168
+129802.2603448348 3.5924585 -1103.3749
+129803.2603448851 3.5923009 -1103.2168
+129804.2603449353 3.5924978 -1103.2959
+129805.2603449856 3.5923402 -1103.2959
+129806.2603450359 3.5923402 -1103.197
+129807.2603450862 3.5922616 -1103.197
+129808.2603451365 3.5922222 -1103.2168
+129809.2603451868 3.5923796 -1103.1774
+129810.2603452371 3.5923009 -1103.197
+129811.2603452874 3.5923009 -1103.2366
+129812.2603453377 3.5923796 -1103.197
+129813.260345388 3.5923009 -1103.2366
+129814.2603454383 3.5923009 -1103.2168
+129815.2603454886 3.5923009 -1103.1774
+129816.2603455388 3.5923009 -1103.1576
+129817.2603455891 3.5922616 -1103.197
+129818.2603456394 3.5922222 -1103.2366
+129819.2603456897 3.5922222 -1103.197
+129820.26034574 3.5921829 -1103.2168
+129821.2603457903 3.5922616 -1103.2562
+129822.2603458406 3.5923009 -1103.2562
+129823.2603458909 3.5922222 -1103.1774
+129824.2603459412 3.5923009 -1103.1378
+129825.2603459915 3.5920646 -1103.2761
+129826.2603460418 3.5922616 -1103.2562
+129827.2603460921 3.5922222 -1103.2366
+129828.2603461423 3.5922222 -1103.197
+129829.2603461926 3.5922222 -1103.2761
+129830.2603462429 3.5921433 -1103.2168
+129831.2603462932 3.592104 -1103.2366
+129832.2603463435 3.5922616 -1103.197
+129833.2603463938 3.5922616 -1103.2959
+129834.2603464441 3.5922222 -1103.2168
+129835.2603464944 3.5921433 -1103.2168
+129836.2603465447 3.592104 -1103.2562
+129837.260346595 3.5922222 -1103.197
+129838.2603466453 3.592104 -1103.2366
+129839.2603466955 3.592104 -1103.2959
+129840.2603467458 3.592104 -1103.197
+129841.2603467961 3.592104 -1103.2761
+129842.2603468464 3.5920646 -1103.2168
+129843.2603468967 3.5921433 -1103.2562
+129844.260346947 3.5921433 -1103.2366
+129845.2603469973 3.5920646 -1103.2366
+129846.2603470476 3.592104 -1103.2959
+129847.2603470979 3.5920253 -1103.2168
+129848.2603471482 3.5920646 -1103.197
+129849.2603471985 3.592104 -1103.197
+129850.2603472488 3.592104 -1103.197
+129851.260347299 3.5919466 -1103.1378
+129852.2603473493 3.5920646 -1103.2761
+129853.2603473996 3.5919466 -1103.197
+129854.2603474499 3.5919073 -1103.2959
+129855.2603475002 3.5920253 -1103.2761
+129856.2603475505 3.5919073 -1103.2168
+129857.2603476008 3.5919859 -1103.2168
+129858.2603476511 3.5919073 -1103.2959
+129859.2603477014 3.5920253 -1103.1774
+129860.2603477517 3.5919466 -1103.2366
+129861.260347802 3.5919859 -1103.1576
+129862.2603478523 3.5918679 -1103.2761
+129863.2603479025 3.5918679 -1103.197
+129864.2603479528 3.5919466 -1103.2562
+129865.2603480031 3.5919466 -1103.197
+129866.2603480534 3.5919073 -1103.197
+129867.2603481037 3.5918283 -1103.0785
+129868.260348154 3.5919073 -1103.2562
+129869.2603482043 3.5919073 -1103.2562
+129870.2603482546 3.5918283 -1103.2168
+129871.2603483049 3.5918283 -1103.197
+129872.2603483552 3.5918283 -1103.1576
+129873.2603484055 3.5919073 -1103.2168
+129874.2603484557 3.5918679 -1103.2168
+129875.260348506 3.591789 -1103.3551
+129876.2603485563 3.5919466 -1103.2562
+129877.2603486066 3.591789 -1103.2562
+129878.2603486569 3.5918679 -1103.1774
+129879.2603487072 3.5918283 -1103.2562
+129880.2603487575 3.591789 -1103.1378
+129881.2603488078 3.5918283 -1103.2366
+129882.2603488581 3.5917497 -1103.1576
+129883.2603489084 3.5917497 -1103.2168
+129884.2603489587 3.591789 -1103.197
+129885.260349009 3.5917103 -1103.2562
+129886.2603490592 3.591789 -1103.2761
+129887.2603491095 3.5917497 -1103.2366
+129888.2603491598 3.591671 -1103.2168
+129889.2603492101 3.5917497 -1103.197
+129890.2603492604 3.5917497 -1103.197
+129891.2603493107 3.5917103 -1103.1774
+129892.260349361 3.5916317 -1103.1576
+129893.2603494113 3.5917103 -1103.2366
+129894.2603494616 3.591789 -1103.2366
+129895.2603495119 3.591671 -1103.2761
+129896.2603495622 3.5916317 -1103.2366
+129897.2603496125 3.5917103 -1103.2761
+129898.2603496627 3.5915923 -1103.1774
+129899.260349713 3.591671 -1103.2366
+129900.2603497633 3.5916317 -1103.3353
+129901.2603498136 3.5917497 -1103.1576
+129902.2603498639 3.5916317 -1103.1576
+129903.2603499142 3.5916317 -1103.2562
+129904.2603499645 3.5915923 -1103.2562
+129905.2603500148 3.5915134 -1103.2761
+129906.2603500651 3.591553 -1103.1576
+129907.2603501154 3.5916317 -1103.2761
+129908.2603501657 3.5917103 -1103.197
+129909.2603502159 3.591553 -1103.2168
+129910.2603502662 3.591553 -1103.2761
+129911.2603503165 3.5915134 -1103.2366
+129912.2603503668 3.591553 -1103.3156
+129913.2603504171 3.5915134 -1103.2168
+129914.2603504674 3.591553 -1103.2761
+129915.2603505177 3.5915923 -1103.1774
+129916.260350568 3.5915923 -1103.1576
+129917.2603506183 3.5915923 -1103.1774
+129918.2603506686 3.591553 -1103.1378
+129919.2603507189 3.5914741 -1103.197
+129920.2603507692 3.5914741 -1103.1774
+129921.2603508194 3.5914347 -1103.2168
+129922.2603508697 3.5914741 -1103.2761
+129923.26035092 3.5913954 -1103.197
+129924.2603509703 3.5915134 -1103.2366
+129925.2603510206 3.5914347 -1103.1576
+129926.2603510709 3.5914741 -1103.2761
+129927.2603511212 3.5914347 -1103.2562
+129928.2603511715 3.591356 -1103.3156
+129929.2603512218 3.591356 -1103.197
+129930.2603512721 3.5913954 -1103.197
+129931.2603513224 3.5914347 -1103.2959
+129932.2603513727 3.5914741 -1103.2562
+129933.2603514229 3.591356 -1103.197
+129934.2603514732 3.5914347 -1103.2562
+129935.2603515235 3.5914347 -1103.2562
+129936.2603515738 3.5914347 -1103.2168
+129937.2603516241 3.5913167 -1103.2959
+129938.2603516744 3.591356 -1103.2168
+129939.2603517247 3.5913954 -1103.2366
+129940.260351775 3.5914347 -1103.2366
+129941.2603518253 3.591356 -1103.1774
+129942.2603518756 3.5913167 -1103.2366
+129943.2603519259 3.5912774 -1103.2366
+129944.2603519761 3.5913167 -1103.2959
+129945.2603520264 3.591356 -1103.2366
+129946.2603520767 3.5911984 -1103.197
+129947.260352127 3.591238 -1103.2761
+129948.2603521773 3.591238 -1103.2168
+129949.2603522276 3.5913167 -1103.2562
+129950.2603522779 3.591238 -1103.197
+129951.2603523282 3.5912774 -1103.2366
+129952.2603523785 3.591238 -1103.1576
+129953.2603524288 3.5911984 -1103.2562
+129954.2603524791 3.591238 -1103.197
+129955.2603525294 3.5911984 -1103.2761
+129956.2603525796 3.5911984 -1103.197
+129957.2603526299 3.591238 -1103.197
+129958.2603526802 3.591238 -1103.2761
+129959.2603527305 3.5911984 -1103.2168
+129960.2603527808 3.5911984 -1103.2562
+129961.2603528311 3.5911591 -1103.1378
+129962.2603528814 3.5911198 -1103.1378
+129963.2603529317 3.591238 -1103.1182
+129964.260352982 3.5910804 -1103.2168
+129965.2603530323 3.5911984 -1103.2168
+129966.2603530826 3.5911198 -1103.2959
+129967.2603531329 3.5910804 -1103.2562
+129968.2603531831 3.5910017 -1103.2168
+129969.2603532334 3.5911198 -1103.2562
+129970.2603532837 3.5910411 -1103.2562
+129971.260353334 3.5911591 -1103.2366
+129972.2603533843 3.5910804 -1103.2761
+129973.2603534346 3.5910411 -1103.2168
+129974.2603534849 3.5910017 -1103.1774
+129975.2603535352 3.5910411 -1103.2959
+129976.2603535855 3.5911198 -1103.197
+129977.2603536358 3.5910804 -1103.2168
+129978.2603536861 3.5910411 -1103.1774
+129979.2603537363 3.5910017 -1103.1576
+129980.2603537866 3.5909624 -1103.1378
+129981.2603538369 3.5910017 -1103.2562
+129982.2603538872 3.5910017 -1103.2761
+129983.2603539375 3.5910017 -1103.2366
+129984.2603539878 3.5910017 -1103.2168
+129985.2603540381 3.5909624 -1103.3156
+129986.2603540884 3.5910411 -1103.2761
+129987.2603541387 3.5911591 -1103.2366
+129988.260354189 3.5910411 -1103.1774
+129989.2603542393 3.5910017 -1103.2168
+129990.2603542896 3.5908835 -1103.2562
+129991.2603543398 3.5909231 -1103.2366
+129992.2603543901 3.5909231 -1103.2366
+129993.2603544404 3.5908835 -1103.3156
+129994.2603544907 3.5909624 -1103.2168
+129995.260354541 3.5910411 -1103.2366
+129996.2603545913 3.5908048 -1103.197
+129997.2603546416 3.5908442 -1103.197
+129998.2603546919 3.5908835 -1103.2168
+129999.2603547422 3.5908442 -1103.1774
+130000.2603547925 3.5908442 -1103.2761
+130001.2603548428 3.5908048 -1103.1774
+130002.260354893 3.5909231 -1103.197
+130003.2603549433 3.5908442 -1103.197
+130004.2603549936 3.5908835 -1103.2366
+130005.2603550439 3.5909231 -1103.2562
+130006.2603550942 3.5907655 -1103.2366
+130007.2603551445 3.5908835 -1103.2366
+130008.2603551948 3.5908048 -1103.2168
+130009.2603552451 3.5908835 -1103.197
+130010.2603552954 3.5907655 -1103.2761
+130011.2603553457 3.5907655 -1103.197
+130012.260355396 3.5907261 -1103.2168
+130013.2603554463 3.5908442 -1103.2366
+130014.2603554965 3.5908048 -1103.2761
+130015.2603555468 3.5906868 -1103.2168
+130016.2603555971 3.5907261 -1103.197
+130017.2603556474 3.5906868 -1103.2761
+130018.2603556977 3.5907655 -1103.2562
+130019.260355748 3.5907261 -1103.2168
+130020.2603557983 3.5906868 -1103.1378
+130021.2603558486 3.5906475 -1103.3156
+130022.2603558989 3.5907261 -1103.2366
+130023.2603559492 3.5906868 -1103.2562
+130024.2603559995 3.5906868 -1103.2761
+130025.2603560498 3.5907655 -1103.3156
+130026.2603561 3.5906081 -1103.2761
+130027.2603561503 3.5905292 -1103.2562
+130028.2603562006 3.5906475 -1103.3353
+130029.2603562509 3.5906868 -1103.197
+130030.2603563012 3.5906081 -1103.2562
+130031.2603563515 3.5906868 -1103.2168
+130032.2603564018 3.5906081 -1103.3156
+130033.2603564521 3.5906081 -1103.1774
+130034.2603565024 3.5905685 -1103.2562
+130035.2603565527 3.5905685 -1103.2761
+130036.260356603 3.5907655 -1103.2959
+130037.2603566532 3.5905292 -1103.2168
+130038.2603567035 3.5906081 -1103.2959
+130039.2603567538 3.5906081 -1103.1378
+130040.2603568041 3.5904899 -1103.2366
+130041.2603568544 3.5904505 -1103.2366
+130042.2603569047 3.5905292 -1103.2366
+130043.260356955 3.5905292 -1103.2366
+130044.2603570053 3.5904899 -1103.1576
+130045.2603570556 3.5905292 -1103.1774
+130046.2603571059 3.5904899 -1103.2761
+130047.2603571562 3.5905292 -1103.2562
+130048.2603572065 3.5904899 -1103.2562
+130049.2603572567 3.5905685 -1103.2366
+130050.260357307 3.5904505 -1103.2562
+130051.2603573573 3.5904112 -1103.2366
+130052.2603574076 3.5904899 -1103.1774
+130053.2603574579 3.5904899 -1103.2761
+130054.2603575082 3.5904112 -1103.2959
+130055.2603575585 3.5904112 -1103.2562
+130056.2603576088 3.5904112 -1103.2562
+130057.2603576591 3.5904505 -1103.2562
+130058.2603577094 3.5904899 -1103.3945
+130059.2603577597 3.5904899 -1103.2366
+130060.26035781 3.5904112 -1103.2959
+130061.2603578602 3.5903718 -1103.197
+130062.2603579105 3.5903718 -1103.2168
+130063.2603579608 3.5904505 -1103.2366
+130064.2603580111 3.5904112 -1103.2562
+130065.2603580614 3.5903325 -1103.2959
+130066.2603581117 3.5904112 -1103.2761
+130067.260358162 3.5903718 -1103.1774
+130068.2603582123 3.5903325 -1103.2761
+130069.2603582626 3.5903718 -1103.2562
+130070.2603583129 3.5904112 -1103.2168
+130071.2603583632 3.5903325 -1103.197
+130072.2603584134 3.5902929 -1103.2168
+130073.2603584637 3.5903718 -1103.2168
+130074.260358514 3.5902929 -1103.2562
+130075.2603585643 3.5902536 -1103.2366
+130076.2603586146 3.5902929 -1103.1774
+130077.2603586649 3.5902929 -1103.2959
+130078.2603587152 3.5904112 -1103.197
+130079.2603587655 3.5902929 -1103.2366
+130080.2603588158 3.5902929 -1103.2562
+130081.2603588661 3.5901749 -1103.2168
+130082.2603589164 3.5902929 -1103.2366
+130083.2603589667 3.5902143 -1103.2562
+130084.2603590169 3.5902929 -1103.2366
+130085.2603590672 3.5901749 -1103.2761
+130086.2603591175 3.5901749 -1103.2761
+130087.2603591678 3.5901356 -1103.197
+130088.2603592181 3.5901749 -1103.2959
+130089.2603592684 3.5900962 -1103.1774
+130090.2603593187 3.5901749 -1103.2761
+130091.260359369 3.5901749 -1103.2959
+130092.2603594193 3.5900962 -1103.2168
+130093.2603594696 3.5900569 -1103.1774
+130094.2603595199 3.5901356 -1103.1378
+130095.2603595702 3.5901749 -1103.3156
+130096.2603596204 3.5901749 -1103.2562
+130097.2603596707 3.5900962 -1103.2168
+130098.260359721 3.5901749 -1103.2959
+130099.2603597713 3.5900569 -1103.2562
+130100.2603598216 3.5900569 -1103.2562
+130101.2603598719 3.5901356 -1103.197
+130102.2603599222 3.5901356 -1103.0984
+130103.2603599725 3.5901749 -1103.2168
+130104.2603600228 3.5900962 -1103.2168
+130105.2603600731 3.5900569 -1103.2168
+130106.2603601234 3.5900176 -1103.2168
+130107.2603601736 3.5901749 -1103.2761
+130108.2603602239 3.5900962 -1103.1774
+130109.2603602742 3.5900176 -1103.2562
+130110.2603603245 3.5900569 -1103.2761
+130111.2603603748 3.5900569 -1103.2366
+130112.2603604251 3.5900569 -1103.1576
+130113.2603604754 3.589978 -1103.2168
+130114.2603605257 3.5900176 -1103.2366
+130115.260360576 3.5900569 -1103.2168
+130116.2603606263 3.589978 -1103.2168
+130117.2603606766 3.5900176 -1103.1182
+130118.2603607269 3.5900569 -1103.1576
+130119.2603607771 3.589978 -1103.197
+130120.2603608274 3.589978 -1103.2366
+130121.2603608777 3.5900176 -1103.2562
+130122.260360928 3.5899386 -1103.2562
+130123.2603609783 3.5899386 -1103.1576
+130124.2603610286 3.5899386 -1103.2168
+130125.2603610789 3.5899386 -1103.3156
+130126.2603611292 3.5898206 -1103.2562
+130127.2603611795 3.58986 -1103.1576
+130128.2603612298 3.5898993 -1103.2168
+130129.2603612801 3.5898993 -1103.1774
+130130.2603613304 3.5899386 -1103.1774
+130131.2603613806 3.5898993 -1103.2168
+130132.2603614309 3.5899386 -1103.197
+130133.2603614812 3.5898206 -1103.197
+130134.2603615315 3.5898993 -1103.2168
+130135.2603615818 3.5898206 -1103.197
+130136.2603616321 3.5897419 -1103.197
+130137.2603616824 3.58986 -1103.1182
+130138.2603617327 3.5898993 -1103.2761
+130139.260361783 3.58986 -1103.1774
+130140.2603618333 3.5897813 -1103.197
+130141.2603618836 3.5897813 -1103.197
+130142.2603619338 3.5897419 -1103.3156
+130143.2603619841 3.58986 -1103.1182
+130144.2603620344 3.5898206 -1103.1576
+130145.2603620847 3.5897026 -1103.2562
+130146.260362135 3.58986 -1103.2168
+130147.2603621853 3.5897026 -1103.1576
+130148.2603622356 3.5897419 -1103.2761
+130149.2603622859 3.5897813 -1103.1378
+130150.2603623362 3.5897419 -1103.197
+130151.2603623865 3.589663 -1103.2168
+130152.2603624368 3.5897813 -1103.197
+130153.2603624871 3.589663 -1103.2562
+130154.2603625373 3.589663 -1103.1378
+130155.2603625876 3.5897026 -1103.2562
+130156.2603626379 3.5897026 -1103.197
+130157.2603626882 3.5897026 -1103.2562
+130158.2603627385 3.589663 -1103.1774
+130159.2603627888 3.5897026 -1103.197
+130160.2603628391 3.5897026 -1103.2366
+130161.2603628894 3.5897419 -1103.2959
+130162.2603629397 3.5897026 -1103.1774
+130163.26036299 3.589663 -1103.2562
+130164.2603630403 3.5897813 -1103.197
+130165.2603630906 3.589545 -1103.2168
+130166.2603631408 3.589545 -1103.197
+130167.2603631911 3.589663 -1103.2366
+130168.2603632414 3.5895057 -1103.2366
+130169.2603632917 3.5896237 -1103.197
+130170.260363342 3.5895844 -1103.2562
+130171.2603633923 3.589545 -1103.1774
+130172.2603634426 3.589663 -1103.1774
+130173.2603634929 3.5896237 -1103.2562
+130174.2603635432 3.5895057 -1103.2366
+130175.2603635935 3.5895057 -1103.2168
+130176.2603636438 3.589545 -1103.2562
+130177.260363694 3.5895844 -1103.2562
+130178.2603637443 3.5895057 -1103.2562
+130179.2603637946 3.5895844 -1103.197
+130180.2603638449 3.589545 -1103.2366
+130181.2603638952 3.5895057 -1103.2761
+130182.2603639455 3.589545 -1103.1378
+130183.2603639958 3.5895057 -1103.1576
+130184.2603640461 3.589545 -1103.2366
+130185.2603640964 3.5894663 -1103.2168
+130186.2603641467 3.5895844 -1103.197
+130187.260364197 3.589545 -1103.2366
+130188.2603642473 3.5893877 -1103.2562
+130189.2603642975 3.5893877 -1103.1774
+130190.2603643478 3.5895057 -1103.2168
+130191.2603643981 3.5894663 -1103.2562
+130192.2603644484 3.5894663 -1103.2168
+130193.2603644987 3.589427 -1103.3156
+130194.260364549 3.5893087 -1103.2959
+130195.2603645993 3.589427 -1103.2366
+130196.2603646496 3.5894663 -1103.2366
+130197.2603646999 3.589427 -1103.197
+130198.2603647502 3.589427 -1103.2366
+130199.2603648005 3.589427 -1103.197
+130200.2603648508 3.5893087 -1103.2562
+130201.260364901 3.5893087 -1103.2168
+130202.2603649513 3.5893087 -1103.1774
+130203.2603650016 3.5892694 -1103.1774
+130204.2603650519 3.5893481 -1103.2761
+130205.2603651022 3.5894663 -1103.2366
+130206.2603651525 3.5893481 -1103.1378
+130207.2603652028 3.5893877 -1103.197
+130208.2603652531 3.5893481 -1103.1774
+130209.2603653034 3.5892301 -1103.1774
+130210.2603653537 3.5892301 -1103.2562
+130211.260365404 3.5893087 -1103.3156
+130212.2603654542 3.5892301 -1103.1576
+130213.2603655045 3.5892694 -1103.2959
+130214.2603655548 3.5891907 -1103.2168
+130215.2603656051 3.5893481 -1103.2562
+130216.2603656554 3.5893087 -1103.197
+130217.2603657057 3.5892301 -1103.2168
+130218.260365756 3.589112 -1103.197
+130219.2603658063 3.5891514 -1103.1774
+130220.2603658566 3.5891907 -1103.197
+130221.2603659069 3.5891907 -1103.2562
+130222.2603659572 3.5891907 -1103.2366
+130223.2603660075 3.5891514 -1103.2959
+130224.2603660577 3.5891514 -1103.2761
+130225.260366108 3.5891907 -1103.197
+130226.2603661583 3.589112 -1103.2168
+130227.2603662086 3.5891514 -1103.1378
+130228.2603662589 3.5890727 -1103.197
+130229.2603663092 3.5891907 -1103.2562
+130230.2603663595 3.589112 -1103.2168
+130231.2603664098 3.589112 -1103.2168
+130232.2603664601 3.5890727 -1103.1774
+130233.2603665104 3.5891514 -1103.197
+130234.2603665607 3.589112 -1103.2761
+130235.260366611 3.5890331 -1103.1774
+130236.2603666612 3.5890331 -1103.197
+130237.2603667115 3.589112 -1103.2959
+130238.2603667618 3.5890331 -1103.2562
+130239.2603668121 3.5890727 -1103.2366
+130240.2603668624 3.5890331 -1103.197
+130241.2603669127 3.5890331 -1103.2761
+130242.260366963 3.5889151 -1103.197
+130243.2603670133 3.5890727 -1103.2366
+130244.2603670636 3.5889544 -1103.2959
+130245.2603671139 3.5890727 -1103.1576
+130246.2603671642 3.5889544 -1103.197
+130247.2603672144 3.5889544 -1103.2366
+130248.2603672647 3.5889938 -1103.2959
+130249.260367315 3.5890331 -1103.2562
+130250.2603673653 3.5888758 -1103.2366
+130251.2603674156 3.5889544 -1103.1774
+130252.2603674659 3.5889544 -1103.2562
+130253.2603675162 3.5889151 -1103.2366
+130254.2603675665 3.5889151 -1103.2562
+130255.2603676168 3.5889151 -1103.0785
+130256.2603676671 3.5889544 -1103.1774
+130257.2603677174 3.5889151 -1103.2168
+130258.2603677677 3.5889151 -1103.3156
+130259.2603678179 3.5889151 -1103.1774
+130260.2603678682 3.5889544 -1103.2366
+130261.2603679185 3.5887971 -1103.2168
+130262.2603679688 3.5888758 -1103.197
+130263.2603680191 3.5889544 -1103.1576
+130264.2603680694 3.5888364 -1103.197
+130265.2603681197 3.5888364 -1103.197
+130266.26036817 3.5888364 -1103.2366
+130267.2603682203 3.5888364 -1103.2562
+130268.2603682706 3.5887182 -1103.2168
+130269.2603683209 3.5888364 -1103.1576
+130270.2603683712 3.5888364 -1103.1182
+130271.2603684214 3.5887578 -1103.2366
+130272.2603684717 3.5887182 -1103.1576
+130273.260368522 3.5888364 -1103.2168
+130274.2603685723 3.5887971 -1103.2959
+130275.2603686226 3.5888364 -1103.197
+130276.2603686729 3.5887578 -1103.2168
+130277.2603687232 3.5887578 -1103.2366
+130278.2603687735 3.5887971 -1103.2168
+130279.2603688238 3.5887971 -1103.2562
+130280.2603688741 3.5886788 -1103.2562
+130281.2603689244 3.5887182 -1103.1774
+130282.2603689746 3.5886788 -1103.197
+130283.2603690249 3.5887578 -1103.2562
+130284.2603690752 3.5887182 -1103.2366
+130285.2603691255 3.5887182 -1103.2366
+130286.2603691758 3.5887182 -1103.2168
+130287.2603692261 3.5886788 -1103.197
+130288.2603692764 3.5886002 -1103.0984
+130289.2603693267 3.5886395 -1103.197
+130290.260369377 3.5886002 -1103.2366
+130291.2603694273 3.5886395 -1103.2366
+130292.2603694776 3.5886002 -1103.2168
+130293.2603695279 3.5885215 -1103.2562
+130294.2603695781 3.5887182 -1103.2761
+130295.2603696284 3.5886002 -1103.2168
+130296.2603696787 3.5885608 -1103.2366
+130297.260369729 3.5884821 -1103.2168
+130298.2603697793 3.5885608 -1103.2168
+130299.2603698296 3.5886395 -1103.2761
+130300.2603698799 3.5885215 -1103.2562
+130301.2603699302 3.5884032 -1103.2562
+130302.2603699805 3.5885608 -1103.2366
+130303.2603700308 3.5886002 -1103.2366
+130304.2603700811 3.5884821 -1103.2959
+130305.2603701313 3.5884821 -1103.2761
+130306.2603701816 3.5884821 -1103.0984
+130307.2603702319 3.5884821 -1103.1378
+130308.2603702822 3.5885215 -1103.2959
+130309.2603703325 3.5884821 -1103.2366
+130310.2603703828 3.5885215 -1103.2562
+130311.2603704331 3.5883245 -1103.1182
+130312.2603704834 3.5884821 -1103.197
+130313.2603705337 3.5884821 -1103.1774
+130314.260370584 3.5884426 -1103.2761
+130315.2603706343 3.5884032 -1103.1774
+130316.2603706846 3.5884426 -1103.2761
+130317.2603707348 3.5883639 -1103.1774
+130318.2603707851 3.5884426 -1103.2168
+130319.2603708354 3.5884032 -1103.2366
+130320.2603708857 3.5884032 -1103.1774
+130321.260370936 3.5884032 -1103.1774
+130322.2603709863 3.5883639 -1103.2761
+130323.2603710366 3.5883245 -1103.2562
+130324.2603710869 3.5884032 -1103.2168
+130325.2603711372 3.5883245 -1103.3156
+130326.2603711875 3.5883245 -1103.2168
+130327.2603712378 3.5883639 -1103.2562
+130328.2603712881 3.5883245 -1103.2761
+130329.2603713383 3.5883639 -1103.2562
+130330.2603713886 3.5882459 -1103.2959
+130331.2603714389 3.5883245 -1103.2562
+130332.2603714892 3.5883639 -1103.197
+130333.2603715395 3.5883639 -1103.1774
+130334.2603715898 3.5882459 -1103.197
+130335.2603716401 3.5882459 -1103.2168
+130336.2603716904 3.5882852 -1103.2761
+130337.2603717407 3.5882852 -1103.2562
+130338.260371791 3.5882852 -1103.2366
+130339.2603718413 3.5882852 -1103.2562
+130340.2603718915 3.5881672 -1103.2366
+130341.2603719418 3.5882459 -1103.1378
+130342.2603719921 3.5881276 -1103.2959
+130343.2603720424 3.5881672 -1103.2168
+130344.2603720927 3.5881672 -1103.2959
+130345.260372143 3.5881672 -1103.3156
+130346.2603721933 3.5881672 -1103.3156
+130347.2603722436 3.5881276 -1103.2168
+130348.2603722939 3.5881672 -1103.2761
+130349.2603723442 3.5881672 -1103.2168
+130350.2603723945 3.5882852 -1103.2562
+130351.2603724448 3.5880883 -1103.1774
+130352.260372495 3.5880489 -1103.197
+130353.2603725453 3.5880883 -1103.2168
+130354.2603725956 3.5881276 -1103.2366
+130355.2603726459 3.5879309 -1103.1774
+130356.2603726962 3.5881276 -1103.197
+130357.2603727465 3.5880489 -1103.3156
+130358.2603727968 3.5880096 -1103.2562
+130359.2603728471 3.5879703 -1103.1576
+130360.2603728974 3.5880096 -1103.3353
+130361.2603729477 3.5880489 -1103.2168
+130362.260372998 3.5880489 -1103.1774
+130363.2603730483 3.5880489 -1103.2168
+130364.2603730985 3.5880489 -1103.197
+130365.2603731488 3.5880096 -1103.2366
+130366.2603731991 3.5879309 -1103.2761
+130367.2603732494 3.5880096 -1103.2366
+130368.2603732997 3.5879703 -1103.2959
+130369.26037335 3.5878916 -1103.1576
+130370.2603734003 3.5878522 -1103.1774
+130371.2603734506 3.5880489 -1103.2168
+130372.2603735009 3.5880096 -1103.2366
+130373.2603735512 3.5880096 -1103.197
+130374.2603736015 3.5879703 -1103.2761
+130375.2603736517 3.5878916 -1103.1576
+130376.260373702 3.5879703 -1103.1774
+130377.2603737523 3.5879309 -1103.1576
+130378.2603738026 3.5879309 -1103.2366
+130379.2603738529 3.5878522 -1103.197
+130380.2603739032 3.5878916 -1103.2168
+130381.2603739535 3.5879309 -1103.1576
+130382.2603740038 3.5878522 -1103.1774
+130383.2603740541 3.5878522 -1103.2366
+130384.2603741044 3.5878127 -1103.2366
+130385.2603741547 3.5878127 -1103.2761
+130386.260374205 3.5877733 -1103.2366
+130387.2603742552 3.5878522 -1103.2366
+130388.2603743055 3.5878127 -1103.197
+130389.2603743558 3.5878127 -1103.2761
+130390.2603744061 3.5878127 -1103.2562
+130391.2603744564 3.587734 -1103.3353
+130392.2603745067 3.5878916 -1103.2562
+130393.260374557 3.5877733 -1103.2366
+130394.2603746073 3.5878127 -1103.197
+130395.2603746576 3.5877733 -1103.2366
+130396.2603747079 3.5876946 -1103.197
+130397.2603747582 3.587734 -1103.2366
+130398.2603748085 3.5876553 -1103.2761
+130399.2603748587 3.587734 -1103.2761
+130400.260374909 3.5876946 -1103.1576
+130401.2603749593 3.5878127 -1103.2562
+130402.2603750096 3.5877733 -1103.2168
+130403.2603750599 3.5876553 -1103.2168
+130404.2603751102 3.5876553 -1103.197
+130405.2603751605 3.5876946 -1103.197
+130406.2603752108 3.5876553 -1103.197
+130407.2603752611 3.587616 -1103.2959
+130408.2603753114 3.5876946 -1103.2366
+130409.2603753617 3.5875766 -1103.1576
+130410.2603754119 3.5876553 -1103.2959
+130411.2603754622 3.5875766 -1103.2168
+130412.2603755125 3.587616 -1103.1378
+130413.2603755628 3.5875373 -1103.2366
+130414.2603756131 3.5875766 -1103.2761
+130415.2603756634 3.5875766 -1103.2761
+130416.2603757137 3.5875373 -1103.2959
+130417.260375764 3.5874977 -1103.2366
+130418.2603758143 3.5875766 -1103.2168
+130419.2603758646 3.5874584 -1103.1774
+130420.2603759149 3.5874584 -1103.2168
+130421.2603759652 3.5874584 -1103.2168
+130422.2603760154 3.5875373 -1103.197
+130423.2603760657 3.5874977 -1103.3551
+130424.260376116 3.5874977 -1103.2562
+130425.2603761663 3.5874584 -1103.2562
+130426.2603762166 3.587301 -1103.2366
+130427.2603762669 3.5875373 -1103.2562
+130428.2603763172 3.5874584 -1103.2761
+130429.2603763675 3.5874584 -1103.1576
+130430.2603764178 3.587419 -1103.2366
+130431.2603764681 3.5874584 -1103.2168
+130432.2603765184 3.5874584 -1103.1774
+130433.2603765687 3.5873404 -1103.2562
+130434.2603766189 3.5874584 -1103.2562
+130435.2603766692 3.587419 -1103.1774
+130436.2603767195 3.5874584 -1103.2562
+130437.2603767698 3.587301 -1103.2761
+130438.2603768201 3.587301 -1103.2562
+130439.2603768704 3.587301 -1103.2562
+130440.2603769207 3.5873797 -1103.197
+130441.260376971 3.587419 -1103.2761
+130442.2603770213 3.5872617 -1103.1774
+130443.2603770716 3.587301 -1103.2168
+130444.2603771219 3.587301 -1103.1774
+130445.2603771721 3.5873404 -1103.1774
+130446.2603772224 3.5872617 -1103.1576
+130447.2603772727 3.5873797 -1103.2366
+130448.260377323 3.5872223 -1103.1576
+130449.2603773733 3.5872617 -1103.2562
+130450.2603774236 3.5872617 -1103.2562
+130451.2603774739 3.5872223 -1103.1182
+130452.2603775242 3.5871828 -1103.1576
+130453.2603775745 3.5871828 -1103.2168
+130454.2603776248 3.5872223 -1103.1774
+130455.2603776751 3.5871828 -1103.197
+130456.2603777254 3.5871434 -1103.2959
+130457.2603777756 3.5871041 -1103.197
+130458.2603778259 3.5872223 -1103.2562
+130459.2603778762 3.5872223 -1103.2168
+130460.2603779265 3.5871434 -1103.2168
+130461.2603779768 3.5871828 -1103.197
+130462.2603780271 3.5870647 -1103.2562
+130463.2603780774 3.5870647 -1103.3156
+130464.2603781277 3.5871041 -1103.197
+130465.260378178 3.5872223 -1103.1774
+130466.2603782283 3.5871434 -1103.197
+130467.2603782786 3.5871828 -1103.2366
+130468.2603783289 3.5871434 -1103.2562
+130469.2603783791 3.5871828 -1103.2562
+130470.2603784294 3.5872223 -1103.2761
+130471.2603784797 3.5871041 -1103.2562
+130472.26037853 3.5870647 -1103.1378
+130473.2603785803 3.5870254 -1103.1576
+130474.2603786306 3.5871434 -1103.2366
+130475.2603786809 3.5870254 -1103.1378
+130476.2603787312 3.5870647 -1103.3156
+130477.2603787815 3.5870647 -1103.197
+130478.2603788318 3.5871041 -1103.2562
+130479.2603788821 3.5870254 -1103.2168
+130480.2603789323 3.5871041 -1103.1774
+130481.2603789826 3.5870254 -1103.2168
+130482.2603790329 3.5869467 -1103.2562
+130483.2603790832 3.5870647 -1103.2562
+130484.2603791335 3.5870254 -1103.2366
+130485.2603791838 3.5870254 -1103.197
+130486.2603792341 3.5870254 -1103.197
+130487.2603792844 3.5869861 -1103.2959
+130488.2603793347 3.5870647 -1103.2366
+130489.260379385 3.5869467 -1103.2168
+130490.2603794353 3.5869861 -1103.1774
+130491.2603794856 3.5871041 -1103.1576
+130492.2603795358 3.5870254 -1103.2562
+130493.2603795861 3.5869074 -1103.1378
+130494.2603796364 3.5869467 -1103.2562
+130495.2603796867 3.5869861 -1103.2761
+130496.260379737 3.5868678 -1103.197
+130497.2603797873 3.5869074 -1103.1378
+130498.2603798376 3.5870254 -1103.1576
+130499.2603798879 3.5869467 -1103.197
+130500.2603799382 3.5869467 -1103.197
+130501.2603799885 3.5869074 -1103.2562
+130502.2603800388 3.5868678 -1103.2366
+130503.2603800891 3.5868285 -1103.197
+130504.2603801393 3.5869467 -1103.197
+130505.2603801896 3.5868678 -1103.2761
+130506.2603802399 3.5868285 -1103.2761
+130507.2603802902 3.5869467 -1103.2959
+130508.2603803405 3.5867891 -1103.197
+130509.2603803908 3.5867891 -1103.197
+130510.2603804411 3.5867891 -1103.2168
+130511.2603804914 3.5867498 -1103.1576
+130512.2603805417 3.5869467 -1103.1576
+130513.260380592 3.5867498 -1103.2562
+130514.2603806423 3.5867105 -1103.1774
+130515.2603806925 3.5867891 -1103.2366
+130516.2603807428 3.5867891 -1103.197
+130517.2603807931 3.5867498 -1103.2761
+130518.2603808434 3.5867105 -1103.2168
+130519.2603808937 3.5868285 -1103.197
+130520.260380944 3.5867891 -1103.2168
+130521.2603809943 3.5868285 -1103.197
+130522.2603810446 3.5867891 -1103.2562
+130523.2603810949 3.5867105 -1103.2562
+130524.2603811452 3.5867498 -1103.2366
+130525.2603811955 3.5868285 -1103.197
+130526.2603812458 3.5867498 -1103.1576
+130527.260381296 3.5867498 -1103.1774
+130528.2603813463 3.5867105 -1103.2562
+130529.2603813966 3.5867498 -1103.2562
+130530.2603814469 3.5866318 -1103.2366
+130531.2603814972 3.5866711 -1103.3156
+130532.2603815475 3.5865922 -1103.2366
+130533.2603815978 3.5866711 -1103.2562
+130534.2603816481 3.5867105 -1103.1576
+130535.2603816984 3.5866318 -1103.2366
+130536.2603817487 3.5866318 -1103.2562
+130537.260381799 3.5866318 -1103.2761
+130538.2603818493 3.5865529 -1103.197
+130539.2603818995 3.5865922 -1103.197
+130540.2603819498 3.5865135 -1103.1774
+130541.2603820001 3.5865922 -1103.2959
+130542.2603820504 3.5866318 -1103.2168
+130543.2603821007 3.5865135 -1103.1182
+130544.260382151 3.5865529 -1103.2168
+130545.2603822013 3.5865529 -1103.2366
+130546.2603822516 3.5866318 -1103.2562
+130547.2603823019 3.5865922 -1103.2761
+130548.2603823522 3.5865529 -1103.2761
+130549.2603824025 3.5865135 -1103.2761
+130550.2603824527 3.5865529 -1103.2761
+130551.260382503 3.5866318 -1103.2761
+130552.2603825533 3.5864742 -1103.1576
+130553.2603826036 3.5865922 -1103.197
+130554.2603826539 3.5865135 -1103.2168
+130555.2603827042 3.5864742 -1103.2959
+130556.2603827545 3.5865135 -1103.3551
+130557.2603828048 3.5864742 -1103.2959
+130558.2603828551 3.5865135 -1103.2366
+130559.2603829054 3.5863562 -1103.1576
+130560.2603829557 3.5863955 -1103.197
+130561.260383006 3.5864742 -1103.3156
+130562.2603830562 3.5864348 -1103.1378
+130563.2603831065 3.5863955 -1103.2562
+130564.2603831568 3.5864742 -1103.2366
+130565.2603832071 3.5864348 -1103.2366
+130566.2603832574 3.5864348 -1103.1774
+130567.2603833077 3.5863562 -1103.1378
+130568.260383358 3.5863562 -1103.197
+130569.2603834083 3.5864742 -1103.2366
+130570.2603834586 3.5864742 -1103.1774
+130571.2603835089 3.5863562 -1103.2168
+130572.2603835592 3.5865135 -1103.2761
+130573.2603836095 3.5863955 -1103.2366
+130574.2603836597 3.5863168 -1103.2562
+130575.26038371 3.5863562 -1103.197
+130576.2603837603 3.5862772 -1103.1576
+130577.2603838106 3.5863562 -1103.2366
+130578.2603838609 3.5863562 -1103.2562
+130579.2603839112 3.5863562 -1103.2562
+130580.2603839615 3.5862772 -1103.2366
+130581.2603840118 3.5863168 -1103.197
+130582.2603840621 3.5863168 -1103.2959
+130583.2603841124 3.5862772 -1103.2366
+130584.2603841627 3.5862379 -1103.2168
+130585.2603842129 3.5862772 -1103.1576
+130586.2603842632 3.5863168 -1103.2366
+130587.2603843135 3.5863168 -1103.2168
+130588.2603843638 3.5863955 -1103.2562
+130589.2603844141 3.5862772 -1103.2959
+130590.2603844644 3.5861986 -1103.2168
+130591.2603845147 3.5862379 -1103.1774
+130592.260384565 3.5862379 -1103.2761
+130593.2603846153 3.5861986 -1103.1576
+130594.2603846656 3.5862379 -1103.1378
+130595.2603847159 3.5863168 -1103.2959
+130596.2603847662 3.5862379 -1103.2366
+130597.2603848164 3.5861986 -1103.2366
+130598.2603848667 3.5862772 -1103.1774
+130599.260384917 3.5861592 -1103.2168
+130600.2603849673 3.5861986 -1103.3945
+130601.2603850176 3.5860806 -1103.197
+130602.2603850679 3.5862379 -1103.2366
+130603.2603851182 3.5861592 -1103.2168
+130604.2603851685 3.5860806 -1103.2562
+130605.2603852188 3.5861592 -1103.2959
+130606.2603852691 3.5861592 -1103.2562
+130607.2603853194 3.5860806 -1103.197
+130608.2603853696 3.5860806 -1103.2366
+130609.2603854199 3.5861986 -1103.2562
+130610.2603854702 3.5860019 -1103.197
+130611.2603855205 3.5860019 -1103.2168
+130612.2603855708 3.5860806 -1103.1774
+130613.2603856211 3.5861199 -1103.1576
+130614.2603856714 3.5860412 -1103.197
+130615.2603857217 3.585923 -1103.2366
+130616.260385772 3.5860019 -1103.197
+130617.2603858223 3.5860019 -1103.2366
+130618.2603858726 3.5860806 -1103.2168
+130619.2603859229 3.5860019 -1103.2366
+130620.2603859731 3.5861199 -1103.1774
+130621.2603860234 3.5860019 -1103.2168
+130622.2603860737 3.5860806 -1103.2366
+130623.260386124 3.5860019 -1103.2366
+130624.2603861743 3.5858836 -1103.197
+130625.2603862246 3.5860019 -1103.2168
+130626.2603862749 3.5860019 -1103.2366
+130627.2603863252 3.5860806 -1103.197
+130628.2603863755 3.585923 -1103.2168
+130629.2603864258 3.5860412 -1103.2168
+130630.2603864761 3.5859623 -1103.197
+130631.2603865264 3.5858049 -1103.2959
+130632.2603865766 3.5859623 -1103.2562
+130633.2603866269 3.585923 -1103.2366
+130634.2603866772 3.5859623 -1103.2562
+130635.2603867275 3.5860019 -1103.2562
+130636.2603867778 3.5858049 -1103.1774
+130637.2603868281 3.585923 -1103.2562
+130638.2603868784 3.5858836 -1103.3156
+130639.2603869287 3.5859623 -1103.2562
+130640.260386979 3.585923 -1103.197
+130641.2603870293 3.5858443 -1103.2761
+130642.2603870796 3.5858836 -1103.197
+130643.2603871298 3.5858049 -1103.2562
+130644.2603871801 3.5858049 -1103.2761
+130645.2603872304 3.5858836 -1103.2168
+130646.2603872807 3.5858443 -1103.1774
+130647.260387331 3.585923 -1103.2366
+130648.2603873813 3.5857263 -1103.2959
+130649.2603874316 3.5858443 -1103.2959
+130650.2603874819 3.5858836 -1103.2168
+130651.2603875322 3.5857656 -1103.2366
+130652.2603875825 3.5857263 -1103.2366
+130653.2603876328 3.5858049 -1103.2168
+130654.2603876831 3.5858049 -1103.197
+130655.2603877333 3.5857263 -1103.1576
+130656.2603877836 3.5858049 -1103.2562
+130657.2603878339 3.5857656 -1103.2959
+130658.2603878842 3.5857263 -1103.2366
+130659.2603879345 3.5856869 -1103.1774
+130660.2603879848 3.5857263 -1103.2562
+130661.2603880351 3.5857263 -1103.2366
+130662.2603880854 3.5858443 -1103.2562
+130663.2603881357 3.5857656 -1103.1774
+130664.260388186 3.5856869 -1103.1774
+130665.2603882363 3.5857263 -1103.197
+130666.2603882866 3.585608 -1103.2168
+130667.2603883368 3.585608 -1103.197
+130668.2603883871 3.5856473 -1103.197
+130669.2603884374 3.5855687 -1103.2761
+130670.2603884877 3.5857263 -1103.2959
+130671.260388538 3.5856869 -1103.2168
+130672.2603885883 3.5856869 -1103.3353
+130673.2603886386 3.5856473 -1103.2366
+130674.2603886889 3.5856473 -1103.2366
+130675.2603887392 3.5855687 -1103.1774
+130676.2603887895 3.5855293 -1103.2168
+130677.2603888398 3.5856869 -1103.2761
+130678.26038889 3.5855293 -1103.2562
+130679.2603889403 3.585608 -1103.197
+130680.2603889906 3.58549 -1103.2168
+130681.2603890409 3.585608 -1103.197
+130682.2603890912 3.5855687 -1103.2168
+130683.2603891415 3.5855293 -1103.2959
+130684.2603891918 3.5855293 -1103.1576
+130685.2603892421 3.5854113 -1103.2562
+130686.2603892924 3.5854506 -1103.2366
+130687.2603893427 3.5854506 -1103.1182
+130688.260389393 3.5855293 -1103.197
+130689.2603894433 3.5855687 -1103.1774
+130690.2603894935 3.5855293 -1103.2562
+130691.2603895438 3.585372 -1103.1774
+130692.2603895941 3.5854506 -1103.2761
+130693.2603896444 3.5854113 -1103.2761
+130694.2603896947 3.5854113 -1103.2366
+130695.260389745 3.5854506 -1103.2168
+130696.2603897953 3.5854506 -1103.197
+130697.2603898456 3.5854113 -1103.2761
+130698.2603898959 3.5854113 -1103.2761
+130699.2603899462 3.5854113 -1103.197
+130700.2603899965 3.58549 -1103.2168
+130701.2603900468 3.5854506 -1103.2761
+130702.260390097 3.585372 -1103.2562
+130703.2603901473 3.585372 -1103.1576
+130704.2603901976 3.5854113 -1103.2168
+130705.2603902479 3.5853324 -1103.2959
+130706.2603902982 3.5852537 -1103.2366
+130707.2603903485 3.5853324 -1103.2761
+130708.2603903988 3.5852931 -1103.197
+130709.2603904491 3.5852144 -1103.197
+130710.2603904994 3.5854113 -1103.2168
+130711.2603905497 3.58549 -1103.2562
+130712.2603906 3.5853324 -1103.2366
+130713.2603906502 3.5852144 -1103.1774
+130714.2603907005 3.5853324 -1103.2761
+130715.2603907508 3.5852537 -1103.197
+130716.2603908011 3.5852537 -1103.1774
+130717.2603908514 3.5853324 -1103.2366
+130718.2603909017 3.5852144 -1103.1774
+130719.260390952 3.5852537 -1103.2168
+130720.2603910023 3.5852144 -1103.2366
+130721.2603910526 3.5851357 -1103.1774
+130722.2603911029 3.5852144 -1103.2366
+130723.2603911532 3.5852537 -1103.2761
+130724.2603912035 3.585175 -1103.2366
+130725.2603912537 3.585175 -1103.2168
+130726.260391304 3.5850964 -1103.2168
+130727.2603913543 3.5851357 -1103.2366
+130728.2603914046 3.5852931 -1103.1576
+130729.2603914549 3.5851357 -1103.2366
+130730.2603915052 3.585175 -1103.2366
+130731.2603915555 3.5850174 -1103.1576
+130732.2603916058 3.585175 -1103.3156
+130733.2603916561 3.5851357 -1103.2366
+130734.2603917064 3.5850964 -1103.2168
+130735.2603917567 3.5851357 -1103.2366
+130736.260391807 3.5850568 -1103.2168
+130737.2603918572 3.5850964 -1103.197
+130738.2603919075 3.5850568 -1103.197
+130739.2603919578 3.5849781 -1103.2168
+130740.2603920081 3.5850174 -1103.197
+130741.2603920584 3.5850568 -1103.2168
+130742.2603921087 3.5850964 -1103.197
+130743.260392159 3.5850568 -1103.197
+130744.2603922093 3.5849781 -1103.197
+130745.2603922596 3.5850174 -1103.2562
+130746.2603923099 3.5850174 -1103.2366
+130747.2603923602 3.5849388 -1103.2761
+130748.2603924104 3.5849781 -1103.2959
+130749.2603924607 3.5850174 -1103.2562
+130750.260392511 3.5849781 -1103.197
+130751.2603925613 3.5850568 -1103.2761
+130752.2603926116 3.5849388 -1103.2761
+130753.2603926619 3.5849781 -1103.2366
+130754.2603927122 3.5848601 -1103.2761
+130755.2603927625 3.5848994 -1103.2562
+130756.2603928128 3.5848994 -1103.2562
+130757.2603928631 3.5848207 -1103.1378
+130758.2603929134 3.5848601 -1103.1774
+130759.2603929637 3.5848994 -1103.2168
+130760.2603930139 3.5848994 -1103.2168
+130761.2603930642 3.5848207 -1103.2959
+130762.2603931145 3.5848994 -1103.2562
+130763.2603931648 3.5848207 -1103.1774
+130764.2603932151 3.5849388 -1103.2168
+130765.2603932654 3.5849388 -1103.2959
+130766.2603933157 3.5848207 -1103.1182
+130767.260393366 3.5847418 -1103.2562
+130768.2603934163 3.5848207 -1103.1378
+130769.2603934666 3.5848207 -1103.2366
+130770.2603935169 3.5847418 -1103.1774
+130771.2603935672 3.5847418 -1103.2562
+130772.2603936174 3.5848207 -1103.1774
+130773.2603936677 3.5848207 -1103.197
+130774.260393718 3.5847814 -1103.2959
+130775.2603937683 3.5847814 -1103.197
+130776.2603938186 3.5847418 -1103.2562
+130777.2603938689 3.5847418 -1103.2168
+130778.2603939192 3.5847814 -1103.2366
+130779.2603939695 3.5847418 -1103.2562
+130780.2603940198 3.5847025 -1103.2562
+130781.2603940701 3.5848207 -1103.1182
+130782.2603941204 3.5846632 -1103.2168
+130783.2603941706 3.5847025 -1103.1774
+130784.2603942209 3.5846632 -1103.2959
+130785.2603942712 3.5847814 -1103.2168
+130786.2603943215 3.5847418 -1103.2366
+130787.2603943718 3.5845845 -1103.2366
+130788.2603944221 3.5846238 -1103.2366
+130789.2603944724 3.5847814 -1103.197
+130790.2603945227 3.5846632 -1103.2168
+130791.260394573 3.5845058 -1103.197
+130792.2603946233 3.5845845 -1103.2562
+130793.2603946736 3.5845451 -1103.2366
+130794.2603947239 3.5846632 -1103.3156
+130795.2603947741 3.5845845 -1103.197
+130796.2603948244 3.5846238 -1103.2761
+130797.2603948747 3.5846238 -1103.2562
+130798.260394925 3.5847418 -1103.2761
+130799.2603949753 3.5845451 -1103.1576
+130800.2603950256 3.5846238 -1103.197
+130801.2603950759 3.5845451 -1103.2366
+130802.2603951262 3.5845451 -1103.2168
+130803.2603951765 3.5845451 -1103.2562
+130804.2603952268 3.5844665 -1103.2562
+130805.2603952771 3.5845845 -1103.2562
+130806.2603953274 3.5845845 -1103.2168
+130807.2603953776 3.5845451 -1103.1774
+130808.2603954279 3.5845451 -1103.2366
+130809.2603954782 3.5844665 -1103.1774
+130810.2603955285 3.5845451 -1103.2366
+130811.2603955788 3.5845058 -1103.1774
+130812.2603956291 3.5845845 -1103.1774
+130813.2603956794 3.5845058 -1103.197
+130814.2603957297 3.5845845 -1103.197
+130815.26039578 3.5845451 -1103.2366
+130816.2603958303 3.5845451 -1103.2168
+130817.2603958806 3.5845058 -1103.3156
+130818.2603959308 3.5843875 -1103.2761
+130819.2603959811 3.5844665 -1103.2366
+130820.2603960314 3.5844269 -1103.2761
+130821.2603960817 3.5844269 -1103.197
+130822.260396132 3.5843482 -1103.2366
+130823.2603961823 3.5843875 -1103.2761
+130824.2603962326 3.5843089 -1103.2959
+130825.2603962829 3.5843482 -1103.2168
+130826.2603963332 3.5842695 -1103.1774
+130827.2603963835 3.5844269 -1103.3551
+130828.2603964338 3.5843875 -1103.2562
+130829.2603964841 3.5843089 -1103.197
+130830.2603965343 3.5843482 -1103.3156
+130831.2603965846 3.5842302 -1103.197
+130832.2603966349 3.5842695 -1103.197
+130833.2603966852 3.5843875 -1103.2562
+130834.2603967355 3.5842302 -1103.197
+130835.2603967858 3.5843089 -1103.2562
+130836.2603968361 3.5843089 -1103.2761
+130837.2603968864 3.5842302 -1103.1378
+130838.2603969367 3.5842695 -1103.197
+130839.260396987 3.5842302 -1103.2168
+130840.2603970373 3.5841908 -1103.2562
+130841.2603970876 3.5842695 -1103.2761
+130842.2603971378 3.5842302 -1103.2168
+130843.2603971881 3.5840333 -1103.2959
+130844.2603972384 3.5842695 -1103.2761
+130845.2603972887 3.5843089 -1103.2562
+130846.260397339 3.5841515 -1103.2168
+130847.2603973893 3.5841908 -1103.2366
+130848.2603974396 3.5841908 -1103.2562
+130849.2603974899 3.5841515 -1103.1576
+130850.2603975402 3.5841515 -1103.1774
+130851.2603975905 3.5841119 -1103.2366
+130852.2603976408 3.5842302 -1103.197
+130853.260397691 3.5841908 -1103.1774
+130854.2603977413 3.5841119 -1103.2168
+130855.2603977916 3.5841908 -1103.1378
+130856.2603978419 3.5841908 -1103.2366
+130857.2603978922 3.5840726 -1103.2562
+130858.2603979425 3.5842302 -1103.197
+130859.2603979928 3.5842302 -1103.2761
+130860.2603980431 3.5839939 -1103.3353
+130861.2603980934 3.5840726 -1103.2168
+130862.2603981437 3.5841119 -1103.2562
+130863.260398194 3.5840333 -1103.2761
+130864.2603982443 3.5841908 -1103.2761
+130865.2603982945 3.5841515 -1103.2562
+130866.2603983448 3.5840333 -1103.2366
+130867.2603983951 3.5839939 -1103.2562
+130868.2603984454 3.5840726 -1103.2562
+130869.2603984957 3.5841119 -1103.2168
+130870.260398546 3.5840333 -1103.2761
+130871.2603985963 3.5839939 -1103.2366
+130872.2603986466 3.5839546 -1103.2562
+130873.2603986969 3.5839546 -1103.2761
+130874.2603987472 3.5840333 -1103.0984
+130875.2603987975 3.5839939 -1103.1576
+130876.2603988478 3.5840333 -1103.1576
+130877.260398898 3.5839939 -1103.2366
+130878.2603989483 3.5839152 -1103.2562
+130879.2603989986 3.5839152 -1103.2562
+130880.2603990489 3.5840333 -1103.2168
+130881.2603990992 3.5840333 -1103.2562
+130882.2603991495 3.5839152 -1103.2366
+130883.2603991998 3.5839546 -1103.2168
+130884.2603992501 3.5839546 -1103.2168
+130885.2603993004 3.5839939 -1103.3156
+130886.2603993507 3.5838759 -1103.197
+130887.260399401 3.583797 -1103.2168
+130888.2603994512 3.5839939 -1103.2761
+130889.2603995015 3.5838366 -1103.2168
+130890.2603995518 3.5838366 -1103.2761
+130891.2603996021 3.583797 -1103.2562
+130892.2603996524 3.5838759 -1103.197
+130893.2603997027 3.583797 -1103.2761
+130894.260399753 3.5838366 -1103.1774
+130895.2603998033 3.5838366 -1103.2168
+130896.2603998536 3.583797 -1103.2366
+130897.2603999039 3.5838366 -1103.2562
+130898.2603999542 3.5838366 -1103.197
+130899.2604000045 3.5837576 -1103.1774
+130900.2604000547 3.5837576 -1103.1576
+130901.260400105 3.583797 -1103.1774
+130902.2604001553 3.5837576 -1103.2168
+130903.2604002056 3.5837576 -1103.2761
+130904.2604002559 3.583679 -1103.2562
+130905.2604003062 3.5838759 -1103.1774
+130906.2604003565 3.583679 -1103.2366
+130907.2604004068 3.5837183 -1103.197
+130908.2604004571 3.5838366 -1103.2168
+130909.2604005074 3.5837576 -1103.2366
+130910.2604005577 3.5837576 -1103.2168
+130911.2604006079 3.583797 -1103.2761
+130912.2604006582 3.5837576 -1103.2562
+130913.2604007085 3.583679 -1103.2366
+130914.2604007588 3.583679 -1103.197
+130915.2604008091 3.583679 -1103.2366
+130916.2604008594 3.5836396 -1103.2366
+130917.2604009097 3.5837576 -1103.2761
+130918.26040096 3.583679 -1103.1576
+130919.2604010103 3.5836396 -1103.197
+130920.2604010606 3.5836396 -1103.1576
+130921.2604011109 3.5835216 -1103.197
+130922.2604011612 3.5836003 -1103.2959
+130923.2604012114 3.5835609 -1103.2959
+130924.2604012617 3.5836003 -1103.1378
+130925.260401312 3.5835216 -1103.1774
+130926.2604013623 3.5835216 -1103.2562
+130927.2604014126 3.5835609 -1103.1576
+130928.2604014629 3.5835609 -1103.2366
+130929.2604015132 3.5835216 -1103.1182
+130930.2604015635 3.583482 -1103.1378
+130931.2604016138 3.5835216 -1103.2562
+130932.2604016641 3.5835609 -1103.2562
+130933.2604017144 3.5835609 -1103.3156
+130934.2604017647 3.583482 -1103.2168
+130935.2604018149 3.5836003 -1103.1774
+130936.2604018652 3.5835609 -1103.2366
+130937.2604019155 3.583482 -1103.2959
+130938.2604019658 3.5835216 -1103.197
+130939.2604020161 3.5836003 -1103.2168
+130940.2604020664 3.5834033 -1103.2168
+130941.2604021167 3.5835216 -1103.2168
+130942.260402167 3.5834427 -1103.2761
+130943.2604022173 3.5835216 -1103.2366
+130944.2604022676 3.5834033 -1103.2761
+130945.2604023179 3.583482 -1103.197
+130946.2604023681 3.583482 -1103.2761
+130947.2604024184 3.5834427 -1103.197
+130948.2604024687 3.583364 -1103.2366
+130949.260402519 3.583482 -1103.1576
+130950.2604025693 3.5834427 -1103.1774
+130951.2604026196 3.583364 -1103.197
+130952.2604026699 3.5834427 -1103.2761
+130953.2604027202 3.5834427 -1103.1576
+130954.2604027705 3.5834033 -1103.2761
+130955.2604028208 3.583364 -1103.2761
+130956.2604028711 3.5834033 -1103.2168
+130957.2604029214 3.5834033 -1103.197
+130958.2604029716 3.583246 -1103.2168
+130959.2604030219 3.5833247 -1103.2562
+130960.2604030722 3.5833247 -1103.3353
+130961.2604031225 3.583364 -1103.2168
+130962.2604031728 3.5832853 -1103.2168
+130963.2604032231 3.5832853 -1103.1774
+130964.2604032734 3.5833247 -1103.2366
+130965.2604033237 3.5831671 -1103.2168
+130966.260403374 3.5833247 -1103.2366
+130967.2604034243 3.5833247 -1103.2168
+130968.2604034746 3.5831671 -1103.197
+130969.2604035249 3.5832064 -1103.197
+130970.2604035751 3.583246 -1103.2366
+130971.2604036254 3.5831671 -1103.2761
+130972.2604036757 3.5832064 -1103.1378
+130973.260403726 3.5832853 -1103.1576
+130974.2604037763 3.583246 -1103.197
+130975.2604038266 3.5832064 -1103.2366
+130976.2604038769 3.5831671 -1103.2562
+130977.2604039272 3.5832064 -1103.2366
+130978.2604039775 3.5830884 -1103.1576
+130979.2604040278 3.5832064 -1103.2168
+130980.2604040781 3.5831671 -1103.2168
+130981.2604041283 3.5831671 -1103.2366
+130982.2604041786 3.5831277 -1103.3156
+130983.2604042289 3.5830884 -1103.2168
+130984.2604042792 3.5831277 -1103.2366
+130985.2604043295 3.5832064 -1103.2959
+130986.2604043798 3.5830884 -1103.2168
+130987.2604044301 3.5830491 -1103.2366
+130988.2604044804 3.5830491 -1103.2168
+130989.2604045307 3.5830097 -1103.197
+130990.260404581 3.5830884 -1103.197
+130991.2604046313 3.582931 -1103.1576
+130992.2604046816 3.5829704 -1103.1378
+130993.2604047318 3.5830491 -1103.1774
+130994.2604047821 3.5830884 -1103.2562
+130995.2604048324 3.5830491 -1103.2562
+130996.2604048827 3.5829704 -1103.2761
+130997.260404933 3.5830097 -1103.197
+130998.2604049833 3.5830491 -1103.2168
+130999.2604050336 3.5830097 -1103.2168
+131000.2604050839 3.582931 -1103.2562
+131001.2604051342 3.5829704 -1103.2168
+131002.2604051845 3.5828521 -1103.2959
+131003.2604052348 3.582931 -1103.2168
+131004.2604052851 3.5830097 -1103.2562
+131005.2604053353 3.5830097 -1103.2562
+131006.2604053856 3.582931 -1103.197
+131007.2604054359 3.582931 -1103.2562
+131008.2604054862 3.582931 -1103.1774
+131009.2604055365 3.582931 -1103.2168
+131010.2604055868 3.5828915 -1103.1774
+131011.2604056371 3.5828915 -1103.2366
+131012.2604056874 3.5828521 -1103.197
+131013.2604057377 3.582931 -1103.1378
+131014.260405788 3.5828521 -1103.1774
+131015.2604058383 3.5828128 -1103.2562
+131016.2604058885 3.5828915 -1103.2366
+131017.2604059388 3.5828521 -1103.197
+131018.2604059891 3.5828128 -1103.2959
+131019.2604060394 3.5828521 -1103.2562
+131020.2604060897 3.5827341 -1103.197
+131021.26040614 3.5828521 -1103.1774
+131022.2604061903 3.5828521 -1103.2366
+131023.2604062406 3.5828128 -1103.2562
+131024.2604062909 3.5826948 -1103.2366
+131025.2604063412 3.5827734 -1103.2168
+131026.2604063915 3.5828128 -1103.2168
+131027.2604064418 3.5826948 -1103.2562
+131028.260406492 3.5828128 -1103.1182
+131029.2604065423 3.5826554 -1103.1774
+131030.2604065926 3.5826554 -1103.3156
+131031.2604066429 3.5826554 -1103.2959
+131032.2604066932 3.5826554 -1103.1774
+131033.2604067435 3.5828128 -1103.2168
+131034.2604067938 3.5826948 -1103.197
+131035.2604068441 3.5827734 -1103.2366
+131036.2604068944 3.5826554 -1103.2366
+131037.2604069447 3.5827341 -1103.197
+131038.260406995 3.5827341 -1103.197
+131039.2604070453 3.5826554 -1103.2366
+131040.2604070955 3.5826554 -1103.3156
+131041.2604071458 3.5826948 -1103.1576
+131042.2604071961 3.5826161 -1103.2761
+131043.2604072464 3.5826161 -1103.197
+131044.2604072967 3.5826948 -1103.1576
+131045.260407347 3.5827341 -1103.1774
+131046.2604073973 3.5826554 -1103.1774
+131047.2604074476 3.5826161 -1103.2562
+131048.2604074979 3.5826161 -1103.197
+131049.2604075482 3.5825372 -1103.2168
+131050.2604075985 3.5826554 -1103.3156
+131051.2604076487 3.5825372 -1103.2366
+131052.260407699 3.5826161 -1103.2562
+131053.2604077493 3.5824585 -1103.197
+131054.2604077996 3.5826161 -1103.2168
+131055.2604078499 3.5825372 -1103.2761
+131056.2604079002 3.5825372 -1103.197
+131057.2604079505 3.5825765 -1103.2366
+131058.2604080008 3.5825372 -1103.3353
+131059.2604080511 3.5824192 -1103.1774
+131060.2604081014 3.5824978 -1103.197
+131061.2604081517 3.5825372 -1103.2562
+131062.260408202 3.5824978 -1103.2366
+131063.2604082522 3.5825372 -1103.1774
+131064.2604083025 3.5824978 -1103.2562
+131065.2604083528 3.5824978 -1103.2366
+131066.2604084031 3.5824192 -1103.1774
+131067.2604084534 3.5824978 -1103.1774
+131068.2604085037 3.5824585 -1103.1378
+131069.260408554 3.5823405 -1103.2562
+131070.2604086043 3.5823798 -1103.1576
+131071.2604086546 3.5823798 -1103.2959
+131072.2604087191 3.5824585 -1103.2168
+131073.2604088234 3.5824192 -1103.1378
+131074.2604089277 3.5823798 -1103.2168
+131075.260409032 3.5823405 -1103.1378
+131076.2604091363 3.5823798 -1103.2168
+131077.2604092406 3.5823405 -1103.197
+131078.2604093449 3.5823798 -1103.2562
+131079.2604094492 3.5823798 -1103.2366
+131080.2604095535 3.5823011 -1103.2168
+131081.2604096578 3.5822616 -1103.197
+131082.2604097622 3.5822616 -1103.197
+131083.2604098665 3.5823011 -1103.1378
+131084.2604099708 3.5823405 -1103.2366
+131085.2604100751 3.5823011 -1103.2562
+131086.2604101794 3.5823011 -1103.2168
+131087.2604102837 3.5823011 -1103.2562
+131088.260410388 3.5822616 -1103.197
+131089.2604104923 3.5823011 -1103.2168
+131090.2604105966 3.5822222 -1103.2366
+131091.2604107009 3.5823405 -1103.2959
+131092.2604108052 3.5822222 -1103.197
+131093.2604109095 3.5822222 -1103.2366
+131094.2604110138 3.5821829 -1103.1774
+131095.2604111182 3.5821435 -1103.1774
+131096.2604112225 3.5822222 -1103.197
+131097.2604113268 3.5822222 -1103.197
+131098.2604114311 3.5821829 -1103.1774
+131099.2604115354 3.5821829 -1103.2562
+131100.2604116397 3.5821829 -1103.2761
+131101.260411744 3.5821042 -1103.2366
+131102.2604118483 3.5821829 -1103.2562
+131103.2604119526 3.5820649 -1103.2761
+131104.2604120569 3.5822222 -1103.2761
+131105.2604121612 3.5821829 -1103.2761
+131106.2604122655 3.5821435 -1103.2562
+131107.2604123699 3.5821435 -1103.2959
+131108.2604124742 3.5821829 -1103.2168
+131109.2604125785 3.5821829 -1103.1576
+131110.2604126828 3.5820255 -1103.1378
+131111.2604127871 3.5821042 -1103.2761
+131112.2604128914 3.5819862 -1103.1774
+131113.2604129957 3.5821042 -1103.2168
+131114.2604131 3.5821042 -1103.2168
+131115.2604132043 3.5821042 -1103.2562
+131116.2604133086 3.5821042 -1103.1774
+131117.2604134129 3.5820649 -1103.1774
+131118.2604135172 3.5820649 -1103.2168
+131119.2604136216 3.5819862 -1103.2959
+131120.2604137259 3.5819466 -1103.1576
+131121.2604138302 3.5819073 -1103.2168
+131122.2604139345 3.5819466 -1103.197
+131123.2604140388 3.5820255 -1103.1378
+131124.2604141431 3.5819466 -1103.1576
+131125.2604142474 3.5820255 -1103.2761
+131126.2604143517 3.5820649 -1103.197
+131127.260414456 3.5818679 -1103.2168
+131128.2604145603 3.5819862 -1103.1774
+131129.2604146646 3.5818679 -1103.197
+131130.2604147689 3.5819466 -1103.1576
+131131.2604148733 3.5819862 -1103.2366
+131132.2604149776 3.5817893 -1103.2366
+131133.2604150819 3.5819862 -1103.2761
+131134.2604151862 3.5818679 -1103.2562
+131135.2604152905 3.5819073 -1103.2562
+131136.2604153948 3.5819073 -1103.197
+131137.2604154991 3.5817893 -1103.197
+131138.2604156034 3.5818679 -1103.3156
+131139.2604157077 3.5819073 -1103.1774
+131140.260415812 3.5818286 -1103.2761
+131141.2604159163 3.5818679 -1103.2168
+131142.2604160206 3.5818286 -1103.2562
+131143.2604161249 3.5818679 -1103.3156
+131144.2604162293 3.5817106 -1103.2366
+131145.2604163336 3.5818286 -1103.2366
+131146.2604164379 3.5817893 -1103.197
+131147.2604165422 3.5817499 -1103.2168
+131148.2604166465 3.5817106 -1103.1774
+131149.2604167508 3.5816712 -1103.197
+131150.2604168551 3.5816712 -1103.2761
+131151.2604169594 3.5817893 -1103.1774
+131152.2604170637 3.5817893 -1103.2562
+131153.260417168 3.5817106 -1103.197
+131154.2604172723 3.5817499 -1103.2959
+131155.2604173766 3.5817499 -1103.2562
+131156.260417481 3.5816712 -1103.2761
+131157.2604175853 3.5817893 -1103.2366
+131158.2604176896 3.5817499 -1103.2761
+131159.2604177939 3.5817499 -1103.2562
+131160.2604178982 3.5816317 -1103.197
+131161.2604180025 3.5817106 -1103.2366
+131162.2604181068 3.5816317 -1103.197
+131163.2604182111 3.5816317 -1103.2959
+131164.2604183154 3.5815923 -1103.197
+131165.2604184197 3.5816317 -1103.2168
+131166.260418524 3.5816317 -1103.2366
+131167.2604186283 3.5816712 -1103.2168
+131168.2604187327 3.5815136 -1103.2562
+131169.260418837 3.5815136 -1103.2366
+131170.2604189413 3.5816317 -1103.197
+131171.2604190456 3.5815923 -1103.197
+131172.2604191499 3.581553 -1103.2959
+131173.2604192542 3.5815136 -1103.197
+131174.2604193585 3.5815136 -1103.1774
+131175.2604194628 3.581553 -1103.2761
+131176.2604195671 3.5815136 -1103.0984
+131177.2604196714 3.5815136 -1103.2761
+131178.2604197757 3.5814743 -1103.197
+131179.26041988 3.581435 -1103.3156
+131180.2604199843 3.5814743 -1103.2562
+131181.2604200887 3.5815136 -1103.2562
+131182.260420193 3.5814743 -1103.2366
+131183.2604202973 3.581553 -1103.2761
+131184.2604204016 3.581553 -1103.1774
+131185.2604205059 3.5813956 -1103.2761
+131186.2604206102 3.5813956 -1103.1774
+131187.2604207145 3.581435 -1103.2761
+131188.2604208188 3.5814743 -1103.197
+131189.2604209231 3.5813167 -1103.2366
+131190.2604210274 3.5813167 -1103.2366
+131191.2604211317 3.5814743 -1103.2366
+131192.260421236 3.5814743 -1103.1576
+131193.2604213404 3.581356 -1103.2168
+131194.2604214447 3.581435 -1103.2761
+131195.260421549 3.5813167 -1103.2366
+131196.2604216533 3.5812774 -1103.197
+131197.2604217576 3.5813167 -1103.1774
+131198.2604218619 3.5812774 -1103.2761
+131199.2604219662 3.581356 -1103.2562
+131200.2604220705 3.5813167 -1103.2168
+131201.2604221748 3.5813167 -1103.1774
+131202.2604222791 3.5813167 -1103.2562
+131203.2604223834 3.5813167 -1103.197
+131204.2604224877 3.5812774 -1103.2959
+131205.2604225921 3.5813167 -1103.1774
+131206.2604226964 3.5813956 -1103.2366
+131207.2604228007 3.5811987 -1103.1576
+131208.260422905 3.5812774 -1103.1774
+131209.2604230093 3.5813167 -1103.2562
+131210.2604231136 3.5813167 -1103.2168
+131211.2604232179 3.5813167 -1103.197
+131212.2604233222 3.581238 -1103.2562
+131213.2604234265 3.581238 -1103.2366
+131214.2604235308 3.5811987 -1103.2562
+131215.2604236351 3.5810807 -1103.1774
+131216.2604237394 3.5811987 -1103.2168
+131217.2604238437 3.5811987 -1103.2366
+131218.2604239481 3.581238 -1103.3551
+131219.2604240524 3.58112 -1103.1576
+131220.2604241567 3.58112 -1103.1576
+131221.260424261 3.58112 -1103.2168
+131222.2604243653 3.5811594 -1103.197
+131223.2604244696 3.58112 -1103.1576
+131224.2604245739 3.5810807 -1103.1378
+131225.2604246782 3.5811987 -1103.2168
+131226.2604247825 3.5810807 -1103.2366
+131227.2604248868 3.58112 -1103.2761
+131228.2604249911 3.5810411 -1103.2562
+131229.2604250954 3.5809624 -1103.1182
+131230.2604251998 3.58112 -1103.1576
+131231.2604253041 3.5810807 -1103.1576
+131232.2604254084 3.58112 -1103.1774
+131233.2604255127 3.5810411 -1103.1774
+131234.260425617 3.5808837 -1103.3156
+131235.2604257213 3.5810018 -1103.2168
+131236.2604258256 3.5810411 -1103.3156
+131237.2604259299 3.5810018 -1103.197
+131238.2604260342 3.5810018 -1103.2562
+131239.2604261385 3.5810018 -1103.2366
+131240.2604262428 3.5809624 -1103.197
+131241.2604263471 3.5810411 -1103.197
+131242.2604264515 3.5810807 -1103.197
+131243.2604265558 3.5810018 -1103.2168
+131244.2604266601 3.5809624 -1103.3156
+131245.2604267644 3.5809231 -1103.2562
+131246.2604268687 3.5809231 -1103.197
+131247.260426973 3.5808837 -1103.2959
+131248.2604270773 3.5809231 -1103.197
+131249.2604271816 3.5809231 -1103.2761
+131250.2604272859 3.5808837 -1103.2366
+131251.2604273902 3.5808444 -1103.3156
+131252.2604274945 3.5808051 -1103.2562
+131253.2604275988 3.5808837 -1103.1576
+131254.2604277032 3.5808444 -1103.2366
+131255.2604278075 3.5808051 -1103.2366
+131256.2604279118 3.5808444 -1103.3156
+131257.2604280161 3.5808051 -1103.197
+131258.2604281204 3.5808837 -1103.2366
+131259.2604282247 3.5808051 -1103.2366
+131260.260428329 3.5808444 -1103.2366
+131261.2604284333 3.5807657 -1103.1774
+131262.2604285376 3.5808444 -1103.197
+131263.2604286419 3.5808051 -1103.2366
+131264.2604287462 3.5808051 -1103.1774
+131265.2604288505 3.5807657 -1103.2366
+131266.2604289548 3.5807657 -1103.2761
+131267.2604290592 3.5807657 -1103.2761
+131268.2604291635 3.5807657 -1103.2168
+131269.2604292678 3.5807657 -1103.1774
+131270.2604293721 3.5807657 -1103.2168
+131271.2604294764 3.5807261 -1103.2168
+131272.2604295807 3.5807657 -1103.2366
+131273.260429685 3.5807261 -1103.2366
+131274.2604297893 3.5806868 -1103.1774
+131275.2604298936 3.5806475 -1103.2562
+131276.2604299979 3.5807657 -1103.2168
+131277.2604301022 3.5806081 -1103.2761
+131278.2604302065 3.5808051 -1103.1774
+131279.2604303109 3.5806868 -1103.2761
+131280.2604304152 3.5806475 -1103.3156
+131281.2604305195 3.5806081 -1103.2168
+131282.2604306238 3.5807261 -1103.197
+131283.2604307281 3.5807261 -1103.1576
+131284.2604308324 3.5806081 -1103.2366
+131285.2604309367 3.5806868 -1103.3353
+131286.260431041 3.5806081 -1103.1378
+131287.2604311453 3.5806475 -1103.197
+131288.2604312496 3.5805688 -1103.2168
+131289.2604313539 3.5806081 -1103.2366
+131290.2604314582 3.5806475 -1103.2959
+131291.2604315626 3.5806081 -1103.1576
+131292.2604316669 3.5805295 -1103.1576
+131293.2604317712 3.5804901 -1103.2562
+131294.2604318755 3.5805688 -1103.197
+131295.2604319798 3.5806081 -1103.2366
+131296.2604320841 3.5806081 -1103.2366
+131297.2604321884 3.5806475 -1103.2562
+131298.2604322927 3.5805295 -1103.2168
+131299.260432397 3.5805688 -1103.1182
+131300.2604325013 3.5805295 -1103.2168
+131301.2604326056 3.5805295 -1103.1774
+131302.2604327099 3.5804901 -1103.1774
+131303.2604328142 3.5804901 -1103.2959
+131304.2604329186 3.5805295 -1103.2959
+131305.2604330229 3.5805295 -1103.2959
+131306.2604331272 3.5804112 -1103.2562
+131307.2604332315 3.5806081 -1103.1378
+131308.2604333358 3.5804901 -1103.2168
+131309.2604334401 3.5804508 -1103.2168
+131310.2604335444 3.5804112 -1103.2562
+131311.2604336487 3.5804112 -1103.197
+131312.260433753 3.5804508 -1103.2168
+131313.2604338573 3.5804901 -1103.197
+131314.2604339616 3.5804112 -1103.1576
+131315.2604340659 3.5804901 -1103.1774
+131316.2604341703 3.5803325 -1103.2168
+131317.2604342746 3.5803719 -1103.1576
+131318.2604343789 3.5804112 -1103.2959
+131319.2604344832 3.5803719 -1103.197
+131320.2604345875 3.5804901 -1103.2168
+131321.2604346918 3.5803325 -1103.197
+131322.2604347961 3.5802932 -1103.3156
+131323.2604349004 3.5803719 -1103.2562
+131324.2604350047 3.5804508 -1103.2168
+131325.260435109 3.5803719 -1103.2761
+131326.2604352133 3.5803325 -1103.197
+131327.2604353176 3.5803719 -1103.3353
+131328.260435422 3.5803325 -1103.2168
+131329.2604355263 3.5803719 -1103.2366
+131330.2604356306 3.5802932 -1103.1378
+131331.2604357349 3.5802932 -1103.2562
+131332.2604358392 3.5803325 -1103.2168
+131333.2604359435 3.5803719 -1103.2761
+131334.2604360478 3.5802145 -1103.197
+131335.2604361521 3.5802932 -1103.2366
+131336.2604362564 3.5802538 -1103.2562
+131337.2604363607 3.5802538 -1103.197
+131338.260436465 3.5802538 -1103.2366
+131339.2604365693 3.5802538 -1103.0984
+131340.2604366736 3.5802538 -1103.2562
+131341.260436778 3.5802538 -1103.2959
+131342.2604368823 3.5802145 -1103.2366
+131343.2604369866 3.5802538 -1103.2366
+131344.2604370909 3.5802538 -1103.3156
+131345.2604371952 3.5802538 -1103.2168
+131346.2604372995 3.5801752 -1103.1378
+131347.2604374038 3.5800962 -1103.2562
+131348.2604375081 3.5801358 -1103.2959
+131349.2604376124 3.5802145 -1103.2366
+131350.2604377167 3.5800962 -1103.197
+131351.260437821 3.5801358 -1103.1774
+131352.2604379253 3.5801358 -1103.3353
+131353.2604380297 3.5801358 -1103.2168
+131354.260438134 3.5801752 -1103.197
+131355.2604382383 3.5801752 -1103.1774
+131356.2604383426 3.5800569 -1103.2168
+131357.2604384469 3.5800962 -1103.2366
+131358.2604385512 3.5800962 -1103.2366
+131359.2604386555 3.5800569 -1103.1774
+131360.2604387598 3.5800962 -1103.2366
+131361.2604388641 3.5800569 -1103.2366
+131362.2604389684 3.5800176 -1103.1774
+131363.2604390727 3.5801752 -1103.2168
+131364.260439177 3.5800176 -1103.1182
+131365.2604392814 3.5800962 -1103.2562
+131366.2604393857 3.5800962 -1103.2761
+131367.26043949 3.5800176 -1103.2562
+131368.2604395943 3.5800176 -1103.2562
+131369.2604396986 3.5799389 -1103.1774
+131370.2604398029 3.5798995 -1103.2761
+131371.2604399072 3.5799782 -1103.197
+131372.2604400115 3.5800176 -1103.2366
+131373.2604401158 3.5800569 -1103.2761
+131374.2604402201 3.5799782 -1103.197
+131375.2604403244 3.5799389 -1103.1774
+131376.2604404287 3.5798995 -1103.2959
+131377.260440533 3.5798995 -1103.197
+131378.2604406374 3.5799389 -1103.197
+131379.2604407417 3.5798995 -1103.197
+131380.260440846 3.5799782 -1103.2761
+131381.2604409503 3.5799389 -1103.2168
+131382.2604410546 3.5798602 -1103.2562
+131383.2604411589 3.5800176 -1103.2168
+131384.2604412632 3.5799389 -1103.2562
+131385.2604413675 3.5799782 -1103.1774
+131386.2604414718 3.5799389 -1103.2168
+131387.2604415761 3.5798995 -1103.197
+131388.2604416804 3.5799389 -1103.1378
+131389.2604417847 3.5797813 -1103.2168
+131390.2604418891 3.5799389 -1103.2168
+131391.2604419934 3.5798209 -1103.1576
+131392.2604420977 3.5798209 -1103.1774
+131393.260442202 3.5798209 -1103.1576
+131394.2604423063 3.5797813 -1103.3353
+131395.2604424106 3.5798602 -1103.197
+131396.2604425149 3.5798209 -1103.3551
+131397.2604426192 3.5798995 -1103.2168
+131398.2604427235 3.5797813 -1103.1774
+131399.2604428278 3.5798995 -1103.2168
+131400.2604429321 3.5798995 -1103.2366
+131401.2604430364 3.5798602 -1103.3156
+131402.2604431408 3.5797813 -1103.1774
+131403.2604432451 3.5797813 -1103.2366
+131404.2604433494 3.5798602 -1103.2168
+131405.2604434537 3.5798209 -1103.1378
+131406.260443558 3.579742 -1103.2168
+131407.2604436623 3.5797813 -1103.2959
+131408.2604437666 3.5797813 -1103.2959
+131409.2604438709 3.5797026 -1103.197
+131410.2604439752 3.579742 -1103.2168
+131411.2604440795 3.5797026 -1103.1774
+131412.2604441838 3.5796633 -1103.3156
+131413.2604442881 3.5796239 -1103.1774
+131414.2604443925 3.5798209 -1103.2366
+131415.2604444968 3.5796239 -1103.197
+131416.2604446011 3.5796633 -1103.2959
+131417.2604447054 3.5797026 -1103.2366
+131418.2604448097 3.5797026 -1103.1774
+131419.260444914 3.5796633 -1103.2761
+131420.2604450183 3.579742 -1103.197
+131421.2604451226 3.5797026 -1103.2761
+131422.2604452269 3.5795453 -1103.2562
+131423.2604453312 3.5796239 -1103.2168
+131424.2604454355 3.5795846 -1103.2959
+131425.2604455398 3.5796633 -1103.2168
+131426.2604456441 3.5795846 -1103.1774
+131427.2604457485 3.5795846 -1103.1378
+131428.2604458528 3.5795846 -1103.2366
+131429.2604459571 3.5796239 -1103.2562
+131430.2604460614 3.5795057 -1103.2562
+131431.2604461657 3.5795453 -1103.2562
+131432.26044627 3.5795846 -1103.1774
+131433.2604463743 3.5795057 -1103.2959
+131434.2604464786 3.5795057 -1103.197
+131435.2604465829 3.5796633 -1103.2366
+131436.2604466872 3.579427 -1103.1378
+131437.2604467915 3.579427 -1103.3156
+131438.2604468958 3.579427 -1103.2562
+131439.2604470002 3.5795057 -1103.2562
+131440.2604471045 3.5795057 -1103.1774
+131441.2604472088 3.579427 -1103.2168
+131442.2604473131 3.579427 -1103.2366
+131443.2604474174 3.5795057 -1103.1378
+131444.2604475217 3.5795453 -1103.1774
+131445.260447626 3.5795057 -1103.2168
+131446.2604477303 3.579427 -1103.2168
+131447.2604478346 3.579427 -1103.1576
+131448.2604479389 3.5793877 -1103.3156
+131449.2604480432 3.579427 -1103.2761
+131450.2604481475 3.5793877 -1103.2562
+131451.2604482519 3.5794663 -1103.2562
+131452.2604483562 3.5794663 -1103.2366
+131453.2604484605 3.5793877 -1103.1576
+131454.2604485648 3.579427 -1103.2562
+131455.2604486691 3.5793483 -1103.2761
+131456.2604487734 3.5794663 -1103.2168
+131457.2604488777 3.5792696 -1103.1378
+131458.260448982 3.579309 -1103.2761
+131459.2604490863 3.5793877 -1103.2168
+131460.2604491906 3.5793483 -1103.2959
+131461.2604492949 3.5793483 -1103.2959
+131462.2604493992 3.5793877 -1103.2168
+131463.2604495035 3.5792303 -1103.1576
+131464.2604496079 3.5791514 -1103.2366
+131465.2604497122 3.5792303 -1103.2761
+131466.2604498165 3.5792696 -1103.1378
+131467.2604499208 3.579309 -1103.2761
+131468.2604500251 3.579309 -1103.2168
+131469.2604501294 3.5791514 -1103.2562
+131470.2604502337 3.5792303 -1103.2366
+131471.260450338 3.579309 -1103.2562
+131472.2604504423 3.5791907 -1103.1576
+131473.2604505466 3.5792696 -1103.3156
+131474.2604506509 3.5791514 -1103.2562
+131475.2604507552 3.5791907 -1103.2761
+131476.2604508596 3.5791907 -1103.2366
+131477.2604509639 3.5791121 -1103.2366
+131478.2604510682 3.5792303 -1103.2168
+131479.2604511725 3.5792696 -1103.2562
+131480.2604512768 3.5791514 -1103.2562
+131481.2604513811 3.5792303 -1103.1182
+131482.2604514854 3.578994 -1103.2562
+131483.2604515897 3.5790727 -1103.2168
+131484.260451694 3.5790727 -1103.2761
+131485.2604517983 3.5790334 -1103.3156
+131486.2604519026 3.5790334 -1103.1576
+131487.2604520069 3.5791907 -1103.2366
+131488.2604521113 3.5791121 -1103.2366
+131489.2604522156 3.5790727 -1103.2366
+131490.2604523199 3.5790334 -1103.197
+131491.2604524242 3.5788758 -1103.2168
+131492.2604525285 3.5790727 -1103.1576
+131493.2604526328 3.5791514 -1103.3156
+131494.2604527371 3.5790727 -1103.1774
+131495.2604528414 3.5790334 -1103.2959
+131496.2604529457 3.5790334 -1103.2168
+131497.26045305 3.5790334 -1103.2168
+131498.2604531543 3.5790334 -1103.2761
+131499.2604532586 3.578994 -1103.1378
+131500.2604533629 3.5788758 -1103.2168
+131501.2604534673 3.5789547 -1103.2366
+131502.2604535716 3.5790334 -1103.1774
+131503.2604536759 3.578994 -1103.197
+131504.2604537802 3.5788364 -1103.2562
+131505.2604538845 3.5788364 -1103.1774
+131506.2604539888 3.5789154 -1103.2562
+131507.2604540931 3.5787971 -1103.2168
+131508.2604541974 3.5788758 -1103.2168
+131509.2604543017 3.5788758 -1103.2366
+131510.260454406 3.5788758 -1103.2761
+131511.2604545103 3.5789547 -1103.1774
+131512.2604546146 3.5789154 -1103.2168
+131513.260454719 3.5787578 -1103.2562
+131514.2604548233 3.5789154 -1103.2168
+131515.2604549276 3.5788364 -1103.2761
+131516.2604550319 3.5787578 -1103.2168
+131517.2604551362 3.5788364 -1103.2168
+131518.2604552405 3.5787578 -1103.2959
+131519.2604553448 3.5788758 -1103.2168
+131520.2604554491 3.5788758 -1103.1576
+131521.2604555534 3.5787971 -1103.1576
+131522.2604556577 3.5787971 -1103.197
+131523.260455762 3.5787578 -1103.2366
+131524.2604558663 3.5787971 -1103.2959
+131525.2604559707 3.5787578 -1103.2168
+131526.260456075 3.5787578 -1103.2366
+131527.2604561793 3.5787578 -1103.197
+131528.2604562836 3.5787184 -1103.2366
+131529.2604563879 3.5787184 -1103.1576
+131530.2604564922 3.5786791 -1103.2168
+131531.2604565965 3.5786004 -1103.197
+131532.2604567008 3.5786791 -1103.197
+131533.2604568051 3.5787578 -1103.2562
+131534.2604569094 3.5787971 -1103.2168
+131535.2604570137 3.5787184 -1103.2761
+131536.260457118 3.5786791 -1103.2959
+131537.2604572224 3.5786791 -1103.1774
+131538.2604573267 3.5787578 -1103.2366
+131539.260457431 3.5786791 -1103.2366
+131540.2604575353 3.5786004 -1103.1774
+131541.2604576396 3.5786397 -1103.1774
+131542.2604577439 3.5787578 -1103.2562
+131543.2604578482 3.5785608 -1103.2562
+131544.2604579525 3.5786004 -1103.2562
+131545.2604580568 3.5786004 -1103.2562
+131546.2604581611 3.5785608 -1103.1774
+131547.2604582654 3.5785608 -1103.2761
+131548.2604583697 3.5784822 -1103.2168
+131549.260458474 3.5784822 -1103.1774
+131550.2604585784 3.5784822 -1103.197
+131551.2604586827 3.5785608 -1103.2168
+131552.260458787 3.5785215 -1103.2366
+131553.2604588913 3.5785608 -1103.2562
+131554.2604589956 3.5785608 -1103.2168
+131555.2604590999 3.5785215 -1103.2761
+131556.2604592042 3.5784035 -1103.197
+131557.2604593085 3.5784822 -1103.1774
+131558.2604594128 3.5784822 -1103.2168
+131559.2604595171 3.5784428 -1103.2168
+131560.2604596214 3.5784822 -1103.1774
+131561.2604597257 3.5784428 -1103.2366
+131562.2604598301 3.5784035 -1103.197
+131563.2604599344 3.5785608 -1103.2959
+131564.2604600387 3.5784428 -1103.2168
+131565.260460143 3.5783641 -1103.2168
+131566.2604602473 3.5784428 -1103.3353
+131567.2604603516 3.5783641 -1103.2761
+131568.2604604559 3.5784035 -1103.2366
+131569.2604605602 3.5783641 -1103.2366
+131570.2604606645 3.5784035 -1103.2168
+131571.2604607688 3.5783248 -1103.1774
+131572.2604608731 3.5783641 -1103.2168
+131573.2604609774 3.5782855 -1103.1378
+131574.2604610818 3.5783641 -1103.2761
+131575.2604611861 3.5782855 -1103.1182
+131576.2604612904 3.5783248 -1103.1774
+131577.2604613947 3.5783641 -1103.1774
+131578.260461499 3.5784035 -1103.2168
+131579.2604616033 3.5782855 -1103.197
+131580.2604617076 3.5782855 -1103.2366
+131581.2604618119 3.5782459 -1103.2562
+131582.2604619162 3.5783248 -1103.1774
+131583.2604620205 3.5782065 -1103.1774
+131584.2604621248 3.5783248 -1103.2168
+131585.2604622291 3.5783248 -1103.1182
+131586.2604623334 3.5782459 -1103.2366
+131587.2604624378 3.5782065 -1103.1576
+131588.2604625421 3.5782855 -1103.2366
+131589.2604626464 3.5782065 -1103.2761
+131590.2604627507 3.5783248 -1103.2168
+131591.260462855 3.5782855 -1103.2562
+131592.2604629593 3.5782065 -1103.2168
+131593.2604630636 3.5782459 -1103.3156
+131594.2604631679 3.5783248 -1103.1774
+131595.2604632722 3.5782065 -1103.2168
+131596.2604633765 3.5782065 -1103.2562
+131597.2604634808 3.5782065 -1103.2366
+131598.2604635851 3.5781672 -1103.2366
+131599.2604636895 3.5782065 -1103.197
+131600.2604637938 3.5781279 -1103.0984
+131601.2604638981 3.5782065 -1103.2562
+131602.2604640024 3.5781279 -1103.1774
+131603.2604641067 3.5780885 -1103.2761
+131604.260464211 3.5781672 -1103.1774
+131605.2604643153 3.5781279 -1103.2562
+131606.2604644196 3.5781279 -1103.2562
+131607.2604645239 3.5780885 -1103.2168
+131608.2604646282 3.5780098 -1103.1576
+131609.2604647325 3.5780885 -1103.2366
+131610.2604648368 3.5779705 -1103.2168
+131611.2604649412 3.5780492 -1103.2366
+131612.2604650455 3.5781279 -1103.197
+131613.2604651498 3.5781279 -1103.2761
+131614.2604652541 3.5780885 -1103.2761
+131615.2604653584 3.5780098 -1103.1378
+131616.2604654627 3.5780098 -1103.1576
+131617.260465567 3.5780492 -1103.2562
+131618.2604656713 3.5780492 -1103.2562
+131619.2604657756 3.5779705 -1103.2761
+131620.2604658799 3.5779309 -1103.2562
+131621.2604659842 3.5780098 -1103.2959
+131622.2604660885 3.5778522 -1103.2562
+131623.2604661928 3.5779705 -1103.1774
+131624.2604662972 3.5779309 -1103.2562
+131625.2604664015 3.5778916 -1103.2168
+131626.2604665058 3.5779705 -1103.2761
+131627.2604666101 3.5779705 -1103.1774
+131628.2604667144 3.5778522 -1103.197
+131629.2604668187 3.5779705 -1103.197
+131630.260466923 3.5778916 -1103.2366
+131631.2604670273 3.5779705 -1103.1774
+131632.2604671316 3.5779705 -1103.2168
+131633.2604672359 3.5779309 -1103.1378
+131634.2604673402 3.5778129 -1103.2168
+131635.2604674445 3.5778129 -1103.1774
+131636.2604675489 3.5778916 -1103.2562
+131637.2604676532 3.5778129 -1103.2562
+131638.2604677575 3.5778522 -1103.2366
+131639.2604678618 3.5778916 -1103.2562
+131640.2604679661 3.5778522 -1103.2366
+131641.2604680704 3.5778916 -1103.3551
+131642.2604681747 3.5778916 -1103.3353
+131643.260468279 3.5777342 -1103.2366
+131644.2604683833 3.5778129 -1103.2959
+131645.2604684876 3.5778129 -1103.2168
+131646.2604685919 3.5777736 -1103.2562
+131647.2604686962 3.5777342 -1103.197
+131648.2604688006 3.5777342 -1103.2761
+131649.2604689049 3.5777736 -1103.2761
+131650.2604690092 3.5777342 -1103.1378
+131651.2604691135 3.5777342 -1103.2761
+131652.2604692178 3.5777736 -1103.2366
+131653.2604693221 3.5776949 -1103.2168
+131654.2604694264 3.577616 -1103.2761
+131655.2604695307 3.5776949 -1103.1378
+131656.260469635 3.577616 -1103.1774
+131657.2604697393 3.577616 -1103.1774
+131658.2604698436 3.5776553 -1103.1378
+131659.2604699479 3.5775766 -1103.1774
+131660.2604700523 3.5775766 -1103.2562
+131661.2604701566 3.577616 -1103.2168
+131662.2604702609 3.5775766 -1103.2168
+131663.2604703652 3.5775766 -1103.2168
+131664.2604704695 3.5775766 -1103.197
+131665.2604705738 3.5775373 -1103.197
+131666.2604706781 3.577616 -1103.2366
+131667.2604707824 3.5775373 -1103.1182
+131668.2604708867 3.5775766 -1103.1182
+131669.260470991 3.5776553 -1103.2366
+131670.2604710953 3.577616 -1103.2168
+131671.2604711996 3.5774586 -1103.1774
+131672.2604713039 3.577498 -1103.1774
+131673.2604714083 3.5775766 -1103.2366
+131674.2604715126 3.5775373 -1103.197
+131675.2604716169 3.577498 -1103.2168
+131676.2604717212 3.5775766 -1103.2366
+131677.2604718255 3.5774586 -1103.1378
+131678.2604719298 3.5774586 -1103.2366
+131679.2604720341 3.577498 -1103.2168
+131680.2604721384 3.5774586 -1103.2761
+131681.2604722427 3.5774193 -1103.2366
+131682.260472347 3.5773799 -1103.2168
+131683.2604724513 3.5775373 -1103.2562
+131684.2604725556 3.5773799 -1103.2959
+131685.26047266 3.5774586 -1103.197
+131686.2604727643 3.5775373 -1103.2168
+131687.2604728686 3.5774193 -1103.1182
+131688.2604729729 3.5774586 -1103.2168
+131689.2604730772 3.577498 -1103.2562
+131690.2604731815 3.577301 -1103.2366
+131691.2604732858 3.5773404 -1103.197
+131692.2604733901 3.5773799 -1103.2959
+131693.2604734944 3.5772617 -1103.3156
+131694.2604735987 3.5773404 -1103.1576
+131695.260473703 3.5773404 -1103.2168
+131696.2604738073 3.5772617 -1103.2366
+131697.2604739117 3.577301 -1103.2366
+131698.260474016 3.5772617 -1103.2168
+131699.2604741203 3.577301 -1103.1576
+131700.2604742246 3.5772617 -1103.2168
+131701.2604743289 3.5772223 -1103.2959
+131702.2604744332 3.5771043 -1103.2761
+131703.2604745375 3.5772617 -1103.2168
+131704.2604746418 3.5772617 -1103.2562
+131705.2604747461 3.5772223 -1103.2562
+131706.2604748504 3.577301 -1103.2959
+131707.2604749547 3.577183 -1103.2366
+131708.260475059 3.577183 -1103.197
+131709.2604751633 3.577183 -1103.2366
+131710.2604752677 3.5771437 -1103.2761
+131711.260475372 3.5771043 -1103.2366
+131712.2604754763 3.5771043 -1103.2168
+131713.2604755806 3.577065 -1103.2959
+131714.2604756849 3.5772223 -1103.197
+131715.2604757892 3.5772223 -1103.2168
+131716.2604758935 3.5771437 -1103.2168
+131717.2604759978 3.577065 -1103.3156
+131718.2604761021 3.5771437 -1103.197
+131719.2604762064 3.5771043 -1103.2168
+131720.2604763107 3.577065 -1103.197
+131721.260476415 3.577065 -1103.1774
+131722.2604765194 3.5771437 -1103.2168
+131723.2604766237 3.5771043 -1103.1378
+131724.260476728 3.5771043 -1103.3156
+131725.2604768323 3.5770254 -1103.2168
+131726.2604769366 3.5771043 -1103.2168
+131727.2604770409 3.5769467 -1103.2168
+131728.2604771452 3.5770254 -1103.2366
+131729.2604772495 3.577065 -1103.2168
+131730.2604773538 3.5771043 -1103.2366
+131731.2604774581 3.5769074 -1103.2366
+131732.2604775624 3.5770254 -1103.3353
+131733.2604776667 3.5769467 -1103.2562
+131734.2604777711 3.5769861 -1103.2959
+131735.2604778754 3.5769074 -1103.1576
+131736.2604779797 3.5768681 -1103.2562
+131737.260478084 3.5769074 -1103.1774
+131738.2604781883 3.5769467 -1103.3156
+131739.2604782926 3.5769074 -1103.2366
+131740.2604783969 3.5769074 -1103.197
+131741.2604785012 3.5769074 -1103.2168
+131742.2604786055 3.5769467 -1103.2366
+131743.2604787098 3.5769467 -1103.2168
+131744.2604788141 3.5768681 -1103.2168
+131745.2604789184 3.5768287 -1103.197
+131746.2604790227 3.5768681 -1103.3551
+131747.2604791271 3.5768287 -1103.2562
+131748.2604792314 3.5768287 -1103.2959
+131749.2604793357 3.5768287 -1103.2761
+131750.26047944 3.5767894 -1103.1774
+131751.2604795443 3.5768681 -1103.1774
+131752.2604796486 3.5767894 -1103.2761
+131753.2604797529 3.57675 -1103.1576
+131754.2604798572 3.5767894 -1103.2168
+131755.2604799615 3.57675 -1103.2168
+131756.2604800658 3.5766711 -1103.2168
+131757.2604801701 3.5766711 -1103.1774
+131758.2604802744 3.5767894 -1103.3156
+131759.2604803788 3.5767894 -1103.2761
+131760.2604804831 3.5766318 -1103.2562
+131761.2604805874 3.57675 -1103.2168
+131762.2604806917 3.5765924 -1103.197
+131763.260480796 3.5767894 -1103.2562
+131764.2604809003 3.5765924 -1103.2562
+131765.2604810046 3.57675 -1103.197
+131766.2604811089 3.5766711 -1103.2168
+131767.2604812132 3.57675 -1103.1774
+131768.2604813175 3.5765924 -1103.1378
+131769.2604814218 3.5765924 -1103.2366
+131770.2604815261 3.5765138 -1103.2366
+131771.2604816305 3.5765138 -1103.2168
+131772.2604817348 3.5766318 -1103.1774
+131773.2604818391 3.5764744 -1103.197
+131774.2604819434 3.5765138 -1103.2562
+131775.2604820477 3.5765531 -1103.2562
+131776.260482152 3.5765138 -1103.2168
+131777.2604822563 3.5765531 -1103.2761
+131778.2604823606 3.5765138 -1103.2562
+131779.2604824649 3.5764744 -1103.2562
+131780.2604825692 3.5764744 -1103.197
+131781.2604826735 3.5764744 -1103.2562
+131782.2604827778 3.5764351 -1103.2761
+131783.2604828822 3.5763955 -1103.2562
+131784.2604829865 3.5763955 -1103.2761
+131785.2604830908 3.5765138 -1103.1378
+131786.2604831951 3.5763955 -1103.2168
+131787.2604832994 3.5763562 -1103.2168
+131788.2604834037 3.5763562 -1103.3156
+131789.260483508 3.5764351 -1103.2168
+131790.2604836123 3.5764744 -1103.2562
+131791.2604837166 3.5763955 -1103.2959
+131792.2604838209 3.5761988 -1103.197
+131793.2604839252 3.5763562 -1103.197
+131794.2604840295 3.5763168 -1103.2168
+131795.2604841338 3.5763168 -1103.1576
+131796.2604842382 3.5762382 -1103.197
+131797.2604843425 3.5763168 -1103.2562
+131798.2604844468 3.5761988 -1103.2761
+131799.2604845511 3.5762775 -1103.1774
+131800.2604846554 3.5762775 -1103.2761
+131801.2604847597 3.5762382 -1103.1576
+131802.260484864 3.5761199 -1103.2562
+131803.2604849683 3.5761595 -1103.2366
+131804.2604850726 3.5761988 -1103.3156
+131805.2604851769 3.5762382 -1103.2366
+131806.2604852812 3.5762382 -1103.1576
+131807.2604853855 3.5761595 -1103.3156
+131808.2604854899 3.5760806 -1103.197
+131809.2604855942 3.5760806 -1103.2168
+131810.2604856985 3.5761595 -1103.2366
+131811.2604858028 3.5761199 -1103.2562
+131812.2604859071 3.5760806 -1103.1576
+131813.2604860114 3.5760806 -1103.2761
+131814.2604861157 3.5760806 -1103.1774
+131815.26048622 3.5761595 -1103.2168
+131816.2604863243 3.5760806 -1103.2761
+131817.2604864286 3.5760412 -1103.2168
+131818.2604865329 3.5760412 -1103.2761
+131819.2604866372 3.5760019 -1103.1774
+131820.2604867416 3.5761199 -1103.2562
+131821.2604868459 3.5760412 -1103.2761
+131822.2604869502 3.5760412 -1103.1774
+131823.2604870545 3.5759625 -1103.3353
+131824.2604871588 3.5759625 -1103.2562
+131825.2604872631 3.5760019 -1103.1378
+131826.2604873674 3.5760019 -1103.2168
+131827.2604874717 3.5760412 -1103.197
+131828.260487576 3.5760412 -1103.2366
+131829.2604876803 3.5759232 -1103.2562
+131830.2604877846 3.5760019 -1103.2562
+131831.2604878889 3.5760019 -1103.2562
+131832.2604879932 3.5759232 -1103.2168
+131833.2604880976 3.5759232 -1103.2959
+131834.2604882019 3.5758839 -1103.2761
+131835.2604883062 3.5758445 -1103.1576
+131836.2604884105 3.5758445 -1103.1774
+131837.2604885148 3.5758445 -1103.197
+131838.2604886191 3.5758049 -1103.2168
+131839.2604887234 3.5758839 -1103.2959
+131840.2604888277 3.5758839 -1103.1774
+131841.260488932 3.5758445 -1103.2562
+131842.2604890363 3.5758445 -1103.2562
+131843.2604891406 3.5758049 -1103.1378
+131844.2604892449 3.5758839 -1103.2168
+131845.2604893493 3.5758445 -1103.2168
+131846.2604894536 3.5757263 -1103.3156
+131847.2604895579 3.5757656 -1103.3945
+131848.2604896622 3.5758445 -1103.2168
+131849.2604897665 3.5758049 -1103.2562
+131850.2604898708 3.5757263 -1103.2562
+131851.2604899751 3.5757656 -1103.2168
+131852.2604900794 3.5758049 -1103.2562
+131853.2604901837 3.5757656 -1103.2562
+131854.260490288 3.5757656 -1103.1774
+131855.2604903923 3.5757263 -1103.2168
+131856.2604904966 3.5756476 -1103.2761
+131857.260490601 3.5756083 -1103.197
+131858.2604907053 3.5756476 -1103.1576
+131859.2604908096 3.5757263 -1103.2168
+131860.2604909139 3.5756083 -1103.2761
+131861.2604910182 3.5756083 -1103.2761
+131862.2604911225 3.5756476 -1103.1576
+131863.2604912268 3.5756083 -1103.197
+131864.2604913311 3.5757263 -1103.2562
+131865.2604914354 3.5757263 -1103.2562
+131866.2604915397 3.5755296 -1103.2562
+131867.260491644 3.5756083 -1103.1576
+131868.2604917483 3.5756869 -1103.2366
+131869.2604918526 3.5755689 -1103.2366
+131870.260491957 3.5757263 -1103.2562
+131871.2604920613 3.5755296 -1103.2562
+131872.2604921656 3.5756476 -1103.1378
+131873.2604922699 3.5755296 -1103.2959
+131874.2604923742 3.5754507 -1103.3156
+131875.2604924785 3.5755689 -1103.1774
+131876.2604925828 3.5755689 -1103.2366
+131877.2604926871 3.5755689 -1103.2562
+131878.2604927914 3.5755296 -1103.2168
+131879.2604928957 3.5754507 -1103.1576
+131880.260493 3.5755296 -1103.2168
+131881.2604931043 3.5754507 -1103.197
+131882.2604932087 3.57549 -1103.2959
+131883.260493313 3.5754507 -1103.197
+131884.2604934173 3.5756083 -1103.2562
+131885.2604935216 3.5755296 -1103.2562
+131886.2604936259 3.5754507 -1103.2168
+131887.2604937302 3.575372 -1103.1774
+131888.2604938345 3.5754113 -1103.197
+131889.2604939388 3.5754507 -1103.1774
+131890.2604940431 3.5754113 -1103.2562
+131891.2604941474 3.5754507 -1103.2366
+131892.2604942517 3.575372 -1103.1378
+131893.260494356 3.5754507 -1103.2959
+131894.2604944604 3.5754113 -1103.197
+131895.2604945647 3.5752933 -1103.2168
+131896.260494669 3.5753326 -1103.2168
+131897.2604947733 3.5753326 -1103.1576
+131898.2604948776 3.5752146 -1103.197
+131899.2604949819 3.5754113 -1103.2761
+131900.2604950862 3.575372 -1103.2168
+131901.2604951905 3.5752933 -1103.2168
+131902.2604952948 3.575254 -1103.2562
+131903.2604953991 3.5752933 -1103.2959
+131904.2604955034 3.575372 -1103.1576
+131905.2604956077 3.575372 -1103.197
+131906.260495712 3.575372 -1103.2168
+131907.2604958164 3.575254 -1103.1576
+131908.2604959207 3.5752933 -1103.2168
+131909.260496025 3.5752146 -1103.0984
+131910.2604961293 3.575372 -1103.2168
+131911.2604962336 3.5752933 -1103.2168
+131912.2604963379 3.5751357 -1103.2168
+131913.2604964422 3.5753326 -1103.3353
+131914.2604965465 3.5752146 -1103.2366
+131915.2604966508 3.575254 -1103.197
+131916.2604967551 3.5750964 -1103.2366
+131917.2604968594 3.5750964 -1103.197
+131918.2604969637 3.5752146 -1103.197
+131919.2604970681 3.5750964 -1103.2562
+131920.2604971724 3.575175 -1103.2366
+131921.2604972767 3.574939 -1103.2168
+131922.260497381 3.575175 -1103.3156
+131923.2604974853 3.5750964 -1103.2366
+131924.2604975896 3.575057 -1103.2959
+131925.2604976939 3.5751357 -1103.2168
+131926.2604977982 3.5750964 -1103.1774
+131927.2604979025 3.575175 -1103.1378
+131928.2604980068 3.575057 -1103.2959
+131929.2604981111 3.575057 -1103.2168
+131930.2604982154 3.575057 -1103.1182
+131931.2604983198 3.5750177 -1103.2168
+131932.2604984241 3.5749784 -1103.1576
+131933.2604985284 3.575057 -1103.2168
+131934.2604986327 3.5750177 -1103.2168
+131935.260498737 3.5750177 -1103.1576
+131936.2604988413 3.5750964 -1103.1774
+131937.2604989456 3.5750177 -1103.1774
+131938.2604990499 3.5749784 -1103.2168
+131939.2604991542 3.574939 -1103.1182
+131940.2604992585 3.574939 -1103.3156
+131941.2604993628 3.5749784 -1103.1378
+131942.2604994671 3.5749784 -1103.1378
+131943.2604995715 3.574939 -1103.2366
+131944.2604996758 3.574939 -1103.2366
+131945.2604997801 3.5748997 -1103.1576
+131946.2604998844 3.5748208 -1103.197
+131947.2604999887 3.5748997 -1103.3551
+131948.260500093 3.574939 -1103.2168
+131949.2605001973 3.5748208 -1103.2761
+131950.2605003016 3.5748601 -1103.2562
+131951.2605004059 3.5748601 -1103.2168
+131952.2605005102 3.5748601 -1103.197
+131953.2605006145 3.574939 -1103.2366
+131954.2605007188 3.5748601 -1103.197
+131955.2605008231 3.5748208 -1103.2959
+131956.2605009275 3.5748208 -1103.2366
+131957.2605010318 3.5748601 -1103.2761
+131958.2605011361 3.5747814 -1103.2562
+131959.2605012404 3.5747027 -1103.1774
+131960.2605013447 3.5747421 -1103.2366
+131961.260501449 3.5747814 -1103.197
+131962.2605015533 3.5748601 -1103.1774
+131963.2605016576 3.5747421 -1103.197
+131964.2605017619 3.5747027 -1103.2366
+131965.2605018662 3.5748208 -1103.197
+131966.2605019705 3.5746634 -1103.1576
+131967.2605020748 3.5747421 -1103.2562
+131968.2605021792 3.5747027 -1103.2168
+131969.2605022835 3.5746634 -1103.2366
+131970.2605023878 3.5747421 -1103.2761
+131971.2605024921 3.5746634 -1103.2168
+131972.2605025964 3.5745847 -1103.1576
+131973.2605027007 3.5746241 -1103.1378
+131974.260502805 3.5745847 -1103.1774
+131975.2605029093 3.5746241 -1103.197
+131976.2605030136 3.5746241 -1103.2168
+131977.2605031179 3.5746241 -1103.1182
+131978.2605032222 3.5747027 -1103.1774
+131979.2605033265 3.5746241 -1103.197
+131980.2605034309 3.5747027 -1103.1774
+131981.2605035352 3.5747027 -1103.197
+131982.2605036395 3.5746241 -1103.2366
+131983.2605037438 3.5745451 -1103.1774
+131984.2605038481 3.5746634 -1103.1576
+131985.2605039524 3.5746241 -1103.2168
+131986.2605040567 3.5745847 -1103.2562
+131987.260504161 3.5746241 -1103.2959
+131988.2605042653 3.5745451 -1103.197
+131989.2605043696 3.5745847 -1103.1182
+131990.2605044739 3.5746241 -1103.2168
+131991.2605045782 3.5745451 -1103.2562
+131992.2605046825 3.5745451 -1103.2366
+131993.2605047869 3.5744665 -1103.2366
+131994.2605048912 3.5745058 -1103.2366
+131995.2605049955 3.5745058 -1103.2168
+131996.2605050998 3.5744665 -1103.1576
+131997.2605052041 3.5744665 -1103.2168
+131998.2605053084 3.5746241 -1103.1576
+131999.2605054127 3.5745451 -1103.2366
+132000.260505517 3.5744665 -1103.1576
+132001.2605056213 3.5744271 -1103.197
+132002.2605057256 3.5744271 -1103.197
+132003.2605058299 3.5744665 -1103.1774
+132004.2605059342 3.5745058 -1103.1378
+132005.2605060386 3.5742695 -1103.2761
+132006.2605061429 3.5744665 -1103.1576
+132007.2605062472 3.5744271 -1103.1576
+132008.2605063515 3.5743091 -1103.1378
+132009.2605064558 3.5744665 -1103.2168
+132010.2605065601 3.5743878 -1103.2562
+132011.2605066644 3.5743484 -1103.1774
+132012.2605067687 3.5744271 -1103.1774
+132013.260506873 3.5744271 -1103.2562
+132014.2605069773 3.5743091 -1103.1182
+132015.2605070816 3.5743484 -1103.1576
+132016.2605071859 3.5744665 -1103.1576
+132017.2605072903 3.5742302 -1103.2168
+132018.2605073946 3.5743878 -1103.2168
+132019.2605074989 3.5743484 -1103.2959
+132020.2605076032 3.5743091 -1103.2761
+132021.2605077075 3.5743091 -1103.1774
+132022.2605078118 3.5743484 -1103.2761
+132023.2605079161 3.5743878 -1103.2168
+132024.2605080204 3.5742695 -1103.1576
+132025.2605081247 3.5741909 -1103.2366
+132026.260508229 3.5743091 -1103.197
+132027.2605083333 3.5743484 -1103.197
+132028.2605084376 3.5742695 -1103.2168
+132029.2605085419 3.5743878 -1103.197
+132030.2605086463 3.5742302 -1103.2168
+132031.2605087506 3.5742302 -1103.2761
+132032.2605088549 3.5743484 -1103.1774
+132033.2605089592 3.5741515 -1103.1774
+132034.2605090635 3.5743091 -1103.2366
+132035.2605091678 3.5742695 -1103.2761
+132036.2605092721 3.5742302 -1103.2366
+132037.2605093764 3.5741909 -1103.2168
+132038.2605094807 3.5741909 -1103.1576
+132039.260509585 3.5740728 -1103.197
+132040.2605096893 3.5741909 -1103.2168
+132041.2605097936 3.5742302 -1103.2168
+132042.260509898 3.5741909 -1103.197
+132043.2605100023 3.5741122 -1103.2168
+132044.2605101066 3.5741122 -1103.2168
+132045.2605102109 3.5740335 -1103.2562
+132046.2605103152 3.5741515 -1103.2168
+132047.2605104195 3.5740728 -1103.197
+132048.2605105238 3.5740335 -1103.2562
+132049.2605106281 3.5741122 -1103.2761
+132050.2605107324 3.5741909 -1103.1378
+132051.2605108367 3.5740335 -1103.2761
+132052.260510941 3.5740335 -1103.1378
+132053.2605110453 3.5739942 -1103.2562
+132054.2605111497 3.5740335 -1103.1576
+132055.260511254 3.5741122 -1103.2562
+132056.2605113583 3.5740335 -1103.197
+132057.2605114626 3.5739942 -1103.1774
+132058.2605115669 3.5740335 -1103.1576
+132059.2605116712 3.5740335 -1103.2168
+132060.2605117755 3.5739546 -1103.1774
+132061.2605118798 3.5739942 -1103.1378
+132062.2605119841 3.5739152 -1103.2562
+132063.2605120884 3.5739546 -1103.1576
+132064.2605121927 3.5739942 -1103.197
+132065.260512297 3.5739546 -1103.2562
+132066.2605124014 3.5739152 -1103.2562
+132067.2605125057 3.5739942 -1103.2562
+132068.26051261 3.5737972 -1103.2168
+132069.2605127143 3.5739152 -1103.197
+132070.2605128186 3.5739152 -1103.1576
+132071.2605129229 3.5738759 -1103.2168
+132072.2605130272 3.5738366 -1103.2562
+132073.2605131315 3.5738366 -1103.1576
+132074.2605132358 3.5739152 -1103.197
+132075.2605133401 3.5739152 -1103.1378
+132076.2605134444 3.5738759 -1103.1378
+132077.2605135487 3.5738366 -1103.2562
+132078.260513653 3.5738366 -1103.2168
+132079.2605137574 3.5738759 -1103.2562
+132080.2605138617 3.5739546 -1103.2168
+132081.260513966 3.5738759 -1103.2366
+132082.2605140703 3.5738366 -1103.197
+132083.2605141746 3.5737972 -1103.197
+132084.2605142789 3.5737972 -1103.197
+132085.2605143832 3.5736792 -1103.2761
+132086.2605144875 3.5737972 -1103.1576
+132087.2605145918 3.5738759 -1103.197
+132088.2605146961 3.5737579 -1103.1576
+132089.2605148004 3.5737579 -1103.2761
+132090.2605149047 3.5737972 -1103.1576
+132091.2605150091 3.5737972 -1103.2168
+132092.2605151134 3.5737579 -1103.1774
+132093.2605152177 3.5737185 -1103.2761
+132094.260515322 3.5737972 -1103.2562
+132095.2605154263 3.5738366 -1103.1378
+132096.2605155306 3.5737579 -1103.197
+132097.2605156349 3.5737185 -1103.2366
+132098.2605157392 3.5737579 -1103.2168
+132099.2605158435 3.5737185 -1103.197
+132100.2605159478 3.5737579 -1103.2562
+132101.2605160521 3.5737579 -1103.1378
+132102.2605161564 3.5737185 -1103.3156
+132103.2605162608 3.5736792 -1103.2959
+132104.2605163651 3.5737185 -1103.2562
+132105.2605164694 3.5736792 -1103.1378
+132106.2605165737 3.5736003 -1103.2366
+132107.260516678 3.5736396 -1103.1576
+132108.2605167823 3.5736792 -1103.1576
+132109.2605168866 3.5737579 -1103.2562
+132110.2605169909 3.5737579 -1103.2761
+132111.2605170952 3.5736792 -1103.197
+132112.2605171995 3.5736396 -1103.2168
+132113.2605173038 3.5736792 -1103.197
+132114.2605174081 3.5736792 -1103.2168
+132115.2605175124 3.5736003 -1103.2168
+132116.2605176168 3.5736003 -1103.1774
+132117.2605177211 3.5736792 -1103.2366
+132118.2605178254 3.573561 -1103.2168
+132119.2605179297 3.5736396 -1103.2959
+132120.260518034 3.5736792 -1103.2562
+132121.2605181383 3.5736396 -1103.2366
+132122.2605182426 3.5736792 -1103.2366
+132123.2605183469 3.5736003 -1103.2366
+132124.2605184512 3.5736396 -1103.2366
+132125.2605185555 3.5734823 -1103.2366
+132126.2605186598 3.5735216 -1103.2366
+132127.2605187641 3.5736792 -1103.2761
+132128.2605188685 3.5734823 -1103.197
+132129.2605189728 3.573561 -1103.2168
+132130.2605190771 3.5735216 -1103.197
+132131.2605191814 3.5734823 -1103.2366
+132132.2605192857 3.5734036 -1103.1774
+132133.26051939 3.573561 -1103.1774
+132134.2605194943 3.5734823 -1103.2168
+132135.2605195986 3.5734036 -1103.2168
+132136.2605197029 3.5736003 -1103.197
+132137.2605198072 3.5734823 -1103.2366
+132138.2605199115 3.5735216 -1103.197
+132139.2605200158 3.5734429 -1103.1774
+132140.2605201202 3.5735216 -1103.1576
+132141.2605202245 3.5734036 -1103.1774
+132142.2605203288 3.5734036 -1103.2562
+132143.2605204331 3.5734823 -1103.197
+132144.2605205374 3.5734429 -1103.0984
+132145.2605206417 3.5733643 -1103.1576
+132146.260520746 3.573246 -1103.2168
+132147.2605208503 3.5734036 -1103.1774
+132148.2605209546 3.5734036 -1103.2562
+132149.2605210589 3.5733247 -1103.197
+132150.2605211632 3.5734823 -1103.2168
+132151.2605212675 3.5734036 -1103.2562
+132152.2605213718 3.5734036 -1103.197
+132153.2605214762 3.5734036 -1103.197
+132154.2605215805 3.5733643 -1103.1774
+132155.2605216848 3.5733643 -1103.197
+132156.2605217891 3.5734036 -1103.2366
+132157.2605218934 3.5733247 -1103.1774
+132158.2605219977 3.5733643 -1103.2366
+132159.260522102 3.573246 -1103.2761
+132160.2605222063 3.5733247 -1103.0588
+132161.2605223106 3.573246 -1103.1378
+132162.2605224149 3.5734036 -1103.1774
+132163.2605225192 3.573246 -1103.1378
+132164.2605226235 3.5732853 -1103.1576
+132165.2605227279 3.5732853 -1103.2761
+132166.2605228322 3.573246 -1103.1774
+132167.2605229365 3.573246 -1103.2366
+132168.2605230408 3.573246 -1103.1774
+132169.2605231451 3.5732067 -1103.2366
+132170.2605232494 3.5732853 -1103.2562
+132171.2605233537 3.5732853 -1103.2366
+132172.260523458 3.573246 -1103.1774
+132173.2605235623 3.5730886 -1103.2168
+132174.2605236666 3.573246 -1103.3551
+132175.2605237709 3.5731673 -1103.2761
+132176.2605238752 3.5731673 -1103.2168
+132177.2605239796 3.573128 -1103.2168
+132178.2605240839 3.5731673 -1103.3551
+132179.2605241882 3.5730097 -1103.2562
+132180.2605242925 3.573128 -1103.197
+132181.2605243968 3.5730493 -1103.2168
+132182.2605245011 3.5730493 -1103.0984
+132183.2605246054 3.573128 -1103.2366
+132184.2605247097 3.5730493 -1103.197
+132185.260524814 3.5730097 -1103.1774
+132186.2605249183 3.5731673 -1103.2959
+132187.2605250226 3.5730886 -1103.2366
+132188.2605251269 3.573128 -1103.2562
+132189.2605252313 3.5729311 -1103.2959
+132190.2605253356 3.5730493 -1103.1378
+132191.2605254399 3.5729704 -1103.2562
+132192.2605255442 3.5729704 -1103.1774
+132193.2605256485 3.5730097 -1103.2168
+132194.2605257528 3.5728917 -1103.1576
+132195.2605258571 3.5730097 -1103.1182
+132196.2605259614 3.5730097 -1103.2761
+132197.2605260657 3.5728524 -1103.2562
+132198.26052617 3.5729311 -1103.2168
+132199.2605262743 3.5729311 -1103.2562
+132200.2605263786 3.5728917 -1103.197
+132201.2605264829 3.5728524 -1103.0984
+132202.2605265873 3.5729311 -1103.197
+132203.2605266916 3.5729311 -1103.3156
+132204.2605267959 3.5729704 -1103.1774
+132205.2605269002 3.5727344 -1103.1576
+132206.2605270045 3.5728917 -1103.197
+132207.2605271088 3.5727737 -1103.2562
+132208.2605272131 3.572813 -1103.1378
+132209.2605273174 3.5728524 -1103.197
+132210.2605274217 3.5728917 -1103.197
+132211.260527526 3.572813 -1103.2168
+132212.2605276303 3.572813 -1103.197
+132213.2605277346 3.572813 -1103.2562
+132214.260527839 3.572813 -1103.2959
+132215.2605279433 3.5726554 -1103.197
+132216.2605280476 3.5727737 -1103.2366
+132217.2605281519 3.5727737 -1103.1576
+132218.2605282562 3.5728524 -1103.1774
+132219.2605283605 3.5727344 -1103.2761
+132220.2605284648 3.5726948 -1103.2761
+132221.2605285691 3.5726948 -1103.1378
+132222.2605286734 3.5727344 -1103.2562
+132223.2605287777 3.572813 -1103.1576
+132224.260528882 3.5726948 -1103.1774
+132225.2605289863 3.5727344 -1103.1774
+132226.2605290907 3.5726554 -1103.2959
+132227.260529195 3.5727737 -1103.2168
+132228.2605292993 3.5726948 -1103.1576
+132229.2605294036 3.5726554 -1103.197
+132230.2605295079 3.5727344 -1103.2761
+132231.2605296122 3.5725374 -1103.1774
+132232.2605297165 3.5726948 -1103.0984
+132233.2605298208 3.5726161 -1103.1774
+132234.2605299251 3.5726161 -1103.197
+132235.2605300294 3.5726161 -1103.1774
+132236.2605301337 3.5724981 -1103.2366
+132237.260530238 3.5725374 -1103.197
+132238.2605303423 3.5724981 -1103.2366
+132239.2605304467 3.5725768 -1103.2761
+132240.260530551 3.5724981 -1103.1774
+132241.2605306553 3.5724192 -1103.1182
+132242.2605307596 3.5723798 -1103.2366
+132243.2605308639 3.5725374 -1103.1576
+132244.2605309682 3.5725374 -1103.197
+132245.2605310725 3.5724587 -1103.197
+132246.2605311768 3.5724587 -1103.2761
+132247.2605312811 3.5724192 -1103.0984
+132248.2605313854 3.5723405 -1103.1774
+132249.2605314897 3.5723798 -1103.2366
+132250.260531594 3.5724192 -1103.2562
+132251.2605316984 3.5723405 -1103.2761
+132252.2605318027 3.5723405 -1103.1378
+132253.260531907 3.5722618 -1103.197
+132254.2605320113 3.5723798 -1103.1774
+132255.2605321156 3.5723798 -1103.1774
+132256.2605322199 3.5723405 -1103.1774
+132257.2605323242 3.5722618 -1103.1774
+132258.2605324285 3.5723011 -1103.1774
+132259.2605325328 3.5722618 -1103.1774
+132260.2605326371 3.5723011 -1103.2366
+132261.2605327414 3.5723405 -1103.2761
+132262.2605328457 3.5722618 -1103.1576
+132263.2605329501 3.5722618 -1103.1576
+132264.2605330544 3.5722225 -1103.197
+132265.2605331587 3.5723011 -1103.197
+132266.260533263 3.5722225 -1103.2562
+132267.2605333673 3.5722225 -1103.2168
+132268.2605334716 3.5721831 -1103.1774
+132269.2605335759 3.5722225 -1103.1182
+132270.2605336802 3.5722225 -1103.2168
+132271.2605337845 3.5722618 -1103.197
+132272.2605338888 3.5721042 -1103.2562
+132273.2605339931 3.5722225 -1103.197
+132274.2605340974 3.5721438 -1103.2366
+132275.2605342017 3.5722618 -1103.2562
+132276.2605343061 3.5721438 -1103.2562
+132277.2605344104 3.5721831 -1103.1774
+132278.2605345147 3.5721042 -1103.2366
+132279.260534619 3.5721831 -1103.197
+132280.2605347233 3.5721831 -1103.1774
+132281.2605348276 3.5721831 -1103.0785
+132282.2605349319 3.5721042 -1103.197
+132283.2605350362 3.5721042 -1103.1576
+132284.2605351405 3.5721831 -1103.1576
+132285.2605352448 3.5721831 -1103.1774
+132286.2605353491 3.5719862 -1103.2366
+132287.2605354534 3.5722225 -1103.197
+132288.2605355578 3.5721042 -1103.2761
+132289.2605356621 3.5720649 -1103.197
+132290.2605357664 3.5720649 -1103.2168
+132291.2605358707 3.5721042 -1103.2761
+132292.260535975 3.5721042 -1103.1576
+132293.2605360793 3.5722618 -1103.2168
+132294.2605361836 3.5721438 -1103.1378
+132295.2605362879 3.5720649 -1103.2168
+132296.2605363922 3.5720649 -1103.197
+132297.2605364965 3.5719469 -1103.2168
+132298.2605366008 3.5720255 -1103.2562
+132299.2605367051 3.5720649 -1103.2168
+132300.2605368095 3.5719862 -1103.2761
+132301.2605369138 3.5719862 -1103.197
+132302.2605370181 3.5719075 -1103.1182
+132303.2605371224 3.5719469 -1103.1774
+132304.2605372267 3.5719075 -1103.197
+132305.260537331 3.5721042 -1103.197
+132306.2605374353 3.5719469 -1103.2959
+132307.2605375396 3.5719469 -1103.3156
+132308.2605376439 3.5720255 -1103.1774
+132309.2605377482 3.5719075 -1103.2366
+132310.2605378525 3.5719075 -1103.2959
+132311.2605379568 3.5720255 -1103.2168
+132312.2605380611 3.5719469 -1103.2562
+132313.2605381655 3.5719469 -1103.197
+132314.2605382698 3.5719075 -1103.2366
+132315.2605383741 3.5718682 -1103.2168
+132316.2605384784 3.5718288 -1103.2366
+132317.2605385827 3.5718682 -1103.2366
+132318.260538687 3.5718682 -1103.1774
+132319.2605387913 3.5718682 -1103.2562
+132320.2605388956 3.5717893 -1103.2168
+132321.2605389999 3.5718288 -1103.1774
+132322.2605391042 3.5718288 -1103.1774
+132323.2605392085 3.5718288 -1103.2366
+132324.2605393128 3.5717499 -1103.197
+132325.2605394172 3.5718288 -1103.197
+132326.2605395215 3.5717893 -1103.1774
+132327.2605396258 3.5718288 -1103.2168
+132328.2605397301 3.5717893 -1103.2562
+132329.2605398344 3.5717499 -1103.2761
+132330.2605399387 3.5717106 -1103.2168
+132331.260540043 3.5717893 -1103.1774
+132332.2605401473 3.5717106 -1103.2562
+132333.2605402516 3.5718288 -1103.2168
+132334.2605403559 3.5717106 -1103.2168
+132335.2605404602 3.5717893 -1103.2761
+132336.2605405645 3.5717893 -1103.1576
+132337.2605406689 3.5717499 -1103.197
+132338.2605407732 3.5716712 -1103.197
+132339.2605408775 3.5717106 -1103.1774
+132340.2605409818 3.5717106 -1103.1378
+132341.2605410861 3.5717499 -1103.2168
+132342.2605411904 3.5716319 -1103.2366
+132343.2605412947 3.5716319 -1103.2366
+132344.260541399 3.5716319 -1103.1576
+132345.2605415033 3.5716712 -1103.2761
+132346.2605416076 3.5716319 -1103.1774
+132347.2605417119 3.5715926 -1103.2366
+132348.2605418162 3.5716712 -1103.2761
+132349.2605419206 3.5715926 -1103.2562
+132350.2605420249 3.5715532 -1103.2562
+132351.2605421292 3.5716712 -1103.2168
+132352.2605422335 3.5715532 -1103.2562
+132353.2605423378 3.5715926 -1103.2562
+132354.2605424421 3.5715532 -1103.2168
+132355.2605425464 3.5715139 -1103.2168
+132356.2605426507 3.5715139 -1103.2366
+132357.260542755 3.5715139 -1103.2761
+132358.2605428593 3.5713563 -1103.1378
+132359.2605429636 3.5715532 -1103.197
+132360.2605430679 3.5715139 -1103.197
+132361.2605431722 3.5715139 -1103.197
+132362.2605432766 3.571435 -1103.2562
+132363.2605433809 3.5715139 -1103.2562
+132364.2605434852 3.5715139 -1103.2761
+132365.2605435895 3.5714743 -1103.1774
+132366.2605436938 3.571317 -1103.1774
+132367.2605437981 3.5714743 -1103.2168
+132368.2605439024 3.5713956 -1103.2562
+132369.2605440067 3.5713563 -1103.2168
+132370.260544111 3.5713563 -1103.2959
+132371.2605442153 3.5713956 -1103.1774
+132372.2605443196 3.5713956 -1103.2761
+132373.2605444239 3.571317 -1103.2366
+132374.2605445283 3.5713956 -1103.1774
+132375.2605446326 3.5713563 -1103.1378
+132376.2605447369 3.571317 -1103.1378
+132377.2605448412 3.571317 -1103.2562
+132378.2605449455 3.5712776 -1103.1576
+132379.2605450498 3.5712383 -1103.2562
+132380.2605451541 3.5712776 -1103.2366
+132381.2605452584 3.5712776 -1103.2168
+132382.2605453627 3.5712776 -1103.1182
+132383.260545467 3.5712776 -1103.1774
+132384.2605455713 3.5712776 -1103.2168
+132385.2605456756 3.5711989 -1103.1378
+132386.26054578 3.57112 -1103.197
+132387.2605458843 3.5711594 -1103.1774
+132388.2605459886 3.5711989 -1103.2168
+132389.2605460929 3.5712383 -1103.2168
+132390.2605461972 3.5711594 -1103.1774
+132391.2605463015 3.5711594 -1103.1576
+132392.2605464058 3.5711594 -1103.2366
+132393.2605465101 3.5711989 -1103.1774
+132394.2605466144 3.5710413 -1103.197
+132395.2605467187 3.57112 -1103.1774
+132396.260546823 3.5711594 -1103.2168
+132397.2605469273 3.57112 -1103.2168
+132398.2605470316 3.5710807 -1103.1182
+132399.260547136 3.57112 -1103.2366
+132400.2605472403 3.57112 -1103.1774
+132401.2605473446 3.5710413 -1103.1378
+132402.2605474489 3.57112 -1103.2366
+132403.2605475532 3.5710413 -1103.197
+132404.2605476575 3.5711594 -1103.2366
+132405.2605477618 3.5711594 -1103.2168
+132406.2605478661 3.5710807 -1103.2168
+132407.2605479704 3.5711594 -1103.2366
+132408.2605480747 3.57112 -1103.1576
+132409.260548179 3.571002 -1103.197
+132410.2605482833 3.5709627 -1103.1774
+132411.2605483877 3.5709233 -1103.1774
+132412.260548492 3.5710807 -1103.2168
+132413.2605485963 3.5710413 -1103.2168
+132414.2605487006 3.5709233 -1103.2562
+132415.2605488049 3.5709627 -1103.197
+132416.2605489092 3.5709233 -1103.3156
+132417.2605490135 3.5709627 -1103.1774
+132418.2605491178 3.5710413 -1103.2959
+132419.2605492221 3.5709233 -1103.0984
+132420.2605493264 3.5709233 -1103.1576
+132421.2605494307 3.571002 -1103.1774
+132422.260549535 3.5709233 -1103.197
+132423.2605496394 3.571002 -1103.2168
+132424.2605497437 3.5709233 -1103.2168
+132425.260549848 3.570884 -1103.1774
+132426.2605499523 3.5708444 -1103.1378
+132427.2605500566 3.5709233 -1103.197
+132428.2605501609 3.5708444 -1103.2562
+132429.2605502652 3.5708444 -1103.2562
+132430.2605503695 3.5708051 -1103.1576
+132431.2605504738 3.5708051 -1103.1576
+132432.2605505781 3.5708444 -1103.2562
+132433.2605506824 3.570884 -1103.2168
+132434.2605507867 3.5708444 -1103.2168
+132435.260550891 3.5708051 -1103.2366
+132436.2605509954 3.5707657 -1103.197
+132437.2605510997 3.5707657 -1103.197
+132438.260551204 3.5707657 -1103.197
+132439.2605513083 3.5708051 -1103.1774
+132440.2605514126 3.5707657 -1103.1774
+132441.2605515169 3.5707264 -1103.0785
+132442.2605516212 3.5707264 -1103.1576
+132443.2605517255 3.5707264 -1103.2562
+132444.2605518298 3.5706871 -1103.2562
+132445.2605519341 3.5707264 -1103.2761
+132446.2605520384 3.5706871 -1103.2168
+132447.2605521427 3.5708444 -1103.2168
+132448.2605522471 3.5707264 -1103.1378
+132449.2605523514 3.5708051 -1103.1774
+132450.2605524557 3.5707657 -1103.2366
+132451.26055256 3.5707264 -1103.1378
+132452.2605526643 3.5706871 -1103.2366
+132453.2605527686 3.5706084 -1103.197
+132454.2605528729 3.5707264 -1103.197
+132455.2605529772 3.5707264 -1103.197
+132456.2605530815 3.5706477 -1103.1576
+132457.2605531858 3.5706084 -1103.1576
+132458.2605532901 3.5707264 -1103.1576
+132459.2605533944 3.5706477 -1103.1774
+132460.2605534988 3.5706477 -1103.1774
+132461.2605536031 3.5705295 -1103.0984
+132462.2605537074 3.5705688 -1103.1378
+132463.2605538117 3.5705688 -1103.2366
+132464.260553916 3.5705688 -1103.2959
+132465.2605540203 3.5706084 -1103.2761
+132466.2605541246 3.5705295 -1103.2761
+132467.2605542289 3.5705295 -1103.2761
+132468.2605543332 3.5705688 -1103.1774
+132469.2605544375 3.5704901 -1103.197
+132470.2605545418 3.5704508 -1103.1774
+132471.2605546461 3.5704901 -1103.1576
+132472.2605547505 3.5704901 -1103.2366
+132473.2605548548 3.5704901 -1103.1774
+132474.2605549591 3.5705295 -1103.2959
+132475.2605550634 3.5705295 -1103.197
+132476.2605551677 3.5703721 -1103.1378
+132477.260555272 3.5704901 -1103.2366
+132478.2605553763 3.5703721 -1103.2959
+132479.2605554806 3.5704508 -1103.1378
+132480.2605555849 3.5704901 -1103.2562
+132481.2605556892 3.5703328 -1103.2168
+132482.2605557935 3.5704114 -1103.2168
+132483.2605558978 3.5703328 -1103.1182
+132484.2605560021 3.5703721 -1103.2168
+132485.2605561065 3.5703721 -1103.1576
+132486.2605562108 3.5702934 -1103.1774
+132487.2605563151 3.5704114 -1103.2562
+132488.2605564194 3.5704114 -1103.2366
+132489.2605565237 3.5703328 -1103.2761
+132490.260556628 3.5703721 -1103.1774
+132491.2605567323 3.5702145 -1103.197
+132492.2605568366 3.5702934 -1103.2959
+132493.2605569409 3.5702538 -1103.2562
+132494.2605570452 3.5703328 -1103.2366
+132495.2605571495 3.5703721 -1103.2562
+132496.2605572538 3.5702538 -1103.1774
+132497.2605573582 3.5702538 -1103.1774
+132498.2605574625 3.5702145 -1103.2366
+132499.2605575668 3.5702145 -1103.2168
+132500.2605576711 3.5702934 -1103.2168
+132501.2605577754 3.5702538 -1103.1774
+132502.2605578797 3.5703328 -1103.0984
+132503.260557984 3.5702538 -1103.1774
+132504.2605580883 3.5702538 -1103.2366
+132505.2605581926 3.5701752 -1103.2562
+132506.2605582969 3.5701752 -1103.2168
+132507.2605584012 3.5702538 -1103.2761
+132508.2605585055 3.5700965 -1103.2761
+132509.2605586099 3.5701752 -1103.1774
+132510.2605587142 3.5701358 -1103.2366
+132511.2605588185 3.5702145 -1103.2562
+132512.2605589228 3.5702145 -1103.197
+132513.2605590271 3.5701752 -1103.1378
+132514.2605591314 3.5701358 -1103.3156
+132515.2605592357 3.5701358 -1103.1774
+132516.26055934 3.5700965 -1103.2761
+132517.2605594443 3.5700178 -1103.2366
+132518.2605595486 3.5700572 -1103.1378
+132519.2605596529 3.5701358 -1103.1182
+132520.2605597572 3.5700965 -1103.2168
+132521.2605598615 3.5700965 -1103.1576
+132522.2605599659 3.5701358 -1103.197
+132523.2605600702 3.5701358 -1103.197
+132524.2605601745 3.5700178 -1103.2168
+132525.2605602788 3.5700572 -1103.2366
+132526.2605603831 3.5699389 -1103.2168
+132527.2605604874 3.5700178 -1103.2168
+132528.2605605917 3.5700965 -1103.2562
+132529.260560696 3.5700178 -1103.2168
+132530.2605608003 3.5698602 -1103.1576
+132531.2605609046 3.5700178 -1103.2168
+132532.2605610089 3.5698996 -1103.2562
+132533.2605611132 3.5698996 -1103.2168
+132534.2605612176 3.5698996 -1103.1378
+132535.2605613219 3.5698996 -1103.1576
+132536.2605614262 3.5698209 -1103.2366
+132537.2605615305 3.5698996 -1103.197
+132538.2605616348 3.5698209 -1103.197
+132539.2605617391 3.5699389 -1103.1576
+132540.2605618434 3.5698602 -1103.1576
+132541.2605619477 3.5698996 -1103.2562
+132542.260562052 3.5698602 -1103.2562
+132543.2605621563 3.5698602 -1103.197
+132544.2605622606 3.5698209 -1103.2168
+132545.2605623649 3.5698209 -1103.2168
+132546.2605624693 3.5697422 -1103.197
+132547.2605625736 3.5698209 -1103.197
+132548.2605626779 3.5698602 -1103.2366
+132549.2605627822 3.5698209 -1103.197
+132550.2605628865 3.5697815 -1103.1378
+132551.2605629908 3.5697422 -1103.2562
+132552.2605630951 3.5698209 -1103.197
+132553.2605631994 3.5697029 -1103.2168
+132554.2605633037 3.5697029 -1103.197
+132555.260563408 3.5697029 -1103.2168
+132556.2605635123 3.5696635 -1103.2562
+132557.2605636166 3.5696635 -1103.197
+132558.2605637209 3.5696239 -1103.2761
+132559.2605638253 3.5695453 -1103.3156
+132560.2605639296 3.5696239 -1103.1378
+132561.2605640339 3.5697029 -1103.2168
+132562.2605641382 3.5696635 -1103.2366
+132563.2605642425 3.5697029 -1103.2562
+132564.2605643468 3.5695453 -1103.1378
+132565.2605644511 3.5695453 -1103.2959
+132566.2605645554 3.5695846 -1103.2562
+132567.2605646597 3.5695453 -1103.197
+132568.260564764 3.5694666 -1103.2562
+132569.2605648683 3.5695846 -1103.197
+132570.2605649726 3.5695453 -1103.2366
+132571.260565077 3.5695453 -1103.2959
+132572.2605651813 3.5694273 -1103.197
+132573.2605652856 3.5697029 -1103.1182
+132574.2605653899 3.5695059 -1103.2761
+132575.2605654942 3.5695453 -1103.1774
+132576.2605655985 3.5694273 -1103.2366
+132577.2605657028 3.5695059 -1103.1576
+132578.2605658071 3.5695059 -1103.2562
+132579.2605659114 3.5695059 -1103.197
+132580.2605660157 3.5693879 -1103.1182
+132581.26056612 3.5694666 -1103.197
+132582.2605662243 3.5695059 -1103.2168
+132583.2605663287 3.569309 -1103.2562
+132584.260566433 3.5694273 -1103.2366
+132585.2605665373 3.5693486 -1103.1576
+132586.2605666416 3.5693879 -1103.2168
+132587.2605667459 3.5693486 -1103.3156
+132588.2605668502 3.5694273 -1103.3156
+132589.2605669545 3.5694666 -1103.1576
+132590.2605670588 3.5693879 -1103.197
+132591.2605671631 3.5693486 -1103.1182
+132592.2605672674 3.5695059 -1103.197
+132593.2605673717 3.5693879 -1103.1576
+132594.260567476 3.5692697 -1103.2562
+132595.2605675804 3.5692697 -1103.1774
+132596.2605676847 3.5692303 -1103.1774
+132597.260567789 3.5692303 -1103.2761
+132598.2605678933 3.5693879 -1103.2168
+132599.2605679976 3.5692697 -1103.197
+132600.2605681019 3.569309 -1103.197
+132601.2605682062 3.5691516 -1103.1576
+132602.2605683105 3.569309 -1103.2562
+132603.2605684148 3.5691123 -1103.3551
+132604.2605685191 3.5692697 -1103.2562
+132605.2605686234 3.5692303 -1103.1774
+132606.2605687277 3.5691516 -1103.2168
+132607.260568832 3.569191 -1103.2168
+132608.2605689364 3.5691123 -1103.2168
+132609.2605690407 3.5692303 -1103.1576
+132610.260569145 3.5691123 -1103.197
+132611.2605692493 3.5691123 -1103.2168
+132612.2605693536 3.569191 -1103.1182
+132613.2605694579 3.5690336 -1103.2168
+132614.2605695622 3.5691123 -1103.1774
+132615.2605696665 3.5692303 -1103.197
+132616.2605697708 3.5691123 -1103.1182
+132617.2605698751 3.5691516 -1103.2562
+132618.2605699794 3.5691123 -1103.2168
+132619.2605700837 3.5691123 -1103.2168
+132620.2605701881 3.5690336 -1103.2761
+132621.2605702924 3.5690336 -1103.2761
+132622.2605703967 3.569073 -1103.2168
+132623.260570501 3.569073 -1103.2761
+132624.2605706053 3.5690336 -1103.1774
+132625.2605707096 3.569073 -1103.2366
+132626.2605708139 3.5691123 -1103.197
+132627.2605709182 3.5691123 -1103.197
+132628.2605710225 3.569073 -1103.1576
+132629.2605711268 3.569073 -1103.1774
+132630.2605712311 3.568994 -1103.197
+132631.2605713354 3.568994 -1103.1774
+132632.2605714398 3.568994 -1103.2168
+132633.2605715441 3.569073 -1103.2168
+132634.2605716484 3.5689154 -1103.2366
+132635.2605717527 3.568994 -1103.1378
+132636.260571857 3.5689154 -1103.1576
+132637.2605719613 3.568994 -1103.2168
+132638.2605720656 3.568994 -1103.197
+132639.2605721699 3.5689154 -1103.197
+132640.2605722742 3.568876 -1103.2761
+132641.2605723785 3.569073 -1103.197
+132642.2605724828 3.5689547 -1103.2562
+132643.2605725871 3.5689547 -1103.2168
+132644.2605726914 3.568876 -1103.197
+132645.2605727958 3.568876 -1103.2168
+132646.2605729001 3.5688367 -1103.2168
+132647.2605730044 3.5687973 -1103.2366
+132648.2605731087 3.568876 -1103.2562
+132649.260573213 3.5688367 -1103.3156
+132650.2605733173 3.5687973 -1103.2366
+132651.2605734216 3.568876 -1103.2366
+132652.2605735259 3.5687973 -1103.2168
+132653.2605736302 3.5688367 -1103.1774
+132654.2605737345 3.5687973 -1103.1576
+132655.2605738388 3.5688367 -1103.2168
+132656.2605739431 3.568758 -1103.2562
+132657.2605740475 3.5688367 -1103.1182
+132658.2605741518 3.5687184 -1103.197
+132659.2605742561 3.5687184 -1103.2168
+132660.2605743604 3.5687973 -1103.1774
+132661.2605744647 3.568758 -1103.2366
+132662.260574569 3.5687184 -1103.2761
+132663.2605746733 3.5687973 -1103.2761
+132664.2605747776 3.5687973 -1103.2366
+132665.2605748819 3.5687184 -1103.2168
+132666.2605749862 3.5687973 -1103.1774
+132667.2605750905 3.568758 -1103.197
+132668.2605751948 3.5687184 -1103.197
+132669.2605752992 3.5686791 -1103.1576
+132670.2605754035 3.5686791 -1103.2366
+132671.2605755078 3.5686791 -1103.2761
+132672.2605756121 3.5686791 -1103.2959
+132673.2605757164 3.5686791 -1103.2366
+132674.2605758207 3.5686398 -1103.2366
+132675.260575925 3.5686791 -1103.2168
+132676.2605760293 3.5686791 -1103.2168
+132677.2605761336 3.5686398 -1103.2761
+132678.2605762379 3.5685611 -1103.1774
+132679.2605763422 3.5687184 -1103.2366
+132680.2605764465 3.5686791 -1103.1576
+132681.2605765508 3.5687184 -1103.2366
+132682.2605766552 3.5686398 -1103.1182
+132683.2605767595 3.5685611 -1103.1774
+132684.2605768638 3.5686398 -1103.1774
+132685.2605769681 3.5685611 -1103.1576
+132686.2605770724 3.5686004 -1103.2562
+132687.2605771767 3.5685611 -1103.2562
+132688.260577281 3.5685611 -1103.2959
+132689.2605773853 3.5686004 -1103.2562
+132690.2605774896 3.5686004 -1103.197
+132691.2605775939 3.5686398 -1103.2761
+132692.2605776982 3.5684824 -1103.2562
+132693.2605778025 3.5685217 -1103.2366
+132694.2605779069 3.5685611 -1103.2366
+132695.2605780112 3.5684824 -1103.1378
+132696.2605781155 3.5684431 -1103.1774
+132697.2605782198 3.5684035 -1103.2562
+132698.2605783241 3.5685217 -1103.0984
+132699.2605784284 3.5684824 -1103.2168
+132700.2605785327 3.5684824 -1103.197
+132701.260578637 3.5684431 -1103.3156
+132702.2605787413 3.5684824 -1103.1774
+132703.2605788456 3.5684824 -1103.2366
+132704.2605789499 3.5684035 -1103.2168
+132705.2605790542 3.5684824 -1103.2168
+132706.2605791586 3.5683641 -1103.2366
+132707.2605792629 3.5684035 -1103.2168
+132708.2605793672 3.5684035 -1103.2562
+132709.2605794715 3.5684035 -1103.2168
+132710.2605795758 3.5683248 -1103.1774
+132711.2605796801 3.5682855 -1103.1774
+132712.2605797844 3.5684035 -1103.2366
+132713.2605798887 3.5683248 -1103.1576
+132714.260579993 3.5684431 -1103.2366
+132715.2605800973 3.5682855 -1103.0984
+132716.2605802016 3.5682461 -1103.1576
+132717.2605803059 3.5682461 -1103.2562
+132718.2605804103 3.5682461 -1103.2761
+132719.2605805146 3.5682855 -1103.197
+132720.2605806189 3.5682068 -1103.2761
+132721.2605807232 3.5681281 -1103.2761
+132722.2605808275 3.5683248 -1103.197
+132723.2605809318 3.5682855 -1103.2562
+132724.2605810361 3.5683248 -1103.197
+132725.2605811404 3.5682068 -1103.1576
+132726.2605812447 3.5682461 -1103.197
+132727.260581349 3.5682068 -1103.2562
+132728.2605814533 3.5682855 -1103.2959
+132729.2605815576 3.5681674 -1103.1378
+132730.2605816619 3.5682068 -1103.2168
+132731.2605817663 3.5680885 -1103.197
+132732.2605818706 3.5682068 -1103.1774
+132733.2605819749 3.5682068 -1103.2366
+132734.2605820792 3.5680885 -1103.2168
+132735.2605821835 3.5680885 -1103.197
+132736.2605822878 3.5681674 -1103.1774
+132737.2605823921 3.5681281 -1103.1576
+132738.2605824964 3.5681674 -1103.1576
+132739.2605826007 3.5680885 -1103.2562
+132740.260582705 3.5681281 -1103.2562
+132741.2605828093 3.5680492 -1103.1378
+132742.2605829136 3.5681281 -1103.2366
+132743.260583018 3.5680885 -1103.197
+132744.2605831223 3.5680885 -1103.2168
+132745.2605832266 3.5681281 -1103.2168
+132746.2605833309 3.5680492 -1103.1774
+132747.2605834352 3.5681281 -1103.2168
+132748.2605835395 3.5680099 -1103.2168
+132749.2605836438 3.5680099 -1103.197
+132750.2605837481 3.5680099 -1103.2366
+132751.2605838524 3.5680492 -1103.2168
+132752.2605839567 3.5680885 -1103.1378
+132753.260584061 3.5680492 -1103.2366
+132754.2605841653 3.5681281 -1103.1774
+132755.2605842697 3.5680492 -1103.1774
+132756.260584374 3.5680099 -1103.197
+132757.2605844783 3.5679705 -1103.2366
+132758.2605845826 3.5679312 -1103.1774
+132759.2605846869 3.5679312 -1103.1378
+132760.2605847912 3.5679705 -1103.2761
+132761.2605848955 3.5679705 -1103.2168
+132762.2605849998 3.5680492 -1103.2562
+132763.2605851041 3.5679312 -1103.1774
+132764.2605852084 3.5680492 -1103.197
+132765.2605853127 3.5680099 -1103.1576
+132766.260585417 3.5680099 -1103.1378
+132767.2605855213 3.5679705 -1103.2366
+132768.2605856257 3.5678132 -1103.2761
+132769.26058573 3.5679312 -1103.197
+132770.2605858343 3.5679312 -1103.2562
+132771.2605859386 3.5679705 -1103.2761
+132772.2605860429 3.5678525 -1103.2366
+132773.2605861472 3.5678132 -1103.1576
+132774.2605862515 3.5678525 -1103.1774
+132775.2605863558 3.5677736 -1103.2366
+132776.2605864601 3.5679705 -1103.197
+132777.2605865644 3.5678525 -1103.2562
+132778.2605866687 3.5677736 -1103.2168
+132779.260586773 3.5678132 -1103.2168
+132780.2605868774 3.5677342 -1103.1774
+132781.2605869817 3.5677736 -1103.1774
+132782.260587086 3.5678918 -1103.2168
+132783.2605871903 3.5677736 -1103.1774
+132784.2605872946 3.5677736 -1103.1774
+132785.2605873989 3.5677736 -1103.2366
+132786.2605875032 3.5677736 -1103.2562
+132787.2605876075 3.5678132 -1103.197
+132788.2605877118 3.5677736 -1103.1774
+132789.2605878161 3.5675769 -1103.1378
+132790.2605879204 3.5677342 -1103.1576
+132791.2605880247 3.5677342 -1103.197
+132792.2605881291 3.5677736 -1103.2366
+132793.2605882334 3.5676556 -1103.2168
+132794.2605883377 3.5676162 -1103.197
+132795.260588442 3.5677342 -1103.1576
+132796.2605885463 3.5677342 -1103.197
+132797.2605886506 3.5676162 -1103.1774
+132798.2605887549 3.5676949 -1103.2168
+132799.2605888592 3.5676162 -1103.1774
+132800.2605889635 3.5675769 -1103.1182
+132801.2605890678 3.5676949 -1103.1576
+132802.2605891721 3.5676556 -1103.1378
+132803.2605892764 3.5676556 -1103.2168
+132804.2605893807 3.5675375 -1103.2562
+132805.2605894851 3.5676162 -1103.2366
+132806.2605895894 3.5676556 -1103.2761
+132807.2605896937 3.5675769 -1103.2562
+132808.260589798 3.5676162 -1103.1378
+132809.2605899023 3.5674586 -1103.2761
+132810.2605900066 3.5675375 -1103.1576
+132811.2605901109 3.5675375 -1103.1576
+132812.2605902152 3.5675375 -1103.2366
+132813.2605903195 3.5674982 -1103.2366
+132814.2605904238 3.5674982 -1103.2761
+132815.2605905281 3.5675375 -1103.2366
+132816.2605906324 3.5675769 -1103.1774
+132817.2605907368 3.5674982 -1103.3551
+132818.2605908411 3.5674193 -1103.1774
+132819.2605909454 3.5674982 -1103.1576
+132820.2605910497 3.5675375 -1103.197
+132821.260591154 3.5674982 -1103.1774
+132822.2605912583 3.5673406 -1103.197
+132823.2605913626 3.5674982 -1103.1576
+132824.2605914669 3.5674982 -1103.2562
+132825.2605915712 3.5674193 -1103.2168
+132826.2605916755 3.5674193 -1103.197
+132827.2605917798 3.56738 -1103.2168
+132828.2605918841 3.5673406 -1103.2168
+132829.2605919885 3.56738 -1103.2168
+132830.2605920928 3.5673013 -1103.2168
+132831.2605921971 3.5673406 -1103.2168
+132832.2605923014 3.5673406 -1103.2168
+132833.2605924057 3.5673406 -1103.197
+132834.26059251 3.5673406 -1103.2366
+132835.2605926143 3.56738 -1103.197
+132836.2605927186 3.5672619 -1103.197
+132837.2605928229 3.5674193 -1103.1774
+132838.2605929272 3.5673013 -1103.1774
+132839.2605930315 3.5671043 -1103.197
+132840.2605931358 3.5673013 -1103.197
+132841.2605932401 3.56738 -1103.2761
+132842.2605933445 3.56738 -1103.2562
+132843.2605934488 3.5672226 -1103.2366
+132844.2605935531 3.5671437 -1103.2168
+132845.2605936574 3.5673013 -1103.2562
+132846.2605937617 3.5672619 -1103.1378
+132847.260593866 3.5672226 -1103.2168
+132848.2605939703 3.5671833 -1103.2761
+132849.2605940746 3.5672226 -1103.2366
+132850.2605941789 3.5671043 -1103.2959
+132851.2605942832 3.5672226 -1103.2562
+132852.2605943875 3.5672619 -1103.1576
+132853.2605944918 3.5671833 -1103.2168
+132854.2605945962 3.5671437 -1103.2959
+132855.2605947005 3.5672226 -1103.1774
+132856.2605948048 3.5671043 -1103.197
+132857.2605949091 3.5671437 -1103.2761
+132858.2605950134 3.5671437 -1103.1774
+132859.2605951177 3.5671043 -1103.2366
+132860.260595222 3.5672619 -1103.2562
+132861.2605953263 3.567065 -1103.2366
+132862.2605954306 3.5671437 -1103.2366
+132863.2605955349 3.5670257 -1103.2366
+132864.2605956392 3.567065 -1103.2562
+132865.2605957435 3.5671043 -1103.197
+132866.2605958479 3.5670257 -1103.1774
+132867.2605959522 3.5670257 -1103.2366
+132868.2605960565 3.5669863 -1103.2168
+132869.2605961608 3.5671833 -1103.3156
+132870.2605962651 3.5671043 -1103.2168
+132871.2605963694 3.5670257 -1103.2761
+132872.2605964737 3.5669863 -1103.1774
+132873.260596578 3.5671043 -1103.0984
+132874.2605966823 3.567065 -1103.197
+132875.2605967866 3.5671043 -1103.1774
+132876.2605968909 3.566947 -1103.2366
+132877.2605969952 3.5670257 -1103.2168
+132878.2605970996 3.566947 -1103.0984
+132879.2605972039 3.5670257 -1103.2168
+132880.2605973082 3.566947 -1103.2168
+132881.2605974125 3.5668681 -1103.197
+132882.2605975168 3.5669076 -1103.1774
+132883.2605976211 3.5669863 -1103.197
+132884.2605977254 3.5668681 -1103.2168
+132885.2605978297 3.5669863 -1103.3156
+132886.260597934 3.5670257 -1103.2562
+132887.2605980383 3.5669076 -1103.1774
+132888.2605981426 3.5668681 -1103.2366
+132889.2605982469 3.5669076 -1103.2761
+132890.2605983512 3.5668681 -1103.197
+132891.2605984556 3.5668681 -1103.3156
+132892.2605985599 3.5668287 -1103.3353
+132893.2605986642 3.5667107 -1103.0984
+132894.2605987685 3.5668287 -1103.197
+132895.2605988728 3.5668287 -1103.2168
+132896.2605989771 3.5668287 -1103.1774
+132897.2605990814 3.5669076 -1103.2168
+132898.2605991857 3.5667894 -1103.2562
+132899.26059929 3.56675 -1103.197
+132900.2605993943 3.5668681 -1103.1576
+132901.2605994986 3.5667894 -1103.2562
+132902.2605996029 3.5668287 -1103.1774
+132903.2605997073 3.5668287 -1103.1774
+132904.2605998116 3.56675 -1103.2168
+132905.2605999159 3.56675 -1103.1774
+132906.2606000202 3.56675 -1103.2168
+132907.2606001245 3.5666714 -1103.2366
+132908.2606002288 3.5666714 -1103.197
+132909.2606003331 3.5667107 -1103.2168
+132910.2606004374 3.5666714 -1103.1378
+132911.2606005417 3.56675 -1103.0785
+132912.260600646 3.5666714 -1103.197
+132913.2606007503 3.566632 -1103.2562
+132914.2606008546 3.5667107 -1103.2168
+132915.260600959 3.5667107 -1103.0984
+132916.2606010633 3.5665531 -1103.2366
+132917.2606011676 3.566632 -1103.2168
+132918.2606012719 3.5666714 -1103.1576
+132919.2606013762 3.5665927 -1103.197
+132920.2606014805 3.566632 -1103.1774
+132921.2606015848 3.5665531 -1103.2761
+132922.2606016891 3.5665138 -1103.1774
+132923.2606017934 3.5665927 -1103.2366
+132924.2606018977 3.5665927 -1103.1576
+132925.260602002 3.5665138 -1103.1774
+132926.2606021063 3.566632 -1103.2366
+132927.2606022106 3.5663171 -1103.197
+132928.260602315 3.5665138 -1103.2562
+132929.2606024193 3.5665531 -1103.2761
+132930.2606025236 3.5664744 -1103.2168
+132931.2606026279 3.5664744 -1103.197
+132932.2606027322 3.5664744 -1103.2366
+132933.2606028365 3.5664744 -1103.1576
+132934.2606029408 3.5663564 -1103.197
+132935.2606030451 3.5663564 -1103.2168
+132936.2606031494 3.5663564 -1103.197
+132937.2606032537 3.5663958 -1103.197
+132938.260603358 3.5664351 -1103.1774
+132939.2606034623 3.5663171 -1103.197
+132940.2606035667 3.5663171 -1103.2761
+132941.260603671 3.5663958 -1103.2168
+132942.2606037753 3.5663171 -1103.1774
+132943.2606038796 3.5664744 -1103.2761
+132944.2606039839 3.5663564 -1103.2168
+132945.2606040882 3.5663171 -1103.2562
+132946.2606041925 3.5663564 -1103.2366
+132947.2606042968 3.5661595 -1103.2168
+132948.2606044011 3.5663958 -1103.2366
+132949.2606045054 3.5662382 -1103.2168
+132950.2606046097 3.5662382 -1103.1576
+132951.260604714 3.5662777 -1103.2562
+132952.2606048184 3.5662382 -1103.2168
+132953.2606049227 3.5661988 -1103.197
+132954.260605027 3.5661201 -1103.1774
+132955.2606051313 3.5661201 -1103.1378
+132956.2606052356 3.5661595 -1103.2562
+132957.2606053399 3.5661595 -1103.1774
+132958.2606054442 3.5661201 -1103.2562
+132959.2606055485 3.5661988 -1103.2366
+132960.2606056528 3.5661595 -1103.1576
+132961.2606057571 3.5661595 -1103.2562
+132962.2606058614 3.5660808 -1103.3353
+132963.2606059657 3.5661595 -1103.2168
+132964.26060607 3.5661201 -1103.2562
+132965.2606061744 3.5661201 -1103.2168
+132966.2606062787 3.5660415 -1103.2761
+132967.260606383 3.5660415 -1103.2366
+132968.2606064873 3.5660021 -1103.1774
+132969.2606065916 3.5661201 -1103.197
+132970.2606066959 3.5659232 -1103.1576
+132971.2606068002 3.5660415 -1103.2366
+132972.2606069045 3.5660021 -1103.0984
+132973.2606070088 3.5660808 -1103.197
+132974.2606071131 3.5660808 -1103.1774
+132975.2606072174 3.5660021 -1103.2761
+132976.2606073217 3.5660415 -1103.197
+132977.2606074261 3.5659232 -1103.1774
+132978.2606075304 3.5659232 -1103.1774
+132979.2606076347 3.5659628 -1103.2366
+132980.260607739 3.5660021 -1103.197
+132981.2606078433 3.5659232 -1103.197
+132982.2606079476 3.5659232 -1103.197
+132983.2606080519 3.5659628 -1103.2168
+132984.2606081562 3.5659232 -1103.2959
+132985.2606082605 3.5658445 -1103.2168
+132986.2606083648 3.5658445 -1103.2168
+132987.2606084691 3.5657659 -1103.1576
+132988.2606085734 3.5658052 -1103.2168
+132989.2606086778 3.5658445 -1103.2562
+132990.2606087821 3.5657659 -1103.2168
+132991.2606088864 3.5658052 -1103.1774
+132992.2606089907 3.5657659 -1103.197
+132993.260609095 3.5657659 -1103.1576
+132994.2606091993 3.5657265 -1103.2562
+132995.2606093036 3.5658052 -1103.2168
+132996.2606094079 3.5656872 -1103.2168
+132997.2606095122 3.5656872 -1103.2366
+132998.2606096165 3.5656478 -1103.1576
+132999.2606097208 3.5656872 -1103.197
+133000.2606098251 3.5656872 -1103.2761
+133001.2606099295 3.5656478 -1103.2562
+133002.2606100338 3.5656872 -1103.1774
+133003.2606101381 3.5656872 -1103.1576
+133004.2606102424 3.5656872 -1103.0984
+133005.2606103467 3.5656478 -1103.2366
+133006.260610451 3.5656083 -1103.2761
+133007.2606105553 3.5656872 -1103.2168
+133008.2606106596 3.5655689 -1103.2562
+133009.2606107639 3.5656478 -1103.2562
+133010.2606108682 3.5656478 -1103.2168
+133011.2606109725 3.5655296 -1103.1576
+133012.2606110768 3.5655296 -1103.197
+133013.2606111811 3.5655689 -1103.197
+133014.2606112855 3.5655296 -1103.197
+133015.2606113898 3.5655296 -1103.197
+133016.2606114941 3.5655689 -1103.1774
+133017.2606115984 3.5656083 -1103.1774
+133018.2606117027 3.5655689 -1103.1774
+133019.260611807 3.5654509 -1103.2959
+133020.2606119113 3.5654902 -1103.1378
+133021.2606120156 3.5655296 -1103.1774
+133022.2606121199 3.5654902 -1103.2959
+133023.2606122242 3.5655689 -1103.2562
+133024.2606123285 3.5655296 -1103.1774
+133025.2606124328 3.5654509 -1103.2366
+133026.2606125372 3.5654509 -1103.197
+133027.2606126415 3.5654116 -1103.2366
+133028.2606127458 3.5654116 -1103.197
+133029.2606128501 3.5654116 -1103.0785
+133030.2606129544 3.5652933 -1103.0984
+133031.2606130587 3.5654116 -1103.197
+133032.260613163 3.5653722 -1103.1774
+133033.2606132673 3.5652933 -1103.1774
+133034.2606133716 3.5653722 -1103.1182
+133035.2606134759 3.5652933 -1103.2168
+133036.2606135802 3.5653722 -1103.2366
+133037.2606136845 3.5653327 -1103.2562
+133038.2606137889 3.5653327 -1103.2366
+133039.2606138932 3.5652146 -1103.2562
+133040.2606139975 3.5652933 -1103.2562
+133041.2606141018 3.5652933 -1103.2959
+133042.2606142061 3.565254 -1103.1378
+133043.2606143104 3.5652146 -1103.1774
+133044.2606144147 3.5652933 -1103.197
+133045.260614519 3.5652146 -1103.2168
+133046.2606146233 3.565254 -1103.2562
+133047.2606147276 3.5651753 -1103.2366
+133048.2606148319 3.5651753 -1103.197
+133049.2606149362 3.5651753 -1103.1774
+133050.2606150405 3.5652146 -1103.2168
+133051.2606151449 3.5652146 -1103.2366
+133052.2606152492 3.565136 -1103.1774
+133053.2606153535 3.565136 -1103.1576
+133054.2606154578 3.565136 -1103.2562
+133055.2606155621 3.565136 -1103.1182
+133056.2606156664 3.5650573 -1103.197
+133057.2606157707 3.5650573 -1103.2168
+133058.260615875 3.565136 -1103.2168
+133059.2606159793 3.5649784 -1103.1774
+133060.2606160836 3.5649784 -1103.2168
+133061.2606161879 3.5650573 -1103.1576
+133062.2606162922 3.564939 -1103.2168
+133063.2606163966 3.5650177 -1103.197
+133064.2606165009 3.5650966 -1103.2366
+133065.2606166052 3.564939 -1103.2366
+133066.2606167095 3.564939 -1103.1576
+133067.2606168138 3.564939 -1103.197
+133068.2606169181 3.5649784 -1103.197
+133069.2606170224 3.564939 -1103.3156
+133070.2606171267 3.5648997 -1103.197
+133071.260617231 3.5649784 -1103.2168
+133072.2606173353 3.5648997 -1103.2168
+133073.2606174396 3.5649784 -1103.2168
+133074.2606175439 3.5648997 -1103.2562
+133075.2606176483 3.564821 -1103.1378
+133076.2606177526 3.5648997 -1103.3353
+133077.2606178569 3.5648603 -1103.1378
+133078.2606179612 3.5648997 -1103.2168
+133079.2606180655 3.564821 -1103.197
+133080.2606181698 3.564821 -1103.197
+133081.2606182741 3.5648997 -1103.2959
+133082.2606183784 3.5648997 -1103.2761
+133083.2606184827 3.5647817 -1103.2168
+133084.260618587 3.5647027 -1103.2168
+133085.2606186913 3.564821 -1103.197
+133086.2606187956 3.5647027 -1103.1378
+133087.2606188999 3.5646634 -1103.2366
+133088.2606190043 3.5647027 -1103.2562
+133089.2606191086 3.564821 -1103.1774
+133090.2606192129 3.5647423 -1103.2366
+133091.2606193172 3.5647027 -1103.2366
+133092.2606194215 3.5647027 -1103.197
+133093.2606195258 3.5647817 -1103.2168
+133094.2606196301 3.5646241 -1103.2366
+133095.2606197344 3.5646634 -1103.197
+133096.2606198387 3.5646634 -1103.2959
+133097.260619943 3.5645847 -1103.2168
+133098.2606200473 3.5646241 -1103.197
+133099.2606201516 3.5645847 -1103.2168
+133100.260620256 3.5646241 -1103.197
+133101.2606203603 3.5647423 -1103.2562
+133102.2606204646 3.5645454 -1103.2562
+133103.2606205689 3.5645454 -1103.2366
+133104.2606206732 3.5645847 -1103.197
+133105.2606207775 3.5645454 -1103.197
+133106.2606208818 3.5646241 -1103.197
+133107.2606209861 3.5644667 -1103.2562
+133108.2606210904 3.5645847 -1103.2366
+133109.2606211947 3.5645061 -1103.2562
+133110.260621299 3.5644274 -1103.1378
+133111.2606214033 3.5645454 -1103.197
+133112.2606215077 3.5645061 -1103.1774
+133113.260621612 3.5645061 -1103.1774
+133114.2606217163 3.5645454 -1103.2761
+133115.2606218206 3.5644274 -1103.2366
+133116.2606219249 3.5643091 -1103.2366
+133117.2606220292 3.5645454 -1103.2562
+133118.2606221335 3.5644274 -1103.1576
+133119.2606222378 3.5645454 -1103.1774
+133120.2606223421 3.5645061 -1103.2562
+133121.2606224464 3.5644667 -1103.2168
+133122.2606225507 3.5644667 -1103.2761
+133123.260622655 3.5643878 -1103.2366
+133124.2606227594 3.5643091 -1103.1182
+133125.2606228637 3.5643878 -1103.2168
+133126.260622968 3.5645847 -1103.197
+133127.2606230723 3.5643485 -1103.2562
+133128.2606231766 3.5645061 -1103.2366
+133129.2606232809 3.5643878 -1103.2761
+133130.2606233852 3.5644274 -1103.1774
+133131.2606234895 3.5643485 -1103.2562
+133132.2606235938 3.5642698 -1103.197
+133133.2606236981 3.5643091 -1103.2562
+133134.2606238024 3.5643485 -1103.0785
+133135.2606239067 3.5643091 -1103.2366
+133136.260624011 3.5643091 -1103.2168
+133137.2606241154 3.5643485 -1103.2366
+133138.2606242197 3.5643091 -1103.2366
+133139.260624324 3.5642698 -1103.1576
+133140.2606244283 3.5642698 -1103.2562
+133141.2606245326 3.5643091 -1103.2761
+133142.2606246369 3.5642304 -1103.197
+133143.2606247412 3.5642698 -1103.2761
+133144.2606248455 3.5643878 -1103.2168
+133145.2606249498 3.5641911 -1103.2366
+133146.2606250541 3.5642304 -1103.1378
+133147.2606251584 3.5642698 -1103.1774
+133148.2606252627 3.5641911 -1103.1576
+133149.2606253671 3.5642304 -1103.1378
+133150.2606254714 3.5641911 -1103.1576
+133151.2606255757 3.5642698 -1103.2366
+133152.26062568 3.5643485 -1103.197
+133153.2606257843 3.5641911 -1103.2562
+133154.2606258886 3.5641518 -1103.2562
+133155.2606259929 3.5640728 -1103.2562
+133156.2606260972 3.5641911 -1103.2168
+133157.2606262015 3.5641911 -1103.1774
+133158.2606263058 3.5640335 -1103.1576
+133159.2606264101 3.5640728 -1103.1378
+133160.2606265144 3.5641518 -1103.2761
+133161.2606266188 3.5640335 -1103.0984
+133162.2606267231 3.5640728 -1103.1182
+133163.2606268274 3.5641518 -1103.2366
+133164.2606269317 3.5641518 -1103.197
+133165.260627036 3.5639942 -1103.2562
+133166.2606271403 3.5639548 -1103.197
+133167.2606272446 3.5640728 -1103.2761
+133168.2606273489 3.5640728 -1103.2562
+133169.2606274532 3.5640335 -1103.197
+133170.2606275575 3.5641911 -1103.1378
+133171.2606276618 3.5640335 -1103.0984
+133172.2606277661 3.5639942 -1103.2366
+133173.2606278704 3.5639155 -1103.197
+133174.2606279748 3.5639155 -1103.2366
+133175.2606280791 3.5639155 -1103.2366
+133176.2606281834 3.5639155 -1103.197
+133177.2606282877 3.5639548 -1103.1774
+133178.260628392 3.5638368 -1103.2761
+133179.2606284963 3.5638368 -1103.1774
+133180.2606286006 3.5638368 -1103.2761
+133181.2606287049 3.5638368 -1103.1774
+133182.2606288092 3.5638368 -1103.2761
+133183.2606289135 3.5638368 -1103.0984
+133184.2606290178 3.5638368 -1103.2562
+133185.2606291221 3.5637975 -1103.2562
+133186.2606292265 3.5638368 -1103.1774
+133187.2606293308 3.5637186 -1103.1182
+133188.2606294351 3.5637579 -1103.1182
+133189.2606295394 3.5636792 -1103.2562
+133190.2606296437 3.5637579 -1103.1774
+133191.260629748 3.5636792 -1103.197
+133192.2606298523 3.5637579 -1103.2562
+133193.2606299566 3.5636399 -1103.2168
+133194.2606300609 3.5636792 -1103.2366
+133195.2606301652 3.5637186 -1103.197
+133196.2606302695 3.5636792 -1103.2562
+133197.2606303738 3.5637579 -1103.1774
+133198.2606304782 3.5636005 -1103.0984
+133199.2606305825 3.5636005 -1103.2168
+133200.2606306868 3.5635219 -1103.0984
+133201.2606307911 3.5636005 -1103.1774
+133202.2606308954 3.5636399 -1103.2761
+133203.2606309997 3.5635219 -1103.2959
+133204.260631104 3.5635612 -1103.1576
+133205.2606312083 3.5635219 -1103.1182
+133206.2606313126 3.5635612 -1103.197
+133207.2606314169 3.5634823 -1103.1378
+133208.2606315212 3.5634429 -1103.2366
+133209.2606316255 3.5634823 -1103.1576
+133210.2606317298 3.5635219 -1103.1576
+133211.2606318342 3.5634823 -1103.2366
+133212.2606319385 3.5634823 -1103.2761
+133213.2606320428 3.5634823 -1103.2168
+133214.2606321471 3.5634823 -1103.197
+133215.2606322514 3.5633643 -1103.1182
+133216.2606323557 3.5633643 -1103.1576
+133217.26063246 3.5633249 -1103.1576
+133218.2606325643 3.5633643 -1103.2366
+133219.2606326686 3.5633643 -1103.1774
+133220.2606327729 3.5632463 -1103.2366
+133221.2606328772 3.5633643 -1103.2168
+133222.2606329815 3.5633249 -1103.1576
+133223.2606330859 3.5634429 -1103.1576
+133224.2606331902 3.5631673 -1103.2366
+133225.2606332945 3.5633643 -1103.2168
+133226.2606333988 3.5633643 -1103.1576
+133227.2606335031 3.5632856 -1103.2168
+133228.2606336074 3.5632463 -1103.197
+133229.2606337117 3.5632069 -1103.2562
+133230.260633816 3.5632856 -1103.2562
+133231.2606339203 3.5633643 -1103.2168
+133232.2606340246 3.5632463 -1103.2168
+133233.2606341289 3.5632856 -1103.2562
+133234.2606342332 3.5632463 -1103.1774
+133235.2606343376 3.5632856 -1103.2168
+133236.2606344419 3.5632069 -1103.1576
+133237.2606345462 3.5631673 -1103.2366
+133238.2606346505 3.5631673 -1103.197
+133239.2606347548 3.5630887 -1103.2168
+133240.2606348591 3.5631673 -1103.2168
+133241.2606349634 3.5632069 -1103.1576
+133242.2606350677 3.5632463 -1103.197
+133243.260635172 3.5631673 -1103.1576
+133244.2606352763 3.563128 -1103.1182
+133245.2606353806 3.5630493 -1103.2562
+133246.2606354849 3.5630887 -1103.1576
+133247.2606355892 3.563128 -1103.2562
+133248.2606356936 3.563128 -1103.2168
+133249.2606357979 3.5630493 -1103.2366
+133250.2606359022 3.563128 -1103.2562
+133251.2606360065 3.5630493 -1103.2366
+133252.2606361108 3.5630493 -1103.1774
+133253.2606362151 3.5630887 -1103.2761
+133254.2606363194 3.5630493 -1103.1576
+133255.2606364237 3.5630493 -1103.197
+133256.260636528 3.5630493 -1103.197
+133257.2606366323 3.56301 -1103.197
+133258.2606367366 3.5629706 -1103.2366
+133259.2606368409 3.56301 -1103.2366
+133260.2606369453 3.563128 -1103.197
+133261.2606370496 3.5630493 -1103.197
+133262.2606371539 3.5630493 -1103.2366
+133263.2606372582 3.5630493 -1103.2761
+133264.2606373625 3.5630887 -1103.2761
+133265.2606374668 3.5630493 -1103.2168
+133266.2606375711 3.5629706 -1103.2168
+133267.2606376754 3.56301 -1103.2562
+133268.2606377797 3.5629313 -1103.1576
+133269.260637884 3.56301 -1103.1576
+133270.2606379883 3.56301 -1103.2761
+133271.2606380926 3.56301 -1103.1576
+133272.260638197 3.5629706 -1103.1774
+133273.2606383013 3.56301 -1103.1378
+133274.2606384056 3.562892 -1103.1774
+133275.2606385099 3.56301 -1103.0984
+133276.2606386142 3.5629706 -1103.2562
+133277.2606387185 3.5629706 -1103.2366
+133278.2606388228 3.5629706 -1103.197
+133279.2606389271 3.5629313 -1103.2562
+133280.2606390314 3.5629706 -1103.2761
+133281.2606391357 3.5629706 -1103.197
+133282.26063924 3.5628524 -1103.1774
+133283.2606393443 3.5629706 -1103.2562
+133284.2606394487 3.562892 -1103.1378
+133285.260639553 3.562813 -1103.1774
+133286.2606396573 3.5628524 -1103.3749
+133287.2606397616 3.562892 -1103.1576
+133288.2606398659 3.5627737 -1103.2562
+133289.2606399702 3.5627737 -1103.2562
+133290.2606400745 3.5628524 -1103.1576
+133291.2606401788 3.5627737 -1103.1378
+133292.2606402831 3.562813 -1103.2366
+133293.2606403874 3.5627344 -1103.2168
+133294.2606404917 3.5627737 -1103.1182
+133295.260640596 3.5628524 -1103.197
+133296.2606407003 3.5626557 -1103.2562
+133297.2606408047 3.5627737 -1103.2168
+133298.260640909 3.5627344 -1103.1576
+133299.2606410133 3.5627737 -1103.1378
+133300.2606411176 3.562695 -1103.2366
+133301.2606412219 3.5626557 -1103.197
+133302.2606413262 3.5625374 -1103.2562
+133303.2606414305 3.562695 -1103.2761
+133304.2606415348 3.5626557 -1103.1774
+133305.2606416391 3.5626163 -1103.2959
+133306.2606417434 3.5626557 -1103.1576
+133307.2606418477 3.5626163 -1103.1576
+133308.260641952 3.5626163 -1103.1576
+133309.2606420564 3.5626557 -1103.197
+133310.2606421607 3.5626163 -1103.1774
+133311.260642265 3.5625374 -1103.2366
+133312.2606423693 3.562577 -1103.2366
+133313.2606424736 3.5625374 -1103.2366
+133314.2606425779 3.562577 -1103.1774
+133315.2606426822 3.5624981 -1103.2761
+133316.2606427865 3.5624588 -1103.197
+133317.2606428908 3.562577 -1103.2168
+133318.2606429951 3.5624981 -1103.197
+133319.2606430994 3.5624981 -1103.2959
+133320.2606432037 3.5624981 -1103.0785
+133321.2606433081 3.5624588 -1103.197
+133322.2606434124 3.5623801 -1103.1774
+133323.2606435167 3.5624981 -1103.0984
+133324.260643621 3.5624194 -1103.2366
+133325.2606437253 3.5624194 -1103.2959
+133326.2606438296 3.5623801 -1103.1774
+133327.2606439339 3.5624194 -1103.197
+133328.2606440382 3.5624194 -1103.1774
+133329.2606441425 3.5624194 -1103.2761
+133330.2606442468 3.5623014 -1103.1576
+133331.2606443511 3.5623801 -1103.197
+133332.2606444554 3.5623407 -1103.197
+133333.2606445597 3.5623407 -1103.2366
+133334.2606446641 3.5623407 -1103.2366
+133335.2606447684 3.5623014 -1103.2562
+133336.2606448727 3.5623407 -1103.1774
+133337.260644977 3.5622225 -1103.1576
+133338.2606450813 3.5623014 -1103.1774
+133339.2606451856 3.5623014 -1103.2761
+133340.2606452899 3.5621831 -1103.0785
+133341.2606453942 3.5622225 -1103.2761
+133342.2606454985 3.5622621 -1103.2168
+133343.2606456028 3.5621831 -1103.197
+133344.2606457071 3.5622225 -1103.1774
+133345.2606458114 3.5621438 -1103.2761
+133346.2606459158 3.5622225 -1103.2168
+133347.2606460201 3.5622621 -1103.2168
+133348.2606461244 3.5622621 -1103.2562
+133349.2606462287 3.5621831 -1103.197
+133350.260646333 3.5622225 -1103.2168
+133351.2606464373 3.5621045 -1103.2168
+133352.2606465416 3.5621831 -1103.2168
+133353.2606466459 3.5621045 -1103.197
+133354.2606467502 3.5621438 -1103.197
+133355.2606468545 3.5620258 -1103.2168
+133356.2606469588 3.5621438 -1103.197
+133357.2606470631 3.5620651 -1103.2366
+133358.2606471675 3.5620651 -1103.0984
+133359.2606472718 3.5621045 -1103.197
+133360.2606473761 3.5619864 -1103.2366
+133361.2606474804 3.5620258 -1103.2366
+133362.2606475847 3.5621045 -1103.2562
+133363.260647689 3.5619864 -1103.1774
+133364.2606477933 3.5621045 -1103.2562
+133365.2606478976 3.5619471 -1103.197
+133366.2606480019 3.5621045 -1103.197
+133367.2606481062 3.5620651 -1103.2761
+133368.2606482105 3.5619075 -1103.1576
+133369.2606483148 3.5620651 -1103.197
+133370.2606484191 3.5619864 -1103.1576
+133371.2606485235 3.5619075 -1103.1774
+133372.2606486278 3.5618682 -1103.2168
+133373.2606487321 3.5619471 -1103.3156
+133374.2606488364 3.5618682 -1103.3156
+133375.2606489407 3.5618289 -1103.2366
+133376.260649045 3.5618682 -1103.1774
+133377.2606491493 3.5618682 -1103.2366
+133378.2606492536 3.5618289 -1103.1378
+133379.2606493579 3.5617895 -1103.2366
+133380.2606494622 3.5618289 -1103.1378
+133381.2606495665 3.5617502 -1103.2168
+133382.2606496708 3.5617895 -1103.2168
+133383.2606497752 3.5617895 -1103.2562
+133384.2606498795 3.5617108 -1103.2761
+133385.2606499838 3.5617502 -1103.1774
+133386.2606500881 3.5618289 -1103.2168
+133387.2606501924 3.5617502 -1103.2562
+133388.2606502967 3.5616715 -1103.2761
+133389.260650401 3.5617895 -1103.2366
+133390.2606505053 3.5616715 -1103.1774
+133391.2606506096 3.5616715 -1103.1774
+133392.2606507139 3.5617108 -1103.1774
+133393.2606508182 3.5615532 -1103.197
+133394.2606509225 3.5616319 -1103.2761
+133395.2606510269 3.5615926 -1103.2761
+133396.2606511312 3.5615926 -1103.1774
+133397.2606512355 3.5615139 -1103.197
+133398.2606513398 3.5616319 -1103.3156
+133399.2606514441 3.5615532 -1103.197
+133400.2606515484 3.5616319 -1103.2562
+133401.2606516527 3.5616319 -1103.1774
+133402.260651757 3.5615139 -1103.2168
+133403.2606518613 3.5615926 -1103.2562
+133404.2606519656 3.5615139 -1103.1774
+133405.2606520699 3.5614746 -1103.197
+133406.2606521742 3.5615139 -1103.2366
+133407.2606522786 3.5615139 -1103.1576
+133408.2606523829 3.5614352 -1103.197
+133409.2606524872 3.5613959 -1103.2366
+133410.2606525915 3.5613959 -1103.2562
+133411.2606526958 3.5614352 -1103.2168
+133412.2606528001 3.5614352 -1103.2959
+133413.2606529044 3.5613565 -1103.2562
+133414.2606530087 3.561317 -1103.1774
+133415.260653113 3.5614746 -1103.197
+133416.2606532173 3.5613959 -1103.0984
+133417.2606533216 3.5614352 -1103.1378
+133418.2606534259 3.561317 -1103.197
+133419.2606535302 3.561317 -1103.1576
+133420.2606536346 3.5613565 -1103.197
+133421.2606537389 3.5613565 -1103.2562
+133422.2606538432 3.5612776 -1103.197
+133423.2606539475 3.5613959 -1103.197
+133424.2606540518 3.561317 -1103.1774
+133425.2606541561 3.561317 -1103.2168
+133426.2606542604 3.5612776 -1103.1182
+133427.2606543647 3.5612776 -1103.1576
+133428.260654469 3.5612776 -1103.2366
+133429.2606545733 3.5612776 -1103.197
+133430.2606546776 3.561317 -1103.2562
+133431.2606547819 3.5611989 -1103.2366
+133432.2606548863 3.5611596 -1103.1774
+133433.2606549906 3.561317 -1103.2562
+133434.2606550949 3.5612776 -1103.2168
+133435.2606551992 3.5612383 -1103.2562
+133436.2606553035 3.5612383 -1103.2168
+133437.2606554078 3.5612776 -1103.1182
+133438.2606555121 3.5611596 -1103.1774
+133439.2606556164 3.5611203 -1103.0984
+133440.2606557207 3.5611596 -1103.1576
+133441.260655825 3.5611596 -1103.2168
+133442.2606559293 3.5611596 -1103.2562
+133443.2606560336 3.5611596 -1103.2366
+133444.260656138 3.5611596 -1103.197
+133445.2606562423 3.5611596 -1103.197
+133446.2606563466 3.5610416 -1103.2761
+133447.2606564509 3.5611596 -1103.2366
+133448.2606565552 3.5611203 -1103.2959
+133449.2606566595 3.5610416 -1103.197
+133450.2606567638 3.5611203 -1103.2168
+133451.2606568681 3.561002 -1103.197
+133452.2606569724 3.5610809 -1103.2366
+133453.2606570767 3.561002 -1103.2366
+133454.260657181 3.5610416 -1103.2168
+133455.2606572853 3.5610416 -1103.2168
+133456.2606573896 3.5610416 -1103.2168
+133457.260657494 3.5609627 -1103.1576
+133458.2606575983 3.5609627 -1103.2562
+133459.2606577026 3.5610809 -1103.1576
+133460.2606578069 3.5609627 -1103.2366
+133461.2606579112 3.5610416 -1103.1774
+133462.2606580155 3.561002 -1103.1774
+133463.2606581198 3.5609233 -1103.2168
+133464.2606582241 3.5610416 -1103.2562
+133465.2606583284 3.561002 -1103.1774
+133466.2606584327 3.560884 -1103.2168
+133467.260658537 3.5609233 -1103.1378
+133468.2606586413 3.5609233 -1103.2366
+133469.2606587457 3.5609233 -1103.1378
+133470.26065885 3.561002 -1103.2168
+133471.2606589543 3.560884 -1103.197
+133472.2606590586 3.561002 -1103.2562
+133473.2606591629 3.5609627 -1103.2761
+133474.2606592672 3.560766 -1103.2562
+133475.2606593715 3.560884 -1103.197
+133476.2606594758 3.560884 -1103.197
+133477.2606595801 3.5608447 -1103.2959
+133478.2606596844 3.5608053 -1103.2168
+133479.2606597887 3.560884 -1103.2761
+133480.260659893 3.5608447 -1103.2168
+133481.2606599974 3.560766 -1103.2168
+133482.2606601017 3.5607266 -1103.2761
+133483.260660206 3.5607266 -1103.2562
+133484.2606603103 3.5608447 -1103.197
+133485.2606604146 3.5608053 -1103.2562
+133486.2606605189 3.560766 -1103.1182
+133487.2606606232 3.560884 -1103.197
+133488.2606607275 3.560766 -1103.2761
+133489.2606608318 3.5606871 -1103.2366
+133490.2606609361 3.5606871 -1103.2562
+133491.2606610404 3.5607266 -1103.2959
+133492.2606611447 3.5608447 -1103.1576
+133493.260661249 3.5607266 -1103.2959
+133494.2606613534 3.5607266 -1103.1576
+133495.2606614577 3.5606477 -1103.1378
+133496.260661562 3.5606477 -1103.2761
+133497.2606616663 3.5608053 -1103.2562
+133498.2606617706 3.5606477 -1103.1774
+133499.2606618749 3.5606084 -1103.1774
+133500.2606619792 3.5606477 -1103.2959
+133501.2606620835 3.560569 -1103.1774
+133502.2606621878 3.5607266 -1103.1774
+133503.2606622921 3.5606084 -1103.2562
+133504.2606623964 3.5606477 -1103.1576
+133505.2606625007 3.560569 -1103.2761
+133506.2606626051 3.5606084 -1103.2366
+133507.2606627094 3.5606871 -1103.1378
+133508.2606628137 3.5606871 -1103.2366
+133509.260662918 3.5604904 -1103.2168
+133510.2606630223 3.5606477 -1103.1774
+133511.2606631266 3.5606477 -1103.2959
+133512.2606632309 3.560569 -1103.2366
+133513.2606633352 3.5606084 -1103.2168
+133514.2606634395 3.5605297 -1103.1774
+133515.2606635438 3.5605297 -1103.2562
+133516.2606636481 3.560569 -1103.1774
+133517.2606637524 3.5604904 -1103.1378
+133518.2606638568 3.5605297 -1103.2366
+133519.2606639611 3.5605297 -1103.197
+133520.2606640654 3.5604904 -1103.2168
+133521.2606641697 3.560451 -1103.2366
+133522.260664274 3.5604904 -1103.197
+133523.2606643783 3.560569 -1103.2562
+133524.2606644826 3.5604904 -1103.2168
+133525.2606645869 3.560451 -1103.1774
+133526.2606646912 3.5603721 -1103.2168
+133527.2606647955 3.5605297 -1103.2761
+133528.2606648998 3.560569 -1103.2761
+133529.2606650041 3.5604117 -1103.1576
+133530.2606651085 3.5604904 -1103.2366
+133531.2606652128 3.5603721 -1103.2562
+133532.2606653171 3.560451 -1103.2562
+133533.2606654214 3.5602934 -1103.197
+133534.2606655257 3.5603328 -1103.1774
+133535.26066563 3.5604904 -1103.2168
+133536.2606657343 3.5603721 -1103.2761
+133537.2606658386 3.5603328 -1103.197
+133538.2606659429 3.5602934 -1103.197
+133539.2606660472 3.5602934 -1103.3156
+133540.2606661515 3.5603328 -1103.197
+133541.2606662558 3.5603328 -1103.2959
+133542.2606663601 3.5602934 -1103.1774
+133543.2606664645 3.5602934 -1103.1774
+133544.2606665688 3.5603721 -1103.1774
+133545.2606666731 3.5602148 -1103.197
+133546.2606667774 3.5603328 -1103.2366
+133547.2606668817 3.5602541 -1103.2761
+133548.260666986 3.5603721 -1103.2366
+133549.2606670903 3.5603328 -1103.2366
+133550.2606671946 3.5603328 -1103.2168
+133551.2606672989 3.5603328 -1103.1774
+133552.2606674032 3.5602934 -1103.2366
+133553.2606675075 3.5602541 -1103.2761
+133554.2606676118 3.5602541 -1103.2168
+133555.2606677162 3.5602541 -1103.197
+133556.2606678205 3.5602934 -1103.1576
+133557.2606679248 3.5602148 -1103.197
+133558.2606680291 3.5602934 -1103.1774
+133559.2606681334 3.5601361 -1103.3156
+133560.2606682377 3.5602148 -1103.1774
+133561.260668342 3.5601754 -1103.197
+133562.2606684463 3.5600967 -1103.1576
+133563.2606685506 3.5601754 -1103.197
+133564.2606686549 3.5600967 -1103.1774
+133565.2606687592 3.5601754 -1103.2562
+133566.2606688635 3.5602541 -1103.2168
+133567.2606689679 3.5601361 -1103.2168
+133568.2606690722 3.5602541 -1103.2366
+133569.2606691765 3.5600572 -1103.2562
+133570.2606692808 3.5600572 -1103.3551
+133571.2606693851 3.5600967 -1103.2366
+133572.2606694894 3.5602148 -1103.2761
+133573.2606695937 3.5601361 -1103.2366
+133574.260669698 3.5600967 -1103.2562
+133575.2606698023 3.5600967 -1103.2168
+133576.2606699066 3.5600178 -1103.2168
+133577.2606700109 3.5600178 -1103.197
+133578.2606701152 3.5600572 -1103.1378
+133579.2606702195 3.5600572 -1103.2168
+133580.2606703239 3.5599391 -1103.197
+133581.2606704282 3.5600178 -1103.2168
+133582.2606705325 3.5600178 -1103.2562
+133583.2606706368 3.5599391 -1103.2562
+133584.2606707411 3.5599785 -1103.1576
+133585.2606708454 3.5600572 -1103.1774
+133586.2606709497 3.5599785 -1103.197
+133587.260671054 3.5599391 -1103.2959
+133588.2606711583 3.5600178 -1103.3156
+133589.2606712626 3.5599391 -1103.2761
+133590.2606713669 3.5598998 -1103.2366
+133591.2606714712 3.5597816 -1103.2562
+133592.2606715756 3.5600178 -1103.197
+133593.2606716799 3.5598211 -1103.1576
+133594.2606717842 3.5598998 -1103.1774
+133595.2606718885 3.5598998 -1103.2366
+133596.2606719928 3.5598211 -1103.1774
+133597.2606720971 3.5598998 -1103.2366
+133598.2606722014 3.5599391 -1103.2168
+133599.2606723057 3.5599391 -1103.2366
+133600.26067241 3.5598211 -1103.1774
+133601.2606725143 3.5598211 -1103.2562
+133602.2606726186 3.5597422 -1103.197
+133603.2606727229 3.5597816 -1103.1774
+133604.2606728273 3.5597422 -1103.197
+133605.2606729316 3.5597422 -1103.2168
+133606.2606730359 3.5597422 -1103.2562
+133607.2606731402 3.5597029 -1103.2168
+133608.2606732445 3.5597029 -1103.2168
+133609.2606733488 3.5596635 -1103.1576
+133610.2606734531 3.5596242 -1103.2562
+133611.2606735574 3.5596242 -1103.2761
+133612.2606736617 3.5596635 -1103.2562
+133613.260673766 3.5597029 -1103.2168
+133614.2606738703 3.5595849 -1103.3551
+133615.2606739746 3.5595455 -1103.2562
+133616.2606740789 3.5596242 -1103.1576
+133617.2606741833 3.5595455 -1103.1774
+133618.2606742876 3.5596242 -1103.1378
+133619.2606743919 3.5594666 -1103.2761
+133620.2606744962 3.5595455 -1103.2366
+133621.2606746005 3.5594666 -1103.1774
+133622.2606747048 3.5595455 -1103.2366
+133623.2606748091 3.5595849 -1103.2168
+133624.2606749134 3.5595455 -1103.2562
+133625.2606750177 3.5594666 -1103.2761
+133626.260675122 3.5594273 -1103.2168
+133627.2606752263 3.5595062 -1103.2366
+133628.2606753306 3.5593092 -1103.2366
+133629.260675435 3.5594666 -1103.2761
+133630.2606755393 3.5595062 -1103.197
+133631.2606756436 3.5593879 -1103.2562
+133632.2606757479 3.5593486 -1103.1774
+133633.2606758522 3.5592699 -1103.2562
+133634.2606759565 3.5592699 -1103.1576
+133635.2606760608 3.5594273 -1103.1576
+133636.2606761651 3.5592306 -1103.1774
+133637.2606762694 3.5592306 -1103.1774
+133638.2606763737 3.5593092 -1103.2959
+133639.260676478 3.5592699 -1103.2562
+133640.2606765823 3.5592699 -1103.197
+133641.2606766867 3.5592306 -1103.1774
+133642.260676791 3.5591912 -1103.2366
+133643.2606768953 3.5591516 -1103.2168
+133644.2606769996 3.5592699 -1103.1182
+133645.2606771039 3.5591516 -1103.1576
+133646.2606772082 3.5592306 -1103.2168
+133647.2606773125 3.5591516 -1103.2168
+133648.2606774168 3.559073 -1103.2562
+133649.2606775211 3.5591516 -1103.1774
+133650.2606776254 3.5591516 -1103.197
+133651.2606777297 3.5592306 -1103.2366
+133652.260677834 3.559073 -1103.197
+133653.2606779384 3.5589943 -1103.197
+133654.2606780427 3.5591516 -1103.2562
+133655.260678147 3.5591516 -1103.1774
+133656.2606782513 3.559073 -1103.2366
+133657.2606783556 3.5590336 -1103.197
+133658.2606784599 3.5591123 -1103.2366
+133659.2606785642 3.5589943 -1103.197
+133660.2606786685 3.5589943 -1103.2366
+133661.2606787728 3.5590336 -1103.2366
+133662.2606788771 3.5589943 -1103.1378
+133663.2606789814 3.5589943 -1103.2168
+133664.2606790857 3.559073 -1103.2366
+133665.26067919 3.558955 -1103.2366
+133666.2606792944 3.5589156 -1103.1576
+133667.2606793987 3.558955 -1103.2761
+133668.260679503 3.5589943 -1103.1774
+133669.2606796073 3.5590336 -1103.1378
+133670.2606797116 3.5589156 -1103.2366
+133671.2606798159 3.5588763 -1103.2168
+133672.2606799202 3.5589156 -1103.1378
+133673.2606800245 3.5588763 -1103.2366
+133674.2606801288 3.558955 -1103.1774
+133675.2606802331 3.5589156 -1103.197
+133676.2606803374 3.5588763 -1103.2366
+133677.2606804417 3.5589156 -1103.2761
+133678.2606805461 3.558955 -1103.1576
+133679.2606806504 3.5588763 -1103.1576
+133680.2606807547 3.5586793 -1103.2959
+133681.260680859 3.5587974 -1103.1774
+133682.2606809633 3.558758 -1103.2562
+133683.2606810676 3.5587974 -1103.2168
+133684.2606811719 3.558758 -1103.1576
+133685.2606812762 3.5587974 -1103.2168
+133686.2606813805 3.5587974 -1103.2366
+133687.2606814848 3.558758 -1103.2959
+133688.2606815891 3.558758 -1103.197
+133689.2606816934 3.5586793 -1103.197
+133690.2606817978 3.558758 -1103.3353
+133691.2606819021 3.55864 -1103.1182
+133692.2606820064 3.5586793 -1103.2959
+133693.2606821107 3.5586793 -1103.0984
+133694.260682215 3.55864 -1103.2366
+133695.2606823193 3.5587187 -1103.2562
+133696.2606824236 3.5586793 -1103.1576
+133697.2606825279 3.55864 -1103.197
+133698.2606826322 3.55864 -1103.2761
+133699.2606827365 3.5586007 -1103.2168
+133700.2606828408 3.5586793 -1103.197
+133701.2606829451 3.5586793 -1103.2959
+133702.2606830494 3.55864 -1103.1774
+133703.2606831538 3.5586793 -1103.197
+133704.2606832581 3.5586793 -1103.1576
+133705.2606833624 3.5586007 -1103.1378
+133706.2606834667 3.5586007 -1103.1576
+133707.260683571 3.55864 -1103.1182
+133708.2606836753 3.5585217 -1103.2366
+133709.2606837796 3.5586007 -1103.1576
+133710.2606838839 3.5587187 -1103.2562
+133711.2606839882 3.5584824 -1103.0984
+133712.2606840925 3.5584431 -1103.2366
+133713.2606841968 3.5584431 -1103.1774
+133714.2606843011 3.5584431 -1103.1576
+133715.2606844055 3.5584037 -1103.2168
+133716.2606845098 3.5585217 -1103.2959
+133717.2606846141 3.5584431 -1103.2366
+133718.2606847184 3.5585613 -1103.2168
+133719.2606848227 3.5586007 -1103.1182
+133720.260684927 3.5584431 -1103.1378
+133721.2606850313 3.5584824 -1103.2168
+133722.2606851356 3.5584431 -1103.2761
+133723.2606852399 3.5584431 -1103.197
+133724.2606853442 3.5584824 -1103.2959
+133725.2606854485 3.5584824 -1103.1378
+133726.2606855528 3.5584037 -1103.2168
+133727.2606856572 3.5584431 -1103.1774
+133728.2606857615 3.5583644 -1103.2366
+133729.2606858658 3.5583644 -1103.1774
+133730.2606859701 3.5583644 -1103.197
+133731.2606860744 3.5584431 -1103.2562
+133732.2606861787 3.5584431 -1103.2168
+133733.260686283 3.5582464 -1103.2366
+133734.2606863873 3.5582857 -1103.2168
+133735.2606864916 3.5583251 -1103.197
+133736.2606865959 3.5583251 -1103.1774
+133737.2606867002 3.5582857 -1103.1774
+133738.2606868045 3.5582857 -1103.1182
+133739.2606869088 3.5582857 -1103.2562
+133740.2606870132 3.5582857 -1103.2366
+133741.2606871175 3.5582857 -1103.197
+133742.2606872218 3.5583644 -1103.2959
+133743.2606873261 3.5582857 -1103.1576
+133744.2606874304 3.5583251 -1103.2366
+133745.2606875347 3.5583644 -1103.1576
+133746.260687639 3.5582464 -1103.2562
+133747.2606877433 3.5583644 -1103.2168
+133748.2606878476 3.5582464 -1103.2366
+133749.2606879519 3.5583251 -1103.2168
+133750.2606880562 3.5583251 -1103.197
+133751.2606881605 3.5582857 -1103.197
+133752.2606882649 3.5581675 -1103.2168
+133753.2606883692 3.5582068 -1103.2562
+133754.2606884735 3.5582857 -1103.2761
+133755.2606885778 3.5582857 -1103.2761
+133756.2606886821 3.5582068 -1103.1576
+133757.2606887864 3.5582068 -1103.3156
+133758.2606888907 3.5581675 -1103.1182
+133759.260688995 3.5582464 -1103.197
+133760.2606890993 3.5582068 -1103.1576
+133761.2606892036 3.5581675 -1103.1576
+133762.2606893079 3.5580888 -1103.2959
+133763.2606894122 3.5580888 -1103.2168
+133764.2606895166 3.5581675 -1103.1378
+133765.2606896209 3.5580888 -1103.2168
+133766.2606897252 3.5581675 -1103.2366
+133767.2606898295 3.5580101 -1103.2168
+133768.2606899338 3.5580494 -1103.2366
+133769.2606900381 3.5581675 -1103.1774
+133770.2606901424 3.5580494 -1103.2366
+133771.2606902467 3.5580494 -1103.2562
+133772.260690351 3.5579708 -1103.2366
+133773.2606904553 3.5580494 -1103.1576
+133774.2606905596 3.5580494 -1103.197
+133775.2606906639 3.5580101 -1103.1774
+133776.2606907682 3.5580101 -1103.2168
+133777.2606908726 3.5580494 -1103.1774
+133778.2606909769 3.5579708 -1103.1774
+133779.2606910812 3.5580888 -1103.2168
+133780.2606911855 3.5579708 -1103.2366
+133781.2606912898 3.5578918 -1103.197
+133782.2606913941 3.5579312 -1103.2168
+133783.2606914984 3.5579708 -1103.2366
+133784.2606916027 3.5579708 -1103.2761
+133785.260691707 3.5578918 -1103.2366
+133786.2606918113 3.5578918 -1103.197
+133787.2606919156 3.5578525 -1103.2562
+133788.2606920199 3.5578918 -1103.1774
+133789.2606921243 3.5578918 -1103.2168
+133790.2606922286 3.5580101 -1103.1774
+133791.2606923329 3.5577345 -1103.1576
+133792.2606924372 3.5578132 -1103.197
+133793.2606925415 3.5578132 -1103.2959
+133794.2606926458 3.5577345 -1103.197
+133795.2606927501 3.5578918 -1103.2168
+133796.2606928544 3.5578132 -1103.2366
+133797.2606929587 3.5578918 -1103.3551
+133798.260693063 3.5577345 -1103.2562
+133799.2606931673 3.5577345 -1103.2168
+133800.2606932716 3.5577738 -1103.1378
+133801.260693376 3.5577345 -1103.0984
+133802.2606934803 3.5577345 -1103.2168
+133803.2606935846 3.5577345 -1103.197
+133804.2606936889 3.5577738 -1103.2366
+133805.2606937932 3.5577738 -1103.2959
+133806.2606938975 3.5575769 -1103.197
+133807.2606940018 3.5577738 -1103.1774
+133808.2606941061 3.5576558 -1103.2366
+133809.2606942104 3.5575769 -1103.1378
+133810.2606943147 3.5576162 -1103.1774
+133811.260694419 3.5576162 -1103.1774
+133812.2606945233 3.5576558 -1103.2562
+133813.2606946277 3.5576952 -1103.1378
+133814.260694732 3.5575769 -1103.2168
+133815.2606948363 3.5575769 -1103.197
+133816.2606949406 3.5575376 -1103.2366
+133817.2606950449 3.5574982 -1103.2959
+133818.2606951492 3.5574589 -1103.2168
+133819.2606952535 3.5575769 -1103.0984
+133820.2606953578 3.5575376 -1103.2366
+133821.2606954621 3.5575769 -1103.2168
+133822.2606955664 3.5574195 -1103.197
+133823.2606956707 3.5573802 -1103.2761
+133824.260695775 3.5574589 -1103.2562
+133825.2606958793 3.5573802 -1103.197
+133826.2606959837 3.5574589 -1103.2366
+133827.260696088 3.5574982 -1103.2366
+133828.2606961923 3.5573409 -1103.197
+133829.2606962966 3.5573802 -1103.2168
+133830.2606964009 3.5573802 -1103.3156
+133831.2606965052 3.5575376 -1103.197
+133832.2606966095 3.5573409 -1103.2959
+133833.2606967138 3.5574195 -1103.2562
+133834.2606968181 3.5573409 -1103.2366
+133835.2606969224 3.5573409 -1103.3156
+133836.2606970267 3.5573013 -1103.2562
+133837.260697131 3.5573013 -1103.1774
+133838.2606972354 3.5573802 -1103.2366
+133839.2606973397 3.5573013 -1103.2168
+133840.260697444 3.5573802 -1103.2366
+133841.2606975483 3.5571833 -1103.2168
+133842.2606976526 3.5573409 -1103.2366
+133843.2606977569 3.5572619 -1103.2562
+133844.2606978612 3.5572226 -1103.2366
+133845.2606979655 3.5571833 -1103.2761
+133846.2606980698 3.5572619 -1103.1774
+133847.2606981741 3.5572619 -1103.2366
+133848.2606982784 3.5571833 -1103.1378
+133849.2606983827 3.5571833 -1103.3156
+133850.2606984871 3.5572619 -1103.2168
+133851.2606985914 3.5571833 -1103.2562
+133852.2606986957 3.5571046 -1103.2168
+133853.2606988 3.5572619 -1103.2168
+133854.2606989043 3.5571439 -1103.1576
+133855.2606990086 3.5571439 -1103.2366
+133856.2606991129 3.5571439 -1103.2562
+133857.2606992172 3.5571439 -1103.2168
+133858.2606993215 3.5571046 -1103.197
+133859.2606994258 3.5571833 -1103.2562
+133860.2606995301 3.5571439 -1103.3353
+133861.2606996344 3.5571439 -1103.2959
+133862.2606997387 3.5570652 -1103.2562
+133863.2606998431 3.5571046 -1103.2168
+133864.2606999474 3.5570652 -1103.2562
+133865.2607000517 3.5571046 -1103.197
+133866.260700156 3.5570259 -1103.2168
+133867.2607002603 3.5570259 -1103.2562
+133868.2607003646 3.5570652 -1103.2168
+133869.2607004689 3.556947 -1103.2168
+133870.2607005732 3.5570259 -1103.1576
+133871.2607006775 3.5569863 -1103.197
+133872.2607007818 3.5570259 -1103.2168
+133873.2607008861 3.556947 -1103.2366
+133874.2607009904 3.5569863 -1103.2761
+133875.2607010948 3.556947 -1103.2562
+133876.2607011991 3.556947 -1103.2562
+133877.2607013034 3.5568683 -1103.1378
+133878.2607014077 3.556947 -1103.197
+133879.260701512 3.5568683 -1103.2366
+133880.2607016163 3.556947 -1103.1182
+133881.2607017206 3.5569077 -1103.2366
+133882.2607018249 3.556829 -1103.2959
+133883.2607019292 3.5567503 -1103.2366
+133884.2607020335 3.5569863 -1103.1182
+133885.2607021378 3.5567503 -1103.2761
+133886.2607022421 3.5567503 -1103.1774
+133887.2607023465 3.5567503 -1103.2168
+133888.2607024508 3.556711 -1103.2761
+133889.2607025551 3.5567896 -1103.2366
+133890.2607026594 3.556711 -1103.1774
+133891.2607027637 3.5566714 -1103.2959
+133892.260702868 3.5566714 -1103.1378
+133893.2607029723 3.556711 -1103.1576
+133894.2607030766 3.556711 -1103.2366
+133895.2607031809 3.5567503 -1103.1774
+133896.2607032852 3.5566714 -1103.197
+133897.2607033895 3.5567896 -1103.1576
+133898.2607034938 3.5566714 -1103.1774
+133899.2607035981 3.5566714 -1103.2168
+133900.2607037025 3.5566714 -1103.197
+133901.2607038068 3.556711 -1103.197
+133902.2607039111 3.5566714 -1103.2168
+133903.2607040154 3.556632 -1103.1378
+133904.2607041197 3.5566714 -1103.2761
+133905.260704224 3.5565534 -1103.2562
+133906.2607043283 3.5565927 -1103.197
+133907.2607044326 3.5565927 -1103.1182
+133908.2607045369 3.556514 -1103.1576
+133909.2607046412 3.556514 -1103.2562
+133910.2607047455 3.5564747 -1103.2761
+133911.2607048498 3.556514 -1103.1576
+133912.2607049542 3.5565927 -1103.2168
+133913.2607050585 3.5564747 -1103.1576
+133914.2607051628 3.556514 -1103.197
+133915.2607052671 3.5564353 -1103.197
+133916.2607053714 3.5565534 -1103.2168
+133917.2607054757 3.5564747 -1103.2366
+133918.26070558 3.5564747 -1103.2366
+133919.2607056843 3.5563171 -1103.1774
+133920.2607057886 3.5564747 -1103.1182
+133921.2607058929 3.5563958 -1103.2366
+133922.2607059972 3.5563958 -1103.2168
+133923.2607061015 3.5564747 -1103.2562
+133924.2607062059 3.5563564 -1103.2761
+133925.2607063102 3.5563958 -1103.1378
+133926.2607064145 3.5563958 -1103.1774
+133927.2607065188 3.5563171 -1103.2761
+133928.2607066231 3.5563171 -1103.2562
+133929.2607067274 3.5563171 -1103.2562
+133930.2607068317 3.5564353 -1103.2562
+133931.260706936 3.5563171 -1103.197
+133932.2607070403 3.5563958 -1103.2168
+133933.2607071446 3.5563171 -1103.2959
+133934.2607072489 3.5562384 -1103.3156
+133935.2607073532 3.5563171 -1103.2366
+133936.2607074576 3.5563958 -1103.1378
+133937.2607075619 3.5563564 -1103.2366
+133938.2607076662 3.5563171 -1103.197
+133939.2607077705 3.5561991 -1103.3156
+133940.2607078748 3.5563564 -1103.1378
+133941.2607079791 3.5561204 -1103.197
+133942.2607080834 3.5561991 -1103.2168
+133943.2607081877 3.5563171 -1103.2168
+133944.260708292 3.5561991 -1103.2366
+133945.2607083963 3.5562778 -1103.1576
+133946.2607085006 3.5561597 -1103.2168
+133947.2607086049 3.5561597 -1103.197
+133948.2607087092 3.5562384 -1103.0984
+133949.2607088136 3.5561991 -1103.2761
+133950.2607089179 3.5561597 -1103.2366
+133951.2607090222 3.5560808 -1103.1576
+133952.2607091265 3.5561204 -1103.197
+133953.2607092308 3.5560808 -1103.2366
+133954.2607093351 3.5561991 -1103.2366
+133955.2607094394 3.5561991 -1103.2168
+133956.2607095437 3.5561204 -1103.1576
+133957.260709648 3.5561597 -1103.1774
+133958.2607097523 3.5560021 -1103.1576
+133959.2607098566 3.5561991 -1103.3156
+133960.2607099609 3.5560808 -1103.2761
+133961.2607100653 3.5560021 -1103.2959
+133962.2607101696 3.5560415 -1103.2168
+133963.2607102739 3.5560415 -1103.2366
+133964.2607103782 3.5561204 -1103.2168
+133965.2607104825 3.5560021 -1103.2366
+133966.2607105868 3.5560021 -1103.1576
+133967.2607106911 3.5558841 -1103.2366
+133968.2607107954 3.5559235 -1103.1774
+133969.2607108997 3.5558841 -1103.2562
+133970.260711004 3.5558448 -1103.197
+133971.2607111083 3.5558841 -1103.197
+133972.2607112126 3.5558841 -1103.2761
+133973.260711317 3.5559235 -1103.2562
+133974.2607114213 3.5560021 -1103.1774
+133975.2607115256 3.5557659 -1103.1378
+133976.2607116299 3.5557659 -1103.2168
+133977.2607117342 3.5557659 -1103.2168
+133978.2607118385 3.5559235 -1103.2761
+133979.2607119428 3.5558054 -1103.2562
+133980.2607120471 3.5557659 -1103.197
+133981.2607121514 3.5557659 -1103.1774
+133982.2607122557 3.5557659 -1103.2761
+133983.26071236 3.5558054 -1103.2562
+133984.2607124643 3.5557659 -1103.1182
+133985.2607125686 3.5557265 -1103.2366
+133986.260712673 3.5557659 -1103.1774
+133987.2607127773 3.5558054 -1103.2562
+133988.2607128816 3.5558054 -1103.197
+133989.2607129859 3.5557659 -1103.197
+133990.2607130902 3.5556872 -1103.197
+133991.2607131945 3.5556479 -1103.197
+133992.2607132988 3.5557265 -1103.197
+133993.2607134031 3.5556479 -1103.197
+133994.2607135074 3.5556479 -1103.1774
+133995.2607136117 3.5556872 -1103.2168
+133996.260713716 3.5556479 -1103.2562
+133997.2607138203 3.5556479 -1103.197
+133998.2607139247 3.5556085 -1103.197
+133999.260714029 3.5556085 -1103.1378
+134000.2607141333 3.5555692 -1103.2366
+134001.2607142376 3.5555298 -1103.1378
+134002.2607143419 3.5555298 -1103.2168
+134003.2607144462 3.5556085 -1103.1774
+134004.2607145505 3.5554905 -1103.2366
+134005.2607146548 3.5554509 -1103.2366
+134006.2607147591 3.5554905 -1103.2168
+134007.2607148634 3.5555298 -1103.197
+134008.2607149677 3.5554509 -1103.2168
+134009.260715072 3.5554905 -1103.197
+134010.2607151764 3.5555298 -1103.2168
+134011.2607152807 3.5553722 -1103.2562
+134012.260715385 3.5554116 -1103.1774
+134013.2607154893 3.5553329 -1103.2562
+134014.2607155936 3.5553329 -1103.1576
+134015.2607156979 3.5552936 -1103.197
+134016.2607158022 3.5554116 -1103.2168
+134017.2607159065 3.5553722 -1103.1576
+134018.2607160108 3.5553722 -1103.1774
+134019.2607161151 3.5552936 -1103.1378
+134020.2607162194 3.5552542 -1103.2761
+134021.2607163237 3.5552936 -1103.1774
+134022.260716428 3.5552936 -1103.1378
+134023.2607165324 3.5552936 -1103.2168
+134024.2607166367 3.5552542 -1103.1774
+134025.260716741 3.5552936 -1103.197
+134026.2607168453 3.5553329 -1103.2168
+134027.2607169496 3.5551755 -1103.2562
+134028.2607170539 3.5552542 -1103.1576
+134029.2607171582 3.5551755 -1103.1774
+134030.2607172625 3.5551755 -1103.197
+134031.2607173668 3.5550966 -1103.197
+134032.2607174711 3.5552149 -1103.2959
+134033.2607175754 3.555136 -1103.197
+134034.2607176797 3.5550573 -1103.2366
+134035.2607177841 3.5551755 -1103.2366
+134036.2607178884 3.5550966 -1103.2366
+134037.2607179927 3.5551755 -1103.1774
+134038.260718097 3.555136 -1103.0785
+134039.2607182013 3.5550179 -1103.197
+134040.2607183056 3.5550966 -1103.197
+134041.2607184099 3.5549786 -1103.1576
+134042.2607185142 3.5550573 -1103.2366
+134043.2607186185 3.5550966 -1103.2168
+134044.2607187228 3.5550966 -1103.2168
+134045.2607188271 3.555136 -1103.1576
+134046.2607189314 3.5549786 -1103.2366
+134047.2607190358 3.5550573 -1103.197
+134048.2607191401 3.5550179 -1103.2761
+134049.2607192444 3.5550573 -1103.2168
+134050.2607193487 3.5550573 -1103.2168
+134051.260719453 3.5550179 -1103.1182
+134052.2607195573 3.5550966 -1103.2168
+134053.2607196616 3.5549786 -1103.2168
+134054.2607197659 3.5548606 -1103.1774
+134055.2607198702 3.5548999 -1103.1774
+134056.2607199745 3.5550179 -1103.2366
+134057.2607200788 3.5550573 -1103.197
+134058.2607201831 3.5549393 -1103.1774
+134059.2607202875 3.5550966 -1103.2366
+134060.2607203918 3.5550179 -1103.2366
+134061.2607204961 3.5548999 -1103.197
+134062.2607206004 3.5548999 -1103.1576
+134063.2607207047 3.5549786 -1103.2168
+134064.260720809 3.5550179 -1103.2761
+134065.2607209133 3.5550573 -1103.2366
+134066.2607210176 3.5548606 -1103.3156
+134067.2607211219 3.5549786 -1103.2366
+134068.2607212262 3.5549393 -1103.1576
+134069.2607213305 3.5549786 -1103.2761
+134070.2607214348 3.5549786 -1103.2761
+134071.2607215391 3.5549393 -1103.2168
+134072.2607216435 3.5549786 -1103.2168
+134073.2607217478 3.5548606 -1103.197
+134074.2607218521 3.5549786 -1103.2562
+134075.2607219564 3.5549786 -1103.0984
+134076.2607220607 3.5548606 -1103.0984
+134077.260722165 3.5548999 -1103.1774
+134078.2607222693 3.5549786 -1103.2562
+134079.2607223736 3.5549393 -1103.2168
+134080.2607224779 3.5549393 -1103.1774
+134081.2607225822 3.5550179 -1103.2562
+134082.2607226865 3.5547817 -1103.1378
+134083.2607227908 3.5547817 -1103.2366
+134084.2607228952 3.5548999 -1103.197
+134085.2607229995 3.5549393 -1103.197
+134086.2607231038 3.5547817 -1103.197
+134087.2607232081 3.5547423 -1103.3156
+134088.2607233124 3.5548606 -1103.2761
+134089.2607234167 3.554821 -1103.1774
+134090.260723521 3.5547423 -1103.197
+134091.2607236253 3.5547423 -1103.1576
+134092.2607237296 3.554703 -1103.2366
+134093.2607238339 3.554703 -1103.2168
+134094.2607239382 3.5546637 -1103.2168
+134095.2607240425 3.5547817 -1103.2562
+134096.2607241469 3.554703 -1103.2168
+134097.2607242512 3.554703 -1103.1774
+134098.2607243555 3.5547423 -1103.2168
+134099.2607244598 3.5546637 -1103.2761
+134100.2607245641 3.5545061 -1103.1774
+134101.2607246684 3.5546243 -1103.2366
+134102.2607247727 3.554703 -1103.197
+134103.260724877 3.5546637 -1103.2562
+134104.2607249813 3.5546243 -1103.2168
+134105.2607250856 3.554585 -1103.1774
+134106.2607251899 3.5545454 -1103.2366
+134107.2607252942 3.5546637 -1103.2562
+134108.2607253985 3.5545061 -1103.0785
+134109.2607255029 3.5545454 -1103.2761
+134110.2607256072 3.554585 -1103.197
+134111.2607257115 3.554585 -1103.2168
+134112.2607258158 3.5544667 -1103.2562
+134113.2607259201 3.5545454 -1103.1774
+134114.2607260244 3.5544274 -1103.1576
+134115.2607261287 3.5545061 -1103.2761
+134116.260726233 3.5544667 -1103.2168
+134117.2607263373 3.5545454 -1103.2562
+134118.2607264416 3.554388 -1103.2366
+134119.2607265459 3.554388 -1103.2761
+134120.2607266502 3.5544667 -1103.2562
+134121.2607267546 3.5543487 -1103.1576
+134122.2607268589 3.5543094 -1103.1774
+134123.2607269632 3.5543487 -1103.197
+134124.2607270675 3.554388 -1103.1378
+134125.2607271718 3.5544274 -1103.197
+134126.2607272761 3.5543487 -1103.0984
+134127.2607273804 3.5542305 -1103.2366
+134128.2607274847 3.5543094 -1103.2562
+134129.260727589 3.5543094 -1103.1378
+134130.2607276933 3.55427 -1103.2959
+134131.2607277976 3.5542305 -1103.1774
+134132.2607279019 3.55427 -1103.1774
+134133.2607280063 3.5541911 -1103.2761
+134134.2607281106 3.5543094 -1103.1378
+134135.2607282149 3.5542305 -1103.2761
+134136.2607283192 3.5542305 -1103.2761
+134137.2607284235 3.5543094 -1103.197
+134138.2607285278 3.5541911 -1103.1774
+134139.2607286321 3.5541911 -1103.1378
+134140.2607287364 3.5541518 -1103.197
+134141.2607288407 3.5541518 -1103.1378
+134142.260728945 3.55427 -1103.2366
+134143.2607290493 3.5541518 -1103.1774
+134144.2607291536 3.5540731 -1103.1576
+134145.2607292579 3.5541518 -1103.2366
+134146.2607293623 3.5541124 -1103.1576
+134147.2607294666 3.5541518 -1103.2562
+134148.2607295709 3.5541911 -1103.1774
+134149.2607296752 3.5541124 -1103.2366
+134150.2607297795 3.5540731 -1103.2168
+134151.2607298838 3.5540731 -1103.197
+134152.2607299881 3.5541124 -1103.1576
+134153.2607300924 3.5540338 -1103.1774
+134154.2607301967 3.5540338 -1103.2562
+134155.260730301 3.5539944 -1103.2168
+134156.2607304053 3.5540338 -1103.2761
+134157.2607305096 3.5540338 -1103.2168
+134158.260730614 3.5540338 -1103.3156
+134159.2607307183 3.5539155 -1103.1774
+134160.2607308226 3.5538762 -1103.2168
+134161.2607309269 3.5539944 -1103.2562
+134162.2607310312 3.5539551 -1103.2959
+134163.2607311355 3.5539944 -1103.2562
+134164.2607312398 3.5538762 -1103.1182
+134165.2607313441 3.5539944 -1103.2168
+134166.2607314484 3.5538762 -1103.2366
+134167.2607315527 3.5538762 -1103.2562
+134168.260731657 3.5539155 -1103.2168
+134169.2607317613 3.5539155 -1103.1774
+134170.2607318657 3.5539551 -1103.197
+134171.26073197 3.5539155 -1103.2168
+134172.2607320743 3.5538762 -1103.2168
+134173.2607321786 3.5537975 -1103.197
+134174.2607322829 3.5538368 -1103.1576
+134175.2607323872 3.5537975 -1103.2168
+134176.2607324915 3.5537975 -1103.2761
+134177.2607325958 3.5538368 -1103.2761
+134178.2607327001 3.5538762 -1103.1774
+134179.2607328044 3.5538368 -1103.197
+134180.2607329087 3.5537188 -1103.2761
+134181.260733013 3.5537581 -1103.2959
+134182.2607331173 3.5537581 -1103.2168
+134183.2607332217 3.5537975 -1103.1774
+134184.260733326 3.5537581 -1103.197
+134185.2607334303 3.5537188 -1103.197
+134186.2607335346 3.5536401 -1103.197
+134187.2607336389 3.5536005 -1103.2366
+134188.2607337432 3.5536795 -1103.2168
+134189.2607338475 3.5536005 -1103.2366
+134190.2607339518 3.5535612 -1103.2366
+134191.2607340561 3.5536005 -1103.2562
+134192.2607341604 3.5536005 -1103.1774
+134193.2607342647 3.5535612 -1103.2562
+134194.260734369 3.5536005 -1103.2761
+134195.2607344734 3.5534825 -1103.1378
+134196.2607345777 3.5535612 -1103.1378
+134197.260734682 3.5535219 -1103.1774
+134198.2607347863 3.5534825 -1103.2168
+134199.2607348906 3.5534825 -1103.2366
+134200.2607349949 3.5534039 -1103.2761
+134201.2607350992 3.5534432 -1103.1576
+134202.2607352035 3.5535219 -1103.197
+134203.2607353078 3.5534825 -1103.197
+134204.2607354121 3.5534039 -1103.1774
+134205.2607355164 3.5534039 -1103.2168
+134206.2607356207 3.5534039 -1103.1576
+134207.2607357251 3.5534825 -1103.1774
+134208.2607358294 3.5533252 -1103.2761
+134209.2607359337 3.5533645 -1103.1576
+134210.260736038 3.5533252 -1103.1774
+134211.2607361423 3.5534432 -1103.2366
+134212.2607362466 3.5533252 -1103.2761
+134213.2607363509 3.5532856 -1103.197
+134214.2607364552 3.5533645 -1103.2366
+134215.2607365595 3.5531676 -1103.197
+134216.2607366638 3.5533645 -1103.2366
+134217.2607367681 3.5532856 -1103.2366
+134218.2607368724 3.5533645 -1103.197
+134219.2607369768 3.5533252 -1103.2959
+134220.2607370811 3.5532856 -1103.1576
+134221.2607371854 3.5533645 -1103.197
+134222.2607372897 3.5532463 -1103.2562
+134223.260737394 3.5532463 -1103.2366
+134224.2607374983 3.5531676 -1103.197
+134225.2607376026 3.5532463 -1103.1774
+134226.2607377069 3.5532069 -1103.2366
+134227.2607378112 3.5532856 -1103.2366
+134228.2607379155 3.5531676 -1103.2562
+134229.2607380198 3.5531676 -1103.2366
+134230.2607381241 3.5532463 -1103.1774
+134231.2607382284 3.5531676 -1103.1774
+134232.2607383328 3.5531282 -1103.197
+134233.2607384371 3.5532069 -1103.2562
+134234.2607385414 3.5531676 -1103.2168
+134235.2607386457 3.5530889 -1103.197
+134236.26073875 3.5532069 -1103.197
+134237.2607388543 3.5531676 -1103.1774
+134238.2607389586 3.5531676 -1103.2366
+134239.2607390629 3.5530496 -1103.2761
+134240.2607391672 3.5530496 -1103.2562
+134241.2607392715 3.5529706 -1103.1378
+134242.2607393758 3.5530496 -1103.2761
+134243.2607394801 3.5530102 -1103.1576
+134244.2607395845 3.5530889 -1103.197
+134245.2607396888 3.5531676 -1103.1774
+134246.2607397931 3.5530496 -1103.2366
+134247.2607398974 3.5530102 -1103.1576
+134248.2607400017 3.5530889 -1103.2366
+134249.260740106 3.5530496 -1103.2168
+134250.2607402103 3.5529706 -1103.1378
+134251.2607403146 3.5529706 -1103.1576
+134252.2607404189 3.5530102 -1103.1576
+134253.2607405232 3.5529706 -1103.0984
+134254.2607406275 3.5529706 -1103.2366
+134255.2607407318 3.5529706 -1103.2959
+134256.2607408362 3.5529706 -1103.197
+134257.2607409405 3.5530102 -1103.2366
+134258.2607410448 3.5529706 -1103.2366
+134259.2607411491 3.552892 -1103.3156
+134260.2607412534 3.5529706 -1103.197
+134261.2607413577 3.552892 -1103.197
+134262.260741462 3.5528133 -1103.2959
+134263.2607415663 3.552774 -1103.2366
+134264.2607416706 3.5528133 -1103.3156
+134265.2607417749 3.552892 -1103.2761
+134266.2607418792 3.5529313 -1103.2562
+134267.2607419835 3.552774 -1103.197
+134268.2607420878 3.5527346 -1103.1774
+134269.2607421922 3.5528526 -1103.2168
+134270.2607422965 3.5528133 -1103.2168
+134271.2607424008 3.5528133 -1103.1774
+134272.2607425051 3.5528133 -1103.1774
+134273.2607426094 3.5528133 -1103.1576
+134274.2607427137 3.5528133 -1103.2168
+134275.260742818 3.552774 -1103.2168
+134276.2607429223 3.552774 -1103.197
+134277.2607430266 3.5527346 -1103.1774
+134278.2607431309 3.5528133 -1103.197
+134279.2607432352 3.552695 -1103.0984
+134280.2607433395 3.5527346 -1103.2366
+134281.2607434439 3.552695 -1103.2168
+134282.2607435482 3.552695 -1103.197
+134283.2607436525 3.552695 -1103.1774
+134284.2607437568 3.5527346 -1103.2562
+134285.2607438611 3.5527346 -1103.197
+134286.2607439654 3.5527346 -1103.1182
+134287.2607440697 3.5526164 -1103.1774
+134288.260744174 3.552577 -1103.197
+134289.2607442783 3.5526164 -1103.2761
+134290.2607443826 3.5526164 -1103.2168
+134291.2607444869 3.5526557 -1103.1576
+134292.2607445912 3.552695 -1103.1576
+134293.2607446956 3.5526557 -1103.1576
+134294.2607447999 3.5526557 -1103.1774
+134295.2607449042 3.552695 -1103.2366
+134296.2607450085 3.5526557 -1103.1576
+134297.2607451128 3.5525377 -1103.197
+134298.2607452171 3.552577 -1103.2168
+134299.2607453214 3.5525377 -1103.1576
+134300.2607454257 3.552577 -1103.2168
+134301.26074553 3.5525377 -1103.1774
+134302.2607456343 3.5525377 -1103.197
+134303.2607457386 3.552459 -1103.1576
+134304.2607458429 3.5524983 -1103.1774
+134305.2607459472 3.552459 -1103.2168
+134306.2607460516 3.5525377 -1103.1774
+134307.2607461559 3.552459 -1103.1576
+134308.2607462602 3.552459 -1103.2168
+134309.2607463645 3.552459 -1103.2168
+134310.2607464688 3.5524197 -1103.2366
+134311.2607465731 3.552459 -1103.1576
+134312.2607466774 3.5524197 -1103.2366
+134313.2607467817 3.552459 -1103.1774
+134314.260746886 3.5524197 -1103.1774
+134315.2607469903 3.5523407 -1103.197
+134316.2607470946 3.5522227 -1103.2562
+134317.2607471989 3.5523801 -1103.2761
+134318.2607473033 3.5523801 -1103.1378
+134319.2607474076 3.5523407 -1103.1576
+134320.2607475119 3.5523407 -1103.1378
+134321.2607476162 3.5522621 -1103.1576
+134322.2607477205 3.5523407 -1103.1182
+134323.2607478248 3.5523014 -1103.2168
+134324.2607479291 3.5522621 -1103.2366
+134325.2607480334 3.5523014 -1103.2562
+134326.2607481377 3.5521834 -1103.197
+134327.260748242 3.5522227 -1103.1774
+134328.2607483463 3.5522621 -1103.197
+134329.2607484506 3.5521047 -1103.2168
+134330.260748555 3.5521834 -1103.1774
+134331.2607486593 3.5521834 -1103.2366
+134332.2607487636 3.5521441 -1103.2168
+134333.2607488679 3.5522227 -1103.2168
+134334.2607489722 3.5523014 -1103.1774
+134335.2607490765 3.5523014 -1103.2168
+134336.2607491808 3.5522227 -1103.197
+134337.2607492851 3.5522227 -1103.2366
+134338.2607493894 3.5520651 -1103.2366
+134339.2607494937 3.5521047 -1103.2959
+134340.260749598 3.5522227 -1103.2562
+134341.2607497023 3.5521441 -1103.197
+134342.2607498067 3.5522227 -1103.197
+134343.260749911 3.5521047 -1103.2366
+134344.2607500153 3.5520651 -1103.2366
+134345.2607501196 3.5521834 -1103.2366
+134346.2607502239 3.5520258 -1103.2761
+134347.2607503282 3.5520258 -1103.1774
+134348.2607504325 3.5519865 -1103.197
+134349.2607505368 3.5519865 -1103.197
+134350.2607506411 3.5520258 -1103.197
+134351.2607507454 3.5519865 -1103.2366
+134352.2607508497 3.5519078 -1103.2562
+134353.260750954 3.5520258 -1103.1774
+134354.2607510583 3.5520258 -1103.0984
+134355.2607511627 3.5519865 -1103.1774
+134356.260751267 3.5519471 -1103.1182
+134357.2607513713 3.5519865 -1103.1774
+134358.2607514756 3.5520258 -1103.1774
+134359.2607515799 3.5519471 -1103.2761
+134360.2607516842 3.5518684 -1103.2761
+134361.2607517885 3.5519078 -1103.1774
+134362.2607518928 3.5519078 -1103.2761
+134363.2607519971 3.5518684 -1103.2761
+134364.2607521014 3.5519471 -1103.2168
+134365.2607522057 3.5518684 -1103.2168
+134366.26075231 3.5517898 -1103.1378
+134367.2607524144 3.5518291 -1103.2168
+134368.2607525187 3.5517898 -1103.2562
+134369.260752623 3.5518291 -1103.2168
+134370.2607527273 3.5517502 -1103.2366
+134371.2607528316 3.5517898 -1103.2366
+134372.2607529359 3.5517898 -1103.2761
+134373.2607530402 3.5517108 -1103.3156
+134374.2607531445 3.5517108 -1103.2959
+134375.2607532488 3.5517898 -1103.0785
+134376.2607533531 3.5516715 -1103.197
+134377.2607534574 3.5517108 -1103.1182
+134378.2607535617 3.5517502 -1103.1378
+134379.2607536661 3.5516715 -1103.3353
+134380.2607537704 3.5517502 -1103.1576
+134381.2607538747 3.5516322 -1103.1378
+134382.260753979 3.5516715 -1103.1576
+134383.2607540833 3.5517108 -1103.2562
+134384.2607541876 3.5516715 -1103.2562
+134385.2607542919 3.5517108 -1103.2959
+134386.2607543962 3.5517108 -1103.2761
+134387.2607545005 3.5516322 -1103.1378
+134388.2607546048 3.5516715 -1103.2959
+134389.2607547091 3.5517108 -1103.197
+134390.2607548134 3.5515928 -1103.2366
+134391.2607549177 3.5516322 -1103.2562
+134392.2607550221 3.5516715 -1103.2366
+134393.2607551264 3.5517108 -1103.2562
+134394.2607552307 3.5516322 -1103.2366
+134395.260755335 3.5517502 -1103.2562
+134396.2607554393 3.5516715 -1103.1576
+134397.2607555436 3.5517502 -1103.197
+134398.2607556479 3.5516322 -1103.2366
+134399.2607557522 3.5515535 -1103.2168
+134400.2607558565 3.5516322 -1103.2168
+134401.2607559608 3.5516322 -1103.197
+134402.2607560651 3.5515928 -1103.2168
+134403.2607561694 3.5517108 -1103.1774
+134404.2607562738 3.5515535 -1103.1774
+134405.2607563781 3.5517108 -1103.197
+134406.2607564824 3.5515928 -1103.197
+134407.2607565867 3.5515535 -1103.2366
+134408.260756691 3.5516322 -1103.1774
+134409.2607567953 3.5515928 -1103.1774
+134410.2607568996 3.5515535 -1103.2366
+134411.2607570039 3.5516322 -1103.0984
+134412.2607571082 3.5515141 -1103.2168
+134413.2607572125 3.5515535 -1103.1378
+134414.2607573168 3.5513959 -1103.197
+134415.2607574211 3.5515141 -1103.197
+134416.2607575255 3.5513959 -1103.2562
+134417.2607576298 3.5514352 -1103.2168
+134418.2607577341 3.5515141 -1103.2761
+134419.2607578384 3.5514352 -1103.2761
+134420.2607579427 3.5514352 -1103.2168
+134421.260758047 3.5514352 -1103.2366
+134422.2607581513 3.5514352 -1103.197
+134423.2607582556 3.5513566 -1103.1774
+134424.2607583599 3.5514352 -1103.1576
+134425.2607584642 3.5513959 -1103.197
+134426.2607585685 3.5513959 -1103.2366
+134427.2607586728 3.5513959 -1103.1182
+134428.2607587771 3.5513566 -1103.2959
+134429.2607588815 3.5513566 -1103.197
+134430.2607589858 3.5513959 -1103.2168
+134431.2607590901 3.5513959 -1103.0391
+134432.2607591944 3.5513172 -1103.1576
+134433.2607592987 3.5512779 -1103.1774
+134434.260759403 3.5512779 -1103.1576
+134435.2607595073 3.5512779 -1103.2562
+134436.2607596116 3.5513172 -1103.0785
+134437.2607597159 3.5512385 -1103.197
+134438.2607598202 3.5511203 -1103.1576
+134439.2607599245 3.5511992 -1103.2168
+134440.2607600288 3.5512385 -1103.197
+134441.2607601332 3.5511992 -1103.2168
+134442.2607602375 3.5511599 -1103.2366
+134443.2607603418 3.5511203 -1103.3156
+134444.2607604461 3.5510809 -1103.1576
+134445.2607605504 3.5511599 -1103.2959
+134446.2607606547 3.5510416 -1103.1576
+134447.260760759 3.5510809 -1103.2168
+134448.2607608633 3.5510416 -1103.1576
+134449.2607609676 3.5511203 -1103.197
+134450.2607610719 3.5510809 -1103.2168
+134451.2607611762 3.5510416 -1103.197
+134452.2607612805 3.5510416 -1103.2959
+134453.2607613849 3.5510023 -1103.1378
+134454.2607614892 3.5510416 -1103.197
+134455.2607615935 3.5510416 -1103.1774
+134456.2607616978 3.5509236 -1103.2562
+134457.2607618021 3.5509629 -1103.2761
+134458.2607619064 3.5509236 -1103.1576
+134459.2607620107 3.5509629 -1103.1774
+134460.260762115 3.5510023 -1103.1576
+134461.2607622193 3.5509629 -1103.197
+134462.2607623236 3.5509629 -1103.2366
+134463.2607624279 3.5508447 -1103.1774
+134464.2607625322 3.5508053 -1103.2168
+134465.2607626366 3.5509629 -1103.2761
+134466.2607627409 3.5509236 -1103.1774
+134467.2607628452 3.5509236 -1103.1576
+134468.2607629495 3.5509236 -1103.1576
+134469.2607630538 3.5508842 -1103.1576
+134470.2607631581 3.5508842 -1103.197
+134471.2607632624 3.5508447 -1103.2562
+134472.2607633667 3.5508447 -1103.2562
+134473.260763471 3.5508447 -1103.2168
+134474.2607635753 3.5507267 -1103.2562
+134475.2607636796 3.5508053 -1103.2168
+134476.2607637839 3.550766 -1103.2168
+134477.2607638882 3.5507267 -1103.1576
+134478.2607639926 3.550766 -1103.2959
+134479.2607640969 3.5508053 -1103.1576
+134480.2607642012 3.550648 -1103.1378
+134481.2607643055 3.5508053 -1103.1576
+134482.2607644098 3.550766 -1103.1576
+134483.2607645141 3.5508447 -1103.197
+134484.2607646184 3.5507267 -1103.2168
+134485.2607647227 3.5507267 -1103.1774
+134486.260764827 3.5506873 -1103.1774
+134487.2607649313 3.550766 -1103.1774
+134488.2607650356 3.5508053 -1103.1182
+134489.2607651399 3.5506873 -1103.2168
+134490.2607652443 3.5507267 -1103.197
+134491.2607653486 3.5506873 -1103.197
+134492.2607654529 3.5506873 -1103.1182
+134493.2607655572 3.5507267 -1103.2366
+134494.2607656615 3.5507267 -1103.1774
+134495.2607657658 3.550648 -1103.2168
+134496.2607658701 3.5506086 -1103.2168
+134497.2607659744 3.5506086 -1103.2366
+134498.2607660787 3.550648 -1103.1576
+134499.260766183 3.5506873 -1103.2562
+134500.2607662873 3.550648 -1103.1774
+134501.2607663916 3.5506873 -1103.1774
+134502.260766496 3.5506086 -1103.1774
+134503.2607666003 3.5506873 -1103.1378
+134504.2607667046 3.550766 -1103.2168
+134505.2607668089 3.5506873 -1103.197
+134506.2607669132 3.5506873 -1103.2366
+134507.2607670175 3.5506086 -1103.2959
+134508.2607671218 3.5506086 -1103.2168
+134509.2607672261 3.5505693 -1103.2562
+134510.2607673304 3.550648 -1103.197
+134511.2607674347 3.5506086 -1103.1378
+134512.260767539 3.5505693 -1103.1576
+134513.2607676433 3.5505297 -1103.2366
+134514.2607677476 3.5505693 -1103.197
+134515.260767852 3.5505693 -1103.2168
+134516.2607679563 3.5505693 -1103.197
+134517.2607680606 3.5505693 -1103.197
+134518.2607681649 3.5505693 -1103.2959
+134519.2607682692 3.5505693 -1103.2562
+134520.2607683735 3.5505693 -1103.2168
+134521.2607684778 3.5506086 -1103.2168
+134522.2607685821 3.5506086 -1103.1576
+134523.2607686864 3.5505693 -1103.197
+134524.2607687907 3.5505693 -1103.1378
+134525.260768895 3.550648 -1103.197
+134526.2607689993 3.5506873 -1103.2168
+134527.2607691037 3.5505297 -1103.2562
+134528.260769208 3.550451 -1103.197
+134529.2607693123 3.5504904 -1103.1774
+134530.2607694166 3.5505297 -1103.2168
+134531.2607695209 3.5505693 -1103.1774
+134532.2607696252 3.5505693 -1103.2366
+134533.2607697295 3.550451 -1103.2168
+134534.2607698338 3.5505297 -1103.1774
+134535.2607699381 3.550451 -1103.2168
+134536.2607700424 3.5505297 -1103.1774
+134537.2607701467 3.5505297 -1103.2366
+134538.260770251 3.5505297 -1103.197
+134539.2607703554 3.5505297 -1103.197
+134540.2607704597 3.550451 -1103.1378
+134541.260770564 3.550451 -1103.1378
+134542.2607706683 3.5504904 -1103.2761
+134543.2607707726 3.5503724 -1103.1182
+134544.2607708769 3.550333 -1103.2562
+134545.2607709812 3.5503724 -1103.2761
+134546.2607710855 3.5503724 -1103.197
+134547.2607711898 3.5504117 -1103.1774
+134548.2607712941 3.550333 -1103.2366
+134549.2607713984 3.5504117 -1103.0391
+134550.2607715027 3.5502937 -1103.2562
+134551.260771607 3.5504117 -1103.2959
+134552.2607717114 3.5503724 -1103.1774
+134553.2607718157 3.550333 -1103.2168
+134554.26077192 3.5502937 -1103.1774
+134555.2607720243 3.5502148 -1103.1576
+134556.2607721286 3.5502543 -1103.2366
+134557.2607722329 3.550333 -1103.197
+134558.2607723372 3.5502937 -1103.2168
+134559.2607724415 3.5502937 -1103.2168
+134560.2607725458 3.5501754 -1103.2168
+134561.2607726501 3.5502937 -1103.3353
+134562.2607727544 3.5502543 -1103.1576
+134563.2607728587 3.5501754 -1103.1378
+134564.2607729631 3.5501361 -1103.2168
+134565.2607730674 3.5502148 -1103.197
+134566.2607731717 3.5501754 -1103.2168
+134567.260773276 3.5500968 -1103.1774
+134568.2607733803 3.5501361 -1103.1774
+134569.2607734846 3.5501361 -1103.2366
+134570.2607735889 3.5501754 -1103.197
+134571.2607736932 3.5500968 -1103.1378
+134572.2607737975 3.5501361 -1103.1576
+134573.2607739018 3.5500968 -1103.1182
+134574.2607740061 3.5501361 -1103.2168
+134575.2607741104 3.5500181 -1103.1774
+134576.2607742148 3.5500968 -1103.2562
+134577.2607743191 3.5499787 -1103.1774
+134578.2607744234 3.5499787 -1103.2168
+134579.2607745277 3.5500968 -1103.2761
+134580.260774632 3.5500181 -1103.2168
+134581.2607747363 3.5498211 -1103.2168
+134582.2607748406 3.5499394 -1103.1774
+134583.2607749449 3.5498998 -1103.197
+134584.2607750492 3.5498998 -1103.2761
+134585.2607751535 3.5498211 -1103.197
+134586.2607752578 3.5498998 -1103.2959
+134587.2607753621 3.5498605 -1103.1576
+134588.2607754665 3.5498605 -1103.2761
+134589.2607755708 3.5498998 -1103.1378
+134590.2607756751 3.5498998 -1103.2168
+134591.2607757794 3.5498605 -1103.197
+134592.2607758837 3.5498605 -1103.2959
+134593.260775988 3.5498211 -1103.2562
+134594.2607760923 3.5497818 -1103.1774
+134595.2607761966 3.5498211 -1103.0984
+134596.2607763009 3.5497818 -1103.1774
+134597.2607764052 3.5498211 -1103.2761
+134598.2607765095 3.5497818 -1103.2366
+134599.2607766138 3.5498605 -1103.2562
+134600.2607767181 3.5497031 -1103.2168
+134601.2607768225 3.5497818 -1103.197
+134602.2607769268 3.5497425 -1103.2366
+134603.2607770311 3.5498211 -1103.3156
+134604.2607771354 3.5497818 -1103.2562
+134605.2607772397 3.5497031 -1103.2366
+134606.260777344 3.5496638 -1103.197
+134607.2607774483 3.5496244 -1103.197
+134608.2607775526 3.5497425 -1103.1182
+134609.2607776569 3.5497031 -1103.1378
+134610.2607777612 3.5497031 -1103.197
+134611.2607778655 3.5496638 -1103.1576
+134612.2607779698 3.5495455 -1103.0785
+134613.2607780742 3.5496244 -1103.1774
+134614.2607781785 3.5496244 -1103.1774
+134615.2607782828 3.5496244 -1103.2761
+134616.2607783871 3.5496244 -1103.2168
+134617.2607784914 3.5495455 -1103.197
+134618.2607785957 3.5495455 -1103.197
+134619.2607787 3.5495849 -1103.1378
+134620.2607788043 3.5495849 -1103.197
+134621.2607789086 3.5495455 -1103.1576
+134622.2607790129 3.5495455 -1103.197
+134623.2607791172 3.5495062 -1103.1182
+134624.2607792215 3.5495849 -1103.1182
+134625.2607793259 3.5494275 -1103.1774
+134626.2607794302 3.5494668 -1103.1774
+134627.2607795345 3.5494668 -1103.2761
+134628.2607796388 3.5495455 -1103.2168
+134629.2607797431 3.5495849 -1103.1774
+134630.2607798474 3.5495455 -1103.2761
+134631.2607799517 3.5494668 -1103.2168
+134632.260780056 3.5494668 -1103.1774
+134633.2607801603 3.5494668 -1103.197
+134634.2607802646 3.5494668 -1103.2959
+134635.2607803689 3.5495062 -1103.1774
+134636.2607804732 3.5493488 -1103.1576
+134637.2607805775 3.5493882 -1103.1774
+134638.2607806819 3.5494668 -1103.2366
+134639.2607807862 3.5493882 -1103.1576
+134640.2607808905 3.5493882 -1103.2761
+134641.2607809948 3.5495455 -1103.3353
+134642.2607810991 3.5494275 -1103.1378
+134643.2607812034 3.5494668 -1103.1774
+134644.2607813077 3.5494668 -1103.1774
+134645.260781412 3.5494275 -1103.1576
+134646.2607815163 3.5493882 -1103.2168
+134647.2607816206 3.5493488 -1103.1774
+134648.2607817249 3.5493882 -1103.2168
+134649.2607818292 3.5493095 -1103.197
+134650.2607819336 3.5493882 -1103.1774
+134651.2607820379 3.5493095 -1103.2168
+134652.2607821422 3.5493095 -1103.2168
+134653.2607822465 3.5494275 -1103.1576
+134654.2607823508 3.5493095 -1103.0984
+134655.2607824551 3.5493488 -1103.2168
+134656.2607825594 3.5492699 -1103.197
+134657.2607826637 3.5492306 -1103.1774
+134658.260782768 3.5493095 -1103.1774
+134659.2607828723 3.5492306 -1103.2168
+134660.2607829766 3.5493488 -1103.2366
+134661.2607830809 3.5492306 -1103.1576
+134662.2607831853 3.5493095 -1103.2366
+134663.2607832896 3.5492306 -1103.197
+134664.2607833939 3.5491519 -1103.3353
+134665.2607834982 3.5491912 -1103.2562
+134666.2607836025 3.5491912 -1103.1774
+134667.2607837068 3.5492306 -1103.2366
+134668.2607838111 3.5493095 -1103.1182
+134669.2607839154 3.5491519 -1103.2761
+134670.2607840197 3.5491126 -1103.1774
+134671.260784124 3.5492699 -1103.2366
+134672.2607842283 3.5491519 -1103.2168
+134673.2607843326 3.5492306 -1103.2959
+134674.2607844369 3.5491126 -1103.1378
+134675.2607845413 3.5491519 -1103.1774
+134676.2607846456 3.5491519 -1103.2366
+134677.2607847499 3.5491912 -1103.2168
+134678.2607848542 3.5491519 -1103.2168
+134679.2607849585 3.5490732 -1103.1774
+134680.2607850628 3.5490732 -1103.2168
+134681.2607851671 3.5490339 -1103.1774
+134682.2607852714 3.5490339 -1103.1576
+134683.2607853757 3.5490732 -1103.197
+134684.26078548 3.5490339 -1103.2959
+134685.2607855843 3.5489943 -1103.2168
+134686.2607856886 3.5490732 -1103.2761
+134687.260785793 3.5489943 -1103.2562
+134688.2607858973 3.5490339 -1103.2761
+134689.2607860016 3.5490339 -1103.2366
+134690.2607861059 3.5490732 -1103.2366
+134691.2607862102 3.5489943 -1103.2168
+134692.2607863145 3.548955 -1103.1774
+134693.2607864188 3.5490339 -1103.2366
+134694.2607865231 3.5490339 -1103.2168
+134695.2607866274 3.5489156 -1103.2562
+134696.2607867317 3.5488763 -1103.2168
+134697.260786836 3.5490339 -1103.2366
+134698.2607869403 3.5488763 -1103.197
+134699.2607870447 3.5488763 -1103.1774
+134700.260787149 3.5490339 -1103.197
+134701.2607872533 3.5489156 -1103.1774
+134702.2607873576 3.5489156 -1103.1576
+134703.2607874619 3.5488369 -1103.197
+134704.2607875662 3.5488763 -1103.2366
+134705.2607876705 3.5487976 -1103.1576
+134706.2607877748 3.5488369 -1103.0984
+134707.2607878791 3.5487976 -1103.2562
+134708.2607879834 3.5488369 -1103.1182
+134709.2607880877 3.5487583 -1103.1182
+134710.260788192 3.5486794 -1103.197
+134711.2607882963 3.5487583 -1103.197
+134712.2607884007 3.5487189 -1103.197
+134713.260788505 3.54864 -1103.1378
+134714.2607886093 3.5488763 -1103.197
+134715.2607887136 3.5486794 -1103.1182
+134716.2607888179 3.5487583 -1103.1774
+134717.2607889222 3.5486794 -1103.1182
+134718.2607890265 3.5487583 -1103.1576
+134719.2607891308 3.5487189 -1103.2366
+134720.2607892351 3.54864 -1103.1182
+134721.2607893394 3.5486794 -1103.1774
+134722.2607894437 3.5486794 -1103.197
+134723.260789548 3.5485613 -1103.1774
+134724.2607896524 3.5486007 -1103.2562
+134725.2607897567 3.5486794 -1103.2761
+134726.260789861 3.5485613 -1103.1378
+134727.2607899653 3.5484827 -1103.2761
+134728.2607900696 3.548522 -1103.1378
+134729.2607901739 3.5484827 -1103.197
+134730.2607902782 3.5484827 -1103.1182
+134731.2607903825 3.5485613 -1103.197
+134732.2607904868 3.548404 -1103.1576
+134733.2607905911 3.5484433 -1103.1576
+134734.2607906954 3.5484433 -1103.2366
+134735.2607907997 3.5484827 -1103.2366
+134736.2607909041 3.5484433 -1103.197
+134737.2607910084 3.5483644 -1103.197
+134738.2607911127 3.5484433 -1103.1576
+134739.260791217 3.548522 -1103.2168
+134740.2607913213 3.5484827 -1103.197
+134741.2607914256 3.5484827 -1103.2366
+134742.2607915299 3.5484433 -1103.197
+134743.2607916342 3.548404 -1103.2562
+134744.2607917385 3.5483644 -1103.1774
+134745.2607918428 3.5482857 -1103.1378
+134746.2607919471 3.548522 -1103.1774
+134747.2607920514 3.548404 -1103.2366
+134748.2607921558 3.5484433 -1103.2366
+134749.2607922601 3.5483644 -1103.1774
+134750.2607923644 3.5484433 -1103.1774
+134751.2607924687 3.5483644 -1103.2366
+134752.260792573 3.5484433 -1103.1576
+134753.2607926773 3.5483644 -1103.0984
+134754.2607927816 3.548404 -1103.1378
+134755.2607928859 3.5483251 -1103.1576
+134756.2607929902 3.5484827 -1103.1378
+134757.2607930945 3.5483644 -1103.197
+134758.2607931988 3.5482857 -1103.2366
+134759.2607933031 3.5483251 -1103.1182
+134760.2607934074 3.548207 -1103.2366
+134761.2607935118 3.5482464 -1103.1576
+134762.2607936161 3.5482857 -1103.2366
+134763.2607937204 3.548404 -1103.2761
+134764.2607938247 3.5481284 -1103.2168
+134765.260793929 3.5482857 -1103.0984
+134766.2607940333 3.5482857 -1103.1378
+134767.2607941376 3.5482857 -1103.1182
+134768.2607942419 3.548207 -1103.2562
+134769.2607943462 3.5481677 -1103.2562
+134770.2607944505 3.5482464 -1103.2959
+134771.2607945548 3.5482857 -1103.197
+134772.2607946591 3.5482464 -1103.2562
+134773.2607947635 3.5482464 -1103.2366
+134774.2607948678 3.5481677 -1103.1378
+134775.2607949721 3.5481284 -1103.2366
+134776.2607950764 3.5481284 -1103.197
+134777.2607951807 3.5482464 -1103.1576
+134778.260795285 3.5481677 -1103.1774
+134779.2607953893 3.548207 -1103.1378
+134780.2607954936 3.548089 -1103.197
+134781.2607955979 3.5481284 -1103.197
+134782.2607957022 3.5481284 -1103.2168
+134783.2607958065 3.5480494 -1103.2761
+134784.2607959108 3.548089 -1103.1378
+134785.2607960152 3.5481284 -1103.0984
+134786.2607961195 3.548089 -1103.2761
+134787.2607962238 3.548089 -1103.1182
+134788.2607963281 3.5479708 -1103.1576
+134789.2607964324 3.5480494 -1103.2366
+134790.2607965367 3.5479314 -1103.1576
+134791.260796641 3.5479708 -1103.197
+134792.2607967453 3.5480494 -1103.2168
+134793.2607968496 3.5479314 -1103.1576
+134794.2607969539 3.5479314 -1103.1774
+134795.2607970582 3.5480101 -1103.3156
+134796.2607971625 3.548089 -1103.1378
+134797.2607972668 3.5479314 -1103.1774
+134798.2607973712 3.5479314 -1103.1576
+134799.2607974755 3.5479708 -1103.2366
+134800.2607975798 3.5478921 -1103.1576
+134801.2607976841 3.5479708 -1103.197
+134802.2607977884 3.5479314 -1103.2168
+134803.2607978927 3.5479314 -1103.1576
+134804.260797997 3.5479314 -1103.197
+134805.2607981013 3.5478528 -1103.1576
+134806.2607982056 3.5478528 -1103.3156
+134807.2607983099 3.5478921 -1103.2168
+134808.2607984142 3.5477741 -1103.2959
+134809.2607985185 3.5477345 -1103.1774
+134810.2607986229 3.5478134 -1103.1182
+134811.2607987272 3.5477741 -1103.1576
+134812.2607988315 3.5478134 -1103.197
+134813.2607989358 3.5477741 -1103.2366
+134814.2607990401 3.5478134 -1103.2168
+134815.2607991444 3.5476558 -1103.1576
+134816.2607992487 3.5476952 -1103.1378
+134817.260799353 3.5476952 -1103.197
+134818.2607994573 3.5476952 -1103.2366
+134819.2607995616 3.5475771 -1103.1774
+134820.2607996659 3.5476952 -1103.1774
+134821.2607997702 3.5475771 -1103.1182
+134822.2607998746 3.5476952 -1103.2366
+134823.2607999789 3.5476558 -1103.2366
+134824.2608000832 3.5477345 -1103.197
+134825.2608001875 3.5476558 -1103.2366
+134826.2608002918 3.5476558 -1103.2168
+134827.2608003961 3.5475771 -1103.1576
+134828.2608005004 3.5474985 -1103.1576
+134829.2608006047 3.5475771 -1103.2761
+134830.260800709 3.5475771 -1103.2168
+134831.2608008133 3.5474589 -1103.2366
+134832.2608009176 3.5475378 -1103.2366
+134833.2608010219 3.5475378 -1103.1378
+134834.2608011262 3.5474985 -1103.2168
+134835.2608012306 3.5475378 -1103.197
+134836.2608013349 3.5474985 -1103.2168
+134837.2608014392 3.5475378 -1103.2168
+134838.2608015435 3.5475378 -1103.1576
+134839.2608016478 3.5475378 -1103.2562
+134840.2608017521 3.5474589 -1103.1774
+134841.2608018564 3.5474985 -1103.1774
+134842.2608019607 3.5474589 -1103.197
+134843.260802065 3.5475771 -1103.1182
+134844.2608021693 3.5473802 -1103.1378
+134845.2608022736 3.5475771 -1103.2366
+134846.2608023779 3.5474589 -1103.197
+134847.2608024823 3.5473802 -1103.1774
+134848.2608025866 3.5473409 -1103.2366
+134849.2608026909 3.5474195 -1103.197
+134850.2608027952 3.5473802 -1103.1774
+134851.2608028995 3.5474195 -1103.2168
+134852.2608030038 3.5473409 -1103.1774
+134853.2608031081 3.5473015 -1103.2366
+134854.2608032124 3.5473409 -1103.1774
+134855.2608033167 3.5473802 -1103.197
+134856.260803421 3.5473802 -1103.2168
+134857.2608035253 3.5473409 -1103.2168
+134858.2608036296 3.5472622 -1103.1774
+134859.260803734 3.5472229 -1103.1774
+134860.2608038383 3.5472622 -1103.2562
+134861.2608039426 3.5473409 -1103.1576
+134862.2608040469 3.5472229 -1103.1576
+134863.2608041512 3.5472622 -1103.1774
+134864.2608042555 3.5472229 -1103.2366
+134865.2608043598 3.5471835 -1103.2562
+134866.2608044641 3.5471046 -1103.2562
+134867.2608045684 3.5472229 -1103.2761
+134868.2608046727 3.5472229 -1103.1774
+134869.260804777 3.5472229 -1103.197
+134870.2608048813 3.5471835 -1103.2562
+134871.2608049857 3.5472622 -1103.197
+134872.26080509 3.5470653 -1103.1378
+134873.2608051943 3.5471835 -1103.2366
+134874.2608052986 3.5471835 -1103.1774
+134875.2608054029 3.5471439 -1103.197
+134876.2608055072 3.5471046 -1103.2761
+134877.2608056115 3.5471835 -1103.2366
+134878.2608057158 3.5470653 -1103.0984
+134879.2608058201 3.5471835 -1103.1576
+134880.2608059244 3.5471046 -1103.2366
+134881.2608060287 3.5470653 -1103.2761
+134882.260806133 3.5471046 -1103.1576
+134883.2608062373 3.5470259 -1103.2168
+134884.2608063417 3.5471439 -1103.2761
+134885.260806446 3.5470259 -1103.2366
+134886.2608065503 3.5470653 -1103.2959
+134887.2608066546 3.5469866 -1103.1182
+134888.2608067589 3.5470653 -1103.2562
+134889.2608068632 3.5469079 -1103.1774
+134890.2608069675 3.5469079 -1103.2168
+134891.2608070718 3.5469472 -1103.2366
+134892.2608071761 3.546829 -1103.2366
+134893.2608072804 3.5469079 -1103.2562
+134894.2608073847 3.5469472 -1103.197
+134895.260807489 3.5469079 -1103.2168
+134896.2608075934 3.5468686 -1103.197
+134897.2608076977 3.5469472 -1103.2168
+134898.260807802 3.546829 -1103.2168
+134899.2608079063 3.546829 -1103.1774
+134900.2608080106 3.5468686 -1103.1774
+134901.2608081149 3.5468686 -1103.1774
+134902.2608082192 3.546829 -1103.197
+134903.2608083235 3.5468686 -1103.197
+134904.2608084278 3.5469079 -1103.2366
+134905.2608085321 3.5467896 -1103.0984
+134906.2608086364 3.5467896 -1103.1576
+134907.2608087407 3.5467503 -1103.2366
+134908.2608088451 3.5467896 -1103.2562
+134909.2608089494 3.5467503 -1103.3156
+134910.2608090537 3.5468686 -1103.2959
+134911.260809158 3.5465536 -1103.1774
+134912.2608092623 3.546711 -1103.2168
+134913.2608093666 3.5466323 -1103.1774
+134914.2608094709 3.5466323 -1103.1774
+134915.2608095752 3.5466323 -1103.1774
+134916.2608096795 3.5466323 -1103.2366
+134917.2608097838 3.5466716 -1103.2761
+134918.2608098881 3.5466323 -1103.197
+134919.2608099924 3.5466323 -1103.2761
+134920.2608100967 3.546593 -1103.2562
+134921.2608102011 3.546593 -1103.2168
+134922.2608103054 3.5466716 -1103.3353
+134923.2608104097 3.5465536 -1103.1576
+134924.260810514 3.546593 -1103.2959
+134925.2608106183 3.5465536 -1103.3353
+134926.2608107226 3.5464747 -1103.2959
+134927.2608108269 3.5464747 -1103.2562
+134928.2608109312 3.5465536 -1103.2168
+134929.2608110355 3.546514 -1103.2562
+134930.2608111398 3.5463567 -1103.197
+134931.2608112441 3.5465536 -1103.2168
+134932.2608113484 3.546514 -1103.2562
+134933.2608114528 3.5464747 -1103.3353
+134934.2608115571 3.5464747 -1103.0984
+134935.2608116614 3.5464354 -1103.2168
+134936.2608117657 3.5464747 -1103.2761
+134937.26081187 3.5464354 -1103.2168
+134938.2608119743 3.5463567 -1103.1774
+134939.2608120786 3.5463567 -1103.2366
+134940.2608121829 3.5464354 -1103.1774
+134941.2608122872 3.5463567 -1103.2168
+134942.2608123915 3.5463567 -1103.1774
+134943.2608124958 3.546396 -1103.1774
+134944.2608126001 3.5463173 -1103.2168
+134945.2608127045 3.546278 -1103.2562
+134946.2608128088 3.546278 -1103.197
+134947.2608129131 3.5462387 -1103.1182
+134948.2608130174 3.546278 -1103.3156
+134949.2608131217 3.546278 -1103.2366
+134950.260813226 3.5461597 -1103.2366
+134951.2608133303 3.5462387 -1103.2959
+134952.2608134346 3.5461597 -1103.197
+134953.2608135389 3.5461204 -1103.2366
+134954.2608136432 3.5462387 -1103.1774
+134955.2608137475 3.5461597 -1103.2366
+134956.2608138518 3.5461597 -1103.197
+134957.2608139561 3.5461204 -1103.2168
+134958.2608140605 3.5460024 -1103.1774
+134959.2608141648 3.5461204 -1103.197
+134960.2608142691 3.5461204 -1103.1378
+134961.2608143734 3.5460811 -1103.2168
+134962.2608144777 3.5461204 -1103.1576
+134963.260814582 3.5460811 -1103.2168
+134964.2608146863 3.545963 -1103.1774
+134965.2608147906 3.5460024 -1103.197
+134966.2608148949 3.5461597 -1103.1774
+134967.2608149992 3.5460811 -1103.1774
+134968.2608151035 3.5460417 -1103.2761
+134969.2608152078 3.545963 -1103.2366
+134970.2608153122 3.5459237 -1103.2366
+134971.2608154165 3.545963 -1103.2562
+134972.2608155208 3.5460417 -1103.3156
+134973.2608156251 3.5460024 -1103.2366
+134974.2608157294 3.545963 -1103.2366
+134975.2608158337 3.5460417 -1103.2168
+134976.260815938 3.545963 -1103.1378
+134977.2608160423 3.5461204 -1103.2168
+134978.2608161466 3.5460024 -1103.2168
+134979.2608162509 3.545963 -1103.2366
+134980.2608163552 3.5458841 -1103.2168
+134981.2608164595 3.5458841 -1103.1378
+134982.2608165639 3.545963 -1103.2761
+134983.2608166682 3.5458448 -1103.1774
+134984.2608167725 3.5459237 -1103.2168
+134985.2608168768 3.5460024 -1103.1576
+134986.2608169811 3.5460024 -1103.2761
+134987.2608170854 3.5460024 -1103.1774
+134988.2608171897 3.5458841 -1103.1774
+134989.260817294 3.545963 -1103.197
+134990.2608173983 3.5459237 -1103.2562
+134991.2608175026 3.5459237 -1103.1774
+134992.2608176069 3.5459237 -1103.1576
+134993.2608177112 3.5459237 -1103.1378
+134994.2608178156 3.5457268 -1103.197
+134995.2608179199 3.5457661 -1103.2562
+134996.2608180242 3.5457661 -1103.2959
+134997.2608181285 3.5458841 -1103.1774
+134998.2608182328 3.5457268 -1103.197
+134999.2608183371 3.5458448 -1103.2761
+135000.2608184414 3.5457661 -1103.1774
+135001.2608185457 3.5458841 -1103.1576
+135002.26081865 3.5457661 -1103.2168
+135003.2608187543 3.5457661 -1103.2168
+135004.2608188586 3.5457268 -1103.1576
+135005.2608189629 3.5457661 -1103.1774
+135006.2608190672 3.5458055 -1103.1378
+135007.2608191716 3.5458448 -1103.2366
+135008.2608192759 3.5457661 -1103.2168
+135009.2608193802 3.5456085 -1103.197
+135010.2608194845 3.5456874 -1103.1774
+135011.2608195888 3.5458055 -1103.3551
+135012.2608196931 3.5456874 -1103.1576
+135013.2608197974 3.5458448 -1103.197
+135014.2608199017 3.5457268 -1103.1576
+135015.260820006 3.5456874 -1103.2168
+135016.2608201103 3.5457268 -1103.2562
+135017.2608202146 3.5456874 -1103.1576
+135018.2608203189 3.5457268 -1103.2366
+135019.2608204233 3.5457661 -1103.2761
+135020.2608205276 3.5456874 -1103.197
+135021.2608206319 3.5456481 -1103.2562
+135022.2608207362 3.5457268 -1103.1378
+135023.2608208405 3.5456874 -1103.2761
+135024.2608209448 3.5456481 -1103.2168
+135025.2608210491 3.5456481 -1103.2761
+135026.2608211534 3.5457268 -1103.2959
+135027.2608212577 3.5456481 -1103.2168
+135028.260821362 3.5456481 -1103.2168
+135029.2608214663 3.5456874 -1103.2366
+135030.2608215706 3.5456085 -1103.2366
+135031.260821675 3.5456481 -1103.1182
+135032.2608217793 3.5456874 -1103.2562
+135033.2608218836 3.5454905 -1103.2562
+135034.2608219879 3.5455692 -1103.1774
+135035.2608220922 3.5455692 -1103.2168
+135036.2608221965 3.5455298 -1103.1774
+135037.2608223008 3.5455298 -1103.2761
+135038.2608224051 3.5455298 -1103.2761
+135039.2608225094 3.5455298 -1103.197
+135040.2608226137 3.5455298 -1103.2168
+135041.260822718 3.5455298 -1103.2562
+135042.2608228223 3.5455298 -1103.1182
+135043.2608229266 3.5454512 -1103.1576
+135044.260823031 3.5454512 -1103.197
+135045.2608231353 3.5454118 -1103.2959
+135046.2608232396 3.5453725 -1103.1378
+135047.2608233439 3.5453331 -1103.1576
+135048.2608234482 3.5455298 -1103.2761
+135049.2608235525 3.5454118 -1103.2366
+135050.2608236568 3.5454118 -1103.2366
+135051.2608237611 3.5453725 -1103.197
+135052.2608238654 3.5454118 -1103.1378
+135053.2608239697 3.5453331 -1103.2959
+135054.260824074 3.5454512 -1103.2366
+135055.2608241783 3.5453331 -1103.1774
+135056.2608242827 3.5452936 -1103.2562
+135057.260824387 3.5453725 -1103.197
+135058.2608244913 3.5453725 -1103.197
+135059.2608245956 3.5452936 -1103.1576
+135060.2608246999 3.5452542 -1103.2562
+135061.2608248042 3.5452149 -1103.197
+135062.2608249085 3.5452542 -1103.1378
+135063.2608250128 3.5452542 -1103.2168
+135064.2608251171 3.5452542 -1103.3156
+135065.2608252214 3.5451362 -1103.2366
+135066.2608253257 3.5452936 -1103.2959
+135067.26082543 3.5452542 -1103.1182
+135068.2608255344 3.5451756 -1103.3156
+135069.2608256387 3.5451756 -1103.197
+135070.260825743 3.5452149 -1103.1182
+135071.2608258473 3.5451362 -1103.2168
+135072.2608259516 3.5452542 -1103.3551
+135073.2608260559 3.5452936 -1103.197
+135074.2608261602 3.5452936 -1103.1774
+135075.2608262645 3.5452149 -1103.2761
+135076.2608263688 3.5451362 -1103.1774
+135077.2608264731 3.5451756 -1103.197
+135078.2608265774 3.5450182 -1103.2562
+135079.2608266817 3.5452542 -1103.2168
+135080.260826786 3.5451756 -1103.2366
+135081.2608268904 3.5450182 -1103.1182
+135082.2608269947 3.5450969 -1103.1378
+135083.260827099 3.5450575 -1103.2562
+135084.2608272033 3.5450575 -1103.1774
+135085.2608273076 3.5449786 -1103.2168
+135086.2608274119 3.5449393 -1103.2366
+135087.2608275162 3.5449786 -1103.2562
+135088.2608276205 3.5449393 -1103.197
+135089.2608277248 3.5448606 -1103.197
+135090.2608278291 3.5449393 -1103.2366
+135091.2608279334 3.5448999 -1103.2168
+135092.2608280377 3.5447819 -1103.2168
+135093.2608281421 3.5448606 -1103.197
+135094.2608282464 3.5448606 -1103.2168
+135095.2608283507 3.5448213 -1103.197
+135096.260828455 3.5447426 -1103.2366
+135097.2608285593 3.5448606 -1103.2562
+135098.2608286636 3.5447819 -1103.2366
+135099.2608287679 3.5447426 -1103.197
+135100.2608288722 3.5447426 -1103.2168
+135101.2608289765 3.5447426 -1103.197
+135102.2608290808 3.5447032 -1103.2168
+135103.2608291851 3.5447426 -1103.2168
+135104.2608292894 3.5446243 -1103.2168
+135105.2608293938 3.5446637 -1103.1378
+135106.2608294981 3.5445457 -1103.2168
+135107.2608296024 3.5445457 -1103.1774
+135108.2608297067 3.544585 -1103.2562
+135109.260829811 3.5446637 -1103.1774
+135110.2608299153 3.5445457 -1103.2366
+135111.2608300196 3.5445063 -1103.1378
+135112.2608301239 3.544585 -1103.1774
+135113.2608302282 3.544467 -1103.2168
+135114.2608303325 3.544467 -1103.197
+135115.2608304368 3.544585 -1103.197
+135116.2608305411 3.544467 -1103.197
+135117.2608306454 3.5444276 -1103.197
+135118.2608307498 3.544467 -1103.1576
+135119.2608308541 3.5446243 -1103.2168
+135120.2608309584 3.544585 -1103.2366
+135121.2608310627 3.544467 -1103.2761
+135122.260831167 3.5444276 -1103.1774
+135123.2608312713 3.5445063 -1103.1774
+135124.2608313756 3.5446243 -1103.1774
+135125.2608314799 3.5445063 -1103.197
+135126.2608315842 3.5443883 -1103.1576
+135127.2608316885 3.544467 -1103.2168
+135128.2608317928 3.5445063 -1103.1182
+135129.2608318971 3.5446243 -1103.1576
+135130.2608320015 3.544467 -1103.1576
+135131.2608321058 3.5445457 -1103.1576
+135132.2608322101 3.5444276 -1103.197
+135133.2608323144 3.5443487 -1103.0984
+135134.2608324187 3.5444276 -1103.1774
+135135.260832523 3.544467 -1103.2761
+135136.2608326273 3.5443487 -1103.1576
+135137.2608327316 3.5443094 -1103.197
+135138.2608328359 3.5443487 -1103.2168
+135139.2608329402 3.5443487 -1103.2168
+135140.2608330445 3.5443883 -1103.2761
+135141.2608331488 3.5443094 -1103.2562
+135142.2608332532 3.5444276 -1103.2366
+135143.2608333575 3.54427 -1103.1774
+135144.2608334618 3.54427 -1103.2761
+135145.2608335661 3.54427 -1103.2562
+135146.2608336704 3.5443094 -1103.1576
+135147.2608337747 3.54427 -1103.1774
+135148.260833879 3.5443094 -1103.2168
+135149.2608339833 3.54427 -1103.197
+135150.2608340876 3.54427 -1103.1576
+135151.2608341919 3.5443094 -1103.2168
+135152.2608342962 3.5442307 -1103.1774
+135153.2608344005 3.544152 -1103.2168
+135154.2608345049 3.5441914 -1103.2761
+135155.2608346092 3.5442307 -1103.2168
+135156.2608347135 3.5442307 -1103.1774
+135157.2608348178 3.5443094 -1103.1378
+135158.2608349221 3.544152 -1103.2562
+135159.2608350264 3.5442307 -1103.2168
+135160.2608351307 3.5440338 -1103.1182
+135161.260835235 3.5441914 -1103.2366
+135162.2608353393 3.5441127 -1103.197
+135163.2608354436 3.544152 -1103.1774
+135164.2608355479 3.5441127 -1103.197
+135165.2608356522 3.544152 -1103.1774
+135166.2608357565 3.5442307 -1103.1774
+135167.2608358609 3.5440733 -1103.1378
+135168.2608359652 3.5440338 -1103.2562
+135169.2608360695 3.5440733 -1103.1774
+135170.2608361738 3.5440733 -1103.1774
+135171.2608362781 3.5440733 -1103.1378
+135172.2608363824 3.5441127 -1103.2168
+135173.2608364867 3.5440338 -1103.1774
+135174.260836591 3.5440338 -1103.197
+135175.2608366953 3.5441127 -1103.2562
+135176.2608367996 3.5440733 -1103.1576
+135177.2608369039 3.5439944 -1103.1774
+135178.2608370082 3.5440338 -1103.197
+135179.2608371126 3.5440733 -1103.2562
+135180.2608372169 3.5440733 -1103.2366
+135181.2608373212 3.5440338 -1103.0785
+135182.2608374255 3.5440338 -1103.197
+135183.2608375298 3.5439944 -1103.2366
+135184.2608376341 3.5439944 -1103.2366
+135185.2608377384 3.5439157 -1103.1774
+135186.2608378427 3.5440338 -1103.1576
+135187.260837947 3.5439944 -1103.2959
+135188.2608380513 3.5439944 -1103.2562
+135189.2608381556 3.5439551 -1103.2168
+135190.2608382599 3.5439551 -1103.2168
+135191.2608383643 3.5439551 -1103.2168
+135192.2608384686 3.5439551 -1103.1182
+135193.2608385729 3.5438764 -1103.197
+135194.2608386772 3.5437977 -1103.2366
+135195.2608387815 3.5438764 -1103.197
+135196.2608388858 3.5439157 -1103.1774
+135197.2608389901 3.5439157 -1103.2562
+135198.2608390944 3.5439944 -1103.1378
+135199.2608391987 3.5439551 -1103.2168
+135200.260839303 3.5438764 -1103.1576
+135201.2608394073 3.5437977 -1103.1576
+135202.2608395116 3.5437977 -1103.2168
+135203.2608396159 3.5438764 -1103.1576
+135204.2608397203 3.5438764 -1103.2366
+135205.2608398246 3.5438371 -1103.1378
+135206.2608399289 3.5438371 -1103.1182
+135207.2608400332 3.5438371 -1103.2562
+135208.2608401375 3.5438764 -1103.2366
+135209.2608402418 3.5437977 -1103.1576
+135210.2608403461 3.5438764 -1103.1576
+135211.2608404504 3.5437977 -1103.0984
+135212.2608405547 3.5437188 -1103.1182
+135213.260840659 3.5439157 -1103.197
+135214.2608407633 3.5437977 -1103.2366
+135215.2608408676 3.5437188 -1103.2366
+135216.260840972 3.5437188 -1103.2761
+135217.2608410763 3.5437977 -1103.1774
+135218.2608411806 3.5437582 -1103.197
+135219.2608412849 3.5437188 -1103.197
+135220.2608413892 3.5436795 -1103.2562
+135221.2608414935 3.5437188 -1103.1576
+135222.2608415978 3.5436795 -1103.1182
+135223.2608417021 3.5437977 -1103.1378
+135224.2608418064 3.5436795 -1103.2366
+135225.2608419107 3.5436795 -1103.197
+135226.260842015 3.5436795 -1103.2366
+135227.2608421193 3.5437188 -1103.1774
+135228.2608422237 3.5436795 -1103.1576
+135229.260842328 3.5435615 -1103.2168
+135230.2608424323 3.5434828 -1103.3156
+135231.2608425366 3.5436008 -1103.197
+135232.2608426409 3.5436401 -1103.2761
+135233.2608427452 3.5435615 -1103.2168
+135234.2608428495 3.5435615 -1103.1576
+135235.2608429538 3.5435615 -1103.1774
+135236.2608430581 3.5435221 -1103.2366
+135237.2608431624 3.5435615 -1103.2168
+135238.2608432667 3.5435615 -1103.197
+135239.260843371 3.5434828 -1103.1576
+135240.2608434753 3.5435221 -1103.197
+135241.2608435797 3.5435615 -1103.1774
+135242.260843684 3.5435615 -1103.2168
+135243.2608437883 3.5434828 -1103.197
+135244.2608438926 3.5434828 -1103.2168
+135245.2608439969 3.5434432 -1103.1774
+135246.2608441012 3.5433645 -1103.197
+135247.2608442055 3.5434039 -1103.2168
+135248.2608443098 3.5434828 -1103.197
+135249.2608444141 3.5433252 -1103.2168
+135250.2608445184 3.5433252 -1103.197
+135251.2608446227 3.5433645 -1103.197
+135252.260844727 3.5434039 -1103.2168
+135253.2608448314 3.5433252 -1103.2562
+135254.2608449357 3.5432858 -1103.2168
+135255.26084504 3.5432465 -1103.2761
+135256.2608451443 3.5433252 -1103.2959
+135257.2608452486 3.5432072 -1103.1774
+135258.2608453529 3.5432072 -1103.1576
+135259.2608454572 3.5432072 -1103.2366
+135260.2608455615 3.5432858 -1103.1774
+135261.2608456658 3.5433252 -1103.1576
+135262.2608457701 3.5433252 -1103.1378
+135263.2608458744 3.5431678 -1103.2168
+135264.2608459787 3.5432072 -1103.1576
+135265.2608460831 3.5431678 -1103.1774
+135266.2608461874 3.5431678 -1103.1774
+135267.2608462917 3.5431283 -1103.2168
+135268.260846396 3.5432072 -1103.2959
+135269.2608465003 3.5431283 -1103.2168
+135270.2608466046 3.5430496 -1103.2761
+135271.2608467089 3.5430889 -1103.1774
+135272.2608468132 3.5431283 -1103.2168
+135273.2608469175 3.5431283 -1103.2366
+135274.2608470218 3.5430889 -1103.197
+135275.2608471261 3.5430496 -1103.1378
+135276.2608472304 3.5430889 -1103.1774
+135277.2608473348 3.5429709 -1103.2168
+135278.2608474391 3.5430102 -1103.1774
+135279.2608475434 3.5429709 -1103.2366
+135280.2608476477 3.5430102 -1103.2562
+135281.260847752 3.5430102 -1103.2366
+135282.2608478563 3.5430889 -1103.2168
+135283.2608479606 3.5429316 -1103.2168
+135284.2608480649 3.5428922 -1103.2562
+135285.2608481692 3.5430102 -1103.197
+135286.2608482735 3.5430102 -1103.1774
+135287.2608483778 3.5429709 -1103.197
+135288.2608484821 3.5429316 -1103.2562
+135289.2608485864 3.5430102 -1103.2562
+135290.2608486908 3.5428922 -1103.2366
+135291.2608487951 3.5428529 -1103.1378
+135292.2608488994 3.5429316 -1103.2168
+135293.2608490037 3.542774 -1103.2959
+135294.260849108 3.5428529 -1103.1774
+135295.2608492123 3.5428922 -1103.197
+135296.2608493166 3.5428922 -1103.1576
+135297.2608494209 3.5428922 -1103.1182
+135298.2608495252 3.5428529 -1103.2562
+135299.2608496295 3.5429316 -1103.197
+135300.2608497338 3.542774 -1103.2959
+135301.2608498381 3.5428922 -1103.2761
+135302.2608499425 3.542774 -1103.0785
+135303.2608500468 3.5428529 -1103.197
+135304.2608501511 3.5428529 -1103.2366
+135305.2608502554 3.5427346 -1103.2366
+135306.2608503597 3.5428529 -1103.197
+135307.260850464 3.5426559 -1103.3156
+135308.2608505683 3.5426166 -1103.1576
+135309.2608506726 3.542774 -1103.2168
+135310.2608507769 3.542774 -1103.197
+135311.2608508812 3.5427346 -1103.2366
+135312.2608509855 3.5427346 -1103.1774
+135313.2608510898 3.5427346 -1103.2562
+135314.2608511942 3.5427346 -1103.2168
+135315.2608512985 3.5426559 -1103.2168
+135316.2608514028 3.5425773 -1103.2168
+135317.2608515071 3.5425773 -1103.2168
+135318.2608516114 3.5426559 -1103.2168
+135319.2608517157 3.5426953 -1103.1378
+135320.26085182 3.5426166 -1103.1576
+135321.2608519243 3.5426953 -1103.2366
+135322.2608520286 3.5425773 -1103.2168
+135323.2608521329 3.5425773 -1103.197
+135324.2608522372 3.5425773 -1103.3551
+135325.2608523415 3.5426559 -1103.2562
+135326.2608524458 3.542459 -1103.1774
+135327.2608525502 3.5424984 -1103.0984
+135328.2608526545 3.5425773 -1103.197
+135329.2608527588 3.5425379 -1103.1774
+135330.2608528631 3.542459 -1103.1378
+135331.2608529674 3.5423803 -1103.1774
+135332.2608530717 3.542459 -1103.2562
+135333.260853176 3.5424197 -1103.1774
+135334.2608532803 3.5424984 -1103.2959
+135335.2608533846 3.5424197 -1103.1378
+135336.2608534889 3.5422623 -1103.1378
+135337.2608535932 3.5423017 -1103.197
+135338.2608536975 3.542341 -1103.2562
+135339.2608538019 3.542341 -1103.2761
+135340.2608539062 3.5423017 -1103.2168
+135341.2608540105 3.5423017 -1103.2168
+135342.2608541148 3.542341 -1103.197
+135343.2608542191 3.5424197 -1103.1576
+135344.2608543234 3.5422623 -1103.2168
+135345.2608544277 3.542341 -1103.2168
+135346.260854532 3.5422623 -1103.1576
+135347.2608546363 3.542341 -1103.2562
+135348.2608547406 3.5423017 -1103.1576
+135349.2608548449 3.5422623 -1103.1378
+135350.2608549492 3.5423017 -1103.2761
+135351.2608550536 3.5422623 -1103.2562
+135352.2608551579 3.5422623 -1103.2562
+135353.2608552622 3.542223 -1103.2562
+135354.2608553665 3.5421441 -1103.1182
+135355.2608554708 3.5423803 -1103.2959
+135356.2608555751 3.5421834 -1103.1576
+135357.2608556794 3.5421834 -1103.2168
+135358.2608557837 3.5421834 -1103.2562
+135359.260855888 3.5422623 -1103.197
+135360.2608559923 3.5421047 -1103.2168
+135361.2608560966 3.542026 -1103.1378
+135362.2608562009 3.542026 -1103.197
+135363.2608563052 3.5422623 -1103.2168
+135364.2608564096 3.542026 -1103.2366
+135365.2608565139 3.542026 -1103.2366
+135366.2608566182 3.5419867 -1103.2366
+135367.2608567225 3.5421834 -1103.1576
+135368.2608568268 3.5419867 -1103.2168
+135369.2608569311 3.542026 -1103.1774
+135370.2608570354 3.542026 -1103.2761
+135371.2608571397 3.5420654 -1103.1774
+135372.260857244 3.5419078 -1103.0785
+135373.2608573483 3.5419474 -1103.2562
+135374.2608574526 3.5420654 -1103.2168
+135375.2608575569 3.5419867 -1103.1774
+135376.2608576613 3.5419867 -1103.2562
+135377.2608577656 3.5419474 -1103.197
+135378.2608578699 3.542026 -1103.2366
+135379.2608579742 3.5419474 -1103.2168
+135380.2608580785 3.5418684 -1103.2168
+135381.2608581828 3.5419474 -1103.2761
+135382.2608582871 3.5419078 -1103.1774
+135383.2608583914 3.5419078 -1103.2562
+135384.2608584957 3.5419078 -1103.1182
+135385.2608586 3.5417898 -1103.197
+135386.2608587043 3.5418684 -1103.1182
+135387.2608588086 3.5418291 -1103.1576
+135388.260858913 3.5418291 -1103.1774
+135389.2608590173 3.5418291 -1103.1774
+135390.2608591216 3.5417898 -1103.1182
+135391.2608592259 3.5418291 -1103.2366
+135392.2608593302 3.5417898 -1103.2562
+135393.2608594345 3.5418291 -1103.1378
+135394.2608595388 3.5418291 -1103.2366
+135395.2608596431 3.5417898 -1103.1576
+135396.2608597474 3.5417504 -1103.2562
+135397.2608598517 3.5417898 -1103.197
+135398.260859956 3.5417111 -1103.1182
+135399.2608600603 3.5416718 -1103.197
+135400.2608601647 3.5415535 -1103.2366
+135401.260860269 3.5417111 -1103.1774
+135402.2608603733 3.5416718 -1103.2562
+135403.2608604776 3.5417111 -1103.1774
+135404.2608605819 3.5416324 -1103.2761
+135405.2608606862 3.5416324 -1103.197
+135406.2608607905 3.5415928 -1103.2562
+135407.2608608948 3.5415928 -1103.2366
+135408.2608609991 3.5416718 -1103.1576
+135409.2608611034 3.5415928 -1103.1576
+135410.2608612077 3.5415928 -1103.2366
+135411.260861312 3.5415928 -1103.197
+135412.2608614163 3.5415928 -1103.197
+135413.2608615207 3.5416324 -1103.2366
+135414.260861625 3.5416324 -1103.0984
+135415.2608617293 3.5415928 -1103.2366
+135416.2608618336 3.5415535 -1103.1774
+135417.2608619379 3.5414748 -1103.1378
+135418.2608620422 3.5415928 -1103.1774
+135419.2608621465 3.5415535 -1103.0984
+135420.2608622508 3.5415535 -1103.2168
+135421.2608623551 3.5415535 -1103.1774
+135422.2608624594 3.5415142 -1103.2366
+135423.2608625637 3.5414355 -1103.2761
+135424.260862668 3.5415535 -1103.2366
+135425.2608627724 3.5414355 -1103.1774
+135426.2608628767 3.5415142 -1103.2761
+135427.260862981 3.5414355 -1103.1774
+135428.2608630853 3.5414748 -1103.3156
+135429.2608631896 3.5413568 -1103.2168
+135430.2608632939 3.5413961 -1103.2562
+135431.2608633982 3.5413961 -1103.1576
+135432.2608635025 3.5413961 -1103.2366
+135433.2608636068 3.5413961 -1103.1576
+135434.2608637111 3.5413961 -1103.197
+135435.2608638154 3.5413961 -1103.2562
+135436.2608639197 3.5413175 -1103.1576
+135437.2608640241 3.5413175 -1103.2168
+135438.2608641284 3.5412385 -1103.1182
+135439.2608642327 3.5412779 -1103.1182
+135440.260864337 3.5413175 -1103.2168
+135441.2608644413 3.5413568 -1103.1576
+135442.2608645456 3.5413568 -1103.2761
+135443.2608646499 3.5413175 -1103.197
+135444.2608647542 3.5414355 -1103.1378
+135445.2608648585 3.5413175 -1103.2168
+135446.2608649628 3.5413568 -1103.197
+135447.2608650671 3.5412779 -1103.2366
+135448.2608651714 3.5413175 -1103.2959
+135449.2608652757 3.5413568 -1103.1774
+135450.2608653801 3.5413568 -1103.2562
+135451.2608654844 3.5413961 -1103.1182
+135452.2608655887 3.5413175 -1103.1774
+135453.260865693 3.5413568 -1103.197
+135454.2608657973 3.5413568 -1103.197
+135455.2608659016 3.5412779 -1103.1774
+135456.2608660059 3.5413175 -1103.197
+135457.2608661102 3.5412779 -1103.2168
+135458.2608662145 3.5412385 -1103.2366
+135459.2608663188 3.5413175 -1103.2366
+135460.2608664231 3.5411599 -1103.1576
+135461.2608665274 3.5410812 -1103.197
+135462.2608666318 3.5411205 -1103.2959
+135463.2608667361 3.5411599 -1103.1774
+135464.2608668404 3.5411992 -1103.1378
+135465.2608669447 3.5411992 -1103.1576
+135466.260867049 3.5412385 -1103.3156
+135467.2608671533 3.5413175 -1103.2761
+135468.2608672576 3.5411599 -1103.1576
+135469.2608673619 3.5412779 -1103.197
+135470.2608674662 3.5411992 -1103.197
+135471.2608675705 3.5410812 -1103.1576
+135472.2608676748 3.5411599 -1103.2761
+135473.2608677791 3.5411205 -1103.197
+135474.2608678835 3.5411992 -1103.1576
+135475.2608679878 3.5411205 -1103.197
+135476.2608680921 3.5411992 -1103.197
+135477.2608681964 3.5411205 -1103.0984
+135478.2608683007 3.5411205 -1103.1774
+135479.260868405 3.5410419 -1103.2366
+135480.2608685093 3.5410419 -1103.197
+135481.2608686136 3.5411205 -1103.0984
+135482.2608687179 3.5411599 -1103.2366
+135483.2608688222 3.5411205 -1103.1182
+135484.2608689265 3.5410419 -1103.2562
+135485.2608690308 3.5411205 -1103.1774
+135486.2608691351 3.5409236 -1103.1774
+135487.2608692395 3.5410025 -1103.1774
+135488.2608693438 3.5410419 -1103.2562
+135489.2608694481 3.5410419 -1103.2366
+135490.2608695524 3.5409629 -1103.2168
+135491.2608696567 3.5410419 -1103.197
+135492.260869761 3.5410025 -1103.2959
+135493.2608698653 3.5410025 -1103.197
+135494.2608699696 3.5408843 -1103.2562
+135495.2608700739 3.5410025 -1103.2168
+135496.2608701782 3.5408843 -1103.2366
+135497.2608702825 3.5408843 -1103.1774
+135498.2608703868 3.5408056 -1103.2366
+135499.2608704912 3.5409236 -1103.2366
+135500.2608705955 3.5408843 -1103.197
+135501.2608706998 3.5408843 -1103.1774
+135502.2608708041 3.5409629 -1103.2959
+135503.2608709084 3.5407662 -1103.1576
+135504.2608710127 3.5408056 -1103.2168
+135505.260871117 3.5408843 -1103.1378
+135506.2608712213 3.5407269 -1103.1774
+135507.2608713256 3.5409236 -1103.197
+135508.2608714299 3.5407662 -1103.2366
+135509.2608715342 3.5406876 -1103.197
+135510.2608716385 3.5407269 -1103.2168
+135511.2608717429 3.5407269 -1103.2168
+135512.2608718472 3.5407269 -1103.1774
+135513.2608719515 3.5407662 -1103.1576
+135514.2608720558 3.5407662 -1103.2168
+135515.2608721601 3.540648 -1103.2366
+135516.2608722644 3.540648 -1103.1378
+135517.2608723687 3.5406876 -1103.2168
+135518.260872473 3.5406086 -1103.2366
+135519.2608725773 3.5406086 -1103.2366
+135520.2608726816 3.5405693 -1103.197
+135521.2608727859 3.5406086 -1103.197
+135522.2608728902 3.5404906 -1103.197
+135523.2608729946 3.5406086 -1103.197
+135524.2608730989 3.5407269 -1103.2168
+135525.2608732032 3.54053 -1103.2562
+135526.2608733075 3.5404513 -1103.1576
+135527.2608734118 3.5404513 -1103.2168
+135528.2608735161 3.5404513 -1103.1576
+135529.2608736204 3.5404513 -1103.2168
+135530.2608737247 3.5405693 -1103.1774
+135531.260873829 3.5404513 -1103.2366
+135532.2608739333 3.5404906 -1103.2168
+135533.2608740376 3.540333 -1103.2366
+135534.2608741419 3.540333 -1103.197
+135535.2608742462 3.5403726 -1103.2366
+135536.2608743506 3.5404513 -1103.2366
+135537.2608744549 3.5402937 -1103.197
+135538.2608745592 3.540333 -1103.1774
+135539.2608746635 3.540333 -1103.1576
+135540.2608747678 3.5402937 -1103.2562
+135541.2608748721 3.540215 -1103.1774
+135542.2608749764 3.5402544 -1103.2168
+135543.2608750807 3.5402937 -1103.2168
+135544.260875185 3.5402937 -1103.197
+135545.2608752893 3.540215 -1103.2168
+135546.2608753936 3.5402544 -1103.1182
+135547.2608754979 3.5402544 -1103.197
+135548.2608756023 3.5402544 -1103.3156
+135549.2608757066 3.5401757 -1103.1576
+135550.2608758109 3.5401757 -1103.2366
+135551.2608759152 3.5401757 -1103.2366
+135552.2608760195 3.540215 -1103.2168
+135553.2608761238 3.540215 -1103.197
+135554.2608762281 3.5401757 -1103.2168
+135555.2608763324 3.5401363 -1103.2562
+135556.2608764367 3.5401363 -1103.2168
+135557.260876541 3.540215 -1103.2366
+135558.2608766453 3.5401363 -1103.2366
+135559.2608767496 3.5401757 -1103.2761
+135560.260876854 3.540097 -1103.2168
+135561.2608769583 3.5401757 -1103.2562
+135562.2608770626 3.5401363 -1103.1576
+135563.2608771669 3.5401757 -1103.2959
+135564.2608772712 3.5401757 -1103.2366
+135565.2608773755 3.5401363 -1103.2959
+135566.2608774798 3.5401363 -1103.1576
+135567.2608775841 3.5401363 -1103.1774
+135568.2608776884 3.5401363 -1103.1576
+135569.2608777927 3.5401363 -1103.2366
+135570.260877897 3.5400574 -1103.2168
+135571.2608780013 3.5401757 -1103.197
+135572.2608781056 3.540097 -1103.2562
+135573.26087821 3.540097 -1103.197
+135574.2608783143 3.540097 -1103.2366
+135575.2608784186 3.5399001 -1103.2168
+135576.2608785229 3.5400574 -1103.2168
+135577.2608786272 3.5400574 -1103.197
+135578.2608787315 3.5400181 -1103.2366
+135579.2608788358 3.540097 -1103.2562
+135580.2608789401 3.5401363 -1103.2562
+135581.2608790444 3.5401363 -1103.1774
+135582.2608791487 3.5400574 -1103.1774
+135583.260879253 3.5399787 -1103.2168
+135584.2608793573 3.540097 -1103.2168
+135585.2608794617 3.5399787 -1103.2959
+135586.260879566 3.5400181 -1103.1774
+135587.2608796703 3.5399394 -1103.197
+135588.2608797746 3.5399394 -1103.2366
+135589.2608798789 3.5399394 -1103.2168
+135590.2608799832 3.5399787 -1103.2168
+135591.2608800875 3.5399001 -1103.2168
+135592.2608801918 3.5399394 -1103.2366
+135593.2608802961 3.5398214 -1103.1774
+135594.2608804004 3.5399001 -1103.1182
+135595.2608805047 3.5398607 -1103.1774
+135596.260880609 3.5397425 -1103.1182
+135597.2608807134 3.5398607 -1103.197
+135598.2608808177 3.5398607 -1103.3353
+135599.260880922 3.539782 -1103.1774
+135600.2608810263 3.5398607 -1103.2959
+135601.2608811306 3.539782 -1103.1576
+135602.2608812349 3.5398607 -1103.2959
+135603.2608813392 3.5397425 -1103.1774
+135604.2608814435 3.5398214 -1103.1378
+135605.2608815478 3.5397031 -1103.2959
+135606.2608816521 3.5396245 -1103.1182
+135607.2608817564 3.5397425 -1103.2366
+135608.2608818607 3.5397031 -1103.1576
+135609.260881965 3.5395458 -1103.1774
+135610.2608820694 3.5395458 -1103.2366
+135611.2608821737 3.5395458 -1103.1576
+135612.260882278 3.5395458 -1103.2168
+135613.2608823823 3.5395851 -1103.1378
+135614.2608824866 3.5396245 -1103.197
+135615.2608825909 3.5395458 -1103.2959
+135616.2608826952 3.5395851 -1103.1774
+135617.2608827995 3.5395851 -1103.2366
+135618.2608829038 3.5395851 -1103.197
+135619.2608830081 3.5395064 -1103.2168
+135620.2608831124 3.5394671 -1103.0984
+135621.2608832167 3.5395458 -1103.2562
+135622.2608833211 3.5394275 -1103.2366
+135623.2608834254 3.5395458 -1103.1576
+135624.2608835297 3.5394275 -1103.2562
+135625.260883634 3.5393882 -1103.197
+135626.2608837383 3.5394671 -1103.1774
+135627.2608838426 3.5394671 -1103.2168
+135628.2608839469 3.5394275 -1103.197
+135629.2608840512 3.5394671 -1103.197
+135630.2608841555 3.5393882 -1103.197
+135631.2608842598 3.5394275 -1103.3749
+135632.2608843641 3.5393488 -1103.2366
+135633.2608844684 3.5394275 -1103.2562
+135634.2608845728 3.5394275 -1103.1182
+135635.2608846771 3.5393882 -1103.2761
+135636.2608847814 3.5393488 -1103.1182
+135637.2608848857 3.5393095 -1103.2761
+135638.26088499 3.5393882 -1103.1576
+135639.2608850943 3.5393882 -1103.1378
+135640.2608851986 3.5394275 -1103.1378
+135641.2608853029 3.5393095 -1103.197
+135642.2608854072 3.5393882 -1103.1774
+135643.2608855115 3.5393488 -1103.1378
+135644.2608856158 3.5392702 -1103.2366
+135645.2608857201 3.5393095 -1103.1774
+135646.2608858244 3.5392702 -1103.2168
+135647.2608859288 3.5392308 -1103.197
+135648.2608860331 3.5392308 -1103.2366
+135649.2608861374 3.5392308 -1103.197
+135650.2608862417 3.5392702 -1103.2366
+135651.260886346 3.5393488 -1103.2761
+135652.2608864503 3.5394671 -1103.197
+135653.2608865546 3.5393488 -1103.2761
+135654.2608866589 3.5393095 -1103.0785
+135655.2608867632 3.5393095 -1103.2366
+135656.2608868675 3.5392702 -1103.197
+135657.2608869718 3.5392308 -1103.197
+135658.2608870761 3.5391915 -1103.2168
+135659.2608871805 3.5391915 -1103.1378
+135660.2608872848 3.5392702 -1103.1576
+135661.2608873891 3.5393488 -1103.1774
+135662.2608874934 3.5392702 -1103.2959
+135663.2608875977 3.5391915 -1103.2366
+135664.260887702 3.5392308 -1103.1182
+135665.2608878063 3.5392702 -1103.197
+135666.2608879106 3.5391915 -1103.1576
+135667.2608880149 3.5392308 -1103.1182
+135668.2608881192 3.5391915 -1103.197
+135669.2608882235 3.5392308 -1103.2562
+135670.2608883278 3.5392702 -1103.2366
+135671.2608884322 3.5391126 -1103.197
+135672.2608885365 3.5391915 -1103.2168
+135673.2608886408 3.5391915 -1103.197
+135674.2608887451 3.5391521 -1103.197
+135675.2608888494 3.5391126 -1103.2168
+135676.2608889537 3.5391521 -1103.2168
+135677.260889058 3.5391126 -1103.197
+135678.2608891623 3.5390732 -1103.2168
+135679.2608892666 3.5390339 -1103.1774
+135680.2608893709 3.5391126 -1103.2366
+135681.2608894752 3.5389946 -1103.2562
+135682.2608895795 3.5391126 -1103.2168
+135683.2608896839 3.5390339 -1103.197
+135684.2608897882 3.5390339 -1103.1774
+135685.2608898925 3.5390339 -1103.1774
+135686.2608899968 3.5389552 -1103.2366
+135687.2608901011 3.5390732 -1103.2366
+135688.2608902054 3.5389946 -1103.2168
+135689.2608903097 3.5388372 -1103.1182
+135690.260890414 3.5389159 -1103.2168
+135691.2608905183 3.5389946 -1103.2366
+135692.2608906226 3.5389552 -1103.2761
+135693.2608907269 3.5389946 -1103.1774
+135694.2608908312 3.5389552 -1103.1774
+135695.2608909355 3.5389159 -1103.1774
+135696.2608910399 3.5388765 -1103.1182
+135697.2608911442 3.5389552 -1103.1182
+135698.2608912485 3.5388765 -1103.2168
+135699.2608913528 3.5387976 -1103.1774
+135700.2608914571 3.5389946 -1103.2562
+135701.2608915614 3.5388765 -1103.2366
+135702.2608916657 3.5389159 -1103.2168
+135703.26089177 3.5387583 -1103.2562
+135704.2608918743 3.5387976 -1103.2366
+135705.2608919786 3.5388372 -1103.2366
+135706.2608920829 3.5389159 -1103.197
+135707.2608921872 3.5388765 -1103.2366
+135708.2608922916 3.5386403 -1103.2562
+135709.2608923959 3.5387976 -1103.1576
+135710.2608925002 3.5385616 -1103.1774
+135711.2608926045 3.5387976 -1103.2562
+135712.2608927088 3.5387189 -1103.2366
+135713.2608928131 3.5387583 -1103.1182
+135714.2608929174 3.5386403 -1103.197
+135715.2608930217 3.5386403 -1103.2366
+135716.260893126 3.5386796 -1103.1378
+135717.2608932303 3.5386796 -1103.1774
+135718.2608933346 3.5386009 -1103.1774
+135719.2608934389 3.5386403 -1103.2959
+135720.2608935433 3.5387189 -1103.2562
+135721.2608936476 3.5386403 -1103.1576
+135722.2608937519 3.5385222 -1103.197
+135723.2608938562 3.5386403 -1103.2168
+135724.2608939605 3.5386009 -1103.1774
+135725.2608940648 3.5385616 -1103.2168
+135726.2608941691 3.5385222 -1103.2366
+135727.2608942734 3.5385222 -1103.2168
+135728.2608943777 3.5385222 -1103.2366
+135729.260894482 3.5385222 -1103.2366
+135730.2608945863 3.5385222 -1103.1774
+135731.2608946906 3.5383646 -1103.2959
+135732.2608947949 3.5385222 -1103.2168
+135733.2608948993 3.538404 -1103.197
+135734.2608950036 3.5383646 -1103.1576
+135735.2608951079 3.5384433 -1103.1576
+135736.2608952122 3.5384433 -1103.1378
+135737.2608953165 3.5383253 -1103.2168
+135738.2608954208 3.538404 -1103.2761
+135739.2608955251 3.5384433 -1103.2562
+135740.2608956294 3.538404 -1103.2761
+135741.2608957337 3.538404 -1103.1774
+135742.260895838 3.5383646 -1103.1576
+135743.2608959423 3.538286 -1103.2168
+135744.2608960466 3.5383646 -1103.1774
+135745.260896151 3.5382466 -1103.197
+135746.2608962553 3.5383253 -1103.1774
+135747.2608963596 3.5383646 -1103.1576
+135748.2608964639 3.5382466 -1103.2562
+135749.2608965682 3.5383253 -1103.2959
+135750.2608966725 3.538286 -1103.1576
+135751.2608967768 3.538286 -1103.197
+135752.2608968811 3.538286 -1103.2761
+135753.2608969854 3.538286 -1103.197
+135754.2608970897 3.5382466 -1103.2562
+135755.260897194 3.5382466 -1103.2168
+135756.2608972983 3.5382071 -1103.1576
+135757.2608974027 3.5382071 -1103.197
+135758.260897507 3.5382466 -1103.2366
+135759.2608976113 3.5381677 -1103.1378
+135760.2608977156 3.5382071 -1103.1774
+135761.2608978199 3.5381677 -1103.1378
+135762.2608979242 3.5382071 -1103.2168
+135763.2608980285 3.538089 -1103.1576
+135764.2608981328 3.538089 -1103.197
+135765.2608982371 3.5380104 -1103.2168
+135766.2608983414 3.538089 -1103.2761
+135767.2608984457 3.5380104 -1103.1576
+135768.26089855 3.538089 -1103.2366
+135769.2608986543 3.5380104 -1103.2562
+135770.2608987587 3.538089 -1103.2366
+135771.260898863 3.5380497 -1103.0984
+135772.2608989673 3.538089 -1103.2168
+135773.2608990716 3.5380497 -1103.1774
+135774.2608991759 3.5380104 -1103.1774
+135775.2608992802 3.5380497 -1103.1774
+135776.2608993845 3.5381284 -1103.2761
+135777.2608994888 3.5380104 -1103.2168
+135778.2608995931 3.5380497 -1103.0785
+135779.2608996974 3.5379317 -1103.2168
+135780.2608998017 3.5380104 -1103.2562
+135781.260899906 3.5378921 -1103.197
+135782.2609000104 3.5380104 -1103.1774
+135783.2609001147 3.537971 -1103.2366
+135784.260900219 3.5380104 -1103.1182
+135785.2609003233 3.537971 -1103.2562
+135786.2609004276 3.537971 -1103.1576
+135787.2609005319 3.537971 -1103.1774
+135788.2609006362 3.5379317 -1103.2761
+135789.2609007405 3.537971 -1103.2168
+135790.2609008448 3.537971 -1103.197
+135791.2609009491 3.5379317 -1103.2366
+135792.2609010534 3.5379317 -1103.2959
+135793.2609011577 3.5378921 -1103.1774
+135794.2609012621 3.5379317 -1103.1576
+135795.2609013664 3.5378921 -1103.3156
+135796.2609014707 3.5378528 -1103.197
+135797.260901575 3.5378528 -1103.1182
+135798.2609016793 3.5377741 -1103.2562
+135799.2609017836 3.5377741 -1103.2168
+135800.2609018879 3.5378921 -1103.197
+135801.2609019922 3.5377347 -1103.1774
+135802.2609020965 3.5377741 -1103.1774
+135803.2609022008 3.5376954 -1103.2168
+135804.2609023051 3.5378134 -1103.1774
+135805.2609024094 3.5378528 -1103.2562
+135806.2609025138 3.5376561 -1103.2562
+135807.2609026181 3.5377347 -1103.2562
+135808.2609027224 3.5376954 -1103.2366
+135809.2609028267 3.5376561 -1103.2562
+135810.260902931 3.5375772 -1103.2168
+135811.2609030353 3.5377741 -1103.2168
+135812.2609031396 3.5376561 -1103.197
+135813.2609032439 3.5376561 -1103.1576
+135814.2609033482 3.5374985 -1103.2366
+135815.2609034525 3.5375772 -1103.2562
+135816.2609035568 3.5375378 -1103.2562
+135817.2609036611 3.5374591 -1103.2366
+135818.2609037654 3.5374985 -1103.1774
+135819.2609038698 3.5375378 -1103.2168
+135820.2609039741 3.5375378 -1103.2168
+135821.2609040784 3.5375772 -1103.2562
+135822.2609041827 3.5374985 -1103.2168
+135823.260904287 3.5375772 -1103.2366
+135824.2609043913 3.5374198 -1103.2366
+135825.2609044956 3.5374198 -1103.1182
+135826.2609045999 3.5374591 -1103.197
+135827.2609047042 3.5374985 -1103.2366
+135828.2609048085 3.5374591 -1103.1774
+135829.2609049128 3.5374591 -1103.2761
+135830.2609050171 3.5374198 -1103.1774
+135831.2609051215 3.5374591 -1103.2366
+135832.2609052258 3.5373411 -1103.2562
+135833.2609053301 3.5373411 -1103.2168
+135834.2609054344 3.5373411 -1103.197
+135835.2609055387 3.5374591 -1103.1182
+135836.260905643 3.5373018 -1103.1774
+135837.2609057473 3.5373411 -1103.2168
+135838.2609058516 3.5373411 -1103.2366
+135839.2609059559 3.5373018 -1103.197
+135840.2609060602 3.5373411 -1103.1182
+135841.2609061645 3.5373411 -1103.2562
+135842.2609062688 3.5373018 -1103.3353
+135843.2609063732 3.5373805 -1103.2366
+135844.2609064775 3.5371835 -1103.2366
+135845.2609065818 3.5371835 -1103.2366
+135846.2609066861 3.5373805 -1103.1576
+135847.2609067904 3.5372622 -1103.2761
+135848.2609068947 3.5372622 -1103.2168
+135849.260906999 3.5372622 -1103.2761
+135850.2609071033 3.5371442 -1103.2168
+135851.2609072076 3.5371835 -1103.2959
+135852.2609073119 3.5371835 -1103.197
+135853.2609074162 3.5371835 -1103.197
+135854.2609075205 3.5371835 -1103.2761
+135855.2609076248 3.5372229 -1103.2959
+135856.2609077292 3.5371835 -1103.2168
+135857.2609078335 3.5371442 -1103.197
+135858.2609079378 3.5371048 -1103.2761
+135859.2609080421 3.5371835 -1103.1378
+135860.2609081464 3.5370655 -1103.197
+135861.2609082507 3.5371048 -1103.2562
+135862.260908355 3.5371442 -1103.2168
+135863.2609084593 3.5371442 -1103.2168
+135864.2609085636 3.5369868 -1103.197
+135865.2609086679 3.5371442 -1103.3156
+135866.2609087722 3.5369868 -1103.197
+135867.2609088765 3.5370262 -1103.197
+135868.2609089809 3.5370262 -1103.1576
+135869.2609090852 3.5370655 -1103.1576
+135870.2609091895 3.5370262 -1103.1182
+135871.2609092938 3.5371048 -1103.1774
+135872.2609093981 3.5370262 -1103.2168
+135873.2609095024 3.5369868 -1103.1774
+135874.2609096067 3.5369473 -1103.2168
+135875.260909711 3.5369868 -1103.2168
+135876.2609098153 3.5369079 -1103.1576
+135877.2609099196 3.5369473 -1103.2366
+135878.2609100239 3.5369868 -1103.2168
+135879.2609101282 3.5368686 -1103.2366
+135880.2609102326 3.5369079 -1103.1774
+135881.2609103369 3.5368686 -1103.2168
+135882.2609104412 3.5368292 -1103.1576
+135883.2609105455 3.5370655 -1103.2959
+135884.2609106498 3.5369079 -1103.2366
+135885.2609107541 3.5367506 -1103.2959
+135886.2609108584 3.5369079 -1103.2562
+135887.2609109627 3.5369079 -1103.2168
+135888.260911067 3.5368292 -1103.2168
+135889.2609111713 3.5368292 -1103.2168
+135890.2609112756 3.5367506 -1103.1576
+135891.2609113799 3.5367899 -1103.2562
+135892.2609114842 3.5367506 -1103.2562
+135893.2609115886 3.5367899 -1103.1774
+135894.2609116929 3.5366716 -1103.197
+135895.2609117972 3.5366323 -1103.2761
+135896.2609119015 3.5366716 -1103.1182
+135897.2609120058 3.5367112 -1103.2761
+135898.2609121101 3.5367112 -1103.197
+135899.2609122144 3.5366716 -1103.2562
+135900.2609123187 3.5365536 -1103.197
+135901.260912423 3.5366323 -1103.2761
+135902.2609125273 3.5365536 -1103.197
+135903.2609126316 3.536593 -1103.197
+135904.2609127359 3.5365536 -1103.1576
+135905.2609128403 3.5363963 -1103.1774
+135906.2609129446 3.5365536 -1103.197
+135907.2609130489 3.5365143 -1103.1182
+135908.2609131532 3.5365143 -1103.2761
+135909.2609132575 3.5365536 -1103.2168
+135910.2609133618 3.5365143 -1103.1576
+135911.2609134661 3.5365143 -1103.2959
+135912.2609135704 3.5364749 -1103.1182
+135913.2609136747 3.5364749 -1103.2562
+135914.260913779 3.5364356 -1103.1774
+135915.2609138833 3.5364749 -1103.2366
+135916.2609139876 3.5363963 -1103.1774
+135917.260914092 3.5363963 -1103.2168
+135918.2609141963 3.5363173 -1103.2366
+135919.2609143006 3.5363963 -1103.2366
+135920.2609144049 3.5362387 -1103.2761
+135921.2609145092 3.5362387 -1103.2168
+135922.2609146135 3.5363173 -1103.2168
+135923.2609147178 3.5362387 -1103.1774
+135924.2609148221 3.5362387 -1103.1576
+135925.2609149264 3.5362387 -1103.2366
+135926.2609150307 3.5362387 -1103.2366
+135927.260915135 3.53616 -1103.197
+135928.2609152393 3.53616 -1103.2366
+135929.2609153437 3.5362387 -1103.1774
+135930.260915448 3.53616 -1103.0984
+135931.2609155523 3.5361207 -1103.1774
+135932.2609156566 3.5361207 -1103.2168
+135933.2609157609 3.5360417 -1103.1774
+135934.2609158652 3.5360024 -1103.1774
+135935.2609159695 3.5360813 -1103.1576
+135936.2609160738 3.5359631 -1103.2366
+135937.2609161781 3.5360813 -1103.2366
+135938.2609162824 3.5360024 -1103.1774
+135939.2609163867 3.5360024 -1103.2562
+135940.260916491 3.5359631 -1103.2562
+135941.2609165953 3.5359631 -1103.2168
+135942.2609166997 3.5360024 -1103.197
+135943.260916804 3.5359631 -1103.2168
+135944.2609169083 3.5358844 -1103.2168
+135945.2609170126 3.535845 -1103.2562
+135946.2609171169 3.535845 -1103.1774
+135947.2609172212 3.535845 -1103.2562
+135948.2609173255 3.5358057 -1103.2562
+135949.2609174298 3.5357664 -1103.2168
+135950.2609175341 3.5357664 -1103.197
+135951.2609176384 3.5356874 -1103.1576
+135952.2609177427 3.5358057 -1103.1576
+135953.260917847 3.5357664 -1103.1378
+135954.2609179514 3.5358057 -1103.2168
+135955.2609180557 3.5357664 -1103.197
+135956.26091816 3.5357268 -1103.1576
+135957.2609182643 3.5357268 -1103.2168
+135958.2609183686 3.5356481 -1103.2168
+135959.2609184729 3.5356874 -1103.2168
+135960.2609185772 3.5357268 -1103.2168
+135961.2609186815 3.5356874 -1103.1378
+135962.2609187858 3.5358057 -1103.2959
+135963.2609188901 3.5357268 -1103.1774
+135964.2609189944 3.5356088 -1103.2168
+135965.2609190987 3.5356481 -1103.2562
+135966.2609192031 3.5355694 -1103.2562
+135967.2609193074 3.5356874 -1103.1576
+135968.2609194117 3.5356088 -1103.2562
+135969.260919516 3.5355694 -1103.2168
+135970.2609196203 3.5355301 -1103.2366
+135971.2609197246 3.5355694 -1103.1774
+135972.2609198289 3.5354908 -1103.1378
+135973.2609199332 3.5355301 -1103.2168
+135974.2609200375 3.5355694 -1103.1576
+135975.2609201418 3.5354118 -1103.2168
+135976.2609202461 3.5354514 -1103.2366
+135977.2609203504 3.5354908 -1103.2959
+135978.2609204547 3.5354514 -1103.1576
+135979.2609205591 3.5355301 -1103.2562
+135980.2609206634 3.5354514 -1103.2168
+135981.2609207677 3.5354514 -1103.2366
+135982.260920872 3.5353332 -1103.2366
+135983.2609209763 3.5352938 -1103.2761
+135984.2609210806 3.5353332 -1103.2168
+135985.2609211849 3.5353332 -1103.1774
+135986.2609212892 3.5353332 -1103.2366
+135987.2609213935 3.5354118 -1103.197
+135988.2609214978 3.5352938 -1103.1774
+135989.2609216021 3.5352938 -1103.2168
+135990.2609217064 3.5351758 -1103.1182
+135991.2609218108 3.5352151 -1103.2562
+135992.2609219151 3.5351758 -1103.2366
+135993.2609220194 3.5352151 -1103.197
+135994.2609221237 3.5352938 -1103.197
+135995.260922228 3.5352938 -1103.2168
+135996.2609223323 3.5352545 -1103.1774
+135997.2609224366 3.5352938 -1103.1774
+135998.2609225409 3.5352151 -1103.2562
+135999.2609226452 3.5351758 -1103.2562
+136000.2609227495 3.5351758 -1103.1182
+136001.2609228538 3.5351758 -1103.2168
+136002.2609229581 3.5350575 -1103.2366
+136003.2609230625 3.5351365 -1103.1576
+136004.2609231668 3.5351365 -1103.2168
+136005.2609232711 3.5350969 -1103.3353
+136006.2609233754 3.5350182 -1103.2168
+136007.2609234797 3.5350575 -1103.2168
+136008.260923584 3.5350182 -1103.2168
+136009.2609236883 3.5350182 -1103.197
+136010.2609237926 3.5350182 -1103.2366
+136011.2609238969 3.5350575 -1103.1774
+136012.2609240012 3.5350575 -1103.2168
+136013.2609241055 3.5350182 -1103.197
+136014.2609242098 3.5350969 -1103.197
+136015.2609243141 3.5349395 -1103.2366
+136016.2609244185 3.5350575 -1103.2168
+136017.2609245228 3.5350575 -1103.2366
+136018.2609246271 3.5349002 -1103.1576
+136019.2609247314 3.5349395 -1103.2168
+136020.2609248357 3.5349395 -1103.1182
+136021.26092494 3.5350182 -1103.197
+136022.2609250443 3.5349395 -1103.197
+136023.2609251486 3.5350182 -1103.197
+136024.2609252529 3.5348213 -1103.1576
+136025.2609253572 3.5349789 -1103.2168
+136026.2609254615 3.5349395 -1103.2562
+136027.2609255658 3.5349789 -1103.2168
+136028.2609256702 3.5349002 -1103.2366
+136029.2609257745 3.5349395 -1103.2366
+136030.2609258788 3.5350575 -1103.1774
+136031.2609259831 3.5349002 -1103.197
+136032.2609260874 3.5348608 -1103.197
+136033.2609261917 3.5349395 -1103.1774
+136034.260926296 3.5348213 -1103.2366
+136035.2609264003 3.5347426 -1103.197
+136036.2609265046 3.5347819 -1103.2168
+136037.2609266089 3.5348213 -1103.197
+136038.2609267132 3.5347426 -1103.197
+136039.2609268175 3.5346639 -1103.1774
+136040.2609269219 3.5347819 -1103.1182
+136041.2609270262 3.5346246 -1103.1774
+136042.2609271305 3.5348213 -1103.1576
+136043.2609272348 3.5347426 -1103.0984
+136044.2609273391 3.5347033 -1103.2562
+136045.2609274434 3.5347033 -1103.2959
+136046.2609275477 3.5346246 -1103.2366
+136047.260927652 3.5346639 -1103.1378
+136048.2609277563 3.5346639 -1103.2366
+136049.2609278606 3.5346246 -1103.2761
+136050.2609279649 3.5347819 -1103.1378
+136051.2609280692 3.5346246 -1103.3551
+136052.2609281735 3.5347033 -1103.2959
+136053.2609282779 3.5346246 -1103.2562
+136054.2609283822 3.5346639 -1103.2168
+136055.2609284865 3.5345852 -1103.2168
+136056.2609285908 3.5345459 -1103.197
+136057.2609286951 3.5345852 -1103.197
+136058.2609287994 3.5345459 -1103.2168
+136059.2609289037 3.5345063 -1103.1378
+136060.260929008 3.5345459 -1103.2366
+136061.2609291123 3.5345852 -1103.2562
+136062.2609292166 3.5346246 -1103.2168
+136063.2609293209 3.5345852 -1103.3156
+136064.2609294252 3.5345852 -1103.2366
+136065.2609295296 3.534467 -1103.1576
+136066.2609296339 3.5344276 -1103.197
+136067.2609297382 3.5344276 -1103.2168
+136068.2609298425 3.5345063 -1103.2168
+136069.2609299468 3.5345063 -1103.3551
+136070.2609300511 3.5344276 -1103.2168
+136071.2609301554 3.5344276 -1103.1774
+136072.2609302597 3.5345459 -1103.2168
+136073.260930364 3.5343883 -1103.1774
+136074.2609304683 3.5343883 -1103.2168
+136075.2609305726 3.5344276 -1103.1378
+136076.2609306769 3.5343096 -1103.1576
+136077.2609307813 3.534349 -1103.1182
+136078.2609308856 3.534349 -1103.1774
+136079.2609309899 3.534349 -1103.2366
+136080.2609310942 3.5343096 -1103.2168
+136081.2609311985 3.534349 -1103.197
+136082.2609313028 3.534349 -1103.197
+136083.2609314071 3.534349 -1103.1182
+136084.2609315114 3.5344276 -1103.1576
+136085.2609316157 3.5342703 -1103.2761
+136086.26093172 3.5341914 -1103.1182
+136087.2609318243 3.5342703 -1103.197
+136088.2609319286 3.5342309 -1103.197
+136089.260932033 3.5342309 -1103.2562
+136090.2609321373 3.534152 -1103.2168
+136091.2609322416 3.5341914 -1103.1774
+136092.2609323459 3.534152 -1103.197
+136093.2609324502 3.5342309 -1103.2761
+136094.2609325545 3.5340734 -1103.197
+136095.2609326588 3.5341914 -1103.2562
+136096.2609327631 3.534152 -1103.2959
+136097.2609328674 3.5340734 -1103.2761
+136098.2609329717 3.534152 -1103.3551
+136099.260933076 3.5340734 -1103.2168
+136100.2609331803 3.5341127 -1103.2366
+136101.2609332846 3.5341127 -1103.2366
+136102.260933389 3.5340734 -1103.1378
+136103.2609334933 3.5341127 -1103.2168
+136104.2609335976 3.534034 -1103.2366
+136105.2609337019 3.5339553 -1103.2168
+136106.2609338062 3.5339947 -1103.1576
+136107.2609339105 3.534034 -1103.2562
+136108.2609340148 3.5341127 -1103.2761
+136109.2609341191 3.5339553 -1103.2168
+136110.2609342234 3.533916 -1103.197
+136111.2609343277 3.5339553 -1103.197
+136112.260934432 3.5338764 -1103.2168
+136113.2609345363 3.533916 -1103.1576
+136114.2609346407 3.533916 -1103.2366
+136115.260934745 3.533916 -1103.1774
+136116.2609348493 3.5338371 -1103.1774
+136117.2609349536 3.5337977 -1103.2168
+136118.2609350579 3.533916 -1103.2366
+136119.2609351622 3.5337977 -1103.2168
+136120.2609352665 3.5338371 -1103.197
+136121.2609353708 3.5337584 -1103.1378
+136122.2609354751 3.5338371 -1103.2168
+136123.2609355794 3.5337584 -1103.2761
+136124.2609356837 3.5338371 -1103.2366
+136125.260935788 3.5337191 -1103.197
+136126.2609358924 3.5336404 -1103.2168
+136127.2609359967 3.5336404 -1103.3156
+136128.260936101 3.5336404 -1103.2562
+136129.2609362053 3.5336404 -1103.1774
+136130.2609363096 3.5336404 -1103.197
+136131.2609364139 3.533601 -1103.197
+136132.2609365182 3.5335221 -1103.2168
+136133.2609366225 3.5335221 -1103.2168
+136134.2609367268 3.5335615 -1103.2562
+136135.2609368311 3.5335615 -1103.2366
+136136.2609369354 3.5335221 -1103.2562
+136137.2609370397 3.5335221 -1103.2168
+136138.260937144 3.5335221 -1103.197
+136139.2609372484 3.5334828 -1103.1378
+136140.2609373527 3.5334435 -1103.1774
+136141.260937457 3.5335615 -1103.197
+136142.2609375613 3.5334828 -1103.1774
+136143.2609376656 3.5334435 -1103.197
+136144.2609377699 3.5334828 -1103.2366
+136145.2609378742 3.5333254 -1103.2959
+136146.2609379785 3.5334435 -1103.2366
+136147.2609380828 3.5333648 -1103.1378
+136148.2609381871 3.5333648 -1103.197
+136149.2609382914 3.5334828 -1103.2562
+136150.2609383957 3.5333648 -1103.197
+136151.2609385001 3.5333648 -1103.2168
+136152.2609386044 3.5334041 -1103.1774
+136153.2609387087 3.5333254 -1103.2168
+136154.260938813 3.5333648 -1103.1774
+136155.2609389173 3.5333254 -1103.197
+136156.2609390216 3.5333648 -1103.197
+136157.2609391259 3.5332861 -1103.197
+136158.2609392302 3.5332861 -1103.2562
+136159.2609393345 3.5333254 -1103.2168
+136160.2609394388 3.5332861 -1103.197
+136161.2609395431 3.5333254 -1103.1576
+136162.2609396474 3.5332465 -1103.2366
+136163.2609397518 3.5332861 -1103.2959
+136164.2609398561 3.5332072 -1103.2761
+136165.2609399604 3.5332465 -1103.2168
+136166.2609400647 3.5332465 -1103.2959
+136167.260940169 3.5332465 -1103.1774
+136168.2609402733 3.5332465 -1103.2168
+136169.2609403776 3.5331678 -1103.197
+136170.2609404819 3.5332465 -1103.2168
+136171.2609405862 3.5332465 -1103.2562
+136172.2609406905 3.5331285 -1103.2366
+136173.2609407948 3.5332072 -1103.1774
+136174.2609408991 3.5331285 -1103.2168
+136175.2609410034 3.5331678 -1103.2761
+136176.2609411078 3.5331285 -1103.2959
+136177.2609412121 3.5331678 -1103.2168
+136178.2609413164 3.5330498 -1103.197
+136179.2609414207 3.5330892 -1103.2168
+136180.260941525 3.5331285 -1103.2168
+136181.2609416293 3.5331285 -1103.1774
+136182.2609417336 3.5331285 -1103.1576
+136183.2609418379 3.5330498 -1103.2366
+136184.2609419422 3.5331285 -1103.2168
+136185.2609420465 3.5329709 -1103.1576
+136186.2609421508 3.5329709 -1103.2366
+136187.2609422551 3.5329709 -1103.2168
+136188.2609423595 3.5329316 -1103.1378
+136189.2609424638 3.5329709 -1103.1576
+136190.2609425681 3.5330892 -1103.197
+136191.2609426724 3.5329316 -1103.2168
+136192.2609427767 3.5329316 -1103.2168
+136193.260942881 3.5329316 -1103.2366
+136194.2609429853 3.5328922 -1103.197
+136195.2609430896 3.5328922 -1103.2366
+136196.2609431939 3.5330105 -1103.197
+136197.2609432982 3.5328922 -1103.1182
+136198.2609434025 3.5328529 -1103.2562
+136199.2609435068 3.5328922 -1103.2366
+136200.2609436112 3.5327742 -1103.2761
+136201.2609437155 3.5327742 -1103.2366
+136202.2609438198 3.5327349 -1103.2168
+136203.2609439241 3.5328922 -1103.2366
+136204.2609440284 3.5327349 -1103.2366
+136205.2609441327 3.5327349 -1103.2562
+136206.260944237 3.5328135 -1103.197
+136207.2609443413 3.5327349 -1103.2366
+136208.2609444456 3.5327349 -1103.2562
+136209.2609445499 3.5327349 -1103.2168
+136210.2609446542 3.5325773 -1103.3156
+136211.2609447585 3.5326955 -1103.3156
+136212.2609448629 3.5326955 -1103.2562
+136213.2609449672 3.5325773 -1103.1774
+136214.2609450715 3.5324986 -1103.2168
+136215.2609451758 3.5326166 -1103.2168
+136216.2609452801 3.5325773 -1103.2366
+136217.2609453844 3.5325773 -1103.2366
+136218.2609454887 3.5324986 -1103.197
+136219.260945593 3.5326166 -1103.1576
+136220.2609456973 3.5324986 -1103.197
+136221.2609458016 3.5324986 -1103.1576
+136222.2609459059 3.5324986 -1103.2366
+136223.2609460102 3.5324593 -1103.1576
+136224.2609461145 3.5325773 -1103.197
+136225.2609462189 3.5324593 -1103.1774
+136226.2609463232 3.5324593 -1103.1378
+136227.2609464275 3.5324199 -1103.2366
+136228.2609465318 3.5323806 -1103.1378
+136229.2609466361 3.5324593 -1103.2562
+136230.2609467404 3.5324199 -1103.197
+136231.2609468447 3.5324199 -1103.2366
+136232.260946949 3.5321836 -1103.2562
+136233.2609470533 3.5323806 -1103.2168
+136234.2609471576 3.532341 -1103.1378
+136235.2609472619 3.5324593 -1103.2366
+136236.2609473662 3.532341 -1103.1576
+136237.2609474706 3.5323017 -1103.197
+136238.2609475749 3.5323017 -1103.2366
+136239.2609476792 3.5321836 -1103.1182
+136240.2609477835 3.5322623 -1103.2168
+136241.2609478878 3.532223 -1103.2366
+136242.2609479921 3.5322623 -1103.1182
+136243.2609480964 3.5321836 -1103.2168
+136244.2609482007 3.5321836 -1103.2366
+136245.260948305 3.532105 -1103.2168
+136246.2609484093 3.5321836 -1103.2366
+136247.2609485136 3.5321836 -1103.2366
+136248.2609486179 3.5321836 -1103.2168
+136249.2609487223 3.532223 -1103.1378
+136250.2609488266 3.5321836 -1103.1774
+136251.2609489309 3.5319867 -1103.1774
+136252.2609490352 3.5321443 -1103.2168
+136253.2609491395 3.5320656 -1103.2562
+136254.2609492438 3.5320261 -1103.2168
+136255.2609493481 3.5320261 -1103.197
+136256.2609494524 3.5320261 -1103.2168
+136257.2609495567 3.5320656 -1103.2562
+136258.260949661 3.5319474 -1103.2366
+136259.2609497653 3.532105 -1103.1774
+136260.2609498696 3.5320656 -1103.1182
+136261.2609499739 3.5320261 -1103.1378
+136262.2609500783 3.5320261 -1103.2562
+136263.2609501826 3.5320656 -1103.0785
+136264.2609502869 3.531908 -1103.197
+136265.2609503912 3.5319474 -1103.2168
+136266.2609504955 3.531908 -1103.2366
+136267.2609505998 3.531908 -1103.2366
+136268.2609507041 3.5320261 -1103.197
+136269.2609508084 3.5319474 -1103.197
+136270.2609509127 3.5317507 -1103.1774
+136271.260951017 3.5320261 -1103.197
+136272.2609511213 3.5318294 -1103.1774
+136273.2609512256 3.5318294 -1103.2959
+136274.26095133 3.531908 -1103.1182
+136275.2609514343 3.5318294 -1103.197
+136276.2609515386 3.53179 -1103.197
+136277.2609516429 3.5317111 -1103.2562
+136278.2609517472 3.5318294 -1103.2562
+136279.2609518515 3.53179 -1103.1774
+136280.2609519558 3.5317507 -1103.1576
+136281.2609520601 3.53179 -1103.2366
+136282.2609521644 3.53179 -1103.2168
+136283.2609522687 3.5316718 -1103.1774
+136284.260952373 3.5317111 -1103.197
+136285.2609524773 3.5317111 -1103.2168
+136286.2609525817 3.5316718 -1103.2168
+136287.260952686 3.5316718 -1103.197
+136288.2609527903 3.5317111 -1103.2168
+136289.2609528946 3.5316718 -1103.2168
+136290.2609529989 3.53179 -1103.1774
+136291.2609531032 3.5317111 -1103.2366
+136292.2609532075 3.5317111 -1103.1378
+136293.2609533118 3.5317507 -1103.3353
+136294.2609534161 3.5315931 -1103.1576
+136295.2609535204 3.5316324 -1103.2366
+136296.2609536247 3.5317111 -1103.2366
+136297.260953729 3.5316324 -1103.1378
+136298.2609538333 3.5316324 -1103.2168
+136299.2609539377 3.5315931 -1103.197
+136300.260954042 3.5316324 -1103.2168
+136301.2609541463 3.5316324 -1103.1182
+136302.2609542506 3.5316324 -1103.1774
+136303.2609543549 3.5315931 -1103.2959
+136304.2609544592 3.5315931 -1103.1774
+136305.2609545635 3.5315931 -1103.2366
+136306.2609546678 3.5315931 -1103.2366
+136307.2609547721 3.5315144 -1103.0984
+136308.2609548764 3.5315144 -1103.3156
+136309.2609549807 3.5315931 -1103.3156
+136310.260955085 3.5315144 -1103.1378
+136311.2609551894 3.5315537 -1103.2168
+136312.2609552937 3.5315537 -1103.1774
+136313.260955398 3.5314751 -1103.1774
+136314.2609555023 3.5315537 -1103.1182
+136315.2609556066 3.5314751 -1103.2562
+136316.2609557109 3.5313962 -1103.2168
+136317.2609558152 3.5315537 -1103.1774
+136318.2609559195 3.5313962 -1103.2761
+136319.2609560238 3.5313568 -1103.197
+136320.2609561281 3.5314751 -1103.1378
+136321.2609562324 3.5313175 -1103.2366
+136322.2609563367 3.5313175 -1103.197
+136323.2609564411 3.5313962 -1103.2366
+136324.2609565454 3.5313568 -1103.197
+136325.2609566497 3.5313962 -1103.2761
+136326.260956754 3.5313962 -1103.197
+136327.2609568583 3.5313175 -1103.1576
+136328.2609569626 3.5312781 -1103.3353
+136329.2609570669 3.5312781 -1103.1378
+136330.2609571712 3.5312781 -1103.1774
+136331.2609572755 3.5312781 -1103.1378
+136332.2609573798 3.5311601 -1103.197
+136333.2609574841 3.5312781 -1103.1774
+136334.2609575884 3.5312388 -1103.2562
+136335.2609576928 3.5312388 -1103.2761
+136336.2609577971 3.5312388 -1103.1378
+136337.2609579014 3.5312781 -1103.2168
+136338.2609580057 3.5310812 -1103.1378
+136339.26095811 3.5311205 -1103.2761
+136340.2609582143 3.5310812 -1103.1774
+136341.2609583186 3.5310812 -1103.1576
+136342.2609584229 3.5310812 -1103.2366
+136343.2609585272 3.5310419 -1103.1576
+136344.2609586315 3.5311205 -1103.197
+136345.2609587358 3.5309632 -1103.197
+136346.2609588401 3.5310025 -1103.2959
+136347.2609589444 3.5310025 -1103.2168
+136348.2609590488 3.5309238 -1103.1182
+136349.2609591531 3.5309238 -1103.197
+136350.2609592574 3.5309238 -1103.2761
+136351.2609593617 3.5309632 -1103.197
+136352.260959466 3.5308845 -1103.2562
+136353.2609595703 3.5308056 -1103.1378
+136354.2609596746 3.5308056 -1103.2366
+136355.2609597789 3.5307662 -1103.2959
+136356.2609598832 3.5308452 -1103.2562
+136357.2609599875 3.5307662 -1103.1576
+136358.2609600918 3.5308452 -1103.197
+136359.2609601961 3.5308056 -1103.2562
+136360.2609603005 3.5308845 -1103.1576
+136361.2609604048 3.5308056 -1103.2366
+136362.2609605091 3.5308056 -1103.1182
+136363.2609606134 3.5308056 -1103.2366
+136364.2609607177 3.5308056 -1103.2168
+136365.260960822 3.5307269 -1103.1774
+136366.2609609263 3.5306876 -1103.2366
+136367.2609610306 3.5307269 -1103.1774
+136368.2609611349 3.5306482 -1103.2366
+136369.2609612392 3.5305696 -1103.1774
+136370.2609613435 3.5306482 -1103.2562
+136371.2609614478 3.5306482 -1103.1576
+136372.2609615522 3.5306089 -1103.197
+136373.2609616565 3.5305696 -1103.2366
+136374.2609617608 3.5306876 -1103.2562
+136375.2609618651 3.5306089 -1103.1774
+136376.2609619694 3.5305302 -1103.2562
+136377.2609620737 3.5306089 -1103.1774
+136378.260962178 3.5305696 -1103.197
+136379.2609622823 3.5306482 -1103.2168
+136380.2609623866 3.5304906 -1103.2366
+136381.2609624909 3.5305696 -1103.2168
+136382.2609625952 3.5304906 -1103.2168
+136383.2609626995 3.5304513 -1103.2168
+136384.2609628038 3.5304513 -1103.1774
+136385.2609629082 3.530412 -1103.2168
+136386.2609630125 3.5306089 -1103.2562
+136387.2609631168 3.5305302 -1103.2562
+136388.2609632211 3.530412 -1103.197
+136389.2609633254 3.530412 -1103.1576
+136390.2609634297 3.5304906 -1103.2168
+136391.260963534 3.5305302 -1103.197
+136392.2609636383 3.5304906 -1103.197
+136393.2609637426 3.5303726 -1103.2168
+136394.2609638469 3.5303726 -1103.2562
+136395.2609639512 3.530412 -1103.197
+136396.2609640555 3.5303333 -1103.2562
+136397.2609641599 3.5303726 -1103.2168
+136398.2609642642 3.530412 -1103.2562
+136399.2609643685 3.530412 -1103.1774
+136400.2609644728 3.5303333 -1103.2168
+136401.2609645771 3.5302153 -1103.2366
+136402.2609646814 3.5303726 -1103.197
+136403.2609647857 3.5302939 -1103.2366
+136404.26096489 3.5302546 -1103.1774
+136405.2609649943 3.5301757 -1103.2761
+136406.2609650986 3.5302546 -1103.2168
+136407.2609652029 3.5302546 -1103.197
+136408.2609653072 3.5301363 -1103.2562
+136409.2609654116 3.5302153 -1103.1182
+136410.2609655159 3.5301757 -1103.0588
+136411.2609656202 3.5301757 -1103.2562
+136412.2609657245 3.530097 -1103.2366
+136413.2609658288 3.5301363 -1103.197
+136414.2609659331 3.5300183 -1103.2562
+136415.2609660374 3.5300577 -1103.2562
+136416.2609661417 3.5301757 -1103.2168
+136417.260966246 3.5299397 -1103.2366
+136418.2609663503 3.529979 -1103.2366
+136419.2609664546 3.529979 -1103.197
+136420.2609665589 3.5298607 -1103.2366
+136421.2609666632 3.529979 -1103.2366
+136422.2609667676 3.5299397 -1103.2168
+136423.2609668719 3.5299003 -1103.2761
+136424.2609669762 3.5299397 -1103.1774
+136425.2609670805 3.5298214 -1103.1774
+136426.2609671848 3.5299003 -1103.197
+136427.2609672891 3.5298214 -1103.2366
+136428.2609673934 3.5298214 -1103.1774
+136429.2609674977 3.5297034 -1103.2366
+136430.260967602 3.5298214 -1103.2562
+136431.2609677063 3.5297427 -1103.197
+136432.2609678106 3.5297821 -1103.2761
+136433.2609679149 3.5297427 -1103.2562
+136434.2609680193 3.5297821 -1103.0984
+136435.2609681236 3.5297034 -1103.2168
+136436.2609682279 3.5298214 -1103.1774
+136437.2609683322 3.5298214 -1103.1774
+136438.2609684365 3.5297427 -1103.1774
+136439.2609685408 3.529664 -1103.2562
+136440.2609686451 3.529664 -1103.1774
+136441.2609687494 3.5297034 -1103.197
+136442.2609688537 3.5296247 -1103.2366
+136443.260968958 3.5296247 -1103.2366
+136444.2609690623 3.5295064 -1103.2168
+136445.2609691666 3.5295458 -1103.2959
+136446.260969271 3.5295458 -1103.2366
+136447.2609693753 3.5295064 -1103.197
+136448.2609694796 3.5295458 -1103.0984
+136449.2609695839 3.5296247 -1103.2168
+136450.2609696882 3.5295458 -1103.197
+136451.2609697925 3.5295854 -1103.2168
+136452.2609698968 3.5295854 -1103.2562
+136453.2609700011 3.5295064 -1103.197
+136454.2609701054 3.5294278 -1103.1774
+136455.2609702097 3.5293884 -1103.2168
+136456.260970314 3.5294278 -1103.1774
+136457.2609704183 3.5294671 -1103.2562
+136458.2609705227 3.5293884 -1103.1576
+136459.260970627 3.5293884 -1103.1774
+136460.2609707313 3.5295458 -1103.2366
+136461.2609708356 3.5294671 -1103.1378
+136462.2609709399 3.5295064 -1103.1576
+136463.2609710442 3.5293884 -1103.197
+136464.2609711485 3.5293491 -1103.2168
+136465.2609712528 3.5293884 -1103.1378
+136466.2609713571 3.5293491 -1103.1774
+136467.2609714614 3.5293884 -1103.2562
+136468.2609715657 3.5294278 -1103.1182
+136469.26097167 3.5293491 -1103.0785
+136470.2609717743 3.5293097 -1103.1576
+136471.2609718787 3.5292702 -1103.197
+136472.260971983 3.5292702 -1103.197
+136473.2609720873 3.5292308 -1103.2366
+136474.2609721916 3.5293097 -1103.2366
+136475.2609722959 3.5293884 -1103.2168
+136476.2609724002 3.5291915 -1103.197
+136477.2609725045 3.5293097 -1103.1774
+136478.2609726088 3.5293097 -1103.197
+136479.2609727131 3.5292308 -1103.197
+136480.2609728174 3.5291522 -1103.1774
+136481.2609729217 3.5292308 -1103.197
+136482.260973026 3.5293491 -1103.2761
+136483.2609731304 3.5292308 -1103.2168
+136484.2609732347 3.5291128 -1103.2366
+136485.260973339 3.5290735 -1103.197
+136486.2609734433 3.5292308 -1103.2761
+136487.2609735476 3.5291915 -1103.2562
+136488.2609736519 3.5292308 -1103.2168
+136489.2609737562 3.5291128 -1103.1774
+136490.2609738605 3.5290341 -1103.2168
+136491.2609739648 3.5291128 -1103.2761
+136492.2609740691 3.5291128 -1103.197
+136493.2609741734 3.5291522 -1103.2366
+136494.2609742777 3.5291128 -1103.1774
+136495.2609743821 3.5290735 -1103.2168
+136496.2609744864 3.5291128 -1103.197
+136497.2609745907 3.5291128 -1103.2761
+136498.260974695 3.5291128 -1103.2959
+136499.2609747993 3.5291128 -1103.1378
+136500.2609749036 3.5290341 -1103.2761
+136501.2609750079 3.5291128 -1103.3156
+136502.2609751122 3.5291128 -1103.2761
+136503.2609752165 3.5289948 -1103.2562
+136504.2609753208 3.5291128 -1103.2168
+136505.2609754251 3.5289948 -1103.2562
+136506.2609755294 3.5289948 -1103.197
+136507.2609756337 3.5289552 -1103.197
+136508.2609757381 3.5289552 -1103.2562
+136509.2609758424 3.5289948 -1103.2366
+136510.2609759467 3.5288765 -1103.197
+136511.260976051 3.5289552 -1103.197
+136512.2609761553 3.5288372 -1103.2366
+136513.2609762596 3.5289552 -1103.3156
+136514.2609763639 3.5289159 -1103.197
+136515.2609764682 3.5288765 -1103.2366
+136516.2609765725 3.5288372 -1103.2366
+136517.2609766768 3.5287979 -1103.197
+136518.2609767811 3.5289159 -1103.2168
+136519.2609768854 3.5287585 -1103.197
+136520.2609769898 3.5287192 -1103.197
+136521.2609770941 3.5287979 -1103.1378
+136522.2609771984 3.5287585 -1103.2959
+136523.2609773027 3.5286403 -1103.0785
+136524.260977407 3.5287192 -1103.2562
+136525.2609775113 3.5286009 -1103.2168
+136526.2609776156 3.5286798 -1103.2366
+136527.2609777199 3.5286403 -1103.2366
+136528.2609778242 3.5286009 -1103.1378
+136529.2609779285 3.5285223 -1103.2366
+136530.2609780328 3.5286009 -1103.2761
+136531.2609781371 3.5286403 -1103.1576
+136532.2609782415 3.5285616 -1103.1774
+136533.2609783458 3.5285616 -1103.2562
+136534.2609784501 3.5285223 -1103.1576
+136535.2609785544 3.5284829 -1103.1576
+136536.2609786587 3.5285616 -1103.2562
+136537.260978763 3.5284436 -1103.197
+136538.2609788673 3.5284829 -1103.1576
+136539.2609789716 3.5283649 -1103.197
+136540.2609790759 3.5284436 -1103.1774
+136541.2609791802 3.5283649 -1103.197
+136542.2609792845 3.5283649 -1103.2366
+136543.2609793888 3.5283649 -1103.1774
+136544.2609794931 3.528286 -1103.1774
+136545.2609795975 3.5284436 -1103.197
+136546.2609797018 3.5284436 -1103.1182
+136547.2609798061 3.5283649 -1103.1576
+136548.2609799104 3.528286 -1103.2562
+136549.2609800147 3.528286 -1103.2168
+136550.260980119 3.5283649 -1103.197
+136551.2609802233 3.5282466 -1103.1774
+136552.2609803276 3.5282466 -1103.1182
+136553.2609804319 3.528168 -1103.2168
+136554.2609805362 3.5283253 -1103.1576
+136555.2609806405 3.528286 -1103.2168
+136556.2609807448 3.5280893 -1103.197
+136557.2609808492 3.5282073 -1103.0984
+136558.2609809535 3.5282466 -1103.2761
+136559.2609810578 3.5282466 -1103.2168
+136560.2609811621 3.5282073 -1103.2168
+136561.2609812664 3.528168 -1103.1576
+136562.2609813707 3.5281286 -1103.3156
+136563.260981475 3.528168 -1103.2761
+136564.2609815793 3.5281286 -1103.1774
+136565.2609816836 3.5280893 -1103.1378
+136566.2609817879 3.5281286 -1103.2168
+136567.2609818922 3.5281286 -1103.1576
+136568.2609819965 3.5280893 -1103.1774
+136569.2609821009 3.5281286 -1103.1774
+136570.2609822052 3.5280893 -1103.2562
+136571.2609823095 3.5280499 -1103.2761
+136572.2609824138 3.5281286 -1103.197
+136573.2609825181 3.5280499 -1103.2168
+136574.2609826224 3.5280104 -1103.2562
+136575.2609827267 3.5279317 -1103.1774
+136576.260982831 3.5280893 -1103.2562
+136577.2609829353 3.5279317 -1103.197
+136578.2609830396 3.527971 -1103.197
+136579.2609831439 3.5279317 -1103.197
+136580.2609832482 3.5279317 -1103.2562
+136581.2609833525 3.527971 -1103.2366
+136582.2609834569 3.527853 -1103.197
+136583.2609835612 3.5278137 -1103.1576
+136584.2609836655 3.5279317 -1103.2366
+136585.2609837698 3.5277743 -1103.1378
+136586.2609838741 3.5277743 -1103.197
+136587.2609839784 3.5278137 -1103.3156
+136588.2609840827 3.527853 -1103.1774
+136589.260984187 3.527853 -1103.1774
+136590.2609842913 3.5278924 -1103.2168
+136591.2609843956 3.5277348 -1103.2366
+136592.2609844999 3.5276954 -1103.2168
+136593.2609846042 3.5276561 -1103.197
+136594.2609847086 3.5277348 -1103.1774
+136595.2609848129 3.5277348 -1103.1576
+136596.2609849172 3.5277743 -1103.2168
+136597.2609850215 3.5276954 -1103.2562
+136598.2609851258 3.5276167 -1103.1774
+136599.2609852301 3.5276954 -1103.2366
+136600.2609853344 3.5276561 -1103.3551
+136601.2609854387 3.5276954 -1103.2959
+136602.260985543 3.5275774 -1103.2761
+136603.2609856473 3.5275381 -1103.2562
+136604.2609857516 3.5274987 -1103.2761
+136605.2609858559 3.5275774 -1103.2366
+136606.2609859603 3.5275774 -1103.197
+136607.2609860646 3.5274594 -1103.2366
+136608.2609861689 3.5274594 -1103.2168
+136609.2609862732 3.5274987 -1103.1576
+136610.2609863775 3.5274198 -1103.197
+136611.2609864818 3.5274594 -1103.2168
+136612.2609865861 3.5274987 -1103.2366
+136613.2609866904 3.5274198 -1103.1378
+136614.2609867947 3.5274198 -1103.1576
+136615.260986899 3.5273411 -1103.1774
+136616.2609870033 3.5273805 -1103.1378
+136617.2609871076 3.5273805 -1103.2168
+136618.260987212 3.5273018 -1103.1378
+136619.2609873163 3.5273805 -1103.1182
+136620.2609874206 3.5272624 -1103.197
+136621.2609875249 3.5272624 -1103.2168
+136622.2609876292 3.5271838 -1103.197
+136623.2609877335 3.5272624 -1103.1774
+136624.2609878378 3.5271838 -1103.197
+136625.2609879421 3.5272231 -1103.2366
+136626.2609880464 3.5272231 -1103.1576
+136627.2609881507 3.5271444 -1103.1576
+136628.260988255 3.5271444 -1103.2562
+136629.2609883593 3.5272231 -1103.1576
+136630.2609884636 3.5271838 -1103.2366
+136631.260988568 3.5271838 -1103.1774
+136632.2609886723 3.5271838 -1103.2168
+136633.2609887766 3.5271049 -1103.1576
+136634.2609888809 3.5270655 -1103.2366
+136635.2609889852 3.5269868 -1103.1774
+136636.2609890895 3.5270655 -1103.2366
+136637.2609891938 3.5269868 -1103.197
+136638.2609892981 3.5271444 -1103.1774
+136639.2609894024 3.5271049 -1103.197
+136640.2609895067 3.5270262 -1103.3353
+136641.260989611 3.5269868 -1103.1774
+136642.2609897153 3.5269868 -1103.2562
+136643.2609898197 3.5269868 -1103.197
+136644.260989924 3.5269475 -1103.2168
+136645.2609900283 3.5269868 -1103.1576
+136646.2609901326 3.5269082 -1103.1774
+136647.2609902369 3.5270655 -1103.1774
+136648.2609903412 3.5269082 -1103.1774
+136649.2609904455 3.5269082 -1103.2366
+136650.2609905498 3.5269868 -1103.197
+136651.2609906541 3.5269868 -1103.1774
+136652.2609907584 3.5269082 -1103.197
+136653.2609908627 3.5269082 -1103.2562
+136654.260990967 3.5269868 -1103.2562
+136655.2609910714 3.5268688 -1103.2562
+136656.2609911757 3.5268295 -1103.1576
+136657.26099128 3.5269082 -1103.2562
+136658.2609913843 3.5268295 -1103.3156
+136659.2609914886 3.5269475 -1103.2562
+136660.2609915929 3.5269082 -1103.0984
+136661.2609916972 3.5268688 -1103.1576
+136662.2609918015 3.5268295 -1103.1774
+136663.2609919058 3.5268295 -1103.1774
+136664.2609920101 3.5268295 -1103.197
+136665.2609921144 3.5268295 -1103.2761
+136666.2609922187 3.5267899 -1103.2366
+136667.260992323 3.5267899 -1103.2761
+136668.2609924274 3.5268295 -1103.2168
+136669.2609925317 3.5267112 -1103.2562
+136670.260992636 3.5268688 -1103.2366
+136671.2609927403 3.5266325 -1103.2168
+136672.2609928446 3.5267899 -1103.1774
+136673.2609929489 3.5267899 -1103.2168
+136674.2609930532 3.5267112 -1103.1576
+136675.2609931575 3.5267506 -1103.2959
+136676.2609932618 3.5265932 -1103.1576
+136677.2609933661 3.5266719 -1103.1378
+136678.2609934704 3.5267112 -1103.1576
+136679.2609935747 3.5266325 -1103.1774
+136680.2609936791 3.5266719 -1103.1774
+136681.2609937834 3.5266719 -1103.2959
+136682.2609938877 3.5267112 -1103.1576
+136683.260993992 3.5265932 -1103.1774
+136684.2609940963 3.5266719 -1103.2366
+136685.2609942006 3.5266719 -1103.2168
+136686.2609943049 3.5266325 -1103.197
+136687.2609944092 3.5265539 -1103.2761
+136688.2609945135 3.5265932 -1103.2562
+136689.2609946178 3.5267112 -1103.2366
+136690.2609947221 3.5265145 -1103.197
+136691.2609948264 3.5265932 -1103.197
+136692.2609949308 3.5265145 -1103.2366
+136693.2609950351 3.5265539 -1103.197
+136694.2609951394 3.5265539 -1103.1774
+136695.2609952437 3.5265145 -1103.2366
+136696.260995348 3.5264356 -1103.197
+136697.2609954523 3.5265932 -1103.2168
+136698.2609955566 3.5265539 -1103.2562
+136699.2609956609 3.5265539 -1103.1774
+136700.2609957652 3.5264356 -1103.2562
+136701.2609958695 3.5265145 -1103.1774
+136702.2609959738 3.526475 -1103.2562
+136703.2609960781 3.526475 -1103.1576
+136704.2609961824 3.5264356 -1103.2562
+136705.2609962868 3.5263963 -1103.2959
+136706.2609963911 3.5262783 -1103.1576
+136707.2609964954 3.5262783 -1103.2562
+136708.2609965997 3.5263569 -1103.0785
+136709.260996704 3.5263176 -1103.197
+136710.2609968083 3.5263963 -1103.1576
+136711.2609969126 3.5262389 -1103.2366
+136712.2609970169 3.5263569 -1103.197
+136713.2609971212 3.5263176 -1103.1576
+136714.2609972255 3.5263176 -1103.1774
+136715.2609973298 3.5261996 -1103.1774
+136716.2609974341 3.5263176 -1103.2562
+136717.2609975385 3.5262389 -1103.1576
+136718.2609976428 3.5262783 -1103.2168
+136719.2609977471 3.5263176 -1103.1378
+136720.2609978514 3.5262783 -1103.2761
+136721.2609979557 3.5263176 -1103.1774
+136722.26099806 3.5263176 -1103.2959
+136723.2609981643 3.5261996 -1103.1378
+136724.2609982686 3.5262783 -1103.2168
+136725.2609983729 3.5263176 -1103.197
+136726.2609984772 3.5262389 -1103.1774
+136727.2609985815 3.5261996 -1103.2366
+136728.2609986858 3.52616 -1103.2366
+136729.2609987902 3.526042 -1103.1774
+136730.2609988945 3.5260813 -1103.2959
+136731.2609989988 3.5259633 -1103.1774
+136732.2609991031 3.5261207 -1103.1378
+136733.2609992074 3.5259633 -1103.1576
+136734.2609993117 3.526042 -1103.1774
+136735.260999416 3.5260026 -1103.2366
+136736.2609995203 3.5259633 -1103.1774
+136737.2609996246 3.5259633 -1103.197
+136738.2609997289 3.5259633 -1103.1774
+136739.2609998332 3.5258844 -1103.1378
+136740.2609999375 3.5259633 -1103.2366
+136741.2610000419 3.5259633 -1103.2562
+136742.2610001462 3.525924 -1103.2366
+136743.2610002505 3.5258844 -1103.1576
+136744.2610003548 3.525727 -1103.197
+136745.2610004591 3.5258451 -1103.197
+136746.2610005634 3.5256877 -1103.1378
+136747.2610006677 3.5257664 -1103.1576
+136748.261000772 3.5258844 -1103.2168
+136749.2610008763 3.5257664 -1103.2168
+136750.2610009806 3.5256877 -1103.2366
+136751.2610010849 3.5258057 -1103.2366
+136752.2610011892 3.5257664 -1103.1774
+136753.2610012935 3.5256484 -1103.2366
+136754.2610013979 3.5257664 -1103.1378
+136755.2610015022 3.5257664 -1103.2761
+136756.2610016065 3.5256877 -1103.197
+136757.2610017108 3.5256877 -1103.2366
+136758.2610018151 3.5258451 -1103.2562
+136759.2610019194 3.525727 -1103.197
+136760.2610020237 3.5256877 -1103.2168
+136761.261002128 3.5256877 -1103.2366
+136762.2610022323 3.5256877 -1103.1378
+136763.2610023366 3.5257664 -1103.2761
+136764.2610024409 3.5256877 -1103.2168
+136765.2610025452 3.5256484 -1103.1774
+136766.2610026496 3.5255694 -1103.3156
+136767.2610027539 3.5256877 -1103.2168
+136768.2610028582 3.5254908 -1103.1774
+136769.2610029625 3.525609 -1103.197
+136770.2610030668 3.5255694 -1103.2168
+136771.2610031711 3.5255694 -1103.2366
+136772.2610032754 3.525609 -1103.1378
+136773.2610033797 3.5254908 -1103.0984
+136774.261003484 3.525609 -1103.197
+136775.2610035883 3.5255301 -1103.2366
+136776.2610036926 3.5254121 -1103.2959
+136777.2610037969 3.5254514 -1103.2168
+136778.2610039013 3.5254514 -1103.197
+136779.2610040056 3.5254121 -1103.197
+136780.2610041099 3.5253727 -1103.2562
+136781.2610042142 3.5252941 -1103.2761
+136782.2610043185 3.5253334 -1103.2959
+136783.2610044228 3.5253334 -1103.1774
+136784.2610045271 3.5252941 -1103.197
+136785.2610046314 3.5252941 -1103.2562
+136786.2610047357 3.5253334 -1103.3156
+136787.26100484 3.5252941 -1103.2168
+136788.2610049443 3.5252941 -1103.2959
+136789.2610050486 3.5252151 -1103.2366
+136790.2610051529 3.5252545 -1103.2168
+136791.2610052573 3.5251758 -1103.2366
+136792.2610053616 3.5251365 -1103.197
+136793.2610054659 3.5250971 -1103.1774
+136794.2610055702 3.5252151 -1103.2562
+136795.2610056745 3.5251758 -1103.2366
+136796.2610057788 3.5251758 -1103.1774
+136797.2610058831 3.5250971 -1103.1378
+136798.2610059874 3.5250185 -1103.2168
+136799.2610060917 3.5250578 -1103.2562
+136800.261006196 3.5249791 -1103.1774
+136801.2610063003 3.5249791 -1103.2168
+136802.2610064046 3.5249791 -1103.1774
+136803.261006509 3.5249002 -1103.2562
+136804.2610066133 3.5249395 -1103.1182
+136805.2610067176 3.5250185 -1103.1576
+136806.2610068219 3.5249002 -1103.197
+136807.2610069262 3.5249002 -1103.2168
+136808.2610070305 3.5248609 -1103.2959
+136809.2610071348 3.5248609 -1103.2366
+136810.2610072391 3.5248215 -1103.1576
+136811.2610073434 3.5247822 -1103.2562
+136812.2610074477 3.5247035 -1103.1774
+136813.261007552 3.5247428 -1103.2761
+136814.2610076563 3.5247822 -1103.2562
+136815.2610077607 3.5246642 -1103.1576
+136816.261007865 3.5246246 -1103.0984
+136817.2610079693 3.5247035 -1103.1576
+136818.2610080736 3.5246642 -1103.197
+136819.2610081779 3.5247035 -1103.1576
+136820.2610082822 3.5246246 -1103.197
+136821.2610083865 3.5246642 -1103.197
+136822.2610084908 3.5246642 -1103.2168
+136823.2610085951 3.5246642 -1103.1774
+136824.2610086994 3.5247428 -1103.2168
+136825.2610088037 3.5246246 -1103.3156
+136826.261008908 3.5246246 -1103.1774
+136827.2610090123 3.5245459 -1103.197
+136828.2610091167 3.5245066 -1103.2168
+136829.261009221 3.5245459 -1103.2168
+136830.2610093253 3.5245459 -1103.2562
+136831.2610094296 3.5246246 -1103.2168
+136832.2610095339 3.5244672 -1103.1576
+136833.2610096382 3.5245459 -1103.1774
+136834.2610097425 3.5245066 -1103.1576
+136835.2610098468 3.5245066 -1103.1774
+136836.2610099511 3.5244672 -1103.2366
+136837.2610100554 3.5245066 -1103.1576
+136838.2610101597 3.5243886 -1103.1774
+136839.261010264 3.5244279 -1103.2366
+136840.2610103684 3.5244279 -1103.1182
+136841.2610104727 3.5244279 -1103.1774
+136842.261010577 3.5244279 -1103.2366
+136843.2610106813 3.5243096 -1103.1182
+136844.2610107856 3.5243096 -1103.197
+136845.2610108899 3.5243096 -1103.1378
+136846.2610109942 3.5243096 -1103.197
+136847.2610110985 3.5242703 -1103.2168
+136848.2610112028 3.5242703 -1103.2168
+136849.2610113071 3.5243492 -1103.197
+136850.2610114114 3.5242703 -1103.2366
+136851.2610115157 3.5242703 -1103.1576
+136852.2610116201 3.5242703 -1103.1576
+136853.2610117244 3.5242703 -1103.1182
+136854.2610118287 3.5241523 -1103.2168
+136855.261011933 3.5242703 -1103.2366
+136856.2610120373 3.5241916 -1103.197
+136857.2610121416 3.5243096 -1103.1576
+136858.2610122459 3.5241523 -1103.2761
+136859.2610123502 3.5241916 -1103.1774
+136860.2610124545 3.524231 -1103.1576
+136861.2610125588 3.524231 -1103.197
+136862.2610126631 3.5240736 -1103.2761
+136863.2610127674 3.5241129 -1103.197
+136864.2610128718 3.5240736 -1103.1576
+136865.2610129761 3.5242703 -1103.2366
+136866.2610130804 3.5240736 -1103.1378
+136867.2610131847 3.5240736 -1103.2761
+136868.261013289 3.5240736 -1103.2761
+136869.2610133933 3.5241129 -1103.2366
+136870.2610134976 3.5240736 -1103.2366
+136871.2610136019 3.5239947 -1103.1774
+136872.2610137062 3.5240736 -1103.2168
+136873.2610138105 3.5241523 -1103.1576
+136874.2610139148 3.5240736 -1103.2168
+136875.2610140191 3.524034 -1103.1774
+136876.2610141234 3.5239947 -1103.197
+136877.2610142278 3.5239947 -1103.2562
+136878.2610143321 3.5239947 -1103.197
+136879.2610144364 3.5238373 -1103.1774
+136880.2610145407 3.523916 -1103.1774
+136881.261014645 3.5238767 -1103.1378
+136882.2610147493 3.5239553 -1103.197
+136883.2610148536 3.5238373 -1103.197
+136884.2610149579 3.5237586 -1103.2168
+136885.2610150622 3.5238767 -1103.2168
+136886.2610151665 3.5238767 -1103.2562
+136887.2610152708 3.5238373 -1103.2168
+136888.2610153751 3.5238373 -1103.1774
+136889.2610154795 3.5237586 -1103.2168
+136890.2610155838 3.5238373 -1103.2366
+136891.2610156881 3.5238373 -1103.2168
+136892.2610157924 3.5238373 -1103.0984
+136893.2610158967 3.5237586 -1103.2168
+136894.261016001 3.5236797 -1103.2562
+136895.2610161053 3.5237586 -1103.2562
+136896.2610162096 3.5236404 -1103.1774
+136897.2610163139 3.5237586 -1103.197
+136898.2610164182 3.5236011 -1103.2366
+136899.2610165225 3.5236404 -1103.197
+136900.2610166268 3.5236797 -1103.2959
+136901.2610167312 3.5236404 -1103.1774
+136902.2610168355 3.5236404 -1103.1576
+136903.2610169398 3.5236404 -1103.2562
+136904.2610170441 3.5236011 -1103.2959
+136905.2610171484 3.5236797 -1103.2168
+136906.2610172527 3.5235224 -1103.2761
+136907.261017357 3.5236011 -1103.1576
+136908.2610174613 3.5235224 -1103.1182
+136909.2610175656 3.5236011 -1103.1774
+136910.2610176699 3.5236011 -1103.2168
+136911.2610177742 3.5235617 -1103.1182
+136912.2610178785 3.5235224 -1103.0984
+136913.2610179828 3.5236404 -1103.197
+136914.2610180872 3.5235224 -1103.1378
+136915.2610181915 3.5235224 -1103.2366
+136916.2610182958 3.5234437 -1103.1774
+136917.2610184001 3.5236011 -1103.0984
+136918.2610185044 3.5235224 -1103.1774
+136919.2610186087 3.5235224 -1103.1774
+136920.261018713 3.5234437 -1103.2168
+136921.2610188173 3.523483 -1103.2168
+136922.2610189216 3.5235224 -1103.1774
+136923.2610190259 3.5234437 -1103.1378
+136924.2610191302 3.523483 -1103.1774
+136925.2610192345 3.5234041 -1103.2366
+136926.2610193389 3.5234041 -1103.2562
+136927.2610194432 3.5233648 -1103.2168
+136928.2610195475 3.5234437 -1103.2562
+136929.2610196518 3.5234437 -1103.2168
+136930.2610197561 3.5234437 -1103.1182
+136931.2610198604 3.5234041 -1103.1378
+136932.2610199647 3.5234041 -1103.2168
+136933.261020069 3.5234041 -1103.197
+136934.2610201733 3.5233254 -1103.2761
+136935.2610202776 3.5233254 -1103.1774
+136936.2610203819 3.5233254 -1103.197
+136937.2610204862 3.5232861 -1103.197
+136938.2610205906 3.5233254 -1103.2366
+136939.2610206949 3.5232861 -1103.2761
+136940.2610207992 3.5232861 -1103.1378
+136941.2610209035 3.5232468 -1103.2366
+136942.2610210078 3.5232468 -1103.2168
+136943.2610211121 3.5232074 -1103.1182
+136944.2610212164 3.5232468 -1103.197
+136945.2610213207 3.5232468 -1103.2168
+136946.261021425 3.5230892 -1103.1378
+136947.2610215293 3.5232074 -1103.2168
+136948.2610216336 3.5231681 -1103.1378
+136949.2610217379 3.5232074 -1103.1576
+136950.2610218422 3.5231681 -1103.1774
+136951.2610219466 3.5232468 -1103.1576
+136952.2610220509 3.5232074 -1103.197
+136953.2610221552 3.5231287 -1103.1576
+136954.2610222595 3.5230105 -1103.2562
+136955.2610223638 3.5230498 -1103.2366
+136956.2610224681 3.5231681 -1103.0984
+136957.2610225724 3.5231287 -1103.2366
+136958.2610226767 3.5231681 -1103.2168
+136959.261022781 3.5230498 -1103.0984
+136960.2610228853 3.5230892 -1103.2761
+136961.2610229896 3.5231681 -1103.1774
+136962.2610230939 3.5231681 -1103.2761
+136963.2610231983 3.5230498 -1103.1774
+136964.2610233026 3.5230892 -1103.1576
+136965.2610234069 3.5230498 -1103.1378
+136966.2610235112 3.5229712 -1103.2761
+136967.2610236155 3.5229712 -1103.2959
+136968.2610237198 3.5229318 -1103.1182
+136969.2610238241 3.5229712 -1103.1576
+136970.2610239284 3.5229712 -1103.1774
+136971.2610240327 3.5228925 -1103.3551
+136972.261024137 3.5229318 -1103.2168
+136973.2610242413 3.5230105 -1103.1378
+136974.2610243456 3.5229318 -1103.1576
+136975.26102445 3.5230498 -1103.197
+136976.2610245543 3.5227742 -1103.197
+136977.2610246586 3.5228925 -1103.2366
+136978.2610247629 3.5228531 -1103.1774
+136979.2610248672 3.5228138 -1103.197
+136980.2610249715 3.5228925 -1103.1774
+136981.2610250758 3.5229318 -1103.197
+136982.2610251801 3.5228925 -1103.2366
+136983.2610252844 3.5228138 -1103.2366
+136984.2610253887 3.5228138 -1103.197
+136985.261025493 3.5228138 -1103.2366
+136986.2610255973 3.5229712 -1103.2168
+136987.2610257016 3.5228531 -1103.2562
+136988.261025806 3.5227742 -1103.2168
+136989.2610259103 3.5226955 -1103.1576
+136990.2610260146 3.5227349 -1103.2366
+136991.2610261189 3.5226955 -1103.2168
+136992.2610262232 3.5228138 -1103.2168
+136993.2610263275 3.5228531 -1103.197
+136994.2610264318 3.5226955 -1103.1182
+136995.2610265361 3.5226955 -1103.197
+136996.2610266404 3.5226169 -1103.2168
+136997.2610267447 3.5225775 -1103.2366
+136998.261026849 3.5226955 -1103.2168
+136999.2610269533 3.5227349 -1103.1774
+137000.2610270577 3.5225775 -1103.1576
+137001.261027162 3.5226562 -1103.1576
+137002.2610272663 3.5226562 -1103.197
+137003.2610273706 3.5225775 -1103.2366
+137004.2610274749 3.5226562 -1103.1576
+137005.2610275792 3.5224988 -1103.2168
+137006.2610276835 3.5226562 -1103.2366
+137007.2610277878 3.5225775 -1103.1378
+137008.2610278921 3.5225775 -1103.1576
+137009.2610279964 3.5225775 -1103.1576
+137010.2610281007 3.5225775 -1103.2562
+137011.261028205 3.5225382 -1103.197
+137012.2610283094 3.5224988 -1103.1774
+137013.2610284137 3.5226169 -1103.1774
+137014.261028518 3.5224988 -1103.197
+137015.2610286223 3.5225775 -1103.1182
+137016.2610287266 3.5224988 -1103.2168
+137017.2610288309 3.5225382 -1103.197
+137018.2610289352 3.5225775 -1103.2562
+137019.2610290395 3.5225382 -1103.1182
+137020.2610291438 3.5224593 -1103.197
+137021.2610292481 3.5224988 -1103.1774
+137022.2610293524 3.5224593 -1103.2562
+137023.2610294567 3.5223806 -1103.1774
+137024.2610295611 3.5224988 -1103.1378
+137025.2610296654 3.5223806 -1103.2168
+137026.2610297697 3.5224199 -1103.1774
+137027.261029874 3.5224199 -1103.2168
+137028.2610299783 3.5223413 -1103.2366
+137029.2610300826 3.5223806 -1103.1576
+137030.2610301869 3.5223019 -1103.2562
+137031.2610302912 3.5223413 -1103.1576
+137032.2610303955 3.5222626 -1103.2168
+137033.2610304998 3.5223019 -1103.1774
+137034.2610306041 3.5221837 -1103.197
+137035.2610307084 3.5222626 -1103.197
+137036.2610308127 3.5223019 -1103.2366
+137037.2610309171 3.5222232 -1103.2761
+137038.2610310214 3.5223019 -1103.2562
+137039.2610311257 3.5222232 -1103.2761
+137040.26103123 3.5222232 -1103.1774
+137041.2610313343 3.5222232 -1103.2959
+137042.2610314386 3.5222626 -1103.2168
+137043.2610315429 3.5221837 -1103.197
+137044.2610316472 3.5220263 -1103.197
+137045.2610317515 3.522105 -1103.1774
+137046.2610318558 3.5221443 -1103.1182
+137047.2610319601 3.522105 -1103.2562
+137048.2610320644 3.5221443 -1103.2168
+137049.2610321688 3.5222232 -1103.3353
+137050.2610322731 3.5221443 -1103.197
+137051.2610323774 3.522105 -1103.197
+137052.2610324817 3.5220656 -1103.2562
+137053.261032586 3.5220263 -1103.2168
+137054.2610326903 3.522105 -1103.2168
+137055.2610327946 3.5220263 -1103.3156
+137056.2610328989 3.5221443 -1103.2366
+137057.2610330032 3.5220656 -1103.1576
+137058.2610331075 3.5219476 -1103.2366
+137059.2610332118 3.5219476 -1103.2366
+137060.2610333161 3.521987 -1103.1774
+137061.2610334205 3.5219476 -1103.2959
+137062.2610335248 3.5219083 -1103.197
+137063.2610336291 3.5218294 -1103.1774
+137064.2610337334 3.5218687 -1103.2761
+137065.2610338377 3.5219083 -1103.2168
+137066.261033942 3.5218294 -1103.197
+137067.2610340463 3.5218294 -1103.197
+137068.2610341506 3.5218294 -1103.2366
+137069.2610342549 3.52179 -1103.1576
+137070.2610343592 3.52179 -1103.2366
+137071.2610344635 3.52179 -1103.1774
+137072.2610345678 3.5218687 -1103.2366
+137073.2610346721 3.5217113 -1103.197
+137074.2610347765 3.52179 -1103.2168
+137075.2610348808 3.5217113 -1103.2168
+137076.2610349851 3.5215933 -1103.197
+137077.2610350894 3.5216327 -1103.1774
+137078.2610351937 3.5216327 -1103.1378
+137079.261035298 3.52179 -1103.2562
+137080.2610354023 3.521672 -1103.2168
+137081.2610355066 3.52179 -1103.2562
+137082.2610356109 3.521672 -1103.2562
+137083.2610357152 3.521672 -1103.1576
+137084.2610358195 3.521672 -1103.1774
+137085.2610359238 3.521672 -1103.1576
+137086.2610360282 3.5215933 -1103.1576
+137087.2610361325 3.5215538 -1103.1576
+137088.2610362368 3.5215933 -1103.2366
+137089.2610363411 3.5215144 -1103.1774
+137090.2610364454 3.5215933 -1103.1774
+137091.2610365497 3.5215538 -1103.2168
+137092.261036654 3.5215933 -1103.2168
+137093.2610367583 3.5215933 -1103.2168
+137094.2610368626 3.5215538 -1103.197
+137095.2610369669 3.5215144 -1103.1774
+137096.2610370712 3.5215144 -1103.2562
+137097.2610371755 3.5215933 -1103.197
+137098.2610372799 3.5214751 -1103.2562
+137099.2610373842 3.5214751 -1103.2366
+137100.2610374885 3.5215144 -1103.1378
+137101.2610375928 3.5215144 -1103.2366
+137102.2610376971 3.5214751 -1103.197
+137103.2610378014 3.5214357 -1103.197
+137104.2610379057 3.5214751 -1103.2168
+137105.26103801 3.5215144 -1103.1576
+137106.2610381143 3.5214751 -1103.1576
+137107.2610382186 3.5214357 -1103.2366
+137108.2610383229 3.5213177 -1103.2366
+137109.2610384272 3.5214751 -1103.2761
+137110.2610385315 3.5213964 -1103.197
+137111.2610386359 3.5213177 -1103.2366
+137112.2610387402 3.5213964 -1103.1774
+137113.2610388445 3.5213177 -1103.1774
+137114.2610389488 3.5213571 -1103.1576
+137115.2610390531 3.5213964 -1103.1576
+137116.2610391574 3.5213571 -1103.1774
+137117.2610392617 3.5213177 -1103.1378
+137118.261039366 3.5212784 -1103.197
+137119.2610394703 3.5212388 -1103.1576
+137120.2610395746 3.5213571 -1103.3156
+137121.2610396789 3.5213177 -1103.1576
+137122.2610397832 3.5213571 -1103.1774
+137123.2610398876 3.5213177 -1103.1576
+137124.2610399919 3.5213177 -1103.197
+137125.2610400962 3.5211601 -1103.1774
+137126.2610402005 3.5212388 -1103.2761
+137127.2610403048 3.5211601 -1103.2168
+137128.2610404091 3.5211995 -1103.197
+137129.2610405134 3.5211995 -1103.1774
+137130.2610406177 3.5212388 -1103.2366
+137131.261040722 3.5211601 -1103.1378
+137132.2610408263 3.5212388 -1103.2168
+137133.2610409306 3.5210814 -1103.2366
+137134.2610410349 3.5211995 -1103.2168
+137135.2610411393 3.5211995 -1103.2562
+137136.2610412436 3.5210814 -1103.197
+137137.2610413479 3.5211601 -1103.1378
+137138.2610414522 3.5210814 -1103.197
+137139.2610415565 3.5210814 -1103.1576
+137140.2610416608 3.5211601 -1103.1378
+137141.2610417651 3.5210814 -1103.2761
+137142.2610418694 3.5211208 -1103.1774
+137143.2610419737 3.5209634 -1103.197
+137144.261042078 3.5210814 -1103.1576
+137145.2610421823 3.5210028 -1103.1576
+137146.2610422866 3.5210028 -1103.197
+137147.261042391 3.5210028 -1103.2168
+137148.2610424953 3.5209634 -1103.197
+137149.2610425996 3.5211208 -1103.197
+137150.2610427039 3.5209634 -1103.1576
+137151.2610428082 3.5209634 -1103.1182
+137152.2610429125 3.5209239 -1103.2168
+137153.2610430168 3.5209239 -1103.1774
+137154.2610431211 3.5210028 -1103.1774
+137155.2610432254 3.5209634 -1103.2168
+137156.2610433297 3.5209634 -1103.0984
+137157.261043434 3.5208845 -1103.2761
+137158.2610435383 3.5209239 -1103.2366
+137159.2610436426 3.5210028 -1103.2168
+137160.261043747 3.5209634 -1103.1576
+137161.2610438513 3.5209239 -1103.1774
+137162.2610439556 3.5210028 -1103.2959
+137163.2610440599 3.5208452 -1103.197
+137164.2610441642 3.5208845 -1103.2366
+137165.2610442685 3.5208058 -1103.2366
+137166.2610443728 3.5208452 -1103.1774
+137167.2610444771 3.5207272 -1103.2366
+137168.2610445814 3.5209239 -1103.2761
+137169.2610446857 3.5208058 -1103.2168
+137170.26104479 3.5208058 -1103.2366
+137171.2610448943 3.5208452 -1103.2562
+137172.2610449987 3.5207665 -1103.2562
+137173.261045103 3.5208452 -1103.2168
+137174.2610452073 3.5208452 -1103.2761
+137175.2610453116 3.5208058 -1103.197
+137176.2610454159 3.5208058 -1103.2366
+137177.2610455202 3.5206485 -1103.2761
+137178.2610456245 3.5206485 -1103.0785
+137179.2610457288 3.5206878 -1103.2562
+137180.2610458331 3.5206878 -1103.2168
+137181.2610459374 3.5207665 -1103.2562
+137182.2610460417 3.5206878 -1103.1774
+137183.261046146 3.5207272 -1103.1182
+137184.2610462504 3.5206485 -1103.197
+137185.2610463547 3.5206485 -1103.2761
+137186.261046459 3.5206485 -1103.1774
+137187.2610465633 3.5206089 -1103.2366
+137188.2610466676 3.5205696 -1103.1182
+137189.2610467719 3.5205302 -1103.197
+137190.2610468762 3.5206878 -1103.197
+137191.2610469805 3.5205696 -1103.2168
+137192.2610470848 3.5206485 -1103.1774
+137193.2610471891 3.5205696 -1103.1576
+137194.2610472934 3.5204909 -1103.2562
+137195.2610473977 3.5205302 -1103.2366
+137196.261047502 3.5205302 -1103.0984
+137197.2610476064 3.5205302 -1103.1774
+137198.2610477107 3.5204909 -1103.1182
+137199.261047815 3.5204122 -1103.1774
+137200.2610479193 3.5204122 -1103.1576
+137201.2610480236 3.5204122 -1103.1378
+137202.2610481279 3.5205696 -1103.2562
+137203.2610482322 3.5203729 -1103.2366
+137204.2610483365 3.5203729 -1103.197
+137205.2610484408 3.5202546 -1103.2366
+137206.2610485451 3.5203333 -1103.1378
+137207.2610486494 3.5202546 -1103.1182
+137208.2610487537 3.520294 -1103.1774
+137209.2610488581 3.5203333 -1103.2562
+137210.2610489624 3.5203333 -1103.1576
+137211.2610490667 3.520294 -1103.197
+137212.261049171 3.5202153 -1103.1774
+137213.2610492753 3.5202546 -1103.1576
+137214.2610493796 3.5202153 -1103.2168
+137215.2610494839 3.520294 -1103.2168
+137216.2610495882 3.5201759 -1103.0984
+137217.2610496925 3.5202546 -1103.197
+137218.2610497968 3.5202153 -1103.2168
+137219.2610499011 3.5202153 -1103.1378
+137220.2610500054 3.5201366 -1103.1576
+137221.2610501098 3.5202153 -1103.2366
+137222.2610502141 3.5200579 -1103.1774
+137223.2610503184 3.5201366 -1103.1774
+137224.2610504227 3.5200973 -1103.1774
+137225.261050527 3.5200973 -1103.2366
+137226.2610506313 3.5200973 -1103.2168
+137227.2610507356 3.5200183 -1103.1774
+137228.2610508399 3.5199397 -1103.197
+137229.2610509442 3.519979 -1103.2366
+137230.2610510485 3.519979 -1103.2168
+137231.2610511528 3.5200183 -1103.197
+137232.2610512571 3.519979 -1103.2366
+137233.2610513614 3.5200183 -1103.2761
+137234.2610514658 3.5199003 -1103.1378
+137235.2610515701 3.519861 -1103.1774
+137236.2610516744 3.5199397 -1103.2168
+137237.2610517787 3.5197823 -1103.197
+137238.261051883 3.5198216 -1103.1774
+137239.2610519873 3.5197823 -1103.2168
+137240.2610520916 3.519861 -1103.2168
+137241.2610521959 3.5197823 -1103.197
+137242.2610523002 3.5199003 -1103.2761
+137243.2610524045 3.5197823 -1103.2562
+137244.2610525088 3.519861 -1103.0785
+137245.2610526131 3.5198216 -1103.2168
+137246.2610527175 3.5197823 -1103.2366
+137247.2610528218 3.5197034 -1103.1774
+137248.2610529261 3.5196247 -1103.2562
+137249.2610530304 3.519743 -1103.197
+137250.2610531347 3.5197034 -1103.2562
+137251.261053239 3.5197823 -1103.3156
+137252.2610533433 3.5197034 -1103.197
+137253.2610534476 3.519743 -1103.1576
+137254.2610535519 3.5197034 -1103.2959
+137255.2610536562 3.519743 -1103.1774
+137256.2610537605 3.519664 -1103.2562
+137257.2610538648 3.5197034 -1103.1774
+137258.2610539692 3.5195854 -1103.2562
+137259.2610540735 3.5197034 -1103.2366
+137260.2610541778 3.519546 -1103.197
+137261.2610542821 3.5197034 -1103.1378
+137262.2610543864 3.519743 -1103.1774
+137263.2610544907 3.5197034 -1103.2562
+137264.261054595 3.519664 -1103.1576
+137265.2610546993 3.5197034 -1103.0588
+137266.2610548036 3.519546 -1103.1378
+137267.2610549079 3.519546 -1103.1576
+137268.2610550122 3.519546 -1103.1774
+137269.2610551165 3.519546 -1103.1774
+137270.2610552209 3.519546 -1103.2168
+137271.2610553252 3.5195854 -1103.1576
+137272.2610554295 3.5196247 -1103.0984
+137273.2610555338 3.519546 -1103.197
+137274.2610556381 3.519546 -1103.2959
+137275.2610557424 3.5195067 -1103.1774
+137276.2610558467 3.5196247 -1103.1378
+137277.261055951 3.519428 -1103.197
+137278.2610560553 3.5193884 -1103.197
+137279.2610561596 3.5193884 -1103.2562
+137280.2610562639 3.519428 -1103.197
+137281.2610563682 3.5193884 -1103.2168
+137282.2610564725 3.5194674 -1103.1774
+137283.2610565769 3.519428 -1103.2366
+137284.2610566812 3.5193491 -1103.2761
+137285.2610567855 3.5194674 -1103.2168
+137286.2610568898 3.5193098 -1103.1182
+137287.2610569941 3.5194674 -1103.2562
+137288.2610570984 3.519428 -1103.197
+137289.2610572027 3.5193884 -1103.2168
+137290.261057307 3.5193098 -1103.1182
+137291.2610574113 3.5193884 -1103.2562
+137292.2610575156 3.519428 -1103.1576
+137293.2610576199 3.5193098 -1103.2168
+137294.2610577242 3.5193098 -1103.1774
+137295.2610578286 3.5193491 -1103.197
+137296.2610579329 3.5192704 -1103.2168
+137297.2610580372 3.5192311 -1103.2562
+137298.2610581415 3.5192704 -1103.2761
+137299.2610582458 3.5191917 -1103.197
+137300.2610583501 3.5191917 -1103.1774
+137301.2610584544 3.5192311 -1103.1774
+137302.2610585587 3.5191917 -1103.2168
+137303.261058663 3.5192704 -1103.2168
+137304.2610587673 3.5193098 -1103.2366
+137305.2610588716 3.5193491 -1103.197
+137306.2610589759 3.5191917 -1103.2959
+137307.2610590803 3.5191917 -1103.2562
+137308.2610591846 3.5192704 -1103.1576
+137309.2610592889 3.5191917 -1103.197
+137310.2610593932 3.5191917 -1103.1774
+137311.2610594975 3.5191524 -1103.2168
+137312.2610596018 3.5191524 -1103.1576
+137313.2610597061 3.5190735 -1103.2562
+137314.2610598104 3.5191917 -1103.2168
+137315.2610599147 3.5190735 -1103.2168
+137316.261060019 3.5190735 -1103.197
+137317.2610601233 3.5190735 -1103.2366
+137318.2610602276 3.5191131 -1103.197
+137319.2610603319 3.5190735 -1103.2366
+137320.2610604363 3.5191131 -1103.2168
+137321.2610605406 3.5191131 -1103.2366
+137322.2610606449 3.5191131 -1103.1774
+137323.2610607492 3.5191131 -1103.2168
+137324.2610608535 3.5191131 -1103.0984
+137325.2610609578 3.5191131 -1103.1774
+137326.2610610621 3.5190735 -1103.197
+137327.2610611664 3.5191524 -1103.1774
+137328.2610612707 3.5191131 -1103.0984
+137329.261061375 3.5191131 -1103.1182
+137330.2610614793 3.5189948 -1103.2562
+137331.2610615836 3.5191917 -1103.197
+137332.261061688 3.5190735 -1103.2366
+137333.2610617923 3.5191524 -1103.1774
+137334.2610618966 3.5190341 -1103.1182
+137335.2610620009 3.5189555 -1103.2366
+137336.2610621052 3.5190735 -1103.197
+137337.2610622095 3.5191131 -1103.1378
+137338.2610623138 3.5190341 -1103.1378
+137339.2610624181 3.5190341 -1103.1576
+137340.2610625224 3.5191131 -1103.2168
+137341.2610626267 3.5189555 -1103.2366
+137342.261062731 3.5191131 -1103.2366
+137343.2610628353 3.5190735 -1103.1774
+137344.2610629397 3.5190341 -1103.2761
+137345.261063044 3.5191131 -1103.2562
+137346.2610631483 3.5190735 -1103.2366
+137347.2610632526 3.5190341 -1103.1774
+137348.2610633569 3.5191131 -1103.1576
+137349.2610634612 3.5189948 -1103.197
+137350.2610635655 3.5189555 -1103.2366
+137351.2610636698 3.5189948 -1103.0984
+137352.2610637741 3.5190735 -1103.197
+137353.2610638784 3.5190735 -1103.197
+137354.2610639827 3.5189555 -1103.1576
+137355.261064087 3.5189161 -1103.1576
+137356.2610641913 3.5189948 -1103.2366
+137357.2610642957 3.5189555 -1103.197
+137358.2610644 3.5189948 -1103.197
+137359.2610645043 3.5189555 -1103.2366
+137360.2610646086 3.5189555 -1103.197
+137361.2610647129 3.5189161 -1103.2562
+137362.2610648172 3.5189948 -1103.197
+137363.2610649215 3.5189948 -1103.2168
+137364.2610650258 3.5188768 -1103.2168
+137365.2610651301 3.5188768 -1103.1774
+137366.2610652344 3.5187979 -1103.1774
+137367.2610653387 3.5188375 -1103.0984
+137368.261065443 3.5189161 -1103.197
+137369.2610655474 3.5187979 -1103.2562
+137370.2610656517 3.5187979 -1103.1576
+137371.261065756 3.5187585 -1103.2168
+137372.2610658603 3.5187585 -1103.1378
+137373.2610659646 3.5187192 -1103.1774
+137374.2610660689 3.5188768 -1103.1774
+137375.2610661732 3.5186405 -1103.1774
+137376.2610662775 3.5186799 -1103.1774
+137377.2610663818 3.5187585 -1103.0785
+137378.2610664861 3.5187585 -1103.3156
+137379.2610665904 3.5186405 -1103.3156
+137380.2610666947 3.5186405 -1103.1774
+137381.2610667991 3.5187192 -1103.2168
+137382.2610669034 3.5186405 -1103.2562
+137383.2610670077 3.5186799 -1103.1774
+137384.261067112 3.5186012 -1103.1576
+137385.2610672163 3.5184436 -1103.197
+137386.2610673206 3.5184042 -1103.197
+137387.2610674249 3.5184829 -1103.197
+137388.2610675292 3.5184436 -1103.2761
+137389.2610676335 3.5184042 -1103.2562
+137390.2610677378 3.5184436 -1103.2761
+137391.2610678421 3.5183649 -1103.2366
+137392.2610679464 3.5183649 -1103.0588
+137393.2610680508 3.5184436 -1103.1576
+137394.2610681551 3.5183649 -1103.197
+137395.2610682594 3.5183256 -1103.1774
+137396.2610683637 3.5184042 -1103.1774
+137397.261068468 3.5183256 -1103.2168
+137398.2610685723 3.5182469 -1103.2168
+137399.2610686766 3.5182076 -1103.1774
+137400.2610687809 3.5182862 -1103.1378
+137401.2610688852 3.5182469 -1103.1774
+137402.2610689895 3.5182076 -1103.2562
+137403.2610690938 3.5182076 -1103.2562
+137404.2610691981 3.5182469 -1103.1774
+137405.2610693024 3.518168 -1103.2562
+137406.2610694068 3.518168 -1103.2562
+137407.2610695111 3.5181286 -1103.2168
+137408.2610696154 3.5182862 -1103.197
+137409.2610697197 3.5182076 -1103.3156
+137410.261069824 3.5180893 -1103.1576
+137411.2610699283 3.51805 -1103.2562
+137412.2610700326 3.518168 -1103.2168
+137413.2610701369 3.518168 -1103.2366
+137414.2610702412 3.5180893 -1103.1774
+137415.2610703455 3.51805 -1103.1774
+137416.2610704498 3.5180106 -1103.197
+137417.2610705541 3.5180106 -1103.197
+137418.2610706585 3.5181286 -1103.197
+137419.2610707628 3.51805 -1103.1774
+137420.2610708671 3.5180893 -1103.197
+137421.2610709714 3.5180893 -1103.2366
+137422.2610710757 3.51805 -1103.1576
+137423.26107118 3.5180106 -1103.197
+137424.2610712843 3.517853 -1103.2366
+137425.2610713886 3.5179713 -1103.1774
+137426.2610714929 3.517853 -1103.1774
+137427.2610715972 3.5178926 -1103.2366
+137428.2610717015 3.517853 -1103.2366
+137429.2610718058 3.5179319 -1103.1182
+137430.2610719102 3.517853 -1103.2168
+137431.2610720145 3.517853 -1103.197
+137432.2610721188 3.5178137 -1103.197
+137433.2610722231 3.517853 -1103.197
+137434.2610723274 3.517735 -1103.2959
+137435.2610724317 3.5178137 -1103.197
+137436.261072536 3.5177743 -1103.0984
+137437.2610726403 3.517853 -1103.1774
+137438.2610727446 3.5178137 -1103.1774
+137439.2610728489 3.5177743 -1103.197
+137440.2610729532 3.517735 -1103.2761
+137441.2610730575 3.5178137 -1103.2562
+137442.2610731618 3.5177743 -1103.2168
+137443.2610732662 3.5176563 -1103.2562
+137444.2610733705 3.5177743 -1103.2562
+137445.2610734748 3.5176563 -1103.2168
+137446.2610735791 3.5176957 -1103.2562
+137447.2610736834 3.517735 -1103.2168
+137448.2610737877 3.517617 -1103.2168
+137449.261073892 3.517617 -1103.1774
+137450.2610739963 3.5176957 -1103.1576
+137451.2610741006 3.517617 -1103.2366
+137452.2610742049 3.5175381 -1103.2562
+137453.2610743092 3.5174987 -1103.197
+137454.2610744135 3.517617 -1103.197
+137455.2610745179 3.5175776 -1103.1576
+137456.2610746222 3.5175776 -1103.197
+137457.2610747265 3.5175776 -1103.197
+137458.2610748308 3.5174594 -1103.197
+137459.2610749351 3.5175381 -1103.1774
+137460.2610750394 3.5174987 -1103.2168
+137461.2610751437 3.5174987 -1103.1378
+137462.261075248 3.5174201 -1103.1576
+137463.2610753523 3.5174594 -1103.2761
+137464.2610754566 3.5174201 -1103.1774
+137465.2610755609 3.5174201 -1103.1774
+137466.2610756652 3.5174594 -1103.197
+137467.2610757696 3.5174201 -1103.1774
+137468.2610758739 3.5174594 -1103.197
+137469.2610759782 3.5174594 -1103.197
+137470.2610760825 3.5174201 -1103.0984
+137471.2610761868 3.5174201 -1103.2562
+137472.2610762911 3.5173807 -1103.2366
+137473.2610763954 3.517302 -1103.1576
+137474.2610764997 3.5173414 -1103.0984
+137475.261076604 3.517302 -1103.1378
+137476.2610767083 3.5173807 -1103.2562
+137477.2610768126 3.5173807 -1103.197
+137478.2610769169 3.517302 -1103.1774
+137479.2610770212 3.5172627 -1103.197
+137480.2610771256 3.5171838 -1103.197
+137481.2610772299 3.517302 -1103.2761
+137482.2610773342 3.5172231 -1103.2168
+137483.2610774385 3.5172231 -1103.1576
+137484.2610775428 3.5172627 -1103.1774
+137485.2610776471 3.5172627 -1103.197
+137486.2610777514 3.5171838 -1103.2761
+137487.2610778557 3.5173414 -1103.1182
+137488.26107796 3.5171444 -1103.2959
+137489.2610780643 3.5172231 -1103.1774
+137490.2610781686 3.5172231 -1103.2959
+137491.2610782729 3.5171444 -1103.2168
+137492.2610783773 3.5171051 -1103.3156
+137493.2610784816 3.5172231 -1103.2168
+137494.2610785859 3.5171051 -1103.2761
+137495.2610786902 3.5171051 -1103.197
+137496.2610787945 3.5170658 -1103.2959
+137497.2610788988 3.5171051 -1103.2761
+137498.2610790031 3.5170264 -1103.2366
+137499.2610791074 3.5170658 -1103.2562
+137500.2610792117 3.5169871 -1103.2366
+137501.261079316 3.5170264 -1103.197
+137502.2610794203 3.5170658 -1103.2562
+137503.2610795246 3.5170658 -1103.2366
+137504.261079629 3.5169871 -1103.3551
+137505.2610797333 3.5170658 -1103.2366
+137506.2610798376 3.5170264 -1103.2168
+137507.2610799419 3.5169475 -1103.2168
+137508.2610800462 3.5170264 -1103.2562
+137509.2610801505 3.5170264 -1103.1378
+137510.2610802548 3.5169082 -1103.2366
+137511.2610803591 3.5169082 -1103.1576
+137512.2610804634 3.5169082 -1103.2366
+137513.2610805677 3.5169082 -1103.1182
+137514.261080672 3.5168688 -1103.197
+137515.2610807763 3.5169475 -1103.1576
+137516.2610808806 3.5168688 -1103.197
+137517.261080985 3.5169082 -1103.1774
+137518.2610810893 3.5168688 -1103.2366
+137519.2610811936 3.5167508 -1103.2366
+137520.2610812979 3.5167902 -1103.2366
+137521.2610814022 3.5168295 -1103.1576
+137522.2610815065 3.5166721 -1103.1774
+137523.2610816108 3.5167902 -1103.2366
+137524.2610817151 3.5167902 -1103.197
+137525.2610818194 3.5166326 -1103.1774
+137526.2610819237 3.5167902 -1103.2168
+137527.261082028 3.5167115 -1103.2168
+137528.2610821323 3.5165932 -1103.197
+137529.2610822367 3.5166326 -1103.1576
+137530.261082341 3.5165932 -1103.1774
+137531.2610824453 3.5167902 -1103.1576
+137532.2610825496 3.5166326 -1103.2562
+137533.2610826539 3.5166721 -1103.197
+137534.2610827582 3.5165932 -1103.1182
+137535.2610828625 3.5167115 -1103.1576
+137536.2610829668 3.5165539 -1103.2366
+137537.2610830711 3.5165539 -1103.1774
+137538.2610831754 3.5165539 -1103.1774
+137539.2610832797 3.5165145 -1103.197
+137540.261083384 3.5164752 -1103.1774
+137541.2610834884 3.5165145 -1103.2168
+137542.2610835927 3.5164752 -1103.197
+137543.261083697 3.5164359 -1103.1774
+137544.2610838013 3.5165145 -1103.197
+137545.2610839056 3.5163176 -1103.2959
+137546.2610840099 3.5163965 -1103.2168
+137547.2610841142 3.5163572 -1103.197
+137548.2610842185 3.5163965 -1103.2168
+137549.2610843228 3.5163965 -1103.197
+137550.2610844271 3.5163572 -1103.2366
+137551.2610845314 3.5163176 -1103.2366
+137552.2610846357 3.5163965 -1103.197
+137553.2610847401 3.5163572 -1103.2366
+137554.2610848444 3.5163176 -1103.1576
+137555.2610849487 3.5161996 -1103.2761
+137556.261085053 3.5162783 -1103.197
+137557.2610851573 3.5162389 -1103.1774
+137558.2610852616 3.5162389 -1103.2761
+137559.2610853659 3.5161996 -1103.1378
+137560.2610854702 3.5161209 -1103.2366
+137561.2610855745 3.5162389 -1103.2366
+137562.2610856788 3.5160816 -1103.1774
+137563.2610857831 3.5161602 -1103.3156
+137564.2610858874 3.5161602 -1103.2366
+137565.2610859917 3.5162389 -1103.197
+137566.2610860961 3.5161996 -1103.2168
+137567.2610862004 3.5162783 -1103.2562
+137568.2610863047 3.5161602 -1103.1774
+137569.261086409 3.5161209 -1103.1774
+137570.2610865133 3.5161996 -1103.2562
+137571.2610866176 3.5161602 -1103.197
+137572.2610867219 3.5161602 -1103.0984
+137573.2610868262 3.5161209 -1103.2366
+137574.2610869305 3.5160816 -1103.2761
+137575.2610870348 3.5160422 -1103.1182
+137576.2610871391 3.5161602 -1103.1774
+137577.2610872434 3.5161602 -1103.0984
+137578.2610873478 3.5161209 -1103.197
+137579.2610874521 3.5161209 -1103.2761
+137580.2610875564 3.5160816 -1103.197
+137581.2610876607 3.5161209 -1103.2761
+137582.261087765 3.5160816 -1103.2168
+137583.2610878693 3.5160816 -1103.1378
+137584.2610879736 3.5161209 -1103.1182
+137585.2610880779 3.515924 -1103.2168
+137586.2610881822 3.5160422 -1103.2761
+137587.2610882865 3.5161209 -1103.197
+137588.2610883908 3.5160422 -1103.2168
+137589.2610884951 3.5160422 -1103.2562
+137590.2610885995 3.5160027 -1103.197
+137591.2610887038 3.5161209 -1103.2366
+137592.2610888081 3.5160027 -1103.1576
+137593.2610889124 3.5160422 -1103.1576
+137594.2610890167 3.5159633 -1103.3156
+137595.261089121 3.5158846 -1103.2366
+137596.2610892253 3.515924 -1103.197
+137597.2610893296 3.5159633 -1103.2168
+137598.2610894339 3.5158453 -1103.2562
+137599.2610895382 3.5159633 -1103.1774
+137600.2610896425 3.5160027 -1103.1774
+137601.2610897468 3.5158846 -1103.2562
+137602.2610898511 3.515806 -1103.2959
+137603.2610899555 3.5158846 -1103.2366
+137604.2610900598 3.5158846 -1103.2562
+137605.2610901641 3.5158846 -1103.2168
+137606.2610902684 3.515806 -1103.2562
+137607.2610903727 3.5158846 -1103.0984
+137608.261090477 3.5158846 -1103.1774
+137609.2610905813 3.5157273 -1103.2168
+137610.2610906856 3.5157666 -1103.197
+137611.2610907899 3.5157666 -1103.2168
+137612.2610908942 3.5158453 -1103.1576
+137613.2610909985 3.515806 -1103.197
+137614.2610911028 3.5157666 -1103.2761
+137615.2610912072 3.5156877 -1103.1774
+137616.2610913115 3.5158453 -1103.1774
+137617.2610914158 3.5157666 -1103.197
+137618.2610915201 3.5157273 -1103.1378
+137619.2610916244 3.5156877 -1103.1378
+137620.2610917287 3.5157273 -1103.3551
+137621.261091833 3.5156484 -1103.1774
+137622.2610919373 3.5157666 -1103.1774
+137623.2610920416 3.5156877 -1103.2562
+137624.2610921459 3.5157666 -1103.197
+137625.2610922502 3.515806 -1103.197
+137626.2610923545 3.5156877 -1103.197
+137627.2610924589 3.5157273 -1103.1576
+137628.2610925632 3.5156484 -1103.2562
+137629.2610926675 3.515609 -1103.197
+137630.2610927718 3.5156877 -1103.1378
+137631.2610928761 3.5155697 -1103.197
+137632.2610929804 3.5156484 -1103.2761
+137633.2610930847 3.5155697 -1103.197
+137634.261093189 3.5156877 -1103.197
+137635.2610932933 3.515491 -1103.1774
+137636.2610933976 3.5156484 -1103.1774
+137637.2610935019 3.515609 -1103.2959
+137638.2610936062 3.5155303 -1103.2168
+137639.2610937105 3.5155303 -1103.1182
+137640.2610938149 3.515609 -1103.197
+137641.2610939192 3.515491 -1103.197
+137642.2610940235 3.5156877 -1103.2168
+137643.2610941278 3.5155697 -1103.2168
+137644.2610942321 3.5155697 -1103.2168
+137645.2610943364 3.5156484 -1103.1576
+137646.2610944407 3.515491 -1103.2366
+137647.261094545 3.5154517 -1103.1576
+137648.2610946493 3.5154517 -1103.1774
+137649.2610947536 3.5154517 -1103.2168
+137650.2610948579 3.5154517 -1103.197
+137651.2610949622 3.5153728 -1103.1774
+137652.2610950666 3.5153334 -1103.2761
+137653.2610951709 3.5154517 -1103.2366
+137654.2610952752 3.5154517 -1103.1774
+137655.2610953795 3.5154123 -1103.1378
+137656.2610954838 3.5153728 -1103.197
+137657.2610955881 3.5153728 -1103.2366
+137658.2610956924 3.5154123 -1103.2959
+137659.2610957967 3.5153728 -1103.0984
+137660.261095901 3.5152941 -1103.2562
+137661.2610960053 3.5153728 -1103.2562
+137662.2610961096 3.5152941 -1103.1378
+137663.2610962139 3.5153334 -1103.2761
+137664.2610963183 3.5152547 -1103.197
+137665.2610964226 3.5154123 -1103.1774
+137666.2610965269 3.5153334 -1103.197
+137667.2610966312 3.5152547 -1103.197
+137668.2610967355 3.5151761 -1103.1774
+137669.2610968398 3.5151367 -1103.1576
+137670.2610969441 3.5150578 -1103.2366
+137671.2610970484 3.5152154 -1103.2562
+137672.2610971527 3.5152547 -1103.1182
+137673.261097257 3.5152154 -1103.197
+137674.2610973613 3.5151367 -1103.2168
+137675.2610974656 3.5151761 -1103.197
+137676.26109757 3.5150971 -1103.1576
+137677.2610976743 3.5151761 -1103.2562
+137678.2610977786 3.5151367 -1103.1774
+137679.2610978829 3.5151367 -1103.197
+137680.2610979872 3.5151367 -1103.1576
+137681.2610980915 3.5151367 -1103.2562
+137682.2610981958 3.5151367 -1103.1378
+137683.2610983001 3.5151367 -1103.2366
+137684.2610984044 3.5151367 -1103.1182
+137685.2610985087 3.5149398 -1103.2959
+137686.261098613 3.5150185 -1103.197
+137687.2610987173 3.5150578 -1103.2761
+137688.2610988216 3.5151367 -1103.1576
+137689.261098926 3.5150185 -1103.2366
+137690.2610990303 3.5150185 -1103.2366
+137691.2610991346 3.5149398 -1103.197
+137692.2610992389 3.5150185 -1103.197
+137693.2610993432 3.5149791 -1103.2761
+137694.2610994475 3.5148611 -1103.2168
+137695.2610995518 3.5149004 -1103.197
+137696.2610996561 3.5148218 -1103.2761
+137697.2610997604 3.5148218 -1103.197
+137698.2610998647 3.5148611 -1103.1774
+137699.261099969 3.5148218 -1103.2761
+137700.2611000733 3.5148218 -1103.2168
+137701.2611001777 3.5147035 -1103.2562
+137702.261100282 3.5147822 -1103.2366
+137703.2611003863 3.5147429 -1103.2366
+137704.2611004906 3.5147822 -1103.197
+137705.2611005949 3.5146642 -1103.1182
+137706.2611006992 3.5145855 -1103.2168
+137707.2611008035 3.5146248 -1103.2168
+137708.2611009078 3.5147822 -1103.197
+137709.2611010121 3.5146248 -1103.197
+137710.2611011164 3.5146248 -1103.2168
+137711.2611012207 3.5147035 -1103.2168
+137712.261101325 3.5146248 -1103.197
+137713.2611014294 3.5146642 -1103.3353
+137714.2611015337 3.5145462 -1103.1774
+137715.261101638 3.5146248 -1103.1774
+137716.2611017423 3.5146248 -1103.3156
+137717.2611018466 3.5145855 -1103.1774
+137718.2611019509 3.5145855 -1103.2562
+137719.2611020552 3.5145068 -1103.1774
+137720.2611021595 3.5145462 -1103.1774
+137721.2611022638 3.5145855 -1103.2168
+137722.2611023681 3.5145855 -1103.1378
+137723.2611024724 3.5145855 -1103.2562
+137724.2611025767 3.5145462 -1103.2168
+137725.261102681 3.5144672 -1103.1576
+137726.2611027854 3.5144672 -1103.2761
+137727.2611028897 3.5145855 -1103.1576
+137728.261102994 3.5145068 -1103.2168
+137729.2611030983 3.5145068 -1103.1378
+137730.2611032026 3.5145462 -1103.0391
+137731.2611033069 3.5145462 -1103.1774
+137732.2611034112 3.5144672 -1103.1774
+137733.2611035155 3.5144672 -1103.2562
+137734.2611036198 3.5145068 -1103.197
+137735.2611037241 3.5144672 -1103.2168
+137736.2611038284 3.5145068 -1103.197
+137737.2611039327 3.5145462 -1103.1774
+137738.2611040371 3.5144672 -1103.2366
+137739.2611041414 3.5144672 -1103.0984
+137740.2611042457 3.5143886 -1103.2168
+137741.26110435 3.5143886 -1103.1182
+137742.2611044543 3.5144279 -1103.2761
+137743.2611045586 3.5143492 -1103.1774
+137744.2611046629 3.5143492 -1103.1774
+137745.2611047672 3.5144279 -1103.2761
+137746.2611048715 3.5143099 -1103.2168
+137747.2611049758 3.5143492 -1103.1774
+137748.2611050801 3.5143099 -1103.1182
+137749.2611051844 3.5143492 -1103.1576
+137750.2611052888 3.5142705 -1103.2959
+137751.2611053931 3.5142312 -1103.197
+137752.2611054974 3.5141919 -1103.1576
+137753.2611056017 3.5142705 -1103.197
+137754.261105706 3.5142312 -1103.2562
+137755.2611058103 3.5142705 -1103.1774
+137756.2611059146 3.5141919 -1103.2562
+137757.2611060189 3.5141919 -1103.197
+137758.2611061232 3.5141919 -1103.2562
+137759.2611062275 3.5142312 -1103.1774
+137760.2611063318 3.5142312 -1103.2366
+137761.2611064361 3.5141523 -1103.197
+137762.2611065404 3.5141129 -1103.1774
+137763.2611066448 3.5140343 -1103.2366
+137764.2611067491 3.5141523 -1103.1774
+137765.2611068534 3.5140736 -1103.1774
+137766.2611069577 3.5140736 -1103.2168
+137767.261107062 3.5139163 -1103.2168
+137768.2611071663 3.5140343 -1103.197
+137769.2611072706 3.5140343 -1103.2168
+137770.2611073749 3.5139556 -1103.2562
+137771.2611074792 3.5139163 -1103.2366
+137772.2611075835 3.5139163 -1103.2366
+137773.2611076878 3.5138769 -1103.2761
+137774.2611077921 3.5140343 -1103.1774
+137775.2611078965 3.5138373 -1103.2168
+137776.2611080008 3.5139949 -1103.3353
+137777.2611081051 3.5138769 -1103.1774
+137778.2611082094 3.513798 -1103.0984
+137779.2611083137 3.5138769 -1103.0984
+137780.261108418 3.5139163 -1103.1576
+137781.2611085223 3.513798 -1103.2168
+137782.2611086266 3.513798 -1103.197
+137783.2611087309 3.513798 -1103.0588
+137784.2611088352 3.5137587 -1103.2562
+137785.2611089395 3.5137587 -1103.1576
+137786.2611090438 3.513798 -1103.2366
+137787.2611091482 3.5136406 -1103.2366
+137788.2611092525 3.5137193 -1103.197
+137789.2611093568 3.5137193 -1103.197
+137790.2611094611 3.513798 -1103.1774
+137791.2611095654 3.5137587 -1103.197
+137792.2611096697 3.5136406 -1103.1576
+137793.261109774 3.5137193 -1103.197
+137794.2611098783 3.5137587 -1103.2761
+137795.2611099826 3.5136406 -1103.2959
+137796.2611100869 3.513562 -1103.197
+137797.2611101912 3.513562 -1103.1576
+137798.2611102955 3.5135224 -1103.1576
+137799.2611103999 3.51368 -1103.1576
+137800.2611105042 3.513483 -1103.2168
+137801.2611106085 3.513483 -1103.2366
+137802.2611107128 3.513562 -1103.2168
+137803.2611108171 3.5136013 -1103.2168
+137804.2611109214 3.513483 -1103.197
+137805.2611110257 3.5134044 -1103.2761
+137806.26111113 3.513562 -1103.197
+137807.2611112343 3.513365 -1103.2366
+137808.2611113386 3.513365 -1103.2761
+137809.2611114429 3.5134044 -1103.2168
+137810.2611115472 3.5133257 -1103.1378
+137811.2611116515 3.5133257 -1103.1182
+137812.2611117559 3.5132468 -1103.197
+137813.2611118602 3.5132468 -1103.197
+137814.2611119645 3.5132074 -1103.1378
+137815.2611120688 3.5133257 -1103.2168
+137816.2611121731 3.5132074 -1103.2168
+137817.2611122774 3.5132074 -1103.2366
+137818.2611123817 3.5132864 -1103.197
+137819.261112486 3.5130894 -1103.1378
+137820.2611125903 3.5131681 -1103.197
+137821.2611126946 3.5131288 -1103.197
+137822.2611127989 3.5131681 -1103.2168
+137823.2611129032 3.5130894 -1103.2366
+137824.2611130076 3.5130501 -1103.2168
+137825.2611131119 3.5130501 -1103.2959
+137826.2611132162 3.5130501 -1103.1378
+137827.2611133205 3.5129714 -1103.2366
+137828.2611134248 3.5129714 -1103.197
+137829.2611135291 3.5130107 -1103.2168
+137830.2611136334 3.5130501 -1103.2562
+137831.2611137377 3.5129714 -1103.197
+137832.261113842 3.5128925 -1103.3156
+137833.2611139463 3.5129318 -1103.1378
+137834.2611140506 3.5128925 -1103.2168
+137835.2611141549 3.5129318 -1103.197
+137836.2611142593 3.5129318 -1103.2168
+137837.2611143636 3.5128531 -1103.2168
+137838.2611144679 3.5128925 -1103.1774
+137839.2611145722 3.5128925 -1103.197
+137840.2611146765 3.5129318 -1103.1576
+137841.2611147808 3.5128925 -1103.197
+137842.2611148851 3.5128138 -1103.2761
+137843.2611149894 3.5128925 -1103.197
+137844.2611150937 3.5128138 -1103.1576
+137845.261115198 3.5127745 -1103.197
+137846.2611153023 3.5126958 -1103.1576
+137847.2611154066 3.5128925 -1103.1576
+137848.2611155109 3.5127745 -1103.2761
+137849.2611156153 3.5126958 -1103.2562
+137850.2611157196 3.5127351 -1103.2366
+137851.2611158239 3.5127351 -1103.2366
+137852.2611159282 3.5127745 -1103.197
+137853.2611160325 3.5126958 -1103.2366
+137854.2611161368 3.5127745 -1103.2366
+137855.2611162411 3.5125775 -1103.1576
+137856.2611163454 3.5127351 -1103.2366
+137857.2611164497 3.5126565 -1103.2366
+137858.261116554 3.5126565 -1103.1774
+137859.2611166583 3.5126565 -1103.197
+137860.2611167626 3.5126958 -1103.1774
+137861.261116867 3.5126958 -1103.197
+137862.2611169713 3.5126169 -1103.2959
+137863.2611170756 3.5126565 -1103.2562
+137864.2611171799 3.5125775 -1103.1774
+137865.2611172842 3.5125382 -1103.2761
+137866.2611173885 3.5126958 -1103.2761
+137867.2611174928 3.5126565 -1103.2562
+137868.2611175971 3.5125382 -1103.2168
+137869.2611177014 3.5126565 -1103.2366
+137870.2611178057 3.5124595 -1103.1576
+137871.26111791 3.5124595 -1103.197
+137872.2611180143 3.5125775 -1103.1774
+137873.2611181187 3.5126958 -1103.2562
+137874.261118223 3.5126169 -1103.1774
+137875.2611183273 3.5124989 -1103.1576
+137876.2611184316 3.5124989 -1103.1378
+137877.2611185359 3.5124595 -1103.3156
+137878.2611186402 3.5124202 -1103.1576
+137879.2611187445 3.5124595 -1103.197
+137880.2611188488 3.5124202 -1103.1576
+137881.2611189531 3.5124595 -1103.2562
+137882.2611190574 3.5124202 -1103.2562
+137883.2611191617 3.5124202 -1103.197
+137884.261119266 3.5124202 -1103.1576
+137885.2611193703 3.5123808 -1103.2366
+137886.2611194747 3.5123415 -1103.1576
+137887.261119579 3.5123415 -1103.2761
+137888.2611196833 3.5123019 -1103.1576
+137889.2611197876 3.5122232 -1103.1182
+137890.2611198919 3.5122232 -1103.2761
+137891.2611199962 3.5123019 -1103.0785
+137892.2611201005 3.5121839 -1103.1774
+137893.2611202048 3.5122232 -1103.2562
+137894.2611203091 3.5122626 -1103.2168
+137895.2611204134 3.5121446 -1103.197
+137896.2611205177 3.5122626 -1103.1182
+137897.261120622 3.5121839 -1103.1774
+137898.2611207264 3.5121839 -1103.1576
+137899.2611208307 3.5121446 -1103.2761
+137900.261120935 3.5120265 -1103.2366
+137901.2611210393 3.5121446 -1103.2562
+137902.2611211436 3.5121839 -1103.1576
+137903.2611212479 3.5121052 -1103.2366
+137904.2611213522 3.5120659 -1103.197
+137905.2611214565 3.5121446 -1103.2168
+137906.2611215608 3.5120659 -1103.2168
+137907.2611216651 3.5119476 -1103.197
+137908.2611217694 3.511987 -1103.197
+137909.2611218737 3.5119083 -1103.2366
+137910.2611219781 3.5119476 -1103.2761
+137911.2611220824 3.511987 -1103.2168
+137912.2611221867 3.5119083 -1103.1182
+137913.261122291 3.511987 -1103.2168
+137914.2611223953 3.5119476 -1103.2168
+137915.2611224996 3.511869 -1103.197
+137916.2611226039 3.5119476 -1103.1774
+137917.2611227082 3.511869 -1103.2168
+137918.2611228125 3.5118296 -1103.0984
+137919.2611229168 3.511869 -1103.2168
+137920.2611230211 3.511987 -1103.2562
+137921.2611231254 3.5118296 -1103.1774
+137922.2611232298 3.511869 -1103.197
+137923.2611233341 3.5119476 -1103.1774
+137924.2611234384 3.511869 -1103.3156
+137925.2611235427 3.5118296 -1103.2168
+137926.261123647 3.511869 -1103.1774
+137927.2611237513 3.511869 -1103.1378
+137928.2611238556 3.5117903 -1103.1774
+137929.2611239599 3.5118296 -1103.1774
+137930.2611240642 3.5117116 -1103.197
+137931.2611241685 3.511672 -1103.2562
+137932.2611242728 3.5117116 -1103.2366
+137933.2611243771 3.5116327 -1103.2761
+137934.2611244814 3.5115933 -1103.197
+137935.2611245858 3.5115147 -1103.2168
+137936.2611246901 3.5116327 -1103.2168
+137937.2611247944 3.5115147 -1103.2959
+137938.2611248987 3.5115933 -1103.2168
+137939.261125003 3.5116327 -1103.2366
+137940.2611251073 3.5114753 -1103.2168
+137941.2611252116 3.511554 -1103.1774
+137942.2611253159 3.5115147 -1103.2168
+137943.2611254202 3.5115147 -1103.197
+137944.2611255245 3.5114753 -1103.197
+137945.2611256288 3.5114753 -1103.1576
+137946.2611257331 3.5114753 -1103.1182
+137947.2611258375 3.5113964 -1103.2761
+137948.2611259418 3.5114753 -1103.3749
+137949.2611260461 3.5113177 -1103.2168
+137950.2611261504 3.5113177 -1103.2366
+137951.2611262547 3.5113964 -1103.2562
+137952.261126359 3.5113964 -1103.1774
+137953.2611264633 3.5113177 -1103.1774
+137954.2611265676 3.5112784 -1103.2168
+137955.2611266719 3.5113964 -1103.2562
+137956.2611267762 3.5112391 -1103.0984
+137957.2611268805 3.511121 -1103.2562
+137958.2611269848 3.5112784 -1103.197
+137959.2611270892 3.5112391 -1103.1378
+137960.2611271935 3.511121 -1103.197
+137961.2611272978 3.5112784 -1103.1774
+137962.2611274021 3.5112391 -1103.2562
+137963.2611275064 3.5111604 -1103.2959
+137964.2611276107 3.5112391 -1103.1576
+137965.261127715 3.511121 -1103.197
+137966.2611278193 3.5111604 -1103.2366
+137967.2611279236 3.511121 -1103.197
+137968.2611280279 3.5110815 -1103.1774
+137969.2611281322 3.511121 -1103.1774
+137970.2611282365 3.5110421 -1103.1378
+137971.2611283408 3.5110028 -1103.197
+137972.2611284452 3.5110815 -1103.1774
+137973.2611285495 3.5110815 -1103.2168
+137974.2611286538 3.5109634 -1103.1182
+137975.2611287581 3.5110421 -1103.197
+137976.2611288624 3.5109634 -1103.2562
+137977.2611289667 3.5110421 -1103.1774
+137978.261129071 3.5109634 -1103.2366
+137979.2611291753 3.5109634 -1103.1774
+137980.2611292796 3.5110028 -1103.1576
+137981.2611293839 3.5110028 -1103.2366
+137982.2611294882 3.5110421 -1103.1576
+137983.2611295925 3.5109241 -1103.197
+137984.2611296969 3.5108061 -1103.1182
+137985.2611298012 3.5108454 -1103.2562
+137986.2611299055 3.5108454 -1103.2562
+137987.2611300098 3.5108061 -1103.2562
+137988.2611301141 3.5108454 -1103.1774
+137989.2611302184 3.5108454 -1103.197
+137990.2611303227 3.5107665 -1103.2168
+137991.261130427 3.5108061 -1103.1576
+137992.2611305313 3.5108061 -1103.2366
+137993.2611306356 3.5107665 -1103.197
+137994.2611307399 3.5107665 -1103.1576
+137995.2611308442 3.5107665 -1103.2562
+137996.2611309486 3.5106878 -1103.2761
+137997.2611310529 3.5107272 -1103.2562
+137998.2611311572 3.5107272 -1103.2562
+137999.2611312615 3.5106878 -1103.2562
+138000.2611313658 3.5107272 -1103.1774
+138001.2611314701 3.5106485 -1103.197
+138002.2611315744 3.5106485 -1103.1774
+138003.2611316787 3.5106091 -1103.2366
+138004.261131783 3.5106485 -1103.2562
+138005.2611318873 3.5106485 -1103.1576
+138006.2611319916 3.5106485 -1103.1774
+138007.2611320959 3.5104911 -1103.2761
+138008.2611322002 3.5105305 -1103.2366
+138009.2611323046 3.5104122 -1103.197
+138010.2611324089 3.5103729 -1103.1378
+138011.2611325132 3.5103729 -1103.197
+138012.2611326175 3.5104516 -1103.197
+138013.2611327218 3.5103729 -1103.2168
+138014.2611328261 3.5104122 -1103.197
+138015.2611329304 3.5104516 -1103.2168
+138016.2611330347 3.5104122 -1103.1576
+138017.261133139 3.5103729 -1103.1774
+138018.2611332433 3.5104122 -1103.1576
+138019.2611333476 3.5103335 -1103.1378
+138020.2611334519 3.5104122 -1103.2366
+138021.2611335563 3.5103335 -1103.2168
+138022.2611336606 3.5102549 -1103.2168
+138023.2611337649 3.5102942 -1103.1576
+138024.2611338692 3.5102942 -1103.1378
+138025.2611339735 3.5102549 -1103.2761
+138026.2611340778 3.5102549 -1103.1576
+138027.2611341821 3.5102155 -1103.1774
+138028.2611342864 3.5103335 -1103.1576
+138029.2611343907 3.5102942 -1103.1378
+138030.261134495 3.5102549 -1103.2562
+138031.2611345993 3.5102549 -1103.197
+138032.2611347036 3.5102155 -1103.2562
+138033.261134808 3.5101366 -1103.197
+138034.2611349123 3.5101762 -1103.197
+138035.2611350166 3.5100973 -1103.197
+138036.2611351209 3.5100579 -1103.2562
+138037.2611352252 3.5100579 -1103.1774
+138038.2611353295 3.5099792 -1103.197
+138039.2611354338 3.5100186 -1103.1774
+138040.2611355381 3.5100186 -1103.2168
+138041.2611356424 3.5100579 -1103.2761
+138042.2611357467 3.5100186 -1103.2366
+138043.261135851 3.5099399 -1103.2366
+138044.2611359553 3.5099006 -1103.1576
+138045.2611360596 3.5099792 -1103.2168
+138046.261136164 3.5098612 -1103.2366
+138047.2611362683 3.5099006 -1103.197
+138048.2611363726 3.509743 -1103.2366
+138049.2611364769 3.5098612 -1103.2366
+138050.2611365812 3.5099792 -1103.2168
+138051.2611366855 3.5099006 -1103.1774
+138052.2611367898 3.5097823 -1103.2168
+138053.2611368941 3.5098612 -1103.2761
+138054.2611369984 3.5097823 -1103.197
+138055.2611371027 3.5099792 -1103.2761
+138056.261137207 3.5097823 -1103.0984
+138057.2611373113 3.5097823 -1103.2761
+138058.2611374157 3.509743 -1103.1182
+138059.26113752 3.5098217 -1103.197
+138060.2611376243 3.5098612 -1103.2366
+138061.2611377286 3.5097823 -1103.2168
+138062.2611378329 3.5096643 -1103.1774
+138063.2611379372 3.5096643 -1103.2761
+138064.2611380415 3.5095856 -1103.197
+138065.2611381458 3.509625 -1103.1774
+138066.2611382501 3.509625 -1103.197
+138067.2611383544 3.5096643 -1103.1182
+138068.2611384587 3.509625 -1103.2366
+138069.261138563 3.509625 -1103.1576
+138070.2611386674 3.5095856 -1103.2366
+138071.2611387717 3.509546 -1103.1774
+138072.261138876 3.509625 -1103.2366
+138073.2611389803 3.509546 -1103.2761
+138074.2611390846 3.5095856 -1103.2168
+138075.2611391889 3.509546 -1103.2366
+138076.2611392932 3.5094674 -1103.197
+138077.2611393975 3.5094674 -1103.1378
+138078.2611395018 3.5094674 -1103.2959
+138079.2611396061 3.5095067 -1103.2959
+138080.2611397104 3.5094674 -1103.0984
+138081.2611398147 3.509428 -1103.2562
+138082.2611399191 3.50931 -1103.1774
+138083.2611400234 3.5093493 -1103.2168
+138084.2611401277 3.5093493 -1103.2366
+138085.261140232 3.5092707 -1103.1182
+138086.2611403363 3.5093887 -1103.2168
+138087.2611404406 3.5091918 -1103.1378
+138088.2611405449 3.5092707 -1103.2366
+138089.2611406492 3.5092707 -1103.197
+138090.2611407535 3.5092311 -1103.2562
+138091.2611408578 3.5092311 -1103.2761
+138092.2611409621 3.50931 -1103.1774
+138093.2611410664 3.5091918 -1103.197
+138094.2611411707 3.5092707 -1103.2168
+138095.2611412751 3.5092311 -1103.1774
+138096.2611413794 3.5092707 -1103.1774
+138097.2611414837 3.5091524 -1103.2366
+138098.261141588 3.5091918 -1103.1576
+138099.2611416923 3.5091131 -1103.2168
+138100.2611417966 3.5090344 -1103.1378
+138101.2611419009 3.5090344 -1103.1576
+138102.2611420052 3.5090737 -1103.1774
+138103.2611421095 3.5089951 -1103.1774
+138104.2611422138 3.5091131 -1103.2959
+138105.2611423181 3.5089557 -1103.197
+138106.2611424224 3.5090344 -1103.2168
+138107.2611425268 3.5089951 -1103.2562
+138108.2611426311 3.5090344 -1103.2562
+138109.2611427354 3.5089161 -1103.3156
+138110.2611428397 3.5089557 -1103.2761
+138111.261142944 3.5088768 -1103.2366
+138112.2611430483 3.5090344 -1103.2366
+138113.2611431526 3.5089161 -1103.2562
+138114.2611432569 3.5088768 -1103.2168
+138115.2611433612 3.5088768 -1103.2366
+138116.2611434655 3.5088375 -1103.2562
+138117.2611435698 3.5088768 -1103.1378
+138118.2611436741 3.5089951 -1103.3551
+138119.2611437785 3.5088375 -1103.1182
+138120.2611438828 3.5088375 -1103.2959
+138121.2611439871 3.5086801 -1103.2168
+138122.2611440914 3.5088375 -1103.197
+138123.2611441957 3.5087194 -1103.1774
+138124.2611443 3.5087194 -1103.1378
+138125.2611444043 3.5086801 -1103.2366
+138126.2611445086 3.5086408 -1103.0984
+138127.2611446129 3.5086801 -1103.1576
+138128.2611447172 3.5086801 -1103.2168
+138129.2611448215 3.5086408 -1103.2366
+138130.2611449258 3.5086801 -1103.0785
+138131.2611450301 3.5086408 -1103.1576
+138132.2611451345 3.5085618 -1103.2366
+138133.2611452388 3.5086408 -1103.2562
+138134.2611453431 3.5086012 -1103.1774
+138135.2611454474 3.5085618 -1103.197
+138136.2611455517 3.5085618 -1103.1378
+138137.261145656 3.5085618 -1103.197
+138138.2611457603 3.5084832 -1103.1576
+138139.2611458646 3.5085225 -1103.197
+138140.2611459689 3.5084832 -1103.2366
+138141.2611460732 3.5084832 -1103.2366
+138142.2611461775 3.5083652 -1103.197
+138143.2611462818 3.5083258 -1103.197
+138144.2611463862 3.5083652 -1103.2366
+138145.2611464905 3.5084045 -1103.1774
+138146.2611465948 3.5084045 -1103.2761
+138147.2611466991 3.5083652 -1103.197
+138148.2611468034 3.5083258 -1103.1774
+138149.2611469077 3.5084438 -1103.2761
+138150.261147012 3.5083258 -1103.2168
+138151.2611471163 3.5082076 -1103.3156
+138152.2611472206 3.5083652 -1103.197
+138153.2611473249 3.5082076 -1103.197
+138154.2611474292 3.5084045 -1103.197
+138155.2611475335 3.5083652 -1103.2761
+138156.2611476379 3.5082469 -1103.2562
+138157.2611477422 3.5082076 -1103.1576
+138158.2611478465 3.5081682 -1103.2761
+138159.2611479508 3.5082076 -1103.2168
+138160.2611480551 3.5082076 -1103.2562
+138161.2611481594 3.5081289 -1103.197
+138162.2611482637 3.5081682 -1103.2168
+138163.261148368 3.5081289 -1103.1774
+138164.2611484723 3.5080895 -1103.1182
+138165.2611485766 3.5081289 -1103.2959
+138166.2611486809 3.5080502 -1103.2761
+138167.2611487852 3.5079713 -1103.3156
+138168.2611488895 3.5080502 -1103.1576
+138169.2611489939 3.5080106 -1103.2366
+138170.2611490982 3.5079319 -1103.2168
+138171.2611492025 3.5079319 -1103.197
+138172.2611493068 3.5079713 -1103.2366
+138173.2611494111 3.5079713 -1103.2562
+138174.2611495154 3.5079319 -1103.2168
+138175.2611496197 3.5078139 -1103.1576
+138176.261149724 3.5078926 -1103.2366
+138177.2611498283 3.5078533 -1103.2761
+138178.2611499326 3.5078926 -1103.1774
+138179.2611500369 3.5079319 -1103.197
+138180.2611501412 3.5078139 -1103.197
+138181.2611502456 3.5078139 -1103.1576
+138182.2611503499 3.5078533 -1103.2168
+138183.2611504542 3.5077746 -1103.2562
+138184.2611505585 3.5078533 -1103.1182
+138185.2611506628 3.5076957 -1103.2366
+138186.2611507671 3.5078139 -1103.0984
+138187.2611508714 3.5078926 -1103.2366
+138188.2611509757 3.5077353 -1103.2562
+138189.26115108 3.5076957 -1103.2761
+138190.2611511843 3.5076957 -1103.1774
+138191.2611512886 3.5076563 -1103.197
+138192.2611513929 3.5077746 -1103.2562
+138193.2611514973 3.507617 -1103.2366
+138194.2611516016 3.5077353 -1103.2562
+138195.2611517059 3.507617 -1103.2959
+138196.2611518102 3.5076563 -1103.2168
+138197.2611519145 3.507499 -1103.197
+138198.2611520188 3.5076957 -1103.2562
+138199.2611521231 3.507617 -1103.1774
+138200.2611522274 3.5075383 -1103.1774
+138201.2611523317 3.5076563 -1103.2562
+138202.261152436 3.507499 -1103.2168
+138203.2611525403 3.507617 -1103.2168
+138204.2611526446 3.5075777 -1103.1182
+138205.261152749 3.5076563 -1103.197
+138206.2611528533 3.5075383 -1103.197
+138207.2611529576 3.5076563 -1103.1576
+138208.2611530619 3.507617 -1103.1378
+138209.2611531662 3.5075777 -1103.197
+138210.2611532705 3.5074596 -1103.2168
+138211.2611533748 3.5074596 -1103.1774
+138212.2611534791 3.507499 -1103.2168
+138213.2611535834 3.5074596 -1103.2168
+138214.2611536877 3.5074203 -1103.2168
+138215.261153792 3.5074596 -1103.2761
+138216.2611538963 3.5074203 -1103.1774
+138217.2611540006 3.5073414 -1103.1576
+138218.261154105 3.5074203 -1103.1774
+138219.2611542093 3.5074596 -1103.1378
+138220.2611543136 3.5073807 -1103.1576
+138221.2611544179 3.5073414 -1103.2761
+138222.2611545222 3.5073414 -1103.2562
+138223.2611546265 3.507302 -1103.197
+138224.2611547308 3.5073414 -1103.1774
+138225.2611548351 3.507302 -1103.2761
+138226.2611549394 3.507184 -1103.1182
+138227.2611550437 3.5072627 -1103.2562
+138228.261155148 3.5072627 -1103.2761
+138229.2611552523 3.507302 -1103.3156
+138230.2611553567 3.5072234 -1103.2366
+138231.261155461 3.507184 -1103.2168
+138232.2611555653 3.5071447 -1103.2366
+138233.2611556696 3.5071447 -1103.2761
+138234.2611557739 3.5071447 -1103.2168
+138235.2611558782 3.507184 -1103.2959
+138236.2611559825 3.5071447 -1103.1576
+138237.2611560868 3.5070658 -1103.2562
+138238.2611561911 3.5070264 -1103.2562
+138239.2611562954 3.5069871 -1103.1576
+138240.2611563997 3.5070264 -1103.2562
+138241.261156504 3.5070264 -1103.2761
+138242.2611566084 3.5070658 -1103.2168
+138243.2611567127 3.5069871 -1103.197
+138244.261156817 3.5069871 -1103.197
+138245.2611569213 3.5069871 -1103.2562
+138246.2611570256 3.5069478 -1103.2168
+138247.2611571299 3.5069478 -1103.2168
+138248.2611572342 3.5069084 -1103.2366
+138249.2611573385 3.5069871 -1103.1774
+138250.2611574428 3.5069478 -1103.2168
+138251.2611575471 3.5069478 -1103.1774
+138252.2611576514 3.5069478 -1103.2168
+138253.2611577557 3.5068297 -1103.1774
+138254.26115786 3.5068691 -1103.1774
+138255.2611579644 3.5069478 -1103.197
+138256.2611580687 3.5069478 -1103.2168
+138257.261158173 3.5069084 -1103.1774
+138258.2611582773 3.5068297 -1103.2168
+138259.2611583816 3.5067904 -1103.1774
+138260.2611584859 3.5068691 -1103.2366
+138261.2611585902 3.5067508 -1103.2168
+138262.2611586945 3.5067508 -1103.2562
+138263.2611587988 3.5067904 -1103.1576
+138264.2611589031 3.5069084 -1103.2959
+138265.2611590074 3.5067904 -1103.197
+138266.2611591117 3.5067508 -1103.2761
+138267.2611592161 3.5066328 -1103.197
+138268.2611593204 3.5067115 -1103.2562
+138269.2611594247 3.5065935 -1103.2168
+138270.261159529 3.5067115 -1103.197
+138271.2611596333 3.5065541 -1103.2366
+138272.2611597376 3.5066721 -1103.197
+138273.2611598419 3.5066328 -1103.2562
+138274.2611599462 3.5066328 -1103.2168
+138275.2611600505 3.5065541 -1103.1576
+138276.2611601548 3.5066328 -1103.1576
+138277.2611602591 3.5065541 -1103.1378
+138278.2611603634 3.5065148 -1103.2562
+138279.2611604678 3.5064754 -1103.1576
+138280.2611605721 3.5065148 -1103.2168
+138281.2611606764 3.5065148 -1103.1378
+138282.2611607807 3.5064754 -1103.2562
+138283.261160885 3.5064754 -1103.2366
+138284.2611609893 3.5064754 -1103.197
+138285.2611610936 3.5063965 -1103.1774
+138286.2611611979 3.5064359 -1103.2366
+138287.2611613022 3.5063179 -1103.2168
+138288.2611614065 3.5063965 -1103.2562
+138289.2611615108 3.5063572 -1103.2562
+138290.2611616151 3.5062392 -1103.197
+138291.2611617194 3.5063179 -1103.2366
+138292.2611618238 3.5063179 -1103.2168
+138293.2611619281 3.5063965 -1103.197
+138294.2611620324 3.5063572 -1103.2562
+138295.2611621367 3.5062392 -1103.1576
+138296.261162241 3.5062785 -1103.2562
+138297.2611623453 3.5063179 -1103.2761
+138298.2611624496 3.5063179 -1103.1774
+138299.2611625539 3.5061603 -1103.197
+138300.2611626582 3.5061209 -1103.1576
+138301.2611627625 3.5061209 -1103.2366
+138302.2611628668 3.5061998 -1103.2366
+138303.2611629711 3.5062392 -1103.1774
+138304.2611630755 3.5061603 -1103.197
+138305.2611631798 3.5062392 -1103.2168
+138306.2611632841 3.5060816 -1103.2959
+138307.2611633884 3.5061603 -1103.2168
+138308.2611634927 3.5060422 -1103.197
+138309.261163597 3.5061603 -1103.1774
+138310.2611637013 3.5061603 -1103.2761
+138311.2611638056 3.5061209 -1103.2761
+138312.2611639099 3.5060029 -1103.0984
+138313.2611640142 3.5061209 -1103.197
+138314.2611641185 3.5060816 -1103.2168
+138315.2611642228 3.5059636 -1103.2959
+138316.2611643272 3.5058849 -1103.2366
+138317.2611644315 3.5059636 -1103.1774
+138318.2611645358 3.5059242 -1103.2168
+138319.2611646401 3.5060029 -1103.2168
+138320.2611647444 3.5058849 -1103.1576
+138321.2611648487 3.5059242 -1103.1774
+138322.261164953 3.5059242 -1103.197
+138323.2611650573 3.5058849 -1103.1576
+138324.2611651616 3.5058849 -1103.2366
+138325.2611652659 3.5059636 -1103.1378
+138326.2611653702 3.5059242 -1103.1774
+138327.2611654745 3.5058453 -1103.197
+138328.2611655789 3.505806 -1103.197
+138329.2611656832 3.5057273 -1103.1378
+138330.2611657875 3.505688 -1103.197
+138331.2611658918 3.5058849 -1103.2168
+138332.2611659961 3.5057666 -1103.197
+138333.2611661004 3.505806 -1103.197
+138334.2611662047 3.505688 -1103.1576
+138335.261166309 3.505688 -1103.197
+138336.2611664133 3.505688 -1103.1774
+138337.2611665176 3.5056486 -1103.197
+138338.2611666219 3.5056093 -1103.1576
+138339.2611667262 3.5056486 -1103.1378
+138340.2611668305 3.5056093 -1103.1378
+138341.2611669349 3.5055699 -1103.2168
+138342.2611670392 3.5055699 -1103.2168
+138343.2611671435 3.5055304 -1103.1774
+138344.2611672478 3.5055304 -1103.1774
+138345.2611673521 3.505491 -1103.2168
+138346.2611674564 3.505373 -1103.2168
+138347.2611675607 3.5054517 -1103.1576
+138348.261167665 3.5054123 -1103.1774
+138349.2611677693 3.5052943 -1103.2168
+138350.2611678736 3.5052943 -1103.1576
+138351.2611679779 3.5052943 -1103.1182
+138352.2611680822 3.5053337 -1103.1774
+138353.2611681866 3.505373 -1103.2168
+138354.2611682909 3.505255 -1103.197
+138355.2611683952 3.5052943 -1103.2168
+138356.2611684995 3.5052154 -1103.1576
+138357.2611686038 3.5052154 -1103.1774
+138358.2611687081 3.5052154 -1103.2168
+138359.2611688124 3.5051761 -1103.2761
+138360.2611689167 3.5052154 -1103.1576
+138361.261169021 3.5051367 -1103.1378
+138362.2611691253 3.5053337 -1103.2168
+138363.2611692296 3.5050974 -1103.1182
+138364.2611693339 3.5051367 -1103.2562
+138365.2611694383 3.5051367 -1103.2562
+138366.2611695426 3.5051367 -1103.2168
+138367.2611696469 3.5050974 -1103.1182
+138368.2611697512 3.5052154 -1103.2168
+138369.2611698555 3.5050581 -1103.0984
+138370.2611699598 3.5050187 -1103.1576
+138371.2611700641 3.5050974 -1103.1378
+138372.2611701684 3.5050187 -1103.1378
+138373.2611702727 3.5050187 -1103.1774
+138374.261170377 3.5050581 -1103.197
+138375.2611704813 3.5050187 -1103.1774
+138376.2611705856 3.50494 -1103.1378
+138377.2611706899 3.5049005 -1103.2366
+138378.2611707943 3.5049005 -1103.1774
+138379.2611708986 3.5048611 -1103.2168
+138380.2611710029 3.5048218 -1103.1774
+138381.2611711072 3.5048611 -1103.1576
+138382.2611712115 3.5049005 -1103.197
+138383.2611713158 3.5048611 -1103.2366
+138384.2611714201 3.5048218 -1103.197
+138385.2611715244 3.5048218 -1103.1576
+138386.2611716287 3.5047824 -1103.197
+138387.261171733 3.5048218 -1103.2168
+138388.2611718373 3.5047824 -1103.1576
+138389.2611719416 3.5047431 -1103.1774
+138390.261172046 3.5047824 -1103.1576
+138391.2611721503 3.5047824 -1103.2168
+138392.2611722546 3.5047038 -1103.1774
+138393.2611723589 3.5047824 -1103.2366
+138394.2611724632 3.5047824 -1103.1774
+138395.2611725675 3.5047431 -1103.1774
+138396.2611726718 3.5048218 -1103.197
+138397.2611727761 3.5047038 -1103.1182
+138398.2611728804 3.5047431 -1103.2168
+138399.2611729847 3.5047431 -1103.1774
+138400.261173089 3.5046644 -1103.1576
+138401.2611731933 3.5047431 -1103.1378
+138402.2611732977 3.5047038 -1103.2168
+138403.261173402 3.5045855 -1103.1182
+138404.2611735063 3.5045462 -1103.1378
+138405.2611736106 3.5045462 -1103.0785
+138406.2611737149 3.5047824 -1103.197
+138407.2611738192 3.5046644 -1103.197
+138408.2611739235 3.5046251 -1103.1378
+138409.2611740278 3.5045855 -1103.2761
+138410.2611741321 3.5045855 -1103.1576
+138411.2611742364 3.5046251 -1103.2562
+138412.2611743407 3.5045462 -1103.2366
+138413.261174445 3.5045855 -1103.2366
+138414.2611745493 3.5045068 -1103.197
+138415.2611746537 3.5045068 -1103.1182
+138416.261174758 3.5045462 -1103.2168
+138417.2611748623 3.5044675 -1103.1378
+138418.2611749666 3.5045462 -1103.2168
+138419.2611750709 3.5045855 -1103.197
+138420.2611751752 3.5045462 -1103.1774
+138421.2611752795 3.5045462 -1103.2168
+138422.2611753838 3.5045068 -1103.2168
+138423.2611754881 3.5044281 -1103.1576
+138424.2611755924 3.5045462 -1103.2366
+138425.2611756967 3.5044281 -1103.2168
+138426.261175801 3.5045068 -1103.1774
+138427.2611759054 3.5043495 -1103.2168
+138428.2611760097 3.5044281 -1103.1576
+138429.261176114 3.5043099 -1103.0785
+138430.2611762183 3.5043099 -1103.1774
+138431.2611763226 3.5043099 -1103.1576
+138432.2611764269 3.5043099 -1103.1774
+138433.2611765312 3.5042706 -1103.1576
+138434.2611766355 3.5043099 -1103.2959
+138435.2611767398 3.5042706 -1103.197
+138436.2611768441 3.5041919 -1103.2168
+138437.2611769484 3.5042312 -1103.197
+138438.2611770527 3.5043099 -1103.2562
+138439.2611771571 3.5042312 -1103.2366
+138440.2611772614 3.5041132 -1103.0785
+138441.2611773657 3.5041919 -1103.1378
+138442.26117747 3.5041132 -1103.1774
+138443.2611775743 3.5040345 -1103.1576
+138444.2611776786 3.5041132 -1103.1576
+138445.2611777829 3.5040345 -1103.1576
+138446.2611778872 3.5040345 -1103.1774
+138447.2611779915 3.5039556 -1103.2562
+138448.2611780958 3.5040345 -1103.1576
+138449.2611782001 3.5039556 -1103.2761
+138450.2611783044 3.5039163 -1103.2168
+138451.2611784087 3.5038769 -1103.1182
+138452.2611785131 3.5038769 -1103.2168
+138453.2611786174 3.5038376 -1103.2562
+138454.2611787217 3.5037982 -1103.1576
+138455.261178826 3.5037196 -1103.1576
+138456.2611789303 3.5037196 -1103.2562
+138457.2611790346 3.5037589 -1103.1774
+138458.2611791389 3.5037196 -1103.2562
+138459.2611792432 3.5036013 -1103.197
+138460.2611793475 3.5037196 -1103.197
+138461.2611794518 3.5036013 -1103.2366
+138462.2611795561 3.5036013 -1103.1378
+138463.2611796604 3.503444 -1103.197
+138464.2611797648 3.5035226 -1103.197
+138465.2611798691 3.5034833 -1103.1774
+138466.2611799734 3.5034833 -1103.1774
+138467.2611800777 3.5034046 -1103.1576
+138468.261180182 3.5034046 -1103.2168
+138469.2611802863 3.503444 -1103.2366
+138470.2611803906 3.503365 -1103.1774
+138471.2611804949 3.503444 -1103.197
+138472.2611805992 3.503247 -1103.1576
+138473.2611807035 3.503365 -1103.1774
+138474.2611808078 3.503365 -1103.1774
+138475.2611809121 3.5032864 -1103.1576
+138476.2611810165 3.5033257 -1103.1576
+138477.2611811208 3.5032864 -1103.0984
+138478.2611812251 3.5032864 -1103.2168
+138479.2611813294 3.5032864 -1103.1774
+138480.2611814337 3.503247 -1103.1774
+138481.261181538 3.5033257 -1103.1576
+138482.2611816423 3.503247 -1103.2761
+138483.2611817466 3.503247 -1103.1182
+138484.2611818509 3.503129 -1103.0984
+138485.2611819552 3.5031683 -1103.1774
+138486.2611820595 3.5032077 -1103.1774
+138487.2611821638 3.5031683 -1103.2366
+138488.2611822682 3.5031683 -1103.197
+138489.2611823725 3.5032077 -1103.1576
+138490.2611824768 3.5032864 -1103.197
+138491.2611825811 3.5031683 -1103.1576
+138492.2611826854 3.5030897 -1103.2761
+138493.2611827897 3.503129 -1103.1576
+138494.261182894 3.5031683 -1103.1774
+138495.2611829983 3.5030897 -1103.197
+138496.2611831026 3.5032077 -1103.2562
+138497.2611832069 3.503129 -1103.1576
+138498.2611833112 3.5031683 -1103.2366
+138499.2611834155 3.5030897 -1103.2168
+138500.2611835198 3.503129 -1103.197
+138501.2611836242 3.503129 -1103.197
+138502.2611837285 3.5031683 -1103.197
+138503.2611838328 3.5030501 -1103.1774
+138504.2611839371 3.503129 -1103.1378
+138505.2611840414 3.5030897 -1103.1774
+138506.2611841457 3.5030501 -1103.2366
+138507.26118425 3.5031683 -1103.1576
+138508.2611843543 3.5030897 -1103.2562
+138509.2611844586 3.5029714 -1103.1774
+138510.2611845629 3.5029714 -1103.197
+138511.2611846672 3.5030107 -1103.1774
+138512.2611847715 3.5030501 -1103.3156
+138513.2611848759 3.5030107 -1103.197
+138514.2611849802 3.5029714 -1103.1576
+138515.2611850845 3.5030107 -1103.1576
+138516.2611851888 3.5030501 -1103.2959
+138517.2611852931 3.5030107 -1103.2562
+138518.2611853974 3.5029714 -1103.1576
+138519.2611855017 3.5030107 -1103.1378
+138520.261185606 3.5029321 -1103.1774
+138521.2611857103 3.5028927 -1103.1576
+138522.2611858146 3.5029321 -1103.1576
+138523.2611859189 3.5029321 -1103.2562
+138524.2611860232 3.5028141 -1103.2168
+138525.2611861276 3.5029321 -1103.2366
+138526.2611862319 3.5028141 -1103.2366
+138527.2611863362 3.5028927 -1103.1378
+138528.2611864405 3.5028927 -1103.2168
+138529.2611865448 3.5029321 -1103.2761
+138530.2611866491 3.5028534 -1103.197
+138531.2611867534 3.5027351 -1103.2366
+138532.2611868577 3.5027351 -1103.1774
+138533.261186962 3.5026565 -1103.1774
+138534.2611870663 3.5028141 -1103.1378
+138535.2611871706 3.5026565 -1103.197
+138536.2611872749 3.5027351 -1103.197
+138537.2611873792 3.5026958 -1103.1576
+138538.2611874836 3.5026171 -1103.197
+138539.2611875879 3.5027351 -1103.2168
+138540.2611876922 3.5026565 -1103.1182
+138541.2611877965 3.5027351 -1103.2959
+138542.2611879008 3.5026958 -1103.1774
+138543.2611880051 3.5026171 -1103.2562
+138544.2611881094 3.5025778 -1103.1576
+138545.2611882137 3.5026565 -1103.197
+138546.261188318 3.5026565 -1103.1182
+138547.2611884223 3.5026171 -1103.197
+138548.2611885266 3.5025778 -1103.2168
+138549.2611886309 3.5026171 -1103.197
+138550.2611887353 3.5024991 -1103.1774
+138551.2611888396 3.5024991 -1103.1774
+138552.2611889439 3.5024991 -1103.2168
+138553.2611890482 3.5024595 -1103.1576
+138554.2611891525 3.5025384 -1103.2562
+138555.2611892568 3.5024202 -1103.1182
+138556.2611893611 3.5024595 -1103.3156
+138557.2611894654 3.5024991 -1103.1182
+138558.2611895697 3.5024595 -1103.197
+138559.261189674 3.5023022 -1103.2959
+138560.2611897783 3.5023808 -1103.2959
+138561.2611898826 3.5023415 -1103.197
+138562.261189987 3.5023022 -1103.1182
+138563.2611900913 3.5023808 -1103.1774
+138564.2611901956 3.5023022 -1103.1576
+138565.2611902999 3.5023808 -1103.2168
+138566.2611904042 3.5023022 -1103.1774
+138567.2611905085 3.5024202 -1103.1774
+138568.2611906128 3.5023022 -1103.2761
+138569.2611907171 3.5022628 -1103.1774
+138570.2611908214 3.5023022 -1103.2366
+138571.2611909257 3.5021842 -1103.197
+138572.26119103 3.5021446 -1103.2168
+138573.2611911343 3.5021446 -1103.1576
+138574.2611912386 3.5021842 -1103.1774
+138575.261191343 3.5021842 -1103.1378
+138576.2611914473 3.5021446 -1103.1774
+138577.2611915516 3.5020659 -1103.1378
+138578.2611916559 3.5021446 -1103.1576
+138579.2611917602 3.5021052 -1103.1378
+138580.2611918645 3.5021052 -1103.197
+138581.2611919688 3.5020659 -1103.2168
+138582.2611920731 3.5020266 -1103.2562
+138583.2611921774 3.5021446 -1103.1182
+138584.2611922817 3.5020659 -1103.1774
+138585.261192386 3.5019479 -1103.2562
+138586.2611924903 3.5019479 -1103.2761
+138587.2611925947 3.5019479 -1103.0984
+138588.261192699 3.5019872 -1103.197
+138589.2611928033 3.5018692 -1103.2366
+138590.2611929076 3.5020266 -1103.2959
+138591.2611930119 3.5019479 -1103.1576
+138592.2611931162 3.5019479 -1103.2168
+138593.2611932205 3.5018692 -1103.1576
+138594.2611933248 3.5019479 -1103.1774
+138595.2611934291 3.5019085 -1103.2761
+138596.2611935334 3.5018296 -1103.0785
+138597.2611936377 3.5018692 -1103.1774
+138598.261193742 3.5017903 -1103.197
+138599.2611938464 3.5017903 -1103.197
+138600.2611939507 3.5019085 -1103.197
+138601.261194055 3.5018692 -1103.2959
+138602.2611941593 3.5017903 -1103.0984
+138603.2611942636 3.5017903 -1103.2168
+138604.2611943679 3.5018296 -1103.2366
+138605.2611944722 3.5017903 -1103.0984
+138606.2611945765 3.5018296 -1103.1378
+138607.2611946808 3.5018692 -1103.1774
+138608.2611947851 3.5017509 -1103.197
+138609.2611948894 3.5017509 -1103.2761
+138610.2611949937 3.5018692 -1103.1774
+138611.2611950981 3.5017509 -1103.1774
+138612.2611952024 3.5017116 -1103.197
+138613.2611953067 3.5017903 -1103.2366
+138614.261195411 3.5017903 -1103.2168
+138615.2611955153 3.5017903 -1103.2168
+138616.2611956196 3.5016723 -1103.197
+138617.2611957239 3.5017509 -1103.2959
+138618.2611958282 3.5016723 -1103.2168
+138619.2611959325 3.5017509 -1103.1378
+138620.2611960368 3.5017116 -1103.197
+138621.2611961411 3.5017509 -1103.2562
+138622.2611962454 3.5017116 -1103.1576
+138623.2611963497 3.5015936 -1103.197
+138624.2611964541 3.5016723 -1103.0984
+138625.2611965584 3.5016723 -1103.3156
+138626.2611966627 3.5016723 -1103.1774
+138627.261196767 3.5016329 -1103.197
+138628.2611968713 3.5017116 -1103.1378
+138629.2611969756 3.5015543 -1103.2168
+138630.2611970799 3.5015543 -1103.1576
+138631.2611971842 3.5015936 -1103.2959
+138632.2611972885 3.5015543 -1103.197
+138633.2611973928 3.5014753 -1103.2168
+138634.2611974971 3.5014753 -1103.2366
+138635.2611976014 3.5015543 -1103.2366
+138636.2611977058 3.5014753 -1103.1378
+138637.2611978101 3.5015543 -1103.2168
+138638.2611979144 3.5015543 -1103.2366
+138639.2611980187 3.501436 -1103.0984
+138640.261198123 3.501436 -1103.1576
+138641.2611982273 3.5013967 -1103.2366
+138642.2611983316 3.5014753 -1103.1576
+138643.2611984359 3.5013573 -1103.1774
+138644.2611985402 3.501318 -1103.1378
+138645.2611986445 3.501436 -1103.1576
+138646.2611987488 3.5013573 -1103.197
+138647.2611988531 3.501318 -1103.1378
+138648.2611989575 3.5013967 -1103.1774
+138649.2611990618 3.5012786 -1103.197
+138650.2611991661 3.501318 -1103.1182
+138651.2611992704 3.501318 -1103.2168
+138652.2611993747 3.501318 -1103.2562
+138653.261199479 3.5012786 -1103.197
+138654.2611995833 3.5011604 -1103.3156
+138655.2611996876 3.5012393 -1103.197
+138656.2611997919 3.5011997 -1103.2959
+138657.2611998962 3.5011604 -1103.197
+138658.2612000005 3.5011604 -1103.1182
+138659.2612001048 3.5011604 -1103.2562
+138660.2612002091 3.501121 -1103.197
+138661.2612003135 3.501121 -1103.197
+138662.2612004178 3.5011604 -1103.1774
+138663.2612005221 3.501121 -1103.1576
+138664.2612006264 3.5011604 -1103.2168
+138665.2612007307 3.501003 -1103.1576
+138666.261200835 3.5009637 -1103.2761
+138667.2612009393 3.5010424 -1103.0984
+138668.2612010436 3.5009637 -1103.2562
+138669.2612011479 3.501003 -1103.2562
+138670.2612012522 3.501003 -1103.1774
+138671.2612013565 3.501121 -1103.2959
+138672.2612014608 3.501121 -1103.2562
+138673.2612015652 3.501003 -1103.1182
+138674.2612016695 3.5010424 -1103.197
+138675.2612017738 3.501003 -1103.2366
+138676.2612018781 3.501003 -1103.1182
+138677.2612019824 3.5008454 -1103.1378
+138678.2612020867 3.501003 -1103.1774
+138679.261202191 3.5009243 -1103.2562
+138680.2612022953 3.5009243 -1103.2168
+138681.2612023996 3.5009637 -1103.2366
+138682.2612025039 3.501003 -1103.1774
+138683.2612026082 3.5008061 -1103.1774
+138684.2612027125 3.501003 -1103.1774
+138685.2612028169 3.501003 -1103.2562
+138686.2612029212 3.5008454 -1103.1576
+138687.2612030255 3.5008848 -1103.197
+138688.2612031298 3.5008848 -1103.1774
+138689.2612032341 3.5009243 -1103.1774
+138690.2612033384 3.5008848 -1103.197
+138691.2612034427 3.5008454 -1103.2168
+138692.261203547 3.5008454 -1103.2366
+138693.2612036513 3.5007668 -1103.197
+138694.2612037556 3.5007274 -1103.1774
+138695.2612038599 3.5007274 -1103.2366
+138696.2612039642 3.5007274 -1103.1378
+138697.2612040685 3.5006881 -1103.2366
+138698.2612041729 3.5007668 -1103.2366
+138699.2612042772 3.5006487 -1103.197
+138700.2612043815 3.5006881 -1103.1576
+138701.2612044858 3.5006881 -1103.2562
+138702.2612045901 3.5007274 -1103.1576
+138703.2612046944 3.5007274 -1103.1182
+138704.2612047987 3.5007274 -1103.1576
+138705.261204903 3.5007274 -1103.197
+138706.2612050073 3.5006487 -1103.197
+138707.2612051116 3.5006487 -1103.1576
+138708.2612052159 3.5006092 -1103.1774
+138709.2612053202 3.5006487 -1103.197
+138710.2612054246 3.5006487 -1103.2168
+138711.2612055289 3.5007668 -1103.197
+138712.2612056332 3.5006092 -1103.2562
+138713.2612057375 3.5006881 -1103.1378
+138714.2612058418 3.5005698 -1103.1774
+138715.2612059461 3.5006487 -1103.1774
+138716.2612060504 3.5006881 -1103.1774
+138717.2612061547 3.5006092 -1103.2366
+138718.261206259 3.5006881 -1103.1378
+138719.2612063633 3.5005698 -1103.197
+138720.2612064676 3.5006092 -1103.2168
+138721.2612065719 3.5006092 -1103.1774
+138722.2612066763 3.5005305 -1103.1774
+138723.2612067806 3.5005305 -1103.197
+138724.2612068849 3.5004518 -1103.1378
+138725.2612069892 3.5005305 -1103.197
+138726.2612070935 3.5006092 -1103.1774
+138727.2612071978 3.5004911 -1103.2366
+138728.2612073021 3.5004518 -1103.197
+138729.2612074064 3.5005305 -1103.1378
+138730.2612075107 3.5005698 -1103.1378
+138731.261207615 3.5005305 -1103.1576
+138732.2612077193 3.5004125 -1103.1774
+138733.2612078236 3.5004518 -1103.1774
+138734.261207928 3.5003731 -1103.2366
+138735.2612080323 3.5004911 -1103.1774
+138736.2612081366 3.5003338 -1103.1182
+138737.2612082409 3.5002549 -1103.197
+138738.2612083452 3.5002549 -1103.197
+138739.2612084495 3.5003731 -1103.2366
+138740.2612085538 3.5002942 -1103.1576
+138741.2612086581 3.5003338 -1103.197
+138742.2612087624 3.5002549 -1103.1378
+138743.2612088667 3.5002549 -1103.1378
+138744.261208971 3.5001762 -1103.1576
+138745.2612090753 3.5002155 -1103.2366
+138746.2612091796 3.5000975 -1103.1576
+138747.261209284 3.5001369 -1103.1576
+138748.2612093883 3.5001762 -1103.2168
+138749.2612094926 3.5002942 -1103.197
+138750.2612095969 3.5000975 -1103.1378
+138751.2612097012 3.5000582 -1103.1378
+138752.2612098055 3.5000188 -1103.2366
+138753.2612099098 3.5000188 -1103.0984
+138754.2612100141 3.5000975 -1103.1774
+138755.2612101184 3.5000188 -1103.1576
+138756.2612102227 3.5000188 -1103.197
+138757.261210327 3.4999793 -1103.1182
+138758.2612104313 3.4999399 -1103.2562
+138759.2612105357 3.4999793 -1103.1182
+138760.26121064 3.4999793 -1103.197
+138761.2612107443 3.4998219 -1103.1182
+138762.2612108486 3.4998219 -1103.2366
+138763.2612109529 3.4998219 -1103.2366
+138764.2612110572 3.4997039 -1103.197
+138765.2612111615 3.4998219 -1103.1378
+138766.2612112658 3.4998219 -1103.197
+138767.2612113701 3.4997432 -1103.2366
+138768.2612114744 3.4997432 -1103.0984
+138769.2612115787 3.4997432 -1103.1774
+138770.261211683 3.4997432 -1103.197
+138771.2612117874 3.4996643 -1103.2168
+138772.2612118917 3.4996643 -1103.2366
+138773.261211996 3.4997039 -1103.1576
+138774.2612121003 3.4996643 -1103.2168
+138775.2612122046 3.499625 -1103.197
+138776.2612123089 3.499507 -1103.2366
+138777.2612124132 3.499507 -1103.1378
+138778.2612125175 3.499507 -1103.1576
+138779.2612126218 3.499507 -1103.2366
+138780.2612127261 3.4994676 -1103.197
+138781.2612128304 3.4993889 -1103.2168
+138782.2612129347 3.4993494 -1103.2366
+138783.261213039 3.4994283 -1103.1576
+138784.2612131434 3.4994283 -1103.197
+138785.2612132477 3.4994676 -1103.0984
+138786.261213352 3.4993494 -1103.1576
+138787.2612134563 3.4993889 -1103.197
+138788.2612135606 3.4993494 -1103.1774
+138789.2612136649 3.4993494 -1103.197
+138790.2612137692 3.4992707 -1103.2168
+138791.2612138735 3.4992313 -1103.197
+138792.2612139778 3.4991133 -1103.2562
+138793.2612140821 3.499192 -1103.197
+138794.2612141864 3.4992707 -1103.1774
+138795.2612142907 3.4992707 -1103.2562
+138796.2612143951 3.4992707 -1103.2562
+138797.2612144994 3.4991133 -1103.2562
+138798.2612146037 3.4990737 -1103.2366
+138799.261214708 3.499192 -1103.2366
+138800.2612148123 3.4991527 -1103.0588
+138801.2612149166 3.4991133 -1103.1576
+138802.2612150209 3.4990344 -1103.1378
+138803.2612151252 3.4990344 -1103.2366
+138804.2612152295 3.4990344 -1103.0785
+138805.2612153338 3.4989951 -1103.0984
+138806.2612154381 3.4989557 -1103.1182
+138807.2612155424 3.4989164 -1103.197
+138808.2612156468 3.4989557 -1103.197
+138809.2612157511 3.4989951 -1103.1182
+138810.2612158554 3.4989951 -1103.197
+138811.2612159597 3.4989164 -1103.1774
+138812.261216064 3.4989951 -1103.1774
+138813.2612161683 3.4989951 -1103.197
+138814.2612162726 3.4989557 -1103.1774
+138815.2612163769 3.4989164 -1103.2366
+138816.2612164812 3.4989557 -1103.1378
+138817.2612165855 3.4989557 -1103.0785
+138818.2612166898 3.4989164 -1103.1576
+138819.2612167941 3.498877 -1103.2366
+138820.2612168984 3.4989164 -1103.197
+138821.2612170028 3.4989164 -1103.2366
+138822.2612171071 3.4987984 -1103.1182
+138823.2612172114 3.4988377 -1103.2168
+138824.2612173157 3.4989164 -1103.1182
+138825.26121742 3.4987984 -1103.197
+138826.2612175243 3.4988377 -1103.1182
+138827.2612176286 3.4989557 -1103.2168
+138828.2612177329 3.4988377 -1103.197
+138829.2612178372 3.4987588 -1103.1774
+138830.2612179415 3.4987195 -1103.2168
+138831.2612180458 3.4987588 -1103.1576
+138832.2612181501 3.4987195 -1103.2366
+138833.2612182545 3.4987588 -1103.2366
+138834.2612183588 3.4987195 -1103.197
+138835.2612184631 3.4986408 -1103.2761
+138836.2612185674 3.4987588 -1103.1378
+138837.2612186717 3.4987588 -1103.0984
+138838.261218776 3.4986408 -1103.2366
+138839.2612188803 3.4986801 -1103.2168
+138840.2612189846 3.4986014 -1103.1182
+138841.2612190889 3.4987588 -1103.1378
+138842.2612191932 3.4986014 -1103.2168
+138843.2612192975 3.4986408 -1103.197
+138844.2612194018 3.4985621 -1103.197
+138845.2612195062 3.4986801 -1103.2366
+138846.2612196105 3.4985621 -1103.2168
+138847.2612197148 3.4986408 -1103.2366
+138848.2612198191 3.4985228 -1103.2366
+138849.2612199234 3.4985228 -1103.1576
+138850.2612200277 3.4985621 -1103.2562
+138851.261220132 3.4985228 -1103.2562
+138852.2612202363 3.4986408 -1103.2366
+138853.2612203406 3.4985621 -1103.1182
+138854.2612204449 3.4984834 -1103.1378
+138855.2612205492 3.4984834 -1103.1576
+138856.2612206535 3.4984438 -1103.2168
+138857.2612207579 3.4984438 -1103.1774
+138858.2612208622 3.4984045 -1103.1774
+138859.2612209665 3.4983652 -1103.197
+138860.2612210708 3.4984834 -1103.2168
+138861.2612211751 3.4984045 -1103.2366
+138862.2612212794 3.4983258 -1103.1774
+138863.2612213837 3.4982865 -1103.1576
+138864.261221488 3.4983258 -1103.2168
+138865.2612215923 3.4984045 -1103.1774
+138866.2612216966 3.4983652 -1103.1182
+138867.2612218009 3.4984045 -1103.2562
+138868.2612219052 3.4982078 -1103.2168
+138869.2612220095 3.4983258 -1103.2366
+138870.2612221139 3.4982865 -1103.1576
+138871.2612222182 3.4982078 -1103.197
+138872.2612223225 3.4981289 -1103.2168
+138873.2612224268 3.4982078 -1103.2168
+138874.2612225311 3.4983258 -1103.2168
+138875.2612226354 3.4981289 -1103.1182
+138876.2612227397 3.4982471 -1103.2168
+138877.261222844 3.4981289 -1103.2168
+138878.2612229483 3.4981685 -1103.2959
+138879.2612230526 3.4981685 -1103.0984
+138880.2612231569 3.4982078 -1103.2366
+138881.2612232612 3.4980109 -1103.197
+138882.2612233656 3.4980502 -1103.2168
+138883.2612234699 3.4980896 -1103.1576
+138884.2612235742 3.4980109 -1103.1576
+138885.2612236785 3.4980109 -1103.197
+138886.2612237828 3.4979322 -1103.2562
+138887.2612238871 3.4980109 -1103.1378
+138888.2612239914 3.4980109 -1103.1774
+138889.2612240957 3.4979322 -1103.1576
+138890.2612242 3.4979322 -1103.2366
+138891.2612243043 3.4979715 -1103.197
+138892.2612244086 3.4980109 -1103.197
+138893.2612245129 3.4979715 -1103.1576
+138894.2612246173 3.4978535 -1103.2366
+138895.2612247216 3.4980109 -1103.2366
+138896.2612248259 3.4978139 -1103.1774
+138897.2612249302 3.4978929 -1103.1182
+138898.2612250345 3.4977353 -1103.1182
+138899.2612251388 3.4978139 -1103.1576
+138900.2612252431 3.4978139 -1103.2366
+138901.2612253474 3.4978929 -1103.2168
+138902.2612254517 3.4978535 -1103.2366
+138903.261225556 3.4978535 -1103.2562
+138904.2612256603 3.4976959 -1103.2366
+138905.2612257646 3.4976959 -1103.1774
+138906.2612258689 3.4978139 -1103.0984
+138907.2612259733 3.4978139 -1103.0984
+138908.2612260776 3.4976959 -1103.1576
+138909.2612261819 3.4978535 -1103.0785
+138910.2612262862 3.4977746 -1103.197
+138911.2612263905 3.4977353 -1103.1182
+138912.2612264948 3.4976172 -1103.2761
+138913.2612265991 3.4976959 -1103.197
+138914.2612267034 3.4976959 -1103.2366
+138915.2612268077 3.4976172 -1103.2168
+138916.261226912 3.4975386 -1103.197
+138917.2612270163 3.4975386 -1103.197
+138918.2612271206 3.497499 -1103.197
+138919.261227225 3.497499 -1103.2761
+138920.2612273293 3.4975386 -1103.1378
+138921.2612274336 3.4975779 -1103.2168
+138922.2612275379 3.4976172 -1103.0984
+138923.2612276422 3.4975779 -1103.3156
+138924.2612277465 3.4975386 -1103.1774
+138925.2612278508 3.4975779 -1103.1576
+138926.2612279551 3.4974597 -1103.0588
+138927.2612280594 3.4975386 -1103.197
+138928.2612281637 3.4974203 -1103.197
+138929.261228268 3.497499 -1103.1774
+138930.2612283723 3.4974597 -1103.1576
+138931.2612284767 3.4974203 -1103.1576
+138932.261228581 3.4974597 -1103.0984
+138933.2612286853 3.4974597 -1103.1378
+138934.2612287896 3.4973416 -1103.197
+138935.2612288939 3.4974203 -1103.1576
+138936.2612289982 3.4973416 -1103.0984
+138937.2612291025 3.4974203 -1103.2366
+138938.2612292068 3.497499 -1103.1774
+138939.2612293111 3.4973023 -1103.2562
+138940.2612294154 3.4973416 -1103.2562
+138941.2612295197 3.4974203 -1103.1774
+138942.261229624 3.4973023 -1103.2562
+138943.2612297283 3.4973023 -1103.0984
+138944.2612298327 3.4973023 -1103.1378
+138945.261229937 3.4973416 -1103.197
+138946.2612300413 3.4974203 -1103.1774
+138947.2612301456 3.4973023 -1103.2366
+138948.2612302499 3.4974597 -1103.0984
+138949.2612303542 3.4973416 -1103.2959
+138950.2612304585 3.4974597 -1103.1378
+138951.2612305628 3.4974203 -1103.2168
+138952.2612306671 3.4974203 -1103.2168
+138953.2612307714 3.4972234 -1103.1774
+138954.2612308757 3.4973416 -1103.197
+138955.26123098 3.4973416 -1103.1774
+138956.2612310844 3.4973023 -1103.2366
+138957.2612311887 3.4972234 -1103.2366
+138958.261231293 3.4972234 -1103.2168
+138959.2612313973 3.4973023 -1103.1774
+138960.2612315016 3.497184 -1103.1774
+138961.2612316059 3.497263 -1103.197
+138962.2612317102 3.4972234 -1103.197
+138963.2612318145 3.4973416 -1103.2366
+138964.2612319188 3.4973023 -1103.2562
+138965.2612320231 3.4972234 -1103.1378
+138966.2612321274 3.4972234 -1103.2168
+138967.2612322317 3.497263 -1103.1182
+138968.2612323361 3.4973023 -1103.1576
+138969.2612324404 3.4973023 -1103.197
+138970.2612325447 3.4972234 -1103.1378
+138971.261232649 3.4973023 -1103.2168
+138972.2612327533 3.497263 -1103.2366
+138973.2612328576 3.4971447 -1103.2562
+138974.2612329619 3.497263 -1103.1378
+138975.2612330662 3.497184 -1103.1182
+138976.2612331705 3.4971447 -1103.0984
+138977.2612332748 3.4972234 -1103.2562
+138978.2612333791 3.497263 -1103.1576
+138979.2612334834 3.497184 -1103.3156
+138980.2612335877 3.4971054 -1103.2761
+138981.2612336921 3.4972234 -1103.1378
+138982.2612337964 3.4971447 -1103.2959
+138983.2612339007 3.497184 -1103.197
+138984.261234005 3.4971054 -1103.1182
+138985.2612341093 3.497263 -1103.1182
+138986.2612342136 3.497263 -1103.197
+138987.2612343179 3.497066 -1103.1774
+138988.2612344222 3.497184 -1103.2168
+138989.2612345265 3.4971054 -1103.2366
+138990.2612346308 3.4972234 -1103.197
+138991.2612347351 3.497184 -1103.197
+138992.2612348394 3.4971054 -1103.197
+138993.2612349438 3.4971054 -1103.197
+138994.2612350481 3.4972234 -1103.1774
+138995.2612351524 3.497184 -1103.1182
+138996.2612352567 3.4970267 -1103.197
+138997.261235361 3.497184 -1103.2168
+138998.2612354653 3.497066 -1103.1182
+138999.2612355696 3.497184 -1103.2366
+139000.2612356739 3.4971054 -1103.2366
+139001.2612357782 3.4971447 -1103.2366
+139002.2612358825 3.497066 -1103.1378
+139003.2612359868 3.4971447 -1103.1576
+139004.2612360911 3.4970267 -1103.2168
+139005.2612361955 3.4969873 -1103.1774
+139006.2612362998 3.4971447 -1103.1576
+139007.2612364041 3.497184 -1103.1576
+139008.2612365084 3.497066 -1103.197
+139009.2612366127 3.497066 -1103.197
+139010.261236717 3.4971054 -1103.1576
+139011.2612368213 3.496948 -1103.197
+139012.2612369256 3.4970267 -1103.197
+139013.2612370299 3.4969873 -1103.197
+139014.2612371342 3.497066 -1103.1576
+139015.2612372385 3.496948 -1103.2761
+139016.2612373428 3.497066 -1103.2562
+139017.2612374472 3.4969873 -1103.2366
+139018.2612375515 3.496948 -1103.2168
+139019.2612376558 3.497066 -1103.1378
+139020.2612377601 3.4969873 -1103.2562
+139021.2612378644 3.496948 -1103.2562
+139022.2612379687 3.4968691 -1103.2168
+139023.261238073 3.4969084 -1103.1774
+139024.2612381773 3.496948 -1103.1774
+139025.2612382816 3.496948 -1103.1774
+139026.2612383859 3.4968691 -1103.2562
+139027.2612384902 3.4968297 -1103.197
+139028.2612385945 3.4967117 -1103.1774
+139029.2612386988 3.496948 -1103.1576
+139030.2612388032 3.4967904 -1103.1774
+139031.2612389075 3.4968691 -1103.2168
+139032.2612390118 3.4968691 -1103.1576
+139033.2612391161 3.4967904 -1103.1182
+139034.2612392204 3.4967904 -1103.1576
+139035.2612393247 3.4967904 -1103.2761
+139036.261239429 3.4967904 -1103.1576
+139037.2612395333 3.4968691 -1103.1774
+139038.2612396376 3.4967511 -1103.197
+139039.2612397419 3.4966724 -1103.1576
+139040.2612398462 3.4967904 -1103.1378
+139041.2612399505 3.4967511 -1103.2168
+139042.2612400549 3.4967511 -1103.197
+139043.2612401592 3.4966724 -1103.2168
+139044.2612402635 3.4967117 -1103.2168
+139045.2612403678 3.4966331 -1103.2366
+139046.2612404721 3.4966331 -1103.1182
+139047.2612405764 3.4966724 -1103.2366
+139048.2612406807 3.4966724 -1103.2562
+139049.261240785 3.4966331 -1103.2366
+139050.2612408893 3.4964361 -1103.1576
+139051.2612409936 3.4967117 -1103.1378
+139052.2612410979 3.4965935 -1103.2168
+139053.2612412022 3.4965148 -1103.1182
+139054.2612413066 3.4966331 -1103.2168
+139055.2612414109 3.4965935 -1103.0984
+139056.2612415152 3.4965541 -1103.2168
+139057.2612416195 3.4966331 -1103.197
+139058.2612417238 3.4964361 -1103.2562
+139059.2612418281 3.4965935 -1103.2562
+139060.2612419324 3.4965935 -1103.1774
+139061.2612420367 3.4967117 -1103.2959
+139062.261242141 3.4965935 -1103.2562
+139063.2612422453 3.4965541 -1103.1576
+139064.2612423496 3.4965541 -1103.197
+139065.2612424539 3.4964755 -1103.197
+139066.2612425582 3.4965148 -1103.2168
+139067.2612426626 3.4965148 -1103.2761
+139068.2612427669 3.4965148 -1103.197
+139069.2612428712 3.4965148 -1103.1774
+139070.2612429755 3.4965148 -1103.197
+139071.2612430798 3.4964755 -1103.1182
+139072.2612431841 3.4963968 -1103.2562
+139073.2612432884 3.4963574 -1103.1774
+139074.2612433927 3.4964361 -1103.2168
+139075.261243497 3.4964361 -1103.1774
+139076.2612436013 3.4963968 -1103.2366
+139077.2612437056 3.4964361 -1103.1576
+139078.2612438099 3.4964361 -1103.2168
+139079.2612439143 3.4965148 -1103.1378
+139080.2612440186 3.4964361 -1103.1182
+139081.2612441229 3.4963574 -1103.1576
+139082.2612442272 3.4964361 -1103.1774
+139083.2612443315 3.4963968 -1103.197
+139084.2612444358 3.4963968 -1103.1576
+139085.2612445401 3.4962785 -1103.1182
+139086.2612446444 3.4963181 -1103.1774
+139087.2612447487 3.4963181 -1103.2366
+139088.261244853 3.4962785 -1103.2168
+139089.2612449573 3.4962392 -1103.1378
+139090.2612450616 3.4962392 -1103.2562
+139091.261245166 3.4962785 -1103.2168
+139092.2612452703 3.4962392 -1103.2168
+139093.2612453746 3.4961605 -1103.1774
+139094.2612454789 3.4961605 -1103.2168
+139095.2612455832 3.4961605 -1103.2366
+139096.2612456875 3.4961605 -1103.197
+139097.2612457918 3.4961212 -1103.2168
+139098.2612458961 3.4961605 -1103.1774
+139099.2612460004 3.4961212 -1103.1576
+139100.2612461047 3.4960818 -1103.2761
+139101.261246209 3.4960425 -1103.2168
+139102.2612463133 3.4960032 -1103.2366
+139103.2612464176 3.4959636 -1103.2168
+139104.261246522 3.4960425 -1103.1576
+139105.2612466263 3.4959636 -1103.197
+139106.2612467306 3.4959242 -1103.197
+139107.2612468349 3.4958849 -1103.1774
+139108.2612469392 3.4959636 -1103.2366
+139109.2612470435 3.4959242 -1103.1576
+139110.2612471478 3.4959636 -1103.0785
+139111.2612472521 3.4958456 -1103.0984
+139112.2612473564 3.4958456 -1103.2168
+139113.2612474607 3.4958062 -1103.1576
+139114.261247565 3.4959242 -1103.2562
+139115.2612476693 3.4958062 -1103.1182
+139116.2612477737 3.4958062 -1103.197
+139117.261247878 3.4958456 -1103.1576
+139118.2612479823 3.4959242 -1103.2168
+139119.2612480866 3.4956882 -1103.1774
+139120.2612481909 3.4957669 -1103.1774
+139121.2612482952 3.4957275 -1103.2562
+139122.2612483995 3.4957275 -1103.2562
+139123.2612485038 3.4956882 -1103.197
+139124.2612486081 3.4957275 -1103.2168
+139125.2612487124 3.4956093 -1103.1378
+139126.2612488167 3.4956882 -1103.1774
+139127.261248921 3.4954913 -1103.2168
+139128.2612490254 3.4955306 -1103.1378
+139129.2612491297 3.4955699 -1103.1774
+139130.261249234 3.4954519 -1103.2366
+139131.2612493383 3.4955306 -1103.2562
+139132.2612494426 3.4954126 -1103.1378
+139133.2612495469 3.495373 -1103.2562
+139134.2612496512 3.495373 -1103.2761
+139135.2612497555 3.4952943 -1103.197
+139136.2612498598 3.4953337 -1103.1774
+139137.2612499641 3.495373 -1103.2761
+139138.2612500684 3.495255 -1103.2168
+139139.2612501727 3.495255 -1103.197
+139140.2612502771 3.495373 -1103.1774
+139141.2612503814 3.495255 -1103.2761
+139142.2612504857 3.4951763 -1103.2168
+139143.26125059 3.4952943 -1103.2959
+139144.2612506943 3.4951763 -1103.2761
+139145.2612507986 3.495137 -1103.197
+139146.2612509029 3.4950976 -1103.197
+139147.2612510072 3.495137 -1103.2168
+139148.2612511115 3.4950581 -1103.2366
+139149.2612512158 3.4950976 -1103.2168
+139150.2612513201 3.4951763 -1103.2761
+139151.2612514244 3.4950187 -1103.2761
+139152.2612515287 3.4950581 -1103.2168
+139153.2612516331 3.4949007 -1103.2168
+139154.2612517374 3.4950581 -1103.3156
+139155.2612518417 3.49494 -1103.1378
+139156.261251946 3.49494 -1103.1576
+139157.2612520503 3.4948614 -1103.1576
+139158.2612521546 3.49494 -1103.1576
+139159.2612522589 3.49494 -1103.2562
+139160.2612523632 3.4947827 -1103.1576
+139161.2612524675 3.4948614 -1103.1182
+139162.2612525718 3.4947827 -1103.2761
+139163.2612526761 3.4947431 -1103.197
+139164.2612527804 3.4947038 -1103.2562
+139165.2612528848 3.494822 -1103.1576
+139166.2612529891 3.4947827 -1103.2761
+139167.2612530934 3.4947038 -1103.1774
+139168.2612531977 3.4947038 -1103.1774
+139169.261253302 3.4946644 -1103.2366
+139170.2612534063 3.4946251 -1103.197
+139171.2612535106 3.4945858 -1103.2366
+139172.2612536149 3.4945464 -1103.2562
+139173.2612537192 3.4946644 -1103.197
+139174.2612538235 3.4945858 -1103.2168
+139175.2612539278 3.4945858 -1103.197
+139176.2612540321 3.4945858 -1103.2168
+139177.2612541365 3.4945071 -1103.1576
+139178.2612542408 3.4945858 -1103.2562
+139179.2612543451 3.4945071 -1103.3551
+139180.2612544494 3.4945858 -1103.2366
+139181.2612545537 3.4945858 -1103.1774
+139182.261254658 3.4945464 -1103.2168
+139183.2612547623 3.4944282 -1103.197
+139184.2612548666 3.4945464 -1103.2761
+139185.2612549709 3.4943888 -1103.2366
+139186.2612550752 3.4945464 -1103.2761
+139187.2612551795 3.4944677 -1103.197
+139188.2612552838 3.4944677 -1103.3156
+139189.2612553881 3.4944677 -1103.2168
+139190.2612554925 3.4945464 -1103.2168
+139191.2612555968 3.4943495 -1103.1774
+139192.2612557011 3.4943101 -1103.2959
+139193.2612558054 3.4943888 -1103.1774
+139194.2612559097 3.4944282 -1103.1774
+139195.261256014 3.4943888 -1103.1774
+139196.2612561183 3.4943101 -1103.2761
+139197.2612562226 3.4943101 -1103.2562
+139198.2612563269 3.4943495 -1103.2168
+139199.2612564312 3.4941921 -1103.0984
+139200.2612565355 3.4942315 -1103.2168
+139201.2612566398 3.4942708 -1103.197
+139202.2612567442 3.4943101 -1103.2959
+139203.2612568485 3.4941921 -1103.2562
+139204.2612569528 3.4941528 -1103.197
+139205.2612570571 3.4941921 -1103.2366
+139206.2612571614 3.4940739 -1103.2959
+139207.2612572657 3.4940345 -1103.2168
+139208.26125737 3.4940739 -1103.1576
+139209.2612574743 3.4940739 -1103.1774
+139210.2612575786 3.4940739 -1103.2168
+139211.2612576829 3.4939952 -1103.2562
+139212.2612577872 3.4939165 -1103.1576
+139213.2612578915 3.4939559 -1103.3353
+139214.2612579959 3.4939165 -1103.2168
+139215.2612581002 3.4939165 -1103.197
+139216.2612582045 3.4938772 -1103.2562
+139217.2612583088 3.4938772 -1103.2562
+139218.2612584131 3.4938772 -1103.2562
+139219.2612585174 3.4939165 -1103.2168
+139220.2612586217 3.4937589 -1103.197
+139221.261258726 3.4939165 -1103.2366
+139222.2612588303 3.4937983 -1103.2366
+139223.2612589346 3.4939952 -1103.197
+139224.2612590389 3.4937983 -1103.197
+139225.2612591432 3.4937589 -1103.1774
+139226.2612592475 3.4938378 -1103.1774
+139227.2612593519 3.4936802 -1103.197
+139228.2612594562 3.4937196 -1103.2168
+139229.2612595605 3.4937196 -1103.1774
+139230.2612596648 3.4936802 -1103.1774
+139231.2612597691 3.4936016 -1103.2959
+139232.2612598734 3.4936409 -1103.1378
+139233.2612599777 3.4936409 -1103.2959
+139234.261260082 3.4936016 -1103.1774
+139235.2612601863 3.4936409 -1103.2761
+139236.2612602906 3.4935622 -1103.3156
+139237.2612603949 3.4936016 -1103.2562
+139238.2612604992 3.4935226 -1103.2168
+139239.2612606036 3.4936409 -1103.2959
+139240.2612607079 3.4935622 -1103.197
+139241.2612608122 3.493444 -1103.1378
+139242.2612609165 3.4934833 -1103.1774
+139243.2612610208 3.4934833 -1103.197
+139244.2612611251 3.4934046 -1103.2168
+139245.2612612294 3.4934833 -1103.2366
+139246.2612613337 3.493444 -1103.2562
+139247.261261438 3.4934046 -1103.1378
+139248.2612615423 3.4934833 -1103.2168
+139249.2612616466 3.4933653 -1103.2761
+139250.2612617509 3.4934046 -1103.2562
+139251.2612618553 3.4934046 -1103.2168
+139252.2612619596 3.4933653 -1103.2366
+139253.2612620639 3.4933259 -1103.2168
+139254.2612621682 3.4932866 -1103.1576
+139255.2612622725 3.4932473 -1103.2761
+139256.2612623768 3.4932077 -1103.197
+139257.2612624811 3.4932473 -1103.2562
+139258.2612625854 3.4932473 -1103.2562
+139259.2612626897 3.4932473 -1103.2761
+139260.261262794 3.4932077 -1103.197
+139261.2612628983 3.4932077 -1103.2366
+139262.2612630026 3.4930897 -1103.0984
+139263.261263107 3.493129 -1103.2168
+139264.2612632113 3.4930897 -1103.1576
+139265.2612633156 3.493129 -1103.2562
+139266.2612634199 3.493129 -1103.1774
+139267.2612635242 3.493129 -1103.2168
+139268.2612636285 3.4929717 -1103.1182
+139269.2612637328 3.4930897 -1103.2168
+139270.2612638371 3.493129 -1103.197
+139271.2612639414 3.4931684 -1103.2562
+139272.2612640457 3.4930897 -1103.197
+139273.26126415 3.4929323 -1103.3156
+139274.2612642543 3.493129 -1103.2168
+139275.2612643586 3.4929323 -1103.1182
+139276.261264463 3.493011 -1103.2562
+139277.2612645673 3.4929717 -1103.2366
+139278.2612646716 3.4929717 -1103.2761
+139279.2612647759 3.4930503 -1103.2761
+139280.2612648802 3.4928534 -1103.2366
+139281.2612649845 3.4929323 -1103.2168
+139282.2612650888 3.4928927 -1103.1774
+139283.2612651931 3.4928927 -1103.197
+139284.2612652974 3.4928927 -1103.2366
+139285.2612654017 3.4928927 -1103.2761
+139286.261265506 3.4928534 -1103.2366
+139287.2612656103 3.4929323 -1103.3156
+139288.2612657147 3.4927747 -1103.2366
+139289.261265819 3.4928927 -1103.2366
+139290.2612659233 3.4928141 -1103.2168
+139291.2612660276 3.4927354 -1103.2562
+139292.2612661319 3.4928141 -1103.1774
+139293.2612662362 3.4927354 -1103.2168
+139294.2612663405 3.4926567 -1103.2168
+139295.2612664448 3.4927354 -1103.197
+139296.2612665491 3.4926567 -1103.1774
+139297.2612666534 3.4925778 -1103.197
+139298.2612667577 3.4927354 -1103.2168
+139299.261266862 3.492696 -1103.1774
+139300.2612669664 3.4926567 -1103.2562
+139301.2612670707 3.4926567 -1103.1576
+139302.261267175 3.4926174 -1103.1774
+139303.2612672793 3.4925778 -1103.1774
+139304.2612673836 3.492696 -1103.2168
+139305.2612674879 3.4925385 -1103.2562
+139306.2612675922 3.4925778 -1103.1774
+139307.2612676965 3.4926567 -1103.2168
+139308.2612678008 3.4926567 -1103.3156
+139309.2612679051 3.4925778 -1103.1774
+139310.2612680094 3.4925778 -1103.2168
+139311.2612681137 3.4924204 -1103.1774
+139312.261268218 3.4925385 -1103.2168
+139313.2612683224 3.4925385 -1103.1576
+139314.2612684267 3.4924598 -1103.1774
+139315.261268531 3.4924204 -1103.1774
+139316.2612686353 3.4925385 -1103.2959
+139317.2612687396 3.4924598 -1103.2562
+139318.2612688439 3.4924991 -1103.2366
+139319.2612689482 3.4924204 -1103.2959
+139320.2612690525 3.4923418 -1103.1378
+139321.2612691568 3.4924204 -1103.197
+139322.2612692611 3.4923418 -1103.2562
+139323.2612693654 3.4924598 -1103.1774
+139324.2612694697 3.4923418 -1103.2168
+139325.2612695741 3.4922628 -1103.2366
+139326.2612696784 3.4923024 -1103.1576
+139327.2612697827 3.4923418 -1103.2168
+139328.261269887 3.4923024 -1103.2366
+139329.2612699913 3.4923024 -1103.2366
+139330.2612700956 3.4923024 -1103.2168
+139331.2612701999 3.4923024 -1103.2366
+139332.2612703042 3.4921448 -1103.2761
+139333.2612704085 3.4921448 -1103.2761
+139334.2612705128 3.4921448 -1103.2366
+139335.2612706171 3.4922235 -1103.1576
+139336.2612707214 3.4922235 -1103.2366
+139337.2612708258 3.4922235 -1103.1774
+139338.2612709301 3.4921448 -1103.197
+139339.2612710344 3.4921448 -1103.2761
+139340.2612711387 3.4922628 -1103.1774
+139341.261271243 3.4920661 -1103.197
+139342.2612713473 3.4921055 -1103.2168
+139343.2612714516 3.4921055 -1103.2761
+139344.2612715559 3.4920268 -1103.2366
+139345.2612716602 3.4920268 -1103.2959
+139346.2612717645 3.4920268 -1103.2761
+139347.2612718688 3.4921055 -1103.2562
+139348.2612719731 3.4920268 -1103.1182
+139349.2612720774 3.4919875 -1103.2562
+139350.2612721818 3.4919479 -1103.197
+139351.2612722861 3.4918692 -1103.1576
+139352.2612723904 3.4918692 -1103.1182
+139353.2612724947 3.4918692 -1103.2562
+139354.261272599 3.4918299 -1103.197
+139355.2612727033 3.4917512 -1103.2562
+139356.2612728076 3.4917512 -1103.1774
+139357.2612729119 3.4918692 -1103.1378
+139358.2612730162 3.4916329 -1103.1774
+139359.2612731205 3.4917905 -1103.2168
+139360.2612732248 3.4916723 -1103.1774
+139361.2612733291 3.4917512 -1103.197
+139362.2612734335 3.4916723 -1103.197
+139363.2612735378 3.4916723 -1103.197
+139364.2612736421 3.4917119 -1103.3156
+139365.2612737464 3.4916723 -1103.2366
+139366.2612738507 3.4915543 -1103.2168
+139367.261273955 3.4916329 -1103.2168
+139368.2612740593 3.4917119 -1103.1774
+139369.2612741636 3.4915543 -1103.2761
+139370.2612742679 3.4915936 -1103.197
+139371.2612743722 3.4915149 -1103.2761
+139372.2612744765 3.4915936 -1103.2366
+139373.2612745808 3.4914756 -1103.2366
+139374.2612746852 3.4914362 -1103.197
+139375.2612747895 3.4914362 -1103.2168
+139376.2612748938 3.4915149 -1103.1774
+139377.2612749981 3.4914362 -1103.1182
+139378.2612751024 3.4914362 -1103.197
+139379.2612752067 3.4914362 -1103.2761
+139380.261275311 3.4913969 -1103.1378
+139381.2612754153 3.4913573 -1103.2366
+139382.2612755196 3.4913573 -1103.2168
+139383.2612756239 3.4913573 -1103.1774
+139384.2612757282 3.4913969 -1103.2168
+139385.2612758325 3.4912393 -1103.2168
+139386.2612759368 3.4912 -1103.1378
+139387.2612760412 3.4912393 -1103.1182
+139388.2612761455 3.4912393 -1103.2168
+139389.2612762498 3.4912786 -1103.2366
+139390.2612763541 3.4911606 -1103.2562
+139391.2612764584 3.4912 -1103.1774
+139392.2612765627 3.4911606 -1103.197
+139393.261276667 3.4911606 -1103.2562
+139394.2612767713 3.4912 -1103.2959
+139395.2612768756 3.4911213 -1103.2366
+139396.2612769799 3.4911213 -1103.197
+139397.2612770842 3.4911213 -1103.2366
+139398.2612771885 3.4909637 -1103.1378
+139399.2612772929 3.491082 -1103.2168
+139400.2612773972 3.491082 -1103.197
+139401.2612775015 3.4909637 -1103.1576
+139402.2612776058 3.4910424 -1103.1378
+139403.2612777101 3.491003 -1103.2366
+139404.2612778144 3.491082 -1103.1182
+139405.2612779187 3.491003 -1103.2562
+139406.261278023 3.491003 -1103.2562
+139407.2612781273 3.4909637 -1103.197
+139408.2612782316 3.491003 -1103.2366
+139409.2612783359 3.4909637 -1103.1576
+139410.2612784402 3.4909244 -1103.2168
+139411.2612785446 3.491003 -1103.1774
+139412.2612786489 3.491003 -1103.197
+139413.2612787532 3.490885 -1103.2761
+139414.2612788575 3.4908063 -1103.1182
+139415.2612789618 3.4909244 -1103.1378
+139416.2612790661 3.4908063 -1103.2168
+139417.2612791704 3.490885 -1103.2168
+139418.2612792747 3.4908063 -1103.2562
+139419.261279379 3.490885 -1103.2761
+139420.2612794833 3.4908063 -1103.197
+139421.2612795876 3.490885 -1103.2761
+139422.2612796919 3.4908457 -1103.2761
+139423.2612797963 3.490885 -1103.2168
+139424.2612799006 3.4908457 -1103.1774
+139425.2612800049 3.4907274 -1103.2168
+139426.2612801092 3.4907274 -1103.2959
+139427.2612802135 3.490767 -1103.1576
+139428.2612803178 3.490767 -1103.1576
+139429.2612804221 3.4907274 -1103.0984
+139430.2612805264 3.4908063 -1103.2562
+139431.2612806307 3.4907274 -1103.1182
+139432.261280735 3.4907274 -1103.1378
+139433.2612808393 3.4906881 -1103.197
+139434.2612809436 3.4906881 -1103.2761
+139435.2612810479 3.4906881 -1103.197
+139436.2612811523 3.4905701 -1103.2562
+139437.2612812566 3.4906487 -1103.2562
+139438.2612813609 3.4905701 -1103.2761
+139439.2612814652 3.4906094 -1103.1378
+139440.2612815695 3.4906487 -1103.1774
+139441.2612816738 3.4905307 -1103.1774
+139442.2612817781 3.4904914 -1103.197
+139443.2612818824 3.4905701 -1103.197
+139444.2612819867 3.4905307 -1103.2562
+139445.261282091 3.4905307 -1103.1774
+139446.2612821953 3.4903731 -1103.2168
+139447.2612822996 3.4903731 -1103.197
+139448.261282404 3.4904125 -1103.197
+139449.2612825083 3.4903338 -1103.2168
+139450.2612826126 3.4903731 -1103.197
+139451.2612827169 3.4902945 -1103.197
+139452.2612828212 3.4902945 -1103.2366
+139453.2612829255 3.4903338 -1103.2366
+139454.2612830298 3.4902158 -1103.1576
+139455.2612831341 3.4902551 -1103.2168
+139456.2612832384 3.4901371 -1103.2168
+139457.2612833427 3.4902551 -1103.1774
+139458.261283447 3.4901371 -1103.2366
+139459.2612835513 3.4901371 -1103.197
+139460.2612836557 3.4901764 -1103.197
+139461.26128376 3.4900975 -1103.2562
+139462.2612838643 3.4901371 -1103.2761
+139463.2612839686 3.4901371 -1103.2366
+139464.2612840729 3.4901371 -1103.1774
+139465.2612841772 3.4899795 -1103.1576
+139466.2612842815 3.4899402 -1103.2562
+139467.2612843858 3.4900582 -1103.2562
+139468.2612844901 3.4900188 -1103.1378
+139469.2612845944 3.4900975 -1103.2761
+139470.2612846987 3.4899008 -1103.1576
+139471.261284803 3.4899795 -1103.2366
+139472.2612849073 3.4899795 -1103.2168
+139473.2612850117 3.4899008 -1103.197
+139474.261285116 3.4899795 -1103.3353
+139475.2612852203 3.4899402 -1103.2562
+139476.2612853246 3.4898615 -1103.197
+139477.2612854289 3.4899402 -1103.2366
+139478.2612855332 3.4899795 -1103.1774
+139479.2612856375 3.4899402 -1103.2366
+139480.2612857418 3.4899402 -1103.1774
+139481.2612858461 3.4898615 -1103.2168
+139482.2612859504 3.4899008 -1103.1774
+139483.2612860547 3.4898615 -1103.2168
+139484.261286159 3.4897039 -1103.2168
+139485.2612862634 3.4897826 -1103.2562
+139486.2612863677 3.4897039 -1103.2562
+139487.261286472 3.4897039 -1103.2168
+139488.2612865763 3.4896252 -1103.1774
+139489.2612866806 3.4896646 -1103.2366
+139490.2612867849 3.4895859 -1103.2562
+139491.2612868892 3.4895465 -1103.2168
+139492.2612869935 3.4897039 -1103.1774
+139493.2612870978 3.4896646 -1103.2366
+139494.2612872021 3.4895859 -1103.1774
+139495.2612873064 3.4896646 -1103.1378
+139496.2612874107 3.4895859 -1103.2168
+139497.2612875151 3.4895465 -1103.1774
+139498.2612876194 3.4894283 -1103.2168
+139499.2612877237 3.489507 -1103.2366
+139500.261287828 3.4895465 -1103.1576
+139501.2612879323 3.4895465 -1103.2761
+139502.2612880366 3.489507 -1103.1774
+139503.2612881409 3.489507 -1103.2366
+139504.2612882452 3.4894283 -1103.197
+139505.2612883495 3.4893889 -1103.2562
+139506.2612884538 3.4893889 -1103.2761
+139507.2612885581 3.4893889 -1103.2562
+139508.2612886624 3.4892709 -1103.2959
+139509.2612887667 3.4893103 -1103.2168
+139510.2612888711 3.4892709 -1103.2168
+139511.2612889754 3.4892316 -1103.2168
+139512.2612890797 3.4893103 -1103.2168
+139513.261289184 3.4892709 -1103.1182
+139514.2612892883 3.4892316 -1103.1576
+139515.2612893926 3.4891527 -1103.0984
+139516.2612894969 3.489192 -1103.2761
+139517.2612896012 3.4891527 -1103.1182
+139518.2612897055 3.489192 -1103.2168
+139519.2612898098 3.489192 -1103.2366
+139520.2612899141 3.489074 -1103.2168
+139521.2612900184 3.489192 -1103.1576
+139522.2612901228 3.4890347 -1103.2366
+139523.2612902271 3.489074 -1103.2562
+139524.2612903314 3.488956 -1103.1774
+139525.2612904357 3.4889953 -1103.197
+139526.26129054 3.4889953 -1103.1378
+139527.2612906443 3.4890347 -1103.2959
+139528.2612907486 3.4889166 -1103.197
+139529.2612908529 3.4889953 -1103.2168
+139530.2612909572 3.488956 -1103.1774
+139531.2612910615 3.4888771 -1103.2959
+139532.2612911658 3.4889166 -1103.1774
+139533.2612912701 3.4888771 -1103.197
+139534.2612913745 3.4888771 -1103.2366
+139535.2612914788 3.4887984 -1103.3551
+139536.2612915831 3.4888771 -1103.1182
+139537.2612916874 3.4887197 -1103.2761
+139538.2612917917 3.488759 -1103.1576
+139539.261291896 3.4887197 -1103.1774
+139540.2612920003 3.4887197 -1103.2168
+139541.2612921046 3.4886017 -1103.2761
+139542.2612922089 3.488759 -1103.1774
+139543.2612923132 3.4886804 -1103.2562
+139544.2612924175 3.4885228 -1103.1182
+139545.2612925218 3.4887197 -1103.2366
+139546.2612926262 3.4887197 -1103.1774
+139547.2612927305 3.4887197 -1103.1774
+139548.2612928348 3.488641 -1103.2366
+139549.2612929391 3.4886017 -1103.2168
+139550.2612930434 3.4885621 -1103.2562
+139551.2612931477 3.4886017 -1103.197
+139552.261293252 3.4885621 -1103.1774
+139553.2612933563 3.4884834 -1103.197
+139554.2612934606 3.4885621 -1103.2562
+139555.2612935649 3.4885228 -1103.2562
+139556.2612936692 3.4884834 -1103.2761
+139557.2612937735 3.4885621 -1103.2761
+139558.2612938778 3.4885228 -1103.2959
+139559.2612939822 3.4885228 -1103.2366
+139560.2612940865 3.4884048 -1103.197
+139561.2612941908 3.4884834 -1103.2761
+139562.2612942951 3.4884441 -1103.1378
+139563.2612943994 3.4884048 -1103.2366
+139564.2612945037 3.4885228 -1103.2562
+139565.261294608 3.4883654 -1103.2168
+139566.2612947123 3.4884441 -1103.1774
+139567.2612948166 3.4884441 -1103.2168
+139568.2612949209 3.4883654 -1103.2168
+139569.2612950252 3.4884441 -1103.2168
+139570.2612951295 3.4884441 -1103.2366
+139571.2612952339 3.4884441 -1103.2761
+139572.2612953382 3.4884834 -1103.1576
+139573.2612954425 3.4883654 -1103.1182
+139574.2612955468 3.4884441 -1103.2562
+139575.2612956511 3.4884048 -1103.2366
+139576.2612957554 3.4884048 -1103.197
+139577.2612958597 3.4883654 -1103.2562
+139578.261295964 3.4884048 -1103.1378
+139579.2612960683 3.4883654 -1103.197
+139580.2612961726 3.4882865 -1103.2168
+139581.2612962769 3.4882865 -1103.1576
+139582.2612963812 3.4882472 -1103.1774
+139583.2612964856 3.4883261 -1103.2168
+139584.2612965899 3.4883261 -1103.2366
+139585.2612966942 3.4882865 -1103.1576
+139586.2612967985 3.4882472 -1103.197
+139587.2612969028 3.4882865 -1103.2366
+139588.2612970071 3.4881685 -1103.197
+139589.2612971114 3.4882865 -1103.2366
+139590.2612972157 3.4882078 -1103.1774
+139591.26129732 3.4881685 -1103.2562
+139592.2612974243 3.4881685 -1103.2366
+139593.2612975286 3.4880898 -1103.2562
+139594.2612976329 3.4880505 -1103.2366
+139595.2612977372 3.4881291 -1103.197
+139596.2612978416 3.4880111 -1103.2366
+139597.2612979459 3.4881291 -1103.2366
+139598.2612980502 3.4880898 -1103.197
+139599.2612981545 3.4880505 -1103.3353
+139600.2612982588 3.4880505 -1103.2366
+139601.2612983631 3.4879322 -1103.2562
+139602.2612984674 3.4879715 -1103.3156
+139603.2612985717 3.4878142 -1103.2366
+139604.261298676 3.4878929 -1103.2168
+139605.2612987803 3.4879715 -1103.2959
+139606.2612988846 3.4878929 -1103.1774
+139607.2612989889 3.4879715 -1103.3156
+139608.2612990933 3.4878535 -1103.1774
+139609.2612991976 3.4878142 -1103.2366
+139610.2612993019 3.4879715 -1103.1774
+139611.2612994062 3.4878929 -1103.2366
+139612.2612995105 3.4878535 -1103.1774
+139613.2612996148 3.4877355 -1103.197
+139614.2612997191 3.4878535 -1103.1576
+139615.2612998234 3.4878142 -1103.197
+139616.2612999277 3.4877355 -1103.2366
+139617.261300032 3.4877355 -1103.1774
+139618.2613001363 3.4876566 -1103.2168
+139619.2613002406 3.4876962 -1103.1576
+139620.261300345 3.4876962 -1103.2562
+139621.2613004493 3.4876962 -1103.197
+139622.2613005536 3.4877748 -1103.197
+139623.2613006579 3.4876962 -1103.2761
+139624.2613007622 3.4876566 -1103.2959
+139625.2613008665 3.4876566 -1103.197
+139626.2613009708 3.4876962 -1103.2168
+139627.2613010751 3.4875779 -1103.2168
+139628.2613011794 3.4875779 -1103.1576
+139629.2613012837 3.4876566 -1103.0984
+139630.261301388 3.4875779 -1103.1774
+139631.2613014923 3.4875779 -1103.197
+139632.2613015966 3.4875386 -1103.2168
+139633.261301701 3.4874599 -1103.1182
+139634.2613018053 3.4874206 -1103.2761
+139635.2613019096 3.4874206 -1103.2168
+139636.2613020139 3.4875779 -1103.2562
+139637.2613021182 3.4875386 -1103.2761
+139638.2613022225 3.4874992 -1103.197
+139639.2613023268 3.4875386 -1103.197
+139640.2613024311 3.4874599 -1103.2168
+139641.2613025354 3.4874206 -1103.2366
+139642.2613026397 3.4874206 -1103.2366
+139643.261302744 3.4874206 -1103.197
+139644.2613028483 3.4873812 -1103.197
+139645.2613029527 3.4874206 -1103.2761
+139646.261303057 3.4873023 -1103.2168
+139647.2613031613 3.4873023 -1103.2959
+139648.2613032656 3.487263 -1103.2562
+139649.2613033699 3.4873023 -1103.1774
+139650.2613034742 3.4871843 -1103.2168
+139651.2613035785 3.487263 -1103.197
+139652.2613036828 3.4872236 -1103.2562
+139653.2613037871 3.487263 -1103.2366
+139654.2613038914 3.4871056 -1103.2366
+139655.2613039957 3.4871843 -1103.2761
+139656.2613041 3.487263 -1103.197
+139657.2613042044 3.4871843 -1103.1182
+139658.2613043087 3.487263 -1103.2562
+139659.261304413 3.487263 -1103.197
+139660.2613045173 3.4871056 -1103.2761
+139661.2613046216 3.4871449 -1103.197
+139662.2613047259 3.4871843 -1103.1576
+139663.2613048302 3.4870663 -1103.2366
+139664.2613049345 3.4871056 -1103.2959
+139665.2613050388 3.4870663 -1103.2168
+139666.2613051431 3.4871449 -1103.2168
+139667.2613052474 3.4870267 -1103.1576
+139668.2613053517 3.4870267 -1103.2168
+139669.2613054561 3.4870663 -1103.1774
+139670.2613055604 3.4870663 -1103.2366
+139671.2613056647 3.4870663 -1103.2562
+139672.261305769 3.486948 -1103.2562
+139673.2613058733 3.486948 -1103.2366
+139674.2613059776 3.4869874 -1103.2761
+139675.2613060819 3.486948 -1103.2366
+139676.2613061862 3.4870663 -1103.2168
+139677.2613062905 3.4869087 -1103.1378
+139678.2613063948 3.486948 -1103.2761
+139679.2613064991 3.4869087 -1103.2168
+139680.2613066034 3.4869087 -1103.2562
+139681.2613067077 3.486948 -1103.2168
+139682.2613068121 3.48683 -1103.2366
+139683.2613069164 3.4868693 -1103.2761
+139684.2613070207 3.486948 -1103.1576
+139685.261307125 3.4869087 -1103.2366
+139686.2613072293 3.48683 -1103.1182
+139687.2613073336 3.4868693 -1103.2959
+139688.2613074379 3.4868693 -1103.2366
+139689.2613075422 3.4867513 -1103.1182
+139690.2613076465 3.4868693 -1103.1576
+139691.2613077508 3.48683 -1103.2562
+139692.2613078551 3.4867907 -1103.2562
+139693.2613079594 3.4867513 -1103.1576
+139694.2613080638 3.4867907 -1103.197
+139695.2613081681 3.4867907 -1103.2366
+139696.2613082724 3.4867117 -1103.197
+139697.2613083767 3.4867907 -1103.2168
+139698.261308481 3.4867907 -1103.1576
+139699.2613085853 3.48683 -1103.1774
+139700.2613086896 3.4866724 -1103.197
+139701.2613087939 3.4867513 -1103.1378
+139702.2613088982 3.4866331 -1103.2168
+139703.2613090025 3.4866331 -1103.2168
+139704.2613091068 3.4865544 -1103.2366
+139705.2613092111 3.486515 -1103.2366
+139706.2613093155 3.486515 -1103.197
+139707.2613094198 3.4864361 -1103.197
+139708.2613095241 3.4864361 -1103.1378
+139709.2613096284 3.4864361 -1103.2761
+139710.2613097327 3.4862788 -1103.197
+139711.261309837 3.4863968 -1103.1774
+139712.2613099413 3.4863575 -1103.2562
+139713.2613100456 3.4862394 -1103.2366
+139714.2613101499 3.4862394 -1103.1576
+139715.2613102542 3.4862001 -1103.197
+139716.2613103585 3.4861608 -1103.2168
+139717.2613104628 3.4860425 -1103.1774
+139718.2613105671 3.4861212 -1103.2761
+139719.2613106715 3.4862394 -1103.1774
+139720.2613107758 3.4861212 -1103.2562
+139721.2613108801 3.4859638 -1103.2366
+139722.2613109844 3.4860818 -1103.197
+139723.2613110887 3.4859245 -1103.2168
+139724.261311193 3.4860425 -1103.197
+139725.2613112973 3.4860032 -1103.2562
+139726.2613114016 3.4860425 -1103.2168
+139727.2613115059 3.4859638 -1103.1576
+139728.2613116102 3.4859638 -1103.0984
+139729.2613117145 3.4860032 -1103.1774
+139730.2613118188 3.4859638 -1103.197
+139731.2613119232 3.4858851 -1103.2761
+139732.2613120275 3.4858458 -1103.2366
+139733.2613121318 3.4858851 -1103.2562
+139734.2613122361 3.4858062 -1103.2168
+139735.2613123404 3.4859245 -1103.2761
+139736.2613124447 3.4857669 -1103.1774
+139737.261312549 3.4858458 -1103.1576
+139738.2613126533 3.4858062 -1103.2366
+139739.2613127576 3.4857669 -1103.2366
+139740.2613128619 3.4858062 -1103.2366
+139741.2613129662 3.4857275 -1103.197
+139742.2613130705 3.4857275 -1103.1378
+139743.2613131749 3.4858062 -1103.2959
+139744.2613132792 3.4856882 -1103.2366
+139745.2613133835 3.4857275 -1103.2168
+139746.2613134878 3.4856489 -1103.2761
+139747.2613135921 3.4856882 -1103.2562
+139748.2613136964 3.4856489 -1103.0984
+139749.2613138007 3.4857275 -1103.1774
+139750.261313905 3.4856882 -1103.2168
+139751.2613140093 3.4856095 -1103.2168
+139752.2613141136 3.4856489 -1103.2562
+139753.2613142179 3.4855309 -1103.2168
+139754.2613143222 3.4855702 -1103.197
+139755.2613144265 3.4854913 -1103.1182
+139756.2613145309 3.4854519 -1103.2959
+139757.2613146352 3.4854913 -1103.2562
+139758.2613147395 3.4854519 -1103.197
+139759.2613148438 3.4854913 -1103.2366
+139760.2613149481 3.4854519 -1103.1774
+139761.2613150524 3.4855309 -1103.197
+139762.2613151567 3.4852946 -1103.197
+139763.261315261 3.4852946 -1103.2761
+139764.2613153653 3.4854519 -1103.2562
+139765.2613154696 3.4852159 -1103.1774
+139766.2613155739 3.4852159 -1103.1378
+139767.2613156782 3.4852159 -1103.197
+139768.2613157826 3.4852159 -1103.1774
+139769.2613158869 3.4851763 -1103.1774
+139770.2613159912 3.4852159 -1103.2959
+139771.2613160955 3.4852159 -1103.197
+139772.2613161998 3.4852159 -1103.2959
+139773.2613163041 3.4851763 -1103.2366
+139774.2613164084 3.4850976 -1103.2562
+139775.2613165127 3.4850583 -1103.197
+139776.261316617 3.4850976 -1103.2562
+139777.2613167213 3.4849403 -1103.197
+139778.2613168256 3.485019 -1103.2366
+139779.2613169299 3.4849796 -1103.2562
+139780.2613170343 3.4850583 -1103.2562
+139781.2613171386 3.4850976 -1103.1378
+139782.2613172429 3.4850976 -1103.1774
+139783.2613173472 3.4849796 -1103.2168
+139784.2613174515 3.4849796 -1103.1774
+139785.2613175558 3.485137 -1103.197
+139786.2613176601 3.485019 -1103.2366
+139787.2613177644 3.4850583 -1103.1378
+139788.2613178687 3.4849403 -1103.2562
+139789.261317973 3.4849403 -1103.2168
+139790.2613180773 3.4849796 -1103.197
+139791.2613181816 3.485019 -1103.3156
+139792.261318286 3.4849796 -1103.197
+139793.2613183903 3.484822 -1103.2761
+139794.2613184946 3.484704 -1103.2168
+139795.2613185989 3.4847827 -1103.2959
+139796.2613187032 3.4848614 -1103.2168
+139797.2613188075 3.484704 -1103.2761
+139798.2613189118 3.4847434 -1103.1576
+139799.2613190161 3.484704 -1103.1182
+139800.2613191204 3.484704 -1103.197
+139801.2613192247 3.484704 -1103.2366
+139802.261319329 3.4845858 -1103.1774
+139803.2613194333 3.484704 -1103.2761
+139804.2613195376 3.4847827 -1103.2366
+139805.261319642 3.484704 -1103.2761
+139806.2613197463 3.4846253 -1103.1576
+139807.2613198506 3.4846647 -1103.2168
+139808.2613199549 3.4845464 -1103.197
+139809.2613200592 3.4845071 -1103.3156
+139810.2613201635 3.4845858 -1103.0588
+139811.2613202678 3.4845858 -1103.2366
+139812.2613203721 3.4844677 -1103.1576
+139813.2613204764 3.4844677 -1103.197
+139814.2613205807 3.4844677 -1103.197
+139815.261320685 3.4844677 -1103.2366
+139816.2613207893 3.4843891 -1103.2168
+139817.2613208937 3.4843497 -1103.1378
+139818.261320998 3.4843104 -1103.197
+139819.2613211023 3.4843104 -1103.2366
+139820.2613212066 3.4842708 -1103.197
+139821.2613213109 3.4842315 -1103.2168
+139822.2613214152 3.4841528 -1103.2562
+139823.2613215195 3.4841528 -1103.1774
+139824.2613216238 3.4840348 -1103.197
+139825.2613217281 3.4841528 -1103.1774
+139826.2613218324 3.4841528 -1103.1774
+139827.2613219367 3.4841135 -1103.2562
+139828.261322041 3.4839954 -1103.1774
+139829.2613221454 3.4839165 -1103.2761
+139830.2613222497 3.4838772 -1103.2366
+139831.261322354 3.4839954 -1103.1774
+139832.2613224583 3.4838378 -1103.1774
+139833.2613225626 3.4838772 -1103.197
+139834.2613226669 3.4839165 -1103.2366
+139835.2613227712 3.4837985 -1103.2366
+139836.2613228755 3.4837985 -1103.2366
+139837.2613229798 3.4838772 -1103.2168
+139838.2613230841 3.4837985 -1103.1378
+139839.2613231884 3.4837198 -1103.2761
+139840.2613232927 3.4836805 -1103.2761
+139841.261323397 3.4837985 -1103.1378
+139842.2613235014 3.4836805 -1103.1774
+139843.2613236057 3.4837198 -1103.2959
+139844.26132371 3.4836016 -1103.2959
+139845.2613238143 3.4836409 -1103.2366
+139846.2613239186 3.4836016 -1103.2562
+139847.2613240229 3.4836016 -1103.1774
+139848.2613241272 3.4835229 -1103.2562
+139849.2613242315 3.4836016 -1103.2366
+139850.2613243358 3.4835622 -1103.1774
+139851.2613244401 3.4834836 -1103.2366
+139852.2613245444 3.4835229 -1103.2761
+139853.2613246487 3.4835622 -1103.2168
+139854.2613247531 3.4834836 -1103.1576
+139855.2613248574 3.4834049 -1103.1774
+139856.2613249617 3.4834442 -1103.2562
+139857.261325066 3.4834836 -1103.197
+139858.2613251703 3.4834442 -1103.2366
+139859.2613252746 3.4834836 -1103.197
+139860.2613253789 3.4835229 -1103.2366
+139861.2613254832 3.4834049 -1103.2562
+139862.2613255875 3.4834049 -1103.1378
+139863.2613256918 3.483326 -1103.197
+139864.2613257961 3.483326 -1103.3156
+139865.2613259004 3.4832079 -1103.197
+139866.2613260048 3.4832866 -1103.2366
+139867.2613261091 3.4832079 -1103.197
+139868.2613262134 3.4832473 -1103.1378
+139869.2613263177 3.4832866 -1103.3156
+139870.261326422 3.4832473 -1103.2562
+139871.2613265263 3.4831686 -1103.1774
+139872.2613266306 3.4832079 -1103.2366
+139873.2613267349 3.4831686 -1103.2366
+139874.2613268392 3.4832079 -1103.2168
+139875.2613269435 3.4831293 -1103.1378
+139876.2613270478 3.4831293 -1103.2562
+139877.2613271521 3.4831293 -1103.2168
+139878.2613272564 3.4830899 -1103.1576
+139879.2613273608 3.4831293 -1103.1774
+139880.2613274651 3.4830506 -1103.1774
+139881.2613275694 3.4831293 -1103.2168
+139882.2613276737 3.4832079 -1103.2959
+139883.261327778 3.483011 -1103.2168
+139884.2613278823 3.4830506 -1103.2959
+139885.2613279866 3.482893 -1103.1576
+139886.2613280909 3.4829323 -1103.197
+139887.2613281952 3.4830506 -1103.2761
+139888.2613282995 3.482893 -1103.1576
+139889.2613284038 3.4829717 -1103.1774
+139890.2613285081 3.4830506 -1103.2168
+139891.2613286125 3.4829717 -1103.1774
+139892.2613287168 3.483011 -1103.2168
+139893.2613288211 3.4829717 -1103.2562
+139894.2613289254 3.4828537 -1103.1182
+139895.2613290297 3.4829323 -1103.2366
+139896.261329134 3.4828143 -1103.1576
+139897.2613292383 3.482775 -1103.197
+139898.2613293426 3.482775 -1103.1774
+139899.2613294469 3.4828143 -1103.1378
+139900.2613295512 3.4827354 -1103.2562
+139901.2613296555 3.4827354 -1103.1576
+139902.2613297598 3.482775 -1103.2761
+139903.2613298642 3.4827354 -1103.2761
+139904.2613299685 3.4827354 -1103.2366
+139905.2613300728 3.4826567 -1103.2761
+139906.2613301771 3.4827354 -1103.2761
+139907.2613302814 3.4827354 -1103.1576
+139908.2613303857 3.482775 -1103.1774
+139909.26133049 3.482775 -1103.1774
+139910.2613305943 3.4827354 -1103.2366
+139911.2613306986 3.4826567 -1103.1774
+139912.2613308029 3.4826567 -1103.197
+139913.2613309072 3.482578 -1103.2562
+139914.2613310115 3.4826174 -1103.2168
+139915.2613311158 3.4826174 -1103.197
+139916.2613312202 3.4825387 -1103.2562
+139917.2613313245 3.4826174 -1103.2562
+139918.2613314288 3.482578 -1103.2761
+139919.2613315331 3.4825387 -1103.1576
+139920.2613316374 3.48246 -1103.2761
+139921.2613317417 3.482578 -1103.2366
+139922.261331846 3.4824994 -1103.2562
+139923.2613319503 3.48246 -1103.2562
+139924.2613320546 3.4826174 -1103.2366
+139925.2613321589 3.48246 -1103.2366
+139926.2613322632 3.4824204 -1103.2168
+139927.2613323675 3.48246 -1103.197
+139928.2613324719 3.4824204 -1103.2959
+139929.2613325762 3.4824994 -1103.2168
+139930.2613326805 3.4824204 -1103.2562
+139931.2613327848 3.4824204 -1103.2168
+139932.2613328891 3.4823811 -1103.197
+139933.2613329934 3.4824204 -1103.1378
+139934.2613330977 3.4824204 -1103.1182
+139935.261333202 3.4823024 -1103.2168
+139936.2613333063 3.4823418 -1103.2168
+139937.2613334106 3.4822631 -1103.2366
+139938.2613335149 3.4823811 -1103.1774
+139939.2613336192 3.4823024 -1103.3156
+139940.2613337236 3.4822631 -1103.2562
+139941.2613338279 3.4822237 -1103.1774
+139942.2613339322 3.4823024 -1103.1774
+139943.2613340365 3.4822237 -1103.2366
+139944.2613341408 3.4821451 -1103.2366
+139945.2613342451 3.4821844 -1103.2366
+139946.2613343494 3.4821844 -1103.2562
+139947.2613344537 3.4822237 -1103.197
+139948.261334558 3.4821844 -1103.2168
+139949.2613346623 3.4820662 -1103.3156
+139950.2613347666 3.4821055 -1103.2959
+139951.2613348709 3.4820268 -1103.2366
+139952.2613349753 3.4820268 -1103.2959
+139953.2613350796 3.4820268 -1103.2366
+139954.2613351839 3.4820268 -1103.2168
+139955.2613352882 3.4819875 -1103.197
+139956.2613353925 3.4819088 -1103.1774
+139957.2613354968 3.4818695 -1103.1576
+139958.2613356011 3.4819875 -1103.2168
+139959.2613357054 3.4819088 -1103.1378
+139960.2613358097 3.4818695 -1103.2562
+139961.261335914 3.4817905 -1103.2366
+139962.2613360183 3.4818301 -1103.197
+139963.2613361226 3.4818301 -1103.2168
+139964.2613362269 3.4818301 -1103.0984
+139965.2613363313 3.4818695 -1103.2366
+139966.2613364356 3.4819088 -1103.2168
+139967.2613365399 3.4817512 -1103.2959
+139968.2613366442 3.4817512 -1103.3156
+139969.2613367485 3.4817119 -1103.2366
+139970.2613368528 3.4816725 -1103.2168
+139971.2613369571 3.4817512 -1103.1774
+139972.2613370614 3.4816332 -1103.1774
+139973.2613371657 3.4815545 -1103.2562
+139974.26133727 3.4816725 -1103.2562
+139975.2613373743 3.4815152 -1103.2761
+139976.2613374786 3.4815938 -1103.2761
+139977.261337583 3.4815152 -1103.2761
+139978.2613376873 3.4814756 -1103.1576
+139979.2613377916 3.4814756 -1103.197
+139980.2613378959 3.4814363 -1103.2168
+139981.2613380002 3.4813969 -1103.2959
+139982.2613381045 3.4813969 -1103.197
+139983.2613382088 3.4814363 -1103.1378
+139984.2613383131 3.4813969 -1103.2959
+139985.2613384174 3.4814756 -1103.2168
+139986.2613385217 3.4813969 -1103.1576
+139987.261338626 3.4812789 -1103.2168
+139988.2613387303 3.4813969 -1103.2366
+139989.2613388347 3.4813969 -1103.197
+139990.261338939 3.4813576 -1103.2168
+139991.2613390433 3.4813969 -1103.2168
+139992.2613391476 3.4813576 -1103.2366
+139993.2613392519 3.4812002 -1103.197
+139994.2613393562 3.4812396 -1103.2168
+139995.2613394605 3.4812396 -1103.2761
+139996.2613395648 3.4812789 -1103.2562
+139997.2613396691 3.4813576 -1103.2562
+139998.2613397734 3.4811606 -1103.197
+139999.2613398777 3.4811213 -1103.1378
+140000.261339982 3.4812002 -1103.2168
+140001.2613400863 3.4811606 -1103.2168
+140002.2613401907 3.4811606 -1103.1576
+140003.261340295 3.481082 -1103.197
+140004.2613403993 3.4811606 -1103.197
+140005.2613405036 3.4810426 -1103.197
+140006.2613406079 3.4809639 -1103.2562
+140007.2613407122 3.4810033 -1103.197
+140008.2613408165 3.4810033 -1103.2168
+140009.2613409208 3.4809246 -1103.197
+140010.2613410251 3.4809639 -1103.2168
+140011.2613411294 3.480885 -1103.1774
+140012.2613412337 3.480767 -1103.1774
+140013.261341338 3.4808064 -1103.197
+140014.2613414424 3.480767 -1103.2168
+140015.2613415467 3.4808064 -1103.1774
+140016.261341651 3.480767 -1103.1774
+140017.2613417553 3.4808064 -1103.2366
+140018.2613418596 3.480649 -1103.1576
+140019.2613419639 3.480649 -1103.2761
+140020.2613420682 3.4807277 -1103.2168
+140021.2613421725 3.4805307 -1103.197
+140022.2613422768 3.4805701 -1103.2366
+140023.2613423811 3.4806097 -1103.2168
+140024.2613424854 3.4805701 -1103.197
+140025.2613425897 3.4804914 -1103.1576
+140026.2613426941 3.4804521 -1103.1774
+140027.2613427984 3.4805701 -1103.1576
+140028.2613429027 3.4804521 -1103.197
+140029.261343007 3.4804521 -1103.1576
+140030.2613431113 3.4803734 -1103.197
+140031.2613432156 3.4804521 -1103.2761
+140032.2613433199 3.480334 -1103.1774
+140033.2613434242 3.4803734 -1103.1774
+140034.2613435285 3.480334 -1103.2168
+140035.2613436328 3.4802551 -1103.197
+140036.2613437371 3.4802551 -1103.2366
+140037.2613438414 3.4802947 -1103.2168
+140038.2613439457 3.4801764 -1103.2366
+140039.2613440501 3.4802551 -1103.2168
+140040.2613441544 3.4801764 -1103.197
+140041.2613442587 3.4802551 -1103.197
+140042.261344363 3.4801371 -1103.1182
+140043.2613444673 3.4801371 -1103.1576
+140044.2613445716 3.4800191 -1103.1576
+140045.2613446759 3.4800191 -1103.1576
+140046.2613447802 3.4800191 -1103.2168
+140047.2613448845 3.4800191 -1103.1774
+140048.2613449888 3.4798615 -1103.197
+140049.2613450931 3.4798615 -1103.197
+140050.2613451974 3.4799008 -1103.1774
+140051.2613453018 3.4798615 -1103.197
+140052.2613454061 3.4797828 -1103.2168
+140053.2613455104 3.4797435 -1103.3551
+140054.2613456147 3.4798222 -1103.2959
+140055.261345719 3.4797435 -1103.2168
+140056.2613458233 3.4798222 -1103.1774
+140057.2613459276 3.4797435 -1103.2959
+140058.2613460319 3.4797828 -1103.2562
+140059.2613461362 3.4796648 -1103.2761
+140060.2613462405 3.4798222 -1103.197
+140061.2613463448 3.4796648 -1103.2366
+140062.2613464491 3.4797435 -1103.1576
+140063.2613465535 3.4797435 -1103.2168
+140064.2613466578 3.4796252 -1103.2562
+140065.2613467621 3.4797041 -1103.1378
+140066.2613468664 3.4796648 -1103.1378
+140067.2613469707 3.4797828 -1103.1182
+140068.261347075 3.4797041 -1103.2168
+140069.2613471793 3.4797041 -1103.2168
+140070.2613472836 3.4795859 -1103.1378
+140071.2613473879 3.4795859 -1103.2761
+140072.2613474922 3.4795465 -1103.2168
+140073.2613475965 3.4796252 -1103.2168
+140074.2613477008 3.4796252 -1103.2168
+140075.2613478052 3.4795859 -1103.2168
+140076.2613479095 3.4795859 -1103.1774
+140077.2613480138 3.4795465 -1103.197
+140078.2613481181 3.4796252 -1103.2562
+140079.2613482224 3.4795859 -1103.197
+140080.2613483267 3.4795465 -1103.2168
+140081.261348431 3.4794679 -1103.197
+140082.2613485353 3.4795072 -1103.1182
+140083.2613486396 3.4795072 -1103.2366
+140084.2613487439 3.4794679 -1103.1774
+140085.2613488482 3.4795072 -1103.1774
+140086.2613489525 3.4794679 -1103.1774
+140087.2613490568 3.4793496 -1103.3156
+140088.2613491612 3.4793496 -1103.1774
+140089.2613492655 3.4793496 -1103.1378
+140090.2613493698 3.4793496 -1103.1774
+140091.2613494741 3.4793496 -1103.2366
+140092.2613495784 3.4792709 -1103.2366
+140093.2613496827 3.4791923 -1103.2562
+140094.261349787 3.4792316 -1103.2366
+140095.2613498913 3.4791923 -1103.197
+140096.2613499956 3.4791529 -1103.2366
+140097.2613500999 3.4789953 -1103.2366
+140098.2613502042 3.4791923 -1103.2959
+140099.2613503085 3.4791923 -1103.2761
+140100.2613504129 3.4791136 -1103.197
+140101.2613505172 3.4791529 -1103.3353
+140102.2613506215 3.4790347 -1103.2168
+140103.2613507258 3.4789953 -1103.1182
+140104.2613508301 3.478956 -1103.197
+140105.2613509344 3.478956 -1103.197
+140106.2613510387 3.4788773 -1103.1774
+140107.261351143 3.4789166 -1103.197
+140108.2613512473 3.4787593 -1103.2562
+140109.2613513516 3.478838 -1103.1774
+140110.2613514559 3.4788773 -1103.2168
+140111.2613515602 3.4787986 -1103.1576
+140112.2613516646 3.4787593 -1103.2761
+140113.2613517689 3.478838 -1103.1576
+140114.2613518732 3.4787197 -1103.2761
+140115.2613519775 3.478838 -1103.197
+140116.2613520818 3.4787593 -1103.197
+140117.2613521861 3.4786804 -1103.2761
+140118.2613522904 3.4787197 -1103.2562
+140119.2613523947 3.4786017 -1103.1774
+140120.261352499 3.478523 -1103.1774
+140121.2613526033 3.4785624 -1103.2562
+140122.2613527076 3.478523 -1103.2562
+140123.2613528119 3.4786017 -1103.2959
+140124.2613529162 3.4785624 -1103.2959
+140125.2613530206 3.478523 -1103.1378
+140126.2613531249 3.4784443 -1103.1774
+140127.2613532292 3.4784443 -1103.2366
+140128.2613533335 3.478523 -1103.2366
+140129.2613534378 3.4784443 -1103.2562
+140130.2613535421 3.4783654 -1103.2366
+140131.2613536464 3.4783261 -1103.2562
+140132.2613537507 3.4783261 -1103.2761
+140133.261353855 3.4783654 -1103.2168
+140134.2613539593 3.4782867 -1103.197
+140135.2613540636 3.4783654 -1103.197
+140136.2613541679 3.4782867 -1103.1774
+140137.2613542723 3.4782081 -1103.2168
+140138.2613543766 3.4782867 -1103.2366
+140139.2613544809 3.4781687 -1103.2562
+140140.2613545852 3.4781294 -1103.2168
+140141.2613546895 3.4781294 -1103.2366
+140142.2613547938 3.4780898 -1103.2168
+140143.2613548981 3.4779718 -1103.197
+140144.2613550024 3.4780505 -1103.1378
+140145.2613551067 3.4780505 -1103.2168
+140146.261355211 3.4780111 -1103.2168
+140147.2613553153 3.4779325 -1103.197
+140148.2613554196 3.4778538 -1103.2562
+140149.261355524 3.4779718 -1103.2761
+140150.2613556283 3.4779325 -1103.2168
+140151.2613557326 3.4779325 -1103.1576
+140152.2613558369 3.4779718 -1103.2168
+140153.2613559412 3.4777749 -1103.2761
+140154.2613560455 3.4777749 -1103.2168
+140155.2613561498 3.4779325 -1103.2959
+140156.2613562541 3.4779325 -1103.197
+140157.2613563584 3.4778144 -1103.2366
+140158.2613564627 3.4777749 -1103.2168
+140159.261356567 3.4778931 -1103.2168
+140160.2613566713 3.4778144 -1103.2366
+140161.2613567756 3.4778538 -1103.2562
+140162.26135688 3.4777749 -1103.197
+140163.2613569843 3.4777355 -1103.3156
+140164.2613570886 3.4778144 -1103.2562
+140165.2613571929 3.4777355 -1103.2562
+140166.2613572972 3.4777749 -1103.2761
+140167.2613574015 3.4777355 -1103.2168
+140168.2613575058 3.4777749 -1103.197
+140169.2613576101 3.4778144 -1103.1576
+140170.2613577144 3.4777355 -1103.2366
+140171.2613578187 3.4776962 -1103.1576
+140172.261357923 3.4776962 -1103.2366
+140173.2613580273 3.4777355 -1103.2366
+140174.2613581317 3.4777749 -1103.2168
+140175.261358236 3.4776568 -1103.2562
+140176.2613583403 3.4776175 -1103.1774
+140177.2613584446 3.4776568 -1103.2959
+140178.2613585489 3.4776175 -1103.1774
+140179.2613586532 3.4775782 -1103.2168
+140180.2613587575 3.4775782 -1103.2168
+140181.2613588618 3.4776175 -1103.197
+140182.2613589661 3.4776568 -1103.2168
+140183.2613590704 3.4775782 -1103.2562
+140184.2613591747 3.4775388 -1103.1378
+140185.261359279 3.4774599 -1103.197
+140186.2613593834 3.4775782 -1103.1378
+140187.2613594877 3.4775782 -1103.2562
+140188.261359592 3.4774992 -1103.1576
+140189.2613596963 3.4774206 -1103.2168
+140190.2613598006 3.4773812 -1103.1576
+140191.2613599049 3.4773812 -1103.1774
+140192.2613600092 3.4773419 -1103.2761
+140193.2613601135 3.4773419 -1103.1576
+140194.2613602178 3.4773419 -1103.2168
+140195.2613603221 3.4773419 -1103.2562
+140196.2613604264 3.4773419 -1103.2761
+140197.2613605307 3.4772632 -1103.197
+140198.2613606351 3.4772239 -1103.2168
+140199.2613607394 3.4773026 -1103.2562
+140200.2613608437 3.4773026 -1103.1774
+140201.261360948 3.4771843 -1103.2168
+140202.2613610523 3.4771843 -1103.2562
+140203.2613611566 3.4772239 -1103.1378
+140204.2613612609 3.4773419 -1103.2562
+140205.2613613652 3.4772239 -1103.1576
+140206.2613614695 3.4770663 -1103.197
+140207.2613615738 3.4771056 -1103.2168
+140208.2613616781 3.4770663 -1103.2168
+140209.2613617824 3.4769876 -1103.1774
+140210.2613618867 3.4771056 -1103.2562
+140211.2613619911 3.4769483 -1103.1576
+140212.2613620954 3.4769483 -1103.0984
+140213.2613621997 3.4770269 -1103.3156
+140214.261362304 3.4769089 -1103.1576
+140215.2613624083 3.4769483 -1103.1576
+140216.2613625126 3.4768693 -1103.197
+140217.2613626169 3.4768693 -1103.1774
+140218.2613627212 3.4767513 -1103.2761
+140219.2613628255 3.4768693 -1103.2761
+140220.2613629298 3.4767513 -1103.2366
+140221.2613630341 3.4767907 -1103.0984
+140222.2613631384 3.4767513 -1103.2761
+140223.2613632428 3.476594 -1103.2562
+140224.2613633471 3.4766726 -1103.197
+140225.2613634514 3.4767513 -1103.1774
+140226.2613635557 3.476712 -1103.2366
+140227.26136366 3.4767513 -1103.3156
+140228.2613637643 3.4766726 -1103.2168
+140229.2613638686 3.4766333 -1103.2366
+140230.2613639729 3.4766726 -1103.1774
+140231.2613640772 3.4765544 -1103.0984
+140232.2613641815 3.476594 -1103.1774
+140233.2613642858 3.4765544 -1103.2761
+140234.2613643901 3.476594 -1103.197
+140235.2613644945 3.4765151 -1103.197
+140236.2613645988 3.4765151 -1103.197
+140237.2613647031 3.4765151 -1103.1774
+140238.2613648074 3.4764364 -1103.197
+140239.2613649117 3.4764757 -1103.2562
+140240.261365016 3.476397 -1103.2366
+140241.2613651203 3.476397 -1103.2168
+140242.2613652246 3.476279 -1103.3749
+140243.2613653289 3.476397 -1103.1378
+140244.2613654332 3.4762394 -1103.2168
+140245.2613655375 3.4762394 -1103.2168
+140246.2613656418 3.4763184 -1103.2168
+140247.2613657461 3.4763577 -1103.2366
+140248.2613658505 3.4763577 -1103.2366
+140249.2613659548 3.4762394 -1103.1378
+140250.2613660591 3.476279 -1103.197
+140251.2613661634 3.476279 -1103.2366
+140252.2613662677 3.4761608 -1103.2168
+140253.261366372 3.4762001 -1103.1774
+140254.2613664763 3.4761214 -1103.1378
+140255.2613665806 3.4761608 -1103.197
+140256.2613666849 3.4761214 -1103.1576
+140257.2613667892 3.4761214 -1103.1774
+140258.2613668935 3.4761214 -1103.1774
+140259.2613669978 3.4760427 -1103.2366
+140260.2613671022 3.4760427 -1103.2168
+140261.2613672065 3.4760427 -1103.197
+140262.2613673108 3.4759641 -1103.1774
+140263.2613674151 3.4759641 -1103.197
+140264.2613675194 3.4759245 -1103.197
+140265.2613676237 3.4760034 -1103.2168
+140266.261367728 3.4760034 -1103.2168
+140267.2613678323 3.4759245 -1103.1774
+140268.2613679366 3.4759245 -1103.2761
+140269.2613680409 3.4760821 -1103.2761
+140270.2613681452 3.4758458 -1103.2761
+140271.2613682495 3.4759245 -1103.2761
+140272.2613683539 3.4758458 -1103.2959
+140273.2613684582 3.4758458 -1103.2761
+140274.2613685625 3.4757671 -1103.1774
+140275.2613686668 3.4758458 -1103.3353
+140276.2613687711 3.4758065 -1103.2168
+140277.2613688754 3.4758458 -1103.2562
+140278.2613689797 3.4757278 -1103.0984
+140279.261369084 3.4756885 -1103.197
+140280.2613691883 3.4756885 -1103.197
+140281.2613692926 3.4756885 -1103.2366
+140282.2613693969 3.4756489 -1103.2562
+140283.2613695012 3.4757278 -1103.2366
+140284.2613696055 3.4756095 -1103.2366
+140285.2613697099 3.4756489 -1103.197
+140286.2613698142 3.4755309 -1103.2168
+140287.2613699185 3.4754915 -1103.197
+140288.2613700228 3.4756095 -1103.1576
+140289.2613701271 3.4755702 -1103.197
+140290.2613702314 3.4755702 -1103.1576
+140291.2613703357 3.4753735 -1103.197
+140292.26137044 3.4754128 -1103.2959
+140293.2613705443 3.4754128 -1103.2366
+140294.2613706486 3.4754522 -1103.1576
+140295.2613707529 3.4754128 -1103.2168
+140296.2613708572 3.4753735 -1103.2168
+140297.2613709616 3.4753339 -1103.197
+140298.2613710659 3.4753735 -1103.2366
+140299.2613711702 3.4752946 -1103.197
+140300.2613712745 3.4752946 -1103.2761
+140301.2613713788 3.4751766 -1103.2168
+140302.2613714831 3.4752159 -1103.197
+140303.2613715874 3.4752553 -1103.2168
+140304.2613716917 3.4751372 -1103.2562
+140305.261371796 3.4751372 -1103.2168
+140306.2613719003 3.4750979 -1103.1774
+140307.2613720046 3.4750586 -1103.1774
+140308.2613721089 3.4751372 -1103.2366
+140309.2613722133 3.4750586 -1103.197
+140310.2613723176 3.4750979 -1103.197
+140311.2613724219 3.475019 -1103.197
+140312.2613725262 3.4751372 -1103.1576
+140313.2613726305 3.4749403 -1103.2366
+140314.2613727348 3.4750586 -1103.2366
+140315.2613728391 3.4750586 -1103.1774
+140316.2613729434 3.475019 -1103.2168
+140317.2613730477 3.475019 -1103.197
+140318.261373152 3.4749796 -1103.1774
+140319.2613732563 3.4749796 -1103.1774
+140320.2613733606 3.4748616 -1103.2366
+140321.2613734649 3.4750586 -1103.2761
+140322.2613735693 3.4749403 -1103.2959
+140323.2613736736 3.4748616 -1103.197
+140324.2613737779 3.474901 -1103.197
+140325.2613738822 3.4748616 -1103.2366
+140326.2613739865 3.4749403 -1103.197
+140327.2613740908 3.4748223 -1103.197
+140328.2613741951 3.4748616 -1103.2168
+140329.2613742994 3.4749403 -1103.2168
+140330.2613744037 3.475019 -1103.1774
+140331.261374508 3.4749403 -1103.1774
+140332.2613746123 3.4749796 -1103.2168
+140333.2613747166 3.4747436 -1103.2366
+140334.261374821 3.4748223 -1103.1774
+140335.2613749253 3.474901 -1103.1774
+140336.2613750296 3.475019 -1103.2366
+140337.2613751339 3.474901 -1103.2562
+140338.2613752382 3.4748616 -1103.2562
+140339.2613753425 3.474901 -1103.3156
+140340.2613754468 3.4748223 -1103.2562
+140341.2613755511 3.4748223 -1103.2959
+140342.2613756554 3.4747829 -1103.2168
+140343.2613757597 3.4747436 -1103.1774
+140344.261375864 3.4747829 -1103.1378
+140345.2613759683 3.4748223 -1103.197
+140346.2613760727 3.4748223 -1103.1774
+140347.261376177 3.4747829 -1103.1576
+140348.2613762813 3.4746253 -1103.2562
+140349.2613763856 3.4747436 -1103.1182
+140350.2613764899 3.474704 -1103.2366
+140351.2613765942 3.4746647 -1103.1182
+140352.2613766985 3.4746647 -1103.2562
+140353.2613768028 3.4746253 -1103.2168
+140354.2613769071 3.4746647 -1103.2562
+140355.2613770114 3.4746647 -1103.2168
+140356.2613771157 3.4746647 -1103.197
+140357.26137722 3.4746253 -1103.2168
+140358.2613773244 3.4745073 -1103.1774
+140359.2613774287 3.474586 -1103.2168
+140360.261377533 3.4746253 -1103.197
+140361.2613776373 3.474586 -1103.2562
+140362.2613777416 3.474586 -1103.2366
+140363.2613778459 3.4746253 -1103.2168
+140364.2613779502 3.4745073 -1103.197
+140365.2613780545 3.4745467 -1103.1378
+140366.2613781588 3.474468 -1103.2168
+140367.2613782631 3.474468 -1103.2761
+140368.2613783674 3.4745073 -1103.2366
+140369.2613784717 3.4745073 -1103.0984
+140370.261378576 3.4743891 -1103.197
+140371.2613786804 3.4743891 -1103.2168
+140372.2613787847 3.4743891 -1103.197
+140373.261378889 3.4742317 -1103.2168
+140374.2613789933 3.4742711 -1103.2168
+140375.2613790976 3.4742317 -1103.1576
+140376.2613792019 3.4742317 -1103.197
+140377.2613793062 3.4743104 -1103.1774
+140378.2613794105 3.4741137 -1103.2366
+140379.2613795148 3.4742711 -1103.2366
+140380.2613796191 3.4741924 -1103.197
+140381.2613797234 3.4740741 -1103.197
+140382.2613798277 3.4740741 -1103.2366
+140383.2613799321 3.4739954 -1103.197
+140384.2613800364 3.4739954 -1103.2168
+140385.2613801407 3.4739954 -1103.2366
+140386.261380245 3.4739168 -1103.1774
+140387.2613803493 3.4740348 -1103.2168
+140388.2613804536 3.4739561 -1103.3156
+140389.2613805579 3.4739954 -1103.2168
+140390.2613806622 3.4739954 -1103.2761
+140391.2613807665 3.4739168 -1103.2168
+140392.2613808708 3.4739561 -1103.2366
+140393.2613809751 3.4738381 -1103.2761
+140394.2613810794 3.4737985 -1103.197
+140395.2613811838 3.4738381 -1103.1576
+140396.2613812881 3.4737985 -1103.197
+140397.2613813924 3.4737592 -1103.3551
+140398.2613814967 3.4737198 -1103.2761
+140399.261381601 3.4736412 -1103.2366
+140400.2613817053 3.4736412 -1103.197
+140401.2613818096 3.4736412 -1103.1182
+140402.2613819139 3.4736805 -1103.2366
+140403.2613820182 3.4737198 -1103.2366
+140404.2613821225 3.4735625 -1103.197
+140405.2613822268 3.4736018 -1103.1774
+140406.2613823311 3.4736412 -1103.2168
+140407.2613824354 3.4736018 -1103.197
+140408.2613825398 3.4735625 -1103.2168
+140409.2613826441 3.4734836 -1103.1774
+140410.2613827484 3.4734836 -1103.2562
+140411.2613828527 3.4734836 -1103.2366
+140412.261382957 3.4735231 -1103.1774
+140413.2613830613 3.4734049 -1103.197
+140414.2613831656 3.4734442 -1103.2761
+140415.2613832699 3.4733262 -1103.1774
+140416.2613833742 3.4734442 -1103.2168
+140417.2613834785 3.4733655 -1103.2366
+140418.2613835828 3.4733655 -1103.197
+140419.2613836871 3.4733262 -1103.2562
+140420.2613837915 3.4731686 -1103.2168
+140421.2613838958 3.4732475 -1103.2761
+140422.2613840001 3.4732082 -1103.2366
+140423.2613841044 3.4732082 -1103.2761
+140424.2613842087 3.4731686 -1103.1774
+140425.261384313 3.4730899 -1103.197
+140426.2613844173 3.4730899 -1103.2366
+140427.2613845216 3.4729719 -1103.1774
+140428.2613846259 3.4730506 -1103.1774
+140429.2613847302 3.4730899 -1103.2562
+140430.2613848345 3.4729719 -1103.197
+140431.2613849388 3.4730506 -1103.197
+140432.2613850432 3.4730113 -1103.2562
+140433.2613851475 3.4729719 -1103.197
+140434.2613852518 3.4728932 -1103.1774
+140435.2613853561 3.4730506 -1103.2562
+140436.2613854604 3.4728932 -1103.197
+140437.2613855647 3.4728537 -1103.2562
+140438.261385669 3.4728537 -1103.2366
+140439.2613857733 3.472775 -1103.2366
+140440.2613858776 3.4728932 -1103.2366
+140441.2613859819 3.4728537 -1103.2366
+140442.2613860862 3.4728932 -1103.197
+140443.2613861905 3.4728932 -1103.2366
+140444.2613862948 3.4728932 -1103.2366
+140445.2613863992 3.472775 -1103.1182
+140446.2613865035 3.472775 -1103.2761
+140447.2613866078 3.4728143 -1103.2366
+140448.2613867121 3.472775 -1103.197
+140449.2613868164 3.4727356 -1103.1774
+140450.2613869207 3.4728143 -1103.2366
+140451.261387025 3.472775 -1103.1774
+140452.2613871293 3.472775 -1103.1576
+140453.2613872336 3.472775 -1103.2562
+140454.2613873379 3.4726963 -1103.2562
+140455.2613874422 3.4726963 -1103.197
+140456.2613875465 3.4726963 -1103.2366
+140457.2613876509 3.4727356 -1103.197
+140458.2613877552 3.472657 -1103.2562
+140459.2613878595 3.4727356 -1103.197
+140460.2613879638 3.472657 -1103.197
+140461.2613880681 3.4725783 -1103.2168
+140462.2613881724 3.4725783 -1103.2959
+140463.2613882767 3.4726176 -1103.197
+140464.261388381 3.4726176 -1103.2366
+140465.2613884853 3.4726176 -1103.1774
+140466.2613885896 3.4725387 -1103.1182
+140467.2613886939 3.472657 -1103.197
+140468.2613887982 3.4725783 -1103.197
+140469.2613889026 3.47246 -1103.1182
+140470.2613890069 3.4725387 -1103.1774
+140471.2613891112 3.472342 -1103.2366
+140472.2613892155 3.4724207 -1103.3353
+140473.2613893198 3.4723814 -1103.2168
+140474.2613894241 3.4723814 -1103.2366
+140475.2613895284 3.4724207 -1103.2761
+140476.2613896327 3.4723027 -1103.3156
+140477.261389737 3.4724207 -1103.0984
+140478.2613898413 3.4723814 -1103.197
+140479.2613899456 3.472342 -1103.2366
+140480.2613900499 3.4723027 -1103.2562
+140481.2613901543 3.4721844 -1103.2366
+140482.2613902586 3.472342 -1103.197
+140483.2613903629 3.472342 -1103.2168
+140484.2613904672 3.4721844 -1103.2366
+140485.2613905715 3.4721844 -1103.2761
+140486.2613906758 3.4721451 -1103.1378
+140487.2613907801 3.4721057 -1103.197
+140488.2613908844 3.4721451 -1103.1774
+140489.2613909887 3.4721057 -1103.2366
+140490.261391093 3.4720664 -1103.197
+140491.2613911973 3.4721057 -1103.2366
+140492.2613913016 3.4721451 -1103.197
+140493.2613914059 3.4720664 -1103.2366
+140494.2613915103 3.4719877 -1103.2959
+140495.2613916146 3.4719481 -1103.2168
+140496.2613917189 3.4719481 -1103.1774
+140497.2613918232 3.4719481 -1103.1774
+140498.2613919275 3.4718301 -1103.1774
+140499.2613920318 3.4717908 -1103.1576
+140500.2613921361 3.4718695 -1103.197
+140501.2613922404 3.4718301 -1103.2959
+140502.2613923447 3.4718301 -1103.1774
+140503.261392449 3.4717515 -1103.1774
+140504.2613925533 3.4716332 -1103.2761
+140505.2613926576 3.4717515 -1103.1774
+140506.261392762 3.4717515 -1103.1576
+140507.2613928663 3.4716728 -1103.1378
+140508.2613929706 3.4715545 -1103.2366
+140509.2613930749 3.4717515 -1103.2366
+140510.2613931792 3.4715545 -1103.2366
+140511.2613932835 3.4715152 -1103.2761
+140512.2613933878 3.4715545 -1103.2366
+140513.2613934921 3.4716332 -1103.197
+140514.2613935964 3.4715545 -1103.197
+140515.2613937007 3.4715152 -1103.3156
+140516.261393805 3.4714758 -1103.2366
+140517.2613939093 3.4713972 -1103.2168
+140518.2613940137 3.4713972 -1103.2959
+140519.261394118 3.4715152 -1103.1378
+140520.2613942223 3.4714365 -1103.2168
+140521.2613943266 3.4713578 -1103.2761
+140522.2613944309 3.4712789 -1103.1774
+140523.2613945352 3.4713578 -1103.3156
+140524.2613946395 3.4713182 -1103.2562
+140525.2613947438 3.4714365 -1103.197
+140526.2613948481 3.4713182 -1103.197
+140527.2613949524 3.4713578 -1103.2168
+140528.2613950567 3.4713578 -1103.1378
+140529.261395161 3.4713578 -1103.1774
+140530.2613952653 3.4712002 -1103.2562
+140531.2613953697 3.4712396 -1103.197
+140532.261395474 3.4713182 -1103.197
+140533.2613955783 3.4712789 -1103.1576
+140534.2613956826 3.4712789 -1103.2366
+140535.2613957869 3.4712002 -1103.2562
+140536.2613958912 3.4711609 -1103.2168
+140537.2613959955 3.4712396 -1103.197
+140538.2613960998 3.4712002 -1103.2366
+140539.2613962041 3.4711215 -1103.2761
+140540.2613963084 3.4710822 -1103.0588
+140541.2613964127 3.4710822 -1103.1576
+140542.261396517 3.4711215 -1103.2168
+140543.2613966214 3.4711215 -1103.2168
+140544.2613967257 3.4710429 -1103.2761
+140545.26139683 3.470964 -1103.1774
+140546.2613969343 3.4710429 -1103.1774
+140547.2613970386 3.4710033 -1103.2366
+140548.2613971429 3.470964 -1103.1378
+140549.2613972472 3.470964 -1103.1576
+140550.2613973515 3.470964 -1103.2562
+140551.2613974558 3.4709246 -1103.197
+140552.2613975601 3.4708459 -1103.1576
+140553.2613976644 3.4708853 -1103.197
+140554.2613977687 3.4708459 -1103.1576
+140555.2613978731 3.4709246 -1103.2761
+140556.2613979774 3.4708459 -1103.2168
+140557.2613980817 3.4707673 -1103.1576
+140558.261398186 3.4708459 -1103.2168
+140559.2613982903 3.4708853 -1103.1378
+140560.2613983946 3.4708066 -1103.1576
+140561.2613984989 3.4707279 -1103.2761
+140562.2613986032 3.4706883 -1103.1378
+140563.2613987075 3.470649 -1103.197
+140564.2613988118 3.4706883 -1103.197
+140565.2613989161 3.4706097 -1103.1378
+140566.2613990204 3.4705703 -1103.197
+140567.2613991247 3.4706883 -1103.2562
+140568.2613992291 3.4705703 -1103.2366
+140569.2613993334 3.4706097 -1103.1774
+140570.2613994377 3.4705703 -1103.197
+140571.261399542 3.4705703 -1103.2562
+140572.2613996463 3.4704916 -1103.2168
+140573.2613997506 3.470531 -1103.2366
+140574.2613998549 3.4703734 -1103.2366
+140575.2613999592 3.4704127 -1103.1378
+140576.2614000635 3.4704916 -1103.2761
+140577.2614001678 3.4704523 -1103.2761
+140578.2614002721 3.4704916 -1103.2761
+140579.2614003764 3.4704916 -1103.2562
+140580.2614004808 3.4704916 -1103.2959
+140581.2614005851 3.4704127 -1103.2761
+140582.2614006894 3.4703734 -1103.2761
+140583.2614007937 3.4703734 -1103.2959
+140584.261400898 3.4702947 -1103.2366
+140585.2614010023 3.4703341 -1103.1576
+140586.2614011066 3.4702554 -1103.1774
+140587.2614012109 3.4701767 -1103.2562
+140588.2614013152 3.4701767 -1103.2366
+140589.2614014195 3.4702947 -1103.1378
+140590.2614015238 3.4702554 -1103.1378
+140591.2614016281 3.4702947 -1103.2366
+140592.2614017325 3.470216 -1103.197
+140593.2614018368 3.4701767 -1103.2366
+140594.2614019411 3.470216 -1103.2366
+140595.2614020454 3.4701374 -1103.2168
+140596.2614021497 3.470216 -1103.1774
+140597.261402254 3.4701374 -1103.197
+140598.2614023583 3.4700978 -1103.2761
+140599.2614024626 3.4700191 -1103.1576
+140600.2614025669 3.4700584 -1103.197
+140601.2614026712 3.4700191 -1103.2562
+140602.2614027755 3.4700191 -1103.2562
+140603.2614028798 3.4699011 -1103.3353
+140604.2614029842 3.4699011 -1103.2168
+140605.2614030885 3.4699404 -1103.2562
+140606.2614031928 3.4699011 -1103.1774
+140607.2614032971 3.4698617 -1103.2168
+140608.2614034014 3.4698617 -1103.2168
+140609.2614035057 3.4698617 -1103.1774
+140610.26140361 3.4699011 -1103.1774
+140611.2614037143 3.4696648 -1103.2168
+140612.2614038186 3.4697042 -1103.2366
+140613.2614039229 3.4696648 -1103.197
+140614.2614040272 3.4696648 -1103.197
+140615.2614041315 3.4697042 -1103.1576
+140616.2614042358 3.4697042 -1103.2366
+140617.2614043402 3.4696648 -1103.2168
+140618.2614044445 3.4695468 -1103.2168
+140619.2614045488 3.4695075 -1103.2168
+140620.2614046531 3.4696255 -1103.1576
+140621.2614047574 3.4695861 -1103.2168
+140622.2614048617 3.4695468 -1103.1774
+140623.261404966 3.4694679 -1103.1774
+140624.2614050703 3.4695075 -1103.2562
+140625.2614051746 3.4694285 -1103.2761
+140626.2614052789 3.4694285 -1103.1576
+140627.2614053832 3.4693105 -1103.197
+140628.2614054875 3.4694285 -1103.2959
+140629.2614055919 3.4693892 -1103.2761
+140630.2614056962 3.4693105 -1103.197
+140631.2614058005 3.4693499 -1103.2761
+140632.2614059048 3.4693105 -1103.1576
+140633.2614060091 3.4693105 -1103.197
+140634.2614061134 3.4691925 -1103.1774
+140635.2614062177 3.4692318 -1103.2562
+140636.261406322 3.4691529 -1103.2562
+140637.2614064263 3.4692318 -1103.2761
+140638.2614065306 3.4690742 -1103.1774
+140639.2614066349 3.4691529 -1103.197
+140640.2614067392 3.4689956 -1103.1774
+140641.2614068436 3.4691136 -1103.1576
+140642.2614069479 3.4691529 -1103.3156
+140643.2614070522 3.4689956 -1103.2168
+140644.2614071565 3.4690349 -1103.2366
+140645.2614072608 3.4689562 -1103.2959
+140646.2614073651 3.4689562 -1103.1774
+140647.2614074694 3.4688776 -1103.1576
+140648.2614075737 3.4687986 -1103.197
+140649.261407678 3.4687986 -1103.2168
+140650.2614077823 3.4687986 -1103.2366
+140651.2614078866 3.4688776 -1103.2366
+140652.2614079909 3.4688776 -1103.2168
+140653.2614080952 3.468838 -1103.2168
+140654.2614081996 3.4687593 -1103.197
+140655.2614083039 3.4687593 -1103.2168
+140656.2614084082 3.46872 -1103.2761
+140657.2614085125 3.46872 -1103.197
+140658.2614086168 3.4686413 -1103.1774
+140659.2614087211 3.4687593 -1103.2562
+140660.2614088254 3.4686413 -1103.2168
+140661.2614089297 3.4686413 -1103.1576
+140662.261409034 3.4686806 -1103.2168
+140663.2614091383 3.4686413 -1103.2562
+140664.2614092426 3.4685624 -1103.2366
+140665.2614093469 3.468523 -1103.1182
+140666.2614094513 3.4685624 -1103.2562
+140667.2614095556 3.468523 -1103.2168
+140668.2614096599 3.4685624 -1103.197
+140669.2614097642 3.468523 -1103.197
+140670.2614098685 3.4683657 -1103.197
+140671.2614099728 3.468523 -1103.2562
+140672.2614100771 3.4685624 -1103.2366
+140673.2614101814 3.468405 -1103.1576
+140674.2614102857 3.4684837 -1103.197
+140675.26141039 3.468405 -1103.2562
+140676.2614104943 3.4684443 -1103.2168
+140677.2614105986 3.4684837 -1103.197
+140678.261410703 3.468523 -1103.197
+140679.2614108073 3.468405 -1103.1576
+140680.2614109116 3.468405 -1103.2366
+140681.2614110159 3.468287 -1103.2168
+140682.2614111202 3.4683263 -1103.2959
+140683.2614112245 3.468405 -1103.1378
+140684.2614113288 3.468287 -1103.1576
+140685.2614114331 3.4683263 -1103.1378
+140686.2614115374 3.4683263 -1103.2959
+140687.2614116417 3.4682474 -1103.197
+140688.261411746 3.4682474 -1103.2562
+140689.2614118503 3.468287 -1103.1774
+140690.2614119546 3.4680507 -1103.2168
+140691.261412059 3.4681687 -1103.3551
+140692.2614121633 3.4681294 -1103.1774
+140693.2614122676 3.4681294 -1103.2168
+140694.2614123719 3.4680507 -1103.1774
+140695.2614124762 3.4681687 -1103.2366
+140696.2614125805 3.4680114 -1103.1378
+140697.2614126848 3.4680901 -1103.3156
+140698.2614127891 3.4679325 -1103.1378
+140699.2614128934 3.4680901 -1103.2562
+140700.2614129977 3.4680901 -1103.1774
+140701.261413102 3.4680507 -1103.197
+140702.2614132063 3.4680114 -1103.197
+140703.2614133107 3.467972 -1103.2168
+140704.261413415 3.4680507 -1103.197
+140705.2614135193 3.4680114 -1103.2959
+140706.2614136236 3.4680114 -1103.197
+140707.2614137279 3.4680507 -1103.1774
+140708.2614138322 3.4680114 -1103.1182
+140709.2614139365 3.4680507 -1103.1182
+140710.2614140408 3.4679325 -1103.2562
+140711.2614141451 3.4680114 -1103.2168
+140712.2614142494 3.4678931 -1103.2168
+140713.2614143537 3.4679325 -1103.1774
+140714.261414458 3.4678538 -1103.2168
+140715.2614145624 3.4678538 -1103.2562
+140716.2614146667 3.467972 -1103.1182
+140717.261414771 3.4679325 -1103.197
+140718.2614148753 3.4678931 -1103.1774
+140719.2614149796 3.4678538 -1103.3156
+140720.2614150839 3.4679325 -1103.2168
+140721.2614151882 3.4678144 -1103.1774
+140722.2614152925 3.4679325 -1103.1576
+140723.2614153968 3.4677751 -1103.3353
+140724.2614155011 3.4677751 -1103.2168
+140725.2614156054 3.4678144 -1103.1774
+140726.2614157097 3.4678144 -1103.1378
+140727.2614158141 3.4678931 -1103.2366
+140728.2614159184 3.4677358 -1103.1576
+140729.2614160227 3.4677358 -1103.1774
+140730.261416127 3.4676964 -1103.197
+140731.2614162313 3.4676175 -1103.2562
+140732.2614163356 3.4676175 -1103.2761
+140733.2614164399 3.4676571 -1103.1576
+140734.2614165442 3.4676571 -1103.2366
+140735.2614166485 3.4676175 -1103.2366
+140736.2614167528 3.4674995 -1103.2366
+140737.2614168571 3.4674602 -1103.2366
+140738.2614169614 3.4675388 -1103.2366
+140739.2614170657 3.4674995 -1103.1378
+140740.2614171701 3.4674602 -1103.197
+140741.2614172744 3.4673815 -1103.197
+140742.2614173787 3.4674602 -1103.1774
+140743.261417483 3.4673815 -1103.2761
+140744.2614175873 3.4673026 -1103.1774
+140745.2614176916 3.4672239 -1103.2366
+140746.2614177959 3.4671845 -1103.2761
+140747.2614179002 3.4673026 -1103.2562
+140748.2614180045 3.4672239 -1103.197
+140749.2614181088 3.4671845 -1103.2562
+140750.2614182131 3.4671059 -1103.2366
+140751.2614183174 3.4672239 -1103.1774
+140752.2614184218 3.4671452 -1103.2366
+140753.2614185261 3.4671059 -1103.197
+140754.2614186304 3.4671059 -1103.197
+140755.2614187347 3.4670272 -1103.2959
+140756.261418839 3.4671059 -1103.2761
+140757.2614189433 3.4669876 -1103.2168
+140758.2614190476 3.4670665 -1103.1774
+140759.2614191519 3.4670272 -1103.2168
+140760.2614192562 3.4669089 -1103.2168
+140761.2614193605 3.4670272 -1103.2562
+140762.2614194648 3.4669483 -1103.3156
+140763.2614195691 3.4668303 -1103.1378
+140764.2614196735 3.4669483 -1103.2562
+140765.2614197778 3.4669089 -1103.2168
+140766.2614198821 3.4669483 -1103.2761
+140767.2614199864 3.4668696 -1103.1576
+140768.2614200907 3.4667909 -1103.197
+140769.261420195 3.4668303 -1103.1576
+140770.2614202993 3.4669876 -1103.2562
+140771.2614204036 3.4667909 -1103.197
+140772.2614205079 3.4667516 -1103.1774
+140773.2614206122 3.4668696 -1103.2168
+140774.2614207165 3.4667516 -1103.197
+140775.2614208208 3.4667516 -1103.1774
+140776.2614209251 3.4667909 -1103.2168
+140777.2614210295 3.4666727 -1103.1774
+140778.2614211338 3.4666727 -1103.197
+140779.2614212381 3.4666333 -1103.2168
+140780.2614213424 3.4665546 -1103.2562
+140781.2614214467 3.4666333 -1103.1378
+140782.261421551 3.466594 -1103.197
+140783.2614216553 3.4665153 -1103.197
+140784.2614217596 3.466712 -1103.1774
+140785.2614218639 3.4666727 -1103.1576
+140786.2614219682 3.4665546 -1103.197
+140787.2614220725 3.466476 -1103.2562
+140788.2614221768 3.4665546 -1103.197
+140789.2614222812 3.466476 -1103.2959
+140790.2614223855 3.4665153 -1103.2959
+140791.2614224898 3.4665153 -1103.2366
+140792.2614225941 3.4665153 -1103.2168
+140793.2614226984 3.466476 -1103.2366
+140794.2614228027 3.4663184 -1103.1378
+140795.261422907 3.4664366 -1103.1576
+140796.2614230113 3.4662397 -1103.2366
+140797.2614231156 3.466397 -1103.197
+140798.2614232199 3.4663184 -1103.2761
+140799.2614233242 3.4663184 -1103.2562
+140800.2614234285 3.466279 -1103.3749
+140801.2614235329 3.466279 -1103.1378
+140802.2614236372 3.4662004 -1103.2761
+140803.2614237415 3.4661217 -1103.197
+140804.2614238458 3.466161 -1103.2959
+140805.2614239501 3.466161 -1103.2761
+140806.2614240544 3.4662397 -1103.2562
+140807.2614241587 3.466161 -1103.1774
+140808.261424263 3.4660428 -1103.1774
+140809.2614243673 3.4660428 -1103.3156
+140810.2614244716 3.4661217 -1103.197
+140811.2614245759 3.4660034 -1103.1576
+140812.2614246802 3.4659641 -1103.1774
+140813.2614247845 3.4658854 -1103.197
+140814.2614248889 3.4658067 -1103.2761
+140815.2614249932 3.4658854 -1103.2366
+140816.2614250975 3.4657671 -1103.2168
+140817.2614252018 3.4658067 -1103.2168
+140818.2614253061 3.4657278 -1103.2168
+140819.2614254104 3.4656098 -1103.1576
+140820.2614255147 3.4656491 -1103.2562
+140821.261425619 3.4657278 -1103.2168
+140822.2614257233 3.4656491 -1103.2562
+140823.2614258276 3.4657671 -1103.1774
+140824.2614259319 3.4655311 -1103.1576
+140825.2614260362 3.4654918 -1103.2366
+140826.2614261406 3.4656491 -1103.2366
+140827.2614262449 3.4654522 -1103.1378
+140828.2614263492 3.4655311 -1103.0785
+140829.2614264535 3.4654522 -1103.1182
+140830.2614265578 3.4654522 -1103.2761
+140831.2614266621 3.4652948 -1103.1774
+140832.2614267664 3.4653735 -1103.197
+140833.2614268707 3.4653342 -1103.2562
+140834.261426975 3.4653342 -1103.1774
+140835.2614270793 3.4652162 -1103.2366
+140836.2614271836 3.4652555 -1103.1576
+140837.2614272879 3.4652555 -1103.1576
+140838.2614273923 3.4651768 -1103.2959
+140839.2614274966 3.4653342 -1103.2168
+140840.2614276009 3.4651372 -1103.1182
+140841.2614277052 3.4650586 -1103.2168
+140842.2614278095 3.4650979 -1103.2959
+140843.2614279138 3.4650979 -1103.1774
+140844.2614280181 3.4651768 -1103.1774
+140845.2614281224 3.4649405 -1103.1774
+140846.2614282267 3.4649799 -1103.2761
+140847.261428331 3.4649405 -1103.1774
+140848.2614284353 3.4649012 -1103.2562
+140849.2614285396 3.4650192 -1103.2761
+140850.2614286439 3.4649012 -1103.2168
+140851.2614287483 3.4648616 -1103.2562
+140852.2614288526 3.4648616 -1103.1378
+140853.2614289569 3.4648616 -1103.197
+140854.2614290612 3.464783 -1103.1576
+140855.2614291655 3.4648223 -1103.1378
+140856.2614292698 3.4647436 -1103.1774
+140857.2614293741 3.4648223 -1103.1774
+140858.2614294784 3.464783 -1103.3156
+140859.2614295827 3.4648616 -1103.197
+140860.261429687 3.4647436 -1103.1576
+140861.2614297913 3.4647436 -1103.1576
+140862.2614298956 3.4647043 -1103.1576
+140863.26143 3.4646649 -1103.2168
+140864.2614301043 3.4646256 -1103.2168
+140865.2614302086 3.4645863 -1103.2959
+140866.2614303129 3.4646649 -1103.1774
+140867.2614304172 3.4645863 -1103.2168
+140868.2614305215 3.4645863 -1103.1576
+140869.2614306258 3.4646256 -1103.2562
+140870.2614307301 3.4645467 -1103.2168
+140871.2614308344 3.4644287 -1103.197
+140872.2614309387 3.4645467 -1103.2366
+140873.261431043 3.4645073 -1103.2168
+140874.2614311473 3.464468 -1103.3156
+140875.2614312517 3.4645467 -1103.2168
+140876.261431356 3.464468 -1103.1774
+140877.2614314603 3.464468 -1103.1774
+140878.2614315646 3.464468 -1103.2761
+140879.2614316689 3.4643106 -1103.2168
+140880.2614317732 3.464468 -1103.2761
+140881.2614318775 3.464468 -1103.3156
+140882.2614319818 3.464468 -1103.1774
+140883.2614320861 3.4643106 -1103.197
+140884.2614321904 3.4642713 -1103.2562
+140885.2614322947 3.46435 -1103.2761
+140886.261432399 3.4642713 -1103.197
+140887.2614325034 3.4642317 -1103.2168
+140888.2614326077 3.4643106 -1103.1774
+140889.261432712 3.4642317 -1103.197
+140890.2614328163 3.4642317 -1103.2562
+140891.2614329206 3.4642713 -1103.1576
+140892.2614330249 3.4641531 -1103.197
+140893.2614331292 3.4641924 -1103.1774
+140894.2614332335 3.4641924 -1103.1774
+140895.2614333378 3.4641137 -1103.2761
+140896.2614334421 3.4641137 -1103.2761
+140897.2614335464 3.4641137 -1103.197
+140898.2614336507 3.4640744 -1103.2168
+140899.261433755 3.4639168 -1103.2761
+140900.2614338594 3.464035 -1103.2959
+140901.2614339637 3.464035 -1103.1774
+140902.261434068 3.4639957 -1103.1774
+140903.2614341723 3.464035 -1103.2562
+140904.2614342766 3.464035 -1103.2366
+140905.2614343809 3.464035 -1103.2168
+140906.2614344852 3.4640744 -1103.3156
+140907.2614345895 3.4639957 -1103.197
+140908.2614346938 3.4639957 -1103.197
+140909.2614347981 3.4639957 -1103.1774
+140910.2614349024 3.4639957 -1103.2168
+140911.2614350067 3.4639957 -1103.197
+140912.2614351111 3.4638774 -1103.2562
+140913.2614352154 3.4639168 -1103.197
+140914.2614353197 3.4639168 -1103.2562
+140915.261435424 3.4639564 -1103.2366
+140916.2614355283 3.4638774 -1103.197
+140917.2614356326 3.4638381 -1103.2168
+140918.2614357369 3.4638774 -1103.2366
+140919.2614358412 3.4637594 -1103.2761
+140920.2614359455 3.4637201 -1103.1774
+140921.2614360498 3.4637201 -1103.2168
+140922.2614361541 3.4635231 -1103.2761
+140923.2614362584 3.4636018 -1103.2168
+140924.2614363628 3.4636018 -1103.197
+140925.2614364671 3.4636018 -1103.1378
+140926.2614365714 3.4635625 -1103.2959
+140927.2614366757 3.4634838 -1103.197
+140928.26143678 3.4633658 -1103.2168
+140929.2614368843 3.4634445 -1103.197
+140930.2614369886 3.4634838 -1103.2761
+140931.2614370929 3.4634838 -1103.2366
+140932.2614371972 3.4634051 -1103.197
+140933.2614373015 3.4633265 -1103.2366
+140934.2614374058 3.4632869 -1103.1774
+140935.2614375101 3.4632869 -1103.2168
+140936.2614376144 3.4631689 -1103.1378
+140937.2614377188 3.4630508 -1103.197
+140938.2614378231 3.4631689 -1103.1378
+140939.2614379274 3.4630902 -1103.2168
+140940.2614380317 3.4630508 -1103.0984
+140941.261438136 3.4629719 -1103.2168
+140942.2614382403 3.4629719 -1103.2562
+140943.2614383446 3.4629719 -1103.2562
+140944.2614384489 3.4628932 -1103.2366
+140945.2614385532 3.4629326 -1103.1774
+140946.2614386575 3.4629326 -1103.2959
+140947.2614387618 3.4628932 -1103.197
+140948.2614388661 3.4626963 -1103.2168
+140949.2614389705 3.4628146 -1103.2168
+140950.2614390748 3.4627752 -1103.1774
+140951.2614391791 3.4628146 -1103.2761
+140952.2614392834 3.4626963 -1103.197
+140953.2614393877 3.4627752 -1103.2959
+140954.261439492 3.4626963 -1103.1576
+140955.2614395963 3.4627359 -1103.2168
+140956.2614397006 3.4627359 -1103.197
+140957.2614398049 3.462657 -1103.2959
+140958.2614399092 3.4626963 -1103.1576
+140959.2614400135 3.462539 -1103.1774
+140960.2614401178 3.4625783 -1103.2168
+140961.2614402222 3.4624603 -1103.197
+140962.2614403265 3.462539 -1103.2959
+140963.2614404308 3.4624603 -1103.197
+140964.2614405351 3.4626176 -1103.1774
+140965.2614406394 3.4625783 -1103.2168
+140966.2614407437 3.4624209 -1103.197
+140967.261440848 3.4624209 -1103.1774
+140968.2614409523 3.4624603 -1103.197
+140969.2614410566 3.4624209 -1103.2168
+140970.2614411609 3.4624996 -1103.1378
+140971.2614412652 3.4624209 -1103.1774
+140972.2614413695 3.4624209 -1103.2761
+140973.2614414738 3.4624603 -1103.197
+140974.2614415782 3.4623814 -1103.1774
+140975.2614416825 3.4624603 -1103.2366
+140976.2614417868 3.4623027 -1103.1774
+140977.2614418911 3.4622633 -1103.2562
+140978.2614419954 3.4621847 -1103.197
+140979.2614420997 3.4623027 -1103.2959
+140980.261442204 3.4623027 -1103.1774
+140981.2614423083 3.4623027 -1103.2366
+140982.2614424126 3.4622633 -1103.2366
+140983.2614425169 3.462224 -1103.1576
+140984.2614426212 3.462106 -1103.2562
+140985.2614427255 3.4621847 -1103.2761
+140986.2614428299 3.4620664 -1103.197
+140987.2614429342 3.4620664 -1103.1774
+140988.2614430385 3.4620664 -1103.2366
+140989.2614431428 3.4620271 -1103.2761
+140990.2614432471 3.4620664 -1103.1774
+140991.2614433514 3.4619877 -1103.2366
+140992.2614434557 3.4618697 -1103.1182
+140993.26144356 3.4619091 -1103.2366
+140994.2614436643 3.4619091 -1103.197
+140995.2614437686 3.4619877 -1103.2168
+140996.2614438729 3.4618304 -1103.1576
+140997.2614439772 3.4618697 -1103.2562
+140998.2614440816 3.4619484 -1103.197
+140999.2614441859 3.4618697 -1103.2366
+141000.2614442902 3.4617121 -1103.2366
+141001.2614443945 3.4617515 -1103.2562
+141002.2614444988 3.461791 -1103.2168
+141003.2614446031 3.4617121 -1103.2366
+141004.2614447074 3.4617121 -1103.1182
+141005.2614448117 3.4616334 -1103.2366
+141006.261444916 3.4616334 -1103.197
+141007.2614450203 3.4615941 -1103.197
+141008.2614451246 3.4615548 -1103.2366
+141009.2614452289 3.4615548 -1103.2562
+141010.2614453333 3.4615154 -1103.1378
+141011.2614454376 3.4613972 -1103.2366
+141012.2614455419 3.4614365 -1103.2366
+141013.2614456462 3.4613972 -1103.2366
+141014.2614457505 3.4613972 -1103.197
+141015.2614458548 3.4614365 -1103.2366
+141016.2614459591 3.4613578 -1103.2959
+141017.2614460634 3.4613185 -1103.2168
+141018.2614461677 3.4613972 -1103.1576
+141019.261446272 3.4612792 -1103.2761
+141020.2614463763 3.4613578 -1103.1576
+141021.2614464806 3.4612792 -1103.197
+141022.2614465849 3.4613185 -1103.2959
+141023.2614466893 3.4612792 -1103.1182
+141024.2614467936 3.4612792 -1103.2168
+141025.2614468979 3.4612005 -1103.197
+141026.2614470022 3.4611609 -1103.2562
+141027.2614471065 3.4611609 -1103.1378
+141028.2614472108 3.4613185 -1103.2168
+141029.2614473151 3.4611609 -1103.197
+141030.2614474194 3.4611609 -1103.1774
+141031.2614475237 3.4612005 -1103.1182
+141032.261447628 3.4612005 -1103.2366
+141033.2614477323 3.4610822 -1103.2562
+141034.2614478366 3.4610822 -1103.2168
+141035.261447941 3.4611216 -1103.2366
+141036.2614480453 3.4610822 -1103.2562
+141037.2614481496 3.4611216 -1103.1774
+141038.2614482539 3.4610035 -1103.197
+141039.2614483582 3.4610035 -1103.2562
+141040.2614484625 3.4611216 -1103.1774
+141041.2614485668 3.4609642 -1103.2366
+141042.2614486711 3.4608855 -1103.2366
+141043.2614487754 3.4611216 -1103.1774
+141044.2614488797 3.4610429 -1103.2168
+141045.261448984 3.4609642 -1103.1774
+141046.2614490883 3.4610035 -1103.3156
+141047.2614491927 3.4609642 -1103.1774
+141048.261449297 3.4608066 -1103.2168
+141049.2614494013 3.4609249 -1103.197
+141050.2614495056 3.4609249 -1103.1774
+141051.2614496099 3.4609249 -1103.2761
+141052.2614497142 3.4608855 -1103.1774
+141053.2614498185 3.4609642 -1103.2761
+141054.2614499228 3.4608855 -1103.2562
+141055.2614500271 3.4608855 -1103.1576
+141056.2614501314 3.4609249 -1103.2562
+141057.2614502357 3.4608459 -1103.1774
+141058.26145034 3.4608066 -1103.3156
+141059.2614504443 3.4608066 -1103.2366
+141060.2614505487 3.4608459 -1103.2761
+141061.261450653 3.4608066 -1103.2168
+141062.2614507573 3.4608459 -1103.2761
+141063.2614508616 3.4607673 -1103.2761
+141064.2614509659 3.4607673 -1103.1774
+141065.2614510702 3.4608459 -1103.1576
+141066.2614511745 3.4608459 -1103.2366
+141067.2614512788 3.4606493 -1103.2562
+141068.2614513831 3.4607279 -1103.197
+141069.2614514874 3.4606099 -1103.1576
+141070.2614515917 3.4606886 -1103.2168
+141071.261451696 3.4606493 -1103.1774
+141072.2614518004 3.4606099 -1103.2562
+141073.2614519047 3.4606099 -1103.1378
+141074.261452009 3.4606099 -1103.2168
+141075.2614521133 3.4605706 -1103.197
+141076.2614522176 3.4606099 -1103.2168
+141077.2614523219 3.460531 -1103.2366
+141078.2614524262 3.4605706 -1103.1774
+141079.2614525305 3.460413 -1103.197
+141080.2614526348 3.4603343 -1103.2366
+141081.2614527391 3.460295 -1103.2562
+141082.2614528434 3.4604917 -1103.1182
+141083.2614529477 3.4604523 -1103.2168
+141084.2614530521 3.460413 -1103.2761
+141085.2614531564 3.460216 -1103.197
+141086.2614532607 3.4602556 -1103.2366
+141087.261453365 3.460295 -1103.1182
+141088.2614534693 3.460295 -1103.197
+141089.2614535736 3.460216 -1103.197
+141090.2614536779 3.4602556 -1103.2168
+141091.2614537822 3.4601767 -1103.1774
+141092.2614538865 3.4602556 -1103.2366
+141093.2614539908 3.4601374 -1103.197
+141094.2614540951 3.4601767 -1103.2366
+141095.2614541994 3.4601767 -1103.2168
+141096.2614543037 3.45998 -1103.197
+141097.2614544081 3.4600587 -1103.3156
+141098.2614545124 3.4600194 -1103.2959
+141099.2614546167 3.4600194 -1103.2366
+141100.261454721 3.45998 -1103.1774
+141101.2614548253 3.45998 -1103.3353
+141102.2614549296 3.4599407 -1103.2761
+141103.2614550339 3.4599011 -1103.1774
+141104.2614551382 3.4598618 -1103.2562
+141105.2614552425 3.4599407 -1103.1774
+141106.2614553468 3.4598618 -1103.2366
+141107.2614554511 3.4598224 -1103.2168
+141108.2614555554 3.4598618 -1103.2761
+141109.2614556598 3.4597831 -1103.2761
+141110.2614557641 3.4597437 -1103.2366
+141111.2614558684 3.4597044 -1103.197
+141112.2614559727 3.4597044 -1103.2366
+141113.261456077 3.4597044 -1103.2366
+141114.2614561813 3.4596255 -1103.2761
+141115.2614562856 3.4596255 -1103.2168
+141116.2614563899 3.4597437 -1103.2168
+141117.2614564942 3.4597437 -1103.1774
+141118.2614565985 3.4595861 -1103.1378
+141119.2614567028 3.4595468 -1103.197
+141120.2614568071 3.4595468 -1103.2761
+141121.2614569115 3.4594288 -1103.3551
+141122.2614570158 3.4594288 -1103.2168
+141123.2614571201 3.4595468 -1103.2168
+141124.2614572244 3.4594681 -1103.2366
+141125.2614573287 3.4595468 -1103.1774
+141126.261457433 3.4593501 -1103.2562
+141127.2614575373 3.4593105 -1103.2761
+141128.2614576416 3.4593105 -1103.1774
+141129.2614577459 3.4593105 -1103.2168
+141130.2614578502 3.4593894 -1103.1774
+141131.2614579545 3.4593105 -1103.2562
+141132.2614580588 3.4593105 -1103.3156
+141133.2614581632 3.4592319 -1103.3551
+141134.2614582675 3.4592319 -1103.2168
+141135.2614583718 3.4591925 -1103.1774
+141136.2614584761 3.4591925 -1103.2366
+141137.2614585804 3.4591925 -1103.197
+141138.2614586847 3.4591925 -1103.0785
+141139.261458789 3.4591532 -1103.1182
+141140.2614588933 3.4591138 -1103.2562
+141141.2614589976 3.4591532 -1103.2168
+141142.2614591019 3.4591138 -1103.1576
+141143.2614592062 3.4591138 -1103.2562
+141144.2614593105 3.4590745 -1103.2959
+141145.2614594148 3.4590352 -1103.2168
+141146.2614595192 3.4590745 -1103.2366
+141147.2614596235 3.4590352 -1103.2168
+141148.2614597278 3.4591138 -1103.3156
+141149.2614598321 3.4589562 -1103.2761
+141150.2614599364 3.4591138 -1103.0785
+141151.2614600407 3.4589562 -1103.1774
+141152.261460145 3.4589956 -1103.3156
+141153.2614602493 3.4589956 -1103.2168
+141154.2614603536 3.4588776 -1103.2168
+141155.2614604579 3.4589562 -1103.2761
+141156.2614605622 3.4589562 -1103.2168
+141157.2614606665 3.4589169 -1103.2168
+141158.2614607709 3.4587989 -1103.2562
+141159.2614608752 3.4588382 -1103.197
+141160.2614609795 3.4587989 -1103.2366
+141161.2614610838 3.4587202 -1103.1576
+141162.2614611881 3.4586806 -1103.2168
+141163.2614612924 3.4585626 -1103.2562
+141164.2614613967 3.4586806 -1103.2562
+141165.261461501 3.458602 -1103.197
+141166.2614616053 3.4585626 -1103.1378
+141167.2614617096 3.4586806 -1103.3353
+141168.2614618139 3.4586413 -1103.2761
+141169.2614619182 3.458602 -1103.1576
+141170.2614620226 3.4585233 -1103.2168
+141171.2614621269 3.4585233 -1103.197
+141172.2614622312 3.4584839 -1103.2366
+141173.2614623355 3.4585626 -1103.1774
+141174.2614624398 3.4584839 -1103.2562
+141175.2614625441 3.4584839 -1103.2168
+141176.2614626484 3.4584839 -1103.197
+141177.2614627527 3.4583657 -1103.1576
+141178.261462857 3.4584053 -1103.1378
+141179.2614629613 3.4585626 -1103.2366
+141180.2614630656 3.4583657 -1103.2366
+141181.2614631699 3.4583657 -1103.197
+141182.2614632742 3.4583657 -1103.2959
+141183.2614633786 3.4583657 -1103.1576
+141184.2614634829 3.4582477 -1103.2366
+141185.2614635872 3.4583263 -1103.2168
+141186.2614636915 3.4582477 -1103.2959
+141187.2614637958 3.4582083 -1103.2562
+141188.2614639001 3.458287 -1103.2168
+141189.2614640044 3.4581296 -1103.1774
+141190.2614641087 3.458169 -1103.2366
+141191.261464213 3.458169 -1103.2562
+141192.2614643173 3.458169 -1103.2168
+141193.2614644216 3.4582083 -1103.1774
+141194.2614645259 3.4581296 -1103.2168
+141195.2614646303 3.4580903 -1103.2761
+141196.2614647346 3.4580903 -1103.1378
+141197.2614648389 3.4581296 -1103.2562
+141198.2614649432 3.4580114 -1103.2761
+141199.2614650475 3.457972 -1103.2761
+141200.2614651518 3.4580507 -1103.197
+141201.2614652561 3.4580507 -1103.1774
+141202.2614653604 3.4580507 -1103.2168
+141203.2614654647 3.4578934 -1103.1774
+141204.261465569 3.4578934 -1103.1576
+141205.2614656733 3.4578934 -1103.2562
+141206.2614657776 3.4578934 -1103.1774
+141207.261465882 3.4578147 -1103.1378
+141208.2614659863 3.4576571 -1103.2959
+141209.2614660906 3.4578147 -1103.2168
+141210.2614661949 3.4576964 -1103.1378
+141211.2614662992 3.4577358 -1103.197
+141212.2614664035 3.4576178 -1103.2168
+141213.2614665078 3.4577358 -1103.1774
+141214.2614666121 3.4575784 -1103.197
+141215.2614667164 3.4575784 -1103.2562
+141216.2614668207 3.4575391 -1103.1378
+141217.261466925 3.4576178 -1103.197
+141218.2614670293 3.4575784 -1103.1774
+141219.2614671336 3.4576178 -1103.2959
+141220.261467238 3.4574602 -1103.1774
+141221.2614673423 3.4574602 -1103.1774
+141222.2614674466 3.4574208 -1103.2168
+141223.2614675509 3.4573421 -1103.3353
+141224.2614676552 3.4573815 -1103.1576
+141225.2614677595 3.4573815 -1103.1774
+141226.2614678638 3.4573028 -1103.3156
+141227.2614679681 3.4574208 -1103.2366
+141228.2614680724 3.4573421 -1103.2562
+141229.2614681767 3.4574602 -1103.2959
+141230.261468281 3.4572635 -1103.197
+141231.2614683853 3.4574208 -1103.2168
+141232.2614684897 3.4574208 -1103.1576
+141233.261468594 3.4573421 -1103.2168
+141234.2614686983 3.4573028 -1103.197
+141235.2614688026 3.4572635 -1103.2562
+141236.2614689069 3.4572241 -1103.0984
+141237.2614690112 3.4572241 -1103.3156
+141238.2614691155 3.4573028 -1103.2562
+141239.2614692198 3.4572241 -1103.2959
+141240.2614693241 3.4571452 -1103.1774
+141241.2614694284 3.4571059 -1103.2168
+141242.2614695327 3.4571452 -1103.1774
+141243.261469637 3.4570665 -1103.2366
+141244.2614697414 3.4570665 -1103.2562
+141245.2614698457 3.4570272 -1103.2761
+141246.26146995 3.4571452 -1103.3156
+141247.2614700543 3.4570272 -1103.2366
+141248.2614701586 3.4570272 -1103.3156
+141249.2614702629 3.4569485 -1103.1774
+141250.2614703672 3.4569879 -1103.3353
+141251.2614704715 3.4570272 -1103.2168
+141252.2614705758 3.4569092 -1103.2168
+141253.2614706801 3.4569879 -1103.2959
+141254.2614707844 3.4569879 -1103.1182
+141255.2614708887 3.4570272 -1103.2366
+141256.261470993 3.4570272 -1103.2366
+141257.2614710974 3.4569485 -1103.2959
+141258.2614712017 3.4568698 -1103.1774
+141259.261471306 3.4569879 -1103.197
+141260.2614714103 3.4569485 -1103.197
+141261.2614715146 3.4569092 -1103.3156
+141262.2614716189 3.4568698 -1103.2168
+141263.2614717232 3.4568303 -1103.197
+141264.2614718275 3.4568698 -1103.1576
+141265.2614719318 3.4568303 -1103.2366
+141266.2614720361 3.4568303 -1103.2168
+141267.2614721404 3.4568303 -1103.1774
+141268.2614722447 3.4567909 -1103.2168
+141269.2614723491 3.4567909 -1103.2168
+141270.2614724534 3.4567122 -1103.1774
+141271.2614725577 3.4568303 -1103.1182
+141272.261472662 3.4567122 -1103.1576
+141273.2614727663 3.4567516 -1103.1774
+141274.2614728706 3.4566729 -1103.2168
+141275.2614729749 3.4566729 -1103.1576
+141276.2614730792 3.4567122 -1103.1774
+141277.2614731835 3.4566729 -1103.2959
+141278.2614732878 3.4566336 -1103.2168
+141279.2614733921 3.4566336 -1103.3156
+141280.2614734964 3.4565549 -1103.2761
+141281.2614736008 3.4566729 -1103.2366
+141282.2614737051 3.4566336 -1103.2761
+141283.2614738094 3.4565942 -1103.2366
+141284.2614739137 3.4565942 -1103.2168
+141285.261474018 3.4565549 -1103.2562
+141286.2614741223 3.4565153 -1103.2562
+141287.2614742266 3.4564366 -1103.2562
+141288.2614743309 3.456476 -1103.2562
+141289.2614744352 3.456476 -1103.1774
+141290.2614745395 3.4564366 -1103.197
+141291.2614746438 3.4563973 -1103.197
+141292.2614747481 3.456358 -1103.197
+141293.2614748525 3.456358 -1103.2168
+141294.2614749568 3.4564366 -1103.1774
+141295.2614750611 3.4563186 -1103.2168
+141296.2614751654 3.4563186 -1103.2366
+141297.2614752697 3.4562399 -1103.2366
+141298.261475374 3.4562004 -1103.2366
+141299.2614754783 3.4562793 -1103.2562
+141300.2614755826 3.4562399 -1103.2366
+141301.2614756869 3.456043 -1103.0984
+141302.2614757912 3.456161 -1103.1774
+141303.2614758955 3.456043 -1103.197
+141304.2614759998 3.4560823 -1103.2562
+141305.2614761041 3.4560823 -1103.1576
+141306.2614762085 3.4558854 -1103.2366
+141307.2614763128 3.4560823 -1103.2959
+141308.2614764171 3.4559643 -1103.197
+141309.2614765214 3.4559247 -1103.2168
+141310.2614766257 3.4559247 -1103.1774
+141311.26147673 3.4558067 -1103.2168
+141312.2614768343 3.4559247 -1103.1774
+141313.2614769386 3.4558067 -1103.2562
+141314.2614770429 3.4557674 -1103.2761
+141315.2614771472 3.4557281 -1103.197
+141316.2614772515 3.4557281 -1103.2959
+141317.2614773558 3.4558067 -1103.2366
+141318.2614774602 3.4557281 -1103.2168
+141319.2614775645 3.4556494 -1103.197
+141320.2614776688 3.4555705 -1103.2168
+141321.2614777731 3.4554918 -1103.2168
+141322.2614778774 3.4556098 -1103.197
+141323.2614779817 3.4554918 -1103.2562
+141324.261478086 3.4555705 -1103.2366
+141325.2614781903 3.4554918 -1103.1774
+141326.2614782946 3.4555705 -1103.2366
+141327.2614783989 3.4554131 -1103.2761
+141328.2614785032 3.4553344 -1103.197
+141329.2614786075 3.4553738 -1103.0984
+141330.2614787119 3.4553738 -1103.1576
+141331.2614788162 3.4552948 -1103.2562
+141332.2614789205 3.4553344 -1103.2168
+141333.2614790248 3.4552948 -1103.1378
+141334.2614791291 3.4552162 -1103.197
+141335.2614792334 3.4552162 -1103.2761
+141336.2614793377 3.4551768 -1103.1576
+141337.261479442 3.4551375 -1103.2168
+141338.2614795463 3.4551375 -1103.197
+141339.2614796506 3.4550982 -1103.2366
+141340.2614797549 3.4550982 -1103.2959
+141341.2614798592 3.4550195 -1103.2168
+141342.2614799635 3.4549012 -1103.2562
+141343.2614800679 3.4550195 -1103.1774
+141344.2614801722 3.4548619 -1103.197
+141345.2614802765 3.4549799 -1103.2168
+141346.2614803808 3.4548619 -1103.2366
+141347.2614804851 3.4548225 -1103.2366
+141348.2614805894 3.4548225 -1103.2168
+141349.2614806937 3.4547832 -1103.2761
+141350.261480798 3.4548619 -1103.2761
+141351.2614809023 3.4547439 -1103.1378
+141352.2614810066 3.4546649 -1103.2168
+141353.2614811109 3.4546649 -1103.1774
+141354.2614812152 3.4547045 -1103.197
+141355.2614813196 3.4547439 -1103.2761
+141356.2614814239 3.4547439 -1103.197
+141357.2614815282 3.4547045 -1103.1774
+141358.2614816325 3.4546649 -1103.2168
+141359.2614817368 3.4547045 -1103.2959
+141360.2614818411 3.4546256 -1103.197
+141361.2614819454 3.4546256 -1103.2562
+141362.2614820497 3.4545469 -1103.197
+141363.261482154 3.4545863 -1103.197
+141364.2614822583 3.4544683 -1103.2761
+141365.2614823626 3.4544683 -1103.197
+141366.2614824669 3.4544289 -1103.2959
+141367.2614825713 3.4545863 -1103.2562
+141368.2614826756 3.4543896 -1103.1576
+141369.2614827799 3.4543896 -1103.2562
+141370.2614828842 3.4544683 -1103.2761
+141371.2614829885 3.4544683 -1103.2562
+141372.2614830928 3.4544289 -1103.197
+141373.2614831971 3.45435 -1103.2761
+141374.2614833014 3.4543107 -1103.2761
+141375.2614834057 3.4543107 -1103.197
+141376.26148351 3.4543896 -1103.3156
+141377.2614836143 3.4544289 -1103.2366
+141378.2614837186 3.4541533 -1103.2366
+141379.2614838229 3.4543107 -1103.2168
+141380.2614839273 3.4541926 -1103.2366
+141381.2614840316 3.4542713 -1103.2761
+141382.2614841359 3.454232 -1103.2761
+141383.2614842402 3.4541926 -1103.2168
+141384.2614843445 3.454232 -1103.2168
+141385.2614844488 3.4541926 -1103.1774
+141386.2614845531 3.4541926 -1103.2168
+141387.2614846574 3.4541926 -1103.1182
+141388.2614847617 3.4540744 -1103.2959
+141389.261484866 3.4541533 -1103.2168
+141390.2614849703 3.4540744 -1103.2168
+141391.2614850746 3.454114 -1103.2168
+141392.261485179 3.4540744 -1103.2562
+141393.2614852833 3.4541533 -1103.197
+141394.2614853876 3.454114 -1103.2366
+141395.2614854919 3.4539564 -1103.2562
+141396.2614855962 3.454035 -1103.1378
+141397.2614857005 3.4539564 -1103.197
+141398.2614858048 3.4539564 -1103.2366
+141399.2614859091 3.4539564 -1103.2562
+141400.2614860134 3.453917 -1103.1774
+141401.2614861177 3.4538383 -1103.3353
+141402.261486222 3.4539957 -1103.1576
+141403.2614863263 3.4539564 -1103.2366
+141404.2614864307 3.4538777 -1103.197
+141405.261486535 3.4538777 -1103.2366
+141406.2614866393 3.4538777 -1103.3156
+141407.2614867436 3.4538777 -1103.197
+141408.2614868479 3.453799 -1103.1774
+141409.2614869522 3.4536808 -1103.2959
+141410.2614870565 3.453799 -1103.197
+141411.2614871608 3.4536808 -1103.2761
+141412.2614872651 3.4536414 -1103.1378
+141413.2614873694 3.4536808 -1103.2366
+141414.2614874737 3.4535234 -1103.2366
+141415.261487578 3.4535234 -1103.197
+141416.2614876824 3.4535627 -1103.2168
+141417.2614877867 3.4535234 -1103.2168
+141418.261487891 3.4534445 -1103.2366
+141419.2614879953 3.4533265 -1103.1576
+141420.2614880996 3.4534445 -1103.1378
+141421.2614882039 3.4533265 -1103.1774
+141422.2614883082 3.4533265 -1103.2562
+141423.2614884125 3.4533658 -1103.197
+141424.2614885168 3.4533658 -1103.2562
+141425.2614886211 3.4533658 -1103.2562
+141426.2614887254 3.4533265 -1103.3353
+141427.2614888297 3.4532478 -1103.1182
+141428.261488934 3.4532478 -1103.197
+141429.2614890384 3.4533265 -1103.2761
+141430.2614891427 3.4531691 -1103.2168
+141431.261489247 3.4532871 -1103.1774
+141432.2614893513 3.4532084 -1103.1576
+141433.2614894556 3.4532871 -1103.1378
+141434.2614895599 3.4531691 -1103.2168
+141435.2614896642 3.4533265 -1103.197
+141436.2614897685 3.4531691 -1103.2761
+141437.2614898728 3.4533265 -1103.2366
+141438.2614899771 3.4531691 -1103.2366
+141439.2614900814 3.4532084 -1103.197
+141440.2614901857 3.4531691 -1103.2761
+141441.2614902901 3.4531295 -1103.2168
+141442.2614903944 3.4530509 -1103.2168
+141443.2614904987 3.4530902 -1103.2562
+141444.261490603 3.4530115 -1103.197
+141445.2614907073 3.4530509 -1103.1576
+141446.2614908116 3.4529722 -1103.2168
+141447.2614909159 3.4530509 -1103.197
+141448.2614910202 3.4529328 -1103.2761
+141449.2614911245 3.4530115 -1103.2168
+141450.2614912288 3.4528542 -1103.1576
+141451.2614913331 3.4529722 -1103.3156
+141452.2614914374 3.4529328 -1103.2168
+141453.2614915418 3.4528542 -1103.2168
+141454.2614916461 3.4528935 -1103.2168
+141455.2614917504 3.4529328 -1103.1774
+141456.2614918547 3.4529328 -1103.2562
+141457.261491959 3.4528146 -1103.197
+141458.2614920633 3.4527359 -1103.2761
+141459.2614921676 3.4528146 -1103.2168
+141460.2614922719 3.4528935 -1103.2168
+141461.2614923762 3.4528146 -1103.2562
+141462.2614924805 3.4527752 -1103.1576
+141463.2614925848 3.4528146 -1103.1774
+141464.2614926891 3.4526966 -1103.1774
+141465.2614927934 3.4526966 -1103.1378
+141466.2614928978 3.4526966 -1103.2562
+141467.2614930021 3.4526966 -1103.2366
+141468.2614931064 3.4528146 -1103.1774
+141469.2614932107 3.4525392 -1103.2761
+141470.261493315 3.4527359 -1103.3551
+141471.2614934193 3.4526572 -1103.197
+141472.2614935236 3.4526966 -1103.2562
+141473.2614936279 3.4525785 -1103.197
+141474.2614937322 3.4526572 -1103.197
+141475.2614938365 3.4525785 -1103.1576
+141476.2614939408 3.4526966 -1103.1774
+141477.2614940451 3.4526572 -1103.2168
+141478.2614941495 3.4525785 -1103.1774
+141479.2614942538 3.4526572 -1103.2366
+141480.2614943581 3.4525785 -1103.2761
+141481.2614944624 3.4525785 -1103.2366
+141482.2614945667 3.4525785 -1103.1774
+141483.261494671 3.4525392 -1103.2168
+141484.2614947753 3.4524996 -1103.2168
+141485.2614948796 3.4524996 -1103.2366
+141486.2614949839 3.4524209 -1103.2761
+141487.2614950882 3.4524996 -1103.2168
+141488.2614951925 3.4524209 -1103.2761
+141489.2614952968 3.4523029 -1103.2562
+141490.2614954012 3.4523423 -1103.2168
+141491.2614955055 3.4522636 -1103.2168
+141492.2614956098 3.4523816 -1103.1576
+141493.2614957141 3.4523816 -1103.1774
+141494.2614958184 3.452224 -1103.2168
+141495.2614959227 3.4521847 -1103.197
+141496.261496027 3.4522636 -1103.1378
+141497.2614961313 3.4523029 -1103.2366
+141498.2614962356 3.452224 -1103.1774
+141499.2614963399 3.4521847 -1103.2168
+141500.2614964442 3.452224 -1103.2562
+141501.2614965485 3.4523423 -1103.2168
+141502.2614966528 3.4521453 -1103.1576
+141503.2614967572 3.452106 -1103.2366
+141504.2614968615 3.452106 -1103.1774
+141505.2614969658 3.4521453 -1103.2761
+141506.2614970701 3.4521453 -1103.2562
+141507.2614971744 3.4521453 -1103.2366
+141508.2614972787 3.4521453 -1103.2168
+141509.261497383 3.4521847 -1103.2562
+141510.2614974873 3.4520667 -1103.2168
+141511.2614975916 3.451988 -1103.2562
+141512.2614976959 3.4520667 -1103.1774
+141513.2614978002 3.451988 -1103.1774
+141514.2614979045 3.4519091 -1103.1774
+141515.2614980089 3.451988 -1103.2562
+141516.2614981132 3.4519486 -1103.2168
+141517.2614982175 3.4519091 -1103.2168
+141518.2614983218 3.4519091 -1103.1774
+141519.2614984261 3.4519486 -1103.2366
+141520.2614985304 3.451791 -1103.2366
+141521.2614986347 3.4518697 -1103.2562
+141522.261498739 3.4517517 -1103.1774
+141523.2614988433 3.451673 -1103.197
+141524.2614989476 3.4517124 -1103.2562
+141525.2614990519 3.451673 -1103.2959
+141526.2614991562 3.4516337 -1103.2168
+141527.2614992606 3.4516337 -1103.1774
+141528.2614993649 3.4517517 -1103.2761
+141529.2614994692 3.4516337 -1103.1774
+141530.2614995735 3.4515548 -1103.2168
+141531.2614996778 3.4517124 -1103.197
+141532.2614997821 3.4515941 -1103.2562
+141533.2614998864 3.4515154 -1103.2959
+141534.2614999907 3.4515154 -1103.1576
+141535.261500095 3.4515154 -1103.1182
+141536.2615001993 3.4513974 -1103.3156
+141537.2615003036 3.4513974 -1103.2761
+141538.2615004079 3.4515548 -1103.197
+141539.2615005123 3.4514368 -1103.197
+141540.2615006166 3.4513974 -1103.2168
+141541.2615007209 3.4513581 -1103.197
+141542.2615008252 3.4512398 -1103.2366
+141543.2615009295 3.4513581 -1103.3156
+141544.2615010338 3.4512792 -1103.2366
+141545.2615011381 3.4512792 -1103.2761
+141546.2615012424 3.4512398 -1103.2168
+141547.2615013467 3.4511218 -1103.2761
+141548.261501451 3.4511611 -1103.2761
+141549.2615015553 3.4513187 -1103.1576
+141550.2615016596 3.4511218 -1103.197
+141551.2615017639 3.4511611 -1103.2761
+141552.2615018683 3.4511218 -1103.2761
+141553.2615019726 3.4509249 -1103.1576
+141554.2615020769 3.4510825 -1103.2562
+141555.2615021812 3.4509642 -1103.2761
+141556.2615022855 3.4510038 -1103.1576
+141557.2615023898 3.4508069 -1103.2366
+141558.2615024941 3.4510431 -1103.3353
+141559.2615025984 3.4508855 -1103.197
+141560.2615027027 3.4509642 -1103.2366
+141561.261502807 3.4508462 -1103.2366
+141562.2615029113 3.4508855 -1103.2562
+141563.2615030156 3.4508069 -1103.2761
+141564.26150312 3.4508855 -1103.2761
+141565.2615032243 3.4507675 -1103.2761
+141566.2615033286 3.4508069 -1103.2168
+141567.2615034329 3.4508462 -1103.3353
+141568.2615035372 3.4507675 -1103.1774
+141569.2615036415 3.4508069 -1103.197
+141570.2615037458 3.4508855 -1103.2562
+141571.2615038501 3.4507675 -1103.2168
+141572.2615039544 3.4507675 -1103.2366
+141573.2615040587 3.4508069 -1103.197
+141574.261504163 3.4507282 -1103.197
+141575.2615042673 3.4506099 -1103.2168
+141576.2615043717 3.4505312 -1103.3156
+141577.261504476 3.4506886 -1103.2366
+141578.2615045803 3.4506493 -1103.197
+141579.2615046846 3.4505312 -1103.0785
+141580.2615047889 3.4505312 -1103.2168
+141581.2615048932 3.4505706 -1103.2562
+141582.2615049975 3.4505706 -1103.2959
+141583.2615051018 3.4504132 -1103.1182
+141584.2615052061 3.4503736 -1103.197
+141585.2615053104 3.4504132 -1103.1182
+141586.2615054147 3.4504132 -1103.1774
+141587.261505519 3.4503343 -1103.1378
+141588.2615056233 3.450295 -1103.2562
+141589.2615057277 3.4503343 -1103.2366
+141590.261505832 3.4502556 -1103.2366
+141591.2615059363 3.4503343 -1103.1774
+141592.2615060406 3.4502163 -1103.2366
+141593.2615061449 3.4502163 -1103.2168
+141594.2615062492 3.4502163 -1103.2562
+141595.2615063535 3.4502163 -1103.1774
+141596.2615064578 3.4502163 -1103.197
+141597.2615065621 3.4502163 -1103.197
+141598.2615066664 3.4501376 -1103.2168
+141599.2615067707 3.4500983 -1103.197
+141600.261506875 3.4500983 -1103.2562
+141601.2615069794 3.450177 -1103.2761
+141602.2615070837 3.4501376 -1103.197
+141603.261507188 3.4500587 -1103.2366
+141604.2615072923 3.4501376 -1103.1378
+141605.2615073966 3.4499407 -1103.2366
+141606.2615075009 3.4499013 -1103.197
+141607.2615076052 3.449862 -1103.1774
+141608.2615077095 3.4499013 -1103.2168
+141609.2615078138 3.449862 -1103.197
+141610.2615079181 3.4498227 -1103.1774
+141611.2615080224 3.4497044 -1103.2168
+141612.2615081267 3.4496257 -1103.1576
+141613.2615082311 3.4496651 -1103.1576
+141614.2615083354 3.4496257 -1103.3353
+141615.2615084397 3.4496257 -1103.2168
+141616.261508544 3.4495471 -1103.3156
+141617.2615086483 3.4495077 -1103.197
+141618.2615087526 3.4494288 -1103.2366
+141619.2615088569 3.4494684 -1103.197
+141620.2615089612 3.4493895 -1103.197
+141621.2615090655 3.4493895 -1103.2366
+141622.2615091698 3.4493895 -1103.2562
+141623.2615092741 3.4492321 -1103.2562
+141624.2615093784 3.4492321 -1103.197
+141625.2615094827 3.4491928 -1103.2168
+141626.2615095871 3.4492321 -1103.1378
+141627.2615096914 3.4492321 -1103.2366
+141628.2615097957 3.4493108 -1103.2959
+141629.2615099 3.4491928 -1103.3156
+141630.2615100043 3.4491928 -1103.1378
+141631.2615101086 3.4491928 -1103.1774
+141632.2615102129 3.4491534 -1103.197
+141633.2615103172 3.4491534 -1103.2168
+141634.2615104215 3.4491138 -1103.197
+141635.2615105258 3.4490745 -1103.1182
+141636.2615106301 3.4490745 -1103.1576
+141637.2615107344 3.4490352 -1103.2168
+141638.2615108388 3.4491138 -1103.2562
+141639.2615109431 3.4491138 -1103.2562
+141640.2615110474 3.4490745 -1103.2959
+141641.2615111517 3.4490745 -1103.2168
+141642.261511256 3.4489958 -1103.2168
+141643.2615113603 3.4490745 -1103.1576
+141644.2615114646 3.4489565 -1103.1774
+141645.2615115689 3.4489958 -1103.1774
+141646.2615116732 3.4489172 -1103.1774
+141647.2615117775 3.4488778 -1103.197
+141648.2615118818 3.4488778 -1103.2168
+141649.2615119861 3.4487202 -1103.1774
+141650.2615120905 3.4488382 -1103.2366
+141651.2615121948 3.4488382 -1103.2168
+141652.2615122991 3.4489565 -1103.1576
+141653.2615124034 3.4488382 -1103.2168
+141654.2615125077 3.4487989 -1103.2959
+141655.261512612 3.4487596 -1103.1774
+141656.2615127163 3.4487202 -1103.2366
+141657.2615128206 3.4487989 -1103.2168
+141658.2615129249 3.4487202 -1103.2168
+141659.2615130292 3.4486809 -1103.2168
+141660.2615131335 3.4486809 -1103.2168
+141661.2615132378 3.4485629 -1103.2168
+141662.2615133422 3.4486809 -1103.2761
+141663.2615134465 3.4486415 -1103.2562
+141664.2615135508 3.4486415 -1103.1576
+141665.2615136551 3.4486415 -1103.2366
+141666.2615137594 3.4486022 -1103.2366
+141667.2615138637 3.4486809 -1103.2761
+141668.261513968 3.4485629 -1103.1378
+141669.2615140723 3.4485233 -1103.1378
+141670.2615141766 3.4484839 -1103.1774
+141671.2615142809 3.4484839 -1103.197
+141672.2615143852 3.4483266 -1103.1774
+141673.2615144895 3.4484839 -1103.2168
+141674.2615145938 3.4484446 -1103.1774
+141675.2615146982 3.4484446 -1103.3156
+141676.2615148025 3.4484053 -1103.197
+141677.2615149068 3.4484446 -1103.2366
+141678.2615150111 3.4485233 -1103.2366
+141679.2615151154 3.4483659 -1103.2366
+141680.2615152197 3.4484446 -1103.2761
+141681.261515324 3.4482479 -1103.3353
+141682.2615154283 3.4483266 -1103.2168
+141683.2615155326 3.4482872 -1103.2562
+141684.2615156369 3.4483266 -1103.1774
+141685.2615157412 3.4483266 -1103.1774
+141686.2615158455 3.4482083 -1103.1774
+141687.2615159499 3.4483659 -1103.2366
+141688.2615160542 3.4482479 -1103.1774
+141689.2615161585 3.4482083 -1103.1576
+141690.2615162628 3.4481297 -1103.1774
+141691.2615163671 3.4481297 -1103.2168
+141692.2615164714 3.448051 -1103.2562
+141693.2615165757 3.4480903 -1103.1378
+141694.26151668 3.4480903 -1103.2366
+141695.2615167843 3.4480116 -1103.2366
+141696.2615168886 3.4479723 -1103.2168
+141697.2615169929 3.447933 -1103.2562
+141698.2615170972 3.4479723 -1103.2366
+141699.2615172016 3.4478934 -1103.2959
+141700.2615173059 3.447933 -1103.197
+141701.2615174102 3.447854 -1103.2562
+141702.2615175145 3.4478147 -1103.2366
+141703.2615176188 3.447736 -1103.197
+141704.2615177231 3.4476573 -1103.197
+141705.2615178274 3.4476573 -1103.1774
+141706.2615179317 3.4476573 -1103.1774
+141707.261518036 3.4475784 -1103.2168
+141708.2615181403 3.4475784 -1103.2562
+141709.2615182446 3.4476573 -1103.1774
+141710.2615183489 3.4474998 -1103.2761
+141711.2615184532 3.4474998 -1103.2168
+141712.2615185576 3.4474211 -1103.2168
+141713.2615186619 3.4474604 -1103.2366
+141714.2615187662 3.4474604 -1103.2168
+141715.2615188705 3.4472635 -1103.1774
+141716.2615189748 3.4473031 -1103.2168
+141717.2615190791 3.4472635 -1103.2761
+141718.2615191834 3.4473031 -1103.2562
+141719.2615192877 3.4473424 -1103.2366
+141720.261519392 3.4472241 -1103.2168
+141721.2615194963 3.4472635 -1103.2366
+141722.2615196006 3.4472241 -1103.2562
+141723.2615197049 3.4471455 -1103.2168
+141724.2615198093 3.4470668 -1103.2562
+141725.2615199136 3.4470668 -1103.2168
+141726.2615200179 3.4471061 -1103.2761
+141727.2615201222 3.4470668 -1103.197
+141728.2615202265 3.4469879 -1103.1576
+141729.2615203308 3.4469879 -1103.2761
+141730.2615204351 3.4470274 -1103.1774
+141731.2615205394 3.4470274 -1103.2366
+141732.2615206437 3.4470274 -1103.0785
+141733.261520748 3.4470274 -1103.2562
+141734.2615208523 3.4469485 -1103.2168
+141735.2615209566 3.4470668 -1103.1182
+141736.261521061 3.4469485 -1103.197
+141737.2615211653 3.4468699 -1103.1378
+141738.2615212696 3.4469485 -1103.1182
+141739.2615213739 3.4469092 -1103.197
+141740.2615214782 3.4469485 -1103.1774
+141741.2615215825 3.4468699 -1103.2959
+141742.2615216868 3.4469485 -1103.2168
+141743.2615217911 3.4468305 -1103.197
+141744.2615218954 3.4469092 -1103.2168
+141745.2615219997 3.4467912 -1103.2761
+141746.261522104 3.4468699 -1103.3156
+141747.2615222083 3.4468699 -1103.1378
+141748.2615223126 3.4468305 -1103.2562
+141749.261522417 3.4468305 -1103.2562
+141750.2615225213 3.4467912 -1103.1774
+141751.2615226256 3.4468305 -1103.197
+141752.2615227299 3.4467518 -1103.2168
+141753.2615228342 3.4467518 -1103.1378
+141754.2615229385 3.4467125 -1103.2168
+141755.2615230428 3.4466729 -1103.2959
+141756.2615231471 3.4467125 -1103.2168
+141757.2615232514 3.4466336 -1103.2959
+141758.2615233557 3.4467518 -1103.1182
+141759.26152346 3.4467125 -1103.3156
+141760.2615235643 3.4465942 -1103.2959
+141761.2615236687 3.4466729 -1103.2168
+141762.261523773 3.4466336 -1103.1774
+141763.2615238773 3.4464369 -1103.1774
+141764.2615239816 3.4465549 -1103.1378
+141765.2615240859 3.4465156 -1103.1576
+141766.2615241902 3.4465549 -1103.2366
+141767.2615242945 3.4465156 -1103.1576
+141768.2615243988 3.4465156 -1103.2761
+141769.2615245031 3.4465156 -1103.2562
+141770.2615246074 3.4463975 -1103.197
+141771.2615247117 3.4464369 -1103.197
+141772.261524816 3.4464369 -1103.1378
+141773.2615249204 3.4463186 -1103.2366
+141774.2615250247 3.4464762 -1103.2168
+141775.261525129 3.4465156 -1103.1378
+141776.2615252333 3.4464762 -1103.2562
+141777.2615253376 3.4464369 -1103.2562
+141778.2615254419 3.4465156 -1103.2168
+141779.2615255462 3.446358 -1103.2562
+141780.2615256505 3.446358 -1103.2562
+141781.2615257548 3.4463975 -1103.197
+141782.2615258591 3.4462793 -1103.2168
+141783.2615259634 3.4463975 -1103.2562
+141784.2615260677 3.4463186 -1103.197
+141785.261526172 3.446358 -1103.197
+141786.2615262764 3.4463186 -1103.1774
+141787.2615263807 3.4463186 -1103.2168
+141788.261526485 3.4462399 -1103.2761
+141789.2615265893 3.446358 -1103.1576
+141790.2615266936 3.4462793 -1103.1774
+141791.2615267979 3.4463186 -1103.1576
+141792.2615269022 3.4462793 -1103.2366
+141793.2615270065 3.4463186 -1103.2562
+141794.2615271108 3.4462399 -1103.2168
+141795.2615272151 3.4462006 -1103.1774
+141796.2615273194 3.4462399 -1103.1774
+141797.2615274237 3.4462006 -1103.2366
+141798.2615275281 3.4461613 -1103.2366
+141799.2615276324 3.4461613 -1103.2168
+141800.2615277367 3.4461613 -1103.1576
+141801.261527841 3.4461219 -1103.2959
+141802.2615279453 3.4462793 -1103.1774
+141803.2615280496 3.4461613 -1103.2562
+141804.2615281539 3.4462006 -1103.2562
+141805.2615282582 3.4461613 -1103.2168
+141806.2615283625 3.4461219 -1103.1774
+141807.2615284668 3.4461219 -1103.2168
+141808.2615285711 3.4460826 -1103.1774
+141809.2615286754 3.4460037 -1103.2168
+141810.2615287798 3.4461613 -1103.1774
+141811.2615288841 3.4460826 -1103.2168
+141812.2615289884 3.4459643 -1103.197
+141813.2615290927 3.446043 -1103.197
+141814.261529197 3.4459643 -1103.2366
+141815.2615293013 3.445925 -1103.2168
+141816.2615294056 3.4459643 -1103.2562
+141817.2615295099 3.445925 -1103.2366
+141818.2615296142 3.4460037 -1103.1774
+141819.2615297185 3.4458463 -1103.1774
+141820.2615298228 3.445807 -1103.2562
+141821.2615299271 3.445807 -1103.1774
+141822.2615300315 3.4458857 -1103.3156
+141823.2615301358 3.4457281 -1103.2562
+141824.2615302401 3.445807 -1103.197
+141825.2615303444 3.4456887 -1103.2562
+141826.2615304487 3.4456494 -1103.2168
+141827.261530553 3.44561 -1103.2366
+141828.2615306573 3.4456494 -1103.2761
+141829.2615307616 3.4455707 -1103.1774
+141830.2615308659 3.4455707 -1103.1774
+141831.2615309702 3.4455314 -1103.197
+141832.2615310745 3.445492 -1103.197
+141833.2615311788 3.4454527 -1103.2168
+141834.2615312831 3.4452951 -1103.2562
+141835.2615313875 3.4453344 -1103.2168
+141836.2615314918 3.4453344 -1103.1774
+141837.2615315961 3.4452951 -1103.197
+141838.2615317004 3.4452951 -1103.2761
+141839.2615318047 3.4452951 -1103.1378
+141840.261531909 3.4452951 -1103.197
+141841.2615320133 3.4452558 -1103.2366
+141842.2615321176 3.4450588 -1103.2959
+141843.2615322219 3.4451771 -1103.2366
+141844.2615323262 3.4451771 -1103.2562
+141845.2615324305 3.4452164 -1103.1774
+141846.2615325348 3.4451771 -1103.2562
+141847.2615326392 3.4450982 -1103.1576
+141848.2615327435 3.4450982 -1103.2562
+141849.2615328478 3.4451771 -1103.1576
+141850.2615329521 3.4450982 -1103.2959
+141851.2615330564 3.4450588 -1103.2959
+141852.2615331607 3.4450588 -1103.197
+141853.261533265 3.4450588 -1103.2168
+141854.2615333693 3.4450588 -1103.2761
+141855.2615334736 3.4450982 -1103.1576
+141856.2615335779 3.4450195 -1103.2168
+141857.2615336822 3.4449015 -1103.2366
+141858.2615337865 3.4449408 -1103.2168
+141859.2615338909 3.4449408 -1103.2168
+141860.2615339952 3.4448225 -1103.2366
+141861.2615340995 3.4448225 -1103.1576
+141862.2615342038 3.4449015 -1103.197
+141863.2615343081 3.4448225 -1103.2761
+141864.2615344124 3.4447045 -1103.197
+141865.2615345167 3.4447439 -1103.1774
+141866.261534621 3.4447439 -1103.2761
+141867.2615347253 3.4446259 -1103.2168
+141868.2615348296 3.4447045 -1103.2562
+141869.2615349339 3.4447045 -1103.2562
+141870.2615350382 3.4447439 -1103.2761
+141871.2615351425 3.4445472 -1103.197
+141872.2615352469 3.4445865 -1103.2562
+141873.2615353512 3.4445076 -1103.2168
+141874.2615354555 3.4445076 -1103.2562
+141875.2615355598 3.4445076 -1103.1576
+141876.2615356641 3.4443896 -1103.2562
+141877.2615357684 3.4444683 -1103.1182
+141878.2615358727 3.4443896 -1103.2366
+141879.261535977 3.4443502 -1103.2562
+141880.2615360813 3.4443896 -1103.1774
+141881.2615361856 3.4443896 -1103.2366
+141882.2615362899 3.4443109 -1103.197
+141883.2615363942 3.4443109 -1103.2562
+141884.2615364986 3.4443109 -1103.2168
+141885.2615366029 3.4443896 -1103.2168
+141886.2615367072 3.4443502 -1103.197
+141887.2615368115 3.4443502 -1103.2366
+141888.2615369158 3.4442716 -1103.2168
+141889.2615370201 3.4443502 -1103.2366
+141890.2615371244 3.4442322 -1103.197
+141891.2615372287 3.4443109 -1103.2168
+141892.261537333 3.4443109 -1103.2366
+141893.2615374373 3.4441533 -1103.1774
+141894.2615375416 3.4441533 -1103.2168
+141895.2615376459 3.4441926 -1103.1774
+141896.2615377503 3.444114 -1103.2366
+141897.2615378546 3.4441926 -1103.197
+141898.2615379589 3.444114 -1103.2366
+141899.2615380632 3.4441926 -1103.2168
+141900.2615381675 3.444114 -1103.2168
+141901.2615382718 3.4440353 -1103.1774
+141902.2615383761 3.4440746 -1103.2168
+141903.2615384804 3.4439566 -1103.1378
+141904.2615385847 3.4440353 -1103.2366
+141905.261538689 3.4440353 -1103.197
+141906.2615387933 3.4439566 -1103.2366
+141907.2615388976 3.4439173 -1103.2168
+141908.2615390019 3.4439566 -1103.2366
+141909.2615391063 3.443799 -1103.2366
+141910.2615392106 3.4438384 -1103.2761
+141911.2615393149 3.443799 -1103.2366
+141912.2615394192 3.4438777 -1103.2761
+141913.2615395235 3.443799 -1103.1774
+141914.2615396278 3.443799 -1103.1774
+141915.2615397321 3.443799 -1103.2562
+141916.2615398364 3.4437203 -1103.1774
+141917.2615399407 3.4437597 -1103.2761
+141918.261540045 3.443799 -1103.2761
+141919.2615401493 3.4437597 -1103.1774
+141920.2615402536 3.443681 -1103.2168
+141921.261540358 3.443681 -1103.2168
+141922.2615404623 3.4436023 -1103.2959
+141923.2615405666 3.4437597 -1103.197
+141924.2615406709 3.4436417 -1103.1774
+141925.2615407752 3.4436023 -1103.2562
+141926.2615408795 3.443681 -1103.1774
+141927.2615409838 3.4434841 -1103.1378
+141928.2615410881 3.4435627 -1103.197
+141929.2615411924 3.4434841 -1103.2562
+141930.2615412967 3.4434447 -1103.2168
+141931.261541401 3.4435234 -1103.197
+141932.2615415053 3.4434447 -1103.197
+141933.2615416097 3.4434447 -1103.2168
+141934.261541714 3.4434841 -1103.2761
+141935.2615418183 3.4433661 -1103.1774
+141936.2615419226 3.4434841 -1103.197
+141937.2615420269 3.4434054 -1103.2168
+141938.2615421312 3.4434054 -1103.2168
+141939.2615422355 3.4432871 -1103.1774
+141940.2615423398 3.4434054 -1103.2168
+141941.2615424441 3.4433267 -1103.3156
+141942.2615425484 3.4432478 -1103.197
+141943.2615426527 3.4432871 -1103.2761
+141944.261542757 3.4432085 -1103.197
+141945.2615428614 3.4431298 -1103.1576
+141946.2615429657 3.4430904 -1103.2168
+141947.26154307 3.4431298 -1103.197
+141948.2615431743 3.4430904 -1103.2168
+141949.2615432786 3.4430904 -1103.0984
+141950.2615433829 3.4430118 -1103.2562
+141951.2615434872 3.4430904 -1103.3156
+141952.2615435915 3.4429722 -1103.1378
+141953.2615436958 3.4430118 -1103.2366
+141954.2615438001 3.4428935 -1103.1774
+141955.2615439044 3.4428935 -1103.2761
+141956.2615440087 3.4428935 -1103.1378
+141957.261544113 3.4428542 -1103.2761
+141958.2615442174 3.4428542 -1103.1774
+141959.2615443217 3.4430118 -1103.2168
+141960.261544426 3.4428935 -1103.1378
+141961.2615445303 3.4428148 -1103.1774
+141962.2615446346 3.4427755 -1103.2562
+141963.2615447389 3.4429328 -1103.2761
+141964.2615448432 3.4427755 -1103.1576
+141965.2615449475 3.4428542 -1103.1774
+141966.2615450518 3.4426968 -1103.197
+141967.2615451561 3.4427755 -1103.2562
+141968.2615452604 3.4427755 -1103.197
+141969.2615453647 3.4426572 -1103.1576
+141970.2615454691 3.4425392 -1103.1774
+141971.2615455734 3.4426968 -1103.2562
+141972.2615456777 3.4426968 -1103.2761
+141973.261545782 3.4424999 -1103.2168
+141974.2615458863 3.4425786 -1103.2168
+141975.2615459906 3.4424999 -1103.2761
+141976.2615460949 3.4424605 -1103.1774
+141977.2615461992 3.4423819 -1103.197
+141978.2615463035 3.4423029 -1103.197
+141979.2615464078 3.4423819 -1103.2366
+141980.2615465121 3.4421849 -1103.2562
+141981.2615466164 3.4422243 -1103.197
+141982.2615467208 3.4421849 -1103.197
+141983.2615468251 3.4422636 -1103.2562
+141984.2615469294 3.4421849 -1103.197
+141985.2615470337 3.4422243 -1103.2168
+141986.261547138 3.4422636 -1103.2366
+141987.2615472423 3.4421456 -1103.1774
+141988.2615473466 3.4421062 -1103.2168
+141989.2615474509 3.4421062 -1103.197
+141990.2615475552 3.4421062 -1103.1774
+141991.2615476595 3.4421062 -1103.1378
+141992.2615477638 3.4420669 -1103.2562
+141993.2615478681 3.4421062 -1103.2168
+141994.2615479724 3.4421456 -1103.2959
+141995.2615480768 3.4420669 -1103.3156
+141996.2615481811 3.4420669 -1103.1774
+141997.2615482854 3.4420273 -1103.1774
+141998.2615483897 3.4420273 -1103.2761
+141999.261548494 3.441988 -1103.1774
+142000.2615485983 3.44187 -1103.197
+142001.2615487026 3.4419093 -1103.2761
+142002.2615488069 3.4418306 -1103.2562
+142003.2615489112 3.4419093 -1103.2366
+142004.2615490155 3.4418306 -1103.2562
+142005.2615491198 3.4419093 -1103.1774
+142006.2615492241 3.4417913 -1103.2168
+142007.2615493285 3.4418306 -1103.1774
+142008.2615494328 3.4417517 -1103.1774
+142009.2615495371 3.441673 -1103.2562
+142010.2615496414 3.4417913 -1103.2168
+142011.2615497457 3.4417124 -1103.2761
+142012.26154985 3.4417517 -1103.2366
+142013.2615499543 3.4417124 -1103.2168
+142014.2615500586 3.4415944 -1103.2959
+142015.2615501629 3.4416337 -1103.2761
+142016.2615502672 3.4416337 -1103.2366
+142017.2615503715 3.4415944 -1103.2562
+142018.2615504758 3.4415157 -1103.197
+142019.2615505802 3.441555 -1103.1182
+142020.2615506845 3.4415157 -1103.1378
+142021.2615507888 3.4416337 -1103.1774
+142022.2615508931 3.4415157 -1103.2562
+142023.2615509974 3.4416337 -1103.1378
+142024.2615511017 3.441555 -1103.2761
+142025.261551206 3.441555 -1103.1378
+142026.2615513103 3.4415157 -1103.2366
+142027.2615514146 3.4415944 -1103.2562
+142028.2615515189 3.4417124 -1103.2761
+142029.2615516232 3.441555 -1103.2366
+142030.2615517275 3.441555 -1103.2366
+142031.2615518318 3.4416337 -1103.197
+142032.2615519362 3.4416337 -1103.2761
+142033.2615520405 3.4414763 -1103.2761
+142034.2615521448 3.4415944 -1103.2168
+142035.2615522491 3.4414368 -1103.2168
+142036.2615523534 3.441555 -1103.2366
+142037.2615524577 3.4415157 -1103.2168
+142038.261552562 3.441555 -1103.2959
+142039.2615526663 3.4414368 -1103.2562
+142040.2615527706 3.4414368 -1103.197
+142041.2615528749 3.4415157 -1103.2366
+142042.2615529792 3.4414763 -1103.2366
+142043.2615530835 3.4415157 -1103.2761
+142044.2615531879 3.4415157 -1103.2168
+142045.2615532922 3.4413974 -1103.2366
+142046.2615533965 3.4414763 -1103.1774
+142047.2615535008 3.4413974 -1103.1378
+142048.2615536051 3.4414368 -1103.2366
+142049.2615537094 3.4414368 -1103.197
+142050.2615538137 3.4414368 -1103.2168
+142051.261553918 3.4414368 -1103.1378
+142052.2615540223 3.4414368 -1103.1774
+142053.2615541266 3.4413188 -1103.2366
+142054.2615542309 3.4414368 -1103.2168
+142055.2615543352 3.4412794 -1103.197
+142056.2615544396 3.4413188 -1103.2366
+142057.2615545439 3.4413974 -1103.2168
+142058.2615546482 3.4412401 -1103.2168
+142059.2615547525 3.4413188 -1103.197
+142060.2615548568 3.4412794 -1103.2366
+142061.2615549611 3.4412007 -1103.197
+142062.2615550654 3.4412007 -1103.2366
+142063.2615551697 3.4412401 -1103.2761
+142064.261555274 3.4412401 -1103.2562
+142065.2615553783 3.4412794 -1103.2761
+142066.2615554826 3.4412007 -1103.197
+142067.2615555869 3.4410431 -1103.197
+142068.2615556913 3.4412401 -1103.3156
+142069.2615557956 3.4411218 -1103.2366
+142070.2615558999 3.4411614 -1103.3353
+142071.2615560042 3.4411218 -1103.2562
+142072.2615561085 3.4410431 -1103.1774
+142073.2615562128 3.4409251 -1103.3156
+142074.2615563171 3.4409645 -1103.2562
+142075.2615564214 3.4410038 -1103.3156
+142076.2615565257 3.4409645 -1103.3156
+142077.26155663 3.4411614 -1103.2366
+142078.2615567343 3.4410431 -1103.3156
+142079.2615568386 3.4412007 -1103.2959
+142080.2615569429 3.4409251 -1103.2959
+142081.2615570473 3.4409645 -1103.1378
+142082.2615571516 3.4409251 -1103.197
+142083.2615572559 3.4408858 -1103.1378
+142084.2615573602 3.4409645 -1103.2168
+142085.2615574645 3.4410038 -1103.2562
+142086.2615575688 3.4409251 -1103.197
+142087.2615576731 3.4409645 -1103.197
+142088.2615577774 3.4408464 -1103.2562
+142089.2615578817 3.4408858 -1103.2366
+142090.261557986 3.4409251 -1103.197
+142091.2615580903 3.4408464 -1103.2168
+142092.2615581946 3.4409251 -1103.2168
+142093.261558299 3.4408069 -1103.2761
+142094.2615584033 3.4408464 -1103.1774
+142095.2615585076 3.4408858 -1103.2562
+142096.2615586119 3.4407282 -1103.2168
+142097.2615587162 3.4407675 -1103.2761
+142098.2615588205 3.4407675 -1103.1774
+142099.2615589248 3.4408069 -1103.3156
+142100.2615590291 3.4406495 -1103.1378
+142101.2615591334 3.4406102 -1103.2168
+142102.2615592377 3.4407282 -1103.2366
+142103.261559342 3.4406495 -1103.2366
+142104.2615594463 3.4405708 -1103.2366
+142105.2615595507 3.4404919 -1103.1774
+142106.261559655 3.4405315 -1103.1378
+142107.2615597593 3.4405708 -1103.2168
+142108.2615598636 3.4404526 -1103.1774
+142109.2615599679 3.4404132 -1103.2168
+142110.2615600722 3.4403739 -1103.1774
+142111.2615601765 3.4402559 -1103.1774
+142112.2615602808 3.4402165 -1103.3551
+142113.2615603851 3.4402559 -1103.1182
+142114.2615604894 3.4402559 -1103.0984
+142115.2615605937 3.4402165 -1103.3353
+142116.261560698 3.4400983 -1103.3353
+142117.2615608023 3.440177 -1103.2366
+142118.2615609067 3.4400983 -1103.2562
+142119.261561011 3.4400589 -1103.2168
+142120.2615611153 3.440177 -1103.2959
+142121.2615612196 3.4400196 -1103.197
+142122.2615613239 3.4399409 -1103.2168
+142123.2615614282 3.4400196 -1103.197
+142124.2615615325 3.4399014 -1103.1774
+142125.2615616368 3.4399803 -1103.197
+142126.2615617411 3.4399014 -1103.2366
+142127.2615618454 3.439862 -1103.197
+142128.2615619497 3.4399014 -1103.2366
+142129.261562054 3.439862 -1103.3353
+142130.2615621584 3.439862 -1103.1378
+142131.2615622627 3.4397833 -1103.197
+142132.261562367 3.4398227 -1103.1774
+142133.2615624713 3.439744 -1103.2168
+142134.2615625756 3.4397047 -1103.2761
+142135.2615626799 3.439744 -1103.1774
+142136.2615627842 3.4397047 -1103.2761
+142137.2615628885 3.4396653 -1103.2366
+142138.2615629928 3.4395471 -1103.2761
+142139.2615630971 3.4397047 -1103.2761
+142140.2615632014 3.4396653 -1103.1182
+142141.2615633057 3.4394684 -1103.2366
+142142.2615634101 3.4393504 -1103.1774
+142143.2615635144 3.439429 -1103.2168
+142144.2615636187 3.439311 -1103.1774
+142145.261563723 3.4393897 -1103.2366
+142146.2615638273 3.4393504 -1103.197
+142147.2615639316 3.4391928 -1103.2761
+142148.2615640359 3.439311 -1103.1576
+142149.2615641402 3.439311 -1103.2366
+142150.2615642445 3.439311 -1103.1774
+142151.2615643488 3.4392321 -1103.1576
+142152.2615644531 3.4391141 -1103.197
+142153.2615645574 3.4391534 -1103.2562
+142154.2615646617 3.4391534 -1103.2168
+142155.2615647661 3.4390748 -1103.2168
+142156.2615648704 3.4390354 -1103.1576
+142157.2615649747 3.4390748 -1103.2168
+142158.261565079 3.4390354 -1103.2366
+142159.2615651833 3.4389172 -1103.2366
+142160.2615652876 3.4389565 -1103.1774
+142161.2615653919 3.4388385 -1103.2761
+142162.2615654962 3.4388778 -1103.2366
+142163.2615656005 3.4388385 -1103.2761
+142164.2615657048 3.4387991 -1103.2562
+142165.2615658091 3.4386415 -1103.1774
+142166.2615659134 3.4387991 -1103.2761
+142167.2615660178 3.4387991 -1103.2562
+142168.2615661221 3.4386415 -1103.2366
+142169.2615662264 3.4387205 -1103.2959
+142170.2615663307 3.4387205 -1103.1774
+142171.261566435 3.4386415 -1103.2761
+142172.2615665393 3.4386022 -1103.2168
+142173.2615666436 3.4385235 -1103.2168
+142174.2615667479 3.4385629 -1103.2562
+142175.2615668522 3.4385235 -1103.1576
+142176.2615669565 3.4385629 -1103.197
+142177.2615670608 3.4384055 -1103.2168
+142178.2615671651 3.4384449 -1103.2168
+142179.2615672695 3.4384842 -1103.2168
+142180.2615673738 3.4383662 -1103.2168
+142181.2615674781 3.4383266 -1103.1576
+142182.2615675824 3.4384449 -1103.2562
+142183.2615676867 3.4382873 -1103.197
+142184.261567791 3.4384842 -1103.1774
+142185.2615678953 3.4383662 -1103.2366
+142186.2615679996 3.4384055 -1103.2562
+142187.2615681039 3.4382873 -1103.2366
+142188.2615682082 3.4383662 -1103.2761
+142189.2615683125 3.4382479 -1103.0984
+142190.2615684168 3.4382479 -1103.1576
+142191.2615685211 3.4381299 -1103.2562
+142192.2615686255 3.4382873 -1103.1378
+142193.2615687298 3.4381692 -1103.3156
+142194.2615688341 3.4381299 -1103.1774
+142195.2615689384 3.4380116 -1103.2366
+142196.2615690427 3.4381692 -1103.197
+142197.261569147 3.4381299 -1103.197
+142198.2615692513 3.438051 -1103.1774
+142199.2615693556 3.4379723 -1103.1576
+142200.2615694599 3.4378936 -1103.2562
+142201.2615695642 3.4379723 -1103.2366
+142202.2615696685 3.4378543 -1103.197
+142203.2615697728 3.437815 -1103.3551
+142204.2615698772 3.437933 -1103.1576
+142205.2615699815 3.4378543 -1103.1774
+142206.2615700858 3.4378936 -1103.197
+142207.2615701901 3.4376967 -1103.1774
+142208.2615702944 3.4376967 -1103.3353
+142209.2615703987 3.437618 -1103.3156
+142210.261570503 3.437618 -1103.1774
+142211.2615706073 3.4374607 -1103.2168
+142212.2615707116 3.4375 -1103.2366
+142213.2615708159 3.4375 -1103.2562
+142214.2615709202 3.4375393 -1103.2761
+142215.2615710245 3.4373817 -1103.2761
+142216.2615711289 3.4374211 -1103.1774
+142217.2615712332 3.4373817 -1103.2168
+142218.2615713375 3.4373031 -1103.197
+142219.2615714418 3.4371457 -1103.1774
+142220.2615715461 3.4372244 -1103.2761
+142221.2615716504 3.4372244 -1103.2761
+142222.2615717547 3.437185 -1103.2562
+142223.261571859 3.4371061 -1103.1576
+142224.2615719633 3.4371061 -1103.2562
+142225.2615720676 3.4370668 -1103.197
+142226.2615721719 3.4369881 -1103.1774
+142227.2615722762 3.4369488 -1103.2168
+142228.2615723806 3.4369881 -1103.2761
+142229.2615724849 3.4369094 -1103.2366
+142230.2615725892 3.4369094 -1103.197
+142231.2615726935 3.4368701 -1103.2562
+142232.2615727978 3.4368701 -1103.1378
+142233.2615729021 3.4367912 -1103.2168
+142234.2615730064 3.4368308 -1103.2761
+142235.2615731107 3.4366732 -1103.2168
+142236.261573215 3.4367125 -1103.2168
+142237.2615733193 3.4366338 -1103.197
+142238.2615734236 3.4366338 -1103.2366
+142239.2615735279 3.4367125 -1103.2562
+142240.2615736322 3.4364369 -1103.2366
+142241.2615737366 3.4365551 -1103.1576
+142242.2615738409 3.4365551 -1103.2761
+142243.2615739452 3.4365158 -1103.2761
+142244.2615740495 3.4365158 -1103.197
+142245.2615741538 3.4365158 -1103.1774
+142246.2615742581 3.4365158 -1103.2366
+142247.2615743624 3.4365945 -1103.2562
+142248.2615744667 3.4365158 -1103.1576
+142249.261574571 3.4364369 -1103.2168
+142250.2615746753 3.4364762 -1103.197
+142251.2615747796 3.4365158 -1103.3156
+142252.2615748839 3.4364762 -1103.2761
+142253.2615749883 3.4364369 -1103.1774
+142254.2615750926 3.4363582 -1103.2168
+142255.2615751969 3.4364369 -1103.2366
+142256.2615753012 3.4364762 -1103.197
+142257.2615754055 3.4363582 -1103.2168
+142258.2615755098 3.4363976 -1103.1576
+142259.2615756141 3.4362006 -1103.2366
+142260.2615757184 3.4362795 -1103.197
+142261.2615758227 3.4363189 -1103.197
+142262.261575927 3.4362402 -1103.2562
+142263.2615760313 3.4361219 -1103.1576
+142264.2615761356 3.4362006 -1103.2761
+142265.26157624 3.4361613 -1103.1378
+142266.2615763443 3.4360433 -1103.2562
+142267.2615764486 3.4360826 -1103.1774
+142268.2615765529 3.4360826 -1103.2168
+142269.2615766572 3.4359252 -1103.1182
+142270.2615767615 3.4359252 -1103.1774
+142271.2615768658 3.4358857 -1103.2168
+142272.2615769701 3.4359252 -1103.1576
+142273.2615770744 3.4358463 -1103.2366
+142274.2615771787 3.435807 -1103.197
+142275.261577283 3.4357283 -1103.1576
+142276.2615773873 3.4357283 -1103.2761
+142277.2615774916 3.435807 -1103.1774
+142278.261577596 3.4357283 -1103.2168
+142279.2615777003 3.4356496 -1103.2562
+142280.2615778046 3.4356496 -1103.1576
+142281.2615779089 3.4357283 -1103.2761
+142282.2615780132 3.4355707 -1103.2761
+142283.2615781175 3.4355707 -1103.197
+142284.2615782218 3.4355707 -1103.2562
+142285.2615783261 3.4355314 -1103.1774
+142286.2615784304 3.435492 -1103.2366
+142287.2615785347 3.435374 -1103.2366
+142288.261578639 3.4353347 -1103.197
+142289.2615787433 3.4352953 -1103.2761
+142290.2615788477 3.4351771 -1103.197
+142291.261578952 3.4352164 -1103.2168
+142292.2615790563 3.4351771 -1103.2562
+142293.2615791606 3.4351377 -1103.2168
+142294.2615792649 3.4350591 -1103.1576
+142295.2615793692 3.4350197 -1103.1774
+142296.2615794735 3.4349015 -1103.2366
+142297.2615795778 3.4349804 -1103.2959
+142298.2615796821 3.4350197 -1103.3156
+142299.2615797864 3.4349015 -1103.2168
+142300.2615798907 3.4349804 -1103.2366
+142301.261579995 3.4349015 -1103.1774
+142302.2615800994 3.4348621 -1103.197
+142303.2615802037 3.4347835 -1103.2366
+142304.261580308 3.4347441 -1103.3156
+142305.2615804123 3.4349015 -1103.2168
+142306.2615805166 3.4348228 -1103.1774
+142307.2615806209 3.4348228 -1103.2168
+142308.2615807252 3.4348228 -1103.2562
+142309.2615808295 3.4347441 -1103.197
+142310.2615809338 3.4346259 -1103.197
+142311.2615810381 3.4347835 -1103.3353
+142312.2615811424 3.4347441 -1103.2366
+142313.2615812467 3.4347441 -1103.2366
+142314.261581351 3.4346654 -1103.2168
+142315.2615814554 3.4346654 -1103.2366
+142316.2615815597 3.4346654 -1103.2761
+142317.261581664 3.4345865 -1103.2761
+142318.2615817683 3.4345078 -1103.2562
+142319.2615818726 3.4346259 -1103.2959
+142320.2615819769 3.4345472 -1103.2562
+142321.2615820812 3.4345472 -1103.2168
+142322.2615821855 3.4343503 -1103.3353
+142323.2615822898 3.4343898 -1103.197
+142324.2615823941 3.4343503 -1103.197
+142325.2615824984 3.4344292 -1103.2366
+142326.2615826027 3.4342322 -1103.2761
+142327.2615827071 3.4341929 -1103.1774
+142328.2615828114 3.4341929 -1103.197
+142329.2615829157 3.4341536 -1103.2959
+142330.26158302 3.4341142 -1103.2168
+142331.2615831243 3.4341536 -1103.1378
+142332.2615832286 3.4341536 -1103.1576
+142333.2615833329 3.4340353 -1103.2761
+142334.2615834372 3.4341536 -1103.1576
+142335.2615835415 3.4339566 -1103.2366
+142336.2615836458 3.4339566 -1103.2366
+142337.2615837501 3.4338779 -1103.2761
+142338.2615838544 3.4338779 -1103.2761
+142339.2615839588 3.4339566 -1103.197
+142340.2615840631 3.4338386 -1103.2562
+142341.2615841674 3.4338386 -1103.2366
+142342.2615842717 3.4338386 -1103.2366
+142343.261584376 3.4337993 -1103.2562
+142344.2615844803 3.4338779 -1103.197
+142345.2615845846 3.4338779 -1103.2761
+142346.2615846889 3.4337204 -1103.2366
+142347.2615847932 3.4337204 -1103.2761
+142348.2615848975 3.4338386 -1103.2168
+142349.2615850018 3.4337599 -1103.2562
+142350.2615851061 3.4337204 -1103.1182
+142351.2615852105 3.4337204 -1103.1378
+142352.2615853148 3.4337204 -1103.2562
+142353.2615854191 3.4337204 -1103.197
+142354.2615855234 3.4337599 -1103.2168
+142355.2615856277 3.4336023 -1103.197
+142356.261585732 3.4334843 -1103.2562
+142357.2615858363 3.4336023 -1103.2168
+142358.2615859406 3.4336023 -1103.2366
+142359.2615860449 3.4336417 -1103.2168
+142360.2615861492 3.4336023 -1103.197
+142361.2615862535 3.433445 -1103.2168
+142362.2615863578 3.4334843 -1103.2562
+142363.2615864621 3.4335237 -1103.1774
+142364.2615865665 3.433445 -1103.1576
+142365.2615866708 3.4334843 -1103.2761
+142366.2615867751 3.4333661 -1103.2168
+142367.2615868794 3.4333267 -1103.2761
+142368.2615869837 3.4333661 -1103.197
+142369.261587088 3.4333661 -1103.1774
+142370.2615871923 3.4333661 -1103.2366
+142371.2615872966 3.4333267 -1103.2761
+142372.2615874009 3.433248 -1103.1774
+142373.2615875052 3.4331694 -1103.1182
+142374.2615876095 3.433248 -1103.2562
+142375.2615877138 3.4330118 -1103.2761
+142376.2615878182 3.43313 -1103.2761
+142377.2615879225 3.4330904 -1103.2562
+142378.2615880268 3.43313 -1103.2366
+142379.2615881311 3.4329724 -1103.2168
+142380.2615882354 3.4330904 -1103.2366
+142381.2615883397 3.4329724 -1103.2366
+142382.261588444 3.4329331 -1103.2761
+142383.2615885483 3.4327755 -1103.2366
+142384.2615886526 3.4329331 -1103.1378
+142385.2615887569 3.4328938 -1103.2168
+142386.2615888612 3.4328544 -1103.3156
+142387.2615889655 3.4327755 -1103.2959
+142388.2615890699 3.4328151 -1103.2366
+142389.2615891742 3.4327755 -1103.197
+142390.2615892785 3.4326968 -1103.3156
+142391.2615893828 3.4328151 -1103.1576
+142392.2615894871 3.4326968 -1103.2366
+142393.2615895914 3.4326181 -1103.1774
+142394.2615896957 3.4325788 -1103.2562
+142395.2615898 3.4324999 -1103.2366
+142396.2615899043 3.4324605 -1103.1774
+142397.2615900086 3.4325395 -1103.197
+142398.2615901129 3.4324999 -1103.2168
+142399.2615902172 3.4324212 -1103.2168
+142400.2615903215 3.4323425 -1103.2562
+142401.2615904259 3.4323819 -1103.197
+142402.2615905302 3.4323032 -1103.2168
+142403.2615906345 3.4322639 -1103.1774
+142404.2615907388 3.4322245 -1103.2366
+142405.2615908431 3.4321849 -1103.2761
+142406.2615909474 3.4322245 -1103.2366
+142407.2615910517 3.4322245 -1103.2168
+142408.261591156 3.4321456 -1103.2366
+142409.2615912603 3.4321063 -1103.2959
+142410.2615913646 3.4320669 -1103.2168
+142411.2615914689 3.4320276 -1103.1576
+142412.2615915732 3.4320669 -1103.197
+142413.2615916776 3.4319882 -1103.2761
+142414.2615917819 3.4320276 -1103.1774
+142415.2615918862 3.4319096 -1103.197
+142416.2615919905 3.4318306 -1103.2168
+142417.2615920948 3.43187 -1103.1774
+142418.2615921991 3.4318306 -1103.1576
+142419.2615923034 3.431752 -1103.197
+142420.2615924077 3.4316339 -1103.2168
+142421.261592512 3.4317126 -1103.2168
+142422.2615926163 3.4317126 -1103.3156
+142423.2615927206 3.4316339 -1103.2168
+142424.2615928249 3.4316733 -1103.2366
+142425.2615929293 3.4315946 -1103.2168
+142426.2615930336 3.4316733 -1103.2562
+142427.2615931379 3.431555 -1103.1774
+142428.2615932422 3.431555 -1103.2366
+142429.2615933465 3.4315157 -1103.2562
+142430.2615934508 3.4315157 -1103.2168
+142431.2615935551 3.4315157 -1103.1774
+142432.2615936594 3.4315157 -1103.2562
+142433.2615937637 3.4314764 -1103.1774
+142434.261593868 3.431319 -1103.2562
+142435.2615939723 3.4314764 -1103.2562
+142436.2615940766 3.4313977 -1103.1182
+142437.2615941809 3.4313583 -1103.2366
+142438.2615942853 3.4313583 -1103.2366
+142439.2615943896 3.4313977 -1103.2562
+142440.2615944939 3.4312797 -1103.197
+142441.2615945982 3.4312797 -1103.2168
+142442.2615947025 3.431319 -1103.2168
+142443.2615948068 3.4312401 -1103.2168
+142444.2615949111 3.4312401 -1103.2168
+142445.2615950154 3.4310827 -1103.197
+142446.2615951197 3.4311221 -1103.2168
+142447.261595224 3.4310827 -1103.2168
+142448.2615953283 3.4310434 -1103.1774
+142449.2615954326 3.4310827 -1103.2562
+142450.261595537 3.431004 -1103.197
+142451.2615956413 3.4308071 -1103.1378
+142452.2615957456 3.4308858 -1103.2761
+142453.2615958499 3.4308858 -1103.2168
+142454.2615959542 3.4309645 -1103.2168
+142455.2615960585 3.4308858 -1103.197
+142456.2615961628 3.4308071 -1103.1576
+142457.2615962671 3.4308858 -1103.1774
+142458.2615963714 3.4308858 -1103.2366
+142459.2615964757 3.4307678 -1103.2168
+142460.26159658 3.4308071 -1103.197
+142461.2615966843 3.4309645 -1103.2959
+142462.2615967887 3.4308858 -1103.1774
+142463.261596893 3.4308465 -1103.197
+142464.2615969973 3.4308465 -1103.2168
+142465.2615971016 3.4307678 -1103.2959
+142466.2615972059 3.4307678 -1103.1774
+142467.2615973102 3.4307678 -1103.1378
+142468.2615974145 3.4307678 -1103.2366
+142469.2615975188 3.4306891 -1103.2366
+142470.2615976231 3.4305708 -1103.197
+142471.2615977274 3.4305708 -1103.2168
+142472.2615978317 3.4305708 -1103.1774
+142473.261597936 3.4305708 -1103.1378
+142474.2615980404 3.4304922 -1103.2366
+142475.2615981447 3.4304135 -1103.2959
+142476.261598249 3.4304528 -1103.3353
+142477.2615983533 3.4305315 -1103.2366
+142478.2615984576 3.4303741 -1103.2168
+142479.2615985619 3.4302952 -1103.2366
+142480.2615986662 3.4302559 -1103.2761
+142481.2615987705 3.4302166 -1103.197
+142482.2615988748 3.4302166 -1103.2366
+142483.2615989791 3.4300985 -1103.1774
+142484.2615990834 3.4300196 -1103.2168
+142485.2615991877 3.4300196 -1103.2366
+142486.261599292 3.4300196 -1103.197
+142487.2615993964 3.4299409 -1103.1576
+142488.2615995007 3.4299803 -1103.2168
+142489.261599605 3.4299016 -1103.2366
+142490.2615997093 3.4298229 -1103.197
+142491.2615998136 3.4296653 -1103.197
+142492.2615999179 3.4297047 -1103.2562
+142493.2616000222 3.429626 -1103.2366
+142494.2616001265 3.4296653 -1103.197
+142495.2616002308 3.4297047 -1103.3156
+142496.2616003351 3.4296653 -1103.1576
+142497.2616004394 3.4296653 -1103.1378
+142498.2616005437 3.4295866 -1103.0984
+142499.2616006481 3.429626 -1103.2168
+142500.2616007524 3.429508 -1103.197
+142501.2616008567 3.4295866 -1103.1576
+142502.261600961 3.4295866 -1103.1774
+142503.2616010653 3.429508 -1103.1378
+142504.2616011696 3.4294686 -1103.2366
+142505.2616012739 3.4295473 -1103.1576
+142506.2616013782 3.4295473 -1103.2562
+142507.2616014825 3.4297047 -1103.2168
+142508.2616015868 3.429508 -1103.197
+142509.2616016911 3.429508 -1103.197
+142510.2616017954 3.429508 -1103.2366
+142511.2616018998 3.429508 -1103.2168
+142512.2616020041 3.429508 -1103.2168
+142513.2616021084 3.4295866 -1103.1774
+142514.2616022127 3.4294293 -1103.2366
+142515.261602317 3.4294293 -1103.1774
+142516.2616024213 3.4294293 -1103.2366
+142517.2616025256 3.4293504 -1103.197
+142518.2616026299 3.4294293 -1103.197
+142519.2616027342 3.4293504 -1103.2366
+142520.2616028385 3.429311 -1103.2761
+142521.2616029428 3.4292324 -1103.2562
+142522.2616030471 3.4293504 -1103.2562
+142523.2616031514 3.4293504 -1103.1774
+142524.2616032558 3.4292324 -1103.2366
+142525.2616033601 3.4292324 -1103.197
+142526.2616034644 3.4292717 -1103.1774
+142527.2616035687 3.4292324 -1103.2761
+142528.261603673 3.4292324 -1103.197
+142529.2616037773 3.429193 -1103.2761
+142530.2616038816 3.4292717 -1103.1774
+142531.2616039859 3.4291537 -1103.2366
+142532.2616040902 3.4291537 -1103.1576
+142533.2616041945 3.4290748 -1103.2366
+142534.2616042988 3.4291537 -1103.1774
+142535.2616044031 3.4291537 -1103.2366
+142536.2616045075 3.4290748 -1103.2168
+142537.2616046118 3.4289961 -1103.2168
+142538.2616047161 3.4289174 -1103.2168
+142539.2616048204 3.4289961 -1103.2562
+142540.2616049247 3.4290354 -1103.1576
+142541.261605029 3.4288387 -1103.2761
+142542.2616051333 3.4287992 -1103.2366
+142543.2616052376 3.4287205 -1103.2562
+142544.2616053419 3.4287598 -1103.2366
+142545.2616054462 3.4287992 -1103.2168
+142546.2616055505 3.4288387 -1103.1378
+142547.2616056548 3.4287598 -1103.197
+142548.2616057592 3.4286418 -1103.2366
+142549.2616058635 3.4286811 -1103.2366
+142550.2616059678 3.4285631 -1103.2366
+142551.2616060721 3.4286418 -1103.197
+142552.2616061764 3.4286025 -1103.197
+142553.2616062807 3.4285238 -1103.2366
+142554.261606385 3.4285631 -1103.197
+142555.2616064893 3.4285238 -1103.2366
+142556.2616065936 3.4284842 -1103.2761
+142557.2616066979 3.4284842 -1103.2366
+142558.2616068022 3.4284055 -1103.197
+142559.2616069065 3.4284449 -1103.197
+142560.2616070108 3.4283268 -1103.2168
+142561.2616071152 3.4282482 -1103.2366
+142562.2616072195 3.4282482 -1103.2562
+142563.2616073238 3.4281693 -1103.2959
+142564.2616074281 3.4281693 -1103.197
+142565.2616075324 3.4281299 -1103.2761
+142566.2616076367 3.4282088 -1103.2366
+142567.261607741 3.4282088 -1103.2366
+142568.2616078453 3.4280906 -1103.197
+142569.2616079496 3.4279726 -1103.197
+142570.2616080539 3.4280119 -1103.2168
+142571.2616081582 3.4279726 -1103.2168
+142572.2616082625 3.4278543 -1103.1576
+142573.2616083669 3.4279726 -1103.2562
+142574.2616084712 3.4277363 -1103.2366
+142575.2616085755 3.4278939 -1103.3551
+142576.2616086798 3.4277363 -1103.2168
+142577.2616087841 3.4277756 -1103.2366
+142578.2616088884 3.4275789 -1103.0984
+142579.2616089927 3.427815 -1103.2366
+142580.261609097 3.4276183 -1103.1774
+142581.2616092013 3.4276576 -1103.2366
+142582.2616093056 3.4276576 -1103.197
+142583.2616094099 3.4276183 -1103.2168
+142584.2616095142 3.4275393 -1103.2366
+142585.2616096186 3.4275 -1103.1774
+142586.2616097229 3.4275393 -1103.2168
+142587.2616098272 3.4274607 -1103.2366
+142588.2616099315 3.4274213 -1103.2761
+142589.2616100358 3.4274213 -1103.2366
+142590.2616101401 3.4275393 -1103.1774
+142591.2616102444 3.4275789 -1103.1182
+142592.2616103487 3.4274213 -1103.2168
+142593.261610453 3.4275 -1103.2366
+142594.2616105573 3.4274607 -1103.2168
+142595.2616106616 3.4275 -1103.2168
+142596.2616107659 3.4274213 -1103.2168
+142597.2616108703 3.4274213 -1103.1576
+142598.2616109746 3.427382 -1103.1378
+142599.2616110789 3.4274213 -1103.2761
+142600.2616111832 3.4273033 -1103.2168
+142601.2616112875 3.4272637 -1103.2168
+142602.2616113918 3.4273427 -1103.2168
+142603.2616114961 3.4272244 -1103.197
+142604.2616116004 3.4272244 -1103.2366
+142605.2616117047 3.427067 -1103.197
+142606.261611809 3.4271457 -1103.2366
+142607.2616119133 3.427067 -1103.1378
+142608.2616120176 3.427067 -1103.2366
+142609.2616121219 3.4271457 -1103.2168
+142610.2616122263 3.427067 -1103.2168
+142611.2616123306 3.4270277 -1103.2562
+142612.2616124349 3.427067 -1103.2168
+142613.2616125392 3.4269094 -1103.1576
+142614.2616126435 3.4269488 -1103.2168
+142615.2616127478 3.4269094 -1103.0984
+142616.2616128521 3.4268308 -1103.2562
+142617.2616129564 3.4268308 -1103.2168
+142618.2616130607 3.4267914 -1103.2562
+142619.261613165 3.4266338 -1103.2562
+142620.2616132693 3.4266338 -1103.197
+142621.2616133736 3.4266734 -1103.2168
+142622.261613478 3.4265552 -1103.2562
+142623.2616135823 3.4265552 -1103.1182
+142624.2616136866 3.4264765 -1103.2168
+142625.2616137909 3.4264765 -1103.2562
+142626.2616138952 3.4263978 -1103.2761
+142627.2616139995 3.4262795 -1103.1576
+142628.2616141038 3.4263585 -1103.2168
+142629.2616142081 3.4262795 -1103.3156
+142630.2616143124 3.4262795 -1103.1576
+142631.2616144167 3.4262009 -1103.2168
+142632.261614521 3.4262402 -1103.1774
+142633.2616146253 3.4262009 -1103.2168
+142634.2616147297 3.4261615 -1103.197
+142635.261614834 3.4260039 -1103.197
+142636.2616149383 3.4260435 -1103.2562
+142637.2616150426 3.4260039 -1103.2562
+142638.2616151469 3.4260039 -1103.2562
+142639.2616152512 3.4259253 -1103.2168
+142640.2616153555 3.4258072 -1103.2168
+142641.2616154598 3.4259253 -1103.197
+142642.2616155641 3.4258859 -1103.2168
+142643.2616156684 3.4258072 -1103.3156
+142644.2616157727 3.4258072 -1103.197
+142645.261615877 3.4258466 -1103.2562
+142646.2616159813 3.4257679 -1103.197
+142647.2616160857 3.4257286 -1103.197
+142648.26161619 3.4257286 -1103.2562
+142649.2616162943 3.425689 -1103.1774
+142650.2616163986 3.4256103 -1103.2168
+142651.2616165029 3.4257286 -1103.2562
+142652.2616166072 3.4254923 -1103.2168
+142653.2616167115 3.4255316 -1103.1774
+142654.2616168158 3.4253347 -1103.2562
+142655.2616169201 3.4254134 -1103.1774
+142656.2616170244 3.425374 -1103.197
+142657.2616171287 3.4252954 -1103.2366
+142658.261617233 3.4252954 -1103.2366
+142659.2616173374 3.4252167 -1103.1774
+142660.2616174417 3.4251773 -1103.197
+142661.261617546 3.4251773 -1103.1774
+142662.2616176503 3.4250591 -1103.1774
+142663.2616177546 3.4250591 -1103.2366
+142664.2616178589 3.4250197 -1103.2168
+142665.2616179632 3.4250197 -1103.2959
+142666.2616180675 3.4248624 -1103.1576
+142667.2616181718 3.4249411 -1103.2366
+142668.2616182761 3.4249017 -1103.0984
+142669.2616183804 3.4249017 -1103.2959
+142670.2616184847 3.4246655 -1103.2562
+142671.2616185891 3.4247441 -1103.2366
+142672.2616186934 3.4247441 -1103.197
+142673.2616187977 3.4247048 -1103.197
+142674.261618902 3.4246655 -1103.1378
+142675.2616190063 3.4245868 -1103.1774
+142676.2616191106 3.4245868 -1103.197
+142677.2616192149 3.4245868 -1103.2562
+142678.2616193192 3.4245081 -1103.2168
+142679.2616194235 3.4245081 -1103.2168
+142680.2616195278 3.4245081 -1103.197
+142681.2616196321 3.4244685 -1103.2168
+142682.2616197364 3.4243898 -1103.2761
+142683.2616198407 3.4243505 -1103.2366
+142684.2616199451 3.4242325 -1103.197
+142685.2616200494 3.4242325 -1103.2562
+142686.2616201537 3.4243112 -1103.2562
+142687.261620258 3.4241931 -1103.1774
+142688.2616203623 3.4241142 -1103.2366
+142689.2616204666 3.4241536 -1103.2562
+142690.2616205709 3.4241142 -1103.2761
+142691.2616206752 3.4242325 -1103.2562
+142692.2616207795 3.4240749 -1103.2366
+142693.2616208838 3.4241142 -1103.2366
+142694.2616209881 3.4241142 -1103.1774
+142695.2616210924 3.4240749 -1103.1774
+142696.2616211968 3.4241142 -1103.2168
+142697.2616213011 3.4240749 -1103.197
+142698.2616214054 3.4241931 -1103.1576
+142699.2616215097 3.4241536 -1103.2366
+142700.261621614 3.4241536 -1103.2168
+142701.2616217183 3.4241931 -1103.1378
+142702.2616218226 3.4240355 -1103.2562
+142703.2616219269 3.4240355 -1103.2366
+142704.2616220312 3.4240749 -1103.2761
+142705.2616221355 3.4240749 -1103.197
+142706.2616222398 3.4239962 -1103.2366
+142707.2616223441 3.4240749 -1103.1774
+142708.2616224485 3.4239962 -1103.2562
+142709.2616225528 3.4239569 -1103.1774
+142710.2616226571 3.4239569 -1103.2562
+142711.2616227614 3.4239569 -1103.2366
+142712.2616228657 3.4239175 -1103.2959
+142713.26162297 3.4239569 -1103.1774
+142714.2616230743 3.4240355 -1103.1576
+142715.2616231786 3.4237993 -1103.197
+142716.2616232829 3.4237599 -1103.2366
+142717.2616233872 3.4237993 -1103.1576
+142718.2616234915 3.4237993 -1103.2168
+142719.2616235958 3.4237993 -1103.2959
+142720.2616237001 3.4239175 -1103.3156
+142721.2616238045 3.4238782 -1103.1774
+142722.2616239088 3.4236813 -1103.2761
+142723.2616240131 3.4237599 -1103.197
+142724.2616241174 3.4236813 -1103.2366
+142725.2616242217 3.4236419 -1103.2168
+142726.261624326 3.4237206 -1103.2562
+142727.2616244303 3.4236813 -1103.2168
+142728.2616245346 3.423563 -1103.197
+142729.2616246389 3.4236026 -1103.3156
+142730.2616247432 3.4236419 -1103.3353
+142731.2616248475 3.4235237 -1103.2959
+142732.2616249518 3.4236813 -1103.1774
+142733.2616250562 3.423563 -1103.1774
+142734.2616251605 3.423563 -1103.2562
+142735.2616252648 3.4235237 -1103.197
+142736.2616253691 3.423445 -1103.1774
+142737.2616254734 3.4234843 -1103.1576
+142738.2616255777 3.4235237 -1103.2168
+142739.261625682 3.4235237 -1103.2562
+142740.2616257863 3.4234056 -1103.2761
+142741.2616258906 3.423445 -1103.2168
+142742.2616259949 3.4233663 -1103.2959
+142743.2616260992 3.4232481 -1103.1182
+142744.2616262035 3.423327 -1103.1774
+142745.2616263079 3.423327 -1103.2761
+142746.2616264122 3.4232481 -1103.2168
+142747.2616265165 3.4232087 -1103.2761
+142748.2616266208 3.4231694 -1103.197
+142749.2616267251 3.42313 -1103.2959
+142750.2616268294 3.4231694 -1103.2562
+142751.2616269337 3.4231694 -1103.2168
+142752.261627038 3.4231694 -1103.197
+142753.2616271423 3.4230907 -1103.2168
+142754.2616272466 3.423012 -1103.2959
+142755.2616273509 3.42313 -1103.2366
+142756.2616274552 3.4230907 -1103.197
+142757.2616275596 3.4230907 -1103.0984
+142758.2616276639 3.42313 -1103.2562
+142759.2616277682 3.4230514 -1103.2366
+142760.2616278725 3.4230514 -1103.2959
+142761.2616279768 3.423012 -1103.2366
+142762.2616280811 3.423012 -1103.197
+142763.2616281854 3.423012 -1103.2168
+142764.2616282897 3.423012 -1103.2366
+142765.261628394 3.4229727 -1103.197
+142766.2616284983 3.4229331 -1103.2761
+142767.2616286026 3.4228938 -1103.197
+142768.2616287069 3.4228938 -1103.1774
+142769.2616288112 3.4230514 -1103.197
+142770.2616289156 3.4228938 -1103.2366
+142771.2616290199 3.4229331 -1103.2168
+142772.2616291242 3.4229331 -1103.2366
+142773.2616292285 3.4228151 -1103.1774
+142774.2616293328 3.4228938 -1103.2168
+142775.2616294371 3.4228544 -1103.197
+142776.2616295414 3.4228938 -1103.2959
+142777.2616296457 3.4228151 -1103.2168
+142778.26162975 3.4228151 -1103.197
+142779.2616298543 3.4228151 -1103.2168
+142780.2616299586 3.4226577 -1103.2761
+142781.2616300629 3.4227757 -1103.1576
+142782.2616301673 3.4228151 -1103.2168
+142783.2616302716 3.4226577 -1103.197
+142784.2616303759 3.4227364 -1103.2366
+142785.2616304802 3.4226971 -1103.2562
+142786.2616305845 3.4226577 -1103.2366
+142787.2616306888 3.4227364 -1103.2366
+142788.2616307931 3.4226577 -1103.197
+142789.2616308974 3.4226971 -1103.2168
+142790.2616310017 3.4226182 -1103.2366
+142791.261631106 3.4226182 -1103.197
+142792.2616312103 3.4225788 -1103.1774
+142793.2616313146 3.4225001 -1103.197
+142794.261631419 3.4225395 -1103.1774
+142795.2616315233 3.4223821 -1103.197
+142796.2616316276 3.4225001 -1103.2168
+142797.2616317319 3.4224215 -1103.1576
+142798.2616318362 3.4224608 -1103.3156
+142799.2616319405 3.4223428 -1103.1774
+142800.2616320448 3.4223821 -1103.2366
+142801.2616321491 3.4222639 -1103.2168
+142802.2616322534 3.4223428 -1103.2562
+142803.2616323577 3.4222245 -1103.3353
+142804.261632462 3.4221065 -1103.2562
+142805.2616325663 3.4221065 -1103.2366
+142806.2616326706 3.4220672 -1103.197
+142807.261632775 3.4219882 -1103.2959
+142808.2616328793 3.4218702 -1103.2562
+142809.2616329836 3.4218309 -1103.2366
+142810.2616330879 3.4217522 -1103.2168
+142811.2616331922 3.4217522 -1103.1774
+142812.2616332965 3.4217126 -1103.1576
+142813.2616334008 3.4217916 -1103.197
+142814.2616335051 3.421634 -1103.3156
+142815.2616336094 3.421634 -1103.2959
+142816.2616337137 3.4215946 -1103.2168
+142817.261633818 3.4216733 -1103.2959
+142818.2616339223 3.4215159 -1103.197
+142819.2616340267 3.4214766 -1103.2562
+142820.261634131 3.4215159 -1103.2959
+142821.2616342353 3.4214766 -1103.1774
+142822.2616343396 3.4213977 -1103.1774
+142823.2616344439 3.421319 -1103.2168
+142824.2616345482 3.421319 -1103.2761
+142825.2616346525 3.421319 -1103.2761
+142826.2616347568 3.421319 -1103.1774
+142827.2616348611 3.4212403 -1103.3156
+142828.2616349654 3.421201 -1103.2366
+142829.2616350697 3.421201 -1103.2959
+142830.261635174 3.4210827 -1103.197
+142831.2616352784 3.4211223 -1103.197
+142832.2616353827 3.4211617 -1103.1576
+142833.261635487 3.4211223 -1103.197
+142834.2616355913 3.4211617 -1103.2366
+142835.2616356956 3.4210827 -1103.2562
+142836.2616357999 3.4210434 -1103.2366
+142837.2616359042 3.4212403 -1103.1774
+142838.2616360085 3.4211617 -1103.1576
+142839.2616361128 3.4211617 -1103.2366
+142840.2616362171 3.4210041 -1103.1774
+142841.2616363214 3.4210434 -1103.2366
+142842.2616364257 3.4210041 -1103.2562
+142843.26163653 3.4209647 -1103.2168
+142844.2616366344 3.4209647 -1103.1774
+142845.2616367387 3.4209647 -1103.2366
+142846.261636843 3.420886 -1103.3353
+142847.2616369473 3.4208467 -1103.197
+142848.2616370516 3.4206891 -1103.197
+142849.2616371559 3.4207678 -1103.1378
+142850.2616372602 3.4207678 -1103.2562
+142851.2616373645 3.4206498 -1103.2761
+142852.2616374688 3.4206104 -1103.197
+142853.2616375731 3.4206104 -1103.197
+142854.2616376774 3.4205317 -1103.2366
+142855.2616377817 3.4206104 -1103.1774
+142856.2616378861 3.4205711 -1103.2562
+142857.2616379904 3.4204924 -1103.197
+142858.2616380947 3.4204924 -1103.2959
+142859.261638199 3.4204924 -1103.2959
+142860.2616383033 3.4204135 -1103.2366
+142861.2616384076 3.4204528 -1103.197
+142862.2616385119 3.4203348 -1103.197
+142863.2616386162 3.4202561 -1103.2562
+142864.2616387205 3.4202168 -1103.197
+142865.2616388248 3.4201772 -1103.2366
+142866.2616389291 3.4202168 -1103.1378
+142867.2616390334 3.4200199 -1103.2959
+142868.2616391378 3.4200199 -1103.3156
+142869.2616392421 3.4199412 -1103.1774
+142870.2616393464 3.4201379 -1103.0785
+142871.2616394507 3.4199805 -1103.197
+142872.261639555 3.4200592 -1103.197
+142873.2616396593 3.4199412 -1103.2562
+142874.2616397636 3.4200199 -1103.2366
+142875.2616398679 3.4200592 -1103.1774
+142876.2616399722 3.4200199 -1103.2761
+142877.2616400765 3.4198623 -1103.2562
+142878.2616401808 3.4199018 -1103.2168
+142879.2616402851 3.4198623 -1103.2366
+142880.2616403895 3.4198623 -1103.2366
+142881.2616404938 3.4198623 -1103.2761
+142882.2616405981 3.4197836 -1103.2761
+142883.2616407024 3.4199018 -1103.1774
+142884.2616408067 3.4197443 -1103.1378
+142885.261640911 3.4197049 -1103.2761
+142886.2616410153 3.4197836 -1103.197
+142887.2616411196 3.4197836 -1103.2366
+142888.2616412239 3.4197049 -1103.2168
+142889.2616413282 3.4196656 -1103.2562
+142890.2616414325 3.4195869 -1103.2168
+142891.2616415368 3.4195869 -1103.1576
+142892.2616416411 3.4195473 -1103.197
+142893.2616417455 3.4195473 -1103.2959
+142894.2616418498 3.419508 -1103.2562
+142895.2616419541 3.419508 -1103.2168
+142896.2616420584 3.419508 -1103.2761
+142897.2616421627 3.4194293 -1103.2168
+142898.261642267 3.4193506 -1103.2562
+142899.2616423713 3.4194686 -1103.2562
+142900.2616424756 3.4194293 -1103.2562
+142901.2616425799 3.41939 -1103.1774
+142902.2616426842 3.4193506 -1103.1774
+142903.2616427885 3.4192719 -1103.1576
+142904.2616428928 3.4192324 -1103.2168
+142905.2616429972 3.4192719 -1103.197
+142906.2616431015 3.4191537 -1103.1576
+142907.2616432058 3.4192719 -1103.2366
+142908.2616433101 3.4192324 -1103.2168
+142909.2616434144 3.4191537 -1103.2366
+142910.2616435187 3.4191537 -1103.2959
+142911.261643623 3.4191537 -1103.2168
+142912.2616437273 3.4192719 -1103.197
+142913.2616438316 3.419193 -1103.2366
+142914.2616439359 3.419193 -1103.1576
+142915.2616440402 3.419193 -1103.2761
+142916.2616441445 3.4189963 -1103.2168
+142917.2616442489 3.4191144 -1103.1576
+142918.2616443532 3.4191537 -1103.197
+142919.2616444575 3.418957 -1103.2168
+142920.2616445618 3.419193 -1103.2168
+142921.2616446661 3.4190357 -1103.2168
+142922.2616447704 3.418957 -1103.1378
+142923.2616448747 3.4190357 -1103.1378
+142924.261644979 3.4190357 -1103.2761
+142925.2616450833 3.4189963 -1103.2562
+142926.2616451876 3.418957 -1103.2366
+142927.2616452919 3.418957 -1103.1378
+142928.2616453962 3.418957 -1103.2168
+142929.2616455005 3.4189963 -1103.2168
+142930.2616456049 3.4189174 -1103.2366
+142931.2616457092 3.4189174 -1103.2366
+142932.2616458135 3.4188781 -1103.1378
+142933.2616459178 3.4187601 -1103.2562
+142934.2616460221 3.4187601 -1103.2366
+142935.2616461264 3.4187601 -1103.197
+142936.2616462307 3.4187207 -1103.2366
+142937.261646335 3.418642 -1103.2168
+142938.2616464393 3.418642 -1103.197
+142939.2616465436 3.4186025 -1103.2761
+142940.2616466479 3.4184844 -1103.2366
+142941.2616467522 3.4184844 -1103.197
+142942.2616468566 3.4184058 -1103.2168
+142943.2616469609 3.4184451 -1103.3156
+142944.2616470652 3.4184451 -1103.2168
+142945.2616471695 3.4183269 -1103.2562
+142946.2616472738 3.4182875 -1103.197
+142947.2616473781 3.4182088 -1103.197
+142948.2616474824 3.4182482 -1103.1774
+142949.2616475867 3.4181302 -1103.197
+142950.261647691 3.4181695 -1103.2168
+142951.2616477953 3.4181695 -1103.1774
+142952.2616478996 3.4183664 -1103.2761
+142953.2616480039 3.4183269 -1103.2562
+142954.2616481083 3.4183269 -1103.2168
+142955.2616482126 3.4182482 -1103.2366
+142956.2616483169 3.4183664 -1103.2366
+142957.2616484212 3.4184451 -1103.2366
+142958.2616485255 3.4184058 -1103.2168
+142959.2616486298 3.4184058 -1103.1774
+142960.2616487341 3.4184058 -1103.1774
+142961.2616488384 3.4184058 -1103.2366
+142962.2616489427 3.4184844 -1103.2168
+142963.261649047 3.4184451 -1103.2366
+142964.2616491513 3.4184451 -1103.2168
+142965.2616492556 3.4184058 -1103.2959
+142966.2616493599 3.4183664 -1103.2959
+142967.2616494643 3.4183664 -1103.2562
+142968.2616495686 3.4183269 -1103.2562
+142969.2616496729 3.4183269 -1103.1378
+142970.2616497772 3.4183269 -1103.2168
+142971.2616498815 3.4182088 -1103.197
+142972.2616499858 3.4182088 -1103.2168
+142973.2616500901 3.4182482 -1103.197
+142974.2616501944 3.4180908 -1103.1576
+142975.2616502987 3.4181302 -1103.2168
+142976.261650403 3.4180515 -1103.197
+142977.2616505073 3.4180119 -1103.197
+142978.2616506116 3.4179726 -1103.1774
+142979.261650716 3.4179726 -1103.2761
+142980.2616508203 3.4178545 -1103.1774
+142981.2616509246 3.4180119 -1103.2168
+142982.2616510289 3.4179726 -1103.1576
+142983.2616511332 3.4180908 -1103.2168
+142984.2616512375 3.4179332 -1103.2562
+142985.2616513418 3.4178939 -1103.197
+142986.2616514461 3.4178545 -1103.2366
+142987.2616515504 3.4178939 -1103.2562
+142988.2616516547 3.4178939 -1103.197
+142989.261651759 3.4177365 -1103.2168
+142990.2616518633 3.417697 -1103.2562
+142991.2616519677 3.4176576 -1103.2562
+142992.261652072 3.4175396 -1103.2562
+142993.2616521763 3.4174609 -1103.2366
+142994.2616522806 3.417382 -1103.2761
+142995.2616523849 3.4174216 -1103.2366
+142996.2616524892 3.4171853 -1103.2366
+142997.2616525935 3.4173427 -1103.1576
+142998.2616526978 3.417146 -1103.2366
+142999.2616528021 3.4170671 -1103.197
+143000.2616529064 3.4171853 -1103.1378
+143001.2616530107 3.417146 -1103.1576
+143002.261653115 3.4169884 -1103.2168
+143003.2616532194 3.4169884 -1103.2168
+143004.2616533237 3.416949 -1103.1774
+143005.261653428 3.4169097 -1103.2562
+143006.2616535323 3.4167521 -1103.2366
+143007.2616536366 3.4167128 -1103.2761
+143008.2616537409 3.4166341 -1103.2366
+143009.2616538452 3.4165554 -1103.1774
+143010.2616539495 3.4165554 -1103.2761
+143011.2616540538 3.4165554 -1103.2366
+143012.2616541581 3.4163978 -1103.2366
+143013.2616542624 3.4163978 -1103.197
+143014.2616543667 3.4163978 -1103.0984
+143015.261654471 3.4163585 -1103.2562
+143016.2616545754 3.4164371 -1103.1182
+143017.2616546797 3.4163978 -1103.2761
+143018.261654784 3.4163978 -1103.2959
+143019.2616548883 3.4163585 -1103.2562
+143020.2616549926 3.4164371 -1103.3156
+143021.2616550969 3.4163585 -1103.1774
+143022.2616552012 3.4162405 -1103.1774
+143023.2616553055 3.4162405 -1103.1774
+143024.2616554098 3.4162011 -1103.2959
+143025.2616555141 3.4161615 -1103.197
+143026.2616556184 3.4159648 -1103.2168
+143027.2616557227 3.4159255 -1103.3156
+143028.2616558271 3.4160042 -1103.197
+143029.2616559314 3.4157679 -1103.197
+143030.2616560357 3.4158466 -1103.1576
+143031.26165614 3.4156499 -1103.197
+143032.2616562443 3.4157286 -1103.2761
+143033.2616563486 3.4156499 -1103.1774
+143034.2616564529 3.4158072 -1103.1576
+143035.2616565572 3.4156499 -1103.197
+143036.2616566615 3.4156499 -1103.3353
+143037.2616567658 3.4156499 -1103.2366
+143038.2616568701 3.4155712 -1103.197
+143039.2616569744 3.4157286 -1103.2761
+143040.2616570788 3.4156106 -1103.2168
+143041.2616571831 3.4157679 -1103.2366
+143042.2616572874 3.4156499 -1103.2168
+143043.2616573917 3.4156892 -1103.197
+143044.261657496 3.4156499 -1103.197
+143045.2616576003 3.4157286 -1103.2562
+143046.2616577046 3.4156106 -1103.3353
+143047.2616578089 3.4156106 -1103.2168
+143048.2616579132 3.4156892 -1103.2366
+143049.2616580175 3.4155712 -1103.2562
+143050.2616581218 3.4155712 -1103.1774
+143051.2616582261 3.4156892 -1103.2366
+143052.2616583304 3.4156892 -1103.2959
+143053.2616584348 3.4155316 -1103.2959
+143054.2616585391 3.4155712 -1103.1774
+143055.2616586434 3.4155316 -1103.2959
+143056.2616587477 3.4155712 -1103.1576
+143057.261658852 3.4156499 -1103.197
+143058.2616589563 3.4155712 -1103.1576
+143059.2616590606 3.4155712 -1103.1576
+143060.2616591649 3.4155712 -1103.2366
+143061.2616592692 3.4156106 -1103.197
+143062.2616593735 3.4155316 -1103.1182
+143063.2616594778 3.4156892 -1103.2366
+143064.2616595821 3.4155316 -1103.3156
+143065.2616596865 3.4156892 -1103.2366
+143066.2616597908 3.4156106 -1103.197
+143067.2616598951 3.4156499 -1103.1576
+143068.2616599994 3.4156499 -1103.2168
+143069.2616601037 3.4156106 -1103.2168
+143070.261660208 3.4154923 -1103.197
+143071.2616603123 3.4153743 -1103.1182
+143072.2616604166 3.4153743 -1103.197
+143073.2616605209 3.4154136 -1103.2168
+143074.2616606252 3.4152956 -1103.1774
+143075.2616607295 3.4152956 -1103.1774
+143076.2616608338 3.4151773 -1103.2168
+143077.2616609382 3.41502 -1103.1378
+143078.2616610425 3.41502 -1103.197
+143079.2616611468 3.4151773 -1103.1576
+143080.2616612511 3.4149413 -1103.2761
+143081.2616613554 3.4148624 -1103.2761
+143082.2616614597 3.4148624 -1103.2168
+143083.261661564 3.4148624 -1103.3156
+143084.2616616683 3.4147837 -1103.1774
+143085.2616617726 3.4146657 -1103.3156
+143086.2616618769 3.4147444 -1103.1774
+143087.2616619812 3.4146261 -1103.1774
+143088.2616620855 3.4147444 -1103.197
+143089.2616621898 3.4147444 -1103.2168
+143090.2616622942 3.4145474 -1103.1378
+143091.2616623985 3.4146657 -1103.1774
+143092.2616625028 3.4145868 -1103.3353
+143093.2616626071 3.4145474 -1103.2366
+143094.2616627114 3.4145474 -1103.2562
+143095.2616628157 3.4144688 -1103.2366
+143096.26166292 3.4144688 -1103.2959
+143097.2616630243 3.4143901 -1103.2366
+143098.2616631286 3.4144688 -1103.2959
+143099.2616632329 3.4145081 -1103.2366
+143100.2616633372 3.4144688 -1103.197
+143101.2616634415 3.4143112 -1103.197
+143102.2616635459 3.4143507 -1103.197
+143103.2616636502 3.4144294 -1103.2366
+143104.2616637545 3.4143901 -1103.2168
+143105.2616638588 3.4142718 -1103.2168
+143106.2616639631 3.4143507 -1103.2168
+143107.2616640674 3.4143112 -1103.1774
+143108.2616641717 3.4142325 -1103.2562
+143109.261664276 3.4143112 -1103.2168
+143110.2616643803 3.4142325 -1103.2562
+143111.2616644846 3.4142718 -1103.2168
+143112.2616645889 3.4142718 -1103.3156
+143113.2616646932 3.4142718 -1103.2366
+143114.2616647976 3.4141932 -1103.2366
+143115.2616649019 3.4142325 -1103.1774
+143116.2616650062 3.4142325 -1103.1774
+143117.2616651105 3.4141538 -1103.1774
+143118.2616652148 3.4141538 -1103.2168
+143119.2616653191 3.4141538 -1103.1774
+143120.2616654234 3.4141145 -1103.2168
+143121.2616655277 3.4140358 -1103.3551
+143122.261665632 3.4140358 -1103.3156
+143123.2616657363 3.4140751 -1103.2562
+143124.2616658406 3.4140751 -1103.2761
+143125.2616659449 3.4140751 -1103.2562
+143126.2616660492 3.4139569 -1103.197
+143127.2616661536 3.4140358 -1103.2366
+143128.2616662579 3.4138389 -1103.1774
+143129.2616663622 3.4139175 -1103.2959
+143130.2616664665 3.4137602 -1103.2168
+143131.2616665708 3.4138782 -1103.1774
+143132.2616666751 3.4138389 -1103.2168
+143133.2616667794 3.4138782 -1103.2366
+143134.2616668837 3.4139175 -1103.2562
+143135.261666988 3.4138389 -1103.197
+143136.2616670923 3.4138389 -1103.197
+143137.2616671966 3.4139175 -1103.2168
+143138.2616673009 3.4138782 -1103.2168
+143139.2616674053 3.4137208 -1103.1774
+143140.2616675096 3.4137995 -1103.2562
+143141.2616676139 3.4137995 -1103.2761
+143142.2616677182 3.4137208 -1103.197
+143143.2616678225 3.4137602 -1103.2562
+143144.2616679268 3.4136419 -1103.2366
+143145.2616680311 3.4134846 -1103.2366
+143146.2616681354 3.4136419 -1103.2562
+143147.2616682397 3.4134452 -1103.2168
+143148.261668344 3.4133663 -1103.1378
+143149.2616684483 3.4134059 -1103.1182
+143150.2616685526 3.4134059 -1103.2366
+143151.261668657 3.4133663 -1103.2562
+143152.2616687613 3.413327 -1103.1774
+143153.2616688656 3.4133663 -1103.1774
+143154.2616689699 3.4134059 -1103.2366
+143155.2616690742 3.413327 -1103.2562
+143156.2616691785 3.4133663 -1103.1774
+143157.2616692828 3.4133663 -1103.197
+143158.2616693871 3.4132483 -1103.3353
+143159.2616694914 3.413327 -1103.1378
+143160.2616695957 3.4132876 -1103.197
+143161.2616697 3.4132483 -1103.1774
+143162.2616698043 3.4132483 -1103.2562
+143163.2616699087 3.4132483 -1103.3353
+143164.261670013 3.4132483 -1103.2562
+143165.2616701173 3.413209 -1103.2168
+143166.2616702216 3.4132483 -1103.2168
+143167.2616703259 3.4132483 -1103.2562
+143168.2616704302 3.4132876 -1103.2366
+143169.2616705345 3.4132876 -1103.2562
+143170.2616706388 3.4132876 -1103.197
+143171.2616707431 3.4131303 -1103.2168
+143172.2616708474 3.4132483 -1103.1774
+143173.2616709517 3.4131696 -1103.2168
+143174.261671056 3.4132483 -1103.2168
+143175.2616711603 3.413209 -1103.2168
+143176.2616712647 3.4131303 -1103.197
+143177.261671369 3.4130909 -1103.1378
+143178.2616714733 3.4131303 -1103.2959
+143179.2616715776 3.4129727 -1103.197
+143180.2616716819 3.413012 -1103.197
+143181.2616717862 3.4129727 -1103.2959
+143182.2616718905 3.413012 -1103.1576
+143183.2616719948 3.4130909 -1103.2366
+143184.2616720991 3.4129727 -1103.2959
+143185.2616722034 3.4130909 -1103.197
+143186.2616723077 3.4130514 -1103.197
+143187.261672412 3.412894 -1103.197
+143188.2616725164 3.4130909 -1103.2366
+143189.2616726207 3.4130909 -1103.197
+143190.261672725 3.4130909 -1103.1774
+143191.2616728293 3.4131696 -1103.1576
+143192.2616729336 3.4131696 -1103.2366
+143193.2616730379 3.4131696 -1103.2562
+143194.2616731422 3.4132483 -1103.2168
+143195.2616732465 3.4130909 -1103.2168
+143196.2616733508 3.4131696 -1103.2562
+143197.2616734551 3.4131303 -1103.2168
+143198.2616735594 3.4130514 -1103.197
+143199.2616736637 3.4131303 -1103.2168
+143200.2616737681 3.4131303 -1103.1774
+143201.2616738724 3.4131696 -1103.2168
+143202.2616739767 3.4130909 -1103.2366
+143203.261674081 3.4130514 -1103.3156
+143204.2616741853 3.4130514 -1103.197
+143205.2616742896 3.4130909 -1103.1774
+143206.2616743939 3.4129727 -1103.1378
+143207.2616744982 3.4130514 -1103.3156
+143208.2616746025 3.4130514 -1103.2562
+143209.2616747068 3.4130909 -1103.2168
+143210.2616748111 3.4129727 -1103.1774
+143211.2616749154 3.412894 -1103.3353
+143212.2616750197 3.413012 -1103.2761
+143213.2616751241 3.4129333 -1103.2168
+143214.2616752284 3.4129333 -1103.197
+143215.2616753327 3.4127758 -1103.2562
+143216.261675437 3.4127758 -1103.2168
+143217.2616755413 3.4127364 -1103.2366
+143218.2616756456 3.4127758 -1103.2168
+143219.2616757499 3.4127364 -1103.2168
+143220.2616758542 3.4126184 -1103.197
+143221.2616759585 3.4127364 -1103.2562
+143222.2616760628 3.4126971 -1103.0984
+143223.2616761671 3.4125397 -1103.2761
+143224.2616762714 3.4126184 -1103.1774
+143225.2616763758 3.4124215 -1103.3353
+143226.2616764801 3.4124608 -1103.2761
+143227.2616765844 3.4124608 -1103.2761
+143228.2616766887 3.4123428 -1103.2562
+143229.261676793 3.4122641 -1103.2168
+143230.2616768973 3.4123034 -1103.1774
+143231.2616770016 3.4122641 -1103.2562
+143232.2616771059 3.4123428 -1103.1576
+143233.2616772102 3.4123034 -1103.2366
+143234.2616773145 3.4122248 -1103.2366
+143235.2616774188 3.4123034 -1103.197
+143236.2616775231 3.4122641 -1103.2562
+143237.2616776275 3.4122641 -1103.2366
+143238.2616777318 3.4121854 -1103.2562
+143239.2616778361 3.4122248 -1103.2562
+143240.2616779404 3.4123034 -1103.2168
+143241.2616780447 3.4122248 -1103.2168
+143242.261678149 3.4123034 -1103.2959
+143243.2616782533 3.4122641 -1103.2168
+143244.2616783576 3.4121854 -1103.2168
+143245.2616784619 3.4121065 -1103.1182
+143246.2616785662 3.4121459 -1103.1774
+143247.2616786705 3.4121854 -1103.2168
+143248.2616787748 3.4121854 -1103.2761
+143249.2616788791 3.4122641 -1103.197
+143250.2616789835 3.4121459 -1103.2562
+143251.2616790878 3.4120278 -1103.2562
+143252.2616791921 3.4121459 -1103.1576
+143253.2616792964 3.4121459 -1103.3749
+143254.2616794007 3.4120672 -1103.2366
+143255.261679505 3.4120278 -1103.2562
+143256.2616796093 3.4119885 -1103.1576
+143257.2616797136 3.4120672 -1103.2562
+143258.2616798179 3.4119098 -1103.2168
+143259.2616799222 3.4121065 -1103.2562
+143260.2616800265 3.4120672 -1103.2562
+143261.2616801308 3.4120278 -1103.1774
+143262.2616802352 3.4120278 -1103.2366
+143263.2616803395 3.4119885 -1103.2562
+143264.2616804438 3.4119492 -1103.2168
+143265.2616805481 3.4118705 -1103.197
+143266.2616806524 3.4119885 -1103.1182
+143267.2616807567 3.4119885 -1103.2562
+143268.261680861 3.4119492 -1103.2366
+143269.2616809653 3.4119098 -1103.2168
+143270.2616810696 3.4119098 -1103.3156
+143271.2616811739 3.4120278 -1103.1774
+143272.2616812782 3.4119885 -1103.1378
+143273.2616813825 3.4119492 -1103.1576
+143274.2616814869 3.4119098 -1103.2366
+143275.2616815912 3.4118309 -1103.1774
+143276.2616816955 3.4118705 -1103.2168
+143277.2616817998 3.4118705 -1103.2562
+143278.2616819041 3.4118705 -1103.2761
+143279.2616820084 3.4119098 -1103.197
+143280.2616821127 3.4117916 -1103.3156
+143281.261682217 3.4118309 -1103.1378
+143282.2616823213 3.4119098 -1103.2168
+143283.2616824256 3.4120278 -1103.2761
+143284.2616825299 3.4118309 -1103.2168
+143285.2616826342 3.4118309 -1103.2168
+143286.2616827386 3.4118705 -1103.1774
+143287.2616828429 3.4117916 -1103.2761
+143288.2616829472 3.4117522 -1103.2562
+143289.2616830515 3.4118309 -1103.2959
+143290.2616831558 3.4117916 -1103.1378
+143291.2616832601 3.4116735 -1103.2168
+143292.2616833644 3.4116735 -1103.2168
+143293.2616834687 3.4117129 -1103.2562
+143294.261683573 3.4116342 -1103.2562
+143295.2616836773 3.411516 -1103.1774
+143296.2616837816 3.411516 -1103.197
+143297.2616838859 3.411516 -1103.197
+143298.2616839902 3.4114373 -1103.2168
+143299.2616840946 3.4113586 -1103.2959
+143300.2616841989 3.4114766 -1103.3353
+143301.2616843032 3.4113193 -1103.2168
+143302.2616844075 3.4113586 -1103.197
+143303.2616845118 3.4113193 -1103.1774
+143304.2616846161 3.4112799 -1103.2366
+143305.2616847204 3.411201 -1103.197
+143306.2616848247 3.4111617 -1103.1774
+143307.261684929 3.411083 -1103.1576
+143308.2616850333 3.4111223 -1103.2562
+143309.2616851376 3.4111223 -1103.2959
+143310.2616852419 3.4111223 -1103.1774
+143311.2616853463 3.410965 -1103.2168
+143312.2616854506 3.4110043 -1103.2168
+143313.2616855549 3.4110043 -1103.2168
+143314.2616856592 3.410886 -1103.2562
+143315.2616857635 3.4108467 -1103.2366
+143316.2616858678 3.4108467 -1103.2168
+143317.2616859721 3.4108074 -1103.2562
+143318.2616860764 3.4107287 -1103.2761
+143319.2616861807 3.41065 -1103.2761
+143320.261686285 3.4106104 -1103.1576
+143321.2616863893 3.4106894 -1103.1774
+143322.2616864936 3.4106894 -1103.2168
+143323.261686598 3.4105711 -1103.2562
+143324.2616867023 3.41065 -1103.2761
+143325.2616868066 3.4105711 -1103.1576
+143326.2616869109 3.4105318 -1103.2168
+143327.2616870152 3.4105318 -1103.2959
+143328.2616871195 3.4105318 -1103.197
+143329.2616872238 3.4105318 -1103.2562
+143330.2616873281 3.4104924 -1103.2366
+143331.2616874324 3.4105711 -1103.2761
+143332.2616875367 3.4105318 -1103.2562
+143333.261687641 3.4105711 -1103.2562
+143334.2616877453 3.4105711 -1103.2168
+143335.2616878496 3.4103744 -1103.2366
+143336.261687954 3.4104531 -1103.2562
+143337.2616880583 3.4104531 -1103.2761
+143338.2616881626 3.4104137 -1103.2959
+143339.2616882669 3.4103744 -1103.2761
+143340.2616883712 3.4102168 -1103.2168
+143341.2616884755 3.4102168 -1103.2168
+143342.2616885798 3.4102955 -1103.2366
+143343.2616886841 3.4101775 -1103.2562
+143344.2616887884 3.4102561 -1103.1774
+143345.2616888927 3.4101381 -1103.197
+143346.261688997 3.4100595 -1103.197
+143347.2616891013 3.4101381 -1103.2761
+143348.2616892057 3.4100201 -1103.197
+143349.26168931 3.4102168 -1103.2366
+143350.2616894143 3.4100988 -1103.1774
+143351.2616895186 3.4101381 -1103.197
+143352.2616896229 3.4101381 -1103.197
+143353.2616897272 3.4101775 -1103.2562
+143354.2616898315 3.4100988 -1103.1378
+143355.2616899358 3.4100988 -1103.2562
+143356.2616900401 3.4100201 -1103.2562
+143357.2616901444 3.4100595 -1103.2366
+143358.2616902487 3.4101381 -1103.1774
+143359.261690353 3.4100201 -1103.2168
+143360.2616904574 3.4100595 -1103.197
+143361.2616905617 3.4099019 -1103.197
+143362.261690666 3.4099412 -1103.197
+143363.2616907703 3.4099805 -1103.2168
+143364.2616908746 3.4099805 -1103.2366
+143365.2616909789 3.4099019 -1103.2366
+143366.2616910832 3.4098625 -1103.2366
+143367.2616911875 3.4099019 -1103.2168
+143368.2616912918 3.4099412 -1103.2366
+143369.2616913961 3.4097052 -1103.2761
+143370.2616915004 3.4097445 -1103.2761
+143371.2616916047 3.4097445 -1103.2366
+143372.261691709 3.4097445 -1103.1576
+143373.2616918134 3.4097052 -1103.1774
+143374.2616919177 3.4096262 -1103.2761
+143375.261692022 3.4096656 -1103.2562
+143376.2616921263 3.4096262 -1103.1182
+143377.2616922306 3.4095476 -1103.2168
+143378.2616923349 3.4095082 -1103.2959
+143379.2616924392 3.4095082 -1103.1576
+143380.2616925435 3.4094296 -1103.1576
+143381.2616926478 3.4094689 -1103.197
+143382.2616927521 3.40939 -1103.1774
+143383.2616928564 3.4093113 -1103.2562
+143384.2616929607 3.4093113 -1103.2366
+143385.2616930651 3.409272 -1103.197
+143386.2616931694 3.4092326 -1103.2168
+143387.2616932737 3.4093506 -1103.2366
+143388.261693378 3.4092326 -1103.197
+143389.2616934823 3.40939 -1103.197
+143390.2616935866 3.40939 -1103.2366
+143391.2616936909 3.4093113 -1103.2168
+143392.2616937952 3.4094296 -1103.2562
+143393.2616938995 3.4093506 -1103.2168
+143394.2616940038 3.4093506 -1103.1576
+143395.2616941081 3.40939 -1103.1774
+143396.2616942124 3.4094296 -1103.2959
+143397.2616943168 3.4094296 -1103.197
+143398.2616944211 3.4095082 -1103.2959
+143399.2616945254 3.4094689 -1103.197
+143400.2616946297 3.4094689 -1103.2366
+143401.261694734 3.4093113 -1103.1576
+143402.2616948383 3.4094296 -1103.1774
+143403.2616949426 3.4093506 -1103.1576
+143404.2616950469 3.4092326 -1103.2761
+143405.2616951512 3.4093113 -1103.2168
+143406.2616952555 3.4093113 -1103.1774
+143407.2616953598 3.4092326 -1103.1182
+143408.2616954641 3.4091933 -1103.2562
+143409.2616955685 3.4092326 -1103.2168
+143410.2616956728 3.4091146 -1103.1576
+143411.2616957771 3.4090357 -1103.1774
+143412.2616958814 3.4091539 -1103.197
+143413.2616959857 3.4089963 -1103.2366
+143414.26169609 3.4088783 -1103.2562
+143415.2616961943 3.4087996 -1103.1774
+143416.2616962986 3.4086027 -1103.1774
+143417.2616964029 3.4086814 -1103.1774
+143418.2616965072 3.4086027 -1103.2959
+143419.2616966115 3.4086814 -1103.1774
+143420.2616967158 3.4084847 -1103.2761
+143421.2616968201 3.4084451 -1103.2168
+143422.2616969245 3.4084451 -1103.2366
+143423.2616970288 3.4084058 -1103.2366
+143424.2616971331 3.4083664 -1103.2168
+143425.2616972374 3.4082878 -1103.197
+143426.2616973417 3.4082091 -1103.2959
+143427.261697446 3.4082878 -1103.197
+143428.2616975503 3.4082091 -1103.2168
+143429.2616976546 3.4080908 -1103.1182
+143430.2616977589 3.4082091 -1103.2562
+143431.2616978632 3.4080122 -1103.2761
+143432.2616979675 3.4080122 -1103.1774
+143433.2616980718 3.4080515 -1103.2366
+143434.2616981762 3.4081302 -1103.197
+143435.2616982805 3.4080122 -1103.1774
+143436.2616983848 3.4079728 -1103.1774
+143437.2616984891 3.4079335 -1103.2366
+143438.2616985934 3.4078941 -1103.2959
+143439.2616986977 3.4078941 -1103.2168
+143440.261698802 3.4078548 -1103.197
+143441.2616989063 3.4077759 -1103.2366
+143442.2616990106 3.4077365 -1103.2366
+143443.2616991149 3.4076579 -1103.2366
+143444.2616992192 3.4076579 -1103.2562
+143445.2616993235 3.4077365 -1103.197
+143446.2616994279 3.4077759 -1103.1774
+143447.2616995322 3.4077365 -1103.1576
+143448.2616996365 3.4077759 -1103.2366
+143449.2616997408 3.4076579 -1103.2366
+143450.2616998451 3.4076972 -1103.2366
+143451.2616999494 3.4076185 -1103.197
+143452.2617000537 3.4075792 -1103.1576
+143453.261700158 3.4076972 -1103.2761
+143454.2617002623 3.4076579 -1103.2562
+143455.2617003666 3.4076579 -1103.2761
+143456.2617004709 3.4075396 -1103.3156
+143457.2617005752 3.4075792 -1103.0984
+143458.2617006795 3.4074609 -1103.197
+143459.2617007839 3.4075396 -1103.2366
+143460.2617008882 3.4074609 -1103.2168
+143461.2617009925 3.4075792 -1103.1774
+143462.2617010968 3.4074609 -1103.2959
+143463.2617012011 3.4074609 -1103.2761
+143464.2617013054 3.4074216 -1103.2562
+143465.2617014097 3.4073036 -1103.197
+143466.261701514 3.4073822 -1103.2562
+143467.2617016183 3.4074216 -1103.2366
+143468.2617017226 3.4073822 -1103.2168
+143469.2617018269 3.4073429 -1103.2168
+143470.2617019312 3.4073429 -1103.1378
+143471.2617020356 3.4072642 -1103.2168
+143472.2617021399 3.4073036 -1103.2562
+143473.2617022442 3.4072642 -1103.2366
+143474.2617023485 3.407146 -1103.2366
+143475.2617024528 3.4072247 -1103.2366
+143476.2617025571 3.4070673 -1103.1182
+143477.2617026614 3.407028 -1103.1774
+143478.2617027657 3.407028 -1103.1774
+143479.26170287 3.4069493 -1103.1774
+143480.2617029743 3.4068704 -1103.2562
+143481.2617030786 3.4069097 -1103.2761
+143482.2617031829 3.4069097 -1103.2562
+143483.2617032873 3.4067523 -1103.1774
+143484.2617033916 3.406713 -1103.197
+143485.2617034959 3.406831 -1103.1576
+143486.2617036002 3.406831 -1103.197
+143487.2617037045 3.406713 -1103.2366
+143488.2617038088 3.406713 -1103.3156
+143489.2617039131 3.4067523 -1103.1774
+143490.2617040174 3.4066737 -1103.1774
+143491.2617041217 3.4067917 -1103.1774
+143492.261704226 3.4067523 -1103.2761
+143493.2617043303 3.406713 -1103.2562
+143494.2617044346 3.4066343 -1103.2168
+143495.2617045389 3.4066737 -1103.2562
+143496.2617046433 3.406713 -1103.2168
+143497.2617047476 3.4066343 -1103.3156
+143498.2617048519 3.4066343 -1103.2366
+143499.2617049562 3.4065948 -1103.2761
+143500.2617050605 3.4065554 -1103.1378
+143501.2617051648 3.4064374 -1103.2366
+143502.2617052691 3.4064767 -1103.2959
+143503.2617053734 3.4063194 -1103.2562
+143504.2617054777 3.4063587 -1103.1774
+143505.261705582 3.4063587 -1103.2168
+143506.2617056863 3.4062798 -1103.197
+143507.2617057906 3.4063194 -1103.2562
+143508.261705895 3.4061618 -1103.1774
+143509.2617059993 3.4062011 -1103.2366
+143510.2617061036 3.4061618 -1103.2959
+143511.2617062079 3.4061224 -1103.1774
+143512.2617063122 3.4062405 -1103.2168
+143513.2617064165 3.4060438 -1103.1774
+143514.2617065208 3.4060044 -1103.197
+143515.2617066251 3.4060438 -1103.2366
+143516.2617067294 3.4060438 -1103.2168
+143517.2617068337 3.4059649 -1103.197
+143518.261706938 3.4060438 -1103.2562
+143519.2617070423 3.4060831 -1103.197
+143520.2617071467 3.4060044 -1103.1182
+143521.261707251 3.4060831 -1103.1576
+143522.2617073553 3.4060438 -1103.3156
+143523.2617074596 3.4060438 -1103.2366
+143524.2617075639 3.4061224 -1103.0984
+143525.2617076682 3.4060438 -1103.197
+143526.2617077725 3.4059255 -1103.2168
+143527.2617078768 3.4060831 -1103.2366
+143528.2617079811 3.4060438 -1103.2366
+143529.2617080854 3.4061224 -1103.2562
+143530.2617081897 3.4060438 -1103.197
+143531.261708294 3.4060831 -1103.1774
+143532.2617083984 3.4059649 -1103.0984
+143533.2617085027 3.4059255 -1103.2959
+143534.261708607 3.4059649 -1103.2562
+143535.2617087113 3.4058862 -1103.2562
+143536.2617088156 3.4060044 -1103.197
+143537.2617089199 3.4060044 -1103.1378
+143538.2617090242 3.4059255 -1103.197
+143539.2617091285 3.4059255 -1103.2366
+143540.2617092328 3.4058862 -1103.1774
+143541.2617093371 3.4058468 -1103.2562
+143542.2617094414 3.4058075 -1103.2562
+143543.2617095457 3.4058862 -1103.2168
+143544.26170965 3.4057288 -1103.2562
+143545.2617097544 3.4059255 -1103.3156
+143546.2617098587 3.4058075 -1103.2168
+143547.261709963 3.4057288 -1103.2168
+143548.2617100673 3.4056106 -1103.1576
+143549.2617101716 3.4057682 -1103.2562
+143550.2617102759 3.4057288 -1103.2168
+143551.2617103802 3.4058862 -1103.1576
+143552.2617104845 3.4058075 -1103.1378
+143553.2617105888 3.4057288 -1103.1774
+143554.2617106931 3.4057682 -1103.197
+143555.2617107974 3.4056499 -1103.2366
+143556.2617109017 3.4057288 -1103.1576
+143557.2617110061 3.4057682 -1103.2168
+143558.2617111104 3.4057288 -1103.2562
+143559.2617112147 3.4057288 -1103.197
+143560.261711319 3.4056106 -1103.197
+143561.2617114233 3.4055712 -1103.1576
+143562.2617115276 3.4056499 -1103.197
+143563.2617116319 3.4055319 -1103.1774
+143564.2617117362 3.4056106 -1103.2366
+143565.2617118405 3.4055319 -1103.197
+143566.2617119448 3.4053743 -1103.2761
+143567.2617120491 3.4054139 -1103.197
+143568.2617121534 3.4054139 -1103.2366
+143569.2617122578 3.4051776 -1103.2562
+143570.2617123621 3.4054139 -1103.2168
+143571.2617124664 3.4054139 -1103.2168
+143572.2617125707 3.4053349 -1103.1576
+143573.261712675 3.4053349 -1103.0984
+143574.2617127793 3.4053743 -1103.2366
+143575.2617128836 3.4052956 -1103.2168
+143576.2617129879 3.4054532 -1103.2168
+143577.2617130922 3.4052956 -1103.2761
+143578.2617131965 3.4053349 -1103.1774
+143579.2617133008 3.4052169 -1103.1774
+143580.2617134051 3.4052956 -1103.2562
+143581.2617135094 3.4052563 -1103.3156
+143582.2617136138 3.4051383 -1103.2366
+143583.2617137181 3.4052169 -1103.2366
+143584.2617138224 3.4052956 -1103.1774
+143585.2617139267 3.4050989 -1103.2761
+143586.261714031 3.4051383 -1103.2168
+143587.2617141353 3.4051776 -1103.1378
+143588.2617142396 3.4050593 -1103.197
+143589.2617143439 3.4050593 -1103.2168
+143590.2617144482 3.40502 -1103.1774
+143591.2617145525 3.4049413 -1103.1576
+143592.2617146568 3.404902 -1103.2366
+143593.2617147611 3.40502 -1103.197
+143594.2617148655 3.4049807 -1103.1378
+143595.2617149698 3.404902 -1103.1774
+143596.2617150741 3.4049807 -1103.197
+143597.2617151784 3.404902 -1103.1378
+143598.2617152827 3.404902 -1103.2761
+143599.261715387 3.4048626 -1103.2366
+143600.2617154913 3.404902 -1103.3156
+143601.2617155956 3.404784 -1103.197
+143602.2617156999 3.404784 -1103.197
+143603.2617158042 3.4047444 -1103.1378
+143604.2617159085 3.404705 -1103.2366
+143605.2617160128 3.4046657 -1103.197
+143606.2617161172 3.4045477 -1103.1774
+143607.2617162215 3.4045084 -1103.2562
+143608.2617163258 3.4044294 -1103.1774
+143609.2617164301 3.4043901 -1103.197
+143610.2617165344 3.404469 -1103.2366
+143611.2617166387 3.4044294 -1103.1182
+143612.261716743 3.4043114 -1103.197
+143613.2617168473 3.4043114 -1103.197
+143614.2617169516 3.4043508 -1103.2366
+143615.2617170559 3.4042327 -1103.2168
+143616.2617171602 3.4043114 -1103.197
+143617.2617172645 3.4043508 -1103.1182
+143618.2617173688 3.4042327 -1103.1576
+143619.2617174732 3.4042721 -1103.1774
+143620.2617175775 3.4042327 -1103.197
+143621.2617176818 3.4040751 -1103.2761
+143622.2617177861 3.4042327 -1103.197
+143623.2617178904 3.4041934 -1103.2761
+143624.2617179947 3.4041934 -1103.1576
+143625.261718099 3.4041541 -1103.2366
+143626.2617182033 3.4041541 -1103.1774
+143627.2617183076 3.4039571 -1103.1774
+143628.2617184119 3.4040358 -1103.2562
+143629.2617185162 3.4039965 -1103.3353
+143630.2617186205 3.4040358 -1103.2366
+143631.2617187249 3.4039571 -1103.1774
+143632.2617188289 3.4038389 -1103.2168
+143633.2617189332 3.4038389 -1103.197
+143634.2617190375 3.4039178 -1103.1774
+143635.2617191419 3.4039178 -1103.1378
+143636.2617192462 3.4039178 -1103.2366
+143637.2617193505 3.4037602 -1103.2761
+143638.2617194548 3.4037995 -1103.1774
+143639.2617195591 3.4037602 -1103.197
+143640.2617196634 3.4036815 -1103.2366
+143641.2617197677 3.4038389 -1103.2366
+143642.261719872 3.4036422 -1103.1774
+143643.2617199763 3.4037209 -1103.3156
+143644.2617200806 3.4035635 -1103.1378
+143645.2617201849 3.4036028 -1103.2366
+143646.2617202892 3.4034846 -1103.1774
+143647.2617203936 3.4035635 -1103.1774
+143648.2617204979 3.4034846 -1103.2168
+143649.2617206022 3.4036028 -1103.1576
+143650.2617207065 3.4034846 -1103.2366
+143651.2617208108 3.4034846 -1103.2366
+143652.2617209151 3.4034059 -1103.1576
+143653.2617210194 3.4036028 -1103.1774
+143654.2617211237 3.4035239 -1103.2366
+143655.261721228 3.4034846 -1103.1378
+143656.2617213323 3.4035239 -1103.1576
+143657.2617214366 3.4035635 -1103.2168
+143658.2617215409 3.4034846 -1103.2366
+143659.2617216452 3.4036028 -1103.2168
+143660.2617217496 3.4034452 -1103.197
+143661.2617218539 3.4034452 -1103.2168
+143662.2617219582 3.4034059 -1103.2761
+143663.2617220625 3.4033272 -1103.2168
+143664.2617221668 3.4033666 -1103.197
+143665.2617222711 3.4033666 -1103.2366
+143666.2617223754 3.4031696 -1103.2959
+143667.2617224797 3.4031696 -1103.197
+143668.261722584 3.4032485 -1103.2761
+143669.2617226883 3.4031303 -1103.2366
+143670.2617227926 3.403209 -1103.2562
+143671.2617228969 3.4033272 -1103.1378
+143672.2617230013 3.4033272 -1103.2366
+143673.2617231056 3.4031696 -1103.2761
+143674.2617232099 3.4030123 -1103.2562
+143675.2617233142 3.4031303 -1103.2959
+143676.2617234185 3.4030516 -1103.2562
+143677.2617235228 3.4030123 -1103.2562
+143678.2617236271 3.4029336 -1103.2959
+143679.2617237314 3.4028547 -1103.2761
+143680.2617238357 3.4029336 -1103.197
+143681.26172394 3.4030123 -1103.2959
+143682.2617240443 3.4028547 -1103.2168
+143683.2617241486 3.4029729 -1103.2168
+143684.261724253 3.402776 -1103.197
+143685.2617243573 3.4027367 -1103.1774
+143686.2617244616 3.4029336 -1103.2168
+143687.2617245659 3.402894 -1103.197
+143688.2617246702 3.4029729 -1103.3156
+143689.2617247745 3.4029336 -1103.1774
+143690.2617248788 3.402894 -1103.2562
+143691.2617249831 3.4030516 -1103.2366
+143692.2617250874 3.4029729 -1103.197
+143693.2617251917 3.402894 -1103.2366
+143694.261725296 3.4030123 -1103.1576
+143695.2617254003 3.4029729 -1103.1182
+143696.2617255047 3.4029336 -1103.3156
+143697.261725609 3.402894 -1103.2168
+143698.2617257133 3.4028547 -1103.2562
+143699.2617258176 3.4029729 -1103.2562
+143700.2617259219 3.4028153 -1103.0984
+143701.2617260262 3.402776 -1103.2959
+143702.2617261305 3.402776 -1103.2168
+143703.2617262348 3.4027367 -1103.3551
+143704.2617263391 3.4027367 -1103.2168
+143705.2617264434 3.4027367 -1103.2562
+143706.2617265477 3.402658 -1103.2562
+143707.261726652 3.4025004 -1103.1774
+143708.2617267563 3.4027367 -1103.197
+143709.2617268607 3.402776 -1103.2562
+143710.261726965 3.4026186 -1103.1576
+143711.2617270693 3.4025397 -1103.2168
+143712.2617271736 3.4025397 -1103.2562
+143713.2617272779 3.4025791 -1103.2168
+143714.2617273822 3.4026186 -1103.2168
+143715.2617274865 3.4025004 -1103.1774
+143716.2617275908 3.4025004 -1103.2562
+143717.2617276951 3.4024611 -1103.2562
+143718.2617277994 3.4025004 -1103.2366
+143719.2617279037 3.4024611 -1103.2562
+143720.261728008 3.4024611 -1103.197
+143721.2617281124 3.4024217 -1103.2168
+143722.2617282167 3.4023824 -1103.2761
+143723.261728321 3.402343 -1103.1182
+143724.2617284253 3.4022641 -1103.197
+143725.2617285296 3.4022641 -1103.1576
+143726.2617286339 3.4022248 -1103.1576
+143727.2617287382 3.4023035 -1103.2366
+143728.2617288425 3.4022641 -1103.2562
+143729.2617289468 3.402343 -1103.2761
+143730.2617290511 3.4021854 -1103.1774
+143731.2617291554 3.4021854 -1103.1378
+143732.2617292597 3.4022248 -1103.2761
+143733.2617293641 3.4022641 -1103.2761
+143734.2617294684 3.4022248 -1103.2959
+143735.2617295727 3.4022248 -1103.2959
+143736.261729677 3.4021854 -1103.2168
+143737.2617297813 3.4020674 -1103.197
+143738.2617298856 3.4020674 -1103.2366
+143739.2617299899 3.4020281 -1103.3156
+143740.2617300942 3.4021068 -1103.2562
+143741.2617301985 3.4020281 -1103.2562
+143742.2617303028 3.4019098 -1103.2562
+143743.2617304071 3.4019098 -1103.197
+143744.2617305114 3.4018312 -1103.2761
+143745.2617306157 3.4019492 -1103.197
+143746.2617307201 3.4018705 -1103.2366
+143747.2617308244 3.4017131 -1103.197
+143748.2617309287 3.4017525 -1103.2366
+143749.261731033 3.4018312 -1103.2366
+143750.2617311373 3.4017918 -1103.2366
+143751.2617312416 3.4017131 -1103.2959
+143752.2617313459 3.4017131 -1103.2366
+143753.2617314502 3.4017131 -1103.1774
+143754.2617315545 3.4016736 -1103.2168
+143755.2617316588 3.4017918 -1103.2168
+143756.2617317631 3.4017525 -1103.3353
+143757.2617318674 3.4018312 -1103.2168
+143758.2617319718 3.4017131 -1103.2366
+143759.2617320761 3.4017525 -1103.2168
+143760.2617321804 3.4017918 -1103.1576
+143761.2617322847 3.4017918 -1103.197
+143762.261732389 3.4018312 -1103.2168
+143763.2617324933 3.4017525 -1103.2168
+143764.2617325976 3.4018312 -1103.2562
+143765.2617327019 3.4017525 -1103.2366
+143766.2617328062 3.4016736 -1103.2168
+143767.2617329105 3.4016736 -1103.197
+143768.2617330148 3.4017918 -1103.2562
+143769.2617331191 3.4015555 -1103.197
+143770.2617332235 3.4016342 -1103.197
+143771.2617333278 3.4015162 -1103.2562
+143772.2617334321 3.4015555 -1103.2168
+143773.2617335364 3.4015162 -1103.2761
+143774.2617336407 3.4015162 -1103.2366
+143775.261733745 3.4013586 -1103.2168
+143776.2617338493 3.4014769 -1103.2366
+143777.2617339536 3.4013586 -1103.1576
+143778.2617340579 3.4013586 -1103.2366
+143779.2617341622 3.4013982 -1103.1576
+143780.2617342665 3.4013193 -1103.2366
+143781.2617343708 3.4012799 -1103.2959
+143782.2617344751 3.4013586 -1103.1576
+143783.2617345795 3.4012799 -1103.1774
+143784.2617346838 3.4013193 -1103.2168
+143785.2617347881 3.4012012 -1103.1774
+143786.2617348924 3.4012012 -1103.1774
+143787.2617349967 3.4010832 -1103.0984
+143788.261735101 3.4012012 -1103.197
+143789.2617352053 3.4011226 -1103.2168
+143790.2617353096 3.4012012 -1103.197
+143791.2617354139 3.4011619 -1103.3156
+143792.2617355182 3.4012799 -1103.197
+143793.2617356225 3.4010832 -1103.3353
+143794.2617357268 3.4012406 -1103.197
+143795.2617358312 3.4011619 -1103.1576
+143796.2617359355 3.4011619 -1103.197
+143797.2617360398 3.4012012 -1103.1182
+143798.2617361441 3.4011226 -1103.197
+143799.2617362484 3.4010043 -1103.2761
+143800.2617363527 3.400965 -1103.2562
+143801.261736457 3.400965 -1103.2168
+143802.2617365613 3.4010043 -1103.2761
+143803.2617366656 3.4009256 -1103.2366
+143804.2617367699 3.4010437 -1103.197
+143805.2617368742 3.4010437 -1103.3156
+143806.2617369785 3.4009256 -1103.2168
+143807.2617370829 3.400965 -1103.2562
+143808.2617371872 3.4008863 -1103.2959
+143809.2617372915 3.4009256 -1103.2761
+143810.2617373958 3.400847 -1103.1182
+143811.2617375001 3.4008863 -1103.2168
+143812.2617376044 3.4009256 -1103.2366
+143813.2617377087 3.4007683 -1103.1774
+143814.261737813 3.4007287 -1103.197
+143815.2617379173 3.4007287 -1103.1774
+143816.2617380216 3.4006894 -1103.2761
+143817.2617381259 3.4006107 -1103.2168
+143818.2617382302 3.40065 -1103.2366
+143819.2617383346 3.400532 -1103.2761
+143820.2617384389 3.4004927 -1103.1378
+143821.2617385432 3.4004927 -1103.2168
+143822.2617386475 3.4003351 -1103.197
+143823.2617387518 3.4003351 -1103.197
+143824.2617388561 3.4003744 -1103.2168
+143825.2617389604 3.4004138 -1103.1774
+143826.2617390647 3.4004138 -1103.2562
+143827.261739169 3.4003744 -1103.1576
+143828.2617392733 3.4003744 -1103.2761
+143829.2617393776 3.4004138 -1103.1774
+143830.2617394819 3.4002171 -1103.197
+143831.2617395862 3.4002564 -1103.197
+143832.2617396906 3.4003351 -1103.2366
+143833.2617397949 3.4001777 -1103.197
+143834.2617398992 3.4001777 -1103.1378
+143835.2617400035 3.4000595 -1103.1774
+143836.2617401078 3.4001381 -1103.2168
+143837.2617402121 3.4000595 -1103.2366
+143838.2617403164 3.4000201 -1103.2168
+143839.2617404207 3.3999808 -1103.197
+143840.261740525 3.4000201 -1103.2761
+143841.2617406293 3.3999808 -1103.2562
+143842.2617407336 3.4000201 -1103.2562
+143843.2617408379 3.4000595 -1103.197
+143844.2617409423 3.4000201 -1103.2761
+143845.2617410466 3.4000201 -1103.2562
+143846.2617411509 3.4000988 -1103.2562
+143847.2617412552 3.4000595 -1103.1576
+143848.2617413595 3.3999808 -1103.197
+143849.2617414638 3.3999808 -1103.2366
+143850.2617415681 3.3999021 -1103.2168
+143851.2617416724 3.3999414 -1103.1774
+143852.2617417767 3.3999808 -1103.2959
+143853.261741881 3.3998232 -1103.2562
+143854.2617419853 3.3997838 -1103.2168
+143855.2617420896 3.3999808 -1103.2168
+143856.261742194 3.3997838 -1103.197
+143857.2617422983 3.3997838 -1103.2366
+143858.2617424026 3.3997838 -1103.0785
+143859.2617425069 3.3996658 -1103.2562
+143860.2617426112 3.3997838 -1103.2168
+143861.2617427155 3.3997838 -1103.1378
+143862.2617428198 3.3997838 -1103.2366
+143863.2617429241 3.3998232 -1103.1378
+143864.2617430284 3.3998232 -1103.1378
+143865.2617431327 3.3997838 -1103.2168
+143866.261743237 3.3998232 -1103.2366
+143867.2617433413 3.3997445 -1103.2168
+143868.2617434456 3.3997445 -1103.197
+143869.26174355 3.3996658 -1103.2761
+143870.2617436543 3.3998232 -1103.2168
+143871.2617437586 3.3997445 -1103.2562
+143872.2617438629 3.3997052 -1103.2562
+143873.2617439672 3.3996265 -1103.2366
+143874.2617440715 3.3996265 -1103.2562
+143875.2617441758 3.3996265 -1103.197
+143876.2617442801 3.3995082 -1103.1774
+143877.2617443844 3.3994689 -1103.2168
+143878.2617444887 3.3994689 -1103.197
+143879.261744593 3.3994296 -1103.1774
+143880.2617446973 3.3993902 -1103.3353
+143881.2617448017 3.3993509 -1103.2761
+143882.261744906 3.3992722 -1103.2168
+143883.2617450103 3.3992722 -1103.2761
+143884.2617451146 3.3992722 -1103.2562
+143885.2617452189 3.3992329 -1103.197
+143886.2617453232 3.3991539 -1103.2562
+143887.2617454275 3.3991539 -1103.2562
+143888.2617455318 3.3991539 -1103.2168
+143889.2617456361 3.3990753 -1103.2562
+143890.2617457404 3.3990753 -1103.2366
+143891.2617458447 3.3988783 -1103.1774
+143892.261745949 3.3989966 -1103.2168
+143893.2617460534 3.398839 -1103.2168
+143894.2617461577 3.3988783 -1103.2959
+143895.261746262 3.3989179 -1103.2366
+143896.2617463663 3.3986816 -1103.197
+143897.2617464706 3.3987997 -1103.197
+143898.2617465749 3.3987997 -1103.2761
+143899.2617466792 3.3987997 -1103.2761
+143900.2617467835 3.3986816 -1103.2959
+143901.2617468878 3.3987603 -1103.2366
+143902.2617469921 3.3986816 -1103.1774
+143903.2617470964 3.398721 -1103.197
+143904.2617472007 3.3986423 -1103.2562
+143905.261747305 3.3985634 -1103.197
+143906.2617474094 3.3985634 -1103.1774
+143907.2617475137 3.3984847 -1103.2168
+143908.261747618 3.3984847 -1103.0984
+143909.2617477223 3.3985634 -1103.1378
+143910.2617478266 3.398524 -1103.2366
+143911.2617479309 3.3986027 -1103.2366
+143912.2617480352 3.3984454 -1103.197
+143913.2617481395 3.3984847 -1103.2562
+143914.2617482438 3.398524 -1103.197
+143915.2617483481 3.3985634 -1103.2562
+143916.2617484524 3.3984454 -1103.1774
+143917.2617485567 3.398406 -1103.2761
+143918.2617486611 3.3984847 -1103.1774
+143919.2617487654 3.3984847 -1103.1774
+143920.2617488697 3.3983274 -1103.1774
+143921.261748974 3.3982484 -1103.2168
+143922.2617490783 3.3981698 -1103.2562
+143923.2617491826 3.3980911 -1103.2761
+143924.2617492869 3.3980911 -1103.2168
+143925.2617493912 3.3980517 -1103.1576
+143926.2617494955 3.3980911 -1103.2562
+143927.2617495998 3.3980911 -1103.2761
+143928.2617497041 3.3981698 -1103.2366
+143929.2617498084 3.3981304 -1103.2562
+143930.2617499128 3.3982484 -1103.2168
+143931.2617500171 3.3981304 -1103.3749
+143932.2617501214 3.3982091 -1103.2366
+143933.2617502257 3.3980517 -1103.1774
+143934.26175033 3.3981698 -1103.1774
+143935.2617504343 3.3981304 -1103.2168
+143936.2617505386 3.3982091 -1103.1576
+143937.2617506429 3.3983274 -1103.2366
+143938.2617507472 3.3982091 -1103.3353
+143939.2617508515 3.3980911 -1103.2562
+143940.2617509558 3.3981304 -1103.2562
+143941.2617510601 3.3980911 -1103.1576
+143942.2617511644 3.3980517 -1103.2168
+143943.2617512688 3.3980911 -1103.2168
+143944.2617513731 3.3980517 -1103.2562
+143945.2617514774 3.3979728 -1103.1774
+143946.2617515817 3.3979335 -1103.2366
+143947.261751686 3.3978941 -1103.1774
+143948.2617517903 3.3979335 -1103.3156
+143949.2617518946 3.3978548 -1103.2366
+143950.2617519989 3.3977761 -1103.1774
+143951.2617521032 3.3977761 -1103.1774
+143952.2617522075 3.3977368 -1103.3353
+143953.2617523118 3.3977368 -1103.1774
+143954.2617524161 3.3977368 -1103.197
+143955.2617525205 3.3977761 -1103.1774
+143956.2617526248 3.3977761 -1103.197
+143957.2617527291 3.3978155 -1103.2366
+143958.2617528334 3.3977761 -1103.2168
+143959.2617529377 3.3978155 -1103.2168
+143960.261753042 3.3978155 -1103.1576
+143961.2617531463 3.3978548 -1103.197
+143962.2617532506 3.3979335 -1103.1576
+143963.2617533549 3.3978548 -1103.1774
+143964.2617534592 3.3978155 -1103.197
+143965.2617535635 3.3977761 -1103.197
+143966.2617536678 3.3978155 -1103.2168
+143967.2617537722 3.3977368 -1103.197
+143968.2617538765 3.3976579 -1103.2761
+143969.2617539808 3.3976974 -1103.2366
+143970.2617540851 3.3976185 -1103.2366
+143971.2617541894 3.3976974 -1103.1774
+143972.2617542937 3.3975792 -1103.197
+143973.261754398 3.3976185 -1103.1774
+143974.2617545023 3.3978155 -1103.1182
+143975.2617546066 3.3976974 -1103.2366
+143976.2617547109 3.3977368 -1103.2168
+143977.2617548152 3.3977368 -1103.2761
+143978.2617549195 3.3979335 -1103.2761
+143979.2617550239 3.3978941 -1103.1182
+143980.2617551282 3.3978941 -1103.2562
+143981.2617552325 3.3979728 -1103.2168
+143982.2617553368 3.3979728 -1103.197
+143983.2617554411 3.3980911 -1103.2562
+143984.2617555454 3.3980124 -1103.2366
+143985.2617556497 3.3980124 -1103.2959
+143986.261755754 3.3979728 -1103.197
+143987.2617558583 3.3980124 -1103.2168
+143988.2617559626 3.3979728 -1103.2959
+143989.2617560669 3.3979335 -1103.2366
+143990.2617561712 3.3979728 -1103.197
+143991.2617562755 3.3979335 -1103.2562
+143992.2617563799 3.3979728 -1103.1774
+143993.2617564842 3.3978941 -1103.197
+143994.2617565885 3.3978155 -1103.2562
+143995.2617566928 3.3977368 -1103.1774
+143996.2617567971 3.3977761 -1103.2168
+143997.2617569014 3.3978155 -1103.2562
+143998.2617570057 3.3977761 -1103.2168
+143999.26175711 3.3978155 -1103.2959
+144000.2617572143 3.3976974 -1103.2168
+144001.2617573186 3.3977761 -1103.2168
+144002.2617574229 3.3977368 -1103.2366
+144003.2617575272 3.3976185 -1103.2168
+144004.2617576316 3.3977368 -1103.1378
+144005.2617577359 3.3976579 -1103.2959
+144006.2617578402 3.3977368 -1103.1576
+144007.2617579445 3.3976579 -1103.1774
+144008.2617580488 3.3975005 -1103.2168
+144009.2617581531 3.3974218 -1103.2562
+144010.2617582574 3.3973825 -1103.1378
+144011.2617583617 3.3974612 -1103.2761
+144012.261758466 3.3975005 -1103.1774
+144013.2617585703 3.3974218 -1103.1774
+144014.2617586746 3.3973429 -1103.1774
+144015.2617587789 3.3974612 -1103.1774
+144016.2617588833 3.3973429 -1103.2761
+144017.2617589876 3.3973825 -1103.1774
+144018.2617590919 3.3973036 -1103.197
+144019.2617591962 3.3974612 -1103.2562
+144020.2617593005 3.3975005 -1103.2366
+144021.2617594048 3.3973429 -1103.2168
+144022.2617595091 3.3974218 -1103.2366
+144023.2617596134 3.3972642 -1103.2366
+144024.2617597177 3.3973036 -1103.2168
+144025.261759822 3.3972249 -1103.197
+144026.2617599263 3.3972642 -1103.2366
+144027.2617600306 3.3971462 -1103.2562
+144028.2617601349 3.3972642 -1103.2366
+144029.2617602393 3.3971069 -1103.1576
+144030.2617603436 3.3971069 -1103.2168
+144031.2617604479 3.3971069 -1103.2168
+144032.2617605522 3.3970675 -1103.2562
+144033.2617606565 3.3971462 -1103.2366
+144034.2617607608 3.3970675 -1103.1774
+144035.2617608651 3.397028 -1103.2562
+144036.2617609694 3.3969886 -1103.1774
+144037.2617610737 3.3968706 -1103.1576
+144038.261761178 3.3969493 -1103.2168
+144039.2617612823 3.39691 -1103.197
+144040.2617613866 3.3968313 -1103.2959
+144041.261761491 3.3967524 -1103.2366
+144042.2617615953 3.3966737 -1103.2168
+144043.2617616996 3.396713 -1103.2168
+144044.2617618039 3.3966737 -1103.2168
+144045.2617619082 3.3966343 -1103.197
+144046.2617620125 3.396713 -1103.197
+144047.2617621168 3.396713 -1103.2168
+144048.2617622211 3.396713 -1103.2761
+144049.2617623254 3.396713 -1103.2562
+144050.2617624297 3.396713 -1103.1774
+144051.261762534 3.3967524 -1103.2168
+144052.2617626383 3.396713 -1103.197
+144053.2617627427 3.3966737 -1103.197
+144054.261762847 3.3966737 -1103.2366
+144055.2617629513 3.3967524 -1103.2168
+144056.2617630556 3.3967919 -1103.1774
+144057.2617631599 3.396713 -1103.2366
+144058.2617632642 3.3967524 -1103.2959
+144059.2617633685 3.3967919 -1103.2366
+144060.2617634728 3.396713 -1103.2168
+144061.2617635771 3.396713 -1103.1576
+144062.2617636814 3.3966343 -1103.2562
+144063.2617637857 3.396595 -1103.2761
+144064.26176389 3.3966343 -1103.2168
+144065.2617639943 3.396595 -1103.2366
+144066.2617640987 3.3964374 -1103.197
+144067.261764203 3.3964374 -1103.2761
+144068.2617643073 3.3964374 -1103.2562
+144069.2617644116 3.396477 -1103.1774
+144070.2617645159 3.3963587 -1103.197
+144071.2617646202 3.3963587 -1103.2168
+144072.2617647245 3.3962801 -1103.2761
+144073.2617648288 3.3962407 -1103.2761
+144074.2617649331 3.3963587 -1103.2761
+144075.2617650374 3.3962801 -1103.2761
+144076.2617651417 3.3963194 -1103.2168
+144077.261765246 3.3963194 -1103.2366
+144078.2617653504 3.3963587 -1103.1774
+144079.2617654547 3.3963587 -1103.2168
+144080.261765559 3.3964374 -1103.2168
+144081.2617656633 3.396477 -1103.197
+144082.2617657676 3.396477 -1103.2761
+144083.2617658719 3.3965557 -1103.1774
+144084.2617659762 3.396595 -1103.2366
+144085.2617660805 3.3965557 -1103.1576
+144086.2617661848 3.3965557 -1103.2761
+144087.2617662891 3.396595 -1103.1774
+144088.2617663934 3.396595 -1103.1576
+144089.2617664977 3.3965557 -1103.1182
+144090.2617666021 3.3966343 -1103.2959
+144091.2617667064 3.3964374 -1103.1774
+144092.2617668107 3.396477 -1103.1774
+144093.261766915 3.396477 -1103.1774
+144094.2617670193 3.396477 -1103.197
+144095.2617671236 3.3964374 -1103.2959
+144096.2617672279 3.3963194 -1103.2959
+144097.2617673322 3.3963587 -1103.197
+144098.2617674365 3.3963587 -1103.1774
+144099.2617675408 3.3962407 -1103.2562
+144100.2617676451 3.3962407 -1103.2168
+144101.2617677494 3.3962801 -1103.1576
+144102.2617678538 3.3962014 -1103.1774
+144103.2617679581 3.3962014 -1103.1774
+144104.2617680624 3.3961225 -1103.1576
+144105.2617681667 3.3960831 -1103.1774
+144106.261768271 3.3961225 -1103.2168
+144107.2617683753 3.3959651 -1103.2168
+144108.2617684796 3.3960831 -1103.197
+144109.2617685839 3.396162 -1103.2168
+144110.2617686882 3.3960438 -1103.1576
+144111.2617687925 3.3962014 -1103.1774
+144112.2617688968 3.3960438 -1103.1182
+144113.2617690011 3.3960438 -1103.2168
+144114.2617691054 3.3960831 -1103.2366
+144115.2617692098 3.3959651 -1103.2168
+144116.2617693141 3.3960044 -1103.2761
+144117.2617694184 3.3957288 -1103.1774
+144118.2617695227 3.3958864 -1103.197
+144119.261769627 3.3957288 -1103.2562
+144120.2617697313 3.3957288 -1103.2366
+144121.2617698356 3.3956108 -1103.1378
+144122.2617699399 3.3956501 -1103.2761
+144123.2617700442 3.3956501 -1103.2366
+144124.2617701485 3.3955715 -1103.2168
+144125.2617702528 3.3955715 -1103.2168
+144126.2617703571 3.3954926 -1103.2366
+144127.2617704615 3.3955321 -1103.2168
+144128.2617705658 3.3955715 -1103.2366
+144129.2617706701 3.3954926 -1103.2562
+144130.2617707744 3.3955321 -1103.2366
+144131.2617708787 3.3953352 -1103.2761
+144132.261770983 3.3954532 -1103.1774
+144133.2617710873 3.3954532 -1103.2168
+144134.2617711916 3.3954139 -1103.2761
+144135.2617712959 3.3954532 -1103.1774
+144136.2617714002 3.3955321 -1103.1576
+144137.2617715045 3.3954532 -1103.2959
+144138.2617716088 3.3954532 -1103.2366
+144139.2617717132 3.3954532 -1103.1576
+144140.2617718175 3.3956108 -1103.3353
+144141.2617719218 3.3954926 -1103.2168
+144142.2617720261 3.3955321 -1103.2168
+144143.2617721304 3.3956108 -1103.1576
+144144.2617722347 3.3957288 -1103.2761
+144145.261772339 3.3955321 -1103.197
+144146.2617724433 3.3956895 -1103.2562
+144147.2617725476 3.3956501 -1103.1774
+144148.2617726519 3.3956501 -1103.1774
+144149.2617727562 3.3956501 -1103.2168
+144150.2617728605 3.3956501 -1103.1576
+144151.2617729648 3.3956501 -1103.2366
+144152.2617730692 3.3956501 -1103.2168
+144153.2617731735 3.3956895 -1103.1378
+144154.2617732778 3.3955715 -1103.2959
+144155.2617733821 3.3956895 -1103.2761
+144156.2617734864 3.3958864 -1103.2562
+144157.2617735907 3.3957682 -1103.2562
+144158.261773695 3.3957682 -1103.2168
+144159.2617737993 3.3957682 -1103.1378
+144160.2617739036 3.3958864 -1103.197
+144161.2617740079 3.3958471 -1103.2168
+144162.2617741122 3.3957682 -1103.2761
+144163.2617742165 3.3959258 -1103.2168
+144164.2617743209 3.3958471 -1103.2366
+144165.2617744252 3.3958471 -1103.1576
+144166.2617745295 3.3958075 -1103.1182
+144167.2617746338 3.3959258 -1103.2366
+144168.2617747381 3.3958864 -1103.2366
+144169.2617748424 3.3958864 -1103.1774
+144170.2617749467 3.3959258 -1103.1774
+144171.261775051 3.3958864 -1103.197
+144172.2617751553 3.3958864 -1103.1576
+144173.2617752596 3.3958864 -1103.2168
+144174.2617753639 3.3959258 -1103.2168
+144175.2617754682 3.3958471 -1103.2168
+144176.2617755726 3.3958864 -1103.2562
+144177.2617756769 3.3959651 -1103.2761
+144178.2617757812 3.3959258 -1103.2366
+144179.2617758855 3.3959258 -1103.2562
+144180.2617759898 3.3958864 -1103.2562
+144181.2617760941 3.3960044 -1103.1182
+144182.2617761984 3.3959651 -1103.2366
+144183.2617763027 3.3959258 -1103.2562
+144184.261776407 3.3958075 -1103.2562
+144185.2617765113 3.3958075 -1103.3156
+144186.2617766156 3.3958075 -1103.1576
+144187.2617767199 3.3957682 -1103.2562
+144188.2617768242 3.3957288 -1103.1774
+144189.2617769286 3.3958075 -1103.197
+144190.2617770329 3.3958864 -1103.2366
+144191.2617771372 3.3957682 -1103.197
+144192.2617772415 3.3958471 -1103.2562
+144193.2617773458 3.3957288 -1103.2366
+144194.2617774501 3.3957682 -1103.2562
+144195.2617775544 3.3957682 -1103.1576
+144196.2617776587 3.3956108 -1103.2366
+144197.261777763 3.3955715 -1103.2168
+144198.2617778673 3.3955715 -1103.2168
+144199.2617779716 3.3955715 -1103.2168
+144200.2617780759 3.3954926 -1103.2761
+144201.2617781803 3.3955321 -1103.2168
+144202.2617782846 3.3955321 -1103.1378
+144203.2617783889 3.3954926 -1103.2562
+144204.2617784932 3.3954926 -1103.2562
+144205.2617785975 3.3954926 -1103.1774
+144206.2617787018 3.3954926 -1103.1378
+144207.2617788061 3.3954926 -1103.197
+144208.2617789104 3.3955715 -1103.2168
+144209.2617790147 3.3956108 -1103.2366
+144210.261779119 3.3956108 -1103.2366
+144211.2617792233 3.3956895 -1103.197
+144212.2617793276 3.3957682 -1103.2168
+144213.261779432 3.3956895 -1103.2366
+144214.2617795363 3.3956501 -1103.197
+144215.2617796406 3.3956501 -1103.1774
+144216.2617797449 3.3956501 -1103.2959
+144217.2617798492 3.3958075 -1103.0984
+144218.2617799535 3.3958075 -1103.2366
+144219.2617800578 3.3958471 -1103.2562
+144220.2617801621 3.3957288 -1103.1182
+144221.2617802664 3.3958075 -1103.2168
+144222.2617803707 3.3958075 -1103.197
+144223.261780475 3.3959651 -1103.2562
+144224.2617805793 3.3958075 -1103.2366
+144225.2617806837 3.3958075 -1103.1576
+144226.261780788 3.3958864 -1103.1774
+144227.2617808923 3.3958075 -1103.197
+144228.2617809966 3.3958471 -1103.1774
+144229.2617811009 3.3957288 -1103.2761
+144230.2617812052 3.3958075 -1103.2366
+144231.2617813095 3.3956501 -1103.1576
+144232.2617814138 3.3956108 -1103.2168
+144233.2617815181 3.3956108 -1103.3156
+144234.2617816224 3.3956108 -1103.1774
+144235.2617817267 3.3956108 -1103.1576
+144236.261781831 3.3955715 -1103.2168
+144237.2617819353 3.3955715 -1103.1774
+144238.2617820397 3.3956501 -1103.1182
+144239.261782144 3.3956501 -1103.1576
+144240.2617822483 3.3956108 -1103.2562
+144241.2617823526 3.3957682 -1103.2168
+144242.2617824569 3.3956895 -1103.2168
+144243.2617825612 3.3957288 -1103.197
+144244.2617826655 3.3957682 -1103.2562
+144245.2617827698 3.3958075 -1103.2366
+144246.2617828741 3.3957682 -1103.2366
+144247.2617829784 3.3958075 -1103.2562
+144248.2617830827 3.3957288 -1103.2562
+144249.261783187 3.3958075 -1103.1774
+144250.2617832914 3.3956501 -1103.2761
+144251.2617833957 3.3957682 -1103.197
+144252.2617835 3.3957682 -1103.2168
+144253.2617836043 3.3957682 -1103.1182
+144254.2617837086 3.3958864 -1103.2168
+144255.2617838129 3.3957288 -1103.2761
+144256.2617839172 3.3958864 -1103.2761
+144257.2617840215 3.3957682 -1103.197
+144258.2617841258 3.3957288 -1103.2168
+144259.2617842301 3.3956108 -1103.1774
+144260.2617843344 3.3956108 -1103.2562
+144261.2617844387 3.3956895 -1103.1774
+144262.2617845431 3.3956108 -1103.2168
+144263.2617846474 3.3957288 -1103.1576
+144264.2617847517 3.3955715 -1103.2168
+144265.261784856 3.3955715 -1103.1378
+144266.2617849603 3.3956108 -1103.197
+144267.2617850646 3.3955321 -1103.2366
+144268.2617851689 3.3955715 -1103.197
+144269.2617852732 3.3956108 -1103.1774
+144270.2617853775 3.3956501 -1103.1774
+144271.2617854818 3.3956501 -1103.197
+144272.2617855861 3.3956108 -1103.197
+144273.2617856904 3.3957288 -1103.2366
+144274.2617857947 3.3956501 -1103.1774
+144275.2617858991 3.3956501 -1103.2562
+144276.2617860034 3.3956895 -1103.2168
+144277.2617861077 3.3957288 -1103.1774
+144278.261786212 3.3957682 -1103.2562
+144279.2617863163 3.3957288 -1103.2366
+144280.2617864206 3.3958075 -1103.2168
+144281.2617865249 3.3958471 -1103.1774
+144282.2617866292 3.3957682 -1103.2366
+144283.2617867335 3.3957682 -1103.2366
+144284.2617868378 3.3958075 -1103.1774
+144285.2617869421 3.3957288 -1103.197
+144286.2617870464 3.3956895 -1103.3156
+144287.2617871508 3.3958075 -1103.197
+144288.2617872551 3.3957682 -1103.2366
+144289.2617873594 3.3957682 -1103.1774
+144290.2617874637 3.3958471 -1103.2168
+144291.261787568 3.3957288 -1103.1774
+144292.2617876723 3.3957682 -1103.1774
+144293.2617877766 3.3957682 -1103.1774
+144294.2617878809 3.3957288 -1103.2562
+144295.2617879852 3.3958471 -1103.2366
+144296.2617880895 3.3958471 -1103.1774
+144297.2617881938 3.3957288 -1103.1378
+144298.2617882981 3.3956895 -1103.0984
+144299.2617884025 3.3956895 -1103.2168
+144300.2617885068 3.3958075 -1103.2366
+144301.2617886111 3.3956501 -1103.197
+144302.2617887154 3.3958075 -1103.1774
+144303.2617888197 3.3956895 -1103.1576
+144304.261788924 3.3957288 -1103.2761
+144305.2617890283 3.3959651 -1103.197
+144306.2617891326 3.3958471 -1103.1576
+144307.2617892369 3.3958075 -1103.2168
+144308.2617893412 3.3958075 -1103.2168
+144309.2617894455 3.3958864 -1103.2562
+144310.2617895498 3.3958864 -1103.2959
+144311.2617896541 3.3958864 -1103.197
+144312.2617897585 3.3957288 -1103.197
+144313.2617898628 3.3958075 -1103.1378
+144314.2617899671 3.3958471 -1103.2562
+144315.2617900714 3.3957682 -1103.2562
+144316.2617901757 3.3959258 -1103.197
+144317.26179028 3.3957288 -1103.2562
+144318.2617903843 3.3958471 -1103.1576
+144319.2617904886 3.3957682 -1103.1576
+144320.2617905929 3.3957682 -1103.2761
+144321.2617906972 3.3957288 -1103.2366
+144322.2617908015 3.3956895 -1103.2168
+144323.2617909058 3.3958075 -1103.197
+144324.2617910102 3.3958471 -1103.2366
+144325.2617911145 3.3957682 -1103.1774
+144326.2617912188 3.3958471 -1103.2366
+144327.2617913231 3.3958864 -1103.2761
+144328.2617914274 3.3958471 -1103.2761
+144329.2617915317 3.3958075 -1103.2168
+144330.261791636 3.3958864 -1103.2959
+144331.2617917403 3.3957288 -1103.2761
+144332.2617918446 3.3958075 -1103.2761
+144333.2617919489 3.3958471 -1103.2168
+144334.2617920532 3.3957288 -1103.197
+144335.2617921575 3.3958075 -1103.1576
+144336.2617922619 3.3957288 -1103.2562
+144337.2617923662 3.3957288 -1103.2366
+144338.2617924705 3.3956895 -1103.2761
+144339.2617925748 3.3958471 -1103.2168
+144340.2617926791 3.3957288 -1103.2761
+144341.2617927834 3.3956895 -1103.3156
+144342.2617928877 3.3957288 -1103.2761
+144343.261792992 3.3958075 -1103.1576
+144344.2617930963 3.3958075 -1103.1576
+144345.2617932006 3.3956501 -1103.2761
+144346.2617933049 3.3957288 -1103.3156
+144347.2617934092 3.3957288 -1103.2959
+144348.2617935135 3.3957288 -1103.1774
+144349.2617936179 3.3957682 -1103.2562
+144350.2617937222 3.3956895 -1103.1576
+144351.2617938265 3.3956895 -1103.2168
+144352.2617939308 3.3956108 -1103.2562
+144353.2617940351 3.3957288 -1103.2562
+144354.2617941394 3.3956895 -1103.2761
+144355.2617942437 3.3957288 -1103.1774
+144356.261794348 3.3955715 -1103.2761
+144357.2617944523 3.3955321 -1103.2761
+144358.2617945566 3.3954926 -1103.2366
+144359.2617946609 3.3955321 -1103.1576
+144360.2617947652 3.3953745 -1103.2761
+144361.2617948696 3.3953352 -1103.2562
+144362.2617949739 3.3953352 -1103.1774
+144363.2617950782 3.3953352 -1103.2761
+144364.2617951825 3.3953352 -1103.1576
+144365.2617952868 3.3952565 -1103.1774
+144366.2617953911 3.3951776 -1103.2366
+144367.2617954954 3.3952565 -1103.2761
+144368.2617955997 3.3951776 -1103.2761
+144369.261795704 3.3951776 -1103.2366
+144370.2617958083 3.3950989 -1103.197
+144371.2617959126 3.3951383 -1103.3353
+144372.2617960169 3.3950989 -1103.197
+144373.2617961213 3.3950989 -1103.2168
+144374.2617962256 3.3951776 -1103.2168
+144375.2617963299 3.3952172 -1103.2168
+144376.2617964342 3.3950596 -1103.2366
+144377.2617965385 3.3952172 -1103.197
+144378.2617966428 3.3951776 -1103.2366
+144379.2617967471 3.3953352 -1103.2562
+144380.2617968514 3.3950989 -1103.2168
+144381.2617969557 3.3951383 -1103.2366
+144382.26179706 3.3951383 -1103.197
+144383.2617971643 3.3950989 -1103.197
+144384.2617972686 3.3951776 -1103.1576
+144385.261797373 3.3951383 -1103.1576
+144386.2617974773 3.3951776 -1103.2168
+144387.2617975816 3.3951776 -1103.1774
+144388.2617976859 3.3951383 -1103.197
+144389.2617977902 3.3952172 -1103.2168
+144390.2617978945 3.3951383 -1103.3156
+144391.2617979988 3.3951776 -1103.2168
+144392.2617981031 3.3952172 -1103.197
+144393.2617982074 3.3951776 -1103.2168
+144394.2617983117 3.3950989 -1103.197
+144395.261798416 3.3950596 -1103.2168
+144396.2617985203 3.3951383 -1103.1774
+144397.2617986246 3.3951383 -1103.1576
+144398.261798729 3.3951383 -1103.197
+144399.2617988333 3.3951383 -1103.2366
+144400.2617989376 3.3951383 -1103.2562
+144401.2617990419 3.3950989 -1103.197
+144402.2617991462 3.3952565 -1103.197
+144403.2617992505 3.3950989 -1103.197
+144404.2617993548 3.3950989 -1103.2168
+144405.2617994591 3.3951776 -1103.1774
+144406.2617995634 3.3950989 -1103.197
+144407.2617996677 3.3950989 -1103.2366
+144408.261799772 3.3950596 -1103.197
+144409.2617998763 3.3950989 -1103.1576
+144410.2617999807 3.3949809 -1103.2168
+144411.261800085 3.3950989 -1103.3156
+144412.2618001893 3.3949416 -1103.2761
+144413.2618002936 3.394902 -1103.2366
+144414.2618003979 3.3949809 -1103.197
+144415.2618005022 3.3948233 -1103.197
+144416.2618006065 3.394902 -1103.2562
+144417.2618007108 3.3948233 -1103.2562
+144418.2618008151 3.3948627 -1103.1576
+144419.2618009194 3.3948233 -1103.2761
+144420.2618010237 3.3948233 -1103.2562
+144421.261801128 3.394784 -1103.1378
+144422.2618012324 3.3948233 -1103.197
+144423.2618013367 3.394902 -1103.2562
+144424.261801441 3.3948233 -1103.197
+144425.2618015453 3.394902 -1103.2562
+144426.2618016496 3.394902 -1103.2168
+144427.2618017539 3.3948233 -1103.197
+144428.2618018582 3.394902 -1103.2562
+144429.2618019625 3.3947446 -1103.2761
+144430.2618020668 3.3947446 -1103.2168
+144431.2618021711 3.394784 -1103.1576
+144432.2618022754 3.3946266 -1103.0984
+144433.2618023797 3.3948233 -1103.197
+144434.261802484 3.3947446 -1103.197
+144435.2618025884 3.394784 -1103.2366
+144436.2618026927 3.3947053 -1103.197
+144437.261802797 3.3946266 -1103.1774
+144438.2618029013 3.394666 -1103.1774
+144439.2618030056 3.394666 -1103.2562
+144440.2618031099 3.3947446 -1103.1576
+144441.2618032142 3.3947053 -1103.1576
+144442.2618033185 3.394587 -1103.2366
+144443.2618034228 3.3947053 -1103.2168
+144444.2618035271 3.394587 -1103.197
+144445.2618036314 3.3945477 -1103.2366
+144446.2618037357 3.3946266 -1103.2562
+144447.2618038401 3.394587 -1103.1378
+144448.2618039444 3.3945477 -1103.197
+144449.2618040487 3.3945477 -1103.0785
+144450.261804153 3.3945477 -1103.2168
+144451.2618042573 3.3945084 -1103.197
+144452.2618043616 3.3944297 -1103.197
+144453.2618044659 3.394469 -1103.197
+144454.2618045702 3.3944297 -1103.2562
+144455.2618046745 3.3943903 -1103.2761
+144456.2618047788 3.394351 -1103.2168
+144457.2618048831 3.3942721 -1103.2562
+144458.2618049874 3.3943903 -1103.2366
+144459.2618050918 3.3942721 -1103.2168
+144460.2618051961 3.3944297 -1103.1774
+144461.2618053004 3.394351 -1103.2959
+144462.2618054047 3.3942327 -1103.1774
+144463.261805509 3.3942721 -1103.1774
+144464.2618056133 3.3942327 -1103.2761
+144465.2618057176 3.3941934 -1103.1378
+144466.2618058219 3.3941934 -1103.2562
+144467.2618059262 3.3941934 -1103.197
+144468.2618060305 3.3941934 -1103.2168
+144469.2618061348 3.3942721 -1103.2168
+144470.2618062391 3.3941541 -1103.197
+144471.2618063434 3.3941541 -1103.197
+144472.2618064478 3.3941934 -1103.197
+144473.2618065521 3.3941934 -1103.2366
+144474.2618066564 3.3941934 -1103.2761
+144475.2618067607 3.3941934 -1103.1576
+144476.261806865 3.3941934 -1103.2366
+144477.2618069693 3.3941541 -1103.2168
+144478.2618070736 3.3940754 -1103.197
+144479.2618071779 3.3941147 -1103.2168
+144480.2618072822 3.3941147 -1103.2168
+144481.2618073865 3.3940361 -1103.197
+144482.2618074908 3.3940361 -1103.2366
+144483.2618075951 3.3940754 -1103.1378
+144484.2618076995 3.3941147 -1103.2366
+144485.2618078038 3.3941147 -1103.2562
+144486.2618079081 3.3941934 -1103.2168
+144487.2618080124 3.3941541 -1103.1774
+144488.2618081167 3.3941147 -1103.197
+144489.261808221 3.3941934 -1103.2761
+144490.2618083253 3.3941541 -1103.2168
+144491.2618084296 3.3941541 -1103.1576
+144492.2618085339 3.3939571 -1103.1774
+144493.2618086382 3.3939967 -1103.2366
+144494.2618087425 3.3939571 -1103.1576
+144495.2618088468 3.3939571 -1103.197
+144496.2618089512 3.3940754 -1103.2761
+144497.2618090555 3.3939571 -1103.2168
+144498.2618091598 3.3940754 -1103.1774
+144499.2618092641 3.3940361 -1103.2366
+144500.2618093684 3.3940754 -1103.2959
+144501.2618094727 3.3941541 -1103.2761
+144502.261809577 3.394351 -1103.2761
+144503.2618096813 3.3942327 -1103.2562
+144504.2618097856 3.3942721 -1103.197
+144505.2618098899 3.3942327 -1103.2562
+144506.2618099942 3.394351 -1103.1774
+144507.2618100985 3.3943117 -1103.2562
+144508.2618102029 3.3943117 -1103.1182
+144509.2618103072 3.3944297 -1103.1378
+144510.2618104115 3.3943903 -1103.1774
+144511.2618105158 3.3945084 -1103.1576
+144512.2618106201 3.3945477 -1103.197
+144513.2618107244 3.3945084 -1103.2761
+144514.2618108287 3.394469 -1103.2562
+144515.261810933 3.394469 -1103.2168
+144516.2618110373 3.3945477 -1103.197
+144517.2618111416 3.394469 -1103.2761
+144518.2618112459 3.3945084 -1103.2168
+144519.2618113502 3.3945084 -1103.197
+144520.2618114545 3.3944297 -1103.2168
+144521.2618115589 3.394587 -1103.3353
+144522.2618116632 3.3945477 -1103.1576
+144523.2618117675 3.394469 -1103.197
+144524.2618118718 3.3945084 -1103.2366
+144525.2618119761 3.3945084 -1103.197
+144526.2618120804 3.3945477 -1103.2168
+144527.2618121847 3.3946266 -1103.1378
+144528.261812289 3.3945477 -1103.2761
+144529.2618123933 3.3946266 -1103.197
+144530.2618124976 3.3945477 -1103.2168
+144531.2618126019 3.394587 -1103.2562
+144532.2618127062 3.3946266 -1103.1774
+144533.2618128106 3.394587 -1103.2562
+144534.2618129149 3.3947053 -1103.2761
+144535.2618130192 3.394469 -1103.2168
+144536.2618131235 3.394587 -1103.197
+144537.2618132278 3.3945084 -1103.1774
+144538.2618133321 3.394666 -1103.2168
+144539.2618134364 3.394587 -1103.197
+144540.2618135407 3.394666 -1103.1774
+144541.261813645 3.394587 -1103.1576
+144542.2618137493 3.3945477 -1103.2168
+144543.2618138536 3.3946266 -1103.197
+144544.2618139579 3.3946266 -1103.2168
+144545.2618140623 3.3947446 -1103.2761
+144546.2618141666 3.3947053 -1103.2562
+144547.2618142709 3.394784 -1103.3353
+144548.2618143752 3.394784 -1103.1774
+144549.2618144795 3.394784 -1103.3156
+144550.2618145838 3.394784 -1103.2366
+144551.2618146881 3.394784 -1103.197
+144552.2618147924 3.3948233 -1103.197
+144553.2618148967 3.394784 -1103.1576
+144554.261815001 3.3948233 -1103.2366
+144555.2618151053 3.394784 -1103.197
+144556.2618152096 3.394902 -1103.1774
+144557.2618153139 3.3948627 -1103.2168
+144558.2618154183 3.394902 -1103.2761
+144559.2618155226 3.3948627 -1103.197
+144560.2618156269 3.3948627 -1103.2366
+144561.2618157312 3.3948627 -1103.1576
+144562.2618158355 3.3947446 -1103.197
+144563.2618159398 3.3948627 -1103.2562
+144564.2618160441 3.3948233 -1103.1774
+144565.2618161484 3.3947446 -1103.1774
+144566.2618162527 3.3948233 -1103.2761
+144567.261816357 3.3947446 -1103.2366
+144568.2618164613 3.3948627 -1103.1774
+144569.2618165656 3.3947446 -1103.2761
+144570.26181667 3.3947446 -1103.1182
+144571.2618167743 3.394784 -1103.2562
+144572.2618168786 3.3947446 -1103.2761
+144573.2618169829 3.3948627 -1103.2168
+144574.2618170872 3.3947446 -1103.1774
+144575.2618171915 3.3947446 -1103.2366
+144576.2618172958 3.394902 -1103.0193
+144577.2618174001 3.3947446 -1103.2761
+144578.2618175044 3.3947053 -1103.1774
+144579.2618176087 3.3947053 -1103.197
+144580.261817713 3.3947053 -1103.1182
+144581.2618178173 3.3945477 -1103.1182
+144582.2618179217 3.3946266 -1103.1774
+144583.261818026 3.394666 -1103.0984
+144584.2618181303 3.3946266 -1103.2959
+144585.2618182346 3.394666 -1103.1182
+144586.2618183389 3.394587 -1103.2366
+144587.2618184432 3.394587 -1103.2168
+144588.2618185475 3.3947053 -1103.2562
+144589.2618186518 3.3947446 -1103.2366
+144590.2618187561 3.3946266 -1103.2168
+144591.2618188604 3.394587 -1103.2959
+144592.2618189647 3.3945477 -1103.1774
+144593.261819069 3.3945477 -1103.2168
+144594.2618191733 3.3945084 -1103.0984
+144595.2618192777 3.3944297 -1103.2168
+144596.261819382 3.394351 -1103.2562
+144597.2618194863 3.394351 -1103.197
+144598.2618195906 3.3943903 -1103.2562
+144599.2618196949 3.3943117 -1103.2168
+144600.2618197992 3.3941934 -1103.2761
+144601.2618199035 3.3941541 -1103.3156
+144602.2618200078 3.3940754 -1103.2366
+144603.2618201121 3.3940361 -1103.2168
+144604.2618202164 3.3940754 -1103.197
+144605.2618203207 3.3939178 -1103.1774
+144606.261820425 3.3939967 -1103.197
+144607.2618205294 3.3939178 -1103.197
+144608.2618206337 3.3938391 -1103.2366
+144609.261820738 3.3939571 -1103.1576
+144610.2618208423 3.3938391 -1103.1576
+144611.2618209466 3.3939178 -1103.2366
+144612.2618210509 3.3938785 -1103.2366
+144613.2618211552 3.3937998 -1103.2366
+144614.2618212595 3.3937604 -1103.197
+144615.2618213638 3.3938785 -1103.2366
+144616.2618214681 3.3938391 -1103.1378
+144617.2618215724 3.3937998 -1103.2366
+144618.2618216767 3.3936422 -1103.2761
+144619.2618217811 3.3935635 -1103.2168
+144620.2618218854 3.3936818 -1103.1774
+144621.2618219897 3.3935635 -1103.197
+144622.261822094 3.3934455 -1103.2562
+144623.2618221983 3.3934848 -1103.2366
+144624.2618223026 3.3936028 -1103.2168
+144625.2618224069 3.3934455 -1103.1774
+144626.2618225112 3.3934062 -1103.1774
+144627.2618226155 3.3934455 -1103.1576
+144628.2618227198 3.3935242 -1103.2959
+144629.2618228241 3.3934455 -1103.197
+144630.2618229284 3.3934455 -1103.1774
+144631.2618230328 3.3934848 -1103.2562
+144632.2618231371 3.3934848 -1103.2168
+144633.2618232414 3.3934062 -1103.2168
+144634.2618233457 3.3933666 -1103.2761
+144635.26182345 3.3933666 -1103.1378
+144636.2618235543 3.3933666 -1103.1378
+144637.2618236586 3.3933666 -1103.2168
+144638.2618237629 3.3933272 -1103.2959
+144639.2618238672 3.3934062 -1103.2959
+144640.2618239715 3.3934062 -1103.2366
+144641.2618240758 3.3935635 -1103.2168
+144642.2618241801 3.3935242 -1103.2168
+144643.2618242844 3.3934848 -1103.197
+144644.2618243888 3.3935635 -1103.197
+144645.2618244931 3.3934848 -1103.2366
+144646.2618245974 3.3934455 -1103.197
+144647.2618247017 3.3934455 -1103.1378
+144648.261824806 3.3934062 -1103.2562
+144649.2618249103 3.3934848 -1103.2168
+144650.2618250146 3.3934848 -1103.2168
+144651.2618251189 3.3934848 -1103.1576
+144652.2618252232 3.3934062 -1103.1576
+144653.2618253275 3.3935242 -1103.2366
+144654.2618254318 3.3933272 -1103.2761
+144655.2618255361 3.3934062 -1103.2168
+144656.2618256405 3.3932879 -1103.1774
+144657.2618257448 3.3933272 -1103.2168
+144658.2618258491 3.3934062 -1103.2562
+144659.2618259534 3.3934062 -1103.2366
+144660.2618260577 3.3933666 -1103.2168
+144661.261826162 3.3932879 -1103.1576
+144662.2618262663 3.3934062 -1103.2168
+144663.2618263706 3.3933666 -1103.2168
+144664.2618264749 3.3933272 -1103.2761
+144665.2618265792 3.3933272 -1103.2562
+144666.2618266835 3.3932486 -1103.1774
+144667.2618267878 3.3932486 -1103.1774
+144668.2618268922 3.3933666 -1103.197
+144669.2618269965 3.3934062 -1103.3156
+144670.2618271008 3.3934455 -1103.2366
+144671.2618272051 3.3933272 -1103.1378
+144672.2618273094 3.3934455 -1103.1774
+144673.2618274137 3.3932486 -1103.2562
+144674.261827518 3.3932879 -1103.2168
+144675.2618276223 3.3933666 -1103.2168
+144676.2618277266 3.3932879 -1103.2761
+144677.2618278309 3.3932486 -1103.2761
+144678.2618279352 3.3932486 -1103.2168
+144679.2618280395 3.3932092 -1103.2562
+144680.2618281438 3.3931305 -1103.1378
+144681.2618282482 3.3931699 -1103.2761
+144682.2618283525 3.3931305 -1103.197
+144683.2618284568 3.3930123 -1103.197
+144684.2618285611 3.3930516 -1103.2168
+144685.2618286654 3.3929729 -1103.197
+144686.2618287697 3.3929336 -1103.2168
+144687.261828874 3.3929729 -1103.2366
+144688.2618289783 3.3929336 -1103.2168
+144689.2618290826 3.3928943 -1103.1576
+144690.2618291869 3.3927763 -1103.1378
+144691.2618292912 3.3927763 -1103.3156
+144692.2618293955 3.3927763 -1103.197
+144693.2618294999 3.3926187 -1103.1774
+144694.2618296042 3.3927367 -1103.1182
+144695.2618297085 3.3927367 -1103.1182
+144696.2618298128 3.3927367 -1103.1774
+144697.2618299171 3.3928549 -1103.1774
+144698.2618300214 3.3927763 -1103.1182
+144699.2618301257 3.3928943 -1103.2366
+144700.26183023 3.3928943 -1103.197
+144701.2618303343 3.3927763 -1103.2366
+144702.2618304386 3.3928549 -1103.2562
+144703.2618305429 3.3928549 -1103.2562
+144704.2618306472 3.3927763 -1103.2562
+144705.2618307516 3.3928549 -1103.2168
+144706.2618308559 3.3928549 -1103.2168
+144707.2618309602 3.3929729 -1103.197
+144708.2618310645 3.3928943 -1103.1774
+144709.2618311688 3.3928549 -1103.3156
+144710.2618312731 3.3929336 -1103.1774
+144711.2618313774 3.3928549 -1103.2562
+144712.2618314817 3.3928156 -1103.1576
+144713.261831586 3.3927763 -1103.2562
+144714.2618316903 3.3927367 -1103.2562
+144715.2618317946 3.3927367 -1103.2562
+144716.2618318989 3.3928549 -1103.1774
+144717.2618320032 3.3926973 -1103.2366
+144718.2618321076 3.3927367 -1103.1576
+144719.2618322119 3.3926973 -1103.2168
+144720.2618323162 3.3926973 -1103.2168
+144721.2618324205 3.3927763 -1103.2562
+144722.2618325248 3.392658 -1103.2168
+144723.2618326291 3.3927367 -1103.2168
+144724.2618327334 3.3926187 -1103.1576
+144725.2618328377 3.3926187 -1103.3749
+144726.261832942 3.392658 -1103.2761
+144727.2618330463 3.3926973 -1103.2168
+144728.2618331506 3.3926973 -1103.1774
+144729.2618332549 3.3925793 -1103.2562
+144730.2618333593 3.3926187 -1103.197
+144731.2618334636 3.3925006 -1103.1576
+144732.2618335679 3.3925006 -1103.1774
+144733.2618336722 3.3926187 -1103.2366
+144734.2618337765 3.3925006 -1103.2366
+144735.2618338808 3.3925006 -1103.2366
+144736.2618339851 3.3925793 -1103.1774
+144737.2618340894 3.3925793 -1103.1576
+144738.2618341937 3.39254 -1103.197
+144739.261834298 3.39254 -1103.2168
+144740.2618344023 3.3925793 -1103.2562
+144741.2618345066 3.39254 -1103.2168
+144742.261834611 3.3925006 -1103.2168
+144743.2618347153 3.39254 -1103.2366
+144744.2618348196 3.3927763 -1103.3156
+144745.2618349239 3.3926973 -1103.1576
+144746.2618350282 3.3926973 -1103.1378
+144747.2618351325 3.39254 -1103.1774
+144748.2618352368 3.3925793 -1103.1774
+144749.2618353411 3.3925006 -1103.197
+144750.2618354454 3.3925793 -1103.2366
+144751.2618355497 3.3925793 -1103.2562
+144752.261835654 3.3925006 -1103.2959
+144753.2618357583 3.3925793 -1103.2168
+144754.2618358627 3.3924217 -1103.2168
+144755.261835967 3.3923824 -1103.1378
+144756.2618360713 3.3925006 -1103.2761
+144757.2618361756 3.3924217 -1103.1774
+144758.2618362799 3.3923037 -1103.197
+144759.2618363842 3.392343 -1103.2562
+144760.2618364885 3.392343 -1103.2761
+144761.2618365928 3.3923037 -1103.2562
+144762.2618366971 3.3922644 -1103.2366
+144763.2618368014 3.392225 -1103.2168
+144764.2618369057 3.3923037 -1103.1576
+144765.26183701 3.392225 -1103.1576
+144766.2618371143 3.3923037 -1103.2562
+144767.2618372187 3.392225 -1103.2366
+144768.261837323 3.392225 -1103.197
+144769.2618374273 3.3920674 -1103.197
+144770.2618375316 3.3921857 -1103.1774
+144771.2618376359 3.3921463 -1103.197
+144772.2618377402 3.3921068 -1103.1774
+144773.2618378445 3.3921857 -1103.197
+144774.2618379488 3.3921463 -1103.1576
+144775.2618380531 3.3921068 -1103.197
+144776.2618381574 3.3921068 -1103.2761
+144777.2618382617 3.3920281 -1103.1182
+144778.261838366 3.3919888 -1103.2168
+144779.2618384704 3.3919888 -1103.2761
+144780.2618385747 3.3919101 -1103.2761
+144781.261838679 3.3918707 -1103.1378
+144782.2618387833 3.3919101 -1103.2168
+144783.2618388876 3.3918314 -1103.2761
+144784.2618389919 3.3917918 -1103.1774
+144785.2618390962 3.3918707 -1103.3353
+144786.2618392005 3.3918314 -1103.1378
+144787.2618393048 3.3917918 -1103.2168
+144788.2618394091 3.3918707 -1103.2168
+144789.2618395134 3.3918314 -1103.2959
+144790.2618396177 3.3917525 -1103.197
+144791.2618397221 3.3918314 -1103.197
+144792.2618398264 3.3917918 -1103.2562
+144793.2618399307 3.3917918 -1103.197
+144794.261840035 3.3918314 -1103.2168
+144795.2618401393 3.3918314 -1103.2168
+144796.2618402436 3.3917918 -1103.1576
+144797.2618403479 3.3918707 -1103.2366
+144798.2618404522 3.3917918 -1103.1774
+144799.2618405565 3.3917918 -1103.2562
+144800.2618406608 3.3918314 -1103.2168
+144801.2618407651 3.3917918 -1103.197
+144802.2618408694 3.3917131 -1103.1576
+144803.2618409737 3.3917525 -1103.2761
+144804.2618410781 3.3917131 -1103.197
+144805.2618411824 3.3917131 -1103.1182
+144806.2618412867 3.3916345 -1103.2168
+144807.261841391 3.3917525 -1103.2761
+144808.2618414953 3.3916345 -1103.2366
+144809.2618415996 3.3916738 -1103.1576
+144810.2618417039 3.3916345 -1103.197
+144811.2618418082 3.3915951 -1103.2168
+144812.2618419125 3.3916345 -1103.2959
+144813.2618420168 3.3917131 -1103.197
+144814.2618421211 3.3917131 -1103.197
+144815.2618422254 3.3916345 -1103.1576
+144816.2618423298 3.3915951 -1103.2366
+144817.2618424341 3.3917918 -1103.2168
+144818.2618425384 3.3916738 -1103.197
+144819.2618426427 3.3917131 -1103.2562
+144820.261842747 3.3917131 -1103.2168
+144821.2618428513 3.3915558 -1103.2168
+144822.2618429556 3.3917525 -1103.1774
+144823.2618430599 3.3914769 -1103.1774
+144824.2618431642 3.3916345 -1103.2168
+144825.2618432685 3.3915951 -1103.1576
+144826.2618433728 3.3913982 -1103.197
+144827.2618434771 3.3915162 -1103.1378
+144828.2618435815 3.3914375 -1103.1774
+144829.2618436858 3.3913982 -1103.197
+144830.2618437901 3.3914375 -1103.2168
+144831.2618438944 3.3913195 -1103.197
+144832.2618439987 3.3913195 -1103.1576
+144833.261844103 3.3913195 -1103.2562
+144834.2618442073 3.3913982 -1103.197
+144835.2618443116 3.3914375 -1103.2168
+144836.2618444159 3.3913589 -1103.2959
+144837.2618445202 3.3914375 -1103.197
+144838.2618446245 3.3913589 -1103.2562
+144839.2618447288 3.3914769 -1103.1182
+144840.2618448331 3.3914375 -1103.1576
+144841.2618449375 3.3913589 -1103.1378
+144842.2618450418 3.3914375 -1103.1774
+144843.2618451461 3.3913589 -1103.2562
+144844.2618452504 3.3914375 -1103.2366
+144845.2618453547 3.3914769 -1103.2168
+144846.261845459 3.3913195 -1103.2366
+144847.2618455633 3.3913195 -1103.2562
+144848.2618456676 3.3913982 -1103.1378
+144849.2618457719 3.3913589 -1103.2168
+144850.2618458762 3.3913982 -1103.2168
+144851.2618459805 3.3912802 -1103.197
+144852.2618460848 3.3912802 -1103.2562
+144853.2618461892 3.3912013 -1103.3156
+144854.2618462935 3.3912408 -1103.3353
+144855.2618463978 3.3912408 -1103.2366
+144856.2618465021 3.3912013 -1103.2562
+144857.2618466064 3.3912013 -1103.197
+144858.2618467107 3.3912802 -1103.2366
+144859.261846815 3.3912408 -1103.2562
+144860.2618469193 3.3911619 -1103.1182
+144861.2618470236 3.3911619 -1103.2366
+144862.2618471279 3.3912013 -1103.2562
+144863.2618472322 3.3910439 -1103.2761
+144864.2618473365 3.3910439 -1103.197
+144865.2618474409 3.3910046 -1103.2366
+144866.2618475452 3.3910439 -1103.197
+144867.2618476495 3.3911619 -1103.2366
+144868.2618477538 3.3910439 -1103.2562
+144869.2618478581 3.3910046 -1103.2366
+144870.2618479624 3.3910046 -1103.2366
+144871.2618480667 3.3909259 -1103.2366
+144872.261848171 3.3908863 -1103.2168
+144873.2618482753 3.3908863 -1103.197
+144874.2618483796 3.390847 -1103.1774
+144875.2618484839 3.3908076 -1103.2562
+144876.2618485882 3.390847 -1103.197
+144877.2618486925 3.390729 -1103.2562
+144878.2618487969 3.390847 -1103.2168
+144879.2618489012 3.3908076 -1103.2761
+144880.2618490055 3.3907683 -1103.2761
+144881.2618491098 3.390729 -1103.2366
+144882.2618492141 3.390729 -1103.2366
+144883.2618493184 3.3907683 -1103.0785
+144884.2618494227 3.390729 -1103.197
+144885.261849527 3.3906503 -1103.2562
+144886.2618496313 3.3907683 -1103.197
+144887.2618497356 3.3906503 -1103.3156
+144888.2618498399 3.3906109 -1103.3156
+144889.2618499442 3.390729 -1103.2959
+144890.2618500486 3.390532 -1103.197
+144891.2618501529 3.3906109 -1103.2761
+144892.2618502572 3.390729 -1103.2168
+144893.2618503615 3.3906503 -1103.2168
+144894.2618504658 3.390729 -1103.197
+144895.2618505701 3.3906503 -1103.2959
+144896.2618506744 3.3905714 -1103.197
+144897.2618507787 3.3906109 -1103.1576
+144898.261850883 3.3904927 -1103.2168
+144899.2618509873 3.3906109 -1103.1774
+144900.2618510916 3.390532 -1103.1182
+144901.2618511959 3.3904533 -1103.2366
+144902.2618513003 3.390414 -1103.2562
+144903.2618514046 3.3902564 -1103.1774
+144904.2618515089 3.3902171 -1103.1378
+144905.2618516132 3.3902564 -1103.1182
+144906.2618517175 3.3902171 -1103.2562
+144907.2618518218 3.3902171 -1103.2168
+144908.2618519261 3.3901777 -1103.2562
+144909.2618520304 3.3902171 -1103.1774
+144910.2618521347 3.3901384 -1103.1774
+144911.261852239 3.3900204 -1103.1774
+144912.2618523433 3.390099 -1103.1774
+144913.2618524476 3.389981 -1103.2562
+144914.261852552 3.3900204 -1103.2761
+144915.2618526563 3.3899415 -1103.2761
+144916.2618527606 3.3898628 -1103.2761
+144917.2618528649 3.3898234 -1103.2959
+144918.2618529692 3.3898234 -1103.1774
+144919.2618530735 3.3897841 -1103.1576
+144920.2618531778 3.3897448 -1103.2959
+144921.2618532821 3.3897841 -1103.197
+144922.2618533864 3.3897841 -1103.197
+144923.2618534907 3.3898628 -1103.197
+144924.261853595 3.3897841 -1103.2562
+144925.2618536993 3.3897448 -1103.3156
+144926.2618538036 3.3897054 -1103.2959
+144927.261853908 3.3898234 -1103.1182
+144928.2618540123 3.3897054 -1103.2959
+144929.2618541166 3.3897054 -1103.1774
+144930.2618542209 3.3896265 -1103.197
+144931.2618543252 3.3896265 -1103.1576
+144932.2618544295 3.3896265 -1103.1774
+144933.2618545338 3.3896265 -1103.2168
+144934.2618546381 3.3896658 -1103.0984
+144935.2618547424 3.3895872 -1103.197
+144936.2618548467 3.3897054 -1103.197
+144937.261854951 3.3896658 -1103.1774
+144938.2618550553 3.3897448 -1103.197
+144939.2618551597 3.3896265 -1103.2761
+144940.261855264 3.3897448 -1103.2761
+144941.2618553683 3.3896658 -1103.2562
+144942.2618554726 3.3897054 -1103.1576
+144943.2618555769 3.3897448 -1103.2562
+144944.2618556812 3.3897841 -1103.2168
+144945.2618557855 3.3897054 -1103.1576
+144946.2618558898 3.3897054 -1103.3551
+144947.2618559941 3.3896658 -1103.1774
+144948.2618560984 3.3896658 -1103.2562
+144949.2618562027 3.3897841 -1103.2562
+144950.261856307 3.3897054 -1103.2168
+144951.2618564114 3.3897054 -1103.2761
+144952.2618565157 3.3897841 -1103.2562
+144953.26185662 3.3897841 -1103.2168
+144954.2618567243 3.3897841 -1103.1774
+144955.2618568286 3.3898234 -1103.2366
+144956.2618569329 3.3899021 -1103.1576
+144957.2618570372 3.3899021 -1103.2366
+144958.2618571415 3.389981 -1103.1774
+144959.2618572458 3.3897841 -1103.1774
+144960.2618573501 3.3899415 -1103.2168
+144961.2618574544 3.3900597 -1103.197
+144962.2618575587 3.3900204 -1103.197
+144963.261857663 3.390099 -1103.1182
+144964.2618577674 3.3901777 -1103.2366
+144965.2618578717 3.3901777 -1103.2959
+144966.261857976 3.3900597 -1103.2959
+144967.2618580803 3.3901384 -1103.2366
+144968.2618581846 3.3900597 -1103.197
+144969.2618582889 3.3901777 -1103.1576
+144970.2618583932 3.3901777 -1103.197
+144971.2618584975 3.3902171 -1103.2168
+144972.2618586018 3.390099 -1103.1774
+144973.2618587061 3.3901777 -1103.2562
+144974.2618588104 3.3901777 -1103.2168
+144975.2618589147 3.390099 -1103.3353
+144976.2618590191 3.3900597 -1103.2562
+144977.2618591234 3.3902171 -1103.2562
+144978.2618592277 3.3900597 -1103.197
+144979.261859332 3.3900597 -1103.1774
+144980.2618594363 3.3901777 -1103.2168
+144981.2618595406 3.3900204 -1103.2366
+144982.2618596449 3.390099 -1103.2761
+144983.2618597492 3.3900204 -1103.197
+144984.2618598535 3.3901384 -1103.2366
+144985.2618599578 3.3901384 -1103.197
+144986.2618600621 3.3901777 -1103.2168
+144987.2618601664 3.3901384 -1103.2562
+144988.2618602708 3.389981 -1103.2761
+144989.2618603751 3.3900597 -1103.197
+144990.2618604794 3.3902171 -1103.2761
+144991.2618605837 3.3901777 -1103.2168
+144992.261860688 3.3902171 -1103.2366
+144993.2618607923 3.3901384 -1103.0984
+144994.2618608966 3.390099 -1103.1576
+144995.2618610009 3.390099 -1103.2168
+144996.2618611052 3.3900597 -1103.197
+144997.2618612095 3.390099 -1103.197
+144998.2618613138 3.3901777 -1103.1576
+144999.2618614181 3.3900204 -1103.1576
+145000.2618615224 3.3900597 -1103.2562
+145001.2618616268 3.389981 -1103.2562
+145002.2618617311 3.389981 -1103.197
+145003.2618618354 3.389981 -1103.2168
+145004.2618619397 3.3898628 -1103.2366
+145005.261862044 3.3899021 -1103.2168
+145006.2618621483 3.389981 -1103.2168
+145007.2618622526 3.3898628 -1103.2761
+145008.2618623569 3.3899415 -1103.197
+145009.2618624612 3.3898628 -1103.2168
+145010.2618625655 3.389981 -1103.2761
+145011.2618626698 3.3899021 -1103.197
+145012.2618627741 3.3899021 -1103.197
+145013.2618628785 3.3899415 -1103.2168
+145014.2618629828 3.3898628 -1103.2168
+145015.2618630871 3.3898628 -1103.2168
+145016.2618631914 3.389981 -1103.197
+145017.2618632957 3.389981 -1103.2366
+145018.2618634 3.3898628 -1103.1576
+145019.2618635043 3.3899415 -1103.1774
+145020.2618636086 3.3899415 -1103.2168
+145021.2618637129 3.3899021 -1103.2761
+145022.2618638172 3.3899021 -1103.2562
+145023.2618639215 3.3899415 -1103.2366
+145024.2618640258 3.3899415 -1103.2562
+145025.2618641302 3.3898234 -1103.2761
+145026.2618642345 3.3897054 -1103.2562
+145027.2618643388 3.3897054 -1103.2959
+145028.2618644431 3.3897448 -1103.2168
+145029.2618645474 3.3897054 -1103.1774
+145030.2618646517 3.3897448 -1103.1774
+145031.261864756 3.3897448 -1103.2562
+145032.2618648603 3.3896658 -1103.3156
+145033.2618649646 3.3896265 -1103.2366
+145034.2618650689 3.3897054 -1103.1774
+145035.2618651732 3.3895872 -1103.197
+145036.2618652775 3.3895085 -1103.3353
+145037.2618653819 3.3894298 -1103.1774
+145038.2618654862 3.3894691 -1103.2562
+145039.2618655905 3.3894298 -1103.1774
+145040.2618656948 3.3893905 -1103.1774
+145041.2618657991 3.3894691 -1103.2168
+145042.2618659034 3.3893905 -1103.2366
+145043.2618660077 3.3894298 -1103.2562
+145044.261866112 3.3893116 -1103.1576
+145045.2618662163 3.3893509 -1103.2168
+145046.2618663206 3.3893905 -1103.2959
+145047.2618664249 3.3895085 -1103.2168
+145048.2618665292 3.3894298 -1103.2959
+145049.2618666335 3.3894298 -1103.3353
+145050.2618667379 3.3894691 -1103.2562
+145051.2618668422 3.3895478 -1103.1576
+145052.2618669465 3.3894298 -1103.2168
+145053.2618670508 3.3895085 -1103.1378
+145054.2618671551 3.3894691 -1103.2366
+145055.2618672594 3.3894298 -1103.2562
+145056.2618673637 3.3893905 -1103.2366
+145057.261867468 3.3893509 -1103.2761
+145058.2618675723 3.3894691 -1103.2366
+145059.2618676766 3.3893905 -1103.197
+145060.2618677809 3.3893116 -1103.2168
+145061.2618678852 3.3893116 -1103.2959
+145062.2618679896 3.3893509 -1103.1182
+145063.2618680939 3.3893509 -1103.2366
+145064.2618681982 3.3892722 -1103.2761
+145065.2618683025 3.3893905 -1103.2366
+145066.2618684068 3.3893116 -1103.1774
+145067.2618685111 3.3894298 -1103.2562
+145068.2618686154 3.3892722 -1103.2562
+145069.2618687197 3.3893116 -1103.2168
+145070.261868824 3.3892722 -1103.1182
+145071.2618689283 3.3893116 -1103.2562
+145072.2618690326 3.3892329 -1103.1576
+145073.2618691369 3.3893116 -1103.1576
+145074.2618692413 3.3892329 -1103.2168
+145075.2618693456 3.3892329 -1103.1182
+145076.2618694499 3.3893116 -1103.2366
+145077.2618695542 3.3892329 -1103.2168
+145078.2618696585 3.3891935 -1103.1378
+145079.2618697628 3.3893116 -1103.197
+145080.2618698671 3.3892722 -1103.2168
+145081.2618699714 3.3892329 -1103.1378
+145082.2618700757 3.3893905 -1103.2366
+145083.26187018 3.3893116 -1103.2761
+145084.2618702843 3.3893116 -1103.2761
+145085.2618703886 3.3893116 -1103.2168
+145086.2618704929 3.3893509 -1103.3353
+145087.2618705973 3.3893116 -1103.197
+145088.2618707016 3.3892722 -1103.2562
+145089.2618708059 3.3892722 -1103.2168
+145090.2618709102 3.3893905 -1103.2168
+145091.2618710145 3.3891935 -1103.2366
+145092.2618711188 3.3892329 -1103.2959
+145093.2618712231 3.3892329 -1103.2761
+145094.2618713274 3.3892722 -1103.2761
+145095.2618714317 3.3893509 -1103.2366
+145096.261871536 3.3893509 -1103.1774
+145097.2618716403 3.3893905 -1103.2959
+145098.2618717446 3.3893905 -1103.197
+145099.261871849 3.3893905 -1103.2761
+145100.2618719533 3.3893905 -1103.2959
+145101.2618720576 3.3895085 -1103.2168
+145102.2618721619 3.3893905 -1103.3156
+145103.2618722662 3.3893905 -1103.1378
+145104.2618723705 3.3894298 -1103.2168
+145105.2618724748 3.3894298 -1103.3156
+145106.2618725791 3.3893509 -1103.2959
+145107.2618726834 3.3892722 -1103.2168
+145108.2618727877 3.3893905 -1103.1774
+145109.261872892 3.3893116 -1103.2761
+145110.2618729963 3.3893509 -1103.1774
+145111.2618731007 3.3892722 -1103.1774
+145112.261873205 3.3892722 -1103.2761
+145113.2618733093 3.3892722 -1103.2366
+145114.2618734136 3.3893116 -1103.1378
+145115.2618735179 3.3891542 -1103.2168
+145116.2618736222 3.3891935 -1103.0588
+145117.2618737265 3.3891542 -1103.2761
+145118.2618738308 3.3891149 -1103.197
+145119.2618739351 3.3891935 -1103.197
+145120.2618740394 3.3890755 -1103.2366
+145121.2618741437 3.3891542 -1103.2168
+145122.261874248 3.3889966 -1103.2366
+145123.2618743523 3.3890755 -1103.1774
+145124.2618744567 3.3889966 -1103.2366
+145125.261874561 3.3890359 -1103.197
+145126.2618746653 3.3889573 -1103.1182
+145127.2618747696 3.3889966 -1103.2366
+145128.2618748739 3.3889573 -1103.2959
+145129.2618749782 3.3888392 -1103.197
+145130.2618750825 3.3888786 -1103.2168
+145131.2618751868 3.3889573 -1103.2562
+145132.2618752911 3.3888392 -1103.2366
+145133.2618753954 3.3887999 -1103.197
+145134.2618754997 3.3887999 -1103.1774
+145135.261875604 3.388721 -1103.197
+145136.2618757084 3.388721 -1103.1774
+145137.2618758127 3.388603 -1103.2959
+145138.261875917 3.3886423 -1103.1774
+145139.2618760213 3.3885636 -1103.2168
+145140.2618761256 3.3886423 -1103.1576
+145141.2618762299 3.3885243 -1103.1576
+145142.2618763342 3.388406 -1103.2562
+145143.2618764385 3.388485 -1103.2761
+145144.2618765428 3.388485 -1103.1774
+145145.2618766471 3.388485 -1103.1774
+145146.2618767514 3.388485 -1103.2562
+145147.2618768557 3.3884456 -1103.2168
+145148.2618769601 3.388485 -1103.1378
+145149.2618770644 3.3884456 -1103.2168
+145150.2618771687 3.3885243 -1103.1774
+145151.261877273 3.3884456 -1103.2168
+145152.2618773773 3.3884456 -1103.2168
+145153.2618774816 3.3884456 -1103.197
+145154.2618775859 3.3884456 -1103.197
+145155.2618776902 3.388603 -1103.2366
+145156.2618777945 3.388485 -1103.1576
+145157.2618778988 3.3884456 -1103.2959
+145158.2618780031 3.388485 -1103.197
+145159.2618781074 3.3885243 -1103.2366
+145160.2618782118 3.388406 -1103.1774
+145161.2618783161 3.3885636 -1103.2761
+145162.2618784204 3.3885636 -1103.2366
+145163.2618785247 3.3885243 -1103.2366
+145164.261878629 3.3885243 -1103.1378
+145165.2618787333 3.3885636 -1103.2366
+145166.2618788376 3.388406 -1103.2761
+145167.2618789419 3.3885243 -1103.197
+145168.2618790462 3.388406 -1103.2366
+145169.2618791505 3.388406 -1103.1576
+145170.2618792548 3.3884456 -1103.1774
+145171.2618793591 3.3884456 -1103.2168
+145172.2618794634 3.3884456 -1103.0984
+145173.2618795678 3.388485 -1103.2168
+145174.2618796721 3.388485 -1103.197
+145175.2618797764 3.3885243 -1103.1378
+145176.2618798807 3.3885243 -1103.2168
+145177.261879985 3.3883667 -1103.2562
+145178.2618800893 3.3883667 -1103.197
+145179.2618801936 3.388288 -1103.1576
+145180.2618802979 3.3882487 -1103.197
+145181.2618804022 3.3882487 -1103.2562
+145182.2618805065 3.3882093 -1103.2959
+145183.2618806108 3.3880911 -1103.2366
+145184.2618807151 3.38817 -1103.2761
+145185.2618808195 3.3880911 -1103.2366
+145186.2618809238 3.3880911 -1103.2168
+145187.2618810281 3.3880517 -1103.2366
+145188.2618811324 3.3879337 -1103.2761
+145189.2618812367 3.3879337 -1103.2168
+145190.261881341 3.3878944 -1103.2761
+145191.2618814453 3.3878944 -1103.197
+145192.2618815496 3.3877761 -1103.1774
+145193.2618816539 3.3877761 -1103.1774
+145194.2618817582 3.3878155 -1103.2168
+145195.2618818625 3.3877761 -1103.1774
+145196.2618819668 3.3878155 -1103.2168
+145197.2618820712 3.3877761 -1103.197
+145198.2618821755 3.3878155 -1103.2366
+145199.2618822798 3.3877761 -1103.2366
+145200.2618823841 3.3877761 -1103.1182
+145201.2618824884 3.3878155 -1103.1774
+145202.2618825927 3.3876975 -1103.197
+145203.261882697 3.3877368 -1103.2562
+145204.2618828013 3.3878155 -1103.2761
+145205.2618829056 3.3877368 -1103.2959
+145206.2618830099 3.3877368 -1103.2168
+145207.2618831142 3.3876975 -1103.2168
+145208.2618832185 3.3877368 -1103.2761
+145209.2618833228 3.3876188 -1103.1576
+145210.2618834272 3.3876581 -1103.2761
+145211.2618835315 3.3876188 -1103.2562
+145212.2618836358 3.3876188 -1103.2168
+145213.2618837401 3.3875794 -1103.2959
+145214.2618838444 3.3875794 -1103.2761
+145215.2618839487 3.3875005 -1103.1182
+145216.261884053 3.3875005 -1103.2366
+145217.2618841573 3.3875401 -1103.197
+145218.2618842616 3.3874218 -1103.2366
+145219.2618843659 3.3875005 -1103.1576
+145220.2618844702 3.3875005 -1103.2761
+145221.2618845745 3.3873825 -1103.2168
+145222.2618846789 3.3874218 -1103.197
+145223.2618847832 3.3872645 -1103.2562
+145224.2618848875 3.3873432 -1103.1774
+145225.2618849918 3.3872252 -1103.1774
+145226.2618850961 3.3872252 -1103.1576
+145227.2618852004 3.3871856 -1103.1774
+145228.2618853047 3.3871462 -1103.2366
+145229.261885409 3.3871069 -1103.2168
+145230.2618855133 3.3871069 -1103.1774
+145231.2618856176 3.3871462 -1103.1774
+145232.2618857219 3.3871462 -1103.0984
+145233.2618858262 3.3870676 -1103.2168
+145234.2618859306 3.3871069 -1103.2562
+145235.2618860349 3.3871069 -1103.2168
+145236.2618861392 3.3870676 -1103.2562
+145237.2618862435 3.3870676 -1103.3156
+145238.2618863478 3.3870282 -1103.1774
+145239.2618864521 3.3870676 -1103.2562
+145240.2618865564 3.3870282 -1103.2959
+145241.2618866607 3.3870282 -1103.197
+145242.261886765 3.3870676 -1103.2562
+145243.2618868693 3.3869495 -1103.2562
+145244.2618869736 3.3870282 -1103.2959
+145245.2618870779 3.3869889 -1103.1576
+145246.2618871822 3.3869889 -1103.2168
+145247.2618872866 3.3869889 -1103.2761
+145248.2618873909 3.3869102 -1103.2366
+145249.2618874952 3.3869495 -1103.1774
+145250.2618875995 3.3869889 -1103.2366
+145251.2618877038 3.3868313 -1103.2366
+145252.2618878081 3.3869495 -1103.2959
+145253.2618879124 3.3869102 -1103.197
+145254.2618880167 3.3869889 -1103.1774
+145255.261888121 3.3870676 -1103.197
+145256.2618882253 3.3869495 -1103.197
+145257.2618883296 3.3869495 -1103.3156
+145258.2618884339 3.3868706 -1103.197
+145259.2618885383 3.3869889 -1103.197
+145260.2618886426 3.3869102 -1103.197
+145261.2618887469 3.3868313 -1103.2366
+145262.2618888512 3.3869102 -1103.2168
+145263.2618889555 3.3867919 -1103.2761
+145264.2618890598 3.3867133 -1103.197
+145265.2618891641 3.3867133 -1103.1774
+145266.2618892684 3.3867919 -1103.2366
+145267.2618893727 3.3867526 -1103.2168
+145268.261889477 3.3868706 -1103.2959
+145269.2618895813 3.3867133 -1103.2761
+145270.2618896856 3.3865952 -1103.2959
+145271.26188979 3.3865952 -1103.197
+145272.2618898943 3.3865557 -1103.3156
+145273.2618899986 3.3865163 -1103.197
+145274.2618901029 3.3863983 -1103.2562
+145275.2618902072 3.386477 -1103.2761
+145276.2618903115 3.386477 -1103.197
+145277.2618904158 3.3864377 -1103.1774
+145278.2618905201 3.3863196 -1103.0984
+145279.2618906244 3.3863196 -1103.1576
+145280.2618907287 3.386359 -1103.197
+145281.261890833 3.3862803 -1103.2168
+145282.2618909373 3.3862014 -1103.1378
+145283.2618910417 3.3863196 -1103.2366
+145284.261891146 3.386162 -1103.3156
+145285.2618912503 3.3862803 -1103.2168
+145286.2618913546 3.386162 -1103.2959
+145287.2618914589 3.3860834 -1103.2366
+145288.2618915632 3.3861227 -1103.2366
+145289.2618916675 3.386044 -1103.2959
+145290.2618917718 3.3861227 -1103.2959
+145291.2618918761 3.386044 -1103.197
+145292.2618919804 3.3860834 -1103.2562
+145293.2618920847 3.3860834 -1103.2168
+145294.261892189 3.3862014 -1103.2168
+145295.2618922933 3.386044 -1103.197
+145296.2618923977 3.3860047 -1103.2168
+145297.261892502 3.386044 -1103.2562
+145298.2618926063 3.3860834 -1103.197
+145299.2618927106 3.3860047 -1103.197
+145300.2618928149 3.3862014 -1103.1774
+145301.2618929192 3.386044 -1103.1576
+145302.2618930235 3.3860047 -1103.2168
+145303.2618931278 3.3859651 -1103.197
+145304.2618932321 3.3859258 -1103.2562
+145305.2618933364 3.3858864 -1103.2168
+145306.2618934407 3.3860047 -1103.2366
+145307.261893545 3.3859651 -1103.197
+145308.2618936494 3.3861227 -1103.2366
+145309.2618937537 3.3860834 -1103.2761
+145310.261893858 3.386044 -1103.197
+145311.2618939623 3.3859651 -1103.2366
+145312.2618940666 3.3860047 -1103.1576
+145313.2618941709 3.3860834 -1103.197
+145314.2618942752 3.386044 -1103.2168
+145315.2618943795 3.3860834 -1103.1378
+145316.2618944838 3.3860834 -1103.2366
+145317.2618945881 3.3861227 -1103.2959
+145318.2618946924 3.386162 -1103.2168
+145319.2618947967 3.3860834 -1103.197
+145320.2618949011 3.3862014 -1103.2959
+145321.2618950054 3.386162 -1103.1774
+145322.2618951097 3.3860834 -1103.2761
+145323.261895214 3.3862407 -1103.2168
+145324.2618953183 3.3861227 -1103.2168
+145325.2618954226 3.3862014 -1103.1774
+145326.2618955269 3.3862014 -1103.1774
+145327.2618956312 3.3861227 -1103.2562
+145328.2618957355 3.386162 -1103.3551
+145329.2618958398 3.3860834 -1103.1774
+145330.2618959441 3.386162 -1103.1774
+145331.2618960484 3.3863196 -1103.2959
+145332.2618961527 3.3863983 -1103.2761
+145333.2618962571 3.3862014 -1103.2959
+145334.2618963614 3.3862803 -1103.2366
+145335.2618964657 3.3863983 -1103.1774
+145336.26189657 3.386477 -1103.2168
+145337.2618966743 3.3863196 -1103.197
+145338.2618967786 3.3863983 -1103.197
+145339.2618968829 3.3862803 -1103.2562
+145340.2618969872 3.3862803 -1103.197
+145341.2618970915 3.386359 -1103.2562
+145342.2618971958 3.3862407 -1103.197
+145343.2618973001 3.3862014 -1103.2366
+145344.2618974044 3.3862407 -1103.1774
+145345.2618975088 3.3860834 -1103.2562
+145346.2618976131 3.386162 -1103.2168
+145347.2618977174 3.386044 -1103.2761
+145348.2618978217 3.3860834 -1103.2562
+145349.261897926 3.3860834 -1103.2366
+145350.2618980303 3.3860047 -1103.2959
+145351.2618981346 3.3860834 -1103.197
+145352.2618982389 3.386044 -1103.2562
+145353.2618983432 3.386044 -1103.2562
+145354.2618984475 3.3860047 -1103.3156
+145355.2618985518 3.3860834 -1103.197
+145356.2618986561 3.3859258 -1103.2168
+145357.2618987605 3.3859258 -1103.2562
+145358.2618988648 3.3858078 -1103.2959
+145359.2618989691 3.3860047 -1103.2168
+145360.2618990734 3.3858078 -1103.2959
+145361.2618991777 3.3858471 -1103.1576
+145362.261899282 3.3859651 -1103.2562
+145363.2618993863 3.3858471 -1103.197
+145364.2618994906 3.3857684 -1103.2562
+145365.2618995949 3.3857291 -1103.2168
+145366.2618996992 3.3857684 -1103.1774
+145367.2618998035 3.3857291 -1103.197
+145368.2618999078 3.3856897 -1103.2761
+145369.2619000121 3.3856897 -1103.2168
+145370.2619001165 3.3856502 -1103.1378
+145371.2619002208 3.3856502 -1103.197
+145372.2619003251 3.3857684 -1103.2168
+145373.2619004294 3.3856897 -1103.2562
+145374.2619005337 3.3855715 -1103.197
+145375.261900638 3.3856108 -1103.2562
+145376.2619007423 3.3855321 -1103.2562
+145377.2619008466 3.3856108 -1103.2959
+145378.2619009509 3.3854535 -1103.2366
+145379.2619010552 3.3854928 -1103.1774
+145380.2619011595 3.3855715 -1103.1576
+145381.2619012638 3.3854141 -1103.1774
+145382.2619013682 3.3854141 -1103.197
+145383.2619014725 3.3854535 -1103.2168
+145384.2619015768 3.3854141 -1103.197
+145385.2619016811 3.3853748 -1103.2959
+145386.2619017854 3.3854928 -1103.2168
+145387.2619018897 3.3854928 -1103.197
+145388.261901994 3.3854141 -1103.2761
+145389.2619020983 3.3854141 -1103.197
+145390.2619022026 3.3854928 -1103.1576
+145391.2619023069 3.3854141 -1103.2366
+145392.2619024112 3.3854928 -1103.2366
+145393.2619025155 3.3854535 -1103.3156
+145394.2619026199 3.3854535 -1103.2761
+145395.2619027242 3.3853352 -1103.2168
+145396.2619028285 3.3853352 -1103.2168
+145397.2619029328 3.3853352 -1103.2761
+145398.2619030371 3.3852959 -1103.2562
+145399.2619031414 3.3854141 -1103.2168
+145400.2619032457 3.3852959 -1103.2168
+145401.26190335 3.3853352 -1103.2366
+145402.2619034543 3.3851385 -1103.2168
+145403.2619035586 3.3852172 -1103.2366
+145404.2619036629 3.3851385 -1103.2959
+145405.2619037672 3.3851779 -1103.1774
+145406.2619038715 3.3852172 -1103.2168
+145407.2619039759 3.3850203 -1103.2761
+145408.2619040802 3.3851385 -1103.1774
+145409.2619041845 3.3851385 -1103.2761
+145410.2619042888 3.3850992 -1103.197
+145411.2619043931 3.3851385 -1103.2168
+145412.2619044974 3.3850598 -1103.2761
+145413.2619046017 3.3851385 -1103.2366
+145414.261904706 3.3851779 -1103.1774
+145415.2619048103 3.3851385 -1103.1774
+145416.2619049146 3.3850992 -1103.1378
+145417.2619050189 3.3852172 -1103.2562
+145418.2619051232 3.3851385 -1103.2562
+145419.2619052276 3.3852172 -1103.2168
+145420.2619053319 3.3852172 -1103.2562
+145421.2619054362 3.3850992 -1103.1378
+145422.2619055405 3.3851779 -1103.197
+145423.2619056448 3.3851779 -1103.2366
+145424.2619057491 3.3852172 -1103.2562
+145425.2619058534 3.3852172 -1103.2959
+145426.2619059577 3.3852565 -1103.2562
+145427.261906062 3.3853352 -1103.1774
+145428.2619061663 3.3851779 -1103.2168
+145429.2619062706 3.3853748 -1103.197
+145430.2619063749 3.3854141 -1103.1576
+145431.2619064793 3.3852172 -1103.2761
+145432.2619065836 3.3852959 -1103.2366
+145433.2619066879 3.3852565 -1103.197
+145434.2619067922 3.3853352 -1103.2562
+145435.2619068965 3.3852565 -1103.1774
+145436.2619070008 3.3852565 -1103.2168
+145437.2619071051 3.3852565 -1103.2168
+145438.2619072094 3.3852172 -1103.2168
+145439.2619073137 3.3851779 -1103.1576
+145440.261907418 3.3851779 -1103.2168
+145441.2619075223 3.3851385 -1103.2761
+145442.2619076266 3.3850598 -1103.2168
+145443.261907731 3.3849809 -1103.2761
+145444.2619078353 3.3850203 -1103.197
+145445.2619079396 3.3849809 -1103.2562
+145446.2619080439 3.3849809 -1103.2168
+145447.2619081482 3.3849022 -1103.3353
+145448.2619082525 3.3848236 -1103.2366
+145449.2619083568 3.3847842 -1103.2366
+145450.2619084611 3.3847842 -1103.3156
+145451.2619085654 3.3846266 -1103.2761
+145452.2619086697 3.3847053 -1103.2761
+145453.261908774 3.3846266 -1103.1774
+145454.2619088783 3.3845086 -1103.2761
+145455.2619089826 3.384666 -1103.2761
+145456.261909087 3.3844693 -1103.1774
+145457.2619091913 3.3845086 -1103.2168
+145458.2619092956 3.3844693 -1103.1182
+145459.2619093999 3.3845086 -1103.1774
+145460.2619095042 3.3844693 -1103.2168
+145461.2619096085 3.3845479 -1103.1774
+145462.2619097128 3.3844299 -1103.2366
+145463.2619098171 3.3845479 -1103.1774
+145464.2619099214 3.3846266 -1103.2959
+145465.2619100257 3.3846266 -1103.2959
+145466.26191013 3.3845873 -1103.2562
+145467.2619102343 3.3845479 -1103.2959
+145468.2619103387 3.3845873 -1103.2959
+145469.261910443 3.384666 -1103.1378
+145470.2619105473 3.3846266 -1103.2562
+145471.2619106516 3.3846266 -1103.2366
+145472.2619107559 3.384666 -1103.3156
+145473.2619108602 3.3845479 -1103.2761
+145474.2619109645 3.3845873 -1103.2168
+145475.2619110688 3.384666 -1103.2761
+145476.2619111731 3.3845479 -1103.2366
+145477.2619112774 3.3845479 -1103.3156
+145478.2619113817 3.3846266 -1103.2562
+145479.261911486 3.3845479 -1103.197
+145480.2619115904 3.3846266 -1103.2959
+145481.2619116947 3.3843904 -1103.2366
+145482.261911799 3.3845479 -1103.197
+145483.2619119033 3.3844693 -1103.1774
+145484.2619120076 3.3845086 -1103.1774
+145485.2619121119 3.3845086 -1103.2761
+145486.2619122162 3.3844693 -1103.1576
+145487.2619123205 3.3845479 -1103.2959
+145488.2619124248 3.3846266 -1103.2168
+145489.2619125291 3.3845873 -1103.2761
+145490.2619126334 3.3846266 -1103.2366
+145491.2619127377 3.3846266 -1103.2562
+145492.261912842 3.3847053 -1103.2366
+145493.2619129464 3.3845479 -1103.197
+145494.2619130507 3.3845873 -1103.197
+145495.261913155 3.3845479 -1103.197
+145496.2619132593 3.3844693 -1103.2366
+145497.2619133636 3.3845873 -1103.2562
+145498.2619134679 3.3845479 -1103.1378
+145499.2619135722 3.3844299 -1103.1378
+145500.2619136765 3.3844299 -1103.2366
+145501.2619137808 3.3844299 -1103.2366
+145502.2619138851 3.3843904 -1103.2168
+145503.2619139894 3.3843117 -1103.197
+145504.2619140937 3.384351 -1103.197
+145505.2619141981 3.384351 -1103.2168
+145506.2619143024 3.384233 -1103.2168
+145507.2619144067 3.3841543 -1103.2366
+145508.261914511 3.3842723 -1103.1774
+145509.2619146153 3.3841937 -1103.1774
+145510.2619147196 3.3841543 -1103.2168
+145511.2619148239 3.3840754 -1103.2562
+145512.2619149282 3.3840754 -1103.1774
+145513.2619150325 3.3840754 -1103.1576
+145514.2619151368 3.3840361 -1103.1576
+145515.2619152411 3.3839967 -1103.1774
+145516.2619153454 3.3840361 -1103.2366
+145517.2619154498 3.3841147 -1103.197
+145518.2619155541 3.3840754 -1103.2168
+145519.2619156584 3.3839967 -1103.2761
+145520.2619157627 3.3841147 -1103.1774
+145521.261915867 3.3840361 -1103.1774
+145522.2619159713 3.3840361 -1103.197
+145523.2619160756 3.3841147 -1103.2168
+145524.2619161799 3.3841147 -1103.2366
+145525.2619162842 3.3839967 -1103.2761
+145526.2619163885 3.3840754 -1103.2366
+145527.2619164928 3.3841543 -1103.2366
+145528.2619165971 3.3840754 -1103.2761
+145529.2619167014 3.3840361 -1103.2562
+145530.2619168058 3.3840361 -1103.2168
+145531.2619169101 3.3840754 -1103.1774
+145532.2619170144 3.3841543 -1103.2168
+145533.2619171187 3.3840361 -1103.2562
+145534.261917223 3.3841147 -1103.1378
+145535.2619173273 3.3840361 -1103.2761
+145536.2619174316 3.3841543 -1103.1774
+145537.2619175359 3.3841147 -1103.2959
+145538.2619176402 3.3840754 -1103.1182
+145539.2619177445 3.3840754 -1103.197
+145540.2619178488 3.3840361 -1103.1774
+145541.2619179531 3.383918 -1103.197
+145542.2619180575 3.3839967 -1103.197
+145543.2619181618 3.3839574 -1103.1182
+145544.2619182661 3.3840361 -1103.3353
+145545.2619183704 3.3840361 -1103.2761
+145546.2619184747 3.3839574 -1103.2562
+145547.261918579 3.3839574 -1103.2959
+145548.2619186833 3.3838787 -1103.2761
+145549.2619187876 3.383918 -1103.2562
+145550.2619188919 3.383918 -1103.2562
+145551.2619189962 3.3838394 -1103.1378
+145552.2619191005 3.3837998 -1103.2562
+145553.2619192048 3.3837998 -1103.2366
+145554.2619193092 3.3838787 -1103.197
+145555.2619194135 3.3837998 -1103.2761
+145556.2619195178 3.3837605 -1103.2761
+145557.2619196221 3.3837211 -1103.2761
+145558.2619197264 3.3836031 -1103.197
+145559.2619198307 3.3837211 -1103.2366
+145560.261919935 3.3836031 -1103.2168
+145561.2619200393 3.3834848 -1103.2168
+145562.2619201436 3.3835638 -1103.197
+145563.2619202479 3.3835244 -1103.2168
+145564.2619203522 3.3834455 -1103.2168
+145565.2619204565 3.3835638 -1103.197
+145566.2619205609 3.3833668 -1103.197
+145567.2619206652 3.3833668 -1103.2959
+145568.2619207695 3.3833275 -1103.197
+145569.2619208738 3.3833275 -1103.2761
+145570.2619209781 3.3833668 -1103.197
+145571.2619210824 3.3833275 -1103.197
+145572.2619211867 3.3834062 -1103.2168
+145573.261921291 3.3832095 -1103.2168
+145574.2619213953 3.3833275 -1103.2562
+145575.2619214996 3.3832488 -1103.197
+145576.2619216039 3.3832095 -1103.1378
+145577.2619217082 3.3831306 -1103.197
+145578.2619218125 3.3830912 -1103.2562
+145579.2619219169 3.3829732 -1103.2168
+145580.2619220212 3.3829339 -1103.2168
+145581.2619221255 3.3828549 -1103.2366
+145582.2619222298 3.3829339 -1103.1378
+145583.2619223341 3.3829732 -1103.2562
+145584.2619224384 3.3829339 -1103.197
+145585.2619225427 3.3828549 -1103.2366
+145586.261922647 3.3828945 -1103.2761
+145587.2619227513 3.3828945 -1103.2959
+145588.2619228556 3.3828549 -1103.2959
+145589.2619229599 3.3827369 -1103.3156
+145590.2619230642 3.3828945 -1103.3156
+145591.2619231686 3.3828156 -1103.197
+145592.2619232729 3.3828156 -1103.1182
+145593.2619233772 3.3826582 -1103.2366
+145594.2619234815 3.3828549 -1103.2366
+145595.2619235858 3.3828156 -1103.2168
+145596.2619236901 3.3827369 -1103.2761
+145597.2619237944 3.3827763 -1103.197
+145598.2619238987 3.3828945 -1103.197
+145599.261924003 3.3828945 -1103.0984
+145600.2619241073 3.3829732 -1103.2168
+145601.2619242116 3.3829732 -1103.2168
+145602.2619243159 3.3828549 -1103.1576
+145603.2619244203 3.3828156 -1103.1774
+145604.2619245246 3.3828945 -1103.2366
+145605.2619246289 3.3829339 -1103.2366
+145606.2619247332 3.3828156 -1103.1576
+145607.2619248375 3.3829339 -1103.2761
+145608.2619249418 3.3829339 -1103.3156
+145609.2619250461 3.3828945 -1103.2761
+145610.2619251504 3.3829732 -1103.2562
+145611.2619252547 3.3828945 -1103.1774
+145612.261925359 3.3828945 -1103.1774
+145613.2619254633 3.3828945 -1103.2366
+145614.2619255676 3.3828945 -1103.2168
+145615.2619256719 3.3829339 -1103.2761
+145616.2619257763 3.3828945 -1103.1774
+145617.2619258806 3.3829339 -1103.3156
+145618.2619259849 3.3829339 -1103.1774
+145619.2619260892 3.3829732 -1103.197
+145620.2619261935 3.3829339 -1103.2168
+145621.2619262978 3.3827763 -1103.1774
+145622.2619264021 3.3828549 -1103.1378
+145623.2619265064 3.3827763 -1103.2168
+145624.2619266107 3.3828549 -1103.2168
+145625.261926715 3.3830125 -1103.2959
+145626.2619268193 3.3829732 -1103.2168
+145627.2619269236 3.3828945 -1103.2366
+145628.261927028 3.3828156 -1103.2761
+145629.2619271323 3.3828549 -1103.1576
+145630.2619272366 3.3827369 -1103.2562
+145631.2619273409 3.3828156 -1103.2168
+145632.2619274452 3.3827763 -1103.2168
+145633.2619275495 3.3828156 -1103.1774
+145634.2619276538 3.3828549 -1103.2761
+145635.2619277581 3.3828156 -1103.2562
+145636.2619278624 3.3827763 -1103.1378
+145637.2619279667 3.3828156 -1103.3156
+145638.261928071 3.3828156 -1103.2562
+145639.2619281753 3.3826976 -1103.197
+145640.2619282797 3.3826976 -1103.1774
+145641.261928384 3.3828156 -1103.2168
+145642.2619284883 3.3827763 -1103.1378
+145643.2619285926 3.3827763 -1103.1774
+145644.2619286969 3.3826976 -1103.2366
+145645.2619288012 3.3828549 -1103.2562
+145646.2619289055 3.3827763 -1103.2562
+145647.2619290098 3.3828549 -1103.2959
+145648.2619291141 3.3828156 -1103.1774
+145649.2619292184 3.3827763 -1103.197
+145650.2619293227 3.3827763 -1103.2168
+145651.261929427 3.3827763 -1103.2168
+145652.2619295313 3.3827369 -1103.2168
+145653.2619296357 3.3827763 -1103.197
+145654.26192974 3.3828549 -1103.2959
+145655.2619298443 3.3827763 -1103.2562
+145656.2619299486 3.3827763 -1103.2761
+145657.2619300529 3.3826976 -1103.2562
+145658.2619301572 3.3827763 -1103.197
+145659.2619302615 3.3827369 -1103.2562
+145660.2619303658 3.3826582 -1103.2562
+145661.2619304701 3.3826582 -1103.197
+145662.2619305744 3.3826582 -1103.3156
+145663.2619306787 3.3826582 -1103.1774
+145664.261930783 3.38254 -1103.1774
+145665.2619308874 3.3825006 -1103.2168
+145666.2619309917 3.3825793 -1103.1774
+145667.261931096 3.3825793 -1103.197
+145668.2619312003 3.38254 -1103.2562
+145669.2619313046 3.38254 -1103.1774
+145670.2619314089 3.3826189 -1103.2761
+145671.2619315132 3.3825006 -1103.1576
+145672.2619316175 3.3826189 -1103.1774
+145673.2619317218 3.3826189 -1103.2366
+145674.2619318261 3.3825006 -1103.2366
+145675.2619319304 3.3826976 -1103.2168
+145676.2619320347 3.38254 -1103.1774
+145677.2619321391 3.3825006 -1103.197
+145678.2619322434 3.38254 -1103.2366
+145679.2619323477 3.3825793 -1103.197
+145680.261932452 3.38254 -1103.2761
+145681.2619325563 3.3824613 -1103.1182
+145682.2619326606 3.38254 -1103.1378
+145683.2619327649 3.3825793 -1103.3551
+145684.2619328692 3.3826582 -1103.2366
+145685.2619329735 3.3825006 -1103.1378
+145686.2619330778 3.38254 -1103.197
+145687.2619331821 3.38254 -1103.2761
+145688.2619332864 3.3825793 -1103.2168
+145689.2619333908 3.38254 -1103.2761
+145690.2619334951 3.3826189 -1103.197
+145691.2619335994 3.3825793 -1103.2959
+145692.2619337037 3.3825793 -1103.3156
+145693.261933808 3.3825793 -1103.2562
+145694.2619339123 3.3825006 -1103.1774
+145695.2619340166 3.38254 -1103.197
+145696.2619341209 3.3825793 -1103.3156
+145697.2619342252 3.3825793 -1103.2168
+145698.2619343295 3.3825006 -1103.1774
+145699.2619344338 3.38254 -1103.2761
+145700.2619345381 3.3825006 -1103.2366
+145701.2619346424 3.3824613 -1103.2761
+145702.2619347468 3.3825006 -1103.1774
+145703.2619348511 3.3825006 -1103.1378
+145704.2619349554 3.38254 -1103.2761
+145705.2619350597 3.3825006 -1103.2168
+145706.261935164 3.3823826 -1103.1378
+145707.2619352683 3.382422 -1103.1576
+145708.2619353726 3.3825006 -1103.2562
+145709.2619354769 3.382422 -1103.1774
+145710.2619355812 3.382422 -1103.197
+145711.2619356855 3.3823433 -1103.2168
+145712.2619357898 3.3824613 -1103.1774
+145713.2619358941 3.3823433 -1103.197
+145714.2619359985 3.382422 -1103.2168
+145715.2619361028 3.382422 -1103.2562
+145716.2619362071 3.3823433 -1103.2562
+145717.2619363114 3.3825006 -1103.3156
+145718.2619364157 3.3823826 -1103.1576
+145719.26193652 3.3823826 -1103.3156
+145720.2619366243 3.3824613 -1103.2366
+145721.2619367286 3.3823433 -1103.197
+145722.2619368329 3.3823826 -1103.2562
+145723.2619369372 3.382304 -1103.2562
+145724.2619370415 3.3823433 -1103.3156
+145725.2619371458 3.3822644 -1103.2168
+145726.2619372502 3.382304 -1103.2168
+145727.2619373545 3.382304 -1103.197
+145728.2619374588 3.382304 -1103.197
+145729.2619375631 3.3822644 -1103.2366
+145730.2619376674 3.3823433 -1103.197
+145731.2619377717 3.382304 -1103.2761
+145732.261937876 3.3823433 -1103.2366
+145733.2619379803 3.3822644 -1103.1576
+145734.2619380846 3.3822644 -1103.2366
+145735.2619381889 3.382225 -1103.2366
+145736.2619382932 3.3823433 -1103.2366
+145737.2619383975 3.3822644 -1103.2562
+145738.2619385018 3.382225 -1103.2366
+145739.2619386062 3.382304 -1103.2168
+145740.2619387105 3.3823433 -1103.2366
+145741.2619388148 3.382225 -1103.2562
+145742.2619389191 3.3821857 -1103.197
+145743.2619390234 3.3821857 -1103.2562
+145744.2619391277 3.3821464 -1103.2562
+145745.261939232 3.3822644 -1103.197
+145746.2619393363 3.3820677 -1103.2168
+145747.2619394406 3.3820677 -1103.1182
+145748.2619395449 3.3820283 -1103.2366
+145749.2619396492 3.3820283 -1103.2562
+145750.2619397535 3.3820677 -1103.197
+145751.2619398579 3.3819494 -1103.2761
+145752.2619399622 3.3820283 -1103.0785
+145753.2619400665 3.3820677 -1103.1774
+145754.2619401708 3.3820283 -1103.1774
+145755.2619402751 3.382107 -1103.2959
+145756.2619403794 3.382107 -1103.2168
+145757.2619404837 3.382107 -1103.197
+145758.261940588 3.382107 -1103.197
+145759.2619406923 3.3821464 -1103.197
+145760.2619407966 3.3820677 -1103.197
+145761.2619409009 3.3821464 -1103.2761
+145762.2619410052 3.3821464 -1103.2562
+145763.2619411096 3.382225 -1103.1576
+145764.2619412139 3.3821857 -1103.2366
+145765.2619413182 3.3821857 -1103.2168
+145766.2619414225 3.3821464 -1103.1576
+145767.2619415268 3.3822644 -1103.2168
+145768.2619416311 3.3822644 -1103.2562
+145769.2619417354 3.3820677 -1103.2959
+145770.2619418397 3.3821464 -1103.1182
+145771.261941944 3.382225 -1103.2761
+145772.2619420483 3.3821857 -1103.2761
+145773.2619421526 3.382225 -1103.1774
+145774.2619422569 3.3822644 -1103.197
+145775.2619423612 3.3821464 -1103.1576
+145776.2619424656 3.382225 -1103.1576
+145777.2619425699 3.382225 -1103.2761
+145778.2619426742 3.3822644 -1103.1774
+145779.2619427785 3.3820677 -1103.2168
+145780.2619428828 3.3821464 -1103.1576
+145781.2619429871 3.3820677 -1103.2366
+145782.2619430914 3.3820283 -1103.2761
+145783.2619431957 3.3820677 -1103.1576
+145784.2619433 3.382107 -1103.2959
+145785.2619434043 3.3820283 -1103.2366
+145786.2619435086 3.3820283 -1103.2366
+145787.2619436129 3.381989 -1103.197
+145788.2619437173 3.3820283 -1103.2761
+145789.2619438216 3.3819101 -1103.2366
+145790.2619439259 3.3819101 -1103.2959
+145791.2619440302 3.3819101 -1103.1774
+145792.2619441345 3.3818707 -1103.2168
+145793.2619442388 3.3818707 -1103.1774
+145794.2619443431 3.3819101 -1103.2562
+145795.2619444474 3.3818707 -1103.2562
+145796.2619445517 3.3818707 -1103.2168
+145797.261944656 3.3817527 -1103.197
+145798.2619447603 3.3818314 -1103.197
+145799.2619448646 3.3819101 -1103.2959
+145800.261944969 3.3818314 -1103.2761
+145801.2619450733 3.3819101 -1103.2366
+145802.2619451776 3.3817527 -1103.2168
+145803.2619452819 3.3818707 -1103.2761
+145804.2619453862 3.3819101 -1103.1378
+145805.2619454905 3.3818314 -1103.2959
+145806.2619455948 3.3819101 -1103.2366
+145807.2619456991 3.3817134 -1103.2366
+145808.2619458034 3.3819101 -1103.1576
+145809.2619459077 3.3818707 -1103.2761
+145810.261946012 3.3819101 -1103.2168
+145811.2619461163 3.3817921 -1103.2761
+145812.2619462206 3.3817921 -1103.2562
+145813.261946325 3.3818314 -1103.1774
+145814.2619464293 3.3817921 -1103.2562
+145815.2619465336 3.3817921 -1103.2959
+145816.2619466379 3.3817527 -1103.2761
+145817.2619467422 3.3817527 -1103.2562
+145818.2619468465 3.3817527 -1103.2562
+145819.2619469508 3.3817527 -1103.1182
+145820.2619470551 3.3817134 -1103.2562
+145821.2619471594 3.3817921 -1103.2168
+145822.2619472637 3.3817134 -1103.3551
+145823.261947368 3.3817134 -1103.2761
+145824.2619474723 3.3817527 -1103.1378
+145825.2619475767 3.3818314 -1103.197
+145826.261947681 3.3816741 -1103.1576
+145827.2619477853 3.3817134 -1103.1576
+145828.2619478896 3.3816741 -1103.2366
+145829.2619479939 3.3816345 -1103.1774
+145830.2619480982 3.3817134 -1103.2168
+145831.2619482025 3.3816345 -1103.2168
+145832.2619483068 3.3815558 -1103.2562
+145833.2619484111 3.3815951 -1103.197
+145834.2619485154 3.3815951 -1103.2366
+145835.2619486197 3.3816345 -1103.1774
+145836.261948724 3.3816345 -1103.1774
+145837.2619488284 3.3815558 -1103.2562
+145838.2619489327 3.3815165 -1103.1576
+145839.261949037 3.3815558 -1103.2366
+145840.2619491413 3.3814378 -1103.2761
+145841.2619492456 3.3814771 -1103.2366
+145842.2619493499 3.3813591 -1103.197
+145843.2619494542 3.3814771 -1103.2562
+145844.2619495585 3.3815558 -1103.2168
+145845.2619496628 3.3815165 -1103.2168
+145846.2619497671 3.3814771 -1103.2168
+145847.2619498714 3.3814771 -1103.1576
+145848.2619499757 3.3813591 -1103.2168
+145849.2619500801 3.3815165 -1103.2562
+145850.2619501844 3.3814771 -1103.2168
+145851.2619502887 3.3813984 -1103.2366
+145852.261950393 3.3814771 -1103.2761
+145853.2619504973 3.3814378 -1103.197
+145854.2619506016 3.3813591 -1103.2562
+145855.2619507059 3.3814771 -1103.1576
+145856.2619508102 3.3813591 -1103.2168
+145857.2619509145 3.3813591 -1103.2959
+145858.2619510188 3.3813984 -1103.1576
+145859.2619511231 3.3813591 -1103.2959
+145860.2619512274 3.3813195 -1103.2366
+145861.2619513317 3.3813195 -1103.1576
+145862.2619514361 3.3813984 -1103.1182
+145863.2619515404 3.3813195 -1103.2761
+145864.2619516447 3.3813984 -1103.197
+145865.261951749 3.3813591 -1103.3353
+145866.2619518533 3.3813195 -1103.2959
+145867.2619519576 3.3812802 -1103.3156
+145868.2619520619 3.3812802 -1103.197
+145869.2619521662 3.3811622 -1103.1378
+145870.2619522705 3.3811622 -1103.197
+145871.2619523748 3.3812015 -1103.197
+145872.2619524791 3.3811228 -1103.2366
+145873.2619525834 3.3810046 -1103.1774
+145874.2619526878 3.3811228 -1103.197
+145875.2619527921 3.3810835 -1103.2562
+145876.2619528964 3.3809652 -1103.0984
+145877.2619530007 3.3809652 -1103.2168
+145878.261953105 3.3809652 -1103.2959
+145879.2619532093 3.3809652 -1103.2168
+145880.2619533136 3.3808866 -1103.2562
+145881.2619534179 3.3809652 -1103.2366
+145882.2619535222 3.3808079 -1103.1774
+145883.2619536265 3.3808866 -1103.3353
+145884.2619537308 3.3808472 -1103.2366
+145885.2619538351 3.3809259 -1103.2959
+145886.2619539395 3.380729 -1103.2562
+145887.2619540438 3.3808079 -1103.2168
+145888.2619541481 3.3807685 -1103.2168
+145889.2619542524 3.3807685 -1103.1576
+145890.2619543567 3.3808079 -1103.2168
+145891.261954461 3.3806896 -1103.1774
+145892.2619545653 3.3806503 -1103.2168
+145893.2619546696 3.3808079 -1103.2366
+145894.2619547739 3.3806503 -1103.1576
+145895.2619548782 3.3807685 -1103.2562
+145896.2619549825 3.3807685 -1103.2168
+145897.2619550868 3.3806896 -1103.1576
+145898.2619551911 3.3805323 -1103.1378
+145899.2619552955 3.3806109 -1103.2168
+145900.2619553998 3.3807685 -1103.2366
+145901.2619555041 3.3806503 -1103.2168
+145902.2619556084 3.3805716 -1103.2562
+145903.2619557127 3.3806109 -1103.2366
+145904.261955817 3.3805716 -1103.197
+145905.2619559213 3.3806503 -1103.2562
+145906.2619560256 3.3806109 -1103.2562
+145907.2619561299 3.3805716 -1103.2168
+145908.2619562342 3.3806109 -1103.2168
+145909.2619563385 3.3805323 -1103.2562
+145910.2619564428 3.3806503 -1103.1576
+145911.2619565472 3.3806109 -1103.2168
+145912.2619566515 3.3805716 -1103.1182
+145913.2619567558 3.3805716 -1103.1774
+145914.2619568601 3.3806109 -1103.197
+145915.2619569644 3.3805716 -1103.2761
+145916.2619570687 3.3806896 -1103.2562
+145917.261957173 3.380729 -1103.0984
+145918.2619572773 3.380729 -1103.2366
+145919.2619573816 3.3806896 -1103.2168
+145920.2619574859 3.3808472 -1103.2168
+145921.2619575902 3.3806896 -1103.2168
+145922.2619576945 3.3808079 -1103.1774
+145923.2619577989 3.3807685 -1103.1576
+145924.2619579032 3.3808472 -1103.2366
+145925.2619580075 3.3808472 -1103.197
+145926.2619581118 3.3808472 -1103.197
+145927.2619582161 3.3808472 -1103.197
+145928.2619583204 3.3808472 -1103.2366
+145929.2619584247 3.3808866 -1103.3156
+145930.261958529 3.3808866 -1103.2168
+145931.2619586333 3.3809259 -1103.1774
+145932.2619587376 3.3809652 -1103.3551
+145933.2619588419 3.3808079 -1103.2168
+145934.2619589462 3.3810835 -1103.1774
+145935.2619590505 3.3810046 -1103.2168
+145936.2619591549 3.3809652 -1103.2761
+145937.2619592592 3.3810441 -1103.3749
+145938.2619593635 3.3809652 -1103.2168
+145939.2619594678 3.3809652 -1103.1182
+145940.2619595721 3.3810046 -1103.2168
+145941.2619596764 3.3808866 -1103.2168
+145942.2619597807 3.3809259 -1103.197
+145943.261959885 3.3808866 -1103.2168
+145944.2619599893 3.3808472 -1103.2366
+145945.2619600936 3.3809259 -1103.1378
+145946.2619601979 3.3808472 -1103.2959
+145947.2619603022 3.3809259 -1103.2168
+145948.2619604066 3.3809652 -1103.2366
+145949.2619605109 3.3808866 -1103.2168
+145950.2619606152 3.3810046 -1103.2562
+145951.2619607195 3.3808866 -1103.2168
+145952.2619608238 3.3808472 -1103.1576
+145953.2619609281 3.3808866 -1103.2366
+145954.2619610324 3.3808866 -1103.197
+145955.2619611367 3.3809259 -1103.2761
+145956.261961241 3.3808866 -1103.2366
+145957.2619613453 3.3809259 -1103.2168
+145958.2619614496 3.3808866 -1103.1774
+145959.2619615539 3.3808472 -1103.2366
+145960.2619616583 3.3809652 -1103.2366
+145961.2619617626 3.3809652 -1103.197
+145962.2619618669 3.3809259 -1103.197
+145963.2619619712 3.3808866 -1103.2562
+145964.2619620755 3.3809652 -1103.2168
+145965.2619621798 3.3810835 -1103.2168
+145966.2619622841 3.3810046 -1103.197
+145967.2619623884 3.3810835 -1103.2168
+145968.2619624927 3.3810046 -1103.2562
+145969.261962597 3.3810441 -1103.2168
+145970.2619627013 3.3810835 -1103.197
+145971.2619628056 3.3810835 -1103.1774
+145972.26196291 3.3809652 -1103.197
+145973.2619630143 3.3809259 -1103.2366
+145974.2619631186 3.3809652 -1103.1774
+145975.2619632229 3.3808866 -1103.1576
+145976.2619633272 3.3810046 -1103.1378
+145977.2619634315 3.3808866 -1103.1576
+145978.2619635358 3.3808472 -1103.2761
+145979.2619636401 3.3808866 -1103.3156
+145980.2619637444 3.3810441 -1103.197
+145981.2619638487 3.3808866 -1103.2562
+145982.261963953 3.3808866 -1103.2562
+145983.2619640573 3.3808079 -1103.2168
+145984.2619641616 3.3808472 -1103.2562
+145985.261964266 3.3808866 -1103.197
+145986.2619643703 3.3809259 -1103.2761
+145987.2619644746 3.3808866 -1103.2959
+145988.2619645789 3.3809652 -1103.1576
+145989.2619646832 3.3808866 -1103.3156
+145990.2619647875 3.3808472 -1103.1774
+145991.2619648918 3.3809259 -1103.2562
+145992.2619649961 3.3808866 -1103.1774
+145993.2619651004 3.3810835 -1103.2959
+145994.2619652047 3.3809652 -1103.2366
+145995.261965309 3.3810046 -1103.2366
+145996.2619654133 3.3808866 -1103.2168
+145997.2619655177 3.3809652 -1103.2761
+145998.261965622 3.3809259 -1103.197
+145999.2619657263 3.3809652 -1103.2761
+146000.2619658306 3.3810046 -1103.1576
+146001.2619659349 3.3809652 -1103.2562
+146002.2619660392 3.3810835 -1103.197
+146003.2619661435 3.3810441 -1103.2562
+146004.2619662478 3.3808866 -1103.1774
+146005.2619663521 3.3811228 -1103.2168
+146006.2619664564 3.3810046 -1103.2168
+146007.2619665607 3.3810046 -1103.2168
+146008.261966665 3.3808472 -1103.2959
+146009.2619667694 3.3808472 -1103.2761
+146010.2619668737 3.3809652 -1103.1774
+146011.261966978 3.3808079 -1103.197
+146012.2619670823 3.3808472 -1103.1576
+146013.2619671866 3.3807685 -1103.2168
+146014.2619672909 3.380729 -1103.2562
+146015.2619673952 3.3808079 -1103.2562
+146016.2619674995 3.3807685 -1103.2959
+146017.2619676038 3.3806503 -1103.2168
+146018.2619677081 3.3806503 -1103.197
+146019.2619678124 3.3805716 -1103.2168
+146020.2619679167 3.3806109 -1103.2761
+146021.261968021 3.3805716 -1103.1576
+146022.2619681254 3.3806109 -1103.2168
+146023.2619682297 3.3806503 -1103.2168
+146024.261968334 3.3805716 -1103.197
+146025.2619684383 3.3804536 -1103.1774
+146026.2619685426 3.3805323 -1103.2366
+146027.2619686469 3.3804929 -1103.1378
+146028.2619687512 3.3804536 -1103.2562
+146029.2619688555 3.3804536 -1103.2959
+146030.2619689598 3.3804536 -1103.2366
+146031.2619690641 3.3805716 -1103.2168
+146032.2619691684 3.380414 -1103.197
+146033.2619692727 3.3803747 -1103.2168
+146034.2619693771 3.3803747 -1103.2761
+146035.2619694814 3.3803353 -1103.1774
+146036.2619695857 3.3802173 -1103.2761
+146037.26196969 3.3803353 -1103.197
+146038.2619697943 3.3802173 -1103.197
+146039.2619698986 3.3802567 -1103.197
+146040.2619700029 3.3801386 -1103.2366
+146041.2619701072 3.380178 -1103.1576
+146042.2619702115 3.3800597 -1103.2562
+146043.2619703158 3.3800204 -1103.197
+146044.2619704201 3.3800204 -1103.2562
+146045.2619705244 3.379981 -1103.2168
+146046.2619706288 3.3799417 -1103.197
+146047.2619707331 3.379981 -1103.2168
+146048.2619708374 3.3800597 -1103.2959
+146049.2619709417 3.3800204 -1103.197
+146050.261971046 3.3799417 -1103.1774
+146051.2619711503 3.3799024 -1103.2761
+146052.2619712546 3.3800204 -1103.1576
+146053.2619713589 3.3799024 -1103.197
+146054.2619714632 3.3800204 -1103.2168
+146055.2619715675 3.3799417 -1103.2168
+146056.2619716718 3.3799417 -1103.197
+146057.2619717761 3.3800204 -1103.197
+146058.2619718804 3.3799024 -1103.197
+146059.2619719848 3.3799417 -1103.1774
+146060.2619720891 3.3800204 -1103.3156
+146061.2619721934 3.3799024 -1103.1182
+146062.2619722977 3.3799024 -1103.2366
+146063.261972402 3.379981 -1103.3156
+146064.2619725063 3.379981 -1103.1774
+146065.2619726106 3.379863 -1103.2562
+146066.2619727149 3.3797841 -1103.2761
+146067.2619728192 3.3798237 -1103.1774
+146068.2619729235 3.3797841 -1103.2761
+146069.2619730278 3.379863 -1103.2761
+146070.2619731321 3.3798237 -1103.197
+146071.2619732365 3.3798237 -1103.2562
+146072.2619733408 3.3797841 -1103.2366
+146073.2619734451 3.3797841 -1103.1774
+146074.2619735494 3.3799024 -1103.197
+146075.2619736537 3.3798237 -1103.1774
+146076.261973758 3.3797841 -1103.2168
+146077.2619738623 3.379863 -1103.2168
+146078.2619739666 3.3798237 -1103.2366
+146079.2619740709 3.379863 -1103.2366
+146080.2619741752 3.3799024 -1103.2366
+146081.2619742795 3.3797841 -1103.2168
+146082.2619743838 3.3797448 -1103.197
+146083.2619744882 3.379863 -1103.2761
+146084.2619745925 3.3798237 -1103.2366
+146085.2619746968 3.3797841 -1103.1378
+146086.2619748011 3.3797841 -1103.2562
+146087.2619749054 3.379863 -1103.3749
+146088.2619750097 3.3797448 -1103.197
+146089.261975114 3.3798237 -1103.3353
+146090.2619752183 3.3797054 -1103.2168
+146091.2619753226 3.3798237 -1103.2761
+146092.2619754269 3.3797448 -1103.2366
+146093.2619755312 3.3797448 -1103.1378
+146094.2619756355 3.3796661 -1103.2366
+146095.2619757399 3.3796268 -1103.1774
+146096.2619758442 3.3797448 -1103.2562
+146097.2619759485 3.3797054 -1103.2366
+146098.2619760528 3.3796661 -1103.2168
+146099.2619761571 3.3795874 -1103.2168
+146100.2619762614 3.3795874 -1103.1774
+146101.2619763657 3.3796268 -1103.197
+146102.26197647 3.3795874 -1103.1576
+146103.2619765743 3.3795874 -1103.197
+146104.2619766786 3.3796268 -1103.2168
+146105.2619767829 3.3795874 -1103.2366
+146106.2619768872 3.3795087 -1103.2562
+146107.2619769915 3.3795481 -1103.2168
+146108.2619770959 3.3795481 -1103.2959
+146109.2619772002 3.3795481 -1103.2366
+146110.2619773045 3.3796661 -1103.1774
+146111.2619774088 3.3796268 -1103.197
+146112.2619775131 3.3797054 -1103.2168
+146113.2619776174 3.3795874 -1103.2366
+146114.2619777217 3.3796268 -1103.1774
+146115.261977826 3.3795874 -1103.1576
+146116.2619779303 3.3796268 -1103.197
+146117.2619780346 3.3796268 -1103.0984
+146118.2619781389 3.3795481 -1103.2366
+146119.2619782432 3.3795481 -1103.1774
+146120.2619783476 3.3795481 -1103.197
+146121.2619784519 3.3795481 -1103.2366
+146122.2619785562 3.3795481 -1103.2168
+146123.2619786605 3.3795481 -1103.2168
+146124.2619787648 3.3794692 -1103.2168
+146125.2619788691 3.3795874 -1103.2168
+146126.2619789734 3.3794298 -1103.1182
+146127.2619790777 3.3795481 -1103.2761
+146128.261979182 3.3793905 -1103.2168
+146129.2619792863 3.3794298 -1103.2562
+146130.2619793906 3.3794298 -1103.197
+146131.2619794949 3.3793905 -1103.197
+146132.2619795993 3.3794692 -1103.197
+146133.2619797036 3.3794692 -1103.2366
+146134.2619798079 3.3793905 -1103.2366
+146135.2619799122 3.3793511 -1103.1774
+146136.2619800165 3.3793511 -1103.1182
+146137.2619801208 3.3793118 -1103.197
+146138.2619802251 3.3792331 -1103.1182
+146139.2619803294 3.3793118 -1103.2366
+146140.2619804337 3.3793118 -1103.2562
+146141.261980538 3.3791542 -1103.2562
+146142.2619806423 3.3791938 -1103.2562
+146143.2619807466 3.3791938 -1103.1774
+146144.2619808509 3.3791542 -1103.2366
+146145.2619809553 3.3790362 -1103.2562
+146146.2619810596 3.3791542 -1103.2168
+146147.2619811639 3.3790362 -1103.2168
+146148.2619812682 3.3790362 -1103.2366
+146149.2619813725 3.3791149 -1103.2761
+146150.2619814768 3.3789968 -1103.2366
+146151.2619815811 3.3790362 -1103.1576
+146152.2619816854 3.3790755 -1103.1774
+146153.2619817897 3.3790755 -1103.2168
+146154.261981894 3.3789968 -1103.3156
+146155.2619819983 3.3791149 -1103.2562
+146156.2619821026 3.3789968 -1103.3156
+146157.261982207 3.3789968 -1103.1774
+146158.2619823113 3.3791149 -1103.197
+146159.2619824156 3.3789575 -1103.2366
+146160.2619825199 3.3790362 -1103.1576
+146161.2619826242 3.3789968 -1103.3156
+146162.2619827285 3.3790755 -1103.1774
+146163.2619828328 3.3789182 -1103.197
+146164.2619829371 3.3789575 -1103.2366
+146165.2619830414 3.3789968 -1103.3156
+146166.2619831457 3.3790362 -1103.2168
+146167.26198325 3.3789968 -1103.2168
+146168.2619833543 3.3788393 -1103.2761
+146169.2619834587 3.3789182 -1103.2761
+146170.261983563 3.3789182 -1103.1576
+146171.2619836673 3.3789182 -1103.2366
+146172.2619837716 3.3788393 -1103.2562
+146173.2619838759 3.3788786 -1103.2959
+146174.2619839802 3.3788393 -1103.2168
+146175.2619840845 3.3786819 -1103.197
+146176.2619841888 3.3787606 -1103.197
+146177.2619842931 3.3786032 -1103.2761
+146178.2619843974 3.3786426 -1103.2761
+146179.2619845017 3.3786426 -1103.197
+146180.261984606 3.378485 -1103.2562
+146181.2619847103 3.3785636 -1103.2168
+146182.2619848147 3.3784063 -1103.2168
+146183.261984919 3.378485 -1103.2562
+146184.2619850233 3.3784456 -1103.2366
+146185.2619851276 3.3782883 -1103.2761
+146186.2619852319 3.3783669 -1103.2562
+146187.2619853362 3.3783276 -1103.2168
+146188.2619854405 3.3782094 -1103.2562
+146189.2619855448 3.3782487 -1103.2168
+146190.2619856491 3.3782094 -1103.2562
+146191.2619857534 3.37817 -1103.2168
+146192.2619858577 3.37817 -1103.2562
+146193.261985962 3.3781307 -1103.2366
+146194.2619860664 3.3782094 -1103.2168
+146195.2619861707 3.378052 -1103.197
+146196.261986275 3.3780913 -1103.2959
+146197.2619863793 3.3779733 -1103.2168
+146198.2619864836 3.3779733 -1103.2168
+146199.2619865879 3.3780127 -1103.2562
+146200.2619866922 3.3780127 -1103.3156
+146201.2619867965 3.3779733 -1103.2168
+146202.2619869008 3.3779337 -1103.2562
+146203.2619870051 3.3780913 -1103.2168
+146204.2619871094 3.3779733 -1103.2168
+146205.2619872137 3.378052 -1103.1576
+146206.2619873181 3.3780913 -1103.2366
+146207.2619874224 3.3781307 -1103.2761
+146208.2619875267 3.3780913 -1103.2562
+146209.261987631 3.3780913 -1103.1774
+146210.2619877353 3.378052 -1103.3551
+146211.2619878396 3.3780127 -1103.3156
+146212.2619879439 3.3780913 -1103.197
+146213.2619880482 3.378052 -1103.2366
+146214.2619881525 3.3781307 -1103.197
+146215.2619882568 3.3780913 -1103.2761
+146216.2619883611 3.378052 -1103.2562
+146217.2619884654 3.378052 -1103.2366
+146218.2619885698 3.3781307 -1103.1774
+146219.2619886741 3.3780127 -1103.1378
+146220.2619887784 3.3780913 -1103.2562
+146221.2619888827 3.3781307 -1103.1378
+146222.261988987 3.378052 -1103.2959
+146223.2619890913 3.3780127 -1103.197
+146224.2619891956 3.378052 -1103.2168
+146225.2619892999 3.3781307 -1103.2761
+146226.2619894042 3.3781307 -1103.2959
+146227.2619895085 3.3779733 -1103.2761
+146228.2619896128 3.3779733 -1103.1182
+146229.2619897171 3.378052 -1103.197
+146230.2619898214 3.3780913 -1103.197
+146231.2619899258 3.3780127 -1103.1576
+146232.2619900301 3.3780127 -1103.2168
+146233.2619901344 3.3779733 -1103.2168
+146234.2619902387 3.3779733 -1103.197
+146235.261990343 3.3780127 -1103.1378
+146236.2619904473 3.3779733 -1103.2366
+146237.2619905516 3.3780127 -1103.197
+146238.2619906559 3.3778157 -1103.2366
+146239.2619907602 3.3779337 -1103.2761
+146240.2619908645 3.3777764 -1103.2168
+146241.2619909688 3.3778157 -1103.2959
+146242.2619910731 3.3778944 -1103.197
+146243.2619911775 3.3776584 -1103.197
+146244.2619912818 3.3776977 -1103.2959
+146245.2619913861 3.3776584 -1103.1576
+146246.2619914904 3.377737 -1103.2168
+146247.2619915947 3.3775795 -1103.2562
+146248.261991699 3.3776188 -1103.2168
+146249.2619918033 3.3776584 -1103.2168
+146250.2619919076 3.3775008 -1103.3156
+146251.2619920119 3.3775401 -1103.2168
+146252.2619921162 3.3776188 -1103.197
+146253.2619922205 3.3775401 -1103.2168
+146254.2619923248 3.3774221 -1103.1774
+146255.2619924292 3.3773828 -1103.1576
+146256.2619925335 3.3773038 -1103.2366
+146257.2619926378 3.3773434 -1103.1774
+146258.2619927421 3.3773828 -1103.2168
+146259.2619928464 3.3774614 -1103.2366
+146260.2619929507 3.3773434 -1103.2366
+146261.261993055 3.3772645 -1103.2366
+146262.2619931593 3.3773038 -1103.1774
+146263.2619932636 3.3771858 -1103.1774
+146264.2619933679 3.3771465 -1103.2761
+146265.2619934722 3.3770282 -1103.2168
+146266.2619935765 3.3769889 -1103.1576
+146267.2619936808 3.3769889 -1103.1774
+146268.2619937852 3.3770678 -1103.2168
+146269.2619938895 3.3769889 -1103.1774
+146270.2619939938 3.3769889 -1103.1774
+146271.2619940981 3.3769102 -1103.2168
+146272.2619942024 3.3769495 -1103.2761
+146273.2619943067 3.3769495 -1103.2959
+146274.261994411 3.3770282 -1103.1576
+146275.2619945153 3.3768709 -1103.2562
+146276.2619946196 3.3769495 -1103.2168
+146277.2619947239 3.3769102 -1103.2562
+146278.2619948282 3.3768709 -1103.2168
+146279.2619949325 3.3768709 -1103.2366
+146280.2619950369 3.3769495 -1103.197
+146281.2619951412 3.3769102 -1103.197
+146282.2619952455 3.3769495 -1103.1774
+146283.2619953498 3.3769102 -1103.2366
+146284.2619954541 3.3769889 -1103.197
+146285.2619955584 3.3770282 -1103.2562
+146286.2619956627 3.3770282 -1103.1378
+146287.261995767 3.3770282 -1103.1774
+146288.2619958713 3.3770282 -1103.2366
+146289.2619959756 3.3770678 -1103.2366
+146290.2619960799 3.3770678 -1103.197
+146291.2619961842 3.3770282 -1103.1378
+146292.2619962886 3.3770678 -1103.1774
+146293.2619963929 3.3770678 -1103.2761
+146294.2619964972 3.3771465 -1103.197
+146295.2619966015 3.3771465 -1103.2761
+146296.2619967058 3.3770678 -1103.3156
+146297.2619968101 3.3770282 -1103.2761
+146298.2619969144 3.3770282 -1103.1182
+146299.2619970187 3.3771071 -1103.1774
+146300.261997123 3.3771858 -1103.1774
+146301.2619972273 3.3770678 -1103.1378
+146302.2619973316 3.3771071 -1103.197
+146303.2619974359 3.3771071 -1103.197
+146304.2619975402 3.3770282 -1103.2168
+146305.2619976446 3.3771465 -1103.2168
+146306.2619977489 3.3771465 -1103.1774
+146307.2619978532 3.3771858 -1103.2761
+146308.2619979575 3.3771465 -1103.1576
+146309.2619980618 3.3771465 -1103.2959
+146310.2619981661 3.3772645 -1103.2168
+146311.2619982704 3.3772252 -1103.1576
+146312.2619983747 3.3770282 -1103.2761
+146313.261998479 3.3770282 -1103.2168
+146314.2619985833 3.3769889 -1103.2959
+146315.2619986876 3.3771071 -1103.2562
+146316.2619987919 3.3770678 -1103.2168
+146317.2619988963 3.3770282 -1103.2761
+146318.2619990006 3.3770282 -1103.2168
+146319.2619991049 3.3771465 -1103.197
+146320.2619992092 3.3771071 -1103.3156
+146321.2619993135 3.3771071 -1103.2168
+146322.2619994178 3.3770282 -1103.2168
+146323.2619995221 3.3770678 -1103.2168
+146324.2619996264 3.3770678 -1103.2761
+146325.2619997307 3.3770678 -1103.2562
+146326.261999835 3.3769495 -1103.3353
+146327.2619999393 3.3769495 -1103.2168
+146328.2620000436 3.3769495 -1103.1774
+146329.262000148 3.3769495 -1103.1774
+146330.2620002523 3.3769102 -1103.197
+146331.2620003566 3.3769102 -1103.197
+146332.2620004609 3.3768709 -1103.2562
+146333.2620005652 3.3769102 -1103.2168
+146334.2620006695 3.3769495 -1103.1576
+146335.2620007738 3.3770282 -1103.1378
+146336.2620008781 3.3768709 -1103.3156
+146337.2620009824 3.3769102 -1103.1576
+146338.2620010867 3.3768709 -1103.2168
+146339.262001191 3.3768709 -1103.1378
+146340.2620012953 3.3769102 -1103.2562
+146341.2620013996 3.3768315 -1103.2959
+146342.262001504 3.3768709 -1103.197
+146343.2620016083 3.3767529 -1103.2168
+146344.2620017126 3.3767922 -1103.1576
+146345.2620018169 3.3768709 -1103.3156
+146346.2620019212 3.3768315 -1103.2168
+146347.2620020255 3.3768709 -1103.2761
+146348.2620021298 3.3768315 -1103.3353
+146349.2620022341 3.3768709 -1103.2959
+146350.2620023384 3.3767922 -1103.1774
+146351.2620024427 3.3767529 -1103.2168
+146352.262002547 3.3767922 -1103.2168
+146353.2620026513 3.3767529 -1103.2562
+146354.2620027557 3.3767922 -1103.197
+146355.26200286 3.3767922 -1103.1774
+146356.2620029643 3.3766739 -1103.2562
+146357.2620030686 3.3766739 -1103.2168
+146358.2620031729 3.3766739 -1103.197
+146359.2620032772 3.3766346 -1103.2366
+146360.2620033815 3.3766346 -1103.2168
+146361.2620034858 3.3766346 -1103.2366
+146362.2620035901 3.3767133 -1103.1774
+146363.2620036944 3.3765953 -1103.1576
+146364.2620037987 3.3766346 -1103.197
+146365.262003903 3.3766346 -1103.1576
+146366.2620040074 3.3765953 -1103.1774
+146367.2620041117 3.3765559 -1103.2168
+146368.262004216 3.3765953 -1103.2562
+146369.2620043203 3.3765953 -1103.197
+146370.2620044246 3.3765559 -1103.1774
+146371.2620045289 3.3765953 -1103.2168
+146372.2620046332 3.3764772 -1103.2168
+146373.2620047375 3.3765559 -1103.2959
+146374.2620048418 3.3765166 -1103.2761
+146375.2620049461 3.3765559 -1103.2562
+146376.2620050504 3.3764772 -1103.2366
+146377.2620051547 3.3764379 -1103.2168
+146378.2620052591 3.3765166 -1103.2761
+146379.2620053634 3.3764379 -1103.2562
+146380.2620054677 3.3765166 -1103.2562
+146381.262005572 3.3763983 -1103.2168
+146382.2620056763 3.376359 -1103.1774
+146383.2620057806 3.3763983 -1103.2168
+146384.2620058849 3.3763196 -1103.2168
+146385.2620059892 3.3763983 -1103.1774
+146386.2620060935 3.3764379 -1103.2366
+146387.2620061978 3.3765166 -1103.2761
+146388.2620063021 3.3764772 -1103.2168
+146389.2620064064 3.3764379 -1103.197
+146390.2620065107 3.3764772 -1103.2168
+146391.2620066151 3.3764379 -1103.1576
+146392.2620067194 3.3763983 -1103.1576
+146393.2620068237 3.376359 -1103.197
+146394.262006928 3.3763983 -1103.2761
+146395.2620070323 3.3763196 -1103.197
+146396.2620071366 3.3762803 -1103.197
+146397.2620072409 3.376359 -1103.2959
+146398.2620073452 3.3761623 -1103.2366
+146399.2620074495 3.3762016 -1103.1576
+146400.2620075538 3.376123 -1103.197
+146401.2620076581 3.3761623 -1103.2168
+146402.2620077624 3.376123 -1103.2959
+146403.2620078668 3.376044 -1103.1378
+146404.2620079711 3.3760047 -1103.2366
+146405.2620080754 3.375926 -1103.2562
+146406.2620081797 3.375926 -1103.197
+146407.262008284 3.3757684 -1103.2562
+146408.2620083883 3.3757684 -1103.2562
+146409.2620084926 3.3757291 -1103.1182
+146410.2620085969 3.375808 -1103.1774
+146411.2620087012 3.3757684 -1103.197
+146412.2620088055 3.3756504 -1103.1378
+146413.2620089098 3.3755324 -1103.1576
+146414.2620090141 3.3756504 -1103.2366
+146415.2620091185 3.3756111 -1103.2562
+146416.2620092228 3.3756111 -1103.2366
+146417.2620093271 3.3755324 -1103.1774
+146418.2620094314 3.3755717 -1103.1378
+146419.2620095357 3.3756111 -1103.2366
+146420.26200964 3.375493 -1103.2562
+146421.2620097443 3.3754535 -1103.197
+146422.2620098486 3.3754535 -1103.197
+146423.2620099529 3.375493 -1103.2366
+146424.2620100572 3.3754535 -1103.197
+146425.2620101615 3.3754141 -1103.1774
+146426.2620102658 3.3753748 -1103.1774
+146427.2620103701 3.3754535 -1103.1774
+146428.2620104745 3.3754535 -1103.2366
+146429.2620105788 3.3753748 -1103.2761
+146430.2620106831 3.375493 -1103.3945
+146431.2620107874 3.3754535 -1103.1774
+146432.2620108917 3.3754535 -1103.2761
+146433.262010996 3.375493 -1103.2366
+146434.2620111003 3.3755324 -1103.2366
+146435.2620112046 3.3755324 -1103.2562
+146436.2620113089 3.3754141 -1103.2761
+146437.2620114132 3.3753748 -1103.2168
+146438.2620115175 3.3753355 -1103.2366
+146439.2620116218 3.3752568 -1103.197
+146440.2620117262 3.3753355 -1103.2366
+146441.2620118305 3.3754535 -1103.2366
+146442.2620119348 3.3752568 -1103.2562
+146443.2620120391 3.3751385 -1103.3156
+146444.2620121434 3.3751779 -1103.197
+146445.2620122477 3.3751779 -1103.1774
+146446.262012352 3.3750992 -1103.2562
+146447.2620124563 3.3750598 -1103.2366
+146448.2620125606 3.3750205 -1103.2562
+146449.2620126649 3.3749418 -1103.2959
+146450.2620127692 3.3749812 -1103.197
+146451.2620128735 3.3750598 -1103.2366
+146452.2620129779 3.3749812 -1103.2562
+146453.2620130822 3.3749812 -1103.197
+146454.2620131865 3.3748629 -1103.1774
+146455.2620132908 3.3747842 -1103.197
+146456.2620133951 3.3748236 -1103.197
+146457.2620134994 3.3748236 -1103.197
+146458.2620136037 3.3747449 -1103.197
+146459.262013708 3.3747842 -1103.2562
+146460.2620138123 3.3747056 -1103.1774
+146461.2620139166 3.3747449 -1103.1576
+146462.2620140209 3.3746662 -1103.1774
+146463.2620141252 3.3747449 -1103.197
+146464.2620142295 3.3747842 -1103.2366
+146465.2620143339 3.3746269 -1103.3353
+146466.2620144382 3.3747056 -1103.2168
+146467.2620145425 3.3746269 -1103.2366
+146468.2620146468 3.3747056 -1103.2562
+146469.2620147511 3.3747056 -1103.2168
+146470.2620148554 3.3745875 -1103.2959
+146471.2620149597 3.3745875 -1103.2366
+146472.262015064 3.3746269 -1103.2562
+146473.2620151683 3.3746662 -1103.2168
+146474.2620152726 3.3745875 -1103.2168
+146475.2620153769 3.374548 -1103.2761
+146476.2620154812 3.3745086 -1103.197
+146477.2620155856 3.3743906 -1103.2562
+146478.2620156899 3.374548 -1103.2562
+146479.2620157942 3.3745086 -1103.2761
+146480.2620158985 3.374548 -1103.2168
+146481.2620160028 3.3745086 -1103.2562
+146482.2620161071 3.3743906 -1103.3156
+146483.2620162114 3.3744299 -1103.2761
+146484.2620163157 3.3743513 -1103.3156
+146485.26201642 3.3743513 -1103.2168
+146486.2620165243 3.3743513 -1103.197
+146487.2620166286 3.3743119 -1103.2761
+146488.2620167329 3.3743513 -1103.2366
+146489.2620168373 3.3743119 -1103.1774
+146490.2620169416 3.374233 -1103.2366
+146491.2620170459 3.374115 -1103.1774
+146492.2620171502 3.3741937 -1103.1774
+146493.2620172545 3.374233 -1103.1774
+146494.2620173588 3.3741543 -1103.2761
+146495.2620174631 3.374115 -1103.1576
+146496.2620175674 3.3740757 -1103.1774
+146497.2620176717 3.3740757 -1103.2761
+146498.262017776 3.3740757 -1103.2366
+146499.2620178803 3.3741543 -1103.2366
+146500.2620179846 3.373997 -1103.2168
+146501.262018089 3.3740363 -1103.2761
+146502.2620181933 3.374115 -1103.197
+146503.2620182976 3.3740757 -1103.2366
+146504.2620184019 3.3740363 -1103.2562
+146505.2620185062 3.374115 -1103.1774
+146506.2620186105 3.373997 -1103.2168
+146507.2620187148 3.3740363 -1103.2366
+146508.2620188191 3.373997 -1103.2562
+146509.2620189234 3.373997 -1103.197
+146510.2620190277 3.3739181 -1103.2168
+146511.262019132 3.3740363 -1103.2562
+146512.2620192363 3.3739576 -1103.2168
+146513.2620193406 3.373997 -1103.2168
+146514.262019445 3.3740363 -1103.2168
+146515.2620195493 3.3741543 -1103.1378
+146516.2620196536 3.3740363 -1103.197
+146517.2620197579 3.3740757 -1103.2168
+146518.2620198622 3.3740757 -1103.2562
+146519.2620199665 3.373997 -1103.1774
+146520.2620200708 3.3740363 -1103.197
+146521.2620201751 3.3740757 -1103.2366
+146522.2620202794 3.3739576 -1103.2366
+146523.2620203837 3.3739576 -1103.197
+146524.262020488 3.3739576 -1103.1774
+146525.2620205923 3.3740757 -1103.3353
+146526.2620206967 3.3740363 -1103.1774
+146527.262020801 3.373997 -1103.1576
+146528.2620209053 3.3739576 -1103.197
+146529.2620210096 3.373997 -1103.2366
+146530.2620211139 3.373997 -1103.2366
+146531.2620212182 3.373997 -1103.2761
+146532.2620213225 3.3739181 -1103.2562
+146533.2620214268 3.3740757 -1103.2366
+146534.2620215311 3.3739576 -1103.2562
+146535.2620216354 3.3739576 -1103.1774
+146536.2620217397 3.373997 -1103.2562
+146537.262021844 3.373997 -1103.1774
+146538.2620219484 3.3740363 -1103.2959
+146539.2620220527 3.373997 -1103.2168
+146540.262022157 3.3740757 -1103.2168
+146541.2620222613 3.3740363 -1103.1774
+146542.2620223656 3.374115 -1103.197
+146543.2620224699 3.3740363 -1103.2562
+146544.2620225742 3.3741543 -1103.1378
+146545.2620226785 3.374233 -1103.2761
+146546.2620227828 3.374115 -1103.2761
+146547.2620228871 3.374115 -1103.2761
+146548.2620229914 3.374115 -1103.2761
+146549.2620230957 3.3741937 -1103.2761
+146550.2620232 3.3741543 -1103.197
+146551.2620233044 3.3741543 -1103.1576
+146552.2620234087 3.3740363 -1103.2168
+146553.262023513 3.3741543 -1103.2366
+146554.2620236173 3.3740757 -1103.1378
+146555.2620237216 3.3740757 -1103.1576
+146556.2620238259 3.374115 -1103.2168
+146557.2620239302 3.3740757 -1103.2366
+146558.2620240345 3.3740757 -1103.1774
+146559.2620241388 3.3740363 -1103.197
+146560.2620242431 3.3740363 -1103.1774
+146561.2620243474 3.373997 -1103.2562
+146562.2620244517 3.3739576 -1103.2959
+146563.2620245561 3.373997 -1103.2761
+146564.2620246604 3.3738787 -1103.2761
+146565.2620247647 3.373997 -1103.2168
+146566.262024869 3.3739181 -1103.1576
+146567.2620249733 3.373997 -1103.2168
+146568.2620250776 3.373997 -1103.1774
+146569.2620251819 3.3738394 -1103.1576
+146570.2620252862 3.3739181 -1103.1378
+146571.2620253905 3.3739181 -1103.2168
+146572.2620254948 3.3738 -1103.197
+146573.2620255991 3.3740363 -1103.2562
+146574.2620257034 3.3738394 -1103.2959
+146575.2620258078 3.3737607 -1103.197
+146576.2620259121 3.3738394 -1103.2562
+146577.2620260164 3.3738 -1103.0984
+146578.2620261207 3.3738787 -1103.1378
+146579.262026225 3.3738 -1103.2366
+146580.2620263293 3.3738787 -1103.2168
+146581.2620264336 3.3737214 -1103.2562
+146582.2620265379 3.3738787 -1103.2168
+146583.2620266422 3.3737607 -1103.1182
+146584.2620267465 3.3737607 -1103.197
+146585.2620268508 3.3737607 -1103.2562
+146586.2620269551 3.373682 -1103.2761
+146587.2620270594 3.3738394 -1103.1182
+146588.2620271638 3.373682 -1103.1774
+146589.2620272681 3.373682 -1103.2562
+146590.2620273724 3.373682 -1103.2366
+146591.2620274767 3.3737607 -1103.1378
+146592.262027581 3.3737214 -1103.1378
+146593.2620276853 3.3737607 -1103.2959
+146594.2620277896 3.3737214 -1103.1774
+146595.2620278939 3.3737607 -1103.197
+146596.2620279982 3.3738 -1103.2366
+146597.2620281025 3.3737214 -1103.2562
+146598.2620282068 3.3736424 -1103.1182
+146599.2620283111 3.3736424 -1103.2562
+146600.2620284155 3.373682 -1103.197
+146601.2620285198 3.3736424 -1103.2366
+146602.2620286241 3.373682 -1103.2366
+146603.2620287284 3.3735244 -1103.2366
+146604.2620288327 3.3735244 -1103.197
+146605.262028937 3.3735244 -1103.2761
+146606.2620290413 3.3735244 -1103.2366
+146607.2620291456 3.3735638 -1103.2761
+146608.2620292499 3.3734457 -1103.2562
+146609.2620293542 3.3735638 -1103.2959
+146610.2620294585 3.3736424 -1103.197
+146611.2620295628 3.3734457 -1103.1774
+146612.2620296672 3.3734457 -1103.1774
+146613.2620297715 3.3734064 -1103.197
+146614.2620298758 3.3733671 -1103.2562
+146615.2620299801 3.3734457 -1103.197
+146616.2620300844 3.3734457 -1103.2761
+146617.2620301887 3.3734064 -1103.2562
+146618.262030293 3.3734457 -1103.1774
+146619.2620303973 3.3733275 -1103.2761
+146620.2620305016 3.3734064 -1103.1576
+146621.2620306059 3.3733275 -1103.2761
+146622.2620307102 3.3733671 -1103.2761
+146623.2620308145 3.3733275 -1103.2168
+146624.2620309189 3.3734851 -1103.3156
+146625.2620310232 3.3733275 -1103.1182
+146626.2620311275 3.3734064 -1103.2168
+146627.2620312318 3.3733671 -1103.2366
+146628.2620313361 3.3733275 -1103.1576
+146629.2620314404 3.3732882 -1103.2168
+146630.2620315447 3.3733275 -1103.2168
+146631.262031649 3.3732488 -1103.2562
+146632.2620317533 3.3732882 -1103.2366
+146633.2620318576 3.3732488 -1103.197
+146634.2620319619 3.3732488 -1103.197
+146635.2620320662 3.3732095 -1103.2366
+146636.2620321705 3.3731308 -1103.2168
+146637.2620322749 3.3731308 -1103.2562
+146638.2620323792 3.3730915 -1103.3353
+146639.2620324835 3.3730125 -1103.2366
+146640.2620325878 3.3730521 -1103.2168
+146641.2620326921 3.3730521 -1103.1576
+146642.2620327964 3.3729732 -1103.2562
+146643.2620329007 3.3728552 -1103.2562
+146644.262033005 3.3728945 -1103.197
+146645.2620331093 3.3728552 -1103.1182
+146646.2620332136 3.3728552 -1103.1774
+146647.2620333179 3.3728158 -1103.1774
+146648.2620334222 3.3728552 -1103.2168
+146649.2620335266 3.3728552 -1103.3156
+146650.2620336309 3.3728552 -1103.2168
+146651.2620337352 3.3727765 -1103.2366
+146652.2620338395 3.3726583 -1103.1378
+146653.2620339438 3.3726976 -1103.2366
+146654.2620340481 3.3726976 -1103.1774
+146655.2620341524 3.3726583 -1103.197
+146656.2620342567 3.3726583 -1103.2168
+146657.262034361 3.3727372 -1103.1182
+146658.2620344653 3.3726976 -1103.197
+146659.2620345696 3.3727372 -1103.197
+146660.2620346739 3.3726189 -1103.2366
+146661.2620347783 3.3726976 -1103.2761
+146662.2620348826 3.3726583 -1103.2366
+146663.2620349869 3.3725402 -1103.1576
+146664.2620350912 3.3726583 -1103.2761
+146665.2620351955 3.3727372 -1103.2366
+146666.2620352998 3.3725796 -1103.2562
+146667.2620354041 3.3726583 -1103.2168
+146668.2620355084 3.3726189 -1103.2366
+146669.2620356127 3.3726583 -1103.0984
+146670.262035717 3.3726583 -1103.2366
+146671.2620358213 3.3725796 -1103.2562
+146672.2620359256 3.3725796 -1103.2366
+146673.2620360299 3.3725402 -1103.197
+146674.2620361343 3.3725796 -1103.197
+146675.2620362386 3.3724616 -1103.1576
+146676.2620363429 3.3724616 -1103.197
+146677.2620364472 3.3725009 -1103.2366
+146678.2620365515 3.3724616 -1103.2366
+146679.2620366558 3.3723433 -1103.197
+146680.2620367601 3.3723433 -1103.197
+146681.2620368644 3.3723826 -1103.2562
+146682.2620369687 3.3723433 -1103.3156
+146683.262037073 3.3722253 -1103.2366
+146684.2620371773 3.3722253 -1103.2562
+146685.2620372816 3.3721859 -1103.2366
+146686.262037386 3.3721859 -1103.2168
+146687.2620374903 3.3721466 -1103.1774
+146688.2620375946 3.3721859 -1103.2959
+146689.2620376989 3.3721466 -1103.2959
+146690.2620378032 3.3722253 -1103.1774
+146691.2620379075 3.3720677 -1103.2366
+146692.2620380118 3.3720677 -1103.2562
+146693.2620381161 3.3720284 -1103.2366
+146694.2620382204 3.3720284 -1103.2168
+146695.2620383247 3.3719497 -1103.2366
+146696.262038429 3.3719103 -1103.2959
+146697.2620385333 3.3720284 -1103.2366
+146698.2620386377 3.3720284 -1103.2168
+146699.262038742 3.3720677 -1103.2366
+146700.2620388463 3.371989 -1103.1576
+146701.2620389506 3.3718317 -1103.1774
+146702.2620390549 3.3719103 -1103.2366
+146703.2620391592 3.371871 -1103.2761
+146704.2620392635 3.3719103 -1103.2562
+146705.2620393678 3.3717527 -1103.2761
+146706.2620394721 3.3717527 -1103.2366
+146707.2620395764 3.3717527 -1103.1774
+146708.2620396807 3.3717134 -1103.0984
+146709.262039785 3.3717921 -1103.1774
+146710.2620398893 3.3717134 -1103.2562
+146711.2620399937 3.3716741 -1103.1576
+146712.262040098 3.3716741 -1103.2366
+146713.2620402023 3.3717134 -1103.2168
+146714.2620403066 3.3717527 -1103.2168
+146715.2620404109 3.3716347 -1103.1774
+146716.2620405152 3.3715954 -1103.3353
+146717.2620406195 3.371556 -1103.2761
+146718.2620407238 3.3714771 -1103.197
+146719.2620408281 3.371556 -1103.2168
+146720.2620409324 3.3714771 -1103.197
+146721.2620410367 3.3713984 -1103.2562
+146722.262041141 3.3715167 -1103.2761
+146723.2620412454 3.3715167 -1103.2959
+146724.2620413497 3.3713198 -1103.2366
+146725.262041454 3.3713591 -1103.2562
+146726.2620415583 3.3714378 -1103.1378
+146727.2620416626 3.3713591 -1103.1774
+146728.2620417669 3.3713198 -1103.2562
+146729.2620418712 3.3712804 -1103.197
+146730.2620419755 3.3712411 -1103.2168
+146731.2620420798 3.3712411 -1103.2168
+146732.2620421841 3.3712018 -1103.2562
+146733.2620422884 3.3712411 -1103.2168
+146734.2620423927 3.3712804 -1103.2366
+146735.2620424971 3.3712804 -1103.2761
+146736.2620426014 3.3712018 -1103.2168
+146737.2620427057 3.3712018 -1103.197
+146738.26204281 3.3712018 -1103.1774
+146739.2620429143 3.3712018 -1103.2761
+146740.2620430186 3.3711622 -1103.2366
+146741.2620431229 3.3711228 -1103.2366
+146742.2620432272 3.3711228 -1103.0984
+146743.2620433315 3.3710835 -1103.1774
+146744.2620434358 3.3711228 -1103.2761
+146745.2620435401 3.3710835 -1103.197
+146746.2620436444 3.3710835 -1103.2761
+146747.2620437487 3.3710442 -1103.1774
+146748.2620438531 3.3710835 -1103.1378
+146749.2620439574 3.3710442 -1103.1182
+146750.2620440617 3.3710048 -1103.2959
+146751.262044166 3.3710048 -1103.197
+146752.2620442703 3.3709655 -1103.2168
+146753.2620443746 3.3710442 -1103.1774
+146754.2620444789 3.3709655 -1103.2761
+146755.2620445832 3.3709261 -1103.197
+146756.2620446875 3.3709261 -1103.2959
+146757.2620447918 3.3708472 -1103.2366
+146758.2620448961 3.3707292 -1103.2168
+146759.2620450004 3.3708079 -1103.3551
+146760.2620451048 3.3707685 -1103.2959
+146761.2620452091 3.3708079 -1103.1774
+146762.2620453134 3.3706899 -1103.2562
+146763.2620454177 3.3707685 -1103.1774
+146764.262045522 3.3706112 -1103.1774
+146765.2620456263 3.3706112 -1103.1774
+146766.2620457306 3.3706505 -1103.197
+146767.2620458349 3.3705323 -1103.1576
+146768.2620459392 3.3706505 -1103.197
+146769.2620460435 3.3704929 -1103.2959
+146770.2620461478 3.3704143 -1103.2168
+146771.2620462521 3.3704929 -1103.2562
+146772.2620463565 3.3703749 -1103.1576
+146773.2620464608 3.3702962 -1103.2959
+146774.2620465651 3.3703356 -1103.1576
+146775.2620466694 3.3704143 -1103.2366
+146776.2620467737 3.3702173 -1103.2959
+146777.262046878 3.3702569 -1103.1774
+146778.2620469823 3.3702962 -1103.2366
+146779.2620470866 3.3704143 -1103.2761
+146780.2620471909 3.3702173 -1103.2168
+146781.2620472952 3.3702173 -1103.2959
+146782.2620473995 3.3701386 -1103.2959
+146783.2620475038 3.37006 -1103.2366
+146784.2620476082 3.3700993 -1103.1774
+146785.2620477125 3.3700993 -1103.2761
+146786.2620478168 3.3700206 -1103.1576
+146787.2620479211 3.3700993 -1103.2959
+146788.2620480254 3.37006 -1103.197
+146789.2620481297 3.3701386 -1103.2168
+146790.262048234 3.37006 -1103.197
+146791.2620483383 3.3700206 -1103.2366
+146792.2620484426 3.3700206 -1103.2168
+146793.2620485469 3.3700206 -1103.2959
+146794.2620486512 3.3699417 -1103.197
+146795.2620487555 3.3699417 -1103.2366
+146796.2620488598 3.37006 -1103.2366
+146797.2620489642 3.370178 -1103.1774
+146798.2620490685 3.3699813 -1103.2562
+146799.2620491728 3.3699417 -1103.2168
+146800.2620492771 3.3699813 -1103.197
+146801.2620493814 3.3699024 -1103.1774
+146802.2620494857 3.3699024 -1103.2366
+146803.26204959 3.3698237 -1103.2959
+146804.2620496943 3.369863 -1103.197
+146805.2620497986 3.3697844 -1103.2168
+146806.2620499029 3.3698237 -1103.197
+146807.2620500072 3.369745 -1103.2959
+146808.2620501115 3.369745 -1103.197
+146809.2620502159 3.3695874 -1103.197
+146810.2620503202 3.3696663 -1103.2562
+146811.2620504245 3.3695874 -1103.2366
+146812.2620505288 3.3693514 -1103.2366
+146813.2620506331 3.3695087 -1103.197
+146814.2620507374 3.3694694 -1103.2168
+146815.2620508417 3.3693514 -1103.2168
+146816.262050946 3.3693907 -1103.197
+146817.2620510503 3.3693118 -1103.1576
+146818.2620511546 3.3693118 -1103.2562
+146819.2620512589 3.3692331 -1103.2959
+146820.2620513632 3.3693118 -1103.2959
+146821.2620514676 3.3692725 -1103.2366
+146822.2620515719 3.3692331 -1103.1774
+146823.2620516762 3.3692725 -1103.197
+146824.2620517805 3.3692331 -1103.2562
+146825.2620518848 3.3692331 -1103.2168
+146826.2620519891 3.3690758 -1103.2761
+146827.2620520934 3.3690758 -1103.1576
+146828.2620521977 3.3689575 -1103.2366
+146829.262052302 3.3691151 -1103.1774
+146830.2620524063 3.3689969 -1103.2168
+146831.2620525106 3.3691151 -1103.2168
+146832.2620526149 3.3689969 -1103.197
+146833.2620527192 3.3689182 -1103.0984
+146834.2620528236 3.3688788 -1103.2562
+146835.2620529279 3.3689182 -1103.2366
+146836.2620530322 3.3687608 -1103.2366
+146837.2620531365 3.3688395 -1103.3551
+146838.2620532408 3.3688395 -1103.2562
+146839.2620533451 3.3687608 -1103.2366
+146840.2620534494 3.3688002 -1103.197
+146841.2620535537 3.3688002 -1103.1378
+146842.262053658 3.3687608 -1103.2366
+146843.2620537623 3.3688395 -1103.2959
+146844.2620538666 3.3688395 -1103.2562
+146845.2620539709 3.3688788 -1103.2562
+146846.2620540753 3.3688002 -1103.197
+146847.2620541796 3.3688395 -1103.2562
+146848.2620542839 3.3689182 -1103.1576
+146849.2620543882 3.3689182 -1103.2562
+146850.2620544925 3.3688395 -1103.197
+146851.2620545968 3.3688395 -1103.2168
+146852.2620547011 3.3688788 -1103.1774
+146853.2620548054 3.3688395 -1103.197
+146854.2620549097 3.3688788 -1103.2562
+146855.262055014 3.3688788 -1103.1774
+146856.2620551183 3.3688002 -1103.197
+146857.2620552226 3.3688002 -1103.2959
+146858.262055327 3.3688395 -1103.2366
+146859.2620554313 3.3688002 -1103.2168
+146860.2620555356 3.3688788 -1103.2366
+146861.2620556399 3.3688002 -1103.3156
+146862.2620557442 3.3688002 -1103.197
+146863.2620558485 3.3689182 -1103.2562
+146864.2620559528 3.3688002 -1103.2366
+146865.2620560571 3.3688002 -1103.197
+146866.2620561614 3.3689575 -1103.2366
+146867.2620562657 3.3687215 -1103.197
+146868.26205637 3.3688788 -1103.2366
+146869.2620564743 3.3688002 -1103.2366
+146870.2620565786 3.3687608 -1103.2761
+146871.262056683 3.3688002 -1103.2959
+146872.2620567873 3.3687215 -1103.1378
+146873.2620568916 3.3688002 -1103.2959
+146874.2620569959 3.3687608 -1103.2168
+146875.2620571002 3.3686819 -1103.197
+146876.2620572045 3.3688002 -1103.1774
+146877.2620573088 3.3688395 -1103.2761
+146878.2620574131 3.3688395 -1103.2562
+146879.2620575174 3.3689182 -1103.1576
+146880.2620576217 3.3688788 -1103.2366
+146881.262057726 3.3688395 -1103.2761
+146882.2620578303 3.3689969 -1103.197
+146883.2620579347 3.3689182 -1103.2366
+146884.262058039 3.3689969 -1103.2366
+146885.2620581433 3.3690364 -1103.2366
+146886.2620582476 3.3689575 -1103.1774
+146887.2620583519 3.3689969 -1103.2366
+146888.2620584562 3.3691151 -1103.1774
+146889.2620585605 3.3690758 -1103.2562
+146890.2620586648 3.3690758 -1103.1774
+146891.2620587691 3.3690364 -1103.2761
+146892.2620588734 3.3689969 -1103.1378
+146893.2620589777 3.3691938 -1103.197
+146894.262059082 3.3691151 -1103.197
+146895.2620591864 3.3690758 -1103.1378
+146896.2620592907 3.3689969 -1103.197
+146897.262059395 3.3689182 -1103.1774
+146898.2620594993 3.3690758 -1103.2959
+146899.2620596036 3.3689969 -1103.2959
+146900.2620597079 3.3690364 -1103.1378
+146901.2620598122 3.3690758 -1103.2761
+146902.2620599165 3.3691151 -1103.2366
+146903.2620600208 3.3690758 -1103.2168
+146904.2620601251 3.3690364 -1103.2168
+146905.2620602294 3.3691151 -1103.2366
+146906.2620603337 3.3689575 -1103.2168
+146907.2620604381 3.3690364 -1103.2959
+146908.2620605424 3.3691151 -1103.1774
+146909.2620606467 3.3690758 -1103.1774
+146910.262060751 3.3690364 -1103.1774
+146911.2620608553 3.3690758 -1103.2562
+146912.2620609596 3.3690364 -1103.197
+146913.2620610639 3.3689575 -1103.2761
+146914.2620611682 3.3690364 -1103.2366
+146915.2620612725 3.3689575 -1103.2366
+146916.2620613768 3.3689575 -1103.3156
+146917.2620614811 3.3688788 -1103.2562
+146918.2620615854 3.3689575 -1103.2562
+146919.2620616897 3.3689182 -1103.2168
+146920.2620617941 3.3689575 -1103.1576
+146921.2620618984 3.3688788 -1103.1576
+146922.2620620027 3.3688395 -1103.2366
+146923.262062107 3.3688788 -1103.197
+146924.2620622113 3.3687608 -1103.2168
+146925.2620623156 3.3687608 -1103.2366
+146926.2620624199 3.3687215 -1103.2562
+146927.2620625242 3.3687215 -1103.2761
+146928.2620626285 3.3687608 -1103.2562
+146929.2620627328 3.3686819 -1103.1774
+146930.2620628371 3.3687215 -1103.2366
+146931.2620629414 3.3685639 -1103.2761
+146932.2620630458 3.3686032 -1103.2959
+146933.2620631501 3.3686032 -1103.1774
+146934.2620632544 3.3686426 -1103.2168
+146935.2620633587 3.3686426 -1103.2366
+146936.262063463 3.3686032 -1103.1182
+146937.2620635673 3.3686032 -1103.2562
+146938.2620636716 3.3686819 -1103.2562
+146939.2620637759 3.3685639 -1103.1182
+146940.2620638802 3.3686426 -1103.2168
+146941.2620639845 3.3686032 -1103.2168
+146942.2620640888 3.3685246 -1103.1378
+146943.2620641931 3.3684852 -1103.2168
+146944.2620642975 3.3686032 -1103.197
+146945.2620644018 3.3684852 -1103.1774
+146946.2620645061 3.3684852 -1103.1576
+146947.2620646104 3.3684459 -1103.197
+146948.2620647147 3.3683276 -1103.2168
+146949.262064819 3.3684852 -1103.1182
+146950.2620649233 3.3682883 -1103.2366
+146951.2620650276 3.3682883 -1103.197
+146952.2620651319 3.3682883 -1103.2168
+146953.2620652362 3.3682489 -1103.3156
+146954.2620653405 3.3682883 -1103.2366
+146955.2620654448 3.3681309 -1103.2366
+146956.2620655491 3.3681703 -1103.2168
+146957.2620656535 3.3681703 -1103.2168
+146958.2620657578 3.3681703 -1103.2366
+146959.2620658621 3.3681309 -1103.2562
+146960.2620659664 3.3682096 -1103.1182
+146961.2620660707 3.3681309 -1103.1774
+146962.262066175 3.3680913 -1103.2366
+146963.2620662793 3.368052 -1103.2168
+146964.2620663836 3.368052 -1103.2366
+146965.2620664879 3.3680913 -1103.2366
+146966.2620665922 3.368052 -1103.1576
+146967.2620666965 3.3678553 -1103.197
+146968.2620668008 3.3680127 -1103.2562
+146969.2620669052 3.3680127 -1103.2562
+146970.2620670095 3.3679733 -1103.2366
+146971.2620671138 3.367816 -1103.1378
+146972.2620672181 3.3678553 -1103.1774
+146973.2620673224 3.3680127 -1103.1182
+146974.2620674267 3.3678946 -1103.2366
+146975.262067531 3.3678553 -1103.2366
+146976.2620676353 3.3678553 -1103.2168
+146977.2620677396 3.367816 -1103.3156
+146978.2620678439 3.367816 -1103.2168
+146979.2620679482 3.367816 -1103.2562
+146980.2620680525 3.3677764 -1103.2168
+146981.2620681569 3.3677371 -1103.2959
+146982.2620682612 3.3678553 -1103.1576
+146983.2620683655 3.3677764 -1103.2562
+146984.2620684698 3.3677371 -1103.1378
+146985.2620685741 3.367619 -1103.2168
+146986.2620686784 3.367619 -1103.1182
+146987.2620687827 3.3676977 -1103.2562
+146988.262068887 3.367619 -1103.2168
+146989.2620689913 3.3676584 -1103.1774
+146990.2620690956 3.3675797 -1103.3353
+146991.2620691999 3.3676977 -1103.2168
+146992.2620693042 3.3675404 -1103.2761
+146993.2620694085 3.3675404 -1103.2761
+146994.2620695129 3.367619 -1103.1378
+146995.2620696172 3.3675404 -1103.2959
+146996.2620697215 3.367619 -1103.1576
+146997.2620698258 3.3675797 -1103.2366
+146998.2620699301 3.367619 -1103.2168
+146999.2620700344 3.367619 -1103.2168
+147000.2620701387 3.3675404 -1103.2761
+147001.262070243 3.367501 -1103.2562
+147002.2620703473 3.3675797 -1103.2366
+147003.2620704516 3.3675404 -1103.2562
+147004.2620705559 3.367619 -1103.197
+147005.2620706602 3.367619 -1103.1576
+147006.2620707646 3.3676584 -1103.2366
+147007.2620708689 3.3676977 -1103.2366
+147008.2620709732 3.3676584 -1103.1774
+147009.2620710775 3.367619 -1103.3156
+147010.2620711818 3.3676584 -1103.2562
+147011.2620712861 3.367619 -1103.1774
+147012.2620713904 3.3676584 -1103.2366
+147013.2620714947 3.367619 -1103.2366
+147014.262071599 3.367619 -1103.0984
+147015.2620717033 3.367619 -1103.2366
+147016.2620718076 3.367619 -1103.1774
+147017.2620719119 3.3676977 -1103.2366
+147018.2620720163 3.3677371 -1103.197
+147019.2620721206 3.3676584 -1103.1774
+147020.2620722249 3.367619 -1103.2168
+147021.2620723292 3.367619 -1103.1576
+147022.2620724335 3.3677371 -1103.2366
+147023.2620725378 3.3676584 -1103.197
+147024.2620726421 3.3675797 -1103.2366
+147025.2620727464 3.3676584 -1103.2366
+147026.2620728507 3.3675404 -1103.2366
+147027.262072955 3.367619 -1103.2761
+147028.2620730593 3.367501 -1103.2168
+147029.2620731636 3.3676584 -1103.2366
+147030.262073268 3.3676977 -1103.2761
+147031.2620733723 3.367619 -1103.197
+147032.2620734766 3.3675404 -1103.2366
+147033.2620735809 3.3676584 -1103.2366
+147034.2620736852 3.3676584 -1103.1576
+147035.2620737895 3.3676584 -1103.2168
+147036.2620738938 3.3675797 -1103.1774
+147037.2620739981 3.3675797 -1103.1774
+147038.2620741024 3.367619 -1103.197
+147039.2620742067 3.3675797 -1103.197
+147040.262074311 3.367619 -1103.197
+147041.2620744153 3.3675797 -1103.2366
+147042.2620745196 3.3676584 -1103.2959
+147043.262074624 3.3675404 -1103.2168
+147044.2620747283 3.3675404 -1103.1774
+147045.2620748326 3.367619 -1103.2562
+147046.2620749369 3.3675797 -1103.1774
+147047.2620750412 3.3675797 -1103.2562
+147048.2620751455 3.3676584 -1103.2562
+147049.2620752498 3.3675797 -1103.2168
+147050.2620753541 3.3676977 -1103.197
+147051.2620754584 3.367619 -1103.2761
+147052.2620755627 3.367619 -1103.1182
+147053.262075667 3.3675797 -1103.1774
+147054.2620757713 3.3675797 -1103.2959
+147055.2620758757 3.367619 -1103.197
+147056.26207598 3.3676977 -1103.2366
+147057.2620760843 3.367619 -1103.2562
+147058.2620761886 3.3675797 -1103.2168
+147059.2620762929 3.3675404 -1103.1774
+147060.2620763972 3.367619 -1103.2562
+147061.2620765015 3.3676584 -1103.1774
+147062.2620766058 3.3675404 -1103.2168
+147063.2620767101 3.3674614 -1103.2366
+147064.2620768144 3.367501 -1103.1576
+147065.2620769187 3.367501 -1103.1774
+147066.262077023 3.3675404 -1103.1378
+147067.2620771274 3.367619 -1103.0785
+147068.2620772317 3.3675404 -1103.2366
+147069.262077336 3.3674614 -1103.2168
+147070.2620774403 3.3674614 -1103.2168
+147071.2620775446 3.3675404 -1103.1576
+147072.2620776489 3.3674614 -1103.2168
+147073.2620777532 3.3675797 -1103.2168
+147074.2620778575 3.3674614 -1103.2168
+147075.2620779618 3.3674614 -1103.2366
+147076.2620780661 3.3673828 -1103.2562
+147077.2620781704 3.3673828 -1103.2168
+147078.2620782747 3.3673828 -1103.1576
+147079.262078379 3.3673828 -1103.0984
+147080.2620784834 3.3672647 -1103.2959
+147081.2620785877 3.3672647 -1103.2366
+147082.262078692 3.3672254 -1103.2366
+147083.2620787963 3.3671465 -1103.1774
+147084.2620789006 3.3671861 -1103.197
+147085.2620790049 3.3670678 -1103.2168
+147086.2620791092 3.3670678 -1103.1774
+147087.2620792135 3.3669891 -1103.1774
+147088.2620793178 3.3670285 -1103.1774
+147089.2620794221 3.3669105 -1103.2761
+147090.2620795264 3.3669891 -1103.2168
+147091.2620796307 3.3668711 -1103.197
+147092.2620797351 3.3669105 -1103.2562
+147093.2620798394 3.3669105 -1103.0984
+147094.2620799437 3.3668711 -1103.2366
+147095.262080048 3.3668711 -1103.0984
+147096.2620801523 3.3668315 -1103.2168
+147097.2620802566 3.3667529 -1103.2366
+147098.2620803609 3.3667922 -1103.2562
+147099.2620804652 3.3666742 -1103.2168
+147100.2620805695 3.3667922 -1103.2761
+147101.2620806738 3.3666348 -1103.1774
+147102.2620807781 3.3667135 -1103.1182
+147103.2620808824 3.3667135 -1103.2366
+147104.2620809868 3.3666348 -1103.197
+147105.2620810911 3.3667135 -1103.2761
+147106.2620811954 3.3666742 -1103.197
+147107.2620812997 3.3667529 -1103.2168
+147108.262081404 3.3665955 -1103.3353
+147109.2620815083 3.3668315 -1103.1774
+147110.2620816126 3.3667922 -1103.2366
+147111.2620817169 3.3667135 -1103.2366
+147112.2620818212 3.3668315 -1103.1576
+147113.2620819255 3.3667529 -1103.3353
+147114.2620820298 3.3667922 -1103.197
+147115.2620821341 3.3667529 -1103.2168
+147116.2620822384 3.3668711 -1103.2168
+147117.2620823428 3.3667529 -1103.1774
+147118.2620824471 3.3667135 -1103.1576
+147119.2620825514 3.3669105 -1103.2168
+147120.2620826557 3.3668315 -1103.1576
+147121.26208276 3.3668315 -1103.2562
+147122.2620828643 3.3667529 -1103.2366
+147123.2620829686 3.3667529 -1103.2366
+147124.2620830729 3.3667922 -1103.2562
+147125.2620831772 3.3667922 -1103.2168
+147126.2620832815 3.3667529 -1103.1774
+147127.2620833858 3.3668711 -1103.1774
+147128.2620834901 3.3667922 -1103.3156
+147129.2620835945 3.3667922 -1103.2366
+147130.2620836988 3.3667922 -1103.2168
+147131.2620838031 3.3667135 -1103.2168
+147132.2620839074 3.3668315 -1103.1774
+147133.2620840117 3.3666742 -1103.197
+147134.262084116 3.3667135 -1103.1576
+147135.2620842203 3.3667135 -1103.197
+147136.2620843246 3.3666742 -1103.197
+147137.2620844289 3.3667135 -1103.197
+147138.2620845332 3.3666348 -1103.3156
+147139.2620846375 3.3665955 -1103.197
+147140.2620847418 3.3665562 -1103.2562
+147141.2620848462 3.3665562 -1103.1378
+147142.2620849505 3.3666742 -1103.2959
+147143.2620850548 3.3666348 -1103.2761
+147144.2620851591 3.3667922 -1103.0785
+147145.2620852634 3.3666348 -1103.1576
+147146.2620853677 3.3666348 -1103.2562
+147147.262085472 3.3667529 -1103.2562
+147148.2620855763 3.3666348 -1103.2168
+147149.2620856806 3.3667135 -1103.2761
+147150.2620857849 3.3666348 -1103.2366
+147151.2620858892 3.3667135 -1103.2562
+147152.2620859935 3.3667922 -1103.2366
+147153.2620860979 3.3667529 -1103.2761
+147154.2620862022 3.3667529 -1103.2562
+147155.2620863065 3.3665562 -1103.2168
+147156.2620864108 3.3666348 -1103.1774
+147157.2620865151 3.3667529 -1103.197
+147158.2620866194 3.3667922 -1103.1378
+147159.2620867237 3.3667922 -1103.2366
+147160.262086828 3.3667529 -1103.2168
+147161.2620869323 3.3667922 -1103.1378
+147162.2620870366 3.3666742 -1103.1774
+147163.2620871409 3.3666742 -1103.1774
+147164.2620872452 3.3667135 -1103.1576
+147165.2620873495 3.3667529 -1103.2761
+147166.2620874539 3.3667135 -1103.197
+147167.2620875582 3.3667135 -1103.2562
+147168.2620876625 3.3666742 -1103.2562
+147169.2620877668 3.3666348 -1103.1576
+147170.2620878711 3.3665562 -1103.2959
+147171.2620879754 3.3665562 -1103.2366
+147172.2620880797 3.3665955 -1103.2168
+147173.262088184 3.3665562 -1103.2168
+147174.2620882883 3.3665955 -1103.2168
+147175.2620883926 3.3665562 -1103.1774
+147176.2620884969 3.3664773 -1103.2761
+147177.2620886012 3.3664379 -1103.2562
+147178.2620887056 3.3665955 -1103.3353
+147179.2620888099 3.3664773 -1103.1378
+147180.2620889142 3.3664379 -1103.2366
+147181.2620890185 3.3665166 -1103.2562
+147182.2620891228 3.3664773 -1103.2168
+147183.2620892271 3.3664379 -1103.2761
+147184.2620893314 3.3664379 -1103.197
+147185.2620894357 3.3664773 -1103.2168
+147186.26208954 3.3663986 -1103.197
+147187.2620896443 3.3664379 -1103.2562
+147188.2620897486 3.3663986 -1103.1774
+147189.2620898529 3.3663199 -1103.197
+147190.2620899573 3.3663986 -1103.1378
+147191.2620900616 3.3664773 -1103.2761
+147192.2620901659 3.3663986 -1103.197
+147193.2620902702 3.3663592 -1103.2562
+147194.2620903745 3.3663986 -1103.1774
+147195.2620904788 3.3663592 -1103.2562
+147196.2620905831 3.3663986 -1103.2761
+147197.2620906874 3.3664379 -1103.2366
+147198.2620907917 3.3663986 -1103.2366
+147199.262090896 3.3663592 -1103.2761
+147200.2620910003 3.3664379 -1103.1774
+147201.2620911046 3.3663986 -1103.197
+147202.2620912089 3.3664379 -1103.2761
+147203.2620913133 3.3665166 -1103.197
+147204.2620914176 3.3664379 -1103.1774
+147205.2620915219 3.3664773 -1103.2562
+147206.2620916262 3.3663986 -1103.2959
+147207.2620917305 3.3664773 -1103.3156
+147208.2620918348 3.3663986 -1103.1774
+147209.2620919391 3.3663592 -1103.2562
+147210.2620920434 3.3663986 -1103.2959
+147211.2620921477 3.3663986 -1103.197
+147212.262092252 3.3663986 -1103.2366
+147213.2620923563 3.3664379 -1103.2562
+147214.2620924606 3.3663986 -1103.2366
+147215.262092565 3.3663592 -1103.3156
+147216.2620926693 3.3664379 -1103.2168
+147217.2620927736 3.3663986 -1103.2366
+147218.2620928779 3.3663592 -1103.2959
+147219.2620929822 3.3662806 -1103.2562
+147220.2620930865 3.3663592 -1103.2168
+147221.2620931908 3.3662806 -1103.1576
+147222.2620932951 3.3663986 -1103.1576
+147223.2620933994 3.3662016 -1103.197
+147224.2620935037 3.366241 -1103.2366
+147225.262093608 3.3662016 -1103.1378
+147226.2620937123 3.366241 -1103.2168
+147227.2620938167 3.3661623 -1103.2366
+147228.262093921 3.3661623 -1103.2168
+147229.2620940253 3.3661623 -1103.2761
+147230.2620941296 3.3661623 -1103.2168
+147231.2620942339 3.3660443 -1103.1774
+147232.2620943382 3.3660836 -1103.1378
+147233.2620944425 3.3661623 -1103.2168
+147234.2620945468 3.3660836 -1103.197
+147235.2620946511 3.3661623 -1103.2366
+147236.2620947554 3.3660836 -1103.1576
+147237.2620948597 3.3660049 -1103.1774
+147238.262094964 3.3660443 -1103.2761
+147239.2620950683 3.365926 -1103.1378
+147240.2620951727 3.3658867 -1103.1576
+147241.262095277 3.3658867 -1103.1774
+147242.2620953813 3.3659656 -1103.197
+147243.2620954856 3.3659656 -1103.197
+147244.2620955899 3.365926 -1103.197
+147245.2620956942 3.3658867 -1103.2366
+147246.2620957985 3.3658867 -1103.1378
+147247.2620959028 3.3658867 -1103.2168
+147248.2620960071 3.3658473 -1103.1378
+147249.2620961114 3.3658473 -1103.2562
+147250.2620962157 3.3657687 -1103.2562
+147251.26209632 3.3657687 -1103.2366
+147252.2620964244 3.365808 -1103.2562
+147253.2620965287 3.3657293 -1103.197
+147254.262096633 3.3657687 -1103.2168
+147255.2620967373 3.3658473 -1103.2168
+147256.2620968416 3.365808 -1103.2366
+147257.2620969459 3.3657687 -1103.1378
+147258.2620970502 3.3656507 -1103.197
+147259.2620971545 3.3657293 -1103.1378
+147260.2620972588 3.36569 -1103.197
+147261.2620973631 3.3656507 -1103.2562
+147262.2620974674 3.365808 -1103.2562
+147263.2620975717 3.36569 -1103.2761
+147264.2620976761 3.36569 -1103.2366
+147265.2620977804 3.3657687 -1103.1378
+147266.2620978847 3.36569 -1103.2761
+147267.262097989 3.36569 -1103.1774
+147268.2620980933 3.3656507 -1103.1774
+147269.2620981976 3.3657293 -1103.1576
+147270.2620983019 3.365808 -1103.2562
+147271.2620984062 3.3657687 -1103.197
+147272.2620985105 3.36569 -1103.2562
+147273.2620986148 3.36569 -1103.1774
+147274.2620987191 3.3657687 -1103.1576
+147275.2620988234 3.36569 -1103.2761
+147276.2620989277 3.365808 -1103.2366
+147277.2620990321 3.3658473 -1103.2168
+147278.2620991364 3.36569 -1103.2761
+147279.2620992407 3.3658473 -1103.3156
+147280.262099345 3.3657687 -1103.197
+147281.2620994493 3.3657687 -1103.2562
+147282.2620995536 3.365808 -1103.197
+147283.2620996579 3.365808 -1103.2168
+147284.2620997622 3.3657687 -1103.2366
+147285.2620998665 3.3657293 -1103.1378
+147286.2620999708 3.365808 -1103.197
+147287.2621000751 3.3657687 -1103.2761
+147288.2621001794 3.3658473 -1103.2761
+147289.2621002838 3.365808 -1103.1576
+147290.2621003881 3.36569 -1103.2168
+147291.2621004924 3.365808 -1103.1774
+147292.2621005967 3.365808 -1103.197
+147293.262100701 3.3658473 -1103.2168
+147294.2621008053 3.3657293 -1103.1774
+147295.2621009096 3.3657293 -1103.2562
+147296.2621010139 3.3657687 -1103.197
+147297.2621011182 3.3658473 -1103.197
+147298.2621012225 3.365808 -1103.1576
+147299.2621013268 3.3658473 -1103.2366
+147300.2621014311 3.365808 -1103.2366
+147301.2621015355 3.3658473 -1103.197
+147302.2621016398 3.365808 -1103.2366
+147303.2621017441 3.36569 -1103.2366
+147304.2621018484 3.365808 -1103.2366
+147305.2621019527 3.36569 -1103.2959
+147306.262102057 3.36569 -1103.2366
+147307.2621021613 3.3657293 -1103.2366
+147308.2621022656 3.3657293 -1103.2562
+147309.2621023699 3.3657293 -1103.1576
+147310.2621024742 3.365808 -1103.2168
+147311.2621025785 3.3658867 -1103.197
+147312.2621026828 3.3658867 -1103.197
+147313.2621027872 3.365808 -1103.197
+147314.2621028915 3.3658473 -1103.2366
+147315.2621029958 3.3658473 -1103.197
+147316.2621031001 3.365808 -1103.2168
+147317.2621032044 3.3658473 -1103.2562
+147318.2621033087 3.365926 -1103.197
+147319.262103413 3.3658867 -1103.2562
+147320.2621035173 3.365926 -1103.1774
+147321.2621036216 3.3658867 -1103.1774
+147322.2621037259 3.3660049 -1103.197
+147323.2621038302 3.3658867 -1103.1774
+147324.2621039345 3.365926 -1103.2562
+147325.2621040388 3.3658473 -1103.1378
+147326.2621041432 3.3659656 -1103.197
+147327.2621042475 3.365926 -1103.1774
+147328.2621043518 3.3659656 -1103.2366
+147329.2621044561 3.3658473 -1103.1378
+147330.2621045604 3.3659656 -1103.2168
+147331.2621046647 3.3660049 -1103.2761
+147332.262104769 3.3658473 -1103.197
+147333.2621048733 3.3659656 -1103.197
+147334.2621049776 3.365926 -1103.1576
+147335.2621050819 3.3658867 -1103.2366
+147336.2621051862 3.3658867 -1103.1774
+147337.2621052905 3.365808 -1103.2366
+147338.2621053949 3.365926 -1103.1182
+147339.2621054992 3.3659656 -1103.3156
+147340.2621056035 3.365808 -1103.197
+147341.2621057078 3.365808 -1103.197
+147342.2621058121 3.365808 -1103.2168
+147343.2621059164 3.3659656 -1103.1774
+147344.2621060207 3.3658473 -1103.1774
+147345.262106125 3.3658867 -1103.2366
+147346.2621062293 3.3657687 -1103.2168
+147347.2621063336 3.365808 -1103.2562
+147348.2621064379 3.365808 -1103.2366
+147349.2621065422 3.3657293 -1103.2366
+147350.2621066466 3.365808 -1103.2761
+147351.2621067509 3.365808 -1103.197
+147352.2621068552 3.36569 -1103.1774
+147353.2621069595 3.3656507 -1103.2168
+147354.2621070638 3.3656111 -1103.2761
+147355.2621071681 3.3656507 -1103.2562
+147356.2621072724 3.3656507 -1103.2562
+147357.2621073767 3.3654931 -1103.2168
+147358.262107481 3.3655324 -1103.2959
+147359.2621075853 3.3654537 -1103.2168
+147360.2621076896 3.3655717 -1103.197
+147361.2621077939 3.365375 -1103.2366
+147362.2621078982 3.365375 -1103.197
+147363.2621080026 3.3653357 -1103.2366
+147364.2621081069 3.3653357 -1103.1182
+147365.2621082112 3.3652568 -1103.197
+147366.2621083155 3.3652961 -1103.197
+147367.2621084198 3.3652174 -1103.197
+147368.2621085241 3.3652568 -1103.1576
+147369.2621086284 3.365375 -1103.2168
+147370.2621087327 3.3652174 -1103.2562
+147371.262108837 3.3652568 -1103.1774
+147372.2621089413 3.3651388 -1103.2366
+147373.2621090456 3.3652174 -1103.1774
+147374.2621091499 3.3652174 -1103.1576
+147375.2621092543 3.3651781 -1103.1774
+147376.2621093586 3.3652174 -1103.2366
+147377.2621094629 3.3650601 -1103.2959
+147378.2621095672 3.3650601 -1103.1774
+147379.2621096715 3.3650601 -1103.2761
+147380.2621097758 3.3650994 -1103.1774
+147381.2621098801 3.3650994 -1103.197
+147382.2621099844 3.3650601 -1103.2562
+147383.2621100887 3.3649812 -1103.2168
+147384.262110193 3.3650208 -1103.2366
+147385.2621102973 3.3649418 -1103.2366
+147386.2621104016 3.3649812 -1103.2761
+147387.262110506 3.3649812 -1103.2366
+147388.2621106103 3.3649418 -1103.2168
+147389.2621107146 3.3648632 -1103.2562
+147390.2621108189 3.3649812 -1103.197
+147391.2621109232 3.3649812 -1103.2366
+147392.2621110275 3.3650208 -1103.1576
+147393.2621111318 3.3648632 -1103.2366
+147394.2621112361 3.3650208 -1103.2562
+147395.2621113404 3.3649025 -1103.2761
+147396.2621114447 3.3648632 -1103.197
+147397.262111549 3.3649025 -1103.2366
+147398.2621116533 3.3649812 -1103.2168
+147399.2621117576 3.3648632 -1103.2366
+147400.262111862 3.3647845 -1103.1774
+147401.2621119663 3.3649025 -1103.2562
+147402.2621120706 3.3647845 -1103.2562
+147403.2621121749 3.3647451 -1103.2168
+147404.2621122792 3.3647451 -1103.197
+147405.2621123835 3.3647451 -1103.2562
+147406.2621124878 3.3646662 -1103.1378
+147407.2621125921 3.3645875 -1103.2168
+147408.2621126964 3.3646269 -1103.197
+147409.2621128007 3.3646269 -1103.3156
+147410.262112905 3.3647056 -1103.197
+147411.2621130093 3.3646269 -1103.1576
+147412.2621131137 3.3645482 -1103.2562
+147413.262113218 3.3645875 -1103.1774
+147414.2621133223 3.3644302 -1103.2562
+147415.2621134266 3.3646662 -1103.1576
+147416.2621135309 3.3645482 -1103.2168
+147417.2621136352 3.3645482 -1103.2366
+147418.2621137395 3.3644695 -1103.1576
+147419.2621138438 3.3644695 -1103.2562
+147420.2621139481 3.3644302 -1103.2168
+147421.2621140524 3.3644302 -1103.2168
+147422.2621141567 3.3644695 -1103.197
+147423.262114261 3.3645089 -1103.1774
+147424.2621143654 3.3643906 -1103.2168
+147425.2621144697 3.3645089 -1103.1774
+147426.262114574 3.3643513 -1103.1774
+147427.2621146783 3.3643513 -1103.2168
+147428.2621147826 3.3643119 -1103.2959
+147429.2621148869 3.3643119 -1103.2959
+147430.2621149912 3.3643906 -1103.1774
+147431.2621150955 3.3644695 -1103.197
+147432.2621151998 3.3643119 -1103.2761
+147433.2621153041 3.3643119 -1103.197
+147434.2621154084 3.3643906 -1103.1576
+147435.2621155127 3.3643119 -1103.2562
+147436.2621156171 3.3643513 -1103.2761
+147437.2621157214 3.3642333 -1103.2959
+147438.2621158257 3.3643119 -1103.1576
+147439.26211593 3.3641939 -1103.197
+147440.2621160343 3.3642333 -1103.2761
+147441.2621161386 3.3643513 -1103.1774
+147442.2621162429 3.3642726 -1103.2366
+147443.2621163472 3.3641939 -1103.197
+147444.2621164515 3.3642333 -1103.2761
+147445.2621165558 3.3641939 -1103.2562
+147446.2621166601 3.3641939 -1103.1774
+147447.2621167644 3.3641152 -1103.2562
+147448.2621168687 3.3641939 -1103.2562
+147449.2621169731 3.3641546 -1103.2761
+147450.2621170774 3.3641546 -1103.2168
+147451.2621171817 3.3642333 -1103.2562
+147452.262117286 3.3641939 -1103.2761
+147453.2621173903 3.3641939 -1103.2168
+147454.2621174946 3.3643119 -1103.2562
+147455.2621175989 3.3642726 -1103.3353
+147456.2621177032 3.3642333 -1103.2366
+147457.2621178075 3.3642333 -1103.2959
+147458.2621179118 3.3641546 -1103.2366
+147459.2621180161 3.3641939 -1103.1774
+147460.2621181204 3.3641152 -1103.197
+147461.2621182248 3.3641546 -1103.2366
+147462.2621183291 3.3640363 -1103.197
+147463.2621184334 3.3641939 -1103.2366
+147464.2621185377 3.3640757 -1103.2366
+147465.262118642 3.3641152 -1103.2562
+147466.2621187463 3.3641152 -1103.2366
+147467.2621188506 3.3641152 -1103.197
+147468.2621189549 3.363879 -1103.2761
+147469.2621190592 3.363879 -1103.2562
+147470.2621191635 3.3639183 -1103.1774
+147471.2621192678 3.3638396 -1103.2168
+147472.2621193721 3.363879 -1103.2168
+147473.2621194765 3.363879 -1103.2366
+147474.2621195808 3.3638003 -1103.2562
+147475.2621196851 3.363997 -1103.2761
+147476.2621197894 3.363879 -1103.2366
+147477.2621198937 3.363879 -1103.2168
+147478.262119998 3.3637607 -1103.2168
+147479.2621201023 3.3637607 -1103.1576
+147480.2621202066 3.363682 -1103.2959
+147481.2621203109 3.3637214 -1103.197
+147482.2621204152 3.363682 -1103.2366
+147483.2621205195 3.3636427 -1103.1774
+147484.2621206238 3.363682 -1103.2562
+147485.2621207281 3.3637607 -1103.1774
+147486.2621208325 3.363682 -1103.197
+147487.2621209368 3.363564 -1103.2168
+147488.2621210411 3.363682 -1103.2366
+147489.2621211454 3.363564 -1103.2562
+147490.2621212497 3.3637607 -1103.2168
+147491.262121354 3.3636427 -1103.2959
+147492.2621214583 3.363682 -1103.197
+147493.2621215626 3.3636427 -1103.1774
+147494.2621216669 3.3636034 -1103.1182
+147495.2621217712 3.3637214 -1103.2366
+147496.2621218755 3.3637214 -1103.197
+147497.2621219798 3.363564 -1103.197
+147498.2621220842 3.3637607 -1103.2562
+147499.2621221885 3.363682 -1103.0984
+147500.2621222928 3.3636034 -1103.2168
+147501.2621223971 3.363682 -1103.3353
+147502.2621225014 3.363564 -1103.2366
+147503.2621226057 3.3637214 -1103.1182
+147504.26212271 3.363682 -1103.2562
+147505.2621228143 3.3636034 -1103.1378
+147506.2621229186 3.3636034 -1103.1576
+147507.2621230229 3.3636034 -1103.1774
+147508.2621231272 3.3634853 -1103.1774
+147509.2621232315 3.363564 -1103.2168
+147510.2621233359 3.3635247 -1103.2366
+147511.2621234402 3.3635247 -1103.1774
+147512.2621235445 3.3634458 -1103.2959
+147513.2621236488 3.3635247 -1103.2168
+147514.2621237531 3.3634064 -1103.197
+147515.2621238574 3.3634458 -1103.2366
+147516.2621239617 3.3634853 -1103.3156
+147517.262124066 3.3634458 -1103.197
+147518.2621241703 3.3634458 -1103.2959
+147519.2621242746 3.3634064 -1103.1774
+147520.2621243789 3.3633671 -1103.1576
+147521.2621244832 3.3633277 -1103.2168
+147522.2621245875 3.3633671 -1103.197
+147523.2621246919 3.3634064 -1103.1774
+147524.2621247962 3.3633277 -1103.2168
+147525.2621249005 3.3633671 -1103.2168
+147526.2621250048 3.3633671 -1103.1774
+147527.2621251091 3.3632884 -1103.197
+147528.2621252134 3.3633671 -1103.2959
+147529.2621253177 3.3633671 -1103.2761
+147530.262125422 3.3634064 -1103.1774
+147531.2621255263 3.3632491 -1103.2761
+147532.2621256306 3.3633671 -1103.197
+147533.2621257349 3.3634064 -1103.2168
+147534.2621258392 3.3632491 -1103.2168
+147535.2621259436 3.3632884 -1103.197
+147536.2621260479 3.3634064 -1103.197
+147537.2621261522 3.3634064 -1103.2168
+147538.2621262565 3.3633671 -1103.2562
+147539.2621263608 3.3632884 -1103.2168
+147540.2621264651 3.3633671 -1103.2366
+147541.2621265694 3.3633671 -1103.3551
+147542.2621266737 3.3633277 -1103.2562
+147543.262126778 3.3633277 -1103.1774
+147544.2621268823 3.3632884 -1103.1774
+147545.2621269866 3.3632491 -1103.197
+147546.2621270909 3.3634458 -1103.2761
+147547.2621271953 3.3633277 -1103.197
+147548.2621272996 3.3632884 -1103.2168
+147549.2621274039 3.3632097 -1103.2168
+147550.2621275082 3.3632491 -1103.1774
+147551.2621276125 3.3631704 -1103.2562
+147552.2621277168 3.3632491 -1103.1774
+147553.2621278211 3.3632491 -1103.1576
+147554.2621279254 3.3633277 -1103.2168
+147555.2621280297 3.3631704 -1103.2562
+147556.262128134 3.3632491 -1103.197
+147557.2621282383 3.3632097 -1103.2168
+147558.2621283426 3.3632884 -1103.2366
+147559.262128447 3.3632884 -1103.2562
+147560.2621285513 3.3632884 -1103.1774
+147561.2621286556 3.3631704 -1103.2562
+147562.2621287599 3.3632884 -1103.2761
+147563.2621288642 3.3633277 -1103.2168
+147564.2621289685 3.3632884 -1103.2761
+147565.2621290728 3.3631308 -1103.2761
+147566.2621291771 3.3631704 -1103.2959
+147567.2621292814 3.3631308 -1103.197
+147568.2621293857 3.3632491 -1103.1774
+147569.26212949 3.3631704 -1103.197
+147570.2621295943 3.3632097 -1103.2562
+147571.2621296986 3.3631704 -1103.1378
+147572.262129803 3.3632097 -1103.2168
+147573.2621299073 3.3631704 -1103.2562
+147574.2621300116 3.3632097 -1103.2761
+147575.2621301159 3.3631704 -1103.197
+147576.2621302202 3.3630915 -1103.2168
+147577.2621303245 3.3631704 -1103.2168
+147578.2621304288 3.3631704 -1103.2366
+147579.2621305331 3.3632097 -1103.197
+147580.2621306374 3.3631704 -1103.2168
+147581.2621307417 3.3631308 -1103.2366
+147582.262130846 3.3631308 -1103.2562
+147583.2621309503 3.3631704 -1103.2761
+147584.2621310547 3.3630915 -1103.197
+147585.262131159 3.3629735 -1103.2761
+147586.2621312633 3.3630915 -1103.197
+147587.2621313676 3.3630128 -1103.197
+147588.2621314719 3.3629341 -1103.2761
+147589.2621315762 3.3630915 -1103.197
+147590.2621316805 3.3629735 -1103.3749
+147591.2621317848 3.3629735 -1103.2168
+147592.2621318891 3.3630521 -1103.2366
+147593.2621319934 3.3630521 -1103.2562
+147594.2621320977 3.3628948 -1103.2761
+147595.262132202 3.3629735 -1103.2168
+147596.2621323064 3.3629735 -1103.2562
+147597.2621324107 3.3629735 -1103.2562
+147598.262132515 3.3629735 -1103.1576
+147599.2621326193 3.3628948 -1103.197
+147600.2621327236 3.3629341 -1103.2366
+147601.2621328279 3.3628552 -1103.2168
+147602.2621329322 3.3628948 -1103.2168
+147603.2621330365 3.3628159 -1103.1576
+147604.2621331408 3.3628552 -1103.2562
+147605.2621332451 3.3627372 -1103.2366
+147606.2621333494 3.3627765 -1103.2366
+147607.2621334537 3.3627765 -1103.2168
+147608.262133558 3.3626978 -1103.2366
+147609.2621336624 3.3626978 -1103.2761
+147610.2621337667 3.3626978 -1103.1576
+147611.262133871 3.3628552 -1103.1774
+147612.2621339753 3.3627372 -1103.2562
+147613.2621340796 3.3628159 -1103.2366
+147614.2621341839 3.3627765 -1103.2562
+147615.2621342882 3.3627372 -1103.2959
+147616.2621343925 3.3627372 -1103.2366
+147617.2621344968 3.3628159 -1103.2168
+147618.2621346011 3.3627765 -1103.2366
+147619.2621347054 3.3626978 -1103.2761
+147620.2621348097 3.3627765 -1103.2761
+147621.2621349141 3.3627765 -1103.1576
+147622.2621350184 3.3628159 -1103.2366
+147623.2621351227 3.3627372 -1103.197
+147624.262135227 3.3627372 -1103.2562
+147625.2621353313 3.3628159 -1103.2168
+147626.2621354356 3.3627372 -1103.197
+147627.2621355399 3.3626585 -1103.0984
+147628.2621356442 3.3627372 -1103.197
+147629.2621357485 3.3627372 -1103.1774
+147630.2621358528 3.3626585 -1103.2562
+147631.2621359571 3.3627372 -1103.2562
+147632.2621360614 3.3627372 -1103.197
+147633.2621361658 3.3627372 -1103.2168
+147634.2621362701 3.3626585 -1103.2168
+147635.2621363744 3.3625798 -1103.2562
+147636.2621364787 3.3626585 -1103.197
+147637.262136583 3.3625798 -1103.1576
+147638.2621366873 3.3626192 -1103.2366
+147639.2621367916 3.3625402 -1103.2366
+147640.2621368959 3.3625009 -1103.197
+147641.2621370002 3.3625009 -1103.1576
+147642.2621371045 3.3624222 -1103.2562
+147643.2621372088 3.3623435 -1103.3156
+147644.2621373131 3.3623829 -1103.2168
+147645.2621374174 3.3623829 -1103.1378
+147646.2621375218 3.3623435 -1103.2366
+147647.2621376261 3.3623435 -1103.2366
+147648.2621377304 3.3622649 -1103.2366
+147649.2621378347 3.362186 -1103.197
+147650.262137939 3.3623042 -1103.2959
+147651.2621380433 3.362186 -1103.2562
+147652.2621381476 3.3621466 -1103.2761
+147653.2621382519 3.3622253 -1103.1774
+147654.2621383562 3.3622253 -1103.2168
+147655.2621384605 3.3622253 -1103.2959
+147656.2621385648 3.3621073 -1103.2761
+147657.2621386691 3.3621073 -1103.2959
+147658.2621387735 3.3620286 -1103.1378
+147659.2621388778 3.3620286 -1103.2959
+147660.2621389821 3.3620286 -1103.2168
+147661.2621390864 3.3619893 -1103.197
+147662.2621391907 3.361871 -1103.3156
+147663.262139295 3.3619103 -1103.197
+147664.2621393993 3.3618317 -1103.1576
+147665.2621395036 3.361753 -1103.1576
+147666.2621396079 3.3617923 -1103.2168
+147667.2621397122 3.3617136 -1103.2562
+147668.2621398165 3.361753 -1103.1576
+147669.2621399208 3.3617136 -1103.2168
+147670.2621400252 3.3616743 -1103.2168
+147671.2621401295 3.3616743 -1103.2761
+147672.2621402338 3.3615954 -1103.3156
+147673.2621403381 3.3616743 -1103.2562
+147674.2621404424 3.3617136 -1103.197
+147675.2621405467 3.361635 -1103.2562
+147676.262140651 3.361635 -1103.2366
+147677.2621407553 3.3615561 -1103.2366
+147678.2621408596 3.361635 -1103.2562
+147679.2621409639 3.3616743 -1103.2761
+147680.2621410682 3.3615561 -1103.197
+147681.2621411725 3.361635 -1103.2959
+147682.2621412768 3.3615954 -1103.2562
+147683.2621413812 3.3615167 -1103.1774
+147684.2621414855 3.3616743 -1103.2366
+147685.2621415898 3.3615167 -1103.2168
+147686.2621416941 3.3615167 -1103.2366
+147687.2621417984 3.3615167 -1103.197
+147688.2621419027 3.3615167 -1103.1774
+147689.262142007 3.3613987 -1103.197
+147690.2621421113 3.3615167 -1103.2366
+147691.2621422156 3.3614774 -1103.1774
+147692.2621423199 3.3615167 -1103.2562
+147693.2621424242 3.3613987 -1103.2562
+147694.2621425285 3.361438 -1103.197
+147695.2621426329 3.3613987 -1103.1576
+147696.2621427372 3.36132 -1103.2761
+147697.2621428415 3.3613594 -1103.197
+147698.2621429458 3.3612804 -1103.2168
+147699.2621430501 3.3612411 -1103.2366
+147700.2621431544 3.3612018 -1103.2366
+147701.2621432587 3.3612804 -1103.2168
+147702.262143363 3.3611231 -1103.2168
+147703.2621434673 3.3612018 -1103.197
+147704.2621435716 3.3611624 -1103.3353
+147705.2621436759 3.3611231 -1103.2761
+147706.2621437802 3.3609655 -1103.1774
+147707.2621438846 3.3610837 -1103.2366
+147708.2621439889 3.3610048 -1103.197
+147709.2621440932 3.3610048 -1103.2366
+147710.2621441975 3.3608868 -1103.197
+147711.2621443018 3.3609655 -1103.2562
+147712.2621444061 3.3609262 -1103.2366
+147713.2621445104 3.3609655 -1103.2959
+147714.2621446147 3.3608081 -1103.2959
+147715.262144719 3.3608868 -1103.2168
+147716.2621448233 3.3608868 -1103.2168
+147717.2621449276 3.3608081 -1103.1774
+147718.2621450319 3.3607688 -1103.2366
+147719.2621451363 3.3607688 -1103.1774
+147720.2621452406 3.3608081 -1103.197
+147721.2621453449 3.3608081 -1103.1576
+147722.2621454492 3.3607295 -1103.1576
+147723.2621455535 3.3608081 -1103.2761
+147724.2621456578 3.3607688 -1103.1774
+147725.2621457621 3.3607688 -1103.1182
+147726.2621458664 3.3606505 -1103.2761
+147727.2621459707 3.3607688 -1103.1774
+147728.262146075 3.3606899 -1103.2761
+147729.2621461793 3.3606899 -1103.2168
+147730.2621462836 3.3607688 -1103.2366
+147731.2621463879 3.3606505 -1103.197
+147732.2621464923 3.3606899 -1103.2168
+147733.2621465966 3.3606899 -1103.2562
+147734.2621467009 3.3606112 -1103.1774
+147735.2621468052 3.3606899 -1103.1774
+147736.2621469095 3.3607688 -1103.2761
+147737.2621470138 3.3607688 -1103.2761
+147738.2621471181 3.3606505 -1103.2761
+147739.2621472224 3.3606505 -1103.197
+147740.2621473267 3.3605325 -1103.2366
+147741.262147431 3.3605719 -1103.2366
+147742.2621475353 3.3606505 -1103.197
+147743.2621476396 3.3606505 -1103.197
+147744.262147744 3.3607295 -1103.1576
+147745.2621478483 3.3606505 -1103.1378
+147746.2621479526 3.3606505 -1103.1378
+147747.2621480569 3.3607295 -1103.2168
+147748.2621481612 3.3606899 -1103.2959
+147749.2621482655 3.3606899 -1103.2562
+147750.2621483698 3.3606505 -1103.1774
+147751.2621484741 3.3605719 -1103.2366
+147752.2621485784 3.3606112 -1103.2562
+147753.2621486827 3.3605719 -1103.1182
+147754.262148787 3.3605325 -1103.2761
+147755.2621488913 3.3606112 -1103.2168
+147756.2621489957 3.3606112 -1103.2761
+147757.2621491 3.3604538 -1103.2366
+147758.2621492043 3.3604538 -1103.1774
+147759.2621493086 3.3604932 -1103.2168
+147760.2621494129 3.3605719 -1103.2959
+147761.2621495172 3.3604932 -1103.2366
+147762.2621496215 3.3604145 -1103.1774
+147763.2621497258 3.3604538 -1103.2168
+147764.2621498301 3.3605325 -1103.1774
+147765.2621499344 3.3604145 -1103.197
+147766.2621500387 3.3603749 -1103.2168
+147767.262150143 3.3604932 -1103.1774
+147768.2621502473 3.3603356 -1103.197
+147769.2621503517 3.3603356 -1103.197
+147770.262150456 3.3604538 -1103.2366
+147771.2621505603 3.3604145 -1103.2959
+147772.2621506646 3.3604145 -1103.1576
+147773.2621507689 3.3602962 -1103.2366
+147774.2621508732 3.3602569 -1103.2366
+147775.2621509775 3.3603356 -1103.1774
+147776.2621510818 3.3603356 -1103.2761
+147777.2621511861 3.3603356 -1103.2366
+147778.2621512904 3.3602569 -1103.0984
+147779.2621513947 3.3602176 -1103.1774
+147780.262151499 3.3602569 -1103.2168
+147781.2621516034 3.3601389 -1103.2959
+147782.2621517077 3.3601782 -1103.3353
+147783.262151812 3.3601389 -1103.2761
+147784.2621519163 3.3601389 -1103.197
+147785.2621520206 3.3602176 -1103.1576
+147786.2621521249 3.3600996 -1103.1774
+147787.2621522292 3.3601782 -1103.2761
+147788.2621523335 3.3601782 -1103.2761
+147789.2621524378 3.36006 -1103.2562
+147790.2621525421 3.3600996 -1103.2168
+147791.2621526464 3.36006 -1103.2562
+147792.2621527507 3.3601389 -1103.1576
+147793.2621528551 3.36006 -1103.1774
+147794.2621529594 3.36006 -1103.1774
+147795.2621530637 3.3600206 -1103.2562
+147796.262153168 3.36006 -1103.2168
+147797.2621532723 3.36006 -1103.197
+147798.2621533766 3.3599813 -1103.2168
+147799.2621534809 3.3601389 -1103.1576
+147800.2621535852 3.3599813 -1103.1182
+147801.2621536895 3.36006 -1103.197
+147802.2621537938 3.36006 -1103.197
+147803.2621538981 3.3599813 -1103.2168
+147804.2621540024 3.3599813 -1103.1576
+147805.2621541067 3.3599026 -1103.1378
+147806.2621542111 3.3600206 -1103.0984
+147807.2621543154 3.359942 -1103.1378
+147808.2621544197 3.3599813 -1103.2761
+147809.262154524 3.359942 -1103.197
+147810.2621546283 3.3599026 -1103.2168
+147811.2621547326 3.3599813 -1103.2168
+147812.2621548369 3.3599026 -1103.2562
+147813.2621549412 3.3599813 -1103.1576
+147814.2621550455 3.3599026 -1103.2562
+147815.2621551498 3.3599026 -1103.2366
+147816.2621552541 3.3598633 -1103.2562
+147817.2621553584 3.359942 -1103.197
+147818.2621554628 3.3599026 -1103.2168
+147819.2621555671 3.3599026 -1103.197
+147820.2621556714 3.3599026 -1103.197
+147821.2621557757 3.359942 -1103.2562
+147822.26215588 3.3599026 -1103.2366
+147823.2621559843 3.3598239 -1103.2959
+147824.2621560886 3.3597057 -1103.1774
+147825.2621561929 3.3598633 -1103.2562
+147826.2621562972 3.3598633 -1103.2168
+147827.2621564015 3.3598239 -1103.2761
+147828.2621565058 3.359745 -1103.2959
+147829.2621566101 3.359745 -1103.3353
+147830.2621567145 3.3597057 -1103.197
+147831.2621568188 3.3597057 -1103.1774
+147832.2621569231 3.3596663 -1103.2168
+147833.2621570274 3.3595877 -1103.2761
+147834.2621571317 3.3597057 -1103.1774
+147835.262157236 3.3596663 -1103.2168
+147836.2621573403 3.359509 -1103.2366
+147837.2621574446 3.3595483 -1103.2168
+147838.2621575489 3.3595483 -1103.197
+147839.2621576532 3.359627 -1103.197
+147840.2621577575 3.359509 -1103.2761
+147841.2621578618 3.359509 -1103.2562
+147842.2621579662 3.3595483 -1103.1774
+147843.2621580705 3.3595483 -1103.2168
+147844.2621581748 3.3595483 -1103.2168
+147845.2621582791 3.3595483 -1103.2168
+147846.2621583834 3.3595877 -1103.2562
+147847.2621584877 3.359627 -1103.2366
+147848.262158592 3.3595877 -1103.1576
+147849.2621586963 3.3595483 -1103.2168
+147850.2621588006 3.359745 -1103.3156
+147851.2621589049 3.3596663 -1103.2562
+147852.2621590092 3.3597057 -1103.2168
+147853.2621591135 3.359627 -1103.2562
+147854.2621592178 3.3596663 -1103.2366
+147855.2621593222 3.359745 -1103.2168
+147856.2621594265 3.359627 -1103.2761
+147857.2621595308 3.359745 -1103.3353
+147858.2621596351 3.3596663 -1103.2562
+147859.2621597394 3.3597057 -1103.2959
+147860.2621598437 3.3598239 -1103.197
+147861.262159948 3.3596663 -1103.197
+147862.2621600523 3.359745 -1103.1182
+147863.2621601566 3.3596663 -1103.1774
+147864.2621602609 3.3597057 -1103.197
+147865.2621603652 3.3597846 -1103.2366
+147866.2621604695 3.3596663 -1103.1182
+147867.2621605739 3.3597846 -1103.2562
+147868.2621606782 3.3598239 -1103.2562
+147869.2621607825 3.359745 -1103.2168
+147870.2621608868 3.3598633 -1103.2562
+147871.2621609911 3.3597846 -1103.2562
+147872.2621610954 3.3599026 -1103.2562
+147873.2621611997 3.3597846 -1103.1182
+147874.262161304 3.359942 -1103.3156
+147875.2621614083 3.3598633 -1103.0984
+147876.2621615126 3.3598239 -1103.2366
+147877.2621616169 3.3599026 -1103.1378
+147878.2621617212 3.3598633 -1103.1576
+147879.2621618256 3.3598239 -1103.2761
+147880.2621619299 3.359942 -1103.2168
+147881.2621620342 3.3599026 -1103.1576
+147882.2621621385 3.3597846 -1103.1774
+147883.2621622428 3.3598633 -1103.2959
+147884.2621623471 3.3598633 -1103.2562
+147885.2621624514 3.359745 -1103.1182
+147886.2621625557 3.3598239 -1103.197
+147887.26216266 3.3599026 -1103.1576
+147888.2621627643 3.3598239 -1103.2761
+147889.2621628686 3.3598239 -1103.2366
+147890.2621629729 3.3597846 -1103.2366
+147891.2621630772 3.3598239 -1103.2562
+147892.2621631816 3.359745 -1103.1182
+147893.2621632859 3.3597846 -1103.2562
+147894.2621633902 3.3597057 -1103.1576
+147895.2621634945 3.359745 -1103.2761
+147896.2621635988 3.3597057 -1103.2761
+147897.2621637031 3.359745 -1103.2562
+147898.2621638074 3.359745 -1103.2562
+147899.2621639117 3.3597057 -1103.2959
+147900.262164016 3.359745 -1103.1774
+147901.2621641203 3.3596663 -1103.3353
+147902.2621642246 3.3596663 -1103.2168
+147903.2621643289 3.3595877 -1103.1774
+147904.2621644333 3.3595877 -1103.2562
+147905.2621645376 3.3595877 -1103.2761
+147906.2621646419 3.359509 -1103.1378
+147907.2621647462 3.3595483 -1103.2168
+147908.2621648505 3.3595483 -1103.2168
+147909.2621649548 3.3594301 -1103.2562
+147910.2621650591 3.3594697 -1103.2168
+147911.2621651634 3.3593514 -1103.2562
+147912.2621652677 3.3593907 -1103.2168
+147913.262165372 3.3593514 -1103.2562
+147914.2621654763 3.3593907 -1103.1576
+147915.2621655806 3.3593121 -1103.2562
+147916.262165685 3.3592727 -1103.197
+147917.2621657893 3.3593121 -1103.3156
+147918.2621658936 3.3592727 -1103.197
+147919.2621659979 3.3590758 -1103.2562
+147920.2621661022 3.3592334 -1103.3156
+147921.2621662065 3.3591545 -1103.1774
+147922.2621663108 3.3591151 -1103.1774
+147923.2621664151 3.359194 -1103.0984
+147924.2621665194 3.359194 -1103.2366
+147925.2621666237 3.3591151 -1103.2761
+147926.262166728 3.3591151 -1103.3156
+147927.2621668323 3.3591545 -1103.2959
+147928.2621669366 3.3592334 -1103.2761
+147929.262167041 3.3591545 -1103.2366
+147930.2621671453 3.3590758 -1103.2168
+147931.2621672496 3.3591545 -1103.2168
+147932.2621673539 3.3591151 -1103.1576
+147933.2621674582 3.359194 -1103.1576
+147934.2621675625 3.359194 -1103.2562
+147935.2621676668 3.3591151 -1103.2366
+147936.2621677711 3.3591545 -1103.2168
+147937.2621678754 3.3591545 -1103.2366
+147938.2621679797 3.359194 -1103.2366
+147939.262168084 3.3592334 -1103.2562
+147940.2621681883 3.359194 -1103.1378
+147941.2621682927 3.359194 -1103.197
+147942.262168397 3.3591545 -1103.2562
+147943.2621685013 3.3593514 -1103.3156
+147944.2621686056 3.3592727 -1103.2562
+147945.2621687099 3.3591545 -1103.2168
+147946.2621688142 3.3592334 -1103.2366
+147947.2621689185 3.3593121 -1103.1774
+147948.2621690228 3.3592334 -1103.2366
+147949.2621691271 3.3592334 -1103.197
+147950.2621692314 3.3591545 -1103.1774
+147951.2621693357 3.3592334 -1103.2761
+147952.26216944 3.3593514 -1103.2366
+147953.2621695444 3.3592334 -1103.2168
+147954.2621696487 3.3591151 -1103.2168
+147955.262169753 3.3592334 -1103.2366
+147956.2621698573 3.3591545 -1103.2366
+147957.2621699616 3.3591545 -1103.2366
+147958.2621700659 3.3590364 -1103.2761
+147959.2621701702 3.3591545 -1103.1182
+147960.2621702745 3.3590364 -1103.1378
+147961.2621703788 3.3591545 -1103.1774
+147962.2621704831 3.3589971 -1103.2168
+147963.2621705874 3.3589971 -1103.2959
+147964.2621706917 3.3589578 -1103.2761
+147965.2621707961 3.3589578 -1103.2168
+147966.2621709004 3.3591151 -1103.1774
+147967.2621710047 3.3589971 -1103.1774
+147968.262171109 3.3590364 -1103.2959
+147969.2621712133 3.3589971 -1103.2959
+147970.2621713176 3.3589971 -1103.1774
+147971.2621714219 3.3588791 -1103.2959
+147972.2621715262 3.3588395 -1103.197
+147973.2621716305 3.3588791 -1103.2366
+147974.2621717348 3.3589184 -1103.2366
+147975.2621718391 3.3587608 -1103.2366
+147976.2621719434 3.3588002 -1103.2366
+147977.2621720477 3.3588395 -1103.1774
+147978.2621721521 3.3588002 -1103.197
+147979.2621722564 3.3588395 -1103.2366
+147980.2621723607 3.3588791 -1103.2366
+147981.262172465 3.3588002 -1103.2168
+147982.2621725693 3.3588395 -1103.1774
+147983.2621726736 3.3588002 -1103.2168
+147984.2621727779 3.3588002 -1103.2366
+147985.2621728822 3.3587608 -1103.1576
+147986.2621729865 3.3588002 -1103.2761
+147987.2621730908 3.3588395 -1103.1576
+147988.2621731951 3.3588395 -1103.2959
+147989.2621732994 3.3588002 -1103.197
+147990.2621734038 3.3588395 -1103.1774
+147991.2621735081 3.3588395 -1103.1182
+147992.2621736124 3.3587215 -1103.2366
+147993.2621737167 3.3586822 -1103.2366
+147994.262173821 3.3588002 -1103.197
+147995.2621739253 3.3588002 -1103.1576
+147996.2621740296 3.3586822 -1103.3156
+147997.2621741339 3.3586035 -1103.3353
+147998.2621742382 3.3586822 -1103.1774
+147999.2621743425 3.3586822 -1103.2761
+148000.2621744468 3.3586822 -1103.1774
+148001.2621745511 3.3585641 -1103.1774
+148002.2621746555 3.3586428 -1103.2168
+148003.2621747598 3.3586428 -1103.197
+148004.2621748641 3.3586428 -1103.1774
+148005.2621749684 3.3585246 -1103.2959
+148006.2621750727 3.3585641 -1103.2562
+148007.262175177 3.3585246 -1103.2366
+148008.2621752813 3.3584459 -1103.2168
+148009.2621753856 3.3584459 -1103.2168
+148010.2621754899 3.3583279 -1103.2562
+148011.2621755942 3.3582885 -1103.1774
+148012.2621756985 3.3582885 -1103.2366
+148013.2621758028 3.3583279 -1103.3156
+148014.2621759071 3.3583279 -1103.2168
+148015.2621760115 3.3582885 -1103.1774
+148016.2621761158 3.3582492 -1103.2366
+148017.2621762201 3.3582096 -1103.1774
+148018.2621763244 3.3582885 -1103.2562
+148019.2621764287 3.3582492 -1103.197
+148020.262176533 3.3582096 -1103.2168
+148021.2621766373 3.3582492 -1103.1774
+148022.2621767416 3.3582096 -1103.1576
+148023.2621768459 3.3582492 -1103.197
+148024.2621769502 3.3582492 -1103.2562
+148025.2621770545 3.3582885 -1103.2761
+148026.2621771588 3.3583279 -1103.0984
+148027.2621772632 3.3582885 -1103.197
+148028.2621773675 3.3582096 -1103.1774
+148029.2621774718 3.3582492 -1103.2168
+148030.2621775761 3.3582492 -1103.1378
+148031.2621776804 3.3582492 -1103.2959
+148032.2621777847 3.3582885 -1103.2168
+148033.262177889 3.3582492 -1103.2562
+148034.2621779933 3.3582492 -1103.1774
+148035.2621780976 3.3581703 -1103.2562
+148036.2621782019 3.3582492 -1103.1576
+148037.2621783062 3.3581703 -1103.3156
+148038.2621784105 3.3582885 -1103.1576
+148039.2621785149 3.3582096 -1103.2761
+148040.2621786192 3.3581703 -1103.2562
+148041.2621787235 3.3582492 -1103.197
+148042.2621788278 3.3582885 -1103.1774
+148043.2621789321 3.3582492 -1103.2959
+148044.2621790364 3.3582492 -1103.2366
+148045.2621791407 3.3582492 -1103.2366
+148046.262179245 3.3582885 -1103.2168
+148047.2621793493 3.3582096 -1103.1774
+148048.2621794536 3.3583279 -1103.2761
+148049.2621795579 3.3582492 -1103.0984
+148050.2621796622 3.3582492 -1103.1774
+148051.2621797665 3.3582096 -1103.1774
+148052.2621798709 3.3582885 -1103.1774
+148053.2621799752 3.3582885 -1103.2168
+148054.2621800795 3.3582492 -1103.1576
+148055.2621801838 3.3584065 -1103.2366
+148056.2621802881 3.3583672 -1103.2168
+148057.2621803924 3.3582885 -1103.197
+148058.2621804967 3.3584065 -1103.2168
+148059.262180601 3.3582885 -1103.197
+148060.2621807053 3.3582492 -1103.1774
+148061.2621808096 3.3584065 -1103.1774
+148062.2621809139 3.3583279 -1103.2959
+148063.2621810182 3.3583279 -1103.2168
+148064.2621811226 3.3583279 -1103.0588
+148065.2621812269 3.3582885 -1103.1576
+148066.2621813312 3.3583672 -1103.2366
+148067.2621814355 3.3583279 -1103.2366
+148068.2621815398 3.3582885 -1103.2366
+148069.2621816441 3.3582885 -1103.2562
+148070.2621817484 3.3582885 -1103.3353
+148071.2621818527 3.3582885 -1103.1774
+148072.262181957 3.3582096 -1103.2761
+148073.2621820613 3.3582885 -1103.2761
+148074.2621821656 3.3583279 -1103.1576
+148075.2621822699 3.3582492 -1103.2168
+148076.2621823743 3.3582096 -1103.1774
+148077.2621824786 3.3583279 -1103.2562
+148078.2621825829 3.3581703 -1103.2168
+148079.2621826872 3.3582492 -1103.1774
+148080.2621827915 3.3581703 -1103.2562
+148081.2621828958 3.3582492 -1103.2366
+148082.2621830001 3.3581703 -1103.2168
+148083.2621831044 3.3582885 -1103.2562
+148084.2621832087 3.3582096 -1103.1576
+148085.262183313 3.3582492 -1103.2761
+148086.2621834173 3.3582492 -1103.1378
+148087.2621835216 3.3582492 -1103.2168
+148088.262183626 3.3582885 -1103.197
+148089.2621837303 3.3582492 -1103.2761
+148090.2621838346 3.3582492 -1103.2562
+148091.2621839389 3.3582885 -1103.2168
+148092.2621840432 3.3582885 -1103.2761
+148093.2621841475 3.3581703 -1103.1576
+148094.2621842518 3.3581703 -1103.2168
+148095.2621843561 3.3581703 -1103.2761
+148096.2621844604 3.3581703 -1103.2562
+148097.2621845647 3.3582096 -1103.2366
+148098.262184669 3.3582096 -1103.2168
+148099.2621847733 3.3582885 -1103.2761
+148100.2621848776 3.3581309 -1103.2959
+148101.262184982 3.3582096 -1103.197
+148102.2621850863 3.3581703 -1103.197
+148103.2621851906 3.3580129 -1103.1378
+148104.2621852949 3.3580523 -1103.1576
+148105.2621853992 3.3580129 -1103.2168
+148106.2621855035 3.3580523 -1103.2959
+148107.2621856078 3.3580916 -1103.1774
+148108.2621857121 3.3580129 -1103.1576
+148109.2621858164 3.3579736 -1103.1774
+148110.2621859207 3.3580129 -1103.3156
+148111.262186025 3.3579342 -1103.3156
+148112.2621861293 3.3580129 -1103.2366
+148113.2621862337 3.3578947 -1103.2562
+148114.262186338 3.3578947 -1103.2562
+148115.2621864423 3.3578553 -1103.2366
+148116.2621865466 3.357816 -1103.2761
+148117.2621866509 3.3578947 -1103.2168
+148118.2621867552 3.3578947 -1103.2959
+148119.2621868595 3.3578947 -1103.1378
+148120.2621869638 3.3578553 -1103.2562
+148121.2621870681 3.3578553 -1103.2168
+148122.2621871724 3.3577373 -1103.2562
+148123.2621872767 3.357816 -1103.1378
+148124.262187381 3.3579736 -1103.3156
+148125.2621874854 3.357816 -1103.2562
+148126.2621875897 3.3578553 -1103.2366
+148127.262187694 3.357698 -1103.2168
+148128.2621877983 3.357698 -1103.1774
+148129.2621879026 3.357816 -1103.2366
+148130.2621880069 3.3577766 -1103.2761
+148131.2621881112 3.3577373 -1103.1576
+148132.2621882155 3.3577766 -1103.197
+148133.2621883198 3.3576586 -1103.1774
+148134.2621884241 3.3576586 -1103.197
+148135.2621885284 3.3576586 -1103.2366
+148136.2621886327 3.3576586 -1103.197
+148137.262188737 3.3576586 -1103.1378
+148138.2621888414 3.3576586 -1103.1182
+148139.2621889457 3.3576193 -1103.2168
+148140.26218905 3.357698 -1103.2761
+148141.2621891543 3.3575404 -1103.2168
+148142.2621892586 3.3576586 -1103.3749
+148143.2621893629 3.3576193 -1103.197
+148144.2621894672 3.3575797 -1103.1774
+148145.2621895715 3.3575404 -1103.2562
+148146.2621896758 3.357501 -1103.2562
+148147.2621897801 3.357383 -1103.1576
+148148.2621898844 3.357501 -1103.197
+148149.2621899887 3.3574617 -1103.2168
+148150.2621900931 3.357501 -1103.1774
+148151.2621901974 3.357383 -1103.2168
+148152.2621903017 3.3573437 -1103.197
+148153.262190406 3.3574617 -1103.2562
+148154.2621905103 3.3574617 -1103.2761
+148155.2621906146 3.3574224 -1103.197
+148156.2621907189 3.357383 -1103.2562
+148157.2621908232 3.357383 -1103.2959
+148158.2621909275 3.3573041 -1103.1378
+148159.2621910318 3.3573041 -1103.2168
+148160.2621911361 3.3572648 -1103.2959
+148161.2621912404 3.3573437 -1103.2168
+148162.2621913448 3.3571861 -1103.2168
+148163.2621914491 3.3572254 -1103.2366
+148164.2621915534 3.3572648 -1103.1774
+148165.2621916577 3.3572648 -1103.1774
+148166.262191762 3.3571861 -1103.1378
+148167.2621918663 3.3572648 -1103.1774
+148168.2621919706 3.3571861 -1103.1378
+148169.2621920749 3.3571861 -1103.2366
+148170.2621921792 3.3571074 -1103.1576
+148171.2621922835 3.3571861 -1103.2761
+148172.2621923878 3.3570681 -1103.2168
+148173.2621924921 3.3569891 -1103.2959
+148174.2621925964 3.3569891 -1103.2761
+148175.2621927008 3.3568711 -1103.2761
+148176.2621928051 3.3569105 -1103.197
+148177.2621929094 3.3568711 -1103.2562
+148178.2621930137 3.3568711 -1103.197
+148179.262193118 3.3568711 -1103.197
+148180.2621932223 3.3568318 -1103.1774
+148181.2621933266 3.3569105 -1103.197
+148182.2621934309 3.3568318 -1103.2761
+148183.2621935352 3.3569105 -1103.2366
+148184.2621936395 3.3567138 -1103.2959
+148185.2621937438 3.3567531 -1103.1774
+148186.2621938481 3.3567138 -1103.2959
+148187.2621939525 3.3566742 -1103.2562
+148188.2621940568 3.3566742 -1103.2168
+148189.2621941611 3.3566742 -1103.2168
+148190.2621942654 3.3566349 -1103.2761
+148191.2621943697 3.3567924 -1103.2959
+148192.262194474 3.3567531 -1103.197
+148193.2621945783 3.3567138 -1103.3156
+148194.2621946826 3.3565955 -1103.2366
+148195.2621947869 3.3567138 -1103.2366
+148196.2621948912 3.3567138 -1103.1774
+148197.2621949955 3.3567138 -1103.2168
+148198.2621950998 3.3566742 -1103.2168
+148199.2621952042 3.3565955 -1103.1774
+148200.2621953085 3.3565955 -1103.1576
+148201.2621954128 3.3566742 -1103.2761
+148202.2621955171 3.3566349 -1103.2366
+148203.2621956214 3.3565955 -1103.197
+148204.2621957257 3.3565562 -1103.2366
+148205.26219583 3.3566349 -1103.1576
+148206.2621959343 3.3567138 -1103.197
+148207.2621960386 3.3566742 -1103.2168
+148208.2621961429 3.3565955 -1103.2959
+148209.2621962472 3.3566349 -1103.2168
+148210.2621963515 3.3566742 -1103.2366
+148211.2621964558 3.3565955 -1103.197
+148212.2621965602 3.3565955 -1103.2761
+148213.2621966645 3.3565955 -1103.2562
+148214.2621967688 3.3565955 -1103.1774
+148215.2621968731 3.3565562 -1103.1774
+148216.2621969774 3.3565168 -1103.2959
+148217.2621970817 3.3565955 -1103.1576
+148218.262197186 3.3565562 -1103.2168
+148219.2621972903 3.3565168 -1103.2959
+148220.2621973946 3.3565168 -1103.2562
+148221.2621974989 3.3565955 -1103.197
+148222.2621976032 3.3564382 -1103.197
+148223.2621977075 3.3564775 -1103.3156
+148224.2621978119 3.3564775 -1103.2366
+148225.2621979162 3.3564775 -1103.2168
+148226.2621980205 3.3564382 -1103.2366
+148227.2621981248 3.3562806 -1103.2168
+148228.2621982291 3.3565168 -1103.197
+148229.2621983334 3.3564382 -1103.1774
+148230.2621984377 3.3563988 -1103.1378
+148231.262198542 3.3564775 -1103.197
+148232.2621986463 3.3563592 -1103.1576
+148233.2621987506 3.3562806 -1103.2366
+148234.2621988549 3.3563592 -1103.1774
+148235.2621989592 3.3563199 -1103.197
+148236.2621990636 3.3562412 -1103.1378
+148237.2621991679 3.3563199 -1103.2562
+148238.2621992722 3.3563199 -1103.2366
+148239.2621993765 3.3563199 -1103.2562
+148240.2621994808 3.3562806 -1103.3353
+148241.2621995851 3.3562806 -1103.197
+148242.2621996894 3.3562412 -1103.2959
+148243.2621997937 3.3561625 -1103.2366
+148244.262199898 3.3562019 -1103.2168
+148245.2622000023 3.3560839 -1103.2168
+148246.2622001066 3.3561232 -1103.2761
+148247.2622002109 3.3560443 -1103.1378
+148248.2622003153 3.3560839 -1103.2761
+148249.2622004196 3.3559656 -1103.2366
+148250.2622005239 3.3559263 -1103.197
+148251.2622006282 3.3559263 -1103.197
+148252.2622007325 3.356005 -1103.197
+148253.2622008368 3.3559263 -1103.2761
+148254.2622009411 3.3558083 -1103.2168
+148255.2622010454 3.3558869 -1103.1378
+148256.2622011497 3.3558476 -1103.2562
+148257.262201254 3.3558869 -1103.1774
+148258.2622013583 3.3558083 -1103.2366
+148259.2622014626 3.3557689 -1103.1378
+148260.2622015669 3.3558083 -1103.1378
+148261.2622016713 3.3558869 -1103.197
+148262.2622017756 3.3557689 -1103.1774
+148263.2622018799 3.3558083 -1103.2761
+148264.2622019842 3.3557689 -1103.197
+148265.2622020885 3.3557689 -1103.2959
+148266.2622021928 3.3558083 -1103.2562
+148267.2622022971 3.3557689 -1103.1378
+148268.2622024014 3.3557293 -1103.2366
+148269.2622025057 3.3558476 -1103.2562
+148270.26220261 3.3557689 -1103.2366
+148271.2622027143 3.3558869 -1103.2366
+148272.2622028186 3.3556507 -1103.2168
+148273.262202923 3.35569 -1103.1378
+148274.2622030273 3.3556507 -1103.2761
+148275.2622031316 3.3556507 -1103.1576
+148276.2622032359 3.3556507 -1103.1774
+148277.2622033402 3.35569 -1103.2168
+148278.2622034445 3.355572 -1103.2959
+148279.2622035488 3.3556113 -1103.2168
+148280.2622036531 3.355572 -1103.2366
+148281.2622037574 3.3555326 -1103.2366
+148282.2622038617 3.355572 -1103.2959
+148283.262203966 3.355572 -1103.2562
+148284.2622040703 3.3556113 -1103.2168
+148285.2622041747 3.3554933 -1103.2366
+148286.262204279 3.3556113 -1103.1576
+148287.2622043833 3.3555326 -1103.1774
+148288.2622044876 3.3555326 -1103.1182
+148289.2622045919 3.355572 -1103.197
+148290.2622046962 3.355572 -1103.197
+148291.2622048005 3.3555326 -1103.1774
+148292.2622049048 3.355572 -1103.2562
+148293.2622050091 3.3556113 -1103.2168
+148294.2622051134 3.355572 -1103.2168
+148295.2622052177 3.3555326 -1103.3156
+148296.262205322 3.3554933 -1103.2562
+148297.2622054263 3.3554537 -1103.1774
+148298.2622055307 3.3553357 -1103.2366
+148299.262205635 3.3554537 -1103.0984
+148300.2622057393 3.3552964 -1103.2366
+148301.2622058436 3.3553751 -1103.2168
+148302.2622059479 3.3554537 -1103.1774
+148303.2622060522 3.3554144 -1103.2366
+148304.2622061565 3.3554933 -1103.1774
+148305.2622062608 3.3553357 -1103.197
+148306.2622063651 3.3553751 -1103.1576
+148307.2622064694 3.3554537 -1103.2168
+148308.2622065737 3.3554144 -1103.1576
+148309.262206678 3.3553751 -1103.1774
+148310.2622067824 3.355257 -1103.2168
+148311.2622068867 3.3553751 -1103.2366
+148312.262206991 3.3553357 -1103.2562
+148313.2622070953 3.3552964 -1103.2168
+148314.2622071996 3.3553357 -1103.2168
+148315.2622073039 3.3551784 -1103.197
+148316.2622074082 3.355257 -1103.2168
+148317.2622075125 3.355257 -1103.3156
+148318.2622076168 3.3552177 -1103.2366
+148319.2622077211 3.3551784 -1103.197
+148320.2622078254 3.3552177 -1103.197
+148321.2622079297 3.3551784 -1103.2761
+148322.2622080341 3.3551388 -1103.2761
+148323.2622081384 3.3551388 -1103.1378
+148324.2622082427 3.3552964 -1103.2168
+148325.262208347 3.3551784 -1103.2761
+148326.2622084513 3.3550601 -1103.2562
+148327.2622085556 3.3551784 -1103.3749
+148328.2622086599 3.3551388 -1103.197
+148329.2622087642 3.3550994 -1103.197
+148330.2622088685 3.3550994 -1103.2562
+148331.2622089728 3.3550994 -1103.197
+148332.2622090771 3.3550994 -1103.1576
+148333.2622091814 3.3551388 -1103.2168
+148334.2622092857 3.3550208 -1103.197
+148335.2622093901 3.3551784 -1103.197
+148336.2622094944 3.3550994 -1103.2761
+148337.2622095987 3.3550208 -1103.1774
+148338.262209703 3.3551784 -1103.1576
+148339.2622098073 3.3551784 -1103.2366
+148340.2622099116 3.3551784 -1103.1774
+148341.2622100159 3.3550601 -1103.2562
+148342.2622101202 3.3550994 -1103.1576
+148343.2622102245 3.3551388 -1103.2761
+148344.2622103288 3.3551784 -1103.2562
+148345.2622104331 3.3550994 -1103.3353
+148346.2622105374 3.3550601 -1103.2562
+148347.2622106418 3.3551388 -1103.2168
+148348.2622107461 3.3550208 -1103.3156
+148349.2622108504 3.3550601 -1103.2761
+148350.2622109547 3.3549027 -1103.2168
+148351.262211059 3.3550601 -1103.2562
+148352.2622111633 3.3549027 -1103.2168
+148353.2622112676 3.3549814 -1103.197
+148354.2622113719 3.3550208 -1103.2168
+148355.2622114762 3.3549421 -1103.197
+148356.2622115805 3.3549814 -1103.2366
+148357.2622116848 3.3549814 -1103.1378
+148358.2622117891 3.3549814 -1103.197
+148359.2622118935 3.3549027 -1103.2761
+148360.2622119978 3.3550601 -1103.2366
+148361.2622121021 3.3550601 -1103.2959
+148362.2622122064 3.3550208 -1103.197
+148363.2622123107 3.3549421 -1103.2761
+148364.262212415 3.3549421 -1103.1576
+148365.2622125193 3.3549814 -1103.197
+148366.2622126236 3.3549814 -1103.1576
+148367.2622127279 3.3549814 -1103.2959
+148368.2622128322 3.3549027 -1103.1378
+148369.2622129365 3.3550208 -1103.2366
+148370.2622130408 3.3550208 -1103.2959
+148371.2622131452 3.3549814 -1103.2366
+148372.2622132495 3.3549814 -1103.3156
+148373.2622133538 3.3549421 -1103.1774
+148374.2622134581 3.3549421 -1103.2168
+148375.2622135624 3.3549814 -1103.2168
+148376.2622136667 3.3549814 -1103.2168
+148377.262213771 3.3550208 -1103.2761
+148378.2622138753 3.3549421 -1103.2959
+148379.2622139796 3.3549421 -1103.3353
+148380.2622140839 3.3549421 -1103.2761
+148381.2622141882 3.3549814 -1103.2366
+148382.2622142925 3.3549814 -1103.197
+148383.2622143968 3.3549814 -1103.2168
+148384.2622145012 3.3549027 -1103.1182
+148385.2622146055 3.3549814 -1103.1774
+148386.2622147098 3.3548634 -1103.1378
+148387.2622148141 3.3549421 -1103.2959
+148388.2622149184 3.3550208 -1103.2761
+148389.2622150227 3.3549814 -1103.3156
+148390.262215127 3.3549421 -1103.2366
+148391.2622152313 3.3549814 -1103.2959
+148392.2622153356 3.3548238 -1103.2959
+148393.2622154399 3.3549421 -1103.2366
+148394.2622155442 3.3549421 -1103.1576
+148395.2622156485 3.3549421 -1103.197
+148396.2622157529 3.3549027 -1103.2562
+148397.2622158572 3.3548238 -1103.2168
+148398.2622159615 3.3550208 -1103.1576
+148399.2622160658 3.3548238 -1103.2562
+148400.2622161701 3.3549421 -1103.1774
+148401.2622162744 3.3548238 -1103.1774
+148402.2622163787 3.3549027 -1103.197
+148403.262216483 3.3547845 -1103.2562
+148404.2622165873 3.3547845 -1103.1182
+148405.2622166916 3.3548238 -1103.2562
+148406.2622167959 3.3549027 -1103.2562
+148407.2622169002 3.3549027 -1103.2168
+148408.2622170046 3.3547845 -1103.197
+148409.2622171089 3.3547451 -1103.197
+148410.2622172132 3.3547845 -1103.2366
+148411.2622173175 3.3547058 -1103.1576
+148412.2622174218 3.3546665 -1103.2168
+148413.2622175261 3.3546665 -1103.2168
+148414.2622176304 3.3545089 -1103.2168
+148415.2622177347 3.3546271 -1103.3156
+148416.262217839 3.3546665 -1103.197
+148417.2622179433 3.3545485 -1103.2562
+148418.2622180476 3.3545089 -1103.2761
+148419.2622181519 3.3545089 -1103.2366
+148420.2622182562 3.3545089 -1103.2562
+148421.2622183606 3.3544302 -1103.1182
+148422.2622184649 3.3545089 -1103.2168
+148423.2622185692 3.3543909 -1103.2168
+148424.2622186735 3.3545485 -1103.197
+148425.2622187778 3.3544695 -1103.2761
+148426.2622188821 3.3543515 -1103.197
+148427.2622189864 3.3543122 -1103.2366
+148428.2622190907 3.3542335 -1103.197
+148429.262219195 3.3542728 -1103.1774
+148430.2622192993 3.3542335 -1103.197
+148431.2622194036 3.3543122 -1103.1774
+148432.2622195079 3.3542728 -1103.2562
+148433.2622196123 3.3541546 -1103.2366
+148434.2622197166 3.3541152 -1103.2366
+148435.2622198209 3.3542335 -1103.2366
+148436.2622199252 3.3542335 -1103.1774
+148437.2622200295 3.3541939 -1103.2366
+148438.2622201338 3.3541152 -1103.2366
+148439.2622202381 3.3540366 -1103.197
+148440.2622203424 3.3540759 -1103.2959
+148441.2622204467 3.3541546 -1103.1774
+148442.262220551 3.3539972 -1103.2168
+148443.2622206553 3.3541152 -1103.2761
+148444.2622207596 3.3540366 -1103.3156
+148445.262220864 3.3541152 -1103.2761
+148446.2622209683 3.3540366 -1103.1774
+148447.2622210726 3.3539972 -1103.197
+148448.2622211769 3.3540759 -1103.2761
+148449.2622212812 3.3539579 -1103.2562
+148450.2622213855 3.3539579 -1103.197
+148451.2622214898 3.3539972 -1103.1576
+148452.2622215941 3.3539972 -1103.2168
+148453.2622216984 3.3539579 -1103.2168
+148454.2622218027 3.3539183 -1103.1576
+148455.262221907 3.3539183 -1103.1774
+148456.2622220113 3.353879 -1103.2562
+148457.2622221156 3.3539183 -1103.2168
+148458.26222222 3.3539183 -1103.2366
+148459.2622223243 3.3538003 -1103.1576
+148460.2622224286 3.3538003 -1103.2562
+148461.2622225329 3.3538003 -1103.3156
+148462.2622226372 3.3538003 -1103.2168
+148463.2622227415 3.3537216 -1103.197
+148464.2622228458 3.353761 -1103.2761
+148465.2622229501 3.3537216 -1103.2168
+148466.2622230544 3.3536034 -1103.1576
+148467.2622231587 3.3536034 -1103.2366
+148468.262223263 3.3536034 -1103.2168
+148469.2622233673 3.3536034 -1103.1774
+148470.2622234717 3.3535247 -1103.2761
+148471.262223576 3.353564 -1103.197
+148472.2622236803 3.3534853 -1103.2562
+148473.2622237846 3.353446 -1103.3156
+148474.2622238889 3.3535247 -1103.197
+148475.2622239932 3.353446 -1103.2366
+148476.2622240975 3.353564 -1103.2168
+148477.2622242018 3.3534067 -1103.197
+148478.2622243061 3.3534067 -1103.2366
+148479.2622244104 3.353446 -1103.1576
+148480.2622245147 3.353446 -1103.2562
+148481.262224619 3.3534067 -1103.3156
+148482.2622247234 3.353328 -1103.2366
+148483.2622248277 3.3533673 -1103.2366
+148484.262224932 3.3532491 -1103.197
+148485.2622250363 3.3533673 -1103.2168
+148486.2622251406 3.353328 -1103.1182
+148487.2622252449 3.353328 -1103.2168
+148488.2622253492 3.3532884 -1103.197
+148489.2622254535 3.3532884 -1103.2168
+148490.2622255578 3.3532097 -1103.2562
+148491.2622256621 3.3532491 -1103.2959
+148492.2622257664 3.353328 -1103.2168
+148493.2622258707 3.3531704 -1103.2168
+148494.2622259751 3.3532491 -1103.2366
+148495.2622260794 3.3532097 -1103.2168
+148496.2622261837 3.3532097 -1103.2366
+148497.262226288 3.3531704 -1103.2168
+148498.2622263923 3.3532491 -1103.2562
+148499.2622264966 3.3530524 -1103.2562
+148500.2622266009 3.3532491 -1103.197
+148501.2622267052 3.353013 -1103.2562
+148502.2622268095 3.3530917 -1103.197
+148503.2622269138 3.3530917 -1103.2366
+148504.2622270181 3.3531704 -1103.2168
+148505.2622271224 3.353013 -1103.2562
+148506.2622272267 3.3530524 -1103.2761
+148507.2622273311 3.3530524 -1103.1774
+148508.2622274354 3.353013 -1103.0984
+148509.2622275397 3.353013 -1103.2366
+148510.262227644 3.353013 -1103.2168
+148511.2622277483 3.3530524 -1103.197
+148512.2622278526 3.3530524 -1103.2168
+148513.2622279569 3.353013 -1103.2562
+148514.2622280612 3.3529735 -1103.1576
+148515.2622281655 3.3528948 -1103.2366
+148516.2622282698 3.353013 -1103.2562
+148517.2622283741 3.3529341 -1103.1182
+148518.2622284784 3.353013 -1103.2168
+148519.2622285828 3.3528948 -1103.2562
+148520.2622286871 3.3528948 -1103.2562
+148521.2622287914 3.3529341 -1103.197
+148522.2622288957 3.3528161 -1103.2562
+148523.262229 3.3528948 -1103.2761
+148524.2622291043 3.3528554 -1103.1378
+148525.2622292086 3.3529735 -1103.2366
+148526.2622293129 3.3528554 -1103.2168
+148527.2622294172 3.3528554 -1103.197
+148528.2622295215 3.3528161 -1103.2761
+148529.2622296258 3.3528948 -1103.2168
+148530.2622297301 3.3527374 -1103.1774
+148531.2622298345 3.3528161 -1103.2761
+148532.2622299388 3.3527768 -1103.2562
+148533.2622300431 3.3527768 -1103.3353
+148534.2622301474 3.3528161 -1103.197
+148535.2622302517 3.3527768 -1103.2366
+148536.262230356 3.3528161 -1103.1378
+148537.2622304603 3.3528161 -1103.1774
+148538.2622305646 3.3527768 -1103.3156
+148539.2622306689 3.3526192 -1103.2168
+148540.2622307732 3.3526981 -1103.2562
+148541.2622308775 3.3526981 -1103.2366
+148542.2622309818 3.3527768 -1103.1774
+148543.2622310861 3.3526981 -1103.2959
+148544.2622311905 3.3526981 -1103.3551
+148545.2622312948 3.3526585 -1103.2366
+148546.2622313991 3.3528161 -1103.2366
+148547.2622315034 3.3527374 -1103.2562
+148548.2622316077 3.3526981 -1103.3945
+148549.262231712 3.3526981 -1103.2168
+148550.2622318163 3.3526585 -1103.1774
+148551.2622319206 3.3526585 -1103.2562
+148552.2622320249 3.3525798 -1103.2366
+148553.2622321292 3.3526981 -1103.2761
+148554.2622322335 3.3525012 -1103.2959
+148555.2622323378 3.3526981 -1103.2562
+148556.2622324422 3.3525798 -1103.2168
+148557.2622325465 3.3525798 -1103.2366
+148558.2622326508 3.3526192 -1103.2366
+148559.2622327551 3.3526192 -1103.2761
+148560.2622328594 3.3525405 -1103.3156
+148561.2622329637 3.3525798 -1103.2761
+148562.262233068 3.3525798 -1103.197
+148563.2622331723 3.3524618 -1103.1774
+148564.2622332766 3.3525405 -1103.2959
+148565.2622333809 3.3524225 -1103.2562
+148566.2622334852 3.3524618 -1103.197
+148567.2622335895 3.3523436 -1103.2562
+148568.2622336939 3.3524225 -1103.2366
+148569.2622337982 3.3524618 -1103.197
+148570.2622339025 3.3523831 -1103.2959
+148571.2622340068 3.3523831 -1103.2959
+148572.2622341111 3.3523436 -1103.197
+148573.2622342154 3.3522255 -1103.2959
+148574.2622343197 3.3523042 -1103.2168
+148575.262234424 3.3522649 -1103.2168
+148576.2622345283 3.3522255 -1103.1774
+148577.2622346326 3.3522255 -1103.1378
+148578.2622347369 3.3521469 -1103.2562
+148579.2622348412 3.3521862 -1103.2366
+148580.2622349455 3.3521862 -1103.2366
+148581.2622350499 3.3521075 -1103.2366
+148582.2622351542 3.3519893 -1103.1576
+148583.2622352585 3.3520679 -1103.2168
+148584.2622353628 3.3519893 -1103.1576
+148585.2622354671 3.3520286 -1103.2959
+148586.2622355714 3.3519106 -1103.2366
+148587.2622356757 3.3519893 -1103.1576
+148588.26223578 3.3519893 -1103.2366
+148589.2622358843 3.3519499 -1103.2562
+148590.2622359886 3.3519106 -1103.2562
+148591.2622360929 3.3519499 -1103.2366
+148592.2622361972 3.3518713 -1103.1378
+148593.2622363016 3.3517926 -1103.2562
+148594.2622364059 3.3518713 -1103.2366
+148595.2622365102 3.3519106 -1103.197
+148596.2622366145 3.3517926 -1103.2761
+148597.2622367188 3.3518319 -1103.197
+148598.2622368231 3.3517926 -1103.2761
+148599.2622369274 3.351753 -1103.2168
+148600.2622370317 3.351753 -1103.1576
+148601.262237136 3.351753 -1103.2959
+148602.2622372403 3.3517926 -1103.2168
+148603.2622373446 3.351753 -1103.2366
+148604.2622374489 3.3517137 -1103.2168
+148605.2622375533 3.3516743 -1103.197
+148606.2622376576 3.351753 -1103.197
+148607.2622377619 3.3517137 -1103.2562
+148608.2622378662 3.3516743 -1103.1774
+148609.2622379705 3.3517137 -1103.197
+148610.2622380748 3.3518713 -1103.2761
+148611.2622381791 3.3516743 -1103.197
+148612.2622382834 3.3517137 -1103.2562
+148613.2622383877 3.3518319 -1103.2562
+148614.262238492 3.351753 -1103.1774
+148615.2622385963 3.351635 -1103.2562
+148616.2622387006 3.351635 -1103.2562
+148617.2622388049 3.3517926 -1103.2562
+148618.2622389093 3.3517137 -1103.197
+148619.2622390136 3.3516743 -1103.2562
+148620.2622391179 3.3516743 -1103.2959
+148621.2622392222 3.351635 -1103.2562
+148622.2622393265 3.3516743 -1103.2562
+148623.2622394308 3.3516743 -1103.2959
+148624.2622395351 3.3516743 -1103.2761
+148625.2622396394 3.351635 -1103.2366
+148626.2622397437 3.351635 -1103.3156
+148627.262239848 3.351635 -1103.2366
+148628.2622399523 3.351635 -1103.1774
+148629.2622400566 3.351635 -1103.2959
+148630.262240161 3.3516743 -1103.2168
+148631.2622402653 3.3516743 -1103.2761
+148632.2622403696 3.351635 -1103.2168
+148633.2622404739 3.351517 -1103.1774
+148634.2622405782 3.351635 -1103.1774
+148635.2622406825 3.3515563 -1103.197
+148636.2622407868 3.3514776 -1103.3551
+148637.2622408911 3.351438 -1103.2366
+148638.2622409954 3.3514776 -1103.2366
+148639.2622410997 3.351438 -1103.1774
+148640.262241204 3.351438 -1103.1774
+148641.2622413083 3.35132 -1103.2168
+148642.2622414127 3.3513987 -1103.2168
+148643.262241517 3.3513594 -1103.2761
+148644.2622416213 3.351438 -1103.1774
+148645.2622417256 3.351438 -1103.2366
+148646.2622418299 3.35132 -1103.2562
+148647.2622419342 3.3512807 -1103.1378
+148648.2622420385 3.35132 -1103.2366
+148649.2622421428 3.3511627 -1103.2168
+148650.2622422471 3.3512807 -1103.2168
+148651.2622423514 3.3512414 -1103.2761
+148652.2622424557 3.3512414 -1103.2366
+148653.26224256 3.3512414 -1103.1774
+148654.2622426644 3.3511627 -1103.2168
+148655.2622427687 3.351202 -1103.2366
+148656.262242873 3.3511627 -1103.2168
+148657.2622429773 3.3512414 -1103.2562
+148658.2622430816 3.3512414 -1103.2562
+148659.2622431859 3.3512807 -1103.2761
+148660.2622432902 3.3512414 -1103.2168
+148661.2622433945 3.3511627 -1103.1774
+148662.2622434988 3.3511231 -1103.2761
+148663.2622436031 3.3511231 -1103.2366
+148664.2622437074 3.3511231 -1103.1576
+148665.2622438117 3.351202 -1103.2761
+148666.262243916 3.3511231 -1103.2761
+148667.2622440204 3.3510838 -1103.1774
+148668.2622441247 3.3510838 -1103.1774
+148669.262244229 3.3511627 -1103.1774
+148670.2622443333 3.3510838 -1103.2366
+148671.2622444376 3.3510051 -1103.2562
+148672.2622445419 3.3509657 -1103.2562
+148673.2622446462 3.3510444 -1103.197
+148674.2622447505 3.3509264 -1103.2366
+148675.2622448548 3.3509657 -1103.2168
+148676.2622449591 3.3509657 -1103.2562
+148677.2622450634 3.3508081 -1103.2366
+148678.2622451677 3.3508871 -1103.197
+148679.2622452721 3.3507688 -1103.197
+148680.2622453764 3.3508477 -1103.2168
+148681.2622454807 3.3508871 -1103.3749
+148682.262245585 3.3508081 -1103.2959
+148683.2622456893 3.3507688 -1103.2366
+148684.2622457936 3.3507295 -1103.2366
+148685.2622458979 3.3508871 -1103.2168
+148686.2622460022 3.3507295 -1103.197
+148687.2622461065 3.3507295 -1103.2366
+148688.2622462108 3.3508081 -1103.2168
+148689.2622463151 3.3508081 -1103.1576
+148690.2622464194 3.3507295 -1103.2168
+148691.2622465238 3.3507688 -1103.2168
+148692.2622466281 3.3508081 -1103.2761
+148693.2622467324 3.3507295 -1103.197
+148694.2622468367 3.3506508 -1103.2168
+148695.262246941 3.3507688 -1103.2168
+148696.2622470453 3.3507688 -1103.2366
+148697.2622471496 3.3507688 -1103.197
+148698.2622472539 3.3507688 -1103.2366
+148699.2622473582 3.3508081 -1103.2959
+148700.2622474625 3.3508871 -1103.1774
+148701.2622475668 3.3508477 -1103.197
+148702.2622476711 3.3508477 -1103.2761
+148703.2622477754 3.3509264 -1103.2366
+148704.2622478798 3.3508871 -1103.197
+148705.2622479841 3.3509264 -1103.1378
+148706.2622480884 3.3508477 -1103.2562
+148707.2622481927 3.3508081 -1103.2366
+148708.262248297 3.3507688 -1103.1378
+148709.2622484013 3.3508477 -1103.2168
+148710.2622485056 3.3508871 -1103.2168
+148711.2622486099 3.3508477 -1103.3156
+148712.2622487142 3.3507688 -1103.2366
+148713.2622488185 3.3506508 -1103.1774
+148714.2622489228 3.3507688 -1103.1774
+148715.2622490271 3.3507295 -1103.197
+148716.2622491315 3.3506508 -1103.1576
+148717.2622492358 3.3507295 -1103.2959
+148718.2622493401 3.3506901 -1103.197
+148719.2622494444 3.3506508 -1103.2366
+148720.2622495487 3.3506901 -1103.1576
+148721.262249653 3.3506901 -1103.197
+148722.2622497573 3.3506114 -1103.2562
+148723.2622498616 3.3506508 -1103.2562
+148724.2622499659 3.3506508 -1103.1774
+148725.2622500702 3.3505328 -1103.1378
+148726.2622501745 3.3505328 -1103.2562
+148727.2622502788 3.3505328 -1103.197
+148728.2622503832 3.3506114 -1103.2959
+148729.2622504875 3.3503358 -1103.1774
+148730.2622505918 3.3503752 -1103.1378
+148731.2622506961 3.3504145 -1103.0785
+148732.2622508004 3.3504145 -1103.1774
+148733.2622509047 3.3503752 -1103.197
+148734.262251009 3.3504145 -1103.2562
+148735.2622511133 3.3502965 -1103.3156
+148736.2622512176 3.3503358 -1103.2366
+148737.2622513219 3.3504145 -1103.197
+148738.2622514262 3.3503358 -1103.197
+148739.2622515305 3.3504145 -1103.197
+148740.2622516348 3.3503752 -1103.3156
+148741.2622517392 3.3503752 -1103.2168
+148742.2622518435 3.3502965 -1103.3551
+148743.2622519478 3.3504932 -1103.2761
+148744.2622520521 3.3502965 -1103.2168
+148745.2622521564 3.3502572 -1103.1378
+148746.2622522607 3.3503358 -1103.197
+148747.262252365 3.3502965 -1103.2168
+148748.2622524693 3.3502965 -1103.2168
+148749.2622525736 3.3502965 -1103.2562
+148750.2622526779 3.3502965 -1103.2168
+148751.2622527822 3.3502572 -1103.2168
+148752.2622528865 3.3502572 -1103.197
+148753.2622529909 3.3502965 -1103.2761
+148754.2622530952 3.3501782 -1103.1576
+148755.2622531995 3.3502176 -1103.2366
+148756.2622533038 3.3501782 -1103.2168
+148757.2622534081 3.3501782 -1103.1378
+148758.2622535124 3.3502176 -1103.2366
+148759.2622536167 3.3501782 -1103.1378
+148760.262253721 3.3500602 -1103.1774
+148761.2622538253 3.3500996 -1103.2959
+148762.2622539296 3.3500209 -1103.2761
+148763.2622540339 3.3500602 -1103.2168
+148764.2622541382 3.3500209 -1103.2366
+148765.2622542426 3.3500602 -1103.2168
+148766.2622543469 3.3499422 -1103.2562
+148767.2622544512 3.3500602 -1103.2168
+148768.2622545555 3.3499026 -1103.2366
+148769.2622546598 3.3499026 -1103.197
+148770.2622547641 3.3498633 -1103.2959
+148771.2622548684 3.3498633 -1103.2168
+148772.2622549727 3.349824 -1103.197
+148773.262255077 3.3499026 -1103.2562
+148774.2622551813 3.3498633 -1103.2761
+148775.2622552856 3.349824 -1103.2366
+148776.2622553899 3.349824 -1103.2168
+148777.2622554943 3.3498633 -1103.2761
+148778.2622555986 3.3497846 -1103.2959
+148779.2622557029 3.3497453 -1103.2562
+148780.2622558072 3.349824 -1103.1576
+148781.2622559115 3.349824 -1103.2959
+148782.2622560158 3.3497846 -1103.2168
+148783.2622561201 3.3498633 -1103.1378
+148784.2622562244 3.3497453 -1103.1576
+148785.2622563287 3.3497453 -1103.2168
+148786.262256433 3.3497453 -1103.1182
+148787.2622565373 3.3496666 -1103.2562
+148788.2622566416 3.3496666 -1103.2562
+148789.2622567459 3.3497059 -1103.2562
+148790.2622568503 3.3496273 -1103.2959
+148791.2622569546 3.3496666 -1103.2366
+148792.2622570589 3.349509 -1103.1576
+148793.2622571632 3.3495483 -1103.2168
+148794.2622572675 3.3495877 -1103.1576
+148795.2622573718 3.3495483 -1103.2366
+148796.2622574761 3.349391 -1103.1774
+148797.2622575804 3.3494303 -1103.197
+148798.2622576847 3.3494303 -1103.2168
+148799.262257789 3.3493516 -1103.2761
+148800.2622578933 3.3494303 -1103.2168
+148801.2622579976 3.3493516 -1103.1576
+148802.262258102 3.3493516 -1103.1774
+148803.2622582063 3.3493516 -1103.2366
+148804.2622583106 3.3493123 -1103.2168
+148805.2622584149 3.349391 -1103.2366
+148806.2622585192 3.3493123 -1103.197
+148807.2622586235 3.3493516 -1103.2168
+148808.2622587278 3.3492334 -1103.2366
+148809.2622588321 3.3492727 -1103.2761
+148810.2622589364 3.3492334 -1103.2562
+148811.2622590407 3.3492334 -1103.2761
+148812.262259145 3.3493123 -1103.197
+148813.2622592493 3.3492334 -1103.2761
+148814.2622593537 3.3492727 -1103.2366
+148815.262259458 3.3493123 -1103.2366
+148816.2622595623 3.3492334 -1103.2366
+148817.2622596666 3.349194 -1103.2366
+148818.2622597709 3.3492727 -1103.2168
+148819.2622598752 3.3492727 -1103.197
+148820.2622599795 3.3492334 -1103.1774
+148821.2622600838 3.349194 -1103.1774
+148822.2622601881 3.349194 -1103.2168
+148823.2622602924 3.3492334 -1103.2366
+148824.2622603967 3.349194 -1103.2562
+148825.262260501 3.349194 -1103.2761
+148826.2622606053 3.3491547 -1103.1774
+148827.2622607097 3.3492334 -1103.2366
+148828.262260814 3.3491547 -1103.2562
+148829.2622609183 3.3491154 -1103.2168
+148830.2622610226 3.3491154 -1103.1378
+148831.2622611269 3.3490367 -1103.2168
+148832.2622612312 3.3491154 -1103.197
+148833.2622613355 3.3489578 -1103.2366
+148834.2622614398 3.3488791 -1103.2168
+148835.2622615441 3.3489184 -1103.2168
+148836.2622616484 3.3489184 -1103.1774
+148837.2622617527 3.3489184 -1103.2168
+148838.262261857 3.3488398 -1103.1576
+148839.2622619614 3.3487217 -1103.1576
+148840.2622620657 3.3487217 -1103.2562
+148841.26226217 3.3486035 -1103.197
+148842.2622622743 3.3487611 -1103.2168
+148843.2622623786 3.3486824 -1103.197
+148844.2622624829 3.3486428 -1103.2761
+148845.2622625872 3.3486035 -1103.2366
+148846.2622626915 3.3485248 -1103.197
+148847.2622627958 3.3486035 -1103.2366
+148848.2622629001 3.3485641 -1103.2168
+148849.2622630044 3.3485248 -1103.2761
+148850.2622631087 3.3485248 -1103.2168
+148851.2622632131 3.3484461 -1103.2761
+148852.2622633174 3.3484461 -1103.197
+148853.2622634217 3.3484461 -1103.2959
+148854.262263526 3.3484461 -1103.2168
+148855.2622636303 3.3485248 -1103.1576
+148856.2622637346 3.3483672 -1103.1576
+148857.2622638389 3.3485641 -1103.2562
+148858.2622639432 3.3484461 -1103.3156
+148859.2622640475 3.3484855 -1103.2168
+148860.2622641518 3.3485248 -1103.2168
+148861.2622642561 3.3484068 -1103.2761
+148862.2622643604 3.3486035 -1103.197
+148863.2622644647 3.3484855 -1103.1774
+148864.2622645691 3.3483279 -1103.2366
+148865.2622646734 3.3485248 -1103.2366
+148866.2622647777 3.3483279 -1103.197
+148867.262264882 3.3483672 -1103.2366
+148868.2622649863 3.3484068 -1103.1576
+148869.2622650906 3.3484068 -1103.197
+148870.2622651949 3.3484068 -1103.3156
+148871.2622652992 3.3483279 -1103.2168
+148872.2622654035 3.3483672 -1103.2168
+148873.2622655078 3.3482885 -1103.2168
+148874.2622656121 3.3483279 -1103.197
+148875.2622657164 3.3483672 -1103.1774
+148876.2622658208 3.3482099 -1103.2366
+148877.2622659251 3.3482099 -1103.2761
+148878.2622660294 3.3482099 -1103.2366
+148879.2622661337 3.3481312 -1103.1774
+148880.262266238 3.3480918 -1103.197
+148881.2622663423 3.3480918 -1103.1774
+148882.2622664466 3.3480918 -1103.2959
+148883.2622665509 3.3482099 -1103.2168
+148884.2622666552 3.3481705 -1103.1378
+148885.2622667595 3.3482492 -1103.2761
+148886.2622668638 3.3481312 -1103.2366
+148887.2622669681 3.3481705 -1103.197
+148888.2622670725 3.3481312 -1103.2959
+148889.2622671768 3.3480918 -1103.2761
+148890.2622672811 3.3481312 -1103.1182
+148891.2622673854 3.3480918 -1103.2366
+148892.2622674897 3.3480129 -1103.2168
+148893.262267594 3.3479342 -1103.2168
+148894.2622676983 3.3479342 -1103.2562
+148895.2622678026 3.3480523 -1103.2366
+148896.2622679069 3.3479342 -1103.2168
+148897.2622680112 3.3479342 -1103.1378
+148898.2622681155 3.3480129 -1103.3353
+148899.2622682198 3.3479342 -1103.1774
+148900.2622683242 3.3478556 -1103.197
+148901.2622684285 3.3477769 -1103.2168
+148902.2622685328 3.3478162 -1103.1378
+148903.2622686371 3.3477769 -1103.1774
+148904.2622687414 3.3477769 -1103.1576
+148905.2622688457 3.3477769 -1103.2761
+148906.26226895 3.3479342 -1103.2959
+148907.2622690543 3.347698 -1103.2959
+148908.2622691586 3.347698 -1103.2366
+148909.2622692629 3.3476586 -1103.2761
+148910.2622693672 3.3476586 -1103.2761
+148911.2622694715 3.3475406 -1103.2366
+148912.2622695758 3.3476193 -1103.2761
+148913.2622696802 3.3476193 -1103.2959
+148914.2622697845 3.3476586 -1103.2366
+148915.2622698888 3.3475406 -1103.2366
+148916.2622699931 3.3474619 -1103.2168
+148917.2622700974 3.3475406 -1103.2168
+148918.2622702017 3.3475406 -1103.2562
+148919.262270306 3.3475406 -1103.2761
+148920.2622704103 3.3475406 -1103.197
+148921.2622705146 3.3475013 -1103.2366
+148922.2622706189 3.34758 -1103.2761
+148923.2622707232 3.34758 -1103.2168
+148924.2622708275 3.3475013 -1103.2366
+148925.2622709319 3.3474619 -1103.2168
+148926.2622710362 3.3475406 -1103.3353
+148927.2622711405 3.34758 -1103.2168
+148928.2622712448 3.3474224 -1103.197
+148929.2622713491 3.3474619 -1103.197
+148930.2622714534 3.3475406 -1103.197
+148931.2622715577 3.3474619 -1103.2562
+148932.262271662 3.3475013 -1103.1774
+148933.2622717663 3.3474224 -1103.1774
+148934.2622718706 3.3474224 -1103.1774
+148935.2622719749 3.347383 -1103.3156
+148936.2622720792 3.3474224 -1103.2168
+148937.2622721836 3.3474619 -1103.2562
+148938.2622722879 3.3474224 -1103.1774
+148939.2622723922 3.3474619 -1103.1774
+148940.2622724965 3.3474224 -1103.197
+148941.2622726008 3.3474224 -1103.2959
+148942.2622727051 3.3474224 -1103.2168
+148943.2622728094 3.3474619 -1103.2562
+148944.2622729137 3.3474619 -1103.2761
+148945.262273018 3.3474619 -1103.1774
+148946.2622731223 3.3474224 -1103.197
+148947.2622732266 3.3473437 -1103.2761
+148948.2622733309 3.347383 -1103.197
+148949.2622734352 3.347265 -1103.1378
+148950.2622735396 3.3473437 -1103.2366
+148951.2622736439 3.3472257 -1103.2168
+148952.2622737482 3.3471863 -1103.2366
+148953.2622738525 3.347147 -1103.197
+148954.2622739568 3.3471074 -1103.2761
+148955.2622740611 3.347147 -1103.2366
+148956.2622741654 3.3470681 -1103.3551
+148957.2622742697 3.3470681 -1103.1378
+148958.262274374 3.3469501 -1103.2959
+148959.2622744783 3.3469894 -1103.3156
+148960.2622745826 3.3470681 -1103.197
+148961.2622746869 3.3469107 -1103.2366
+148962.2622747913 3.3471074 -1103.1774
+148963.2622748956 3.3469501 -1103.2366
+148964.2622749999 3.3470681 -1103.2168
+148965.2622751042 3.3470287 -1103.3156
+148966.2622752085 3.3469501 -1103.1774
+148967.2622753128 3.3469107 -1103.1774
+148968.2622754171 3.3469894 -1103.2366
+148969.2622755214 3.3469107 -1103.197
+148970.2622756257 3.3469501 -1103.2366
+148971.26227573 3.3469107 -1103.197
+148972.2622758343 3.346832 -1103.2366
+148973.2622759386 3.3469107 -1103.2562
+148974.262276043 3.3468714 -1103.2168
+148975.2622761473 3.3467925 -1103.2562
+148976.2622762516 3.3467138 -1103.197
+148977.2622763559 3.3467138 -1103.2761
+148978.2622764602 3.3467138 -1103.2168
+148979.2622765645 3.3467531 -1103.1774
+148980.2622766688 3.3466351 -1103.2761
+148981.2622767731 3.3467138 -1103.197
+148982.2622768774 3.3466351 -1103.1774
+148983.2622769817 3.3465958 -1103.197
+148984.262277086 3.3465958 -1103.1576
+148985.2622771903 3.3465168 -1103.3156
+148986.2622772946 3.3464382 -1103.2168
+148987.262277399 3.3464382 -1103.197
+148988.2622775033 3.3464382 -1103.2168
+148989.2622776076 3.3463988 -1103.2562
+148990.2622777119 3.3463595 -1103.2168
+148991.2622778162 3.3462808 -1103.197
+148992.2622779205 3.3462808 -1103.2959
+148993.2622780248 3.3463202 -1103.1182
+148994.2622781291 3.3462808 -1103.197
+148995.2622782334 3.3462808 -1103.2761
+148996.2622783377 3.3461626 -1103.2168
+148997.262278442 3.3461232 -1103.1774
+148998.2622785463 3.3462019 -1103.197
+148999.2622786507 3.3460839 -1103.197
+149000.262278755 3.3461232 -1103.1774
+149001.2622788593 3.3460839 -1103.2761
+149002.2622789636 3.3460445 -1103.2761
+149003.2622790679 3.3460052 -1103.2959
+149004.2622791722 3.3459659 -1103.2168
+149005.2622792765 3.3460839 -1103.2168
+149006.2622793808 3.3459265 -1103.1576
+149007.2622794851 3.3459265 -1103.2168
+149008.2622795894 3.3459659 -1103.1576
+149009.2622796937 3.3458476 -1103.2168
+149010.262279798 3.3458476 -1103.197
+149011.2622799024 3.3458476 -1103.2562
+149012.2622800067 3.3457689 -1103.2366
+149013.262280111 3.3456903 -1103.2761
+149014.2622802153 3.3456903 -1103.197
+149015.2622803196 3.3457296 -1103.197
+149016.2622804239 3.345572 -1103.2168
+149017.2622805282 3.3456509 -1103.197
+149018.2622806325 3.345572 -1103.2366
+149019.2622807368 3.3454933 -1103.2366
+149020.2622808411 3.345572 -1103.2562
+149021.2622809454 3.345572 -1103.197
+149022.2622810497 3.345572 -1103.1378
+149023.2622811541 3.3455327 -1103.2562
+149024.2622812584 3.3454933 -1103.2168
+149025.2622813627 3.345572 -1103.2562
+149026.262281467 3.3454933 -1103.2959
+149027.2622815713 3.3455327 -1103.2761
+149028.2622816756 3.3454146 -1103.2168
+149029.2622817799 3.345454 -1103.2168
+149030.2622818842 3.3453753 -1103.197
+149031.2622819885 3.3452966 -1103.2168
+149032.2622820928 3.345336 -1103.3156
+149033.2622821971 3.345336 -1103.2562
+149034.2622823014 3.3452966 -1103.1576
+149035.2622824057 3.345257 -1103.2562
+149036.2622825101 3.345336 -1103.2562
+149037.2622826144 3.345139 -1103.1576
+149038.2622827187 3.3452966 -1103.2366
+149039.262282823 3.3452177 -1103.2366
+149040.2622829273 3.345257 -1103.197
+149041.2622830316 3.3452177 -1103.197
+149042.2622831359 3.3452177 -1103.2366
+149043.2622832402 3.345257 -1103.1774
+149044.2622833445 3.3452177 -1103.3353
+149045.2622834488 3.345139 -1103.1576
+149046.2622835531 3.3451784 -1103.2168
+149047.2622836574 3.3450603 -1103.1774
+149048.2622837618 3.3450997 -1103.2366
+149049.2622838661 3.3451784 -1103.2168
+149050.2622839704 3.345139 -1103.197
+149051.2622840747 3.3450603 -1103.2168
+149052.262284179 3.3450997 -1103.2366
+149053.2622842833 3.3450997 -1103.2761
+149054.2622843876 3.345021 -1103.2366
+149055.2622844919 3.3449814 -1103.2366
+149056.2622845962 3.3450997 -1103.1378
+149057.2622847005 3.3449814 -1103.2168
+149058.2622848048 3.3450603 -1103.1378
+149059.2622849091 3.3449814 -1103.2168
+149060.2622850135 3.3449814 -1103.1774
+149061.2622851178 3.3449814 -1103.2761
+149062.2622852221 3.3449814 -1103.2366
+149063.2622853264 3.3450603 -1103.1774
+149064.2622854307 3.3449028 -1103.1576
+149065.262285535 3.3449028 -1103.2168
+149066.2622856393 3.3448634 -1103.1576
+149067.2622857436 3.3449814 -1103.3353
+149068.2622858479 3.345021 -1103.197
+149069.2622859522 3.3449814 -1103.2562
+149070.2622860565 3.3448634 -1103.1378
+149071.2622861608 3.3449814 -1103.1774
+149072.2622862651 3.3449421 -1103.2761
+149073.2622863695 3.3449421 -1103.1182
+149074.2622864738 3.3449028 -1103.197
+149075.2622865781 3.3449028 -1103.1182
+149076.2622866824 3.3448634 -1103.197
+149077.2622867867 3.3447847 -1103.2562
+149078.262286891 3.3448634 -1103.1774
+149079.2622869953 3.3448634 -1103.2168
+149080.2622870996 3.3447847 -1103.2366
+149081.2622872039 3.3447061 -1103.2168
+149082.2622873082 3.3449028 -1103.2168
+149083.2622874125 3.3447454 -1103.1576
+149084.2622875168 3.3448241 -1103.1774
+149085.2622876212 3.3447454 -1103.2562
+149086.2622877255 3.3447454 -1103.2761
+149087.2622878298 3.3448241 -1103.2761
+149088.2622879341 3.3445878 -1103.2366
+149089.2622880384 3.3445878 -1103.2366
+149090.2622881427 3.3446271 -1103.2562
+149091.262288247 3.3445878 -1103.1774
+149092.2622883513 3.3446271 -1103.1576
+149093.2622884556 3.3444698 -1103.2366
+149094.2622885599 3.3445091 -1103.197
+149095.2622886642 3.3444698 -1103.2761
+149096.2622887685 3.3445485 -1103.197
+149097.2622888729 3.3444698 -1103.197
+149098.2622889772 3.3444698 -1103.2562
+149099.2622890815 3.3444304 -1103.2562
+149100.2622891858 3.3443515 -1103.3156
+149101.2622892901 3.3443911 -1103.2366
+149102.2622893944 3.3443515 -1103.2168
+149103.2622894987 3.3441548 -1103.197
+149104.262289603 3.3442729 -1103.2562
+149105.2622897073 3.3443515 -1103.1774
+149106.2622898116 3.3442335 -1103.2761
+149107.2622899159 3.3441155 -1103.2761
+149108.2622900202 3.3442335 -1103.2366
+149109.2622901245 3.3441942 -1103.1378
+149110.2622902289 3.3441155 -1103.197
+149111.2622903332 3.3441548 -1103.2761
+149112.2622904375 3.3441548 -1103.2562
+149113.2622905418 3.3441942 -1103.197
+149114.2622906461 3.3442335 -1103.2959
+149115.2622907504 3.3441548 -1103.2366
+149116.2622908547 3.3441942 -1103.197
+149117.262290959 3.3442335 -1103.197
+149118.2622910633 3.3441155 -1103.2761
+149119.2622911676 3.3441548 -1103.2366
+149120.2622912719 3.3442335 -1103.2366
+149121.2622913762 3.3441548 -1103.2562
+149122.2622914806 3.3442335 -1103.197
+149123.2622915849 3.3441548 -1103.3156
+149124.2622916892 3.3441548 -1103.2168
+149125.2622917935 3.3441548 -1103.2366
+149126.2622918978 3.3441548 -1103.2562
+149127.2622920021 3.3441548 -1103.3156
+149128.2622921064 3.3439972 -1103.2562
+149129.2622922107 3.3440366 -1103.2168
+149130.262292315 3.3439972 -1103.2168
+149131.2622924193 3.3440762 -1103.2168
+149132.2622925236 3.3440366 -1103.1774
+149133.2622926279 3.3439579 -1103.197
+149134.2622927323 3.3438792 -1103.2168
+149135.2622928366 3.3438399 -1103.2366
+149136.2622929409 3.3438005 -1103.2366
+149137.2622930452 3.3438005 -1103.1576
+149138.2622931495 3.3437216 -1103.2562
+149139.2622932538 3.3437216 -1103.197
+149140.2622933581 3.3437216 -1103.2366
+149141.2622934624 3.343643 -1103.1774
+149142.2622935667 3.343643 -1103.2562
+149143.262293671 3.343643 -1103.2366
+149144.2622937753 3.3435643 -1103.2168
+149145.2622938796 3.3434463 -1103.197
+149146.2622939839 3.3436036 -1103.1576
+149147.2622940883 3.3433673 -1103.2562
+149148.2622941926 3.3434856 -1103.2366
+149149.2622942969 3.3432887 -1103.197
+149150.2622944012 3.343328 -1103.2761
+149151.2622945055 3.343328 -1103.1774
+149152.2622946098 3.3432493 -1103.197
+149153.2622947141 3.3432493 -1103.2761
+149154.2622948184 3.3432493 -1103.197
+149155.2622949227 3.3431706 -1103.2168
+149156.262295027 3.34321 -1103.2168
+149157.2622951313 3.3430917 -1103.1774
+149158.2622952356 3.3431706 -1103.2562
+149159.26229534 3.3430917 -1103.2761
+149160.2622954443 3.3430917 -1103.2168
+149161.2622955486 3.343013 -1103.1774
+149162.2622956529 3.343013 -1103.2168
+149163.2622957572 3.3430917 -1103.2168
+149164.2622958615 3.3429737 -1103.1774
+149165.2622959658 3.3429737 -1103.2366
+149166.2622960701 3.342895 -1103.2366
+149167.2622961744 3.342895 -1103.2562
+149168.2622962787 3.3428161 -1103.1576
+149169.262296383 3.3429344 -1103.2562
+149170.2622964873 3.342895 -1103.2562
+149171.2622965917 3.342895 -1103.2168
+149172.262296696 3.3428161 -1103.1774
+149173.2622968003 3.3427374 -1103.2562
+149174.2622969046 3.3428161 -1103.2562
+149175.2622970089 3.3427768 -1103.2366
+149176.2622971132 3.3426981 -1103.2959
+149177.2622972175 3.3426981 -1103.1576
+149178.2622973218 3.3427768 -1103.2562
+149179.2622974261 3.3427768 -1103.2562
+149180.2622975304 3.3426981 -1103.2168
+149181.2622976347 3.3427374 -1103.2562
+149182.262297739 3.3427374 -1103.2959
+149183.2622978434 3.3427768 -1103.1774
+149184.2622979477 3.3426588 -1103.2168
+149185.262298052 3.3427374 -1103.1774
+149186.2622981563 3.3426588 -1103.2562
+149187.2622982606 3.3426981 -1103.2168
+149188.2622983649 3.3426194 -1103.2366
+149189.2622984692 3.3425407 -1103.1182
+149190.2622985735 3.3425801 -1103.2761
+149191.2622986778 3.3426588 -1103.1774
+149192.2622987821 3.3425012 -1103.2366
+149193.2622988864 3.3425012 -1103.1576
+149194.2622989907 3.3425407 -1103.197
+149195.262299095 3.3425012 -1103.2366
+149196.2622991994 3.3424618 -1103.2761
+149197.2622993037 3.3426194 -1103.3156
+149198.262299408 3.3425801 -1103.2366
+149199.2622995123 3.3425407 -1103.2562
+149200.2622996166 3.3425801 -1103.1774
+149201.2622997209 3.3425407 -1103.1182
+149202.2622998252 3.3426194 -1103.1774
+149203.2622999295 3.3426588 -1103.2168
+149204.2623000338 3.3426981 -1103.1774
+149205.2623001381 3.3426194 -1103.2366
+149206.2623002424 3.3426588 -1103.2761
+149207.2623003467 3.3425801 -1103.2562
+149208.2623004511 3.3425801 -1103.1576
+149209.2623005554 3.3425407 -1103.1774
+149210.2623006597 3.3424618 -1103.1378
+149211.262300764 3.3425012 -1103.2959
+149212.2623008683 3.3425407 -1103.2562
+149213.2623009726 3.3424618 -1103.2168
+149214.2623010769 3.3425407 -1103.2168
+149215.2623011812 3.3425407 -1103.1774
+149216.2623012855 3.3425012 -1103.2168
+149217.2623013898 3.3425801 -1103.2562
+149218.2623014941 3.3426194 -1103.1182
+149219.2623015984 3.3425012 -1103.2959
+149220.2623017028 3.3424618 -1103.2168
+149221.2623018071 3.3426194 -1103.2761
+149222.2623019114 3.3425407 -1103.2562
+149223.2623020157 3.3423438 -1103.2366
+149224.26230212 3.3425012 -1103.2366
+149225.2623022243 3.3425407 -1103.2366
+149226.2623023286 3.3424618 -1103.1182
+149227.2623024329 3.3425012 -1103.2562
+149228.2623025372 3.3424618 -1103.2562
+149229.2623026415 3.3425012 -1103.2366
+149230.2623027458 3.3424618 -1103.1576
+149231.2623028501 3.3425012 -1103.2168
+149232.2623029544 3.3424618 -1103.1774
+149233.2623030588 3.3423831 -1103.1774
+149234.2623031631 3.3424225 -1103.2168
+149235.2623032674 3.3425012 -1103.197
+149236.2623033717 3.3423831 -1103.1774
+149237.262303476 3.3423831 -1103.197
+149238.2623035803 3.3424225 -1103.197
+149239.2623036846 3.3423438 -1103.2562
+149240.2623037889 3.3422651 -1103.2168
+149241.2623038932 3.3422651 -1103.2168
+149242.2623039975 3.3422258 -1103.2168
+149243.2623041018 3.3421862 -1103.2366
+149244.2623042061 3.3422258 -1103.1774
+149245.2623043105 3.3421469 -1103.2959
+149246.2623044148 3.3423045 -1103.2959
+149247.2623045191 3.3420682 -1103.2562
+149248.2623046234 3.3423045 -1103.2168
+149249.2623047277 3.3421469 -1103.2168
+149250.262304832 3.3421469 -1103.1774
+149251.2623049363 3.3421075 -1103.2761
+149252.2623050406 3.3421862 -1103.2366
+149253.2623051449 3.3421469 -1103.2366
+149254.2623052492 3.3421469 -1103.197
+149255.2623053535 3.3420682 -1103.2366
+149256.2623054578 3.3421862 -1103.2366
+149257.2623055622 3.3419895 -1103.1774
+149258.2623056665 3.3421075 -1103.197
+149259.2623057708 3.3420682 -1103.2761
+149260.2623058751 3.3421469 -1103.2562
+149261.2623059794 3.3419895 -1103.2562
+149262.2623060837 3.3420289 -1103.1774
+149263.262306188 3.3420682 -1103.2366
+149264.2623062923 3.3420682 -1103.197
+149265.2623063966 3.3419502 -1103.3551
+149266.2623065009 3.3420289 -1103.2168
+149267.2623066052 3.3420289 -1103.2168
+149268.2623067095 3.3420682 -1103.197
+149269.2623068138 3.3420289 -1103.3156
+149270.2623069182 3.3420682 -1103.197
+149271.2623070225 3.3421075 -1103.2366
+149272.2623071268 3.3420682 -1103.1576
+149273.2623072311 3.3420682 -1103.2761
+149274.2623073354 3.3420289 -1103.2562
+149275.2623074397 3.3420682 -1103.1576
+149276.262307544 3.3420682 -1103.2562
+149277.2623076483 3.3419108 -1103.3353
+149278.2623077526 3.3419502 -1103.197
+149279.2623078569 3.3418713 -1103.2562
+149280.2623079612 3.3420289 -1103.1774
+149281.2623080655 3.3419108 -1103.2168
+149282.2623081699 3.3418713 -1103.3156
+149283.2623082742 3.3419502 -1103.2168
+149284.2623083785 3.3418713 -1103.2366
+149285.2623084828 3.3419108 -1103.2168
+149286.2623085871 3.3417926 -1103.2168
+149287.2623086914 3.3417532 -1103.2761
+149288.2623087957 3.3417926 -1103.2168
+149289.2623089 3.3418713 -1103.1576
+149290.2623090043 3.3418319 -1103.2168
+149291.2623091086 3.3417926 -1103.2761
+149292.2623092129 3.3417532 -1103.197
+149293.2623093172 3.3418713 -1103.2168
+149294.2623094216 3.3417926 -1103.1378
+149295.2623095259 3.3418319 -1103.2168
+149296.2623096302 3.3417926 -1103.1378
+149297.2623097345 3.3417139 -1103.2562
+149298.2623098388 3.3417926 -1103.2366
+149299.2623099431 3.3418713 -1103.1182
+149300.2623100474 3.3417139 -1103.2366
+149301.2623101517 3.3417926 -1103.2562
+149302.262310256 3.3417926 -1103.0984
+149303.2623103603 3.3417926 -1103.2366
+149304.2623104646 3.3416746 -1103.2959
+149305.2623105689 3.3417532 -1103.2366
+149306.2623106733 3.3417532 -1103.2959
+149307.2623107776 3.3416746 -1103.2761
+149308.2623108819 3.3416746 -1103.2366
+149309.2623109862 3.3417139 -1103.197
+149310.2623110905 3.3418713 -1103.2562
+149311.2623111948 3.3417532 -1103.2366
+149312.2623112991 3.3417532 -1103.2366
+149313.2623114034 3.3417139 -1103.3156
+149314.2623115077 3.3417139 -1103.1774
+149315.262311612 3.3417139 -1103.2366
+149316.2623117163 3.3417532 -1103.2562
+149317.2623118206 3.3417926 -1103.2562
+149318.2623119249 3.3418319 -1103.2366
+149319.2623120293 3.3417139 -1103.197
+149320.2623121336 3.3417139 -1103.2562
+149321.2623122379 3.3417532 -1103.197
+149322.2623123422 3.3416746 -1103.197
+149323.2623124465 3.3417139 -1103.2562
+149324.2623125508 3.3416352 -1103.2366
+149325.2623126551 3.3417139 -1103.2959
+149326.2623127594 3.3416352 -1103.2168
+149327.2623128637 3.3417532 -1103.2366
+149328.262312968 3.3415563 -1103.2761
+149329.2623130723 3.3416746 -1103.1378
+149330.2623131766 3.3416746 -1103.2562
+149331.262313281 3.3415959 -1103.197
+149332.2623133853 3.3417139 -1103.2366
+149333.2623134896 3.3415959 -1103.2562
+149334.2623135939 3.3416352 -1103.1774
+149335.2623136982 3.3416746 -1103.2366
+149336.2623138025 3.3417139 -1103.2366
+149337.2623139068 3.3417532 -1103.0984
+149338.2623140111 3.3416746 -1103.197
+149339.2623141154 3.3418319 -1103.3156
+149340.2623142197 3.3417926 -1103.2761
+149341.262314324 3.3418319 -1103.2168
+149342.2623144283 3.3418713 -1103.197
+149343.2623145327 3.3419108 -1103.3156
+149344.262314637 3.3419895 -1103.1774
+149345.2623147413 3.3420289 -1103.2168
+149346.2623148456 3.3420682 -1103.2761
+149347.2623149499 3.3420289 -1103.2168
+149348.2623150542 3.3420682 -1103.2168
+149349.2623151585 3.3420682 -1103.3156
+149350.2623152628 3.3421075 -1103.2168
+149351.2623153671 3.3420682 -1103.2959
+149352.2623154714 3.3421075 -1103.1774
+149353.2623155757 3.3419502 -1103.1182
+149354.26231568 3.3421075 -1103.2562
+149355.2623157843 3.3419895 -1103.1378
+149356.2623158887 3.3419895 -1103.1576
+149357.262315993 3.3419502 -1103.2168
+149358.2623160973 3.3419502 -1103.197
+149359.2623162016 3.3419108 -1103.1774
+149360.2623163059 3.3418713 -1103.2366
+149361.2623164102 3.3418713 -1103.3156
+149362.2623165145 3.3417926 -1103.1182
+149363.2623166188 3.3417926 -1103.2761
+149364.2623167231 3.3417926 -1103.2366
+149365.2623168274 3.3417926 -1103.2562
+149366.2623169317 3.3416352 -1103.2168
+149367.262317036 3.3415959 -1103.197
+149368.2623171404 3.341517 -1103.1774
+149369.2623172447 3.3414776 -1103.2366
+149370.262317349 3.3414383 -1103.1576
+149371.2623174533 3.3414383 -1103.2761
+149372.2623175576 3.341399 -1103.2168
+149373.2623176619 3.341399 -1103.197
+149374.2623177662 3.3412414 -1103.2366
+149375.2623178705 3.3414383 -1103.2959
+149376.2623179748 3.3413596 -1103.2562
+149377.2623180791 3.3412807 -1103.1774
+149378.2623181834 3.341202 -1103.2366
+149379.2623182877 3.3412414 -1103.2366
+149380.2623183921 3.3411627 -1103.2168
+149381.2623184964 3.3410447 -1103.2366
+149382.2623186007 3.3411233 -1103.197
+149383.262318705 3.3411233 -1103.197
+149384.2623188093 3.3410447 -1103.1774
+149385.2623189136 3.3409264 -1103.2366
+149386.2623190179 3.3409657 -1103.2761
+149387.2623191222 3.3410053 -1103.2366
+149388.2623192265 3.3409264 -1103.2366
+149389.2623193308 3.3408477 -1103.2959
+149390.2623194351 3.3409264 -1103.2562
+149391.2623195394 3.3410053 -1103.197
+149392.2623196437 3.3408871 -1103.1774
+149393.2623197481 3.3409264 -1103.1182
+149394.2623198524 3.3409264 -1103.197
+149395.2623199567 3.3408871 -1103.2366
+149396.262320061 3.3408871 -1103.2168
+149397.2623201653 3.3407691 -1103.2168
+149398.2623202696 3.3407297 -1103.197
+149399.2623203739 3.3407297 -1103.2366
+149400.2623204782 3.3406115 -1103.197
+149401.2623205825 3.3406508 -1103.2366
+149402.2623206868 3.3406115 -1103.1774
+149403.2623207911 3.3406508 -1103.2366
+149404.2623208954 3.3405721 -1103.3156
+149405.2623209998 3.3404541 -1103.1774
+149406.2623211041 3.3404541 -1103.197
+149407.2623212084 3.3403358 -1103.2168
+149408.2623213127 3.3402965 -1103.3551
+149409.262321417 3.3402572 -1103.2366
+149410.2623215213 3.3401785 -1103.2168
+149411.2623216256 3.3401392 -1103.2366
+149412.2623217299 3.3401392 -1103.2761
+149413.2623218342 3.3401392 -1103.1576
+149414.2623219385 3.3400998 -1103.197
+149415.2623220428 3.3401392 -1103.2168
+149416.2623221471 3.3400998 -1103.1182
+149417.2623222515 3.3400605 -1103.2959
+149418.2623223558 3.3398635 -1103.2761
+149419.2623224601 3.3399816 -1103.2761
+149420.2623225644 3.3398242 -1103.2366
+149421.2623226687 3.3399422 -1103.2562
+149422.262322773 3.3398635 -1103.2959
+149423.2623228773 3.3397849 -1103.2168
+149424.2623229816 3.3398635 -1103.2366
+149425.2623230859 3.3399029 -1103.2168
+149426.2623231902 3.3397849 -1103.2366
+149427.2623232945 3.3398635 -1103.197
+149428.2623233988 3.3397849 -1103.2168
+149429.2623235032 3.3397849 -1103.3156
+149430.2623236075 3.3397059 -1103.2366
+149431.2623237118 3.3396273 -1103.2168
+149432.2623238161 3.3396666 -1103.197
+149433.2623239204 3.3396666 -1103.197
+149434.2623240247 3.3397455 -1103.197
+149435.262324129 3.3395879 -1103.1774
+149436.2623242333 3.3395879 -1103.197
+149437.2623243376 3.3395486 -1103.2366
+149438.2623244419 3.3394303 -1103.197
+149439.2623245462 3.3395092 -1103.2168
+149440.2623246505 3.3394699 -1103.2168
+149441.2623247548 3.339391 -1103.1774
+149442.2623248592 3.3395092 -1103.2562
+149443.2623249635 3.339391 -1103.1576
+149444.2623250678 3.3393517 -1103.2366
+149445.2623251721 3.3392336 -1103.197
+149446.2623252764 3.3393517 -1103.2168
+149447.2623253807 3.3392336 -1103.197
+149448.262325485 3.339155 -1103.1774
+149449.2623255893 3.339155 -1103.2366
+149450.2623256936 3.3393123 -1103.2168
+149451.2623257979 3.3391154 -1103.1576
+149452.2623259022 3.339076 -1103.2168
+149453.2623260065 3.339155 -1103.2959
+149454.2623261109 3.339155 -1103.1774
+149455.2623262152 3.339155 -1103.3156
+149456.2623263195 3.3392336 -1103.1576
+149457.2623264238 3.3390367 -1103.2562
+149458.2623265281 3.3390367 -1103.1774
+149459.2623266324 3.338958 -1103.197
+149460.2623267367 3.3389974 -1103.2959
+149461.262326841 3.3390367 -1103.1576
+149462.2623269453 3.3389187 -1103.2168
+149463.2623270496 3.3389974 -1103.197
+149464.2623271539 3.338958 -1103.197
+149465.2623272582 3.3389187 -1103.2959
+149466.2623273626 3.33884 -1103.1182
+149467.2623274669 3.3388793 -1103.2168
+149468.2623275712 3.3387611 -1103.2562
+149469.2623276755 3.3386824 -1103.197
+149470.2623277798 3.3387218 -1103.2168
+149471.2623278841 3.3386037 -1103.2366
+149472.2623279884 3.3386824 -1103.2366
+149473.2623280927 3.3386037 -1103.2366
+149474.262328197 3.3386824 -1103.2562
+149475.2623283013 3.3385644 -1103.1182
+149476.2623284056 3.3384855 -1103.2761
+149477.2623285099 3.3384068 -1103.2562
+149478.2623286142 3.3384461 -1103.2366
+149479.2623287186 3.3384068 -1103.2761
+149480.2623288229 3.3383675 -1103.197
+149481.2623289272 3.3383675 -1103.1774
+149482.2623290315 3.3383675 -1103.2168
+149483.2623291358 3.3382494 -1103.2168
+149484.2623292401 3.3381312 -1103.2168
+149485.2623293444 3.3381705 -1103.1774
+149486.2623294487 3.3380525 -1103.1774
+149487.262329553 3.3381705 -1103.2761
+149488.2623296573 3.3381705 -1103.197
+149489.2623297616 3.3379738 -1103.1576
+149490.2623298659 3.3380132 -1103.2168
+149491.2623299703 3.3378952 -1103.1576
+149492.2623300746 3.3379738 -1103.2168
+149493.2623301789 3.3378556 -1103.197
+149494.2623302832 3.3378952 -1103.2366
+149495.2623303875 3.3378952 -1103.2562
+149496.2623304918 3.3377769 -1103.2959
+149497.2623305961 3.3377376 -1103.2366
+149498.2623307004 3.3377769 -1103.2562
+149499.2623308047 3.3378162 -1103.197
+149500.262330909 3.3378556 -1103.2366
+149501.2623310133 3.3377769 -1103.2959
+149502.2623311176 3.3377376 -1103.2562
+149503.262331222 3.3378162 -1103.2168
+149504.2623313263 3.3378556 -1103.1182
+149505.2623314306 3.3377769 -1103.2168
+149506.2623315349 3.3376589 -1103.2168
+149507.2623316392 3.3376982 -1103.2366
+149508.2623317435 3.3376982 -1103.3156
+149509.2623318478 3.3377769 -1103.2366
+149510.2623319521 3.3377769 -1103.2761
+149511.2623320564 3.3378162 -1103.2168
+149512.2623321607 3.3377376 -1103.1774
+149513.262332265 3.3376589 -1103.1576
+149514.2623323693 3.3376982 -1103.2761
+149515.2623324736 3.3377376 -1103.1774
+149516.262332578 3.3377376 -1103.2562
+149517.2623326823 3.3377376 -1103.197
+149518.2623327866 3.3378556 -1103.2761
+149519.2623328909 3.3378162 -1103.2761
+149520.2623329952 3.3377376 -1103.197
+149521.2623330995 3.3377769 -1103.2761
+149522.2623332038 3.3378162 -1103.2168
+149523.2623333081 3.3378952 -1103.2168
+149524.2623334124 3.3378952 -1103.2168
+149525.2623335167 3.3377769 -1103.197
+149526.262333621 3.3378952 -1103.1774
+149527.2623337253 3.3377376 -1103.2366
+149528.2623338297 3.3378952 -1103.2168
+149529.262333934 3.3379345 -1103.2366
+149530.2623340383 3.3378556 -1103.2761
+149531.2623341426 3.3378162 -1103.3156
+149532.2623342469 3.3378162 -1103.2168
+149533.2623343512 3.3378162 -1103.2562
+149534.2623344555 3.3378162 -1103.2168
+149535.2623345598 3.3377769 -1103.1774
+149536.2623346641 3.3377376 -1103.2168
+149537.2623347684 3.3377769 -1103.2959
+149538.2623348727 3.3377376 -1103.2562
+149539.262334977 3.3377769 -1103.1378
+149540.2623350814 3.3376982 -1103.2562
+149541.2623351857 3.3376195 -1103.197
+149542.26233529 3.3377376 -1103.2366
+149543.2623353943 3.3376982 -1103.2562
+149544.2623354986 3.3376982 -1103.1774
+149545.2623356029 3.3378162 -1103.1576
+149546.2623357072 3.3376589 -1103.2366
+149547.2623358115 3.3378952 -1103.197
+149548.2623359158 3.3377769 -1103.3156
+149549.2623360201 3.3377769 -1103.197
+149550.2623361244 3.3377769 -1103.1182
+149551.2623362287 3.3378556 -1103.2366
+149552.262336333 3.3378162 -1103.2168
+149553.2623364374 3.3377769 -1103.2959
+149554.2623365417 3.3377769 -1103.2366
+149555.262336646 3.3377376 -1103.2761
+149556.2623367503 3.3377376 -1103.2761
+149557.2623368546 3.3376589 -1103.2562
+149558.2623369589 3.3376589 -1103.2761
+149559.2623370632 3.33758 -1103.2366
+149560.2623371675 3.3376982 -1103.2562
+149561.2623372718 3.3376589 -1103.2761
+149562.2623373761 3.3376195 -1103.2366
+149563.2623374804 3.33758 -1103.3353
+149564.2623375847 3.3376195 -1103.2366
+149565.2623376891 3.3375013 -1103.2761
+149566.2623377934 3.3374226 -1103.2959
+149567.2623378977 3.3374226 -1103.2168
+149568.262338002 3.3373439 -1103.2562
+149569.2623381063 3.3374619 -1103.2562
+149570.2623382106 3.3373439 -1103.1774
+149571.2623383149 3.3373439 -1103.2366
+149572.2623384192 3.3373439 -1103.1774
+149573.2623385235 3.3372257 -1103.2168
+149574.2623386278 3.3372257 -1103.2168
+149575.2623387321 3.337147 -1103.197
+149576.2623388364 3.337029 -1103.2761
+149577.2623389408 3.337029 -1103.1774
+149578.2623390451 3.337029 -1103.197
+149579.2623391494 3.3367534 -1103.2366
+149580.2623392537 3.3367927 -1103.2168
+149581.262339358 3.3367927 -1103.1576
+149582.2623394623 3.3369107 -1103.1576
+149583.2623395666 3.336714 -1103.2562
+149584.2623396709 3.3366747 -1103.1774
+149585.2623397752 3.3367534 -1103.2366
+149586.2623398795 3.3366747 -1103.2168
+149587.2623399838 3.3365564 -1103.2366
+149588.2623400881 3.3365564 -1103.1774
+149589.2623401925 3.3365564 -1103.1774
+149590.2623402968 3.3365171 -1103.2168
+149591.2623404011 3.3365564 -1103.197
+149592.2623405054 3.3366351 -1103.2168
+149593.2623406097 3.3365171 -1103.1576
+149594.262340714 3.3365958 -1103.2761
+149595.2623408183 3.3366351 -1103.2562
+149596.2623409226 3.3366351 -1103.2761
+149597.2623410269 3.3365958 -1103.1182
+149598.2623411312 3.3366351 -1103.2959
+149599.2623412355 3.3366747 -1103.2562
+149600.2623413398 3.3365564 -1103.2761
+149601.2623414441 3.3365564 -1103.1576
+149602.2623415485 3.3366747 -1103.2168
+149603.2623416528 3.3364778 -1103.2959
+149604.2623417571 3.3365564 -1103.2168
+149605.2623418614 3.3364778 -1103.3156
+149606.2623419657 3.3365564 -1103.2168
+149607.26234207 3.3364384 -1103.1774
+149608.2623421743 3.3363597 -1103.2168
+149609.2623422786 3.3363597 -1103.197
+149610.2623423829 3.3364384 -1103.197
+149611.2623424872 3.3363202 -1103.1774
+149612.2623425915 3.3363991 -1103.2562
+149613.2623426958 3.3363202 -1103.3353
+149614.2623428002 3.3363597 -1103.3156
+149615.2623429045 3.3363202 -1103.2168
+149616.2623430088 3.3362415 -1103.2366
+149617.2623431131 3.3362415 -1103.1576
+149618.2623432174 3.3362021 -1103.1774
+149619.2623433217 3.3360052 -1103.2761
+149620.262343426 3.3362021 -1103.2168
+149621.2623435303 3.3362021 -1103.197
+149622.2623436346 3.3361628 -1103.1182
+149623.2623437389 3.3360841 -1103.2959
+149624.2623438432 3.3360841 -1103.2959
+149625.2623439475 3.3360448 -1103.1774
+149626.2623440519 3.3360841 -1103.197
+149627.2623441562 3.3360448 -1103.2761
+149628.2623442605 3.3360448 -1103.197
+149629.2623443648 3.3360448 -1103.1182
+149630.2623444691 3.3361628 -1103.2168
+149631.2623445734 3.3360841 -1103.3156
+149632.2623446777 3.3360052 -1103.2959
+149633.262344782 3.3361628 -1103.2366
+149634.2623448863 3.3358872 -1103.2366
+149635.2623449906 3.3360052 -1103.3551
+149636.2623450949 3.3359659 -1103.1774
+149637.2623451992 3.3359265 -1103.197
+149638.2623453035 3.3358085 -1103.2168
+149639.2623454079 3.3358872 -1103.197
+149640.2623455122 3.3358085 -1103.2761
+149641.2623456165 3.3358085 -1103.197
+149642.2623457208 3.3356509 -1103.2562
+149643.2623458251 3.3357692 -1103.1378
+149644.2623459294 3.3357296 -1103.1774
+149645.2623460337 3.3356509 -1103.2761
+149646.262346138 3.3355329 -1103.1774
+149647.2623462423 3.3355722 -1103.2366
+149648.2623463466 3.3355329 -1103.197
+149649.2623464509 3.3354936 -1103.2168
+149650.2623465552 3.3354146 -1103.2168
+149651.2623466596 3.3354146 -1103.1576
+149652.2623467639 3.3354146 -1103.2168
+149653.2623468682 3.3355329 -1103.2168
+149654.2623469725 3.3355329 -1103.1182
+149655.2623470768 3.3354542 -1103.2562
+149656.2623471811 3.3354542 -1103.2366
+149657.2623472854 3.3354936 -1103.2562
+149658.2623473897 3.3352966 -1103.197
+149659.262347494 3.3352573 -1103.2366
+149660.2623475983 3.3353753 -1103.197
+149661.2623477026 3.335218 -1103.197
+149662.2623478069 3.3351393 -1103.2168
+149663.2623479113 3.3351786 -1103.2366
+149664.2623480156 3.3352573 -1103.1774
+149665.2623481199 3.335218 -1103.2562
+149666.2623482242 3.3352573 -1103.3156
+149667.2623483285 3.335336 -1103.3156
+149668.2623484328 3.3352966 -1103.197
+149669.2623485371 3.335218 -1103.1576
+149670.2623486414 3.3352966 -1103.2366
+149671.2623487457 3.3351393 -1103.2761
+149672.26234885 3.3351393 -1103.2168
+149673.2623489543 3.3351393 -1103.2761
+149674.2623490586 3.3350604 -1103.2366
+149675.2623491629 3.3349423 -1103.2366
+149676.2623492673 3.3349423 -1103.2761
+149677.2623493716 3.3349423 -1103.2761
+149678.2623494759 3.3349423 -1103.2761
+149679.2623495802 3.3348243 -1103.2959
+149680.2623496845 3.334903 -1103.1774
+149681.2623497888 3.3347061 -1103.1378
+149682.2623498931 3.3346667 -1103.1774
+149683.2623499974 3.3347454 -1103.2959
+149684.2623501017 3.3346274 -1103.2366
+149685.262350206 3.3345881 -1103.2959
+149686.2623503103 3.3345094 -1103.2168
+149687.2623504146 3.3345881 -1103.2761
+149688.262350519 3.3345094 -1103.2168
+149689.2623506233 3.3344698 -1103.1774
+149690.2623507276 3.3344305 -1103.2168
+149691.2623508319 3.3344698 -1103.197
+149692.2623509362 3.3344698 -1103.2562
+149693.2623510405 3.3344305 -1103.2761
+149694.2623511448 3.3343911 -1103.197
+149695.2623512491 3.3344698 -1103.197
+149696.2623513534 3.3343911 -1103.2168
+149697.2623514577 3.3343124 -1103.2761
+149698.262351562 3.3341942 -1103.2366
+149699.2623516663 3.3343518 -1103.2366
+149700.2623517707 3.3343911 -1103.1576
+149701.262351875 3.3343518 -1103.197
+149702.2623519793 3.3342731 -1103.2366
+149703.2623520836 3.3343911 -1103.2366
+149704.2623521879 3.3341942 -1103.2761
+149705.2623522922 3.3340762 -1103.2168
+149706.2623523965 3.3341155 -1103.2168
+149707.2623525008 3.3340762 -1103.1774
+149708.2623526051 3.3339975 -1103.2168
+149709.2623527094 3.3339188 -1103.2168
+149710.2623528137 3.3339975 -1103.2168
+149711.262352918 3.3338399 -1103.2366
+149712.2623530224 3.3338792 -1103.197
+149713.2623531267 3.3339581 -1103.197
+149714.262353231 3.3339188 -1103.2562
+149715.2623533353 3.3337612 -1103.3156
+149716.2623534396 3.3338792 -1103.1774
+149717.2623535439 3.3338792 -1103.2168
+149718.2623536482 3.3339188 -1103.1576
+149719.2623537525 3.3339581 -1103.2562
+149720.2623538568 3.3339975 -1103.1774
+149721.2623539611 3.3339581 -1103.2168
+149722.2623540654 3.3340368 -1103.1774
+149723.2623541697 3.3339188 -1103.2562
+149724.262354274 3.3339975 -1103.2168
+149725.2623543784 3.3339581 -1103.2168
+149726.2623544827 3.3339975 -1103.1378
+149727.262354587 3.3339581 -1103.3156
+149728.2623546913 3.3339975 -1103.2366
+149729.2623547956 3.3340368 -1103.2366
+149730.2623548999 3.3340368 -1103.2562
+149731.2623550042 3.3339581 -1103.2366
+149732.2623551085 3.3339975 -1103.1774
+149733.2623552128 3.3340762 -1103.197
+149734.2623553171 3.3340762 -1103.2959
+149735.2623554214 3.3339975 -1103.1774
+149736.2623555257 3.3339975 -1103.197
+149737.2623556301 3.3339581 -1103.1576
+149738.2623557344 3.3339581 -1103.2959
+149739.2623558387 3.3339581 -1103.197
+149740.262355943 3.3338792 -1103.197
+149741.2623560473 3.3340368 -1103.2366
+149742.2623561516 3.3339581 -1103.2366
+149743.2623562559 3.3339188 -1103.2366
+149744.2623563602 3.3338792 -1103.1378
+149745.2623564645 3.3339188 -1103.1774
+149746.2623565688 3.3338399 -1103.197
+149747.2623566731 3.3338006 -1103.2366
+149748.2623567774 3.3338399 -1103.2168
+149749.2623568818 3.3338006 -1103.1774
+149750.2623569861 3.3336825 -1103.2366
+149751.2623570904 3.3338006 -1103.2168
+149752.2623571947 3.3338399 -1103.1774
+149753.262357299 3.3338006 -1103.197
+149754.2623574033 3.3338006 -1103.2168
+149755.2623575076 3.3336825 -1103.1576
+149756.2623576119 3.3337612 -1103.2761
+149757.2623577162 3.3337219 -1103.197
+149758.2623578205 3.3336825 -1103.2168
+149759.2623579248 3.3335249 -1103.2761
+149760.2623580291 3.3334856 -1103.1378
+149761.2623581334 3.3334856 -1103.2168
+149762.2623582378 3.3336039 -1103.2562
+149763.2623583421 3.3335249 -1103.2366
+149764.2623584464 3.3334856 -1103.1182
+149765.2623585507 3.3334069 -1103.2366
+149766.262358655 3.3333282 -1103.1774
+149767.2623587593 3.3333676 -1103.2959
+149768.2623588636 3.3332493 -1103.197
+149769.2623589679 3.3333282 -1103.2366
+149770.2623590722 3.3332493 -1103.2959
+149771.2623591765 3.3331707 -1103.1774
+149772.2623592808 3.333092 -1103.1774
+149773.2623593851 3.3330133 -1103.197
+149774.2623594895 3.3330526 -1103.1774
+149775.2623595938 3.333092 -1103.2168
+149776.2623596981 3.3328557 -1103.2959
+149777.2623598024 3.3328164 -1103.1774
+149778.2623599067 3.332777 -1103.1576
+149779.262360011 3.3328557 -1103.197
+149780.2623601153 3.3328164 -1103.1378
+149781.2623602196 3.3327377 -1103.2562
+149782.2623603239 3.3326194 -1103.1182
+149783.2623604282 3.3326194 -1103.2168
+149784.2623605325 3.3325801 -1103.2761
+149785.2623606368 3.3325801 -1103.2761
+149786.2623607412 3.3325014 -1103.197
+149787.2623608455 3.3325014 -1103.2168
+149788.2623609498 3.3325408 -1103.2366
+149789.2623610541 3.3324621 -1103.2562
+149790.2623611584 3.3324621 -1103.1774
+149791.2623612627 3.3324621 -1103.2168
+149792.262361367 3.3324621 -1103.197
+149793.2623614713 3.3324227 -1103.197
+149794.2623615756 3.3323834 -1103.2168
+149795.2623616799 3.3323438 -1103.2168
+149796.2623617842 3.3323438 -1103.2562
+149797.2623618885 3.3321471 -1103.2562
+149798.2623619928 3.3321865 -1103.2168
+149799.2623620972 3.3321471 -1103.197
+149800.2623622015 3.3321078 -1103.3156
+149801.2623623058 3.3321078 -1103.2562
+149802.2623624101 3.3320684 -1103.2168
+149803.2623625144 3.3320684 -1103.1576
+149804.2623626187 3.3319502 -1103.2168
+149805.262362723 3.3318715 -1103.1378
+149806.2623628273 3.3319502 -1103.2761
+149807.2623629316 3.3318715 -1103.1576
+149808.2623630359 3.3319502 -1103.1182
+149809.2623631402 3.3319502 -1103.197
+149810.2623632445 3.3319108 -1103.2562
+149811.2623633489 3.3318715 -1103.1576
+149812.2623634532 3.3319502 -1103.1182
+149813.2623635575 3.3319108 -1103.2366
+149814.2623636618 3.3319502 -1103.2959
+149815.2623637661 3.3319895 -1103.2168
+149816.2623638704 3.3319895 -1103.2168
+149817.2623639747 3.3318322 -1103.2562
+149818.262364079 3.3318322 -1103.197
+149819.2623641833 3.3319502 -1103.2761
+149820.2623642876 3.3318715 -1103.2761
+149821.2623643919 3.3319502 -1103.1774
+149822.2623644962 3.3318715 -1103.197
+149823.2623646006 3.3318715 -1103.1378
+149824.2623647049 3.3319108 -1103.2761
+149825.2623648092 3.3319108 -1103.0785
+149826.2623649135 3.3318715 -1103.2761
+149827.2623650178 3.3319108 -1103.2366
+149828.2623651221 3.3319502 -1103.2562
+149829.2623652264 3.3319108 -1103.1576
+149830.2623653307 3.3319108 -1103.2168
+149831.262365435 3.3319502 -1103.1576
+149832.2623655393 3.3318322 -1103.2168
+149833.2623656436 3.3317928 -1103.2168
+149834.2623657479 3.3317928 -1103.197
+149835.2623658523 3.3317139 -1103.2168
+149836.2623659566 3.3316352 -1103.1378
+149837.2623660609 3.3316352 -1103.2761
+149838.2623661652 3.3316352 -1103.2168
+149839.2623662695 3.3315566 -1103.2168
+149840.2623663738 3.3315959 -1103.197
+149841.2623664781 3.3315172 -1103.1774
+149842.2623665824 3.3315172 -1103.1378
+149843.2623666867 3.3315566 -1103.2168
+149844.262366791 3.331399 -1103.1774
+149845.2623668953 3.3315172 -1103.2168
+149846.2623669996 3.3314779 -1103.2959
+149847.2623671039 3.3314385 -1103.2562
+149848.2623672083 3.3313203 -1103.1378
+149849.2623673126 3.3313596 -1103.3156
+149850.2623674169 3.3312023 -1103.2562
+149851.2623675212 3.3312809 -1103.2959
+149852.2623676255 3.3312416 -1103.2959
+149853.2623677298 3.3312023 -1103.197
+149854.2623678341 3.3310053 -1103.1774
+149855.2623679384 3.3311236 -1103.2366
+149856.2623680427 3.3309267 -1103.1182
+149857.262368147 3.3309267 -1103.2168
+149858.2623682513 3.330848 -1103.1774
+149859.2623683556 3.3307691 -1103.2168
+149860.26236846 3.3308086 -1103.1774
+149861.2623685643 3.3307691 -1103.1774
+149862.2623686686 3.330651 -1103.1182
+149863.2623687729 3.3307691 -1103.197
+149864.2623688772 3.3306117 -1103.2366
+149865.2623689815 3.3306904 -1103.2761
+149866.2623690858 3.3304541 -1103.3156
+149867.2623691901 3.3304935 -1103.197
+149868.2623692944 3.3303754 -1103.1378
+149869.2623693987 3.3302968 -1103.2562
+149870.262369503 3.3302968 -1103.3156
+149871.2623696073 3.3302574 -1103.2366
+149872.2623697117 3.3303361 -1103.2168
+149873.262369816 3.3302574 -1103.2168
+149874.2623699203 3.3301785 -1103.2959
+149875.2623700246 3.3302968 -1103.2761
+149876.2623701289 3.3303361 -1103.2168
+149877.2623702332 3.3303361 -1103.1774
+149878.2623703375 3.3303361 -1103.2168
+149879.2623704418 3.3304148 -1103.2761
+149880.2623705461 3.3303361 -1103.1774
+149881.2623706504 3.3301785 -1103.2168
+149882.2623707547 3.3302574 -1103.2959
+149883.262370859 3.3302574 -1103.197
+149884.2623709633 3.3302181 -1103.2168
+149885.2623710677 3.3301785 -1103.2366
+149886.262371172 3.3302181 -1103.3551
+149887.2623712763 3.3300605 -1103.2959
+149888.2623713806 3.3300998 -1103.2562
+149889.2623714849 3.3300605 -1103.1576
+149890.2623715892 3.3299425 -1103.1182
+149891.2623716935 3.3299031 -1103.2562
+149892.2623717978 3.3299818 -1103.2168
+149893.2623719021 3.3297849 -1103.2366
+149894.2623720064 3.3296275 -1103.1774
+149895.2623721107 3.3297062 -1103.2562
+149896.262372215 3.3295882 -1103.1378
+149897.2623723194 3.3296669 -1103.2562
+149898.2623724237 3.3296669 -1103.2168
+149899.262372528 3.3296669 -1103.1182
+149900.2623726323 3.3295093 -1103.1774
+149901.2623727366 3.3295093 -1103.2168
+149902.2623728409 3.3295486 -1103.2168
+149903.2623729452 3.3295882 -1103.2562
+149904.2623730495 3.3294699 -1103.197
+149905.2623731538 3.3294699 -1103.2168
+149906.2623732581 3.3294306 -1103.197
+149907.2623733624 3.3293912 -1103.1576
+149908.2623734667 3.3292732 -1103.1774
+149909.2623735711 3.3293126 -1103.197
+149910.2623736754 3.3292732 -1103.1774
+149911.2623737797 3.3293126 -1103.2761
+149912.262373884 3.3291943 -1103.197
+149913.2623739883 3.3291156 -1103.2562
+149914.2623740926 3.3291943 -1103.2761
+149915.2623741969 3.3291156 -1103.197
+149916.2623743012 3.3290763 -1103.1576
+149917.2623744055 3.3289976 -1103.2959
+149918.2623745098 3.3290763 -1103.1774
+149919.2623746141 3.329037 -1103.2562
+149920.2623747184 3.328722 -1103.197
+149921.2623748227 3.3289187 -1103.2366
+149922.2623749271 3.3288007 -1103.197
+149923.2623750314 3.328722 -1103.2562
+149924.2623751357 3.3286827 -1103.2366
+149925.26237524 3.3286431 -1103.1774
+149926.2623753443 3.3285251 -1103.1182
+149927.2623754486 3.3286431 -1103.2562
+149928.2623755529 3.3284857 -1103.197
+149929.2623756572 3.3284857 -1103.2562
+149930.2623757615 3.3283281 -1103.197
+149931.2623758658 3.328407 -1103.2366
+149932.2623759701 3.3282495 -1103.197
+149933.2623760744 3.3282888 -1103.3353
+149934.2623761788 3.3283281 -1103.2366
+149935.2623762831 3.3282495 -1103.2168
+149936.2623763874 3.3283281 -1103.2761
+149937.2623764917 3.3283677 -1103.2562
+149938.262376596 3.3281314 -1103.2168
+149939.2623767003 3.3282495 -1103.1774
+149940.2623768046 3.3281314 -1103.2168
+149941.2623769089 3.3281314 -1103.2959
+149942.2623770132 3.3281314 -1103.1774
+149943.2623771175 3.3281314 -1103.2562
+149944.2623772218 3.3280528 -1103.1576
+149945.2623773261 3.3281314 -1103.197
+149946.2623774305 3.3282495 -1103.2168
+149947.2623775348 3.3282101 -1103.197
+149948.2623776391 3.3280528 -1103.2168
+149949.2623777434 3.3280132 -1103.1774
+149950.2623778477 3.3279345 -1103.197
+149951.262377952 3.3280132 -1103.2761
+149952.2623780563 3.3280132 -1103.2761
+149953.2623781606 3.3279738 -1103.2366
+149954.2623782649 3.3278952 -1103.2366
+149955.2623783692 3.3278952 -1103.2366
+149956.2623784735 3.3279738 -1103.197
+149957.2623785778 3.3278952 -1103.1378
+149958.2623786822 3.3278558 -1103.2366
+149959.2623787865 3.3279345 -1103.1576
+149960.2623788908 3.3277771 -1103.2366
+149961.2623789951 3.3278165 -1103.1774
+149962.2623790994 3.3278165 -1103.2959
+149963.2623792037 3.3276982 -1103.2562
+149964.262379308 3.3278165 -1103.1774
+149965.2623794123 3.3278952 -1103.2959
+149966.2623795166 3.3277378 -1103.197
+149967.2623796209 3.3278558 -1103.1576
+149968.2623797252 3.3277378 -1103.197
+149969.2623798295 3.3276589 -1103.2366
+149970.2623799338 3.3278558 -1103.3156
+149971.2623800382 3.3276589 -1103.2366
+149972.2623801425 3.3277771 -1103.3551
+149973.2623802468 3.3276589 -1103.197
+149974.2623803511 3.3276196 -1103.2761
+149975.2623804554 3.3277378 -1103.197
+149976.2623805597 3.3277771 -1103.2562
+149977.262380664 3.3277771 -1103.2168
+149978.2623807683 3.3276589 -1103.2562
+149979.2623808726 3.3277771 -1103.2562
+149980.2623809769 3.3276589 -1103.2168
+149981.2623810812 3.3276196 -1103.2366
+149982.2623811855 3.3275802 -1103.1774
+149983.2623812899 3.3275802 -1103.3156
+149984.2623813942 3.3276589 -1103.1774
+149985.2623814985 3.3274622 -1103.1774
+149986.2623816028 3.3275015 -1103.2761
+149987.2623817071 3.3273833 -1103.1378
+149988.2623818114 3.3273833 -1103.1576
+149989.2623819157 3.3273833 -1103.2562
+149990.26238202 3.3272259 -1103.2562
+149991.2623821243 3.3272653 -1103.1774
+149992.2623822286 3.3272653 -1103.197
+149993.2623823329 3.3271079 -1103.2562
+149994.2623824372 3.3271472 -1103.2168
+149995.2623825416 3.3271472 -1103.1774
+149996.2623826459 3.3271472 -1103.1576
+149997.2623827502 3.3271472 -1103.2168
+149998.2623828545 3.3271472 -1103.197
+149999.2623829588 3.327029 -1103.2959
+150000.2623830631 3.327029 -1103.2761
+150001.2623831674 3.3271079 -1103.1774
+150002.2623832717 3.3271472 -1103.2761
+150003.262383376 3.3272259 -1103.2168
+150004.2623834803 3.3271472 -1103.2959
+150005.2623835846 3.3271079 -1103.2562
+150006.2623836889 3.3271866 -1103.1774
+150007.2623837932 3.3272259 -1103.3156
+150008.2623838976 3.3271866 -1103.1774
+150009.2623840019 3.3271079 -1103.2366
+150010.2623841062 3.3270683 -1103.2168
+150011.2623842105 3.327029 -1103.1576
+150012.2623843148 3.3271079 -1103.1774
+150013.2623844191 3.3271079 -1103.2562
+150014.2623845234 3.326911 -1103.1774
+150015.2623846277 3.3268323 -1103.2366
+150016.262384732 3.3267927 -1103.197
+150017.2623848363 3.3268716 -1103.1576
+150018.2623849406 3.3267927 -1103.1576
+150019.2623850449 3.3266747 -1103.2366
+150020.2623851493 3.326596 -1103.2168
+150021.2623852536 3.3266747 -1103.2761
+150022.2623853579 3.326596 -1103.1576
+150023.2623854622 3.3267534 -1103.197
+150024.2623855665 3.3265173 -1103.1774
+150025.2623856708 3.3266354 -1103.3156
+150026.2623857751 3.3266747 -1103.197
+150027.2623858794 3.3267534 -1103.2959
+150028.2623859837 3.326714 -1103.2366
+150029.262386088 3.326596 -1103.2959
+150030.2623861923 3.326596 -1103.2562
+150031.2623862966 3.3266747 -1103.2761
+150032.262386401 3.326714 -1103.2562
+150033.2623865053 3.3267534 -1103.2168
+150034.2623866096 3.326714 -1103.2168
+150035.2623867139 3.326714 -1103.1576
+150036.2623868182 3.3266354 -1103.2366
+150037.2623869225 3.326596 -1103.1378
+150038.2623870268 3.3266747 -1103.1378
+150039.2623871311 3.3265567 -1103.197
+150040.2623872354 3.3265173 -1103.2959
+150041.2623873397 3.3266354 -1103.2562
+150042.262387444 3.3264778 -1103.2168
+150043.2623875483 3.3263991 -1103.1378
+150044.2623876526 3.3264384 -1103.2761
+150045.262387757 3.3263991 -1103.3353
+150046.2623878613 3.3262811 -1103.197
+150047.2623879656 3.3263204 -1103.1774
+150048.2623880699 3.3262417 -1103.2959
+150049.2623881742 3.3262417 -1103.2366
+150050.2623882785 3.3260841 -1103.1576
+150051.2623883828 3.3262417 -1103.197
+150052.2623884871 3.3262811 -1103.197
+150053.2623885914 3.3261628 -1103.1576
+150054.2623886957 3.3261628 -1103.1774
+150055.2623888 3.3262417 -1103.2562
+150056.2623889043 3.3262811 -1103.2366
+150057.2623890087 3.3262024 -1103.2959
+150058.262389113 3.3262417 -1103.3156
+150059.2623892173 3.3262417 -1103.2366
+150060.2623893216 3.3263204 -1103.2562
+150061.2623894259 3.3262811 -1103.197
+150062.2623895302 3.3262811 -1103.2366
+150063.2623896345 3.3262417 -1103.1576
+150064.2623897388 3.3262417 -1103.2761
+150065.2623898431 3.3262024 -1103.2168
+150066.2623899474 3.3262811 -1103.1774
+150067.2623900517 3.3261628 -1103.2959
+150068.262390156 3.3261628 -1103.2168
+150069.2623902604 3.3262024 -1103.1774
+150070.2623903647 3.3261628 -1103.2562
+150071.262390469 3.3262811 -1103.197
+150072.2623905733 3.3262024 -1103.2366
+150073.2623906776 3.3261235 -1103.2562
+150074.2623907819 3.3260448 -1103.2366
+150075.2623908862 3.3262024 -1103.2366
+150076.2623909905 3.3261628 -1103.2761
+150077.2623910948 3.3261235 -1103.2562
+150078.2623911991 3.3260448 -1103.2562
+150079.2623913034 3.3259661 -1103.197
+150080.2623914077 3.3258874 -1103.1576
+150081.262391512 3.3259268 -1103.2562
+150082.2623916164 3.3259268 -1103.2562
+150083.2623917207 3.3258085 -1103.3156
+150084.262391825 3.3257692 -1103.1576
+150085.2623919293 3.3257692 -1103.2366
+150086.2623920336 3.3256512 -1103.2366
+150087.2623921379 3.3256905 -1103.197
+150088.2623922422 3.3256118 -1103.1774
+150089.2623923465 3.3256512 -1103.2562
+150090.2623924508 3.3256512 -1103.2562
+150091.2623925551 3.3255329 -1103.1774
+150092.2623926594 3.3255725 -1103.2366
+150093.2623927637 3.3255725 -1103.2366
+150094.2623928681 3.3255329 -1103.2168
+150095.2623929724 3.3255725 -1103.2168
+150096.2623930767 3.3253362 -1103.2562
+150097.262393181 3.3255725 -1103.2366
+150098.2623932853 3.3254936 -1103.2366
+150099.2623933896 3.3255329 -1103.2168
+150100.2623934939 3.3254149 -1103.2562
+150101.2623935982 3.3256118 -1103.197
+150102.2623937025 3.3254936 -1103.2168
+150103.2623938068 3.3256118 -1103.3156
+150104.2623939111 3.3254542 -1103.2168
+150105.2623940154 3.3254149 -1103.2562
+150106.2623941198 3.3254542 -1103.3156
+150107.2623942241 3.3254936 -1103.0984
+150108.2623943284 3.3254149 -1103.2562
+150109.2623944327 3.3253756 -1103.2366
+150110.262394537 3.3252573 -1103.1378
+150111.2623946413 3.3253756 -1103.197
+150112.2623947456 3.3253362 -1103.1774
+150113.2623948499 3.3252573 -1103.2168
+150114.2623949542 3.3251786 -1103.197
+150115.2623950585 3.325218 -1103.2168
+150116.2623951628 3.325218 -1103.2761
+150117.2623952671 3.325218 -1103.1774
+150118.2623953715 3.3251786 -1103.2761
+150119.2623954758 3.325218 -1103.1576
+150120.2623955801 3.3251786 -1103.2761
+150121.2623956844 3.3251786 -1103.2761
+150122.2623957887 3.325218 -1103.2168
+150123.262395893 3.325218 -1103.197
+150124.2623959973 3.3251786 -1103.2562
+150125.2623961016 3.3252573 -1103.2562
+150126.2623962059 3.325218 -1103.2761
+150127.2623963102 3.325218 -1103.2168
+150128.2623964145 3.325218 -1103.197
+150129.2623965188 3.325218 -1103.197
+150130.2623966231 3.325218 -1103.2366
+150131.2623967275 3.3251393 -1103.2366
+150132.2623968318 3.325218 -1103.197
+150133.2623969361 3.3251786 -1103.197
+150134.2623970404 3.3251393 -1103.197
+150135.2623971447 3.3250999 -1103.2562
+150136.262397249 3.3249819 -1103.197
+150137.2623973533 3.3250213 -1103.2959
+150138.2623974576 3.3249819 -1103.1774
+150139.2623975619 3.3250213 -1103.2562
+150140.2623976662 3.324903 -1103.2959
+150141.2623977705 3.3249424 -1103.197
+150142.2623978748 3.324903 -1103.2168
+150143.2623979792 3.3248243 -1103.2761
+150144.2623980835 3.3248637 -1103.197
+150145.2623981878 3.3248243 -1103.2562
+150146.2623982921 3.3247063 -1103.3353
+150147.2623983964 3.3247457 -1103.2562
+150148.2623985007 3.324667 -1103.2959
+150149.262398605 3.3247063 -1103.2959
+150150.2623987093 3.3247457 -1103.2959
+150151.2623988136 3.3247457 -1103.2562
+150152.2623989179 3.324785 -1103.197
+150153.2623990222 3.3248637 -1103.3156
+150154.2623991265 3.3248243 -1103.1774
+150155.2623992309 3.324785 -1103.3353
+150156.2623993352 3.324785 -1103.2959
+150157.2623994395 3.324903 -1103.3156
+150158.2623995438 3.3245881 -1103.1182
+150159.2623996481 3.324667 -1103.2168
+150160.2623997524 3.3245881 -1103.1576
+150161.2623998567 3.3247457 -1103.2168
+150162.262399961 3.3247063 -1103.1182
+150163.2624000653 3.3247063 -1103.2761
+150164.2624001696 3.324667 -1103.2366
+150165.2624002739 3.3247063 -1103.2168
+150166.2624003782 3.324667 -1103.2562
+150167.2624004825 3.324667 -1103.1576
+150168.2624005869 3.3245881 -1103.2168
+150169.2624006912 3.3245487 -1103.197
+150170.2624007955 3.3245487 -1103.2959
+150171.2624008998 3.3245487 -1103.1774
+150172.2624010041 3.32447 -1103.197
+150173.2624011084 3.3245094 -1103.2562
+150174.2624012127 3.3245487 -1103.1576
+150175.262401317 3.32447 -1103.1378
+150176.2624014213 3.32447 -1103.2562
+150177.2624015256 3.324352 -1103.2366
+150178.2624016299 3.3243124 -1103.2761
+150179.2624017342 3.324352 -1103.2366
+150180.2624018386 3.3242338 -1103.1774
+150181.2624019429 3.3241944 -1103.1182
+150182.2624020472 3.3241158 -1103.2168
+150183.2624021515 3.3241158 -1103.2959
+150184.2624022558 3.3241551 -1103.2959
+150185.2624023601 3.3241158 -1103.2562
+150186.2624024644 3.3240764 -1103.197
+150187.2624025687 3.3239582 -1103.1774
+150188.262402673 3.3239975 -1103.3551
+150189.2624027773 3.3239188 -1103.2761
+150190.2624028816 3.3237615 -1103.2366
+150191.2624029859 3.3237615 -1103.1378
+150192.2624030903 3.3237615 -1103.2168
+150193.2624031946 3.3237615 -1103.2168
+150194.2624032989 3.3238008 -1103.2761
+150195.2624034032 3.3236432 -1103.1576
+150196.2624035075 3.3236039 -1103.2168
+150197.2624036118 3.3236825 -1103.2168
+150198.2624037161 3.3235252 -1103.197
+150199.2624038204 3.3235252 -1103.2366
+150200.2624039247 3.3235645 -1103.197
+150201.262404029 3.3234465 -1103.2366
+150202.2624041333 3.3232889 -1103.2366
+150203.2624042376 3.3232889 -1103.1774
+150204.2624043419 3.3231316 -1103.2366
+150205.2624044463 3.3232102 -1103.2761
+150206.2624045506 3.323092 -1103.197
+150207.2624046549 3.3228953 -1103.2366
+150208.2624047592 3.3230133 -1103.197
+150209.2624048635 3.3228166 -1103.2562
+150210.2624049678 3.3228953 -1103.2761
+150211.2624050721 3.322777 -1103.2761
+150212.2624051764 3.3227377 -1103.2562
+150213.2624052807 3.3226984 -1103.2168
+150214.262405385 3.3225803 -1103.2562
+150215.2624054893 3.3225803 -1103.3156
+150216.2624055936 3.3226197 -1103.197
+150217.262405698 3.3225017 -1103.2168
+150218.2624058023 3.3225803 -1103.1774
+150219.2624059066 3.3223834 -1103.3156
+150220.2624060109 3.3225017 -1103.2366
+150221.2624061152 3.3224621 -1103.2366
+150222.2624062195 3.3226197 -1103.2366
+150223.2624063238 3.3224227 -1103.1774
+150224.2624064281 3.3223834 -1103.2761
+150225.2624065324 3.3224621 -1103.2168
+150226.2624066367 3.3224227 -1103.2761
+150227.262406741 3.3224621 -1103.197
+150228.2624068453 3.3224227 -1103.2168
+150229.2624069497 3.3223834 -1103.2366
+150230.262407054 3.3224227 -1103.197
+150231.2624071583 3.3223834 -1103.3353
+150232.2624072626 3.3224227 -1103.2366
+150233.2624073669 3.3223834 -1103.2959
+150234.2624074712 3.3223047 -1103.2168
+150235.2624075755 3.3223047 -1103.1774
+150236.2624076798 3.3221867 -1103.2168
+150237.2624077841 3.3221078 -1103.2168
+150238.2624078884 3.3221078 -1103.197
+150239.2624079927 3.3220685 -1103.2562
+150240.262408097 3.3219504 -1103.197
+150241.2624082014 3.3220685 -1103.2761
+150242.2624083057 3.3220291 -1103.1774
+150243.26240841 3.3220685 -1103.2168
+150244.2624085143 3.3219504 -1103.2959
+150245.2624086186 3.3219111 -1103.2168
+150246.2624087229 3.3219111 -1103.197
+150247.2624088272 3.3218718 -1103.1774
+150248.2624089315 3.3218322 -1103.2761
+150249.2624090358 3.3219111 -1103.3353
+150250.2624091401 3.3218718 -1103.2366
+150251.2624092444 3.3218322 -1103.197
+150252.2624093487 3.3219111 -1103.2168
+150253.262409453 3.3218718 -1103.2562
+150254.2624095574 3.3217928 -1103.197
+150255.2624096617 3.3217142 -1103.2168
+150256.262409766 3.3216355 -1103.1576
+150257.2624098703 3.3215566 -1103.2562
+150258.2624099746 3.3215961 -1103.197
+150259.2624100789 3.3214779 -1103.2168
+150260.2624101832 3.3215172 -1103.2562
+150261.2624102875 3.3214779 -1103.2562
+150262.2624103918 3.3215566 -1103.1774
+150263.2624104961 3.3217142 -1103.2168
+150264.2624106004 3.3215961 -1103.2366
+150265.2624107047 3.3215961 -1103.2168
+150266.2624108091 3.3217142 -1103.197
+150267.2624109134 3.3217928 -1103.197
+150268.2624110177 3.3216748 -1103.1774
+150269.262411122 3.3217928 -1103.2168
+150270.2624112263 3.3217535 -1103.197
+150271.2624113306 3.3216748 -1103.2366
+150272.2624114349 3.3217928 -1103.197
+150273.2624115392 3.3217142 -1103.2168
+150274.2624116435 3.3216748 -1103.197
+150275.2624117478 3.3215961 -1103.1576
+150276.2624118521 3.3215172 -1103.2562
+150277.2624119564 3.3215172 -1103.1774
+150278.2624120608 3.3215566 -1103.2761
+150279.2624121651 3.3215566 -1103.197
+150280.2624122694 3.3214386 -1103.3156
+150281.2624123737 3.3214779 -1103.1378
+150282.262412478 3.3213992 -1103.1576
+150283.2624125823 3.3213205 -1103.197
+150284.2624126866 3.3213992 -1103.3156
+150285.2624127909 3.3212416 -1103.3156
+150286.2624128952 3.3212812 -1103.1378
+150287.2624129995 3.3213205 -1103.2366
+150288.2624131038 3.3212812 -1103.2959
+150289.2624132081 3.3212416 -1103.2366
+150290.2624133124 3.3212416 -1103.2761
+150291.2624134168 3.3213205 -1103.3156
+150292.2624135211 3.3211629 -1103.2761
+150293.2624136254 3.3211629 -1103.2168
+150294.2624137297 3.3211236 -1103.1576
+150295.262413834 3.3211629 -1103.197
+150296.2624139383 3.3211629 -1103.2366
+150297.2624140426 3.3211236 -1103.2366
+150298.2624141469 3.3210843 -1103.2761
+150299.2624142512 3.3211236 -1103.1576
+150300.2624143555 3.3210843 -1103.2366
+150301.2624144598 3.3210843 -1103.1774
+150302.2624145641 3.3210449 -1103.2168
+150303.2624146685 3.3210056 -1103.2366
+150304.2624147728 3.3208873 -1103.1378
+150305.2624148771 3.3209662 -1103.2366
+150306.2624149814 3.3208873 -1103.2366
+150307.2624150857 3.3208873 -1103.2761
+150308.26241519 3.3209662 -1103.2366
+150309.2624152943 3.320848 -1103.2366
+150310.2624153986 3.320848 -1103.2562
+150311.2624155029 3.320848 -1103.197
+150312.2624156072 3.3207693 -1103.2168
+150313.2624157115 3.32073 -1103.1774
+150314.2624158158 3.320848 -1103.2168
+150315.2624159202 3.3206906 -1103.1576
+150316.2624160245 3.3207693 -1103.2562
+150317.2624161288 3.3206513 -1103.2168
+150318.2624162331 3.3206906 -1103.2562
+150319.2624163374 3.3206117 -1103.2168
+150320.2624164417 3.3206117 -1103.1378
+150321.262416546 3.3206117 -1103.2168
+150322.2624166503 3.3205724 -1103.1576
+150323.2624167546 3.320533 -1103.2366
+150324.2624168589 3.320415 -1103.1576
+150325.2624169632 3.3205724 -1103.2761
+150326.2624170675 3.3204937 -1103.1774
+150327.2624171718 3.3203757 -1103.2366
+150328.2624172762 3.3204544 -1103.2562
+150329.2624173805 3.3203757 -1103.197
+150330.2624174848 3.3202968 -1103.2562
+150331.2624175891 3.3203363 -1103.1576
+150332.2624176934 3.3202574 -1103.2168
+150333.2624177977 3.3202968 -1103.2366
+150334.262417902 3.3202181 -1103.2366
+150335.2624180063 3.3202181 -1103.2168
+150336.2624181106 3.3202574 -1103.2959
+150337.2624182149 3.3202181 -1103.2562
+150338.2624183192 3.3199425 -1103.2959
+150339.2624184235 3.3200214 -1103.2366
+150340.2624185279 3.3199818 -1103.197
+150341.2624186322 3.3200214 -1103.2562
+150342.2624187365 3.3198245 -1103.2366
+150343.2624188408 3.3197062 -1103.2168
+150344.2624189451 3.3195882 -1103.2959
+150345.2624190494 3.3195488 -1103.1378
+150346.2624191537 3.3195488 -1103.2168
+150347.262419258 3.3194702 -1103.2562
+150348.2624193623 3.3193913 -1103.1774
+150349.2624194666 3.3193913 -1103.1576
+150350.2624195709 3.3192732 -1103.2562
+150351.2624196752 3.3191159 -1103.1774
+150352.2624197796 3.3191159 -1103.2168
+150353.2624198839 3.3191159 -1103.2959
+150354.2624199882 3.3189976 -1103.2761
+150355.2624200925 3.319037 -1103.2366
+150356.2624201968 3.3189976 -1103.2562
+150357.2624203011 3.3189976 -1103.2168
+150358.2624204054 3.3189976 -1103.2168
+150359.2624205097 3.3188403 -1103.1576
+150360.262420614 3.3187613 -1103.2168
+150361.2624207183 3.3189189 -1103.2761
+150362.2624208226 3.3187613 -1103.197
+150363.2624209269 3.318722 -1103.1576
+150364.2624210313 3.3186827 -1103.2366
+150365.2624211356 3.318722 -1103.2761
+150366.2624212399 3.318604 -1103.1774
+150367.2624213442 3.3185253 -1103.1378
+150368.2624214485 3.3186433 -1103.2168
+150369.2624215528 3.3185647 -1103.2168
+150370.2624216571 3.3185253 -1103.1576
+150371.2624217614 3.3186433 -1103.2562
+150372.2624218657 3.318486 -1103.2366
+150373.26242197 3.3184464 -1103.1774
+150374.2624220743 3.3185647 -1103.1774
+150375.2624221786 3.3184464 -1103.1774
+150376.2624222829 3.3185253 -1103.2168
+150377.2624223873 3.318486 -1103.2366
+150378.2624224916 3.318486 -1103.1576
+150379.2624225959 3.3183677 -1103.2562
+150380.2624227002 3.3184071 -1103.1774
+150381.2624228045 3.318486 -1103.1774
+150382.2624229088 3.3183677 -1103.2562
+150383.2624230131 3.3184071 -1103.3353
+150384.2624231174 3.3184071 -1103.2761
+150385.2624232217 3.3184071 -1103.3156
+150386.262423326 3.3182497 -1103.1378
+150387.2624234303 3.318289 -1103.2562
+150388.2624235346 3.318289 -1103.197
+150389.262423639 3.3182497 -1103.2562
+150390.2624237433 3.3182497 -1103.2761
+150391.2624238476 3.318171 -1103.197
+150392.2624239519 3.3182104 -1103.1576
+150393.2624240562 3.3180921 -1103.1774
+150394.2624241605 3.3180134 -1103.2168
+150395.2624242648 3.3180528 -1103.0984
+150396.2624243691 3.3180134 -1103.1182
+150397.2624244734 3.3179348 -1103.197
+150398.2624245777 3.3178558 -1103.2168
+150399.262424682 3.3178558 -1103.197
+150400.2624247863 3.3178558 -1103.2168
+150401.2624248907 3.3176591 -1103.2562
+150402.262424995 3.3176591 -1103.2366
+150403.2624250993 3.3175805 -1103.197
+150404.2624252036 3.3175409 -1103.2562
+150405.2624253079 3.3175015 -1103.2959
+150406.2624254122 3.3174229 -1103.3353
+150407.2624255165 3.3174622 -1103.2168
+150408.2624256208 3.3174229 -1103.2959
+150409.2624257251 3.3173835 -1103.3353
+150410.2624258294 3.3173048 -1103.2562
+150411.2624259337 3.3172259 -1103.2562
+150412.262426038 3.3171866 -1103.1378
+150413.2624261423 3.3171079 -1103.2168
+150414.2624262467 3.3171866 -1103.197
+150415.262426351 3.3171866 -1103.2366
+150416.2624264553 3.3171079 -1103.197
+150417.2624265596 3.3171079 -1103.2366
+150418.2624266639 3.3170292 -1103.2761
+150419.2624267682 3.316911 -1103.197
+150420.2624268725 3.316911 -1103.2761
+150421.2624269768 3.3168323 -1103.197
+150422.2624270811 3.3166749 -1103.2959
+150423.2624271854 3.3166749 -1103.197
+150424.2624272897 3.3165567 -1103.1774
+150425.262427394 3.3164387 -1103.2959
+150426.2624274984 3.3165567 -1103.2562
+150427.2624276027 3.3162811 -1103.2959
+150428.262427707 3.316478 -1103.2761
+150429.2624278113 3.3163204 -1103.1774
+150430.2624279156 3.3164387 -1103.2168
+150431.2624280199 3.31636 -1103.2366
+150432.2624281242 3.31636 -1103.197
+150433.2624282285 3.3163204 -1103.2168
+150434.2624283328 3.3162417 -1103.1774
+150435.2624284371 3.3161631 -1103.1576
+150436.2624285414 3.316045 -1103.2959
+150437.2624286457 3.3161237 -1103.2168
+150438.2624287501 3.3159661 -1103.2168
+150439.2624288544 3.3159661 -1103.1378
+150440.2624289587 3.3158088 -1103.2366
+150441.262429063 3.3157301 -1103.1774
+150442.2624291673 3.3157694 -1103.2366
+150443.2624292716 3.3156512 -1103.2168
+150444.2624293759 3.3156118 -1103.2168
+150445.2624294802 3.3156118 -1103.1774
+150446.2624295845 3.3155332 -1103.2366
+150447.2624296888 3.3155332 -1103.2761
+150448.2624297931 3.3154545 -1103.1774
+150449.2624298974 3.3154545 -1103.1774
+150450.2624300017 3.3154151 -1103.1378
+150451.2624301061 3.3154938 -1103.2959
+150452.2624302104 3.3153362 -1103.197
+150453.2624303147 3.3153756 -1103.1774
+150454.262430419 3.3153362 -1103.2562
+150455.2624305233 3.3154151 -1103.1576
+150456.2624306276 3.3152575 -1103.2959
+150457.2624307319 3.3152969 -1103.1378
+150458.2624308362 3.3152575 -1103.1774
+150459.2624309405 3.3151395 -1103.1774
+150460.2624310448 3.3151002 -1103.2168
+150461.2624311491 3.3151395 -1103.2562
+150462.2624312534 3.3149819 -1103.197
+150463.2624313578 3.3150606 -1103.2168
+150464.2624314621 3.3149426 -1103.2562
+150465.2624315664 3.3148639 -1103.197
+150466.2624316707 3.3149033 -1103.197
+150467.262431775 3.3149033 -1103.2168
+150468.2624318793 3.3147457 -1103.2562
+150469.2624319836 3.3148246 -1103.1576
+150470.2624320879 3.3147063 -1103.1774
+150471.2624321922 3.314667 -1103.2366
+150472.2624322965 3.3147063 -1103.1774
+150473.2624324008 3.3147457 -1103.2562
+150474.2624325051 3.314549 -1103.2168
+150475.2624326095 3.314549 -1103.2562
+150476.2624327138 3.3145096 -1103.0785
+150477.2624328181 3.3145096 -1103.1576
+150478.2624329224 3.3143914 -1103.2562
+150479.2624330267 3.314352 -1103.2168
+150480.262433131 3.3143914 -1103.2366
+150481.2624332353 3.3143914 -1103.2562
+150482.2624333396 3.3144701 -1103.2168
+150483.2624334439 3.3143914 -1103.2366
+150484.2624335482 3.3143127 -1103.2168
+150485.2624336525 3.3142734 -1103.1576
+150486.2624337568 3.3141551 -1103.2366
+150487.2624338611 3.3141158 -1103.2366
+150488.2624339655 3.3141158 -1103.2761
+150489.2624340698 3.3141158 -1103.2366
+150490.2624341741 3.3139584 -1103.2366
+150491.2624342784 3.3139191 -1103.1774
+150492.2624343827 3.3137615 -1103.2168
+150493.262434487 3.3138797 -1103.2168
+150494.2624345913 3.3136828 -1103.197
+150495.2624346956 3.3136435 -1103.1576
+150496.2624347999 3.3136828 -1103.1774
+150497.2624349042 3.3136435 -1103.2761
+150498.2624350085 3.3137221 -1103.2761
+150499.2624351128 3.3136828 -1103.2366
+150500.2624352172 3.3135648 -1103.1774
+150501.2624353215 3.3134072 -1103.2366
+150502.2624354258 3.3134859 -1103.1182
+150503.2624355301 3.3134072 -1103.2562
+150504.2624356344 3.3132892 -1103.2366
+150505.2624357387 3.3133678 -1103.2562
+150506.262435843 3.3132498 -1103.1774
+150507.2624359473 3.3130922 -1103.197
+150508.2624360516 3.3129742 -1103.2366
+150509.2624361559 3.3129742 -1103.1774
+150510.2624362602 3.3127773 -1103.2366
+150511.2624363645 3.3126197 -1103.2761
+150512.2624364689 3.3126197 -1103.2959
+150513.2624365732 3.312541 -1103.1774
+150514.2624366775 3.312423 -1103.2959
+150515.2624367818 3.312423 -1103.2168
+150516.2624368861 3.3123837 -1103.2168
+150517.2624369904 3.3122654 -1103.2168
+150518.2624370947 3.3121867 -1103.2366
+150519.262437199 3.312108 -1103.1576
+150520.2624373033 3.3120687 -1103.2168
+150521.2624374076 3.3119111 -1103.1182
+150522.2624375119 3.3121474 -1103.1774
+150523.2624376162 3.3119898 -1103.2366
+150524.2624377206 3.3119898 -1103.197
+150525.2624378249 3.3118324 -1103.2562
+150526.2624379292 3.3117537 -1103.2168
+150527.2624380335 3.3117144 -1103.1378
+150528.2624381378 3.3115962 -1103.197
+150529.2624382421 3.3113995 -1103.1774
+150530.2624383464 3.3112812 -1103.1182
+150531.2624384507 3.3112419 -1103.1774
+150532.262438555 3.3111238 -1103.2168
+150533.2624386593 3.3110845 -1103.2168
+150534.2624387636 3.3110056 -1103.3353
+150535.2624388679 3.3110056 -1103.2366
+150536.2624389722 3.3108876 -1103.197
+150537.2624390766 3.3108089 -1103.197
+150538.2624391809 3.3108876 -1103.2366
+150539.2624392852 3.3107693 -1103.2366
+150540.2624393895 3.3108089 -1103.2366
+150541.2624394938 3.3109269 -1103.2168
+150542.2624395981 3.3108876 -1103.1774
+150543.2624397024 3.3108089 -1103.3353
+150544.2624398067 3.3108482 -1103.1378
+150545.262439911 3.31073 -1103.197
+150546.2624400153 3.3106513 -1103.2168
+150547.2624401196 3.3106906 -1103.2168
+150548.2624402239 3.310612 -1103.3156
+150549.2624403283 3.3106513 -1103.1774
+150550.2624404326 3.3105333 -1103.1774
+150551.2624405369 3.3105726 -1103.197
+150552.2624406412 3.3105333 -1103.2168
+150553.2624407455 3.3105333 -1103.2761
+150554.2624408498 3.3104939 -1103.2366
+150555.2624409541 3.3105333 -1103.2168
+150556.2624410584 3.3104544 -1103.197
+150557.2624411627 3.3104939 -1103.2562
+150558.262441267 3.3105333 -1103.2168
+150559.2624413713 3.3105333 -1103.1774
+150560.2624414756 3.310612 -1103.2761
+150561.26244158 3.3104544 -1103.197
+150562.2624416843 3.3104544 -1103.2761
+150563.2624417886 3.3104939 -1103.1774
+150564.2624418929 3.310415 -1103.2562
+150565.2624419972 3.3104544 -1103.197
+150566.2624421015 3.310297 -1103.1774
+150567.2624422058 3.310297 -1103.1774
+150568.2624423101 3.3102577 -1103.1774
+150569.2624424144 3.3102183 -1103.2562
+150570.2624425187 3.310179 -1103.2562
+150571.262442623 3.3102183 -1103.2761
+150572.2624427273 3.3101001 -1103.0984
+150573.2624428316 3.310179 -1103.2366
+150574.262442936 3.3100214 -1103.3156
+150575.2624430403 3.3099821 -1103.3156
+150576.2624431446 3.3099821 -1103.2168
+150577.2624432489 3.309864 -1103.2366
+150578.2624433532 3.3099034 -1103.1774
+150579.2624434575 3.3099427 -1103.1774
+150580.2624435618 3.3098245 -1103.197
+150581.2624436661 3.3097458 -1103.2168
+150582.2624437704 3.3097851 -1103.2761
+150583.2624438747 3.3095884 -1103.1576
+150584.262443979 3.3094702 -1103.2366
+150585.2624440833 3.3095491 -1103.197
+150586.2624441877 3.3095095 -1103.2366
+150587.262444292 3.3095491 -1103.2168
+150588.2624443963 3.3094702 -1103.1378
+150589.2624445006 3.3094702 -1103.2562
+150590.2624446049 3.3094702 -1103.2562
+150591.2624447092 3.3093128 -1103.1378
+150592.2624448135 3.3093128 -1103.1576
+150593.2624449178 3.3092735 -1103.2168
+150594.2624450221 3.3092735 -1103.1576
+150595.2624451264 3.3093128 -1103.197
+150596.2624452307 3.3091946 -1103.2366
+150597.262445335 3.3091159 -1103.2168
+150598.2624454394 3.3091552 -1103.1378
+150599.2624455437 3.3090765 -1103.3156
+150600.262445648 3.3089979 -1103.2366
+150601.2624457523 3.308919 -1103.2168
+150602.2624458566 3.3088796 -1103.1378
+150603.2624459609 3.3088796 -1103.2366
+150604.2624460652 3.3085647 -1103.2562
+150605.2624461695 3.3086436 -1103.2168
+150606.2624462738 3.3084466 -1103.2168
+150607.2624463781 3.3084466 -1103.2562
+150608.2624464824 3.3082891 -1103.2959
+150609.2624465867 3.3082891 -1103.2168
+150610.262446691 3.3082497 -1103.2562
+150611.2624467954 3.3082104 -1103.2366
+150612.2624468997 3.3080924 -1103.1774
+150613.262447004 3.308053 -1103.2761
+150614.2624471083 3.3080137 -1103.2366
+150615.2624472126 3.3078954 -1103.1774
+150616.2624473169 3.3078954 -1103.2761
+150617.2624474212 3.3077774 -1103.2562
+150618.2624475255 3.3078561 -1103.3551
+150619.2624476298 3.3078167 -1103.197
+150620.2624477341 3.3076198 -1103.1576
+150621.2624478384 3.3076987 -1103.2562
+150622.2624479427 3.3075805 -1103.2168
+150623.2624480471 3.3075018 -1103.2168
+150624.2624481514 3.3076591 -1103.1774
+150625.2624482557 3.3074231 -1103.2959
+150626.26244836 3.3073838 -1103.2562
+150627.2624484643 3.3074625 -1103.197
+150628.2624485686 3.3074625 -1103.2366
+150629.2624486729 3.3073442 -1103.1576
+150630.2624487772 3.3072655 -1103.197
+150631.2624488815 3.3071868 -1103.2959
+150632.2624489858 3.3070292 -1103.3156
+150633.2624490901 3.3070686 -1103.2959
+150634.2624491944 3.3070292 -1103.2168
+150635.2624492988 3.3069112 -1103.2168
+150636.2624494031 3.3068719 -1103.2366
+150637.2624495074 3.3068326 -1103.1182
+150638.2624496117 3.306675 -1103.2959
+150639.262449716 3.3067143 -1103.2168
+150640.2624498203 3.3067143 -1103.2366
+150641.2624499246 3.306675 -1103.2761
+150642.2624500289 3.3065963 -1103.2168
+150643.2624501332 3.3065963 -1103.197
+150644.2624502375 3.3064783 -1103.1774
+150645.2624503418 3.3063993 -1103.197
+150646.2624504461 3.3063207 -1103.2366
+150647.2624505505 3.3063993 -1103.2366
+150648.2624506548 3.3063207 -1103.2168
+150649.2624507591 3.30636 -1103.2168
+150650.2624508634 3.3063207 -1103.1576
+150651.2624509677 3.3062027 -1103.2761
+150652.262451072 3.3060844 -1103.1774
+150653.2624511763 3.3061633 -1103.2168
+150654.2624512806 3.3059664 -1103.2366
+150655.2624513849 3.3059664 -1103.2562
+150656.2624514892 3.3060057 -1103.2761
+150657.2624515935 3.3059664 -1103.0984
+150658.2624516978 3.305927 -1103.2562
+150659.2624518021 3.3057694 -1103.197
+150660.2624519065 3.3058484 -1103.2562
+150661.2624520108 3.3057301 -1103.2761
+150662.2624521151 3.3056514 -1103.1378
+150663.2624522194 3.3056908 -1103.2168
+150664.2624523237 3.3054938 -1103.197
+150665.262452428 3.3054938 -1103.197
+150666.2624525323 3.3053758 -1103.197
+150667.2624526366 3.3054938 -1103.2761
+150668.2624527409 3.3055332 -1103.3353
+150669.2624528452 3.3054152 -1103.2959
+150670.2624529495 3.3053758 -1103.2168
+150671.2624530538 3.3055332 -1103.1774
+150672.2624531582 3.3054938 -1103.3156
+150673.2624532625 3.3053365 -1103.1774
+150674.2624533668 3.3054545 -1103.1378
+150675.2624534711 3.3052578 -1103.1774
+150676.2624535754 3.3052182 -1103.2761
+150677.2624536797 3.3050215 -1103.2168
+150678.262453784 3.3051002 -1103.2366
+150679.2624538883 3.3049822 -1103.2366
+150680.2624539926 3.3050215 -1103.2168
+150681.2624540969 3.3050215 -1103.2168
+150682.2624542012 3.3049822 -1103.1774
+150683.2624543055 3.3048639 -1103.1576
+150684.2624544099 3.3049033 -1103.197
+150685.2624545142 3.3047459 -1103.2366
+150686.2624546185 3.304549 -1103.2168
+150687.2624547228 3.3045883 -1103.1378
+150688.2624548271 3.3045096 -1103.197
+150689.2624549314 3.304431 -1103.2366
+150690.2624550357 3.3043916 -1103.2366
+150691.26245514 3.3043129 -1103.1182
+150692.2624552443 3.304234 -1103.2168
+150693.2624553486 3.304234 -1103.197
+150694.2624554529 3.3043129 -1103.2168
+150695.2624555572 3.3042734 -1103.2366
+150696.2624556615 3.304234 -1103.1576
+150697.2624557659 3.3042734 -1103.2366
+150698.2624558702 3.3041947 -1103.2168
+150699.2624559745 3.304234 -1103.2959
+150700.2624560788 3.304116 -1103.197
+150701.2624561831 3.303998 -1103.2761
+150702.2624562874 3.304116 -1103.2562
+150703.2624563917 3.304116 -1103.2366
+150704.262456496 3.304116 -1103.1378
+150705.2624566003 3.3040767 -1103.1576
+150706.2624567046 3.304116 -1103.1576
+150707.2624568089 3.3041947 -1103.2562
+150708.2624569132 3.304116 -1103.2366
+150709.2624570176 3.3041553 -1103.1774
+150710.2624571219 3.3041553 -1103.1182
+150711.2624572262 3.3040767 -1103.1774
+150712.2624573305 3.3040373 -1103.2168
+150713.2624574348 3.3040767 -1103.2366
+150714.2624575391 3.3038797 -1103.2761
+150715.2624576434 3.3038404 -1103.2168
+150716.2624577477 3.3038797 -1103.2366
+150717.262457852 3.3039191 -1103.197
+150718.2624579563 3.3039191 -1103.2366
+150719.2624580606 3.3039191 -1103.197
+150720.2624581649 3.3038011 -1103.2562
+150721.2624582693 3.3038797 -1103.2366
+150722.2624583736 3.3039191 -1103.2562
+150723.2624584779 3.3039191 -1103.1774
+150724.2624585822 3.3039584 -1103.2761
+150725.2624586865 3.3040767 -1103.1774
+150726.2624587908 3.303998 -1103.2562
+150727.2624588951 3.3039584 -1103.2168
+150728.2624589994 3.3041553 -1103.197
+150729.2624591037 3.3040767 -1103.2168
+150730.262459208 3.3040373 -1103.2168
+150731.2624593123 3.3041553 -1103.2168
+150732.2624594166 3.3039584 -1103.2366
+150733.2624595209 3.304116 -1103.2168
+150734.2624596253 3.303998 -1103.2366
+150735.2624597296 3.3040373 -1103.2562
+150736.2624598339 3.3040767 -1103.2168
+150737.2624599382 3.3039191 -1103.2366
+150738.2624600425 3.3038797 -1103.2366
+150739.2624601468 3.3037224 -1103.1774
+150740.2624602511 3.3036435 -1103.2168
+150741.2624603554 3.3035648 -1103.197
+150742.2624604597 3.3035254 -1103.2761
+150743.262460564 3.3034468 -1103.197
+150744.2624606683 3.3033679 -1103.2168
+150745.2624607726 3.3032892 -1103.2562
+150746.262460877 3.3032498 -1103.1774
+150747.2624609813 3.3032498 -1103.2366
+150748.2624610856 3.3031712 -1103.2168
+150749.2624611899 3.3030925 -1103.2562
+150750.2624612942 3.3030925 -1103.2562
+150751.2624613985 3.3030529 -1103.2366
+150752.2624615028 3.3029349 -1103.2562
+150753.2624616071 3.3028169 -1103.1576
+150754.2624617114 3.3028955 -1103.2168
+150755.2624618157 3.3026199 -1103.1576
+150756.26246192 3.3025019 -1103.197
+150757.2624620243 3.3025019 -1103.2959
+150758.2624621287 3.3023443 -1103.1774
+150759.262462233 3.3023837 -1103.197
+150760.2624623373 3.3022263 -1103.2366
+150761.2624624416 3.302108 -1103.2168
+150762.2624625459 3.302108 -1103.197
+150763.2624626502 3.3020687 -1103.2366
+150764.2624627545 3.3019507 -1103.2761
+150765.2624628588 3.3020687 -1103.1774
+150766.2624629631 3.3020687 -1103.1774
+150767.2624630674 3.3022263 -1103.2562
+150768.2624631717 3.302108 -1103.2366
+150769.262463276 3.30199 -1103.2761
+150770.2624633804 3.30199 -1103.1576
+150771.2624634847 3.3019507 -1103.2366
+150772.262463589 3.3018324 -1103.2168
+150773.2624636933 3.3017931 -1103.197
+150774.2624637976 3.3017144 -1103.197
+150775.2624639019 3.3015964 -1103.2168
+150776.2624640062 3.3013995 -1103.3156
+150777.2624641105 3.3013995 -1103.1774
+150778.2624642148 3.3014388 -1103.197
+150779.2624643191 3.3013601 -1103.1378
+150780.2624644234 3.3013995 -1103.2562
+150781.2624645277 3.3013208 -1103.2366
+150782.262464632 3.3013208 -1103.2761
+150783.2624647364 3.3011239 -1103.197
+150784.2624648407 3.3012025 -1103.3156
+150785.262464945 3.3010452 -1103.1774
+150786.2624650493 3.3010452 -1103.1576
+150787.2624651536 3.3008876 -1103.2168
+150788.2624652579 3.3008876 -1103.197
+150789.2624653622 3.3006122 -1103.1774
+150790.2624654665 3.3005726 -1103.197
+150791.2624655708 3.3005726 -1103.2761
+150792.2624656751 3.3005333 -1103.2366
+150793.2624657794 3.3004153 -1103.197
+150794.2624658837 3.3004153 -1103.2168
+150795.2624659881 3.3003759 -1103.1576
+150796.2624660924 3.300179 -1103.1576
+150797.2624661967 3.3002577 -1103.2168
+150798.262466301 3.3002973 -1103.2366
+150799.2624664053 3.3002577 -1103.197
+150800.2624665096 3.3002973 -1103.2562
+150801.2624666139 3.3002183 -1103.197
+150802.2624667182 3.300179 -1103.2366
+150803.2624668225 3.3001397 -1103.2168
+150804.2624669268 3.3001397 -1103.1774
+150805.2624670311 3.3001003 -1103.2562
+150806.2624671354 3.3002183 -1103.2168
+150807.2624672398 3.3001397 -1103.2366
+150808.2624673441 3.3000216 -1103.2761
+150809.2624674484 3.2999427 -1103.1576
+150810.2624675527 3.2999034 -1103.1774
+150811.262467657 3.2999821 -1103.2168
+150812.2624677613 3.300061 -1103.0984
+150813.2624678656 3.300061 -1103.2562
+150814.2624679699 3.300061 -1103.197
+150815.2624680742 3.300061 -1103.2959
+150816.2624681785 3.300061 -1103.197
+150817.2624682828 3.2999427 -1103.2366
+150818.2624683871 3.3000216 -1103.3156
+150819.2624684914 3.2999034 -1103.1378
+150820.2624685958 3.2999034 -1103.197
+150821.2624687001 3.2997854 -1103.2562
+150822.2624688044 3.2997067 -1103.197
+150823.2624689087 3.2996278 -1103.1774
+150824.262469013 3.2995098 -1103.1182
+150825.2624691173 3.2994311 -1103.2562
+150826.2624692216 3.2993128 -1103.1774
+150827.2624693259 3.2991555 -1103.1378
+150828.2624694302 3.2991555 -1103.1378
+150829.2624695345 3.2988799 -1103.197
+150830.2624696388 3.2988405 -1103.2761
+150831.2624697431 3.2986829 -1103.1774
+150832.2624698475 3.2986829 -1103.1378
+150833.2624699518 3.2986829 -1103.3156
+150834.2624700561 3.2984862 -1103.1378
+150835.2624701604 3.2984469 -1103.2168
+150836.2624702647 3.2983286 -1103.2562
+150837.262470369 3.2982893 -1103.2562
+150838.2624704733 3.2982893 -1103.2366
+150839.2624705776 3.2981713 -1103.2562
+150840.2624706819 3.2982893 -1103.197
+150841.2624707862 3.2982893 -1103.2168
+150842.2624708905 3.2982106 -1103.2168
+150843.2624709948 3.2981713 -1103.197
+150844.2624710992 3.298053 -1103.3551
+150845.2624712035 3.2980924 -1103.197
+150846.2624713078 3.2980137 -1103.197
+150847.2624714121 3.2978563 -1103.1774
+150848.2624715164 3.2978168 -1103.1774
+150849.2624716207 3.2978563 -1103.197
+150850.262471725 3.2977381 -1103.2366
+150851.2624718293 3.2976987 -1103.2366
+150852.2624719336 3.2976594 -1103.2168
+150853.2624720379 3.2976987 -1103.1774
+150854.2624721422 3.2976594 -1103.1774
+150855.2624722465 3.2975414 -1103.2366
+150856.2624723508 3.2975414 -1103.2168
+150857.2624724552 3.2973444 -1103.2366
+150858.2624725595 3.2973838 -1103.2562
+150859.2624726638 3.2973444 -1103.1774
+150860.2624727681 3.2973051 -1103.2562
+150861.2624728724 3.2972264 -1103.2761
+150862.2624729767 3.2971869 -1103.2959
+150863.262473081 3.2971869 -1103.1378
+150864.2624731853 3.2971082 -1103.2562
+150865.2624732896 3.2971082 -1103.197
+150866.2624733939 3.2969902 -1103.2366
+150867.2624734982 3.2968719 -1103.197
+150868.2624736025 3.2968326 -1103.2366
+150869.2624737069 3.2966752 -1103.2562
+150870.2624738112 3.2966359 -1103.2168
+150871.2624739155 3.2965176 -1103.197
+150872.2624740198 3.2964389 -1103.1378
+150873.2624741241 3.2963996 -1103.1774
+150874.2624742284 3.2962813 -1103.1774
+150875.2624743327 3.2963209 -1103.2761
+150876.262474437 3.2962813 -1103.2562
+150877.2624745413 3.2962027 -1103.1378
+150878.2624746456 3.2961633 -1103.2562
+150879.2624747499 3.2960453 -1103.2366
+150880.2624748542 3.2960453 -1103.1576
+150881.2624749586 3.2960453 -1103.2562
+150882.2624750629 3.2958484 -1103.1774
+150883.2624751672 3.2958877 -1103.2168
+150884.2624752715 3.2958877 -1103.2761
+150885.2624753758 3.2958484 -1103.197
+150886.2624754801 3.2957304 -1103.1378
+150887.2624755844 3.295691 -1103.1576
+150888.2624756887 3.2955728 -1103.2168
+150889.262475793 3.2956121 -1103.1774
+150890.2624758973 3.2954154 -1103.197
+150891.2624760016 3.2954547 -1103.2959
+150892.2624761059 3.2954154 -1103.2366
+150893.2624762103 3.2954941 -1103.197
+150894.2624763146 3.2953365 -1103.2168
+150895.2624764189 3.2954154 -1103.197
+150896.2624765232 3.2953365 -1103.1774
+150897.2624766275 3.2952185 -1103.197
+150898.2624767318 3.2951791 -1103.2168
+150899.2624768361 3.2952185 -1103.2761
+150900.2624769404 3.2952578 -1103.2761
+150901.2624770447 3.2951005 -1103.2366
+150902.262477149 3.2951791 -1103.2562
+150903.2624772533 3.2951791 -1103.2366
+150904.2624773576 3.2952185 -1103.3156
+150905.2624774619 3.2952578 -1103.2168
+150906.2624775663 3.2951398 -1103.197
+150907.2624776706 3.2949429 -1103.2761
+150908.2624777749 3.2951005 -1103.3156
+150909.2624778792 3.2949429 -1103.197
+150910.2624779835 3.2949429 -1103.1182
+150911.2624780878 3.2949035 -1103.2168
+150912.2624781921 3.2949035 -1103.1774
+150913.2624782964 3.2947459 -1103.1774
+150914.2624784007 3.2947855 -1103.2168
+150915.262478505 3.2946279 -1103.2562
+150916.2624786093 3.2946672 -1103.1378
+150917.2624787136 3.2947066 -1103.2168
+150918.262478818 3.2948248 -1103.197
+150919.2624789223 3.2947855 -1103.2366
+150920.2624790266 3.2948248 -1103.2168
+150921.2624791309 3.2947855 -1103.197
+150922.2624792352 3.2948642 -1103.2168
+150923.2624793395 3.2948248 -1103.2168
+150924.2624794438 3.2947459 -1103.2959
+150925.2624795481 3.2947066 -1103.1774
+150926.2624796524 3.2947066 -1103.2959
+150927.2624797567 3.2947459 -1103.197
+150928.262479861 3.2946279 -1103.2562
+150929.2624799653 3.2946279 -1103.197
+150930.2624800697 3.2947459 -1103.3353
+150931.262480174 3.2946672 -1103.2168
+150932.2624802783 3.2946672 -1103.197
+150933.2624803826 3.2947855 -1103.1774
+150934.2624804869 3.2947459 -1103.1774
+150935.2624805912 3.2947459 -1103.2562
+150936.2624806955 3.2947066 -1103.2761
+150937.2624807998 3.2948248 -1103.2761
+150938.2624809041 3.2947459 -1103.3353
+150939.2624810084 3.2947855 -1103.1182
+150940.2624811127 3.2948248 -1103.2761
+150941.262481217 3.2947066 -1103.2366
+150942.2624813213 3.2947855 -1103.2761
+150943.2624814257 3.2946672 -1103.197
+150944.26248153 3.2947066 -1103.2168
+150945.2624816343 3.2946279 -1103.2168
+150946.2624817386 3.2947066 -1103.2168
+150947.2624818429 3.2945886 -1103.1774
+150948.2624819472 3.2945886 -1103.2168
+150949.2624820515 3.2945099 -1103.2366
+150950.2624821558 3.2945886 -1103.2761
+150951.2624822601 3.2945492 -1103.2761
+150952.2624823644 3.2944705 -1103.2168
+150953.2624824687 3.294431 -1103.2562
+150954.262482573 3.2945099 -1103.1576
+150955.2624826774 3.2943916 -1103.2168
+150956.2624827817 3.2942736 -1103.0984
+150957.262482886 3.2943523 -1103.2562
+150958.2624829903 3.2942343 -1103.2366
+150959.2624830946 3.2941949 -1103.2562
+150960.2624831989 3.294116 -1103.2562
+150961.2624833032 3.2940373 -1103.2366
+150962.2624834075 3.29388 -1103.2761
+150963.2624835118 3.2939193 -1103.2366
+150964.2624836161 3.29388 -1103.2366
+150965.2624837204 3.2937617 -1103.2168
+150966.2624838247 3.2938011 -1103.197
+150967.2624839291 3.2938011 -1103.1774
+150968.2624840334 3.2936437 -1103.1774
+150969.2624841377 3.2937224 -1103.197
+150970.262484242 3.2938011 -1103.2168
+150971.2624843463 3.2937617 -1103.197
+150972.2624844506 3.2938011 -1103.2761
+150973.2624845549 3.2938011 -1103.2168
+150974.2624846592 3.2938011 -1103.2761
+150975.2624847635 3.2937617 -1103.2562
+150976.2624848678 3.2936831 -1103.3156
+150977.2624849721 3.2936437 -1103.2562
+150978.2624850764 3.293565 -1103.2562
+150979.2624851807 3.2933681 -1103.2168
+150980.2624852851 3.2932501 -1103.197
+150981.2624853894 3.2932501 -1103.2168
+150982.2624854937 3.2932501 -1103.1774
+150983.262485598 3.2931712 -1103.197
+150984.2624857023 3.2932501 -1103.2562
+150985.2624858066 3.2932107 -1103.2366
+150986.2624859109 3.2931318 -1103.197
+150987.2624860152 3.2930925 -1103.2959
+150988.2624861195 3.2931712 -1103.2959
+150989.2624862238 3.2930138 -1103.2959
+150990.2624863281 3.2929745 -1103.3156
+150991.2624864324 3.2929745 -1103.1576
+150992.2624865368 3.2928169 -1103.2959
+150993.2624866411 3.2928562 -1103.1774
+150994.2624867454 3.2926202 -1103.2366
+150995.2624868497 3.2926989 -1103.2562
+150996.262486954 3.2926595 -1103.2366
+150997.2624870583 3.2926989 -1103.2366
+150998.2624871626 3.2926202 -1103.3353
+150999.2624872669 3.2926202 -1103.197
+151000.2624873712 3.2926595 -1103.197
+151001.2624874755 3.2925413 -1103.2168
+151002.2624875798 3.2926202 -1103.2366
+151003.2624876841 3.2925413 -1103.2366
+151004.2624877885 3.2925019 -1103.2168
+151005.2624878928 3.2925413 -1103.2562
+151006.2624879971 3.2924626 -1103.2366
+151007.2624881014 3.2925019 -1103.2366
+151008.2624882057 3.2923446 -1103.1774
+151009.26248831 3.2923446 -1103.2366
+151010.2624884143 3.2922657 -1103.1774
+151011.2624885186 3.2922657 -1103.2168
+151012.2624886229 3.292187 -1103.2761
+151013.2624887272 3.2921083 -1103.2761
+151014.2624888315 3.2921083 -1103.1774
+151015.2624889358 3.2921476 -1103.2366
+151016.2624890401 3.2920296 -1103.197
+151017.2624891445 3.2919903 -1103.1576
+151018.2624892488 3.2919114 -1103.2366
+151019.2624893531 3.291754 -1103.2168
+151020.2624894574 3.2918327 -1103.2366
+151021.2624895617 3.2916358 -1103.1774
+151022.262489666 3.2915571 -1103.197
+151023.2624897703 3.2914391 -1103.2168
+151024.2624898746 3.2914784 -1103.2168
+151025.2624899789 3.2913604 -1103.2761
+151026.2624900832 3.2912815 -1103.3353
+151027.2624901875 3.2912028 -1103.2761
+151028.2624902918 3.2911634 -1103.2168
+151029.2624903962 3.2910848 -1103.197
+151030.2624905005 3.2910058 -1103.2168
+151031.2624906048 3.2909665 -1103.1774
+151032.2624907091 3.2908092 -1103.2168
+151033.2624908134 3.2908092 -1103.2761
+151034.2624909177 3.2906909 -1103.197
+151035.262491022 3.2907698 -1103.1774
+151036.2624911263 3.2906909 -1103.197
+151037.2624912306 3.2905729 -1103.1774
+151038.2624913349 3.2904549 -1103.2562
+151039.2624914392 3.2904942 -1103.197
+151040.2624915435 3.2904549 -1103.2168
+151041.2624916479 3.2903759 -1103.2168
+151042.2624917522 3.2903759 -1103.2761
+151043.2624918565 3.2903366 -1103.197
+151044.2624919608 3.2902579 -1103.2562
+151045.2624920651 3.2901399 -1103.1182
+151046.2624921694 3.2901399 -1103.2168
+151047.2624922737 3.2901399 -1103.2761
+151048.262492378 3.290061 -1103.2562
+151049.2624924823 3.2900217 -1103.2761
+151050.2624925866 3.2900217 -1103.2168
+151051.2624926909 3.2899823 -1103.2959
+151052.2624927952 3.2899823 -1103.1576
+151053.2624928996 3.2899823 -1103.2959
+151054.2624930039 3.2900217 -1103.2562
+151055.2624931082 3.289943 -1103.1378
+151056.2624932125 3.290061 -1103.1774
+151057.2624933168 3.289943 -1103.2168
+151058.2624934211 3.2900217 -1103.2761
+151059.2624935254 3.289825 -1103.2562
+151060.2624936297 3.289825 -1103.2366
+151061.262493734 3.2897854 -1103.1774
+151062.2624938383 3.289628 -1103.1378
+151063.2624939426 3.2895887 -1103.1576
+151064.2624940469 3.2894311 -1103.197
+151065.2624941512 3.2894311 -1103.197
+151066.2624942556 3.2892737 -1103.2959
+151067.2624943599 3.2893131 -1103.2168
+151068.2624944642 3.2891555 -1103.2761
+151069.2624945685 3.2890375 -1103.2959
+151070.2624946728 3.2888799 -1103.197
+151071.2624947771 3.2889194 -1103.2366
+151072.2624948814 3.2886438 -1103.2761
+151073.2624949857 3.2885649 -1103.2562
+151074.26249509 3.2884862 -1103.2366
+151075.2624951943 3.2886045 -1103.2366
+151076.2624952986 3.2885649 -1103.2959
+151077.2624954029 3.2884469 -1103.2761
+151078.2624955073 3.2884469 -1103.2562
+151079.2624956116 3.2884469 -1103.1774
+151080.2624957159 3.2883289 -1103.2168
+151081.2624958202 3.2883682 -1103.2168
+151082.2624959245 3.2881713 -1103.2366
+151083.2624960288 3.2881713 -1103.2366
+151084.2624961331 3.2881713 -1103.3156
+151085.2624962374 3.2880926 -1103.2366
+151086.2624963417 3.2880926 -1103.2168
+151087.262496446 3.287935 -1103.2562
+151088.2624965503 3.2880533 -1103.2366
+151089.2624966546 3.2878957 -1103.2562
+151090.262496759 3.2880139 -1103.1774
+151091.2624968633 3.2879746 -1103.2168
+151092.2624969676 3.287935 -1103.2761
+151093.2624970719 3.2879746 -1103.2562
+151094.2624971762 3.287935 -1103.2761
+151095.2624972805 3.2879746 -1103.3156
+151096.2624973848 3.2878957 -1103.2761
+151097.2624974891 3.2878563 -1103.2168
+151098.2624975934 3.2878957 -1103.197
+151099.2624976977 3.2877777 -1103.1378
+151100.262497802 3.2877777 -1103.1774
+151101.2624979063 3.2876594 -1103.2959
+151102.2624980106 3.2875807 -1103.197
+151103.262498115 3.2875021 -1103.0984
+151104.2624982193 3.2875414 -1103.2959
+151105.2624983236 3.2872658 -1103.2761
+151106.2624984279 3.2872658 -1103.2168
+151107.2624985322 3.2873445 -1103.2562
+151108.2624986365 3.2872658 -1103.197
+151109.2624987408 3.2872658 -1103.2562
+151110.2624988451 3.2871871 -1103.197
+151111.2624989494 3.2872658 -1103.2562
+151112.2624990537 3.2871871 -1103.2761
+151113.262499158 3.2872264 -1103.197
+151114.2624992623 3.2872264 -1103.2562
+151115.2624993667 3.2871084 -1103.2168
+151116.262499471 3.2871084 -1103.2366
+151117.2624995753 3.2871084 -1103.2761
+151118.2624996796 3.2870691 -1103.197
+151119.2624997839 3.2869508 -1103.2959
+151120.2624998882 3.2869115 -1103.197
+151121.2624999925 3.2868721 -1103.2168
+151122.2625000968 3.2868721 -1103.1576
+151123.2625002011 3.2867935 -1103.2562
+151124.2625003054 3.2866752 -1103.1774
+151125.2625004097 3.2866359 -1103.2366
+151126.262500514 3.2865965 -1103.1774
+151127.2625006184 3.2866359 -1103.2168
+151128.2625007227 3.2866359 -1103.2366
+151129.262500827 3.2865965 -1103.0984
+151130.2625009313 3.2865572 -1103.2366
+151131.2625010356 3.2864392 -1103.197
+151132.2625011399 3.2864392 -1103.1774
+151133.2625012442 3.2863996 -1103.2366
+151134.2625013485 3.2863209 -1103.2562
+151135.2625014528 3.2863209 -1103.2366
+151136.2625015571 3.2861242 -1103.197
+151137.2625016614 3.2861636 -1103.3551
+151138.2625017657 3.2860847 -1103.2761
+151139.26250187 3.2861636 -1103.2168
+151140.2625019744 3.2860847 -1103.2761
+151141.2625020787 3.2861242 -1103.2168
+151142.262502183 3.286006 -1103.2761
+151143.2625022873 3.286006 -1103.2168
+151144.2625023916 3.285888 -1103.2959
+151145.2625024959 3.285691 -1103.2366
+151146.2625026002 3.2856517 -1103.197
+151147.2625027045 3.2855337 -1103.2168
+151148.2625028088 3.2855337 -1103.197
+151149.2625029131 3.2854548 -1103.2761
+151150.2625030174 3.2854941 -1103.2562
+151151.2625031217 3.2853761 -1103.197
+151152.2625032261 3.2852581 -1103.2366
+151153.2625033304 3.2851791 -1103.1774
+151154.2625034347 3.2852581 -1103.2366
+151155.262503539 3.2851005 -1103.197
+151156.2625036433 3.2851791 -1103.2168
+151157.2625037476 3.2851398 -1103.2562
+151158.2625038519 3.2851398 -1103.197
+151159.2625039562 3.2850611 -1103.197
+151160.2625040605 3.2850611 -1103.2168
+151161.2625041648 3.2848642 -1103.197
+151162.2625042691 3.2847855 -1103.2562
+151163.2625043734 3.2847068 -1103.2168
+151164.2625044778 3.2846675 -1103.2562
+151165.2625045821 3.2845492 -1103.2366
+151166.2625046864 3.2843919 -1103.0984
+151167.2625047907 3.2843919 -1103.2366
+151168.262504895 3.2842739 -1103.3156
+151169.2625049993 3.2841163 -1103.197
+151170.2625051036 3.2842343 -1103.2168
+151171.2625052079 3.2841556 -1103.3156
+151172.2625053122 3.2839587 -1103.1576
+151173.2625054165 3.28388 -1103.2168
+151174.2625055208 3.283762 -1103.2562
+151175.2625056251 3.2837226 -1103.2366
+151176.2625057295 3.2836044 -1103.2168
+151177.2625058338 3.2834864 -1103.197
+151178.2625059381 3.283565 -1103.1182
+151179.2625060424 3.283447 -1103.2761
+151180.2625061467 3.2833288 -1103.1576
+151181.262506251 3.2832108 -1103.2168
+151182.2625063553 3.2831321 -1103.1378
+151183.2625064596 3.2830927 -1103.2168
+151184.2625065639 3.2828958 -1103.2959
+151185.2625066682 3.2829351 -1103.2562
+151186.2625067725 3.2828171 -1103.2366
+151187.2625068768 3.2828171 -1103.2761
+151188.2625069811 3.2828171 -1103.2168
+151189.2625070855 3.2827778 -1103.2562
+151190.2625071898 3.2827384 -1103.197
+151191.2625072941 3.2825415 -1103.2562
+151192.2625073984 3.2824235 -1103.3353
+151193.2625075027 3.2823446 -1103.197
+151194.262507607 3.2824235 -1103.197
+151195.2625077113 3.2821479 -1103.197
+151196.2625078156 3.282069 -1103.197
+151197.2625079199 3.2820296 -1103.0785
+151198.2625080242 3.2818723 -1103.1774
+151199.2625081285 3.2817934 -1103.197
+151200.2625082328 3.281951 -1103.2959
+151201.2625083372 3.2818723 -1103.2168
+151202.2625084415 3.2817934 -1103.2168
+151203.2625085458 3.2817147 -1103.2761
+151204.2625086501 3.2817147 -1103.197
+151205.2625087544 3.281636 -1103.197
+151206.2625088587 3.2815573 -1103.2562
+151207.262508963 3.2814784 -1103.2562
+151208.2625090673 3.2814784 -1103.197
+151209.2625091716 3.2813604 -1103.2168
+151210.2625092759 3.2813604 -1103.2168
+151211.2625093802 3.2812424 -1103.2366
+151212.2625094845 3.281321 -1103.197
+151213.2625095889 3.2811635 -1103.3749
+151214.2625096932 3.2811635 -1103.1576
+151215.2625097975 3.2810454 -1103.2366
+151216.2625099018 3.2810454 -1103.2366
+151217.2625100061 3.2809668 -1103.2168
+151218.2625101104 3.2808881 -1103.2761
+151219.2625102147 3.2810061 -1103.3156
+151220.262510319 3.2808092 -1103.2168
+151221.2625104233 3.2808092 -1103.197
+151222.2625105276 3.2808092 -1103.1774
+151223.2625106319 3.2807698 -1103.2168
+151224.2625107362 3.2806911 -1103.2562
+151225.2625108405 3.2806518 -1103.2168
+151226.2625109449 3.2806125 -1103.2366
+151227.2625110492 3.2805336 -1103.2761
+151228.2625111535 3.2806125 -1103.2366
+151229.2625112578 3.2804942 -1103.1774
+151230.2625113621 3.2803762 -1103.2168
+151231.2625114664 3.2802975 -1103.2168
+151232.2625115707 3.2802975 -1103.2562
+151233.262511675 3.2802186 -1103.2761
+151234.2625117793 3.2801793 -1103.2959
+151235.2625118836 3.2801793 -1103.2168
+151236.2625119879 3.2801793 -1103.1576
+151237.2625120922 3.2801399 -1103.2562
+151238.2625121966 3.2800612 -1103.197
+151239.2625123009 3.2800612 -1103.2366
+151240.2625124052 3.2801793 -1103.1774
+151241.2625125095 3.2801006 -1103.2959
+151242.2625126138 3.2800219 -1103.2761
+151243.2625127181 3.2800219 -1103.2366
+151244.2625128224 3.2800612 -1103.2168
+151245.2625129267 3.2799826 -1103.2761
+151246.262513031 3.2799826 -1103.2366
+151247.2625131353 3.2798643 -1103.1378
+151248.2625132396 3.2799037 -1103.2366
+151249.2625133439 3.2798643 -1103.2168
+151250.2625134483 3.279825 -1103.2168
+151251.2625135526 3.2797463 -1103.3156
+151252.2625136569 3.2796676 -1103.197
+151253.2625137612 3.2796676 -1103.2168
+151254.2625138655 3.2795887 -1103.1774
+151255.2625139698 3.27951 -1103.197
+151256.2625140741 3.2794313 -1103.1774
+151257.2625141784 3.2794707 -1103.1378
+151258.2625142827 3.2794313 -1103.1576
+151259.262514387 3.2793131 -1103.2562
+151260.2625144913 3.279392 -1103.1774
+151261.2625145956 3.2793527 -1103.2366
+151262.2625146999 3.2793131 -1103.2562
+151263.2625148043 3.2792737 -1103.197
+151264.2625149086 3.2791951 -1103.3353
+151265.2625150129 3.2790377 -1103.3551
+151266.2625151172 3.2789981 -1103.197
+151267.2625152215 3.2788408 -1103.1182
+151268.2625153258 3.2786832 -1103.1774
+151269.2625154301 3.2786438 -1103.2366
+151270.2625155344 3.2785258 -1103.197
+151271.2625156387 3.2784472 -1103.2366
+151272.262515743 3.2783289 -1103.2366
+151273.2625158473 3.2783289 -1103.2761
+151274.2625159516 3.2782896 -1103.2366
+151275.262516056 3.2782502 -1103.2562
+151276.2625161603 3.2782502 -1103.2366
+151277.2625162646 3.2780926 -1103.2168
+151278.2625163689 3.2780926 -1103.2168
+151279.2625164732 3.2780926 -1103.2959
+151280.2625165775 3.2780139 -1103.2168
+151281.2625166818 3.2778566 -1103.2562
+151282.2625167861 3.2778566 -1103.0984
+151283.2625168904 3.2778172 -1103.2562
+151284.2625169947 3.277699 -1103.2366
+151285.262517099 3.277581 -1103.2761
+151286.2625172033 3.2775023 -1103.2168
+151287.2625173077 3.2775023 -1103.2168
+151288.262517412 3.277266 -1103.2366
+151289.2625175163 3.2772267 -1103.2761
+151290.2625176206 3.2771873 -1103.2168
+151291.2625177249 3.2771478 -1103.2562
+151292.2625178292 3.2770691 -1103.2761
+151293.2625179335 3.2770298 -1103.2366
+151294.2625180378 3.2768722 -1103.2562
+151295.2625181421 3.2767935 -1103.1774
+151296.2625182464 3.2768722 -1103.2959
+151297.2625183507 3.2766755 -1103.2761
+151298.262518455 3.2767935 -1103.2168
+151299.2625185594 3.2767541 -1103.2366
+151300.2625186637 3.2766755 -1103.1774
+151301.262518768 3.2765179 -1103.1774
+151302.2625188723 3.2764392 -1103.2168
+151303.2625189766 3.2763999 -1103.2562
+151304.2625190809 3.2764785 -1103.3156
+151305.2625191852 3.2762029 -1103.3156
+151306.2625192895 3.2762029 -1103.197
+151307.2625193938 3.2762029 -1103.197
+151308.2625194981 3.2761242 -1103.2168
+151309.2625196024 3.2760849 -1103.2562
+151310.2625197067 3.2760849 -1103.3156
+151311.262519811 3.2760062 -1103.2168
+151312.2625199154 3.2759669 -1103.1576
+151313.2625200197 3.2761242 -1103.2168
+151314.262520124 3.2760062 -1103.2761
+151315.2625202283 3.2760062 -1103.2562
+151316.2625203326 3.2760062 -1103.1182
+151317.2625204369 3.2759669 -1103.2168
+151318.2625205412 3.275888 -1103.1774
+151319.2625206455 3.2757306 -1103.3156
+151320.2625207498 3.2757699 -1103.2761
+151321.2625208541 3.2756519 -1103.1774
+151322.2625209584 3.275573 -1103.3156
+151323.2625210627 3.2756124 -1103.2168
+151324.2625211671 3.275573 -1103.1774
+151325.2625212714 3.275455 -1103.1774
+151326.2625213757 3.2754157 -1103.2959
+151327.26252148 3.2754157 -1103.2959
+151328.2625215843 3.275337 -1103.2168
+151329.2625216886 3.2752974 -1103.2959
+151330.2625217929 3.2752974 -1103.1774
+151331.2625218972 3.2751794 -1103.2366
+151332.2625220015 3.2750614 -1103.2168
+151333.2625221058 3.2751007 -1103.197
+151334.2625222101 3.2751794 -1103.1774
+151335.2625223144 3.2750218 -1103.1576
+151336.2625224188 3.2749825 -1103.2562
+151337.2625225231 3.2749825 -1103.2562
+151338.2625226274 3.2749038 -1103.197
+151339.2625227317 3.2748644 -1103.2562
+151340.262522836 3.2747858 -1103.0588
+151341.2625229403 3.2748251 -1103.1576
+151342.2625230446 3.2747068 -1103.2959
+151343.2625231489 3.2747068 -1103.1576
+151344.2625232532 3.2747858 -1103.2366
+151345.2625233575 3.2747464 -1103.2366
+151346.2625234618 3.2746282 -1103.197
+151347.2625235661 3.2745495 -1103.1378
+151348.2625236704 3.2746282 -1103.2959
+151349.2625237748 3.2745101 -1103.2959
+151350.2625238791 3.2745495 -1103.197
+151351.2625239834 3.2745495 -1103.1774
+151352.2625240877 3.2744708 -1103.197
+151353.262524192 3.2743919 -1103.1576
+151354.2625242963 3.2743526 -1103.1774
+151355.2625244006 3.2743132 -1103.2168
+151356.2625245049 3.2741559 -1103.2761
+151357.2625246092 3.2741165 -1103.2366
+151358.2625247135 3.2741165 -1103.2366
+151359.2625248178 3.2741165 -1103.2366
+151360.2625249221 3.2740769 -1103.1378
+151361.2625250265 3.2740769 -1103.2761
+151362.2625251308 3.2741165 -1103.2366
+151363.2625252351 3.2740376 -1103.2562
+151364.2625253394 3.2740769 -1103.197
+151365.2625254437 3.2740769 -1103.2168
+151366.262525548 3.2740376 -1103.197
+151367.2625256523 3.2738802 -1103.1576
+151368.2625257566 3.2738802 -1103.197
+151369.2625258609 3.2738409 -1103.2366
+151370.2625259652 3.2738409 -1103.2168
+151371.2625260695 3.2736833 -1103.2366
+151372.2625261738 3.2736833 -1103.2366
+151373.2625262782 3.273644 -1103.1182
+151374.2625263825 3.2735653 -1103.2168
+151375.2625264868 3.2735653 -1103.2562
+151376.2625265911 3.2736833 -1103.2562
+151377.2625266954 3.2735653 -1103.1182
+151378.2625267997 3.273526 -1103.1774
+151379.262526904 3.2736046 -1103.2168
+151380.2625270083 3.2734866 -1103.197
+151381.2625271126 3.273526 -1103.197
+151382.2625272169 3.2733684 -1103.2168
+151383.2625273212 3.2732897 -1103.1576
+151384.2625274255 3.2732897 -1103.2168
+151385.2625275298 3.2732897 -1103.1774
+151386.2625276342 3.2731714 -1103.2562
+151387.2625277385 3.2732897 -1103.2562
+151388.2625278428 3.2730927 -1103.2168
+151389.2625279471 3.2730534 -1103.2562
+151390.2625280514 3.2730534 -1103.197
+151391.2625281557 3.2729747 -1103.1182
+151392.26252826 3.2729747 -1103.2168
+151393.2625283643 3.2728565 -1103.2959
+151394.2625284686 3.2727778 -1103.2959
+151395.2625285729 3.2728171 -1103.1774
+151396.2625286772 3.2727778 -1103.197
+151397.2625287815 3.2725415 -1103.197
+151398.2625288859 3.2724628 -1103.2761
+151399.2625289902 3.2723842 -1103.2761
+151400.2625290945 3.2723842 -1103.2168
+151401.2625291988 3.2723448 -1103.2562
+151402.2625293031 3.2722266 -1103.2366
+151403.2625294074 3.2721872 -1103.1774
+151404.2625295117 3.2720692 -1103.197
+151405.262529616 3.2719116 -1103.2761
+151406.2625297203 3.2718723 -1103.2761
+151407.2625298246 3.2719512 -1103.2562
+151408.2625299289 3.2717149 -1103.2366
+151409.2625300332 3.2716362 -1103.2959
+151410.2625301376 3.2715573 -1103.197
+151411.2625302419 3.2715967 -1103.2562
+151412.2625303462 3.271518 -1103.2959
+151413.2625304505 3.2715573 -1103.2761
+151414.2625305548 3.271518 -1103.197
+151415.2625306591 3.2714 -1103.2366
+151416.2625307634 3.2713606 -1103.2168
+151417.2625308677 3.2713211 -1103.2562
+151418.262530972 3.2714 -1103.1774
+151419.2625310763 3.271203 -1103.2168
+151420.2625311806 3.2712424 -1103.2366
+151421.2625312849 3.2711637 -1103.2562
+151422.2625313892 3.2711637 -1103.2168
+151423.2625314936 3.2710457 -1103.2562
+151424.2625315979 3.2710061 -1103.2168
+151425.2625317022 3.2709274 -1103.2959
+151426.2625318065 3.2707701 -1103.197
+151427.2625319108 3.2708094 -1103.197
+151428.2625320151 3.2706125 -1103.2562
+151429.2625321194 3.2705731 -1103.2168
+151430.2625322237 3.2704945 -1103.2168
+151431.262532328 3.2704945 -1103.1576
+151432.2625324323 3.2704551 -1103.1576
+151433.2625325366 3.2703369 -1103.2959
+151434.2625326409 3.2703762 -1103.1774
+151435.2625327453 3.2702582 -1103.1576
+151436.2625328496 3.2701008 -1103.1378
+151437.2625329539 3.2702582 -1103.2761
+151438.2625330582 3.2701795 -1103.2562
+151439.2625331625 3.2701795 -1103.2366
+151440.2625332668 3.2701795 -1103.2168
+151441.2625333711 3.2701402 -1103.1378
+151442.2625334754 3.2701795 -1103.2168
+151443.2625335797 3.2701402 -1103.2959
+151444.262533684 3.2700219 -1103.2168
+151445.2625337883 3.2701402 -1103.2168
+151446.2625338926 3.2699826 -1103.2562
+151447.262533997 3.2699826 -1103.1774
+151448.2625341013 3.2699826 -1103.2562
+151449.2625342056 3.2699826 -1103.2168
+151450.2625343099 3.2699432 -1103.1182
+151451.2625344142 3.2699039 -1103.2168
+151452.2625345185 3.2699039 -1103.1576
+151453.2625346228 3.2699039 -1103.2562
+151454.2625347271 3.2699432 -1103.197
+151455.2625348314 3.2699039 -1103.1774
+151456.2625349357 3.269707 -1103.1576
+151457.26253504 3.2697463 -1103.2562
+151458.2625351443 3.2697859 -1103.2761
+151459.2625352487 3.2696676 -1103.2562
+151460.262535353 3.2695496 -1103.197
+151461.2625354573 3.2695496 -1103.197
+151462.2625355616 3.2696283 -1103.3156
+151463.2625356659 3.2694707 -1103.1774
+151464.2625357702 3.2694707 -1103.2168
+151465.2625358745 3.2693527 -1103.2761
+151466.2625359788 3.2692347 -1103.2366
+151467.2625360831 3.2691557 -1103.1576
+151468.2625361874 3.269274 -1103.2366
+151469.2625362917 3.2690377 -1103.2168
+151470.262536396 3.2690771 -1103.197
+151471.2625365003 3.2691164 -1103.2168
+151472.2625366047 3.2689984 -1103.2959
+151473.262536709 3.2690771 -1103.3353
+151474.2625368133 3.2690377 -1103.3156
+151475.2625369176 3.2690377 -1103.2761
+151476.2625370219 3.2689984 -1103.2761
+151477.2625371262 3.268959 -1103.2168
+151478.2625372305 3.2688804 -1103.2761
+151479.2625373348 3.2688804 -1103.197
+151480.2625374391 3.2686834 -1103.2168
+151481.2625375434 3.2687621 -1103.2562
+151482.2625376477 3.2688015 -1103.2761
+151483.262537752 3.2687228 -1103.2366
+151484.2625378564 3.2687228 -1103.2168
+151485.2625379607 3.2685654 -1103.2761
+151486.262538065 3.2686048 -1103.197
+151487.2625381693 3.2685258 -1103.1378
+151488.2625382736 3.2685258 -1103.2366
+151489.2625383779 3.2684865 -1103.3749
+151490.2625384822 3.2683685 -1103.197
+151491.2625385865 3.2683291 -1103.2366
+151492.2625386908 3.2681715 -1103.2562
+151493.2625387951 3.2682109 -1103.2366
+151494.2625388994 3.2681715 -1103.1774
+151495.2625390037 3.2680142 -1103.2562
+151496.2625391081 3.2679749 -1103.2959
+151497.2625392124 3.2678566 -1103.1576
+151498.2625393167 3.2678566 -1103.1774
+151499.262539421 3.2677779 -1103.3156
+151500.2625395253 3.2676992 -1103.197
+151501.2625396296 3.2676599 -1103.2168
+151502.2625397339 3.2675416 -1103.2168
+151503.2625398382 3.267581 -1103.2168
+151504.2625399425 3.2675023 -1103.2562
+151505.2625400468 3.267345 -1103.2959
+151506.2625401511 3.2673054 -1103.2562
+151507.2625402554 3.2673054 -1103.2959
+151508.2625403597 3.2673843 -1103.1774
+151509.2625404641 3.2673054 -1103.2959
+151510.2625405684 3.2671874 -1103.1774
+151511.2625406727 3.2671874 -1103.1378
+151512.262540777 3.2671087 -1103.2761
+151513.2625408813 3.2671087 -1103.3749
+151514.2625409856 3.2669904 -1103.2562
+151515.2625410899 3.2669904 -1103.1774
+151516.2625411942 3.2668331 -1103.2168
+151517.2625412985 3.266715 -1103.197
+151518.2625414028 3.2667937 -1103.2562
+151519.2625415071 3.266715 -1103.197
+151520.2625416114 3.2666755 -1103.2959
+151521.2625417158 3.2665181 -1103.197
+151522.2625418201 3.2665575 -1103.1182
+151523.2625419244 3.2665575 -1103.2562
+151524.2625420287 3.2665575 -1103.2168
+151525.262542133 3.2665968 -1103.2366
+151526.2625422373 3.2664394 -1103.2366
+151527.2625423416 3.2663212 -1103.2562
+151528.2625424459 3.2664001 -1103.2168
+151529.2625425502 3.2664001 -1103.2168
+151530.2625426545 3.2663212 -1103.2366
+151531.2625427588 3.2662818 -1103.2959
+151532.2625428631 3.2662425 -1103.2959
+151533.2625429675 3.2661245 -1103.2168
+151534.2625430718 3.2661245 -1103.2366
+151535.2625431761 3.2661245 -1103.197
+151536.2625432804 3.2661245 -1103.1576
+151537.2625433847 3.2660062 -1103.197
+151538.262543489 3.2659276 -1103.1774
+151539.2625435933 3.2660062 -1103.197
+151540.2625436976 3.2660456 -1103.2366
+151541.2625438019 3.2660849 -1103.2366
+151542.2625439062 3.2660456 -1103.2168
+151543.2625440105 3.2661245 -1103.2168
+151544.2625441148 3.2660456 -1103.197
+151545.2625442191 3.2661245 -1103.2959
+151546.2625443235 3.2660062 -1103.2168
+151547.2625444278 3.2658882 -1103.2168
+151548.2625445321 3.2659276 -1103.2562
+151549.2625446364 3.26577 -1103.2761
+151550.2625447407 3.2656913 -1103.2366
+151551.262544845 3.2656913 -1103.3156
+151552.2625449493 3.2656126 -1103.2366
+151553.2625450536 3.2656126 -1103.1774
+151554.2625451579 3.2655733 -1103.1774
+151555.2625452622 3.265337 -1103.197
+151556.2625453665 3.265455 -1103.197
+151557.2625454708 3.265219 -1103.2366
+151558.2625455752 3.2652583 -1103.2761
+151559.2625456795 3.2651796 -1103.2168
+151560.2625457838 3.2650614 -1103.197
+151561.2625458881 3.265022 -1103.2366
+151562.2625459924 3.2649434 -1103.2366
+151563.2625460967 3.2649434 -1103.2761
+151564.262546201 3.2648251 -1103.2959
+151565.2625463053 3.2648647 -1103.2959
+151566.2625464096 3.2647464 -1103.197
+151567.2625465139 3.2646677 -1103.1774
+151568.2625466182 3.2645102 -1103.3156
+151569.2625467225 3.2645102 -1103.2959
+151570.2625468269 3.2643135 -1103.2959
+151571.2625469312 3.2642345 -1103.2168
+151572.2625470355 3.2641165 -1103.2959
+151573.2625471398 3.2640378 -1103.2366
+151574.2625472441 3.2639592 -1103.197
+151575.2625473484 3.2638016 -1103.2562
+151576.2625474527 3.2638016 -1103.2562
+151577.262547557 3.263526 -1103.2366
+151578.2625476613 3.2634866 -1103.2168
+151579.2625477656 3.263211 -1103.2366
+151580.2625478699 3.2632897 -1103.197
+151581.2625479742 3.263093 -1103.197
+151582.2625480786 3.2630537 -1103.2168
+151583.2625481829 3.2629747 -1103.2168
+151584.2625482872 3.2628961 -1103.2562
+151585.2625483915 3.2629747 -1103.197
+151586.2625484958 3.2628567 -1103.2959
+151587.2625486001 3.2628174 -1103.1378
+151588.2625487044 3.2628567 -1103.2168
+151589.2625488087 3.2628961 -1103.2761
+151590.262548913 3.2626994 -1103.2168
+151591.2625490173 3.2627387 -1103.2168
+151592.2625491216 3.2627387 -1103.2366
+151593.2625492259 3.2625811 -1103.2366
+151594.2625493302 3.2625024 -1103.3156
+151595.2625494346 3.2625418 -1103.2366
+151596.2625495389 3.2623842 -1103.2168
+151597.2625496432 3.2623842 -1103.2366
+151598.2625497475 3.2622268 -1103.2959
+151599.2625498518 3.2621875 -1103.1576
+151600.2625499561 3.2621875 -1103.2366
+151601.2625500604 3.2621088 -1103.197
+151602.2625501647 3.2619512 -1103.2168
+151603.262550269 3.2619512 -1103.197
+151604.2625503733 3.2618332 -1103.1378
+151605.2625504776 3.2617149 -1103.2168
+151606.2625505819 3.2617149 -1103.2761
+151607.2625506863 3.2616756 -1103.1576
+151608.2625507906 3.2617149 -1103.197
+151609.2625508949 3.2615969 -1103.197
+151610.2625509992 3.2613606 -1103.197
+151611.2625511035 3.2613606 -1103.2562
+151612.2625512078 3.2614 -1103.2168
+151613.2625513121 3.2613213 -1103.2168
+151614.2625514164 3.2610457 -1103.2761
+151615.2625515207 3.2611639 -1103.2959
+151616.262551625 3.2610457 -1103.2168
+151617.2625517293 3.2608883 -1103.2959
+151618.2625518336 3.2607701 -1103.2366
+151619.262551938 3.2608094 -1103.2761
+151620.2625520423 3.2606127 -1103.2959
+151621.2625521466 3.2604158 -1103.2168
+151622.2625522509 3.2604551 -1103.2366
+151623.2625523552 3.2604158 -1103.2959
+151624.2625524595 3.2603371 -1103.197
+151625.2625525638 3.2601008 -1103.2959
+151626.2625526681 3.2599435 -1103.2168
+151627.2625527724 3.2601402 -1103.197
+151628.2625528767 3.2599828 -1103.197
+151629.262552981 3.2599435 -1103.197
+151630.2625530853 3.2597859 -1103.2761
+151631.2625531896 3.2597859 -1103.1576
+151632.262553294 3.2596285 -1103.2562
+151633.2625533983 3.2595496 -1103.2168
+151634.2625535026 3.2594709 -1103.197
+151635.2625536069 3.2593136 -1103.197
+151636.2625537112 3.2591953 -1103.2761
+151637.2625538155 3.2590773 -1103.1774
+151638.2625539198 3.2589986 -1103.2562
+151639.2625540241 3.2588804 -1103.1576
+151640.2625541284 3.258723 -1103.1774
+151641.2625542327 3.2587624 -1103.2562
+151642.262554337 3.2586834 -1103.2168
+151643.2625544413 3.2586441 -1103.1774
+151644.2625545457 3.2586048 -1103.1774
+151645.26255465 3.2586048 -1103.2168
+151646.2625547543 3.2586048 -1103.2168
+151647.2625548586 3.2584474 -1103.2761
+151648.2625549629 3.2584081 -1103.2761
+151649.2625550672 3.2584081 -1103.2168
+151650.2625551715 3.2582898 -1103.1774
+151651.2625552758 3.2582111 -1103.197
+151652.2625553801 3.2580535 -1103.2761
+151653.2625554844 3.2581325 -1103.2168
+151654.2625555887 3.2580142 -1103.2562
+151655.262555693 3.2580142 -1103.2761
+151656.2625557974 3.2579749 -1103.2366
+151657.2625559017 3.2579749 -1103.1774
+151658.262556006 3.2578962 -1103.2959
+151659.2625561103 3.2578962 -1103.3749
+151660.2625562146 3.2578175 -1103.2168
+151661.2625563189 3.2577386 -1103.2168
+151662.2625564232 3.2578175 -1103.2366
+151663.2625565275 3.2577782 -1103.197
+151664.2625566318 3.2577782 -1103.2761
+151665.2625567361 3.2576993 -1103.1774
+151666.2625568404 3.2576599 -1103.2761
+151667.2625569447 3.2576993 -1103.2562
+151668.262557049 3.2575026 -1103.2366
+151669.2625571534 3.2574632 -1103.2959
+151670.2625572577 3.2573843 -1103.3156
+151671.262557362 3.2573056 -1103.2168
+151672.2625574663 3.2571876 -1103.1774
+151673.2625575706 3.2570693 -1103.3156
+151674.2625576749 3.2567937 -1103.1378
+151675.2625577792 3.2568331 -1103.1576
+151676.2625578835 3.2567937 -1103.2562
+151677.2625579878 3.2566364 -1103.3156
+151678.2625580921 3.2563608 -1103.2761
+151679.2625581964 3.2564001 -1103.2761
+151680.2625583007 3.2563608 -1103.197
+151681.2625584051 3.2560852 -1103.2168
+151682.2625585094 3.2560065 -1103.2761
+151683.2625586137 3.2559671 -1103.197
+151684.262558718 3.2558095 -1103.1774
+151685.2625588223 3.2556129 -1103.1182
+151686.2625589266 3.2556129 -1103.1182
+151687.2625590309 3.2554553 -1103.1576
+151688.2625591352 3.2554159 -1103.2168
+151689.2625592395 3.2552977 -1103.2761
+151690.2625593438 3.2551796 -1103.2366
+151691.2625594481 3.2551403 -1103.2366
+151692.2625595524 3.255219 -1103.2562
+151693.2625596568 3.2550223 -1103.1774
+151694.2625597611 3.254904 -1103.2761
+151695.2625598654 3.254904 -1103.2168
+151696.2625599697 3.254904 -1103.2168
+151697.262560074 3.254786 -1103.2366
+151698.2625601783 3.254786 -1103.2562
+151699.2625602826 3.2548254 -1103.2761
+151700.2625603869 3.254786 -1103.1774
+151701.2625604912 3.2548254 -1103.1774
+151702.2625605955 3.2547073 -1103.2562
+151703.2625606998 3.2546678 -1103.1576
+151704.2625608041 3.2545104 -1103.1774
+151705.2625609085 3.2546284 -1103.2959
+151706.2625610128 3.2545891 -1103.1378
+151707.2625611171 3.2544317 -1103.2366
+151708.2625612214 3.2544711 -1103.1378
+151709.2625613257 3.2543135 -1103.2562
+151710.26256143 3.2543924 -1103.1576
+151711.2625615343 3.2542348 -1103.2562
+151712.2625616386 3.2541955 -1103.2959
+151713.2625617429 3.2541168 -1103.2761
+151714.2625618472 3.2540774 -1103.2959
+151715.2625619515 3.2541561 -1103.1774
+151716.2625620558 3.2540379 -1103.2959
+151717.2625621601 3.2538412 -1103.2366
+151718.2625622645 3.2538412 -1103.2366
+151719.2625623688 3.2539592 -1103.197
+151720.2625624731 3.2537229 -1103.1774
+151721.2625625774 3.2536442 -1103.1774
+151722.2625626817 3.2535655 -1103.1774
+151723.262562786 3.253408 -1103.3353
+151724.2625628903 3.2534473 -1103.2562
+151725.2625629946 3.253408 -1103.197
+151726.2625630989 3.2532899 -1103.2366
+151727.2625632032 3.2533293 -1103.2168
+151728.2625633075 3.2531323 -1103.2366
+151729.2625634118 3.2530537 -1103.197
+151730.2625635162 3.2532113 -1103.2168
+151731.2625636205 3.2531719 -1103.2366
+151732.2625637248 3.253093 -1103.0984
+151733.2625638291 3.2530537 -1103.197
+151734.2625639334 3.2530537 -1103.2168
+151735.2625640377 3.2528963 -1103.2761
+151736.262564142 3.252857 -1103.2366
+151737.2625642463 3.252857 -1103.197
+151738.2625643506 3.2526994 -1103.1774
+151739.2625644549 3.2525814 -1103.2959
+151740.2625645592 3.2526207 -1103.2562
+151741.2625646635 3.2523057 -1103.1774
+151742.2625647679 3.2523451 -1103.2168
+151743.2625648722 3.2522271 -1103.2366
+151744.2625649765 3.2522271 -1103.2562
+151745.2625650808 3.2521088 -1103.197
+151746.2625651851 3.2519515 -1103.2168
+151747.2625652894 3.2520301 -1103.2366
+151748.2625653937 3.2519908 -1103.197
+151749.262565498 3.2519515 -1103.2366
+151750.2625656023 3.2517939 -1103.2168
+151751.2625657066 3.2517152 -1103.2168
+151752.2625658109 3.2516365 -1103.1576
+151753.2625659152 3.2516365 -1103.2168
+151754.2625660195 3.2516365 -1103.2562
+151755.2625661239 3.2514396 -1103.1774
+151756.2625662282 3.2515576 -1103.2168
+151757.2625663325 3.251282 -1103.197
+151758.2625664368 3.2512033 -1103.2168
+151759.2625665411 3.2512033 -1103.2168
+151760.2625666454 3.251164 -1103.2761
+151761.2625667497 3.2510853 -1103.2168
+151762.262566854 3.251164 -1103.2959
+151763.2625669583 3.251164 -1103.197
+151764.2625670626 3.250967 -1103.2366
+151765.2625671669 3.2508883 -1103.2168
+151766.2625672712 3.250967 -1103.1774
+151767.2625673756 3.2508883 -1103.2959
+151768.2625674799 3.250731 -1103.1774
+151769.2625675842 3.2508097 -1103.2168
+151770.2625676885 3.2507703 -1103.0984
+151771.2625677928 3.2507703 -1103.1774
+151772.2625678971 3.2506917 -1103.3156
+151773.2625680014 3.2506127 -1103.1576
+151774.2625681057 3.2506127 -1103.2366
+151775.26256821 3.2505734 -1103.2761
+151776.2625683143 3.2506127 -1103.2562
+151777.2625684186 3.2504947 -1103.2168
+151778.2625685229 3.2505341 -1103.197
+151779.2625686273 3.2505341 -1103.2761
+151780.2625687316 3.2504554 -1103.2366
+151781.2625688359 3.2503767 -1103.1774
+151782.2625689402 3.2502978 -1103.2168
+151783.2625690445 3.2502584 -1103.1774
+151784.2625691488 3.2501011 -1103.2168
+151785.2625692531 3.2501011 -1103.1774
+151786.2625693574 3.2500618 -1103.2959
+151787.2625694617 3.2500222 -1103.2761
+151788.262569566 3.2501011 -1103.2366
+151789.2625696703 3.2499828 -1103.2562
+151790.2625697746 3.2499828 -1103.2959
+151791.2625698789 3.2499042 -1103.2562
+151792.2625699833 3.2498255 -1103.2366
+151793.2625700876 3.2498255 -1103.2959
+151794.2625701919 3.2499042 -1103.1774
+151795.2625702962 3.2497861 -1103.2959
+151796.2625704005 3.2497072 -1103.2761
+151797.2625705048 3.2497072 -1103.1182
+151798.2625706091 3.2496285 -1103.2959
+151799.2625707134 3.2495892 -1103.1774
+151800.2625708177 3.2494712 -1103.2168
+151801.262570922 3.2494316 -1103.1576
+151802.2625710263 3.2493923 -1103.2366
+151803.2625711306 3.2493136 -1103.2168
+151804.262571235 3.2491167 -1103.2562
+151805.2625713393 3.2492349 -1103.2562
+151806.2625714436 3.2489593 -1103.3749
+151807.2625715479 3.24892 -1103.1774
+151808.2625716522 3.2490773 -1103.2562
+151809.2625717565 3.24892 -1103.2761
+151810.2625718608 3.2489986 -1103.2366
+151811.2625719651 3.2488413 -1103.197
+151812.2625720694 3.2488017 -1103.2562
+151813.2625721737 3.2486444 -1103.2562
+151814.262572278 3.2485263 -1103.2562
+151815.2625723823 3.2486444 -1103.2366
+151816.2625724867 3.2484474 -1103.2366
+151817.262572591 3.2484081 -1103.1182
+151818.2625726953 3.2483687 -1103.2562
+151819.2625727996 3.2482507 -1103.197
+151820.2625729039 3.2481718 -1103.2168
+151821.2625730082 3.2481718 -1103.2562
+151822.2625731125 3.2481718 -1103.2168
+151823.2625732168 3.2481325 -1103.1576
+151824.2625733211 3.2480538 -1103.2562
+151825.2625734254 3.2478962 -1103.1378
+151826.2625735297 3.2478569 -1103.2168
+151827.262573634 3.2477388 -1103.2761
+151828.2625737384 3.2476602 -1103.3353
+151829.2625738427 3.2476208 -1103.1378
+151830.262573947 3.2476208 -1103.2959
+151831.2625740513 3.2475419 -1103.1774
+151832.2625741556 3.2473845 -1103.2562
+151833.2625742599 3.2473059 -1103.2168
+151834.2625743642 3.2473059 -1103.2366
+151835.2625744685 3.247227 -1103.2562
+151836.2625745728 3.247227 -1103.2366
+151837.2625746771 3.2471089 -1103.197
+151838.2625747814 3.2470696 -1103.2168
+151839.2625748857 3.2469909 -1103.2366
+151840.26257499 3.2469909 -1103.197
+151841.2625750944 3.2468333 -1103.1774
+151842.2625751987 3.2467153 -1103.2366
+151843.262575303 3.2467153 -1103.1774
+151844.2625754073 3.2467153 -1103.1774
+151845.2625755116 3.2465971 -1103.2168
+151846.2625756159 3.2464397 -1103.2761
+151847.2625757202 3.246479 -1103.1774
+151848.2625758245 3.246479 -1103.1774
+151849.2625759288 3.2464397 -1103.1774
+151850.2625760331 3.2464004 -1103.197
+151851.2625761374 3.2462428 -1103.2761
+151852.2625762417 3.2463214 -1103.2168
+151853.2625763461 3.2464004 -1103.2168
+151854.2625764504 3.2463608 -1103.2366
+151855.2625765547 3.2463214 -1103.2366
+151856.262576659 3.2462428 -1103.2959
+151857.2625767633 3.2460854 -1103.2366
+151858.2625768676 3.2460458 -1103.2366
+151859.2625769719 3.2460065 -1103.197
+151860.2625770762 3.2459671 -1103.1774
+151861.2625771805 3.2458491 -1103.1576
+151862.2625772848 3.2456915 -1103.197
+151863.2625773891 3.2457309 -1103.2366
+151864.2625774934 3.2456129 -1103.2168
+151865.2625775978 3.2454948 -1103.197
+151866.2625777021 3.2454555 -1103.1182
+151867.2625778064 3.2454948 -1103.3156
+151868.2625779107 3.2453766 -1103.1576
+151869.262578015 3.2452979 -1103.2366
+151870.2625781193 3.2452979 -1103.1576
+151871.2625782236 3.2451799 -1103.2168
+151872.2625783279 3.2451406 -1103.197
+151873.2625784322 3.2451406 -1103.2366
+151874.2625785365 3.245101 -1103.2366
+151875.2625786408 3.2449436 -1103.2168
+151876.2625787451 3.244983 -1103.2168
+151877.2625788494 3.244786 -1103.2168
+151878.2625789538 3.2447073 -1103.197
+151879.2625790581 3.2447467 -1103.2366
+151880.2625791624 3.24455 -1103.2366
+151881.2625792667 3.2444711 -1103.2761
+151882.262579371 3.2443924 -1103.1182
+151883.2625794753 3.2443531 -1103.2366
+151884.2625795796 3.244235 -1103.2562
+151885.2625796839 3.244235 -1103.197
+151886.2625797882 3.2442744 -1103.2562
+151887.2625798925 3.2440381 -1103.2562
+151888.2625799968 3.2440774 -1103.2366
+151889.2625801011 3.2439201 -1103.197
+151890.2625802055 3.2438805 -1103.1576
+151891.2625803098 3.2437232 -1103.1378
+151892.2625804141 3.2435656 -1103.2168
+151893.2625805184 3.2436051 -1103.2761
+151894.2625806227 3.2436445 -1103.197
+151895.262580727 3.2435262 -1103.2366
+151896.2625808313 3.2434475 -1103.3551
+151897.2625809356 3.2433689 -1103.3156
+151898.2625810399 3.2433689 -1103.0785
+151899.2625811442 3.2433295 -1103.3156
+151900.2625812485 3.2432506 -1103.2761
+151901.2625813528 3.2432113 -1103.2562
+151902.2625814572 3.2430933 -1103.2761
+151903.2625815615 3.2431326 -1103.0984
+151904.2625816658 3.2430146 -1103.197
+151905.2625817701 3.2428963 -1103.2761
+151906.2625818744 3.2429357 -1103.197
+151907.2625819787 3.2427783 -1103.2959
+151908.262582083 3.2426996 -1103.2959
+151909.2625821873 3.2425814 -1103.1576
+151910.2625822916 3.242542 -1103.1576
+151911.2625823959 3.2423847 -1103.2366
+151912.2625825002 3.2423847 -1103.2562
+151913.2625826045 3.2423847 -1103.2168
+151914.2625827088 3.2422664 -1103.1774
+151915.2625828132 3.2421484 -1103.197
+151916.2625829175 3.2420301 -1103.2168
+151917.2625830218 3.2419121 -1103.197
+151918.2625831261 3.2417548 -1103.2562
+151919.2625832304 3.2415972 -1103.1774
+151920.2625833347 3.2416365 -1103.3353
+151921.262583439 3.2414792 -1103.1774
+151922.2625835433 3.2414002 -1103.2168
+151923.2625836476 3.2414398 -1103.3156
+151924.2625837519 3.2412429 -1103.2562
+151925.2625838562 3.2411642 -1103.2168
+151926.2625839605 3.2412035 -1103.2562
+151927.2625840649 3.241046 -1103.2761
+151928.2625841692 3.2410066 -1103.2366
+151929.2625842735 3.2409279 -1103.2168
+151930.2625843778 3.2408493 -1103.2959
+151931.2625844821 3.240731 -1103.1576
+151932.2625845864 3.2408097 -1103.2366
+151933.2625846907 3.2406917 -1103.2168
+151934.262584795 3.240613 -1103.1576
+151935.2625848993 3.240731 -1103.197
+151936.2625850036 3.2404947 -1103.2366
+151937.2625851079 3.240416 -1103.3156
+151938.2625852122 3.2404947 -1103.2366
+151939.2625853166 3.2404554 -1103.2168
+151940.2625854209 3.2403767 -1103.197
+151941.2625855252 3.2402194 -1103.2562
+151942.2625856295 3.2402194 -1103.2562
+151943.2625857338 3.2401798 -1103.1774
+151944.2625858381 3.2402194 -1103.197
+151945.2625859424 3.2399831 -1103.1774
+151946.2625860467 3.2399437 -1103.197
+151947.262586151 3.2397468 -1103.1774
+151948.2625862553 3.2397468 -1103.2562
+151949.2625863596 3.2396288 -1103.197
+151950.2625864639 3.2395895 -1103.2366
+151951.2625865682 3.2395105 -1103.2366
+151952.2625866726 3.2393925 -1103.197
+151953.2625867769 3.2393925 -1103.197
+151954.2625868812 3.2392743 -1103.197
+151955.2625869855 3.2392349 -1103.2366
+151956.2625870898 3.2392743 -1103.2761
+151957.2625871941 3.2392349 -1103.2761
+151958.2625872984 3.2389593 -1103.2562
+151959.2625874027 3.2390382 -1103.197
+151960.262587507 3.2389989 -1103.197
+151961.2625876113 3.2387626 -1103.2959
+151962.2625877156 3.2387626 -1103.2168
+151963.2625878199 3.2387233 -1103.2562
+151964.2625879243 3.2386839 -1103.197
+151965.2625880286 3.2388413 -1103.2562
+151966.2625881329 3.2386444 -1103.2562
+151967.2625882372 3.238605 -1103.1378
+151968.2625883415 3.238487 -1103.197
+151969.2625884458 3.238369 -1103.2366
+151970.2625885501 3.2382114 -1103.2959
+151971.2625886544 3.2381721 -1103.3156
+151972.2625887587 3.2379751 -1103.2168
+151973.262588863 3.2379751 -1103.197
+151974.2625889673 3.2378178 -1103.2168
+151975.2625890716 3.2378571 -1103.2168
+151976.262589176 3.2378571 -1103.1576
+151977.2625892803 3.2376995 -1103.1774
+151978.2625893846 3.2375422 -1103.2168
+151979.2625894889 3.2374635 -1103.2168
+151980.2625895932 3.2374635 -1103.197
+151981.2625896975 3.2371879 -1103.3353
+151982.2625898018 3.2371485 -1103.3353
+151983.2625899061 3.2371879 -1103.197
+151984.2625900104 3.2370696 -1103.0785
+151985.2625901147 3.2370303 -1103.2168
+151986.262590219 3.2369516 -1103.3156
+151987.2625903233 3.2369516 -1103.197
+151988.2625904277 3.2369516 -1103.197
+151989.262590532 3.2367547 -1103.1774
+151990.2625906363 3.2367547 -1103.2562
+151991.2625907406 3.2367153 -1103.197
+151992.2625908449 3.236676 -1103.2168
+151993.2625909492 3.236558 -1103.2562
+151994.2625910535 3.236558 -1103.197
+151995.2625911578 3.2363217 -1103.1774
+151996.2625912621 3.2363217 -1103.2761
+151997.2625913664 3.2363217 -1103.2168
+151998.2625914707 3.2361641 -1103.2366
+151999.262591575 3.2360854 -1103.2366
+152000.2625916793 3.2359674 -1103.3156
+152001.2625917837 3.2358887 -1103.197
+152002.262591888 3.2358887 -1103.197
+152003.2625919923 3.2356918 -1103.1576
+152004.2625920966 3.2356918 -1103.1774
+152005.2625922009 3.2355342 -1103.2562
+152006.2625923052 3.2353768 -1103.1774
+152007.2625924095 3.2352192 -1103.3156
+152008.2625925138 3.2351406 -1103.2761
+152009.2625926181 3.2349832 -1103.2562
+152010.2625927224 3.2349832 -1103.2366
+152011.2625928267 3.2349832 -1103.2562
+152012.262592931 3.2350225 -1103.1774
+152013.2625930354 3.2349832 -1103.197
+152014.2625931397 3.2349436 -1103.2959
+152015.262593244 3.2348256 -1103.197
+152016.2625933483 3.2347863 -1103.2366
+152017.2625934526 3.2347469 -1103.2168
+152018.2625935569 3.2345893 -1103.2168
+152019.2625936612 3.2344713 -1103.197
+152020.2625937655 3.23455 -1103.2366
+152021.2625938698 3.2344713 -1103.2761
+152022.2625939741 3.2345107 -1103.1378
+152023.2625940784 3.2345107 -1103.2562
+152024.2625941827 3.2343926 -1103.1774
+152025.2625942871 3.234235 -1103.1576
+152026.2625943914 3.2342744 -1103.2168
+152027.2625944957 3.234117 -1103.2761
+152028.2625946 3.2340384 -1103.1576
+152029.2625947043 3.2339988 -1103.2366
+152030.2625948086 3.2338808 -1103.2562
+152031.2625949129 3.2339594 -1103.2959
+152032.2625950172 3.2338021 -1103.197
+152033.2625951215 3.2338021 -1103.2562
+152034.2625952258 3.2338021 -1103.2168
+152035.2625953301 3.2338021 -1103.1182
+152036.2625954344 3.2336838 -1103.2366
+152037.2625955387 3.2336445 -1103.1576
+152038.2625956431 3.2334871 -1103.1576
+152039.2625957474 3.2335658 -1103.197
+152040.2625958517 3.2334478 -1103.197
+152041.262595956 3.2332509 -1103.2366
+152042.2625960603 3.2332509 -1103.197
+152043.2625961646 3.2332902 -1103.2761
+152044.2625962689 3.2332115 -1103.2366
+152045.2625963732 3.2332509 -1103.1576
+152046.2625964775 3.2332509 -1103.1378
+152047.2625965818 3.2331722 -1103.1576
+152048.2625966861 3.2330539 -1103.2366
+152049.2625967904 3.2330539 -1103.2366
+152050.2625968948 3.2329359 -1103.2366
+152051.2625969991 3.2328966 -1103.2168
+152052.2625971034 3.2328572 -1103.2168
+152053.2625972077 3.2327783 -1103.2168
+152054.262597312 3.2326996 -1103.2366
+152055.2625974163 3.2326603 -1103.2761
+152056.2625975206 3.2325029 -1103.197
+152057.2625976249 3.2323847 -1103.2366
+152058.2625977292 3.2323847 -1103.197
+152059.2625978335 3.2323847 -1103.2168
+152060.2625979378 3.2323453 -1103.1378
+152061.2625980421 3.2323453 -1103.3749
+152062.2625981465 3.2322273 -1103.197
+152063.2625982508 3.2321091 -1103.2959
+152064.2625983551 3.2321091 -1103.2168
+152065.2625984594 3.2320304 -1103.2366
+152066.2625985637 3.2320697 -1103.2168
+152067.262598668 3.2319124 -1103.2761
+152068.2625987723 3.2318728 -1103.2761
+152069.2625988766 3.2317941 -1103.1576
+152070.2625989809 3.2316761 -1103.3156
+152071.2625990852 3.2316368 -1103.197
+152072.2625991895 3.2315974 -1103.2366
+152073.2625992938 3.2314792 -1103.197
+152074.2625993981 3.2315974 -1103.2168
+152075.2625995025 3.2313612 -1103.197
+152076.2625996068 3.2314398 -1103.2562
+152077.2625997111 3.2313612 -1103.2562
+152078.2625998154 3.2312825 -1103.2959
+152079.2625999197 3.2313218 -1103.2562
+152080.262600024 3.2312825 -1103.2562
+152081.2626001283 3.2312036 -1103.2562
+152082.2626002326 3.2310855 -1103.2168
+152083.2626003369 3.2310462 -1103.1378
+152084.2626004412 3.2309675 -1103.2366
+152085.2626005455 3.2309279 -1103.2366
+152086.2626006498 3.2308099 -1103.1774
+152087.2626007542 3.2307706 -1103.197
+152088.2626008585 3.2306526 -1103.197
+152089.2626009628 3.2305343 -1103.2168
+152090.2626010671 3.2305737 -1103.2562
+152091.2626011714 3.2304556 -1103.2366
+152092.2626012757 3.2304556 -1103.0984
+152093.26260138 3.2302587 -1103.197
+152094.2626014843 3.2303376 -1103.2366
+152095.2626015886 3.2301407 -1103.2366
+152096.2626016929 3.2301013 -1103.2562
+152097.2626017972 3.2299831 -1103.2168
+152098.2626019015 3.2299438 -1103.2168
+152099.2626020059 3.2298257 -1103.197
+152100.2626021102 3.2297864 -1103.2761
+152101.2626022145 3.2296288 -1103.2168
+152102.2626023188 3.2296681 -1103.2562
+152103.2626024231 3.2295108 -1103.1576
+152104.2626025274 3.2295108 -1103.197
+152105.2626026317 3.2293139 -1103.197
+152106.262602736 3.2293139 -1103.2366
+152107.2626028403 3.2293532 -1103.2562
+152108.2626029446 3.2291565 -1103.197
+152109.2626030489 3.2291172 -1103.2562
+152110.2626031532 3.2290382 -1103.2562
+152111.2626032576 3.2289202 -1103.197
+152112.2626033619 3.2288022 -1103.2562
+152113.2626034662 3.2288415 -1103.2959
+152114.2626035705 3.2288415 -1103.2761
+152115.2626036748 3.2287626 -1103.1774
+152116.2626037791 3.2286446 -1103.2562
+152117.2626038834 3.2285266 -1103.2168
+152118.2626039877 3.2286053 -1103.2959
+152119.262604092 3.2285266 -1103.2761
+152120.2626041963 3.2285266 -1103.3156
+152121.2626043006 3.228487 -1103.197
+152122.2626044049 3.2282903 -1103.2562
+152123.2626045092 3.2283297 -1103.2761
+152124.2626046136 3.2283297 -1103.1774
+152125.2626047179 3.2282903 -1103.2761
+152126.2626048222 3.228251 -1103.1576
+152127.2626049265 3.228251 -1103.2366
+152128.2626050308 3.2282903 -1103.197
+152129.2626051351 3.2281721 -1103.2366
+152130.2626052394 3.228054 -1103.2366
+152131.2626053437 3.2281721 -1103.1576
+152132.262605448 3.2280934 -1103.2761
+152133.2626055523 3.228054 -1103.1774
+152134.2626056566 3.2280147 -1103.2168
+152135.2626057609 3.2280147 -1103.1182
+152136.2626058653 3.227936 -1103.2366
+152137.2626059696 3.227936 -1103.2761
+152138.2626060739 3.2277784 -1103.1774
+152139.2626061782 3.2277391 -1103.2761
+152140.2626062825 3.2276604 -1103.197
+152141.2626063868 3.2275817 -1103.2366
+152142.2626064911 3.2274635 -1103.1576
+152143.2626065954 3.2274241 -1103.2562
+152144.2626066997 3.2272668 -1103.3353
+152145.262606804 3.2271485 -1103.2168
+152146.2626069083 3.2269912 -1103.2168
+152147.2626070126 3.2269912 -1103.2761
+152148.262607117 3.2267549 -1103.2562
+152149.2626072213 3.2267549 -1103.2168
+152150.2626073256 3.2266366 -1103.197
+152151.2626074299 3.2265186 -1103.197
+152152.2626075342 3.22644 -1103.197
+152153.2626076385 3.2263613 -1103.2562
+152154.2626077428 3.2262037 -1103.2366
+152155.2626078471 3.2260067 -1103.2366
+152156.2626079514 3.2260857 -1103.2366
+152157.2626080557 3.2260067 -1103.2366
+152158.26260816 3.2259281 -1103.2366
+152159.2626082643 3.2258494 -1103.1774
+152160.2626083686 3.2257707 -1103.1576
+152161.262608473 3.2257707 -1103.2366
+152162.2626085773 3.2256525 -1103.2366
+152163.2626086816 3.2256525 -1103.3551
+152164.2626087859 3.2254951 -1103.2168
+152165.2626088902 3.2255344 -1103.1774
+152166.2626089945 3.2254558 -1103.2562
+152167.2626090988 3.2254164 -1103.1774
+152168.2626092031 3.2253375 -1103.2761
+152169.2626093074 3.2254164 -1103.2366
+152170.2626094117 3.2253375 -1103.2168
+152171.262609516 3.2252982 -1103.197
+152172.2626096203 3.2252195 -1103.2959
+152173.2626097247 3.2252982 -1103.2168
+152174.262609829 3.2252195 -1103.2959
+152175.2626099333 3.2251408 -1103.197
+152176.2626100376 3.2250619 -1103.1378
+152177.2626101419 3.2249832 -1103.1774
+152178.2626102462 3.2249832 -1103.197
+152179.2626103505 3.2249439 -1103.1774
+152180.2626104548 3.2247863 -1103.2366
+152181.2626105591 3.2249045 -1103.2562
+152182.2626106634 3.2247863 -1103.2168
+152183.2626107677 3.2246683 -1103.3156
+152184.262610872 3.2246289 -1103.197
+152185.2626109764 3.2243927 -1103.3156
+152186.2626110807 3.2244713 -1103.2761
+152187.262611185 3.224314 -1103.2562
+152188.2626112893 3.224196 -1103.2168
+152189.2626113936 3.2240777 -1103.197
+152190.2626114979 3.223999 -1103.1378
+152191.2626116022 3.2239203 -1103.2761
+152192.2626117065 3.2239203 -1103.2562
+152193.2626118108 3.2237628 -1103.2761
+152194.2626119151 3.2238021 -1103.2168
+152195.2626120194 3.2237234 -1103.197
+152196.2626121237 3.2235265 -1103.2366
+152197.262612228 3.2234871 -1103.2168
+152198.2626123324 3.2235265 -1103.197
+152199.2626124367 3.2233691 -1103.197
+152200.262612541 3.2233298 -1103.2959
+152201.2626126453 3.2232904 -1103.1774
+152202.2626127496 3.2232115 -1103.2168
+152203.2626128539 3.2232904 -1103.2562
+152204.2626129582 3.2231328 -1103.197
+152205.2626130625 3.2230935 -1103.2761
+152206.2626131668 3.2230935 -1103.2168
+152207.2626132711 3.2229755 -1103.1774
+152208.2626133754 3.2229359 -1103.2168
+152209.2626134797 3.2228966 -1103.1774
+152210.2626135841 3.2226999 -1103.2366
+152211.2626136884 3.2225816 -1103.2168
+152212.2626137927 3.222621 -1103.197
+152213.262613897 3.2224243 -1103.2761
+152214.2626140013 3.222306 -1103.2168
+152215.2626141056 3.222306 -1103.197
+152216.2626142099 3.2221487 -1103.2168
+152217.2626143142 3.2221093 -1103.3353
+152218.2626144185 3.2221093 -1103.2168
+152219.2626145228 3.2219124 -1103.1774
+152220.2626146271 3.2218337 -1103.197
+152221.2626147314 3.221873 -1103.2959
+152222.2626148358 3.2217944 -1103.1774
+152223.2626149401 3.2217157 -1103.2959
+152224.2626150444 3.2217944 -1103.2562
+152225.2626151487 3.2216368 -1103.2168
+152226.262615253 3.2215974 -1103.2168
+152227.2626153573 3.2214794 -1103.2959
+152228.2626154616 3.2214007 -1103.197
+152229.2626155659 3.2212825 -1103.197
+152230.2626156702 3.2212038 -1103.197
+152231.2626157745 3.2212038 -1103.197
+152232.2626158788 3.2210855 -1103.2366
+152233.2626159831 3.2210462 -1103.2959
+152234.2626160875 3.2210855 -1103.1576
+152235.2626161918 3.2209282 -1103.2168
+152236.2626162961 3.2208495 -1103.3353
+152237.2626164004 3.2207313 -1103.2366
+152238.2626165047 3.2207313 -1103.1378
+152239.262616609 3.2207313 -1103.2366
+152240.2626167133 3.2206132 -1103.2168
+152241.2626168176 3.2205346 -1103.2168
+152242.2626169219 3.2204952 -1103.1576
+152243.2626170262 3.220377 -1103.2168
+152244.2626171305 3.2204556 -1103.1378
+152245.2626172348 3.2202983 -1103.2562
+152246.2626173391 3.2202983 -1103.2168
+152247.2626174435 3.2201407 -1103.3156
+152248.2626175478 3.220062 -1103.1774
+152249.2626176521 3.219944 -1103.1576
+152250.2626177564 3.2199047 -1103.2761
+152251.2626178607 3.2196684 -1103.2168
+152252.262617965 3.2195501 -1103.1774
+152253.2626180693 3.2195108 -1103.2761
+152254.2626181736 3.2193534 -1103.2562
+152255.2626182779 3.2192748 -1103.1378
+152256.2626183822 3.2193928 -1103.2562
+152257.2626184865 3.2193534 -1103.2959
+152258.2626185908 3.2191958 -1103.2562
+152259.2626186952 3.2191172 -1103.1576
+152260.2626187995 3.2189598 -1103.2168
+152261.2626189038 3.2188809 -1103.2168
+152262.2626190081 3.2188022 -1103.2168
+152263.2626191124 3.2187629 -1103.3156
+152264.2626192167 3.2187235 -1103.2366
+152265.262619321 3.2186449 -1103.197
+152266.2626194253 3.2184873 -1103.2168
+152267.2626195296 3.2184873 -1103.2168
+152268.2626196339 3.2182903 -1103.1576
+152269.2626197382 3.2182903 -1103.1774
+152270.2626198425 3.2182903 -1103.1576
+152271.2626199469 3.2181723 -1103.2366
+152272.2626200512 3.2180936 -1103.2366
+152273.2626201555 3.218015 -1103.2366
+152274.2626202598 3.2179754 -1103.2366
+152275.2626203641 3.2178574 -1103.2761
+152276.2626204684 3.217936 -1103.1378
+152277.2626205727 3.2176998 -1103.2366
+152278.262620677 3.2176604 -1103.1774
+152279.2626207813 3.2175817 -1103.197
+152280.2626208856 3.2176211 -1103.2366
+152281.2626209899 3.2175031 -1103.2366
+152282.2626210942 3.2173848 -1103.1774
+152283.2626211985 3.2171881 -1103.1774
+152284.2626213029 3.2171488 -1103.1774
+152285.2626214072 3.2171094 -1103.2366
+152286.2626215115 3.2170699 -1103.2366
+152287.2626216158 3.2169518 -1103.2761
+152288.2626217201 3.2169518 -1103.2959
+152289.2626218244 3.2169125 -1103.2168
+152290.2626219287 3.2168732 -1103.2366
+152291.262622033 3.2167945 -1103.2562
+152292.2626221373 3.2167156 -1103.2366
+152293.2626222416 3.2167549 -1103.2168
+152294.2626223459 3.2167156 -1103.1182
+152295.2626224502 3.2165976 -1103.197
+152296.2626225546 3.2165189 -1103.2168
+152297.2626226589 3.21644 -1103.2562
+152298.2626227632 3.2163219 -1103.2168
+152299.2626228675 3.2162039 -1103.197
+152300.2626229718 3.216125 -1103.197
+152301.2626230761 3.2160463 -1103.1576
+152302.2626231804 3.216007 -1103.1576
+152303.2626232847 3.216007 -1103.2366
+152304.262623389 3.216007 -1103.3156
+152305.2626234933 3.215889 -1103.2168
+152306.2626235976 3.2158101 -1103.2168
+152307.2626237019 3.2157314 -1103.1576
+152308.2626238063 3.2156527 -1103.2562
+152309.2626239106 3.2156134 -1103.1774
+152310.2626240149 3.2154558 -1103.2366
+152311.2626241192 3.2153771 -1103.1182
+152312.2626242235 3.2151408 -1103.2168
+152313.2626243278 3.2151408 -1103.3353
+152314.2626244321 3.2149441 -1103.1576
+152315.2626245364 3.2148259 -1103.197
+152316.2626246407 3.2147472 -1103.197
+152317.262624745 3.2146685 -1103.3353
+152318.2626248493 3.2144716 -1103.2562
+152319.2626249536 3.2143536 -1103.2562
+152320.2626250579 3.2142746 -1103.2562
+152321.2626251623 3.2140779 -1103.1774
+152322.2626252666 3.2139597 -1103.2562
+152323.2626253709 3.213999 -1103.2562
+152324.2626254752 3.2139597 -1103.2168
+152325.2626255795 3.2138023 -1103.2168
+152326.2626256838 3.2139597 -1103.2562
+152327.2626257881 3.2138023 -1103.2366
+152328.2626258924 3.2136841 -1103.1378
+152329.2626259967 3.2136841 -1103.2168
+152330.262626101 3.2136841 -1103.1774
+152331.2626262053 3.2134874 -1103.197
+152332.2626263096 3.213448 -1103.197
+152333.262626414 3.2132905 -1103.1378
+152334.2626265183 3.2131724 -1103.1774
+152335.2626266226 3.2130938 -1103.1774
+152336.2626267269 3.2130148 -1103.1774
+152337.2626268312 3.2129362 -1103.2168
+152338.2626269355 3.2128968 -1103.2168
+152339.2626270398 3.2127788 -1103.197
+152340.2626271441 3.2126999 -1103.197
+152341.2626272484 3.2126212 -1103.2562
+152342.2626273527 3.2124243 -1103.1576
+152343.262627457 3.2124639 -1103.197
+152344.2626275613 3.2122276 -1103.2168
+152345.2626276657 3.21207 -1103.2959
+152346.26262777 3.21207 -1103.3156
+152347.2626278743 3.2118733 -1103.2366
+152348.2626279786 3.2117157 -1103.1182
+152349.2626280829 3.2115583 -1103.1576
+152350.2626281872 3.2114007 -1103.2761
+152351.2626282915 3.2114794 -1103.2168
+152352.2626283958 3.2113614 -1103.2366
+152353.2626285001 3.2114007 -1103.2366
+152354.2626286044 3.2111645 -1103.2562
+152355.2626287087 3.2112038 -1103.2168
+152356.262628813 3.2112038 -1103.2168
+152357.2626289174 3.2110465 -1103.2366
+152358.2626290217 3.2110071 -1103.1774
+152359.262629126 3.2109678 -1103.2562
+152360.2626292303 3.2108102 -1103.3551
+152361.2626293346 3.2108102 -1103.197
+152362.2626294389 3.2108102 -1103.2959
+152363.2626295432 3.2107315 -1103.2366
+152364.2626296475 3.2106922 -1103.2168
+152365.2626297518 3.2105346 -1103.197
+152366.2626298561 3.2104166 -1103.2366
+152367.2626299604 3.2104559 -1103.2761
+152368.2626300647 3.2104166 -1103.2168
+152369.262630169 3.2103379 -1103.2562
+152370.2626302734 3.210259 -1103.2761
+152371.2626303777 3.2102196 -1103.2168
+152372.262630482 3.2101016 -1103.2761
+152373.2626305863 3.2099833 -1103.2168
+152374.2626306906 3.209944 -1103.3156
+152375.2626307949 3.2099047 -1103.2562
+152376.2626308992 3.2097473 -1103.1774
+152377.2626310035 3.2097473 -1103.1378
+152378.2626311078 3.2094717 -1103.2562
+152379.2626312121 3.2094324 -1103.2761
+152380.2626313164 3.2093141 -1103.1774
+152381.2626314207 3.2091961 -1103.3156
+152382.2626315251 3.2090781 -1103.1774
+152383.2626316294 3.2089205 -1103.1774
+152384.2626317337 3.2087235 -1103.197
+152385.262631838 3.2085662 -1103.2168
+152386.2626319423 3.2085268 -1103.2168
+152387.2626320466 3.2083693 -1103.3156
+152388.2626321509 3.2082512 -1103.2959
+152389.2626322552 3.2082512 -1103.2168
+152390.2626323595 3.2080936 -1103.197
+152391.2626324638 3.208015 -1103.2761
+152392.2626325681 3.208015 -1103.3156
+152393.2626326724 3.2077394 -1103.2366
+152394.2626327768 3.2076607 -1103.2562
+152395.2626328811 3.2076213 -1103.2761
+152396.2626329854 3.2075031 -1103.2168
+152397.2626330897 3.2073851 -1103.2959
+152398.262633194 3.2073064 -1103.2366
+152399.2626332983 3.2071488 -1103.2168
+152400.2626334026 3.2071095 -1103.2366
+152401.2626335069 3.2068732 -1103.2366
+152402.2626336112 3.2067945 -1103.2959
+152403.2626337155 3.2067945 -1103.2562
+152404.2626338198 3.2067158 -1103.2168
+152405.2626339241 3.2066765 -1103.197
+152406.2626340284 3.2065582 -1103.2366
+152407.2626341328 3.2066371 -1103.2366
+152408.2626342371 3.2065582 -1103.1774
+152409.2626343414 3.2065582 -1103.197
+152410.2626344457 3.2064009 -1103.2761
+152411.26263455 3.2063222 -1103.2168
+152412.2626346543 3.2061646 -1103.2761
+152413.2626347586 3.2060466 -1103.2366
+152414.2626348629 3.2061253 -1103.197
+152415.2626349672 3.2059677 -1103.197
+152416.2626350715 3.205889 -1103.2366
+152417.2626351758 3.2058103 -1103.1774
+152418.2626352801 3.205574 -1103.2761
+152419.2626353845 3.2055347 -1103.3156
+152420.2626354888 3.205574 -1103.2959
+152421.2626355931 3.2054167 -1103.3156
+152422.2626356974 3.2052984 -1103.1774
+152423.2626358017 3.2051804 -1103.2562
+152424.262635906 3.2050228 -1103.1576
+152425.2626360103 3.2049441 -1103.2562
+152426.2626361146 3.2048261 -1103.197
+152427.2626362189 3.2047868 -1103.2168
+152428.2626363232 3.2046292 -1103.2761
+152429.2626364275 3.2045112 -1103.1576
+152430.2626365318 3.2043929 -1103.2366
+152431.2626366362 3.2042356 -1103.1576
+152432.2626367405 3.2042356 -1103.1576
+152433.2626368448 3.2041962 -1103.1576
+152434.2626369491 3.2042356 -1103.197
+152435.2626370534 3.2041173 -1103.197
+152436.2626371577 3.2041569 -1103.197
+152437.262637262 3.2041569 -1103.2366
+152438.2626373663 3.204078 -1103.2168
+152439.2626374706 3.2039993 -1103.2168
+152440.2626375749 3.2040386 -1103.1774
+152441.2626376792 3.2039206 -1103.2168
+152442.2626377835 3.2039206 -1103.1774
+152443.2626378878 3.2039599 -1103.1576
+152444.2626379922 3.2038419 -1103.2366
+152445.2626380965 3.203763 -1103.3156
+152446.2626382008 3.2038419 -1103.2168
+152447.2626383051 3.203763 -1103.3749
+152448.2626384094 3.203645 -1103.2366
+152449.2626385137 3.2034874 -1103.1774
+152450.262638618 3.2035663 -1103.197
+152451.2626387223 3.2033694 -1103.1774
+152452.2626388266 3.2033694 -1103.2366
+152453.2626389309 3.20333 -1103.2366
+152454.2626390352 3.2032118 -1103.1774
+152455.2626391395 3.2031724 -1103.2761
+152456.2626392439 3.2032118 -1103.2761
+152457.2626393482 3.2031331 -1103.2366
+152458.2626394525 3.2030151 -1103.197
+152459.2626395568 3.2030938 -1103.2959
+152460.2626396611 3.2030938 -1103.197
+152461.2626397654 3.2030151 -1103.2168
+152462.2626398697 3.2029364 -1103.2562
+152463.262639974 3.2028182 -1103.2366
+152464.2626400783 3.2028182 -1103.1182
+152465.2626401826 3.2026608 -1103.1576
+152466.2626402869 3.2026215 -1103.1576
+152467.2626403912 3.2025425 -1103.1774
+152468.2626404956 3.2025425 -1103.1774
+152469.2626405999 3.2023852 -1103.2366
+152470.2626407042 3.2023458 -1103.2366
+152471.2626408085 3.2023458 -1103.1774
+152472.2626409128 3.2022276 -1103.2366
+152473.2626410171 3.2022276 -1103.2562
+152474.2626411214 3.2021489 -1103.1576
+152475.2626412257 3.2020702 -1103.2168
+152476.26264133 3.2019916 -1103.2366
+152477.2626414343 3.2019916 -1103.1774
+152478.2626415386 3.2019126 -1103.197
+152479.2626416429 3.201834 -1103.2562
+152480.2626417472 3.2016766 -1103.1774
+152481.2626418516 3.2015584 -1103.2168
+152482.2626419559 3.2014403 -1103.3353
+152483.2626420602 3.201519 -1103.2168
+152484.2626421645 3.2012434 -1103.2168
+152485.2626422688 3.2012434 -1103.2168
+152486.2626423731 3.2011254 -1103.2168
+152487.2626424774 3.2010465 -1103.2562
+152488.2626425817 3.2008498 -1103.2168
+152489.262642686 3.2008891 -1103.1774
+152490.2626427903 3.2008891 -1103.197
+152491.2626428946 3.2007711 -1103.2761
+152492.2626429989 3.2008104 -1103.1774
+152493.2626431033 3.2007315 -1103.1576
+152494.2626432076 3.2006528 -1103.1378
+152495.2626433119 3.2006528 -1103.2959
+152496.2626434162 3.2005348 -1103.2366
+152497.2626435205 3.2004561 -1103.1774
+152498.2626436248 3.2004955 -1103.197
+152499.2626437291 3.2004166 -1103.197
+152500.2626438334 3.2002199 -1103.1774
+152501.2626439377 3.2002199 -1103.2562
+152502.262644042 3.2001805 -1103.2562
+152503.2626441463 3.2001016 -1103.1378
+152504.2626442506 3.2000229 -1103.2366
+152505.262644355 3.199826 -1103.2366
+152506.2626444593 3.1998656 -1103.197
+152507.2626445636 3.1996686 -1103.2168
+152508.2626446679 3.1996686 -1103.2562
+152509.2626447722 3.1994717 -1103.2168
+152510.2626448765 3.19959 -1103.197
+152511.2626449808 3.1994324 -1103.2959
+152512.2626450851 3.199275 -1103.2761
+152513.2626451894 3.1992357 -1103.2562
+152514.2626452937 3.1991568 -1103.2366
+152515.262645398 3.1991568 -1103.2562
+152516.2626455023 3.1991568 -1103.197
+152517.2626456067 3.1991174 -1103.2562
+152518.262645711 3.1990781 -1103.197
+152519.2626458153 3.1989994 -1103.197
+152520.2626459196 3.1989207 -1103.2168
+152521.2626460239 3.1986451 -1103.1774
+152522.2626461282 3.1986845 -1103.197
+152523.2626462325 3.1986845 -1103.2366
+152524.2626463368 3.1985269 -1103.2168
+152525.2626464411 3.1986058 -1103.197
+152526.2626465454 3.1984088 -1103.197
+152527.2626466497 3.1984875 -1103.2168
+152528.262646754 3.1984482 -1103.2168
+152529.2626468583 3.1982512 -1103.1576
+152530.2626469627 3.1982119 -1103.2761
+152531.262647067 3.1981726 -1103.197
+152532.2626471713 3.1982119 -1103.197
+152533.2626472756 3.1981332 -1103.1576
+152534.2626473799 3.1980152 -1103.197
+152535.2626474842 3.1979363 -1103.197
+152536.2626475885 3.1978576 -1103.2959
+152537.2626476928 3.1976607 -1103.197
+152538.2626477971 3.1976607 -1103.2562
+152539.2626479014 3.1975427 -1103.2562
+152540.2626480057 3.1975033 -1103.2562
+152541.26264811 3.1974247 -1103.1774
+152542.2626482144 3.1973457 -1103.2761
+152543.2626483187 3.1972277 -1103.2366
+152544.262648423 3.1971884 -1103.2562
+152545.2626485273 3.1970704 -1103.2168
+152546.2626486316 3.1970308 -1103.2761
+152547.2626487359 3.1969914 -1103.197
+152548.2626488402 3.1969128 -1103.197
+152549.2626489445 3.1968341 -1103.3156
+152550.2626490488 3.1967947 -1103.2366
+152551.2626491531 3.1967554 -1103.2168
+152552.2626492574 3.1967158 -1103.1576
+152553.2626493617 3.1965978 -1103.2959
+152554.2626494661 3.1964798 -1103.2168
+152555.2626495704 3.1963615 -1103.1774
+152556.2626496747 3.1962435 -1103.1774
+152557.262649779 3.1961253 -1103.2959
+152558.2626498833 3.1959679 -1103.0785
+152559.2626499876 3.195771 -1103.2562
+152560.2626500919 3.1958103 -1103.1576
+152561.2626501962 3.195653 -1103.1774
+152562.2626503005 3.1956136 -1103.1774
+152563.2626504048 3.1955349 -1103.2562
+152564.2626505091 3.195456 -1103.2761
+152565.2626506134 3.1954167 -1103.1774
+152566.2626507177 3.1952593 -1103.197
+152567.2626508221 3.1951017 -1103.3156
+152568.2626509264 3.1949444 -1103.2959
+152569.2626510307 3.194905 -1103.2959
+152570.262651135 3.1948261 -1103.2562
+152571.2626512393 3.1945901 -1103.2366
+152572.2626513436 3.1944325 -1103.2959
+152573.2626514479 3.1944718 -1103.197
+152574.2626515522 3.1942749 -1103.2562
+152575.2626516565 3.1941962 -1103.2366
+152576.2626517608 3.1941569 -1103.1378
+152577.2626518651 3.1939995 -1103.2366
+152578.2626519694 3.1939206 -1103.197
+152579.2626520738 3.1939206 -1103.2761
+152580.2626521781 3.1937239 -1103.2366
+152581.2626522824 3.193645 -1103.2761
+152582.2626523867 3.1936057 -1103.197
+152583.262652491 3.193409 -1103.1774
+152584.2626525953 3.193409 -1103.1576
+152585.2626526996 3.1932514 -1103.197
+152586.2626528039 3.1931334 -1103.2959
+152587.2626529082 3.1930547 -1103.2366
+152588.2626530125 3.1930151 -1103.2366
+152589.2626531168 3.1928184 -1103.1774
+152590.2626532211 3.1928184 -1103.197
+152591.2626533255 3.1927397 -1103.1378
+152592.2626534298 3.1925821 -1103.2761
+152593.2626535341 3.1925428 -1103.2959
+152594.2626536384 3.1923459 -1103.197
+152595.2626537427 3.1922278 -1103.197
+152596.262653847 3.1921492 -1103.2366
+152597.2626539513 3.1919916 -1103.1774
+152598.2626540556 3.1919129 -1103.1378
+152599.2626541599 3.1917946 -1103.2366
+152600.2626542642 3.1917553 -1103.1774
+152601.2626543685 3.191716 -1103.2959
+152602.2626544728 3.1915193 -1103.1774
+152603.2626545771 3.191401 -1103.1774
+152604.2626546815 3.1913223 -1103.1774
+152605.2626547858 3.1912436 -1103.1774
+152606.2626548901 3.1910861 -1103.0984
+152607.2626549944 3.1910467 -1103.197
+152608.2626550987 3.190968 -1103.1774
+152609.262655203 3.1908891 -1103.2366
+152610.2626553073 3.1908498 -1103.197
+152611.2626554116 3.1908104 -1103.2366
+152612.2626555159 3.1907318 -1103.2562
+152613.2626556202 3.1906137 -1103.2168
+152614.2626557245 3.1905348 -1103.197
+152615.2626558288 3.1904562 -1103.197
+152616.2626559332 3.1902592 -1103.2959
+152617.2626560375 3.1901019 -1103.2562
+152618.2626561418 3.1901019 -1103.2562
+152619.2626562461 3.1899838 -1103.2959
+152620.2626563504 3.1898656 -1103.2366
+152621.2626564547 3.1897869 -1103.2168
+152622.262656559 3.1897082 -1103.2366
+152623.2626566633 3.1896689 -1103.197
+152624.2626567676 3.18959 -1103.2366
+152625.2626568719 3.1893539 -1103.2168
+152626.2626569762 3.1893144 -1103.1182
+152627.2626570805 3.1892357 -1103.2562
+152628.2626571849 3.1891963 -1103.197
+152629.2626572892 3.1890783 -1103.1182
+152630.2626573935 3.1890388 -1103.2366
+152631.2626574978 3.1889207 -1103.2761
+152632.2626576021 3.1889207 -1103.2959
+152633.2626577064 3.1886845 -1103.197
+152634.2626578107 3.1886451 -1103.2366
+152635.262657915 3.1885664 -1103.197
+152636.2626580193 3.1885271 -1103.197
+152637.2626581236 3.1884089 -1103.1576
+152638.2626582279 3.1882515 -1103.2168
+152639.2626583322 3.1882122 -1103.197
+152640.2626584366 3.1882515 -1103.2562
+152641.2626585409 3.1882122 -1103.2761
+152642.2626586452 3.1880939 -1103.2761
+152643.2626587495 3.1880152 -1103.2168
+152644.2626588538 3.1879365 -1103.2168
+152645.2626589581 3.1877789 -1103.1378
+152646.2626590624 3.1877789 -1103.2168
+152647.2626591667 3.1877396 -1103.1182
+152648.262659271 3.1876216 -1103.2366
+152649.2626593753 3.187464 -1103.2959
+152650.2626594796 3.1874247 -1103.2761
+152651.2626595839 3.1872673 -1103.2168
+152652.2626596882 3.187228 -1103.197
+152653.2626597926 3.1870704 -1103.197
+152654.2626598969 3.187031 -1103.2366
+152655.2626600012 3.1869524 -1103.2761
+152656.2626601055 3.1867948 -1103.2366
+152657.2626602098 3.1867948 -1103.1378
+152658.2626603141 3.1866374 -1103.2959
+152659.2626604184 3.1865585 -1103.2366
+152660.2626605227 3.1865981 -1103.2366
+152661.262660627 3.1866374 -1103.197
+152662.2626607313 3.1863618 -1103.1774
+152663.2626608356 3.1864405 -1103.2761
+152664.2626609399 3.1863618 -1103.2761
+152665.2626610443 3.1862042 -1103.2562
+152666.2626611486 3.1861255 -1103.1378
+152667.2626612529 3.1860075 -1103.2366
+152668.2626613572 3.1859682 -1103.197
+152669.2626614615 3.1858499 -1103.2366
+152670.2626615658 3.1858106 -1103.1774
+152671.2626616701 3.1858106 -1103.197
+152672.2626617744 3.1856532 -1103.2562
+152673.2626618787 3.1856136 -1103.2366
+152674.262661983 3.1854169 -1103.197
+152675.2626620873 3.1854169 -1103.2562
+152676.2626621916 3.1852987 -1103.1576
+152677.262662296 3.1852987 -1103.2168
+152678.2626624003 3.18522 -1103.2761
+152679.2626625046 3.185102 -1103.4143
+152680.2626626089 3.1849444 -1103.1576
+152681.2626627132 3.184787 -1103.197
+152682.2626628175 3.1846294 -1103.1774
+152683.2626629218 3.1845508 -1103.2366
+152684.2626630261 3.1843932 -1103.2562
+152685.2626631304 3.1843145 -1103.3156
+152686.2626632347 3.1841178 -1103.2761
+152687.262663339 3.1839995 -1103.1576
+152688.2626634433 3.1839602 -1103.2366
+152689.2626635476 3.1838422 -1103.2366
+152690.262663652 3.1838422 -1103.2366
+152691.2626637563 3.1837633 -1103.0984
+152692.2626638606 3.1836846 -1103.2562
+152693.2626639649 3.1837239 -1103.2959
+152694.2626640692 3.1836452 -1103.1378
+152695.2626641735 3.1833696 -1103.3156
+152696.2626642778 3.183409 -1103.2562
+152697.2626643821 3.1832516 -1103.2562
+152698.2626644864 3.1831727 -1103.2959
+152699.2626645907 3.1831334 -1103.2562
+152700.262664695 3.1830547 -1103.2959
+152701.2626647993 3.1827791 -1103.2168
+152702.2626649037 3.1826611 -1103.2366
+152703.262665008 3.1825035 -1103.1378
+152704.2626651123 3.1823461 -1103.2366
+152705.2626652166 3.1822674 -1103.2562
+152706.2626653209 3.1821885 -1103.2562
+152707.2626654252 3.1820312 -1103.2168
+152708.2626655295 3.1819129 -1103.2562
+152709.2626656338 3.1818736 -1103.1576
+152710.2626657381 3.1817555 -1103.2562
+152711.2626658424 3.1817162 -1103.1576
+152712.2626659467 3.1815586 -1103.2168
+152713.262666051 3.1814799 -1103.0984
+152714.2626661554 3.181165 -1103.2168
+152715.2626662597 3.1811256 -1103.2168
+152716.262666364 3.181047 -1103.2959
+152717.2626664683 3.1809287 -1103.2562
+152718.2626665726 3.180732 -1103.2366
+152719.2626666769 3.1806531 -1103.1774
+152720.2626667812 3.1806138 -1103.2366
+152721.2626668855 3.1804564 -1103.2168
+152722.2626669898 3.1803775 -1103.197
+152723.2626670941 3.1802595 -1103.197
+152724.2626671984 3.1801808 -1103.2562
+152725.2626673027 3.1800625 -1103.2168
+152726.262667407 3.1799839 -1103.2168
+152727.2626675114 3.1799839 -1103.2761
+152728.2626676157 3.1798658 -1103.2959
+152729.26266772 3.1798265 -1103.2562
+152730.2626678243 3.1797082 -1103.1774
+152731.2626679286 3.1795902 -1103.1576
+152732.2626680329 3.1795115 -1103.2562
+152733.2626681372 3.1792359 -1103.1774
+152734.2626682415 3.179354 -1103.3749
+152735.2626683458 3.1790783 -1103.2366
+152736.2626684501 3.179039 -1103.197
+152737.2626685544 3.1788816 -1103.3156
+152738.2626686587 3.1788421 -1103.2562
+152739.2626687631 3.1786847 -1103.2562
+152740.2626688674 3.1785271 -1103.2366
+152741.2626689717 3.1785271 -1103.1774
+152742.262669076 3.1784484 -1103.197
+152743.2626691803 3.1782515 -1103.197
+152744.2626692846 3.1782515 -1103.197
+152745.2626693889 3.1780941 -1103.2366
+152746.2626694932 3.1780155 -1103.2168
+152747.2626695975 3.1779366 -1103.2366
+152748.2626697018 3.1778972 -1103.2959
+152749.2626698061 3.1778185 -1103.2366
+152750.2626699104 3.1777005 -1103.2366
+152751.2626700148 3.1777792 -1103.3156
+152752.2626701191 3.1777005 -1103.1774
+152753.2626702234 3.1775036 -1103.2366
+152754.2626703277 3.1775429 -1103.197
+152755.262670432 3.1774249 -1103.2168
+152756.2626705363 3.177228 -1103.2366
+152757.2626706406 3.1771886 -1103.2168
+152758.2626707449 3.1769917 -1103.2168
+152759.2626708492 3.176913 -1103.197
+152760.2626709535 3.1769524 -1103.2168
+152761.2626710578 3.176913 -1103.197
+152762.2626711621 3.1766374 -1103.2562
+152763.2626712665 3.1765981 -1103.197
+152764.2626713708 3.1766768 -1103.2366
+152765.2626714751 3.1764801 -1103.197
+152766.2626715794 3.1764407 -1103.197
+152767.2626716837 3.1763225 -1103.2761
+152768.262671788 3.1761651 -1103.197
+152769.2626718923 3.1760468 -1103.2168
+152770.2626719966 3.1759682 -1103.2168
+152771.2626721009 3.1759682 -1103.197
+152772.2626722052 3.1756926 -1103.2761
+152773.2626723095 3.1756139 -1103.2366
+152774.2626724138 3.1753776 -1103.2168
+152775.2626725181 3.1752989 -1103.1774
+152776.2626726225 3.1752989 -1103.2562
+152777.2626727268 3.1750233 -1103.1774
+152778.2626728311 3.1750233 -1103.2959
+152779.2626729354 3.174866 -1103.2562
+152780.2626730397 3.174669 -1103.2366
+152781.262673144 3.1745508 -1103.2168
+152782.2626732483 3.1745508 -1103.2761
+152783.2626733526 3.1743147 -1103.197
+152784.2626734569 3.1743934 -1103.197
+152785.2626735612 3.1742358 -1103.2562
+152786.2626736655 3.1741178 -1103.2366
+152787.2626737698 3.1740785 -1103.3156
+152788.2626738742 3.1740391 -1103.1378
+152789.2626739785 3.1739998 -1103.1576
+152790.2626740828 3.1739604 -1103.2761
+152791.2626741871 3.1739209 -1103.2168
+152792.2626742914 3.1736848 -1103.1774
+152793.2626743957 3.1736848 -1103.197
+152794.2626745 3.1734879 -1103.2366
+152795.2626746043 3.1734879 -1103.2366
+152796.2626747086 3.1734092 -1103.1774
+152797.2626748129 3.173173 -1103.2562
+152798.2626749172 3.1732123 -1103.2168
+152799.2626750215 3.1730943 -1103.3156
+152800.2626751259 3.1730156 -1103.2562
+152801.2626752302 3.1728973 -1103.2366
+152802.2626753345 3.17274 -1103.197
+152803.2626754388 3.1726217 -1103.2366
+152804.2626755431 3.172543 -1103.2761
+152805.2626756474 3.1724644 -1103.2959
+152806.2626757517 3.1723855 -1103.2562
+152807.262675856 3.1723068 -1103.2562
+152808.2626759603 3.1722281 -1103.1576
+152809.2626760646 3.1721101 -1103.2366
+152810.2626761689 3.1720705 -1103.2959
+152811.2626762732 3.1719525 -1103.2168
+152812.2626763775 3.1718345 -1103.2562
+152813.2626764819 3.1716769 -1103.2562
+152814.2626765862 3.1716375 -1103.2168
+152815.2626766905 3.1715589 -1103.2168
+152816.2626767948 3.1714013 -1103.2366
+152817.2626768991 3.1713226 -1103.2366
+152818.2626770034 3.1712832 -1103.197
+152819.2626771077 3.1712046 -1103.2959
+152820.262677212 3.1711257 -1103.197
+152821.2626773163 3.1710076 -1103.1576
+152822.2626774206 3.170929 -1103.2562
+152823.2626775249 3.1708107 -1103.1774
+152824.2626776292 3.170732 -1103.1378
+152825.2626777336 3.170614 -1103.2168
+152826.2626778379 3.1705351 -1103.1774
+152827.2626779422 3.1704171 -1103.2168
+152828.2626780465 3.1703384 -1103.2562
+152829.2626781508 3.1702991 -1103.1378
+152830.2626782551 3.1701808 -1103.2562
+152831.2626783594 3.1699448 -1103.2366
+152832.2626784637 3.1699448 -1103.197
+152833.262678568 3.1698265 -1103.2366
+152834.2626786723 3.1697872 -1103.2366
+152835.2626787766 3.1696298 -1103.1576
+152836.2626788809 3.1696298 -1103.2168
+152837.2626789853 3.1694329 -1103.2366
+152838.2626790896 3.1693542 -1103.2562
+152839.2626791939 3.1692359 -1103.2562
+152840.2626792982 3.1691573 -1103.197
+152841.2626794025 3.1689997 -1103.2366
+152842.2626795068 3.1689997 -1103.2562
+152843.2626796111 3.168921 -1103.197
+152844.2626797154 3.168803 -1103.0785
+152845.2626798197 3.1688423 -1103.2562
+152846.262679924 3.1687243 -1103.1774
+152847.2626800283 3.1686454 -1103.1774
+152848.2626801326 3.168606 -1103.2562
+152849.2626802369 3.1684487 -1103.197
+152850.2626803413 3.1683698 -1103.2562
+152851.2626804456 3.1683698 -1103.2562
+152852.2626805499 3.1681337 -1103.1774
+152853.2626806542 3.1681731 -1103.2168
+152854.2626807585 3.1680944 -1103.2959
+152855.2626808628 3.1680155 -1103.2366
+152856.2626809671 3.1678188 -1103.197
+152857.2626810714 3.1677794 -1103.2168
+152858.2626811757 3.1677005 -1103.197
+152859.26268128 3.1675825 -1103.1576
+152860.2626813843 3.1675432 -1103.1774
+152861.2626814886 3.1674249 -1103.3749
+152862.262681593 3.1673856 -1103.2761
+152863.2626816973 3.1672676 -1103.2562
+152864.2626818016 3.1671493 -1103.2761
+152865.2626819059 3.1670313 -1103.1774
+152866.2626820102 3.1670706 -1103.1378
+152867.2626821145 3.1670706 -1103.2562
+152868.2626822188 3.1669526 -1103.2959
+152869.2626823231 3.166795 -1103.2562
+152870.2626824274 3.166795 -1103.2959
+152871.2626825317 3.166677 -1103.2366
+152872.262682636 3.166559 -1103.1378
+152873.2626827403 3.1665983 -1103.197
+152874.2626828447 3.1665983 -1103.2366
+152875.262682949 3.1665194 -1103.1774
+152876.2626830533 3.1664407 -1103.2366
+152877.2626831576 3.166362 -1103.197
+152878.2626832619 3.1662834 -1103.1576
+152879.2626833662 3.1662834 -1103.197
+152880.2626834705 3.1661651 -1103.2168
+152881.2626835748 3.1660471 -1103.1774
+152882.2626836791 3.1659684 -1103.2562
+152883.2626837834 3.1659291 -1103.197
+152884.2626838877 3.1659684 -1103.2366
+152885.262683992 3.1658895 -1103.2168
+152886.2626840963 3.1658108 -1103.2366
+152887.2626842007 3.1658895 -1103.197
+152888.262684305 3.1657321 -1103.2562
+152889.2626844093 3.1657321 -1103.2168
+152890.2626845136 3.1655352 -1103.2562
+152891.2626846179 3.1655352 -1103.1774
+152892.2626847222 3.1653779 -1103.2562
+152893.2626848265 3.1653779 -1103.2562
+152894.2626849308 3.1652203 -1103.1576
+152895.2626850351 3.1652203 -1103.197
+152896.2626851394 3.1651809 -1103.2168
+152897.2626852437 3.1651416 -1103.2562
+152898.262685348 3.164984 -1103.1774
+152899.2626854524 3.1649446 -1103.3749
+152900.2626855567 3.164866 -1103.2168
+152901.262685661 3.164748 -1103.1182
+152902.2626857653 3.1646297 -1103.3156
+152903.2626858696 3.1645904 -1103.2562
+152904.2626859739 3.1644723 -1103.1774
+152905.2626860782 3.1645117 -1103.2168
+152906.2626861825 3.1645117 -1103.197
+152907.2626862868 3.1641967 -1103.197
+152908.2626863911 3.1641967 -1103.2761
+152909.2626864954 3.1641967 -1103.1774
+152910.2626865997 3.1640391 -1103.1576
+152911.2626867041 3.1641181 -1103.1182
+152912.2626868084 3.1639605 -1103.2562
+152913.2626869127 3.1639211 -1103.1774
+152914.262687017 3.1638818 -1103.2168
+152915.2626871213 3.1637635 -1103.2959
+152916.2626872256 3.1636848 -1103.2959
+152917.2626873299 3.1635275 -1103.2562
+152918.2626874342 3.1635275 -1103.3353
+152919.2626875385 3.1633306 -1103.2366
+152920.2626876428 3.1633306 -1103.3156
+152921.2626877471 3.1631732 -1103.2366
+152922.2626878514 3.1632519 -1103.2366
+152923.2626879558 3.1630549 -1103.1774
+152924.2626880601 3.1629763 -1103.2168
+152925.2626881644 3.1628976 -1103.2168
+152926.2626882687 3.16274 -1103.2562
+152927.262688373 3.16274 -1103.2959
+152928.2626884773 3.1625826 -1103.197
+152929.2626885816 3.162622 -1103.2168
+152930.2626886859 3.1624644 -1103.1774
+152931.2626887902 3.1624644 -1103.2366
+152932.2626888945 3.1623464 -1103.2562
+152933.2626889988 3.162307 -1103.2761
+152934.2626891031 3.1620314 -1103.2168
+152935.2626892074 3.1619527 -1103.2562
+152936.2626893118 3.1618738 -1103.2168
+152937.2626894161 3.1616378 -1103.2168
+152938.2626895204 3.1615195 -1103.1576
+152939.2626896247 3.1613622 -1103.2168
+152940.262689729 3.1613228 -1103.2959
+152941.2626898333 3.1611652 -1103.1576
+152942.2626899376 3.1610866 -1103.2959
+152943.2626900419 3.1610472 -1103.197
+152944.2626901462 3.160929 -1103.1182
+152945.2626902505 3.1608896 -1103.2366
+152946.2626903548 3.1608109 -1103.2761
+152947.2626904591 3.1607323 -1103.2562
+152948.2626905635 3.1606534 -1103.197
+152949.2626906678 3.1604567 -1103.2168
+152950.2626907721 3.160496 -1103.1576
+152951.2626908764 3.1604567 -1103.2168
+152952.2626909807 3.1602991 -1103.3156
+152953.262691085 3.1603384 -1103.2562
+152954.2626911893 3.160181 -1103.2366
+152955.2626912936 3.1599841 -1103.2562
+152956.2626913979 3.1599054 -1103.2366
+152957.2626915022 3.1598661 -1103.2761
+152958.2626916065 3.1597874 -1103.197
+152959.2626917108 3.1596692 -1103.2562
+152960.2626918152 3.1595118 -1103.2562
+152961.2626919195 3.1595511 -1103.1774
+152962.2626920238 3.1592755 -1103.2168
+152963.2626921281 3.1593542 -1103.2959
+152964.2626922324 3.1593149 -1103.1576
+152965.2626923367 3.1592755 -1103.0785
+152966.262692441 3.1592755 -1103.1576
+152967.2626925453 3.1592362 -1103.2366
+152968.2626926496 3.1592362 -1103.197
+152969.2626927539 3.1591179 -1103.2562
+152970.2626928582 3.1589212 -1103.1774
+152971.2626929625 3.1589999 -1103.2366
+152972.2626930668 3.1588426 -1103.2761
+152973.2626931712 3.1586063 -1103.2761
+152974.2626932755 3.1585274 -1103.2168
+152975.2626933798 3.1584094 -1103.2168
+152976.2626934841 3.1584487 -1103.2168
+152977.2626935884 3.1583307 -1103.2761
+152978.2626936927 3.1581337 -1103.197
+152979.262693797 3.1582913 -1103.3353
+152980.2626939013 3.1581337 -1103.2366
+152981.2626940056 3.1578581 -1103.2168
+152982.2626941099 3.1579764 -1103.2366
+152983.2626942142 3.1578188 -1103.1774
+152984.2626943185 3.1576614 -1103.197
+152985.2626944229 3.1577008 -1103.2562
+152986.2626945272 3.1575432 -1103.2562
+152987.2626946315 3.1573071 -1103.1774
+152988.2626947358 3.1572282 -1103.2366
+152989.2626948401 3.1570709 -1103.2761
+152990.2626949444 3.1569133 -1103.2761
+152991.2626950487 3.1569526 -1103.197
+152992.262695153 3.1568739 -1103.2562
+152993.2626952573 3.1567166 -1103.2959
+152994.2626953616 3.1565983 -1103.2562
+152995.2626954659 3.1565983 -1103.2168
+152996.2626955702 3.156559 -1103.197
+152997.2626956746 3.1564016 -1103.1774
+152998.2626957789 3.156244 -1103.2761
+152999.2626958832 3.1561654 -1103.2366
+153000.2626959875 3.1560078 -1103.1774
+153001.2626960918 3.1559291 -1103.2761
+153002.2626961961 3.1558111 -1103.1576
+153003.2626963004 3.1558504 -1103.2562
+153004.2626964047 3.1557322 -1103.2761
+153005.262696509 3.1556535 -1103.2168
+153006.2626966133 3.1556535 -1103.2959
+153007.2626967176 3.1555748 -1103.2761
+153008.2626968219 3.1554961 -1103.2761
+153009.2626969262 3.1554172 -1103.2761
+153010.2626970306 3.1552598 -1103.2562
+153011.2626971349 3.1551418 -1103.1378
+153012.2626972392 3.1550629 -1103.2959
+153013.2626973435 3.1548266 -1103.1182
+153014.2626974478 3.1548662 -1103.3156
+153015.2626975521 3.154748 -1103.2168
+153016.2626976564 3.1545513 -1103.2366
+153017.2626977607 3.1545513 -1103.2168
+153018.262697865 3.1543543 -1103.197
+153019.2626979693 3.1543543 -1103.2562
+153020.2626980736 3.1541574 -1103.2562
+153021.2626981779 3.154 -1103.2959
+153022.2626982823 3.1538818 -1103.2562
+153023.2626983866 3.1538424 -1103.2761
+153024.2626984909 3.1536851 -1103.197
+153025.2626985952 3.1536064 -1103.2366
+153026.2626986995 3.1534095 -1103.2168
+153027.2626988038 3.1533701 -1103.2562
+153028.2626989081 3.1531732 -1103.1774
+153029.2626990124 3.1530159 -1103.1774
+153030.2626991167 3.1528189 -1103.2366
+153031.262699221 3.1527009 -1103.2562
+153032.2626993253 3.152622 -1103.2761
+153033.2626994296 3.152622 -1103.1576
+153034.262699534 3.1525433 -1103.2761
+153035.2626996383 3.1524646 -1103.1378
+153036.2626997426 3.152386 -1103.2959
+153037.2626998469 3.152386 -1103.1774
+153038.2626999512 3.1523464 -1103.1774
+153039.2627000555 3.1523464 -1103.2366
+153040.2627001598 3.1522284 -1103.2761
+153041.2627002641 3.1522284 -1103.1774
+153042.2627003684 3.1519921 -1103.2562
+153043.2627004727 3.152071 -1103.2761
+153044.262700577 3.1519527 -1103.1774
+153045.2627006813 3.1519527 -1103.2168
+153046.2627007857 3.1519134 -1103.2168
+153047.26270089 3.1519134 -1103.2761
+153048.2627009943 3.1517165 -1103.2761
+153049.2627010986 3.1517165 -1103.2562
+153050.2627012029 3.1515591 -1103.2562
+153051.2627013072 3.1514409 -1103.2959
+153052.2627014115 3.1514015 -1103.0984
+153053.2627015158 3.1512442 -1103.2959
+153054.2627016201 3.1512442 -1103.1576
+153055.2627017244 3.1510866 -1103.2959
+153056.2627018287 3.1509686 -1103.3156
+153057.262701933 3.1509292 -1103.1774
+153058.2627020373 3.150811 -1103.2168
+153059.2627021417 3.1506536 -1103.3353
+153060.262702246 3.1505356 -1103.2959
+153061.2627023503 3.1504173 -1103.2562
+153062.2627024546 3.1503386 -1103.197
+153063.2627025589 3.1502993 -1103.2366
+153064.2627026632 3.1500237 -1103.197
+153065.2627027675 3.150063 -1103.2168
+153066.2627028718 3.149945 -1103.2366
+153067.2627029761 3.1498661 -1103.2168
+153068.2627030804 3.1496694 -1103.2168
+153069.2627031847 3.1495905 -1103.2761
+153070.262703289 3.1495118 -1103.3156
+153071.2627033934 3.1493545 -1103.2959
+153072.2627034977 3.1493545 -1103.197
+153073.262703602 3.1492362 -1103.2366
+153074.2627037063 3.1490395 -1103.2366
+153075.2627038106 3.1490395 -1103.2761
+153076.2627039149 3.1489213 -1103.2959
+153077.2627040192 3.1486456 -1103.197
+153078.2627041235 3.1486063 -1103.2761
+153079.2627042278 3.1483703 -1103.2168
+153080.2627043321 3.1484096 -1103.2366
+153081.2627044364 3.148252 -1103.2168
+153082.2627045407 3.148134 -1103.2562
+153083.2627046451 3.1480157 -1103.2562
+153084.2627047494 3.1480947 -1103.2366
+153085.2627048537 3.1479371 -1103.1774
+153086.262704958 3.1479764 -1103.1774
+153087.2627050623 3.1478977 -1103.1774
+153088.2627051666 3.1478584 -1103.1774
+153089.2627052709 3.1477401 -1103.1774
+153090.2627053752 3.1476614 -1103.2959
+153091.2627054795 3.1475828 -1103.197
+153092.2627055838 3.1475041 -1103.2168
+153093.2627056881 3.1473465 -1103.197
+153094.2627057924 3.1473465 -1103.2562
+153095.2627058967 3.1471891 -1103.2168
+153096.2627060011 3.1472285 -1103.2366
+153097.2627061054 3.1470709 -1103.2959
+153098.2627062097 3.1470315 -1103.2761
+153099.262706314 3.1469922 -1103.2562
+153100.2627064183 3.1467953 -1103.2959
+153101.2627065226 3.1467559 -1103.2168
+153102.2627066269 3.1467953 -1103.2168
+153103.2627067312 3.1465592 -1103.3156
+153104.2627068355 3.146441 -1103.2366
+153105.2627069398 3.1464016 -1103.1576
+153106.2627070441 3.1462836 -1103.2168
+153107.2627071484 3.1462836 -1103.2366
+153108.2627072528 3.1462443 -1103.2562
+153109.2627073571 3.1462443 -1103.197
+153110.2627074614 3.1462049 -1103.2168
+153111.2627075657 3.1462049 -1103.197
+153112.26270767 3.146008 -1103.2366
+153113.2627077743 3.1458504 -1103.2562
+153114.2627078786 3.1457717 -1103.2562
+153115.2627079829 3.1456144 -1103.3156
+153116.2627080872 3.1455355 -1103.2562
+153117.2627081915 3.1454961 -1103.2562
+153118.2627082958 3.1453781 -1103.2761
+153119.2627084001 3.1452994 -1103.2959
+153120.2627085045 3.1451812 -1103.2168
+153121.2627086088 3.1451812 -1103.197
+153122.2627087131 3.1451025 -1103.2168
+153123.2627088174 3.1450238 -1103.2168
+153124.2627089217 3.1449449 -1103.2562
+153125.262709026 3.1448662 -1103.2761
+153126.2627091303 3.1447875 -1103.2562
+153127.2627092346 3.1447089 -1103.2168
+153128.2627093389 3.1447089 -1103.2168
+153129.2627094432 3.14463 -1103.2366
+153130.2627095475 3.1445906 -1103.2761
+153131.2627096518 3.1443939 -1103.2562
+153132.2627097561 3.1443939 -1103.1378
+153133.2627098605 3.1442363 -1103.197
+153134.2627099648 3.1442363 -1103.2366
+153135.2627100691 3.1441183 -1103.2366
+153136.2627101734 3.1441576 -1103.2168
+153137.2627102777 3.1440001 -1103.1774
+153138.262710382 3.1438034 -1103.2959
+153139.2627104863 3.143764 -1103.2168
+153140.2627105906 3.1436064 -1103.3353
+153141.2627106949 3.1435671 -1103.2168
+153142.2627107992 3.1435671 -1103.2366
+153143.2627109035 3.1434491 -1103.1576
+153144.2627110078 3.1434491 -1103.2168
+153145.2627111122 3.1433702 -1103.2168
+153146.2627112165 3.1432521 -1103.2562
+153147.2627113208 3.1432915 -1103.2366
+153148.2627114251 3.1432128 -1103.2959
+153149.2627115294 3.1431735 -1103.2366
+153150.2627116337 3.1430945 -1103.1774
+153151.262711738 3.1429765 -1103.2562
+153152.2627118423 3.1430159 -1103.1378
+153153.2627119466 3.1428192 -1103.2168
+153154.2627120509 3.1427796 -1103.2959
+153155.2627121552 3.1426222 -1103.2761
+153156.2627122595 3.1426222 -1103.2562
+153157.2627123639 3.1424253 -1103.197
+153158.2627124682 3.142386 -1103.197
+153159.2627125725 3.1422679 -1103.2959
+153160.2627126768 3.1422286 -1103.197
+153161.2627127811 3.1421103 -1103.2761
+153162.2627128854 3.141953 -1103.2366
+153163.2627129897 3.1419137 -1103.1576
+153164.262713094 3.1417561 -1103.2168
+153165.2627131983 3.1417167 -1103.2562
+153166.2627133026 3.141638 -1103.2366
+153167.2627134069 3.1415591 -1103.2168
+153168.2627135112 3.1414411 -1103.2366
+153169.2627136156 3.1413231 -1103.2562
+153170.2627137199 3.1412048 -1103.1576
+153171.2627138242 3.1410868 -1103.3156
+153172.2627139285 3.1409292 -1103.197
+153173.2627140328 3.1409292 -1103.1182
+153174.2627141371 3.1408112 -1103.2761
+153175.2627142414 3.1407325 -1103.2959
+153176.2627143457 3.1406536 -1103.2168
+153177.26271445 3.1405356 -1103.2366
+153178.2627145543 3.1404963 -1103.197
+153179.2627146586 3.1403782 -1103.2366
+153180.2627147629 3.140142 -1103.1774
+153181.2627148672 3.1399844 -1103.2959
+153182.2627149716 3.1399057 -1103.1576
+153183.2627150759 3.1397483 -1103.1774
+153184.2627151802 3.1397088 -1103.2168
+153185.2627152845 3.1394727 -1103.2168
+153186.2627153888 3.1394727 -1103.197
+153187.2627154931 3.1393938 -1103.197
+153188.2627155974 3.1392758 -1103.2761
+153189.2627157017 3.1391184 -1103.1576
+153190.262715806 3.1390395 -1103.2168
+153191.2627159103 3.1389608 -1103.1182
+153192.2627160146 3.1388032 -1103.2761
+153193.2627161189 3.1388428 -1103.2168
+153194.2627162233 3.1388822 -1103.2168
+153195.2627163276 3.1385672 -1103.2366
+153196.2627164319 3.1384883 -1103.2761
+153197.2627165362 3.1384096 -1103.2366
+153198.2627166405 3.1382523 -1103.2562
+153199.2627167448 3.1380947 -1103.2761
+153200.2627168491 3.1380947 -1103.3156
+153201.2627169534 3.1379766 -1103.2168
+153202.2627170577 3.1378191 -1103.1774
+153203.262717162 3.1376224 -1103.1774
+153204.2627172663 3.137583 -1103.2761
+153205.2627173706 3.1374254 -1103.2168
+153206.262717475 3.1373467 -1103.2366
+153207.2627175793 3.1372681 -1103.2366
+153208.2627176836 3.1371498 -1103.1576
+153209.2627177879 3.1371105 -1103.2366
+153210.2627178922 3.1370711 -1103.2562
+153211.2627179965 3.1369529 -1103.2366
+153212.2627181008 3.1369135 -1103.1182
+153213.2627182051 3.1367955 -1103.1774
+153214.2627183094 3.1367168 -1103.197
+153215.2627184137 3.1366775 -1103.1774
+153216.262718518 3.1364412 -1103.197
+153217.2627186223 3.136205 -1103.2761
+153218.2627187266 3.1360869 -1103.2168
+153219.262718831 3.1359293 -1103.1576
+153220.2627189353 3.1358113 -1103.3353
+153221.2627190396 3.1356537 -1103.3156
+153222.2627191439 3.1355751 -1103.2562
+153223.2627192482 3.1354964 -1103.1774
+153224.2627193525 3.135457 -1103.2959
+153225.2627194568 3.1354177 -1103.2168
+153226.2627195611 3.1351814 -1103.197
+153227.2627196654 3.1351814 -1103.2168
+153228.2627197697 3.1351421 -1103.3156
+153229.262719874 3.1349845 -1103.2959
+153230.2627199783 3.1348271 -1103.1576
+153231.2627200827 3.1347876 -1103.2366
+153232.262720187 3.1347089 -1103.2562
+153233.2627202913 3.1347089 -1103.1774
+153234.2627203956 3.1343939 -1103.2562
+153235.2627204999 3.1342759 -1103.197
+153236.2627206042 3.1341577 -1103.197
+153237.2627207085 3.134079 -1103.2562
+153238.2627208128 3.1339216 -1103.197
+153239.2627209171 3.1338427 -1103.1774
+153240.2627210214 3.1338034 -1103.2366
+153241.2627211257 3.133764 -1103.2366
+153242.26272123 3.1336854 -1103.2366
+153243.2627213344 3.1334884 -1103.2562
+153244.2627214387 3.1334097 -1103.2366
+153245.262721543 3.1334491 -1103.2562
+153246.2627216473 3.1334097 -1103.1774
+153247.2627217516 3.1330554 -1103.2761
+153248.2627218559 3.1331341 -1103.197
+153249.2627219602 3.1328979 -1103.2366
+153250.2627220645 3.1328192 -1103.1774
+153251.2627221688 3.1326222 -1103.2168
+153252.2627222731 3.1325829 -1103.2761
+153253.2627223774 3.1325042 -1103.2761
+153254.2627224817 3.132268 -1103.2562
+153255.262722586 3.1321499 -1103.1182
+153256.2627226904 3.1321499 -1103.2761
+153257.2627227947 3.1321106 -1103.2959
+153258.262722899 3.1321499 -1103.2168
+153259.2627230033 3.1320713 -1103.1378
+153260.2627231076 3.1320319 -1103.2168
+153261.2627232119 3.131953 -1103.2562
+153262.2627233162 3.1318743 -1103.2959
+153263.2627234205 3.131953 -1103.2959
+153264.2627235248 3.1317956 -1103.1182
+153265.2627236291 3.1316381 -1103.2562
+153266.2627237334 3.1314018 -1103.1774
+153267.2627238377 3.1312444 -1103.2168
+153268.2627239421 3.1310868 -1103.1774
+153269.2627240464 3.1311264 -1103.2168
+153270.2627241507 3.1309688 -1103.2562
+153271.262724255 3.1308508 -1103.3353
+153272.2627243593 3.1307719 -1103.2366
+153273.2627244636 3.1306539 -1103.1378
+153274.2627245679 3.1304569 -1103.197
+153275.2627246722 3.1304569 -1103.2168
+153276.2627247765 3.1302996 -1103.197
+153277.2627248808 3.1302602 -1103.1774
+153278.2627249851 3.1302209 -1103.2168
+153279.2627250894 3.130142 -1103.2168
+153280.2627251938 3.1299453 -1103.2562
+153281.2627252981 3.1299846 -1103.2168
+153282.2627254024 3.1298664 -1103.2761
+153283.2627255067 3.129709 -1103.1774
+153284.262725611 3.1296697 -1103.2562
+153285.2627257153 3.1295121 -1103.197
+153286.2627258196 3.1294334 -1103.2168
+153287.2627259239 3.1292365 -1103.2168
+153288.2627260282 3.1290791 -1103.2562
+153289.2627261325 3.1290398 -1103.2562
+153290.2627262368 3.1288428 -1103.1774
+153291.2627263411 3.1287642 -1103.3156
+153292.2627264455 3.1285279 -1103.1576
+153293.2627265498 3.1284885 -1103.2761
+153294.2627266541 3.1284492 -1103.1576
+153295.2627267584 3.1282129 -1103.2761
+153296.2627268627 3.1281343 -1103.1378
+153297.262726967 3.1280556 -1103.1378
+153298.2627270713 3.1279373 -1103.2168
+153299.2627271756 3.127898 -1103.1774
+153300.2627272799 3.1278193 -1103.1182
+153301.2627273842 3.127583 -1103.197
+153302.2627274885 3.1275437 -1103.2168
+153303.2627275928 3.1274257 -1103.2168
+153304.2627276971 3.1273861 -1103.2366
+153305.2627278015 3.1272681 -1103.2562
+153306.2627279058 3.1270711 -1103.1774
+153307.2627280101 3.1270318 -1103.2168
+153308.2627281144 3.1268744 -1103.2366
+153309.2627282187 3.1267958 -1103.2761
+153310.262728323 3.1266775 -1103.2366
+153311.2627284273 3.1266382 -1103.2761
+153312.2627285316 3.1265595 -1103.1774
+153313.2627286359 3.1265595 -1103.2366
+153314.2627287402 3.1263626 -1103.2366
+153315.2627288445 3.1262839 -1103.2168
+153316.2627289488 3.1262445 -1103.2366
+153317.2627290532 3.1262052 -1103.2761
+153318.2627291575 3.1262052 -1103.2168
+153319.2627292618 3.1261263 -1103.197
+153320.2627293661 3.1260476 -1103.2366
+153321.2627294704 3.1260476 -1103.2562
+153322.2627295747 3.1258507 -1103.2761
+153323.262729679 3.125772 -1103.2366
+153324.2627297833 3.1255753 -1103.2168
+153325.2627298876 3.1253784 -1103.2168
+153326.2627299919 3.1252997 -1103.2959
+153327.2627300962 3.1252208 -1103.1378
+153328.2627302005 3.1251421 -1103.2366
+153329.2627303049 3.1250634 -1103.1774
+153330.2627304092 3.1250241 -1103.2761
+153331.2627305135 3.1248665 -1103.3353
+153332.2627306178 3.1248665 -1103.2366
+153333.2627307221 3.1246698 -1103.2168
+153334.2627308264 3.1245122 -1103.2959
+153335.2627309307 3.1244335 -1103.2562
+153336.262731035 3.1244335 -1103.2761
+153337.2627311393 3.1242366 -1103.2168
+153338.2627312436 3.1243153 -1103.2562
+153339.2627313479 3.1241972 -1103.2959
+153340.2627314522 3.1240792 -1103.2168
+153341.2627315565 3.123961 -1103.2959
+153342.2627316609 3.123961 -1103.2562
+153343.2627317652 3.1238823 -1103.2366
+153344.2627318695 3.123843 -1103.197
+153345.2627319738 3.1236854 -1103.2168
+153346.2627320781 3.1236067 -1103.2562
+153347.2627321824 3.123528 -1103.1774
+153348.2627322867 3.1234887 -1103.2366
+153349.262732391 3.1232917 -1103.2366
+153350.2627324953 3.1232917 -1103.2959
+153351.2627325996 3.1232131 -1103.1576
+153352.2627327039 3.1230555 -1103.2366
+153353.2627328082 3.1229768 -1103.2761
+153354.2627329126 3.1227405 -1103.1774
+153355.2627330169 3.1225832 -1103.2168
+153356.2627331212 3.1223862 -1103.3551
+153357.2627332255 3.1223075 -1103.197
+153358.2627333298 3.1221499 -1103.1378
+153359.2627334341 3.1219926 -1103.2562
+153360.2627335384 3.1218746 -1103.2562
+153361.2627336427 3.121717 -1103.1774
+153362.262733747 3.1216776 -1103.2562
+153363.2627338513 3.121599 -1103.2959
+153364.2627339556 3.12152 -1103.197
+153365.2627340599 3.1212051 -1103.197
+153366.2627341643 3.1211658 -1103.1774
+153367.2627342686 3.1210871 -1103.3156
+153368.2627343729 3.1209295 -1103.2959
+153369.2627344772 3.1208901 -1103.2761
+153370.2627345815 3.1208508 -1103.197
+153371.2627346858 3.1207721 -1103.2168
+153372.2627347901 3.1208115 -1103.2366
+153373.2627348944 3.1206934 -1103.2366
+153374.2627349987 3.1206145 -1103.2168
+153375.262735103 3.1204965 -1103.2168
+153376.2627352073 3.1203785 -1103.1774
+153377.2627353116 3.1203392 -1103.2168
+153378.2627354159 3.1201029 -1103.2562
+153379.2627355203 3.1200242 -1103.197
+153380.2627356246 3.1198666 -1103.197
+153381.2627357289 3.1197486 -1103.2168
+153382.2627358332 3.1196697 -1103.1774
+153383.2627359375 3.1195517 -1103.2562
+153384.2627360418 3.1193943 -1103.1774
+153385.2627361461 3.1192367 -1103.2366
+153386.2627362504 3.119158 -1103.2761
+153387.2627363547 3.1191187 -1103.1774
+153388.262736459 3.1191187 -1103.3156
+153389.2627365633 3.1188431 -1103.1774
+153390.2627366676 3.1186855 -1103.197
+153391.262736772 3.1186068 -1103.2366
+153392.2627368763 3.1184888 -1103.2562
+153393.2627369806 3.1184099 -1103.2366
+153394.2627370849 3.1182919 -1103.1774
+153395.2627371892 3.1180949 -1103.197
+153396.2627372935 3.1180162 -1103.2761
+153397.2627373978 3.1179376 -1103.1182
+153398.2627375021 3.1178193 -1103.3156
+153399.2627376064 3.1177406 -1103.1182
+153400.2627377107 3.11778 -1103.3156
+153401.262737815 3.1176226 -1103.197
+153402.2627379193 3.1173863 -1103.2761
+153403.2627380237 3.1174257 -1103.197
+153404.262738128 3.1172683 -1103.1774
+153405.2627382323 3.1171894 -1103.1774
+153406.2627383366 3.1170321 -1103.2168
+153407.2627384409 3.1169927 -1103.2959
+153408.2627385452 3.1169534 -1103.1774
+153409.2627386495 3.1168351 -1103.197
+153410.2627387538 3.1169138 -1103.2562
+153411.2627388581 3.1168745 -1103.1182
+153412.2627389624 3.1167958 -1103.197
+153413.2627390667 3.1168351 -1103.2562
+153414.262739171 3.1165988 -1103.3353
+153415.2627392753 3.1164808 -1103.2366
+153416.2627393797 3.1165202 -1103.1774
+153417.262739484 3.1164021 -1103.1378
+153418.2627395883 3.1162839 -1103.2366
+153419.2627396926 3.1163235 -1103.2761
+153420.2627397969 3.1161265 -1103.2562
+153421.2627399012 3.1160479 -1103.2761
+153422.2627400055 3.1160479 -1103.2761
+153423.2627401098 3.1158509 -1103.2366
+153424.2627402141 3.1158903 -1103.197
+153425.2627403184 3.1156936 -1103.197
+153426.2627404227 3.1156147 -1103.1576
+153427.262740527 3.1154573 -1103.2168
+153428.2627406314 3.1154966 -1103.2562
+153429.2627407357 3.1154966 -1103.2761
+153430.26274084 3.1154573 -1103.2761
+153431.2627409443 3.1152997 -1103.3749
+153432.2627410486 3.1152604 -1103.1182
+153433.2627411529 3.1151817 -1103.1774
+153434.2627412572 3.1150634 -1103.2168
+153435.2627413615 3.1149061 -1103.2366
+153436.2627414658 3.1149061 -1103.1774
+153437.2627415701 3.1148274 -1103.3353
+153438.2627416744 3.1145911 -1103.2168
+153439.2627417787 3.1146305 -1103.3156
+153440.2627418831 3.1146305 -1103.1378
+153441.2627419874 3.1144335 -1103.2761
+153442.2627420917 3.1143548 -1103.1576
+153443.262742196 3.1142762 -1103.197
+153444.2627423003 3.1139612 -1103.1576
+153445.2627424046 3.1139612 -1103.2366
+153446.2627425089 3.113843 -1103.2562
+153447.2627426132 3.1137643 -1103.197
+153448.2627427175 3.1137249 -1103.2959
+153449.2627428218 3.1136069 -1103.197
+153450.2627429261 3.1133313 -1103.197
+153451.2627430304 3.1133313 -1103.197
+153452.2627431348 3.1132131 -1103.1774
+153453.2627432391 3.1132131 -1103.2168
+153454.2627433434 3.1130557 -1103.2366
+153455.2627434477 3.112977 -1103.2366
+153456.262743552 3.1128981 -1103.197
+153457.2627436563 3.1128588 -1103.2959
+153458.2627437606 3.1128194 -1103.1774
+153459.2627438649 3.1126227 -1103.2562
+153460.2627439692 3.1125045 -1103.1774
+153461.2627440735 3.1124651 -1103.2562
+153462.2627441778 3.1124258 -1103.1774
+153463.2627442821 3.1122289 -1103.2562
+153464.2627443864 3.1120322 -1103.3551
+153465.2627444908 3.1121502 -1103.2761
+153466.2627445951 3.1119139 -1103.2366
+153467.2627446994 3.1117959 -1103.197
+153468.2627448037 3.1117172 -1103.2168
+153469.262744908 3.111599 -1103.2366
+153470.2627450123 3.1114023 -1103.2168
+153471.2627451166 3.1113234 -1103.2761
+153472.2627452209 3.111284 -1103.2761
+153473.2627453252 3.111166 -1103.2168
+153474.2627454295 3.1109691 -1103.0984
+153475.2627455338 3.1109297 -1103.2366
+153476.2627456381 3.1108904 -1103.2761
+153477.2627457425 3.1106935 -1103.197
+153478.2627458468 3.1106148 -1103.1774
+153479.2627459511 3.1104968 -1103.197
+153480.2627460554 3.1104178 -1103.2562
+153481.2627461597 3.1102605 -1103.1576
+153482.262746264 3.1102211 -1103.1774
+153483.2627463683 3.1100636 -1103.1774
+153484.2627464726 3.1100636 -1103.1774
+153485.2627465769 3.1098273 -1103.2366
+153486.2627466812 3.1097879 -1103.2562
+153487.2627467855 3.1096699 -1103.197
+153488.2627468898 3.1096306 -1103.2761
+153489.2627469942 3.1095123 -1103.2168
+153490.2627470985 3.109473 -1103.2959
+153491.2627472028 3.109355 -1103.2168
+153492.2627473071 3.109158 -1103.2959
+153493.2627474114 3.109158 -1103.1774
+153494.2627475157 3.1090794 -1103.2168
+153495.26274762 3.1088824 -1103.197
+153496.2627477243 3.1088037 -1103.1576
+153497.2627478286 3.1088431 -1103.2562
+153498.2627479329 3.1086464 -1103.2168
+153499.2627480372 3.1086464 -1103.2959
+153500.2627481415 3.1085675 -1103.197
+153501.2627482458 3.1084888 -1103.2168
+153502.2627483502 3.1084495 -1103.197
+153503.2627484545 3.1083314 -1103.197
+153504.2627485588 3.1083314 -1103.2168
+153505.2627486631 3.1082132 -1103.2366
+153506.2627487674 3.1081738 -1103.2562
+153507.2627488717 3.1079769 -1103.197
+153508.262748976 3.1079769 -1103.197
+153509.2627490803 3.1078196 -1103.1774
+153510.2627491846 3.1077409 -1103.2366
+153511.2627492889 3.1077015 -1103.2761
+153512.2627493932 3.1077802 -1103.197
+153513.2627494975 3.1077015 -1103.2366
+153514.2627496019 3.1075439 -1103.1774
+153515.2627497062 3.1075439 -1103.2366
+153516.2627498105 3.1073866 -1103.2562
+153517.2627499148 3.1074259 -1103.197
+153518.2627500191 3.107229 -1103.0984
+153519.2627501234 3.107111 -1103.2562
+153520.2627502277 3.1070321 -1103.1378
+153521.262750332 3.1069534 -1103.2959
+153522.2627504363 3.1068747 -1103.197
+153523.2627505406 3.1067171 -1103.2959
+153524.2627506449 3.1065991 -1103.2761
+153525.2627507492 3.1065204 -1103.2366
+153526.2627508536 3.1064811 -1103.2761
+153527.2627509579 3.1064022 -1103.2366
+153528.2627510622 3.1063628 -1103.197
+153529.2627511665 3.1062055 -1103.197
+153530.2627512708 3.1061661 -1103.2366
+153531.2627513751 3.1060479 -1103.1182
+153532.2627514794 3.1058512 -1103.2366
+153533.2627515837 3.1058512 -1103.2562
+153534.262751688 3.1056936 -1103.1774
+153535.2627517923 3.1055756 -1103.2959
+153536.2627518966 3.1055362 -1103.2366
+153537.2627520009 3.1052606 -1103.2366
+153538.2627521052 3.1052606 -1103.2168
+153539.2627522096 3.1051424 -1103.2366
+153540.2627523139 3.1050243 -1103.1378
+153541.2627524182 3.1049457 -1103.2168
+153542.2627525225 3.1047881 -1103.197
+153543.2627526268 3.1047487 -1103.197
+153544.2627527311 3.1046307 -1103.2761
+153545.2627528354 3.1045911 -1103.197
+153546.2627529397 3.1043944 -1103.197
+153547.262753044 3.1043551 -1103.2366
+153548.2627531483 3.1041975 -1103.2562
+153549.2627532526 3.1041582 -1103.1774
+153550.2627533569 3.1039612 -1103.2366
+153551.2627534613 3.1040401 -1103.2761
+153552.2627535656 3.1039219 -1103.2366
+153553.2627536699 3.1037252 -1103.1774
+153554.2627537742 3.1036859 -1103.2168
+153555.2627538785 3.1037252 -1103.1378
+153556.2627539828 3.1035283 -1103.2366
+153557.2627540871 3.1034102 -1103.2761
+153558.2627541914 3.1033709 -1103.2168
+153559.2627542957 3.103292 -1103.2366
+153560.2627544 3.1032526 -1103.2761
+153561.2627545043 3.1030557 -1103.2562
+153562.2627546086 3.102977 -1103.2761
+153563.262754713 3.1027408 -1103.197
+153564.2627548173 3.1028197 -1103.2366
+153565.2627549216 3.1026227 -1103.2366
+153566.2627550259 3.1025441 -1103.197
+153567.2627551302 3.1025834 -1103.197
+153568.2627552345 3.1023865 -1103.197
+153569.2627553388 3.1022685 -1103.2761
+153570.2627554431 3.1020715 -1103.197
+153571.2627555474 3.1021504 -1103.2761
+153572.2627556517 3.1019142 -1103.2562
+153573.262755756 3.1017959 -1103.2366
+153574.2627558603 3.1015599 -1103.2168
+153575.2627559647 3.1014023 -1103.2562
+153576.262756069 3.1013629 -1103.1576
+153577.2627561733 3.1011267 -1103.2366
+153578.2627562776 3.1010087 -1103.2168
+153579.2627563819 3.1008511 -1103.2168
+153580.2627564862 3.100733 -1103.2562
+153581.2627565905 3.100615 -1103.1774
+153582.2627566948 3.1005754 -1103.2168
+153583.2627567991 3.1003788 -1103.2761
+153584.2627569034 3.1003001 -1103.197
+153585.2627570077 3.1002212 -1103.2366
+153586.262757112 3.1001031 -1103.197
+153587.2627572163 3.0999062 -1103.2366
+153588.2627573207 3.0998275 -1103.1576
+153589.262757425 3.0997882 -1103.2168
+153590.2627575293 3.0997095 -1103.2959
+153591.2627576336 3.0994339 -1103.2168
+153592.2627577379 3.0993946 -1103.2366
+153593.2627578422 3.0993156 -1103.1378
+153594.2627579465 3.0992763 -1103.1378
+153595.2627580508 3.0990796 -1103.1774
+153596.2627581551 3.098922 -1103.1576
+153597.2627582594 3.098804 -1103.2761
+153598.2627583637 3.0986857 -1103.2761
+153599.262758468 3.0985677 -1103.197
+153600.2627585724 3.0983708 -1103.197
+153601.2627586767 3.0982528 -1103.2168
+153602.262758781 3.0982134 -1103.2168
+153603.2627588853 3.0981741 -1103.1774
+153604.2627589896 3.0980165 -1103.2761
+153605.2627590939 3.0980558 -1103.2959
+153606.2627591982 3.0979378 -1103.1774
+153607.2627593025 3.0977015 -1103.2562
+153608.2627594068 3.0976622 -1103.2366
+153609.2627595111 3.0975046 -1103.2562
+153610.2627596154 3.0974653 -1103.3156
+153611.2627597197 3.0972686 -1103.197
+153612.2627598241 3.0971503 -1103.2168
+153613.2627599284 3.0970716 -1103.1774
+153614.2627600327 3.0968354 -1103.2366
+153615.262760137 3.0967567 -1103.2959
+153616.2627602413 3.096678 -1103.3551
+153617.2627603456 3.0965598 -1103.197
+153618.2627604499 3.0964417 -1103.0984
+153619.2627605542 3.0964024 -1103.2562
+153620.2627606585 3.0962844 -1103.1774
+153621.2627607628 3.0961661 -1103.2168
+153622.2627608671 3.0960481 -1103.1774
+153623.2627609714 3.0960875 -1103.1182
+153624.2627610757 3.0959299 -1103.2168
+153625.2627611801 3.0960481 -1103.197
+153626.2627612844 3.0957332 -1103.3353
+153627.2627613887 3.0956938 -1103.2168
+153628.262761493 3.0955362 -1103.3156
+153629.2627615973 3.0954576 -1103.2168
+153630.2627617016 3.0953393 -1103.2168
+153631.2627618059 3.0951426 -1103.1576
+153632.2627619102 3.0951033 -1103.2366
+153633.2627620145 3.094985 -1103.2366
+153634.2627621188 3.0949457 -1103.1774
+153635.2627622231 3.0947883 -1103.1378
+153636.2627623274 3.0946307 -1103.1774
+153637.2627624318 3.094552 -1103.2168
+153638.2627625361 3.0945127 -1103.2562
+153639.2627626404 3.0943551 -1103.2761
+153640.2627627447 3.0941584 -1103.2761
+153641.262762849 3.0941584 -1103.2761
+153642.2627629533 3.0940795 -1103.2366
+153643.2627630576 3.0940402 -1103.2761
+153644.2627631619 3.0938039 -1103.2168
+153645.2627632662 3.0936859 -1103.2761
+153646.2627633705 3.0936072 -1103.1774
+153647.2627634748 3.0933316 -1103.2562
+153648.2627635791 3.0933709 -1103.2366
+153649.2627636835 3.0932136 -1103.1774
+153650.2627637878 3.0931346 -1103.197
+153651.2627638921 3.0929379 -1103.2562
+153652.2627639964 3.0929379 -1103.2366
+153653.2627641007 3.0928986 -1103.197
+153654.262764205 3.0927804 -1103.2168
+153655.2627643093 3.0927017 -1103.197
+153656.2627644136 3.0927017 -1103.2168
+153657.2627645179 3.0924261 -1103.197
+153658.2627646222 3.0923867 -1103.3353
+153659.2627647265 3.0923474 -1103.2562
+153660.2627648308 3.0921898 -1103.1774
+153661.2627649351 3.0921111 -1103.2562
+153662.2627650395 3.0919142 -1103.2959
+153663.2627651438 3.0918355 -1103.2366
+153664.2627652481 3.0917175 -1103.1576
+153665.2627653524 3.0915599 -1103.197
+153666.2627654567 3.0915599 -1103.2168
+153667.262765561 3.0913236 -1103.1576
+153668.2627656653 3.0912843 -1103.2562
+153669.2627657696 3.0911269 -1103.197
+153670.2627658739 3.0909693 -1103.2168
+153671.2627659782 3.090812 -1103.2959
+153672.2627660825 3.0906544 -1103.1576
+153673.2627661868 3.0906544 -1103.3156
+153674.2627662912 3.0904577 -1103.2761
+153675.2627663955 3.0903001 -1103.2366
+153676.2627664998 3.0903001 -1103.3156
+153677.2627666041 3.0899851 -1103.1774
+153678.2627667084 3.0898671 -1103.2366
+153679.2627668127 3.0898278 -1103.197
+153680.262766917 3.0896308 -1103.2959
+153681.2627670213 3.0894732 -1103.2959
+153682.2627671256 3.0891979 -1103.2168
+153683.2627672299 3.0891583 -1103.2366
+153684.2627673342 3.0889616 -1103.197
+153685.2627674385 3.0888829 -1103.2959
+153686.2627675429 3.0887253 -1103.2562
+153687.2627676472 3.0884891 -1103.2366
+153688.2627677515 3.0884497 -1103.1576
+153689.2627678558 3.0882134 -1103.2168
+153690.2627679601 3.0881348 -1103.2366
+153691.2627680644 3.0880167 -1103.2366
+153692.2627681687 3.0877805 -1103.1774
+153693.262768273 3.0877018 -1103.2562
+153694.2627683773 3.0877411 -1103.1774
+153695.2627684816 3.0874655 -1103.2168
+153696.2627685859 3.0873868 -1103.2168
+153697.2627686902 3.0873079 -1103.2168
+153698.2627687946 3.0871506 -1103.2562
+153699.2627688989 3.086993 -1103.2366
+153700.2627690032 3.086875 -1103.2761
+153701.2627691075 3.0868356 -1103.2366
+153702.2627692118 3.0865993 -1103.197
+153703.2627693161 3.0864813 -1103.1774
+153704.2627694204 3.0864024 -1103.2366
+153705.2627695247 3.0862844 -1103.197
+153706.262769629 3.0861664 -1103.1774
+153707.2627697333 3.0862057 -1103.197
+153708.2627698376 3.0860481 -1103.2761
+153709.2627699419 3.0859301 -1103.2168
+153710.2627700462 3.0859301 -1103.1774
+153711.2627701506 3.0858514 -1103.2959
+153712.2627702549 3.0856938 -1103.2168
+153713.2627703592 3.0855758 -1103.197
+153714.2627704635 3.0854971 -1103.197
+153715.2627705678 3.0853395 -1103.2761
+153716.2627706721 3.0852609 -1103.2168
+153717.2627707764 3.0851426 -1103.197
+153718.2627708807 3.0851033 -1103.2168
+153719.262770985 3.0849853 -1103.1774
+153720.2627710893 3.0849066 -1103.197
+153721.2627711936 3.084749 -1103.1774
+153722.2627712979 3.0845916 -1103.3551
+153723.2627714023 3.0844734 -1103.1774
+153724.2627715066 3.0842767 -1103.2562
+153725.2627716109 3.0842371 -1103.2168
+153726.2627717152 3.0841191 -1103.3353
+153727.2627718195 3.0838041 -1103.1182
+153728.2627719238 3.0838828 -1103.2562
+153729.2627720281 3.0836861 -1103.1378
+153730.2627721324 3.0836072 -1103.2366
+153731.2627722367 3.0834892 -1103.2168
+153732.262772341 3.0833712 -1103.1774
+153733.2627724453 3.0832922 -1103.197
+153734.2627725496 3.0831742 -1103.1774
+153735.262772654 3.0831742 -1103.2562
+153736.2627727583 3.0831349 -1103.2761
+153737.2627728626 3.0830166 -1103.2761
+153738.2627729669 3.0827806 -1103.2562
+153739.2627730712 3.0828199 -1103.2562
+153740.2627731755 3.082623 -1103.1774
+153741.2627732798 3.082623 -1103.197
+153742.2627733841 3.0824263 -1103.3156
+153743.2627734884 3.0823867 -1103.3551
+153744.2627735927 3.0822687 -1103.2959
+153745.262773697 3.0821114 -1103.1774
+153746.2627738013 3.0820324 -1103.2761
+153747.2627739056 3.0819931 -1103.2168
+153748.26277401 3.0818357 -1103.2959
+153749.2627741143 3.0816782 -1103.2959
+153750.2627742186 3.0816782 -1103.1378
+153751.2627743229 3.0815208 -1103.2366
+153752.2627744272 3.0814419 -1103.197
+153753.2627745315 3.0814025 -1103.3353
+153754.2627746358 3.0812452 -1103.1576
+153755.2627747401 3.0811663 -1103.2562
+153756.2627748444 3.0810089 -1103.2562
+153757.2627749487 3.0808513 -1103.1774
+153758.262775053 3.0807726 -1103.2761
+153759.2627751573 3.0807333 -1103.2562
+153760.2627752617 3.0806546 -1103.197
+153761.262775366 3.080497 -1103.2168
+153762.2627754703 3.0804577 -1103.2366
+153763.2627755746 3.0802214 -1103.2168
+153764.2627756789 3.0801821 -1103.197
+153765.2627757832 3.0800641 -1103.197
+153766.2627758875 3.0800247 -1103.2761
+153767.2627759918 3.0799065 -1103.197
+153768.2627760961 3.0798278 -1103.1774
+153769.2627762004 3.0796704 -1103.1774
+153770.2627763047 3.0796704 -1103.2562
+153771.262776409 3.0795915 -1103.197
+153772.2627765134 3.0794342 -1103.1774
+153773.2627766177 3.0794342 -1103.2168
+153774.262776722 3.0791979 -1103.2562
+153775.2627768263 3.0790799 -1103.1576
+153776.2627769306 3.0790009 -1103.2168
+153777.2627770349 3.0788829 -1103.1576
+153778.2627771392 3.0788043 -1103.2761
+153779.2627772435 3.0788043 -1103.2366
+153780.2627773478 3.078686 -1103.2366
+153781.2627774521 3.078686 -1103.1576
+153782.2627775564 3.0786073 -1103.1774
+153783.2627776607 3.078371 -1103.2168
+153784.262777765 3.078371 -1103.2366
+153785.2627778694 3.078253 -1103.2562
+153786.2627779737 3.078135 -1103.3156
+153787.262778078 3.0780561 -1103.197
+153788.2627781823 3.0780168 -1103.197
+153789.2627782866 3.0777805 -1103.197
+153790.2627783909 3.0777805 -1103.2761
+153791.2627784952 3.0776625 -1103.2366
+153792.2627785995 3.0775838 -1103.2959
+153793.2627787038 3.0775445 -1103.1576
+153794.2627788081 3.0773475 -1103.2366
+153795.2627789124 3.0772688 -1103.2366
+153796.2627790167 3.0771506 -1103.2168
+153797.2627791211 3.0769932 -1103.2366
+153798.2627792254 3.0768356 -1103.1774
+153799.2627793297 3.0768356 -1103.2761
+153800.262779434 3.0766389 -1103.2168
+153801.2627795383 3.0764813 -1103.2562
+153802.2627796426 3.0764027 -1103.2761
+153803.2627797469 3.0762453 -1103.1774
+153804.2627798512 3.0759697 -1103.2562
+153805.2627799555 3.0759301 -1103.197
+153806.2627800598 3.0756941 -1103.2562
+153807.2627801641 3.0756152 -1103.2366
+153808.2627802684 3.0755758 -1103.197
+153809.2627803728 3.0753002 -1103.1774
+153810.2627804771 3.0752215 -1103.2761
+153811.2627805814 3.0749853 -1103.2366
+153812.2627806857 3.0749459 -1103.3156
+153813.26278079 3.0747886 -1103.1774
+153814.2627808943 3.0747886 -1103.2761
+153815.2627809986 3.074513 -1103.2366
+153816.2627811029 3.0744736 -1103.2761
+153817.2627812072 3.074198 -1103.2366
+153818.2627813115 3.0741587 -1103.2761
+153819.2627814158 3.0740798 -1103.3156
+153820.2627815201 3.0738831 -1103.2366
+153821.2627816244 3.0738044 -1103.2168
+153822.2627817288 3.0736074 -1103.2562
+153823.2627818331 3.0736468 -1103.3156
+153824.2627819374 3.0733318 -1103.2761
+153825.2627820417 3.0732925 -1103.2168
+153826.262782146 3.0731745 -1103.2562
+153827.2627822503 3.0730562 -1103.2959
+153828.2627823546 3.0730562 -1103.1576
+153829.2627824589 3.0728989 -1103.2366
+153830.2627825632 3.0727413 -1103.2366
+153831.2627826675 3.0727019 -1103.2366
+153832.2627827718 3.0725443 -1103.2761
+153833.2627828761 3.072505 -1103.2761
+153834.2627829805 3.0724657 -1103.2959
+153835.2627830848 3.072269 -1103.1774
+153836.2627831891 3.072072 -1103.3156
+153837.2627832934 3.0719934 -1103.1576
+153838.2627833977 3.0719144 -1103.1774
+153839.262783502 3.0717177 -1103.1576
+153840.2627836063 3.0715995 -1103.0984
+153841.2627837106 3.0715208 -1103.2168
+153842.2627838149 3.0714028 -1103.2761
+153843.2627839192 3.0714028 -1103.2562
+153844.2627840235 3.0712059 -1103.2959
+153845.2627841278 3.0711665 -1103.1576
+153846.2627842322 3.0708909 -1103.2168
+153847.2627843365 3.0708909 -1103.1774
+153848.2627844408 3.070694 -1103.197
+153849.2627845451 3.0707335 -1103.2168
+153850.2627846494 3.0704973 -1103.1774
+153851.2627847537 3.0703397 -1103.2959
+153852.262784858 3.0701823 -1103.2366
+153853.2627849623 3.070143 -1103.2168
+153854.2627850666 3.0700247 -1103.197
+153855.2627851709 3.0699067 -1103.2761
+153856.2627852752 3.0699461 -1103.2366
+153857.2627853795 3.069828 -1103.2761
+153858.2627854839 3.0697098 -1103.2366
+153859.2627855882 3.0695918 -1103.2168
+153860.2627856925 3.0695524 -1103.2761
+153861.2627857968 3.0694737 -1103.2959
+153862.2627859011 3.0694342 -1103.2168
+153863.2627860054 3.0692768 -1103.3156
+153864.2627861097 3.0691192 -1103.2959
+153865.262786214 3.0691192 -1103.197
+153866.2627863183 3.0690012 -1103.1774
+153867.2627864226 3.0689619 -1103.2562
+153868.2627865269 3.0688043 -1103.2168
+153869.2627866312 3.0687256 -1103.2366
+153870.2627867355 3.0686469 -1103.2168
+153871.2627868399 3.0685287 -1103.2562
+153872.2627869442 3.06845 -1103.1774
+153873.2627870485 3.068332 -1103.197
+153874.2627871528 3.0682137 -1103.2761
+153875.2627872571 3.0680957 -1103.2366
+153876.2627873614 3.0679383 -1103.1774
+153877.2627874657 3.0678988 -1103.2761
+153878.26278757 3.0678594 -1103.2366
+153879.2627876743 3.0677807 -1103.1182
+153880.2627877786 3.0675838 -1103.2168
+153881.2627878829 3.0675445 -1103.197
+153882.2627879872 3.0673871 -1103.2168
+153883.2627880916 3.0672295 -1103.1774
+153884.2627881959 3.0673084 -1103.2168
+153885.2627883002 3.0670328 -1103.2959
+153886.2627884045 3.0669146 -1103.197
+153887.2627885088 3.0668359 -1103.197
+153888.2627886131 3.0666783 -1103.3353
+153889.2627887174 3.0667572 -1103.1774
+153890.2627888217 3.0665209 -1103.2562
+153891.262788926 3.0664816 -1103.197
+153892.2627890303 3.0664029 -1103.1576
+153893.2627891346 3.0662453 -1103.2168
+153894.2627892389 3.0662847 -1103.2366
+153895.2627893433 3.066088 -1103.1576
+153896.2627894476 3.0659697 -1103.1576
+153897.2627895519 3.0657334 -1103.2761
+153898.2627896562 3.0657334 -1103.1774
+153899.2627897605 3.0656154 -1103.1774
+153900.2627898648 3.0654974 -1103.2366
+153901.2627899691 3.0654185 -1103.2168
+153902.2627900734 3.0653005 -1103.2761
+153903.2627901777 3.0651035 -1103.2562
+153904.262790282 3.0651035 -1103.1774
+153905.2627903863 3.0648279 -1103.2761
+153906.2627904906 3.0648279 -1103.1774
+153907.2627905949 3.0646312 -1103.2366
+153908.2627906993 3.0643556 -1103.2562
+153909.2627908036 3.064395 -1103.2366
+153910.2627909079 3.0642769 -1103.2761
+153911.2627910122 3.064198 -1103.2761
+153912.2627911165 3.0640407 -1103.197
+153913.2627912208 3.063962 -1103.197
+153914.2627913251 3.0638044 -1103.2761
+153915.2627914294 3.0637257 -1103.197
+153916.2627915337 3.0636864 -1103.2366
+153917.262791638 3.0634501 -1103.2168
+153918.2627917423 3.0634108 -1103.2562
+153919.2627918466 3.0632138 -1103.2168
+153920.262791951 3.0630171 -1103.197
+153921.2627920553 3.0627809 -1103.2562
+153922.2627921596 3.0627415 -1103.2761
+153923.2627922639 3.0625052 -1103.2562
+153924.2627923682 3.0625052 -1103.197
+153925.2627924725 3.0623083 -1103.1576
+153926.2627925768 3.0622296 -1103.197
+153927.2627926811 3.0620723 -1103.197
+153928.2627927854 3.0619147 -1103.2562
+153929.2627928897 3.0616784 -1103.2761
+153930.262792994 3.0615997 -1103.2761
+153931.2627930983 3.0614817 -1103.2168
+153932.2627932027 3.0612454 -1103.2168
+153933.262793307 3.0610878 -1103.1378
+153934.2627934113 3.0609305 -1103.2959
+153935.2627935156 3.0608912 -1103.2562
+153936.2627936199 3.0607336 -1103.1774
+153937.2627937242 3.0605369 -1103.2366
+153938.2627938285 3.0604186 -1103.2168
+153939.2627939328 3.0604579 -1103.1774
+153940.2627940371 3.0603006 -1103.1182
+153941.2627941414 3.0602219 -1103.2168
+153942.2627942457 3.060025 -1103.2366
+153943.26279435 3.0599856 -1103.2168
+153944.2627944543 3.0599463 -1103.2366
+153945.2627945587 3.0598674 -1103.3156
+153946.262794663 3.059828 -1103.2562
+153947.2627947673 3.0595524 -1103.3551
+153948.2627948716 3.0593951 -1103.2761
+153949.2627949759 3.0593557 -1103.2366
+153950.2627950802 3.0591981 -1103.2168
+153951.2627951845 3.0591195 -1103.197
+153952.2627952888 3.0588832 -1103.2168
+153953.2627953931 3.0588439 -1103.1774
+153954.2627954974 3.0585289 -1103.2761
+153955.2627956017 3.0584502 -1103.2562
+153956.262795706 3.0582139 -1103.2168
+153957.2627958104 3.058017 -1103.2366
+153958.2627959147 3.0579383 -1103.2562
+153959.262796019 3.057781 -1103.2959
+153960.2627961233 3.0576627 -1103.197
+153961.2627962276 3.057584 -1103.2959
+153962.2627963319 3.0573871 -1103.2761
+153963.2627964362 3.0574265 -1103.1576
+153964.2627965405 3.0571904 -1103.1774
+153965.2627966448 3.0571511 -1103.1576
+153966.2627967491 3.0569935 -1103.2168
+153967.2627968534 3.0568361 -1103.2562
+153968.2627969577 3.0569148 -1103.1576
+153969.2627970621 3.0566392 -1103.2366
+153970.2627971664 3.0565999 -1103.1774
+153971.2627972707 3.0564423 -1103.2959
+153972.262797375 3.0563636 -1103.2168
+153973.2627974793 3.056206 -1103.2761
+153974.2627975836 3.0562456 -1103.2562
+153975.2627976879 3.0560093 -1103.2168
+153976.2627977922 3.0558517 -1103.3156
+153977.2627978965 3.0556943 -1103.1774
+153978.2627980008 3.0555367 -1103.2959
+153979.2627981051 3.0554187 -1103.2761
+153980.2627982094 3.0552611 -1103.2761
+153981.2627983138 3.0551825 -1103.2562
+153982.2627984181 3.0549858 -1103.197
+153983.2627985224 3.0549462 -1103.2562
+153984.2627986267 3.0547888 -1103.1378
+153985.262798731 3.0547495 -1103.1774
+153986.2627988353 3.0547101 -1103.197
+153987.2627989396 3.0545132 -1103.2366
+153988.2627990439 3.0543163 -1103.1774
+153989.2627991482 3.0542769 -1103.2366
+153990.2627992525 3.0541196 -1103.2959
+153991.2627993568 3.053962 -1103.1378
+153992.2627994611 3.053844 -1103.2761
+153993.2627995654 3.0537257 -1103.1774
+153994.2627996698 3.053647 -1103.2959
+153995.2627997741 3.0534503 -1103.2562
+153996.2627998784 3.0532928 -1103.197
+153997.2627999827 3.0531354 -1103.2761
+153998.262800087 3.0530565 -1103.2366
+153999.2628001913 3.0529385 -1103.2562
+154000.2628002956 3.0528202 -1103.1774
+154001.2628003999 3.0526628 -1103.2761
+154002.2628005042 3.0525053 -1103.2366
+154003.2628006085 3.0525053 -1103.2761
+154004.2628007128 3.0523086 -1103.2366
+154005.2628008171 3.0521903 -1103.197
+154006.2628009215 3.0520723 -1103.2761
+154007.2628010258 3.0519543 -1103.1774
+154008.2628011301 3.0519543 -1103.2168
+154009.2628012344 3.0516787 -1103.2168
+154010.2628013387 3.0516 -1103.197
+154011.262801443 3.0514817 -1103.2168
+154012.2628015473 3.051403 -1103.1378
+154013.2628016516 3.0512061 -1103.1378
+154014.2628017559 3.0510881 -1103.2366
+154015.2628018602 3.0508518 -1103.1378
+154016.2628019645 3.0506945 -1103.2168
+154017.2628020688 3.0504975 -1103.2366
+154018.2628021732 3.0504582 -1103.2562
+154019.2628022775 3.0502219 -1103.197
+154020.2628023818 3.0501039 -1103.0984
+154021.2628024861 3.0500646 -1103.197
+154022.2628025904 3.049907 -1103.0588
+154023.2628026947 3.0498283 -1103.2366
+154024.262802799 3.049592 -1103.197
+154025.2628029033 3.049474 -1103.1774
+154026.2628030076 3.0494347 -1103.197
+154027.2628031119 3.0492771 -1103.2168
+154028.2628032162 3.0492377 -1103.2761
+154029.2628033205 3.049159 -1103.1182
+154030.2628034248 3.0489621 -1103.2761
+154031.2628035292 3.0489228 -1103.1576
+154032.2628036335 3.0488834 -1103.2959
+154033.2628037378 3.0487652 -1103.2562
+154034.2628038421 3.0486078 -1103.3156
+154035.2628039464 3.0484109 -1103.2168
+154036.2628040507 3.0484502 -1103.1774
+154037.262804155 3.0481353 -1103.1576
+154038.2628042593 3.0480959 -1103.2168
+154039.2628043636 3.0479779 -1103.2562
+154040.2628044679 3.0478992 -1103.1774
+154041.2628045722 3.0477417 -1103.197
+154042.2628046765 3.0476236 -1103.1576
+154043.2628047809 3.0474267 -1103.2168
+154044.2628048852 3.047348 -1103.2959
+154045.2628049895 3.0472691 -1103.1774
+154046.2628050938 3.0469937 -1103.197
+154047.2628051981 3.0470331 -1103.1774
+154048.2628053024 3.0468361 -1103.2168
+154049.2628054067 3.0467968 -1103.2366
+154050.262805511 3.0465605 -1103.197
+154051.2628056153 3.0465212 -1103.2366
+154052.2628057196 3.0463638 -1103.2168
+154053.2628058239 3.0462062 -1103.3156
+154054.2628059282 3.0461276 -1103.2959
+154055.2628060326 3.0460882 -1103.197
+154056.2628061369 3.0458913 -1103.1774
+154057.2628062412 3.0458126 -1103.2562
+154058.2628063455 3.0456944 -1103.1774
+154059.2628064498 3.0456157 -1103.2366
+154060.2628065541 3.0456157 -1103.2761
+154061.2628066584 3.0453794 -1103.197
+154062.2628067627 3.0452614 -1103.2168
+154063.262806867 3.0452614 -1103.2366
+154064.2628069713 3.0451038 -1103.0984
+154065.2628070756 3.0450251 -1103.2366
+154066.2628071799 3.0447888 -1103.2959
+154067.2628072842 3.0446708 -1103.2959
+154068.2628073886 3.0444739 -1103.197
+154069.2628074929 3.0443952 -1103.2562
+154070.2628075972 3.0441589 -1103.1576
+154071.2628077015 3.0440803 -1103.2562
+154072.2628078058 3.043844 -1103.1576
+154073.2628079101 3.0436866 -1103.1576
+154074.2628080144 3.0436473 -1103.2959
+154075.2628081187 3.0435684 -1103.2761
+154076.262808223 3.043411 -1103.1378
+154077.2628083273 3.0432141 -1103.2168
+154078.2628084316 3.0432141 -1103.1774
+154079.2628085359 3.0430961 -1103.197
+154080.2628086403 3.0428991 -1103.2761
+154081.2628087446 3.0427811 -1103.197
+154082.2628088489 3.0426235 -1103.2562
+154083.2628089532 3.0425448 -1103.3353
+154084.2628090575 3.0423481 -1103.2959
+154085.2628091618 3.0422299 -1103.2168
+154086.2628092661 3.042033 -1103.1774
+154087.2628093704 3.0419936 -1103.197
+154088.2628094747 3.0417576 -1103.197
+154089.262809579 3.041718 -1103.2562
+154090.2628096833 3.041482 -1103.2366
+154091.2628097876 3.0415213 -1103.2366
+154092.262809892 3.0413244 -1103.2562
+154093.2628099963 3.041167 -1103.2366
+154094.2628101006 3.0410881 -1103.1774
+154095.2628102049 3.0410094 -1103.3156
+154096.2628103092 3.0407732 -1103.2562
+154097.2628104135 3.0407732 -1103.2366
+154098.2628105178 3.0407338 -1103.2168
+154099.2628106221 3.0405371 -1103.1378
+154100.2628107264 3.0404189 -1103.2366
+154101.2628108307 3.0404582 -1103.2761
+154102.262810935 3.0402615 -1103.2168
+154103.2628110393 3.0401039 -1103.2562
+154104.2628111437 3.0400646 -1103.2168
+154105.262811248 3.0399072 -1103.2761
+154106.2628113523 3.0397103 -1103.3353
+154107.2628114566 3.0395923 -1103.3156
+154108.2628115609 3.0395923 -1103.2168
+154109.2628116652 3.039474 -1103.2168
+154110.2628117695 3.0393167 -1103.2366
+154111.2628118738 3.0392377 -1103.1774
+154112.2628119781 3.0390804 -1103.2562
+154113.2628120824 3.0389228 -1103.197
+154114.2628121867 3.0388834 -1103.2168
+154115.262812291 3.0386474 -1103.1182
+154116.2628123953 3.0384898 -1103.2562
+154117.2628124997 3.0384505 -1103.2168
+154118.262812604 3.0383322 -1103.1774
+154119.2628127083 3.0382929 -1103.2562
+154120.2628128126 3.0380962 -1103.2168
+154121.2628129169 3.0379386 -1103.2562
+154122.2628130212 3.0378599 -1103.2562
+154123.2628131255 3.0377419 -1103.2366
+154124.2628132298 3.037663 -1103.197
+154125.2628133341 3.037545 -1103.1774
+154126.2628134384 3.0374269 -1103.1774
+154127.2628135427 3.03723 -1103.1774
+154128.262813647 3.0370724 -1103.1774
+154129.2628137514 3.0369937 -1103.2562
+154130.2628138557 3.0367181 -1103.2562
+154131.26281396 3.0367181 -1103.1576
+154132.2628140643 3.0364819 -1103.197
+154133.2628141686 3.0364032 -1103.1774
+154134.2628142729 3.0362458 -1103.2168
+154135.2628143772 3.0360096 -1103.2959
+154136.2628144815 3.0360096 -1103.2168
+154137.2628145858 3.0358126 -1103.1576
+154138.2628146901 3.0356553 -1103.2562
+154139.2628147944 3.0353403 -1103.2761
+154140.2628148987 3.0353796 -1103.197
+154141.2628150031 3.0351827 -1103.1378
+154142.2628151074 3.0349071 -1103.197
+154143.2628152117 3.0349071 -1103.2168
+154144.262815316 3.0347104 -1103.1774
+154145.2628154203 3.0345922 -1103.2366
+154146.2628155246 3.0344741 -1103.3156
+154147.2628156289 3.0342772 -1103.1182
+154148.2628157332 3.0340412 -1103.2959
+154149.2628158375 3.0338442 -1103.2761
+154150.2628159418 3.0336866 -1103.197
+154151.2628160461 3.0335293 -1103.1576
+154152.2628161504 3.0333717 -1103.2366
+154153.2628162547 3.033175 -1103.2562
+154154.2628163591 3.033175 -1103.2168
+154155.2628164634 3.0329781 -1103.1576
+154156.2628165677 3.0328207 -1103.1576
+154157.262816672 3.0327024 -1103.3156
+154158.2628167763 3.0327024 -1103.3156
+154159.2628168806 3.0325451 -1103.2168
+154160.2628169849 3.0324268 -1103.2366
+154161.2628170892 3.0321908 -1103.2761
+154162.2628171935 3.0319545 -1103.2168
+154163.2628172978 3.0318363 -1103.197
+154164.2628174021 3.0316789 -1103.1774
+154165.2628175064 3.0314033 -1103.2168
+154166.2628176108 3.0313246 -1103.197
+154167.2628177151 3.0312064 -1103.1576
+154168.2628178194 3.0309703 -1103.2168
+154169.2628179237 3.0307734 -1103.2168
+154170.262818028 3.0305765 -1103.197
+154171.2628181323 3.0304585 -1103.1378
+154172.2628182366 3.0303798 -1103.197
+154173.2628183409 3.0301435 -1103.2761
+154174.2628184452 3.0300648 -1103.2168
+154175.2628185495 3.0299466 -1103.2366
+154176.2628186538 3.0297499 -1103.197
+154177.2628187581 3.0297105 -1103.1378
+154178.2628188625 3.0295529 -1103.2168
+154179.2628189668 3.0295136 -1103.2761
+154180.2628190711 3.029238 -1103.2562
+154181.2628191754 3.029238 -1103.2366
+154182.2628192797 3.0290411 -1103.2959
+154183.262819384 3.0289624 -1103.2761
+154184.2628194883 3.0288444 -1103.2366
+154185.2628195926 3.0286868 -1103.2168
+154186.2628196969 3.0284505 -1103.2168
+154187.2628198012 3.0283718 -1103.2168
+154188.2628199055 3.0282145 -1103.1576
+154189.2628200098 3.0281751 -1103.1576
+154190.2628201141 3.0279782 -1103.197
+154191.2628202185 3.0278995 -1103.1378
+154192.2628203228 3.0276632 -1103.2168
+154193.2628204271 3.0276239 -1103.2168
+154194.2628205314 3.0274663 -1103.2168
+154195.2628206357 3.0273483 -1103.1576
+154196.26282074 3.0271513 -1103.2562
+154197.2628208443 3.0270727 -1103.2562
+154198.2628209486 3.0269547 -1103.2366
+154199.2628210529 3.0267184 -1103.2761
+154200.2628211572 3.0265214 -1103.197
+154201.2628212615 3.0265608 -1103.1576
+154202.2628213658 3.0262852 -1103.197
+154203.2628214702 3.0262065 -1103.2366
+154204.2628215745 3.0260491 -1103.1774
+154205.2628216788 3.0259702 -1103.2761
+154206.2628217831 3.0258522 -1103.1576
+154207.2628218874 3.0257342 -1103.2761
+154208.2628219917 3.0254586 -1103.2168
+154209.262822096 3.0254192 -1103.197
+154210.2628222003 3.0250647 -1103.2562
+154211.2628223046 3.0250647 -1103.2761
+154212.2628224089 3.0249467 -1103.2959
+154213.2628225132 3.0247893 -1103.2366
+154214.2628226175 3.0245924 -1103.1576
+154215.2628227219 3.0245531 -1103.2761
+154216.2628228262 3.0244348 -1103.1774
+154217.2628229305 3.0240805 -1103.2761
+154218.2628230348 3.0240805 -1103.2168
+154219.2628231391 3.0239232 -1103.2366
+154220.2628232434 3.0238049 -1103.2959
+154221.2628233477 3.0235689 -1103.2168
+154222.262823452 3.0235293 -1103.2562
+154223.2628235563 3.02349 -1103.2168
+154224.2628236606 3.0232933 -1103.2562
+154225.2628237649 3.0231357 -1103.2761
+154226.2628238692 3.0229783 -1103.1774
+154227.2628239736 3.0228601 -1103.2562
+154228.2628240779 3.0225451 -1103.2168
+154229.2628241822 3.0224664 -1103.1774
+154230.2628242865 3.0223877 -1103.2562
+154231.2628243908 3.0221121 -1103.1576
+154232.2628244951 3.0219545 -1103.2562
+154233.2628245994 3.0217972 -1103.1378
+154234.2628247037 3.0217578 -1103.2168
+154235.262824808 3.0216396 -1103.1182
+154236.2628249123 3.0214429 -1103.197
+154237.2628250166 3.0212066 -1103.2562
+154238.2628251209 3.0211673 -1103.197
+154239.2628252252 3.020931 -1103.0984
+154240.2628253296 3.0207341 -1103.1774
+154241.2628254339 3.0206554 -1103.2959
+154242.2628255382 3.0205374 -1103.2761
+154243.2628256425 3.020498 -1103.2366
+154244.2628257468 3.0202224 -1103.197
+154245.2628258511 3.0201435 -1103.2366
+154246.2628259554 3.0198286 -1103.2562
+154247.2628260597 3.0197105 -1103.2366
+154248.262826164 3.0195136 -1103.1774
+154249.2628262683 3.0194349 -1103.1378
+154250.2628263726 3.0192776 -1103.197
+154251.2628264769 3.01912 -1103.1576
+154252.2628265813 3.0191593 -1103.2168
+154253.2628266856 3.0188837 -1103.2168
+154254.2628267899 3.018687 -1103.1378
+154255.2628268942 3.0184901 -1103.1774
+154256.2628269985 3.0184507 -1103.1774
+154257.2628271028 3.0183327 -1103.2366
+154258.2628272071 3.0181751 -1103.2761
+154259.2628273114 3.0180178 -1103.3551
+154260.2628274157 3.0178602 -1103.2168
+154261.26282752 3.0177815 -1103.1182
+154262.2628276243 3.0176239 -1103.1576
+154263.2628277286 3.0174665 -1103.2168
+154264.262827833 3.0173879 -1103.197
+154265.2628279373 3.0172696 -1103.1576
+154266.2628280416 3.0170333 -1103.197
+154267.2628281459 3.016994 -1103.2168
+154268.2628282502 3.0167973 -1103.2168
+154269.2628283545 3.0167184 -1103.2168
+154270.2628284588 3.016561 -1103.2959
+154271.2628285631 3.0163641 -1103.2366
+154272.2628286674 3.0162854 -1103.2168
+154273.2628287717 3.0162067 -1103.1182
+154274.262828876 3.0159311 -1103.197
+154275.2628289803 3.0157735 -1103.3156
+154276.2628290846 3.0156555 -1103.2168
+154277.262829189 3.0155768 -1103.2366
+154278.2628292933 3.0154586 -1103.2959
+154279.2628293976 3.0152619 -1103.197
+154280.2628295019 3.0151436 -1103.2562
+154281.2628296062 3.0149469 -1103.2562
+154282.2628297105 3.0148287 -1103.197
+154283.2628298148 3.0146713 -1103.2168
+154284.2628299191 3.0145137 -1103.2761
+154285.2628300234 3.0142775 -1103.2168
+154286.2628301277 3.0141988 -1103.2959
+154287.262830232 3.0140808 -1103.2959
+154288.2628303363 3.0139232 -1103.1774
+154289.2628304407 3.0138052 -1103.2959
+154290.262830545 3.0136476 -1103.2366
+154291.2628306493 3.0134509 -1103.2562
+154292.2628307536 3.0133326 -1103.2562
+154293.2628308579 3.0130966 -1103.2168
+154294.2628309622 3.0130177 -1103.2168
+154295.2628310665 3.0128996 -1103.2168
+154296.2628311708 3.0127027 -1103.2562
+154297.2628312751 3.0125847 -1103.2562
+154298.2628313794 3.012506 -1103.1378
+154299.2628314837 3.0123484 -1103.197
+154300.262831588 3.0120728 -1103.2366
+154301.2628316924 3.0120335 -1103.197
+154302.2628317967 3.0117972 -1103.2562
+154303.262831901 3.0117185 -1103.1774
+154304.2628320053 3.0115612 -1103.3156
+154305.2628321096 3.0114429 -1103.1576
+154306.2628322139 3.0112855 -1103.1576
+154307.2628323182 3.0110886 -1103.197
+154308.2628324225 3.0109706 -1103.2366
+154309.2628325268 3.0108523 -1103.2366
+154310.2628326311 3.0106556 -1103.2366
+154311.2628327354 3.010498 -1103.2168
+154312.2628328397 3.0104587 -1103.2168
+154313.262832944 3.01038 -1103.3156
+154314.2628330484 3.0101044 -1103.0785
+154315.2628331527 3.0098681 -1103.2562
+154316.262833257 3.0098288 -1103.1576
+154317.2628333613 3.0095925 -1103.2168
+154318.2628334656 3.0094745 -1103.2562
+154319.2628335699 3.0092776 -1103.2168
+154320.2628336742 3.0091596 -1103.2168
+154321.2628337785 3.0089233 -1103.2562
+154322.2628338828 3.0088446 -1103.2168
+154323.2628339871 3.0086083 -1103.1378
+154324.2628340914 3.008569 -1103.2168
+154325.2628341957 3.0084114 -1103.1576
+154326.2628343001 3.0082541 -1103.2366
+154327.2628344044 3.0081358 -1103.2168
+154328.2628345087 3.0078604 -1103.2366
+154329.262834613 3.0077815 -1103.197
+154330.2628347173 3.0077422 -1103.2761
+154331.2628348216 3.0075059 -1103.2761
+154332.2628349259 3.0073485 -1103.2761
+154333.2628350302 3.0071909 -1103.2168
+154334.2628351345 3.0070729 -1103.2959
+154335.2628352388 3.006876 -1103.3156
+154336.2628353431 3.0067186 -1103.2562
+154337.2628354474 3.0066006 -1103.2366
+154338.2628355518 3.0066006 -1103.1774
+154339.2628356561 3.0062068 -1103.1576
+154340.2628357604 3.0062068 -1103.1576
+154341.2628358647 3.0060101 -1103.1576
+154342.262835969 3.0059311 -1103.2761
+154343.2628360733 3.0058525 -1103.1774
+154344.2628361776 3.0054982 -1103.2366
+154345.2628362819 3.0053802 -1103.197
+154346.2628363862 3.0052619 -1103.1774
+154347.2628364905 3.0050256 -1103.197
+154348.2628365948 3.0050256 -1103.2562
+154349.2628366991 3.0046713 -1103.2168
+154350.2628368034 3.0045533 -1103.2366
+154351.2628369078 3.0044746 -1103.197
+154352.2628370121 3.004317 -1103.2366
+154353.2628371164 3.0040021 -1103.2562
+154354.2628372207 3.0039234 -1103.1576
+154355.262837325 3.0038052 -1103.2168
+154356.2628374293 3.0036478 -1103.2366
+154357.2628375336 3.0034902 -1103.3156
+154358.2628376379 3.0032542 -1103.2959
+154359.2628377422 3.0031359 -1103.2366
+154360.2628378465 3.0030572 -1103.2562
+154361.2628379508 3.0028999 -1103.1774
+154362.2628380551 3.0027423 -1103.197
+154363.2628381595 3.0026243 -1103.2168
+154364.2628382638 3.0024273 -1103.2366
+154365.2628383681 3.0022697 -1103.1774
+154366.2628384724 3.0022304 -1103.2366
+154367.2628385767 3.0021517 -1103.1774
+154368.262838681 3.0019155 -1103.2761
+154369.2628387853 3.0017974 -1103.2761
+154370.2628388896 3.0016398 -1103.2168
+154371.2628389939 3.0014431 -1103.197
+154372.2628390982 3.0014038 -1103.1774
+154373.2628392025 3.0012069 -1103.197
+154374.2628393068 3.0010099 -1103.2168
+154375.2628394112 3.0009313 -1103.197
+154376.2628395155 3.0008132 -1103.2366
+154377.2628396198 3.0006557 -1103.197
+154378.2628397241 3.00038 -1103.1774
+154379.2628398284 3.000262 -1103.2168
+154380.2628399327 3.0001044 -1103.197
+154381.262840037 2.9999077 -1103.1378
+154382.2628401413 2.9999077 -1103.2366
+154383.2628402456 2.9996715 -1103.2761
+154384.2628403499 2.9994745 -1103.197
+154385.2628404542 2.9994352 -1103.2366
+154386.2628405585 2.9991992 -1103.2761
+154387.2628406629 2.9991596 -1103.3156
+154388.2628407672 2.9990416 -1103.1774
+154389.2628408715 2.9987659 -1103.2168
+154390.2628409758 2.9986479 -1103.197
+154391.2628410801 2.9984903 -1103.1774
+154392.2628411844 2.9982936 -1103.2959
+154393.2628412887 2.9982147 -1103.1576
+154394.262841393 2.9980967 -1103.2959
+154395.2628414973 2.9978211 -1103.1774
+154396.2628416016 2.9976637 -1103.2761
+154397.2628417059 2.9976242 -1103.2959
+154398.2628418102 2.9974668 -1103.2959
+154399.2628419145 2.9971519 -1103.2562
+154400.2628420189 2.9971125 -1103.197
+154401.2628421232 2.9969156 -1103.2366
+154402.2628422275 2.9967976 -1103.3156
+154403.2628423318 2.99664 -1103.2761
+154404.2628424361 2.9965613 -1103.2761
+154405.2628425404 2.9964037 -1103.2366
+154406.2628426447 2.9961677 -1103.2761
+154407.262842749 2.9961677 -1103.2168
+154408.2628428533 2.9959707 -1103.1774
+154409.2628429576 2.9958527 -1103.1774
+154410.2628430619 2.9956951 -1103.197
+154411.2628431662 2.9956164 -1103.2761
+154412.2628432706 2.9953802 -1103.3156
+154413.2628433749 2.9952621 -1103.2761
+154414.2628434792 2.9950652 -1103.2366
+154415.2628435835 2.9949865 -1103.1576
+154416.2628436878 2.9947896 -1103.2366
+154417.2628437921 2.9946716 -1103.1774
+154418.2628438964 2.9945533 -1103.2562
+154419.2628440007 2.9943566 -1103.2168
+154420.262844105 2.9941597 -1103.2366
+154421.2628442093 2.9940023 -1103.197
+154422.2628443136 2.9938447 -1103.1576
+154423.2628444179 2.9936085 -1103.2959
+154424.2628445223 2.9934511 -1103.2168
+154425.2628446266 2.9932542 -1103.1774
+154426.2628447309 2.9932542 -1103.1378
+154427.2628448352 2.9930968 -1103.2168
+154428.2628449395 2.9929786 -1103.2168
+154429.2628450438 2.9927819 -1103.2168
+154430.2628451481 2.9925849 -1103.2562
+154431.2628452524 2.9925456 -1103.2761
+154432.2628453567 2.9923487 -1103.2168
+154433.262845461 2.9922307 -1103.2562
+154434.2628455653 2.9919944 -1103.2761
+154435.2628456696 2.9919157 -1103.2761
+154436.2628457739 2.991837 -1103.197
+154437.2628458783 2.9915614 -1103.2168
+154438.2628459826 2.9914432 -1103.2562
+154439.2628460869 2.9914432 -1103.2562
+154440.2628461912 2.9910889 -1103.2959
+154441.2628462955 2.9910102 -1103.2562
+154442.2628463998 2.9908922 -1103.2959
+154443.2628465041 2.9906952 -1103.2562
+154444.2628466084 2.9905376 -1103.2761
+154445.2628467127 2.9903409 -1103.1378
+154446.262846817 2.9901834 -1103.2562
+154447.2628469213 2.9901047 -1103.197
+154448.2628470256 2.9899077 -1103.1378
+154449.26284713 2.9897504 -1103.1774
+154450.2628472343 2.9895928 -1103.2562
+154451.2628473386 2.9895535 -1103.197
+154452.2628474429 2.9893961 -1103.2562
+154453.2628475472 2.9892778 -1103.2761
+154454.2628476515 2.9890418 -1103.1774
+154455.2628477558 2.9889235 -1103.2562
+154456.2628478601 2.9887269 -1103.197
+154457.2628479644 2.9884906 -1103.1774
+154458.2628480687 2.9883723 -1103.3156
+154459.262848173 2.9881363 -1103.2366
+154460.2628482773 2.9879787 -1103.2959
+154461.2628483817 2.9879 -1103.1182
+154462.262848486 2.9876637 -1103.197
+154463.2628485903 2.9873488 -1103.2366
+154464.2628486946 2.9871914 -1103.2562
+154465.2628487989 2.9870338 -1103.2168
+154466.2628489032 2.9869552 -1103.2761
+154467.2628490075 2.9867582 -1103.2959
+154468.2628491118 2.9866796 -1103.1774
+154469.2628492161 2.9864826 -1103.3156
+154470.2628493204 2.9863646 -1103.2168
+154471.2628494247 2.9861283 -1103.2168
+154472.262849529 2.9860497 -1103.2761
+154473.2628496333 2.9859314 -1103.1576
+154474.2628497377 2.9856954 -1103.197
+154475.262849842 2.9856164 -1103.2168
+154476.2628499463 2.9855378 -1103.2562
+154477.2628500506 2.9854198 -1103.3156
+154478.2628501549 2.9851835 -1103.1378
+154479.2628502592 2.9849472 -1103.2761
+154480.2628503635 2.9849079 -1103.1576
+154481.2628504678 2.9847505 -1103.2366
+154482.2628505721 2.9845536 -1103.2366
+154483.2628506764 2.9843173 -1103.2366
+154484.2628507807 2.9841206 -1103.2366
+154485.262850885 2.9840024 -1103.2168
+154486.2628509894 2.9837267 -1103.2366
+154487.2628510937 2.9836874 -1103.2761
+154488.262851198 2.98353 -1103.2168
+154489.2628513023 2.9832544 -1103.2761
+154490.2628514066 2.9830968 -1103.2761
+154491.2628515109 2.9830182 -1103.3353
+154492.2628516152 2.9827819 -1103.1378
+154493.2628517195 2.9825456 -1103.1774
+154494.2628518238 2.9824669 -1103.197
+154495.2628519281 2.9822307 -1103.197
+154496.2628520324 2.9821126 -1103.2562
+154497.2628521367 2.981837 -1103.1774
+154498.2628522411 2.9817584 -1103.1576
+154499.2628523454 2.9814827 -1103.1182
+154500.2628524497 2.9813254 -1103.2366
+154501.262852554 2.9812071 -1103.3156
+154502.2628526583 2.9809709 -1103.2562
+154503.2628527626 2.9808528 -1103.3156
+154504.2628528669 2.9807742 -1103.2168
+154505.2628529712 2.9805772 -1103.2168
+154506.2628530755 2.9805772 -1103.2959
+154507.2628531798 2.9802229 -1103.197
+154508.2628532841 2.980026 -1103.2168
+154509.2628533884 2.9799867 -1103.2562
+154510.2628534928 2.9797504 -1103.1774
+154511.2628535971 2.9795537 -1103.2562
+154512.2628537014 2.9793961 -1103.2366
+154513.2628538057 2.9793174 -1103.2366
+154514.26285391 2.9791994 -1103.2761
+154515.2628540143 2.9789631 -1103.2168
+154516.2628541186 2.9788055 -1103.0391
+154517.2628542229 2.9786482 -1103.197
+154518.2628543272 2.9785299 -1103.2761
+154519.2628544315 2.9783726 -1103.2562
+154520.2628545358 2.9782939 -1103.1774
+154521.2628546401 2.9780576 -1103.197
+154522.2628547444 2.9778607 -1103.2366
+154523.2628548488 2.977782 -1103.2959
+154524.2628549531 2.9775851 -1103.1378
+154525.2628550574 2.9774671 -1103.2366
+154526.2628551617 2.9773095 -1103.2168
+154527.262855266 2.9771128 -1103.2366
+154528.2628553703 2.9769552 -1103.2168
+154529.2628554746 2.9769552 -1103.2366
+154530.2628555789 2.9767585 -1103.1774
+154531.2628556832 2.9766009 -1103.2959
+154532.2628557875 2.9763646 -1103.197
+154533.2628558918 2.9762466 -1103.2761
+154534.2628559961 2.9760103 -1103.1774
+154535.2628561005 2.9758923 -1103.2366
+154536.2628562048 2.9757347 -1103.2168
+154537.2628563091 2.9754987 -1103.1576
+154538.2628564134 2.9753017 -1103.1774
+154539.2628565177 2.9752231 -1103.1774
+154540.262856622 2.9749868 -1103.197
+154541.2628567263 2.9748688 -1103.1378
+154542.2628568306 2.9747112 -1103.1774
+154543.2628569349 2.9745142 -1103.2366
+154544.2628570392 2.9743176 -1103.2366
+154545.2628571435 2.9741993 -1103.2562
+154546.2628572478 2.9739633 -1103.2366
+154547.2628573522 2.9737663 -1103.2366
+154548.2628574565 2.9736087 -1103.2168
+154549.2628575608 2.9733334 -1103.2168
+154550.2628576651 2.9733334 -1103.2366
+154551.2628577694 2.9730577 -1103.1774
+154552.2628578737 2.9729002 -1103.2761
+154553.262857978 2.9727428 -1103.1378
+154554.2628580823 2.9725065 -1103.2761
+154555.2628581866 2.9723096 -1103.197
+154556.2628582909 2.9722703 -1103.2366
+154557.2628583952 2.9719946 -1103.2366
+154558.2628584995 2.9718766 -1103.197
+154559.2628586038 2.9716797 -1103.2562
+154560.2628587082 2.971601 -1103.2366
+154561.2628588125 2.9713647 -1103.2366
+154562.2628589168 2.971168 -1103.197
+154563.2628590211 2.9710498 -1103.1774
+154564.2628591254 2.9709318 -1103.2959
+154565.2628592297 2.9707742 -1103.2761
+154566.262859334 2.9705775 -1103.197
+154567.2628594383 2.9704199 -1103.1576
+154568.2628595426 2.9701836 -1103.2366
+154569.2628596469 2.9700263 -1103.2168
+154570.2628597512 2.9698293 -1103.2562
+154571.2628598555 2.9697506 -1103.2562
+154572.2628599599 2.9695537 -1103.3156
+154573.2628600642 2.969357 -1103.1774
+154574.2628601685 2.9692388 -1103.2366
+154575.2628602728 2.9690027 -1103.1378
+154576.2628603771 2.9688451 -1103.2366
+154577.2628604814 2.9686875 -1103.2366
+154578.2628605857 2.9684908 -1103.2761
+154579.26286069 2.9684122 -1103.2366
+154580.2628607943 2.9682152 -1103.2168
+154581.2628608986 2.9680576 -1103.2168
+154582.2628610029 2.9679003 -1103.197
+154583.2628611072 2.9677033 -1103.2562
+154584.2628612116 2.9676247 -1103.197
+154585.2628613159 2.9675066 -1103.2761
+154586.2628614202 2.9672704 -1103.2562
+154587.2628615245 2.9671917 -1103.2168
+154588.2628616288 2.9670341 -1103.1774
+154589.2628617331 2.9667978 -1103.2562
+154590.2628618374 2.9666405 -1103.2366
+154591.2628619417 2.9664829 -1103.197
+154592.262862046 2.9662862 -1103.1576
+154593.2628621503 2.9661286 -1103.1774
+154594.2628622546 2.9659319 -1103.2168
+154595.2628623589 2.9657743 -1103.2562
+154596.2628624632 2.9655774 -1103.197
+154597.2628625676 2.9656169 -1103.197
+154598.2628626719 2.9653413 -1103.2562
+154599.2628627762 2.9651051 -1103.2761
+154600.2628628805 2.9649868 -1103.2562
+154601.2628629848 2.9647901 -1103.197
+154602.2628630891 2.9645538 -1103.2761
+154603.2628631934 2.9644752 -1103.3156
+154604.2628632977 2.9643569 -1103.197
+154605.262863402 2.9641209 -1103.197
+154606.2628635063 2.9639633 -1103.2366
+154607.2628636106 2.9638059 -1103.2761
+154608.2628637149 2.963609 -1103.1378
+154609.2628638193 2.9633334 -1103.197
+154610.2628639236 2.9633727 -1103.197
+154611.2628640279 2.9630971 -1103.2366
+154612.2628641322 2.9628215 -1103.197
+154613.2628642365 2.9627428 -1103.2366
+154614.2628643408 2.9624279 -1103.1774
+154615.2628644451 2.9623098 -1103.2761
+154616.2628645494 2.9620736 -1103.2168
+154617.2628646537 2.9619555 -1103.197
+154618.262864758 2.9617586 -1103.2761
+154619.2628648623 2.9616013 -1103.2562
+154620.2628649666 2.9612861 -1103.197
+154621.262865071 2.9611287 -1103.1576
+154622.2628651753 2.9610107 -1103.3156
+154623.2628652796 2.9608138 -1103.2761
+154624.2628653839 2.9606562 -1103.1774
+154625.2628654882 2.9605775 -1103.197
+154626.2628655925 2.9603412 -1103.197
+154627.2628656968 2.9601839 -1103.197
+154628.2628658011 2.9600658 -1103.1774
+154629.2628659054 2.9599476 -1103.2366
+154630.2628660097 2.9597507 -1103.2562
+154631.262866114 2.9595146 -1103.197
+154632.2628662183 2.9594753 -1103.1774
+154633.2628663227 2.959239 -1103.2366
+154634.262866427 2.9589634 -1103.2761
+154635.2628665313 2.9588058 -1103.2168
+154636.2628666356 2.9587271 -1103.2562
+154637.2628667399 2.9584515 -1103.197
+154638.2628668442 2.9584122 -1103.2562
+154639.2628669485 2.9582548 -1103.2168
+154640.2628670528 2.9581759 -1103.2168
+154641.2628671571 2.9578609 -1103.2366
+154642.2628672614 2.9577036 -1103.2168
+154643.2628673657 2.9575067 -1103.1774
+154644.26286747 2.9574673 -1103.1774
+154645.2628675743 2.95731 -1103.2168
+154646.2628676787 2.957113 -1103.2959
+154647.262867783 2.9569161 -1103.1576
+154648.2628678873 2.9568374 -1103.197
+154649.2628679916 2.9566405 -1103.197
+154650.2628680959 2.9563651 -1103.2168
+154651.2628682002 2.9562469 -1103.197
+154652.2628683045 2.9561682 -1103.197
+154653.2628684088 2.9559712 -1103.197
+154654.2628685131 2.9557745 -1103.2562
+154655.2628686174 2.955617 -1103.2562
+154656.2628687217 2.9554989 -1103.197
+154657.262868826 2.955184 -1103.2366
+154658.2628689304 2.9551051 -1103.2168
+154659.2628690347 2.9549084 -1103.1774
+154660.262869139 2.9547508 -1103.197
+154661.2628692433 2.9545541 -1103.2761
+154662.2628693476 2.9545147 -1103.2761
+154663.2628694519 2.9543965 -1103.1378
+154664.2628695562 2.9541209 -1103.2959
+154665.2628696605 2.9539635 -1103.2959
+154666.2628697648 2.9537272 -1103.2168
+154667.2628698691 2.9536879 -1103.2959
+154668.2628699734 2.953491 -1103.2959
+154669.2628700777 2.9534123 -1103.2562
+154670.2628701821 2.9530973 -1103.2562
+154671.2628702864 2.9530187 -1103.1774
+154672.2628703907 2.9527037 -1103.2761
+154673.262870495 2.9527037 -1103.3353
+154674.2628705993 2.9525068 -1103.1774
+154675.2628707036 2.9523098 -1103.2761
+154676.2628708079 2.9521525 -1103.1774
+154677.2628709122 2.9519162 -1103.2168
+154678.2628710165 2.9518769 -1103.3156
+154679.2628711208 2.9517193 -1103.2562
+154680.2628712251 2.9516013 -1103.2761
+154681.2628713294 2.9512863 -1103.2562
+154682.2628714337 2.951129 -1103.2562
+154683.2628715381 2.95105 -1103.3156
+154684.2628716424 2.9507744 -1103.2761
+154685.2628717467 2.9506958 -1103.197
+154686.262871851 2.9504595 -1103.2562
+154687.2628719553 2.9503021 -1103.197
+154688.2628720596 2.9501445 -1103.2562
+154689.2628721639 2.9499872 -1103.2168
+154690.2628722682 2.9499085 -1103.197
+154691.2628723725 2.9497902 -1103.2168
+154692.2628724768 2.9495146 -1103.197
+154693.2628725811 2.949239 -1103.2562
+154694.2628726854 2.949121 -1103.2562
+154695.2628727898 2.9489634 -1103.2761
+154696.2628728941 2.948806 -1103.2168
+154697.2628729984 2.9486091 -1103.1576
+154698.2628731027 2.9484911 -1103.197
+154699.262873207 2.9482155 -1103.2366
+154700.2628733113 2.9480581 -1103.2168
+154701.2628734156 2.9479005 -1103.197
+154702.2628735199 2.9478219 -1103.2168
+154703.2628736242 2.9475856 -1103.2366
+154704.2628737285 2.9475069 -1103.1378
+154705.2628738328 2.9473493 -1103.2959
+154706.2628739371 2.947113 -1103.2366
+154707.2628740415 2.9469557 -1103.1774
+154708.2628741458 2.9466801 -1103.2562
+154709.2628742501 2.9466407 -1103.1774
+154710.2628743544 2.9464045 -1103.197
+154711.2628744587 2.9462471 -1103.197
+154712.262874563 2.9459321 -1103.2562
+154713.2628746673 2.9458928 -1103.2761
+154714.2628747716 2.9457352 -1103.2562
+154715.2628748759 2.9454989 -1103.2562
+154716.2628749802 2.9453809 -1103.2761
+154717.2628750845 2.9452233 -1103.2168
+154718.2628751888 2.944869 -1103.1774
+154719.2628752931 2.9448297 -1103.2562
+154720.2628753975 2.9445934 -1103.2168
+154721.2628755018 2.9444361 -1103.2366
+154722.2628756061 2.9441998 -1103.2761
+154723.2628757104 2.9441211 -1103.1774
+154724.2628758147 2.9438455 -1103.197
+154725.262875919 2.9437275 -1103.1576
+154726.2628760233 2.9435699 -1103.1774
+154727.2628761276 2.943373 -1103.2168
+154728.2628762319 2.9432549 -1103.0984
+154729.2628763362 2.9430187 -1103.1378
+154730.2628764405 2.9427431 -1103.1182
+154731.2628765448 2.9426644 -1103.1774
+154732.2628766492 2.9424675 -1103.2959
+154733.2628767535 2.9422708 -1103.2562
+154734.2628768578 2.9420738 -1103.197
+154735.2628769621 2.9419558 -1103.2761
+154736.2628770664 2.9416802 -1103.1774
+154737.2628771707 2.9416015 -1103.3353
+154738.262877275 2.9413259 -1103.2168
+154739.2628773793 2.9412076 -1103.2168
+154740.2628774836 2.9409716 -1103.2761
+154741.2628775879 2.9408534 -1103.197
+154742.2628776922 2.9405384 -1103.2562
+154743.2628777965 2.9404204 -1103.2168
+154744.2628779009 2.9401448 -1103.197
+154745.2628780052 2.9399872 -1103.2959
+154746.2628781095 2.9397905 -1103.2366
+154747.2628782138 2.9396329 -1103.197
+154748.2628783181 2.9393966 -1103.2761
+154749.2628784224 2.9392786 -1103.1774
+154750.2628785267 2.9390423 -1103.3353
+154751.262878631 2.9387667 -1103.1774
+154752.2628787353 2.9386094 -1103.2562
+154753.2628788396 2.9384518 -1103.2562
+154754.2628789439 2.9382551 -1103.2168
+154755.2628790482 2.9380188 -1103.1182
+154756.2628791525 2.9379795 -1103.197
+154757.2628792569 2.9375858 -1103.1576
+154758.2628793612 2.9374676 -1103.197
+154759.2628794655 2.9372709 -1103.2761
+154760.2628795698 2.9370739 -1103.1774
+154761.2628796741 2.9369953 -1103.2562
+154762.2628797784 2.9368377 -1103.1774
+154763.2628798827 2.9365621 -1103.2562
+154764.262879987 2.9363258 -1103.2366
+154765.2628800913 2.9362864 -1103.197
+154766.2628801956 2.9360898 -1103.2761
+154767.2628802999 2.9358928 -1103.2168
+154768.2628804042 2.9356565 -1103.1774
+154769.2628805086 2.9354599 -1103.2366
+154770.2628806129 2.9353023 -1103.1182
+154771.2628807172 2.9351056 -1103.0785
+154772.2628808215 2.9348693 -1103.1378
+154773.2628809258 2.9347906 -1103.1774
+154774.2628810301 2.9345543 -1103.2562
+154775.2628811344 2.9343967 -1103.1378
+154776.2628812387 2.9341211 -1103.2959
+154777.262881343 2.9341211 -1103.1774
+154778.2628814473 2.9337668 -1103.1774
+154779.2628815516 2.9336095 -1103.2761
+154780.2628816559 2.9334126 -1103.2959
+154781.2628817603 2.9331763 -1103.3156
+154782.2628818646 2.9331763 -1103.1774
+154783.2628819689 2.9329007 -1103.197
+154784.2628820732 2.9325857 -1103.2168
+154785.2628821775 2.932507 -1103.1774
+154786.2628822818 2.9322708 -1103.2168
+154787.2628823861 2.9321527 -1103.2761
+154788.2628824904 2.9318771 -1103.3156
+154789.2628825947 2.9316015 -1103.2168
+154790.262882699 2.9315622 -1103.1774
+154791.2628828033 2.9312472 -1103.2366
+154792.2628829076 2.9310896 -1103.2761
+154793.262883012 2.9308536 -1103.2366
+154794.2628831163 2.9307353 -1103.197
+154795.2628832206 2.9306173 -1103.197
+154796.2628833249 2.9304204 -1103.3353
+154797.2628834292 2.9300661 -1103.1774
+154798.2628835335 2.9299481 -1103.197
+154799.2628836378 2.9297512 -1103.2168
+154800.2628837421 2.9295149 -1103.2366
+154801.2628838464 2.9293575 -1103.2168
+154802.2628839507 2.9293182 -1103.1576
+154803.262884055 2.9290426 -1103.2761
+154804.2628841593 2.9289243 -1103.2562
+154805.2628842636 2.9286094 -1103.1576
+154806.262884368 2.9285307 -1103.2562
+154807.2628844723 2.9282551 -1103.2366
+154808.2628845766 2.9281371 -1103.2562
+154809.2628846809 2.9279795 -1103.2562
+154810.2628847852 2.9277828 -1103.2761
+154811.2628848895 2.9275858 -1103.3156
+154812.2628849938 2.9274285 -1103.2366
+154813.2628850981 2.9271922 -1103.197
+154814.2628852024 2.9269559 -1103.2959
+154815.2628853067 2.9268379 -1103.197
+154816.262885411 2.9267197 -1103.2168
+154817.2628855153 2.9264441 -1103.197
+154818.2628856197 2.926326 -1103.2168
+154819.262885724 2.926208 -1103.2168
+154820.2628858283 2.9260504 -1103.3156
+154821.2628859326 2.9258142 -1103.1774
+154822.2628860369 2.9256961 -1103.2562
+154823.2628861412 2.9254599 -1103.2366
+154824.2628862455 2.9252236 -1103.197
+154825.2628863498 2.9251449 -1103.2168
+154826.2628864541 2.9249482 -1103.197
+154827.2628865584 2.9247513 -1103.2562
+154828.2628866627 2.9245937 -1103.197
+154829.262886767 2.9242787 -1103.2366
+154830.2628868714 2.9242394 -1103.1774
+154831.2628869757 2.9240427 -1103.1576
+154832.26288708 2.9239244 -1103.2168
+154833.2628871843 2.9237671 -1103.1576
+154834.2628872886 2.9234521 -1103.2168
+154835.2628873929 2.9232945 -1103.2562
+154836.2628874972 2.9231372 -1103.197
+154837.2628876015 2.9229403 -1103.197
+154838.2628877058 2.9228222 -1103.2168
+154839.2628878101 2.9225073 -1103.1774
+154840.2628879144 2.9223497 -1103.1774
+154841.2628880187 2.922153 -1103.2562
+154842.262888123 2.9219954 -1103.1576
+154843.2628882274 2.9218378 -1103.2562
+154844.2628883317 2.9216018 -1103.197
+154845.262888436 2.9214048 -1103.197
+154846.2628885403 2.9212079 -1103.2562
+154847.2628886446 2.9211292 -1103.1378
+154848.2628887489 2.9208143 -1103.1378
+154849.2628888532 2.9207356 -1103.2761
+154850.2628889575 2.9205387 -1103.2761
+154851.2628890618 2.9202237 -1103.197
+154852.2628891661 2.920145 -1103.2366
+154853.2628892704 2.9199088 -1103.2959
+154854.2628893747 2.9197907 -1103.2366
+154855.2628894791 2.9195151 -1103.2562
+154856.2628895834 2.9193182 -1103.197
+154857.2628896877 2.9192002 -1103.2168
+154858.262889792 2.9188852 -1103.3156
+154859.2628898963 2.9188066 -1103.2959
+154860.2628900006 2.9185703 -1103.2366
+154861.2628901049 2.918334 -1103.2761
+154862.2628902092 2.9182553 -1103.2366
+154863.2628903135 2.9180191 -1103.2168
+154864.2628904178 2.9177041 -1103.2562
+154865.2628905221 2.9176254 -1103.197
+154866.2628906264 2.9174678 -1103.2959
+154867.2628907308 2.9172711 -1103.197
+154868.2628908351 2.9170742 -1103.2959
+154869.2628909394 2.9167199 -1103.1576
+154870.2628910437 2.9167199 -1103.1774
+154871.262891148 2.9164443 -1103.2168
+154872.2628912523 2.9162867 -1103.2168
+154873.2628913566 2.9159718 -1103.197
+154874.2628914609 2.9157751 -1103.2562
+154875.2628915652 2.9156175 -1103.197
+154876.2628916695 2.9155388 -1103.2168
+154877.2628917738 2.9153419 -1103.1774
+154878.2628918781 2.9151452 -1103.1774
+154879.2628919824 2.9148695 -1103.2761
+154880.2628920868 2.9146726 -1103.2761
+154881.2628921911 2.9144759 -1103.1774
+154882.2628922954 2.9143183 -1103.3353
+154883.2628923997 2.9140821 -1103.2959
+154884.262892504 2.9139247 -1103.1774
+154885.2628926083 2.9136884 -1103.2562
+154886.2628927126 2.9135311 -1103.2366
+154887.2628928169 2.9133341 -1103.1576
+154888.2628929212 2.9130192 -1103.2562
+154889.2628930255 2.9129798 -1103.2366
+154890.2628931298 2.9126256 -1103.2168
+154891.2628932341 2.9127042 -1103.1774
+154892.2628933385 2.9123499 -1103.2562
+154893.2628934428 2.912153 -1103.2168
+154894.2628935471 2.9119561 -1103.197
+154895.2628936514 2.91172 -1103.2562
+154896.2628937557 2.9116411 -1103.1182
+154897.26289386 2.9114838 -1103.1774
+154898.2628939643 2.9111295 -1103.2562
+154899.2628940686 2.9109719 -1103.2959
+154900.2628941729 2.9107356 -1103.1576
+154901.2628942772 2.9105389 -1103.2168
+154902.2628943815 2.910342 -1103.2168
+154903.2628944858 2.910224 -1103.2366
+154904.2628945902 2.9099877 -1103.2168
+154905.2628946945 2.9098697 -1103.2168
+154906.2628947988 2.9096334 -1103.2761
+154907.2628949031 2.9095151 -1103.2168
+154908.2628950074 2.9093578 -1103.2562
+154909.2628951117 2.9091215 -1103.197
+154910.262895216 2.9088852 -1103.2761
+154911.2628953203 2.9086885 -1103.2562
+154912.2628954246 2.9086492 -1103.0984
+154913.2628955289 2.9082553 -1103.2366
+154914.2628956332 2.908098 -1103.1774
+154915.2628957375 2.907901 -1103.197
+154916.2628958419 2.907783 -1103.2959
+154917.2628959462 2.9075861 -1103.1774
+154918.2628960505 2.9073498 -1103.1576
+154919.2628961548 2.9072318 -1103.197
+154920.2628962591 2.9069562 -1103.1576
+154921.2628963634 2.9067199 -1103.197
+154922.2628964677 2.9066019 -1103.2562
+154923.262896572 2.9064445 -1103.2168
+154924.2628966763 2.9061296 -1103.2366
+154925.2628967806 2.9058933 -1103.2366
+154926.2628968849 2.9057751 -1103.1576
+154927.2628969892 2.9054995 -1103.2366
+154928.2628970935 2.9053028 -1103.2959
+154929.2628971979 2.9051452 -1103.2562
+154930.2628973022 2.9048302 -1103.2168
+154931.2628974065 2.9047515 -1103.2761
+154932.2628975108 2.9044366 -1103.1378
+154933.2628976151 2.9042792 -1103.2168
+154934.2628977194 2.904161 -1103.2761
+154935.2628978237 2.903964 -1103.197
+154936.262897928 2.9035704 -1103.2959
+154937.2628980323 2.9034524 -1103.2366
+154938.2628981366 2.9032555 -1103.1774
+154939.2628982409 2.9029799 -1103.1182
+154940.2628983452 2.9028225 -1103.3353
+154941.2628984496 2.9026256 -1103.2366
+154942.2628985539 2.9022713 -1103.2168
+154943.2628986582 2.9022319 -1103.1378
+154944.2628987625 2.9020743 -1103.1774
+154945.2628988668 2.9017594 -1103.2366
+154946.2628989711 2.9016807 -1103.1576
+154947.2628990754 2.9014838 -1103.2168
+154948.2628991797 2.9012871 -1103.3156
+154949.262899284 2.9009721 -1103.2562
+154950.2628993883 2.9007752 -1103.2366
+154951.2628994926 2.9005783 -1103.197
+154952.2628995969 2.9004602 -1103.2366
+154953.2628997013 2.900224 -1103.2168
+154954.2628998056 2.9001846 -1103.2562
+154955.2628999099 2.899791 -1103.2168
+154956.2629000142 2.8995547 -1103.2168
+154957.2629001185 2.8994761 -1103.2168
+154958.2629002228 2.8992398 -1103.2366
+154959.2629003271 2.8990431 -1103.2168
+154960.2629004314 2.8987675 -1103.2959
+154961.2629005357 2.8986099 -1103.2168
+154962.26290064 2.8984525 -1103.1774
+154963.2629007443 2.8982556 -1103.1576
+154964.2629008486 2.8979406 -1103.2562
+154965.2629009529 2.897783 -1103.2168
+154966.2629010573 2.897547 -1103.3156
+154967.2629011616 2.8974288 -1103.197
+154968.2629012659 2.8971927 -1103.1576
+154969.2629013702 2.8969171 -1103.2562
+154970.2629014745 2.8968382 -1103.2366
+154971.2629015788 2.8966415 -1103.1774
+154972.2629016831 2.8964839 -1103.1576
+154973.2629017874 2.8962476 -1103.0984
+154974.2629018917 2.8959723 -1103.2168
+154975.262901996 2.8958147 -1103.2366
+154976.2629021003 2.8956573 -1103.2366
+154977.2629022046 2.8953817 -1103.1378
+154978.262902309 2.8953424 -1103.1378
+154979.2629024133 2.8950272 -1103.2562
+154980.2629025176 2.8948305 -1103.197
+154981.2629026219 2.8946335 -1103.197
+154982.2629027262 2.8943973 -1103.197
+154983.2629028305 2.8942006 -1103.1576
+154984.2629029348 2.8939643 -1103.197
+154985.2629030391 2.8937674 -1103.2959
+154986.2629031434 2.893492 -1103.1378
+154987.2629032477 2.8933737 -1103.2562
+154988.262903352 2.8931768 -1103.1774
+154989.2629034563 2.8929801 -1103.2168
+154990.2629035607 2.8928618 -1103.2562
+154991.262903665 2.8926258 -1103.2562
+154992.2629037693 2.8924289 -1103.2168
+154993.2629038736 2.8921533 -1103.2168
+154994.2629039779 2.8918777 -1103.197
+154995.2629040822 2.891681 -1103.197
+154996.2629041865 2.8915627 -1103.2562
+154997.2629042908 2.8913264 -1103.3353
+154998.2629043951 2.8911297 -1103.197
+154999.2629044994 2.8908935 -1103.2168
+155000.2629046037 2.8906178 -1103.1576
+155001.262904708 2.8904605 -1103.2562
+155002.2629048123 2.8902242 -1103.2562
+155003.2629049167 2.8900273 -1103.2168
+155004.262905021 2.889791 -1103.2366
+155005.2629051253 2.8897517 -1103.2959
+155006.2629052296 2.8894367 -1103.2959
+155007.2629053339 2.8892794 -1103.2168
+155008.2629054382 2.8889644 -1103.2562
+155009.2629055425 2.8888462 -1103.2761
+155010.2629056468 2.8886101 -1103.197
+155011.2629057511 2.8883739 -1103.1576
+155012.2629058554 2.8881769 -1103.2562
+155013.2629059597 2.8880589 -1103.197
+155014.262906064 2.8878226 -1103.2761
+155015.2629061684 2.887547 -1103.1576
+155016.2629062727 2.8873897 -1103.1774
+155017.262906377 2.8872321 -1103.1774
+155018.2629064813 2.8868778 -1103.2366
+155019.2629065856 2.8867204 -1103.2761
+155020.2629066899 2.8864055 -1103.197
+155021.2629067942 2.8862872 -1103.2366
+155022.2629068985 2.8861692 -1103.2366
+155023.2629070028 2.8859329 -1103.1774
+155024.2629071071 2.8856966 -1103.197
+155025.2629072114 2.8854604 -1103.2366
+155026.2629073157 2.8852243 -1103.1576
+155027.2629074201 2.8848701 -1103.2761
+155028.2629075244 2.8847518 -1103.1378
+155029.2629076287 2.8845551 -1103.1378
+155030.262907733 2.8843582 -1103.2366
+155031.2629078373 2.8841219 -1103.1774
+155032.2629079416 2.8839645 -1103.2366
+155033.2629080459 2.8836889 -1103.1576
+155034.2629081502 2.8835707 -1103.2562
+155035.2629082545 2.8832951 -1103.2168
+155036.2629083588 2.883177 -1103.2761
+155037.2629084631 2.8829014 -1103.1774
+155038.2629085674 2.8827441 -1103.2761
+155039.2629086718 2.8825471 -1103.2168
+155040.2629087761 2.8822322 -1103.2366
+155041.2629088804 2.8821535 -1103.2959
+155042.2629089847 2.8818386 -1103.2959
+155043.262909089 2.8815629 -1103.2761
+155044.2629091933 2.8814054 -1103.2562
+155045.2629092976 2.8811693 -1103.2959
+155046.2629094019 2.8810511 -1103.2959
+155047.2629095062 2.8806968 -1103.3353
+155048.2629096105 2.8804605 -1103.2168
+155049.2629097148 2.8803031 -1103.197
+155050.2629098191 2.8801455 -1103.1774
+155051.2629099234 2.8799093 -1103.1774
+155052.2629100278 2.8797519 -1103.2761
+155053.2629101321 2.8795156 -1103.197
+155054.2629102364 2.879319 -1103.2168
+155055.2629103407 2.8790433 -1103.2959
+155056.262910445 2.8788071 -1103.2562
+155057.2629105493 2.8784921 -1103.1576
+155058.2629106536 2.8783345 -1103.1774
+155059.2629107579 2.8781378 -1103.1576
+155060.2629108622 2.8779409 -1103.2761
+155061.2629109665 2.8778229 -1103.2562
+155062.2629110708 2.8775866 -1103.1576
+155063.2629111751 2.8773897 -1103.1774
+155064.2629112795 2.8770747 -1103.1774
+155065.2629113838 2.8767991 -1103.2562
+155066.2629114881 2.8767204 -1103.1774
+155067.2629115924 2.8763661 -1103.2168
+155068.2629116967 2.8761299 -1103.1774
+155069.262911801 2.8759725 -1103.197
+155070.2629119053 2.8758149 -1103.2761
+155071.2629120096 2.8756576 -1103.2366
+155072.2629121139 2.8753426 -1103.2366
+155073.2629122182 2.875185 -1103.2366
+155074.2629123225 2.8749881 -1103.2366
+155075.2629124268 2.8747914 -1103.197
+155076.2629125312 2.8745944 -1103.1774
+155077.2629126355 2.8743582 -1103.197
+155078.2629127398 2.8740432 -1103.2168
+155079.2629128441 2.8738859 -1103.2366
+155080.2629129484 2.8736496 -1103.2761
+155081.2629130527 2.8734133 -1103.2168
+155082.262913157 2.873256 -1103.3156
+155083.2629132613 2.8730984 -1103.3156
+155084.2629133656 2.8727441 -1103.2168
+155085.2629134699 2.8726654 -1103.2366
+155086.2629135742 2.8723505 -1103.197
+155087.2629136785 2.8721535 -1103.1774
+155088.2629137828 2.8719172 -1103.2761
+155089.2629138872 2.8717599 -1103.197
+155090.2629139915 2.8714056 -1103.2562
+155091.2629140958 2.871248 -1103.2366
+155092.2629142001 2.87113 -1103.2562
+155093.2629143044 2.8708544 -1103.197
+155094.2629144087 2.8705394 -1103.1378
+155095.262914513 2.8703425 -1103.1774
+155096.2629146173 2.8701851 -1103.2168
+155097.2629147216 2.8699882 -1103.197
+155098.2629148259 2.8696733 -1103.2168
+155099.2629149302 2.8693976 -1103.197
+155100.2629150345 2.8692796 -1103.197
+155101.2629151389 2.8689647 -1103.3353
+155102.2629152432 2.8687677 -1103.1576
+155103.2629153475 2.8684921 -1103.2761
+155104.2629154518 2.8682954 -1103.2366
+155105.2629155561 2.8680592 -1103.1576
+155106.2629156604 2.8679016 -1103.197
+155107.2629157647 2.8675866 -1103.2761
+155108.262915869 2.8675079 -1103.2366
+155109.2629159733 2.8673506 -1103.2366
+155110.2629160776 2.8671143 -1103.1774
+155111.2629161819 2.8667994 -1103.197
+155112.2629162862 2.8666024 -1103.2168
+155113.2629163906 2.8663661 -1103.2168
+155114.2629164949 2.8661695 -1103.2168
+155115.2629165992 2.8659725 -1103.2168
+155116.2629167035 2.8656182 -1103.1774
+155117.2629168078 2.865382 -1103.197
+155118.2629169121 2.8651853 -1103.2168
+155119.2629170164 2.8649883 -1103.197
+155120.2629171207 2.8647521 -1103.197
+155121.262917225 2.8645158 -1103.1774
+155122.2629173293 2.8643191 -1103.2168
+155123.2629174336 2.8641222 -1103.2168
+155124.2629175379 2.8638072 -1103.2366
+155125.2629176422 2.8635709 -1103.2562
+155126.2629177466 2.8633742 -1103.1774
+155127.2629178509 2.8630986 -1103.2562
+155128.2629179552 2.862941 -1103.197
+155129.2629180595 2.8627837 -1103.197
+155130.2629181638 2.8624687 -1103.1774
+155131.2629182681 2.8622324 -1103.2168
+155132.2629183724 2.8619175 -1103.2168
+155133.2629184767 2.8617206 -1103.197
+155134.262918581 2.8615239 -1103.3156
+155135.2629186853 2.8612876 -1103.1576
+155136.2629187896 2.8612483 -1103.0984
+155137.2629188939 2.8608546 -1103.197
+155138.2629189983 2.8606184 -1103.1774
+155139.2629191026 2.8604214 -1103.2562
+155140.2629192069 2.8602641 -1103.2761
+155141.2629193112 2.8600278 -1103.2959
+155142.2629194155 2.8598702 -1103.2168
+155143.2629195198 2.8595159 -1103.2366
+155144.2629196241 2.8592796 -1103.2168
+155145.2629197284 2.8590829 -1103.2959
+155146.2629198327 2.8588467 -1103.197
+155147.262919937 2.8584924 -1103.3353
+155148.2629200413 2.8583348 -1103.197
+155149.2629201456 2.8580198 -1103.2366
+155150.26292025 2.8577838 -1103.2562
+155151.2629203543 2.8575475 -1103.2761
+155152.2629204586 2.8573506 -1103.2761
+155153.2629205629 2.8571143 -1103.2168
+155154.2629206672 2.8567994 -1103.1774
+155155.2629207715 2.8566027 -1103.197
+155156.2629208758 2.8563664 -1103.2168
+155157.2629209801 2.8561695 -1103.1774
+155158.2629210844 2.8558152 -1103.1182
+155159.2629211887 2.8556578 -1103.2761
+155160.262921293 2.8554215 -1103.197
+155161.2629213973 2.8551066 -1103.2366
+155162.2629215017 2.8548703 -1103.197
+155163.262921606 2.854713 -1103.197
+155164.2629217103 2.8543191 -1103.2366
+155165.2629218146 2.8541224 -1103.2168
+155166.2629219189 2.8538861 -1103.2761
+155167.2629220232 2.8537285 -1103.2168
+155168.2629221275 2.8534532 -1103.2761
+155169.2629222318 2.8531382 -1103.2366
+155170.2629223361 2.85302 -1103.2366
+155171.2629224404 2.8526657 -1103.1576
+155172.2629225447 2.8524294 -1103.1774
+155173.262922649 2.8521931 -1103.1774
+155174.2629227533 2.8519571 -1103.197
+155175.2629228577 2.8516815 -1103.2562
+155176.262922962 2.8514059 -1103.3156
+155177.2629230663 2.8511696 -1103.2366
+155178.2629231706 2.8510122 -1103.3156
+155179.2629232749 2.8508546 -1103.2761
+155180.2629233792 2.8505003 -1103.197
+155181.2629234835 2.8503428 -1103.2168
+155182.2629235878 2.8499885 -1103.2562
+155183.2629236921 2.8497524 -1103.1774
+155184.2629237964 2.8496342 -1103.2366
+155185.2629239007 2.8493586 -1103.2168
+155186.262924005 2.8491225 -1103.2562
+155187.2629241094 2.8488076 -1103.2562
+155188.2629242137 2.848532 -1103.197
+155189.262924318 2.8482563 -1103.2959
+155190.2629244223 2.8480201 -1103.2562
+155191.2629245266 2.8477838 -1103.2366
+155192.2629246309 2.8475082 -1103.197
+155193.2629247352 2.8472722 -1103.2366
+155194.2629248395 2.8470752 -1103.2366
+155195.2629249438 2.8467209 -1103.2168
+155196.2629250481 2.8466027 -1103.2959
+155197.2629251524 2.8462484 -1103.2168
+155198.2629252567 2.8460121 -1103.0984
+155199.2629253611 2.8458941 -1103.2168
+155200.2629254654 2.8455791 -1103.1774
+155201.2629255697 2.8453822 -1103.2366
+155202.262925674 2.8450673 -1103.197
+155203.2629257783 2.8447917 -1103.197
+155204.2629258826 2.8444374 -1103.2168
+155205.2629259869 2.8443193 -1103.2366
+155206.2629260912 2.8440044 -1103.2168
+155207.2629261955 2.8438864 -1103.2959
+155208.2629262998 2.8434138 -1103.3156
+155209.2629264041 2.8433352 -1103.2366
+155210.2629265084 2.8429809 -1103.2168
+155211.2629266127 2.8427052 -1103.197
+155212.2629267171 2.842469 -1103.2761
+155213.2629268214 2.8422327 -1103.1774
+155214.2629269257 2.8419964 -1103.2366
+155215.26292703 2.8419178 -1103.197
+155216.2629271343 2.8416028 -1103.1774
+155217.2629272386 2.8413665 -1103.2562
+155218.2629273429 2.8410909 -1103.1774
+155219.2629274472 2.840776 -1103.2168
+155220.2629275515 2.8405399 -1103.2168
+155221.2629276558 2.840225 -1103.1576
+155222.2629277601 2.8400674 -1103.2761
+155223.2629278644 2.8397524 -1103.1774
+155224.2629279688 2.8394375 -1103.197
+155225.2629280731 2.8391225 -1103.2562
+155226.2629281774 2.8388469 -1103.197
+155227.2629282817 2.8386106 -1103.1378
+155228.262928386 2.838532 -1103.2562
+155229.2629284903 2.838099 -1103.2562
+155230.2629285946 2.8379807 -1103.2562
+155231.2629286989 2.8376265 -1103.2959
+155232.2629288032 2.8374298 -1103.2562
+155233.2629289075 2.8371935 -1103.2366
+155234.2629290118 2.8367999 -1103.1774
+155235.2629291161 2.8366423 -1103.1774
+155236.2629292205 2.8363667 -1103.2366
+155237.2629293248 2.8361304 -1103.2562
+155238.2629294291 2.8357761 -1103.2959
+155239.2629295334 2.8356581 -1103.1774
+155240.2629296377 2.8353431 -1103.1576
+155241.262929742 2.8350675 -1103.2562
+155242.2629298463 2.8347132 -1103.2168
+155243.2629299506 2.8345163 -1103.1378
+155244.2629300549 2.83428 -1103.197
+155245.2629301592 2.8341227 -1103.2168
+155246.2629302635 2.833847 -1103.2366
+155247.2629303678 2.8335321 -1103.1774
+155248.2629304721 2.8332565 -1103.2562
+155249.2629305765 2.8329809 -1103.2562
+155250.2629306808 2.8327842 -1103.2562
+155251.2629307851 2.8325086 -1103.2761
+155252.2629308894 2.832233 -1103.1774
+155253.2629309937 2.8320754 -1103.1774
+155254.262931098 2.8317604 -1103.3353
+155255.2629312023 2.8313668 -1103.197
+155256.2629313066 2.8312488 -1103.2366
+155257.2629314109 2.8308156 -1103.2366
+155258.2629315152 2.8306186 -1103.2168
+155259.2629316195 2.8303432 -1103.2366
+155260.2629317238 2.8301463 -1103.197
+155261.2629318282 2.8298707 -1103.2366
+155262.2629319325 2.8295951 -1103.1774
+155263.2629320368 2.8292801 -1103.1774
+155264.2629321411 2.8290439 -1103.2366
+155265.2629322454 2.8288472 -1103.1576
+155266.2629323497 2.8284533 -1103.1576
+155267.262932454 2.8281384 -1103.1576
+155268.2629325583 2.827863 -1103.197
+155269.2629326626 2.8276267 -1103.1576
+155270.2629327669 2.8273904 -1103.2366
+155271.2629328712 2.8269968 -1103.2366
+155272.2629329755 2.8267605 -1103.2168
+155273.2629330799 2.8264849 -1103.2366
+155274.2629331842 2.82617 -1103.2562
+155275.2629332885 2.8258944 -1103.1576
+155276.2629333928 2.8255794 -1103.2761
+155277.2629334971 2.8253431 -1103.2562
+155278.2629336014 2.8251071 -1103.2761
+155279.2629337057 2.8248708 -1103.1774
+155280.26293381 2.8245165 -1103.197
+155281.2629339143 2.8242803 -1103.2562
+155282.2629340186 2.8239653 -1103.1378
+155283.2629341229 2.8237684 -1103.2366
+155284.2629342272 2.8234534 -1103.2761
+155285.2629343315 2.8230991 -1103.1182
+155286.2629344359 2.8228235 -1103.2959
+155287.2629345402 2.8227055 -1103.1774
+155288.2629346445 2.8223512 -1103.2366
+155289.2629347488 2.8221543 -1103.1774
+155290.2629348531 2.821918 -1103.2761
+155291.2629349574 2.8215244 -1103.2168
+155292.2629350617 2.8213274 -1103.2959
+155293.262935166 2.8209732 -1103.2366
+155294.2629352703 2.8207765 -1103.197
+155295.2629353746 2.8205009 -1103.1182
+155296.2629354789 2.8201859 -1103.1576
+155297.2629355832 2.8199496 -1103.2168
+155298.2629356876 2.8197134 -1103.2366
+155299.2629357919 2.8193984 -1103.1378
+155300.2629358962 2.8190441 -1103.1774
+155301.2629360005 2.8188865 -1103.2366
+155302.2629361048 2.8186111 -1103.1576
+155303.2629362091 2.8183749 -1103.1378
+155304.2629363134 2.817981 -1103.2959
+155305.2629364177 2.8176267 -1103.1774
+155306.262936522 2.817548 -1103.2366
+155307.2629366263 2.8171151 -1103.1182
+155308.2629367306 2.8169181 -1103.2366
+155309.2629368349 2.8164852 -1103.2366
+155310.2629369393 2.8162882 -1103.1774
+155311.2629370436 2.8159733 -1103.2562
+155312.2629371479 2.815737 -1103.1774
+155313.2629372522 2.8154221 -1103.2761
+155314.2629373565 2.8151071 -1103.2366
+155315.2629374608 2.8147528 -1103.2761
+155316.2629375651 2.8145559 -1103.2366
+155317.2629376694 2.8141229 -1103.3749
+155318.2629377737 2.8139653 -1103.197
+155319.262937878 2.813611 -1103.197
+155320.2629379823 2.8132961 -1103.197
+155321.2629380866 2.8129418 -1103.2562
+155322.262938191 2.8126268 -1103.2562
+155323.2629382953 2.8123906 -1103.1576
+155324.2629383996 2.8120363 -1103.1182
+155325.2629385039 2.8117213 -1103.2562
+155326.2629386082 2.8114851 -1103.2761
+155327.2629387125 2.8111308 -1103.2761
+155328.2629388168 2.8108552 -1103.2959
+155329.2629389211 2.8106585 -1103.2959
+155330.2629390254 2.8103042 -1103.2562
+155331.2629391297 2.8100679 -1103.2562
+155332.262939234 2.8096743 -1103.1774
+155333.2629393383 2.809438 -1103.2959
+155334.2629394426 2.809123 -1103.2562
+155335.262939547 2.8088081 -1103.2761
+155336.2629396513 2.8084931 -1103.1774
+155337.2629397556 2.8081782 -1103.197
+155338.2629398599 2.8078239 -1103.2366
+155339.2629399642 2.8077056 -1103.197
+155340.2629400685 2.8073907 -1103.197
+155341.2629401728 2.8069971 -1103.2761
+155342.2629402771 2.8066821 -1103.2366
+155343.2629403814 2.8064065 -1103.0984
+155344.2629404857 2.8061309 -1103.2366
+155345.26294059 2.8058553 -1103.2168
+155346.2629406943 2.8055797 -1103.2562
+155347.2629407987 2.8051467 -1103.1576
+155348.262940903 2.8048317 -1103.197
+155349.2629410073 2.8045168 -1103.197
+155350.2629411116 2.8043199 -1103.2562
+155351.2629412159 2.8038869 -1103.1774
+155352.2629413202 2.8037293 -1103.2366
+155353.2629414245 2.8034143 -1103.2366
+155354.2629415288 2.8030994 -1103.2761
+155355.2629416331 2.8027844 -1103.1576
+155356.2629417374 2.8024302 -1103.2168
+155357.2629418417 2.8021939 -1103.1576
+155358.262941946 2.8017609 -1103.2366
+155359.2629420504 2.8015246 -1103.1576
+155360.2629421547 2.801249 -1103.3353
+155361.262942259 2.8009734 -1103.2168
+155362.2629423633 2.8006585 -1103.3156
+155363.2629424676 2.8003435 -1103.1576
+155364.2629425719 2.7999105 -1103.2562
+155365.2629426762 2.799753 -1103.1182
+155366.2629427805 2.799438 -1103.2562
+155367.2629428848 2.7990444 -1103.1378
+155368.2629429891 2.7988081 -1103.2366
+155369.2629430934 2.7984145 -1103.2366
+155370.2629431977 2.7981782 -1103.1576
+155371.262943302 2.7978239 -1103.1774
+155372.2629434064 2.7974303 -1103.2168
+155373.2629435107 2.7972727 -1103.1774
+155374.262943615 2.7968397 -1103.2959
+155375.2629437193 2.7964065 -1103.0984
+155376.2629438236 2.7961705 -1103.2366
+155377.2629439279 2.7957766 -1103.2366
+155378.2629440322 2.7954617 -1103.1774
+155379.2629441365 2.795265 -1103.1576
+155380.2629442408 2.7949107 -1103.2761
+155381.2629443451 2.7945561 -1103.2959
+155382.2629444494 2.7942808 -1103.2562
+155383.2629445537 2.7938869 -1103.2366
+155384.2629446581 2.7936902 -1103.2366
+155385.2629447624 2.7932177 -1103.1774
+155386.2629448667 2.7929027 -1103.197
+155387.262944971 2.7926664 -1103.2562
+155388.2629450753 2.7923515 -1103.197
+155389.2629451796 2.7919185 -1103.2761
+155390.2629452839 2.7916429 -1103.2562
+155391.2629453882 2.791328 -1103.2168
+155392.2629454925 2.7910523 -1103.2168
+155393.2629455968 2.7906981 -1103.2168
+155394.2629457011 2.7902255 -1103.3156
+155395.2629458054 2.7900681 -1103.1774
+155396.2629459098 2.7897139 -1103.2959
+155397.2629460141 2.78932 -1103.1576
+155398.2629461184 2.789005 -1103.2366
+155399.2629462227 2.7886901 -1103.1774
+155400.262946327 2.7884541 -1103.2562
+155401.2629464313 2.7880602 -1103.1774
+155402.2629465356 2.7877452 -1103.2168
+155403.2629466399 2.7875092 -1103.2168
+155404.2629467442 2.787076 -1103.2366
+155405.2629468485 2.7868004 -1103.197
+155406.2629469528 2.7865248 -1103.2562
+155407.2629470571 2.7861705 -1103.1182
+155408.2629471614 2.7858949 -1103.2168
+155409.2629472658 2.7856193 -1103.197
+155410.2629473701 2.7853043 -1103.2366
+155411.2629474744 2.7848713 -1103.1576
+155412.2629475787 2.784714 -1103.1774
+155413.262947683 2.7842414 -1103.197
+155414.2629477873 2.7839658 -1103.197
+155415.2629478916 2.7836509 -1103.2562
+155416.2629479959 2.7831786 -1103.2562
+155417.2629481002 2.7829816 -1103.1576
+155418.2629482045 2.782588 -1103.2761
+155419.2629483088 2.7822731 -1103.2761
+155420.2629484131 2.7818792 -1103.2761
+155421.2629485175 2.7815642 -1103.197
+155422.2629486218 2.7812493 -1103.1576
+155423.2629487261 2.7809737 -1103.3156
+155424.2629488304 2.78058 -1103.197
+155425.2629489347 2.7803044 -1103.2562
+155426.262949039 2.7799108 -1103.1378
+155427.2629491433 2.7795565 -1103.3551
+155428.2629492476 2.7792416 -1103.2366
+155429.2629493519 2.7788873 -1103.1774
+155430.2629494562 2.7786117 -1103.2761
+155431.2629495605 2.7782574 -1103.2562
+155432.2629496648 2.7779424 -1103.1774
+155433.2629497692 2.7775486 -1103.2761
+155434.2629498735 2.7771549 -1103.2562
+155435.2629499778 2.77684 -1103.1576
+155436.2629500821 2.7764857 -1103.2761
+155437.2629501864 2.7761707 -1103.197
+155438.2629502907 2.7758164 -1103.2168
+155439.262950395 2.7755015 -1103.2168
+155440.2629504993 2.7751076 -1103.1378
+155441.2629506036 2.7747927 -1103.2168
+155442.2629507079 2.774399 -1103.1576
+155443.2629508122 2.7740841 -1103.1576
+155444.2629509165 2.7736511 -1103.2562
+155445.2629510209 2.7733755 -1103.197
+155446.2629511252 2.7730999 -1103.197
+155447.2629512295 2.7726667 -1103.2761
+155448.2629513338 2.7722337 -1103.197
+155449.2629514381 2.7719581 -1103.1576
+155450.2629515424 2.7715645 -1103.2168
+155451.2629516467 2.7712889 -1103.1576
+155452.262951751 2.7708952 -1103.2366
+155453.2629518553 2.7703834 -1103.2562
+155454.2629519596 2.770226 -1103.2168
+155455.2629520639 2.7697928 -1103.2761
+155456.2629521682 2.7694385 -1103.2562
+155457.2629522725 2.7691236 -1103.2562
+155458.2629523769 2.768651 -1103.2168
+155459.2629524812 2.7683756 -1103.2562
+155460.2629525855 2.7680211 -1103.1576
+155461.2629526898 2.7676275 -1103.2168
+155462.2629527941 2.7673125 -1103.2562
+155463.2629528984 2.7669976 -1103.2562
+155464.2629530027 2.7665646 -1103.2168
+155465.262953107 2.766289 -1103.1378
+155466.2629532113 2.765974 -1103.2168
+155467.2629533156 2.7655015 -1103.2168
+155468.2629534199 2.7651865 -1103.2366
+155469.2629535242 2.7648716 -1103.2168
+155470.2629536286 2.764478 -1103.2761
+155471.2629537329 2.7640054 -1103.2168
+155472.2629538372 2.7636905 -1103.1774
+155473.2629539415 2.7633362 -1103.2761
+155474.2629540458 2.7629819 -1103.2366
+155475.2629541501 2.7626669 -1103.2168
+155476.2629542544 2.7622733 -1103.197
+155477.2629543587 2.7618794 -1103.1576
+155478.262954463 2.7614465 -1103.197
+155479.2629545673 2.7611315 -1103.1576
+155480.2629546716 2.7607772 -1103.197
+155481.2629547759 2.7604229 -1103.2366
+155482.2629548803 2.7599897 -1103.2366
+155483.2629549846 2.7597141 -1103.197
+155484.2629550889 2.7593205 -1103.197
+155485.2629551932 2.7588875 -1103.2366
+155486.2629552975 2.7585332 -1103.1576
+155487.2629554018 2.7581394 -1103.2761
+155488.2629555061 2.7577851 -1103.2761
+155489.2629556104 2.7573915 -1103.2168
+155490.2629557147 2.7570372 -1103.2168
+155491.262955819 2.7566829 -1103.197
+155492.2629559233 2.7564073 -1103.2366
+155493.2629560276 2.7558954 -1103.2168
+155494.2629561319 2.7555804 -1103.2366
+155495.2629562363 2.7552655 -1103.2366
+155496.2629563406 2.7549112 -1103.2562
+155497.2629564449 2.754478 -1103.1576
+155498.2629565492 2.754163 -1103.1774
+155499.2629566535 2.7536907 -1103.2366
+155500.2629567578 2.7533758 -1103.2168
+155501.2629568621 2.7530215 -1103.2168
+155502.2629569664 2.7526672 -1103.2168
+155503.2629570707 2.7523127 -1103.0984
+155504.262957175 2.7519584 -1103.1774
+155505.2629572793 2.7514467 -1103.197
+155506.2629573836 2.7511318 -1103.0984
+155507.262957488 2.7506986 -1103.197
+155508.2629575923 2.750423 -1103.197
+155509.2629576966 2.74999 -1103.2366
+155510.2629578009 2.749675 -1103.2168
+155511.2629579052 2.7492418 -1103.2562
+155512.2629580095 2.7489269 -1103.2959
+155513.2629581138 2.7484152 -1103.2562
+155514.2629582181 2.748179 -1103.2366
+155515.2629583224 2.7477853 -1103.1576
+155516.2629584267 2.7473521 -1103.2168
+155517.262958531 2.7469978 -1103.197
+155518.2629586353 2.7466829 -1103.2168
+155519.2629587397 2.7463286 -1103.2761
+155520.262958844 2.745935 -1103.2761
+155521.2629589483 2.7454624 -1103.1774
+155522.2629590526 2.7451081 -1103.1774
+155523.2629591569 2.7448325 -1103.0984
+155524.2629592612 2.7444782 -1103.2168
+155525.2629593655 2.7439663 -1103.2562
+155526.2629594698 2.7435727 -1103.2168
+155527.2629595741 2.7431791 -1103.2562
+155528.2629596784 2.7428248 -1103.197
+155529.2629597827 2.7424309 -1103.197
+155530.262959887 2.7420766 -1103.2366
+155531.2629599913 2.741683 -1103.2168
+155532.2629600957 2.74125 -1103.3156
+155533.2629602 2.7408562 -1103.1182
+155534.2629603043 2.7403839 -1103.1576
+155535.2629604086 2.7400296 -1103.2761
+155536.2629605129 2.739675 -1103.197
+155537.2629606172 2.7392027 -1103.1576
+155538.2629607215 2.7389271 -1103.2168
+155539.2629608258 2.7384152 -1103.2366
+155540.2629609301 2.7379429 -1103.3156
+155541.2629610344 2.7375886 -1103.1774
+155542.2629611387 2.7372341 -1103.2366
+155543.262961243 2.7367618 -1103.197
+155544.2629613474 2.7364469 -1103.2959
+155545.2629614517 2.7359743 -1103.2959
+155546.262961556 2.7356987 -1103.1576
+155547.2629616603 2.7352264 -1103.197
+155548.2629617646 2.7348721 -1103.197
+155549.2629618689 2.7345178 -1103.2562
+155550.2629619732 2.7340453 -1103.2761
+155551.2629620775 2.7337303 -1103.2168
+155552.2629621818 2.7332184 -1103.2562
+155553.2629622861 2.7329431 -1103.1576
+155554.2629623904 2.7324705 -1103.1378
+155555.2629624947 2.7321949 -1103.2366
+155556.2629625991 2.7317619 -1103.2168
+155557.2629627034 2.7313287 -1103.1774
+155558.2629628077 2.7309351 -1103.197
+155559.262962912 2.7305808 -1103.1378
+155560.2629630163 2.7301476 -1103.2562
+155561.2629631206 2.7298326 -1103.3156
+155562.2629632249 2.7293997 -1103.2761
+155563.2629633292 2.7288878 -1103.2366
+155564.2629634335 2.7285335 -1103.2366
+155565.2629635378 2.7281399 -1103.1182
+155566.2629636421 2.7278249 -1103.2761
+155567.2629637464 2.727392 -1103.2168
+155568.2629638508 2.7269588 -1103.197
+155569.2629639551 2.7266045 -1103.2366
+155570.2629640594 2.7261319 -1103.1576
+155571.2629641637 2.7259352 -1103.2761
+155572.262964268 2.725384 -1103.1576
+155573.2629643723 2.725069 -1103.1774
+155574.2629644766 2.7246754 -1103.2168
+155575.2629645809 2.7241242 -1103.1774
+155576.2629646852 2.7238486 -1103.1774
+155577.2629647895 2.7233763 -1103.2168
+155578.2629648938 2.7230217 -1103.2168
+155579.2629649981 2.7225888 -1103.2761
+155580.2629651024 2.7221162 -1103.3353
+155581.2629652068 2.7218013 -1103.1774
+155582.2629653111 2.7215259 -1103.197
+155583.2629654154 2.721014 -1103.197
+155584.2629655197 2.7206204 -1103.2366
+155585.262965624 2.7201872 -1103.2366
+155586.2629657283 2.7198329 -1103.2366
+155587.2629658326 2.7195573 -1103.197
+155588.2629659369 2.719203 -1103.2761
+155589.2629660412 2.7186518 -1103.3156
+155590.2629661455 2.7183368 -1103.2168
+155591.2629662498 2.7179039 -1103.2168
+155592.2629663541 2.7176676 -1103.2366
+155593.2629664585 2.7171557 -1103.1774
+155594.2629665628 2.7168014 -1103.2761
+155595.2629666671 2.7164471 -1103.2168
+155596.2629667714 2.7160141 -1103.2562
+155597.2629668757 2.7156596 -1103.2959
+155598.26296698 2.7152267 -1103.2562
+155599.2629670843 2.7148724 -1103.3156
+155600.2629671886 2.7144787 -1103.2168
+155601.2629672929 2.7139668 -1103.3353
+155602.2629673972 2.7136126 -1103.2168
+155603.2629675015 2.7132976 -1103.2562
+155604.2629676058 2.7127857 -1103.2959
+155605.2629677102 2.7124314 -1103.2168
+155606.2629678145 2.7119985 -1103.2168
+155607.2629679188 2.7115653 -1103.3156
+155608.2629680231 2.7112503 -1103.1576
+155609.2629681274 2.710896 -1103.2168
+155610.2629682317 2.7104235 -1103.2366
+155611.262968336 2.7099905 -1103.197
+155612.2629684403 2.7096756 -1103.2168
+155613.2629685446 2.7092819 -1103.197
+155614.2629686489 2.70877 -1103.2168
+155615.2629687532 2.7083371 -1103.1576
+155616.2629688575 2.7081008 -1103.2562
+155617.2629689618 2.7075496 -1103.2366
+155618.2629690662 2.7071166 -1103.197
+155619.2629691705 2.7068017 -1103.2168
+155620.2629692748 2.7063684 -1103.2761
+155621.2629693791 2.7058568 -1103.2959
+155622.2629694834 2.7055812 -1103.2761
+155623.2629695877 2.7052269 -1103.2761
+155624.262969692 2.7047937 -1103.2366
+155625.2629697963 2.7044394 -1103.2562
+155626.2629699006 2.7039671 -1103.1576
+155627.2629700049 2.7035339 -1103.2562
+155628.2629701092 2.7032189 -1103.197
+155629.2629702135 2.7029433 -1103.2168
+155630.2629703179 2.7025497 -1103.2168
+155631.2629704222 2.7020378 -1103.3156
+155632.2629705265 2.7016442 -1103.197
+155633.2629706308 2.7012112 -1103.2761
+155634.2629707351 2.7009749 -1103.2562
+155635.2629708394 2.7005813 -1103.1576
+155636.2629709437 2.7003057 -1103.2959
+155637.262971048 2.6997151 -1103.1576
+155638.2629711523 2.6994002 -1103.2168
+155639.2629712566 2.6990063 -1103.197
+155640.2629713609 2.6987309 -1103.1774
+155641.2629714652 2.6981797 -1103.2562
+155642.2629715696 2.6977859 -1103.2562
+155643.2629716739 2.6973922 -1103.2562
+155644.2629717782 2.6969986 -1103.2366
+155645.2629718825 2.6967623 -1103.197
+155646.2629719868 2.6962504 -1103.2366
+155647.2629720911 2.6958568 -1103.197
+155648.2629721954 2.6953845 -1103.2562
+155649.2629722997 2.6951876 -1103.2761
+155650.262972404 2.6946363 -1103.1182
+155651.2629725083 2.694164 -1103.2168
+155652.2629726126 2.6939278 -1103.197
+155653.2629727169 2.6934552 -1103.1774
+155654.2629728212 2.6930223 -1103.0984
+155655.2629729256 2.6927466 -1103.197
+155656.2629730299 2.6922743 -1103.1576
+155657.2629731342 2.6919198 -1103.2959
+155658.2629732385 2.6915655 -1103.0984
+155659.2629733428 2.6911719 -1103.197
+155660.2629734471 2.6907389 -1103.2168
+155661.2629735514 2.6905026 -1103.2168
+155662.2629736557 2.6899121 -1103.2959
+155663.26297376 2.6896758 -1103.2761
+155664.2629738643 2.6891639 -1103.197
+155665.2629739686 2.6887703 -1103.1774
+155666.2629740729 2.6883373 -1103.3156
+155667.2629741773 2.6880224 -1103.2959
+155668.2629742816 2.6876287 -1103.1182
+155669.2629743859 2.6872349 -1103.2366
+155670.2629744902 2.6868806 -1103.2366
+155671.2629745945 2.6864083 -1103.2366
+155672.2629746988 2.6860933 -1103.2761
+155673.2629748031 2.6857388 -1103.2761
+155674.2629749074 2.6852665 -1103.2168
+155675.2629750117 2.6848729 -1103.197
+155676.262975116 2.6845579 -1103.2366
+155677.2629752203 2.684164 -1103.2562
+155678.2629753246 2.6836917 -1103.2562
+155679.262975429 2.6833375 -1103.3156
+155680.2629755333 2.6829042 -1103.3156
+155681.2629756376 2.6825106 -1103.2761
+155682.2629757419 2.682117 -1103.2366
+155683.2629758462 2.6817231 -1103.3353
+155684.2629759505 2.6813295 -1103.197
+155685.2629760548 2.6808965 -1103.1774
+155686.2629761591 2.6804633 -1103.2366
+155687.2629762634 2.680109 -1103.1774
+155688.2629763677 2.6797547 -1103.2168
+155689.262976472 2.6793218 -1103.197
+155690.2629765763 2.6789279 -1103.2366
+155691.2629766806 2.6786129 -1103.2168
+155692.262976785 2.6781406 -1103.2366
+155693.2629768893 2.6777468 -1103.2366
+155694.2629769936 2.6773531 -1103.2562
+155695.2629770979 2.6769595 -1103.197
+155696.2629772022 2.676487 -1103.2366
+155697.2629773065 2.6760933 -1103.2366
+155698.2629774108 2.6758177 -1103.1378
+155699.2629775151 2.6754241 -1103.2366
+155700.2629776194 2.6749516 -1103.2562
+155701.2629777237 2.6744792 -1103.2366
+155702.262977828 2.674125 -1103.2366
+155703.2629779323 2.6737311 -1103.2562
+155704.2629780367 2.6733768 -1103.2761
+155705.262978141 2.6729438 -1103.1774
+155706.2629782453 2.6725502 -1103.2562
+155707.2629783496 2.6720777 -1103.2761
+155708.2629784539 2.6716447 -1103.2761
+155709.2629785582 2.6713297 -1103.2366
+155710.2629786625 2.6708572 -1103.2168
+155711.2629787668 2.6705029 -1103.3353
+155712.2629788711 2.670188 -1103.2366
+155713.2629789754 2.6697154 -1103.1576
+155714.2629790797 2.6692824 -1103.3551
+155715.262979184 2.6690462 -1103.1774
+155716.2629792884 2.6686525 -1103.1378
+155717.2629793927 2.6680226 -1103.1182
+155718.262979497 2.667747 -1103.2168
+155719.2629796013 2.6673534 -1103.197
+155720.2629797056 2.6669595 -1103.1378
+155721.2629798099 2.6664479 -1103.2366
+155722.2629799142 2.6660542 -1103.2761
+155723.2629800185 2.6656997 -1103.1576
+155724.2629801228 2.6652668 -1103.2562
+155725.2629802271 2.6648731 -1103.2168
+155726.2629803314 2.6644793 -1103.197
+155727.2629804357 2.6641643 -1103.2366
+155728.2629805401 2.6636527 -1103.1378
+155729.2629806444 2.6632984 -1103.2366
+155730.2629807487 2.6629438 -1103.2959
+155731.262980853 2.6623929 -1103.2959
+155732.2629809573 2.6620383 -1103.1774
+155733.2629810616 2.6617234 -1103.197
+155734.2629811659 2.6612511 -1103.2366
+155735.2629812702 2.6608968 -1103.2366
+155736.2629813745 2.6605029 -1103.1774
+155737.2629814788 2.6600699 -1103.2959
+155738.2629815831 2.659637 -1103.2168
+155739.2629816874 2.6592827 -1103.2168
+155740.2629817917 2.6588495 -1103.1378
+155741.2629818961 2.6585739 -1103.197
+155742.2629820004 2.6581409 -1103.197
+155743.2629821047 2.6577077 -1103.2168
+155744.262982209 2.6573141 -1103.2366
+155745.2629823133 2.6569204 -1103.2168
+155746.2629824176 2.6564872 -1103.2168
+155747.2629825219 2.6561723 -1103.2168
+155748.2629826262 2.6557393 -1103.2761
+155749.2629827305 2.655267 -1103.1774
+155750.2629828348 2.6548731 -1103.1774
+155751.2629829391 2.6545188 -1103.2761
+155752.2629830434 2.6542039 -1103.1774
+155753.2629831478 2.6536527 -1103.2562
+155754.2629832521 2.653259 -1103.2761
+155755.2629833564 2.6529441 -1103.2168
+155756.2629834607 2.6525898 -1103.1774
+155757.262983565 2.6520386 -1103.2562
+155758.2629836693 2.6516843 -1103.1774
+155759.2629837736 2.65133 -1103.2168
+155760.2629838779 2.6508968 -1103.2562
+155761.2629839822 2.6505818 -1103.2959
+155762.2629840865 2.6501489 -1103.3156
+155763.2629841908 2.6496763 -1103.2168
+155764.2629842951 2.6492827 -1103.197
+155765.2629843995 2.6488891 -1103.2959
+155766.2629845038 2.6484559 -1103.2366
+155767.2629846081 2.6480622 -1103.1774
+155768.2629847124 2.6477079 -1103.1378
+155769.2629848167 2.6471174 -1103.1774
+155770.262984921 2.6467631 -1103.2562
+155771.2629850253 2.6464088 -1103.2366
+155772.2629851296 2.6460545 -1103.2761
+155773.2629852339 2.6456606 -1103.3551
+155774.2629853382 2.6451883 -1103.1774
+155775.2629854425 2.644834 -1103.2562
+155776.2629855468 2.6444402 -1103.197
+155777.2629856511 2.6439679 -1103.2562
+155778.2629857555 2.6436923 -1103.2562
+155779.2629858598 2.6431804 -1103.1774
+155780.2629859641 2.6427867 -1103.2761
+155781.2629860684 2.6424325 -1103.2761
+155782.2629861727 2.6420388 -1103.1774
+155783.262986277 2.6416056 -1103.2562
+155784.2629863813 2.641212 -1103.197
+155785.2629864856 2.6408184 -1103.2168
+155786.2629865899 2.6403852 -1103.1774
+155787.2629866942 2.6399128 -1103.1774
+155788.2629867985 2.639519 -1103.2168
+155789.2629869028 2.6391647 -1103.2761
+155790.2629870072 2.6387317 -1103.2959
+155791.2629871115 2.6384168 -1103.197
+155792.2629872158 2.6380231 -1103.197
+155793.2629873201 2.6375899 -1103.197
+155794.2629874244 2.6372356 -1103.3749
+155795.2629875287 2.6367238 -1103.2562
+155796.262987633 2.6364088 -1103.2168
+155797.2629877373 2.6359758 -1103.2366
+155798.2629878416 2.6355429 -1103.2168
+155799.2629879459 2.6352277 -1103.2168
+155800.2629880502 2.6347947 -1103.2562
+155801.2629881545 2.6344011 -1103.2366
+155802.2629882589 2.6340468 -1103.1378
+155803.2629883632 2.6336925 -1103.1774
+155804.2629884675 2.6331413 -1103.1774
+155805.2629885718 2.6328657 -1103.2562
+155806.2629886761 2.632472 -1103.2168
+155807.2629887804 2.6320388 -1103.2562
+155808.2629888847 2.6317239 -1103.197
+155809.262988989 2.631212 -1103.2761
+155810.2629890933 2.6308577 -1103.2562
+155811.2629891976 2.6303854 -1103.2562
+155812.2629893019 2.6299522 -1103.1774
+155813.2629894062 2.6295979 -1103.2366
+155814.2629895105 2.6293223 -1103.2959
+155815.2629896149 2.62885 -1103.2366
+155816.2629897192 2.6284168 -1103.2168
+155817.2629898235 2.6280231 -1103.1576
+155818.2629899278 2.6277869 -1103.197
+155819.2629900321 2.6273539 -1103.2959
+155820.2629901364 2.6269209 -1103.1576
+155821.2629902407 2.6265664 -1103.2761
+155822.262990345 2.6261728 -1103.2168
+155823.2629904493 2.6258972 -1103.197
+155824.2629905536 2.6254642 -1103.2168
+155825.2629906579 2.6250706 -1103.3551
+155826.2629907622 2.6245587 -1103.2959
+155827.2629908666 2.6242831 -1103.1774
+155828.2629909709 2.6240075 -1103.2562
+155829.2629910752 2.6235352 -1103.2562
+155830.2629911795 2.6231413 -1103.2562
+155831.2629912838 2.6228657 -1103.197
+155832.2629913881 2.6225507 -1103.2366
+155833.2629914924 2.6220391 -1103.2761
+155834.2629915967 2.6216452 -1103.1774
+155835.262991701 2.6213698 -1103.3156
+155836.2629918053 2.6210942 -1103.3156
+155837.2629919096 2.620661 -1103.1576
+155838.2629920139 2.6203854 -1103.2168
+155839.2629921183 2.6198344 -1103.197
+155840.2629922226 2.6195588 -1103.197
+155841.2629923269 2.6191649 -1103.1774
+155842.2629924312 2.6188107 -1103.1774
+155843.2629925355 2.618417 -1103.2761
+155844.2629926398 2.6181808 -1103.2366
+155845.2629927441 2.6177871 -1103.2562
+155846.2629928484 2.6173146 -1103.2761
+155847.2629929527 2.6169209 -1103.2168
+155848.262993057 2.6165667 -1103.2168
+155849.2629931613 2.6160548 -1103.1774
+155850.2629932656 2.6157398 -1103.2366
+155851.26299337 2.6153069 -1103.197
+155852.2629934743 2.6149132 -1103.2366
+155853.2629935786 2.6146376 -1103.1774
+155854.2629936829 2.6141651 -1103.2168
+155855.2629937872 2.6137321 -1103.197
+155856.2629938915 2.6134171 -1103.2366
+155857.2629939958 2.6129839 -1103.197
+155858.2629941001 2.6125903 -1103.1576
+155859.2629942044 2.6121573 -1103.2562
+155860.2629943087 2.6118028 -1103.2168
+155861.262994413 2.6114879 -1103.1774
+155862.2629945173 2.6111729 -1103.2562
+155863.2629946216 2.6107793 -1103.1182
+155864.262994726 2.610307 -1103.2562
+155865.2629948303 2.6100314 -1103.2366
+155866.2629949346 2.6096375 -1103.1774
+155867.2629950389 2.6091259 -1103.2562
+155868.2629951432 2.6087716 -1103.1774
+155869.2629952475 2.608417 -1103.1774
+155870.2629953518 2.6079841 -1103.1378
+155871.2629954561 2.6075904 -1103.1774
+155872.2629955604 2.6071968 -1103.2168
+155873.2629956647 2.6067243 -1103.2959
+155874.262995769 2.6065667 -1103.1774
+155875.2629958733 2.6059368 -1103.2366
+155876.2629959777 2.6055825 -1103.2168
+155877.262996082 2.6051495 -1103.2366
+155878.2629961863 2.6048739 -1103.197
+155879.2629962906 2.6043227 -1103.197
+155880.2629963949 2.6038897 -1103.2562
+155881.2629964992 2.6034961 -1103.2959
+155882.2629966035 2.6031022 -1103.1774
+155883.2629967078 2.6027873 -1103.2366
+155884.2629968121 2.6023149 -1103.2562
+155885.2629969164 2.6019211 -1103.2761
+155886.2629970207 2.6016061 -1103.2366
+155887.262997125 2.6012518 -1103.2562
+155888.2629972294 2.6007402 -1103.2562
+155889.2629973337 2.6002676 -1103.2366
+155890.262997438 2.5999527 -1103.2761
+155891.2629975423 2.5994015 -1103.2366
+155892.2629976466 2.5990472 -1103.2168
+155893.2629977509 2.5988503 -1103.2168
+155894.2629978552 2.5983386 -1103.2366
+155895.2629979595 2.5979843 -1103.2366
+155896.2629980638 2.5976298 -1103.1576
+155897.2629981681 2.5971575 -1103.197
+155898.2629982724 2.5968425 -1103.2366
+155899.2629983767 2.5964489 -1103.197
+155900.262998481 2.5959764 -1103.2168
+155901.2629985854 2.5956614 -1103.2366
+155902.2629986897 2.5951891 -1103.2366
+155903.262998794 2.5947559 -1103.2761
+155904.2629988983 2.5943229 -1103.2959
+155905.2629990026 2.5938897 -1103.197
+155906.2629991069 2.5936141 -1103.2366
+155907.2629992112 2.5932205 -1103.197
+155908.2629993155 2.5927875 -1103.2168
+155909.2629994198 2.5923543 -1103.3156
+155910.2629995241 2.592 -1103.2168
+155911.2629996284 2.5916064 -1103.1378
+155912.2629997327 2.5911734 -1103.3156
+155913.2629998371 2.5908585 -1103.2761
+155914.2629999414 2.5904253 -1103.1774
+155915.2630000457 2.5900316 -1103.2366
+155916.26300015 2.5895984 -1103.197
+155917.2630002543 2.5891654 -1103.2562
+155918.2630003586 2.5889292 -1103.2562
+155919.2630004629 2.5884569 -1103.2366
+155920.2630005672 2.5880237 -1103.2761
+155921.2630006715 2.5877481 -1103.197
+155922.2630007758 2.5872364 -1103.2168
+155923.2630008801 2.5869215 -1103.2168
+155924.2630009844 2.5864489 -1103.1774
+155925.2630010888 2.5860159 -1103.197
+155926.2630011931 2.5855434 -1103.2761
+155927.2630012974 2.5853074 -1103.2959
+155928.2630014017 2.5848742 -1103.2959
+155929.263001506 2.5843623 -1103.2366
+155930.2630016103 2.584008 -1103.3156
+155931.2630017146 2.583575 -1103.197
+155932.2630018189 2.5831025 -1103.1774
+155933.2630019232 2.5827875 -1103.2366
+155934.2630020275 2.5823152 -1103.2168
+155935.2630021318 2.5819609 -1103.2761
+155936.2630022361 2.5814097 -1103.2366
+155937.2630023404 2.5810161 -1103.2366
+155938.2630024448 2.5805435 -1103.1774
+155939.2630025491 2.5801499 -1103.1774
+155940.2630026534 2.579756 -1103.197
+155941.2630027577 2.5792837 -1103.1774
+155942.263002862 2.5788901 -1103.2562
+155943.2630029663 2.5786538 -1103.2366
+155944.2630030706 2.5781813 -1103.2761
+155945.2630031749 2.5777483 -1103.2761
+155946.2630032792 2.5773547 -1103.2168
+155947.2630033835 2.5768821 -1103.1774
+155948.2630034878 2.5766065 -1103.1774
+155949.2630035921 2.5760159 -1103.2168
+155950.2630036965 2.5757403 -1103.1576
+155951.2630038008 2.5753074 -1103.3156
+155952.2630039051 2.5748351 -1103.2168
+155953.2630040094 2.5744019 -1103.1774
+155954.2630041137 2.5739689 -1103.2168
+155955.263004218 2.5736146 -1103.1774
+155956.2630043223 2.5732601 -1103.1378
+155957.2630044266 2.5729058 -1103.2761
+155958.2630045309 2.5723941 -1103.2761
+155959.2630046352 2.5718822 -1103.197
+155960.2630047395 2.5715673 -1103.2168
+155961.2630048438 2.571213 -1103.2168
+155962.2630049482 2.5707011 -1103.197
+155963.2630050525 2.5703075 -1103.2562
+155964.2630051568 2.5699139 -1103.1576
+155965.2630052611 2.56952 -1103.2366
+155966.2630053654 2.5690084 -1103.2761
+155967.2630054697 2.5686934 -1103.1576
+155968.263005574 2.5682209 -1103.1378
+155969.2630056783 2.5678666 -1103.2959
+155970.2630057826 2.567394 -1103.1774
+155971.2630058869 2.5670397 -1103.3551
+155972.2630059912 2.5665281 -1103.2366
+155973.2630060955 2.5661736 -1103.197
+155974.2630061999 2.5657012 -1103.1774
+155975.2630063042 2.5653076 -1103.1774
+155976.2630064085 2.5649137 -1103.2761
+155977.2630065128 2.5644808 -1103.2761
+155978.2630066171 2.5640872 -1103.2366
+155979.2630067214 2.5636146 -1103.1576
+155980.2630068257 2.5631027 -1103.2168
+155981.26300693 2.5628667 -1103.1774
+155982.2630070343 2.5624335 -1103.2562
+155983.2630071386 2.5619612 -1103.197
+155984.2630072429 2.5616856 -1103.1576
+155985.2630073472 2.560977 -1103.2168
+155986.2630074515 2.5606225 -1103.1576
+155987.2630075559 2.5602682 -1103.2562
+155988.2630076602 2.5598352 -1103.1576
+155989.2630077645 2.5594416 -1103.3156
+155990.2630078688 2.559087 -1103.2168
+155991.2630079731 2.5586541 -1103.1774
+155992.2630080774 2.5581815 -1103.2366
+155993.2630081817 2.5578272 -1103.2959
+155994.263008286 2.5573943 -1103.2366
+155995.2630083903 2.5569613 -1103.197
+155996.2630084946 2.5566463 -1103.1378
+155997.2630085989 2.5562525 -1103.3156
+155998.2630087032 2.5558195 -1103.197
+155999.2630088076 2.555347 -1103.2761
+156000.2630089119 2.5547957 -1103.2168
+156001.2630090162 2.5545597 -1103.2168
+156002.2630091205 2.5541265 -1103.2366
+156003.2630092248 2.5535755 -1103.1378
+156004.2630093291 2.553221 -1103.197
+156005.2630094334 2.5528667 -1103.1576
+156006.2630095377 2.5523551 -1103.1182
+156007.263009642 2.5519218 -1103.197
+156008.2630097463 2.5515282 -1103.2562
+156009.2630098506 2.551095 -1103.2562
+156010.2630099549 2.5507407 -1103.1774
+156011.2630100593 2.5502291 -1103.1774
+156012.2630101636 2.5498352 -1103.2168
+156013.2630102679 2.5494022 -1103.2366
+156014.2630103722 2.5490873 -1103.1774
+156015.2630104765 2.5484967 -1103.1774
+156016.2630105808 2.5481818 -1103.2168
+156017.2630106851 2.5476699 -1103.197
+156018.2630107894 2.5472369 -1103.2366
+156019.2630108937 2.546804 -1103.2959
+156020.263010998 2.546489 -1103.1774
+156021.2630111023 2.5459378 -1103.2761
+156022.2630112066 2.5456228 -1103.1378
+156023.2630113109 2.5450716 -1103.1576
+156024.2630114153 2.5447173 -1103.2168
+156025.2630115196 2.5443237 -1103.2761
+156026.2630116239 2.5438511 -1103.2366
+156027.2630117282 2.5434182 -1103.197
+156028.2630118325 2.5429063 -1103.2366
+156029.2630119368 2.542552 -1103.1774
+156030.2630120411 2.542237 -1103.197
+156031.2630121454 2.5416465 -1103.2366
+156032.2630122497 2.5412529 -1103.197
+156033.263012354 2.5407803 -1103.3156
+156034.2630124583 2.540426 -1103.2168
+156035.2630125626 2.5399535 -1103.2366
+156036.263012667 2.5395992 -1103.2562
+156037.2630127713 2.5390086 -1103.1774
+156038.2630128756 2.5386937 -1103.2959
+156039.2630129799 2.5382607 -1103.2562
+156040.2630130842 2.5378671 -1103.2562
+156041.2630131885 2.5372765 -1103.1774
+156042.2630132928 2.536922 -1103.197
+156043.2630133971 2.5364497 -1103.197
+156044.2630135014 2.5360167 -1103.3156
+156045.2630136057 2.5355835 -1103.1774
+156046.26301371 2.5351505 -1103.1774
+156047.2630138143 2.5347567 -1103.2366
+156048.2630139187 2.534363 -1103.2366
+156049.263014023 2.5338907 -1103.1774
+156050.2630141273 2.5333395 -1103.197
+156051.2630142316 2.5329852 -1103.2562
+156052.2630143359 2.5325127 -1103.197
+156053.2630144402 2.5320797 -1103.2562
+156054.2630145445 2.5317647 -1103.2761
+156055.2630146488 2.5312922 -1103.2761
+156056.2630147531 2.5307806 -1103.197
+156057.2630148574 2.5303473 -1103.2959
+156058.2630149617 2.5299144 -1103.2761
+156059.263015066 2.5295601 -1103.1774
+156060.2630151703 2.5290089 -1103.2168
+156061.2630152747 2.5286152 -1103.2562
+156062.263015379 2.5281034 -1103.2366
+156063.2630154833 2.5277491 -1103.1774
+156064.2630155876 2.5271585 -1103.197
+156065.2630156919 2.5268042 -1103.2366
+156066.2630157962 2.526371 -1103.2959
+156067.2630159005 2.5259774 -1103.2959
+156068.2630160048 2.5254655 -1103.2761
+156069.2630161091 2.5249932 -1103.2366
+156070.2630162134 2.5245206 -1103.2562
+156071.2630163177 2.5241663 -1103.197
+156072.263016422 2.523694 -1103.2366
+156073.2630165264 2.5232608 -1103.1378
+156074.2630166307 2.5228279 -1103.1378
+156075.263016735 2.5223553 -1103.2761
+156076.2630168393 2.5219223 -1103.2366
+156077.2630169436 2.5214891 -1103.1378
+156078.2630170479 2.5210168 -1103.1774
+156079.2630171522 2.5206232 -1103.2366
+156080.2630172565 2.52019 -1103.2562
+156081.2630173608 2.519757 -1103.2366
+156082.2630174651 2.5192058 -1103.1576
+156083.2630175694 2.5188122 -1103.197
+156084.2630176737 2.518379 -1103.197
+156085.2630177781 2.5179067 -1103.2761
+156086.2630178824 2.5173948 -1103.1576
+156087.2630179867 2.5170405 -1103.1378
+156088.263018091 2.5166075 -1103.1774
+156089.2630181953 2.5161743 -1103.1576
+156090.2630182996 2.5156231 -1103.2761
+156091.2630184039 2.5152295 -1103.1576
+156092.2630185082 2.5147965 -1103.1774
+156093.2630186125 2.5144026 -1103.2761
+156094.2630187168 2.5139697 -1103.1774
+156095.2630188211 2.5134971 -1103.2761
+156096.2630189254 2.5130248 -1103.2959
+156097.2630190298 2.5125523 -1103.2366
+156098.2630191341 2.5120406 -1103.197
+156099.2630192384 2.511765 -1103.197
+156100.2630193427 2.5111351 -1103.1774
+156101.263019447 2.5107415 -1103.2366
+156102.2630195513 2.5102296 -1103.1774
+156103.2630196556 2.509836 -1103.3156
+156104.2630197599 2.5094421 -1103.2562
+156105.2630198642 2.5088911 -1103.2562
+156106.2630199685 2.5084972 -1103.197
+156107.2630200728 2.5080643 -1103.2168
+156108.2630201771 2.5075917 -1103.2761
+156109.2630202814 2.5071194 -1103.1576
+156110.2630203858 2.5066862 -1103.2761
+156111.2630204901 2.5063713 -1103.1774
+156112.2630205944 2.505899 -1103.197
+156113.2630206987 2.5053084 -1103.3353
+156114.263020803 2.5048358 -1103.2366
+156115.2630209073 2.5045209 -1103.1576
+156116.2630210116 2.5040092 -1103.2562
+156117.2630211159 2.5036154 -1103.2168
+156118.2630212202 2.5030644 -1103.197
+156119.2630213245 2.5025525 -1103.1182
+156120.2630214288 2.5021195 -1103.2562
+156121.2630215331 2.5016077 -1103.2562
+156122.2630216375 2.501214 -1103.2562
+156123.2630217418 2.5007415 -1103.0785
+156124.2630218461 2.5003085 -1103.2366
+156124.8750219098 2.4999936 -1103.2168
+156124.8770219099 2.5000329 -1103.1576
+156124.9170219144 2.536371 0.0
+156125.9170220187 2.5418038 0.0
+156126.917022123 2.5431819 0.0
+156127.9170222273 2.5440085 0.0
+156128.9170223316 2.544678 0.0
+156129.9170224359 2.5453079 0.0
+156130.9170225402 2.5458984 0.0
+156131.9170226445 2.546489 0.0
+156132.9170227489 2.546922 0.0
+156133.9170228532 2.5474339 0.0
+156134.9170229575 2.5477881 0.0
+156135.9170230618 2.5482605 0.0
+156136.9170231661 2.548733 0.0
+156137.9170232704 2.5491266 0.0
+156138.9170233747 2.5494022 0.0
+156139.917023479 2.5498748 0.0
+156140.9170235833 2.5501108 0.0
+156141.9170236876 2.5504258 0.0
+156142.9170237919 2.5507407 0.0
+156143.9170238962 2.5510557 0.0
+156144.9170240005 2.5514102 0.0
+156145.9170241049 2.5516462 0.0
+156146.9170242092 2.5520005 0.0
+156147.9170243135 2.5523155 0.0
+156148.9170244178 2.5525911 0.0
+156149.9170245221 2.552906 0.0
+156150.9170246264 2.5530636 0.0
+156151.9170247307 2.5534179 0.0
+156152.917024835 2.5535359 0.0
+156153.9170249393 2.5539298 0.0
+156154.9170250436 2.5541265 0.0
+156155.9170251479 2.5543234 0.0
+156156.9170252522 2.554599 0.0
+156157.9170253566 2.5548353 0.0
+156158.9170254609 2.555032 0.0
+156159.9170255652 2.5551896 0.0
+156160.9170256695 2.5555439 0.0
+156161.9170257738 2.5557013 0.0
+156162.9170258781 2.5559375 0.0
+156163.9170259824 2.5561345 0.0
+156164.9170260867 2.5564101 0.0
+156165.917026191 2.5566857 0.0
+156166.9170262953 2.5568824 0.0
+156167.9170263996 2.5570793 0.0
+156168.9170265039 2.557158 0.0
+156169.9170266083 2.5573943 0.0
+156170.9170267126 2.5576305 0.0
+156171.9170268169 2.5577879 0.0
+156172.9170269212 2.5579848 0.0
+156173.9170270255 2.5582211 0.0
+156174.9170271298 2.5583391 0.0
+156175.9170272341 2.5585361 0.0
+156176.9170273384 2.5587327 0.0
+156177.9170274427 2.5589297 0.0
+156178.917027547 2.559087 0.0
+156179.9170276513 2.559284 0.0
+156180.9170277556 2.5593626 0.0
+156181.9170278599 2.5595989 0.0
+156182.9170279643 2.5598352 0.0
+156183.9170280686 2.5599532 0.0
+156184.9170281729 2.5601501 0.0
+156185.9170282772 2.5602682 0.0
+156186.9170283815 2.5604258 0.0
+156187.9170284858 2.5606225 0.0
+156188.9170285901 2.5608587 0.0
+156189.9170286944 2.560977 0.0
+156190.9170287987 2.5611343 0.0
+156191.917028903 2.5612524 0.0
+156192.9170290073 2.5612919 0.0
+156193.9170291116 2.5616462 0.0
+156194.917029216 2.5616462 0.0
+156195.9170293203 2.5618429 0.0
+156196.9170294246 2.5619612 0.0
+156197.9170295289 2.5622368 0.0
+156198.9170296332 2.5623548 0.0
+156199.9170297375 2.5625124 0.0
+156200.9170298418 2.5627484 0.0
+156201.9170299461 2.5627878 0.0
+156202.9170300504 2.5628273 0.0
+156203.9170301547 2.5630634 0.0
+156204.917030259 2.5632603 0.0
+156205.9170303633 2.563339 0.0
+156206.9170304677 2.563339 0.0
+156207.917030572 2.5634573 0.0
+156208.9170306763 2.5637326 0.0
+156209.9170307806 2.5638902 0.0
+156210.9170308849 2.5640872 0.0
+156211.9170309892 2.5640872 0.0
+156212.9170310935 2.5643232 0.0
+156213.9170311978 2.5644021 0.0
+156214.9170313021 2.5645988 0.0
+156215.9170314064 2.5646381 0.0
+156216.9170315107 2.5647957 0.0
+156217.917031615 2.5649927 0.0
+156218.9170317193 2.565032 0.0
+156219.9170318237 2.5653076 0.0
+156220.917031928 2.565268 0.0
+156221.9170320323 2.565465 0.0
+156222.9170321366 2.5656619 0.0
+156223.9170322409 2.5657799 0.0
+156224.9170323452 2.5658982 0.0
+156225.9170324495 2.5659769 0.0
+156226.9170325538 2.5661736 0.0
+156227.9170326581 2.5662131 0.0
+156228.9170327624 2.5663705 0.0
+156229.9170328667 2.5665281 0.0
+156230.917032971 2.5666854 0.0
+156231.9170330754 2.5666068 0.0
+156232.9170331797 2.5667641 0.0
+156233.917033284 2.5670004 0.0
+156234.9170333883 2.5671973 0.0
+156235.9170334926 2.5671973 0.0
+156236.9170335969 2.5673547 0.0
+156237.9170337012 2.567394 0.0
+156238.9170338055 2.5675123 0.0
+156239.9170339098 2.5676696 0.0
+156240.9170340141 2.5677485 0.0
+156241.9170341184 2.5679452 0.0
+156242.9170342227 2.5680239 0.0
+156243.9170343271 2.5681422 0.0
+156244.9170344314 2.5681815 0.0
+156245.9170345357 2.5684571 0.0
+156246.91703464 2.5684178 0.0
+156247.9170347443 2.5684965 0.0
+156248.9170348486 2.5686934 0.0
+156249.9170349529 2.5687721 0.0
+156250.9170350572 2.5688508 0.0
+156251.9170351615 2.5690084 0.0
+156252.9170352658 2.569087 0.0
+156253.9170353701 2.569205 0.0
+156254.9170354744 2.5693626 0.0
+156255.9170355788 2.569402 0.0
+156256.9170356831 2.5695593 0.0
+156257.9170357874 2.5696383 0.0
+156258.9170358917 2.5697956 0.0
+156259.917035996 2.5698349 0.0
+156260.9170361003 2.5699532 0.0
+156261.9170362046 2.5701499 0.0
+156262.9170363089 2.5702288 0.0
+156263.9170364132 2.5703075 0.0
+156264.9170365175 2.5704648 0.0
+156265.9170366218 2.5704648 0.0
+156266.9170367261 2.5706224 0.0
+156267.9170368304 2.5707011 0.0
+156268.9170369348 2.5708191 0.0
+156269.9170370391 2.5709767 0.0
+156270.9170371434 2.5711343 0.0
+156271.9170372477 2.5711343 0.0
+156272.917037352 2.5712523 0.0
+156273.9170374563 2.5713704 0.0
+156274.9170375606 2.5714886 0.0
+156275.9170376649 2.5715673 0.0
+156276.9170377692 2.5716066 0.0
+156277.9170378735 2.5718429 0.0
+156278.9170379778 2.5717642 0.0
+156279.9170380821 2.5720396 0.0
+156280.9170381865 2.5719216 0.0
+156281.9170382908 2.5720792 0.0
+156282.9170383951 2.5722365 0.0
+156283.9170384994 2.5723941 0.0
+156284.9170386037 2.5725121 0.0
+156285.917038708 2.5724728 0.0
+156286.9170388123 2.5727091 0.0
+156287.9170389166 2.5726695 0.0
+156288.9170390209 2.5727484 0.0
+156289.9170391252 2.573024 0.0
+156290.9170392295 2.5731027 0.0
+156291.9170393338 2.5731027 0.0
+156292.9170394382 2.5731421 0.0
+156293.9170395425 2.573339 0.0
+156294.9170396468 2.573457 0.0
+156295.9170397511 2.5736539 0.0
+156296.9170398554 2.573457 0.0
+156297.9170399597 2.5736539 0.0
+156298.917040064 2.573772 0.0
+156299.9170401683 2.5738113 0.0
+156300.9170402726 2.5739295 0.0
+156301.9170403769 2.5740082 0.0
+156302.9170404812 2.5742049 0.0
+156303.9170405855 2.5742049 0.0
+156304.9170406898 2.5743625 0.0
+156305.9170407942 2.5744019 0.0
+156306.9170408985 2.5745988 0.0
+156307.9170410028 2.5746381 0.0
+156308.9170411071 2.5747955 0.0
+156309.9170412114 2.5747955 0.0
+156310.9170413157 2.5748744 0.0
+156311.91704142 2.5749137 0.0
+156312.9170415243 2.5749924 0.0
+156313.9170416286 2.5751104 0.0
+156314.9170417329 2.57515 0.0
+156315.9170418372 2.5753467 0.0
+156316.9170419415 2.5754254 0.0
+156317.9170420459 2.5754254 0.0
+156318.9170421502 2.575583 0.0
+156319.9170422545 2.575583 0.0
+156320.9170423588 2.5757799 0.0
+156321.9170424631 2.5758193 0.0
+156322.9170425674 2.5760553 0.0
+156323.9170426717 2.5760159 0.0
+156324.917042776 2.5761342 0.0
+156325.9170428803 2.5762129 0.0
+156326.9170429846 2.5763705 0.0
+156327.9170430889 2.5764492 0.0
+156328.9170431932 2.5765278 0.0
+156329.9170432976 2.5766065 0.0
+156330.9170434019 2.5765672 0.0
+156331.9170435062 2.5766854 0.0
+156332.9170436105 2.5768034 0.0
+156333.9170437148 2.5769215 0.0
+156334.9170438191 2.5770791 0.0
+156335.9170439234 2.5771577 0.0
+156336.9170440277 2.5771577 0.0
+156337.917044132 2.5773153 0.0
+156338.9170442363 2.5772364 0.0
+156339.9170443406 2.5773153 0.0
+156340.9170444449 2.5774727 0.0
+156341.9170445492 2.5775907 0.0
+156342.9170446536 2.5776303 0.0
+156343.9170447579 2.5776696 0.0
+156344.9170448622 2.577827 0.0
+156345.9170449665 2.5779057 0.0
+156346.9170450708 2.5780632 0.0
+156347.9170451751 2.5780632 0.0
+156348.9170452794 2.5782208 0.0
+156349.9170453837 2.5781813 0.0
+156350.917045488 2.5782995 0.0
+156351.9170455923 2.5783782 0.0
+156352.9170456966 2.5784175 0.0
+156353.9170458009 2.5785751 0.0
+156354.9170459053 2.5786538 0.0
+156355.9170460096 2.5787325 0.0
+156356.9170461139 2.5789294 0.0
+156357.9170462182 2.5788112 0.0
+156358.9170463225 2.5790081 0.0
+156359.9170464268 2.5790868 0.0
+156360.9170465311 2.5791261 0.0
+156361.9170466354 2.5792444 0.0
+156362.9170467397 2.5793231 0.0
+156363.917046844 2.5793624 0.0
+156364.9170469483 2.57952 0.0
+156365.9170470526 2.57952 0.0
+156366.917047157 2.579638 0.0
+156367.9170472613 2.5797167 0.0
+156368.9170473656 2.5798743 0.0
+156369.9170474699 2.5799136 0.0
+156370.9170475742 2.579953 0.0
+156371.9170476785 2.5799923 0.0
+156372.9170477828 2.5801499 0.0
+156373.9170478871 2.5801499 0.0
+156374.9170479914 2.5803072 0.0
+156375.9170480957 2.5803466 0.0
+156376.9170482 2.5804648 0.0
+156377.9170483043 2.5805042 0.0
+156378.9170484087 2.5805435 0.0
+156379.917048513 2.5806615 0.0
+156380.9170486173 2.5808191 0.0
+156381.9170487216 2.5807405 0.0
+156382.9170488259 2.5809371 0.0
+156383.9170489302 2.5810554 0.0
+156384.9170490345 2.5810554 0.0
+156385.9170491388 2.5812128 0.0
+156386.9170492431 2.5812914 0.0
+156387.9170493474 2.5813704 0.0
+156388.9170494517 2.581331 0.0
+156389.917049556 2.5813704 0.0
+156390.9170496603 2.5814884 0.0
+156391.9170497647 2.5816064 0.0
+156392.917049869 2.5817246 0.0
+156393.9170499733 2.581764 0.0
+156394.9170500776 2.5818427 0.0
+156395.9170501819 2.5820003 0.0
+156396.9170502862 2.5820003 0.0
+156397.9170503905 2.5820396 0.0
+156398.9170504948 2.5821576 0.0
+156399.9170505991 2.582197 0.0
+156400.9170507034 2.5823545 0.0
+156401.9170508077 2.5823545 0.0
+156402.917050912 2.5825119 0.0
+156403.9170510164 2.5825119 0.0
+156404.9170511207 2.5826302 0.0
+156405.917051225 2.5827088 0.0
+156406.9170513293 2.5828269 0.0
+156407.9170514336 2.5827875 0.0
+156408.9170515379 2.5829058 0.0
+156409.9170516422 2.5830631 0.0
+156410.9170517465 2.5831025 0.0
+156411.9170518508 2.5831025 0.0
+156412.9170519551 2.5832207 0.0
+156413.9170520594 2.5833387 0.0
+156414.9170521637 2.5833387 0.0
+156415.9170522681 2.5834568 0.0
+156416.9170523724 2.5833781 0.0
+156417.9170524767 2.5835357 0.0
+156418.917052581 2.583575 0.0
+156419.9170526853 2.5836537 0.0
+156420.9170527896 2.5837719 0.0
+156421.9170528939 2.5838506 0.0
+156422.9170529982 2.5838113 0.0
+156423.9170531025 2.584008 0.0
+156424.9170532068 2.5840473 0.0
+156425.9170533111 2.5841262 0.0
+156426.9170534154 2.5841656 0.0
+156427.9170535197 2.5843229 0.0
+156428.9170536241 2.5843229 0.0
+156429.9170537284 2.5844018 0.0
+156430.9170538327 2.5845592 0.0
+156431.917053937 2.5845985 0.0
+156432.9170540413 2.5846379 0.0
+156433.9170541456 2.5847955 0.0
+156434.9170542499 2.5848348 0.0
+156435.9170543542 2.5848348 0.0
+156436.9170544585 2.5849528 0.0
+156437.9170545628 2.5851104 0.0
+156438.9170546671 2.5851891 0.0
+156439.9170547714 2.5851498 0.0
+156440.9170548758 2.5853467 0.0
+156441.9170549801 2.5852678 0.0
+156442.9170550844 2.5853074 0.0
+156443.9170551887 2.5854647 0.0
+156444.917055293 2.5856223 0.0
+156445.9170553973 2.5855827 0.0
+156446.9170555016 2.5856616 0.0
+156447.9170556059 2.5857797 0.0
+156448.9170557102 2.5859373 0.0
+156449.9170558145 2.585819 0.0
+156450.9170559188 2.5858977 0.0
+156451.9170560231 2.5860553 0.0
+156452.9170561275 2.5860553 0.0
+156453.9170562318 2.586134 0.0
+156454.9170563361 2.5862126 0.0
+156455.9170564404 2.5864096 0.0
+156456.9170565447 2.5864489 0.0
+156457.917056649 2.5864489 0.0
+156458.9170567533 2.5864489 0.0
+156459.9170568576 2.5865276 0.0
+156460.9170569619 2.5866852 0.0
+156461.9170570662 2.5866458 0.0
+156462.9170571705 2.5867245 0.0
+156463.9170572748 2.5868821 0.0
+156464.9170573791 2.5868821 0.0
+156465.9170574835 2.5870001 0.0
+156466.9170575878 2.5870395 0.0
+156467.9170576921 2.5871181 0.0
+156468.9170577964 2.5872757 0.0
+156469.9170579007 2.5873151 0.0
+156470.917058005 2.5873544 0.0
+156471.9170581093 2.5874331 0.0
+156472.9170582136 2.5874727 0.0
+156473.9170583179 2.587512 0.0
+156474.9170584222 2.5875907 0.0
+156475.9170585265 2.5876694 0.0
+156476.9170586308 2.5875907 0.0
+156477.9170587352 2.587827 0.0
+156478.9170588395 2.5878663 0.0
+156479.9170589438 2.5879843 0.0
+156480.9170590481 2.5880237 0.0
+156481.9170591524 2.5880237 0.0
+156482.9170592567 2.5881419 0.0
+156483.917059361 2.5882206 0.0
+156484.9170594653 2.5882599 0.0
+156485.9170595696 2.5884175 0.0
+156486.9170596739 2.588378 0.0
+156487.9170597782 2.5886142 0.0
+156488.9170598825 2.5885749 0.0
+156489.9170599869 2.5885355 0.0
+156490.9170600912 2.5886929 0.0
+156491.9170601955 2.5888112 0.0
+156492.9170602998 2.5888505 0.0
+156493.9170604041 2.5888112 0.0
+156494.9170605084 2.5889292 0.0
+156495.9170606127 2.5890474 0.0
+156496.917060717 2.5891261 0.0
+156497.9170608213 2.5891261 0.0
+156498.9170609256 2.5892835 0.0
+156499.9170610299 2.5892441 0.0
+156500.9170611342 2.5893624 0.0
+156501.9170612386 2.5893624 0.0
+156502.9170613429 2.5894804 0.0
+156503.9170614472 2.5895197 0.0
+156504.9170615515 2.5895984 0.0
+156505.9170616558 2.5897167 0.0
+156506.9170617601 2.5896773 0.0
+156507.9170618644 2.589874 0.0
+156508.9170619687 2.5898347 0.0
+156509.917062073 2.5899529 0.0
+156510.9170621773 2.5900316 0.0
+156511.9170622816 2.590071 0.0
+156512.9170623859 2.590189 0.0
+156513.9170624902 2.590071 0.0
+156514.9170625946 2.590189 0.0
+156515.9170626989 2.5903072 0.0
+156516.9170628032 2.5903859 0.0
+156517.9170629075 2.5903859 0.0
+156518.9170630118 2.5904646 0.0
+156519.9170631161 2.5905828 0.0
+156520.9170632204 2.5906615 0.0
+156521.9170633247 2.5907402 0.0
+156522.917063429 2.5908978 0.0
+156523.9170635333 2.5908189 0.0
+156524.9170636376 2.5910158 0.0
+156525.9170637419 2.5909765 0.0
+156526.9170638463 2.5909765 0.0
+156527.9170639506 2.5910552 0.0
+156528.9170640549 2.5912521 0.0
+156529.9170641592 2.5912914 0.0
+156530.9170642635 2.5913701 0.0
+156531.9170643678 2.5914094 0.0
+156532.9170644721 2.5913308 0.0
+156533.9170645764 2.5914884 0.0
+156534.9170646807 2.5916457 0.0
+156535.917064785 2.5916064 0.0
+156536.9170648893 2.5916851 0.0
+156537.9170649936 2.5917637 0.0
+156538.917065098 2.5917637 0.0
+156539.9170652023 2.5918427 0.0
+156540.9170653066 2.591882 0.0
+156541.9170654109 2.5919607 0.0
+156542.9170655152 2.5921576 0.0
+156543.9170656195 2.5921183 0.0
+156544.9170657238 2.5921969 0.0
+156545.9170658281 2.5922756 0.0
+156546.9170659324 2.5922756 0.0
+156547.9170660367 2.5923543 0.0
+156548.917066141 2.592315 0.0
+156549.9170662453 2.5925119 0.0
+156550.9170663496 2.5925512 0.0
+156551.917066454 2.5927088 0.0
+156552.9170665583 2.5927482 0.0
+156553.9170666626 2.5927088 0.0
+156554.9170667669 2.5927482 0.0
+156555.9170668712 2.5928662 0.0
+156556.9170669755 2.5929055 0.0
+156557.9170670798 2.5929449 0.0
+156558.9170671841 2.5931025 0.0
+156559.9170672884 2.5931811 0.0
+156560.9170673927 2.5931418 0.0
+156561.917067497 2.5932598 0.0
+156562.9170676013 2.5932205 0.0
+156563.9170677057 2.5933781 0.0
+156564.91706781 2.5934567 0.0
+156565.9170679143 2.5934961 0.0
+156566.9170680186 2.5934174 0.0
+156567.9170681229 2.5935354 0.0
+156568.9170682272 2.5936537 0.0
+156569.9170683315 2.5936537 0.0
+156570.9170684358 2.593693 0.0
+156571.9170685401 2.593811 0.0
+156572.9170686444 2.5939686 0.0
+156573.9170687487 2.5939686 0.0
+156574.917068853 2.594126 0.0
+156575.9170689574 2.5940866 0.0
+156576.9170690617 2.5942047 0.0
+156577.917069166 2.5941653 0.0
+156578.9170692703 2.5943623 0.0
+156579.9170693746 2.5942836 0.0
+156580.9170694789 2.5944016 0.0
+156581.9170695832 2.5945196 0.0
+156582.9170696875 2.5945196 0.0
+156583.9170697918 2.5945592 0.0
+156584.9170698961 2.5947165 0.0
+156585.9170700004 2.5947165 0.0
+156586.9170701047 2.5947559 0.0
+156587.917070209 2.5947559 0.0
+156588.9170703134 2.5949135 0.0
+156589.9170704177 2.5948741 0.0
+156590.917070522 2.5949528 0.0
+156591.9170706263 2.5950708 0.0
+156592.9170707306 2.5951495 0.0
+156593.9170708349 2.5951891 0.0
+156594.9170709392 2.5953071 0.0
+156595.9170710435 2.5953071 0.0
+156596.9170711478 2.5953071 0.0
+156597.9170712521 2.5954251 0.0
+156598.9170713564 2.595504 0.0
+156599.9170714607 2.5955434 0.0
+156600.9170715651 2.5955434 0.0
+156601.9170716694 2.5956614 0.0
+156602.9170717737 2.5957007 0.0
+156603.917071878 2.5957401 0.0
+156604.9170719823 2.5958583 0.0
+156605.9170720866 2.5958977 0.0
+156606.9170721909 2.5958977 0.0
+156607.9170722952 2.5958977 0.0
+156608.9170723995 2.5960946 0.0
+156609.9170725038 2.5961339 0.0
+156610.9170726081 2.5962126 0.0
+156611.9170727124 2.5962913 0.0
+156612.9170728168 2.5962913 0.0
+156613.9170729211 2.5964882 0.0
+156614.9170730254 2.5964882 0.0
+156615.9170731297 2.5964489 0.0
+156616.917073234 2.5965276 0.0
+156617.9170733383 2.5966063 0.0
+156618.9170734426 2.5966456 0.0
+156619.9170735469 2.5967638 0.0
+156620.9170736512 2.5967638 0.0
+156621.9170737555 2.5968032 0.0
+156622.9170738598 2.5968819 0.0
+156623.9170739641 2.5969605 0.0
+156624.9170740684 2.5969212 0.0
+156625.9170741728 2.5970395 0.0
+156626.9170742771 2.5971181 0.0
+156627.9170743814 2.5971575 0.0
+156628.9170744857 2.5971575 0.0
+156629.91707459 2.5973148 0.0
+156630.9170746943 2.5973148 0.0
+156631.9170747986 2.5975118 0.0
+156632.9170749029 2.5973938 0.0
+156633.9170750072 2.5975118 0.0
+156634.9170751115 2.5976298 0.0
+156635.9170752158 2.5975904 0.0
+156636.9170753201 2.5976694 0.0
+156637.9170754245 2.5979054 0.0
+156638.9170755288 2.5977874 0.0
+156639.9170756331 2.5979843 0.0
+156640.9170757374 2.598063 0.0
+156641.9170758417 2.5979843 0.0
+156642.917075946 2.5981417 0.0
+156643.9170760503 2.598181 0.0
+156644.9170761546 2.5982203 0.0
+156645.9170762589 2.5982993 0.0
+156646.9170763632 2.5983386 0.0
+156647.9170764675 2.5983779 0.0
+156648.9170765718 2.5983386 0.0
+156649.9170766762 2.5983779 0.0
+156650.9170767805 2.5984566 0.0
+156651.9170768848 2.5985353 0.0
+156652.9170769891 2.5986142 0.0
+156653.9170770934 2.5986929 0.0
+156654.9170771977 2.5987322 0.0
+156655.917077302 2.5988109 0.0
+156656.9170774063 2.5988109 0.0
+156657.9170775106 2.5988109 0.0
+156658.9170776149 2.5990078 0.0
+156659.9170777192 2.5990865 0.0
+156660.9170778235 2.5991652 0.0
+156661.9170779279 2.5991652 0.0
+156662.9170780322 2.5991259 0.0
+156663.9170781365 2.5992048 0.0
+156664.9170782408 2.5993621 0.0
+156665.9170783451 2.5993621 0.0
+156666.9170784494 2.5994408 0.0
+156667.9170785537 2.5995197 0.0
+156668.917078658 2.5996377 0.0
+156669.9170787623 2.5996377 0.0
+156670.9170788666 2.5995591 0.0
+156671.9170789709 2.5996771 0.0
+156672.9170790752 2.5997953 0.0
+156673.9170791795 2.5997953 0.0
+156674.9170792839 2.5999134 0.0
+156675.9170793882 2.599874 0.0
+156676.9170794925 2.6000314 0.0
+156677.9170795968 2.6000314 0.0
+156678.9170797011 2.6000707 0.0
+156679.9170798054 2.6001496 0.0
+156680.9170799097 2.6001496 0.0
+156681.917080014 2.600189 0.0
+156682.9170801183 2.6003463 0.0
+156683.9170802226 2.6002676 0.0
+156684.9170803269 2.6004252 0.0
+156685.9170804312 2.6004252 0.0
+156686.9170805356 2.6005826 0.0
+156687.9170806399 2.6006613 0.0
+156688.9170807442 2.6005433 0.0
+156689.9170808485 2.6006613 0.0
+156690.9170809528 2.6008976 0.0
+156691.9170810571 2.6008189 0.0
+156692.9170811614 2.6009369 0.0
+156693.9170812657 2.6009369 0.0
+156694.91708137 2.6008582 0.0
+156695.9170814743 2.6010551 0.0
+156696.9170815786 2.6011338 0.0
+156697.9170816829 2.6011732 0.0
+156698.9170817873 2.6012125 0.0
+156699.9170818916 2.6012518 0.0
+156700.9170819959 2.6012912 0.0
+156701.9170821002 2.6013305 0.0
+156702.9170822045 2.6013701 0.0
+156703.9170823088 2.6014488 0.0
+156704.9170824131 2.6015668 0.0
+156705.9170825174 2.6016061 0.0
+156706.9170826217 2.6016457 0.0
+156707.917082726 2.6017244 0.0
+156708.9170828303 2.601685 0.0
+156709.9170829346 2.6018031 0.0
+156710.9170830389 2.6017637 0.0
+156711.9170831433 2.6019211 0.0
+156712.9170832476 2.6019607 0.0
+156713.9170833519 2.6020393 0.0
+156714.9170834562 2.6020393 0.0
+156715.9170835605 2.6020787 0.0
+156716.9170836648 2.602236 0.0
+156717.9170837691 2.6021574 0.0
+156718.9170838734 2.602236 0.0
+156719.9170839777 2.6024723 0.0
+156720.917084082 2.6023936 0.0
+156721.9170841863 2.602551 0.0
+156722.9170842906 2.602433 0.0
+156723.917084395 2.602551 0.0
+156724.9170844993 2.6025906 0.0
+156725.9170846036 2.6027479 0.0
+156726.9170847079 2.6026692 0.0
+156727.9170848122 2.6027873 0.0
+156728.9170849165 2.6028659 0.0
+156729.9170850208 2.6029449 0.0
+156730.9170851251 2.6029842 0.0
+156731.9170852294 2.6029842 0.0
+156732.9170853337 2.6029449 0.0
+156733.917085438 2.6030235 0.0
+156734.9170855423 2.6031415 0.0
+156735.9170856467 2.6031809 0.0
+156736.917085751 2.6032205 0.0
+156737.9170858553 2.6032991 0.0
+156738.9170859596 2.6033778 0.0
+156739.9170860639 2.6034172 0.0
+156740.9170861682 2.6034565 0.0
+156741.9170862725 2.6036534 0.0
+156742.9170863768 2.6035354 0.0
+156743.9170864811 2.6036141 0.0
+156744.9170865854 2.6036141 0.0
+156745.9170866897 2.6037321 0.0
+156746.917086794 2.603811 0.0
+156747.9170868983 2.603811 0.0
+156748.9170870027 2.6038897 0.0
+156749.917087107 2.6040077 0.0
+156750.9170872113 2.603929 0.0
+156751.9170873156 2.6040077 0.0
+156752.9170874199 2.604126 0.0
+156753.9170875242 2.6040864 0.0
+156754.9170876285 2.6042833 0.0
+156755.9170877328 2.6042833 0.0
+156756.9170878371 2.6043227 0.0
+156757.9170879414 2.6043227 0.0
+156758.9170880457 2.6044803 0.0
+156759.91708815 2.6045589 0.0
+156760.9170882544 2.6044803 0.0
+156761.9170883587 2.6045196 0.0
+156762.917088463 2.6046376 0.0
+156763.9170885673 2.604677 0.0
+156764.9170886716 2.6047163 0.0
+156765.9170887759 2.6047952 0.0
+156766.9170888802 2.6048346 0.0
+156767.9170889845 2.6048346 0.0
+156768.9170890888 2.6049919 0.0
+156769.9170891931 2.6050708 0.0
+156770.9170892974 2.6050708 0.0
+156771.9170894017 2.6051102 0.0
+156772.9170895061 2.6051102 0.0
+156773.9170896104 2.6052675 0.0
+156774.9170897147 2.6051102 0.0
+156775.917089819 2.6052282 0.0
+156776.9170899233 2.6053069 0.0
+156777.9170900276 2.6053858 0.0
+156778.9170901319 2.6054645 0.0
+156779.9170902362 2.6055431 0.0
+156780.9170903405 2.6055431 0.0
+156781.9170904448 2.6055825 0.0
+156782.9170905491 2.6056614 0.0
+156783.9170906534 2.6056614 0.0
+156784.9170907578 2.6057794 0.0
+156785.9170908621 2.6058187 0.0
+156786.9170909664 2.6057794 0.0
+156787.9170910707 2.6060157 0.0
+156788.917091175 2.6058581 0.0
+156789.9170912793 2.6059368 0.0
+156790.9170913836 2.6061337 0.0
+156791.9170914879 2.6061337 0.0
+156792.9170915922 2.6062517 0.0
+156793.9170916965 2.6062517 0.0
+156794.9170918008 2.6062913 0.0
+156795.9170919051 2.6063306 0.0
+156796.9170920094 2.6064093 0.0
+156797.9170921138 2.6064487 0.0
+156798.9170922181 2.606488 0.0
+156799.9170923224 2.606488 0.0
+156800.9170924267 2.6066456 0.0
+156801.917092531 2.6066456 0.0
+156802.9170926353 2.6068029 0.0
+156803.9170927396 2.6067636 0.0
+156804.9170928439 2.6067243 0.0
+156805.9170929482 2.6069605 0.0
+156806.9170930525 2.6069605 0.0
+156807.9170931568 2.6069605 0.0
+156808.9170932611 2.6069999 0.0
+156809.9170933655 2.6071572 0.0
+156810.9170934698 2.6071179 0.0
+156811.9170935741 2.6071572 0.0
+156812.9170936784 2.6071968 0.0
+156813.9170937827 2.6072361 0.0
+156814.917093887 2.6073148 0.0
+156815.9170939913 2.6073935 0.0
+156816.9170940956 2.6074328 0.0
+156817.9170941999 2.6074328 0.0
+156818.9170943042 2.6075118 0.0
+156819.9170944085 2.6075511 0.0
+156820.9170945128 2.6076298 0.0
+156821.9170946172 2.6077085 0.0
+156822.9170947215 2.6077085 0.0
+156823.9170948258 2.6077085 0.0
+156824.9170949301 2.6079447 0.0
+156825.9170950344 2.6078267 0.0
+156826.9170951387 2.6079841 0.0
+156827.917095243 2.6079447 0.0
+156828.9170953473 2.6079447 0.0
+156829.9170954516 2.6080627 0.0
+156830.9170955559 2.6081021 0.0
+156831.9170956602 2.6082203 0.0
+156832.9170957645 2.608181 0.0
+156833.9170958688 2.608181 0.0
+156834.9170959732 2.608299 0.0
+156835.9170960775 2.6083384 0.0
+156836.9170961818 2.6084566 0.0
+156837.9170962861 2.608417 0.0
+156838.9170963904 2.608496 0.0
+156839.9170964947 2.608614 0.0
+156840.917096599 2.6085353 0.0
+156841.9170967033 2.6086533 0.0
+156842.9170968076 2.6086926 0.0
+156843.9170969119 2.6088109 0.0
+156844.9170970162 2.6087716 0.0
+156845.9170971205 2.6088109 0.0
+156846.9170972249 2.6089683 0.0
+156847.9170973292 2.6089683 0.0
+156848.9170974335 2.6090472 0.0
+156849.9170975378 2.6090865 0.0
+156850.9170976421 2.6091259 0.0
+156851.9170977464 2.6092439 0.0
+156852.9170978507 2.6091652 0.0
+156853.917097955 2.6092439 0.0
+156854.9170980593 2.6093621 0.0
+156855.9170981636 2.6094408 0.0
+156856.9170982679 2.6093225 0.0
+156857.9170983722 2.6094408 0.0
+156858.9170984766 2.6094015 0.0
+156859.9170985809 2.6095195 0.0
+156860.9170986852 2.6095195 0.0
+156861.9170987895 2.6096771 0.0
+156862.9170988938 2.6097164 0.0
+156863.9170989981 2.6096771 0.0
+156864.9170991024 2.6098344 0.0
+156865.9170992067 2.6098738 0.0
+156866.917099311 2.6100314 0.0
+156867.9170994153 2.6100314 0.0
+156868.9170995196 2.609992 0.0
+156869.9170996239 2.6100707 0.0
+156870.9170997282 2.6100707 0.0
+156871.9170998326 2.61011 0.0
+156872.9170999369 2.6101887 0.0
+156873.9171000412 2.6102281 0.0
+156874.9171001455 2.6103463 0.0
+156875.9171002498 2.610307 0.0
+156876.9171003541 2.610307 0.0
+156877.9171004584 2.610425 0.0
+156878.9171005627 2.610543 0.0
+156879.917100667 2.6105826 0.0
+156880.9171007713 2.6105037 0.0
+156881.9171008756 2.6107006 0.0
+156882.9171009799 2.6107006 0.0
+156883.9171010843 2.6108186 0.0
+156884.9171011886 2.6108186 0.0
+156885.9171012929 2.6108975 0.0
+156886.9171013972 2.6108975 0.0
+156887.9171015015 2.6109762 0.0
+156888.9171016058 2.6110549 0.0
+156889.9171017101 2.6109369 0.0
+156890.9171018144 2.6110156 0.0
+156891.9171019187 2.6110942 0.0
+156892.917102023 2.6111729 0.0
+156893.9171021273 2.6112125 0.0
+156894.9171022316 2.6112518 0.0
+156895.917102336 2.6113305 0.0
+156896.9171024403 2.6113698 0.0
+156897.9171025446 2.6114092 0.0
+156898.9171026489 2.6114879 0.0
+156899.9171027532 2.6114092 0.0
+156900.9171028575 2.6116455 0.0
+156901.9171029618 2.6116848 0.0
+156902.9171030661 2.6117241 0.0
+156903.9171031704 2.6116848 0.0
+156904.9171032747 2.6118424 0.0
+156905.917103379 2.6118817 0.0
+156906.9171034833 2.6118424 0.0
+156907.9171035877 2.6119604 0.0
+156908.917103692 2.6118424 0.0
+156909.9171037963 2.6119211 0.0
+156910.9171039006 2.6119998 0.0
+156911.9171040049 2.6121573 0.0
+156912.9171041092 2.6120391 0.0
+156913.9171042135 2.612236 0.0
+156914.9171043178 2.6121967 0.0
+156915.9171044221 2.6123147 0.0
+156916.9171045264 2.612354 0.0
+156917.9171046307 2.6123934 0.0
+156918.917104735 2.6123934 0.0
+156919.9171048393 2.6124723 0.0
+156920.9171049437 2.612551 0.0
+156921.917105048 2.612551 0.0
+156922.9171051523 2.6125903 0.0
+156923.9171052566 2.6125116 0.0
+156924.9171053609 2.612669 0.0
+156925.9171054652 2.6127479 0.0
+156926.9171055695 2.6127479 0.0
+156927.9171056738 2.6128659 0.0
+156928.9171057781 2.6128659 0.0
+156929.9171058824 2.6130233 0.0
+156930.9171059867 2.6129839 0.0
+156931.917106091 2.6130629 0.0
+156932.9171061954 2.6130629 0.0
+156933.9171062997 2.6131022 0.0
+156934.917106404 2.6131022 0.0
+156935.9171065083 2.6132596 0.0
+156936.9171066126 2.6132989 0.0
+156937.9171067169 2.6133778 0.0
+156938.9171068212 2.6133778 0.0
+156939.9171069255 2.6134565 0.0
+156940.9171070298 2.6134958 0.0
+156941.9171071341 2.6134958 0.0
+156942.9171072384 2.6136138 0.0
+156943.9171073427 2.6136138 0.0
+156944.9171074471 2.6135745 0.0
+156945.9171075514 2.6136532 0.0
+156946.9171076557 2.6136928 0.0
+156947.91710776 2.6138108 0.0
+156948.9171078643 2.6137714 0.0
+156949.9171079686 2.6138501 0.0
+156950.9171080729 2.6140077 0.0
+156951.9171081772 2.6140471 0.0
+156952.9171082815 2.6140471 0.0
+156953.9171083858 2.6141257 0.0
+156954.9171084901 2.6140864 0.0
+156955.9171085944 2.6141257 0.0
+156956.9171086987 2.6142833 0.0
+156957.9171088031 2.6141651 0.0
+156958.9171089074 2.6142044 0.0
+156959.9171090117 2.6142437 0.0
+156960.917109116 2.6145194 0.0
+156961.9171092203 2.61448 0.0
+156962.9171093246 2.61448 0.0
+156963.9171094289 2.61448 0.0
+156964.9171095332 2.6145587 0.0
+156965.9171096375 2.6145587 0.0
+156966.9171097418 2.6145983 0.0
+156967.9171098461 2.614677 0.0
+156968.9171099504 2.6147556 0.0
+156969.9171100548 2.6147556 0.0
+156970.9171101591 2.614795 0.0
+156971.9171102634 2.6148343 0.0
+156972.9171103677 2.6149132 0.0
+156973.917110472 2.6149919 0.0
+156974.9171105763 2.6150706 0.0
+156975.9171106806 2.6151886 0.0
+156976.9171107849 2.6151886 0.0
+156977.9171108892 2.6151886 0.0
+156978.9171109935 2.6152282 0.0
+156979.9171110978 2.6152675 0.0
+156980.9171112021 2.6153462 0.0
+156981.9171113065 2.6154642 0.0
+156982.9171114108 2.6154249 0.0
+156983.9171115151 2.6154642 0.0
+156984.9171116194 2.6155431 0.0
+156985.9171117237 2.6155825 0.0
+156986.917111828 2.6156218 0.0
+156987.9171119323 2.6155825 0.0
+156988.9171120366 2.6155431 0.0
+156989.9171121409 2.6157398 0.0
+156990.9171122452 2.6158187 0.0
+156991.9171123495 2.6158187 0.0
+156992.9171124538 2.6158581 0.0
+156993.9171125581 2.6159761 0.0
+156994.9171126625 2.6160154 0.0
+156995.9171127668 2.6160154 0.0
+156996.9171128711 2.6159761 0.0
+156997.9171129754 2.6160154 0.0
+156998.9171130797 2.6160941 0.0
+156999.917113184 2.6160548 0.0
+157000.9171132883 2.6162517 0.0
+157001.9171133926 2.6162517 0.0
+157002.9171134969 2.616291 0.0
+157003.9171136012 2.6163697 0.0
+157004.9171137055 2.6164486 0.0
+157005.9171138098 2.6164091 0.0
+157006.9171139142 2.6165273 0.0
+157007.9171140185 2.6165667 0.0
+157008.9171141228 2.6165273 0.0
+157009.9171142271 2.616606 0.0
+157010.9171143314 2.616724 0.0
+157011.9171144357 2.6166847 0.0
+157012.91711454 2.6168423 0.0
+157013.9171146443 2.6167636 0.0
+157014.9171147486 2.6168423 0.0
+157015.9171148529 2.6169209 0.0
+157016.9171149572 2.6169209 0.0
+157017.9171150615 2.6169603 0.0
+157018.9171151659 2.6170785 0.0
+157019.9171152702 2.6170785 0.0
+157020.9171153745 2.6171966 0.0
+157021.9171154788 2.6171179 0.0
+157022.9171155831 2.6172752 0.0
+157023.9171156874 2.6172752 0.0
+157024.9171157917 2.6172752 0.0
+157025.917115896 2.6173539 0.0
+157026.9171160003 2.6173539 0.0
+157027.9171161046 2.6173935 0.0
+157028.9171162089 2.6174722 0.0
+157029.9171163132 2.6175115 0.0
+157030.9171164176 2.6175902 0.0
+157031.9171165219 2.6176295 0.0
+157032.9171166262 2.6175902 0.0
+157033.9171167305 2.6176691 0.0
+157034.9171168348 2.6177478 0.0
+157035.9171169391 2.6177084 0.0
+157036.9171170434 2.6177871 0.0
+157037.9171171477 2.6179051 0.0
+157038.917117252 2.6179051 0.0
+157039.9171173563 2.6179841 0.0
+157040.9171174606 2.6180234 0.0
+157041.9171175649 2.6180627 0.0
+157042.9171176692 2.6181021 0.0
+157043.9171177736 2.6181021 0.0
+157044.9171178779 2.6182201 0.0
+157045.9171179822 2.6182201 0.0
+157046.9171180865 2.618299 0.0
+157047.9171181908 2.6183777 0.0
+157048.9171182951 2.6183777 0.0
+157049.9171183994 2.6184564 0.0
+157050.9171185037 2.6184564 0.0
+157051.917118608 2.618535 0.0
+157052.9171187123 2.6184957 0.0
+157053.9171188166 2.618614 0.0
+157054.9171189209 2.6185744 0.0
+157055.9171190253 2.6187713 0.0
+157056.9171191296 2.6186926 0.0
+157057.9171192339 2.6187713 0.0
+157058.9171193382 2.6188893 0.0
+157059.9171194425 2.6189682 0.0
+157060.9171195468 2.6188107 0.0
+157061.9171196511 2.6189289 0.0
+157062.9171197554 2.6188893 0.0
+157063.9171198597 2.6190863 0.0
+157064.917119964 2.6190076 0.0
+157065.9171200683 2.6190076 0.0
+157066.9171201726 2.6192043 0.0
+157067.917120277 2.6191649 0.0
+157068.9171203813 2.6192832 0.0
+157069.9171204856 2.6192439 0.0
+157070.9171205899 2.6194406 0.0
+157071.9171206942 2.6194406 0.0
+157072.9171207985 2.6194406 0.0
+157073.9171209028 2.6195588 0.0
+157074.9171210071 2.6195195 0.0
+157075.9171211114 2.6195195 0.0
+157076.9171212157 2.6195982 0.0
+157077.91712132 2.6196375 0.0
+157078.9171214243 2.6196375 0.0
+157079.9171215286 2.6197162 0.0
+157080.917121633 2.6197948 0.0
+157081.9171217373 2.6197948 0.0
+157082.9171218416 2.6197948 0.0
+157083.9171219459 2.6199524 0.0
+157084.9171220502 2.6197948 0.0
+157085.9171221545 2.6199524 0.0
+157086.9171222588 2.6200311 0.0
+157087.9171223631 2.6200311 0.0
+157088.9171224674 2.6201494 0.0
+157089.9171225717 2.6201098 0.0
+157090.917122676 2.6201887 0.0
+157091.9171227803 2.6203067 0.0
+157092.9171228847 2.6203461 0.0
+157093.917122989 2.6203067 0.0
+157094.9171230933 2.6203854 0.0
+157095.9171231976 2.6203854 0.0
+157096.9171233019 2.6204643 0.0
+157097.9171234062 2.6205037 0.0
+157098.9171235105 2.620543 0.0
+157099.9171236148 2.6205823 0.0
+157100.9171237191 2.6207004 0.0
+157101.9171238234 2.6207004 0.0
+157102.9171239277 2.6207397 0.0
+157103.917124032 2.6207793 0.0
+157104.9171241364 2.6207397 0.0
+157105.9171242407 2.6208973 0.0
+157106.917124345 2.6208973 0.0
+157107.9171244493 2.6210153 0.0
+157108.9171245536 2.620976 0.0
+157109.9171246579 2.6210153 0.0
+157110.9171247622 2.620976 0.0
+157111.9171248665 2.6210153 0.0
+157112.9171249708 2.6211729 0.0
+157113.9171250751 2.6212516 0.0
+157114.9171251794 2.6212516 0.0
+157115.9171252837 2.6213698 0.0
+157116.917125388 2.6214092 0.0
+157117.9171254924 2.6213303 0.0
+157118.9171255967 2.6214092 0.0
+157119.917125701 2.6214879 0.0
+157120.9171258053 2.6214879 0.0
+157121.9171259096 2.6214485 0.0
+157122.9171260139 2.6215665 0.0
+157123.9171261182 2.6216059 0.0
+157124.9171262225 2.6217241 0.0
+157125.9171263268 2.6218028 0.0
+157126.9171264311 2.6217635 0.0
+157127.9171265354 2.6217635 0.0
+157128.9171266397 2.6218815 0.0
+157129.9171267441 2.6218421 0.0
+157130.9171268484 2.6218815 0.0
+157131.9171269527 2.6219997 0.0
+157132.917127057 2.6219602 0.0
+157133.9171271613 2.6220391 0.0
+157134.9171272656 2.6221571 0.0
+157135.9171273699 2.6221178 0.0
+157136.9171274742 2.6221964 0.0
+157137.9171275785 2.6223147 0.0
+157138.9171276828 2.6222751 0.0
+157139.9171277871 2.6222358 0.0
+157140.9171278914 2.6224327 0.0
+157141.9171279958 2.622472 0.0
+157142.9171281001 2.6223934 0.0
+157143.9171282044 2.622354 0.0
+157144.9171283087 2.6224327 0.0
+157145.917128413 2.6225114 0.0
+157146.9171285173 2.6225901 0.0
+157147.9171286216 2.6226296 0.0
+157148.9171287259 2.6227477 0.0
+157149.9171288302 2.6228657 0.0
+157150.9171289345 2.6228263 0.0
+157151.9171290388 2.622787 0.0
+157152.9171291431 2.6228263 0.0
+157153.9171292474 2.6228657 0.0
+157154.9171293518 2.6228657 0.0
+157155.9171294561 2.6229839 0.0
+157156.9171295604 2.6231019 0.0
+157157.9171296647 2.6231019 0.0
+157158.917129769 2.6231413 0.0
+157159.9171298733 2.6231019 0.0
+157160.9171299776 2.6231413 0.0
+157161.9171300819 2.6232595 0.0
+157162.9171301862 2.6232202 0.0
+157163.9171302905 2.6233382 0.0
+157164.9171303948 2.6234169 0.0
+157165.9171304991 2.6234169 0.0
+157166.9171306035 2.6233776 0.0
+157167.9171307078 2.6234956 0.0
+157168.9171308121 2.6234956 0.0
+157169.9171309164 2.6236138 0.0
+157170.9171310207 2.6235745 0.0
+157171.917131125 2.6236532 0.0
+157172.9171312293 2.6237712 0.0
+157173.9171313336 2.6236925 0.0
+157174.9171314379 2.6238105 0.0
+157175.9171315422 2.6237319 0.0
+157176.9171316465 2.6238105 0.0
+157177.9171317508 2.6239288 0.0
+157178.9171318552 2.6239681 0.0
+157179.9171319595 2.6240468 0.0
+157180.9171320638 2.6239681 0.0
+157181.9171321681 2.6242044 0.0
+157182.9171322724 2.6241255 0.0
+157183.9171323767 2.6240861 0.0
+157184.917132481 2.6242044 0.0
+157185.9171325853 2.6242831 0.0
+157186.9171326896 2.6243224 0.0
+157187.9171327939 2.6244011 0.0
+157188.9171328982 2.6242831 0.0
+157189.9171330025 2.6245193 0.0
+157190.9171331069 2.6245587 0.0
+157191.9171332112 2.62448 0.0
+157192.9171333155 2.6245193 0.0
+157193.9171334198 2.624598 0.0
+157194.9171335241 2.6246374 0.0
+157195.9171336284 2.624716 0.0
+157196.9171337327 2.6247556 0.0
+157197.917133837 2.6247556 0.0
+157198.9171339413 2.624795 0.0
+157199.9171340456 2.6248343 0.0
+157200.9171341499 2.6249523 0.0
+157201.9171342542 2.624913 0.0
+157202.9171343585 2.6249917 0.0
+157203.9171344629 2.6249917 0.0
+157204.9171345672 2.6250706 0.0
+157205.9171346715 2.625031 0.0
+157206.9171347758 2.6251886 0.0
+157207.9171348801 2.6251886 0.0
+157208.9171349844 2.6251886 0.0
+157209.9171350887 2.6253066 0.0
+157210.917135193 2.6252279 0.0
+157211.9171352973 2.6252673 0.0
+157212.9171354016 2.6253855 0.0
+157213.9171355059 2.6254642 0.0
+157214.9171356102 2.6253855 0.0
+157215.9171357146 2.6255035 0.0
+157216.9171358189 2.6255822 0.0
+157217.9171359232 2.6255822 0.0
+157218.9171360275 2.6255035 0.0
+157219.9171361318 2.6256216 0.0
+157220.9171362361 2.6256609 0.0
+157221.9171363404 2.6256609 0.0
+157222.9171364447 2.6258185 0.0
+157223.917136549 2.6257792 0.0
+157224.9171366533 2.6258185 0.0
+157225.9171367576 2.6258185 0.0
+157226.9171368619 2.6258185 0.0
+157227.9171369663 2.6259365 0.0
+157228.9171370706 2.6260154 0.0
+157229.9171371749 2.6260154 0.0
+157230.9171372792 2.6260548 0.0
+157231.9171373835 2.6261728 0.0
+157232.9171374878 2.6261334 0.0
+157233.9171375921 2.6262515 0.0
+157234.9171376964 2.6263304 0.0
+157235.9171378007 2.6262908 0.0
+157236.917137905 2.6263304 0.0
+157237.9171380093 2.6263304 0.0
+157238.9171381136 2.6264484 0.0
+157239.9171382179 2.6265271 0.0
+157240.9171383223 2.6264484 0.0
+157241.9171384266 2.6265271 0.0
+157242.9171385309 2.6266453 0.0
+157243.9171386352 2.626724 0.0
+157244.9171387395 2.6266453 0.0
+157245.9171388438 2.6267633 0.0
+157246.9171389481 2.626724 0.0
+157247.9171390524 2.6268027 0.0
+157248.9171391567 2.6268814 0.0
+157249.917139261 2.626842 0.0
+157250.9171393653 2.6268814 0.0
+157251.9171394696 2.6269603 0.0
+157252.917139574 2.6269996 0.0
+157253.9171396783 2.6269996 0.0
+157254.9171397826 2.627157 0.0
+157255.9171398869 2.6270783 0.0
+157256.9171399912 2.6270783 0.0
+157257.9171400955 2.627157 0.0
+157258.9171401998 2.6271963 0.0
+157259.9171403041 2.6271963 0.0
+157260.9171404084 2.6272752 0.0
+157261.9171405127 2.6273539 0.0
+157262.917140617 2.6273932 0.0
+157263.9171407213 2.6273932 0.0
+157264.9171408257 2.6275113 0.0
+157265.91714093 2.6275113 0.0
+157266.9171410343 2.6275508 0.0
+157267.9171411386 2.6276295 0.0
+157268.9171412429 2.6275902 0.0
+157269.9171413472 2.6276689 0.0
+157270.9171414515 2.6276295 0.0
+157271.9171415558 2.6277869 0.0
+157272.9171416601 2.6278262 0.0
+157273.9171417644 2.6277869 0.0
+157274.9171418687 2.6279051 0.0
+157275.917141973 2.6278658 0.0
+157276.9171420773 2.6279445 0.0
+157277.9171421817 2.6278658 0.0
+157278.917142286 2.6280231 0.0
+157279.9171423903 2.6281018 0.0
+157280.9171424946 2.6279838 0.0
+157281.9171425989 2.6281412 0.0
+157282.9171427032 2.6281807 0.0
+157283.9171428075 2.6281807 0.0
+157284.9171429118 2.6281807 0.0
+157285.9171430161 2.6282988 0.0
+157286.9171431204 2.6283381 0.0
+157287.9171432247 2.6283774 0.0
+157288.917143329 2.6284957 0.0
+157289.9171434334 2.6284957 0.0
+157290.9171435377 2.6286137 0.0
+157291.917143642 2.6285744 0.0
+157292.9171437463 2.6285744 0.0
+157293.9171438506 2.6286137 0.0
+157294.9171439549 2.6286137 0.0
+157295.9171440592 2.6286924 0.0
+157296.9171441635 2.6287317 0.0
+157297.9171442678 2.6287317 0.0
+157298.9171443721 2.6287317 0.0
+157299.9171444764 2.62885 0.0
+157300.9171445807 2.6288106 0.0
+157301.9171446851 2.6290467 0.0
+157302.9171447894 2.628968 0.0
+157303.9171448937 2.6290863 0.0
+157304.917144998 2.6290467 0.0
+157305.9171451023 2.6291256 0.0
+157306.9171452066 2.6291256 0.0
+157307.9171453109 2.6291256 0.0
+157308.9171454152 2.6292043 0.0
+157309.9171455195 2.629283 0.0
+157310.9171456238 2.6292436 0.0
+157311.9171457281 2.6293223 0.0
+157312.9171458324 2.6294012 0.0
+157313.9171459368 2.6293616 0.0
+157314.9171460411 2.6294405 0.0
+157315.9171461454 2.6295192 0.0
+157316.9171462497 2.6296372 0.0
+157317.917146354 2.6296372 0.0
+157318.9171464583 2.6295192 0.0
+157319.9171465626 2.6296372 0.0
+157320.9171466669 2.6295586 0.0
+157321.9171467712 2.6296766 0.0
+157322.9171468755 2.6298342 0.0
+157323.9171469798 2.6297555 0.0
+157324.9171470841 2.6297162 0.0
+157325.9171471884 2.6298342 0.0
+157326.9171472928 2.6300704 0.0
+157327.9171473971 2.6299915 0.0
+157328.9171475014 2.6300704 0.0
+157329.9171476057 2.6299915 0.0
+157330.91714771 2.6301098 0.0
+157331.9171478143 2.6300311 0.0
+157332.9171479186 2.6302278 0.0
+157333.9171480229 2.6302278 0.0
+157334.9171481272 2.6302278 0.0
+157335.9171482315 2.6302278 0.0
+157336.9171483358 2.6303461 0.0
+157337.9171484401 2.6303854 0.0
+157338.9171485445 2.6304247 0.0
+157339.9171486488 2.6304247 0.0
+157340.9171487531 2.6305034 0.0
+157341.9171488574 2.6304247 0.0
+157342.9171489617 2.6305034 0.0
+157343.917149066 2.6305428 0.0
+157344.9171491703 2.6307003 0.0
+157345.9171492746 2.6305821 0.0
+157346.9171493789 2.630661 0.0
+157347.9171494832 2.630661 0.0
+157348.9171495875 2.6307397 0.0
+157349.9171496918 2.6308184 0.0
+157350.9171497962 2.630897 0.0
+157351.9171499005 2.6308577 0.0
+157352.9171500048 2.6309366 0.0
+157353.9171501091 2.6310153 0.0
+157354.9171502134 2.6310153 0.0
+157355.9171503177 2.6310153 0.0
+157356.917150422 2.6310546 0.0
+157357.9171505263 2.631094 0.0
+157358.9171506306 2.6312516 0.0
+157359.9171507349 2.6312516 0.0
+157360.9171508392 2.6312516 0.0
+157361.9171509435 2.6312516 0.0
+157362.9171510478 2.6313696 0.0
+157363.9171511522 2.6314089 0.0
+157364.9171512565 2.6313696 0.0
+157365.9171513608 2.6315665 0.0
+157366.9171514651 2.6314483 0.0
+157367.9171515694 2.6314876 0.0
+157368.9171516737 2.6316059 0.0
+157369.917151778 2.6316059 0.0
+157370.9171518823 2.6316845 0.0
+157371.9171519866 2.6317239 0.0
+157372.9171520909 2.6318026 0.0
+157373.9171521952 2.6318026 0.0
+157374.9171522995 2.6318026 0.0
+157375.9171524039 2.6318026 0.0
+157376.9171525082 2.6319208 0.0
+157377.9171526125 2.6319995 0.0
+157378.9171527168 2.6320388 0.0
+157379.9171528211 2.6319602 0.0
+157380.9171529254 2.6320782 0.0
+157381.9171530297 2.6321571 0.0
+157382.917153134 2.6321571 0.0
+157383.9171532383 2.6321571 0.0
+157384.9171533426 2.6322358 0.0
+157385.9171534469 2.6321964 0.0
+157386.9171535512 2.6323144 0.0
+157387.9171536556 2.6323538 0.0
+157388.9171537599 2.6323931 0.0
+157389.9171538642 2.6324325 0.0
+157390.9171539685 2.632472 0.0
+157391.9171540728 2.6325507 0.0
+157392.9171541771 2.6324325 0.0
+157393.9171542814 2.6325114 0.0
+157394.9171543857 2.6325901 0.0
+157395.91715449 2.6326687 0.0
+157396.9171545943 2.6326687 0.0
+157397.9171546986 2.6327474 0.0
+157398.9171548029 2.6327474 0.0
+157399.9171549072 2.6326687 0.0
+157400.9171550116 2.6328657 0.0
+157401.9171551159 2.632905 0.0
+157402.9171552202 2.632905 0.0
+157403.9171553245 2.632905 0.0
+157404.9171554288 2.6329443 0.0
+157405.9171555331 2.6329837 0.0
+157406.9171556374 2.6329837 0.0
+157407.9171557417 2.633023 0.0
+157408.917155846 2.6331806 0.0
+157409.9171559503 2.6332593 0.0
+157410.9171560546 2.63322 0.0
+157411.9171561589 2.6331806 0.0
+157412.9171562633 2.6332593 0.0
+157413.9171563676 2.6332593 0.0
+157414.9171564719 2.6332593 0.0
+157415.9171565762 2.6334562 0.0
+157416.9171566805 2.6334562 0.0
+157417.9171567848 2.6332986 0.0
+157418.9171568891 2.6334956 0.0
+157419.9171569934 2.6335349 0.0
+157420.9171570977 2.6335349 0.0
+157421.917157202 2.6335742 0.0
+157422.9171573063 2.6336529 0.0
+157423.9171574106 2.6336925 0.0
+157424.917157515 2.6336529 0.0
+157425.9171576193 2.6336925 0.0
+157426.9171577236 2.6337712 0.0
+157427.9171578279 2.6339679 0.0
+157428.9171579322 2.6338892 0.0
+157429.9171580365 2.6339285 0.0
+157430.9171581408 2.6339679 0.0
+157431.9171582451 2.6340468 0.0
+157432.9171583494 2.6339679 0.0
+157433.9171584537 2.6340075 0.0
+157434.917158558 2.6341648 0.0
+157435.9171586623 2.6341255 0.0
+157436.9171587667 2.6340861 0.0
+157437.917158871 2.6341255 0.0
+157438.9171589753 2.6342041 0.0
+157439.9171590796 2.6342435 0.0
+157440.9171591839 2.6343224 0.0
+157441.9171592882 2.6343224 0.0
+157442.9171593925 2.6344798 0.0
+157443.9171594968 2.6345584 0.0
+157444.9171596011 2.6344011 0.0
+157445.9171597054 2.6344798 0.0
+157446.9171598097 2.6345978 0.0
+157447.917159914 2.6346374 0.0
+157448.9171600183 2.6346374 0.0
+157449.9171601227 2.6346374 0.0
+157450.917160227 2.6346767 0.0
+157451.9171603313 2.6346767 0.0
+157452.9171604356 2.6346374 0.0
+157453.9171605399 2.6347947 0.0
+157454.9171606442 2.6348734 0.0
+157455.9171607485 2.6348341 0.0
+157456.9171608528 2.6348734 0.0
+157457.9171609571 2.6349127 0.0
+157458.9171610614 2.6348734 0.0
+157459.9171611657 2.635031 0.0
+157460.91716127 2.6351097 0.0
+157461.9171613744 2.6351097 0.0
+157462.9171614787 2.6351097 0.0
+157463.917161583 2.635149 0.0
+157464.9171616873 2.6352673 0.0
+157465.9171617916 2.6352277 0.0
+157466.9171618959 2.635149 0.0
+157467.9171620002 2.6353066 0.0
+157468.9171621045 2.6353459 0.0
+157469.9171622088 2.6353853 0.0
+157470.9171623131 2.6353459 0.0
+157471.9171624174 2.635464 0.0
+157472.9171625217 2.6356215 0.0
+157473.9171626261 2.6355033 0.0
+157474.9171627304 2.6356215 0.0
+157475.9171628347 2.6355429 0.0
+157476.917162939 2.6356215 0.0
+157477.9171630433 2.6355822 0.0
+157478.9171631476 2.6357396 0.0
+157479.9171632519 2.6357396 0.0
+157480.9171633562 2.6357789 0.0
+157481.9171634605 2.6358578 0.0
+157482.9171635648 2.6358578 0.0
+157483.9171636691 2.6359758 0.0
+157484.9171637734 2.6359758 0.0
+157485.9171638777 2.6359758 0.0
+157486.9171639821 2.6359365 0.0
+157487.9171640864 2.6361332 0.0
+157488.9171641907 2.6360152 0.0
+157489.917164295 2.6361332 0.0
+157490.9171643993 2.6361332 0.0
+157491.9171645036 2.6360939 0.0
+157492.9171646079 2.6362121 0.0
+157493.9171647122 2.6362908 0.0
+157494.9171648165 2.6362514 0.0
+157495.9171649208 2.6363301 0.0
+157496.9171650251 2.6363695 0.0
+157497.9171651294 2.6364088 0.0
+157498.9171652338 2.6364877 0.0
+157499.9171653381 2.6365664 0.0
+157500.9171654424 2.6365664 0.0
+157501.9171655467 2.6366057 0.0
+157502.917165651 2.6366451 0.0
+157503.9171657553 2.6366057 0.0
+157504.9171658596 2.6366451 0.0
+157505.9171659639 2.6366844 0.0
+157506.9171660682 2.6367631 0.0
+157507.9171661725 2.6368027 0.0
+157508.9171662768 2.6367631 0.0
+157509.9171663811 2.636842 0.0
+157510.9171664855 2.6369207 0.0
+157511.9171665898 2.6368814 0.0
+157512.9171666941 2.6369994 0.0
+157513.9171667984 2.6370387 0.0
+157514.9171669027 2.6370387 0.0
+157515.917167007 2.637078 0.0
+157516.9171671113 2.637078 0.0
+157517.9171672156 2.637157 0.0
+157518.9171673199 2.637157 0.0
+157519.9171674242 2.637275 0.0
+157520.9171675285 2.6373143 0.0
+157521.9171676328 2.6373143 0.0
+157522.9171677371 2.6373932 0.0
+157523.9171678415 2.637275 0.0
+157524.9171679458 2.6373143 0.0
+157525.9171680501 2.6374326 0.0
+157526.9171681544 2.6374719 0.0
+157527.9171682587 2.6376293 0.0
+157528.917168363 2.6374719 0.0
+157529.9171684673 2.6375506 0.0
+157530.9171685716 2.6376293 0.0
+157531.9171686759 2.6376293 0.0
+157532.9171687802 2.6377082 0.0
+157533.9171688845 2.6376686 0.0
+157534.9171689888 2.6377475 0.0
+157535.9171690932 2.6377869 0.0
+157536.9171691975 2.6379049 0.0
+157537.9171693018 2.6378262 0.0
+157538.9171694061 2.6379049 0.0
+157539.9171695104 2.6379836 0.0
+157540.9171696147 2.6379442 0.0
+157541.917169719 2.6379442 0.0
+157542.9171698233 2.6380625 0.0
+157543.9171699276 2.6380625 0.0
+157544.9171700319 2.6381018 0.0
+157545.9171701362 2.6382198 0.0
+157546.9171702405 2.6381805 0.0
+157547.9171703449 2.6382592 0.0
+157548.9171704492 2.6382592 0.0
+157549.9171705535 2.6383774 0.0
+157550.9171706578 2.6382592 0.0
+157551.9171707621 2.6383774 0.0
+157552.9171708664 2.6384168 0.0
+157553.9171709707 2.6383774 0.0
+157554.917171075 2.6384561 0.0
+157555.9171711793 2.6383774 0.0
+157556.9171712836 2.6384954 0.0
+157557.9171713879 2.6384954 0.0
+157558.9171714922 2.6386924 0.0
+157559.9171715965 2.6386924 0.0
+157560.9171717009 2.6386924 0.0
+157561.9171718052 2.6387317 0.0
+157562.9171719095 2.6388104 0.0
+157563.9171720138 2.6388104 0.0
+157564.9171721181 2.6387711 0.0
+157565.9171722224 2.6388104 0.0
+157566.9171723267 2.6388104 0.0
+157567.917172431 2.6389284 0.0
+157568.9171725353 2.638968 0.0
+157569.9171726396 2.638968 0.0
+157570.9171727439 2.6390467 0.0
+157571.9171728482 2.6391253 0.0
+157572.9171729526 2.6391253 0.0
+157573.9171730569 2.639204 0.0
+157574.9171731612 2.6391253 0.0
+157575.9171732655 2.6392829 0.0
+157576.9171733698 2.6393616 0.0
+157577.9171734741 2.6393223 0.0
+157578.9171735784 2.6392436 0.0
+157579.9171736827 2.6393223 0.0
+157580.917173787 2.6393223 0.0
+157581.9171738913 2.6394403 0.0
+157582.9171739956 2.6394796 0.0
+157583.9171740999 2.6394796 0.0
+157584.9171742043 2.6395979 0.0
+157585.9171743086 2.6395586 0.0
+157586.9171744129 2.6395979 0.0
+157587.9171745172 2.6395979 0.0
+157588.9171746215 2.6395979 0.0
+157589.9171747258 2.6397552 0.0
+157590.9171748301 2.6398735 0.0
+157591.9171749344 2.6398339 0.0
+157592.9171750387 2.6397552 0.0
+157593.917175143 2.6398339 0.0
+157594.9171752473 2.6398735 0.0
+157595.9171753516 2.6399128 0.0
+157596.917175456 2.6401095 0.0
+157597.9171755603 2.6400309 0.0
+157598.9171756646 2.6400309 0.0
+157599.9171757689 2.6400309 0.0
+157600.9171758732 2.6400309 0.0
+157601.9171759775 2.6401489 0.0
+157602.9171760818 2.6402278 0.0
+157603.9171761861 2.6401885 0.0
+157604.9171762904 2.6401885 0.0
+157605.9171763947 2.6403065 0.0
+157606.917176499 2.6403065 0.0
+157607.9171766033 2.6403852 0.0
+157608.9171767076 2.6404245 0.0
+157609.917176812 2.6404245 0.0
+157610.9171769163 2.6404245 0.0
+157611.9171770206 2.6404245 0.0
+157612.9171771249 2.6405427 0.0
+157613.9171772292 2.6406608 0.0
+157614.9171773335 2.6405034 0.0
+157615.9171774378 2.6406214 0.0
+157616.9171775421 2.6407001 0.0
+157617.9171776464 2.6406608 0.0
+157618.9171777507 2.6407394 0.0
+157619.917177855 2.6407788 0.0
+157620.9171779593 2.6407788 0.0
+157621.9171780637 2.6408577 0.0
+157622.917178168 2.6408577 0.0
+157623.9171782723 2.6409364 0.0
+157624.9171783766 2.6409364 0.0
+157625.9171784809 2.640897 0.0
+157626.9171785852 2.6410151 0.0
+157627.9171786895 2.6410151 0.0
+157628.9171787938 2.641094 0.0
+157629.9171788981 2.6411333 0.0
+157630.9171790024 2.6412513 0.0
+157631.9171791067 2.6410544 0.0
+157632.917179211 2.6411726 0.0
+157633.9171793154 2.6412907 0.0
+157634.9171794197 2.6412513 0.0
+157635.917179524 2.64133 0.0
+157636.9171796283 2.6413693 0.0
+157637.9171797326 2.6414876 0.0
+157638.9171798369 2.6414089 0.0
+157639.9171799412 2.6414876 0.0
+157640.9171800455 2.6415269 0.0
+157641.9171801498 2.6415269 0.0
+157642.9171802541 2.6415269 0.0
+157643.9171803584 2.641645 0.0
+157644.9171804627 2.6417239 0.0
+157645.917180567 2.6417239 0.0
+157646.9171806714 2.6416843 0.0
+157647.9171807757 2.6417632 0.0
+157648.91718088 2.6417632 0.0
+157649.9171809843 2.6417239 0.0
+157650.9171810886 2.6419206 0.0
+157651.9171811929 2.6419599 0.0
+157652.9171812972 2.6418419 0.0
+157653.9171814015 2.6418812 0.0
+157654.9171815058 2.6419599 0.0
+157655.9171816101 2.6419992 0.0
+157656.9171817144 2.6420388 0.0
+157657.9171818187 2.6421962 0.0
+157658.9171819231 2.6421175 0.0
+157659.9171820274 2.6421175 0.0
+157660.9171821317 2.6421962 0.0
+157661.917182236 2.6422749 0.0
+157662.9171823403 2.6423538 0.0
+157663.9171824446 2.6423142 0.0
+157664.9171825489 2.6422749 0.0
+157665.9171826532 2.6424325 0.0
+157666.9171827575 2.6423538 0.0
+157667.9171828618 2.6424718 0.0
+157668.9171829661 2.6425505 0.0
+157669.9171830704 2.6424325 0.0
+157670.9171831748 2.6425111 0.0
+157671.9171832791 2.6425898 0.0
+157672.9171833834 2.6427081 0.0
+157673.9171834877 2.6425898 0.0
+157674.917183592 2.6427867 0.0
+157675.9171836963 2.6427867 0.0
+157676.9171838006 2.6427474 0.0
+157677.9171839049 2.6427474 0.0
+157678.9171840092 2.6428654 0.0
+157679.9171841135 2.6428261 0.0
+157680.9171842178 2.6429443 0.0
+157681.9171843221 2.6429443 0.0
+157682.9171844264 2.6429443 0.0
+157683.9171845308 2.643023 0.0
+157684.9171846351 2.6431017 0.0
+157685.9171847394 2.6430624 0.0
+157686.9171848437 2.6431017 0.0
+157687.917184948 2.643141 0.0
+157688.9171850523 2.6432197 0.0
+157689.9171851566 2.6431804 0.0
+157690.9171852609 2.6431017 0.0
+157691.9171853652 2.6432593 0.0
+157692.9171854695 2.6432593 0.0
+157693.9171855738 2.6434953 0.0
+157694.9171856781 2.6433773 0.0
+157695.9171857825 2.643456 0.0
+157696.9171858868 2.6433773 0.0
+157697.9171859911 2.6434166 0.0
+157698.9171860954 2.6435347 0.0
+157699.9171861997 2.6435742 0.0
+157700.917186304 2.6435742 0.0
+157701.9171864083 2.6435347 0.0
+157702.9171865126 2.6435742 0.0
+157703.9171866169 2.6436529 0.0
+157704.9171867212 2.6436136 0.0
+157705.9171868255 2.6438103 0.0
+157706.9171869298 2.6438496 0.0
+157707.9171870342 2.6438103 0.0
+157708.9171871385 2.6438892 0.0
+157709.9171872428 2.6438103 0.0
+157710.9171873471 2.6438496 0.0
+157711.9171874514 2.6439285 0.0
+157712.9171875557 2.6439285 0.0
+157713.91718766 2.6440072 0.0
+157714.9171877643 2.6440465 0.0
+157715.9171878686 2.6440859 0.0
+157716.9171879729 2.6440072 0.0
+157717.9171880772 2.6441646 0.0
+157718.9171881815 2.6441252 0.0
+157719.9171882859 2.6442041 0.0
+157720.9171883902 2.6442828 0.0
+157721.9171884945 2.6442435 0.0
+157722.9171885988 2.6443222 0.0
+157723.9171887031 2.6443615 0.0
+157724.9171888074 2.6444402 0.0
+157725.9171889117 2.6444008 0.0
+157726.917189016 2.6444402 0.0
+157727.9171891203 2.6444402 0.0
+157728.9171892246 2.6445978 0.0
+157729.9171893289 2.6445978 0.0
+157730.9171894332 2.6445191 0.0
+157731.9171895375 2.6445978 0.0
+157732.9171896419 2.6446764 0.0
+157733.9171897462 2.6446371 0.0
+157734.9171898505 2.6447158 0.0
+157735.9171899548 2.6447551 0.0
+157736.9171900591 2.6448734 0.0
+157737.9171901634 2.6447947 0.0
+157738.9171902677 2.6449127 0.0
+157739.917190372 2.6448734 0.0
+157740.9171904763 2.6449521 0.0
+157741.9171905806 2.6448734 0.0
+157742.9171906849 2.6449914 0.0
+157743.9171907892 2.6450307 0.0
+157744.9171908936 2.645149 0.0
+157745.9171909979 2.6451097 0.0
+157746.9171911022 2.6451097 0.0
+157747.9171912065 2.645149 0.0
+157748.9171913108 2.6452277 0.0
+157749.9171914151 2.645267 0.0
+157750.9171915194 2.6453063 0.0
+157751.9171916237 2.645267 0.0
+157752.917191728 2.6454246 0.0
+157753.9171918323 2.6453063 0.0
+157754.9171919366 2.6453457 0.0
+157755.9171920409 2.6453457 0.0
+157756.9171921453 2.6455033 0.0
+157757.9171922496 2.6455426 0.0
+157758.9171923539 2.6455426 0.0
+157759.9171924582 2.6455033 0.0
+157760.9171925625 2.6455426 0.0
+157761.9171926668 2.6457 0.0
+157762.9171927711 2.6456606 0.0
+157763.9171928754 2.6458969 0.0
+157764.9171929797 2.6456606 0.0
+157765.917193084 2.6457 0.0
+157766.9171931883 2.6458576 0.0
+157767.9171932926 2.6458182 0.0
+157768.9171933969 2.6458969 0.0
+157769.9171935013 2.6459363 0.0
+157770.9171936056 2.6460149 0.0
+157771.9171937099 2.6459363 0.0
+157772.9171938142 2.6459756 0.0
+157773.9171939185 2.6460545 0.0
+157774.9171940228 2.6460545 0.0
+157775.9171941271 2.6460938 0.0
+157776.9171942314 2.6461725 0.0
+157777.9171943357 2.6462119 0.0
+157778.91719444 2.6462512 0.0
+157779.9171945443 2.6462905 0.0
+157780.9171946486 2.6462512 0.0
+157781.917194753 2.6462905 0.0
+157782.9171948573 2.6463301 0.0
+157783.9171949616 2.6464481 0.0
+157784.9171950659 2.6463695 0.0
+157785.9171951702 2.6464088 0.0
+157786.9171952745 2.6464088 0.0
+157787.9171953788 2.6464481 0.0
+157788.9171954831 2.6465268 0.0
+157789.9171955874 2.6465662 0.0
+157790.9171956917 2.6466055 0.0
+157791.917195796 2.6466844 0.0
+157792.9171959003 2.6466451 0.0
+157793.9171960047 2.6467631 0.0
+157794.917196109 2.6466451 0.0
+157795.9171962133 2.6468418 0.0
+157796.9171963176 2.6467237 0.0
+157797.9171964219 2.6467631 0.0
+157798.9171965262 2.6468418 0.0
+157799.9171966305 2.6468811 0.0
+157800.9171967348 2.6469994 0.0
+157801.9171968391 2.64696 0.0
+157802.9171969434 2.6469204 0.0
+157803.9171970477 2.647078 0.0
+157804.917197152 2.6471567 0.0
+157805.9171972563 2.6470387 0.0
+157806.9171973607 2.647078 0.0
+157807.917197465 2.6471174 0.0
+157808.9171975693 2.6471961 0.0
+157809.9171976736 2.6472354 0.0
+157810.9171977779 2.647275 0.0
+157811.9171978822 2.647275 0.0
+157812.9171979865 2.6472354 0.0
+157813.9171980908 2.6473143 0.0
+157814.9171981951 2.647393 0.0
+157815.9171982994 2.647393 0.0
+157816.9171984037 2.6474323 0.0
+157817.917198508 2.647393 0.0
+157818.9171986124 2.6475899 0.0
+157819.9171987167 2.647511 0.0
+157820.917198821 2.6476293 0.0
+157821.9171989253 2.6476293 0.0
+157822.9171990296 2.6477079 0.0
+157823.9171991339 2.6477473 0.0
+157824.9171992382 2.6476686 0.0
+157825.9171993425 2.6476686 0.0
+157826.9171994468 2.6477866 0.0
+157827.9171995511 2.6478653 0.0
+157828.9171996554 2.6477866 0.0
+157829.9171997597 2.6479442 0.0
+157830.9171998641 2.6479049 0.0
+157831.9171999684 2.6479836 0.0
+157832.9172000727 2.6479836 0.0
+157833.917200177 2.6479836 0.0
+157834.9172002813 2.6481409 0.0
+157835.9172003856 2.6481016 0.0
+157836.9172004899 2.6481016 0.0
+157837.9172005942 2.6482198 0.0
+157838.9172006985 2.6481016 0.0
+157839.9172008028 2.6481805 0.0
+157840.9172009071 2.6482592 0.0
+157841.9172010114 2.6482592 0.0
+157842.9172011158 2.6483378 0.0
+157843.9172012201 2.6483772 0.0
+157844.9172013244 2.6484559 0.0
+157845.9172014287 2.6482985 0.0
+157846.917201533 2.6483772 0.0
+157847.9172016373 2.6485348 0.0
+157848.9172017416 2.6484954 0.0
+157849.9172018459 2.6484954 0.0
+157850.9172019502 2.6485741 0.0
+157851.9172020545 2.6486528 0.0
+157852.9172021588 2.6486528 0.0
+157853.9172022631 2.6487315 0.0
+157854.9172023674 2.6487708 0.0
+157855.9172024718 2.6486921 0.0
+157856.9172025761 2.6487708 0.0
+157857.9172026804 2.6488104 0.0
+157858.9172027847 2.6488891 0.0
+157859.917202889 2.6489284 0.0
+157860.9172029933 2.6488497 0.0
+157861.9172030976 2.6488104 0.0
+157862.9172032019 2.6489284 0.0
+157863.9172033062 2.6489677 0.0
+157864.9172034105 2.6490464 0.0
+157865.9172035148 2.6489677 0.0
+157866.9172036191 2.6490858 0.0
+157867.9172037235 2.6490464 0.0
+157868.9172038278 2.6490858 0.0
+157869.9172039321 2.649322 0.0
+157870.9172040364 2.6492434 0.0
+157871.9172041407 2.649322 0.0
+157872.917204245 2.649322 0.0
+157873.9172043493 2.6492827 0.0
+157874.9172044536 2.6494007 0.0
+157875.9172045579 2.649322 0.0
+157876.9172046622 2.6494403 0.0
+157877.9172047665 2.6494403 0.0
+157878.9172048708 2.6494007 0.0
+157879.9172049752 2.6494796 0.0
+157880.9172050795 2.6495583 0.0
+157881.9172051838 2.6495976 0.0
+157882.9172052881 2.6495583 0.0
+157883.9172053924 2.649637 0.0
+157884.9172054967 2.6496763 0.0
+157885.917205601 2.6497946 0.0
+157886.9172057053 2.6497946 0.0
+157887.9172058096 2.6497946 0.0
+157888.9172059139 2.6497157 0.0
+157889.9172060182 2.6497946 0.0
+157890.9172061225 2.6497946 0.0
+157891.9172062268 2.6499126 0.0
+157892.9172063312 2.6499913 0.0
+157893.9172064355 2.6499913 0.0
+157894.9172065398 2.6499913 0.0
+157895.9172066441 2.6500309 0.0
+157896.9172067484 2.6499913 0.0
+157897.9172068527 2.6499913 0.0
+157898.917206957 2.6501095 0.0
+157899.9172070613 2.6501095 0.0
+157900.9172071656 2.6501882 0.0
+157901.9172072699 2.6502275 0.0
+157902.9172073742 2.6503062 0.0
+157903.9172074785 2.6502669 0.0
+157904.9172075829 2.6501882 0.0
+157905.9172076872 2.6503062 0.0
+157906.9172077915 2.6504245 0.0
+157907.9172078958 2.6503851 0.0
+157908.9172080001 2.6503851 0.0
+157909.9172081044 2.6504245 0.0
+157910.9172082087 2.6504638 0.0
+157911.917208313 2.6505818 0.0
+157912.9172084173 2.6505032 0.0
+157913.9172085216 2.6506212 0.0
+157914.9172086259 2.6505032 0.0
+157915.9172087302 2.6506212 0.0
+157916.9172088346 2.6507394 0.0
+157917.9172089389 2.6507394 0.0
+157918.9172090432 2.6508574 0.0
+157919.9172091475 2.6507001 0.0
+157920.9172092518 2.6507788 0.0
+157921.9172093561 2.6508181 0.0
+157922.9172094604 2.6508968 0.0
+157923.9172095647 2.6508574 0.0
+157924.9512096725 2.6868019 1103.1975
+157924.9532096726 2.6869986 1103.2369
+157925.0192096792 2.6890066 1103.3555
+157925.2572097043 2.6910145 1103.4542
+157926.0612097881 2.6930223 1103.316
+157927.0612098924 2.6942034 1103.3949
+157928.0612099967 2.6953452 1103.3949
+157929.061210101 2.6963294 1103.316
+157930.0612102053 2.697156 1103.3949
+157931.0612103096 2.6979828 1103.3949
+157932.0612104139 2.698849 1103.3555
+157933.0612105182 2.6997151 1103.3949
+157934.0612106225 2.700345 1103.4147
+157935.0612107269 2.7010536 1103.474
+157936.0612108312 2.7018411 1103.3555
+157937.0612109355 2.702589 1103.316
+157938.0612110398 2.7033765 1103.3949
+157939.0612111441 2.7038882 1103.4344
+157940.0612112484 2.7046363 1103.3949
+157941.0612113527 2.7053449 1103.2369
+157942.061211457 2.7060928 1103.316
+157943.0612115613 2.7067623 1103.2567
+157944.0612116656 2.7074316 1103.3555
+157945.0612117699 2.7079828 1103.3555
+157946.0612118742 2.7087307 1103.4147
+157947.0612119786 2.7093213 1103.3949
+157948.0612120829 2.7100298 1103.3357
+157949.0612121872 2.7106991 1103.3949
+157950.0612122915 2.7112503 1103.2963
+157951.0612123958 2.7119589 1103.3949
+157952.0612125001 2.712589 1103.3949
+157953.0612126044 2.7131793 1103.4147
+157954.0612127087 2.7137699 1103.3752
+157955.061212813 2.7144394 1103.3555
+157956.0612129173 2.714951 1103.3752
+157957.0612130216 2.7156596 1103.3357
+157958.0612131259 2.7162502 1103.316
+157959.0612132302 2.7168801 1103.3949
+157960.0612133346 2.7174706 1103.3752
+157961.0612134389 2.7179825 1103.2765
+157962.0612135432 2.7186518 1103.3357
+157963.0612136475 2.7192423 1103.3555
+157964.0612137518 2.7198329 1103.3357
+157965.0612138561 2.7203448 1103.2765
+157966.0612139604 2.721014 1103.3752
+157967.0612140647 2.7216046 1103.316
+157968.061214169 2.7221558 1103.2567
+157969.0612142733 2.7228644 1103.3949
+157970.0612143776 2.7232974 1103.4147
+157971.0612144819 2.7238879 1103.3357
+157972.0612145863 2.7244785 1103.3555
+157973.0612146906 2.7251477 1103.3949
+157974.0612147949 2.7256989 1103.4344
+157975.0612148992 2.7263288 1103.4147
+157976.0612150035 2.7268014 1103.3752
+157977.0612151078 2.7274706 1103.316
+157978.0612152121 2.7279036 1103.316
+157979.0612153164 2.7285335 1103.3357
+157980.0612154207 2.7291634 1103.3752
+157981.061215525 2.729636 1103.3752
+157982.0612156293 2.7301872 1103.3357
+157983.0612157336 2.7306988 1103.4147
+157984.061215838 2.73125 1103.3949
+157985.0612159423 2.7318799 1103.2963
+157986.0612160466 2.7325492 1103.3555
+157987.0612161509 2.7329824 1103.2567
+157988.0612162552 2.7335334 1103.2765
+157989.0612163595 2.7341635 1103.316
+157990.0612164638 2.7347145 1103.3357
+157991.0612165681 2.7353444 1103.3555
+157992.0612166724 2.7357776 1103.3555
+157993.0612167767 2.7362893 1103.3555
+157994.061216881 2.7369192 1103.4542
+157995.0612169853 2.7374704 1103.3752
+157996.0612170896 2.7380216 1103.3555
+157997.061217194 2.7385335 1103.3752
+157998.0612172983 2.7391241 1103.316
+157999.0612174026 2.739557 1103.3357
+158000.0612175069 2.7402263 1103.2963
+158001.0612176112 2.7406595 1103.3357
+158002.0612177155 2.7411711 1103.3752
+158003.0612178198 2.7419193 1103.3752
+158004.0612179241 2.7424309 1103.4542
+158005.0612180284 2.7429035 1103.316
+158006.0612181327 2.7434154 1103.4147
+158007.061218237 2.7440846 1103.3949
+158008.0612183413 2.7444782 1103.4344
+158009.0612184457 2.7450688 1103.2963
+158010.06121855 2.74562 1103.4147
+158011.0612186543 2.746171 1103.2963
+158012.0612187586 2.7466435 1103.4147
+158013.0612188629 2.7471948 1103.3949
+158014.0612189672 2.7478247 1103.2765
+158015.0612190715 2.748297 1103.3752
+158016.0612191758 2.7487302 1103.316
+158017.0612192801 2.7493207 1103.316
+158018.0612193844 2.7499113 1103.3555
+158019.0612194887 2.750423 1103.3752
+158020.061219593 2.7509742 1103.3357
+158021.0612196974 2.7513678 1103.2963
+158022.0612198017 2.7519584 1103.4147
+158023.061219906 2.7525489 1103.3949
+158024.0612200103 2.7530608 1103.3555
+158025.0612201146 2.7535725 1103.3357
+158026.0612202189 2.754045 1103.4147
+158027.0612203232 2.7546356 1103.3357
+158028.0612204275 2.7551475 1103.3555
+158029.0612205318 2.7556984 1103.3357
+158030.0612206361 2.7562103 1103.2963
+158031.0612207404 2.7567616 1103.2963
+158032.0612208447 2.7571945 1103.474
+158033.0612209491 2.7578244 1103.4147
+158034.0612210534 2.7583363 1103.3357
+158035.0612211577 2.7590449 1103.3949
+158036.061221262 2.7593992 1103.316
+158037.0612213663 2.7599504 1103.2963
+158038.0612214706 2.7603836 1103.3949
+158039.0612215749 2.7609346 1103.316
+158040.0612216792 2.7614858 1103.3752
+158041.0612217835 2.7619977 1103.3555
+158042.0612218878 2.7624307 1103.3752
+158043.0612219921 2.7629819 1103.316
+158044.0612220964 2.7634938 1103.3555
+158045.0612222007 2.7640448 1103.4542
+158046.0612223051 2.7645173 1103.3752
+158047.0612224094 2.7651079 1103.3949
+158048.0612225137 2.7655802 1103.3555
+158049.061222618 2.7661707 1103.316
+158050.0612227223 2.7666433 1103.3357
+158051.0612228266 2.7671945 1103.3752
+158052.0612229309 2.7677455 1103.316
+158053.0612230352 2.7682574 1103.3752
+158054.0612231395 2.7687299 1103.316
+158055.0612232438 2.7692809 1103.3357
+158056.0612233481 2.7697141 1103.3555
+158057.0612234524 2.7703047 1103.316
+158058.0612235568 2.7708163 1103.3555
+158059.0612236611 2.7712495 1103.3752
+158060.0612237654 2.7718401 1103.3555
+158061.0612238697 2.7722731 1103.2172
+158062.061223974 2.772903 1103.316
+158063.0612240783 2.7733755 1103.3555
+158064.0612241826 2.7738872 1103.3555
+158065.0612242869 2.7743597 1103.4147
+158066.0612243912 2.7749109 1103.2765
+158067.0612244955 2.7753832 1103.3949
+158068.0612245998 2.7758558 1103.3555
+158069.0612247041 2.7764857 1103.4147
+158070.0612248085 2.7769186 1103.2963
+158071.0612249128 2.7774699 1103.3555
+158072.0612250171 2.7780604 1103.2765
+158073.0612251214 2.7784541 1103.3752
+158074.0612252257 2.7790446 1103.2963
+158075.06122533 2.7794383 1103.3949
+158076.0612254343 2.7800288 1103.3949
+158077.0612255386 2.7805014 1103.2765
+158078.0612256429 2.7810526 1103.3357
+158079.0612257472 2.7816036 1103.3357
+158080.0612258515 2.7819581 1103.3752
+158081.0612259558 2.7825487 1103.3555
+158082.0612260601 2.7831786 1103.3357
+158083.0612261645 2.7836115 1103.3949
+158084.0612262688 2.7840445 1103.3357
+158085.0612263731 2.7846351 1103.3752
+158086.0612264774 2.7851076 1103.3555
+158087.0612265817 2.7855799 1103.3752
+158088.061226686 2.7861705 1103.2963
+158089.0612267903 2.786643 1103.3752
+158090.0612268946 2.7871153 1103.3555
+158091.0612269989 2.7876272 1103.3949
+158092.0612271032 2.7882571 1103.3555
+158093.0612272075 2.7886901 1103.3949
+158094.0612273118 2.7891233 1103.2963
+158095.0612274162 2.7896745 1103.3357
+158096.0612275205 2.7902651 1103.3949
+158097.0612276248 2.7906587 1103.2765
+158098.0612277291 2.791131 1103.4147
+158099.0612278334 2.7917609 1103.2765
+158100.0612279377 2.7921548 1103.3752
+158101.061228042 2.7927058 1103.3555
+158102.0612281463 2.7931783 1103.316
+158103.0612282506 2.7936902 1103.2765
+158104.0612283549 2.7940838 1103.3752
+158105.0612284592 2.7947137 1103.3949
+158106.0612285635 2.7952256 1103.3357
+158107.0612286679 2.7957373 1103.4147
+158108.0612287722 2.7961705 1103.3357
+158109.0612288765 2.7968004 1103.2963
+158110.0612289808 2.7972727 1103.3555
+158111.0612290851 2.7977846 1103.4542
+158112.0612291894 2.7982569 1103.3357
+158113.0612292937 2.7986901 1103.2963
+158114.061229398 2.799202 1103.4344
+158115.0612295023 2.7996743 1103.3949
+158116.0612296066 2.8001468 1103.2963
+158117.0612297109 2.8006585 1103.4147
+158118.0612298152 2.8012097 1103.3357
+158119.0612299195 2.8018003 1103.4542
+158120.0612300239 2.8022728 1103.316
+158121.0612301282 2.8026664 1103.316
+158122.0612302325 2.8032176 1103.3555
+158123.0612303368 2.8037686 1103.3555
+158124.0612304411 2.8042018 1103.3752
+158125.0612305454 2.8046348 1103.3949
+158126.0612306497 2.8052647 1103.3752
+158127.061230754 2.8056583 1103.4542
+158128.0612308583 2.8062096 1103.2963
+158129.0612309626 2.8067214 1103.3555
+158130.0612310669 2.8071938 1103.4344
+158131.0612311712 2.8077056 1103.3949
+158132.0612312756 2.8081388 1103.2963
+158133.0612313799 2.8087292 1103.316
+158134.0612314842 2.8092017 1103.3357
+158135.0612315885 2.8096743 1103.4147
+158136.0612316928 2.8101072 1103.316
+158137.0612317971 2.8106585 1103.316
+158138.0612319014 2.8111308 1103.2369
+158139.0612320057 2.8117607 1103.2765
+158140.06123211 2.8121545 1103.2963
+158141.0612322143 2.8126662 1103.2567
+158142.0612323186 2.81306 1103.3357
+158143.0612324229 2.813611 1103.3752
+158144.0612325273 2.8141623 1103.2765
+158145.0612326316 2.8145952 1103.2369
+158146.0612327359 2.8149891 1103.3555
+158147.0612328402 2.8156583 1103.3357
+158148.0612329445 2.8161306 1103.2963
+158149.0612330488 2.8166032 1103.3357
+158150.0612331531 2.8170362 1103.3555
+158151.0612332574 2.8176267 1103.3752
+158152.0612333617 2.8181386 1103.3949
+158153.061233466 2.8185322 1103.3752
+158154.0612335703 2.8190048 1103.316
+158155.0612336746 2.8195953 1103.3357
+158156.061233779 2.819989 1103.2765
+158157.0612338833 2.8205795 1103.3357
+158158.0612339876 2.8210914 1103.2963
+158159.0612340919 2.821485 1103.2963
+158160.0612341962 2.8220363 1103.3949
+158161.0612343005 2.8223906 1103.3752
+158162.0612344048 2.8229811 1103.3555
+158163.0612345091 2.8235321 1103.4147
+158164.0612346134 2.8239653 1103.3949
+158165.0612347177 2.8244376 1103.3357
+158166.061234822 2.8249495 1103.4147
+158167.0612349263 2.8254614 1103.3752
+158168.0612350306 2.825855 1103.3555
+158169.061235135 2.826288 1103.2567
+158170.0612352393 2.8268785 1103.3357
+158171.0612353436 2.8273511 1103.316
+158172.0612354479 2.8277841 1103.3555
+158173.0612355522 2.8283746 1103.3357
+158174.0612356565 2.8287683 1103.3357
+158175.0612357608 2.8293588 1103.3357
+158176.0612358651 2.8298707 1103.3357
+158177.0612359694 2.830225 1103.2172
+158178.0612360737 2.8307369 1103.3555
+158179.061236178 2.8312092 1103.3752
+158180.0612362823 2.8315637 1103.2172
+158181.0612363867 2.832154 1103.316
+158182.061236491 2.8325872 1103.3555
+158183.0612365953 2.8330202 1103.3752
+158184.0612366996 2.8336108 1103.4147
+158185.0612368039 2.8340044 1103.3752
+158186.0612369082 2.8345556 1103.3357
+158187.0612370125 2.8349888 1103.2369
+158188.0612371168 2.8355794 1103.3752
+158189.0612372211 2.8360124 1103.4147
+158190.0612373254 2.8364849 1103.2765
+158191.0612374297 2.8369572 1103.3949
+158192.061237534 2.8374298 1103.3949
+158193.0612376384 2.8378234 1103.3752
+158194.0612377427 2.8383746 1103.316
+158195.061237847 2.8388076 1103.3752
+158196.0612379513 2.8393588 1103.2567
+158197.0612380556 2.8398707 1103.3357
+158198.0612381599 2.8402643 1103.2765
+158199.0612382642 2.8406579 1103.3357
+158200.0612383685 2.8412879 1103.2765
+158201.0612384728 2.8416815 1103.3752
+158202.0612385771 2.8421934 1103.2963
+158203.0612386814 2.842587 1103.2765
+158204.0612387857 2.8430989 1103.316
+158205.06123889 2.8434925 1103.3555
+158206.0612389944 2.8440437 1103.4147
+158207.0612390987 2.844595 1103.316
+158208.061239203 2.8449099 1103.2963
+158209.0612393073 2.8453822 1103.3555
+158210.0612394116 2.8459334 1103.3357
+158211.0612395159 2.8462484 1103.3357
+158212.0612396202 2.8467996 1103.3949
+158213.0612397245 2.8472326 1103.2172
+158214.0612398288 2.8477051 1103.316
+158215.0612399331 2.8480988 1103.2369
+158216.0612400374 2.848768 1103.3357
+158217.0612401417 2.8492012 1103.3949
+158218.0612402461 2.8495162 1103.3949
+158219.0612403504 2.8500278 1103.3357
+158220.0612404547 2.8504217 1103.3555
+158221.061240559 2.8509333 1103.3357
+158222.0612406633 2.8514845 1103.3555
+158223.0612407676 2.8519571 1103.2963
+158224.0612408719 2.8523901 1103.2369
+158225.0612409762 2.8527837 1103.3752
+158226.0612410805 2.8531382 1103.2765
+158227.0612411848 2.8538074 1103.316
+158228.0612412891 2.8542404 1103.2765
+158229.0612413934 2.8545947 1103.3357
+158230.0612414978 2.8550673 1103.2963
+158231.0612416021 2.8555396 1103.3752
+158232.0612417064 2.8558545 1103.2963
+158233.0612418107 2.8564451 1103.3752
+158234.061241915 2.8567994 1103.3752
+158235.0612420193 2.8572326 1103.3555
+158236.0612421236 2.8577838 1103.3357
+158237.0612422279 2.8582954 1103.4147
+158238.0612423322 2.8587286 1103.3555
+158239.0612424365 2.8591223 1103.316
+158240.0612425408 2.8595159 1103.2963
+158241.0612426451 2.8599885 1103.2765
+158242.0612427494 2.8604214 1103.3357
+158243.0612428538 2.8608546 1103.316
+158244.0612429581 2.8612876 1103.2567
+158245.0612430624 2.8618388 1103.3357
+158246.0612431667 2.8622718 1103.3949
+158247.061243271 2.8627443 1103.2963
+158248.0612433753 2.863138 1103.474
+158249.0612434796 2.8635316 1103.316
+158250.0612435839 2.8639648 1103.316
+158251.0612436882 2.8644371 1103.3357
+158252.0612437925 2.864949 1103.3357
+158253.0612438968 2.8652246 1103.316
+158254.0612440011 2.8657362 1103.3555
+158255.0612441055 2.8661301 1103.3555
+158256.0612442098 2.8665237 1103.3555
+158257.0612443141 2.8671143 1103.316
+158258.0612444184 2.8674686 1103.3555
+158259.0612445227 2.8679016 1103.3752
+158260.061244627 2.8683741 1103.2963
+158261.0612447313 2.8687677 1103.3555
+158262.0612448356 2.8690827 1103.3752
+158263.0612449399 2.8695159 1103.2567
+158264.0612450442 2.8699489 1103.3949
+158265.0612451485 2.8704607 1103.3752
+158266.0612452528 2.8708937 1103.3357
+158267.0612453572 2.8711693 1103.2963
+158268.0612454615 2.8717599 1103.2963
+158269.0612455658 2.8720748 1103.3949
+158270.0612456701 2.8725474 1103.2765
+158271.0612457744 2.8730197 1103.3752
+158272.0612458787 2.873374 1103.316
+158273.061245983 2.8738859 1103.316
+158274.0612460873 2.8742008 1103.3949
+158275.0612461916 2.8746731 1103.3555
+158276.0612462959 2.8749487 1103.3555
+158277.0612464002 2.8754606 1103.316
+158278.0612465045 2.8760118 1103.4147
+158279.0612466089 2.8763661 1103.3555
+158280.0612467132 2.8768384 1103.3555
+158281.0612468175 2.877193 1103.2963
+158282.0612469218 2.8774686 1103.2963
+158283.0612470261 2.8781378 1103.3752
+158284.0612471304 2.8784134 1103.3357
+158285.0612472347 2.8787284 1103.4147
+158286.061247339 2.8790827 1103.4344
+158287.0612474433 2.8795943 1103.3357
+158288.0612475476 2.8800275 1103.2567
+158289.0612476519 2.8803425 1103.2765
+158290.0612477562 2.8808148 1103.4542
+158291.0612478605 2.8811693 1103.3357
+158292.0612479649 2.8816416 1103.3555
+158293.0612480692 2.8819959 1103.3357
+158294.0612481735 2.8823109 1103.2765
+158295.0612482778 2.8828228 1103.4344
+158296.0612483821 2.8831377 1103.3555
+158297.0612484864 2.8836889 1103.5134
+158298.0612485907 2.8840432 1103.316
+158299.061248695 2.8843188 1103.3555
+158300.0612487993 2.8847125 1103.3752
+158301.0612489036 2.8851061 1103.2963
+158302.0612490079 2.8855786 1103.3949
+158303.0612491122 2.8860903 1103.3357
+158304.0612492166 2.8862872 1103.2963
+158305.0612493209 2.8867204 1103.3555
+158306.0612494252 2.8870354 1103.316
+158307.0612495295 2.8876257 1103.2369
+158308.0612496338 2.8879802 1103.3555
+158309.0612497381 2.8882952 1103.2567
+158310.0612498424 2.8886888 1103.3555
+158311.0612499467 2.8891218 1103.316
+158312.061250051 2.8894761 1103.3752
+158313.0612501553 2.8898306 1103.2567
+158314.0612502596 2.8901849 1103.3357
+158315.0612503639 2.8906572 1103.3949
+158316.0612504683 2.8910511 1103.316
+158317.0612505726 2.891366 1103.3555
+158318.0612506769 2.8917203 1103.4147
+158319.0612507812 2.8921139 1103.2963
+158320.0612508855 2.8925469 1103.2963
+158321.0612509898 2.8929014 1103.4542
+158322.0612510941 2.8933344 1103.4147
+158323.0612511984 2.8936887 1103.2567
+158324.0612513027 2.894043 1103.3555
+158325.061251407 2.8943579 1103.2172
+158326.0612515113 2.8947911 1103.316
+158327.0612516156 2.8951454 1103.2963
+158328.0612517199 2.8954604 1103.316
+158329.0612518243 2.895854 1103.3555
+158330.0612519286 2.8962476 1103.3357
+158331.0612520329 2.8966415 1103.4938
+158332.0612521372 2.8970745 1103.3555
+158333.0612522415 2.8973894 1103.3752
+158334.0612523458 2.8977044 1103.316
+158335.0612524501 2.898098 1103.3949
+158336.0612525544 2.8983736 1103.3555
+158337.0612526587 2.8988068 1103.2963
+158338.061252763 2.8991611 1103.3949
+158339.0612528673 2.8994761 1103.3752
+158340.0612529716 2.899909 1103.3357
+158341.061253076 2.9003029 1103.316
+158342.0612531803 2.9006572 1103.3949
+158343.0612532846 2.9010901 1103.3357
+158344.0612533889 2.9013264 1103.4147
+158345.0612534932 2.90172 1103.4147
+158346.0612535975 2.902035 1103.2963
+158347.0612537018 2.9025075 1103.4344
+158348.0612538061 2.9027832 1103.316
+158349.0612539104 2.9031768 1103.3555
+158350.0612540147 2.9034524 1103.3949
+158351.061254119 2.9037673 1103.3555
+158352.0612542233 2.9042397 1103.3555
+158353.0612543277 2.9044366 1103.2963
+158354.061254432 2.9048302 1103.2765
+158355.0612545363 2.9052241 1103.4542
+158356.0612546406 2.9055784 1103.3949
+158357.0612547449 2.9059327 1103.3752
+158358.0612548492 2.9063263 1103.2765
+158359.0612549535 2.9066019 1103.3752
+158360.0612550578 2.9069562 1103.3357
+158361.0612551621 2.9073105 1103.4344
+158362.0612552664 2.9077044 1103.2963
+158363.0612553707 2.90798 1103.3357
+158364.061255475 2.9082949 1103.3357
+158365.0612555793 2.9086885 1103.2765
+158366.0612556837 2.9090035 1103.3555
+158367.061255788 2.9092791 1103.3949
+158368.0612558923 2.9097121 1103.3555
+158369.0612559966 2.909909 1103.3357
+158370.0612561009 2.9103813 1103.3555
+158371.0612562052 2.9106569 1103.316
+158372.0612563095 2.9109325 1103.3555
+158373.0612564138 2.9114051 1103.4147
+158374.0612565181 2.91172 1103.2765
+158375.0612566224 2.9119561 1103.316
+158376.0612567267 2.9123499 1103.2765
+158377.061256831 2.912586 1103.3555
+158378.0612569354 2.9129405 1103.3752
+158379.0612570397 2.9133341 1103.316
+158380.061257144 2.9136884 1103.3357
+158381.0612572483 2.9139247 1103.3555
+158382.0612573526 2.9143577 1103.316
+158383.0612574569 2.9146726 1103.2369
+158384.0612575612 2.9150269 1103.4542
+158385.0612576655 2.9153025 1103.2963
+158386.0612577698 2.9156568 1103.3752
+158387.0612578741 2.9158144 1103.3949
+158388.0612579784 2.9162474 1103.3555
+158389.0612580827 2.9166017 1103.4147
+158390.0612581871 2.9168379 1103.3752
+158391.0612582914 2.9171922 1103.3949
+158392.0612583957 2.9175467 1103.3357
+158393.0612585 2.9178617 1103.2963
+158394.0612586043 2.918216 1103.316
+158395.0612587086 2.9184916 1103.2567
+158396.0612588129 2.9188459 1103.3357
+158397.0612589172 2.9192002 1103.2765
+158398.0612590215 2.9195151 1103.3357
+158399.0612591258 2.9198301 1103.3555
+158400.0612592301 2.920145 1103.3555
+158401.0612593344 2.9204206 1103.3357
+158402.0612594387 2.9207356 1103.3357
+158403.0612595431 2.9210505 1103.316
+158404.0612596474 2.9213262 1103.2172
+158405.0612597517 2.9216411 1103.3752
+158406.061259856 2.9219954 1103.3555
+158407.0612599603 2.9223104 1103.3357
+158408.0612600646 2.9226646 1103.3949
+158409.0612601689 2.9229796 1103.3949
+158410.0612602732 2.9233339 1103.3357
+158411.0612603775 2.9234521 1103.3752
+158412.0612604818 2.9237278 1103.3752
+158413.0612605861 2.9241607 1103.4147
+158414.0612606904 2.924397 1103.3555
+158415.0612607948 2.9247906 1103.3555
+158416.0612608991 2.9250269 1103.3555
+158417.0612610034 2.9254599 1103.3357
+158418.0612611077 2.9257748 1103.4147
+158419.061261212 2.9259717 1103.3357
+158420.0612613163 2.926326 1103.3357
+158421.0612614206 2.9265623 1103.3555
+158422.0612615249 2.9268773 1103.3357
+158423.0612616292 2.9271922 1103.3555
+158424.0612617335 2.9274678 1103.316
+158425.0612618378 2.9277828 1103.316
+158426.0612619421 2.9281764 1103.4147
+158427.0612620465 2.928334 1103.3752
+158428.0612621508 2.9287276 1103.4147
+158429.0612622551 2.9289243 1103.2765
+158430.0612623594 2.9292789 1103.316
+158431.0612624637 2.9295545 1103.3752
+158432.061262568 2.9299481 1103.3555
+158433.0612626723 2.9301844 1103.3357
+158434.0612627766 2.9303811 1103.3357
+158435.0612628809 2.9307353 1103.3357
+158436.0612629852 2.9310503 1103.3949
+158437.0612630895 2.9313259 1103.3357
+158438.0612631938 2.9316015 1103.3752
+158439.0612632982 2.9318771 1103.3949
+158440.0612634025 2.9322314 1103.4542
+158441.0612635068 2.9324284 1103.2963
+158442.0612636111 2.9329007 1103.2765
+158443.0612637154 2.9330976 1103.3752
+158444.0612638197 2.9333732 1103.316
+158445.061263924 2.9336488 1103.3949
+158446.0612640283 2.9340031 1103.3752
+158447.0612641326 2.9342787 1103.3949
+158448.0612642369 2.9345543 1103.3752
+158449.0612643412 2.9348693 1103.2963
+158450.0612644455 2.9351842 1103.3357
+158451.0612645498 2.9354205 1103.3357
+158452.0612646542 2.9357355 1103.3357
+158453.0612647585 2.9360108 1103.316
+158454.0612648628 2.9363258 1103.3555
+158455.0612649671 2.9367197 1103.2765
+158456.0612650714 2.9369559 1103.3357
+158457.0612651757 2.9371526 1103.3752
+158458.06126528 2.9374282 1103.3752
+158459.0612653843 2.9377432 1103.316
+158460.0612654886 2.9379401 1103.3949
+158461.0612655929 2.9382944 1103.3949
+158462.0612656972 2.9386094 1103.3752
+158463.0612658015 2.9388063 1103.3752
+158464.0612659059 2.9391606 1103.3357
+158465.0612660102 2.9394362 1103.3949
+158466.0612661145 2.9397511 1103.2963
+158467.0612662188 2.9400265 1103.3752
+158468.0612663231 2.9402628 1103.3357
+158469.0612664274 2.9406171 1103.4147
+158470.0612665317 2.9408927 1103.2963
+158471.061266636 2.9412076 1103.3555
+158472.0612667403 2.9413259 1103.3555
+158473.0612668446 2.9417195 1103.3752
+158474.0612669489 2.9419558 1103.3555
+158475.0612670532 2.9421525 1103.3555
+158476.0612671576 2.9425857 1103.4344
+158477.0612672619 2.942822 1103.4147
+158478.0612673662 2.943058 1103.3357
+158479.0612674705 2.9433336 1103.2765
+158480.0612675748 2.9437275 1103.3752
+158481.0612676791 2.9439242 1103.3949
+158482.0612677834 2.9442391 1103.3949
+158483.0612678877 2.9445541 1103.3752
+158484.061267992 2.9446328 1103.2963
+158485.0612680963 2.9451053 1103.3752
+158486.0612682006 2.9453416 1103.3949
+158487.0612683049 2.9456172 1103.2963
+158488.0612684092 2.9459321 1103.3555
+158489.0612685136 2.9461288 1103.316
+158490.0612686179 2.9463258 1103.2963
+158491.0612687222 2.9467194 1103.316
+158492.0612688265 2.9470344 1103.2567
+158493.0612689308 2.94731 1103.3357
+158494.0612690351 2.9475069 1103.4147
+158495.0612691394 2.9477036 1103.3357
+158496.0612692437 2.9480975 1103.3949
+158497.061269348 2.9482548 1103.2567
+158498.0612694523 2.9485304 1103.3555
+158499.0612695566 2.9488847 1103.3949
+158500.0612696609 2.9490817 1103.3752
+158501.0612697653 2.9493179 1103.3949
+158502.0612698696 2.9496329 1103.2963
+158503.0612699739 2.9498689 1103.2963
+158504.0612700782 2.9501445 1103.2765
+158505.0612701825 2.9504595 1103.3357
+158506.0612702868 2.9506958 1103.2963
+158507.0612703911 2.951129 1103.2765
+158508.0612704954 2.951247 1103.3555
+158509.0612705997 2.9516406 1103.3357
+158510.061270704 2.9517589 1103.3555
+158511.0612708083 2.9520738 1103.2765
+158512.0612709126 2.9522312 1103.316
+158513.061271017 2.9526248 1103.3949
+158514.0612711213 2.9527824 1103.3555
+158515.0612712256 2.9530973 1103.3357
+158516.0612713299 2.9533336 1103.4344
+158517.0612714342 2.9536486 1103.3752
+158518.0612715385 2.9538453 1103.316
+158519.0612716428 2.9540815 1103.3555
+158520.0612717471 2.9543178 1103.2369
+158521.0612718514 2.9546328 1103.3357
+158522.0612719557 2.954869 1103.3555
+158523.06127206 2.9551446 1103.3555
+158524.0612721643 2.95542 1103.3949
+158525.0612722686 2.955617 1103.3949
+158526.061272373 2.9558926 1103.2963
+158527.0612724773 2.9562075 1103.3357
+158528.0612725816 2.9565618 1103.2963
+158529.0612726859 2.9567194 1103.2567
+158530.0612727902 2.9570737 1103.3555
+158531.0612728945 2.9572704 1103.3949
+158532.0612729988 2.9575067 1103.316
+158533.0612731031 2.9578609 1103.2963
+158534.0612732074 2.9580579 1103.316
+158535.0612733117 2.9583728 1103.3555
+158536.061273416 2.9586091 1103.316
+158537.0612735203 2.9589241 1103.4147
+158538.0612736247 2.9590027 1103.3752
+158539.061273729 2.9593177 1103.4542
+158540.0612738333 2.9595933 1103.2765
+158541.0612739376 2.9597902 1103.4147
+158542.0612740419 2.9601839 1103.316
+158543.0612741462 2.9603412 1103.2567
+158544.0612742505 2.9608138 1103.316
+158545.0612743548 2.9609711 1103.2963
+158546.0612744591 2.9612074 1103.4542
+158547.0612745634 2.9614437 1103.2567
+158548.0612746677 2.9616799 1103.3752
+158549.061274772 2.9619555 1103.316
+158550.0612748764 2.9622705 1103.3949
+158551.0612749807 2.9624672 1103.3752
+158552.061275085 2.9627035 1103.3357
+158553.0612751893 2.9629397 1103.3555
+158554.0612752936 2.963294 1103.3555
+158555.0612753979 2.9634516 1103.2567
+158556.0612755022 2.963727 1103.3752
+158557.0612756065 2.9640419 1103.3752
+158558.0612757108 2.9642389 1103.3949
+158559.0612758151 2.9644752 1103.3752
+158560.0612759194 2.9647114 1103.3752
+158561.0612760237 2.9650657 1103.3555
+158562.0612761281 2.9652624 1103.316
+158563.0612762324 2.9656169 1103.3752
+158564.0612763367 2.9657743 1103.2963
+158565.061276441 2.9661286 1103.2963
+158566.0612765453 2.9663255 1103.316
+158567.0612766496 2.9665222 1103.3949
+158568.0612767539 2.9666798 1103.3752
+158569.0612768582 2.9670734 1103.3949
+158570.0612769625 2.967231 1103.2963
+158571.0612770668 2.9674673 1103.3949
+158572.0612771711 2.9677823 1103.4147
+158573.0612772754 2.9680576 1103.316
+158574.0612773797 2.9682546 1103.2963
+158575.0612774841 2.9685695 1103.2963
+158576.0612775884 2.9687665 1103.3752
+158577.0612776927 2.9691207 1103.3752
+158578.061277797 2.9693177 1103.2963
+158579.0612779013 2.969475 1103.3949
+158580.0612780056 2.9697113 1103.316
+158581.0612781099 2.9699869 1103.3949
+158582.0612782142 2.9703412 1103.3752
+158583.0612783185 2.9705775 1103.316
+158584.0612784228 2.9707742 1103.2765
+158585.0612785271 2.971168 1103.3752
+158586.0612786314 2.9712467 1103.3357
+158587.0612787358 2.9715617 1103.4147
+158588.0612788401 2.971719 1103.3555
+158589.0612789444 2.972034 1103.316
+158590.0612790487 2.9723096 1103.3752
+158591.061279153 2.9725459 1103.2765
+158592.0612792573 2.9727821 1103.2567
+158593.0612793616 2.9730577 1103.3752
+158594.0612794659 2.9732151 1103.3752
+158595.0612795702 2.9735694 1103.2567
+158596.0612796745 2.973727 1103.4147
+158597.0612797788 2.9740419 1103.3555
+158598.0612798831 2.9741993 1103.3357
+158599.0612799875 2.9745142 1103.3555
+158600.0612800918 2.9747112 1103.3949
+158601.0612801961 2.9749081 1103.316
+158602.0612803004 2.9753017 1103.316
+158603.0612804047 2.9754198 1103.4344
+158604.061280509 2.975774 1103.3555
+158605.0612806133 2.9759316 1103.3555
+158606.0612807176 2.9761679 1103.3752
+158607.0612808219 2.9764435 1103.4147
+158608.0612809262 2.9766402 1103.2963
+158609.0612810305 2.9769945 1103.2369
+158610.0612811348 2.9772308 1103.316
+158611.0612812391 2.9774671 1103.2963
+158612.0612813435 2.9776244 1103.2765
+158613.0612814478 2.9779 1103.3949
+158614.0612815521 2.9781363 1103.3357
+158615.0612816564 2.9783332 1103.3357
+158616.0612817607 2.9786875 1103.3555
+158617.061281865 2.9788055 1103.2963
+158618.0612819693 2.9791994 1103.3752
+158619.0612820736 2.9793961 1103.4344
+158620.0612821779 2.9796324 1103.2765
+158621.0612822822 2.979908 1103.3357
+158622.0612823865 2.9801049 1103.2963
+158623.0612824908 2.9803803 1103.3555
+158624.0612825952 2.9805379 1103.2963
+158625.0612826995 2.9807742 1103.3949
+158626.0612828038 2.9809709 1103.2567
+158627.0612829081 2.9813254 1103.3357
+158628.0612830124 2.9815614 1103.3357
+158629.0612831167 2.9817584 1103.2765
+158630.061283221 2.9820733 1103.316
+158631.0612833253 2.9822307 1103.3949
+158632.0612834296 2.9824276 1103.3357
+158633.0612835339 2.9826245 1103.2369
+158634.0612836382 2.9830182 1103.3555
+158635.0612837425 2.9831362 1103.3949
+158636.0612838469 2.9833724 1103.2963
+158637.0612839512 2.9836874 1103.2567
+158638.0612840555 2.9838843 1103.3752
+158639.0612841598 2.9840417 1103.3949
+158640.0612842641 2.9843566 1103.2765
+158641.0612843684 2.9847109 1103.3357
+158642.0612844727 2.9848685 1103.2963
+158643.061284577 2.9851048 1103.3357
+158644.0612846813 2.9853015 1103.316
+158645.0612847856 2.9855771 1103.2963
+158646.0612848899 2.9858134 1103.3357
+158647.0612849942 2.9860103 1103.3357
+158648.0612850985 2.9862463 1103.3357
+158649.0612852029 2.9865613 1103.3555
+158650.0612853072 2.9867189 1103.3752
+158651.0612854115 2.9869158 1103.3752
+158652.0612855158 2.9872701 1103.3949
+158653.0612856201 2.9874668 1103.3357
+158654.0612857244 2.9876244 1103.316
+158655.0612858287 2.9878607 1103.2963
+158656.061285933 2.9881363 1103.4147
+158657.0612860373 2.988333 1103.316
+158658.0612861416 2.9884512 1103.316
+158659.0612862459 2.9888055 1103.3949
+158660.0612863502 2.9891205 1103.3752
+158661.0612864546 2.9892385 1103.3357
+158662.0612865589 2.9895141 1103.3752
+158663.0612866632 2.989711 1103.3752
+158664.0612867675 2.9898684 1103.3555
+158665.0612868718 2.9901834 1103.316
+158666.0612869761 2.9903803 1103.3555
+158667.0612870804 2.9906952 1103.2765
+158668.0612871847 2.9909315 1103.316
+158669.061287289 2.9911282 1103.3555
+158670.0612873933 2.9913251 1103.2963
+158671.0612874976 2.9915221 1103.3357
+158672.0612876019 2.9917974 1103.4344
+158673.0612877063 2.9920337 1103.2765
+158674.0612878106 2.9922307 1103.3555
+158675.0612879149 2.9924669 1103.3555
+158676.0612880192 2.9927425 1103.316
+158677.0612881235 2.9929392 1103.3555
+158678.0612882278 2.9931755 1103.4147
+158679.0612883321 2.9934905 1103.3555
+158680.0612884364 2.9936478 1103.3357
+158681.0612885407 2.9938841 1103.2963
+158682.061288645 2.994081 1103.3752
+158683.0612887493 2.9943566 1103.3357
+158684.0612888536 2.9946322 1103.3555
+158685.061288958 2.9947503 1103.3949
+158686.0612890623 2.9950652 1103.3357
+158687.0612891666 2.9952228 1103.3555
+158688.0612892709 2.9954982 1103.3555
+158689.0612893752 2.9958134 1103.3555
+158690.0612894795 2.9959314 1103.316
+158691.0612895838 2.9961283 1103.3555
+158692.0612896881 2.996325 1103.316
+158693.0612897924 2.9967186 1103.4147
+158694.0612898967 2.9968369 1103.3752
+158695.061290001 2.9970732 1103.3555
+158696.0612901053 2.9972699 1103.4147
+158697.0612902096 2.9975848 1103.2963
+158698.061290314 2.9977424 1103.4344
+158699.0612904183 2.9979391 1103.3949
+158700.0612905226 2.9982936 1103.3752
+158701.0612906269 2.9984117 1103.4147
+158702.0612907312 2.9986086 1103.3752
+158703.0612908355 2.998884 1103.3555
+158704.0612909398 2.9991596 1103.2765
+158705.0612910441 2.9993172 1103.2963
+158706.0612911484 2.9994352 1103.3555
+158707.0612912527 2.9998291 1103.3949
+158708.061291357 3.0000257 1103.3357
+158709.0612914613 3.000144 1103.3949
+158710.0612915657 3.00038 1103.4344
+158711.06129167 3.0006557 1103.2567
+158712.0612917743 3.0008919 1103.316
+158713.0612918786 3.0011282 1103.4344
+158714.0612919829 3.0014431 1103.2765
+158715.0612920872 3.0014825 1103.2963
+158716.0612921915 3.0017581 1103.3357
+158717.0612922958 3.0019548 1103.3555
+158718.0612924001 3.0021911 1103.2567
+158719.0612925044 3.0023487 1103.2963
+158720.0612926087 3.002506 1103.3555
+158721.061292713 3.002821 1103.3357
+158722.0612928174 3.0031359 1103.316
+158723.0612929217 3.0034115 1103.3752
+158724.061293026 3.0034902 1103.3357
+158725.0612931303 3.0037658 1103.4147
+158726.0612932346 3.0039628 1103.2963
+158727.0612933389 3.0041201 1103.3752
+158728.0612934432 3.0043564 1103.474
+158729.0612935475 3.004632 1103.3949
+158730.0612936518 3.0048289 1103.3555
+158731.0612937561 3.0049863 1103.3949
+158732.0612938604 3.0052226 1103.3949
+158733.0612939647 3.0054195 1103.3752
+158734.061294069 3.0056951 1103.3357
+158735.0612941734 3.0058525 1103.3357
+158736.0612942777 3.0060887 1103.2963
+158737.061294382 3.0062854 1103.2765
+158738.0612944863 3.0064824 1103.3752
+158739.0612945906 3.0066793 1103.3555
+158740.0612946949 3.0069942 1103.3555
+158741.0612947992 3.0071516 1103.316
+158742.0612949035 3.0073879 1103.3752
+158743.0612950078 3.0075848 1103.3357
+158744.0612951121 3.0077815 1103.3555
+158745.0612952164 3.0080178 1103.2963
+158746.0612953207 3.0082541 1103.2963
+158747.0612954251 3.008451 1103.4147
+158748.0612955294 3.008687 1103.3752
+158749.0612956337 3.0088053 1103.3752
+158750.061295738 3.0091202 1103.2567
+158751.0612958423 3.0093169 1103.2765
+158752.0612959466 3.0095139 1103.4147
+158753.0612960509 3.0096319 1103.316
+158754.0612961552 3.0099468 1103.3752
+158755.0612962595 3.0101831 1103.3949
+158756.0612963638 3.0103407 1103.2765
+158757.0612964681 3.0105374 1103.3555
+158758.0612965724 3.010813 1103.2963
+158759.0612966768 3.0110099 1103.3555
+158760.0612967811 3.0112066 1103.3357
+158761.0612968854 3.0114822 1103.316
+158762.0612969897 3.0115612 1103.2369
+158763.061297094 3.0119154 1103.316
+158764.0612971983 3.0120728 1103.3949
+158765.0612973026 3.0123878 1103.2567
+158766.0612974069 3.012506 1103.4147
+158767.0612975112 3.0127816 1103.3752
+158768.0612976155 3.012939 1103.316
+158769.0612977198 3.0131359 1103.3555
+158770.0612978241 3.0132933 1103.4147
+158771.0612979284 3.0135295 1103.3357
+158772.0612980328 3.0137265 1103.2765
+158773.0612981371 3.0140021 1103.4344
+158774.0612982414 3.0141201 1103.3555
+158775.0612983457 3.0143564 1103.3949
+158776.06129845 3.0145924 1103.4147
+158777.0612985543 3.0148287 1103.4147
+158778.0612986586 3.0149469 1103.4147
+158779.0612987629 3.015183 1103.3555
+158780.0612988672 3.0154586 1103.3555
+158781.0612989715 3.0156162 1103.3357
+158782.0612990758 3.0157342 1103.2765
+158783.0612991801 3.0160491 1103.2765
+158784.0612992845 3.0162854 1103.3752
+158785.0612993888 3.0163641 1103.3752
+158786.0612994931 3.016679 1103.3357
+158787.0612995974 3.016876 1103.316
+158788.0612997017 3.0169547 1103.3752
+158789.061299806 3.017309 1103.3949
+158790.0612999103 3.0173879 1103.4344
+158791.0613000146 3.0176632 1103.2963
+158792.0613001189 3.0178602 1103.4344
+158793.0613002232 3.0181358 1103.3357
+158794.0613003275 3.0182145 1103.2765
+158795.0613004318 3.0185294 1103.2369
+158796.0613005362 3.0187263 1103.3357
+158797.0613006405 3.0189626 1103.3555
+158798.0613007448 3.0190806 1103.2567
+158799.0613008491 3.0193563 1103.3357
+158800.0613009534 3.0195532 1103.3949
+158801.0613010577 3.0197499 1103.3949
+158802.061301162 3.0199075 1103.3949
+158803.0613012663 3.0201831 1103.316
+158804.0613013706 3.0203798 1103.3555
+158805.0613014749 3.0205767 1103.316
+158806.0613015792 3.0208523 1103.3357
+158807.0613016835 3.0210097 1103.4147
+158808.0613017879 3.0211279 1103.3357
+158809.0613018922 3.0214429 1103.3357
+158810.0613019965 3.0216789 1103.316
+158811.0613021008 3.0218365 1103.3357
+158812.0613022051 3.0221121 1103.4147
+158813.0613023094 3.0222695 1103.3949
+158814.0613024137 3.0225451 1103.3357
+158815.061302518 3.022742 1103.3357
+158816.0613026223 3.0229783 1103.3555
+158817.0613027266 3.0232539 1103.316
+158818.0613028309 3.0232933 1103.3357
+158819.0613029352 3.0236082 1103.3357
+158820.0613030395 3.0237656 1103.3949
+158821.0613031439 3.0240018 1103.3752
+158822.0613032482 3.0243168 1103.316
+158823.0613033525 3.0244348 1103.3555
+158824.0613034568 3.0245924 1103.3555
+158825.0613035611 3.0247498 1103.3949
+158826.0613036654 3.0250647 1103.316
+158827.0613037697 3.0252223 1103.3357
+158828.061303874 3.0254586 1103.3752
+158829.0613039783 3.0257342 1103.4344
+158830.0613040826 3.0258522 1103.2963
+158831.0613041869 3.0259702 1103.2765
+158832.0613042912 3.0263641 1103.4147
+158833.0613043956 3.0265214 1103.2765
+158834.0613044999 3.0267577 1103.2963
+158835.0613046042 3.0269151 1103.3752
+158836.0613047085 3.0270333 1103.3555
+158837.0613048128 3.02723 1103.3752
+158838.0613049171 3.0274663 1103.3555
+158839.0613050214 3.0276632 1103.316
+158840.0613051257 3.0278995 1103.316
+158841.06130523 3.0280569 1103.3555
+158842.0613053343 3.0283325 1103.4344
+158843.0613054386 3.0284901 1103.3555
+158844.0613055429 3.0287261 1103.4542
+158845.0613056473 3.028923 1103.3949
+158846.0613057516 3.0291593 1103.2963
+158847.0613058559 3.0293167 1103.3949
+158848.0613059602 3.0295529 1103.3357
+158849.0613060645 3.0297892 1103.4147
+158850.0613061688 3.0299466 1103.2369
+158851.0613062731 3.0301435 1103.3752
+158852.0613063774 3.0303404 1103.316
+158853.0613064817 3.0306554 1103.3752
+158854.061306586 3.0308127 1103.4938
+158855.0613066903 3.0308914 1103.3357
+158856.0613067946 3.0311277 1103.3357
+158857.0613068989 3.0312457 1103.2567
+158858.0613070033 3.031482 1103.316
+158859.0613071076 3.0317576 1103.3752
+158860.0613072119 3.0319152 1103.3555
+158861.0613073162 3.0321119 1103.2172
+158862.0613074205 3.0323088 1103.3949
+158863.0613075248 3.0326238 1103.3752
+158864.0613076291 3.0326631 1103.3949
+158865.0613077334 3.0329387 1103.2963
+158866.0613078377 3.0332143 1103.2963
+158867.061307942 3.0333717 1103.3949
+158868.0613080463 3.0335293 1103.3357
+158869.0613081506 3.0336866 1103.3555
+158870.061308255 3.0340412 1103.2765
+158871.0613083593 3.0341592 1103.3949
+158872.0613084636 3.0343561 1103.2963
+158873.0613085679 3.0345922 1103.3555
+158874.0613086722 3.0348678 1103.316
+158875.0613087765 3.034986 1103.3555
+158876.0613088808 3.0351434 1103.3752
+158877.0613089851 3.0353403 1103.3949
+158878.0613090894 3.035537 1103.3949
+158879.0613091937 3.0358126 1103.3555
+158880.061309298 3.0360096 1103.316
+158881.0613094023 3.0362065 1103.3357
+158882.0613095067 3.0364032 1103.3357
+158883.061309611 3.0365214 1103.4147
+158884.0613097153 3.0367968 1103.3555
+158885.0613098196 3.0369151 1103.2567
+158886.0613099239 3.037112 1103.3357
+158887.0613100282 3.0373087 1103.3949
+158888.0613101325 3.037545 1103.3752
+158889.0613102368 3.0377419 1103.3555
+158890.0613103411 3.0378993 1103.3357
+158891.0613104454 3.0380962 1103.5134
+158892.0613105497 3.0382929 1103.3357
+158893.061310654 3.0384898 1103.3949
+158894.0613107583 3.0386868 1103.3555
+158895.0613108627 3.0388834 1103.2765
+158896.061310967 3.0391197 1103.3357
+158897.0613110713 3.0392377 1103.3357
+158898.0613111756 3.039474 1103.316
+158899.0613112799 3.0395923 1103.3752
+158900.0613113842 3.0398283 1103.3357
+158901.0613114885 3.0400252 1103.2963
+158902.0613115928 3.0402615 1103.3357
+158903.0613116971 3.0404189 1103.3555
+158904.0613118014 3.0406158 1103.3949
+158905.0613119057 3.0407732 1103.3357
+158906.06131201 3.0410094 1103.2963
+158907.0613121144 3.041167 1103.4147
+158908.0613122187 3.0413244 1103.3752
+158909.061312323 3.0415606 1103.474
+158910.0613124273 3.041718 1103.4147
+158911.0613125316 3.0419149 1103.2567
+158912.0613126359 3.0421906 1103.2369
+158913.0613127402 3.0423875 1103.3357
+158914.0613128445 3.0424662 1103.3555
+158915.0613129488 3.0426631 1103.2172
+158916.0613130531 3.042978 1103.3752
+158917.0613131574 3.0430567 1103.316
+158918.0613132617 3.0433323 1103.3949
+158919.0613133661 3.043529 1103.3752
+158920.0613134704 3.043726 1103.316
+158921.0613135747 3.0438833 1103.3555
+158922.061313679 3.0441196 1103.3555
+158923.0613137833 3.0442379 1103.2765
+158924.0613138876 3.0445528 1103.316
+158925.0613139919 3.0446708 1103.316
+158926.0613140962 3.0449071 1103.316
+158927.0613142005 3.0451038 1103.4542
+158928.0613143048 3.0452614 1103.3555
+158929.0613144091 3.0454583 1103.2765
+158930.0613145134 3.045655 1103.3752
+158931.0613146177 3.0458126 1103.3752
+158932.0613147221 3.0460882 1103.3555
+158933.0613148264 3.0462849 1103.3752
+158934.0613149307 3.0464818 1103.3949
+158935.061315035 3.0465999 1103.3949
+158936.0613151393 3.0467575 1103.2765
+158937.0613152436 3.0469542 1103.3949
+158938.0613153479 3.0471117 1103.2765
+158939.0613154522 3.047348 1103.4542
+158940.0613155565 3.0475054 1103.2963
+158941.0613156608 3.0476236 1103.316
+158942.0613157651 3.0478992 1103.2963
+158943.0613158694 3.0480173 1103.2963
+158944.0613159738 3.0483322 1103.3357
+158945.0613160781 3.0485291 1103.3357
+158946.0613161824 3.0487258 1103.3949
+158947.0613162867 3.0488834 1103.3357
+158948.061316391 3.0490015 1103.3357
+158949.0613164953 3.0492771 1103.316
+158950.0613165996 3.0493951 1103.316
+158951.0613167039 3.0495133 1103.3949
+158952.0613168082 3.049789 1103.3949
+158953.0613169125 3.0499856 1103.4147
+158954.0613170168 3.0501432 1103.4147
+158955.0613171211 3.0503006 1103.3357
+158956.0613172255 3.0504975 1103.2765
+158957.0613173298 3.0508125 1103.2765
+158958.0613174341 3.0509305 1103.3357
+158959.0613175384 3.0510488 1103.3752
+158960.0613176427 3.051285 1103.3357
+158961.061317747 3.0514817 1103.3357
+158962.0613178513 3.0516787 1103.2567
+158963.0613179556 3.0518754 1103.3949
+158964.0613180599 3.0519936 1103.3949
+158965.0613181642 3.0521116 1103.4147
+158966.0613182685 3.0523479 1103.3555
+158967.0613183728 3.0525448 1103.3752
+158968.0613184772 3.0527022 1103.3949
+158969.0613185815 3.0530171 1103.2369
+158970.0613186858 3.0532141 1103.2765
+158971.0613187901 3.0532534 1103.2567
+158972.0613188944 3.0534897 1103.3357
+158973.0613189987 3.0536077 1103.4147
+158974.061319103 3.0539227 1103.3357
+158975.0613192073 3.053962 1103.3752
+158976.0613193116 3.0541589 1103.2765
+158977.0613194159 3.0543556 1103.3555
+158978.0613195202 3.0546706 1103.3357
+158979.0613196245 3.0548282 1103.2963
+158980.0613197288 3.0549462 1103.3949
+158981.0613198332 3.0551431 1103.316
+158982.0613199375 3.0552611 1103.2963
+158983.0613200418 3.0555367 1103.3555
+158984.0613201461 3.0556943 1103.3555
+158985.0613202504 3.0559306 1103.3357
+158986.0613203547 3.05597 1103.3357
+158987.061320459 3.0562456 1103.2963
+158988.0613205633 3.0563636 1103.316
+158989.0613206676 3.0565209 1103.3752
+158990.0613207719 3.0567966 1103.3752
+158991.0613208762 3.0569148 1103.2963
+158992.0613209805 3.0571115 1103.2567
+158993.0613210849 3.0573478 1103.316
+158994.0613211892 3.0575054 1103.3357
+158995.0613212935 3.0577021 1103.3752
+158996.0613213978 3.0578203 1103.316
+158997.0613215021 3.0580564 1103.2765
+158998.0613216064 3.0582533 1103.3357
+158999.0613217107 3.058332 1103.3949
+159000.061321815 3.0585682 1103.3555
+159001.0613219193 3.0588439 1103.316
+159002.0613220236 3.0589225 1103.3357
+159003.0613221279 3.0590408 1103.2172
+159004.0613222322 3.0593164 1103.3357
+159005.0613223366 3.0594738 1103.3752
+159006.0613224409 3.05971 1103.3752
+159007.0613225452 3.0598674 1103.2963
+159008.0613226495 3.0599856 1103.316
+159009.0613227538 3.0602219 1103.3555
+159010.0613228581 3.0603793 1103.3949
+159011.0613229624 3.0606549 1103.3357
+159012.0613230667 3.0607336 1103.2963
+159013.061323171 3.0610092 1103.3555
+159014.0613232753 3.0611272 1103.3752
+159015.0613233796 3.0612848 1103.3752
+159016.0613234839 3.0614421 1103.2765
+159017.0613235882 3.0616391 1103.2963
+159018.0613236926 3.0617177 1103.3752
+159019.0613237969 3.0621116 1103.3752
+159020.0613239012 3.0621903 1103.4147
+159021.0613240055 3.0623872 1103.3752
+159022.0613241098 3.0625839 1103.3555
+159023.0613242141 3.0627415 1103.316
+159024.0613243184 3.0630171 1103.2765
+159025.0613244227 3.0630565 1103.3555
+159026.061324527 3.0632532 1103.3555
+159027.0613246313 3.0634501 1103.3752
+159028.0613247356 3.0635681 1103.3555
+159029.0613248399 3.063765 1103.316
+159030.0613249443 3.063962 1103.316
+159031.0613250486 3.0641193 1103.316
+159032.0613251529 3.0643556 1103.2963
+159033.0613252572 3.0646312 1103.3555
+159034.0613253615 3.0647886 1103.3357
+159035.0613254658 3.0648675 1103.2369
+159036.0613255701 3.0651035 1103.316
+159037.0613256744 3.0652611 1103.3357
+159038.0613257787 3.0653398 1103.3555
+159039.061325883 3.0656548 1103.3752
+159040.0613259873 3.0658123 1103.3752
+159041.0613260916 3.066009 1103.3752
+159042.061326196 3.066206 1103.3752
+159043.0613263003 3.0662453 1103.3357
+159044.0613264046 3.0664816 1103.3357
+159045.0613265089 3.0666389 1103.3555
+159046.0613266132 3.0668359 1103.3357
+159047.0613267175 3.0669539 1103.3555
+159048.0613268218 3.0671902 1103.316
+159049.0613269261 3.0673478 1103.3752
+159050.0613270304 3.0674658 1103.2567
+159051.0613271347 3.0677414 1103.2963
+159052.061327239 3.0678594 1103.2963
+159053.0613273433 3.068017 1103.3752
+159054.0613274476 3.0682137 1103.2567
+159055.061327552 3.06845 1103.3357
+159056.0613276563 3.0685287 1103.316
+159057.0613277606 3.0687649 1103.3357
+159058.0613278649 3.0689619 1103.3949
+159059.0613279692 3.0690405 1103.2765
+159060.0613280735 3.0691192 1103.4147
+159061.0613281778 3.0695524 1103.3752
+159062.0613282821 3.0696311 1103.3357
+159063.0613283864 3.0696704 1103.3555
+159064.0613284907 3.0699461 1103.316
+159065.061328595 3.070143 1103.2765
+159066.0613286993 3.0701036 1103.3555
+159067.0613288037 3.0704186 1103.3949
+159068.061328908 3.0706546 1103.3357
+159069.0613290123 3.0707335 1103.4542
+159070.0613291166 3.0708909 1103.3357
+159071.0613292209 3.0710878 1103.316
+159072.0613293252 3.0711272 1103.2765
+159073.0613294295 3.0713634 1103.3752
+159074.0613295338 3.0714028 1103.3555
+159075.0613296381 3.0717177 1103.316
+159076.0613297424 3.0719144 1103.2963
+159077.0613298467 3.072072 1103.3357
+159078.061329951 3.0721507 1103.3752
+159079.0613300554 3.0723083 1103.3949
+159080.0613301597 3.0725839 1103.3357
+159081.061330264 3.0727806 1103.3555
+159082.0613303683 3.0728595 1103.3357
+159083.0613304726 3.0729775 1103.3555
+159084.0613305769 3.0732138 1103.3357
+159085.0613306812 3.0732925 1103.316
+159086.0613307855 3.0736074 1103.2172
+159087.0613308898 3.0736861 1103.3949
+159088.0613309941 3.0739224 1103.3357
+159089.0613310984 3.0740404 1103.3357
+159090.0613312027 3.0742373 1103.3752
+159091.0613313071 3.0744343 1103.2567
+159092.0613314114 3.074631 1103.3752
+159093.0613315157 3.074631 1103.4147
+159094.06133162 3.0748279 1103.316
+159095.0613317243 3.0751035 1103.3555
+159096.0613318286 3.0752609 1103.4147
+159097.0613319329 3.0754185 1103.4542
+159098.0613320372 3.0755758 1103.3555
+159099.0613321415 3.0757334 1103.4344
+159100.0613322458 3.0758908 1103.3555
+159101.0613323501 3.0761271 1103.316
+159102.0613324544 3.0762453 1103.3357
+159103.0613325587 3.076442 1103.3949
+159104.0613326631 3.0765603 1103.3949
+159105.0613327674 3.076757 1103.316
+159106.0613328717 3.0768356 1103.316
+159107.061332976 3.0770326 1103.3752
+159108.0613330803 3.0772295 1103.4344
+159109.0613331846 3.0774655 1103.3949
+159110.0613332889 3.0775838 1103.3357
+159111.0613333932 3.0777805 1103.2963
+159112.0613334975 3.0779774 1103.3752
+159113.0613336018 3.078135 1103.3949
+159114.0613337061 3.0782137 1103.3555
+159115.0613338104 3.078371 1103.3555
+159116.0613339148 3.0785286 1103.3752
+159117.0613340191 3.0788043 1103.316
+159118.0613341234 3.0789223 1103.3555
+159119.0613342277 3.0791979 1103.3752
+159120.061334332 3.0792766 1103.3949
+159121.0613344363 3.0793555 1103.3752
+159122.0613345406 3.0795522 1103.2172
+159123.0613346449 3.0797884 1103.3752
+159124.0613347492 3.0798671 1103.3555
+159125.0613348535 3.0799065 1103.3555
+159126.0613349578 3.0800641 1103.3555
+159127.0613350621 3.080379 1103.316
+159128.0613351665 3.0804183 1103.2963
+159129.0613352708 3.0807333 1103.3752
+159130.0613353751 3.0807726 1103.2963
+159131.0613354794 3.0809696 1103.3949
+159132.0613355837 3.0811663 1103.3555
+159133.061335688 3.0812845 1103.2172
+159134.0613357923 3.0815601 1103.3555
+159135.0613358966 3.0817568 1103.3555
+159136.0613360009 3.0817175 1103.316
+159137.0613361052 3.0819538 1103.316
+159138.0613362095 3.0821507 1103.316
+159139.0613363138 3.0822687 1103.3555
+159140.0613364181 3.0824263 1103.3752
+159141.0613365225 3.082623 1103.3357
+159142.0613366268 3.0827413 1103.2765
+159143.0613367311 3.082938 1103.4542
+159144.0613368354 3.0830166 1103.316
+159145.0613369397 3.0831742 1103.2963
+159146.061337044 3.0834105 1103.2765
+159147.0613371483 3.0835285 1103.4344
+159148.0613372526 3.0837255 1103.3752
+159149.0613373569 3.0838435 1103.2567
+159150.0613374612 3.0840011 1103.3752
+159151.0613375655 3.0842371 1103.2765
+159152.0613376698 3.0843554 1103.2765
+159153.0613377742 3.0845916 1103.3357
+159154.0613378785 3.0846703 1103.3357
+159155.0613379828 3.0849459 1103.3357
+159156.0613380871 3.0850246 1103.3555
+159157.0613381914 3.0852215 1103.3752
+159158.0613382957 3.0854971 1103.3555
+159159.0613384 3.0855758 1103.3752
+159160.0613385043 3.0857725 1103.3949
+159161.0613386086 3.0859301 1103.3949
+159162.0613387129 3.0861664 1103.316
+159163.0613388172 3.0863237 1103.316
+159164.0613389215 3.0864024 1103.2963
+159165.0613390259 3.0866387 1103.2963
+159166.0613391302 3.086678 1103.3555
+159167.0613392345 3.0869536 1103.3752
+159168.0613393388 3.0871112 1103.316
+159169.0613394431 3.0873475 1103.316
+159170.0613395474 3.0874655 1103.3949
+159171.0613396517 3.0875835 1103.3752
+159172.061339756 3.0877018 1103.3357
+159173.0613398603 3.0880167 1103.2963
+159174.0613399646 3.0880954 1103.3752
+159175.0613400689 3.0884104 1103.3555
+159176.0613401732 3.0884891 1103.3752
+159177.0613402775 3.0886467 1103.4344
+159178.0613403819 3.088804 1103.3949
+159179.0613404862 3.0890009 1103.316
+159180.0613405905 3.089119 1103.3752
+159181.0613406948 3.0893159 1103.2567
+159182.0613407991 3.0894732 1103.3949
+159183.0613409034 3.0896308 1103.3949
+159184.0613410077 3.0897882 1103.3752
+159185.061341112 3.0900245 1103.3949
+159186.0613412163 3.0900638 1103.4147
+159187.0613413206 3.0903394 1103.3357
+159188.0613414249 3.0903788 1103.2172
+159189.0613415292 3.0905757 1103.3752
+159190.0613416336 3.0907333 1103.3949
+159191.0613417379 3.0908906 1103.3752
+159192.0613418422 3.0910482 1103.3357
+159193.0613419465 3.0912843 1103.3949
+159194.0613420508 3.0914025 1103.3752
+159195.0613421551 3.0915992 1103.3357
+159196.0613422594 3.0916386 1103.3555
+159197.0613423637 3.0917568 1103.3555
+159198.061342468 3.0921111 1103.3555
+159199.0613425723 3.0921111 1103.3949
+159200.0613426766 3.092308 1103.3555
+159201.0613427809 3.0924261 1103.3949
+159202.0613428853 3.0925837 1103.3752
+159203.0613429896 3.092741 1103.4147
+159204.0613430939 3.0929379 1103.3752
+159205.0613431982 3.0930953 1103.4542
+159206.0613433025 3.0932136 1103.2567
+159207.0613434068 3.0933709 1103.316
+159208.0613435111 3.0936072 1103.3357
+159209.0613436154 3.0937252 1103.3752
+159210.0613437197 3.0938828 1103.3949
+159211.061343824 3.0939615 1103.3555
+159212.0613439283 3.0941584 1103.3555
+159213.0613440326 3.0943551 1103.3949
+159214.061344137 3.094434 1103.3555
+159215.0613442413 3.0947094 1103.2567
+159216.0613443456 3.0948277 1103.2765
+159217.0613444499 3.094985 1103.2963
+159218.0613445542 3.0950639 1103.2963
+159219.0613446585 3.0952213 1103.3357
+159220.0613447628 3.0954969 1103.316
+159221.0613448671 3.0955756 1103.4938
+159222.0613449714 3.0957725 1103.3752
+159223.0613450757 3.0959299 1103.3357
+159224.06134518 3.0961268 1103.3555
+159225.0613452843 3.0963237 1103.3752
+159226.0613453886 3.0964024 1103.2963
+159227.061345493 3.0966387 1103.4147
+159228.0613455973 3.0967567 1103.3949
+159229.0613457016 3.0969536 1103.3357
+159230.0613458059 3.097111 1103.3555
+159231.0613459102 3.0971503 1103.2963
+159232.0613460145 3.0974259 1103.3949
+159233.0613461188 3.0975442 1103.4344
+159234.0613462231 3.0978198 1103.3357
+159235.0613463274 3.0979772 1103.316
+159236.0613464317 3.0980952 1103.316
+159237.061346536 3.0982134 1103.4147
+159238.0613466403 3.0984101 1103.4147
+159239.0613467447 3.0987251 1103.3949
+159240.061346849 3.0987647 1103.4147
+159241.0613469533 3.0988433 1103.3357
+159242.0613470576 3.0991976 1103.2567
+159243.0613471619 3.0991189 1103.2765
+159244.0613472662 3.0993946 1103.3752
+159245.0613473705 3.0994732 1103.316
+159246.0613474748 3.0997488 1103.2963
+159247.0613475791 3.0999062 1103.316
+159248.0613476834 3.1000245 1103.2963
+159249.0613477877 3.1002605 1103.3357
+159250.061347892 3.1003788 1103.4344
+159251.0613479964 3.100615 1103.316
+159252.0613481007 3.100733 1103.3752
+159253.061348205 3.1008511 1103.4344
+159254.0613483093 3.101048 1103.2963
+159255.0613484136 3.1012449 1103.2963
+159256.0613485179 3.1014023 1103.2963
+159257.0613486222 3.1015992 1103.3752
+159258.0613487265 3.1017172 1103.3555
+159259.0613488308 3.1019142 1103.3752
+159260.0613489351 3.1020322 1103.2765
+159261.0613490394 3.1021109 1103.4344
+159262.0613491437 3.1023471 1103.3357
+159263.061349248 3.1025047 1103.3752
+159264.0613493524 3.1027014 1103.3357
+159265.0613494567 3.1028197 1103.316
+159266.061349561 3.1030164 1103.316
+159267.0613496653 3.1032526 1103.3555
+159268.0613497696 3.1033709 1103.3357
+159269.0613498739 3.1034496 1103.3752
+159270.0613499782 3.1037252 1103.316
+159271.0613500825 3.1038039 1103.2567
+159272.0613501868 3.1040401 1103.4344
+159273.0613502911 3.1041582 1103.4147
+159274.0613503954 3.1043158 1103.3949
+159275.0613504997 3.1044731 1103.3357
+159276.0613506041 3.1046307 1103.316
+159277.0613507084 3.1047881 1103.2765
+159278.0613508127 3.1049457 1103.3555
+159279.061350917 3.1052213 1103.2567
+159280.0613510213 3.105418 1103.3357
+159281.0613511256 3.105418 1103.2567
+159282.0613512299 3.1056149 1103.316
+159283.0613513342 3.1058905 1103.2369
+159284.0613514385 3.1058512 1103.316
+159285.0613515428 3.1061265 1103.3357
+159286.0613516471 3.1063628 1103.3555
+159287.0613517514 3.1064022 1103.316
+159288.0613518558 3.1065598 1103.3555
+159289.0613519601 3.1067567 1103.2963
+159290.0613520644 3.1069927 1103.2963
+159291.0613521687 3.1069927 1103.2765
+159292.061352273 3.107229 1103.3357
+159293.0613523773 3.1073866 1103.316
+159294.0613524816 3.1075439 1103.3555
+159295.0613525859 3.107662 1103.3752
+159296.0613526902 3.1078589 1103.316
+159297.0613527945 3.1080165 1103.3357
+159298.0613528988 3.1081345 1103.3555
+159299.0613530031 3.1082919 1103.3555
+159300.0613531074 3.1085281 1103.2765
+159301.0613532118 3.1085281 1103.3555
+159302.0613533161 3.1087644 1103.316
+159303.0613534204 3.1088824 1103.3357
+159304.0613535247 3.10904 1103.316
+159305.061353629 3.1092763 1103.2963
+159306.0613537333 3.1092763 1103.316
+159307.0613538376 3.1095519 1103.3752
+159308.0613539419 3.1097486 1103.3949
+159309.0613540462 3.1097486 1103.3357
+159310.0613541505 3.1099062 1103.2963
+159311.0613542548 3.1101029 1103.3949
+159312.0613543591 3.1102605 1103.2765
+159313.0613544635 3.1104178 1103.2765
+159314.0613545678 3.1105361 1103.4147
+159315.0613546721 3.1106148 1103.3949
+159316.0613547764 3.1107328 1103.3357
+159317.0613548807 3.1110873 1103.3752
+159318.061354985 3.1112053 1103.3555
+159319.0613550893 3.1112447 1103.2567
+159320.0613551936 3.111481 1103.3555
+159321.0613552979 3.1115203 1103.3555
+159322.0613554022 3.1117959 1103.3752
+159323.0613555065 3.1119139 1103.2567
+159324.0613556108 3.1120322 1103.3752
+159325.0613557152 3.1121502 1103.2963
+159326.0613558195 3.1123471 1103.2963
+159327.0613559238 3.1125045 1103.3555
+159328.0613560281 3.1126621 1103.3752
+159329.0613561324 3.112977 1103.3752
+159330.0613562367 3.1130557 1103.3752
+159331.061356341 3.1130557 1103.3752
+159332.0613564453 3.1133313 1103.3752
+159333.0613565496 3.11341 1103.2963
+159334.0613566539 3.1136069 1103.2765
+159335.0613567582 3.1137249 1103.2765
+159336.0613568625 3.1139219 1103.3949
+159337.0613569668 3.1140006 1103.3949
+159338.0613570712 3.1142762 1103.2765
+159339.0613571755 3.1143942 1103.3752
+159340.0613572798 3.1145518 1103.3357
+159341.0613573841 3.1147485 1103.3752
+159342.0613574884 3.1148274 1103.3357
+159343.0613575927 3.1150241 1103.2369
+159344.061357697 3.1152604 1103.3357
+159345.0613578013 3.1153784 1103.3555
+159346.0613579056 3.1154573 1103.3357
+159347.0613580099 3.115654 1103.316
+159348.0613581142 3.1158903 1103.3555
+159349.0613582185 3.1160085 1103.3357
+159350.0613583229 3.1162052 1103.3752
+159351.0613584272 3.1163235 1103.316
+159352.0613585315 3.1164808 1103.3357
+159353.0613586358 3.1166384 1103.4542
+159354.0613587401 3.1167958 1103.2765
+159355.0613588444 3.1169927 1103.2172
+159356.0613589487 3.1171894 1103.2765
+159357.061359053 3.117347 1103.2963
+159358.0613591573 3.1175439 1103.3949
+159359.0613592616 3.1176226 1103.3949
+159360.0613593659 3.1177406 1103.4147
+159361.0613594702 3.1178982 1103.3555
+159362.0613595746 3.1179769 1103.3555
+159363.0613596789 3.1182132 1103.3357
+159364.0613597832 3.1183705 1103.2369
+159365.0613598875 3.1184888 1103.2765
+159366.0613599918 3.1185675 1103.316
+159367.0613600961 3.1188431 1103.3357
+159368.0613602004 3.1189611 1103.2963
+159369.0613603047 3.1191974 1103.4147
+159370.061360409 3.119276 1103.316
+159371.0613605133 3.1193943 1103.3752
+159372.0613606176 3.1196303 1103.3752
+159373.0613607219 3.1196697 1103.3752
+159374.0613608263 3.1198273 1103.2567
+159375.0613609306 3.1199453 1103.2765
+159376.0613610349 3.1201029 1103.3357
+159377.0613611392 3.1202996 1103.316
+159378.0613612435 3.1204178 1103.316
+159379.0613613478 3.1204965 1103.3357
+159380.0613614521 3.1206934 1103.316
+159381.0613615564 3.1208115 1103.3949
+159382.0613616607 3.1209295 1103.3752
+159383.061361765 3.1210477 1103.4542
+159384.0613618693 3.1212447 1103.2963
+159385.0613619736 3.1213627 1103.3949
+159386.0613620779 3.1215596 1103.316
+159387.0613621823 3.1216383 1103.3949
+159388.0613622866 3.1217957 1103.3357
+159389.0613623909 3.1219139 1103.2765
+159390.0613624952 3.1221106 1103.4344
+159391.0613625995 3.1221499 1103.3949
+159392.0613627038 3.1224256 1103.4147
+159393.0613628081 3.1225045 1103.316
+159394.0613629124 3.1225832 1103.3555
+159395.0613630167 3.1227405 1103.3752
+159396.061363121 3.1229374 1103.4542
+159397.0613632253 3.123095 1103.2963
+159398.0613633296 3.1231737 1103.3949
+159399.061363434 3.12341 1103.3555
+159400.0613635383 3.1236067 1103.3949
+159401.0613636426 3.1236854 1103.3555
+159402.0613637469 3.1238036 1103.4147
+159403.0613638512 3.1240003 1103.3949
+159404.0613639555 3.1240792 1103.2172
+159405.0613640598 3.1243153 1103.4147
+159406.0613641641 3.1245122 1103.4147
+159407.0613642684 3.1247091 1103.316
+159408.0613643727 3.1247485 1103.3357
+159409.061364477 3.1248665 1103.3752
+159410.0613645813 3.1250241 1103.3752
+159411.0613646857 3.1252208 1103.316
+159412.06136479 3.1254177 1103.3949
+159413.0613648943 3.1255753 1103.2765
+159414.0613649986 3.1256146 1103.3357
+159415.0613651029 3.1258903 1103.2963
+159416.0613652072 3.1258507 1103.316
+159417.0613653115 3.1261263 1103.3357
+159418.0613654158 3.1261263 1103.3555
+159419.0613655201 3.1263626 1103.2963
+159420.0613656244 3.1265202 1103.3949
+159421.0613657287 3.1267169 1103.2765
+159422.061365833 3.1268351 1103.316
+159423.0613659373 3.1270318 1103.3752
+159424.0613660417 3.1271107 1103.316
+159425.061366146 3.1272287 1103.316
+159426.0613662503 3.1273468 1103.3555
+159427.0613663546 3.1275043 1103.3949
+159428.0613664589 3.1276617 1103.4147
+159429.0613665632 3.12778 1103.3752
+159430.0613666675 3.1278586 1103.4147
+159431.0613667718 3.1280556 1103.4542
+159432.0613668761 3.1281736 1103.3752
+159433.0613669804 3.1282916 1103.3555
+159434.0613670847 3.1285279 1103.3752
+159435.061367189 3.1286066 1103.2963
+159436.0613672934 3.1288035 1103.316
+159437.0613673977 3.1289611 1103.2369
+159438.061367502 3.1290398 1103.2765
+159439.0613676063 3.1291578 1103.3555
+159440.0613677106 3.1293941 1103.3357
+159441.0613678149 3.1295121 1103.2172
+159442.0613679192 3.1296303 1103.2963
+159443.0613680235 3.1298664 1103.2963
+159444.0613681278 3.1299846 1103.2963
+159445.0613682321 3.1301816 1103.2963
+159446.0613683364 3.1302602 1103.316
+159447.0613684407 3.1303782 1103.3949
+159448.0613685451 3.1304569 1103.3949
+159449.0613686494 3.1307325 1103.3949
+159450.0613687537 3.1307719 1103.316
+159451.061368858 3.1310081 1103.2963
+159452.0613689623 3.1310868 1103.3555
+159453.0613690666 3.1312838 1103.316
+159454.0613691709 3.1314807 1103.2765
+159455.0613692752 3.1315987 1103.3555
+159456.0613693795 3.1317563 1103.3555
+159457.0613694838 3.1318743 1103.3752
+159458.0613695881 3.1320713 1103.3752
+159459.0613696924 3.132268 1103.3555
+159460.0613697967 3.1324255 1103.2765
+159461.0613699011 3.1325436 1103.2765
+159462.0613700054 3.1327405 1103.316
+159463.0613701097 3.1328979 1103.2765
+159464.061370214 3.1330161 1103.3357
+159465.0613703183 3.1331341 1103.3357
+159466.0613704226 3.1332521 1103.3357
+159467.0613705269 3.1333704 1103.316
+159468.0613706312 3.1335278 1103.3949
+159469.0613707355 3.133764 1103.2963
+159470.0613708398 3.1338823 1103.3555
+159471.0613709441 3.133961 1103.3752
+159472.0613710484 3.1341183 1103.316
+159473.0613711528 3.1342366 1103.4147
+159474.0613712571 3.1343939 1103.3357
+159475.0613713614 3.1345515 1103.3555
+159476.0613714657 3.1346695 1103.316
+159477.06137157 3.1347089 1103.3357
+159478.0613716743 3.1349845 1103.3357
+159479.0613717786 3.1351025 1103.3357
+159480.0613718829 3.1352208 1103.4147
+159481.0613719872 3.135457 1103.3555
+159482.0613720915 3.1356144 1103.3752
+159483.0613721958 3.1356931 1103.316
+159484.0613723001 3.1358507 1103.4147
+159485.0613724045 3.1360476 1103.2963
+159486.0613725088 3.136205 1103.316
+159487.0613726131 3.1363626 1103.2963
+159488.0613727174 3.1364019 1103.2963
+159489.0613728217 3.1365592 1103.3555
+159490.061372926 3.1366775 1103.316
+159491.0613730303 3.1367955 1103.2963
+159492.0613731346 3.1368742 1103.316
+159493.0613732389 3.1371105 1103.3357
+159494.0613733432 3.1372681 1103.316
+159495.0613734475 3.1373467 1103.2369
+159496.0613735518 3.1374648 1103.2765
+159497.0613736562 3.137583 1103.316
+159498.0613737605 3.1376617 1103.3357
+159499.0613738648 3.1377797 1103.3555
+159500.0613739691 3.1379373 1103.2963
+159501.0613740734 3.138134 1103.3357
+159502.0613741777 3.1382523 1103.3357
+159503.061374282 3.1384096 1103.3555
+159504.0613743863 3.138449 1103.316
+159505.0613744906 3.1385672 1103.3752
+159506.0613745949 3.1387639 1103.3357
+159507.0613746992 3.1388428 1103.3555
+159508.0613748035 3.1389215 1103.3555
+159509.0613749078 3.1390789 1103.2369
+159510.0613750122 3.1392758 1103.3752
+159511.0613751165 3.1394334 1103.3357
+159512.0613752208 3.1395121 1103.316
+159513.0613753251 3.1397877 1103.2765
+159514.0613754294 3.1397877 1103.4542
+159515.0613755337 3.1399844 1103.3357
+159516.061375638 3.1401026 1103.2765
+159517.0613757423 3.1402993 1103.316
+159518.0613758466 3.1404176 1103.3949
+159519.0613759509 3.1405356 1103.3949
+159520.0613760552 3.1407325 1103.3949
+159521.0613761595 3.1407719 1103.2765
+159522.0613762639 3.1409292 1103.3949
+159523.0613763682 3.1410475 1103.4344
+159524.0613764725 3.1412048 1103.2963
+159525.0613765768 3.1413624 1103.3555
+159526.0613766811 3.1414804 1103.2765
+159527.0613767854 3.141638 1103.2567
+159528.0613768897 3.1417561 1103.3357
+159529.061376994 3.1419137 1103.3752
+159530.0613770983 3.1420317 1103.3357
+159531.0613772026 3.142189 1103.3357
+159532.0613773069 3.1423466 1103.316
+159533.0613774112 3.1424253 1103.2765
+159534.0613775156 3.1425436 1103.4344
+159535.0613776199 3.1427402 1103.3357
+159536.0613777242 3.1428978 1103.2963
+159537.0613778285 3.1429372 1103.2765
+159538.0613779328 3.1431341 1103.3752
+159539.0613780371 3.1431341 1103.3949
+159540.0613781414 3.1433308 1103.316
+159541.0613782457 3.1434095 1103.2765
+159542.06137835 3.1436064 1103.4344
+159543.0613784543 3.1437244 1103.3949
+159544.0613785586 3.1438034 1103.3949
+159545.0613786629 3.1439607 1103.2963
+159546.0613787672 3.1440001 1103.316
+159547.0613788716 3.1441576 1103.3357
+159548.0613789759 3.1442757 1103.3752
+159549.0613790802 3.1444333 1103.3752
+159550.0613791845 3.1445513 1103.3949
+159551.0613792888 3.1448269 1103.3555
+159552.0613793931 3.1448662 1103.316
+159553.0613794974 3.1449845 1103.3752
+159554.0613796017 3.1451025 1103.316
+159555.061379706 3.1452599 1103.316
+159556.0613798103 3.1453388 1103.3949
+159557.0613799146 3.1454961 1103.3555
+159558.0613800189 3.1456537 1103.3555
+159559.0613801233 3.1457717 1103.2963
+159560.0613802276 3.1458898 1103.3752
+159561.0613803319 3.1460867 1103.316
+159562.0613804362 3.146126 1103.3752
+159563.0613805405 3.1463623 1103.2963
+159564.0613806448 3.146323 1103.3555
+159565.0613807491 3.1465986 1103.4147
+159566.0613808534 3.1466773 1103.3752
+159567.0613809577 3.1468349 1103.4147
+159568.061381062 3.1469135 1103.316
+159569.0613811663 3.1471498 1103.4542
+159570.0613812706 3.1473072 1103.316
+159571.061381375 3.1473465 1103.3555
+159572.0613814793 3.1475434 1103.3555
+159573.0613815836 3.1477008 1103.3752
+159574.0613816879 3.1477401 1103.4147
+159575.0613817922 3.147819 1103.2765
+159576.0613818965 3.1478584 1103.3555
+159577.0613820008 3.1480157 1103.2369
+159578.0613821051 3.148134 1103.3357
+159579.0613822094 3.1482913 1103.4147
+159580.0613823137 3.1484096 1103.3555
+159581.061382418 3.1485276 1103.3357
+159582.0613825223 3.1486063 1103.316
+159583.0613826266 3.1488032 1103.3357
+159584.061382731 3.1490002 1103.4344
+159585.0613828353 3.1491182 1103.316
+159586.0613829396 3.1490395 1103.3752
+159587.0613830439 3.1492362 1103.3357
+159588.0613831482 3.1494331 1103.3752
+159589.0613832525 3.1494725 1103.3949
+159590.0613833568 3.1496694 1103.3949
+159591.0613834611 3.1497874 1103.3357
+159592.0613835654 3.1499057 1103.3357
+159593.0613836697 3.150063 1103.3555
+159594.061383774 3.1501417 1103.4147
+159595.0613838783 3.1502993 1103.3752
+159596.0613839827 3.150378 1103.3555
+159597.061384087 3.1505749 1103.2963
+159598.0613841913 3.1506143 1103.2963
+159599.0613842956 3.1507716 1103.3752
+159600.0613843999 3.1509686 1103.3752
+159601.0613845042 3.1510472 1103.2369
+159602.0613846085 3.1511259 1103.3555
+159603.0613847128 3.1512442 1103.3357
+159604.0613848171 3.1513622 1103.316
+159605.0613849214 3.1514804 1103.3752
+159606.0613850257 3.1516378 1103.3555
+159607.06138513 3.1517954 1103.3555
+159608.0613852344 3.1518741 1103.4147
+159609.0613853387 3.1521497 1103.3357
+159610.061385443 3.1522284 1103.316
+159611.0613855473 3.1524253 1103.3752
+159612.0613856516 3.1525433 1103.2963
+159613.0613857559 3.1526613 1103.2963
+159614.0613858602 3.1528189 1103.2963
+159615.0613859645 3.1529369 1103.3555
+159616.0613860688 3.1532519 1103.3357
+159617.0613861731 3.1532125 1103.3357
+159618.0613862774 3.1534882 1103.4344
+159619.0613863817 3.1535275 1103.3555
+159620.0613864861 3.1536064 1103.3357
+159621.0613865904 3.1539607 1103.2567
+159622.0613866947 3.1540787 1103.4147
+159623.061386799 3.154 1103.2765
+159624.0613869033 3.1541967 1103.3752
+159625.0613870076 3.154433 1103.3752
+159626.0613871119 3.1545906 1103.3555
+159627.0613872162 3.154748 1103.3752
+159628.0613873205 3.1549056 1103.3949
+159629.0613874248 3.1549056 1103.316
+159630.0613875291 3.1551023 1103.4147
+159631.0613876334 3.1551812 1103.2963
+159632.0613877377 3.1554172 1103.3949
+159633.0613878421 3.1553385 1103.316
+159634.0613879464 3.1554961 1103.4147
+159635.0613880507 3.1556535 1103.316
+159636.061388155 3.1558504 1103.3555
+159637.0613882593 3.1560078 1103.3357
+159638.0613883636 3.1562047 1103.316
+159639.0613884679 3.1561654 1103.3752
+159640.0613885722 3.1563621 1103.2567
+159641.0613886765 3.156441 1103.3949
+159642.0613887808 3.1565983 1103.3357
+159643.0613888851 3.1567953 1103.3752
+159644.0613889894 3.1569526 1103.3949
+159645.0613890938 3.1569133 1103.2765
+159646.0613891981 3.1570709 1103.3752
+159647.0613893024 3.1573465 1103.2963
+159648.0613894067 3.1573858 1103.4344
+159649.061389511 3.1573858 1103.3752
+159650.0613896153 3.1575825 1103.316
+159651.0613897196 3.1576221 1103.2172
+159652.0613898239 3.1578581 1103.4147
+159653.0613899282 3.157937 1103.3752
+159654.0613900325 3.1579764 1103.2567
+159655.0613901368 3.1581731 1103.4147
+159656.0613902411 3.1582913 1103.316
+159657.0613903455 3.1584094 1103.3357
+159658.0613904498 3.1585274 1103.3949
+159659.0613905541 3.1586063 1103.3752
+159660.0613906584 3.1586456 1103.3555
+159661.0613907627 3.158803 1103.2765
+159662.061390867 3.1590786 1103.3752
+159663.0613909713 3.1591575 1103.3357
+159664.0613910756 3.1592362 1103.3752
+159665.0613911799 3.1592362 1103.3555
+159666.0613912842 3.1594329 1103.4542
+159667.0613913885 3.1596298 1103.2963
+159668.0613914928 3.1597085 1103.2963
+159669.0613915971 3.1598661 1103.4147
+159670.0613917015 3.1600628 1103.316
+159671.0613918058 3.1601417 1103.3752
+159672.0613919101 3.1603384 1103.3555
+159673.0613920144 3.160181 1103.4344
+159674.0613921187 3.1603384 1103.4147
+159675.061392223 3.160614 1103.3949
+159676.0613923273 3.1607323 1103.3752
+159677.0613924316 3.1608503 1103.2765
+159678.0613925359 3.1610079 1103.3555
+159679.0613926402 3.1612439 1103.2567
+159680.0613927445 3.1613228 1103.3752
+159681.0613928488 3.1614802 1103.3555
+159682.0613929532 3.1615195 1103.4147
+159683.0613930575 3.1617558 1103.3357
+159684.0613931618 3.1616771 1103.3555
+159685.0613932661 3.1619527 1103.3555
+159686.0613933704 3.1620314 1103.3752
+159687.0613934747 3.1621101 1103.316
+159688.061393579 3.1623464 1103.3752
+159689.0613936833 3.1623857 1103.3752
+159690.0613937876 3.162622 1103.3357
+159691.0613938919 3.1626613 1103.3752
+159692.0613939962 3.1627793 1103.2963
+159693.0613941005 3.1630549 1103.4147
+159694.0613942049 3.1630943 1103.4147
+159695.0613943092 3.1633306 1103.2765
+159696.0613944135 3.1634092 1103.474
+159697.0613945178 3.1635275 1103.3949
+159698.0613946221 3.1637242 1103.4147
+159699.0613947264 3.1638424 1103.3357
+159700.0613948307 3.1640391 1103.316
+159701.061394935 3.1640391 1103.3752
+159702.0613950393 3.1643147 1103.3555
+159703.0613951436 3.1643147 1103.3752
+159704.0613952479 3.1644723 1103.316
+159705.0613953522 3.1645904 1103.3357
+159706.0613954565 3.164748 1103.2765
+159707.0613955609 3.1648266 1103.4147
+159708.0613956652 3.1650629 1103.3752
+159709.0613957695 3.1651809 1103.3752
+159710.0613958738 3.1652596 1103.316
+159711.0613959781 3.1654959 1103.3752
+159712.0613960824 3.1655352 1103.3555
+159713.0613961867 3.1657715 1103.316
+159714.061396291 3.1658502 1103.3555
+159715.0613963953 3.1660471 1103.3752
+159716.0613964996 3.1661258 1103.2963
+159717.0613966039 3.166244 1103.2963
+159718.0613967082 3.1663227 1103.2765
+159719.0613968126 3.1665194 1103.3555
+159720.0613969169 3.1666377 1103.3752
+159721.0613970212 3.166795 1103.4147
+159722.0613971255 3.1669526 1103.2963
+159723.0613972298 3.1670706 1103.4344
+159724.0613973341 3.16711 1103.3752
+159725.0613974384 3.1673069 1103.4147
+159726.0613975427 3.1673856 1103.3555
+159727.061397647 3.1674249 1103.3357
+159728.0613977513 3.1675825 1103.3357
+159729.0613978556 3.1677794 1103.3555
+159730.0613979599 3.1679368 1103.4344
+159731.0613980643 3.1678975 1103.316
+159732.0613981686 3.1681731 1103.3555
+159733.0613982729 3.1682124 1103.3949
+159734.0613983772 3.1683304 1103.3357
+159735.0613984815 3.168488 1103.2963
+159736.0613985858 3.168606 1103.3357
+159737.0613986901 3.1686454 1103.3357
+159738.0613987944 3.168803 1103.2567
+159739.0613988987 3.1688423 1103.2963
+159740.061399003 3.1690786 1103.3949
+159741.0613991073 3.1691573 1103.3357
+159742.0613992116 3.1692753 1103.2963
+159743.061399316 3.1693146 1103.4344
+159744.0613994203 3.1695509 1103.316
+159745.0613995246 3.1695509 1103.3555
+159746.0613996289 3.1697872 1103.2963
+159747.0613997332 3.1698265 1103.2567
+159748.0613998375 3.1700628 1103.3555
+159749.0613999418 3.1701021 1103.2567
+159750.0614000461 3.1701808 1103.4147
+159751.0614001504 3.1703777 1103.3357
+159752.0614002547 3.1704171 1103.316
+159753.061400359 3.1704957 1103.3357
+159754.0614004633 3.170614 1103.316
+159755.0614005676 3.1707714 1103.3555
+159756.061400672 3.1708896 1103.2765
+159757.0614007763 3.1708896 1103.3752
+159758.0614008806 3.171165 1103.3555
+159759.0614009849 3.1712046 1103.3555
+159760.0614010892 3.1714013 1103.2765
+159761.0614011935 3.1714013 1103.4344
+159762.0614012978 3.1715195 1103.3949
+159763.0614014021 3.1716375 1103.2567
+159764.0614015064 3.1717556 1103.2963
+159765.0614016107 3.1719918 1103.2963
+159766.061401715 3.1720312 1103.3357
+159767.0614018193 3.1721494 1103.3752
+159768.0614019237 3.1721888 1103.3555
+159769.061402028 3.1723855 1103.2765
+159770.0614021323 3.1726217 1103.3949
+159771.0614022366 3.1727004 1103.3357
+159772.0614023409 3.1727793 1103.3357
+159773.0614024452 3.1729367 1103.3555
+159774.0614025495 3.1730549 1103.3752
+159775.0614026538 3.1731336 1103.3555
+159776.0614027581 3.1732516 1103.3357
+159777.0614028624 3.1733699 1103.316
+159778.0614029667 3.1734092 1103.4344
+159779.061403071 3.1736455 1103.2765
+159780.0614031754 3.1737635 1103.316
+159781.0614032797 3.1739604 1103.3357
+159782.061403384 3.1741178 1103.4344
+159783.0614034883 3.1742754 1103.3357
+159784.0614035926 3.1743934 1103.2567
+159785.0614036969 3.1743934 1103.3357
+159786.0614038012 3.1745508 1103.3752
+159787.0614039055 3.1747084 1103.3949
+159788.0614040098 3.1748264 1103.3752
+159789.0614041141 3.1750233 1103.3555
+159790.0614042184 3.1750627 1103.3949
+159791.0614043227 3.1751809 1103.3752
+159792.061404427 3.1753776 1103.2963
+159793.0614045314 3.1754959 1103.2369
+159794.0614046357 3.1756532 1103.3752
+159795.06140474 3.1758108 1103.3752
+159796.0614048443 3.1758895 1103.2369
+159797.0614049486 3.1759288 1103.316
+159798.0614050529 3.1760468 1103.4147
+159799.0614051572 3.1762044 1103.3949
+159800.0614052615 3.1762831 1103.3357
+159801.0614053658 3.1763618 1103.3752
+159802.0614054701 3.1765587 1103.3357
+159803.0614055744 3.1767163 1103.4344
+159804.0614056787 3.1769917 1103.3555
+159805.0614057831 3.1771493 1103.4147
+159806.0614058874 3.1771493 1103.3752
+159807.0614059917 3.1772673 1103.2963
+159808.061406096 3.1773067 1103.3555
+159809.0614062003 3.1775036 1103.316
+159810.0614063046 3.1776216 1103.316
+159811.0614064089 3.1777005 1103.316
+159812.0614065132 3.1778185 1103.3555
+159813.0614066175 3.1778972 1103.316
+159814.0614067218 3.1780155 1103.3949
+159815.0614068261 3.1780941 1103.316
+159816.0614069304 3.1783304 1103.3555
+159817.0614070348 3.1783698 1103.316
+159818.0614071391 3.1784484 1103.3752
+159819.0614072434 3.1785667 1103.316
+159820.0614073477 3.1787241 1103.2765
+159821.061407452 3.1788816 1103.2963
+159822.0614075563 3.178921 1103.3357
+159823.0614076606 3.1791177 1103.3752
+159824.0614077649 3.1792359 1103.4344
+159825.0614078692 3.1794326 1103.4542
+159826.0614079735 3.1794326 1103.3555
+159827.0614080778 3.1795902 1103.3752
+159828.0614081821 3.1798658 1103.3357
+159829.0614082864 3.1798658 1103.3555
+159830.0614083908 3.1799052 1103.316
+159831.0614084951 3.1801414 1103.3752
+159832.0614085994 3.1801808 1103.4147
+159833.0614087037 3.1804171 1103.3752
+159834.061408808 3.1805744 1103.3949
+159835.0614089123 3.1806924 1103.2963
+159836.0614090166 3.180732 1103.3357
+159837.0614091209 3.1809287 1103.3555
+159838.0614092252 3.1808894 1103.3949
+159839.0614093295 3.1811256 1103.2963
+159840.0614094338 3.181165 1103.2369
+159841.0614095381 3.1813619 1103.316
+159842.0614096425 3.1814406 1103.2963
+159843.0614097468 3.1815586 1103.3949
+159844.0614098511 3.1816769 1103.4344
+159845.0614099554 3.1817949 1103.2963
+159846.0614100597 3.1819918 1103.2567
+159847.061410164 3.1820312 1103.3949
+159848.0614102683 3.1823461 1103.316
+159849.0614103726 3.1824248 1103.316
+159850.0614104769 3.1826217 1103.3752
+159851.0614105812 3.1827397 1103.2963
+159852.0614106855 3.1829367 1103.316
+159853.0614107898 3.183094 1103.3752
+159854.0614108942 3.183094 1103.3555
+159855.0614109985 3.1833303 1103.3357
+159856.0614111028 3.1834483 1103.3752
+159857.0614112071 3.1836059 1103.2567
+159858.0614113114 3.1837633 1103.3949
+159859.0614114157 3.1839209 1103.3949
+159860.06141152 3.1839995 1103.4344
+159861.0614116243 3.1841571 1103.2963
+159862.0614117286 3.1841965 1103.2369
+159863.0614118329 3.1843538 1103.3357
+159864.0614119372 3.1844721 1103.3752
+159865.0614120415 3.1846294 1103.3357
+159866.0614121458 3.1847477 1103.316
+159867.0614122502 3.1848657 1103.4344
+159868.0614123545 3.1849444 1103.3555
+159869.0614124588 3.1851413 1103.3555
+159870.0614125631 3.1851807 1103.316
+159871.0614126674 3.185338 1103.3357
+159872.0614127717 3.1854169 1103.3752
+159873.061412876 3.1856136 1103.316
+159874.0614129803 3.185535 1103.2963
+159875.0614130846 3.1858106 1103.3555
+159876.0614131889 3.1858499 1103.3752
+159877.0614132932 3.1860468 1103.4147
+159878.0614133975 3.1860468 1103.3555
+159879.0614135019 3.1861255 1103.316
+159880.0614136062 3.1862042 1103.2963
+159881.0614137105 3.1864011 1103.4147
+159882.0614138148 3.1864011 1103.3752
+159883.0614139191 3.1865191 1103.3555
+159884.0614140234 3.1866374 1103.3555
+159885.0614141277 3.1867554 1103.3357
+159886.061414232 3.1868341 1103.3357
+159887.0614143363 3.186913 1103.3949
+159888.0614144406 3.1869524 1103.2963
+159889.0614145449 3.187228 1103.316
+159890.0614146492 3.1871884 1103.3357
+159891.0614147536 3.1874247 1103.316
+159892.0614148579 3.1874247 1103.3752
+159893.0614149622 3.1875823 1103.3555
+159894.0614150665 3.1875823 1103.3752
+159895.0614151708 3.1877789 1103.316
+159896.0614152751 3.1878579 1103.3752
+159897.0614153794 3.1880939 1103.316
+159898.0614154837 3.1881335 1103.2963
+159899.061415588 3.1882515 1103.3357
+159900.0614156923 3.1884484 1103.2963
+159901.0614157966 3.1885664 1103.4147
+159902.0614159009 3.1886058 1103.3949
+159903.0614160053 3.1887238 1103.4147
+159904.0614161096 3.1889994 1103.3357
+159905.0614162139 3.1890388 1103.2963
+159906.0614163182 3.1891177 1103.3752
+159907.0614164225 3.1891963 1103.316
+159908.0614165268 3.1893539 1103.3752
+159909.0614166311 3.18959 1103.3949
+159910.0614167354 3.1897082 1103.2765
+159911.0614168397 3.1897476 1103.316
+159912.061416944 3.1898263 1103.3752
+159913.0614170483 3.1901019 1103.3555
+159914.0614171526 3.1900625 1103.3555
+159915.0614172569 3.1901412 1103.316
+159916.0614173613 3.1902199 1103.2765
+159917.0614174656 3.1904168 1103.3949
+159918.0614175699 3.1906137 1103.3357
+159919.0614176742 3.1906531 1103.3752
+159920.0614177785 3.1907318 1103.3357
+159921.0614178828 3.1910074 1103.316
+159922.0614179871 3.190968 1103.3357
+159923.0614180914 3.1911254 1103.3357
+159924.0614181957 3.1913617 1103.3555
+159925.0614183 3.191401 1103.316
+159926.0614184043 3.1915193 1103.3357
+159927.0614185086 3.1915586 1103.3555
+159928.061418613 3.1918342 1103.316
+159929.0614187173 3.1919129 1103.4344
+159930.0614188216 3.1920702 1103.3752
+159931.0614189259 3.1921885 1103.4542
+159932.0614190302 3.1923065 1103.2765
+159933.0614191345 3.1924245 1103.3555
+159934.0614192388 3.1925821 1103.316
+159935.0614193431 3.1927397 1103.3357
+159936.0614194474 3.1927791 1103.316
+159937.0614195517 3.1929364 1103.3555
+159938.061419656 3.1930151 1103.3752
+159939.0614197603 3.1931727 1103.316
+159940.0614198647 3.1931727 1103.3555
+159941.061419969 3.1933696 1103.3949
+159942.0614200733 3.1934483 1103.3949
+159943.0614201776 3.193527 1103.3555
+159944.0614202819 3.1936057 1103.3555
+159945.0614203862 3.1935663 1103.316
+159946.0614204905 3.1938026 1103.4147
+159947.0614205948 3.1938813 1103.4147
+159948.0614206991 3.1940782 1103.3555
+159949.0614208034 3.1942356 1103.316
+159950.0614209077 3.1943538 1103.3357
+159951.061421012 3.1943932 1103.2369
+159952.0614211163 3.1945901 1103.316
+159953.0614212207 3.1946294 1103.3357
+159954.061421325 3.1947868 1103.3555
+159955.0614214293 3.1949444 1103.3752
+159956.0614215336 3.1950231 1103.3555
+159957.0614216379 3.1951804 1103.316
+159958.0614217422 3.1952593 1103.474
+159959.0614218465 3.1954954 1103.2765
+159960.0614219508 3.1955349 1103.3357
+159961.0614220551 3.1956136 1103.3555
+159962.0614221594 3.1958103 1103.3949
+159963.0614222637 3.1958892 1103.316
+159964.061422368 3.1960466 1103.3752
+159965.0614224724 3.1961253 1103.4344
+159966.0614225767 3.1961253 1103.3949
+159967.061422681 3.1962829 1103.2765
+159968.0614227853 3.1963615 1103.3555
+159969.0614228896 3.1963615 1103.3555
+159970.0614229939 3.1965191 1103.3949
+159971.0614230982 3.1967158 1103.3949
+159972.0614232025 3.1967554 1103.316
+159973.0614233068 3.1968734 1103.3752
+159974.0614234111 3.1970308 1103.3357
+159975.0614235154 3.1971097 1103.3752
+159976.0614236197 3.1971097 1103.3752
+159977.0614237241 3.1972277 1103.2567
+159978.0614238284 3.1973457 1103.3752
+159979.0614239327 3.1975033 1103.3752
+159980.061424037 3.1976213 1103.3555
+159981.0614241413 3.1977396 1103.3752
+159982.0614242456 3.1977396 1103.3555
+159983.0614243499 3.197897 1103.3752
+159984.0614244542 3.1981332 1103.316
+159985.0614245585 3.1980152 1103.3949
+159986.0614246628 3.1982119 1103.3357
+159987.0614247671 3.1982512 1103.3949
+159988.0614248714 3.1983302 1103.2765
+159989.0614249757 3.1985662 1103.3555
+159990.0614250801 3.1986451 1103.3949
+159991.0614251844 3.1987238 1103.3752
+159992.0614252887 3.1989207 1103.2963
+159993.061425393 3.1989994 1103.4344
+159994.0614254973 3.1990387 1103.4344
+159995.0614256016 3.1993144 1103.3555
+159996.0614257059 3.199393 1103.4147
+159997.0614258102 3.1994717 1103.316
+159998.0614259145 3.1996293 1103.316
+159999.0614260188 3.1997867 1103.3752
+160000.0614261231 3.1999836 1103.2765
+160001.0614262274 3.1999443 1103.4147
+160002.0614263318 3.2001412 1103.316
+160003.0614264361 3.2002592 1103.3357
+160004.0614265404 3.2004561 1103.3949
+160005.0614266447 3.2004955 1103.4542
+160006.061426749 3.2006135 1103.3357
+160007.0614268533 3.2007711 1103.2963
+160008.0614269576 3.2007315 1103.316
+160009.0614270619 3.2009284 1103.3752
+160010.0614271662 3.201086 1103.3357
+160011.0614272705 3.2011647 1103.2765
+160012.0614273748 3.2013614 1103.3949
+160013.0614274791 3.2012827 1103.3555
+160014.0614275835 3.201401 1103.3555
+160015.0614276878 3.201519 1103.3555
+160016.0614277921 3.2015584 1103.3357
+160017.0614278964 3.201637 1103.3357
+160018.0614280007 3.201834 1103.3949
+160019.061428105 3.2018733 1103.2369
+160020.0614282093 3.2018733 1103.316
+160021.0614283136 3.2019916 1103.3949
+160022.0614284179 3.2022276 1103.474
+160023.0614285222 3.2021883 1103.3555
+160024.0614286265 3.2023458 1103.3949
+160025.0614287308 3.2025425 1103.3555
+160026.0614288352 3.2026215 1103.3357
+160027.0614289395 3.2027395 1103.3949
+160028.0614290438 3.2028182 1103.4147
+160029.0614291481 3.2028968 1103.316
+160030.0614292524 3.2030544 1103.316
+160031.0614293567 3.2030938 1103.3357
+160032.061429461 3.2032514 1103.316
+160033.0614295653 3.2034087 1103.3555
+160034.0614296696 3.2034874 1103.2765
+160035.0614297739 3.2037237 1103.3555
+160036.0614298782 3.2038023 1103.2765
+160037.0614299825 3.2038023 1103.4344
+160038.0614300868 3.2039206 1103.2567
+160039.0614301912 3.2041173 1103.316
+160040.0614302955 3.2042356 1103.3357
+160041.0614303998 3.2043142 1103.316
+160042.0614305041 3.2044322 1103.3949
+160043.0614306084 3.2045505 1103.2765
+160044.0614307127 3.2046292 1103.4147
+160045.061430817 3.2047079 1103.4344
+160046.0614309213 3.2049048 1103.3949
+160047.0614310256 3.2050228 1103.3949
+160048.0614311299 3.2049835 1103.2765
+160049.0614312342 3.2051804 1103.2765
+160050.0614313385 3.2053773 1103.3752
+160051.0614314429 3.205456 1103.4344
+160052.0614315472 3.2054954 1103.3357
+160053.0614316515 3.2057316 1103.4147
+160054.0614317558 3.2058103 1103.4147
+160055.0614318601 3.2059283 1103.3357
+160056.0614319644 3.2060859 1103.3752
+160057.0614320687 3.2061253 1103.2963
+160058.061432173 3.2062433 1103.2963
+160059.0614322773 3.2063222 1103.3752
+160060.0614323816 3.2064402 1103.4344
+160061.0614324859 3.2065582 1103.474
+160062.0614325902 3.2066371 1103.316
+160063.0614326946 3.2066765 1103.3357
+160064.0614327989 3.2069125 1103.3555
+160065.0614329032 3.2068732 1103.4147
+160066.0614330075 3.2071095 1103.3752
+160067.0614331118 3.2072277 1103.3949
+160068.0614332161 3.2072277 1103.3357
+160069.0614333204 3.2073457 1103.2567
+160070.0614334247 3.2074637 1103.3357
+160071.061433529 3.2077 1103.3752
+160072.0614336333 3.2077 1103.2765
+160073.0614337376 3.207818 1103.316
+160074.0614338419 3.208015 1103.3949
+160075.0614339462 3.208015 1103.3357
+160076.0614340506 3.2080936 1103.3949
+160077.0614341549 3.2082512 1103.3555
+160078.0614342592 3.2083693 1103.3752
+160079.0614343635 3.2084479 1103.3752
+160080.0614344678 3.2084875 1103.3949
+160081.0614345721 3.2085268 1103.3949
+160082.0614346764 3.2087235 1103.4542
+160083.0614347807 3.2088025 1103.3357
+160084.061434885 3.2088418 1103.4344
+160085.0614349893 3.2089598 1103.316
+160086.0614350936 3.2091174 1103.3357
+160087.0614351979 3.2091961 1103.3357
+160088.0614353023 3.2093141 1103.2567
+160089.0614354066 3.2094717 1103.3752
+160090.0614355109 3.2094717 1103.3752
+160091.0614356152 3.2095504 1103.3949
+160092.0614357195 3.2096684 1103.3357
+160093.0614358238 3.2097867 1103.316
+160094.0614359281 3.2098653 1103.2963
+160095.0614360324 3.2099047 1103.3949
+160096.0614361367 3.2101803 1103.4344
+160097.061436241 3.2102196 1103.3949
+160098.0614363453 3.2104166 1103.316
+160099.0614364496 3.2103772 1103.3752
+160100.061436554 3.2106133 1103.4147
+160101.0614366583 3.2106528 1103.2963
+160102.0614367626 3.2108495 1103.3555
+160103.0614368669 3.2108889 1103.3949
+160104.0614369712 3.2109284 1103.3752
+160105.0614370755 3.2111251 1103.316
+160106.0614371798 3.2112827 1103.2963
+160107.0614372841 3.2113221 1103.2963
+160108.0614373884 3.2114007 1103.316
+160109.0614374927 3.2114794 1103.4344
+160110.061437597 3.2116764 1103.316
+160111.0614377013 3.2117157 1103.2963
+160112.0614378056 3.2118733 1103.4147
+160113.06143791 3.2120306 1103.2765
+160114.0614380143 3.2121093 1103.2963
+160115.0614381186 3.2121882 1103.2963
+160116.0614382229 3.2122669 1103.2963
+160117.0614383272 3.2123849 1103.4147
+160118.0614384315 3.2126212 1103.3357
+160119.0614385358 3.2126212 1103.4147
+160120.0614386401 3.2128181 1103.316
+160121.0614387444 3.2128968 1103.316
+160122.0614388487 3.2130938 1103.3357
+160123.061438953 3.2130148 1103.3949
+160124.0614390573 3.2132118 1103.3949
+160125.0614391617 3.2132905 1103.3357
+160126.061439266 3.213448 1103.3357
+160127.0614393703 3.2135267 1103.3555
+160128.0614394746 3.2137237 1103.316
+160129.0614395789 3.213881 1103.316
+160130.0614396832 3.2139204 1103.2765
+160131.0614397875 3.2141566 1103.2963
+160132.0614398918 3.2141566 1103.316
+160133.0614399961 3.2143929 1103.3555
+160134.0614401004 3.2145109 1103.3752
+160135.0614402047 3.2146292 1103.4344
+160136.061440309 3.2146292 1103.4147
+160137.0614404134 3.2148259 1103.4147
+160138.0614405177 3.2149045 1103.3752
+160139.061440622 3.2149045 1103.3357
+160140.0614407263 3.2150621 1103.3752
+160141.0614408306 3.2151408 1103.3555
+160142.0614409349 3.2153378 1103.3949
+160143.0614410392 3.2154558 1103.3357
+160144.0614411435 3.2154951 1103.316
+160145.0614412478 3.2155344 1103.2567
+160146.0614413521 3.2156527 1103.3357
+160147.0614414564 3.2159283 1103.3555
+160148.0614415607 3.2159677 1103.3357
+160149.0614416651 3.2161646 1103.3357
+160150.0614417694 3.2162433 1103.3949
+160151.0614418737 3.2162039 1103.2765
+160152.061441978 3.2164006 1103.3752
+160153.0614420823 3.2165189 1103.3949
+160154.0614421866 3.2167156 1103.3357
+160155.0614422909 3.2167945 1103.3357
+160156.0614423952 3.2168732 1103.316
+160157.0614424995 3.2169912 1103.2765
+160158.0614426038 3.2171488 1103.3357
+160159.0614427081 3.2171488 1103.316
+160160.0614428124 3.2172275 1103.3752
+160161.0614429167 3.2173455 1103.3949
+160162.0614430211 3.2173455 1103.3949
+160163.0614431254 3.2176211 1103.3555
+160164.0614432297 3.2174637 1103.3555
+160165.061443334 3.2176604 1103.3752
+160166.0614434383 3.2177787 1103.3752
+160167.0614435426 3.217936 1103.3752
+160168.0614436469 3.2180936 1103.3752
+160169.0614437512 3.2182117 1103.2765
+160170.0614438555 3.2181723 1103.2963
+160171.0614439598 3.2183692 1103.2963
+160172.0614440641 3.2185266 1103.3357
+160173.0614441684 3.2185659 1103.316
+160174.0614442728 3.2187235 1103.3752
+160175.0614443771 3.2187629 1103.2765
+160176.0614444814 3.2189598 1103.3752
+160177.0614445857 3.2189991 1103.3752
+160178.06144469 3.2190778 1103.3357
+160179.0614447943 3.2192352 1103.4344
+160180.0614448986 3.2192352 1103.3357
+160181.0614450029 3.2193141 1103.3555
+160182.0614451072 3.2194321 1103.3752
+160183.0614452115 3.2195108 1103.3555
+160184.0614453158 3.219629 1103.4147
+160185.0614454201 3.2197077 1103.3357
+160186.0614455245 3.2197471 1103.3555
+160187.0614456288 3.2198257 1103.3752
+160188.0614457331 3.220062 1103.3949
+160189.0614458374 3.219944 1103.3357
+160190.0614459417 3.2201407 1103.4542
+160191.061446046 3.2201407 1103.3949
+160192.0614461503 3.220377 1103.316
+160193.0614462546 3.2204556 1103.3949
+160194.0614463589 3.2204952 1103.2765
+160195.0614464632 3.2205739 1103.2963
+160196.0614465675 3.2208495 1103.3555
+160197.0614466718 3.2208889 1103.3555
+160198.0614467761 3.2210462 1103.2765
+160199.0614468805 3.2210462 1103.2963
+160200.0614469848 3.2211645 1103.3555
+160201.0614470891 3.2214007 1103.3357
+160202.0614471934 3.2214401 1103.3752
+160203.0614472977 3.2215581 1103.3357
+160204.061447402 3.2217157 1103.2963
+160205.0614475063 3.2218337 1103.316
+160206.0614476106 3.221873 1103.3752
+160207.0614477149 3.22207 1103.3555
+160208.0614478192 3.2220306 1103.3555
+160209.0614479235 3.2222273 1103.3357
+160210.0614480278 3.2223456 1103.3555
+160211.0614481322 3.2225029 1103.3752
+160212.0614482365 3.2226999 1103.3357
+160213.0614483408 3.2228572 1103.3555
+160214.0614484451 3.2227786 1103.316
+160215.0614485494 3.2229359 1103.2765
+160216.0614486537 3.2230542 1103.2369
+160217.061448758 3.2231328 1103.3555
+160218.0614488623 3.2232511 1103.2963
+160219.0614489666 3.2234871 1103.3357
+160220.0614490709 3.2235265 1103.2567
+160221.0614491752 3.2236054 1103.4344
+160222.0614492795 3.2236447 1103.2765
+160223.0614493839 3.2237628 1103.3555
+160224.0614494882 3.2238021 1103.316
+160225.0614495925 3.223999 1103.3357
+160226.0614496968 3.223999 1103.316
+160227.0614498011 3.2242353 1103.3357
+160228.0614499054 3.2242746 1103.3357
+160229.0614500097 3.2243533 1103.3555
+160230.061450114 3.2245109 1103.3752
+160231.0614502183 3.2245502 1103.4147
+160232.0614503226 3.2247076 1103.4344
+160233.0614504269 3.2248259 1103.2765
+160234.0614505312 3.2247863 1103.3357
+160235.0614506355 3.2249045 1103.4542
+160236.0614507399 3.2249832 1103.316
+160237.0614508442 3.2251015 1103.3555
+160238.0614509485 3.2252588 1103.2567
+160239.0614510528 3.2253768 1103.3357
+160240.0614511571 3.2254164 1103.3357
+160241.0614512614 3.2255738 1103.3752
+160242.0614513657 3.2255344 1103.2765
+160243.06145147 3.2257707 1103.2765
+160244.0614515743 3.2257314 1103.316
+160245.0614516786 3.2258494 1103.3949
+160246.0614517829 3.2259674 1103.3357
+160247.0614518872 3.226125 1103.2567
+160248.0614519916 3.2262824 1103.3555
+160249.0614520959 3.2263613 1103.3555
+160250.0614522002 3.22644 1103.316
+160251.0614523045 3.226558 1103.316
+160252.0614524088 3.2267156 1103.2369
+160253.0614525131 3.2267549 1103.3949
+160254.0614526174 3.2268729 1103.3752
+160255.0614527217 3.2269912 1103.316
+160256.061452826 3.2270699 1103.3357
+160257.0614529303 3.2271092 1103.4147
+160258.0614530346 3.2273061 1103.3555
+160259.0614531389 3.2273848 1103.3752
+160260.0614532433 3.2274635 1103.3555
+160261.0614533476 3.2275422 1103.316
+160262.0614534519 3.2277391 1103.4542
+160263.0614535562 3.2277784 1103.3949
+160264.0614536605 3.2278967 1103.3555
+160265.0614537648 3.227936 1103.3752
+160266.0614538691 3.228251 1103.2963
+160267.0614539734 3.2283297 1103.3949
+160268.0614540777 3.2284083 1103.2765
+160269.061454182 3.2285266 1103.4344
+160270.0614542863 3.2286839 1103.2369
+160271.0614543906 3.2287626 1103.3752
+160272.0614544949 3.2289596 1103.3555
+160273.0614545993 3.2289596 1103.3752
+160274.0614547036 3.2292352 1103.316
+160275.0614548079 3.2292352 1103.3752
+160276.0614549122 3.2293925 1103.2963
+160277.0614550165 3.2294714 1103.3949
+160278.0614551208 3.2295895 1103.4147
+160279.0614552251 3.2297075 1103.2369
+160280.0614553294 3.2297471 1103.3555
+160281.0614554337 3.2299044 1103.3555
+160282.061455538 3.2299438 1103.316
+160283.0614556423 3.230062 1103.3949
+160284.0614557466 3.2302587 1103.3949
+160285.061455851 3.2304163 1103.316
+160286.0614559553 3.230495 1103.3752
+160287.0614560596 3.2305737 1103.3357
+160288.0614561639 3.2306526 1103.3555
+160289.0614562682 3.2307706 1103.3357
+160290.0614563725 3.2310069 1103.316
+160291.0614564768 3.2310069 1103.3357
+160292.0614565811 3.2310855 1103.316
+160293.0614566854 3.2313218 1103.3949
+160294.0614567897 3.2314398 1103.3752
+160295.061456894 3.2315578 1103.2963
+160296.0614569983 3.2315974 1103.316
+160297.0614571027 3.2315974 1103.3357
+160298.061457207 3.2316761 1103.4344
+160299.0614573113 3.2319124 1103.3357
+160300.0614574156 3.2319517 1103.3752
+160301.0614575199 3.2320697 1103.3949
+160302.0614576242 3.232188 1103.3555
+160303.0614577285 3.232306 1103.3752
+160304.0614578328 3.232424 1103.3357
+160305.0614579371 3.2325029 1103.4147
+160306.0614580414 3.2325816 1103.316
+160307.0614581457 3.232621 1103.3357
+160308.06145825 3.232739 1103.4147
+160309.0614583544 3.2329359 1103.3357
+160310.0614584587 3.2328966 1103.3752
+160311.061458563 3.2329752 1103.3357
+160312.0614586673 3.2330933 1103.3949
+160313.0614587716 3.2332115 1103.4344
+160314.0614588759 3.2332902 1103.2963
+160315.0614589802 3.2334478 1103.2963
+160316.0614590845 3.2335265 1103.3752
+160317.0614591888 3.2335265 1103.316
+160318.0614592931 3.2337627 1103.2963
+160319.0614593974 3.2336051 1103.3949
+160320.0614595017 3.2338021 1103.3357
+160321.061459606 3.2339988 1103.3357
+160322.0614597104 3.2341564 1103.3555
+160323.0614598147 3.2343137 1103.3949
+160324.061459919 3.2343533 1103.3949
+160325.0614600233 3.2344713 1103.3752
+160326.0614601276 3.23455 1103.316
+160327.0614602319 3.2345893 1103.3357
+160328.0614603362 3.2347076 1103.316
+160329.0614604405 3.2347863 1103.4344
+160330.0614605448 3.2349043 1103.3949
+160331.0614606491 3.2349043 1103.3555
+160332.0614607534 3.2351799 1103.3752
+160333.0614608577 3.2352192 1103.3555
+160334.0614609621 3.2353375 1103.3357
+160335.0614610664 3.2355342 1103.4147
+160336.0614611707 3.2355735 1103.3357
+160337.061461275 3.2356918 1103.3555
+160338.0614613793 3.2356918 1103.3752
+160339.0614614836 3.2358887 1103.316
+160340.0614615879 3.2358887 1103.2567
+160341.0614616922 3.2360067 1103.4344
+160342.0614617965 3.2360854 1103.3357
+160343.0614619008 3.2361641 1103.2765
+160344.0614620051 3.2363217 1103.2765
+160345.0614621094 3.2362823 1103.316
+160346.0614622138 3.2363217 1103.3555
+160347.0614623181 3.2365186 1103.316
+160348.0614624224 3.2366366 1103.3949
+160349.0614625267 3.236676 1103.3752
+160350.061462631 3.2367547 1103.3949
+160351.0614627353 3.2368729 1103.3949
+160352.0614628396 3.2369909 1103.316
+160353.0614629439 3.2371089 1103.3357
+160354.0614630482 3.2371485 1103.3555
+160355.0614631525 3.2372665 1103.4147
+160356.0614632568 3.2374635 1103.3555
+160357.0614633611 3.2375422 1103.3555
+160358.0614634654 3.2376208 1103.3357
+160359.0614635698 3.2376995 1103.316
+160360.0614636741 3.2378571 1103.3555
+160361.0614637784 3.2379751 1103.316
+160362.0614638827 3.2380145 1103.3949
+160363.061463987 3.2383294 1103.316
+160364.0614640913 3.2381721 1103.4344
+160365.0614641956 3.238369 1103.3555
+160366.0614642999 3.2384083 1103.3555
+160367.0614644042 3.238487 1103.3357
+160368.0614645085 3.2385263 1103.2567
+160369.0614646128 3.2387626 1103.316
+160370.0614647171 3.2387233 1103.3752
+160371.0614648215 3.2388413 1103.3949
+160372.0614649258 3.2390382 1103.4542
+160373.0614650301 3.2391169 1103.3752
+160374.0614651344 3.2393138 1103.316
+160375.0614652387 3.2392743 1103.4542
+160376.061465343 3.2394712 1103.2567
+160377.0614654473 3.2395895 1103.2172
+160378.0614655516 3.2395105 1103.316
+160379.0614656559 3.2397468 1103.3555
+160380.0614657602 3.2398255 1103.3357
+160381.0614658645 3.2399437 1103.3555
+160382.0614659688 3.2399831 1103.3949
+160383.0614660732 3.2401798 1103.3555
+160384.0614661775 3.2401404 1103.3752
+160385.0614662818 3.2401798 1103.4147
+160386.0614663861 3.2403374 1103.3357
+160387.0614664904 3.2403767 1103.3752
+160388.0614665947 3.2404947 1103.3357
+160389.061466699 3.240613 1103.2963
+160390.0614668033 3.2408097 1103.3555
+160391.0614669076 3.2409673 1103.3752
+160392.0614670119 3.2410066 1103.3752
+160393.0614671162 3.2411249 1103.4147
+160394.0614672205 3.2412035 1103.4147
+160395.0614673248 3.2412822 1103.3357
+160396.0614674292 3.2415185 1103.316
+160397.0614675335 3.2415972 1103.3752
+160398.0614676378 3.2417152 1103.3357
+160399.0614677421 3.2417941 1103.3555
+160400.0614678464 3.2419515 1103.3752
+160401.0614679507 3.2420301 1103.3949
+160402.061468055 3.2421877 1103.316
+160403.0614681593 3.2422271 1103.3752
+160404.0614682636 3.2423451 1103.3357
+160405.0614683679 3.242424 1103.4542
+160406.0614684722 3.242542 1103.4147
+160407.0614685765 3.2426207 1103.3555
+160408.0614686809 3.2428176 1103.2963
+160409.0614687852 3.2428963 1103.316
+160410.0614688895 3.2429752 1103.2765
+160411.0614689938 3.2431719 1103.316
+160412.0614690981 3.2432113 1103.2369
+160413.0614692024 3.2434475 1103.3357
+160414.0614693067 3.2433295 1103.3949
+160415.061469411 3.2435262 1103.3555
+160416.0614695153 3.2436445 1103.2963
+160417.0614696196 3.2438018 1103.3752
+160418.0614697239 3.2438018 1103.3555
+160419.0614698282 3.2439594 1103.4147
+160420.0614699326 3.2440774 1103.3949
+160421.0614700369 3.2440774 1103.4147
+160422.0614701412 3.2443137 1103.3357
+160423.0614702455 3.2444317 1103.3357
+160424.0614703498 3.2445104 1103.316
+160425.0614704541 3.2445104 1103.316
+160426.0614705584 3.244668 1103.3555
+160427.0614706627 3.244786 1103.4344
+160428.061470767 3.2449043 1103.3357
+160429.0614708713 3.2449436 1103.3752
+160430.0614709756 3.2450223 1103.316
+160431.0614710799 3.2451799 1103.3752
+160432.0614711843 3.2451406 1103.4147
+160433.0614712886 3.2453372 1103.3555
+160434.0614713929 3.2454948 1103.2765
+160435.0614714972 3.2455735 1103.3357
+160436.0614716015 3.2456129 1103.3357
+160437.0614717058 3.2457309 1103.2963
+160438.0614718101 3.2458885 1103.3949
+160439.0614719144 3.2460854 1103.3752
+160440.0614720187 3.2462034 1103.2963
+160441.061472123 3.2463608 1103.2765
+160442.0614722273 3.246479 1103.316
+160443.0614723316 3.2465971 1103.2963
+160444.0614724359 3.2465971 1103.3752
+160445.0614725403 3.246912 1103.316
+160446.0614726446 3.246912 1103.3555
+160447.0614727489 3.2469513 1103.3357
+160448.0614728532 3.2471089 1103.3752
+160449.0614729575 3.2471876 1103.3357
+160450.0614730618 3.2473452 1103.316
+160451.0614731661 3.2475419 1103.3357
+160452.0614732704 3.2476208 1103.3949
+160453.0614733747 3.2476995 1103.3555
+160454.061473479 3.2478569 1103.3555
+160455.0614735833 3.2479751 1103.2369
+160456.0614736876 3.2481325 1103.3357
+160457.061473792 3.2481718 1103.316
+160458.0614738963 3.2482901 1103.3752
+160459.0614740006 3.2484081 1103.316
+160460.0614741049 3.2484868 1103.3357
+160461.0614742092 3.2485657 1103.2963
+160462.0614743135 3.2486837 1103.3949
+160463.0614744178 3.248723 1103.3752
+160464.0614745221 3.2488017 1103.316
+160465.0614746264 3.2488017 1103.4147
+160466.0614747307 3.2489593 1103.4542
+160467.061474835 3.2489986 1103.3555
+160468.0614749393 3.2491956 1103.3555
+160469.0614750437 3.2492349 1103.3357
+160470.061475148 3.2494316 1103.3752
+160471.0614752523 3.2495105 1103.2567
+160472.0614753566 3.2495892 1103.3357
+160473.0614754609 3.2496679 1103.3555
+160474.0614755652 3.2497466 1103.3752
+160475.0614756695 3.2497861 1103.3752
+160476.0614757738 3.2499042 1103.2172
+160477.0614758781 3.2499828 1103.3949
+160478.0614759824 3.2501011 1103.3752
+160479.0614760867 3.2502191 1103.3555
+160480.061476191 3.2502584 1103.3555
+160481.0614762953 3.250416 1103.474
+160482.0614763997 3.2504554 1103.316
+160483.061476504 3.2505341 1103.2765
+160484.0614766083 3.250731 1103.3357
+160485.0614767126 3.2507703 1103.3555
+160486.0614768169 3.250967 1103.3357
+160487.0614769212 3.2510853 1103.3949
+160488.0614770255 3.251164 1103.3555
+160489.0614771298 3.2512426 1103.3357
+160490.0614772341 3.2512426 1103.3949
+160491.0614773384 3.2512426 1103.316
+160492.0614774427 3.2514396 1103.3357
+160493.061477547 3.2515576 1103.316
+160494.0614776514 3.2516365 1103.3555
+160495.0614777557 3.2517152 1103.316
+160496.06147786 3.2517152 1103.3949
+160497.0614779643 3.2519515 1103.2963
+160498.0614780686 3.2519121 1103.3357
+160499.0614781729 3.2520695 1103.3555
+160500.0614782772 3.2520695 1103.316
+160501.0614783815 3.2521875 1103.3357
+160502.0614784858 3.2522664 1103.3555
+160503.0614785901 3.2523057 1103.3357
+160504.0614786944 3.2523451 1103.3555
+160505.0614787987 3.2524631 1103.3357
+160506.0614789031 3.252542 1103.4344
+160507.0614790074 3.2526994 1103.2765
+160508.0614791117 3.2527387 1103.3949
+160509.061479216 3.2530143 1103.3752
+160510.0614793203 3.252975 1103.2963
+160511.0614794246 3.2530143 1103.3949
+160512.0614795289 3.2532899 1103.3357
+160513.0614796332 3.2533686 1103.316
+160514.0614797375 3.2533293 1103.4147
+160515.0614798418 3.2534869 1103.2963
+160516.0614799461 3.2535655 1103.3555
+160517.0614800504 3.2537229 1103.3555
+160518.0614801547 3.2538018 1103.3752
+160519.0614802591 3.2539198 1103.3949
+160520.0614803634 3.2540774 1103.4344
+160521.0614804677 3.2542348 1103.3752
+160522.061480572 3.2541168 1103.3752
+160523.0614806763 3.2543135 1103.3752
+160524.0614807806 3.2543528 1103.2963
+160525.0614808849 3.2544317 1103.316
+160526.0614809892 3.2545104 1103.3555
+160527.0614810935 3.2546284 1103.4147
+160528.0614811978 3.2546284 1103.316
+160529.0614813021 3.254786 1103.3357
+160530.0614814064 3.2549434 1103.2963
+160531.0614815108 3.2549434 1103.3555
+160532.0614816151 3.255101 1103.3752
+160533.0614817194 3.2551796 1103.2369
+160534.0614818237 3.2553372 1103.316
+160535.061481928 3.2553766 1103.3949
+160536.0614820323 3.2554553 1103.4147
+160537.0614821366 3.2555339 1103.4147
+160538.0614822409 3.2557309 1103.3752
+160539.0614823452 3.2558489 1103.2963
+160540.0614824495 3.2559671 1103.3555
+160541.0614825538 3.2561245 1103.3752
+160542.0614826581 3.2562032 1103.316
+160543.0614827625 3.2564001 1103.4344
+160544.0614828668 3.2564788 1103.3555
+160545.0614829711 3.2565181 1103.3949
+160546.0614830754 3.2566364 1103.3752
+160547.0614831797 3.2566757 1103.4147
+160548.061483284 3.2567937 1103.4147
+160549.0614833883 3.2569907 1103.3555
+160550.0614834926 3.256912 1103.316
+160551.0614835969 3.2571087 1103.316
+160552.0614837012 3.257345 1103.3357
+160553.0614838055 3.2573843 1103.3555
+160554.0614839098 3.2574236 1103.316
+160555.0614840142 3.2575419 1103.3357
+160556.0614841185 3.2576206 1103.2963
+160557.0614842228 3.2575026 1103.3752
+160558.0614843271 3.2576206 1103.3949
+160559.0614844314 3.2578568 1103.3949
+160560.0614845357 3.2578962 1103.2963
+160561.06148464 3.2580142 1103.2963
+160562.0614847443 3.2580931 1103.3357
+160563.0614848486 3.2582111 1103.316
+160564.0614849529 3.2582505 1103.3555
+160565.0614850572 3.2583292 1103.3555
+160566.0614851615 3.2583292 1103.2963
+160567.0614852658 3.2585261 1103.3357
+160568.0614853702 3.2586441 1103.3555
+160569.0614854745 3.2586834 1103.2963
+160570.0614855788 3.258841 1103.3357
+160571.0614856831 3.2587624 1103.3949
+160572.0614857874 3.2589197 1103.2765
+160573.0614858917 3.259038 1103.4147
+160574.061485996 3.2590773 1103.2765
+160575.0614861003 3.259156 1103.3555
+160576.0614862046 3.259274 1103.3752
+160577.0614863089 3.2593529 1103.3555
+160578.0614864132 3.259589 1103.3555
+160579.0614865175 3.2595496 1103.316
+160580.0614866219 3.2596285 1103.3357
+160581.0614867262 3.2597072 1103.3357
+160582.0614868305 3.2597859 1103.3949
+160583.0614869348 3.2599828 1103.3949
+160584.0614870391 3.2599828 1103.2963
+160585.0614871434 3.2599828 1103.3752
+160586.0614872477 3.2602584 1103.3555
+160587.061487352 3.2603371 1103.2567
+160588.0614874563 3.2604158 1103.3555
+160589.0614875606 3.2605338 1103.3357
+160590.0614876649 3.2606521 1103.2963
+160591.0614877692 3.2607307 1103.3752
+160592.0614878736 3.2607701 1103.3949
+160593.0614879779 3.260967 1103.316
+160594.0614880822 3.261085 1103.3752
+160595.0614881865 3.2611639 1103.2963
+160596.0614882908 3.2612033 1103.3949
+160597.0614883951 3.2612426 1103.2963
+160598.0614884994 3.2614393 1103.3752
+160599.0614886037 3.2613213 1103.4147
+160600.061488708 3.2614789 1103.2963
+160601.0614888123 3.2614393 1103.316
+160602.0614889166 3.2616363 1103.3752
+160603.0614890209 3.2617939 1103.3555
+160604.0614891252 3.2617543 1103.2765
+160605.0614892296 3.2617939 1103.3752
+160606.0614893339 3.2618332 1103.4147
+160607.0614894382 3.2621088 1103.3949
+160608.0614895425 3.2621481 1103.3357
+160609.0614896468 3.2622662 1103.4344
+160610.0614897511 3.2623842 1103.3752
+160611.0614898554 3.2625024 1103.3752
+160612.0614899597 3.2625418 1103.2765
+160613.061490064 3.2626204 1103.3949
+160614.0614901683 3.2626598 1103.3752
+160615.0614902726 3.262778 1103.3357
+160616.0614903769 3.2628567 1103.3752
+160617.0614904813 3.2629354 1103.2765
+160618.0614905856 3.263093 1103.3555
+160619.0614906899 3.263093 1103.2567
+160620.0614907942 3.2632504 1103.3357
+160621.0614908985 3.2633293 1103.2963
+160622.0614910028 3.2634473 1103.2963
+160623.0614911071 3.2634866 1103.316
+160624.0614912114 3.263526 1103.3752
+160625.0614913157 3.2636836 1103.3949
+160626.06149142 3.2637229 1103.4344
+160627.0614915243 3.2636836 1103.3357
+160628.0614916286 3.2639592 1103.3555
+160629.061491733 3.2638803 1103.3555
+160630.0614918373 3.2638803 1103.3752
+160631.0614919416 3.2639985 1103.3752
+160632.0614920459 3.2639592 1103.316
+160633.0614921502 3.2639985 1103.2963
+160634.0614922545 3.2641559 1103.316
+160635.0614923588 3.2643135 1103.3357
+160636.0614924631 3.2642741 1103.3555
+160637.0614925674 3.2644708 1103.3752
+160638.0614926717 3.2645102 1103.3949
+160639.061492776 3.2646677 1103.3357
+160640.0614928803 3.2647464 1103.3357
+160641.0614929846 3.2649827 1103.2172
+160642.061493089 3.265022 1103.3752
+160643.0614931933 3.2651007 1103.4147
+160644.0614932976 3.2651401 1103.2369
+160645.0614934019 3.2653763 1103.3555
+160646.0614935062 3.2653763 1103.3949
+160647.0614936105 3.2654946 1103.316
+160648.0614937148 3.2656126 1103.3555
+160649.0614938191 3.2656519 1103.3555
+160650.0614939234 3.26577 1103.3555
+160651.0614940277 3.2658882 1103.3949
+160652.061494132 3.2658882 1103.3357
+160653.0614942363 3.2662032 1103.316
+160654.0614943407 3.2661245 1103.3949
+160655.061494445 3.2662425 1103.316
+160656.0614945493 3.2662425 1103.2567
+160657.0614946536 3.2665181 1103.316
+160658.0614947579 3.2665575 1103.3555
+160659.0614948622 3.2666755 1103.3949
+160660.0614949665 3.2668331 1103.3752
+160661.0614950708 3.2667937 1103.316
+160662.0614951751 3.2669117 1103.316
+160663.0614952794 3.26703 1103.3555
+160664.0614953837 3.2671087 1103.2963
+160665.061495488 3.267266 1103.4147
+160666.0614955924 3.2673054 1103.3752
+160667.0614956967 3.2673054 1103.3357
+160668.061495801 3.2675023 1103.3949
+160669.0614959053 3.2676992 1103.3555
+160670.0614960096 3.2676599 1103.316
+160671.0614961139 3.2678959 1103.3357
+160672.0614962182 3.2679353 1103.316
+160673.0614963225 3.2680535 1103.3949
+160674.0614964268 3.2682505 1103.2963
+160675.0614965311 3.2683291 1103.3752
+160676.0614966354 3.2683685 1103.316
+160677.0614967397 3.2684472 1103.3555
+160678.0614968441 3.2686048 1103.3555
+160679.0614969484 3.2687228 1103.3357
+160680.0614970527 3.2688408 1103.3357
+160681.061497157 3.2688015 1103.3555
+160682.0614972613 3.268959 1103.4147
+160683.0614973656 3.2690377 1103.3949
+160684.0614974699 3.2691164 1103.3752
+160685.0614975742 3.2692347 1103.3357
+160686.0614976785 3.2693133 1103.2765
+160687.0614977828 3.2695103 1103.2963
+160688.0614978871 3.2694707 1103.3752
+160689.0614979914 3.2695889 1103.3752
+160690.0614980957 3.269707 1103.4147
+160691.0614982001 3.2697463 1103.4147
+160692.0614983044 3.2699039 1103.3949
+160693.0614984087 3.2699432 1103.3555
+160694.061498513 3.2700219 1103.316
+160695.0614986173 3.2701402 1103.3357
+160696.0614987216 3.2703369 1103.3949
+160697.0614988259 3.2703369 1103.3949
+160698.0614989302 3.2704551 1103.3752
+160699.0614990345 3.2706125 1103.4147
+160700.0614991388 3.2705338 1103.3555
+160701.0614992431 3.2708094 1103.3949
+160702.0614993474 3.2708488 1103.4344
+160703.0614994518 3.2708488 1103.3555
+160704.0614995561 3.2711244 1103.316
+160705.0614996604 3.2711244 1103.2765
+160706.0614997647 3.2712424 1103.2567
+160707.061499869 3.2712424 1103.3357
+160708.0614999733 3.2714 1103.3752
+160709.0615000776 3.2714393 1103.3555
+160710.0615001819 3.2714393 1103.2765
+160711.0615002862 3.2717543 1103.3752
+160712.0615003905 3.2717149 1103.3357
+160713.0615004948 3.2719116 1103.3555
+160714.0615005991 3.2718723 1103.2765
+160715.0615007035 3.2719905 1103.316
+160716.0615008078 3.2721086 1103.3555
+160717.0615009121 3.2721872 1103.4344
+160718.0615010164 3.2722661 1103.316
+160719.0615011207 3.2723055 1103.2765
+160720.061501225 3.2723055 1103.4147
+160721.0615013293 3.2725022 1103.2963
+160722.0615014336 3.2724628 1103.2963
+160723.0615015379 3.2725811 1103.3555
+160724.0615016422 3.2726991 1103.3357
+160725.0615017465 3.2728961 1103.3357
+160726.0615018508 3.2728961 1103.3555
+160727.0615019551 3.2730141 1103.4147
+160728.0615020595 3.2731321 1103.2567
+160729.0615021638 3.2730927 1103.3752
+160730.0615022681 3.2731714 1103.3752
+160731.0615023724 3.2734077 1103.3752
+160732.0615024767 3.2734866 1103.4147
+160733.061502581 3.2734866 1103.2765
+160734.0615026853 3.2735653 1103.3555
+160735.0615027896 3.2737226 1103.3357
+160736.0615028939 3.2738016 1103.2963
+160737.0615029982 3.2739589 1103.3357
+160738.0615031025 3.2739589 1103.3357
+160739.0615032068 3.2740376 1103.2765
+160740.0615033112 3.2741559 1103.316
+160741.0615034155 3.2742739 1103.3949
+160742.0615035198 3.2743919 1103.316
+160743.0615036241 3.2743132 1103.316
+160744.0615037284 3.2745495 1103.4147
+160745.0615038327 3.2746675 1103.3949
+160746.061503937 3.2747068 1103.3555
+160747.0615040413 3.2747858 1103.3752
+160748.0615041456 3.2749038 1103.316
+160749.0615042499 3.2750614 1103.316
+160750.0615043542 3.2750614 1103.3752
+160751.0615044585 3.27514 1103.316
+160752.0615045629 3.2752974 1103.3357
+160753.0615046672 3.2752581 1103.316
+160754.0615047715 3.2754157 1103.2567
+160755.0615048758 3.2753763 1103.316
+160756.0615049801 3.2754943 1103.3357
+160757.0615050844 3.275573 1103.3357
+160758.0615051887 3.2756124 1103.3555
+160759.061505293 3.2757699 1103.3555
+160760.0615053973 3.2757306 1103.2963
+160761.0615055016 3.2758093 1103.3949
+160762.0615056059 3.2759669 1103.3357
+160763.0615057102 3.2761242 1103.2765
+160764.0615058145 3.2761242 1103.2963
+160765.0615059189 3.2762423 1103.3555
+160766.0615060232 3.2763605 1103.2765
+160767.0615061275 3.2763212 1103.3949
+160768.0615062318 3.2763999 1103.3555
+160769.0615063361 3.2764392 1103.3357
+160770.0615064404 3.2764785 1103.2567
+160771.0615065447 3.2766361 1103.4344
+160772.061506649 3.2767935 1103.316
+160773.0615067533 3.2767148 1103.3949
+160774.0615068576 3.2768722 1103.3752
+160775.0615069619 3.2769117 1103.3357
+160776.0615070662 3.2771084 1103.3357
+160777.0615071706 3.2771478 1103.3949
+160778.0615072749 3.2772267 1103.3357
+160779.0615073792 3.2773447 1103.4344
+160780.0615074835 3.2773054 1103.4147
+160781.0615075878 3.2773054 1103.4147
+160782.0615076921 3.2774627 1103.3555
+160783.0615077964 3.2774627 1103.3949
+160784.0615079007 3.277581 1103.3752
+160785.061508005 3.2775023 1103.2963
+160786.0615081093 3.277699 1103.3752
+160787.0615082136 3.2777383 1103.3555
+160788.0615083179 3.2779353 1103.316
+160789.0615084223 3.2779746 1103.3949
+160790.0615085266 3.2780926 1103.4147
+160791.0615086309 3.2781715 1103.3752
+160792.0615087352 3.2784076 1103.3555
+160793.0615088395 3.2783289 1103.4147
+160794.0615089438 3.2784472 1103.3357
+160795.0615090481 3.2784472 1103.3752
+160796.0615091524 3.2787228 1103.3357
+160797.0615092567 3.2787228 1103.2765
+160798.061509361 3.2788408 1103.3357
+160799.0615094653 3.2787621 1103.2963
+160800.0615095696 3.2788408 1103.4147
+160801.0615096739 3.2789588 1103.2963
+160802.0615097783 3.2790377 1103.2567
+160803.0615098826 3.2791951 1103.3357
+160804.0615099869 3.2791951 1103.3357
+160805.0615100912 3.2793131 1103.2963
+160806.0615101955 3.279392 1103.3555
+160807.0615102998 3.2794707 1103.3752
+160808.0615104041 3.279628 1103.2963
+160809.0615105084 3.2797463 1103.3357
+160810.0615106127 3.2799037 1103.2963
+160811.061510717 3.2798643 1103.3949
+160812.0615108213 3.2800219 1103.3949
+160813.0615109256 3.2801006 1103.3555
+160814.06151103 3.2800612 1103.4147
+160815.0615111343 3.2802186 1103.4147
+160816.0615112386 3.2802975 1103.3357
+160817.0615113429 3.2802579 1103.2963
+160818.0615114472 3.2803762 1103.2765
+160819.0615115515 3.2803369 1103.316
+160820.0615116558 3.2805336 1103.3555
+160821.0615117601 3.2804942 1103.3555
+160822.0615118644 3.2804942 1103.4344
+160823.0615119687 3.2807698 1103.4344
+160824.061512073 3.2806911 1103.3357
+160825.0615121773 3.2808881 1103.3555
+160826.0615122817 3.2809274 1103.3357
+160827.061512386 3.2810848 1103.3357
+160828.0615124903 3.2811241 1103.316
+160829.0615125946 3.2812424 1103.3357
+160830.0615126989 3.2813604 1103.3357
+160831.0615128032 3.2813604 1103.4542
+160832.0615129075 3.2814784 1103.3555
+160833.0615130118 3.2817147 1103.316
+160834.0615131161 3.2817934 1103.3555
+160835.0615132204 3.2817147 1103.3555
+160836.0615133247 3.2819116 1103.3752
+160837.061513429 3.2820296 1103.3357
+160838.0615135334 3.2820296 1103.316
+160839.0615136377 3.2821479 1103.3949
+160840.061513742 3.2821872 1103.2963
+160841.0615138463 3.2822659 1103.3555
+160842.0615139506 3.2823446 1103.3949
+160843.0615140549 3.2824235 1103.3949
+160844.0615141592 3.2826595 1103.3555
+160845.0615142635 3.2827384 1103.2567
+160846.0615143678 3.2825809 1103.3752
+160847.0615144721 3.2827778 1103.3357
+160848.0615145764 3.2828565 1103.2963
+160849.0615146807 3.2829351 1103.3357
+160850.061514785 3.2831321 1103.3555
+160851.0615148894 3.2831714 1103.3949
+160852.0615149937 3.2831714 1103.3949
+160853.061515098 3.2833288 1103.2765
+160854.0615152023 3.2833683 1103.3752
+160855.0615153066 3.2834077 1103.2567
+160856.0615154109 3.2835257 1103.3357
+160857.0615155152 3.2836044 1103.3752
+160858.0615156195 3.2836437 1103.4542
+160859.0615157238 3.2837226 1103.3752
+160860.0615158281 3.2838013 1103.3357
+160861.0615159324 3.28388 1103.3555
+160862.0615160367 3.2839983 1103.3357
+160863.0615161411 3.2841556 1103.2963
+160864.0615162454 3.2841556 1103.3555
+160865.0615163497 3.2842739 1103.316
+160866.061516454 3.2843919 1103.3752
+160867.0615165583 3.2843525 1103.316
+160868.0615166626 3.2845888 1103.4147
+160869.0615167669 3.2846282 1103.3949
+160870.0615168712 3.2847068 1103.2567
+160871.0615169755 3.2848248 1103.2765
+160872.0615170798 3.2848642 1103.3752
+160873.0615171841 3.2850611 1103.2567
+160874.0615172884 3.2851791 1103.3555
+160875.0615173928 3.2852187 1103.3752
+160876.0615174971 3.2852974 1103.3949
+160877.0615176014 3.2854154 1103.3357
+160878.0615177057 3.285573 1103.3949
+160879.06151781 3.2856517 1103.4344
+160880.0615179143 3.2857304 1103.316
+160881.0615180186 3.2857697 1103.2765
+160882.0615181229 3.285888 1103.3555
+160883.0615182272 3.2859273 1103.3555
+160884.0615183315 3.2860847 1103.3752
+160885.0615184358 3.2861242 1103.316
+160886.0615185401 3.2861636 1103.3555
+160887.0615186444 3.2863603 1103.2369
+160888.0615187488 3.2865179 1103.4344
+160889.0615188531 3.2865179 1103.3949
+160890.0615189574 3.2866359 1103.3752
+160891.0615190617 3.2867935 1103.3555
+160892.061519166 3.2868328 1103.3555
+160893.0615192703 3.2869115 1103.3357
+160894.0615193746 3.2870691 1103.4147
+160895.0615194789 3.2871871 1103.316
+160896.0615195832 3.2871478 1103.3555
+160897.0615196875 3.2871084 1103.316
+160898.0615197918 3.2873445 1103.3555
+160899.0615198961 3.2874627 1103.316
+160900.0615200005 3.2875807 1103.3752
+160901.0615201048 3.2874627 1103.2567
+160902.0615202091 3.2876201 1103.3752
+160903.0615203134 3.287699 1103.3357
+160904.0615204177 3.2877777 1103.3752
+160905.061520522 3.2878957 1103.3555
+160906.0615206263 3.287935 1103.3555
+160907.0615207306 3.2882106 1103.3752
+160908.0615208349 3.2880139 1103.2567
+160909.0615209392 3.28825 1103.3752
+160910.0615210435 3.2883289 1103.316
+160911.0615211478 3.2883289 1103.2765
+160912.0615212522 3.2884469 1103.2765
+160913.0615213565 3.2884469 1103.3752
+160914.0615214608 3.2885256 1103.3555
+160915.0615215651 3.2886832 1103.3555
+160916.0615216694 3.2887225 1103.3357
+160917.0615217737 3.2888799 1103.3949
+160918.061521878 3.2889194 1103.3752
+160919.0615219823 3.2890768 1103.3752
+160920.0615220866 3.2891948 1103.3555
+160921.0615221909 3.2892737 1103.3357
+160922.0615222952 3.2892344 1103.3555
+160923.0615223995 3.2893524 1103.3357
+160924.0615225038 3.2893131 1103.3949
+160925.0615226082 3.28951 1103.3752
+160926.0615227125 3.2896674 1103.3357
+160927.0615228168 3.2897067 1103.3555
+160928.0615229211 3.2899036 1103.3357
+160929.0615230254 3.289943 1103.3752
+160930.0615231297 3.2899823 1103.3949
+160931.061523234 3.2901399 1103.2567
+160932.0615233383 3.2901793 1103.316
+160933.0615234426 3.2903759 1103.3752
+160934.0615235469 3.2903759 1103.4344
+160935.0615236512 3.2906516 1103.3752
+160936.0615237555 3.2905335 1103.3357
+160937.0615238599 3.2906516 1103.2765
+160938.0615239642 3.2906516 1103.3752
+160939.0615240685 3.2906909 1103.3555
+160940.0615241728 3.2908092 1103.2765
+160941.0615242771 3.2908878 1103.3555
+160942.0615243814 3.2909272 1103.3752
+160943.0615244857 3.2911241 1103.3357
+160944.06152459 3.2910848 1103.316
+160945.0615246943 3.2911241 1103.3555
+160946.0615247986 3.2912815 1103.3555
+160947.0615249029 3.2913997 1103.2963
+160948.0615250072 3.2913997 1103.3752
+160949.0615251116 3.2915177 1103.3357
+160950.0615252159 3.2915964 1103.4344
+160951.0615253202 3.2916358 1103.3752
+160952.0615254245 3.291754 1103.2963
+160953.0615255288 3.291872 1103.316
+160954.0615256331 3.2919903 1103.3357
+160955.0615257374 3.292069 1103.3357
+160956.0615258417 3.2921083 1103.316
+160957.061525946 3.292187 1103.316
+160958.0615260503 3.2923839 1103.2963
+160959.0615261546 3.2925019 1103.3357
+160960.0615262589 3.2925806 1103.3949
+160961.0615263633 3.2926595 1103.4147
+160962.0615264676 3.2927775 1103.3357
+160963.0615265719 3.2928956 1103.3555
+160964.0615266762 3.2930138 1103.3752
+160965.0615267805 3.2930925 1103.2963
+160966.0615268848 3.2932501 1103.3752
+160967.0615269891 3.2933681 1103.4147
+160968.0615270934 3.2934074 1103.316
+160969.0615271977 3.2934861 1103.316
+160970.061527302 3.293565 1103.316
+160971.0615274063 3.2936831 1103.2963
+160972.0615275106 3.2936437 1103.3555
+160973.0615276149 3.2937224 1103.3752
+160974.0615277193 3.2938406 1103.2369
+160975.0615278236 3.2939587 1103.3357
+160976.0615279279 3.2940373 1103.3357
+160977.0615280322 3.2942343 1103.3357
+160978.0615281365 3.2942343 1103.3357
+160979.0615282408 3.294313 1103.3555
+160980.0615283451 3.2945099 1103.4344
+160981.0615284494 3.2944705 1103.2963
+160982.0615285537 3.2945492 1103.3949
+160983.061528658 3.2946279 1103.2567
+160984.0615287623 3.2947459 1103.4542
+160985.0615288666 3.2947855 1103.2963
+160986.061528971 3.2949035 1103.3949
+160987.0615290753 3.2949429 1103.316
+160988.0615291796 3.2950611 1103.2765
+160989.0615292839 3.2951005 1103.3357
+160990.0615293882 3.2952185 1103.3555
+160991.0615294925 3.2952185 1103.3555
+160992.0615295968 3.2953365 1103.3752
+160993.0615297011 3.2952971 1103.3555
+160994.0615298054 3.2953761 1103.3357
+160995.0615299097 3.2955334 1103.474
+160996.061530014 3.2955728 1103.3357
+160997.0615301183 3.2957304 1103.3752
+160998.0615302227 3.295927 1103.2963
+160999.061530327 3.2959664 1103.3357
+161000.0615304313 3.296124 1103.2765
+161001.0615305356 3.2960846 1103.3949
+161002.0615306399 3.296124 1103.3555
+161003.0615307442 3.2962813 1103.3357
+161004.0615308485 3.2963996 1103.3357
+161005.0615309528 3.2964389 1103.3752
+161006.0615310571 3.2965176 1103.3555
+161007.0615311614 3.2966752 1103.316
+161008.0615312657 3.2968326 1103.4147
+161009.06153137 3.2969115 1103.3752
+161010.0615314743 3.2970295 1103.2567
+161011.0615315787 3.2970295 1103.3357
+161012.061531683 3.2971869 1103.3555
+161013.0615317873 3.2973444 1103.2369
+161014.0615318916 3.2973444 1103.3357
+161015.0615319959 3.2972658 1103.3357
+161016.0615321002 3.2975018 1103.3752
+161017.0615322045 3.2976201 1103.316
+161018.0615323088 3.2976201 1103.3949
+161019.0615324131 3.2977381 1103.3949
+161020.0615325174 3.2978563 1103.4344
+161021.0615326217 3.2980137 1103.3752
+161022.061532726 3.2980924 1103.3357
+161023.0615328304 3.2980137 1103.3752
+161024.0615329347 3.2981713 1103.4147
+161025.061533039 3.29825 1103.3752
+161026.0615331433 3.2984469 1103.3357
+161027.0615332476 3.2985256 1103.4344
+161028.0615333519 3.2985649 1103.3555
+161029.0615334562 3.2984862 1103.316
+161030.0615335605 3.2986042 1103.3752
+161031.0615336648 3.2986042 1103.3555
+161032.0615337691 3.2986042 1103.3752
+161033.0615338734 3.2987618 1103.4147
+161034.0615339777 3.2989192 1103.3555
+161035.0615340821 3.2987618 1103.3555
+161036.0615341864 3.2990372 1103.3949
+161037.0615342907 3.2990372 1103.2765
+161038.061534395 3.2991555 1103.3949
+161039.0615344993 3.2991948 1103.316
+161040.0615346036 3.2993128 1103.3357
+161041.0615347079 3.2992735 1103.2963
+161042.0615348122 3.2994311 1103.3555
+161043.0615349165 3.2995491 1103.316
+161044.0615350208 3.2995884 1103.3357
+161045.0615351251 3.2997067 1103.3752
+161046.0615352294 3.2997854 1103.3949
+161047.0615353337 3.2999034 1103.2963
+161048.0615354381 3.2999821 1103.3555
+161049.0615355424 3.3001003 1103.3555
+161050.0615356467 3.3001397 1103.3752
+161051.061535751 3.3002577 1103.3357
+161052.0615358553 3.3003366 1103.3949
+161053.0615359596 3.3003759 1103.316
+161054.0615360639 3.300494 1103.3752
+161055.0615361682 3.3004546 1103.3949
+161056.0615362725 3.3005333 1103.3949
+161057.0615363768 3.3005726 1103.3357
+161058.0615364811 3.3006516 1103.316
+161059.0615365854 3.3006909 1103.3555
+161060.0615366898 3.3008482 1103.3752
+161061.0615367941 3.3008876 1103.2963
+161062.0615368984 3.3010058 1103.316
+161063.0615370027 3.3010058 1103.316
+161064.061537107 3.3010845 1103.2369
+161065.0615372113 3.3011239 1103.316
+161066.0615373156 3.3011239 1103.3949
+161067.0615374199 3.3012815 1103.3357
+161068.0615375242 3.3013208 1103.4542
+161069.0615376285 3.3014388 1103.4147
+161070.0615377328 3.3014781 1103.4147
+161071.0615378371 3.3014388 1103.3555
+161072.0615379415 3.3015571 1103.4344
+161073.0615380458 3.3016751 1103.316
+161074.0615381501 3.3016751 1103.3752
+161075.0615382544 3.3017144 1103.316
+161076.0615383587 3.3018324 1103.3555
+161077.061538463 3.3019507 1103.3357
+161078.0615385673 3.3020294 1103.3949
+161079.0615386716 3.3020687 1103.2963
+161080.0615387759 3.3020294 1103.3752
+161081.0615388802 3.3022656 1103.3752
+161082.0615389845 3.3021476 1103.4344
+161083.0615390888 3.3022263 1103.3752
+161084.0615391932 3.3023443 1103.4344
+161085.0615392975 3.3024626 1103.316
+161086.0615394018 3.3024626 1103.316
+161087.0615395061 3.3025413 1103.3357
+161088.0615396104 3.3025806 1103.3752
+161089.0615397147 3.3026199 1103.3555
+161090.061539819 3.3027775 1103.2963
+161091.0615399233 3.302738 1103.3357
+161092.0615400276 3.3028955 1103.2963
+161093.0615401319 3.3030136 1103.2963
+161094.0615402362 3.3029349 1103.316
+161095.0615403405 3.3028955 1103.3752
+161096.0615404448 3.3029349 1103.316
+161097.0615405492 3.3030925 1103.3357
+161098.0615406535 3.3031318 1103.3949
+161099.0615407578 3.3032498 1103.2567
+161100.0615408621 3.3032892 1103.3752
+161101.0615409664 3.3033679 1103.3357
+161102.0615410707 3.3034468 1103.3555
+161103.061541175 3.3036435 1103.3555
+161104.0615412793 3.3036828 1103.3357
+161105.0615413836 3.3037224 1103.3752
+161106.0615414879 3.3038797 1103.3752
+161107.0615415922 3.303998 1103.4542
+161108.0615416965 3.304116 1103.3357
+161109.0615418009 3.3040767 1103.3949
+161110.0615419052 3.3043129 1103.3752
+161111.0615420095 3.3043129 1103.4147
+161112.0615421138 3.3043129 1103.316
+161113.0615422181 3.304431 1103.3555
+161114.0615423224 3.3045096 1103.3357
+161115.0615424267 3.3046279 1103.4147
+161116.061542531 3.3045883 1103.3949
+161117.0615426353 3.3046672 1103.3555
+161118.0615427396 3.3046672 1103.3949
+161119.0615428439 3.3047459 1103.3752
+161120.0615429482 3.3049033 1103.3752
+161121.0615430526 3.3049428 1103.3752
+161122.0615431569 3.3049822 1103.3752
+161123.0615432612 3.3050609 1103.3357
+161124.0615433655 3.3051395 1103.4344
+161125.0615434698 3.3052182 1103.3555
+161126.0615435741 3.3053365 1103.3357
+161127.0615436784 3.3053365 1103.3949
+161128.0615437827 3.3054938 1103.3949
+161129.061543887 3.3055332 1103.3555
+161130.0615439913 3.3056908 1103.4344
+161131.0615440956 3.3057694 1103.3752
+161132.0615441999 3.3058088 1103.3357
+161133.0615443042 3.3060057 1103.3555
+161134.0615444086 3.3058877 1103.2963
+161135.0615445129 3.3059664 1103.316
+161136.0615446172 3.3062813 1103.2963
+161137.0615447215 3.306242 1103.3949
+161138.0615448258 3.30636 1103.2765
+161139.0615449301 3.3063993 1103.316
+161140.0615450344 3.3064387 1103.3752
+161141.0615451387 3.3065963 1103.4344
+161142.061545243 3.3066356 1103.3949
+161143.0615453473 3.3065963 1103.3752
+161144.0615454516 3.306675 1103.3357
+161145.0615455559 3.3067143 1103.4147
+161146.0615456603 3.3067143 1103.3555
+161147.0615457646 3.3068326 1103.4147
+161148.0615458689 3.3069506 1103.4147
+161149.0615459732 3.3070292 1103.316
+161150.0615460775 3.3070686 1103.3752
+161151.0615461818 3.3071868 1103.3752
+161152.0615462861 3.3072655 1103.3357
+161153.0615463904 3.3072655 1103.3357
+161154.0615464947 3.3073442 1103.4147
+161155.061546599 3.3074231 1103.3949
+161156.0615467033 3.3074625 1103.316
+161157.0615468076 3.3075411 1103.3357
+161158.061546912 3.3076198 1103.4147
+161159.0615470163 3.3076987 1103.2765
+161160.0615471206 3.3077774 1103.2963
+161161.0615472249 3.3077774 1103.3752
+161162.0615473292 3.3078561 1103.3752
+161163.0615474335 3.3078954 1103.3357
+161164.0615475378 3.3080137 1103.3949
+161165.0615476421 3.3080924 1103.3555
+161166.0615477464 3.3080924 1103.3752
+161167.0615478507 3.3081317 1103.2963
+161168.061547955 3.3082891 1103.3752
+161169.0615480593 3.3082891 1103.316
+161170.0615481636 3.308486 1103.3949
+161171.061548268 3.3085647 1103.4147
+161172.0615483723 3.3087223 1103.3555
+161173.0615484766 3.3087223 1103.3949
+161174.0615485809 3.3087616 1103.3752
+161175.0615486852 3.3088403 1103.3555
+161176.0615487895 3.3089585 1103.2567
+161177.0615488938 3.3091159 1103.3555
+161178.0615489981 3.3092341 1103.3357
+161179.0615491024 3.3093128 1103.2963
+161180.0615492067 3.3093128 1103.316
+161181.061549311 3.3093915 1103.2963
+161182.0615494153 3.3095491 1103.3949
+161183.0615495197 3.3095491 1103.3752
+161184.061549624 3.3095884 1103.2963
+161185.0615497283 3.3096278 1103.3555
+161186.0615498326 3.3096278 1103.316
+161187.0615499369 3.3097064 1103.3555
+161188.0615500412 3.3097851 1103.3752
+161189.0615501455 3.3099034 1103.2765
+161190.0615502498 3.3099034 1103.3752
+161191.0615503541 3.3100214 1103.3357
+161192.0615504584 3.3100607 1103.3752
+161193.0615505627 3.310179 1103.2765
+161194.061550667 3.3101394 1103.3949
+161195.0615507714 3.3103757 1103.2963
+161196.0615508757 3.3103757 1103.316
+161197.06155098 3.3103757 1103.3555
+161198.0615510843 3.3105726 1103.3949
+161199.0615511886 3.3105333 1103.3357
+161200.0615512929 3.3105333 1103.3752
+161201.0615513972 3.3106906 1103.3752
+161202.0615515015 3.3106906 1103.3357
+161203.0615516058 3.3107693 1103.2369
+161204.0615517101 3.31073 1103.3357
+161205.0615518144 3.3108876 1103.3555
+161206.0615519187 3.3109269 1103.3752
+161207.061552023 3.3108876 1103.3752
+161208.0615521274 3.3110449 1103.3357
+161209.0615522317 3.3112025 1103.2963
+161210.061552336 3.3111238 1103.4147
+161211.0615524403 3.3113205 1103.3949
+161212.0615525446 3.3112419 1103.2963
+161213.0615526489 3.3114388 1103.3555
+161214.0615527532 3.3115175 1103.316
+161215.0615528575 3.3116355 1103.3357
+161216.0615529618 3.3117144 1103.2765
+161217.0615530661 3.3116748 1103.4147
+161218.0615531704 3.3118718 1103.3555
+161219.0615532747 3.3119898 1103.3752
+161220.0615533791 3.3120294 1103.3949
+161221.0615534834 3.3121867 1103.3949
+161222.0615535877 3.3121474 1103.3752
+161223.061553692 3.3123837 1103.316
+161224.0615537963 3.3123837 1103.3357
+161225.0615539006 3.3125017 1103.3357
+161226.0615540049 3.312541 1103.3555
+161227.0615541092 3.3127773 1103.3949
+161228.0615542135 3.3128166 1103.316
+161229.0615543178 3.312856 1103.4147
+161230.0615544221 3.3130136 1103.2963
+161231.0615545264 3.3129742 1103.3357
+161232.0615546308 3.3130922 1103.4542
+161233.0615547351 3.3132102 1103.4147
+161234.0615548394 3.3132892 1103.3752
+161235.0615549437 3.3134072 1103.3752
+161236.061555048 3.3135252 1103.3555
+161237.0615551523 3.3135252 1103.3357
+161238.0615552566 3.3136828 1103.316
+161239.0615553609 3.3136435 1103.316
+161240.0615554652 3.3138008 1103.3357
+161241.0615555695 3.3139191 1103.3555
+161242.0615556738 3.3140371 1103.316
+161243.0615557781 3.3140371 1103.4344
+161244.0615558825 3.3141947 1103.3357
+161245.0615559868 3.3141947 1103.316
+161246.0615560911 3.3142734 1103.3357
+161247.0615561954 3.3144307 1103.4542
+161248.0615562997 3.3144701 1103.4344
+161249.061556404 3.314549 1103.2567
+161250.0615565083 3.314667 1103.316
+161251.0615566126 3.3147063 1103.3752
+161252.0615567169 3.3149033 1103.3555
+161253.0615568212 3.3149426 1103.3752
+161254.0615569255 3.3150213 1103.3555
+161255.0615570298 3.3150606 1103.316
+161256.0615571341 3.3150606 1103.3555
+161257.0615572385 3.3152182 1103.3357
+161258.0615573428 3.3152575 1103.3357
+161259.0615574471 3.3153362 1103.2765
+161260.0615575514 3.3154151 1103.2765
+161261.0615576557 3.3154938 1103.3357
+161262.06155776 3.3155332 1103.3555
+161263.0615578643 3.3157301 1103.3949
+161264.0615579686 3.3156118 1103.4147
+161265.0615580729 3.3157694 1103.3752
+161266.0615581772 3.3159268 1103.2963
+161267.0615582815 3.3159268 1103.2963
+161268.0615583858 3.316045 1103.2765
+161269.0615584902 3.3160844 1103.3357
+161270.0615585945 3.3162811 1103.3949
+161271.0615586988 3.3163204 1103.4147
+161272.0615588031 3.3162811 1103.2765
+161273.0615589074 3.3165174 1103.3949
+161274.0615590117 3.3164387 1103.3752
+161275.061559116 3.3165174 1103.3357
+161276.0615592203 3.3166749 1103.316
+161277.0615593246 3.3166749 1103.2963
+161278.0615594289 3.316793 1103.2567
+161279.0615595332 3.316911 1103.3555
+161280.0615596375 3.3168716 1103.3357
+161281.0615597419 3.3168716 1103.4344
+161282.0615598462 3.3169506 1103.316
+161283.0615599505 3.3170686 1103.3949
+161284.0615600548 3.3172259 1103.3949
+161285.0615601591 3.3171866 1103.3357
+161286.0615602634 3.3172259 1103.3752
+161287.0615603677 3.3173835 1103.2567
+161288.061560472 3.3174622 1103.3555
+161289.0615605763 3.3174622 1103.4147
+161290.0615606806 3.3175015 1103.3555
+161291.0615607849 3.3175015 1103.3752
+161292.0615608892 3.3176198 1103.3949
+161293.0615609935 3.3176985 1103.4147
+161294.0615610979 3.3176985 1103.316
+161295.0615612022 3.3178165 1103.3752
+161296.0615613065 3.3178165 1103.316
+161297.0615614108 3.3180528 1103.3752
+161298.0615615151 3.3180528 1103.4542
+161299.0615616194 3.3180528 1103.3357
+161300.0615617237 3.3181314 1103.3949
+161301.061561828 3.318171 1103.474
+161302.0615619323 3.3182104 1103.3752
+161303.0615620366 3.3183284 1103.4147
+161304.0615621409 3.3183284 1103.2963
+161305.0615622452 3.3184071 1103.316
+161306.0615623496 3.3184464 1103.316
+161307.0615624539 3.318486 1103.3752
+161308.0615625582 3.3186827 1103.2765
+161309.0615626625 3.3186433 1103.474
+161310.0615627668 3.3187613 1103.4147
+161311.0615628711 3.3188009 1103.316
+161312.0615629754 3.3188796 1103.3357
+161313.0615630797 3.3189976 1103.4147
+161314.061563184 3.3190763 1103.2765
+161315.0615632883 3.319037 1103.3752
+161316.0615633926 3.3192339 1103.3357
+161317.0615634969 3.3192732 1103.3357
+161318.0615636013 3.3193126 1103.3555
+161319.0615637056 3.3195882 1103.3752
+161320.0615638099 3.3195095 1103.316
+161321.0615639142 3.3197062 1103.4147
+161322.0615640185 3.3197851 1103.3949
+161323.0615641228 3.3198245 1103.3752
+161324.0615642271 3.3199425 1103.4344
+161325.0615643314 3.3200214 1103.316
+161326.0615644357 3.3200214 1103.3949
+161327.06156454 3.3200607 1103.3555
+161328.0615646443 3.3202574 1103.4147
+161329.0615647486 3.3202574 1103.4147
+161330.0615648529 3.3203363 1103.4147
+161331.0615649573 3.3203363 1103.3752
+161332.0615650616 3.3204937 1103.3752
+161333.0615651659 3.3205724 1103.2567
+161334.0615652702 3.3205724 1103.3752
+161335.0615653745 3.32073 1103.2765
+161336.0615654788 3.3207693 1103.2963
+161337.0615655831 3.320848 1103.3949
+161338.0615656874 3.320848 1103.316
+161339.0615657917 3.3210449 1103.3555
+161340.061565896 3.3210056 1103.3357
+161341.0615660003 3.3212023 1103.3357
+161342.0615661046 3.3211236 1103.3357
+161343.061566209 3.3212416 1103.3752
+161344.0615663133 3.3212812 1103.2963
+161345.0615664176 3.3213599 1103.3357
+161346.0615665219 3.3215172 1103.3949
+161347.0615666262 3.3216355 1103.3752
+161348.0615667305 3.3216355 1103.2765
+161349.0615668348 3.3216355 1103.316
+161350.0615669391 3.3216748 1103.316
+161351.0615670434 3.3217928 1103.3357
+161352.0615671477 3.3218718 1103.2963
+161353.061567252 3.3218322 1103.3752
+161354.0615673563 3.3220291 1103.3752
+161355.0615674607 3.3219898 1103.3555
+161356.061567565 3.3221471 1103.2765
+161357.0615676693 3.3221471 1103.2963
+161358.0615677736 3.3222654 1103.4147
+161359.0615678779 3.3223441 1103.2963
+161360.0615679822 3.3222654 1103.2963
+161361.0615680865 3.3225017 1103.316
+161362.0615681908 3.3224621 1103.3752
+161363.0615682951 3.3226197 1103.3949
+161364.0615683994 3.3226984 1103.3357
+161365.0615685037 3.322659 1103.3752
+161366.061568608 3.3226984 1103.3752
+161367.0615687124 3.3227377 1103.4147
+161368.0615688167 3.3228953 1103.3357
+161369.061568921 3.3228953 1103.316
+161370.0615690253 3.323092 1103.316
+161371.0615691296 3.323092 1103.3949
+161372.0615692339 3.3231316 1103.3752
+161373.0615693382 3.3233283 1103.3357
+161374.0615694425 3.3233676 1103.3357
+161375.0615695468 3.3234465 1103.3752
+161376.0615696511 3.3235252 1103.3752
+161377.0615697554 3.3236432 1103.3949
+161378.0615698597 3.3236825 1103.2963
+161379.061569964 3.3238401 1103.316
+161380.0615700684 3.3238795 1103.2567
+161381.0615701727 3.3238008 1103.3357
+161382.061570277 3.3240764 1103.3555
+161383.0615703813 3.3241158 1103.3949
+161384.0615704856 3.3241944 1103.3357
+161385.0615705899 3.3242338 1103.3752
+161386.0615706942 3.3243124 1103.316
+161387.0615707985 3.3243914 1103.2963
+161388.0615709028 3.32447 1103.3555
+161389.0615710071 3.3245487 1103.2567
+161390.0615711114 3.3245881 1103.3555
+161391.0615712157 3.3245881 1103.4542
+161392.0615713201 3.3247063 1103.3752
+161393.0615714244 3.3248243 1103.316
+161394.0615715287 3.324785 1103.3357
+161395.061571633 3.3248243 1103.3555
+161396.0615717373 3.324903 1103.3357
+161397.0615718416 3.3250213 1103.474
+161398.0615719459 3.3251393 1103.3555
+161399.0615720502 3.3251786 1103.3752
+161400.0615721545 3.3252969 1103.2963
+161401.0615722588 3.3253362 1103.2765
+161402.0615723631 3.3253362 1103.3555
+161403.0615724674 3.3254542 1103.3752
+161404.0615725718 3.3255725 1103.3752
+161405.0615726761 3.3255329 1103.2765
+161406.0615727804 3.3256905 1103.316
+161407.0615728847 3.3257298 1103.3357
+161408.061572989 3.3257298 1103.316
+161409.0615730933 3.3257692 1103.3555
+161410.0615731976 3.3258874 1103.3752
+161411.0615733019 3.3258479 1103.4147
+161412.0615734062 3.3258874 1103.3555
+161413.0615735105 3.3260448 1103.316
+161414.0615736148 3.3260055 1103.2369
+161415.0615737191 3.3260448 1103.316
+161416.0615738234 3.3260841 1103.3555
+161417.0615739278 3.3261235 1103.3752
+161418.0615740321 3.3262417 1103.3555
+161419.0615741364 3.3262024 1103.3555
+161420.0615742407 3.3261628 1103.2567
+161421.061574345 3.3263204 1103.3752
+161422.0615744493 3.3264384 1103.2963
+161423.0615745536 3.3265173 1103.3555
+161424.0615746579 3.3264384 1103.3752
+161425.0615747622 3.3268323 1103.3357
+161426.0615748665 3.326714 1103.316
+161427.0615749708 3.3267534 1103.2963
+161428.0615750751 3.3268323 1103.3949
+161429.0615751795 3.3269503 1103.3949
+161430.0615752838 3.3268716 1103.3357
+161431.0615753881 3.327029 1103.2963
+161432.0615754924 3.3270683 1103.316
+161433.0615755967 3.3270683 1103.3357
+161434.061575701 3.3271866 1103.316
+161435.0615758053 3.3273046 1103.4147
+161436.0615759096 3.3271866 1103.316
+161437.0615760139 3.3273046 1103.316
+161438.0615761182 3.3272653 1103.2765
+161439.0615762225 3.3274622 1103.316
+161440.0615763268 3.3274229 1103.3357
+161441.0615764312 3.3275015 1103.3555
+161442.0615765355 3.3275015 1103.3949
+161443.0615766398 3.3276589 1103.3555
+161444.0615767441 3.3278165 1103.3752
+161445.0615768484 3.3278165 1103.4542
+161446.0615769527 3.3278558 1103.316
+161447.061577057 3.3280132 1103.2765
+161448.0615771613 3.3280132 1103.3357
+161449.0615772656 3.3281314 1103.2765
+161450.0615773699 3.3282101 1103.4147
+161451.0615774742 3.3283281 1103.316
+161452.0615775785 3.3283677 1103.2765
+161453.0615776828 3.3284464 1103.474
+161454.0615777872 3.3285251 1103.2963
+161455.0615778915 3.3285251 1103.3357
+161456.0615779958 3.3286037 1103.3949
+161457.0615781001 3.32884 1103.316
+161458.0615782044 3.3288007 1103.4344
+161459.0615783087 3.32884 1103.316
+161460.061578413 3.3289187 1103.3752
+161461.0615785173 3.3289976 1103.2963
+161462.0615786216 3.3291156 1103.316
+161463.0615787259 3.3291156 1103.3357
+161464.0615788302 3.3292732 1103.2765
+161465.0615789345 3.3292732 1103.3752
+161466.0615790389 3.3293912 1103.316
+161467.0615791432 3.3294699 1103.316
+161468.0615792475 3.3295093 1103.3949
+161469.0615793518 3.3297062 1103.3555
+161470.0615794561 3.3296275 1103.3949
+161471.0615795604 3.3297455 1103.316
+161472.0615796647 3.3297062 1103.3752
+161473.061579769 3.3299425 1103.4147
+161474.0615798733 3.3299031 1103.3949
+161475.0615799776 3.3300605 1103.3555
+161476.0615800819 3.3300211 1103.3357
+161477.0615801862 3.3301392 1103.3752
+161478.0615802906 3.3302574 1103.2369
+161479.0615803949 3.3302968 1103.3752
+161480.0615804992 3.3302574 1103.3949
+161481.0615806035 3.3303754 1103.3752
+161482.0615807078 3.3304148 1103.3555
+161483.0615808121 3.3304935 1103.3555
+161484.0615809164 3.3304541 1103.3357
+161485.0615810207 3.330533 1103.3357
+161486.061581125 3.3306117 1103.3555
+161487.0615812293 3.330651 1103.3752
+161488.0615813336 3.3307297 1103.2765
+161489.0615814379 3.330848 1103.3357
+161490.0615815423 3.3307691 1103.316
+161491.0615816466 3.330966 1103.3555
+161492.0615817509 3.3310053 1103.3555
+161493.0615818552 3.3309267 1103.3555
+161494.0615819595 3.3310053 1103.2765
+161495.0615820638 3.3310053 1103.3752
+161496.0615821681 3.3311629 1103.316
+161497.0615822724 3.3311629 1103.4147
+161498.0615823767 3.3313596 1103.3555
+161499.061582481 3.3312416 1103.3752
+161500.0615825853 3.3313596 1103.3949
+161501.0615826896 3.3314385 1103.3949
+161502.0615827939 3.3314779 1103.3357
+161503.0615828983 3.3315566 1103.3949
+161504.0615830026 3.3316352 1103.3949
+161505.0615831069 3.3316352 1103.2567
+161506.0615832112 3.3317535 1103.4344
+161507.0615833155 3.3318322 1103.3752
+161508.0615834198 3.3319108 1103.316
+161509.0615835241 3.3320289 1103.3357
+161510.0615836284 3.3320684 1103.3949
+161511.0615837327 3.3321471 1103.3752
+161512.061583837 3.3322651 1103.2567
+161513.0615839413 3.3322258 1103.3357
+161514.0615840456 3.3323438 1103.3949
+161515.06158415 3.3324227 1103.2765
+161516.0615842543 3.3324621 1103.3555
+161517.0615843586 3.3325408 1103.3555
+161518.0615844629 3.3325801 1103.2765
+161519.0615845672 3.3325014 1103.3555
+161520.0615846715 3.332777 1103.316
+161521.0615847758 3.332659 1103.316
+161522.0615848801 3.3328557 1103.2963
+161523.0615849844 3.3328557 1103.2369
+161524.0615850887 3.332974 1103.3555
+161525.061585193 3.3330133 1103.3752
+161526.0615852973 3.3330133 1103.3752
+161527.0615854017 3.3331707 1103.3555
+161528.061585506 3.3332493 1103.3357
+161529.0615856103 3.3333282 1103.3752
+161530.0615857146 3.3333676 1103.316
+161531.0615858189 3.3335249 1103.316
+161532.0615859232 3.3335643 1103.3949
+161533.0615860275 3.3337219 1103.3357
+161534.0615861318 3.3337612 1103.474
+161535.0615862361 3.3338792 1103.3555
+161536.0615863404 3.3339188 1103.3949
+161537.0615864447 3.3340368 1103.3555
+161538.061586549 3.3341155 1103.3555
+161539.0615866533 3.3342338 1103.3752
+161540.0615867577 3.3344305 1103.3555
+161541.061586862 3.3344698 1103.3555
+161542.0615869663 3.3344698 1103.3357
+161543.0615870706 3.3346274 1103.316
+161544.0615871749 3.3348243 1103.3949
+161545.0615872792 3.334903 1103.3949
+161546.0615873835 3.3351786 1103.2963
+161547.0615874878 3.3352966 1103.2567
+161548.0615875921 3.3353753 1103.4542
+161549.0615876964 3.3354146 1103.316
+161550.0615878007 3.3355722 1103.3752
+161551.061587905 3.3356116 1103.2963
+161552.0615880094 3.3357692 1103.2765
+161553.0615881137 3.3359265 1103.3949
+161554.061588218 3.3359659 1103.3752
+161555.0615883223 3.3359659 1103.3555
+161556.0615884266 3.3360448 1103.3357
+161557.0615885309 3.3363202 1103.3555
+161558.0615886352 3.3362021 1103.2963
+161559.0615887395 3.3362808 1103.2963
+161560.0615888438 3.3363991 1103.3555
+161561.0615889481 3.3365171 1103.3357
+161562.0615890524 3.3364384 1103.2765
+161563.0615891567 3.3365564 1103.2963
+161564.0615892611 3.3367534 1103.3752
+161565.0615893654 3.336832 1103.2963
+161566.0615894697 3.336714 1103.4344
+161567.061589574 3.3369896 1103.3752
+161568.0615896783 3.336832 1103.3357
+161569.0615897826 3.3369501 1103.3357
+161570.0615898869 3.3370683 1103.3555
+161571.0615899912 3.3371863 1103.2963
+161572.0615900955 3.3371863 1103.2963
+161573.0615901998 3.337265 1103.3357
+161574.0615903041 3.3373439 1103.2963
+161575.0615904084 3.3373833 1103.3949
+161576.0615905127 3.3374619 1103.3357
+161577.0615906171 3.3374619 1103.316
+161578.0615907214 3.3374226 1103.3357
+161579.0615908257 3.3376195 1103.3357
+161580.06159093 3.3376982 1103.2963
+161581.0615910343 3.3376589 1103.2567
+161582.0615911386 3.3378952 1103.3949
+161583.0615912429 3.3379345 1103.3752
+161584.0615913472 3.3379738 1103.3752
+161585.0615914515 3.3379738 1103.3752
+161586.0615915558 3.3380919 1103.2172
+161587.0615916601 3.3382888 1103.3949
+161588.0615917644 3.3383281 1103.2963
+161589.0615918688 3.3383675 1103.2963
+161590.0615919731 3.3383675 1103.3357
+161591.0615920774 3.3384855 1103.316
+161592.0615921817 3.3387218 1103.3357
+161593.061592286 3.3386824 1103.3555
+161594.0615923903 3.33884 1103.3555
+161595.0615924946 3.3388793 1103.3357
+161596.0615925989 3.3389974 1103.3555
+161597.0615927032 3.3390367 1103.2765
+161598.0615928075 3.3391154 1103.3752
+161599.0615929118 3.3391943 1103.316
+161600.0615930161 3.3393517 1103.3752
+161601.0615931205 3.3394303 1103.3752
+161602.0615932248 3.339391 1103.3949
+161603.0615933291 3.3395486 1103.2963
+161604.0615934334 3.3396666 1103.3949
+161605.0615935377 3.3396273 1103.3752
+161606.061593642 3.3397455 1103.2963
+161607.0615937463 3.3398635 1103.3949
+161608.0615938506 3.3399422 1103.3949
+161609.0615939549 3.3398635 1103.3949
+161610.0615940592 3.3399422 1103.2765
+161611.0615941635 3.3400605 1103.316
+161612.0615942678 3.3400209 1103.2963
+161613.0615943722 3.3401785 1103.3752
+161614.0615944765 3.3401785 1103.2567
+161615.0615945808 3.3402965 1103.316
+161616.0615946851 3.3403358 1103.3555
+161617.0615947894 3.3403754 1103.3752
+161618.0615948937 3.3403358 1103.2963
+161619.061594998 3.3404148 1103.3555
+161620.0615951023 3.3405721 1103.316
+161621.0615952066 3.3406115 1103.3555
+161622.0615953109 3.3406904 1103.316
+161623.0615954152 3.3406115 1103.3752
+161624.0615955195 3.3408084 1103.3357
+161625.0615956238 3.3408477 1103.2567
+161626.0615957282 3.3409657 1103.3555
+161627.0615958325 3.3410053 1103.3949
+161628.0615959368 3.341084 1103.2963
+161629.0615960411 3.3409657 1103.316
+161630.0615961454 3.3410053 1103.3752
+161631.0615962497 3.341202 1103.3357
+161632.061596354 3.3411233 1103.3752
+161633.0615964583 3.3411233 1103.3752
+161634.0615965626 3.341084 1103.3752
+161635.0615966669 3.3412414 1103.3752
+161636.0615967712 3.3412807 1103.2963
+161637.0615968755 3.3413203 1103.2963
+161638.0615969799 3.341399 1103.3357
+161639.0615970842 3.3413596 1103.2765
+161640.0615971885 3.3414383 1103.3555
+161641.0615972928 3.3415959 1103.316
+161642.0615973971 3.3416746 1103.3752
+161643.0615975014 3.3416352 1103.316
+161644.0615976057 3.3417139 1103.3357
+161645.06159771 3.3416352 1103.3357
+161646.0615978143 3.3417926 1103.3752
+161647.0615979186 3.3417926 1103.3752
+161648.0615980229 3.3419895 1103.3752
+161649.0615981272 3.3419502 1103.3752
+161650.0615982316 3.3420289 1103.3949
+161651.0615983359 3.3421075 1103.3357
+161652.0615984402 3.3421862 1103.3949
+161653.0615985445 3.3421075 1103.316
+161654.0615986488 3.3423438 1103.2963
+161655.0615987531 3.3423045 1103.4542
+161656.0615988574 3.3424225 1103.316
+161657.0615989617 3.3423438 1103.3949
+161658.061599066 3.3425407 1103.3357
+161659.0615991703 3.3425012 1103.3555
+161660.0615992746 3.3426194 1103.2963
+161661.0615993789 3.3426981 1103.3555
+161662.0615994832 3.3426981 1103.2963
+161663.0615995876 3.3427768 1103.3555
+161664.0615996919 3.3428161 1103.2765
+161665.0615997962 3.343013 1103.316
+161666.0615999005 3.3429344 1103.2963
+161667.0616000048 3.3431311 1103.3357
+161668.0616001091 3.3431311 1103.2567
+161669.0616002134 3.3432887 1103.3752
+161670.0616003177 3.3432493 1103.316
+161671.061600422 3.3432887 1103.316
+161672.0616005263 3.3434463 1103.3555
+161673.0616006306 3.3434067 1103.3357
+161674.0616007349 3.3435643 1103.3357
+161675.0616008393 3.3437612 1103.3555
+161676.0616009436 3.343643 1103.4542
+161677.0616010479 3.3436823 1103.3949
+161678.0616011522 3.3437612 1103.2963
+161679.0616012565 3.3438399 1103.3357
+161680.0616013608 3.3439972 1103.3752
+161681.0616014651 3.3439972 1103.316
+161682.0616015694 3.3441155 1103.3949
+161683.0616016737 3.3441942 1103.3357
+161684.061601778 3.3442729 1103.3357
+161685.0616018823 3.3442729 1103.3357
+161686.0616019866 3.3444304 1103.2765
+161687.061602091 3.3445091 1103.316
+161688.0616021953 3.3445485 1103.3949
+161689.0616022996 3.3447454 1103.316
+161690.0616024039 3.3448241 1103.3752
+161691.0616025082 3.3449028 1103.2765
+161692.0616026125 3.3449028 1103.2963
+161693.0616027168 3.3450603 1103.3752
+161694.0616028211 3.345139 1103.3357
+161695.0616029254 3.3452966 1103.4147
+161696.0616030297 3.3451784 1103.3357
+161697.061603134 3.3452177 1103.3357
+161698.0616032383 3.345336 1103.316
+161699.0616033426 3.345336 1103.3752
+161700.061603447 3.3453753 1103.3752
+161701.0616035513 3.3455327 1103.3752
+161702.0616036556 3.3455327 1103.3357
+161703.0616037599 3.3456509 1103.3752
+161704.0616038642 3.3457689 1103.4147
+161705.0616039685 3.3457296 1103.4344
+161706.0616040728 3.3458083 1103.3752
+161707.0616041771 3.3458869 1103.3949
+161708.0616042814 3.3460839 1103.2369
+161709.0616043857 3.3462415 1103.4147
+161710.06160449 3.3463202 1103.3752
+161711.0616045943 3.3462808 1103.3949
+161712.0616046987 3.3464775 1103.2963
+161713.061604803 3.3466744 1103.316
+161714.0616049073 3.3466744 1103.4542
+161715.0616050116 3.3467531 1103.3949
+161716.0616051159 3.3469501 1103.3357
+161717.0616052202 3.3469501 1103.2567
+161718.0616053245 3.3471074 1103.3949
+161719.0616054288 3.3473043 1103.3555
+161720.0616055331 3.347265 1103.3555
+161721.0616056374 3.3473043 1103.2172
+161722.0616057417 3.3473437 1103.4344
+161723.061605846 3.3474224 1103.3357
+161724.0616059504 3.3474619 1103.3752
+161725.0616060547 3.3476586 1103.316
+161726.061606159 3.3476586 1103.3357
+161727.0616062633 3.3477373 1103.3752
+161728.0616063676 3.3477769 1103.3752
+161729.0616064719 3.3477373 1103.2765
+161730.0616065762 3.3478949 1103.3357
+161731.0616066805 3.3479342 1103.3949
+161732.0616067848 3.3479342 1103.3357
+161733.0616068891 3.3480523 1103.4147
+161734.0616069934 3.3482099 1103.3357
+161735.0616070977 3.3483672 1103.2963
+161736.061607202 3.3482885 1103.3752
+161737.0616073064 3.3484461 1103.3555
+161738.0616074107 3.3487217 1103.316
+161739.061607515 3.3486035 1103.3949
+161740.0616076193 3.3488004 1103.3555
+161741.0616077236 3.3489578 1103.2765
+161742.0616078279 3.3489578 1103.3555
+161743.0616079322 3.3491154 1103.2567
+161744.0616080365 3.3491154 1103.3357
+161745.0616081408 3.349194 1103.2963
+161746.0616082451 3.3493123 1103.316
+161747.0616083494 3.349391 1103.3752
+161748.0616084537 3.3494697 1103.3555
+161749.0616085581 3.349509 1103.316
+161750.0616086624 3.3495877 1103.3752
+161751.0616087667 3.3497453 1103.3752
+161752.061608871 3.349824 1103.316
+161753.0616089753 3.349824 1103.2963
+161754.0616090796 3.3499422 1103.3357
+161755.0616091839 3.3500602 1103.4344
+161756.0616092882 3.3501782 1103.316
+161757.0616093925 3.3502572 1103.3357
+161758.0616094968 3.3502965 1103.2567
+161759.0616096011 3.3502965 1103.2963
+161760.0616097054 3.3503752 1103.316
+161761.0616098098 3.3503752 1103.4147
+161762.0616099141 3.3502572 1103.2765
+161763.0616100184 3.3504145 1103.3555
+161764.0616101227 3.3504539 1103.3357
+161765.061610227 3.3505721 1103.2369
+161766.0616103313 3.3505328 1103.3357
+161767.0616104356 3.3506508 1103.2765
+161768.0616105399 3.3507295 1103.3555
+161769.0616106442 3.3507295 1103.3555
+161770.0616107485 3.3507688 1103.2963
+161771.0616108528 3.3508081 1103.3752
+161772.0616109571 3.3508477 1103.474
+161773.0616110615 3.3510051 1103.316
+161774.0616111658 3.3510444 1103.3555
+161775.0616112701 3.3510444 1103.3949
+161776.0616113744 3.351202 1103.3752
+161777.0616114787 3.3512414 1103.2369
+161778.061611583 3.3512807 1103.2765
+161779.0616116873 3.3512414 1103.3752
+161780.0616117916 3.3512807 1103.3949
+161781.0616118959 3.351517 1103.3357
+161782.0616120002 3.351438 1103.3949
+161783.0616121045 3.351438 1103.316
+161784.0616122088 3.3515563 1103.316
+161785.0616123131 3.3515956 1103.316
+161786.0616124175 3.351635 1103.3949
+161787.0616125218 3.351635 1103.316
+161788.0616126261 3.3517137 1103.3555
+161789.0616127304 3.3517926 1103.2963
+161790.0616128347 3.3519893 1103.3357
+161791.061612939 3.3519106 1103.3752
+161792.0616130433 3.3520286 1103.2765
+161793.0616131476 3.3521862 1103.4344
+161794.0616132519 3.3521469 1103.3555
+161795.0616133562 3.3522255 1103.2567
+161796.0616134605 3.3523042 1103.2567
+161797.0616135648 3.3523042 1103.2765
+161798.0616136692 3.3525405 1103.3949
+161799.0616137735 3.3526192 1103.3357
+161800.0616138778 3.3526585 1103.2765
+161801.0616139821 3.3526192 1103.3357
+161802.0616140864 3.3527374 1103.3555
+161803.0616141907 3.3528948 1103.3555
+161804.061614295 3.3527768 1103.3949
+161805.0616143993 3.353013 1103.4147
+161806.0616145036 3.353013 1103.3752
+161807.0616146079 3.3530524 1103.3357
+161808.0616147122 3.3532491 1103.3555
+161809.0616148165 3.3532097 1103.3949
+161810.0616149209 3.353328 1103.3357
+161811.0616150252 3.3533673 1103.3752
+161812.0616151295 3.3534853 1103.2567
+161813.0616152338 3.3534853 1103.3357
+161814.0616153381 3.353564 1103.2963
+161815.0616154424 3.3536034 1103.3555
+161816.0616155467 3.353761 1103.2963
+161817.061615651 3.3537216 1103.3555
+161818.0616157553 3.3537216 1103.4542
+161819.0616158596 3.3538003 1103.3357
+161820.0616159639 3.353879 1103.316
+161821.0616160682 3.3539183 1103.3357
+161822.0616161725 3.3539972 1103.2963
+161823.0616162769 3.3541152 1103.3357
+161824.0616163812 3.3541546 1103.3357
+161825.0616164855 3.3541939 1103.2765
+161826.0616165898 3.3541152 1103.4344
+161827.0616166941 3.3542335 1103.316
+161828.0616167984 3.3542728 1103.3752
+161829.0616169027 3.3542335 1103.316
+161830.061617007 3.3544302 1103.3949
+161831.0616171113 3.3543515 1103.2369
+161832.0616172156 3.3544302 1103.3752
+161833.0616173199 3.3544302 1103.2963
+161834.0616174242 3.3545089 1103.3949
+161835.0616175286 3.3545878 1103.4147
+161836.0616176329 3.3546271 1103.3949
+161837.0616177372 3.3546665 1103.3752
+161838.0616178415 3.3546665 1103.3555
+161839.0616179458 3.3547451 1103.3357
+161840.0616180501 3.3548238 1103.2567
+161841.0616181544 3.3548634 1103.3357
+161842.0616182587 3.3548634 1103.2963
+161843.061618363 3.3549814 1103.2765
+161844.0616184673 3.3551388 1103.2567
+161845.0616185716 3.3551388 1103.316
+161846.0616186759 3.3551784 1103.2765
+161847.0616187803 3.3552964 1103.316
+161848.0616188846 3.3553751 1103.4344
+161849.0616189889 3.3554537 1103.3949
+161850.0616190932 3.3554933 1103.3949
+161851.0616191975 3.3555326 1103.3357
+161852.0616193018 3.355572 1103.3357
+161853.0616194061 3.3557689 1103.3357
+161854.0616195104 3.3557293 1103.2765
+161855.0616196147 3.3558083 1103.4542
+161856.061619719 3.3558869 1103.3357
+161857.0616198233 3.3558476 1103.3357
+161858.0616199276 3.3560839 1103.2172
+161859.0616200319 3.356005 1103.3357
+161860.0616201363 3.3560839 1103.3555
+161861.0616202406 3.3561625 1103.3752
+161862.0616203449 3.3563199 1103.3555
+161863.0616204492 3.3563988 1103.3357
+161864.0616205535 3.3563988 1103.2567
+161865.0616206578 3.3565168 1103.2567
+161866.0616207621 3.3565168 1103.316
+161867.0616208664 3.3565562 1103.316
+161868.0616209707 3.3566349 1103.3357
+161869.061621075 3.3568318 1103.3555
+161870.0616211793 3.3568711 1103.3949
+161871.0616212836 3.3568711 1103.3752
+161872.061621388 3.3569498 1103.3357
+161873.0616214923 3.3569498 1103.2765
+161874.0616215966 3.3569891 1103.3752
+161875.0616217009 3.3569498 1103.2963
+161876.0616218052 3.3569891 1103.3357
+161877.0616219095 3.3571467 1103.3357
+161878.0616220138 3.3573041 1103.4147
+161879.0616221181 3.3572254 1103.3555
+161880.0616222224 3.3572254 1103.3357
+161881.0616223267 3.3574617 1103.3555
+161882.061622431 3.3574617 1103.316
+161883.0616225353 3.357501 1103.3357
+161884.0616226397 3.357501 1103.3357
+161885.061622744 3.3575797 1103.3357
+161886.0616228483 3.357698 1103.3555
+161887.0616229526 3.357698 1103.3555
+161888.0616230569 3.3578947 1103.2963
+161889.0616231612 3.3579736 1103.3949
+161890.0616232655 3.3580916 1103.3357
+161891.0616233698 3.3581703 1103.3555
+161892.0616234741 3.3584065 1103.3357
+161893.0616235784 3.3584065 1103.2765
+161894.0616236827 3.3584852 1103.316
+161895.061623787 3.3587608 1103.2172
+161896.0616238914 3.3587215 1103.3752
+161897.0616239957 3.3586822 1103.3555
+161898.0616241 3.3588395 1103.2963
+161899.0616242043 3.3588791 1103.3555
+161900.0616243086 3.3588395 1103.3752
+161901.0616244129 3.3589184 1103.316
+161902.0616245172 3.3589578 1103.2765
+161903.0616246215 3.3589578 1103.3555
+161904.0616247258 3.3590364 1103.316
+161905.0616248301 3.3591151 1103.2963
+161906.0616249344 3.3592727 1103.2765
+161907.0616250387 3.3593514 1103.316
+161908.061625143 3.3594697 1103.4147
+161909.0616252474 3.3594697 1103.2567
+161910.0616253517 3.3594697 1103.4147
+161911.061625456 3.359509 1103.3555
+161912.0616255603 3.3597057 1103.2567
+161913.0616256646 3.3597846 1103.2963
+161914.0616257689 3.3598633 1103.3555
+161915.0616258732 3.359942 1103.4147
+161916.0616259775 3.36006 1103.3752
+161917.0616260818 3.3601389 1103.2963
+161918.0616261861 3.3601782 1103.2963
+161919.0616262904 3.3602569 1103.3752
+161920.0616263947 3.3602962 1103.2963
+161921.0616264991 3.3604538 1103.3357
+161922.0616266034 3.3604145 1103.3752
+161923.0616267077 3.3604932 1103.2765
+161924.061626812 3.3606505 1103.2567
+161925.0616269163 3.3605719 1103.316
+161926.0616270206 3.3607688 1103.316
+161927.0616271249 3.3608475 1103.2963
+161928.0616272292 3.3608868 1103.3555
+161929.0616273335 3.3609655 1103.2963
+161930.0616274378 3.3610444 1103.3752
+161931.0616275421 3.3612018 1103.3555
+161932.0616276464 3.3611231 1103.2963
+161933.0616277508 3.36132 1103.3949
+161934.0616278551 3.3612411 1103.316
+161935.0616279594 3.3612411 1103.3752
+161936.0616280637 3.3613987 1103.3357
+161937.061628168 3.361438 1103.3752
+161938.0616282723 3.3613987 1103.316
+161939.0616283766 3.361438 1103.3555
+161940.0616284809 3.3613987 1103.316
+161941.0616285852 3.3615167 1103.3555
+161942.0616286895 3.361635 1103.3752
+161943.0616287938 3.3615954 1103.2963
+161944.0616288981 3.3616743 1103.4147
+161945.0616290024 3.361753 1103.316
+161946.0616291068 3.361871 1103.2963
+161947.0616292111 3.361871 1103.2963
+161948.0616293154 3.361871 1103.3555
+161949.0616294197 3.3619103 1103.3555
+161950.061629524 3.3621073 1103.316
+161951.0616296283 3.3621466 1103.2765
+161952.0616297326 3.3621073 1103.316
+161953.0616298369 3.3623042 1103.3555
+161954.0616299412 3.3623435 1103.3357
+161955.0616300455 3.3624616 1103.3555
+161956.0616301498 3.3625402 1103.3555
+161957.0616302541 3.3625402 1103.3357
+161958.0616303585 3.3626192 1103.3949
+161959.0616304628 3.3626978 1103.3555
+161960.0616305671 3.3628552 1103.3949
+161961.0616306714 3.3627372 1103.3555
+161962.0616307757 3.3627372 1103.2963
+161963.06163088 3.3628948 1103.3949
+161964.0616309843 3.3628552 1103.3357
+161965.0616310886 3.3629341 1103.3949
+161966.0616311929 3.3629735 1103.3357
+161967.0616312972 3.3630521 1103.3555
+161968.0616314015 3.3631308 1103.2567
+161969.0616315058 3.3631704 1103.3357
+161970.0616316102 3.3632097 1103.3949
+161971.0616317145 3.3633671 1103.3752
+161972.0616318188 3.3633671 1103.3752
+161973.0616319231 3.3634064 1103.4344
+161974.0616320274 3.363564 1103.4344
+161975.0616321317 3.3636034 1103.2963
+161976.061632236 3.363564 1103.3555
+161977.0616323403 3.363682 1103.3949
+161978.0616324446 3.3637214 1103.3949
+161979.0616325489 3.3639576 1103.3555
+161980.0616326532 3.3640363 1103.316
+161981.0616327575 3.3640757 1103.2963
+161982.0616328618 3.3641939 1103.316
+161983.0616329662 3.3642333 1103.3555
+161984.0616330705 3.3645089 1103.4147
+161985.0616331748 3.3645875 1103.3949
+161986.0616332791 3.3645482 1103.3357
+161987.0616333834 3.3647056 1103.3949
+161988.0616334877 3.3647845 1103.316
+161989.061633592 3.3647451 1103.3752
+161990.0616336963 3.3648238 1103.3949
+161991.0616338006 3.3648238 1103.2567
+161992.0616339049 3.3649812 1103.316
+161993.0616340092 3.3649812 1103.3357
+161994.0616341135 3.3651388 1103.2765
+161995.0616342179 3.3651781 1103.3752
+161996.0616343222 3.3651781 1103.2963
+161997.0616344265 3.3652174 1103.3555
+161998.0616345308 3.365375 1103.2765
+161999.0616346351 3.3655324 1103.4344
+162000.0616347394 3.3655717 1103.3752
+162001.0616348437 3.3656111 1103.3357
+162002.061634948 3.3657293 1103.4147
+162003.0616350523 3.3657687 1103.316
+162004.0616351566 3.3658867 1103.2567
+162005.0616352609 3.3658867 1103.2963
+162006.0616353652 3.365926 1103.3555
+162007.0616354696 3.3660443 1103.316
+162008.0616355739 3.3662016 1103.4147
+162009.0616356782 3.366241 1103.3752
+162010.0616357825 3.3663199 1103.3555
+162011.0616358868 3.3662806 1103.316
+162012.0616359911 3.3663592 1103.3555
+162013.0616360954 3.3664379 1103.3357
+162014.0616361997 3.3664773 1103.316
+162015.061636304 3.3666348 1103.3752
+162016.0616364083 3.3666348 1103.2963
+162017.0616365126 3.3666742 1103.316
+162018.0616366169 3.3667922 1103.316
+162019.0616367213 3.3667135 1103.2567
+162020.0616368256 3.3667529 1103.3555
+162021.0616369299 3.3669105 1103.3357
+162022.0616370342 3.3669105 1103.3949
+162023.0616371385 3.3670285 1103.3555
+162024.0616372428 3.3670678 1103.3357
+162025.0616373471 3.3671465 1103.3949
+162026.0616374514 3.3670678 1103.3752
+162027.0616375557 3.3672254 1103.3357
+162028.06163766 3.3671861 1103.2963
+162029.0616377643 3.3673828 1103.3949
+162030.0616378686 3.3674221 1103.3357
+162031.0616379729 3.3674614 1103.2567
+162032.0616380773 3.3675404 1103.3752
+162033.0616381816 3.367619 1103.3357
+162034.0616382859 3.3676584 1103.2963
+162035.0616383902 3.3677371 1103.316
+162036.0616384945 3.3678553 1103.4147
+162037.0616385988 3.367934 1103.3357
+162038.0616387031 3.368052 1103.3357
+162039.0616388074 3.3680127 1103.3555
+162040.0616389117 3.3681309 1103.3752
+162041.061639016 3.3681703 1103.3555
+162042.0616391203 3.368367 1103.2963
+162043.0616392246 3.3683276 1103.2963
+162044.061639329 3.3684065 1103.2765
+162045.0616394333 3.3685246 1103.4147
+162046.0616395376 3.3684852 1103.3357
+162047.0616396419 3.3685246 1103.3555
+162048.0616397462 3.3685639 1103.3949
+162049.0616398505 3.3687215 1103.3752
+162050.0616399548 3.3686819 1103.3752
+162051.0616400591 3.3687215 1103.2963
+162052.0616401634 3.3688395 1103.4542
+162053.0616402677 3.3689575 1103.316
+162054.061640372 3.3689969 1103.4542
+162055.0616404763 3.3689182 1103.2963
+162056.0616405807 3.3690364 1103.2765
+162057.061640685 3.3691151 1103.3752
+162058.0616407893 3.3691545 1103.3555
+162059.0616408936 3.3692331 1103.3752
+162060.0616409979 3.3692331 1103.2765
+162061.0616411022 3.3693514 1103.2567
+162062.0616412065 3.3694301 1103.3949
+162063.0616413108 3.3695481 1103.3752
+162064.0616414151 3.3695087 1103.2963
+162065.0616415194 3.3696663 1103.3752
+162066.0616416237 3.3697057 1103.316
+162067.061641728 3.369745 1103.3357
+162068.0616418323 3.3698237 1103.4344
+162069.0616419367 3.369745 1103.3752
+162070.061642041 3.3699417 1103.316
+162071.0616421453 3.37006 1103.316
+162072.0616422496 3.3700206 1103.2963
+162073.0616423539 3.3700206 1103.3949
+162074.0616424582 3.3702173 1103.3752
+162075.0616425625 3.3702569 1103.3752
+162076.0616426668 3.370178 1103.3555
+162077.0616427711 3.370178 1103.2963
+162078.0616428754 3.3703749 1103.3357
+162079.0616429797 3.3703749 1103.3949
+162080.061643084 3.3704143 1103.3357
+162081.0616431884 3.3703749 1103.3752
+162082.0616432927 3.3703749 1103.3555
+162083.061643397 3.3705719 1103.3555
+162084.0616435013 3.3706899 1103.3357
+162085.0616436056 3.3707292 1103.2963
+162086.0616437099 3.3708079 1103.3752
+162087.0616438142 3.3708868 1103.3555
+162088.0616439185 3.3709655 1103.3555
+162089.0616440228 3.3710442 1103.2963
+162090.0616441271 3.3710442 1103.3949
+162091.0616442314 3.3711622 1103.2963
+162092.0616443357 3.3712411 1103.3752
+162093.0616444401 3.3713591 1103.3949
+162094.0616445444 3.3712804 1103.3752
+162095.0616446487 3.3713984 1103.3949
+162096.061644753 3.3714378 1103.3357
+162097.0616448573 3.3715167 1103.3949
+162098.0616449616 3.371556 1103.3752
+162099.0616450659 3.3716741 1103.3555
+162100.0616451702 3.3717527 1103.3752
+162101.0616452745 3.3718317 1103.3752
+162102.0616453788 3.371871 1103.3357
+162103.0616454831 3.3719103 1103.3949
+162104.0616455874 3.3719103 1103.3555
+162105.0616456917 3.371989 1103.2369
+162106.0616457961 3.3720677 1103.3949
+162107.0616459004 3.3721073 1103.2963
+162108.0616460047 3.3720284 1103.2765
+162109.061646109 3.3721466 1103.3752
+162110.0616462133 3.3721859 1103.316
+162111.0616463176 3.3722253 1103.3752
+162112.0616464219 3.372304 1103.3949
+162113.0616465262 3.3723433 1103.316
+162114.0616466305 3.372304 1103.4147
+162115.0616467348 3.3724222 1103.3949
+162116.0616468391 3.3724616 1103.3357
+162117.0616469434 3.3725009 1103.3555
+162118.0616470478 3.3726189 1103.474
+162119.0616471521 3.3727372 1103.316
+162120.0616472564 3.3726976 1103.3949
+162121.0616473607 3.3728158 1103.3949
+162122.061647465 3.3728158 1103.2963
+162123.0616475693 3.3728945 1103.2963
+162124.0616476736 3.3727765 1103.3357
+162125.0616477779 3.3728945 1103.3357
+162126.0616478822 3.3730521 1103.3357
+162127.0616479865 3.3730125 1103.2963
+162128.0616480908 3.3731308 1103.4542
+162129.0616481951 3.3732488 1103.1975
+162130.0616482995 3.3732095 1103.3357
+162131.0616484038 3.3733275 1103.3752
+162132.0616485081 3.3732882 1103.3752
+162133.0616486124 3.3733275 1103.4542
+162134.0616487167 3.3734064 1103.3357
+162135.061648821 3.3733671 1103.4147
+162136.0616489253 3.3734064 1103.3752
+162137.0616490296 3.3734064 1103.3752
+162138.0616491339 3.3735638 1103.4344
+162139.0616492382 3.3735638 1103.2963
+162140.0616493425 3.373682 1103.3555
+162141.0616494468 3.3736424 1103.3555
+162142.0616495511 3.3737607 1103.3555
+162143.0616496555 3.3737607 1103.3752
+162144.0616497598 3.3738394 1103.2963
+162145.0616498641 3.3740363 1103.3949
+162146.0616499684 3.3739576 1103.3357
+162147.0616500727 3.3740757 1103.2765
+162148.061650177 3.3740757 1103.3949
+162149.0616502813 3.3741543 1103.4147
+162150.0616503856 3.374233 1103.3752
+162151.0616504899 3.3743119 1103.3357
+162152.0616505942 3.3743513 1103.3555
+162153.0616506985 3.3743119 1103.3357
+162154.0616508028 3.3744299 1103.3555
+162155.0616509072 3.3745875 1103.474
+162156.0616510115 3.3747056 1103.2567
+162157.0616511158 3.3746662 1103.3555
+162158.0616512201 3.3748629 1103.4147
+162159.0616513244 3.3749025 1103.3949
+162160.0616514287 3.3749418 1103.2963
+162161.061651533 3.3750992 1103.3357
+162162.0616516373 3.3749812 1103.316
+162163.0616517416 3.3752568 1103.3555
+162164.0616518459 3.3751779 1103.3949
+162165.0616519502 3.3753355 1103.2567
+162166.0616520545 3.3753748 1103.2567
+162167.0616521589 3.375493 1103.2963
+162168.0616522632 3.3757291 1103.3357
+162169.0616523675 3.3756504 1103.3357
+162170.0616524718 3.3756897 1103.3752
+162171.0616525761 3.3757684 1103.3752
+162172.0616526804 3.3758473 1103.3752
+162173.0616527847 3.3758867 1103.2567
+162174.061652889 3.3760047 1103.3752
+162175.0616529933 3.3759654 1103.316
+162176.0616530976 3.3760834 1103.3949
+162177.0616532019 3.3760834 1103.4147
+162178.0616533062 3.3761623 1103.3555
+162179.0616534106 3.3762016 1103.3752
+162180.0616535149 3.3763196 1103.2963
+162181.0616536192 3.3763983 1103.474
+162182.0616537235 3.3764379 1103.4147
+162183.0616538278 3.3766346 1103.2369
+162184.0616539321 3.3765166 1103.3357
+162185.0616540364 3.3767922 1103.3752
+162186.0616541407 3.3767529 1103.3555
+162187.061654245 3.3767922 1103.3949
+162188.0616543493 3.3769495 1103.3752
+162189.0616544536 3.3768709 1103.3555
+162190.0616545579 3.3769889 1103.316
+162191.0616546622 3.3770282 1103.3357
+162192.0616547666 3.3771071 1103.3752
+162193.0616548709 3.3771858 1103.3949
+162194.0616549752 3.3772252 1103.3752
+162195.0616550795 3.3772645 1103.316
+162196.0616551838 3.3771858 1103.2963
+162197.0616552881 3.3773828 1103.3357
+162198.0616553924 3.3772645 1103.3555
+162199.0616554967 3.3773038 1103.3949
+162200.061655601 3.3773434 1103.3555
+162201.0616557053 3.3773434 1103.3752
+162202.0616558096 3.3774221 1103.3555
+162203.0616559139 3.3775795 1103.4344
+162204.0616560183 3.3776584 1103.2963
+162205.0616561226 3.3776188 1103.3357
+162206.0616562269 3.3776188 1103.316
+162207.0616563312 3.3776584 1103.2567
+162208.0616564355 3.3778157 1103.3949
+162209.0616565398 3.3779337 1103.3555
+162210.0616566441 3.3779733 1103.2765
+162211.0616567484 3.3778944 1103.3555
+162212.0616568527 3.3779733 1103.3555
+162213.061656957 3.3780913 1103.3752
+162214.0616570613 3.3782094 1103.3752
+162215.0616571656 3.378052 1103.3555
+162216.06165727 3.3780913 1103.3555
+162217.0616573743 3.3782883 1103.4344
+162218.0616574786 3.3784063 1103.3752
+162219.0616575829 3.378485 1103.3555
+162220.0616576872 3.3784456 1103.3752
+162221.0616577915 3.3786032 1103.316
+162222.0616578958 3.3786032 1103.3752
+162223.0616580001 3.3786819 1103.2765
+162224.0616581044 3.3786819 1103.3357
+162225.0616582087 3.3788786 1103.3357
+162226.061658313 3.3789182 1103.316
+162227.0616584173 3.3788786 1103.3357
+162228.0616585216 3.3790362 1103.3357
+162229.061658626 3.3790755 1103.2765
+162230.0616587303 3.3791542 1103.4147
+162231.0616588346 3.3791149 1103.3949
+162232.0616589389 3.3792725 1103.3357
+162233.0616590432 3.3791938 1103.3357
+162234.0616591475 3.3792331 1103.3555
+162235.0616592518 3.3793511 1103.3555
+162236.0616593561 3.3794298 1103.3555
+162237.0616594604 3.3794298 1103.3357
+162238.0616595647 3.3795874 1103.3357
+162239.061659669 3.3795874 1103.3357
+162240.0616597733 3.3795874 1103.4147
+162241.0616598777 3.3797841 1103.316
+162242.061659982 3.3799024 1103.316
+162243.0616600863 3.379863 1103.3357
+162244.0616601906 3.3799024 1103.3752
+162245.0616602949 3.3800204 1103.3949
+162246.0616603992 3.379981 1103.3752
+162247.0616605035 3.3801386 1103.2963
+162248.0616606078 3.3800204 1103.3752
+162249.0616607121 3.3802173 1103.3357
+162250.0616608164 3.3802173 1103.2963
+162251.0616609207 3.380296 1103.3555
+162252.061661025 3.3803747 1103.3949
+162253.0616611294 3.380414 1103.3752
+162254.0616612337 3.3805716 1103.2963
+162255.061661338 3.3805323 1103.3949
+162256.0616614423 3.3805716 1103.2765
+162257.0616615466 3.3806896 1103.2765
+162258.0616616509 3.3806896 1103.3752
+162259.0616617552 3.3808472 1103.4344
+162260.0616618595 3.3808472 1103.2963
+162261.0616619638 3.3809652 1103.3949
+162262.0616620681 3.3809259 1103.3752
+162263.0616621724 3.3809652 1103.3357
+162264.0616622767 3.3810046 1103.474
+162265.061662381 3.3810835 1103.3357
+162266.0616624854 3.3811228 1103.2765
+162267.0616625897 3.3812015 1103.3752
+162268.061662694 3.3813195 1103.3949
+162269.0616627983 3.3813591 1103.3555
+162270.0616629026 3.3813195 1103.3752
+162271.0616630069 3.3814378 1103.3357
+162272.0616631112 3.3814378 1103.2963
+162273.0616632155 3.3815951 1103.2963
+162274.0616633198 3.3815165 1103.3357
+162275.0616634241 3.3817134 1103.3752
+162276.0616635284 3.3816345 1103.3357
+162277.0616636327 3.3816345 1103.3555
+162278.0616637371 3.3817134 1103.4147
+162279.0616638414 3.3817527 1103.3357
+162280.0616639457 3.3817527 1103.2567
+162281.06166405 3.3817921 1103.3357
+162282.0616641543 3.3818314 1103.474
+162283.0616642586 3.3819101 1103.2765
+162284.0616643629 3.3819101 1103.316
+162285.0616644672 3.3819101 1103.2765
+162286.0616645715 3.3820677 1103.3949
+162287.0616646758 3.3819494 1103.3357
+162288.0616647801 3.3819101 1103.316
+162289.0616648844 3.3820283 1103.2963
+162290.0616649888 3.382107 1103.4147
+162291.0616650931 3.382107 1103.2963
+162292.0616651974 3.3821857 1103.3752
+162293.0616653017 3.3822644 1103.3357
+162294.061665406 3.3822644 1103.3555
+162295.0616655103 3.3823433 1103.3357
+162296.0616656146 3.3823826 1103.3357
+162297.0616657189 3.3823433 1103.2963
+162298.0616658232 3.3824613 1103.3949
+162299.0616659275 3.38254 1103.3555
+162300.0616660318 3.3823826 1103.3949
+162301.0616661361 3.3823826 1103.3357
+162302.0616662405 3.3826976 1103.2963
+162303.0616663448 3.3827369 1103.3752
+162304.0616664491 3.3826582 1103.4147
+162305.0616665534 3.3828549 1103.3949
+162306.0616666577 3.3829732 1103.3752
+162307.061666762 3.3830519 1103.3949
+162308.0616668663 3.3829339 1103.2963
+162309.0616669706 3.3830519 1103.3357
+162310.0616670749 3.3830912 1103.3949
+162311.0616671792 3.3831699 1103.2963
+162312.0616672835 3.3832095 1103.3555
+162313.0616673878 3.3833275 1103.4344
+162314.0616674921 3.3833275 1103.4344
+162315.0616675965 3.3832881 1103.3752
+162316.0616677008 3.3834455 1103.316
+162317.0616678051 3.3836031 1103.3555
+162318.0616679094 3.3836031 1103.4542
+162319.0616680137 3.3835638 1103.3555
+162320.061668118 3.3836818 1103.3357
+162321.0616682223 3.3837605 1103.3357
+162322.0616683266 3.3837605 1103.3555
+162323.0616684309 3.3838394 1103.3555
+162324.0616685352 3.3838787 1103.3752
+162325.0616686395 3.383918 1103.4344
+162326.0616687438 3.383918 1103.3752
+162327.0616688482 3.3839574 1103.3357
+162328.0616689525 3.3841147 1103.2963
+162329.0616690568 3.3840754 1103.3555
+162330.0616691611 3.3841543 1103.2963
+162331.0616692654 3.3841147 1103.4147
+162332.0616693697 3.384233 1103.3752
+162333.061669474 3.3843117 1103.3555
+162334.0616695783 3.384351 1103.3752
+162335.0616696826 3.3844299 1103.3752
+162336.0616697869 3.3845479 1103.3949
+162337.0616698912 3.3845479 1103.3555
+162338.0616699955 3.3845479 1103.316
+162339.0616700999 3.3844299 1103.2567
+162340.0616702042 3.3845873 1103.2963
+162341.0616703085 3.384666 1103.3555
+162342.0616704128 3.3847053 1103.3357
+162343.0616705171 3.384666 1103.2765
+162344.0616706214 3.3847842 1103.3752
+162345.0616707257 3.3848236 1103.4542
+162346.06167083 3.3849022 1103.3357
+162347.0616709343 3.3850203 1103.3752
+162348.0616710386 3.3850598 1103.3357
+162349.0616711429 3.3850203 1103.2369
+162350.0616712472 3.3850992 1103.3949
+162351.0616713515 3.3851385 1103.3357
+162352.0616714559 3.3852172 1103.3357
+162353.0616715602 3.3851779 1103.316
+162354.0616716645 3.3851779 1103.3555
+162355.0616717688 3.3852565 1103.4344
+162356.0616718731 3.3852172 1103.2567
+162357.0616719774 3.3852959 1103.2567
+162358.0616720817 3.3854141 1103.3357
+162359.061672186 3.3854535 1103.3357
+162360.0616722903 3.3853352 1103.3949
+162361.0616723946 3.3854535 1103.2765
+162362.0616724989 3.3855715 1103.3357
+162363.0616726032 3.3855321 1103.3555
+162364.0616727076 3.3856502 1103.2765
+162365.0616728119 3.3857684 1103.3949
+162366.0616729162 3.3857291 1103.3555
+162367.0616730205 3.3857684 1103.3555
+162368.0616731248 3.3859651 1103.3555
+162369.0616732291 3.386044 1103.3357
+162370.0616733334 3.3860047 1103.3357
+162371.0616734377 3.3860834 1103.3949
+162372.061673542 3.3862407 1103.3949
+162373.0616736463 3.3862803 1103.3752
+162374.0616737506 3.3863196 1103.316
+162375.0616738549 3.3864377 1103.2567
+162376.0616739593 3.3865952 1103.3555
+162377.0616740636 3.3866346 1103.2567
+162378.0616741679 3.3866739 1103.3357
+162379.0616742722 3.3866346 1103.3357
+162380.0616743765 3.3867919 1103.4147
+162381.0616744808 3.3868313 1103.3555
+162382.0616745851 3.3869495 1103.3752
+162383.0616746894 3.3869889 1103.3357
+162384.0616747937 3.3870676 1103.2963
+162385.061674898 3.3871069 1103.3752
+162386.0616750023 3.3872252 1103.3357
+162387.0616751066 3.3873432 1103.3357
+162388.0616752109 3.3873038 1103.2765
+162389.0616753153 3.3874612 1103.3949
+162390.0616754196 3.3873432 1103.3949
+162391.0616755239 3.3873432 1103.3357
+162392.0616756282 3.3875005 1103.3357
+162393.0616757325 3.3875794 1103.316
+162394.0616758368 3.3876188 1103.3752
+162395.0616759411 3.3875794 1103.3752
+162396.0616760454 3.3876975 1103.3357
+162397.0616761497 3.3878551 1103.3555
+162398.061676254 3.3878944 1103.3752
+162399.0616763583 3.3878944 1103.3949
+162400.0616764626 3.3880124 1103.3357
+162401.061676567 3.3879731 1103.3555
+162402.0616766713 3.3880911 1103.3555
+162403.0616767756 3.3880517 1103.3357
+162404.0616768799 3.3882093 1103.316
+162405.0616769842 3.38817 1103.474
+162406.0616770885 3.3882487 1103.3949
+162407.0616771928 3.3883667 1103.316
+162408.0616772971 3.388406 1103.3555
+162409.0616774014 3.388485 1103.3555
+162410.0616775057 3.388603 1103.3752
+162411.06167761 3.3886423 1103.316
+162412.0616777143 3.3887606 1103.4147
+162413.0616778187 3.388721 1103.3555
+162414.061677923 3.3888786 1103.3752
+162415.0616780273 3.3889573 1103.3357
+162416.0616781316 3.3889966 1103.3357
+162417.0616782359 3.3889966 1103.3357
+162418.0616783402 3.3891149 1103.3555
+162419.0616784445 3.3891149 1103.2963
+162420.0616785488 3.3890359 1103.3555
+162421.0616786531 3.3893509 1103.2765
+162422.0616787574 3.3893905 1103.2765
+162423.0616788617 3.3894298 1103.3357
+162424.061678966 3.3895085 1103.3949
+162425.0616790704 3.3894691 1103.3752
+162426.0616791747 3.3897054 1103.3357
+162427.061679279 3.3896265 1103.316
+162428.0616793833 3.3897448 1103.3357
+162429.0616794876 3.3897841 1103.2963
+162430.0616795919 3.3898628 1103.3752
+162431.0616796962 3.3898628 1103.3357
+162432.0616798005 3.3899021 1103.316
+162433.0616799048 3.3899415 1103.316
+162434.0616800091 3.3900204 1103.3357
+162435.0616801134 3.390099 1103.316
+162436.0616802177 3.3902171 1103.316
+162437.061680322 3.3902171 1103.2963
+162438.0616804264 3.390296 1103.316
+162439.0616805307 3.3904533 1103.3949
+162440.061680635 3.3903747 1103.3357
+162441.0616807393 3.3904533 1103.4147
+162442.0616808436 3.3906109 1103.316
+162443.0616809479 3.3906896 1103.3752
+162444.0616810522 3.3906896 1103.3752
+162445.0616811565 3.3907683 1103.3357
+162446.0616812608 3.390847 1103.3357
+162447.0616813651 3.3909652 1103.316
+162448.0616814694 3.3909259 1103.2765
+162449.0616815737 3.3910046 1103.4344
+162450.0616816781 3.3910439 1103.2963
+162451.0616817824 3.3910439 1103.4344
+162452.0616818867 3.3911619 1103.316
+162453.061681991 3.3911619 1103.3555
+162454.0616820953 3.3912013 1103.316
+162455.0616821996 3.3912408 1103.3949
+162456.0616823039 3.3913589 1103.2765
+162457.0616824082 3.3913982 1103.2765
+162458.0616825125 3.3914375 1103.3357
+162459.0616826168 3.3916345 1103.2765
+162460.0616827211 3.3915558 1103.3752
+162461.0616828254 3.3915558 1103.2963
+162462.0616829298 3.3918314 1103.3357
+162463.0616830341 3.3918314 1103.3949
+162464.0616831384 3.3919101 1103.316
+162465.0616832427 3.3920281 1103.3752
+162466.061683347 3.3920674 1103.2963
+162467.0616834513 3.3920674 1103.3752
+162468.0616835556 3.3921068 1103.2963
+162469.0616836599 3.3921068 1103.3555
+162470.0616837642 3.3922644 1103.3555
+162471.0616838685 3.392225 1103.3555
+162472.0616839728 3.3923824 1103.3752
+162473.0616840771 3.3923037 1103.3357
+162474.0616841814 3.3923824 1103.3752
+162475.0616842858 3.3925006 1103.3949
+162476.0616843901 3.3926187 1103.4147
+162477.0616844944 3.3926187 1103.3357
+162478.0616845987 3.3928156 1103.316
+162479.061684703 3.3928156 1103.3357
+162480.0616848073 3.3928156 1103.2369
+162481.0616849116 3.3930516 1103.4147
+162482.0616850159 3.3929729 1103.2765
+162483.0616851202 3.3930516 1103.3752
+162484.0616852245 3.3931699 1103.3357
+162485.0616853288 3.3931699 1103.3752
+162486.0616854331 3.3932486 1103.316
+162487.0616855375 3.3933272 1103.474
+162488.0616856418 3.3932092 1103.3357
+162489.0616857461 3.3933666 1103.2963
+162490.0616858504 3.3934455 1103.3555
+162491.0616859547 3.3935242 1103.3752
+162492.061686059 3.3935242 1103.4344
+162493.0616861633 3.3936028 1103.3555
+162494.0616862676 3.3937211 1103.3752
+162495.0616863719 3.3937604 1103.1975
+162496.0616864762 3.3939178 1103.316
+162497.0616865805 3.3939571 1103.2765
+162498.0616866848 3.3941147 1103.3752
+162499.0616867892 3.3939571 1103.2963
+162500.0616868935 3.3941541 1103.3357
+162501.0616869978 3.3941934 1103.3555
+162502.0616871021 3.3942721 1103.3752
+162503.0616872064 3.394351 1103.3752
+162504.0616873107 3.3943903 1103.2765
+162505.061687415 3.3944297 1103.4344
+162506.0616875193 3.3944297 1103.3949
+162507.0616876236 3.394666 1103.3555
+162508.0616877279 3.394587 1103.316
+162509.0616878322 3.394666 1103.316
+162510.0616879365 3.3947053 1103.316
+162511.0616880408 3.394784 1103.3752
+162512.0616881452 3.3948233 1103.2963
+162513.0616882495 3.394784 1103.3555
+162514.0616883538 3.3949416 1103.3752
+162515.0616884581 3.3950596 1103.4147
+162516.0616885624 3.3949416 1103.3357
+162517.0616886667 3.3949809 1103.3752
+162518.061688771 3.3950596 1103.316
+162519.0616888753 3.3951776 1103.2765
+162520.0616889796 3.3951776 1103.4147
+162521.0616890839 3.3952172 1103.2963
+162522.0616891882 3.3953745 1103.2567
+162523.0616892925 3.3953352 1103.3752
+162524.0616893969 3.3953745 1103.3949
+162525.0616895012 3.3954532 1103.3752
+162526.0616896055 3.3955321 1103.316
+162527.0616897098 3.3956108 1103.2765
+162528.0616898141 3.3956895 1103.3357
+162529.0616899184 3.3957288 1103.3752
+162530.0616900227 3.3957682 1103.3555
+162531.061690127 3.3958471 1103.3555
+162532.0616902313 3.3959258 1103.2963
+162533.0616903356 3.3959258 1103.3752
+162534.0616904399 3.3960044 1103.3357
+162535.0616905442 3.3960831 1103.4344
+162536.0616906486 3.3960831 1103.4147
+162537.0616907529 3.3962014 1103.4344
+162538.0616908572 3.3963587 1103.3555
+162539.0616909615 3.396162 1103.3949
+162540.0616910658 3.3962801 1103.3357
+162541.0616911701 3.3964374 1103.3752
+162542.0616912744 3.3963587 1103.3949
+162543.0616913787 3.3965163 1103.3949
+162544.061691483 3.3965163 1103.2963
+162545.0616915873 3.3966737 1103.2963
+162546.0616916916 3.3966737 1103.4147
+162547.0616917959 3.3966343 1103.3752
+162548.0616919003 3.3968313 1103.3752
+162549.0616920046 3.3968313 1103.3357
+162550.0616921089 3.3969493 1103.3357
+162551.0616922132 3.397028 1103.2963
+162552.0616923175 3.3970675 1103.3949
+162553.0616924218 3.3970675 1103.316
+162554.0616925261 3.3971462 1103.2765
+162555.0616926304 3.3971462 1103.2765
+162556.0616927347 3.3973036 1103.3949
+162557.061692839 3.3973429 1103.3752
+162558.0616929433 3.3974612 1103.2172
+162559.0616930476 3.3974612 1103.3357
+162560.0616931519 3.3975005 1103.3357
+162561.0616932563 3.3976579 1103.2765
+162562.0616933606 3.3975792 1103.3752
+162563.0616934649 3.3976974 1103.3357
+162564.0616935692 3.3977761 1103.3555
+162565.0616936735 3.3976185 1103.2963
+162566.0616937778 3.3978548 1103.3555
+162567.0616938821 3.3976974 1103.3357
+162568.0616939864 3.3978155 1103.3555
+162569.0616940907 3.3978548 1103.2567
+162570.061694195 3.3978941 1103.3357
+162571.0616942993 3.3980517 1103.3555
+162572.0616944036 3.3980124 1103.3357
+162573.061694508 3.3980124 1103.3555
+162574.0616946123 3.3980517 1103.2963
+162575.0616947166 3.3981304 1103.316
+162576.0616948209 3.3981698 1103.3357
+162577.0616949252 3.3981304 1103.3555
+162578.0616950295 3.3982484 1103.316
+162579.0616951338 3.3982091 1103.3555
+162580.0616952381 3.3982484 1103.3357
+162581.0616953424 3.3982878 1103.3752
+162582.0616954467 3.3983274 1103.3555
+162583.061695551 3.3983274 1103.3949
+162584.0616956553 3.3982484 1103.2765
+162585.0616957597 3.398406 1103.4147
+162586.061695864 3.3984454 1103.3949
+162587.0616959683 3.398524 1103.3357
+162588.0616960726 3.3986423 1103.3555
+162589.0616961769 3.398721 1103.3949
+162590.0616962812 3.3986423 1103.316
+162591.0616963855 3.3987997 1103.2963
+162592.0616964898 3.3989966 1103.2963
+162593.0616965941 3.3989966 1103.4147
+162594.0616966984 3.3990359 1103.4344
+162595.0616968027 3.3990753 1103.2369
+162596.061696907 3.3991933 1103.3949
+162597.0616970113 3.3992329 1103.316
+162598.0616971157 3.3992722 1103.3752
+162599.06169722 3.3993509 1103.3555
+162600.0616973243 3.3995082 1103.3357
+162601.0616974286 3.3995872 1103.3555
+162602.0616975329 3.3996658 1103.316
+162603.0616976372 3.3997052 1103.3357
+162604.0616977415 3.3997052 1103.3357
+162605.0616978458 3.3998628 1103.3949
+162606.0616979501 3.3998628 1103.3752
+162607.0616980544 3.3999021 1103.3357
+162608.0616981587 3.3999414 1103.316
+162609.061698263 3.3999414 1103.3357
+162610.0616983674 3.3999808 1103.2765
+162611.0616984717 3.4001381 1103.2963
+162612.061698576 3.4002171 1103.316
+162613.0616986803 3.4002564 1103.3357
+162614.0616987846 3.4002564 1103.3357
+162615.0616988889 3.4003351 1103.4147
+162616.0616989932 3.4004138 1103.3555
+162617.0616990975 3.4004927 1103.2963
+162618.0616992018 3.4006107 1103.3555
+162619.0616993061 3.400532 1103.2765
+162620.0616994104 3.40065 1103.3752
+162621.0616995147 3.4006894 1103.2963
+162622.0616996191 3.400847 1103.3752
+162623.0616997234 3.4008863 1103.3357
+162624.0616998277 3.4009256 1103.4344
+162625.061699932 3.4010832 1103.4147
+162626.0617000363 3.400965 1103.3357
+162627.0617001406 3.4012012 1103.2765
+162628.0617002449 3.4011619 1103.2963
+162629.0617003492 3.4012012 1103.3357
+162630.0617004535 3.4012406 1103.2765
+162631.0617005578 3.4014375 1103.3555
+162632.0617006621 3.4015162 1103.2963
+162633.0617007664 3.4014769 1103.3357
+162634.0617008707 3.4014769 1103.3949
+162635.0617009751 3.4015555 1103.3555
+162636.0617010794 3.4016736 1103.316
+162637.0617011837 3.4016342 1103.3949
+162638.061701288 3.4017525 1103.2765
+162639.0617013923 3.4017525 1103.316
+162640.0617014966 3.4018705 1103.3555
+162641.0617016009 3.4018705 1103.2765
+162642.0617017052 3.4021068 1103.316
+162643.0617018095 3.4020674 1103.3357
+162644.0617019138 3.4021068 1103.3357
+162645.0617020181 3.402343 1103.3752
+162646.0617021224 3.4024217 1103.2567
+162647.0617022268 3.402343 1103.3357
+162648.0617023311 3.4024611 1103.3752
+162649.0617024354 3.4024611 1103.3357
+162650.0617025397 3.402658 1103.3752
+162651.061702644 3.402658 1103.3752
+162652.0617027483 3.402776 1103.3949
+162653.0617028526 3.402776 1103.3752
+162654.0617029569 3.4028153 1103.2369
+162655.0617030612 3.4030123 1103.316
+162656.0617031655 3.4029729 1103.4344
+162657.0617032698 3.4029729 1103.3357
+162658.0617033741 3.403091 1103.2963
+162659.0617034785 3.403091 1103.316
+162660.0617035828 3.403091 1103.3357
+162661.0617036871 3.403209 1103.316
+162662.0617037914 3.403209 1103.3555
+162663.0617038957 3.4032879 1103.4147
+162664.061704 3.4033272 1103.4147
+162665.0617041043 3.4034452 1103.2963
+162666.0617042086 3.4034846 1103.3357
+162667.0617043129 3.4034452 1103.4147
+162668.0617044172 3.4035239 1103.3357
+162669.0617045215 3.4036422 1103.3752
+162670.0617046258 3.4036815 1103.3555
+162671.0617047301 3.4037995 1103.3357
+162672.0617048345 3.4036815 1103.3949
+162673.0617049388 3.4037995 1103.3949
+162674.0617050431 3.4038785 1103.2963
+162675.0617051474 3.4039571 1103.3357
+162676.0617052517 3.4039571 1103.2963
+162677.061705356 3.4039571 1103.3555
+162678.0617054603 3.4039965 1103.2765
+162679.0617055646 3.4039965 1103.316
+162680.0617056689 3.4041541 1103.3949
+162681.0617057732 3.4039965 1103.2963
+162682.0617058775 3.4042327 1103.3555
+162683.0617059818 3.4042327 1103.4147
+162684.0617060862 3.4043508 1103.3555
+162685.0617061905 3.4043508 1103.4147
+162686.0617062948 3.4044294 1103.2765
+162687.0617063991 3.404469 1103.3949
+162688.0617065034 3.4045084 1103.3555
+162689.0617066077 3.4046264 1103.4147
+162690.061706712 3.404587 1103.316
+162691.0617068163 3.4048233 1103.3949
+162692.0617069206 3.4046657 1103.2963
+162693.0617070249 3.4047444 1103.3949
+162694.0617071292 3.404784 1103.316
+162695.0617072335 3.4048233 1103.316
+162696.0617073379 3.404902 1103.3357
+162697.0617074422 3.4049413 1103.3949
+162698.0617075465 3.4050593 1103.2963
+162699.0617076508 3.4050593 1103.2567
+162700.0617077551 3.4052169 1103.3949
+162701.0617078594 3.4053743 1103.316
+162702.0617079637 3.4052563 1103.3357
+162703.061708068 3.4052956 1103.3357
+162704.0617081723 3.4053743 1103.3357
+162705.0617082766 3.4053743 1103.3555
+162706.0617083809 3.4054139 1103.3555
+162707.0617084852 3.4055712 1103.316
+162708.0617085896 3.4056106 1103.3752
+162709.0617086939 3.4056499 1103.3949
+162710.0617087982 3.4056106 1103.2963
+162711.0617089025 3.4057682 1103.2765
+162712.0617090068 3.4059649 1103.3949
+162713.0617091111 3.4058862 1103.316
+162714.0617092154 3.4059649 1103.3752
+162715.0617093197 3.4060438 1103.3357
+162716.061709424 3.4061618 1103.3555
+162717.0617095283 3.4062798 1103.3949
+162718.0617096326 3.4062405 1103.2963
+162719.0617097369 3.4063981 1103.2963
+162720.0617098412 3.4064767 1103.2765
+162721.0617099456 3.4064767 1103.3555
+162722.0617100499 3.4065554 1103.4344
+162723.0617101542 3.4065554 1103.2765
+162724.0617102585 3.406713 1103.3357
+162725.0617103628 3.406713 1103.3555
+162726.0617104671 3.406713 1103.3752
+162727.0617105714 3.406713 1103.316
+162728.0617106757 3.4068704 1103.3752
+162729.06171078 3.4069493 1103.316
+162730.0617108843 3.407028 1103.3357
+162731.0617109886 3.4071066 1103.2765
+162732.0617110929 3.407146 1103.3752
+162733.0617111973 3.4072642 1103.3357
+162734.0617113016 3.4073036 1103.3752
+162735.0617114059 3.4073429 1103.4147
+162736.0617115102 3.4073429 1103.3752
+162737.0617116145 3.4074216 1103.3357
+162738.0617117188 3.4075792 1103.3555
+162739.0617118231 3.4076185 1103.2963
+162740.0617119274 3.4077365 1103.3555
+162741.0617120317 3.4077365 1103.3555
+162742.061712136 3.4078941 1103.3357
+162743.0617122403 3.4079728 1103.3752
+162744.0617123446 3.4079728 1103.3949
+162745.061712449 3.4078548 1103.3555
+162746.0617125533 3.4080515 1103.4147
+162747.0617126576 3.4079728 1103.316
+162748.0617127619 3.4081302 1103.4344
+162749.0617128662 3.4081302 1103.3357
+162750.0617129705 3.4081697 1103.2963
+162751.0617130748 3.4082484 1103.3357
+162752.0617131791 3.4081697 1103.2963
+162753.0617132834 3.4083271 1103.2765
+162754.0617133877 3.4083271 1103.3357
+162755.061713492 3.4082484 1103.3555
+162756.0617135963 3.408524 1103.3357
+162757.0617137006 3.4083271 1103.2765
+162758.061713805 3.4085634 1103.316
+162759.0617139093 3.408524 1103.2963
+162760.0617140136 3.4086027 1103.316
+162761.0617141179 3.408524 1103.2567
+162762.0617142222 3.408524 1103.3357
+162763.0617143265 3.4086027 1103.3357
+162764.0617144308 3.4087996 1103.3949
+162765.0617145351 3.4087207 1103.3555
+162766.0617146394 3.4087601 1103.3555
+162767.0617147437 3.408839 1103.3357
+162768.061714848 3.4088783 1103.3949
+162769.0617149523 3.4089963 1103.316
+162770.0617150567 3.408957 1103.3752
+162771.061715161 3.4090357 1103.3555
+162772.0617152653 3.409075 1103.2963
+162773.0617153696 3.409075 1103.3555
+162774.0617154739 3.4092326 1103.3555
+162775.0617155782 3.4092326 1103.3752
+162776.0617156825 3.4093113 1103.3357
+162777.0617157868 3.4093506 1103.3357
+162778.0617158911 3.40939 1103.2963
+162779.0617159954 3.4094689 1103.2369
+162780.0617160997 3.40939 1103.316
+162781.061716204 3.4095082 1103.316
+162782.0617163084 3.4096262 1103.4147
+162783.0617164127 3.4096262 1103.3357
+162784.061716517 3.4096656 1103.3752
+162785.0617166213 3.4096262 1103.3752
+162786.0617167256 3.4096262 1103.3949
+162787.0617168299 3.4095082 1103.2765
+162788.0617169342 3.4097445 1103.4147
+162789.0617170385 3.4096656 1103.3357
+162790.0617171428 3.4097052 1103.3555
+162791.0617172471 3.4096656 1103.316
+162792.0617173514 3.4097052 1103.3357
+162793.0617174557 3.4098232 1103.316
+162794.06171756 3.4098232 1103.3949
+162795.0617176644 3.4099805 1103.3949
+162796.0617177687 3.4100988 1103.2765
+162797.061717873 3.4101381 1103.3357
+162798.0617179773 3.4100595 1103.3752
+162799.0617180816 3.4101775 1103.3357
+162800.0617181859 3.4102168 1103.3357
+162801.0617182902 3.4102561 1103.2963
+162802.0617183945 3.4103351 1103.316
+162803.0617184988 3.4103744 1103.316
+162804.0617186031 3.4104924 1103.3357
+162805.0617187074 3.4106104 1103.2963
+162806.0617188117 3.4106894 1103.3357
+162807.0617189161 3.41065 1103.3949
+162808.0617190204 3.4106894 1103.316
+162809.0617191247 3.4108074 1103.316
+162810.061719229 3.410965 1103.3555
+162811.0617193333 3.4109254 1103.3949
+162812.0617194376 3.4110043 1103.3752
+162813.0617195419 3.4111617 1103.3752
+162814.0617196462 3.4111223 1103.316
+162815.0617197505 3.4112799 1103.2963
+162816.0617198548 3.4113193 1103.4938
+162817.0617199591 3.4113979 1103.3357
+162818.0617200634 3.411516 1103.3555
+162819.0617201678 3.4114766 1103.3357
+162820.0617202721 3.4114373 1103.2567
+162821.0617203764 3.4116735 1103.3357
+162822.0617204807 3.4117522 1103.4147
+162823.061720585 3.4117522 1103.316
+162824.0617206893 3.4118705 1103.2963
+162825.0617207936 3.4119098 1103.3752
+162826.0617208979 3.4120278 1103.3555
+162827.0617210022 3.4120672 1103.3357
+162828.0617211065 3.4121065 1103.3555
+162829.0617212108 3.4121854 1103.2369
+162830.0617213151 3.4122641 1103.3357
+162831.0617214195 3.4123034 1103.2369
+162832.0617215238 3.4123428 1103.2567
+162833.0617216281 3.4123428 1103.3357
+162834.0617217324 3.4124608 1103.3949
+162835.0617218367 3.4124608 1103.316
+162836.061721941 3.4126184 1103.2963
+162837.0617220453 3.4124608 1103.3752
+162838.0617221496 3.4125791 1103.3949
+162839.0617222539 3.4128153 1103.3555
+162840.0617223582 3.4128547 1103.3949
+162841.0617224625 3.4128547 1103.3357
+162842.0617225668 3.4129333 1103.3357
+162843.0617226711 3.4129333 1103.3752
+162844.0617227755 3.4129333 1103.316
+162845.0617228798 3.4130909 1103.3752
+162846.0617229841 3.4131696 1103.2172
+162847.0617230884 3.4131696 1103.3949
+162848.0617231927 3.4132876 1103.3752
+162849.061723297 3.413209 1103.3752
+162850.0617234013 3.4133663 1103.3357
+162851.0617235056 3.4133663 1103.2369
+162852.0617236099 3.4134452 1103.3752
+162853.0617237142 3.4135633 1103.4147
+162854.0617238185 3.4135633 1103.3949
+162855.0617239228 3.4135633 1103.3555
+162856.0617240272 3.4136813 1103.3555
+162857.0617241315 3.4136813 1103.316
+162858.0617242358 3.4136813 1103.2963
+162859.0617243401 3.4136813 1103.3555
+162860.0617244444 3.4137602 1103.3357
+162861.0617245487 3.4137208 1103.4344
+162862.061724653 3.4138389 1103.3752
+162863.0617247573 3.4137602 1103.2963
+162864.0617248616 3.4137995 1103.3752
+162865.0617249659 3.4139962 1103.316
+162866.0617250702 3.4139962 1103.3357
+162867.0617251745 3.4139962 1103.2963
+162868.0617252789 3.4141538 1103.3555
+162869.0617253832 3.4141932 1103.3949
+162870.0617254875 3.4143112 1103.2963
+162871.0617255918 3.4143507 1103.316
+162872.0617256961 3.4144688 1103.316
+162873.0617258004 3.4144688 1103.316
+162874.0617259047 3.4145474 1103.3752
+162875.061726009 3.4146657 1103.2765
+162876.0617261133 3.4147444 1103.316
+162877.0617262176 3.4146261 1103.316
+162878.0617263219 3.4147444 1103.2963
+162879.0617264262 3.4146261 1103.3357
+162880.0617265305 3.4148624 1103.4147
+162881.0617266349 3.4149017 1103.316
+162882.0617267392 3.4148624 1103.2765
+162883.0617268435 3.4149413 1103.2963
+162884.0617269478 3.41502 1103.3949
+162885.0617270521 3.4150593 1103.3949
+162886.0617271564 3.415138 1103.2567
+162887.0617272607 3.4150593 1103.3555
+162888.061727365 3.4151773 1103.2765
+162889.0617274693 3.4152167 1103.3555
+162890.0617275736 3.4152956 1103.316
+162891.0617276779 3.4153349 1103.3752
+162892.0617277822 3.415453 1103.3949
+162893.0617278866 3.4155712 1103.3357
+162894.0617279909 3.4155316 1103.2963
+162895.0617280952 3.4156106 1103.3357
+162896.0617281995 3.4156106 1103.4542
+162897.0617283038 3.4156106 1103.3555
+162898.0617284081 3.4157286 1103.3949
+162899.0617285124 3.4157286 1103.4344
+162900.0617286167 3.4157679 1103.2963
+162901.061728721 3.4158072 1103.2963
+162902.0617288253 3.4158072 1103.4147
+162903.0617289296 3.4159648 1103.3555
+162904.0617290339 3.4160435 1103.2765
+162905.0617291383 3.4160042 1103.3357
+162906.0617292426 3.4161222 1103.2963
+162907.0617293469 3.4160829 1103.3555
+162908.0617294512 3.4161615 1103.3949
+162909.0617295555 3.4162798 1103.3357
+162910.0617296598 3.4161615 1103.3949
+162911.0617297641 3.4163585 1103.3357
+162912.0617298684 3.4163191 1103.3949
+162913.0617299727 3.4164371 1103.2963
+162914.061730077 3.4164765 1103.3752
+162915.0617301813 3.4165161 1103.3752
+162916.0617302856 3.4164765 1103.2765
+162917.0617303899 3.4165947 1103.3949
+162918.0617304943 3.4165554 1103.3555
+162919.0617305986 3.4166341 1103.316
+162920.0617307029 3.4165947 1103.3357
+162921.0617308072 3.4167128 1103.2963
+162922.0617309115 3.4167128 1103.3752
+162923.0617310158 3.4167128 1103.316
+162924.0617311201 3.4167521 1103.3752
+162925.0617312244 3.4167917 1103.3555
+162926.0617313287 3.416831 1103.3357
+162927.061731433 3.4168704 1103.3752
+162928.0617315373 3.4169884 1103.3949
+162929.0617316416 3.4169097 1103.4344
+162930.061731746 3.4169884 1103.3357
+162931.0617318503 3.4170277 1103.2963
+162932.0617319546 3.417146 1103.2963
+162933.0617320589 3.4172246 1103.4542
+162934.0617321632 3.4171066 1103.3949
+162935.0617322675 3.4172246 1103.3752
+162936.0617323718 3.417264 1103.3555
+162937.0617324761 3.4172246 1103.3752
+162938.0617325804 3.417264 1103.3752
+162939.0617326847 3.4173033 1103.4147
+162940.061732789 3.417382 1103.2963
+162941.0617328933 3.4175003 1103.3357
+162942.0617329977 3.4174609 1103.3357
+162943.061733102 3.4175396 1103.4147
+162944.0617332063 3.4175003 1103.3555
+162945.0617333106 3.4175396 1103.3949
+162946.0617334149 3.4176576 1103.2765
+162947.0617335192 3.4176183 1103.2765
+162948.0617336235 3.4177365 1103.2765
+162949.0617337278 3.4177759 1103.3752
+162950.0617338321 3.4177759 1103.2567
+162951.0617339364 3.4178939 1103.3357
+162952.0617340407 3.4178939 1103.3357
+162953.061734145 3.4177759 1103.2765
+162954.0617342494 3.4178545 1103.3949
+162955.0617343537 3.4179726 1103.2963
+162956.061734458 3.4179726 1103.3555
+162957.0617345623 3.4180908 1103.316
+162958.0617346666 3.4180515 1103.3555
+162959.0617347709 3.4181302 1103.3555
+162960.0617348752 3.4182088 1103.2963
+162961.0617349795 3.4181695 1103.2963
+162962.0617350838 3.4183664 1103.4147
+162963.0617351881 3.4184451 1103.3357
+162964.0617352924 3.4184058 1103.3949
+162965.0617353967 3.4184058 1103.2567
+162966.061735501 3.4184058 1103.2963
+162967.0617356054 3.4184451 1103.2963
+162968.0617357097 3.4184844 1103.2172
+162969.061735814 3.4185238 1103.3357
+162970.0617359183 3.4185631 1103.316
+162971.0617360226 3.4187207 1103.4147
+162972.0617361269 3.4187601 1103.3752
+162973.0617362312 3.4187207 1103.2567
+162974.0617363355 3.4187994 1103.2765
+162975.0617364398 3.4188387 1103.3555
+162976.0617365441 3.4188781 1103.3555
+162977.0617366484 3.4189174 1103.3357
+162978.0617367527 3.4189174 1103.3357
+162979.0617368571 3.4190357 1103.316
+162980.0617369614 3.419075 1103.3555
+162981.0617370657 3.4190357 1103.4344
+162982.06173717 3.4191537 1103.3752
+162983.0617372743 3.4191144 1103.2567
+162984.0617373786 3.4191537 1103.316
+162985.0617374829 3.4192719 1103.2963
+162986.0617375872 3.41939 1103.3357
+162987.0617376915 3.4193506 1103.316
+162988.0617377958 3.4192719 1103.4147
+162989.0617379001 3.4192719 1103.3752
+162990.0617380044 3.4194293 1103.316
+162991.0617381088 3.4194293 1103.4147
+162992.0617382131 3.4194686 1103.3357
+162993.0617383174 3.4194686 1103.316
+162994.0617384217 3.4195473 1103.3949
+162995.061738526 3.4196656 1103.3949
+162996.0617386303 3.4196656 1103.3949
+162997.0617387346 3.4197443 1103.3555
+162998.0617388389 3.4197049 1103.4147
+162999.0617389432 3.4198229 1103.3555
+163000.0617390475 3.4199018 1103.2765
+163001.0617391518 3.4199805 1103.3555
+163002.0617392561 3.4199412 1103.3555
+163003.0617393604 3.4199018 1103.2963
+163004.0617394648 3.4199805 1103.2369
+163005.0617395691 3.4200592 1103.2963
+163006.0617396734 3.4200985 1103.3357
+163007.0617397777 3.4201379 1103.316
+163008.061739882 3.4201379 1103.316
+163009.0617399863 3.4201772 1103.316
+163010.0617400906 3.4201379 1103.3949
+163011.0617401949 3.4202168 1103.316
+163012.0617402992 3.4202168 1103.2172
+163013.0617404035 3.4202168 1103.2369
+163014.0617405078 3.4202955 1103.2963
+163015.0617406121 3.4203742 1103.3555
+163016.0617407165 3.4203742 1103.3357
+163017.0617408208 3.4203742 1103.3357
+163018.0617409251 3.4204528 1103.3752
+163019.0617410294 3.4204135 1103.3357
+163020.0617411337 3.4205317 1103.2765
+163021.061741238 3.4205711 1103.3752
+163022.0617413423 3.4204924 1103.3555
+163023.0617414466 3.4206498 1103.3949
+163024.0617415509 3.4206104 1103.3752
+163025.0617416552 3.4207284 1103.4147
+163026.0617417595 3.4206891 1103.3357
+163027.0617418638 3.4207678 1103.3555
+163028.0617419682 3.4207284 1103.4542
+163029.0617420725 3.4207678 1103.2369
+163030.0617421768 3.4207678 1103.3357
+163031.0617422811 3.4208467 1103.2765
+163032.0617423854 3.420886 1103.2963
+163033.0617424897 3.4209647 1103.2765
+163034.061742594 3.4209647 1103.316
+163035.0617426983 3.4210434 1103.2765
+163036.0617428026 3.4211617 1103.3555
+163037.0617429069 3.4211617 1103.2765
+163038.0617430112 3.4211617 1103.3357
+163039.0617431155 3.4212403 1103.3555
+163040.0617432198 3.4212403 1103.3752
+163041.0617433242 3.4213977 1103.3555
+163042.0617434285 3.421319 1103.3949
+163043.0617435328 3.421319 1103.3555
+163044.0617436371 3.421319 1103.3752
+163045.0617437414 3.4212797 1103.3949
+163046.0617438457 3.4214766 1103.2963
+163047.06174395 3.4214373 1103.3949
+163048.0617440543 3.4214766 1103.2765
+163049.0617441586 3.421634 1103.316
+163050.0617442629 3.4215553 1103.3357
+163051.0617443672 3.421634 1103.3752
+163052.0617444715 3.4216733 1103.4344
+163053.0617445759 3.421634 1103.3555
+163054.0617446802 3.4216733 1103.316
+163055.0617447845 3.4217126 1103.3555
+163056.0617448888 3.4215159 1103.3752
+163057.0617449931 3.4215946 1103.316
+163058.0617450974 3.4216733 1103.3555
+163059.0617452017 3.4214373 1103.3752
+163060.061745306 3.4215553 1103.3752
+163061.0617454103 3.421634 1103.3949
+163062.0617455146 3.4216733 1103.3949
+163063.0617456189 3.4216733 1103.3555
+163064.0617457232 3.4218309 1103.2765
+163065.0617458276 3.4217916 1103.2963
+163066.0617459319 3.4217522 1103.3555
+163067.0617460362 3.4218702 1103.2963
+163068.0617461405 3.4219096 1103.316
+163069.0617462448 3.4219882 1103.3555
+163070.0617463491 3.4220276 1103.316
+163071.0617464534 3.4221458 1103.2567
+163072.0617465577 3.4220276 1103.3357
+163073.061746662 3.4221065 1103.316
+163074.0617467663 3.4222245 1103.3555
+163075.0617468706 3.4222639 1103.3949
+163076.0617469749 3.4223428 1103.2369
+163077.0617470792 3.4224215 1103.3357
+163078.0617471836 3.4223821 1103.4344
+163079.0617472879 3.4224215 1103.3752
+163080.0617473922 3.4225001 1103.2765
+163081.0617474965 3.4226971 1103.316
+163082.0617476008 3.4226577 1103.3752
+163083.0617477051 3.4228151 1103.3357
+163084.0617478094 3.4228151 1103.2963
+163085.0617479137 3.4228938 1103.2765
+163086.061748018 3.4228938 1103.3357
+163087.0617481223 3.4229331 1103.3357
+163088.0617482266 3.423012 1103.4344
+163089.0617483309 3.423012 1103.3357
+163090.0617484353 3.4230907 1103.316
+163091.0617485396 3.4229727 1103.3555
+163092.0617486439 3.4230907 1103.316
+163093.0617487482 3.4232481 1103.3555
+163094.0617488525 3.4232876 1103.2963
+163095.0617489568 3.4233663 1103.2963
+163096.0617490611 3.4234843 1103.4147
+163097.0617491654 3.4234056 1103.316
+163098.0617492697 3.423563 1103.3555
+163099.061749374 3.4236419 1103.316
+163100.0617494783 3.4234843 1103.3357
+163101.0617495826 3.4236026 1103.3357
+163102.061749687 3.4236419 1103.316
+163103.0617497913 3.4236813 1103.3357
+163104.0617498956 3.4239175 1103.3752
+163105.0617499999 3.4237993 1103.3752
+163106.0617501042 3.4238782 1103.3752
+163107.0617502085 3.4238782 1103.3357
+163108.0617503128 3.4240355 1103.3949
+163109.0617504171 3.4239569 1103.2567
+163110.0617505214 3.4239175 1103.2963
+163111.0617506257 3.4241142 1103.316
+163112.06175073 3.4241536 1103.3949
+163113.0617508343 3.4242325 1103.2963
+163114.0617509387 3.4242325 1103.2765
+163115.061751043 3.4242718 1103.316
+163116.0617511473 3.4243112 1103.2765
+163117.0617512516 3.4243112 1103.3752
+163118.0617513559 3.4244685 1103.4344
+163119.0617514602 3.4245081 1103.1975
+163120.0617515645 3.4245474 1103.316
+163121.0617516688 3.4245868 1103.4147
+163122.0617517731 3.4246261 1103.2963
+163123.0617518774 3.4247441 1103.2765
+163124.0617519817 3.4249017 1103.3555
+163125.061752086 3.4248624 1103.3555
+163126.0617521903 3.4249411 1103.3357
+163127.0617522947 3.4250591 1103.3357
+163128.061752399 3.4250984 1103.2963
+163129.0617525033 3.4249804 1103.3357
+163130.0617526076 3.4250591 1103.3357
+163131.0617527119 3.425138 1103.316
+163132.0617528162 3.425138 1103.316
+163133.0617529205 3.425138 1103.3555
+163134.0617530248 3.4252954 1103.2567
+163135.0617531291 3.4253347 1103.2765
+163136.0617532334 3.4252954 1103.3555
+163137.0617533377 3.425374 1103.3555
+163138.061753442 3.4254134 1103.3357
+163139.0617535464 3.425374 1103.2963
+163140.0617536507 3.4254923 1103.2765
+163141.061753755 3.4254529 1103.3357
+163142.0617538593 3.4253347 1103.2963
+163143.0617539636 3.4254529 1103.316
+163144.0617540679 3.4254529 1103.3949
+163145.0617541722 3.4254923 1103.3555
+163146.0617542765 3.4255316 1103.3752
+163147.0617543808 3.4256103 1103.3555
+163148.0617544851 3.4256103 1103.3357
+163149.0617545894 3.4256496 1103.316
+163150.0617546937 3.4257286 1103.3357
+163151.0617547981 3.4257286 1103.4147
+163152.0617549024 3.4258466 1103.3555
+163153.0617550067 3.4258859 1103.316
+163154.061755111 3.4257679 1103.3949
+163155.0617552153 3.4259646 1103.3555
+163156.0617553196 3.4259253 1103.2567
+163157.0617554239 3.4259646 1103.3949
+163158.0617555282 3.4260039 1103.2963
+163159.0617556325 3.4260435 1103.3949
+163160.0617557368 3.4260039 1103.316
+163161.0617558411 3.4260828 1103.316
+163162.0617559454 3.4261615 1103.3949
+163163.0617560497 3.4260435 1103.316
+163164.0617561541 3.4262009 1103.3555
+163165.0617562584 3.4262402 1103.4147
+163166.0617563627 3.4263189 1103.3752
+163167.061756467 3.4263978 1103.3555
+163168.0617565713 3.4264371 1103.316
+163169.0617566756 3.4264765 1103.3357
+163170.0617567799 3.4264765 1103.3357
+163171.0617568842 3.4266338 1103.2963
+163172.0617569885 3.4266734 1103.3949
+163173.0617570928 3.4268308 1103.3752
+163174.0617571971 3.4267521 1103.3752
+163175.0617573014 3.4267914 1103.2172
+163176.0617574058 3.4267521 1103.3357
+163177.0617575101 3.4267914 1103.2567
+163178.0617576144 3.4268308 1103.3555
+163179.0617577187 3.4268701 1103.3949
+163180.061757823 3.4268701 1103.2369
+163181.0617579273 3.4269094 1103.3357
+163182.0617580316 3.4269488 1103.3555
+163183.0617581359 3.4270277 1103.2567
+163184.0617582402 3.4269884 1103.4147
+163185.0617583445 3.427067 1103.3949
+163186.0617584488 3.4271457 1103.3752
+163187.0617585531 3.4271851 1103.3555
+163188.0617586575 3.4273033 1103.3949
+163189.0617587618 3.4272244 1103.2765
+163190.0617588661 3.4273427 1103.2567
+163191.0617589704 3.4274607 1103.3555
+163192.0617590747 3.4274607 1103.3357
+163193.061759179 3.4275 1103.3555
+163194.0617592833 3.4275393 1103.3357
+163195.0617593876 3.4275789 1103.2963
+163196.0617594919 3.4275789 1103.3357
+163197.0617595962 3.4275393 1103.316
+163198.0617597005 3.4275789 1103.2765
+163199.0617598048 3.4276183 1103.4344
+163200.0617599091 3.4275393 1103.3752
+163201.0617600135 3.4276969 1103.3555
+163202.0617601178 3.4276969 1103.4147
+163203.0617602221 3.4277756 1103.3555
+163204.0617603264 3.4277363 1103.3949
+163205.0617604307 3.4277363 1103.3752
+163206.061760535 3.4279332 1103.3752
+163207.0617606393 3.4279332 1103.2765
+163208.0617607436 3.4280119 1103.2765
+163209.0617608479 3.4280119 1103.316
+163210.0617609522 3.4279332 1103.3357
+163211.0617610565 3.4279332 1103.3357
+163212.0617611608 3.4280512 1103.3555
+163213.0617612652 3.4278939 1103.3357
+163214.0617613695 3.4280906 1103.3555
+163215.0617614738 3.4280119 1103.3357
+163216.0617615781 3.4280512 1103.316
+163217.0617616824 3.4282088 1103.3752
+163218.0617617867 3.4282482 1103.2963
+163219.061761891 3.4283268 1103.3752
+163220.0617619953 3.4282088 1103.3357
+163221.0617620996 3.4282875 1103.316
+163222.0617622039 3.4283268 1103.3555
+163223.0617623082 3.4283662 1103.2963
+163224.0617624125 3.4283662 1103.2963
+163225.0617625169 3.4284055 1103.316
+163226.0617626212 3.4285238 1103.2963
+163227.0617627255 3.4284449 1103.2765
+163228.0617628298 3.4286418 1103.316
+163229.0617629341 3.4286811 1103.2172
+163230.0617630384 3.4287992 1103.2172
+163231.0617631427 3.4287205 1103.2963
+163232.061763247 3.4287992 1103.3555
+163233.0617633513 3.4288387 1103.2765
+163234.0617634556 3.4288387 1103.316
+163235.0617635599 3.4289567 1103.2765
+163236.0617636642 3.4290354 1103.3752
+163237.0617637686 3.4290354 1103.3555
+163238.0617638729 3.4291537 1103.316
+163239.0617639772 3.4292717 1103.3357
+163240.0617640815 3.4292717 1103.3357
+163241.0617641858 3.429311 1103.3752
+163242.0617642901 3.4293897 1103.2172
+163243.0617643944 3.429508 1103.3357
+163244.0617644987 3.429508 1103.3949
+163245.061764603 3.429508 1103.3752
+163246.0617647073 3.4295866 1103.3752
+163247.0617648116 3.429508 1103.3555
+163248.0617649159 3.429626 1103.2765
+163249.0617650202 3.4296653 1103.3555
+163250.0617651246 3.4296653 1103.3949
+163251.0617652289 3.4297836 1103.3752
+163252.0617653332 3.4297442 1103.3752
+163253.0617654375 3.4298229 1103.3752
+163254.0617655418 3.4298623 1103.2765
+163255.0617656461 3.4299016 1103.4147
+163256.0617657504 3.4299016 1103.3357
+163257.0617658547 3.4299803 1103.3357
+163258.061765959 3.4301772 1103.3949
+163259.0617660633 3.4300592 1103.2963
+163260.0617661676 3.4300592 1103.3949
+163261.0617662719 3.4302559 1103.3949
+163262.0617663763 3.4300985 1103.316
+163263.0617664806 3.4302166 1103.2963
+163264.0617665849 3.4302952 1103.316
+163265.0617666892 3.4302952 1103.3357
+163266.0617667935 3.4303346 1103.3752
+163267.0617668978 3.4304922 1103.3949
+163268.0617670021 3.4304528 1103.3752
+163269.0617671064 3.4306102 1103.3555
+163270.0617672107 3.4305708 1103.3357
+163271.061767315 3.4307678 1103.3949
+163272.0617674193 3.4306891 1103.2963
+163273.0617675236 3.4308071 1103.3357
+163274.061767628 3.4308465 1103.3357
+163275.0617677323 3.4308858 1103.2765
+163276.0617678366 3.4308071 1103.2765
+163277.0617679409 3.4308858 1103.316
+163278.0617680452 3.4308858 1103.2963
+163279.0617681495 3.4309251 1103.3752
+163280.0617682538 3.4309645 1103.2765
+163281.0617683581 3.4310434 1103.2963
+163282.0617684624 3.4311221 1103.2963
+163283.0617685667 3.4310827 1103.2963
+163284.061768671 3.4310827 1103.3357
+163285.0617687753 3.4311221 1103.316
+163286.0617688796 3.4311614 1103.3555
+163287.061768984 3.4312007 1103.2963
+163288.0617690883 3.431319 1103.3357
+163289.0617691926 3.431319 1103.2765
+163290.0617692969 3.4312401 1103.3357
+163291.0617694012 3.431437 1103.3357
+163292.0617695055 3.4314764 1103.3949
+163293.0617696098 3.4314764 1103.3357
+163294.0617697141 3.431437 1103.316
+163295.0617698184 3.4314764 1103.2765
+163296.0617699227 3.4315946 1103.2567
+163297.061770027 3.4316733 1103.2765
+163298.0617701313 3.4316733 1103.3555
+163299.0617702357 3.43187 1103.2567
+163300.06177034 3.4319489 1103.2963
+163301.0617704443 3.4319096 1103.3752
+163302.0617705486 3.4321063 1103.3752
+163303.0617706529 3.4320276 1103.2765
+163304.0617707572 3.4321063 1103.316
+163305.0617708615 3.4322639 1103.316
+163306.0617709658 3.4323032 1103.4344
+163307.0617710701 3.4323032 1103.316
+163308.0617711744 3.4323425 1103.3555
+163309.0617712787 3.4323819 1103.3752
+163310.061771383 3.4323819 1103.3555
+163311.0617714874 3.4324999 1103.3555
+163312.0617715917 3.4324605 1103.3555
+163313.061771696 3.4324999 1103.4147
+163314.0617718003 3.4325395 1103.3357
+163315.0617719046 3.4324605 1103.316
+163316.0617720089 3.4325788 1103.3949
+163317.0617721132 3.4324605 1103.3555
+163318.0617722175 3.4324999 1103.3357
+163319.0617723218 3.4325788 1103.3555
+163320.0617724261 3.4324999 1103.3752
+163321.0617725304 3.4326181 1103.2963
+163322.0617726347 3.4326968 1103.3357
+163323.061772739 3.4326181 1103.3357
+163324.0617728434 3.4328151 1103.3555
+163325.0617729477 3.4328544 1103.316
+163326.061773052 3.4327755 1103.4542
+163327.0617731563 3.4330118 1103.4147
+163328.0617732606 3.4330118 1103.3949
+163329.0617733649 3.4330511 1103.3752
+163330.0617734692 3.4330904 1103.4542
+163331.0617735735 3.4330904 1103.3752
+163332.0617736778 3.4330904 1103.3752
+163333.0617737821 3.4330904 1103.3752
+163334.0617738864 3.4330904 1103.316
+163335.0617739907 3.4330904 1103.3949
+163336.0617740951 3.4331694 1103.3752
+163337.0617741994 3.43313 1103.316
+163338.0617743037 3.4330118 1103.3555
+163339.061774408 3.4330904 1103.2765
+163340.0617745123 3.4330118 1103.2567
+163341.0617746166 3.43313 1103.2963
+163342.0617747209 3.4330511 1103.3357
+163343.0617748252 3.4331694 1103.316
+163344.0617749295 3.43313 1103.316
+163345.0617750338 3.4333267 1103.3555
+163346.0617751381 3.4332874 1103.3357
+163347.0617752424 3.4334054 1103.3752
+163348.0617753468 3.4334054 1103.3752
+163349.0617754511 3.4335237 1103.3357
+163350.0617755554 3.4335237 1103.2963
+163351.0617756597 3.4336023 1103.4147
+163352.061775764 3.4337204 1103.2567
+163353.0617758683 3.4337204 1103.3357
+163354.0617759726 3.4337599 1103.3555
+163355.0617760769 3.4337993 1103.3555
+163356.0617761812 3.4339566 1103.3752
+163357.0617762855 3.4339173 1103.3357
+163358.0617763898 3.4339566 1103.2963
+163359.0617764941 3.4339566 1103.3357
+163360.0617765985 3.4340353 1103.3949
+163361.0617767028 3.4340353 1103.3357
+163362.0617768071 3.4340749 1103.3949
+163363.0617769114 3.4341142 1103.3555
+163364.0617770157 3.4341536 1103.2765
+163365.06177712 3.4341536 1103.3357
+163366.0617772243 3.4340749 1103.2963
+163367.0617773286 3.4341929 1103.3752
+163368.0617774329 3.4342716 1103.3357
+163369.0617775372 3.4344292 1103.316
+163370.0617776415 3.4344292 1103.2765
+163371.0617777458 3.4343898 1103.3752
+163372.0617778501 3.4344685 1103.4147
+163373.0617779545 3.4345078 1103.4147
+163374.0617780588 3.4346259 1103.2765
+163375.0617781631 3.4346259 1103.2963
+163376.0617782674 3.4347048 1103.3555
+163377.0617783717 3.4346259 1103.3555
+163378.061778476 3.4346654 1103.316
+163379.0617785803 3.4348228 1103.2765
+163380.0617786846 3.4348228 1103.2172
+163381.0617787889 3.4349408 1103.4147
+163382.0617788932 3.4349015 1103.2963
+163383.0617789975 3.4347441 1103.3752
+163384.0617791018 3.4349804 1103.316
+163385.0617792062 3.4349804 1103.3357
+163386.0617793105 3.4349804 1103.3555
+163387.0617794148 3.4350197 1103.4147
+163388.0617795191 3.4350591 1103.2963
+163389.0617796234 3.4351377 1103.3752
+163390.0617797277 3.4351377 1103.474
+163391.061779832 3.4352558 1103.3357
+163392.0617799363 3.4352164 1103.2369
+163393.0617800406 3.4353347 1103.3555
+163394.0617801449 3.435374 1103.3357
+163395.0617802492 3.4354134 1103.316
+163396.0617803535 3.435492 1103.3357
+163397.0617804579 3.4354134 1103.3555
+163398.0617805622 3.4354134 1103.3752
+163399.0617806665 3.4355707 1103.3555
+163400.0617807708 3.4355314 1103.316
+163401.0617808751 3.4355707 1103.3949
+163402.0617809794 3.4355707 1103.3752
+163403.0617810837 3.4356103 1103.2765
+163404.061781188 3.4357283 1103.2963
+163405.0617812923 3.4357677 1103.316
+163406.0617813966 3.4357677 1103.3752
+163407.0617815009 3.4359252 1103.3357
+163408.0617816052 3.4359252 1103.3752
+163409.0617817095 3.4360039 1103.2765
+163410.0617818139 3.4360039 1103.316
+163411.0617819182 3.4361219 1103.3752
+163412.0617820225 3.4362006 1103.3357
+163413.0617821268 3.4361219 1103.4147
+163414.0617822311 3.4361613 1103.4344
+163415.0617823354 3.4363189 1103.3555
+163416.0617824397 3.4363582 1103.3555
+163417.061782544 3.4363189 1103.316
+163418.0617826483 3.4364369 1103.2963
+163419.0617827526 3.4363976 1103.316
+163420.0617828569 3.4362795 1103.316
+163421.0617829612 3.4364762 1103.3949
+163422.0617830656 3.4364369 1103.2765
+163423.0617831699 3.4364762 1103.316
+163424.0617832742 3.4363976 1103.3949
+163425.0617833785 3.4364369 1103.316
+163426.0617834828 3.4364369 1103.3752
+163427.0617835871 3.4365945 1103.3555
+163428.0617836914 3.4365945 1103.3555
+163429.0617837957 3.4365158 1103.3357
+163430.0617839 3.4367518 1103.2963
+163431.0617840043 3.4367125 1103.3949
+163432.0617841086 3.4367518 1103.316
+163433.0617842129 3.4367912 1103.3357
+163434.0617843173 3.4368308 1103.2369
+163435.0617844216 3.4368308 1103.3555
+163436.0617845259 3.4369094 1103.3949
+163437.0617846302 3.4369881 1103.3357
+163438.0617847345 3.4369094 1103.3357
+163439.0617848388 3.4369881 1103.3357
+163440.0617849431 3.4369488 1103.2567
+163441.0617850474 3.4369881 1103.316
+163442.0617851517 3.4370275 1103.4147
+163443.061785256 3.4371457 1103.3357
+163444.0617853603 3.4370668 1103.3555
+163445.0617854646 3.4371457 1103.316
+163446.0617855689 3.4370668 1103.2765
+163447.0617856733 3.437185 1103.474
+163448.0617857776 3.437185 1103.3357
+163449.0617858819 3.4372637 1103.3555
+163450.0617859862 3.4373424 1103.3357
+163451.0617860905 3.4373817 1103.3357
+163452.0617861948 3.4373817 1103.3357
+163453.0617862991 3.4375 1103.4147
+163454.0617864034 3.4375 1103.3357
+163455.0617865077 3.4375787 1103.3555
+163456.061786612 3.4375 1103.2567
+163457.0617867163 3.4376574 1103.3949
+163458.0617868206 3.4375 1103.316
+163459.061786925 3.437618 1103.3752
+163460.0617870293 3.437618 1103.3357
+163461.0617871336 3.4376574 1103.2963
+163462.0617872379 3.437618 1103.316
+163463.0617873422 3.437736 1103.316
+163464.0617874465 3.4376967 1103.2765
+163465.0617875508 3.437815 1103.3357
+163466.0617876551 3.4378936 1103.3555
+163467.0617877594 3.437736 1103.2567
+163468.0617878637 3.437815 1103.3555
+163469.061787968 3.4378543 1103.316
+163470.0617880723 3.4378543 1103.3949
+163471.0617881767 3.437815 1103.3555
+163472.061788281 3.4378543 1103.4147
+163473.0617883853 3.4378543 1103.316
+163474.0617884896 3.437815 1103.3752
+163475.0617885939 3.4378543 1103.3357
+163476.0617886982 3.4378936 1103.3949
+163477.0617888025 3.437815 1103.2963
+163478.0617889068 3.4378936 1103.3752
+163479.0617890111 3.4378543 1103.316
+163480.0617891154 3.437933 1103.3357
+163481.0617892197 3.4380116 1103.2963
+163482.061789324 3.437933 1103.3555
+163483.0617894284 3.4378936 1103.3752
+163484.0617895327 3.4379723 1103.3357
+163485.061789637 3.4380906 1103.3752
+163486.0617897413 3.4380116 1103.2963
+163487.0617898456 3.4380906 1103.3752
+163488.0617899499 3.4381692 1103.316
+163489.0617900542 3.438051 1103.2963
+163490.0617901585 3.4383266 1103.3555
+163491.0617902628 3.4381692 1103.316
+163492.0617903671 3.4381692 1103.3357
+163493.0617904714 3.4381299 1103.4542
+163494.0617905757 3.4381299 1103.2963
+163495.06179068 3.4381692 1103.316
+163496.0617907844 3.4381299 1103.3555
+163497.0617908887 3.4381692 1103.3949
+163498.061790993 3.4381299 1103.3357
+163499.0617910973 3.4381692 1103.3555
+163500.0617912016 3.4381692 1103.2765
+163501.0617913059 3.4381299 1103.316
+163502.0617914102 3.4381692 1103.3357
+163503.0617915145 3.4382873 1103.3555
+163504.0617916188 3.4382873 1103.3752
+163505.0617917231 3.4383662 1103.4147
+163506.0617918274 3.4383662 1103.3752
+163507.0617919317 3.4384449 1103.3555
+163508.0617920361 3.4384055 1103.4344
+163509.0617921404 3.4384842 1103.3357
+163510.0617922447 3.4384842 1103.3949
+163511.061792349 3.4386022 1103.316
+163512.0617924533 3.4384449 1103.3555
+163513.0617925576 3.4384449 1103.3357
+163514.0617926619 3.4384842 1103.3752
+163515.0617927662 3.4386811 1103.3357
+163516.0617928705 3.4386415 1103.316
+163517.0617929748 3.4385629 1103.3357
+163518.0617930791 3.4384842 1103.3357
+163519.0617931834 3.4386022 1103.2963
+163520.0617932878 3.4386022 1103.3752
+163521.0617933921 3.4386811 1103.2963
+163522.0617934964 3.4385629 1103.4344
+163523.0617936007 3.4386811 1103.3752
+163524.061793705 3.4387598 1103.3752
+163525.0617938093 3.4387598 1103.316
+163526.0617939136 3.4387205 1103.3949
+163527.0617940179 3.4388778 1103.316
+163528.0617941222 3.4389961 1103.2765
+163529.0617942265 3.4389565 1103.3357
+163530.0617943308 3.4389172 1103.316
+163531.0617944351 3.4390748 1103.2963
+163532.0617945394 3.4391534 1103.2963
+163533.0617946438 3.4391141 1103.2567
+163534.0617947481 3.4392321 1103.3357
+163535.0617948524 3.4393504 1103.316
+163536.0617949567 3.4393504 1103.2765
+163537.061795061 3.4395077 1103.2369
+163538.0617951653 3.4393897 1103.3555
+163539.0617952696 3.4395077 1103.2765
+163540.0617953739 3.439626 1103.316
+163541.0617954782 3.4395864 1103.2369
+163542.0617955825 3.4396653 1103.2963
+163543.0617956868 3.4396653 1103.316
+163544.0617957911 3.4396653 1103.3357
+163545.0617958955 3.439744 1103.316
+163546.0617959998 3.4397833 1103.3752
+163547.0617961041 3.4397833 1103.2765
+163548.0617962084 3.4397047 1103.3555
+163549.0617963127 3.4398227 1103.4147
+163550.061796417 3.439862 1103.3555
+163551.0617965213 3.4399014 1103.3357
+163552.0617966256 3.4399803 1103.4147
+163553.0617967299 3.4399803 1103.3357
+163554.0617968342 3.4399803 1103.3752
+163555.0617969385 3.4400589 1103.3752
+163556.0617970428 3.440177 1103.3357
+163557.0617971472 3.4400983 1103.3949
+163558.0617972515 3.440177 1103.2765
+163559.0617973558 3.440177 1103.3357
+163560.0617974601 3.4402559 1103.3357
+163561.0617975644 3.4402559 1103.316
+163562.0617976687 3.4403739 1103.3949
+163563.061797773 3.4404526 1103.316
+163564.0617978773 3.4404526 1103.2765
+163565.0617979816 3.4404526 1103.2369
+163566.0617980859 3.4404919 1103.3949
+163567.0617981902 3.4404132 1103.3555
+163568.0617982945 3.4405708 1103.3949
+163569.0617983988 3.4405315 1103.2369
+163570.0617985032 3.4405708 1103.2369
+163571.0617986075 3.4404919 1103.3949
+163572.0617987118 3.4406495 1103.316
+163573.0617988161 3.4406102 1103.3357
+163574.0617989204 3.4405315 1103.3555
+163575.0617990247 3.4406102 1103.2765
+163576.061799129 3.4407282 1103.3752
+163577.0617992333 3.4407282 1103.3357
+163578.0617993376 3.4407282 1103.2567
+163579.0617994419 3.4406888 1103.4344
+163580.0617995462 3.4408069 1103.2963
+163581.0617996505 3.4408069 1103.3949
+163582.0617997549 3.4406495 1103.3357
+163583.0617998592 3.4406495 1103.3949
+163584.0617999635 3.4407675 1103.2963
+163585.0618000678 3.4408464 1103.3555
+163586.0618001721 3.4406495 1103.3555
+163587.0618002764 3.4408069 1103.2963
+163588.0618003807 3.4408069 1103.3949
+163589.061800485 3.4407675 1103.316
+163590.0618005893 3.4407675 1103.3357
+163591.0618006936 3.4408464 1103.316
+163592.0618007979 3.4408464 1103.3752
+163593.0618009022 3.4408069 1103.4147
+163594.0618010066 3.4408464 1103.3555
+163595.0618011109 3.4409251 1103.3752
+163596.0618012152 3.4408858 1103.2765
+163597.0618013195 3.4409251 1103.2172
+163598.0618014238 3.4408464 1103.3752
+163599.0618015281 3.4408464 1103.3357
+163600.0618016324 3.4408069 1103.4147
+163601.0618017367 3.4407675 1103.3752
+163602.061801841 3.4408858 1103.316
+163603.0618019453 3.4408858 1103.3752
+163604.0618020496 3.4408464 1103.3555
+163605.0618021539 3.4410038 1103.316
+163606.0618022582 3.4410038 1103.3752
+163607.0618023626 3.4410431 1103.3752
+163608.0618024669 3.4410825 1103.2963
+163609.0618025712 3.4411614 1103.3357
+163610.0618026755 3.4412007 1103.2963
+163611.0618027798 3.4412401 1103.3949
+163612.0618028841 3.4412401 1103.3555
+163613.0618029884 3.4414368 1103.2963
+163614.0618030927 3.4415944 1103.2765
+163615.061803197 3.4415157 1103.2963
+163616.0618033013 3.4415157 1103.4147
+163617.0618034056 3.4417124 1103.3555
+163618.0618035099 3.4417124 1103.2963
+163619.0618036143 3.4417517 1103.3357
+163620.0618037186 3.4417517 1103.2963
+163621.0618038229 3.4418306 1103.2765
+163622.0618039272 3.4417913 1103.2963
+163623.0618040315 3.4417517 1103.2963
+163624.0618041358 3.4418306 1103.316
+163625.0618042401 3.4418306 1103.316
+163626.0618043444 3.4419093 1103.3555
+163627.0618044487 3.44187 1103.3555
+163628.061804553 3.4419093 1103.2172
+163629.0618046573 3.441988 1103.3555
+163630.0618047616 3.4420273 1103.3555
+163631.061804866 3.4419487 1103.1975
+163632.0618049703 3.4421062 1103.3357
+163633.0618050746 3.4419487 1103.2765
+163634.0618051789 3.4421456 1103.3555
+163635.0618052832 3.4421456 1103.3949
+163636.0618053875 3.4421456 1103.316
+163637.0618054918 3.4421849 1103.3357
+163638.0618055961 3.4422243 1103.2567
+163639.0618057004 3.4421062 1103.316
+163640.0618058047 3.4422243 1103.4147
+163641.061805909 3.4422243 1103.4147
+163642.0618060133 3.4422636 1103.3555
+163643.0618061177 3.4423423 1103.3555
+163644.061806222 3.4422636 1103.3555
+163645.0618063263 3.4424605 1103.3555
+163646.0618064306 3.4424212 1103.3555
+163647.0618065349 3.4424212 1103.474
+163648.0618066392 3.4424212 1103.2765
+163649.0618067435 3.4424999 1103.3555
+163650.0618068478 3.4425392 1103.3357
+163651.0618069521 3.4425786 1103.3752
+163652.0618070564 3.4425786 1103.316
+163653.0618071607 3.4426572 1103.316
+163654.061807265 3.4426572 1103.2963
+163655.0618073693 3.4426968 1103.316
+163656.0618074737 3.4427361 1103.3752
+163657.061807578 3.4427755 1103.3949
+163658.0618076823 3.4427755 1103.2765
+163659.0618077866 3.4428148 1103.3949
+163660.0618078909 3.4428148 1103.316
+163661.0618079952 3.4429328 1103.2172
+163662.0618080995 3.4428935 1103.2963
+163663.0618082038 3.4429328 1103.3555
+163664.0618083081 3.4428542 1103.3357
+163665.0618084124 3.4427361 1103.3949
+163666.0618085167 3.4428935 1103.4147
+163667.061808621 3.4428542 1103.2765
+163668.0618087254 3.4428935 1103.316
+163669.0618088297 3.4428542 1103.2963
+163670.061808934 3.4428542 1103.3357
+163671.0618090383 3.4428935 1103.4542
+163672.0618091426 3.4429328 1103.2963
+163673.0618092469 3.4429328 1103.3752
+163674.0618093512 3.4430118 1103.316
+163675.0618094555 3.4429328 1103.316
+163676.0618095598 3.4429328 1103.316
+163677.0618096641 3.4430118 1103.2963
+163678.0618097684 3.4429722 1103.2567
+163679.0618098727 3.4429722 1103.3357
+163680.0618099771 3.4429722 1103.3357
+163681.0618100814 3.4430511 1103.2765
+163682.0618101857 3.4430904 1103.3555
+163683.06181029 3.4429722 1103.3555
+163684.0618103943 3.4430511 1103.3357
+163685.0618104986 3.4430511 1103.2567
+163686.0618106029 3.4429328 1103.3752
+163687.0618107072 3.4430904 1103.3357
+163688.0618108115 3.4430118 1103.3555
+163689.0618109158 3.4431691 1103.316
+163690.0618110201 3.4432085 1103.2963
+163691.0618111244 3.4431298 1103.2765
+163692.0618112287 3.4432478 1103.3949
+163693.0618113331 3.4431691 1103.3555
+163694.0618114374 3.4432871 1103.2963
+163695.0618115417 3.4432085 1103.316
+163696.061811646 3.4432478 1103.2963
+163697.0618117503 3.4434054 1103.3555
+163698.0618118546 3.4432871 1103.2963
+163699.0618119589 3.4434054 1103.3949
+163700.0618120632 3.4434841 1103.2765
+163701.0618121675 3.4433661 1103.3357
+163702.0618122718 3.4434841 1103.3949
+163703.0618123761 3.4434447 1103.2765
+163704.0618124804 3.4434841 1103.2567
+163705.0618125848 3.4434841 1103.3752
+163706.0618126891 3.4434447 1103.3555
+163707.0618127934 3.4434841 1103.3555
+163708.0618128977 3.4434841 1103.3555
+163709.061813002 3.4435234 1103.2963
+163710.0618131063 3.4435234 1103.3949
+163711.0618132106 3.4435234 1103.2963
+163712.0618133149 3.4435627 1103.3357
+163713.0618134192 3.4434841 1103.316
+163714.0618135235 3.4435627 1103.3357
+163715.0618136278 3.4436023 1103.316
+163716.0618137321 3.4435627 1103.2963
+163717.0618138365 3.4436023 1103.2963
+163718.0618139408 3.4435627 1103.3949
+163719.0618140451 3.4436023 1103.474
+163720.0618141494 3.4437203 1103.2963
+163721.0618142537 3.4436023 1103.2963
+163722.061814358 3.443681 1103.3357
+163723.0618144623 3.443681 1103.3555
+163724.0618145666 3.4437203 1103.316
+163725.0618146709 3.4436417 1103.2765
+163726.0618147752 3.4436023 1103.316
+163727.0618148795 3.4436417 1103.2963
+163728.0618149838 3.4436023 1103.316
+163729.0618150881 3.4434841 1103.2369
+163730.0618151925 3.4436023 1103.3949
+163731.0618152968 3.4435627 1103.316
+163732.0618154011 3.4436023 1103.2765
+163733.0618155054 3.4436417 1103.2963
+163734.0618156097 3.4436023 1103.3752
+163735.061815714 3.4436417 1103.3555
+163736.0618158183 3.443681 1103.3555
+163737.0618159226 3.443681 1103.2765
+163738.0618160269 3.443681 1103.3357
+163739.0618161312 3.4436417 1103.2567
+163740.0618162355 3.443681 1103.3752
+163741.0618163398 3.443799 1103.4147
+163742.0618164442 3.4437597 1103.2765
+163743.0618165485 3.4437597 1103.3555
+163744.0618166528 3.4437597 1103.3949
+163745.0618167571 3.4438777 1103.4542
+163746.0618168614 3.4438777 1103.2963
+163747.0618169657 3.443799 1103.2963
+163748.06181707 3.443799 1103.3357
+163749.0618171743 3.443799 1103.316
+163750.0618172786 3.4438777 1103.3357
+163751.0618173829 3.4438777 1103.2963
+163752.0618174872 3.443996 1103.3357
+163753.0618175915 3.4440746 1103.4147
+163754.0618176959 3.4440746 1103.3555
+163755.0618178002 3.444114 1103.2567
+163756.0618179045 3.443996 1103.3357
+163757.0618180088 3.4441926 1103.2963
+163758.0618181131 3.4440746 1103.3357
+163759.0618182174 3.4440746 1103.3752
+163760.0618183217 3.4441533 1103.3949
+163761.061818426 3.4441533 1103.3357
+163762.0618185303 3.4441926 1103.2369
+163763.0618186346 3.444114 1103.3752
+163764.0618187389 3.4441926 1103.2963
+163765.0618188432 3.4441926 1103.3752
+163766.0618189476 3.4442716 1103.3357
+163767.0618190519 3.4443502 1103.4344
+163768.0618191562 3.4443109 1103.3555
+163769.0618192605 3.4442716 1103.2963
+163770.0618193648 3.4443896 1103.3949
+163771.0618194691 3.4444683 1103.2567
+163772.0618195734 3.4444289 1103.3357
+163773.0618196777 3.4445865 1103.2765
+163774.061819782 3.4444683 1103.3357
+163775.0618198863 3.4445865 1103.2765
+163776.0618199906 3.4445472 1103.3752
+163777.0618200949 3.4446652 1103.2765
+163778.0618201992 3.4447045 1103.3357
+163779.0618203036 3.4448225 1103.2567
+163780.0618204079 3.4448225 1103.3357
+163781.0618205122 3.4448621 1103.316
+163782.0618206165 3.4449408 1103.316
+163783.0618207208 3.4449408 1103.2765
+163784.0618208251 3.4450982 1103.316
+163785.0618209294 3.4450982 1103.316
+163786.0618210337 3.4451771 1103.4147
+163787.061821138 3.4451771 1103.316
+163788.0618212423 3.4451771 1103.3357
+163789.0618213466 3.4452951 1103.3357
+163790.0618214509 3.4453738 1103.316
+163791.0618215553 3.4453738 1103.2765
+163792.0618216596 3.4453344 1103.3555
+163793.0618217639 3.445492 1103.3357
+163794.0618218682 3.4453738 1103.3949
+163795.0618219725 3.4454527 1103.3752
+163796.0618220768 3.4455314 1103.2963
+163797.0618221811 3.4455314 1103.2567
+163798.0618222854 3.44561 1103.3357
+163799.0618223897 3.4457281 1103.4344
+163800.061822494 3.4456887 1103.3752
+163801.0618225983 3.4457281 1103.316
+163802.0618227026 3.4457676 1103.3555
+163803.061822807 3.4457676 1103.3555
+163804.0618229113 3.4458857 1103.3555
+163805.0618230156 3.4458463 1103.3555
+163806.0618231199 3.4458857 1103.316
+163807.0618232242 3.4458857 1103.3555
+163808.0618233285 3.445807 1103.2963
+163809.0618234328 3.445807 1103.2963
+163810.0618235371 3.445807 1103.3949
+163811.0618236414 3.4458857 1103.316
+163812.0618237457 3.4459643 1103.2963
+163813.06182385 3.4460037 1103.4344
+163814.0618239543 3.446043 1103.3357
+163815.0618240586 3.4460037 1103.3357
+163816.061824163 3.4460037 1103.2765
+163817.0618242673 3.4462399 1103.3555
+163818.0618243716 3.4461219 1103.3752
+163819.0618244759 3.446043 1103.3949
+163820.0618245802 3.4461613 1103.3357
+163821.0618246845 3.4460826 1103.3357
+163822.0618247888 3.446043 1103.2567
+163823.0618248931 3.4460826 1103.3752
+163824.0618249974 3.4461219 1103.3555
+163825.0618251017 3.4460826 1103.316
+163826.061825206 3.4460826 1103.316
+163827.0618253103 3.4460826 1103.3752
+163828.0618254147 3.4460826 1103.3357
+163829.061825519 3.4461613 1103.3752
+163830.0618256233 3.4461613 1103.2963
+163831.0618257276 3.4461613 1103.316
+163832.0618258319 3.4463186 1103.316
+163833.0618259362 3.4462006 1103.4542
+163834.0618260405 3.446358 1103.3752
+163835.0618261448 3.4465549 1103.3752
+163836.0618262491 3.4463186 1103.3357
+163837.0618263534 3.446358 1103.3752
+163838.0618264577 3.4463186 1103.3752
+163839.061826562 3.4464369 1103.3752
+163840.0618266664 3.4464762 1103.316
+163841.0618267707 3.4463975 1103.3357
+163842.061826875 3.4465156 1103.4147
+163843.0618269793 3.4464369 1103.3357
+163844.0618270836 3.4465549 1103.3752
+163845.0618271879 3.4464762 1103.3555
+163846.0618272922 3.4464369 1103.2567
+163847.0618273965 3.4465156 1103.2963
+163848.0618275008 3.4465549 1103.2172
+163849.0618276051 3.4465549 1103.2963
+163850.0618277094 3.4465549 1103.3555
+163851.0618278137 3.4465942 1103.3555
+163852.061827918 3.4466336 1103.3357
+163853.0618280224 3.4466336 1103.316
+163854.0618281267 3.4467912 1103.2963
+163855.061828231 3.4467912 1103.3555
+163856.0618283353 3.4468305 1103.3752
+163857.0618284396 3.4470274 1103.2765
+163858.0618285439 3.4470274 1103.316
+163859.0618286482 3.4471455 1103.316
+163860.0618287525 3.4471061 1103.316
+163861.0618288568 3.4471455 1103.3357
+163862.0618289611 3.4472635 1103.3949
+163863.0618290654 3.4472241 1103.2567
+163864.0618291697 3.4472635 1103.3555
+163865.0618292741 3.4473031 1103.2963
+163866.0618293784 3.4472635 1103.3357
+163867.0618294827 3.4472241 1103.3752
+163868.061829587 3.4473031 1103.316
+163869.0618296913 3.4473031 1103.3555
+163870.0618297956 3.4472241 1103.3949
+163871.0618298999 3.4472635 1103.316
+163872.0618300042 3.4473424 1103.2963
+163873.0618301085 3.4474211 1103.3752
+163874.0618302128 3.4473817 1103.4542
+163875.0618303171 3.4474211 1103.316
+163876.0618304214 3.447618 1103.316
+163877.0618305258 3.4474998 1103.3555
+163878.0618306301 3.4475391 1103.3949
+163879.0618307344 3.4474604 1103.2963
+163880.0618308387 3.4474998 1103.3357
+163881.061830943 3.447618 1103.3555
+163882.0618310473 3.4475391 1103.2963
+163883.0618311516 3.4474604 1103.316
+163884.0618312559 3.447618 1103.3357
+163885.0618313602 3.4475784 1103.2765
+163886.0618314645 3.447618 1103.3555
+163887.0618315688 3.4476573 1103.2963
+163888.0618316731 3.447618 1103.3949
+163889.0618317775 3.447736 1103.2567
+163890.0618318818 3.447618 1103.2567
+163891.0618319861 3.447736 1103.316
+163892.0618320904 3.4476967 1103.3555
+163893.0618321947 3.4478147 1103.3357
+163894.061832299 3.4477754 1103.3949
+163895.0618324033 3.4478934 1103.3555
+163896.0618325076 3.447854 1103.2963
+163897.0618326119 3.447854 1103.3357
+163898.0618327162 3.447933 1103.3752
+163899.0618328205 3.4478147 1103.3752
+163900.0618329248 3.447854 1103.2765
+163901.0618330291 3.447933 1103.4344
+163902.0618331335 3.447933 1103.2963
+163903.0618332378 3.4480116 1103.316
+163904.0618333421 3.4480116 1103.4147
+163905.0618334464 3.4480903 1103.3949
+163906.0618335507 3.4480903 1103.2765
+163907.061833655 3.4482083 1103.4147
+163908.0618337593 3.4481297 1103.2765
+163909.0618338636 3.4482083 1103.2765
+163910.0618339679 3.4483659 1103.3555
+163911.0618340722 3.4483659 1103.2765
+163912.0618341765 3.4482872 1103.316
+163913.0618342808 3.4483659 1103.3555
+163914.0618343852 3.4483659 1103.2963
+163915.0618344895 3.4484446 1103.3357
+163916.0618345938 3.4484839 1103.3555
+163917.0618346981 3.4486022 1103.3752
+163918.0618348024 3.4484446 1103.3949
+163919.0618349067 3.4484839 1103.3357
+163920.061835011 3.4484839 1103.316
+163921.0618351153 3.4485233 1103.316
+163922.0618352196 3.4485233 1103.3357
+163923.0618353239 3.4485233 1103.3752
+163924.0618354282 3.4485233 1103.3555
+163925.0618355325 3.4485629 1103.3752
+163926.0618356369 3.4486022 1103.3949
+163927.0618357412 3.4485233 1103.3752
+163928.0618358455 3.4486022 1103.2765
+163929.0618359498 3.4485629 1103.3357
+163930.0618360541 3.4485233 1103.3752
+163931.0618361584 3.4486022 1103.3357
+163932.0618362627 3.4485629 1103.1975
+163933.061836367 3.4486415 1103.3752
+163934.0618364713 3.4486809 1103.4147
+163935.0618365756 3.4486809 1103.316
+163936.0618366799 3.4486022 1103.3555
+163937.0618367842 3.4487202 1103.2369
+163938.0618368885 3.4486415 1103.3357
+163939.0618369929 3.4486809 1103.3357
+163940.0618370972 3.4485629 1103.2963
+163941.0618372015 3.4484839 1103.2765
+163942.0618373058 3.4486415 1103.2765
+163943.0618374101 3.4486809 1103.2765
+163944.0618375144 3.4487202 1103.2172
+163945.0618376187 3.4486809 1103.3555
+163946.061837723 3.4486415 1103.2172
+163947.0618378273 3.4486809 1103.3357
+163948.0618379316 3.4486415 1103.3555
+163949.0618380359 3.4487596 1103.2963
+163950.0618381402 3.4487989 1103.316
+163951.0618382446 3.4486809 1103.4344
+163952.0618383489 3.4487989 1103.3752
+163953.0618384532 3.4488382 1103.316
+163954.0618385575 3.4488382 1103.3357
+163955.0618386618 3.4487989 1103.316
+163956.0618387661 3.4487989 1103.3752
+163957.0618388704 3.4489172 1103.3357
+163958.0618389747 3.4488382 1103.2567
+163959.061839079 3.4487596 1103.3555
+163960.0618391833 3.4488382 1103.3357
+163961.0618392876 3.4488778 1103.3752
+163962.0618393919 3.4488382 1103.316
+163963.0618394963 3.4488382 1103.316
+163964.0618396006 3.4487202 1103.3949
+163965.0618397049 3.4488382 1103.3555
+163966.0618398092 3.4489172 1103.3357
+163967.0618399135 3.4489565 1103.3949
+163968.0618400178 3.4488382 1103.316
+163969.0618401221 3.4488778 1103.3752
+163970.0618402264 3.4489565 1103.3357
+163971.0618403307 3.4488778 1103.3752
+163972.061840435 3.4489172 1103.3357
+163973.0618405393 3.4488382 1103.2963
+163974.0618406436 3.4489565 1103.316
+163975.0618407479 3.4488778 1103.2765
+163976.0618408523 3.4489172 1103.3555
+163977.0618409566 3.4490352 1103.3357
+163978.0618410609 3.4489958 1103.3752
+163979.0618411652 3.4490745 1103.3555
+163980.0618412695 3.4491534 1103.474
+163981.0618413738 3.4491138 1103.3949
+163982.0618414781 3.4492321 1103.3752
+163983.0618415824 3.4493108 1103.316
+163984.0618416867 3.4493108 1103.2567
+163985.061841791 3.4493501 1103.2963
+163986.0618418953 3.4493108 1103.2765
+163987.0618419996 3.4494288 1103.3555
+163988.061842104 3.4493501 1103.316
+163989.0618422083 3.4493895 1103.3357
+163990.0618423126 3.4493895 1103.316
+163991.0618424169 3.4493501 1103.3357
+163992.0618425212 3.4493895 1103.3752
+163993.0618426255 3.4494288 1103.3949
+163994.0618427298 3.4494684 1103.316
+163995.0618428341 3.4493895 1103.3357
+163996.0618429384 3.4495077 1103.316
+163997.0618430427 3.4494684 1103.316
+163998.061843147 3.4494684 1103.316
+163999.0618432513 3.4494684 1103.316
+164000.0618433557 3.4495864 1103.2765
+164001.06184346 3.4495471 1103.3357
+164002.0618435643 3.4495077 1103.3357
+164003.0618436686 3.4495864 1103.316
+164004.0618437729 3.4495077 1103.3357
+164005.0618438772 3.4497044 1103.3752
+164006.0618439815 3.4495864 1103.3357
+164007.0618440858 3.4497437 1103.2765
+164008.0618441901 3.4498227 1103.3555
+164009.0618442944 3.449862 1103.3752
+164010.0618443987 3.4497833 1103.3752
+164011.061844503 3.4498227 1103.316
+164012.0618446073 3.4499407 1103.4147
+164013.0618447117 3.4500587 1103.3949
+164014.061844816 3.4500194 1103.316
+164015.0618449203 3.4500983 1103.2963
+164016.0618450246 3.4500587 1103.4344
+164017.0618451289 3.4500194 1103.2369
+164018.0618452332 3.4501376 1103.3949
+164019.0618453375 3.4501376 1103.3357
+164020.0618454418 3.44998 1103.3357
+164021.0618455461 3.4502163 1103.2963
+164022.0618456504 3.450177 1103.2567
+164023.0618457547 3.4501376 1103.3357
+164024.061845859 3.4502556 1103.3555
+164025.0618459634 3.4502163 1103.3357
+164026.0618460677 3.450177 1103.3555
+164027.061846172 3.450295 1103.3357
+164028.0618462763 3.4502556 1103.3555
+164029.0618463806 3.4503343 1103.3752
+164030.0618464849 3.4503343 1103.3555
+164031.0618465892 3.4504526 1103.2963
+164032.0618466935 3.4504132 1103.3555
+164033.0618467978 3.4504526 1103.2963
+164034.0618469021 3.4504919 1103.2765
+164035.0618470064 3.4505706 1103.3555
+164036.0618471107 3.4504919 1103.2765
+164037.0618472151 3.4506099 1103.3357
+164038.0618473194 3.4506099 1103.3357
+164039.0618474237 3.4507282 1103.2963
+164040.061847528 3.4506886 1103.3555
+164041.0618476323 3.4506493 1103.316
+164042.0618477366 3.4506493 1103.2963
+164043.0618478409 3.4506886 1103.4147
+164044.0618479452 3.4506886 1103.3555
+164045.0618480495 3.4508069 1103.2963
+164046.0618481538 3.4508462 1103.2963
+164047.0618482581 3.4507675 1103.2369
+164048.0618483624 3.4508069 1103.316
+164049.0618484668 3.4509249 1103.2172
+164050.0618485711 3.4509249 1103.316
+164051.0618486754 3.4510038 1103.316
+164052.0618487797 3.4510038 1103.3555
+164053.061848884 3.4510431 1103.3949
+164054.0618489883 3.4510825 1103.3357
+164055.0618490926 3.4510825 1103.316
+164056.0618491969 3.4511218 1103.3752
+164057.0618493012 3.4511218 1103.3752
+164058.0618494055 3.4512792 1103.4147
+164059.0618495098 3.4512398 1103.2765
+164060.0618496141 3.4512005 1103.2567
+164061.0618497184 3.4512005 1103.3949
+164062.0618498228 3.4511611 1103.3357
+164063.0618499271 3.4510825 1103.316
+164064.0618500314 3.4510431 1103.3357
+164065.0618501357 3.4511218 1103.3555
+164066.06185024 3.4509642 1103.3555
+164067.0618503443 3.4510431 1103.3752
+164068.0618504486 3.4510825 1103.3357
+164069.0618505529 3.4510431 1103.316
+164070.0618506572 3.4510825 1103.3357
+164071.0618507615 3.4510038 1103.2963
+164072.0618508658 3.4510825 1103.3555
+164073.0618509701 3.4512005 1103.316
+164074.0618510745 3.4512398 1103.3949
+164075.0618511788 3.4512792 1103.3949
+164076.0618512831 3.4513187 1103.3752
+164077.0618513874 3.4513581 1103.2963
+164078.0618514917 3.4513187 1103.3357
+164079.061851596 3.4513581 1103.3949
+164080.0618517003 3.4513974 1103.3357
+164081.0618518046 3.4514368 1103.3555
+164082.0618519089 3.4513581 1103.3555
+164083.0618520132 3.4514368 1103.316
+164084.0618521175 3.4513974 1103.316
+164085.0618522218 3.4515154 1103.3357
+164086.0618523262 3.4515154 1103.3555
+164087.0618524305 3.4515548 1103.2567
+164088.0618525348 3.4515548 1103.2567
+164089.0618526391 3.4515548 1103.3555
+164090.0618527434 3.4515154 1103.3357
+164091.0618528477 3.4515548 1103.2963
+164092.061852952 3.4515941 1103.4147
+164093.0618530563 3.4517124 1103.316
+164094.0618531606 3.4515548 1103.3357
+164095.0618532649 3.4515154 1103.3752
+164096.0618533692 3.4515941 1103.3752
+164097.0618534735 3.4516337 1103.4542
+164098.0618535778 3.4515154 1103.316
+164099.0618536822 3.4516337 1103.4147
+164100.0618537865 3.4516337 1103.3555
+164101.0618538908 3.4516337 1103.3752
+164102.0618539951 3.4516337 1103.3357
+164103.0618540994 3.4515548 1103.3357
+164104.0618542037 3.4517517 1103.3555
+164105.061854308 3.4517517 1103.3555
+164106.0618544123 3.4517124 1103.3357
+164107.0618545166 3.4518697 1103.3555
+164108.0618546209 3.4518304 1103.3949
+164109.0618547252 3.4518697 1103.3357
+164110.0618548295 3.451791 1103.3357
+164111.0618549339 3.4518697 1103.3357
+164112.0618550382 3.4519091 1103.316
+164113.0618551425 3.4519486 1103.2765
+164114.0618552468 3.4518304 1103.316
+164115.0618553511 3.451988 1103.3555
+164116.0618554554 3.4519486 1103.2963
+164117.0618555597 3.451988 1103.316
+164118.061855664 3.452106 1103.2765
+164119.0618557683 3.451988 1103.3949
+164120.0618558726 3.4521453 1103.2765
+164121.0618559769 3.4521453 1103.3752
+164122.0618560812 3.452106 1103.3949
+164123.0618561856 3.4521847 1103.2765
+164124.0618562899 3.4520667 1103.3949
+164125.0618563942 3.452224 1103.3752
+164126.0618564985 3.4521453 1103.3357
+164127.0618566028 3.4521453 1103.3357
+164128.0618567071 3.4521453 1103.3555
+164129.0618568114 3.4523816 1103.3949
+164130.0618569157 3.4521453 1103.3752
+164131.06185702 3.452224 1103.3752
+164132.0618571243 3.4523029 1103.316
+164133.0618572286 3.4522636 1103.3949
+164134.0618573329 3.4522636 1103.3555
+164135.0618574372 3.4523423 1103.3752
+164136.0618575416 3.4522636 1103.2963
+164137.0618576459 3.4522636 1103.3357
+164138.0618577502 3.4523029 1103.2963
+164139.0618578545 3.4523423 1103.316
+164140.0618579588 3.4523423 1103.2963
+164141.0618580631 3.4523029 1103.2963
+164142.0618581674 3.4523816 1103.3555
+164143.0618582717 3.4522636 1103.3555
+164144.061858376 3.4523423 1103.3357
+164145.0618584803 3.4523423 1103.3357
+164146.0618585846 3.4523423 1103.4147
+164147.0618586889 3.4523029 1103.3949
+164148.0618587933 3.4524209 1103.3357
+164149.0618588976 3.4523816 1103.316
+164150.0618590019 3.4525392 1103.3555
+164151.0618591062 3.4525392 1103.3357
+164152.0618592105 3.4525392 1103.2963
+164153.0618593148 3.4525785 1103.2369
+164154.0618594191 3.4525392 1103.2765
+164155.0618595234 3.4524603 1103.3357
+164156.0618596277 3.4525785 1103.3357
+164157.061859732 3.4524603 1103.3357
+164158.0618598363 3.4524603 1103.4147
+164159.0618599406 3.4524996 1103.3752
+164160.061860045 3.4525785 1103.3357
+164161.0618601493 3.4525392 1103.3555
+164162.0618602536 3.4525392 1103.2963
+164163.0618603579 3.4525392 1103.2765
+164164.0618604622 3.4525785 1103.3357
+164165.0618605665 3.4526572 1103.3555
+164166.0618606708 3.4527359 1103.316
+164167.0618607751 3.4526966 1103.2963
+164168.0618608794 3.4527752 1103.2963
+164169.0618609837 3.4526179 1103.3555
+164170.061861088 3.4528146 1103.3357
+164171.0618611923 3.4528146 1103.3949
+164172.0618612967 3.4528542 1103.316
+164173.061861401 3.4527752 1103.3752
+164174.0618615053 3.4528935 1103.3357
+164175.0618616096 3.4528146 1103.316
+164176.0618617139 3.4528542 1103.316
+164177.0618618182 3.4528935 1103.3949
+164178.0618619225 3.4528542 1103.3357
+164179.0618620268 3.4529328 1103.4147
+164180.0618621311 3.4529722 1103.316
+164181.0618622354 3.4529328 1103.3357
+164182.0618623397 3.4529722 1103.316
+164183.061862444 3.4528542 1103.316
+164184.0618625483 3.4530902 1103.3357
+164185.0618626527 3.4529722 1103.3555
+164186.061862757 3.4530902 1103.3357
+164187.0618628613 3.4529722 1103.3949
+164188.0618629656 3.4531691 1103.2963
+164189.0618630699 3.4530902 1103.2765
+164190.0618631742 3.4532084 1103.2765
+164191.0618632785 3.4532084 1103.3949
+164192.0618633828 3.4532871 1103.3949
+164193.0618634871 3.4532478 1103.3555
+164194.0618635914 3.4533265 1103.2567
+164195.0618636957 3.4532478 1103.3752
+164196.0618638 3.4532478 1103.316
+164197.0618639044 3.4532478 1103.3555
+164198.0618640087 3.4533265 1103.3357
+164199.061864113 3.4533658 1103.3949
+164200.0618642173 3.4533658 1103.2567
+164201.0618643216 3.4533265 1103.316
+164202.0618644259 3.4533658 1103.2369
+164203.0618645302 3.4532478 1103.3752
+164204.0618646345 3.4533658 1103.2963
+164205.0618647388 3.4532871 1103.316
+164206.0618648431 3.4533658 1103.3949
+164207.0618649474 3.4534445 1103.2765
+164208.0618650517 3.4531691 1103.3752
+164209.0618651561 3.4532871 1103.316
+164210.0618652604 3.4533265 1103.4147
+164211.0618653647 3.4533658 1103.2963
+164212.061865469 3.4532478 1103.3357
+164213.0618655733 3.4533658 1103.3357
+164214.0618656776 3.4532871 1103.2567
+164215.0618657819 3.4533265 1103.3555
+164216.0618658862 3.4532478 1103.3357
+164217.0618659905 3.4533658 1103.3555
+164218.0618660948 3.4533658 1103.3555
+164219.0618661991 3.4532478 1103.3357
+164220.0618663034 3.4532871 1103.2963
+164221.0618664077 3.4532871 1103.2963
+164222.0618665121 3.4533265 1103.316
+164223.0618666164 3.4533658 1103.3357
+164224.0618667207 3.4532871 1103.3949
+164225.061866825 3.4534051 1103.3752
+164226.0618669293 3.4534841 1103.3357
+164227.0618670336 3.4533265 1103.3357
+164228.0618671379 3.4533658 1103.316
+164229.0618672422 3.4533658 1103.316
+164230.0618673465 3.4533265 1103.2963
+164231.0618674508 3.4534051 1103.316
+164232.0618675551 3.4533658 1103.2963
+164233.0618676594 3.4533658 1103.2963
+164234.0618677638 3.4533658 1103.4147
+164235.0618678681 3.4533265 1103.3949
+164236.0618679724 3.4534051 1103.3752
+164237.0618680767 3.4534841 1103.4147
+164238.061868181 3.4534445 1103.3357
+164239.0618682853 3.4534051 1103.2765
+164240.0618683896 3.4534445 1103.316
+164241.0618684939 3.4534445 1103.2567
+164242.0618685982 3.4534445 1103.3949
+164243.0618687025 3.4535627 1103.2369
+164244.0618688068 3.4536808 1103.3357
+164245.0618689111 3.4536021 1103.3357
+164246.0618690155 3.4536808 1103.3555
+164247.0618691198 3.4537201 1103.4147
+164248.0618692241 3.453799 1103.3949
+164249.0618693284 3.4538777 1103.2963
+164250.0618694327 3.4537594 1103.3752
+164251.061869537 3.4538777 1103.2963
+164252.0618696413 3.4539957 1103.3752
+164253.0618697456 3.4539957 1103.3555
+164254.0618698499 3.454035 1103.3555
+164255.0618699542 3.454035 1103.3357
+164256.0618700585 3.454114 1103.316
+164257.0618701628 3.4541926 1103.316
+164258.0618702671 3.4541926 1103.3357
+164259.0618703715 3.454232 1103.3752
+164260.0618704758 3.4541926 1103.2963
+164261.0618705801 3.454114 1103.316
+164262.0618706844 3.4540744 1103.2765
+164263.0618707887 3.454114 1103.316
+164264.061870893 3.454114 1103.316
+164265.0618709973 3.454114 1103.2765
+164266.0618711016 3.4543107 1103.4542
+164267.0618712059 3.4541926 1103.2567
+164268.0618713102 3.4542713 1103.316
+164269.0618714145 3.45435 1103.2963
+164270.0618715188 3.4542713 1103.2765
+164271.0618716232 3.4543896 1103.3752
+164272.0618717275 3.4544683 1103.3357
+164273.0618718318 3.4544683 1103.3949
+164274.0618719361 3.4543896 1103.4147
+164275.0618720404 3.4545469 1103.3357
+164276.0618721447 3.4544289 1103.2963
+164277.061872249 3.4544289 1103.2963
+164278.0618723533 3.4545076 1103.2963
+164279.0618724576 3.4544683 1103.2963
+164280.0618725619 3.4545863 1103.3555
+164281.0618726662 3.4544683 1103.3949
+164282.0618727705 3.4545469 1103.3555
+164283.0618728749 3.4544289 1103.3752
+164284.0618729792 3.4544289 1103.3555
+164285.0618730835 3.4545076 1103.316
+164286.0618731878 3.4544683 1103.3752
+164287.0618732921 3.4545076 1103.3752
+164288.0618733964 3.4545076 1103.3555
+164289.0618735007 3.4544289 1103.3357
+164290.061873605 3.4545076 1103.2963
+164291.0618737093 3.4545863 1103.3555
+164292.0618738136 3.4544289 1103.2765
+164293.0618739179 3.4544683 1103.316
+164294.0618740222 3.4545076 1103.4542
+164295.0618741266 3.4545076 1103.3357
+164296.0618742309 3.4545076 1103.2963
+164297.0618743352 3.4545076 1103.3357
+164298.0618744395 3.4546256 1103.316
+164299.0618745438 3.4546649 1103.3357
+164300.0618746481 3.4546649 1103.2567
+164301.0618747524 3.4547439 1103.2963
+164302.0618748567 3.4547045 1103.3752
+164303.061874961 3.4547439 1103.3752
+164304.0618750653 3.4547832 1103.2765
+164305.0618751696 3.4548619 1103.3357
+164306.0618752739 3.4549012 1103.474
+164307.0618753782 3.4549406 1103.3752
+164308.0618754826 3.4549799 1103.316
+164309.0618755869 3.4549799 1103.316
+164310.0618756912 3.4550982 1103.3949
+164311.0618757955 3.4549799 1103.316
+164312.0618758998 3.4550982 1103.2963
+164313.0618760041 3.4551768 1103.3752
+164314.0618761084 3.4551375 1103.3555
+164315.0618762127 3.4550982 1103.4344
+164316.061876317 3.4551375 1103.316
+164317.0618764213 3.4551768 1103.3555
+164318.0618765256 3.4552162 1103.2765
+164319.0618766299 3.4551375 1103.2765
+164320.0618767343 3.4551768 1103.4147
+164321.0618768386 3.4552948 1103.3752
+164322.0618769429 3.4551375 1103.3752
+164323.0618770472 3.4551768 1103.3555
+164324.0618771515 3.4550982 1103.3752
+164325.0618772558 3.4552162 1103.4147
+164326.0618773601 3.4552162 1103.316
+164327.0618774644 3.4551768 1103.3555
+164328.0618775687 3.4551375 1103.3357
+164329.061877673 3.4552555 1103.3752
+164330.0618777773 3.4552948 1103.3357
+164331.0618778816 3.4552948 1103.2765
+164332.061877986 3.4550982 1103.3357
+164333.0618780903 3.4552162 1103.316
+164334.0618781946 3.4551375 1103.3949
+164335.0618782989 3.4550588 1103.2765
+164336.0618784032 3.4551768 1103.2567
+164337.0618785075 3.4551375 1103.4147
+164338.0618786118 3.4550982 1103.3357
+164339.0618787161 3.4550982 1103.3949
+164340.0618788204 3.4551375 1103.3752
+164341.0618789247 3.4551375 1103.2963
+164342.061879029 3.4552162 1103.2567
+164343.0618791333 3.4550195 1103.2369
+164344.0618792376 3.4550982 1103.2369
+164345.061879342 3.4550982 1103.316
+164346.0618794463 3.4550982 1103.3555
+164347.0618795506 3.4550588 1103.3357
+164348.0618796549 3.4551375 1103.2963
+164349.0618797592 3.4550982 1103.2369
+164350.0618798635 3.4550982 1103.4542
+164351.0618799678 3.4551375 1103.3752
+164352.0618800721 3.4552162 1103.3357
+164353.0618801764 3.4551375 1103.4147
+164354.0618802807 3.4552162 1103.3555
+164355.061880385 3.4551768 1103.4542
+164356.0618804893 3.4552948 1103.316
+164357.0618805937 3.4552162 1103.3555
+164358.061880698 3.4552162 1103.4344
+164359.0618808023 3.4553344 1103.3949
+164360.0618809066 3.4552555 1103.4147
+164361.0618810109 3.4552555 1103.3357
+164362.0618811152 3.4552555 1103.4147
+164363.0618812195 3.4552555 1103.316
+164364.0618813238 3.4553738 1103.3555
+164365.0618814281 3.4554131 1103.316
+164366.0618815324 3.4553344 1103.2963
+164367.0618816367 3.4553738 1103.316
+164368.061881741 3.4554524 1103.3752
+164369.0618818454 3.4553344 1103.3555
+164370.0618819497 3.4553738 1103.4344
+164371.061882054 3.4553738 1103.3555
+164372.0618821583 3.4554524 1103.3357
+164373.0618822626 3.4554918 1103.3752
+164374.0618823669 3.4554131 1103.4147
+164375.0618824712 3.4553738 1103.3357
+164376.0618825755 3.4554918 1103.316
+164377.0618826798 3.4554131 1103.3555
+164378.0618827841 3.4553344 1103.316
+164379.0618828884 3.4555311 1103.3752
+164380.0618829927 3.4553738 1103.1975
+164381.061883097 3.4554918 1103.2765
+164382.0618832014 3.4554131 1103.4542
+164383.0618833057 3.4555705 1103.3357
+164384.06188341 3.4555311 1103.2765
+164385.0618835143 3.4556887 1103.2765
+164386.0618836186 3.4556098 1103.3555
+164387.0618837229 3.4556887 1103.4344
+164388.0618838272 3.4557674 1103.2963
+164389.0618839315 3.4558461 1103.3357
+164390.0618840358 3.4557281 1103.2765
+164391.0618841401 3.4557674 1103.3949
+164392.0618842444 3.4557674 1103.3949
+164393.0618843487 3.4558461 1103.3555
+164394.0618844531 3.4558067 1103.3752
+164395.0618845574 3.4558461 1103.474
+164396.0618846617 3.4558854 1103.3752
+164397.061884766 3.4559247 1103.2567
+164398.0618848703 3.4558854 1103.3949
+164399.0618849746 3.4558461 1103.3949
+164400.0618850789 3.4558854 1103.4147
+164401.0618851832 3.4559643 1103.3357
+164402.0618852875 3.4559643 1103.316
+164403.0618853918 3.4560037 1103.2369
+164404.0618854961 3.456043 1103.316
+164405.0618856004 3.4560823 1103.3752
+164406.0618857048 3.4562004 1103.316
+164407.0618858091 3.4562004 1103.316
+164408.0618859134 3.4562004 1103.4344
+164409.0618860177 3.4562793 1103.316
+164410.061886122 3.4562004 1103.3752
+164411.0618862263 3.4563186 1103.3357
+164412.0618863306 3.4563973 1103.316
+164413.0618864349 3.456358 1103.2963
+164414.0618865392 3.4563186 1103.4147
+164415.0618866435 3.4563973 1103.3555
+164416.0618867478 3.456476 1103.2765
+164417.0618868521 3.4563973 1103.3949
+164418.0618869565 3.4564366 1103.316
+164419.0618870608 3.456476 1103.3555
+164420.0618871651 3.4565549 1103.2369
+164421.0618872694 3.4564366 1103.2963
+164422.0618873737 3.456476 1103.3949
+164423.061887478 3.4563973 1103.2765
+164424.0618875823 3.4564366 1103.3949
+164425.0618876866 3.4563973 1103.2765
+164426.0618877909 3.4563973 1103.2567
+164427.0618878952 3.456476 1103.3752
+164428.0618879995 3.4564366 1103.3357
+164429.0618881038 3.456476 1103.3949
+164430.0618882081 3.4563186 1103.3357
+164431.0618883125 3.4565153 1103.316
+164432.0618884168 3.4563186 1103.316
+164433.0618885211 3.456476 1103.3949
+164434.0618886254 3.456476 1103.3357
+164435.0618887297 3.4565153 1103.4147
+164436.061888834 3.4566336 1103.2963
+164437.0618889383 3.456476 1103.3752
+164438.0618890426 3.456476 1103.2765
+164439.0618891469 3.4565942 1103.3752
+164440.0618892512 3.4566336 1103.3555
+164441.0618893555 3.4566336 1103.316
+164442.0618894598 3.4565549 1103.2963
+164443.0618895642 3.4566336 1103.2172
+164444.0618896685 3.4565942 1103.4147
+164445.0618897728 3.4565942 1103.2567
+164446.0618898771 3.4565549 1103.3949
+164447.0618899814 3.4566729 1103.3555
+164448.0618900857 3.4566729 1103.2567
+164449.06189019 3.4566729 1103.316
+164450.0618902943 3.4567909 1103.4147
+164451.0618903986 3.4567122 1103.3357
+164452.0618905029 3.4567516 1103.3752
+164453.0618906072 3.4566729 1103.3555
+164454.0618907115 3.4567516 1103.3357
+164455.0618908159 3.4566729 1103.3949
+164456.0618909202 3.4566729 1103.3357
+164457.0618910245 3.4565549 1103.3555
+164458.0618911288 3.4566729 1103.3555
+164459.0618912331 3.4567516 1103.3555
+164460.0618913374 3.4567516 1103.316
+164461.0618914417 3.4566729 1103.3949
+164462.061891546 3.4567122 1103.316
+164463.0618916503 3.4566729 1103.3555
+164464.0618917546 3.4566336 1103.3752
+164465.0618918589 3.4565942 1103.3752
+164466.0618919632 3.456476 1103.2567
+164467.0618920675 3.4566336 1103.2567
+164468.0618921719 3.4565942 1103.2963
+164469.0618922762 3.4566336 1103.3357
+164470.0618923805 3.4566729 1103.3357
+164471.0618924848 3.4566729 1103.2963
+164472.0618925891 3.4565942 1103.3752
+164473.0618926934 3.4567122 1103.3555
+164474.0618927977 3.4567516 1103.3949
+164475.061892902 3.4567909 1103.3949
+164476.0618930063 3.4568698 1103.3555
+164477.0618931106 3.4569092 1103.3357
+164478.0618932149 3.4569879 1103.3752
+164479.0618933192 3.4568698 1103.2567
+164480.0618934236 3.4570665 1103.3555
+164481.0618935279 3.4569485 1103.3555
+164482.0618936322 3.4571059 1103.3949
+164483.0618937365 3.4570665 1103.316
+164484.0618938408 3.4572635 1103.3555
+164485.0618939451 3.4571452 1103.316
+164486.0618940494 3.4571848 1103.2963
+164487.0618941537 3.4571848 1103.316
+164488.061894258 3.4572241 1103.3752
+164489.0618943623 3.4572635 1103.2567
+164490.0618944666 3.4573028 1103.3555
+164491.0618945709 3.4572635 1103.3357
+164492.0618946753 3.4572635 1103.4344
+164493.0618947796 3.4574602 1103.3949
+164494.0618948839 3.4574602 1103.3555
+164495.0618949882 3.4574602 1103.4344
+164496.0618950925 3.4575391 1103.3357
+164497.0618951968 3.4575391 1103.2567
+164498.0618953011 3.4574997 1103.3555
+164499.0618954054 3.4575784 1103.3555
+164500.0618955097 3.4575784 1103.3555
+164501.061895614 3.4574208 1103.2963
+164502.0618957183 3.4574208 1103.316
+164503.0618958226 3.4573421 1103.3357
+164504.0618959269 3.4575784 1103.3357
+164505.0618960313 3.4575391 1103.3949
+164506.0618961356 3.4576571 1103.2567
+164507.0618962399 3.4575391 1103.316
+164508.0618963442 3.4576178 1103.2765
+164509.0618964485 3.4576571 1103.2963
+164510.0618965528 3.4578147 1103.3949
+164511.0618966571 3.4579327 1103.3555
+164512.0618967614 3.4578934 1103.3752
+164513.0618968657 3.4578934 1103.2963
+164514.06189697 3.4580114 1103.3752
+164515.0618970743 3.4578934 1103.2963
+164516.0618971786 3.4580114 1103.316
+164517.061897283 3.4581296 1103.3357
+164518.0618973873 3.4580507 1103.3752
+164519.0618974916 3.4582083 1103.2963
+164520.0618975959 3.4580507 1103.316
+164521.0618977002 3.4582083 1103.3357
+164522.0618978045 3.4582083 1103.3555
+164523.0618979088 3.4581296 1103.2963
+164524.0618980131 3.4582477 1103.3949
+164525.0618981174 3.458169 1103.3555
+164526.0618982217 3.4582477 1103.4147
+164527.061898326 3.4581296 1103.3357
+164528.0618984303 3.4583263 1103.2963
+164529.0618985347 3.4583657 1103.4344
+164530.061898639 3.458287 1103.4344
+164531.0618987433 3.4583263 1103.3752
+164532.0618988476 3.4582083 1103.3555
+164533.0618989519 3.4583657 1103.3357
+164534.0618990562 3.4583263 1103.2963
+164535.0618991605 3.4584053 1103.4344
+164536.0618992648 3.4582083 1103.3752
+164537.0618993691 3.4582477 1103.2963
+164538.0618994734 3.4583263 1103.3949
+164539.0618995777 3.4583263 1103.316
+164540.061899682 3.4582477 1103.3555
+164541.0618997863 3.458287 1103.2567
+164542.0618998907 3.458287 1103.3752
+164543.061899995 3.4583263 1103.316
+164544.0619000993 3.4583263 1103.1975
+164545.0619002036 3.4583263 1103.4344
+164546.0619003079 3.4582477 1103.3752
+164547.0619004122 3.4582477 1103.2567
+164548.0619005165 3.4582083 1103.4344
+164549.0619006208 3.4582477 1103.3357
+164550.0619007251 3.458287 1103.2963
+164551.0619008294 3.4582477 1103.3555
+164552.0619009337 3.4582477 1103.3357
+164553.061901038 3.458287 1103.316
+164554.0619011424 3.4583263 1103.316
+164555.0619012467 3.458287 1103.3555
+164556.061901351 3.4583657 1103.2963
+164557.0619014553 3.458287 1103.316
+164558.0619015596 3.4583657 1103.316
+164559.0619016639 3.458287 1103.1777
+164560.0619017682 3.4583657 1103.3555
+164561.0619018725 3.4584053 1103.316
+164562.0619019768 3.4582477 1103.3357
+164563.0619020811 3.4583657 1103.4147
+164564.0619021854 3.4584446 1103.4147
+164565.0619022897 3.458287 1103.316
+164566.0619023941 3.4584446 1103.2765
+164567.0619024984 3.4584053 1103.2567
+164568.0619026027 3.4583263 1103.316
+164569.061902707 3.458287 1103.3752
+164570.0619028113 3.4582083 1103.3949
+164571.0619029156 3.4582083 1103.3357
+164572.0619030199 3.458169 1103.3555
+164573.0619031242 3.458287 1103.4542
+164574.0619032285 3.4583263 1103.3949
+164575.0619033328 3.4583657 1103.4344
+164576.0619034371 3.4584053 1103.3357
+164577.0619035414 3.4584446 1103.2765
+164578.0619036458 3.4584053 1103.3752
+164579.0619037501 3.4585233 1103.316
+164580.0619038544 3.4584839 1103.2963
+164581.0619039587 3.4583657 1103.3357
+164582.061904063 3.4585233 1103.3752
+164583.0619041673 3.4584446 1103.3357
+164584.0619042716 3.4586413 1103.3555
+164585.0619043759 3.4586413 1103.316
+164586.0619044802 3.4586413 1103.3752
+164587.0619045845 3.458602 1103.2765
+164588.0619046888 3.4585626 1103.316
+164589.0619047931 3.458602 1103.316
+164590.0619048974 3.4585626 1103.3949
+164591.0619050018 3.4586413 1103.2963
+164592.0619051061 3.4586806 1103.2567
+164593.0619052104 3.4587202 1103.3555
+164594.0619053147 3.4586806 1103.3555
+164595.061905419 3.4587202 1103.2963
+164596.0619055233 3.4587595 1103.3357
+164597.0619056276 3.458602 1103.2963
+164598.0619057319 3.4586806 1103.3949
+164599.0619058362 3.4586806 1103.3949
+164600.0619059405 3.4588382 1103.3949
+164601.0619060448 3.4587989 1103.3555
+164602.0619061491 3.4588776 1103.3357
+164603.0619062535 3.4589169 1103.3949
+164604.0619063578 3.4587595 1103.316
+164605.0619064621 3.4588776 1103.3555
+164606.0619065664 3.4589956 1103.3949
+164607.0619066707 3.4589562 1103.2765
+164608.061906775 3.4589169 1103.3555
+164609.0619068793 3.4590745 1103.2963
+164610.0619069836 3.4590352 1103.3949
+164611.0619070879 3.4590352 1103.3752
+164612.0619071922 3.4591138 1103.316
+164613.0619072965 3.4591925 1103.2567
+164614.0619074008 3.4591138 1103.3357
+164615.0619075052 3.4592319 1103.2567
+164616.0619076095 3.4592712 1103.2567
+164617.0619077138 3.4591532 1103.3949
+164618.0619078181 3.4592712 1103.3555
+164619.0619079224 3.4593105 1103.316
+164620.0619080267 3.4593894 1103.3357
+164621.061908131 3.4593501 1103.2369
+164622.0619082353 3.4593105 1103.2765
+164623.0619083396 3.4595468 1103.3752
+164624.0619084439 3.4595468 1103.4147
+164625.0619085482 3.4594288 1103.3555
+164626.0619086525 3.4595075 1103.3555
+164627.0619087568 3.4595075 1103.3752
+164628.0619088612 3.4595861 1103.316
+164629.0619089655 3.4595468 1103.316
+164630.0619090698 3.4594681 1103.3949
+164631.0619091741 3.4595468 1103.316
+164632.0619092784 3.4595075 1103.3752
+164633.0619093827 3.4594681 1103.2963
+164634.061909487 3.4596255 1103.2765
+164635.0619095913 3.4596651 1103.3752
+164636.0619096956 3.4596255 1103.3949
+164637.0619097999 3.4597044 1103.3555
+164638.0619099042 3.4597044 1103.3949
+164639.0619100085 3.4597437 1103.3555
+164640.0619101129 3.4597831 1103.316
+164641.0619102172 3.4597831 1103.316
+164642.0619103215 3.4597831 1103.3357
+164643.0619104258 3.4599011 1103.3357
+164644.0619105301 3.4597831 1103.3357
+164645.0619106344 3.4598618 1103.3555
+164646.0619107387 3.4598224 1103.316
+164647.061910843 3.4597437 1103.2963
+164648.0619109473 3.4597831 1103.316
+164649.0619110516 3.4598618 1103.3357
+164650.0619111559 3.4597437 1103.3357
+164651.0619112602 3.4597831 1103.316
+164652.0619113646 3.4597044 1103.316
+164653.0619114689 3.4597437 1103.2765
+164654.0619115732 3.4596255 1103.3357
+164655.0619116775 3.4597437 1103.2765
+164656.0619117818 3.4596651 1103.3357
+164657.0619118861 3.4596651 1103.3949
+164658.0619119904 3.4597044 1103.3949
+164659.0619120947 3.4596255 1103.3752
+164660.061912199 3.4596651 1103.3357
+164661.0619123033 3.4596651 1103.3555
+164662.0619124076 3.4597044 1103.3752
+164663.0619125119 3.4597437 1103.3949
+164664.0619126162 3.4598224 1103.316
+164665.0619127206 3.4597831 1103.3357
+164666.0619128249 3.4598224 1103.3752
+164667.0619129292 3.4597831 1103.3752
+164668.0619130335 3.4598224 1103.316
+164669.0619131378 3.4597831 1103.2567
+164670.0619132421 3.4597437 1103.3752
+164671.0619133464 3.4596651 1103.2963
+164672.0619134507 3.4597437 1103.2567
+164673.061913555 3.4598224 1103.3949
+164674.0619136593 3.4598618 1103.2963
+164675.0619137636 3.4597831 1103.3357
+164676.0619138679 3.4598224 1103.3357
+164677.0619139723 3.4599011 1103.2765
+164678.0619140766 3.4599407 1103.316
+164679.0619141809 3.4599011 1103.316
+164680.0619142852 3.45998 1103.2963
+164681.0619143895 3.4600194 1103.3555
+164682.0619144938 3.460098 1103.3555
+164683.0619145981 3.4600587 1103.3357
+164684.0619147024 3.460098 1103.3752
+164685.0619148067 3.4600587 1103.3555
+164686.061914911 3.460098 1103.2963
+164687.0619150153 3.4600194 1103.2765
+164688.0619151196 3.4600587 1103.3752
+164689.061915224 3.4601767 1103.2567
+164690.0619153283 3.4600194 1103.2963
+164691.0619154326 3.4601374 1103.3752
+164692.0619155369 3.4602556 1103.316
+164693.0619156412 3.4601374 1103.3949
+164694.0619157455 3.4601767 1103.2963
+164695.0619158498 3.460216 1103.2963
+164696.0619159541 3.460216 1103.3555
+164697.0619160584 3.4602556 1103.3949
+164698.0619161627 3.4602556 1103.3752
+164699.061916267 3.4603736 1103.4344
+164700.0619163713 3.4603343 1103.3752
+164701.0619164757 3.4603343 1103.3555
+164702.06191658 3.460295 1103.3357
+164703.0619166843 3.460216 1103.2765
+164704.0619167886 3.4602556 1103.3555
+164705.0619168929 3.460216 1103.3752
+164706.0619169972 3.4602556 1103.3555
+164707.0619171015 3.4603343 1103.3752
+164708.0619172058 3.4602556 1103.3357
+164709.0619173101 3.460413 1103.3357
+164710.0619174144 3.4603736 1103.3555
+164711.0619175187 3.4604917 1103.3357
+164712.061917623 3.4604917 1103.3949
+164713.0619177273 3.460413 1103.3752
+164714.0619178317 3.4604523 1103.3555
+164715.061917936 3.4604523 1103.2963
+164716.0619180403 3.4605706 1103.3949
+164717.0619181446 3.4604523 1103.4147
+164718.0619182489 3.460531 1103.3555
+164719.0619183532 3.4604523 1103.2567
+164720.0619184575 3.460531 1103.316
+164721.0619185618 3.4603736 1103.3949
+164722.0619186661 3.4603343 1103.3357
+164723.0619187704 3.4603343 1103.316
+164724.0619188747 3.4603736 1103.2963
+164725.061918979 3.4602556 1103.3555
+164726.0619190834 3.460216 1103.3752
+164727.0619191877 3.4601767 1103.2963
+164728.061919292 3.460098 1103.316
+164729.0619193963 3.460098 1103.4542
+164730.0619195006 3.4601374 1103.4542
+164731.0619196049 3.4601767 1103.2765
+164732.0619197092 3.460098 1103.3752
+164733.0619198135 3.4601374 1103.3949
+164734.0619199178 3.4601767 1103.2765
+164735.0619200221 3.460295 1103.3555
+164736.0619201264 3.4602556 1103.316
+164737.0619202307 3.4602556 1103.3949
+164738.0619203351 3.4603736 1103.3752
+164739.0619204394 3.4604523 1103.4542
+164740.0619205437 3.4604917 1103.3752
+164741.061920648 3.4606099 1103.3949
+164742.0619207523 3.4606493 1103.3752
+164743.0619208566 3.4606886 1103.3357
+164744.0619209609 3.4608066 1103.2765
+164745.0619210652 3.4608066 1103.2172
+164746.0619211695 3.4607673 1103.3752
+164747.0619212738 3.4608066 1103.4542
+164748.0619213781 3.4609249 1103.3555
+164749.0619214824 3.4610429 1103.3949
+164750.0619215867 3.4609642 1103.316
+164751.0619216911 3.4609249 1103.2567
+164752.0619217954 3.4609642 1103.3555
+164753.0619218997 3.4609642 1103.3752
+164754.061922004 3.4610429 1103.316
+164755.0619221083 3.4610429 1103.3357
+164756.0619222126 3.4609249 1103.4147
+164757.0619223169 3.4610035 1103.3357
+164758.0619224212 3.4610035 1103.3949
+164759.0619225255 3.4609249 1103.2963
+164760.0619226298 3.4608855 1103.3357
+164761.0619227341 3.4609249 1103.3555
+164762.0619228384 3.4608855 1103.4147
+164763.0619229428 3.4609249 1103.3555
+164764.0619230471 3.4608459 1103.2765
+164765.0619231514 3.4608066 1103.3357
+164766.0619232557 3.4609249 1103.2172
+164767.06192336 3.4608066 1103.2765
+164768.0619234643 3.4609249 1103.2567
+164769.0619235686 3.4609642 1103.2765
+164770.0619236729 3.4608459 1103.3752
+164771.0619237772 3.4608855 1103.316
+164772.0619238815 3.4608066 1103.3555
+164773.0619239858 3.4608066 1103.2963
+164774.0619240901 3.4606493 1103.2963
+164775.0619241945 3.4607279 1103.2963
+164776.0619242988 3.4606886 1103.3555
+164777.0619244031 3.4607673 1103.316
+164778.0619245074 3.4607279 1103.2765
+164779.0619246117 3.4606493 1103.3357
+164780.061924716 3.4606886 1103.3555
+164781.0619248203 3.4606886 1103.4542
+164782.0619249246 3.4606099 1103.3752
+164783.0619250289 3.4606493 1103.3752
+164784.0619251332 3.4605706 1103.4147
+164785.0619252375 3.4606493 1103.316
+164786.0619253418 3.4606099 1103.3555
+164787.0619254461 3.4606099 1103.3357
+164788.0619255505 3.460531 1103.3555
+164789.0619256548 3.4605706 1103.3357
+164790.0619257591 3.4604523 1103.316
+164791.0619258634 3.4605706 1103.2963
+164792.0619259677 3.4604523 1103.3357
+164793.061926072 3.4604917 1103.316
+164794.0619261763 3.460413 1103.2765
+164795.0619262806 3.460413 1103.4344
+164796.0619263849 3.460413 1103.3555
+164797.0619264892 3.4604523 1103.3949
+164798.0619265935 3.4603736 1103.3752
+164799.0619266978 3.460413 1103.3752
+164800.0619268022 3.4603343 1103.2963
+164801.0619269065 3.4603736 1103.316
+164802.0619270108 3.4603736 1103.2765
+164803.0619271151 3.4603736 1103.316
+164804.0619272194 3.4603343 1103.2963
+164805.0619273237 3.4603343 1103.4147
+164806.061927428 3.4602556 1103.3555
+164807.0619275323 3.4601374 1103.3357
+164808.0619276366 3.460295 1103.3752
+164809.0619277409 3.460295 1103.3949
+164810.0619278452 3.4603736 1103.3752
+164811.0619279495 3.4603343 1103.2369
+164812.0619280539 3.460413 1103.474
+164813.0619281582 3.4604917 1103.3357
+164814.0619282625 3.4603736 1103.2963
+164815.0619283668 3.4604523 1103.2567
+164816.0619284711 3.4605706 1103.3752
+164817.0619285754 3.4605706 1103.3555
+164818.0619286797 3.4606099 1103.4147
+164819.061928784 3.4606493 1103.2963
+164820.0619288883 3.4606493 1103.316
+164821.0619289926 3.4606886 1103.3752
+164822.0619290969 3.4607673 1103.2369
+164823.0619292012 3.4606099 1103.3555
+164824.0619293056 3.4607279 1103.2765
+164825.0619294099 3.4606886 1103.3949
+164826.0619295142 3.4606886 1103.3357
+164827.0619296185 3.4606886 1103.3555
+164828.0619297228 3.4608066 1103.2369
+164829.0619298271 3.4608066 1103.3752
+164830.0619299314 3.4608459 1103.3752
+164831.0619300357 3.4608066 1103.3357
+164832.06193014 3.4609642 1103.4147
+164833.0619302443 3.4608855 1103.3752
+164834.0619303486 3.4609642 1103.3357
+164835.0619304529 3.4608459 1103.2567
+164836.0619305572 3.4608855 1103.3357
+164837.0619306616 3.4609249 1103.3752
+164838.0619307659 3.4609249 1103.3555
+164839.0619308702 3.4609249 1103.3357
+164840.0619309745 3.4609642 1103.3357
+164841.0619310788 3.4609642 1103.2963
+164842.0619311831 3.4610822 1103.3555
+164843.0619312874 3.4609642 1103.316
+164844.0619313917 3.4610429 1103.4344
+164845.061931496 3.4610429 1103.3949
+164846.0619316003 3.4611609 1103.316
+164847.0619317046 3.4612398 1103.316
+164848.0619318089 3.4610822 1103.3555
+164849.0619319133 3.4611609 1103.3555
+164850.0619320176 3.4612005 1103.3752
+164851.0619321219 3.4612005 1103.3555
+164852.0619322262 3.4613185 1103.1975
+164853.0619323305 3.4613185 1103.316
+164854.0619324348 3.4613578 1103.316
+164855.0619325391 3.4612792 1103.3357
+164856.0619326434 3.4614365 1103.2963
+164857.0619327477 3.4614365 1103.3357
+164858.061932852 3.4614761 1103.316
+164859.0619329563 3.4615941 1103.3949
+164860.0619330606 3.4615154 1103.2765
+164861.061933165 3.4616334 1103.3752
+164862.0619332693 3.4616334 1103.3555
+164863.0619333736 3.4617515 1103.3949
+164864.0619334779 3.4619091 1103.3949
+164865.0619335822 3.461791 1103.316
+164866.0619336865 3.4619091 1103.4542
+164867.0619337908 3.4619484 1103.3357
+164868.0619338951 3.4619091 1103.2963
+164869.0619339994 3.4619091 1103.316
+164870.0619341037 3.4620271 1103.316
+164871.061934208 3.4620664 1103.3949
+164872.0619343123 3.4620664 1103.4147
+164873.0619344166 3.4619877 1103.3357
+164874.061934521 3.4620664 1103.3357
+164875.0619346253 3.4620664 1103.2765
+164876.0619347296 3.4621453 1103.3752
+164877.0619348339 3.4621453 1103.2963
+164878.0619349382 3.462106 1103.3752
+164879.0619350425 3.4621453 1103.316
+164880.0619351468 3.4619877 1103.3949
+164881.0619352511 3.4620664 1103.3357
+164882.0619353554 3.4620664 1103.316
+164883.0619354597 3.4621453 1103.2963
+164884.061935564 3.4619484 1103.3752
+164885.0619356683 3.4620271 1103.2963
+164886.0619357727 3.4620271 1103.3357
+164887.061935877 3.4618697 1103.3555
+164888.0619359813 3.461791 1103.3752
+164889.0619360856 3.4618697 1103.4147
+164890.0619361899 3.461791 1103.316
+164891.0619362942 3.4619091 1103.3357
+164892.0619363985 3.4618697 1103.3555
+164893.0619365028 3.461791 1103.474
+164894.0619366071 3.461791 1103.2567
+164895.0619367114 3.4617515 1103.3949
+164896.0619368157 3.461791 1103.3752
+164897.06193692 3.461791 1103.3555
+164898.0619370244 3.4616728 1103.2567
+164899.0619371287 3.4618304 1103.3357
+164900.061937233 3.4616728 1103.4147
+164901.0619373373 3.4617121 1103.3752
+164902.0619374416 3.4617121 1103.3555
+164903.0619375459 3.4616334 1103.3555
+164904.0619376502 3.4616334 1103.3949
+164905.0619377545 3.4617121 1103.3949
+164906.0619378588 3.4617515 1103.316
+164907.0619379631 3.461791 1103.3555
+164908.0619380674 3.4617121 1103.316
+164909.0619381717 3.4617121 1103.4147
+164910.061938276 3.461791 1103.3357
+164911.0619383804 3.4617515 1103.3752
+164912.0619384847 3.4616728 1103.316
+164913.061938589 3.4616728 1103.3357
+164914.0619386933 3.461791 1103.2765
+164915.0619387976 3.4618304 1103.316
+164916.0619389019 3.4616728 1103.3357
+164917.0619390062 3.461791 1103.3752
+164918.0619391105 3.4616334 1103.3949
+164919.0619392148 3.4615941 1103.4147
+164920.0619393191 3.461791 1103.3357
+164921.0619394234 3.4616728 1103.316
+164922.0619395277 3.4617121 1103.3357
+164923.0619396321 3.4618697 1103.3555
+164924.0619397364 3.4618697 1103.3555
+164925.0619398407 3.4618304 1103.4147
+164926.061939945 3.4618304 1103.316
+164927.0619400493 3.4618304 1103.3752
+164928.0619401536 3.4618304 1103.3357
+164929.0619402579 3.4618697 1103.3752
+164930.0619403622 3.4619091 1103.3357
+164931.0619404665 3.4619091 1103.2963
+164932.0619405708 3.4618697 1103.2765
+164933.0619406751 3.4620271 1103.4147
+164934.0619407794 3.4618304 1103.316
+164935.0619408838 3.4620271 1103.3949
+164936.0619409881 3.4620664 1103.316
+164937.0619410924 3.4621453 1103.3555
+164938.0619411967 3.4621453 1103.3357
+164939.061941301 3.4621453 1103.2963
+164940.0619414053 3.4621847 1103.316
+164941.0619415096 3.4622633 1103.3357
+164942.0619416139 3.4621847 1103.2765
+164943.0619417182 3.462224 1103.2963
+164944.0619418225 3.4623027 1103.3555
+164945.0619419268 3.4623027 1103.3752
+164946.0619420311 3.4623814 1103.2963
+164947.0619421355 3.4624996 1103.316
+164948.0619422398 3.4623814 1103.3555
+164949.0619423441 3.4624996 1103.3752
+164950.0619424484 3.4624996 1103.2963
+164951.0619425527 3.4625783 1103.3752
+164952.061942657 3.4624996 1103.3357
+164953.0619427613 3.4624996 1103.3357
+164954.0619428656 3.4624209 1103.2765
+164955.0619429699 3.4623027 1103.2567
+164956.0619430742 3.4624603 1103.2963
+164957.0619431785 3.4623814 1103.2765
+164958.0619432828 3.462539 1103.3752
+164959.0619433871 3.4624209 1103.316
+164960.0619434915 3.462539 1103.3752
+164961.0619435958 3.4626176 1103.4344
+164962.0619437001 3.462657 1103.2963
+164963.0619438044 3.4627359 1103.316
+164964.0619439087 3.4626963 1103.316
+164965.061944013 3.4628146 1103.3555
+164966.0619441173 3.4628146 1103.3752
+164967.0619442216 3.4628146 1103.4147
+164968.0619443259 3.4627752 1103.3555
+164969.0619444302 3.4628146 1103.316
+164970.0619445345 3.4629326 1103.3752
+164971.0619446388 3.4629326 1103.3357
+164972.0619447432 3.4630113 1103.2567
+164973.0619448475 3.4630113 1103.3752
+164974.0619449518 3.4629326 1103.3555
+164975.0619450561 3.4628539 1103.4147
+164976.0619451604 3.4628932 1103.3357
+164977.0619452647 3.4630113 1103.3357
+164978.061945369 3.4629719 1103.3949
+164979.0619454733 3.4629326 1103.3949
+164980.0619455776 3.4628146 1103.2172
+164981.0619456819 3.4628539 1103.2963
+164982.0619457862 3.4626963 1103.3949
+164983.0619458905 3.4628539 1103.316
+164984.0619459949 3.4627752 1103.4147
+164985.0619460992 3.462657 1103.316
+164986.0619462035 3.4626963 1103.3357
+164987.0619463078 3.4626176 1103.316
+164988.0619464121 3.462657 1103.2963
+164989.0619465164 3.4626176 1103.3555
+164990.0619466207 3.4626176 1103.3949
+164991.061946725 3.4624996 1103.3752
+164992.0619468293 3.4625783 1103.4147
+164993.0619469336 3.4624996 1103.316
+164994.0619470379 3.4626176 1103.3752
+164995.0619471422 3.4624209 1103.3357
+164996.0619472465 3.4624209 1103.3949
+164997.0619473509 3.4624603 1103.4147
+164998.0619474552 3.4624209 1103.316
+164999.0619475595 3.462342 1103.2172
+165000.0619476638 3.4624209 1103.316
+165001.0619477681 3.4624209 1103.2963
+165002.0619478724 3.4624996 1103.3357
+165003.0619479767 3.4625783 1103.3357
+165004.061948081 3.462657 1103.2963
+165005.0619481853 3.462657 1103.3357
+165006.0619482896 3.462657 1103.3949
+165007.0619483939 3.4627752 1103.3357
+165008.0619484982 3.4627359 1103.316
+165009.0619486026 3.4628146 1103.3357
+165010.0619487069 3.462657 1103.3555
+165011.0619488112 3.4626963 1103.3752
+165012.0619489155 3.4626963 1103.3752
+165013.0619490198 3.4626963 1103.2765
+165014.0619491241 3.4627752 1103.3555
+165015.0619492284 3.4627752 1103.3752
+165016.0619493327 3.4627752 1103.4147
+165017.061949437 3.4628146 1103.316
+165018.0619495413 3.4628932 1103.2369
+165019.0619496456 3.4630113 1103.3555
+165020.0619497499 3.4629326 1103.3752
+165021.0619498543 3.4630902 1103.3949
+165022.0619499586 3.4631689 1103.3357
+165023.0619500629 3.4631689 1103.3752
+165024.0619501672 3.4631295 1103.3555
+165025.0619502715 3.4631295 1103.2369
+165026.0619503758 3.4632082 1103.2369
+165027.0619504801 3.4632082 1103.3949
+165028.0619505844 3.4632475 1103.2963
+165029.0619506887 3.4630902 1103.3949
+165030.061950793 3.4630508 1103.3357
+165031.0619508973 3.4629326 1103.3357
+165032.0619510016 3.4630902 1103.3357
+165033.0619511059 3.4630902 1103.3357
+165034.0619512103 3.4630902 1103.2765
+165035.0619513146 3.4632082 1103.316
+165036.0619514189 3.4631295 1103.316
+165037.0619515232 3.4628932 1103.3949
+165038.0619516275 3.4630902 1103.316
+165039.0619517318 3.4630508 1103.3752
+165040.0619518361 3.4628932 1103.3555
+165041.0619519404 3.4629719 1103.2963
+165042.0619520447 3.4628932 1103.316
+165043.061952149 3.4628932 1103.3555
+165044.0619522533 3.4629326 1103.3357
+165045.0619523576 3.4628146 1103.3555
+165046.061952462 3.4627359 1103.2963
+165047.0619525663 3.4627752 1103.316
+165048.0619526706 3.4628539 1103.3357
+165049.0619527749 3.4628539 1103.316
+165050.0619528792 3.4627359 1103.2963
+165051.0619529835 3.4628146 1103.3555
+165052.0619530878 3.4628539 1103.3949
+165053.0619531921 3.4627752 1103.2567
+165054.0619532964 3.4628539 1103.2963
+165055.0619534007 3.4627752 1103.3752
+165056.061953505 3.4628146 1103.3752
+165057.0619536093 3.4628539 1103.3752
+165058.0619537137 3.4628146 1103.2963
+165059.061953818 3.4628146 1103.3555
+165060.0619539223 3.4627752 1103.4147
+165061.0619540266 3.4627752 1103.2963
+165062.0619541309 3.4628146 1103.3357
+165063.0619542352 3.4627359 1103.3752
+165064.0619543395 3.4629326 1103.3357
+165065.0619544438 3.4629326 1103.3555
+165066.0619545481 3.4628539 1103.316
+165067.0619546524 3.4630508 1103.316
+165068.0619547567 3.4630113 1103.3555
+165069.061954861 3.4630508 1103.3357
+165070.0619549653 3.4630902 1103.3555
+165071.0619550697 3.4631295 1103.3555
+165072.061955174 3.4630902 1103.3949
+165073.0619552783 3.4630902 1103.3555
+165074.0619553826 3.4632082 1103.3555
+165075.0619554869 3.4632869 1103.4344
+165076.0619555912 3.4632475 1103.3357
+165077.0619556955 3.4632082 1103.3555
+165078.0619557998 3.4632475 1103.316
+165079.0619559041 3.4634051 1103.2765
+165080.0619560084 3.4632475 1103.3752
+165081.0619561127 3.4632869 1103.3357
+165082.061956217 3.4632475 1103.316
+165083.0619563214 3.4632082 1103.316
+165084.0619564257 3.4633658 1103.2369
+165085.06195653 3.4631689 1103.3357
+165086.0619566343 3.4632869 1103.2567
+165087.0619567386 3.4632082 1103.316
+165088.0619568429 3.4632475 1103.2963
+165089.0619569472 3.4630902 1103.3949
+165090.0619570515 3.4632869 1103.3555
+165091.0619571558 3.4633265 1103.3752
+165092.0619572601 3.4633265 1103.3357
+165093.0619573644 3.4634051 1103.4344
+165094.0619574687 3.4631689 1103.3752
+165095.0619575731 3.4632869 1103.3555
+165096.0619576774 3.4632475 1103.2963
+165097.0619577817 3.4632082 1103.316
+165098.061957886 3.4632475 1103.3555
+165099.0619579903 3.4632869 1103.3752
+165100.0619580946 3.4633265 1103.316
+165101.0619581989 3.4633265 1103.3357
+165102.0619583032 3.4633658 1103.3949
+165103.0619584075 3.4633265 1103.3949
+165104.0619585118 3.4633265 1103.3949
+165105.0619586161 3.4633658 1103.2567
+165106.0619587204 3.4634051 1103.316
+165107.0619588248 3.4634051 1103.2963
+165108.0619589291 3.4633658 1103.2765
+165109.0619590334 3.4634838 1103.3752
+165110.0619591377 3.4635231 1103.3555
+165111.061959242 3.4636414 1103.3752
+165112.0619593463 3.4637201 1103.3357
+165113.0619594506 3.4637988 1103.4147
+165114.0619595549 3.4637988 1103.3752
+165115.0619596592 3.464035 1103.3357
+165116.0619597635 3.4641137 1103.2765
+165117.0619598678 3.464035 1103.3752
+165118.0619599721 3.4642317 1103.316
+165119.0619600764 3.4642317 1103.3357
+165120.0619601808 3.46435 1103.316
+165121.0619602851 3.4643893 1103.3555
+165122.0619603894 3.4644287 1103.3555
+165123.0619604937 3.464468 1103.4344
+165124.061960598 3.4645467 1103.3555
+165125.0619607023 3.4645467 1103.2963
+165126.0619608066 3.4646256 1103.3555
+165127.0619609109 3.4647043 1103.3357
+165128.0619610152 3.4646649 1103.3752
+165129.0619611195 3.4647043 1103.316
+165130.0619612238 3.4646649 1103.3357
+165131.0619613281 3.4647436 1103.3555
+165132.0619614325 3.4647043 1103.2963
+165133.0619615368 3.4647436 1103.3555
+165134.0619616411 3.4647436 1103.3357
+165135.0619617454 3.4649012 1103.4344
+165136.0619618497 3.4649405 1103.3555
+165137.061961954 3.4649799 1103.3949
+165138.0619620583 3.4650192 1103.316
+165139.0619621626 3.4649012 1103.2765
+165140.0619622669 3.4650586 1103.3357
+165141.0619623712 3.4650586 1103.316
+165142.0619624755 3.4650586 1103.4542
+165143.0619625798 3.4650192 1103.3357
+165144.0619626842 3.4650979 1103.3949
+165145.0619627885 3.4650586 1103.3949
+165146.0619628928 3.4650586 1103.2172
+165147.0619629971 3.4649799 1103.1975
+165148.0619631014 3.4650586 1103.3949
+165149.0619632057 3.4649799 1103.2963
+165150.06196331 3.4649799 1103.316
+165151.0619634143 3.4649012 1103.316
+165152.0619635186 3.4650192 1103.2765
+165153.0619636229 3.4649405 1103.3752
+165154.0619637272 3.4650192 1103.3752
+165155.0619638315 3.4649012 1103.3357
+165156.0619639358 3.4649012 1103.3752
+165157.0619640402 3.4649405 1103.4344
+165158.0619641445 3.4648616 1103.3949
+165159.0619642488 3.4649012 1103.4147
+165160.0619643531 3.4650586 1103.3555
+165161.0619644574 3.4650586 1103.2963
+165162.0619645617 3.4651372 1103.3752
+165163.061964666 3.4651768 1103.3949
+165164.0619647703 3.4651372 1103.316
+165165.0619648746 3.4652162 1103.3357
+165166.0619649789 3.4652555 1103.2765
+165167.0619650832 3.4652948 1103.2963
+165168.0619651875 3.4652162 1103.316
+165169.0619652919 3.4654129 1103.3357
+165170.0619653962 3.4653342 1103.316
+165171.0619655005 3.4654522 1103.316
+165172.0619656048 3.4654129 1103.3949
+165173.0619657091 3.4654522 1103.2765
+165174.0619658134 3.4653342 1103.3357
+165175.0619659177 3.4655311 1103.3555
+165176.061966022 3.4654522 1103.3949
+165177.0619661263 3.4654918 1103.2963
+165178.0619662306 3.4654522 1103.3949
+165179.0619663349 3.4655311 1103.316
+165180.0619664392 3.4654129 1103.3752
+165181.0619665436 3.4654522 1103.4147
+165182.0619666479 3.4654129 1103.3949
+165183.0619667522 3.4654129 1103.4147
+165184.0619668565 3.4652948 1103.3752
+165185.0619669608 3.4654522 1103.3555
+165186.0619670651 3.4653342 1103.3555
+165187.0619671694 3.4652555 1103.2963
+165188.0619672737 3.4654129 1103.3752
+165189.061967378 3.4652555 1103.3949
+165190.0619674823 3.4654129 1103.2567
+165191.0619675866 3.4654129 1103.3752
+165192.0619676909 3.4653342 1103.316
+165193.0619677952 3.4654129 1103.2172
+165194.0619678996 3.4654522 1103.3357
+165195.0619680039 3.4654522 1103.3752
+165196.0619681082 3.4654522 1103.3949
+165197.0619682125 3.4653735 1103.3357
+165198.0619683168 3.4654522 1103.3752
+165199.0619684211 3.4655311 1103.3949
+165200.0619685254 3.4655311 1103.3752
+165201.0619686297 3.4654522 1103.3949
+165202.061968734 3.4653735 1103.4147
+165203.0619688383 3.4655311 1103.3752
+165204.0619689426 3.4656098 1103.3752
+165205.0619690469 3.4653735 1103.316
+165206.0619691513 3.4654522 1103.3357
+165207.0619692556 3.4654129 1103.3357
+165208.0619693599 3.4653735 1103.4542
+165209.0619694642 3.4654129 1103.316
+165210.0619695685 3.4653735 1103.3357
+165211.0619696728 3.4653342 1103.3752
+165212.0619697771 3.4653735 1103.2765
+165213.0619698814 3.4653735 1103.3555
+165214.0619699857 3.4652555 1103.316
+165215.06197009 3.4653342 1103.3949
+165216.0619701943 3.4652555 1103.316
+165217.0619702986 3.4653342 1103.4542
+165218.061970403 3.4652555 1103.3357
+165219.0619705073 3.4652948 1103.2765
+165220.0619706116 3.4653342 1103.316
+165221.0619707159 3.4652948 1103.3752
+165222.0619708202 3.4653342 1103.3752
+165223.0619709245 3.4653342 1103.2963
+165224.0619710288 3.4653342 1103.3555
+165225.0619711331 3.4653735 1103.3555
+165226.0619712374 3.4654129 1103.3357
+165227.0619713417 3.4654129 1103.3752
+165228.061971446 3.4654129 1103.3357
+165229.0619715503 3.4654918 1103.316
+165230.0619716547 3.4654918 1103.2567
+165231.061971759 3.4655311 1103.2963
+165232.0619718633 3.4654129 1103.2765
+165233.0619719676 3.4654918 1103.3357
+165234.0619720719 3.4656098 1103.3357
+165235.0619721762 3.4656098 1103.316
+165236.0619722805 3.4655311 1103.3357
+165237.0619723848 3.4655311 1103.3555
+165238.0619724891 3.4656098 1103.3555
+165239.0619725934 3.4656885 1103.316
+165240.0619726977 3.4657278 1103.3555
+165241.061972802 3.4655311 1103.3357
+165242.0619729063 3.4657278 1103.3555
+165243.0619730107 3.4657278 1103.3752
+165244.061973115 3.4656098 1103.2172
+165245.0619732193 3.4656491 1103.3949
+165246.0619733236 3.4655704 1103.316
+165247.0619734279 3.4656491 1103.3357
+165248.0619735322 3.4656098 1103.2963
+165249.0619736365 3.4656098 1103.3555
+165250.0619737408 3.4655704 1103.316
+165251.0619738451 3.4655311 1103.2963
+165252.0619739494 3.4655704 1103.2963
+165253.0619740537 3.4656098 1103.2963
+165254.061974158 3.4654918 1103.2765
+165255.0619742624 3.4656885 1103.3555
+165256.0619743667 3.4655311 1103.4147
+165257.061974471 3.4654918 1103.4147
+165258.0619745753 3.4655704 1103.316
+165259.0619746796 3.4655704 1103.4147
+165260.0619747839 3.4657278 1103.3752
+165261.0619748882 3.4656491 1103.4147
+165262.0619749925 3.4655704 1103.2963
+165263.0619750968 3.4656885 1103.316
+165264.0619752011 3.4656098 1103.4542
+165265.0619753054 3.4656885 1103.3357
+165266.0619754097 3.4656491 1103.316
+165267.0619755141 3.4656491 1103.4147
+165268.0619756184 3.4657278 1103.3555
+165269.0619757227 3.4655704 1103.3555
+165270.061975827 3.4657671 1103.3949
+165271.0619759313 3.4656885 1103.4147
+165272.0619760356 3.4656885 1103.3752
+165273.0619761399 3.4657278 1103.4147
+165274.0619762442 3.4657671 1103.3555
+165275.0619763485 3.4655704 1103.3752
+165276.0619764528 3.4655704 1103.2765
+165277.0619765571 3.4655311 1103.3555
+165278.0619766614 3.4656491 1103.3357
+165279.0619767657 3.4655311 1103.4147
+165280.0619768701 3.4655704 1103.316
+165281.0619769744 3.4656098 1103.3752
+165282.0619770787 3.4654918 1103.3357
+165283.061977183 3.4656098 1103.3555
+165284.0619772873 3.4655704 1103.316
+165285.0619773916 3.4656098 1103.3555
+165286.0619774959 3.4655704 1103.3357
+165287.0619776002 3.4656491 1103.3357
+165288.0619777045 3.4656885 1103.316
+165289.0619778088 3.4657671 1103.2963
+165290.0619779131 3.4658067 1103.4147
+165291.0619780174 3.4659247 1103.2963
+165292.0619781218 3.4658854 1103.3555
+165293.0619782261 3.4659641 1103.316
+165294.0619783304 3.4660034 1103.3555
+165295.0619784347 3.4660821 1103.2765
+165296.061978539 3.4662004 1103.316
+165297.0619786433 3.466161 1103.316
+165298.0619787476 3.466161 1103.316
+165299.0619788519 3.4662004 1103.3357
+165300.0619789562 3.4662397 1103.316
+165301.0619790605 3.4662004 1103.3357
+165302.0619791648 3.466279 1103.3555
+165303.0619792691 3.466279 1103.316
+165304.0619793735 3.4663184 1103.2963
+165305.0619794778 3.4663577 1103.2765
+165306.0619795821 3.4664366 1103.3752
+165307.0619796864 3.466279 1103.3752
+165308.0619797907 3.4662004 1103.316
+165309.061979895 3.4662004 1103.3949
+165310.0619799993 3.4661217 1103.2963
+165311.0619801036 3.466161 1103.4147
+165312.0619802079 3.466161 1103.3357
+165313.0619803122 3.4662004 1103.3949
+165314.0619804165 3.4663184 1103.3555
+165315.0619805208 3.466279 1103.3555
+165316.0619806251 3.466161 1103.2369
+165317.0619807295 3.4663184 1103.4147
+165318.0619808338 3.4663184 1103.3555
+165319.0619809381 3.4662004 1103.2172
+165320.0619810424 3.466279 1103.3357
+165321.0619811467 3.4663577 1103.3555
+165322.061981251 3.4663577 1103.2963
+165323.0619813553 3.4663577 1103.316
+165324.0619814596 3.466397 1103.2963
+165325.0619815639 3.466476 1103.3752
+165326.0619816682 3.4663577 1103.3357
+165327.0619817725 3.466476 1103.316
+165328.0619818768 3.466476 1103.316
+165329.0619819812 3.4665546 1103.3555
+165330.0619820855 3.466594 1103.316
+165331.0619821898 3.4665153 1103.4542
+165332.0619822941 3.466594 1103.3752
+165333.0619823984 3.466476 1103.3357
+165334.0619825027 3.466594 1103.4344
+165335.061982607 3.4666333 1103.4147
+165336.0619827113 3.466594 1103.3752
+165337.0619828156 3.4667516 1103.3357
+165338.0619829199 3.4666727 1103.316
+165339.0619830242 3.466712 1103.3752
+165340.0619831285 3.466712 1103.3752
+165341.0619832329 3.466712 1103.2963
+165342.0619833372 3.466712 1103.4147
+165343.0619834415 3.466594 1103.3555
+165344.0619835458 3.4666333 1103.3752
+165345.0619836501 3.4665153 1103.3555
+165346.0619837544 3.4665153 1103.4147
+165347.0619838587 3.4665153 1103.3357
+165348.061983963 3.466397 1103.3357
+165349.0619840673 3.466397 1103.2963
+165350.0619841716 3.4664366 1103.3752
+165351.0619842759 3.4663577 1103.3357
+165352.0619843802 3.4663577 1103.3752
+165353.0619844846 3.4663184 1103.3357
+165354.0619845889 3.4663577 1103.3357
+165355.0619846932 3.466397 1103.3752
+165356.0619847975 3.4663184 1103.3555
+165357.0619849018 3.4662004 1103.3555
+165358.0619850061 3.4662397 1103.3357
+165359.0619851104 3.4663577 1103.3752
+165360.0619852147 3.4663184 1103.2765
+165361.061985319 3.466279 1103.3555
+165362.0619854233 3.4663184 1103.316
+165363.0619855276 3.4662004 1103.3752
+165364.0619856319 3.4663577 1103.2963
+165365.0619857362 3.4663577 1103.316
+165366.0619858406 3.4663184 1103.3555
+165367.0619859449 3.466397 1103.2172
+165368.0619860492 3.466397 1103.3555
+165369.0619861535 3.466476 1103.316
+165370.0619862578 3.466397 1103.3357
+165371.0619863621 3.466476 1103.2963
+165372.0619864664 3.4665153 1103.3949
+165373.0619865707 3.466476 1103.3555
+165374.061986675 3.466476 1103.316
+165375.0619867793 3.4664366 1103.3752
+165376.0619868836 3.4663577 1103.3752
+165377.0619869879 3.4663577 1103.3752
+165378.0619870923 3.466397 1103.2765
+165379.0619871966 3.466476 1103.3555
+165380.0619873009 3.4664366 1103.3752
+165381.0619874052 3.4663577 1103.316
+165382.0619875095 3.4663577 1103.2765
+165383.0619876138 3.466397 1103.2765
+165384.0619877181 3.466397 1103.316
+165385.0619878224 3.466476 1103.316
+165386.0619879267 3.466476 1103.316
+165387.061988031 3.466476 1103.316
+165388.0619881353 3.4665153 1103.2765
+165389.0619882396 3.4665546 1103.3752
+165390.061988344 3.4666333 1103.4147
+165391.0619884483 3.4665153 1103.4344
+165392.0619885526 3.4663577 1103.3752
+165393.0619886569 3.4665546 1103.4147
+165394.0619887612 3.4664366 1103.2963
+165395.0619888655 3.4663577 1103.316
+165396.0619889698 3.4663577 1103.3357
+165397.0619890741 3.4664366 1103.3357
+165398.0619891784 3.466476 1103.3555
+165399.0619892827 3.466397 1103.3752
+165400.061989387 3.466397 1103.3555
+165401.0619894913 3.466594 1103.2963
+165402.0619895956 3.466594 1103.3949
+165403.0619897 3.4666333 1103.3357
+165404.0619898043 3.4666727 1103.316
+165405.0619899086 3.466712 1103.316
+165406.0619900129 3.4667516 1103.2765
+165407.0619901172 3.466712 1103.4542
+165408.0619902215 3.4669483 1103.316
+165409.0619903258 3.4669483 1103.3949
+165410.0619904301 3.4669483 1103.3949
+165411.0619905344 3.4670272 1103.3752
+165412.0619906387 3.4669483 1103.3555
+165413.061990743 3.4670665 1103.2369
+165414.0619908473 3.4669483 1103.4542
+165415.0619909517 3.4670665 1103.3555
+165416.061991056 3.4669089 1103.3949
+165417.0619911603 3.4668696 1103.3752
+165418.0619912646 3.4670272 1103.3752
+165419.0619913689 3.4669876 1103.316
+165420.0619914732 3.4669089 1103.3752
+165421.0619915775 3.4668696 1103.4147
+165422.0619916818 3.4669483 1103.316
+165423.0619917861 3.4668696 1103.316
+165424.0619918904 3.4668696 1103.3555
+165425.0619919947 3.4669089 1103.2765
+165426.061992099 3.4669089 1103.316
+165427.0619922034 3.4669089 1103.2567
+165428.0619923077 3.4667909 1103.316
+165429.061992412 3.4668303 1103.3949
+165430.0619925163 3.4667909 1103.3949
+165431.0619926206 3.4668303 1103.3949
+165432.0619927249 3.4668696 1103.2963
+165433.0619928292 3.4669876 1103.3752
+165434.0619929335 3.4669483 1103.4147
+165435.0619930378 3.4668696 1103.3752
+165436.0619931421 3.4669876 1103.3357
+165437.0619932464 3.4671452 1103.3555
+165438.0619933507 3.4671059 1103.3949
+165439.061993455 3.4671059 1103.3949
+165440.0619935594 3.4670665 1103.316
+165441.0619936637 3.4671845 1103.2765
+165442.061993768 3.4673026 1103.316
+165443.0619938723 3.4672239 1103.2963
+165444.0619939766 3.4671452 1103.4542
+165445.0619940809 3.4673026 1103.2765
+165446.0619941852 3.4672239 1103.3357
+165447.0619942895 3.4672239 1103.3357
+165448.0619943938 3.4673421 1103.3752
+165449.0619944981 3.4672239 1103.4147
+165450.0619946024 3.4673815 1103.2963
+165451.0619947067 3.4673026 1103.2765
+165452.0619948111 3.4672632 1103.316
+165453.0619949154 3.4673026 1103.316
+165454.0619950197 3.4673421 1103.316
+165455.061995124 3.4672632 1103.2765
+165456.0619952283 3.4672632 1103.3949
+165457.0619953326 3.4672632 1103.2567
+165458.0619954369 3.4671845 1103.316
+165459.0619955412 3.4673026 1103.2765
+165460.0619956455 3.4673026 1103.2765
+165461.0619957498 3.4671845 1103.3555
+165462.0619958541 3.4671845 1103.3555
+165463.0619959584 3.4671452 1103.3752
+165464.0619960628 3.4672239 1103.3555
+165465.0619961671 3.4671059 1103.3752
+165466.0619962714 3.4671452 1103.474
+165467.0619963757 3.4671845 1103.2963
+165468.06199648 3.4673026 1103.2963
+165469.0619965843 3.4671845 1103.316
+165470.0619966886 3.4671059 1103.4147
+165471.0619967929 3.4672239 1103.3357
+165472.0619968972 3.4672239 1103.3752
+165473.0619970015 3.4672632 1103.3357
+165474.0619971058 3.4672239 1103.316
+165475.0619972101 3.4672239 1103.3949
+165476.0619973144 3.4671452 1103.4147
+165477.0619974188 3.4673026 1103.3357
+165478.0619975231 3.4672632 1103.3555
+165479.0619976274 3.4673421 1103.3357
+165480.0619977317 3.4672239 1103.3357
+165481.061997836 3.4673815 1103.316
+165482.0619979403 3.4674208 1103.3555
+165483.0619980446 3.4673026 1103.3752
+165484.0619981489 3.4673815 1103.4147
+165485.0619982532 3.4673421 1103.4344
+165486.0619983575 3.4673815 1103.316
+165487.0619984618 3.4673421 1103.316
+165488.0619985661 3.4673421 1103.316
+165489.0619986705 3.4673815 1103.316
+165490.0619987748 3.4674602 1103.3555
+165491.0619988791 3.4673815 1103.2765
+165492.0619989834 3.4674208 1103.2567
+165493.0619990877 3.4674602 1103.3357
+165494.061999192 3.4675782 1103.3357
+165495.0619992963 3.4674208 1103.3949
+165496.0619994006 3.4674995 1103.3555
+165497.0619995049 3.4676175 1103.4147
+165498.0619996092 3.4674602 1103.3555
+165499.0619997135 3.4674995 1103.3752
+165500.0619998178 3.4674602 1103.4344
+165501.0619999222 3.4674602 1103.3949
+165502.0620000265 3.4675388 1103.3357
+165503.0620001308 3.4673815 1103.3752
+165504.0620002351 3.4674602 1103.316
+165505.0620003394 3.4674208 1103.4147
+165506.0620004437 3.4674995 1103.3555
+165507.062000548 3.4674208 1103.2963
+165508.0620006523 3.4673815 1103.3949
+165509.0620007566 3.4673815 1103.4344
+165510.0620008609 3.4673815 1103.3555
+165511.0620009652 3.4674208 1103.2963
+165512.0620010695 3.4673421 1103.3555
+165513.0620011739 3.4672632 1103.3752
+165514.0620012782 3.4672632 1103.3949
+165515.0620013825 3.4672632 1103.2765
+165516.0620014868 3.4672632 1103.3357
+165517.0620015911 3.4673026 1103.3949
+165518.0620016954 3.4671452 1103.316
+165519.0620017997 3.4671452 1103.3752
+165520.062001904 3.4672239 1103.2963
+165521.0620020083 3.4672632 1103.3357
+165522.0620021126 3.4671452 1103.2963
+165523.0620022169 3.4672239 1103.3555
+165524.0620023212 3.4671452 1103.2765
+165525.0620024255 3.4673026 1103.3752
+165526.0620025299 3.4672239 1103.2963
+165527.0620026342 3.4672632 1103.2567
+165528.0620027385 3.4672632 1103.2963
+165529.0620028428 3.4673421 1103.2567
+165530.0620029471 3.4673815 1103.316
+165531.0620030514 3.4672632 1103.3357
+165532.0620031557 3.4671845 1103.3555
+165533.06200326 3.4672632 1103.316
+165534.0620033643 3.4672632 1103.3949
+165535.0620034686 3.4672239 1103.316
+165536.0620035729 3.4673026 1103.2963
+165537.0620036772 3.4672632 1103.316
+165538.0620037816 3.4671845 1103.3949
+165539.0620038859 3.4672239 1103.2963
+165540.0620039902 3.4673026 1103.2963
+165541.0620040945 3.4673421 1103.4542
+165542.0620041988 3.4672632 1103.3752
+165543.0620043031 3.4673421 1103.3752
+165544.0620044074 3.4673026 1103.4147
+165545.0620045117 3.4673026 1103.3949
+165546.062004616 3.4671845 1103.4938
+165547.0620047203 3.4671452 1103.3555
+165548.0620048246 3.4671452 1103.4147
+165549.0620049289 3.4671452 1103.3752
+165550.0620050333 3.4671845 1103.4344
+165551.0620051376 3.4671059 1103.2567
+165552.0620052419 3.4671059 1103.4147
+165553.0620053462 3.4670665 1103.2963
+165554.0620054505 3.4670665 1103.3752
+165555.0620055548 3.4670665 1103.3949
+165556.0620056591 3.4671452 1103.316
+165557.0620057634 3.4671452 1103.3555
+165558.0620058677 3.4672239 1103.4344
+165559.062005972 3.4672239 1103.3357
+165560.0620060763 3.4673421 1103.3752
+165561.0620061806 3.4672632 1103.316
+165562.0620062849 3.4673026 1103.3949
+165563.0620063893 3.4672632 1103.316
+165564.0620064936 3.4674208 1103.3949
+165565.0620065979 3.4674208 1103.3752
+165566.0620067022 3.4673815 1103.3555
+165567.0620068065 3.4673815 1103.3752
+165568.0620069108 3.4674602 1103.3752
+165569.0620070151 3.4674995 1103.2369
+165570.0620071194 3.4674208 1103.3752
+165571.0620072237 3.4674602 1103.2963
+165572.062007328 3.4675782 1103.3555
+165573.0620074323 3.4674208 1103.3357
+165574.0620075366 3.4674995 1103.3555
+165575.062007641 3.4676175 1103.2567
+165576.0620077453 3.4676571 1103.4344
+165577.0620078496 3.4675388 1103.3357
+165578.0620079539 3.4677358 1103.316
+165579.0620080582 3.4676964 1103.3949
+165580.0620081625 3.4677358 1103.2765
+165581.0620082668 3.4678144 1103.3949
+165582.0620083711 3.4678144 1103.2963
+165583.0620084754 3.4677751 1103.316
+165584.0620085797 3.4677751 1103.316
+165585.062008684 3.4676964 1103.2963
+165586.0620087883 3.4676964 1103.4542
+165587.0620088927 3.4676175 1103.3555
+165588.062008997 3.4678144 1103.2765
+165589.0620091013 3.4677751 1103.3357
+165590.0620092056 3.4676175 1103.316
+165591.0620093099 3.4675782 1103.2172
+165592.0620094142 3.4677751 1103.2765
+165593.0620095185 3.4677751 1103.3752
+165594.0620096228 3.4678931 1103.3752
+165595.0620097271 3.4678144 1103.3555
+165596.0620098314 3.4677751 1103.3357
+165597.0620099357 3.4677751 1103.3357
+165598.06201004 3.4678931 1103.3555
+165599.0620101443 3.4678538 1103.3949
+165600.0620102487 3.4677751 1103.2765
+165601.062010353 3.4678931 1103.316
+165602.0620104573 3.4677751 1103.3357
+165603.0620105616 3.4679325 1103.2765
+165604.0620106659 3.4678144 1103.3555
+165605.0620107702 3.4678538 1103.4147
+165606.0620108745 3.4678931 1103.3357
+165607.0620109788 3.467972 1103.3555
+165608.0620110831 3.4678931 1103.3949
+165609.0620111874 3.4678931 1103.3555
+165610.0620112917 3.4678144 1103.3949
+165611.062011396 3.4679325 1103.3357
+165612.0620115004 3.4678931 1103.3555
+165613.0620116047 3.467972 1103.3555
+165614.062011709 3.4679325 1103.3752
+165615.0620118133 3.4680507 1103.316
+165616.0620119176 3.467972 1103.3949
+165617.0620120219 3.4680114 1103.2765
+165618.0620121262 3.4678931 1103.3752
+165619.0620122305 3.4679325 1103.3555
+165620.0620123348 3.4680114 1103.3752
+165621.0620124391 3.4680901 1103.3357
+165622.0620125434 3.4680901 1103.316
+165623.0620126477 3.467972 1103.3752
+165624.0620127521 3.4679325 1103.3949
+165625.0620128564 3.4678931 1103.3949
+165626.0620129607 3.4678144 1103.3949
+165627.062013065 3.4679325 1103.2963
+165628.0620131693 3.4678538 1103.2765
+165629.0620132736 3.4679325 1103.2963
+165630.0620133779 3.4678538 1103.3949
+165631.0620134822 3.4677751 1103.2963
+165632.0620135865 3.467972 1103.3752
+165633.0620136908 3.467972 1103.2765
+165634.0620137951 3.467972 1103.3555
+165635.0620138994 3.467972 1103.316
+165636.0620140038 3.467972 1103.4147
+165637.0620141081 3.4678538 1103.3555
+165638.0620142124 3.467972 1103.3357
+165639.0620143167 3.4679325 1103.3357
+165640.062014421 3.4678931 1103.3752
+165641.0620145253 3.4679325 1103.2765
+165642.0620146296 3.467972 1103.3357
+165643.0620147339 3.4678931 1103.2963
+165644.0620148382 3.4680507 1103.3949
+165645.0620149425 3.4678931 1103.316
+165646.0620150468 3.4678144 1103.3357
+165647.0620151511 3.4678538 1103.316
+165648.0620152554 3.4678538 1103.3357
+165649.0620153598 3.4678931 1103.2963
+165650.0620154641 3.4678538 1103.2963
+165651.0620155684 3.4678144 1103.3357
+165652.0620156727 3.4678538 1103.3949
+165653.062015777 3.4678931 1103.3949
+165654.0620158813 3.4679325 1103.3752
+165655.0620159856 3.4677751 1103.3555
+165656.0620160899 3.4678538 1103.2963
+165657.0620161942 3.4678538 1103.3555
+165658.0620162985 3.4678931 1103.3949
+165659.0620164028 3.4678538 1103.3752
+165660.0620165071 3.4678931 1103.3555
+165661.0620166115 3.4678538 1103.3555
+165662.0620167158 3.4678931 1103.3555
+165663.0620168201 3.4679325 1103.3949
+165664.0620169244 3.4678144 1103.3555
+165665.0620170287 3.4678144 1103.316
+165666.062017133 3.4677751 1103.3555
+165667.0620172373 3.4676964 1103.2963
+165668.0620173416 3.4676964 1103.3555
+165669.0620174459 3.4676964 1103.4147
+165670.0620175502 3.4676175 1103.2963
+165671.0620176545 3.4676964 1103.2963
+165672.0620177588 3.4677358 1103.2369
+165673.0620178632 3.4676175 1103.4147
+165674.0620179675 3.4676964 1103.316
+165675.0620180718 3.4676571 1103.3555
+165676.0620181761 3.4677358 1103.4147
+165677.0620182804 3.4677358 1103.3555
+165678.0620183847 3.4676571 1103.3752
+165679.062018489 3.4676964 1103.3949
+165680.0620185933 3.4678931 1103.2963
+165681.0620186976 3.4677358 1103.316
+165682.0620188019 3.4678538 1103.316
+165683.0620189062 3.4678538 1103.3357
+165684.0620190105 3.467972 1103.316
+165685.0620191148 3.4679325 1103.3357
+165686.0620192192 3.4678931 1103.3357
+165687.0620193235 3.4677751 1103.2963
+165688.0620194278 3.4678931 1103.316
+165689.0620195321 3.4678144 1103.3949
+165690.0620196364 3.4676571 1103.3949
+165691.0620197407 3.4678538 1103.3949
+165692.062019845 3.4677751 1103.3752
+165693.0620199493 3.4678538 1103.2765
+165694.0620200536 3.4678931 1103.2765
+165695.0620201579 3.4678931 1103.3949
+165696.0620202622 3.467972 1103.4147
+165697.0620203665 3.4680901 1103.3357
+165698.0620204709 3.4680507 1103.3555
+165699.0620205752 3.4680901 1103.4147
+165700.0620206795 3.4681687 1103.474
+165701.0620207838 3.4681294 1103.3949
+165702.0620208881 3.4681687 1103.3555
+165703.0620209924 3.4682474 1103.2765
+165704.0620210967 3.4680901 1103.3555
+165705.062021201 3.4682081 1103.3555
+165706.0620213053 3.4682081 1103.3555
+165707.0620214096 3.4682474 1103.3752
+165708.0620215139 3.468287 1103.4147
+165709.0620216182 3.4682081 1103.4344
+165710.0620217226 3.468287 1103.3949
+165711.0620218269 3.468287 1103.2765
+165712.0620219312 3.468287 1103.316
+165713.0620220355 3.4681687 1103.2963
+165714.0620221398 3.468287 1103.3752
+165715.0620222441 3.4683657 1103.316
+165716.0620223484 3.4683263 1103.2963
+165717.0620224527 3.468405 1103.4542
+165718.062022557 3.468405 1103.3949
+165719.0620226613 3.4684837 1103.2765
+165720.0620227656 3.4686019 1103.4542
+165721.0620228699 3.4685624 1103.3555
+165722.0620229742 3.4686806 1103.316
+165723.0620230786 3.4686019 1103.316
+165724.0620231829 3.4687593 1103.4147
+165725.0620232872 3.4687593 1103.3752
+165726.0620233915 3.4689169 1103.3555
+165727.0620234958 3.468838 1103.316
+165728.0620236001 3.4689562 1103.4344
+165729.0620237044 3.4689169 1103.4147
+165730.0620238087 3.4689956 1103.3752
+165731.062023913 3.4689956 1103.3752
+165732.0620240173 3.4690349 1103.4147
+165733.0620241216 3.4691529 1103.2369
+165734.0620242259 3.4689169 1103.2963
+165735.0620243303 3.4689956 1103.3555
+165736.0620244346 3.4690349 1103.316
+165737.0620245389 3.4689956 1103.4344
+165738.0620246432 3.4689956 1103.3357
+165739.0620247475 3.4690742 1103.2963
+165740.0620248518 3.4690349 1103.3357
+165741.0620249561 3.4691136 1103.3949
+165742.0620250604 3.4691529 1103.4147
+165743.0620251647 3.4690349 1103.2963
+165744.062025269 3.4690349 1103.4147
+165745.0620253733 3.4690349 1103.3752
+165746.0620254776 3.4691136 1103.316
+165747.062025582 3.4690349 1103.3752
+165748.0620256863 3.4690742 1103.3357
+165749.0620257906 3.4690742 1103.4147
+165750.0620258949 3.4691925 1103.3357
+165751.0620259992 3.4690742 1103.3555
+165752.0620261035 3.4690349 1103.3949
+165753.0620262078 3.4691529 1103.2963
+165754.0620263121 3.4690349 1103.3357
+165755.0620264164 3.4690349 1103.4147
+165756.0620265207 3.4690742 1103.3357
+165757.062026625 3.4691529 1103.2765
+165758.0620267293 3.4690349 1103.3752
+165759.0620268337 3.4690349 1103.3357
+165760.062026938 3.4689956 1103.3555
+165761.0620270423 3.4689956 1103.3752
+165762.0620271466 3.4690742 1103.3949
+165763.0620272509 3.4690349 1103.316
+165764.0620273552 3.4691529 1103.3752
+165765.0620274595 3.4690742 1103.3357
+165766.0620275638 3.4691529 1103.3752
+165767.0620276681 3.4692712 1103.3555
+165768.0620277724 3.4691925 1103.4147
+165769.0620278767 3.4693499 1103.3357
+165770.062027981 3.4691925 1103.3555
+165771.0620280853 3.4693892 1103.3357
+165772.0620281897 3.4695075 1103.4542
+165773.062028294 3.4695075 1103.316
+165774.0620283983 3.4695075 1103.3357
+165775.0620285026 3.4695861 1103.3357
+165776.0620286069 3.4695075 1103.316
+165777.0620287112 3.4695468 1103.2567
+165778.0620288155 3.4695075 1103.3555
+165779.0620289198 3.4695075 1103.2567
+165780.0620290241 3.4695075 1103.3949
+165781.0620291284 3.4694679 1103.3357
+165782.0620292327 3.4694285 1103.316
+165783.062029337 3.4695468 1103.2963
+165784.0620294414 3.4695861 1103.2963
+165785.0620295457 3.4696255 1103.3357
+165786.06202965 3.4696255 1103.3555
+165787.0620297543 3.4695861 1103.3357
+165788.0620298586 3.4695861 1103.316
+165789.0620299629 3.4696255 1103.3555
+165790.0620300672 3.4695861 1103.3752
+165791.0620301715 3.4695468 1103.316
+165792.0620302758 3.4695861 1103.2369
+165793.0620303801 3.4696255 1103.3752
+165794.0620304844 3.4697042 1103.4147
+165795.0620305887 3.4695861 1103.3949
+165796.0620306931 3.4694679 1103.3357
+165797.0620307974 3.4696255 1103.4147
+165798.0620309017 3.4696648 1103.3357
+165799.062031006 3.4696648 1103.3357
+165800.0620311103 3.4696648 1103.3357
+165801.0620312146 3.4697828 1103.3949
+165802.0620313189 3.4697435 1103.5134
+165803.0620314232 3.4697435 1103.316
+165804.0620315275 3.4698224 1103.3555
+165805.0620316318 3.4698224 1103.3357
+165806.0620317361 3.4697435 1103.3752
+165807.0620318404 3.4699011 1103.316
+165808.0620319447 3.4699011 1103.3752
+165809.0620320491 3.4699011 1103.2765
+165810.0620321534 3.4699011 1103.3357
+165811.0620322577 3.4699404 1103.3949
+165812.062032362 3.4699404 1103.3555
+165813.0620324663 3.4700584 1103.3949
+165814.0620325706 3.4699404 1103.3357
+165815.0620326749 3.4699404 1103.3752
+165816.0620327792 3.4700191 1103.3752
+165817.0620328835 3.4699011 1103.2765
+165818.0620329878 3.4699798 1103.2963
+165819.0620330921 3.4699011 1103.316
+165820.0620331964 3.4699798 1103.3357
+165821.0620333008 3.4699011 1103.3555
+165822.0620334051 3.4699011 1103.3357
+165823.0620335094 3.4699011 1103.4147
+165824.0620336137 3.4698617 1103.3357
+165825.062033718 3.4697435 1103.3555
+165826.0620338223 3.4696648 1103.3357
+165827.0620339266 3.4697042 1103.2963
+165828.0620340309 3.4697042 1103.3949
+165829.0620341352 3.4696255 1103.3555
+165830.0620342395 3.4697435 1103.3357
+165831.0620343438 3.4695861 1103.3357
+165832.0620344481 3.4695861 1103.3949
+165833.0620345525 3.4697435 1103.3752
+165834.0620346568 3.4696255 1103.3555
+165835.0620347611 3.4695861 1103.3752
+165836.0620348654 3.4695468 1103.3555
+165837.0620349697 3.4696648 1103.3752
+165838.062035074 3.4696648 1103.4147
+165839.0620351783 3.4697828 1103.3555
+165840.0620352826 3.4698617 1103.2369
+165841.0620353869 3.4698224 1103.2963
+165842.0620354912 3.4699011 1103.3949
+165843.0620355955 3.4697828 1103.3752
+165844.0620356998 3.4699011 1103.2963
+165845.0620358041 3.4699011 1103.316
+165846.0620359085 3.4699404 1103.3555
+165847.0620360128 3.4698224 1103.4147
+165848.0620361171 3.4698224 1103.3752
+165849.0620362214 3.4699011 1103.4147
+165850.0620363257 3.4699404 1103.316
+165851.06203643 3.4698617 1103.3555
+165852.0620365343 3.4698617 1103.3357
+165853.0620366386 3.4698617 1103.3357
+165854.0620367429 3.4699011 1103.2765
+165855.0620368472 3.4699798 1103.3949
+165856.0620369515 3.4699011 1103.3555
+165857.0620370558 3.4698617 1103.2765
+165858.0620371602 3.4699011 1103.316
+165859.0620372645 3.4698224 1103.3555
+165860.0620373688 3.4698224 1103.3555
+165861.0620374731 3.4697828 1103.3949
+165862.0620375774 3.4698224 1103.3752
+165863.0620376817 3.4697435 1103.2963
+165864.062037786 3.4698224 1103.3752
+165865.0620378903 3.4697042 1103.3357
+165866.0620379946 3.4698224 1103.3555
+165867.0620380989 3.4699011 1103.316
+165868.0620382032 3.4698617 1103.4147
+165869.0620383075 3.4698224 1103.3752
+165870.0620384119 3.4697435 1103.4147
+165871.0620385162 3.4697435 1103.3555
+165872.0620386205 3.4697042 1103.3555
+165873.0620387248 3.4695861 1103.3555
+165874.0620388291 3.4696255 1103.3752
+165875.0620389334 3.4695861 1103.3357
+165876.0620390377 3.4695861 1103.3357
+165877.062039142 3.4696255 1103.3357
+165878.0620392463 3.4695468 1103.2963
+165879.0620393506 3.4694679 1103.2963
+165880.0620394549 3.4695468 1103.316
+165881.0620395592 3.4695468 1103.3752
+165882.0620396636 3.4697042 1103.4344
+165883.0620397679 3.4695468 1103.3752
+165884.0620398722 3.4695075 1103.316
+165885.0620399765 3.4695468 1103.4147
+165886.0620400808 3.4695861 1103.3555
+165887.0620401851 3.4696255 1103.3555
+165888.0620402894 3.4695861 1103.3357
+165889.0620403937 3.4696255 1103.3555
+165890.062040498 3.4697435 1103.3949
+165891.0620406023 3.4697435 1103.3555
+165892.0620407066 3.4697435 1103.3752
+165893.0620408109 3.4697828 1103.3357
+165894.0620409152 3.4697435 1103.2963
+165895.0620410196 3.4698224 1103.3357
+165896.0620411239 3.4698617 1103.3949
+165897.0620412282 3.4697435 1103.316
+165898.0620413325 3.4698617 1103.3752
+165899.0620414368 3.4697828 1103.3357
+165900.0620415411 3.4699011 1103.2765
+165901.0620416454 3.4699404 1103.316
+165902.0620417497 3.4699011 1103.3357
+165903.062041854 3.4700584 1103.2963
+165904.0620419583 3.4700584 1103.3949
+165905.0620420626 3.4700978 1103.2963
+165906.0620421669 3.4700584 1103.2963
+165907.0620422713 3.4700978 1103.316
+165908.0620423756 3.4700978 1103.2765
+165909.0620424799 3.4700978 1103.3357
+165910.0620425842 3.4701374 1103.3555
+165911.0620426885 3.4700978 1103.3555
+165912.0620427928 3.4700978 1103.3752
+165913.0620428971 3.4700584 1103.3555
+165914.0620430014 3.4700978 1103.4344
+165915.0620431057 3.4700584 1103.2369
+165916.06204321 3.4700978 1103.3752
+165917.0620433143 3.4700191 1103.316
+165918.0620434186 3.4699798 1103.3357
+165919.062043523 3.4700191 1103.3752
+165920.0620436273 3.4700191 1103.3555
+165921.0620437316 3.4699404 1103.3752
+165922.0620438359 3.4700191 1103.3752
+165923.0620439402 3.4699011 1103.316
+165924.0620440445 3.4699798 1103.3949
+165925.0620441488 3.4699404 1103.3357
+165926.0620442531 3.4701374 1103.2963
+165927.0620443574 3.4700584 1103.2963
+165928.0620444617 3.4701374 1103.3357
+165929.062044566 3.4700978 1103.4542
+165930.0620446703 3.4702554 1103.2963
+165931.0620447746 3.470216 1103.3949
+165932.062044879 3.470216 1103.4344
+165933.0620449833 3.4701374 1103.2963
+165934.0620450876 3.470216 1103.2567
+165935.0620451919 3.470216 1103.2567
+165936.0620452962 3.470216 1103.3949
+165937.0620454005 3.4703341 1103.316
+165938.0620455048 3.470216 1103.3357
+165939.0620456091 3.4702947 1103.4147
+165940.0620457134 3.4701767 1103.3752
+165941.0620458177 3.4702554 1103.316
+165942.062045922 3.4703341 1103.3949
+165943.0620460263 3.4704127 1103.4147
+165944.0620461307 3.4702554 1103.3752
+165945.062046235 3.4702947 1103.316
+165946.0620463393 3.4702554 1103.4147
+165947.0620464436 3.4702554 1103.3949
+165948.0620465479 3.4702947 1103.3949
+165949.0620466522 3.4702554 1103.316
+165950.0620467565 3.470216 1103.3555
+165951.0620468608 3.470216 1103.2765
+165952.0620469651 3.4701767 1103.3357
+165953.0620470694 3.470216 1103.3949
+165954.0620471737 3.4701767 1103.2765
+165955.062047278 3.470216 1103.2567
+165956.0620473824 3.4702947 1103.3752
+165957.0620474867 3.4703341 1103.3555
+165958.062047591 3.4702947 1103.3752
+165959.0620476953 3.4703734 1103.2765
+165960.0620477996 3.4702554 1103.316
+165961.0620479039 3.4703734 1103.316
+165962.0620480082 3.4702554 1103.3555
+165963.0620481125 3.4702554 1103.3555
+165964.0620482168 3.4702554 1103.3752
+165965.0620483211 3.4702947 1103.3555
+165966.0620484254 3.4702947 1103.2963
+165967.0620485297 3.4702947 1103.4147
+165968.062048634 3.470216 1103.316
+165969.0620487384 3.4702947 1103.316
+165970.0620488427 3.4703341 1103.2963
+165971.062048947 3.4702554 1103.3357
+165972.0620490513 3.4701767 1103.3357
+165973.0620491556 3.4701374 1103.3555
+165974.0620492599 3.4701767 1103.3949
+165975.0620493642 3.4700191 1103.3752
+165976.0620494685 3.4700584 1103.3752
+165977.0620495728 3.4699798 1103.2963
+165978.0620496771 3.4700584 1103.3949
+165979.0620497814 3.4699011 1103.3357
+165980.0620498857 3.4699404 1103.3949
+165981.0620499901 3.4699798 1103.2765
+165982.0620500944 3.4699798 1103.2963
+165983.0620501987 3.4700191 1103.3555
+165984.062050303 3.4700191 1103.3555
+165985.0620504073 3.4700584 1103.3752
+165986.0620505116 3.4699798 1103.3357
+165987.0620506159 3.4701767 1103.3949
+165988.0620507202 3.4700191 1103.2765
+165989.0620508245 3.4700191 1103.3555
+165990.0620509288 3.4700191 1103.2369
+165991.0620510331 3.4699798 1103.3949
+165992.0620511374 3.4699798 1103.3949
+165993.0620512418 3.4699404 1103.3752
+165994.0620513461 3.4699798 1103.3752
+165995.0620514504 3.4699404 1103.3555
+165996.0620515547 3.4700191 1103.3752
+165997.062051659 3.4699404 1103.2765
+165998.0620517633 3.4699011 1103.3357
+165999.0620518676 3.4699011 1103.3949
+166000.0620519719 3.4699404 1103.2765
+166001.0620520762 3.4699404 1103.3752
+166002.0620521805 3.4699404 1103.316
+166003.0620522848 3.4699798 1103.3949
+166004.0620523891 3.4698617 1103.3949
+166005.0620524934 3.4698224 1103.3357
+166006.0620525978 3.4700191 1103.2963
+166007.0620527021 3.4699404 1103.3357
+166008.0620528064 3.4699798 1103.2369
+166009.0620529107 3.4699404 1103.3357
+166010.062053015 3.4700191 1103.2963
+166011.0620531193 3.4699798 1103.4147
+166012.0620532236 3.4700978 1103.3752
+166013.0620533279 3.4700978 1103.2963
+166014.0620534322 3.4702554 1103.316
+166015.0620535365 3.4702947 1103.3357
+166016.0620536408 3.4702554 1103.3357
+166017.0620537451 3.4703341 1103.316
+166018.0620538495 3.4702947 1103.2765
+166019.0620539538 3.4703734 1103.2369
+166020.0620540581 3.4702554 1103.2963
+166021.0620541624 3.4701767 1103.4344
+166022.0620542667 3.4702554 1103.316
+166023.062054371 3.4702554 1103.3949
+166024.0620544753 3.4702554 1103.3949
+166025.0620545796 3.4703734 1103.3752
+166026.0620546839 3.470216 1103.3752
+166027.0620547882 3.4702947 1103.316
+166028.0620548925 3.4704127 1103.3357
+166029.0620549968 3.4703734 1103.3357
+166030.0620551012 3.4703734 1103.2765
+166031.0620552055 3.4703341 1103.2567
+166032.0620553098 3.4704127 1103.4147
+166033.0620554141 3.4703734 1103.3555
+166034.0620555184 3.4704127 1103.3752
+166035.0620556227 3.4704523 1103.316
+166036.062055727 3.4704127 1103.3752
+166037.0620558313 3.4705703 1103.316
+166038.0620559356 3.4703734 1103.3555
+166039.0620560399 3.4705703 1103.4147
+166040.0620561442 3.4706097 1103.2963
+166041.0620562485 3.4704916 1103.4147
+166042.0620563529 3.4704916 1103.2963
+166043.0620564572 3.4704916 1103.3357
+166044.0620565615 3.4706883 1103.3357
+166045.0620566658 3.4705703 1103.3949
+166046.0620567701 3.4706097 1103.3555
+166047.0620568744 3.470649 1103.3555
+166048.0620569787 3.4706883 1103.3949
+166049.062057083 3.470649 1103.2765
+166050.0620571873 3.4707673 1103.2963
+166051.0620572916 3.4706883 1103.3357
+166052.0620573959 3.470649 1103.3752
+166053.0620575002 3.4707673 1103.4147
+166054.0620576045 3.4708066 1103.316
+166055.0620577089 3.4708066 1103.316
+166056.0620578132 3.4709246 1103.3949
+166057.0620579175 3.4708853 1103.3752
+166058.0620580218 3.4708459 1103.2567
+166059.0620581261 3.4709246 1103.316
+166060.0620582304 3.470964 1103.316
+166061.0620583347 3.4710033 1103.3555
+166062.062058439 3.470964 1103.3752
+166063.0620585433 3.4710822 1103.4344
+166064.0620586476 3.4710822 1103.3357
+166065.0620587519 3.4710033 1103.3357
+166066.0620588562 3.4710429 1103.3752
+166067.0620589606 3.4711215 1103.3555
+166068.0620590649 3.4709246 1103.4147
+166069.0620591692 3.4710822 1103.3752
+166070.0620592735 3.4710822 1103.3752
+166071.0620593778 3.4710822 1103.4147
+166072.0620594821 3.4710429 1103.316
+166073.0620595864 3.4710429 1103.3357
+166074.0620596907 3.4710429 1103.316
+166075.062059795 3.4710822 1103.3357
+166076.0620598993 3.470964 1103.2765
+166077.0620600036 3.4710429 1103.3555
+166078.0620601079 3.4710429 1103.3752
+166079.0620602123 3.4710033 1103.4147
+166080.0620603166 3.4710429 1103.3752
+166081.0620604209 3.4711609 1103.3555
+166082.0620605252 3.4710429 1103.316
+166083.0620606295 3.4711609 1103.4147
+166084.0620607338 3.4711609 1103.2172
+166085.0620608381 3.4711609 1103.316
+166086.0620609424 3.4712396 1103.3357
+166087.0620610467 3.4712396 1103.316
+166088.062061151 3.4712002 1103.3752
+166089.0620612553 3.4711609 1103.3949
+166090.0620613596 3.4712002 1103.4147
+166091.0620614639 3.4711215 1103.3949
+166092.0620615683 3.4711609 1103.316
+166093.0620616726 3.4711215 1103.3357
+166094.0620617769 3.4710822 1103.316
+166095.0620618812 3.4711609 1103.3949
+166096.0620619855 3.4711215 1103.3357
+166097.0620620898 3.4710822 1103.4147
+166098.0620621941 3.4710822 1103.316
+166099.0620622984 3.4711215 1103.4147
+166100.0620624027 3.4710429 1103.3357
+166101.062062507 3.4710033 1103.3752
+166102.0620626113 3.4710822 1103.3357
+166103.0620627156 3.4712396 1103.3752
+166104.06206282 3.4710822 1103.3555
+166105.0620629243 3.4712002 1103.316
+166106.0620630286 3.4713182 1103.474
+166107.0620631329 3.4713972 1103.3357
+166108.0620632372 3.4713972 1103.4344
+166109.0620633415 3.4713972 1103.316
+166110.0620634458 3.4713972 1103.316
+166111.0620635501 3.4714758 1103.316
+166112.0620636544 3.4714365 1103.3357
+166113.0620637587 3.4713182 1103.3357
+166114.062063863 3.4714365 1103.2963
+166115.0620639673 3.4714758 1103.4147
+166116.0620640717 3.4714758 1103.3752
+166117.062064176 3.4714365 1103.3555
+166118.0620642803 3.4714365 1103.316
+166119.0620643846 3.4714758 1103.2765
+166120.0620644889 3.4713972 1103.4147
+166121.0620645932 3.4714365 1103.3555
+166122.0620646975 3.4714758 1103.2765
+166123.0620648018 3.4715152 1103.2369
+166124.0620649061 3.4715152 1103.2963
+166125.0620650104 3.4714365 1103.3555
+166126.0620651147 3.4714365 1103.3555
+166127.062065219 3.4714758 1103.4147
+166128.0620653233 3.4713182 1103.3555
+166129.0620654277 3.4713972 1103.316
+166130.062065532 3.4713972 1103.3555
+166131.0620656363 3.4712789 1103.3752
+166132.0620657406 3.4713578 1103.3357
+166133.0620658449 3.4714758 1103.2963
+166134.0620659492 3.4714758 1103.316
+166135.0620660535 3.4714758 1103.3357
+166136.0620661578 3.4715152 1103.4542
+166137.0620662621 3.4715152 1103.3752
+166138.0620663664 3.4715152 1103.4147
+166139.0620664707 3.4715939 1103.2369
+166140.062066575 3.4715152 1103.316
+166141.0620666794 3.4715545 1103.3555
+166142.0620667837 3.4715939 1103.3555
+166143.062066888 3.4715545 1103.316
+166144.0620669923 3.4715939 1103.3555
+166145.0620670966 3.4717121 1103.3555
+166146.0620672009 3.4717121 1103.3752
+166147.0620673052 3.4717121 1103.4344
+166148.0620674095 3.4716332 1103.3555
+166149.0620675138 3.4717121 1103.3357
+166150.0620676181 3.4716728 1103.2765
+166151.0620677224 3.4716332 1103.3357
+166152.0620678267 3.4716332 1103.2567
+166153.0620679311 3.4717121 1103.3555
+166154.0620680354 3.4716728 1103.4147
+166155.0620681397 3.4716728 1103.2963
+166156.062068244 3.4717515 1103.3555
+166157.0620683483 3.4717515 1103.3752
+166158.0620684526 3.4716728 1103.3555
+166159.0620685569 3.4717121 1103.3555
+166160.0620686612 3.4715152 1103.4147
+166161.0620687655 3.4716332 1103.3555
+166162.0620688698 3.4716728 1103.4147
+166163.0620689741 3.4715545 1103.2765
+166164.0620690784 3.4715545 1103.3357
+166165.0620691828 3.4715939 1103.4147
+166166.0620692871 3.4715152 1103.316
+166167.0620693914 3.4715152 1103.3357
+166168.0620694957 3.4715939 1103.3555
+166169.0620696 3.4714758 1103.3752
+166170.0620697043 3.4715939 1103.3555
+166171.0620698086 3.4714758 1103.3357
+166172.0620699129 3.4715939 1103.3357
+166173.0620700172 3.4715152 1103.3752
+166174.0620701215 3.4715939 1103.3357
+166175.0620702258 3.4715152 1103.3555
+166176.0620703301 3.4715152 1103.3555
+166177.0620704344 3.4715545 1103.3949
+166178.0620705388 3.4714365 1103.2963
+166179.0620706431 3.4714758 1103.316
+166180.0620707474 3.4714365 1103.3555
+166181.0620708517 3.4714365 1103.3949
+166182.062070956 3.4713972 1103.3949
+166183.0620710603 3.4715152 1103.2963
+166184.0620711646 3.4714365 1103.3752
+166185.0620712689 3.4713578 1103.3555
+166186.0620713732 3.4714758 1103.4147
+166187.0620714775 3.4713578 1103.2567
+166188.0620715818 3.4713972 1103.2963
+166189.0620716861 3.4714758 1103.2963
+166190.0620717905 3.4715152 1103.3555
+166191.0620718948 3.4713972 1103.2765
+166192.0620719991 3.4714365 1103.3357
+166193.0620721034 3.4714758 1103.3752
+166194.0620722077 3.4714758 1103.3752
+166195.062072312 3.4715152 1103.2765
+166196.0620724163 3.4714758 1103.3752
+166197.0620725206 3.4715939 1103.4938
+166198.0620726249 3.4714758 1103.3555
+166199.0620727292 3.4715545 1103.4344
+166200.0620728335 3.4715545 1103.3357
+166201.0620729378 3.4716332 1103.2963
+166202.0620730422 3.4716332 1103.3357
+166203.0620731465 3.4717121 1103.316
+166204.0620732508 3.4713972 1103.2963
+166205.0620733551 3.4715545 1103.2765
+166206.0620734594 3.4715939 1103.3949
+166207.0620735637 3.4715939 1103.2369
+166208.062073668 3.4716332 1103.3357
+166209.0620737723 3.4715939 1103.3357
+166210.0620738766 3.4716332 1103.2963
+166211.0620739809 3.4716332 1103.3752
+166212.0620740852 3.4716332 1103.3555
+166213.0620741895 3.4716332 1103.2765
+166214.0620742938 3.4715939 1103.2963
+166215.0620743982 3.4717121 1103.3357
+166216.0620745025 3.4717515 1103.3949
+166217.0620746068 3.4717121 1103.2369
+166218.0620747111 3.4718301 1103.3357
+166219.0620748154 3.4717515 1103.4344
+166220.0620749197 3.4717515 1103.316
+166221.062075024 3.4718301 1103.4344
+166222.0620751283 3.4717515 1103.4147
+166223.0620752326 3.4718301 1103.3357
+166224.0620753369 3.4717515 1103.2963
+166225.0620754412 3.4717908 1103.4147
+166226.0620755455 3.4719088 1103.3752
+166227.0620756499 3.4719481 1103.4147
+166228.0620757542 3.4719088 1103.2567
+166229.0620758585 3.4718695 1103.3949
+166230.0620759628 3.4719877 1103.3555
+166231.0620760671 3.4720271 1103.3357
+166232.0620761714 3.4719877 1103.2765
+166233.0620762757 3.4720271 1103.316
+166234.06207638 3.4721451 1103.3357
+166235.0620764843 3.4719877 1103.3357
+166236.0620765886 3.4720271 1103.3357
+166237.0620766929 3.4719481 1103.3357
+166238.0620767972 3.4721057 1103.2963
+166239.0620769016 3.4721057 1103.3752
+166240.0620770059 3.4719877 1103.3357
+166241.0620771102 3.4721057 1103.2765
+166242.0620772145 3.4720664 1103.3357
+166243.0620773188 3.4720664 1103.4147
+166244.0620774231 3.4720271 1103.316
+166245.0620775274 3.4721057 1103.2765
+166246.0620776317 3.4721451 1103.3949
+166247.062077736 3.4721451 1103.3555
+166248.0620778403 3.4722238 1103.3357
+166249.0620779446 3.4722238 1103.4344
+166250.0620780489 3.4722238 1103.3949
+166251.0620781532 3.4722633 1103.3357
+166252.0620782576 3.4723027 1103.3752
+166253.0620783619 3.4723814 1103.3555
+166254.0620784662 3.4723027 1103.3752
+166255.0620785705 3.4724207 1103.3555
+166256.0620786748 3.4723814 1103.3555
+166257.0620787791 3.47246 1103.4147
+166258.0620788834 3.4724994 1103.2963
+166259.0620789877 3.4726176 1103.3555
+166260.062079092 3.47246 1103.2765
+166261.0620791963 3.4724994 1103.3949
+166262.0620793006 3.4725387 1103.4147
+166263.0620794049 3.4726176 1103.2765
+166264.0620795093 3.4725387 1103.3357
+166265.0620796136 3.4726176 1103.3949
+166266.0620797179 3.4726963 1103.3555
+166267.0620798222 3.4726176 1103.3357
+166268.0620799265 3.4726963 1103.2963
+166269.0620800308 3.4726176 1103.2369
+166270.0620801351 3.4726176 1103.3752
+166271.0620802394 3.4726176 1103.3949
+166272.0620803437 3.4726963 1103.316
+166273.062080448 3.4726176 1103.3357
+166274.0620805523 3.4726963 1103.3555
+166275.0620806566 3.472657 1103.3357
+166276.062080761 3.4725783 1103.2765
+166277.0620808653 3.4726176 1103.2963
+166278.0620809696 3.472657 1103.3752
+166279.0620810739 3.4726176 1103.316
+166280.0620811782 3.4726176 1103.316
+166281.0620812825 3.4725783 1103.3752
+166282.0620813868 3.4726176 1103.3357
+166283.0620814911 3.4724994 1103.3555
+166284.0620815954 3.4726176 1103.3752
+166285.0620816997 3.4726176 1103.2963
+166286.062081804 3.4726176 1103.4147
+166287.0620819083 3.4726176 1103.3555
+166288.0620820127 3.4725783 1103.2963
+166289.062082117 3.4724994 1103.3555
+166290.0620822213 3.472657 1103.3555
+166291.0620823256 3.4726176 1103.3752
+166292.0620824299 3.47246 1103.2765
+166293.0620825342 3.4724994 1103.3752
+166294.0620826385 3.4725387 1103.316
+166295.0620827428 3.472657 1103.2567
+166296.0620828471 3.4726176 1103.3555
+166297.0620829514 3.4725783 1103.2765
+166298.0620830557 3.4725783 1103.3752
+166299.06208316 3.472657 1103.316
+166300.0620832643 3.472657 1103.3949
+166301.0620833687 3.4727356 1103.3357
+166302.062083473 3.472775 1103.2765
+166303.0620835773 3.4727356 1103.3357
+166304.0620836816 3.4728537 1103.2963
+166305.0620837859 3.472775 1103.316
+166306.0620838902 3.4727356 1103.3555
+166307.0620839945 3.4728932 1103.3949
+166308.0620840988 3.4728143 1103.3752
+166309.0620842031 3.4728932 1103.4542
+166310.0620843074 3.4729719 1103.3555
+166311.0620844117 3.4728143 1103.3357
+166312.062084516 3.4729719 1103.3555
+166313.0620846204 3.4729326 1103.3752
+166314.0620847247 3.4729326 1103.316
+166315.062084829 3.4728932 1103.3752
+166316.0620849333 3.4729719 1103.316
+166317.0620850376 3.4730113 1103.316
+166318.0620851419 3.4729719 1103.4344
+166319.0620852462 3.4729326 1103.3555
+166320.0620853505 3.4729326 1103.3752
+166321.0620854548 3.4728932 1103.3949
+166322.0620855591 3.4730113 1103.3555
+166323.0620856634 3.4729719 1103.3752
+166324.0620857677 3.4728932 1103.3949
+166325.0620858721 3.4728932 1103.316
+166326.0620859764 3.4729326 1103.316
+166327.0620860807 3.4728932 1103.3752
+166328.062086185 3.4728932 1103.2567
+166329.0620862893 3.4728932 1103.2963
+166330.0620863936 3.4728537 1103.4147
+166331.0620864979 3.4728537 1103.3555
+166332.0620866022 3.472775 1103.3555
+166333.0620867065 3.472775 1103.3555
+166334.0620868108 3.4728932 1103.316
+166335.0620869151 3.4730113 1103.2765
+166336.0620870194 3.4728537 1103.3555
+166337.0620871237 3.4729326 1103.3357
+166338.0620872281 3.4729326 1103.4147
+166339.0620873324 3.4729719 1103.3752
+166340.0620874367 3.4730506 1103.3752
+166341.062087541 3.4729719 1103.316
+166342.0620876453 3.4730899 1103.316
+166343.0620877496 3.4730506 1103.3555
+166344.0620878539 3.4730899 1103.3752
+166345.0620879582 3.4730113 1103.2963
+166346.0620880625 3.4730899 1103.4147
+166347.0620881668 3.4730113 1103.4344
+166348.0620882711 3.4730113 1103.3555
+166349.0620883754 3.4731293 1103.3357
+166350.0620884798 3.4729326 1103.3357
+166351.0620885841 3.4729719 1103.316
+166352.0620886884 3.4730113 1103.3357
+166353.0620887927 3.4730113 1103.3949
+166354.062088897 3.4730113 1103.3357
+166355.0620890013 3.4729326 1103.3555
+166356.0620891056 3.4728537 1103.3949
+166357.0620892099 3.4730113 1103.316
+166358.0620893142 3.4728932 1103.2963
+166359.0620894185 3.4730113 1103.316
+166360.0620895228 3.4730113 1103.3357
+166361.0620896271 3.4731686 1103.3357
+166362.0620897315 3.4730506 1103.3949
+166363.0620898358 3.4730899 1103.3949
+166364.0620899401 3.4729719 1103.3357
+166365.0620900444 3.4729719 1103.316
+166366.0620901487 3.4731293 1103.316
+166367.062090253 3.4730506 1103.3752
+166368.0620903573 3.4730506 1103.3752
+166369.0620904616 3.4730506 1103.2765
+166370.0620905659 3.4730899 1103.3752
+166371.0620906702 3.4730506 1103.4147
+166372.0620907745 3.4730899 1103.3357
+166373.0620908788 3.4730113 1103.4147
+166374.0620909831 3.4730899 1103.2963
+166375.0620910875 3.4730113 1103.316
+166376.0620911918 3.4729326 1103.3949
+166377.0620912961 3.4730113 1103.3555
+166378.0620914004 3.4728932 1103.316
+166379.0620915047 3.4729326 1103.3357
+166380.062091609 3.4728932 1103.316
+166381.0620917133 3.4729326 1103.4147
+166382.0620918176 3.4729326 1103.3555
+166383.0620919219 3.4729719 1103.2963
+166384.0620920262 3.4730113 1103.2963
+166385.0620921305 3.4730506 1103.2765
+166386.0620922348 3.4729326 1103.316
+166387.0620923392 3.4730506 1103.2963
+166388.0620924435 3.4730113 1103.2369
+166389.0620925478 3.4729719 1103.2567
+166390.0620926521 3.4732082 1103.4344
+166391.0620927564 3.4730899 1103.3752
+166392.0620928607 3.4729719 1103.3555
+166393.062092965 3.4729326 1103.3555
+166394.0620930693 3.4730506 1103.3555
+166395.0620931736 3.4729326 1103.3752
+166396.0620932779 3.4728143 1103.4147
+166397.0620933822 3.4728537 1103.3555
+166398.0620934865 3.4728537 1103.3949
+166399.0620935909 3.472775 1103.3357
+166400.0620936952 3.472775 1103.3949
+166401.0620937995 3.4728143 1103.3752
+166402.0620939038 3.4726963 1103.2963
+166403.0620940081 3.4727356 1103.3752
+166404.0620941124 3.4728143 1103.316
+166405.0620942167 3.472775 1103.3752
+166406.062094321 3.4729326 1103.3949
+166407.0620944253 3.4728932 1103.3949
+166408.0620945296 3.472775 1103.2567
+166409.0620946339 3.4728143 1103.3555
+166410.0620947382 3.4728932 1103.4344
+166411.0620948425 3.472775 1103.3752
+166412.0620949469 3.4728143 1103.3357
+166413.0620950512 3.4728143 1103.316
+166414.0620951555 3.4727356 1103.4344
+166415.0620952598 3.4728143 1103.4147
+166416.0620953641 3.4727356 1103.3555
+166417.0620954684 3.4726963 1103.4344
+166418.0620955727 3.472657 1103.3752
+166419.062095677 3.4727356 1103.4147
+166420.0620957813 3.4725783 1103.3555
+166421.0620958856 3.4725783 1103.3357
+166422.0620959899 3.472657 1103.4147
+166423.0620960942 3.4725783 1103.3357
+166424.0620961986 3.4725387 1103.316
+166425.0620963029 3.4726176 1103.2963
+166426.0620964072 3.4724994 1103.3555
+166427.0620965115 3.4726176 1103.2765
+166428.0620966158 3.472657 1103.316
+166429.0620967201 3.4725387 1103.3752
+166430.0620968244 3.472657 1103.3555
+166431.0620969287 3.4725783 1103.3752
+166432.062097033 3.472657 1103.4147
+166433.0620971373 3.4725783 1103.3555
+166434.0620972416 3.4727356 1103.2963
+166435.0620973459 3.472657 1103.3357
+166436.0620974503 3.4726963 1103.3357
+166437.0620975546 3.4727356 1103.4147
+166438.0620976589 3.472775 1103.3555
+166439.0620977632 3.4728537 1103.3555
+166440.0620978675 3.4728143 1103.3555
+166441.0620979718 3.4728932 1103.2963
+166442.0620980761 3.472775 1103.2963
+166443.0620981804 3.4728537 1103.3752
+166444.0620982847 3.4728932 1103.3752
+166445.062098389 3.4728932 1103.3357
+166446.0620984933 3.4728932 1103.3357
+166447.0620985976 3.4731293 1103.3357
+166448.062098702 3.4730113 1103.2567
+166449.0620988063 3.4730506 1103.3357
+166450.0620989106 3.4731293 1103.2963
+166451.0620990149 3.4730506 1103.3555
+166452.0620991192 3.4731293 1103.4542
+166453.0620992235 3.4730113 1103.474
+166454.0620993278 3.4730506 1103.2765
+166455.0620994321 3.4730113 1103.4147
+166456.0620995364 3.4728932 1103.3555
+166457.0620996407 3.4728932 1103.3357
+166458.062099745 3.472775 1103.3357
+166459.0620998493 3.4728537 1103.3555
+166460.0620999536 3.4727356 1103.3555
+166461.062100058 3.4728143 1103.3752
+166462.0621001623 3.4727356 1103.2963
+166463.0621002666 3.472775 1103.3555
+166464.0621003709 3.4728143 1103.316
+166465.0621004752 3.4727356 1103.3555
+166466.0621005795 3.4728143 1103.3555
+166467.0621006838 3.4728143 1103.3357
+166468.0621007881 3.4727356 1103.3357
+166469.0621008924 3.472775 1103.3752
+166470.0621009967 3.4728537 1103.2567
+166471.062101101 3.4729326 1103.3555
+166472.0621012053 3.4728537 1103.3949
+166473.0621013097 3.4729719 1103.316
+166474.062101414 3.4728932 1103.3752
+166475.0621015183 3.4728932 1103.2963
+166476.0621016226 3.4729326 1103.3555
+166477.0621017269 3.4728932 1103.3949
+166478.0621018312 3.4728537 1103.4344
+166479.0621019355 3.4728932 1103.3357
+166480.0621020398 3.4729719 1103.2963
+166481.0621021441 3.4729326 1103.3555
+166482.0621022484 3.4728932 1103.2963
+166483.0621023527 3.4728143 1103.3752
+166484.062102457 3.4728143 1103.3555
+166485.0621025614 3.472775 1103.4147
+166486.0621026657 3.4728143 1103.3949
+166487.06210277 3.472775 1103.3555
+166488.0621028743 3.472775 1103.3357
+166489.0621029786 3.4728143 1103.3752
+166490.0621030829 3.472657 1103.4344
+166491.0621031872 3.4727356 1103.2963
+166492.0621032915 3.4726963 1103.3357
+166493.0621033958 3.4726963 1103.2963
+166494.0621035001 3.472657 1103.3555
+166495.0621036044 3.472657 1103.3949
+166496.0621037087 3.472657 1103.3555
+166497.062103813 3.472775 1103.3357
+166498.0621039174 3.4726963 1103.316
+166499.0621040217 3.4725783 1103.3555
+166500.062104126 3.4726176 1103.316
+166501.0621042303 3.4726176 1103.3357
+166502.0621043346 3.4726963 1103.4344
+166503.0621044389 3.4726176 1103.3555
+166504.0621045432 3.4727356 1103.316
+166505.0621046475 3.4726176 1103.3357
+166506.0621047518 3.472657 1103.3949
+166507.0621048561 3.4726963 1103.2963
+166508.0621049604 3.4726963 1103.3555
+166509.0621050647 3.472657 1103.4147
+166510.0621051691 3.472657 1103.3555
+166511.0621052734 3.4727356 1103.3555
+166512.0621053777 3.4727356 1103.4542
+166513.062105482 3.4726176 1103.3949
+166514.0621055863 3.4726963 1103.2765
+166515.0621056906 3.4727356 1103.2765
+166516.0621057949 3.472657 1103.3555
+166517.0621058992 3.4727356 1103.3555
+166518.0621060035 3.4725783 1103.3555
+166519.0621061078 3.472657 1103.3949
+166520.0621062121 3.4725387 1103.3752
+166521.0621063164 3.472657 1103.3949
+166522.0621064208 3.4726963 1103.316
+166523.0621065251 3.4726963 1103.3357
+166524.0621066294 3.4727356 1103.3949
+166525.0621067337 3.472775 1103.316
+166526.062106838 3.4726176 1103.3949
+166527.0621069423 3.472657 1103.3357
+166528.0621070466 3.4726963 1103.316
+166529.0621071509 3.472657 1103.2963
+166530.0621072552 3.4728143 1103.4147
+166531.0621073595 3.4728143 1103.3357
+166532.0621074638 3.472775 1103.3949
+166533.0621075681 3.4728143 1103.4344
+166534.0621076724 3.4728143 1103.4147
+166535.0621077768 3.472775 1103.3949
+166536.0621078811 3.4728932 1103.3752
+166537.0621079854 3.472775 1103.3949
+166538.0621080897 3.4727356 1103.2963
+166539.062108194 3.4728143 1103.2963
+166540.0621082983 3.4727356 1103.3357
+166541.0621084026 3.472775 1103.3752
+166542.0621085069 3.472775 1103.3555
+166543.0621086112 3.472775 1103.3357
+166544.0621087155 3.4728537 1103.3357
+166545.0621088198 3.4728143 1103.3949
+166546.0621089241 3.4728537 1103.2765
+166547.0621090285 3.4728537 1103.3555
+166548.0621091328 3.4728143 1103.2765
+166549.0621092371 3.4728932 1103.3949
+166550.0621093414 3.4728143 1103.3357
+166551.0621094457 3.472775 1103.4147
+166552.06210955 3.4729326 1103.3555
+166553.0621096543 3.4728143 1103.3752
+166554.0621097586 3.4728932 1103.2765
+166555.0621098629 3.4727356 1103.2765
+166556.0621099672 3.4728143 1103.316
+166557.0621100715 3.4729326 1103.3555
+166558.0621101758 3.4728932 1103.3949
+166559.0621102802 3.4728537 1103.2963
+166560.0621103845 3.4728143 1103.3357
+166561.0621104888 3.4729326 1103.3357
+166562.0621105931 3.4728143 1103.3555
+166563.0621106974 3.4728932 1103.3752
+166564.0621108017 3.4729326 1103.316
+166565.062110906 3.4728537 1103.3555
+166566.0621110103 3.472775 1103.3555
+166567.0621111146 3.4728932 1103.3949
+166568.0621112189 3.4728537 1103.316
+166569.0621113232 3.4728143 1103.2963
+166570.0621114275 3.472775 1103.316
+166571.0621115319 3.4728143 1103.3555
+166572.0621116362 3.4728537 1103.3752
+166573.0621117405 3.4728143 1103.3357
+166574.0621118448 3.4727356 1103.3555
+166575.0621119491 3.4728537 1103.3752
+166576.0621120534 3.4729719 1103.316
+166577.0621121577 3.4729326 1103.2963
+166578.062112262 3.4729326 1103.3752
+166579.0621123663 3.4729719 1103.3555
+166580.0621124706 3.4728932 1103.3752
+166581.0621125749 3.4728932 1103.4542
+166582.0621126792 3.4729719 1103.316
+166583.0621127835 3.4729719 1103.3357
+166584.0621128879 3.4730506 1103.3752
+166585.0621129922 3.4731686 1103.4147
+166586.0621130965 3.4730113 1103.2567
+166587.0621132008 3.4730113 1103.316
+166588.0621133051 3.4731686 1103.3555
+166589.0621134094 3.4730506 1103.3357
+166590.0621135137 3.4730113 1103.2963
+166591.062113618 3.4730506 1103.3357
+166592.0621137223 3.4730506 1103.3555
+166593.0621138266 3.4730113 1103.3555
+166594.0621139309 3.4730506 1103.2369
+166595.0621140352 3.4730899 1103.2567
+166596.0621141396 3.4730113 1103.3555
+166597.0621142439 3.4730899 1103.316
+166598.0621143482 3.4730506 1103.316
+166599.0621144525 3.4730506 1103.3949
+166600.0621145568 3.4730506 1103.3949
+166601.0621146611 3.4730113 1103.316
+166602.0621147654 3.4729719 1103.4542
+166603.0621148697 3.4729326 1103.3752
+166604.062114974 3.4729326 1103.1975
+166605.0621150783 3.4730113 1103.3357
+166606.0621151826 3.4730113 1103.3555
+166607.0621152869 3.4728932 1103.2963
+166608.0621153913 3.4729719 1103.316
+166609.0621154956 3.4729719 1103.3555
+166610.0621155999 3.4728932 1103.3357
+166611.0621157042 3.4729326 1103.3357
+166612.0621158085 3.4730113 1103.3357
+166613.0621159128 3.4729326 1103.3752
+166614.0621160171 3.4730113 1103.3357
+166615.0621161214 3.4730899 1103.3949
+166616.0621162257 3.4730113 1103.3555
+166617.06211633 3.4730899 1103.316
+166618.0621164343 3.4730899 1103.316
+166619.0621165386 3.4730113 1103.3752
+166620.0621166429 3.4730506 1103.4344
+166621.0621167473 3.4730506 1103.3752
+166622.0621168516 3.4730506 1103.3949
+166623.0621169559 3.4730506 1103.3555
+166624.0621170602 3.4731293 1103.3949
+166625.0621171645 3.4730506 1103.316
+166626.0621172688 3.4730506 1103.316
+166627.0621173731 3.4730506 1103.3555
+166628.0621174774 3.4730506 1103.3357
+166629.0621175817 3.4732475 1103.4147
+166630.062117686 3.4731293 1103.3752
+166631.0621177903 3.4730899 1103.3357
+166632.0621178946 3.4730899 1103.3555
+166633.062117999 3.4731686 1103.3752
+166634.0621181033 3.4732475 1103.3949
+166635.0621182076 3.4732082 1103.3357
+166636.0621183119 3.4732475 1103.2765
+166637.0621184162 3.4732082 1103.316
+166638.0621185205 3.4732869 1103.3752
+166639.0621186248 3.4733262 1103.4147
+166640.0621187291 3.4733655 1103.3752
+166641.0621188334 3.4733262 1103.3357
+166642.0621189377 3.4734442 1103.2765
+166643.062119042 3.4734442 1103.3949
+166644.0621191463 3.4734836 1103.3555
+166645.0621192507 3.4735625 1103.3949
+166646.062119355 3.4736412 1103.316
+166647.0621194593 3.4736412 1103.2369
+166648.0621195636 3.4737592 1103.316
+166649.0621196679 3.4736805 1103.4147
+166650.0621197722 3.4736412 1103.3949
+166651.0621198765 3.4736805 1103.3555
+166652.0621199808 3.4737198 1103.3555
+166653.0621200851 3.4737198 1103.1975
+166654.0621201894 3.4737198 1103.3752
+166655.0621202937 3.4737592 1103.2567
+166656.062120398 3.4737985 1103.316
+166657.0621205023 3.4737198 1103.3357
+166658.0621206067 3.4737198 1103.316
+166659.062120711 3.4737198 1103.4542
+166660.0621208153 3.4737198 1103.3357
+166661.0621209196 3.4737985 1103.4147
+166662.0621210239 3.4737198 1103.3555
+166663.0621211282 3.4737985 1103.3555
+166664.0621212325 3.4738381 1103.3949
+166665.0621213368 3.4736412 1103.3555
+166666.0621214411 3.4738381 1103.3555
+166667.0621215454 3.4737985 1103.4147
+166668.0621216497 3.4737985 1103.3357
+166669.062121754 3.4738774 1103.3752
+166670.0621218584 3.4739561 1103.2765
+166671.0621219627 3.4738774 1103.3357
+166672.062122067 3.4738774 1103.3357
+166673.0621221713 3.4739954 1103.4147
+166674.0621222756 3.4739561 1103.2765
+166675.0621223799 3.4739954 1103.3752
+166676.0621224842 3.4741924 1103.3555
+166677.0621225885 3.4741137 1103.2369
+166678.0621226928 3.4741137 1103.3752
+166679.0621227971 3.4741924 1103.3555
+166680.0621229014 3.4742711 1103.3752
+166681.0621230057 3.4743104 1103.3752
+166682.0621231101 3.4742711 1103.3357
+166683.0621232144 3.4743891 1103.3357
+166684.0621233187 3.4743891 1103.316
+166685.062123423 3.4743497 1103.3555
+166686.0621235273 3.4745073 1103.3357
+166687.0621236316 3.4743497 1103.3752
+166688.0621237359 3.4743891 1103.2765
+166689.0621238402 3.4743891 1103.316
+166690.0621239445 3.474468 1103.3752
+166691.0621240488 3.4746253 1103.3752
+166692.0621241531 3.4745073 1103.316
+166693.0621242574 3.474586 1103.3357
+166694.0621243618 3.474586 1103.3357
+166695.0621244661 3.4747436 1103.4147
+166696.0621245704 3.4746253 1103.3555
+166697.0621246747 3.474586 1103.3357
+166698.062124779 3.474468 1103.3357
+166699.0621248833 3.4745467 1103.3357
+166700.0621249876 3.4745073 1103.3949
+166701.0621250919 3.4745073 1103.3949
+166702.0621251962 3.474468 1103.316
+166703.0621253005 3.474468 1103.3949
+166704.0621254048 3.474468 1103.3555
+166705.0621255091 3.474468 1103.2963
+166706.0621256134 3.4743891 1103.3949
+166707.0621257178 3.4744287 1103.316
+166708.0621258221 3.4745467 1103.2963
+166709.0621259264 3.4745073 1103.316
+166710.0621260307 3.4744287 1103.2963
+166711.062126135 3.4745467 1103.3555
+166712.0621262393 3.4745467 1103.3555
+166713.0621263436 3.4745073 1103.2963
+166714.0621264479 3.4745073 1103.3949
+166715.0621265522 3.4744287 1103.3357
+166716.0621266565 3.474586 1103.2765
+166717.0621267608 3.4745467 1103.3357
+166718.0621268651 3.4745467 1103.316
+166719.0621269695 3.4746253 1103.316
+166720.0621270738 3.4745467 1103.3752
+166721.0621271781 3.474586 1103.3555
+166722.0621272824 3.4746647 1103.3357
+166723.0621273867 3.474586 1103.2567
+166724.062127491 3.474586 1103.3357
+166725.0621275953 3.4745467 1103.3949
+166726.0621276996 3.474586 1103.3357
+166727.0621278039 3.4746253 1103.3555
+166728.0621279082 3.474704 1103.3357
+166729.0621280125 3.4746253 1103.2963
+166730.0621281168 3.4746253 1103.3357
+166731.0621282212 3.474704 1103.3752
+166732.0621283255 3.4746647 1103.3555
+166733.0621284298 3.4746647 1103.3949
+166734.0621285341 3.4746253 1103.316
+166735.0621286384 3.4747436 1103.3752
+166736.0621287427 3.4746647 1103.4147
+166737.062128847 3.4746253 1103.3949
+166738.0621289513 3.474704 1103.2567
+166739.0621290556 3.474704 1103.3555
+166740.0621291599 3.4746253 1103.4147
+166741.0621292642 3.4747829 1103.2963
+166742.0621293685 3.4746647 1103.3752
+166743.0621294728 3.474704 1103.3555
+166744.0621295772 3.4748223 1103.2963
+166745.0621296815 3.4747436 1103.316
+166746.0621297858 3.474901 1103.2567
+166747.0621298901 3.4749796 1103.3752
+166748.0621299944 3.4749796 1103.3357
+166749.0621300987 3.4748616 1103.4147
+166750.062130203 3.4749403 1103.3357
+166751.0621303073 3.4749796 1103.316
+166752.0621304116 3.4750979 1103.3357
+166753.0621305159 3.4749796 1103.2963
+166754.0621306202 3.4750586 1103.2963
+166755.0621307245 3.475019 1103.3752
+166756.0621308289 3.4751372 1103.3949
+166757.0621309332 3.4750586 1103.316
+166758.0621310375 3.4750586 1103.2369
+166759.0621311418 3.4751372 1103.3752
+166760.0621312461 3.475019 1103.4147
+166761.0621313504 3.4750979 1103.3357
+166762.0621314547 3.4751372 1103.3555
+166763.062131559 3.4750979 1103.3555
+166764.0621316633 3.475019 1103.2765
+166765.0621317676 3.4751372 1103.2963
+166766.0621318719 3.4750979 1103.4542
+166767.0621319762 3.4750979 1103.316
+166768.0621320806 3.4751372 1103.3752
+166769.0621321849 3.4751372 1103.3555
+166770.0621322892 3.4751372 1103.3949
+166771.0621323935 3.4751766 1103.316
+166772.0621324978 3.4752553 1103.3357
+166773.0621326021 3.4752946 1103.3752
+166774.0621327064 3.4751766 1103.4147
+166775.0621328107 3.4753339 1103.3949
+166776.062132915 3.4752946 1103.3949
+166777.0621330193 3.4753339 1103.4147
+166778.0621331236 3.4753735 1103.2963
+166779.0621332279 3.4752946 1103.3752
+166780.0621333322 3.4753735 1103.2765
+166781.0621334366 3.4753735 1103.3357
+166782.0621335409 3.4752946 1103.3752
+166783.0621336452 3.4753735 1103.3357
+166784.0621337495 3.4753735 1103.4344
+166785.0621338538 3.4754128 1103.2567
+166786.0621339581 3.4753735 1103.3357
+166787.0621340624 3.4754522 1103.3752
+166788.0621341667 3.4754128 1103.316
+166789.062134271 3.4754915 1103.3555
+166790.0621343753 3.4755309 1103.316
+166791.0621344796 3.4754915 1103.4147
+166792.0621345839 3.4755702 1103.4147
+166793.0621346883 3.4754915 1103.3752
+166794.0621347926 3.4756489 1103.3555
+166795.0621348969 3.4755309 1103.3357
+166796.0621350012 3.4756095 1103.2963
+166797.0621351055 3.4756885 1103.3357
+166798.0621352098 3.4756885 1103.2963
+166799.0621353141 3.4756095 1103.2567
+166800.0621354184 3.4755702 1103.3357
+166801.0621355227 3.4756885 1103.316
+166802.062135627 3.4756885 1103.2765
+166803.0621357313 3.4756095 1103.3357
+166804.0621358356 3.4755702 1103.3555
+166805.06213594 3.4756489 1103.316
+166806.0621360443 3.4757278 1103.3752
+166807.0621361486 3.4757278 1103.3357
+166808.0621362529 3.4756489 1103.3752
+166809.0621363572 3.4756885 1103.2963
+166810.0621364615 3.4757278 1103.3752
+166811.0621365658 3.4756095 1103.3357
+166812.0621366701 3.4756885 1103.3357
+166813.0621367744 3.4755702 1103.3949
+166814.0621368787 3.4756095 1103.3949
+166815.062136983 3.4756489 1103.3357
+166816.0621370873 3.4755702 1103.3357
+166817.0621371917 3.4757278 1103.2963
+166818.062137296 3.4756885 1103.3949
+166819.0621374003 3.4756095 1103.2765
+166820.0621375046 3.4756885 1103.3357
+166821.0621376089 3.4757671 1103.2567
+166822.0621377132 3.4757671 1103.4542
+166823.0621378175 3.4756489 1103.2963
+166824.0621379218 3.4756489 1103.3949
+166825.0621380261 3.4757278 1103.3555
+166826.0621381304 3.4757278 1103.3357
+166827.0621382347 3.4756885 1103.2765
+166828.062138339 3.4757278 1103.4147
+166829.0621384433 3.4758065 1103.316
+166830.0621385477 3.4758065 1103.3555
+166831.062138652 3.4757278 1103.3752
+166832.0621387563 3.4757671 1103.3949
+166833.0621388606 3.4758852 1103.4542
+166834.0621389649 3.4758852 1103.3555
+166835.0621390692 3.4758852 1103.316
+166836.0621391735 3.4758065 1103.4542
+166837.0621392778 3.4759641 1103.3555
+166838.0621393821 3.4759245 1103.474
+166839.0621394864 3.4759641 1103.2963
+166840.0621395907 3.4760427 1103.4147
+166841.062139695 3.4760034 1103.3949
+166842.0621397994 3.4760821 1103.4344
+166843.0621399037 3.4760427 1103.3357
+166844.062140008 3.4760427 1103.316
+166845.0621401123 3.4760821 1103.3555
+166846.0621402166 3.4760821 1103.2567
+166847.0621403209 3.4760427 1103.3357
+166848.0621404252 3.4760034 1103.2765
+166849.0621405295 3.4760821 1103.4147
+166850.0621406338 3.4760034 1103.3555
+166851.0621407381 3.4760427 1103.3555
+166852.0621408424 3.4760427 1103.3555
+166853.0621409467 3.4760427 1103.3752
+166854.0621410511 3.4760427 1103.3357
+166855.0621411554 3.4760427 1103.4344
+166856.0621412597 3.4759245 1103.3555
+166857.062141364 3.4760034 1103.4542
+166858.0621414683 3.4760427 1103.3949
+166859.0621415726 3.4758458 1103.2765
+166860.0621416769 3.4759245 1103.316
+166861.0621417812 3.4760034 1103.316
+166862.0621418855 3.4760427 1103.3357
+166863.0621419898 3.4761214 1103.3949
+166864.0621420941 3.4761214 1103.3752
+166865.0621421984 3.4760034 1103.3752
+166866.0621423027 3.4761608 1103.3555
+166867.0621424071 3.4761214 1103.3752
+166868.0621425114 3.4762394 1103.4147
+166869.0621426157 3.4762394 1103.3752
+166870.06214272 3.4763184 1103.316
+166871.0621428243 3.476279 1103.2765
+166872.0621429286 3.476279 1103.4542
+166873.0621430329 3.4763577 1103.3949
+166874.0621431372 3.4763184 1103.3357
+166875.0621432415 3.4764757 1103.4147
+166876.0621433458 3.476397 1103.3752
+166877.0621434501 3.4765151 1103.3555
+166878.0621435544 3.4765151 1103.316
+166879.0621436588 3.4766333 1103.316
+166880.0621437631 3.476594 1103.4147
+166881.0621438674 3.4766333 1103.316
+166882.0621439717 3.4766726 1103.4542
+166883.062144076 3.476712 1103.3357
+166884.0621441803 3.4767513 1103.3949
+166885.0621442846 3.4766726 1103.3555
+166886.0621443889 3.4766726 1103.3555
+166887.0621444932 3.4767907 1103.3357
+166888.0621445975 3.4767907 1103.4147
+166889.0621447018 3.47683 1103.3949
+166890.0621448061 3.47683 1103.2963
+166891.0621449105 3.4768693 1103.3357
+166892.0621450148 3.4769483 1103.2963
+166893.0621451191 3.4769483 1103.4147
+166894.0621452234 3.4769876 1103.2963
+166895.0621453277 3.4769876 1103.2765
+166896.062145432 3.4769483 1103.3949
+166897.0621455363 3.4770269 1103.2963
+166898.0621456406 3.4770269 1103.3357
+166899.0621457449 3.4770663 1103.2963
+166900.0621458492 3.4771056 1103.2963
+166901.0621459535 3.4770269 1103.3949
+166902.0621460578 3.4770663 1103.2765
+166903.0621461621 3.4771056 1103.3357
+166904.0621462665 3.4770663 1103.3752
+166905.0621463708 3.4771056 1103.3357
+166906.0621464751 3.4771843 1103.3949
+166907.0621465794 3.4771843 1103.3555
+166908.0621466837 3.4771843 1103.3752
+166909.062146788 3.4773026 1103.3949
+166910.0621468923 3.4771843 1103.2963
+166911.0621469966 3.4772239 1103.316
+166912.0621471009 3.4773419 1103.2963
+166913.0621472052 3.4772239 1103.3752
+166914.0621473095 3.4771843 1103.3357
+166915.0621474138 3.4772632 1103.3752
+166916.0621475182 3.4773026 1103.4147
+166917.0621476225 3.4773812 1103.316
+166918.0621477268 3.4773419 1103.3555
+166919.0621478311 3.4773026 1103.3752
+166920.0621479354 3.4774206 1103.3555
+166921.0621480397 3.4774599 1103.3357
+166922.062148144 3.4773812 1103.3555
+166923.0621482483 3.4775388 1103.3752
+166924.0621483526 3.4773026 1103.3555
+166925.0621484569 3.4774599 1103.2963
+166926.0621485612 3.4774206 1103.3752
+166927.0621486655 3.4774992 1103.316
+166928.0621487699 3.4775388 1103.3949
+166929.0621488742 3.4775388 1103.2963
+166930.0621489785 3.4775388 1103.2963
+166931.0621490828 3.4776568 1103.316
+166932.0621491871 3.4776568 1103.3357
+166933.0621492914 3.4774992 1103.2765
+166934.0621493957 3.4776175 1103.3555
+166935.0621495 3.4775388 1103.3949
+166936.0621496043 3.4776175 1103.2765
+166937.0621497086 3.4777749 1103.3555
+166938.0621498129 3.4777355 1103.3357
+166939.0621499172 3.4777355 1103.2963
+166940.0621500215 3.4778144 1103.2765
+166941.0621501259 3.4777749 1103.316
+166942.0621502302 3.4777749 1103.3949
+166943.0621503345 3.4777749 1103.3949
+166944.0621504388 3.4777355 1103.3752
+166945.0621505431 3.4776962 1103.3357
+166946.0621506474 3.4777355 1103.2963
+166947.0621507517 3.4777355 1103.3357
+166948.062150856 3.4778538 1103.4147
+166949.0621509603 3.4777355 1103.316
+166950.0621510646 3.4777749 1103.3555
+166951.0621511689 3.4778931 1103.3555
+166952.0621512732 3.4778538 1103.316
+166953.0621513776 3.4778538 1103.3555
+166954.0621514819 3.4778538 1103.3555
+166955.0621515862 3.4778931 1103.2567
+166956.0621516905 3.4778931 1103.3752
+166957.0621517948 3.4779718 1103.316
+166958.0621518991 3.4778931 1103.3555
+166959.0621520034 3.4779718 1103.3357
+166960.0621521077 3.4778538 1103.3752
+166961.062152212 3.4778144 1103.4147
+166962.0621523163 3.4777749 1103.3357
+166963.0621524206 3.4779718 1103.316
+166964.0621525249 3.4778931 1103.2963
+166965.0621526293 3.4778931 1103.316
+166966.0621527336 3.4779718 1103.3555
+166967.0621528379 3.4778144 1103.3555
+166968.0621529422 3.4779325 1103.3949
+166969.0621530465 3.4779325 1103.3357
+166970.0621531508 3.4779325 1103.316
+166971.0621532551 3.4779718 1103.316
+166972.0621533594 3.4779718 1103.3752
+166973.0621534637 3.4779718 1103.3357
+166974.062153568 3.4778931 1103.2963
+166975.0621536723 3.4780505 1103.3752
+166976.0621537766 3.4779325 1103.3555
+166977.062153881 3.4780111 1103.3555
+166978.0621539853 3.4780898 1103.3357
+166979.0621540896 3.4780898 1103.3357
+166980.0621541939 3.4780505 1103.316
+166981.0621542982 3.4780505 1103.3555
+166982.0621544025 3.4780898 1103.3357
+166983.0621545068 3.4781294 1103.3949
+166984.0621546111 3.4781294 1103.3555
+166985.0621547154 3.4780111 1103.4344
+166986.0621548197 3.4780898 1103.3752
+166987.062154924 3.4780111 1103.2765
+166988.0621550283 3.4780111 1103.2963
+166989.0621551326 3.4778931 1103.2963
+166990.062155237 3.4779718 1103.3752
+166991.0621553413 3.4780505 1103.3555
+166992.0621554456 3.4778931 1103.3752
+166993.0621555499 3.4779325 1103.3357
+166994.0621556542 3.4779718 1103.2765
+166995.0621557585 3.4779325 1103.2963
+166996.0621558628 3.4780111 1103.3752
+166997.0621559671 3.4779718 1103.3752
+166998.0621560714 3.4779718 1103.3357
+166999.0621561757 3.4779718 1103.4542
+167000.06215628 3.4780505 1103.3357
+167001.0621563843 3.4780111 1103.316
+167002.0621564887 3.4779718 1103.3752
+167003.062156593 3.4780505 1103.3752
+167004.0621566973 3.4781294 1103.3949
+167005.0621568016 3.4780898 1103.3357
+167006.0621569059 3.4781687 1103.3555
+167007.0621570102 3.4782867 1103.316
+167008.0621571145 3.4782474 1103.2963
+167009.0621572188 3.4782081 1103.3752
+167010.0621573231 3.4782867 1103.3752
+167011.0621574274 3.4782867 1103.3555
+167012.0621575317 3.4784048 1103.2963
+167013.062157636 3.4784048 1103.316
+167014.0621577404 3.478523 1103.3555
+167015.0621578447 3.4783261 1103.3357
+167016.062157949 3.4784048 1103.3752
+167017.0621580533 3.4783654 1103.316
+167018.0621581576 3.4783654 1103.3357
+167019.0621582619 3.4783654 1103.2369
+167020.0621583662 3.4784048 1103.3949
+167021.0621584705 3.4783654 1103.3752
+167022.0621585748 3.4784443 1103.3555
+167023.0621586791 3.4783654 1103.2963
+167024.0621587834 3.4784837 1103.3555
+167025.0621588877 3.4784837 1103.316
+167026.062158992 3.478523 1103.3555
+167027.0621590964 3.4784048 1103.3357
+167028.0621592007 3.4784443 1103.3752
+167029.062159305 3.4784048 1103.3357
+167030.0621594093 3.478523 1103.2963
+167031.0621595136 3.4784048 1103.3949
+167032.0621596179 3.478523 1103.2765
+167033.0621597222 3.4784443 1103.3555
+167034.0621598265 3.4784837 1103.316
+167035.0621599308 3.4784048 1103.2765
+167036.0621600351 3.4786017 1103.3949
+167037.0621601394 3.478641 1103.3752
+167038.0621602437 3.4784837 1103.2963
+167039.0621603481 3.4785624 1103.3357
+167040.0621604524 3.4786017 1103.3357
+167041.0621605567 3.478523 1103.3949
+167042.062160661 3.4786017 1103.3357
+167043.0621607653 3.478641 1103.3752
+167044.0621608696 3.4786017 1103.2765
+167045.0621609739 3.4787197 1103.3752
+167046.0621610782 3.4786017 1103.3357
+167047.0621611825 3.4786017 1103.3357
+167048.0621612868 3.478641 1103.2963
+167049.0621613911 3.4785624 1103.3357
+167050.0621614954 3.4786017 1103.3357
+167051.0621615998 3.4786804 1103.3357
+167052.0621617041 3.4786804 1103.2963
+167053.0621618084 3.4786804 1103.3752
+167054.0621619127 3.478641 1103.3949
+167055.062162017 3.478641 1103.4344
+167056.0621621213 3.4786017 1103.3752
+167057.0621622256 3.478641 1103.3949
+167058.0621623299 3.478641 1103.2369
+167059.0621624342 3.4785624 1103.2369
+167060.0621625385 3.4786017 1103.316
+167061.0621626428 3.478641 1103.316
+167062.0621627471 3.478641 1103.316
+167063.0621628514 3.4787593 1103.3752
+167064.0621629558 3.4786804 1103.2765
+167065.0621630601 3.478641 1103.2963
+167066.0621631644 3.4787197 1103.3949
+167067.0621632687 3.478838 1103.3949
+167068.062163373 3.4787197 1103.4147
+167069.0621634773 3.478838 1103.3752
+167070.0621635816 3.4788773 1103.2567
+167071.0621636859 3.478838 1103.316
+167072.0621637902 3.478838 1103.3357
+167073.0621638945 3.4787986 1103.316
+167074.0621639988 3.478838 1103.2963
+167075.0621641031 3.4789166 1103.3752
+167076.0621642075 3.4789166 1103.2963
+167077.0621643118 3.4790347 1103.3357
+167078.0621644161 3.4789953 1103.3555
+167079.0621645204 3.4790347 1103.2567
+167080.0621646247 3.478956 1103.3752
+167081.062164729 3.4789953 1103.3555
+167082.0621648333 3.4790347 1103.316
+167083.0621649376 3.4791136 1103.3949
+167084.0621650419 3.4790347 1103.3357
+167085.0621651462 3.478956 1103.2963
+167086.0621652505 3.4789953 1103.3555
+167087.0621653548 3.4790347 1103.3752
+167088.0621654592 3.478956 1103.3357
+167089.0621655635 3.4791136 1103.4344
+167090.0621656678 3.4791923 1103.4147
+167091.0621657721 3.4791529 1103.4147
+167092.0621658764 3.4792316 1103.3752
+167093.0621659807 3.4792316 1103.4147
+167094.062166085 3.4791923 1103.3555
+167095.0621661893 3.4792316 1103.2567
+167096.0621662936 3.4792316 1103.3555
+167097.0621663979 3.4792709 1103.3357
+167098.0621665022 3.4793103 1103.3752
+167099.0621666065 3.4794285 1103.2963
+167100.0621667109 3.4794679 1103.3357
+167101.0621668152 3.4794285 1103.4147
+167102.0621669195 3.4795072 1103.4344
+167103.0621670238 3.4795072 1103.2963
+167104.0621671281 3.4796252 1103.2963
+167105.0621672324 3.4795465 1103.4147
+167106.0621673367 3.4796648 1103.3555
+167107.062167441 3.4797435 1103.3752
+167108.0621675453 3.4796252 1103.2765
+167109.0621676496 3.4796648 1103.2765
+167110.0621677539 3.4796648 1103.2369
+167111.0621678582 3.4797828 1103.3949
+167112.0621679625 3.4797828 1103.3357
+167113.0621680669 3.4797041 1103.3555
+167114.0621681712 3.4799008 1103.3555
+167115.0621682755 3.4798222 1103.1975
+167116.0621683798 3.4798222 1103.3555
+167117.0621684841 3.4799008 1103.3555
+167118.0621685884 3.4798222 1103.2963
+167119.0621686927 3.4799402 1103.2963
+167120.062168797 3.4799402 1103.2963
+167121.0621689013 3.4799008 1103.4147
+167122.0621690056 3.4798615 1103.2765
+167123.0621691099 3.4797828 1103.3752
+167124.0621692142 3.4797435 1103.2765
+167125.0621693186 3.4798222 1103.3555
+167126.0621694229 3.4798222 1103.3949
+167127.0621695272 3.4798222 1103.3752
+167128.0621696315 3.4797828 1103.3357
+167129.0621697358 3.4797828 1103.3752
+167130.0621698401 3.4797828 1103.3555
+167131.0621699444 3.4798615 1103.3752
+167132.0621700487 3.4797435 1103.2567
+167133.062170153 3.4798222 1103.3752
+167134.0621702573 3.4797041 1103.4542
+167135.0621703616 3.4797435 1103.3752
+167136.0621704659 3.4797435 1103.3555
+167137.0621705703 3.4796648 1103.3357
+167138.0621706746 3.4797041 1103.3949
+167139.0621707789 3.4797041 1103.3555
+167140.0621708832 3.4796648 1103.3357
+167141.0621709875 3.4796648 1103.316
+167142.0621710918 3.4796648 1103.4147
+167143.0621711961 3.4796252 1103.3555
+167144.0621713004 3.4797041 1103.3752
+167145.0621714047 3.4798222 1103.3949
+167146.062171509 3.4796648 1103.3357
+167147.0621716133 3.4797435 1103.3555
+167148.0621717176 3.4797041 1103.3949
+167149.0621718219 3.4797435 1103.3555
+167150.0621719263 3.4797041 1103.3752
+167151.0621720306 3.4797435 1103.3752
+167152.0621721349 3.4797435 1103.3752
+167153.0621722392 3.4797435 1103.3555
+167154.0621723435 3.4797435 1103.3949
+167155.0621724478 3.4796648 1103.3752
+167156.0621725521 3.4796252 1103.4147
+167157.0621726564 3.4796648 1103.3555
+167158.0621727607 3.4797041 1103.3949
+167159.062172865 3.4797435 1103.4147
+167160.0621729693 3.4797041 1103.3949
+167161.0621730736 3.4797435 1103.3555
+167162.062173178 3.4797041 1103.2765
+167163.0621732823 3.4797828 1103.316
+167164.0621733866 3.4797828 1103.3752
+167165.0621734909 3.4798615 1103.4147
+167166.0621735952 3.4798222 1103.316
+167167.0621736995 3.4797435 1103.3752
+167168.0621738038 3.4797435 1103.3949
+167169.0621739081 3.4798222 1103.3555
+167170.0621740124 3.4798222 1103.4147
+167171.0621741167 3.4799008 1103.3357
+167172.062174221 3.4797828 1103.3357
+167173.0621743253 3.4798615 1103.3949
+167174.0621744297 3.4798222 1103.2567
+167175.062174534 3.4799008 1103.3752
+167176.0621746383 3.4799798 1103.4147
+167177.0621747426 3.4799008 1103.2369
+167178.0621748469 3.4800191 1103.474
+167179.0621749512 3.4799798 1103.3357
+167180.0621750555 3.4799798 1103.316
+167181.0621751598 3.4801371 1103.2765
+167182.0621752641 3.4802158 1103.4147
+167183.0621753684 3.4801764 1103.3555
+167184.0621754727 3.4802158 1103.316
+167185.062175577 3.4802947 1103.3555
+167186.0621756813 3.4803734 1103.3949
+167187.0621757857 3.4802551 1103.3555
+167188.06217589 3.480334 1103.2963
+167189.0621759943 3.4804914 1103.4147
+167190.0621760986 3.4804914 1103.3949
+167191.0621762029 3.4804127 1103.3357
+167192.0621763072 3.4804521 1103.4147
+167193.0621764115 3.4804914 1103.316
+167194.0621765158 3.4803734 1103.3357
+167195.0621766201 3.4804127 1103.3949
+167196.0621767244 3.4804127 1103.3555
+167197.0621768287 3.4802947 1103.3357
+167198.062176933 3.480334 1103.2963
+167199.0621770374 3.4804127 1103.3752
+167200.0621771417 3.4804914 1103.3357
+167201.062177246 3.4804127 1103.3357
+167202.0621773503 3.4803734 1103.2369
+167203.0621774546 3.4804914 1103.4147
+167204.0621775589 3.4804127 1103.3555
+167205.0621776632 3.4804521 1103.3752
+167206.0621777675 3.4805307 1103.2963
+167207.0621778718 3.4804914 1103.3752
+167208.0621779761 3.4805701 1103.3949
+167209.0621780804 3.4805307 1103.3555
+167210.0621781847 3.4805701 1103.3555
+167211.0621782891 3.4806883 1103.3949
+167212.0621783934 3.4807277 1103.2963
+167213.0621784977 3.4806883 1103.2765
+167214.062178602 3.4808064 1103.316
+167215.0621787063 3.4806883 1103.3752
+167216.0621788106 3.4807277 1103.3555
+167217.0621789149 3.4806883 1103.3949
+167218.0621790192 3.480767 1103.3949
+167219.0621791235 3.4807277 1103.3949
+167220.0621792278 3.480767 1103.3357
+167221.0621793321 3.4806883 1103.3555
+167222.0621794364 3.480767 1103.3555
+167223.0621795408 3.4808457 1103.3555
+167224.0621796451 3.4808064 1103.3949
+167225.0621797494 3.4808457 1103.4542
+167226.0621798537 3.480767 1103.3555
+167227.062179958 3.4807277 1103.3752
+167228.0621800623 3.4808457 1103.2172
+167229.0621801666 3.480767 1103.3357
+167230.0621802709 3.4808064 1103.3357
+167231.0621803752 3.4807277 1103.3752
+167232.0621804795 3.4808064 1103.3949
+167233.0621805838 3.480885 1103.3752
+167234.0621806881 3.4806883 1103.3555
+167235.0621807924 3.4808064 1103.3357
+167236.0621808968 3.480767 1103.2963
+167237.0621810011 3.4807277 1103.3949
+167238.0621811054 3.4809246 1103.2567
+167239.0621812097 3.480767 1103.3752
+167240.062181314 3.4807277 1103.3949
+167241.0621814183 3.480767 1103.3949
+167242.0621815226 3.4808064 1103.3555
+167243.0621816269 3.480767 1103.3357
+167244.0621817312 3.4807277 1103.3752
+167245.0621818355 3.480767 1103.2765
+167246.0621819398 3.4807277 1103.316
+167247.0621820441 3.4807277 1103.316
+167248.0621821485 3.4806883 1103.2567
+167249.0621822528 3.480649 1103.4147
+167250.0621823571 3.4806883 1103.3357
+167251.0621824614 3.4808457 1103.316
+167252.0621825657 3.4806097 1103.3555
+167253.06218267 3.4806883 1103.2765
+167254.0621827743 3.4805701 1103.3357
+167255.0621828786 3.4807277 1103.3555
+167256.0621829829 3.4807277 1103.316
+167257.0621830872 3.4806883 1103.316
+167258.0621831915 3.4806883 1103.2963
+167259.0621832958 3.4807277 1103.3752
+167260.0621834002 3.4806883 1103.316
+167261.0621835045 3.4808064 1103.4344
+167262.0621836088 3.4808457 1103.3357
+167263.0621837131 3.4808064 1103.316
+167264.0621838174 3.480767 1103.3357
+167265.0621839217 3.480767 1103.3357
+167266.062184026 3.480767 1103.2765
+167267.0621841303 3.480767 1103.4147
+167268.0621842346 3.4808064 1103.316
+167269.0621843389 3.4808064 1103.2765
+167270.0621844432 3.4808457 1103.3555
+167271.0621845475 3.4808457 1103.4147
+167272.0621846518 3.4808064 1103.3752
+167273.0621847562 3.4809639 1103.3555
+167274.0621848605 3.4809246 1103.316
+167275.0621849648 3.4808457 1103.2765
+167276.0621850691 3.480885 1103.316
+167277.0621851734 3.4809246 1103.3555
+167278.0621852777 3.4809246 1103.316
+167279.062185382 3.4809639 1103.4938
+167280.0621854863 3.4811213 1103.4147
+167281.0621855906 3.4810033 1103.3949
+167282.0621856949 3.4811606 1103.316
+167283.0621857992 3.481082 1103.316
+167284.0621859035 3.4811213 1103.3949
+167285.0621860079 3.481082 1103.3357
+167286.0621861122 3.481082 1103.316
+167287.0621862165 3.4812002 1103.3949
+167288.0621863208 3.4811606 1103.3555
+167289.0621864251 3.4812396 1103.3949
+167290.0621865294 3.481082 1103.3357
+167291.0621866337 3.4812789 1103.3752
+167292.062186738 3.4812789 1103.3555
+167293.0621868423 3.4811606 1103.4147
+167294.0621869466 3.4812789 1103.2765
+167295.0621870509 3.4812396 1103.3555
+167296.0621871552 3.4811606 1103.3752
+167297.0621872596 3.4811606 1103.2765
+167298.0621873639 3.4811213 1103.3357
+167299.0621874682 3.4811606 1103.4344
+167300.0621875725 3.481082 1103.316
+167301.0621876768 3.4811606 1103.3357
+167302.0621877811 3.4812002 1103.2963
+167303.0621878854 3.4811213 1103.3949
+167304.0621879897 3.4811606 1103.3357
+167305.062188094 3.481082 1103.3357
+167306.0621881983 3.4811606 1103.3357
+167307.0621883026 3.4811606 1103.3555
+167308.0621884069 3.4812396 1103.3752
+167309.0621885112 3.4811213 1103.3357
+167310.0621886156 3.4812002 1103.3555
+167311.0621887199 3.4811213 1103.3752
+167312.0621888242 3.4812002 1103.316
+167313.0621889285 3.4812789 1103.3357
+167314.0621890328 3.4812396 1103.3752
+167315.0621891371 3.4813182 1103.2963
+167316.0621892414 3.4811606 1103.3357
+167317.0621893457 3.4811606 1103.3357
+167318.06218945 3.481082 1103.3555
+167319.0621895543 3.4813182 1103.2567
+167320.0621896586 3.4811606 1103.3555
+167321.0621897629 3.4811606 1103.3949
+167322.0621898673 3.4810033 1103.3752
+167323.0621899716 3.4812002 1103.3357
+167324.0621900759 3.4812002 1103.4147
+167325.0621901802 3.4811606 1103.316
+167326.0621902845 3.4812002 1103.4147
+167327.0621903888 3.481082 1103.474
+167328.0621904931 3.4812396 1103.2765
+167329.0621905974 3.4811606 1103.3555
+167330.0621907017 3.4812396 1103.3752
+167331.062190806 3.4812002 1103.316
+167332.0621909103 3.4812789 1103.3357
+167333.0621910146 3.4813182 1103.3357
+167334.062191119 3.4811606 1103.4542
+167335.0621912233 3.4811606 1103.2765
+167336.0621913276 3.4812002 1103.3555
+167337.0621914319 3.4811606 1103.4542
+167338.0621915362 3.4811606 1103.2963
+167339.0621916405 3.4809639 1103.2765
+167340.0621917448 3.4811213 1103.3555
+167341.0621918491 3.481082 1103.3752
+167342.0621919534 3.481082 1103.3357
+167343.0621920577 3.4810426 1103.3555
+167344.062192162 3.4810033 1103.316
+167345.0621922663 3.481082 1103.3555
+167346.0621923706 3.4810033 1103.3555
+167347.062192475 3.4810426 1103.316
+167348.0621925793 3.4810426 1103.3357
+167349.0621926836 3.4811213 1103.3555
+167350.0621927879 3.4811213 1103.316
+167351.0621928922 3.481082 1103.3555
+167352.0621929965 3.4811213 1103.3752
+167353.0621931008 3.4812002 1103.3357
+167354.0621932051 3.4812396 1103.2765
+167355.0621933094 3.4812789 1103.2765
+167356.0621934137 3.4812789 1103.3357
+167357.062193518 3.4813969 1103.3752
+167358.0621936223 3.4813576 1103.3357
+167359.0621937267 3.4814756 1103.3949
+167360.062193831 3.4815152 1103.3949
+167361.0621939353 3.4814363 1103.3357
+167362.0621940396 3.4816725 1103.2963
+167363.0621941439 3.4815938 1103.2172
+167364.0621942482 3.4816725 1103.3357
+167365.0621943525 3.4816725 1103.3949
+167366.0621944568 3.4815938 1103.2963
+167367.0621945611 3.4816725 1103.3949
+167368.0621946654 3.4817119 1103.4147
+167369.0621947697 3.4816725 1103.316
+167370.062194874 3.4815938 1103.4542
+167371.0621949784 3.4817512 1103.4344
+167372.0621950827 3.4817119 1103.3555
+167373.062195187 3.4817512 1103.316
+167374.0621952913 3.4817512 1103.2172
+167375.0621953956 3.4817512 1103.3752
+167376.0621954999 3.4817512 1103.316
+167377.0621956042 3.4817905 1103.3555
+167378.0621957085 3.4818695 1103.2963
+167379.0621958128 3.4818301 1103.2567
+167380.0621959171 3.4817905 1103.3555
+167381.0621960214 3.4817905 1103.3357
+167382.0621961257 3.4817512 1103.316
+167383.0621962301 3.4819481 1103.3357
+167384.0621963344 3.4818301 1103.3949
+167385.0621964387 3.4817512 1103.4147
+167386.062196543 3.4818301 1103.3752
+167387.0621966473 3.4819481 1103.3949
+167388.0621967516 3.4818301 1103.2765
+167389.0621968559 3.4818301 1103.3357
+167390.0621969602 3.4818695 1103.2963
+167391.0621970645 3.4819088 1103.3949
+167392.0621971688 3.4819481 1103.3752
+167393.0621972731 3.4818301 1103.4147
+167394.0621973774 3.4819875 1103.3949
+167395.0621974817 3.4819481 1103.2963
+167396.0621975861 3.4819088 1103.316
+167397.0621976904 3.4819088 1103.2765
+167398.0621977947 3.4819875 1103.3357
+167399.062197899 3.4819088 1103.2765
+167400.0621980033 3.4819875 1103.3555
+167401.0621981076 3.4819481 1103.3555
+167402.0621982119 3.4819875 1103.2567
+167403.0621983162 3.4819088 1103.316
+167404.0621984205 3.4818695 1103.3949
+167405.0621985248 3.4820662 1103.4542
+167406.0621986291 3.4819481 1103.4938
+167407.0621987334 3.4819481 1103.3949
+167408.0621988378 3.4820268 1103.316
+167409.0621989421 3.4819088 1103.2567
+167410.0621990464 3.4820662 1103.3752
+167411.0621991507 3.4820268 1103.316
+167412.062199255 3.4819875 1103.3752
+167413.0621993593 3.4819875 1103.316
+167414.0621994636 3.4820662 1103.2963
+167415.0621995679 3.4821055 1103.2963
+167416.0621996722 3.4821055 1103.3752
+167417.0621997765 3.4821451 1103.3949
+167418.0621998808 3.4821451 1103.3357
+167419.0621999851 3.4821451 1103.2765
+167420.0622000895 3.4821055 1103.4542
+167421.0622001938 3.4821451 1103.4344
+167422.0622002981 3.4821844 1103.3357
+167423.0622004024 3.4821055 1103.3752
+167424.0622005067 3.4821451 1103.3555
+167425.062200611 3.4822631 1103.316
+167426.0622007153 3.4821451 1103.4147
+167427.0622008196 3.4821844 1103.3357
+167428.0622009239 3.4821451 1103.3555
+167429.0622010282 3.4819875 1103.2567
+167430.0622011325 3.4821055 1103.3555
+167431.0622012368 3.4821055 1103.3752
+167432.0622013411 3.4821055 1103.3555
+167433.0622014455 3.4821844 1103.3555
+167434.0622015498 3.4821451 1103.3555
+167435.0622016541 3.4821451 1103.3555
+167436.0622017584 3.4821451 1103.316
+167437.0622018627 3.4821844 1103.4147
+167438.062201967 3.4822237 1103.2963
+167439.0622020713 3.4821844 1103.2765
+167440.0622021756 3.4821844 1103.316
+167441.0622022799 3.4822237 1103.316
+167442.0622023842 3.4821844 1103.4344
+167443.0622024885 3.4823024 1103.3357
+167444.0622025928 3.4822237 1103.3357
+167445.0622026972 3.4821844 1103.4147
+167446.0622028015 3.4822631 1103.3949
+167447.0622029058 3.4823024 1103.3357
+167448.0622030101 3.4823418 1103.3555
+167449.0622031144 3.4822631 1103.3555
+167450.0622032187 3.4823418 1103.3752
+167451.062203323 3.4823418 1103.3752
+167452.0622034273 3.48246 1103.2765
+167453.0622035316 3.4824994 1103.3357
+167454.0622036359 3.4824994 1103.4147
+167455.0622037402 3.4826174 1103.316
+167456.0622038445 3.4824994 1103.4344
+167457.0622039489 3.482578 1103.3949
+167458.0622040532 3.482578 1103.3555
+167459.0622041575 3.4826961 1103.3949
+167460.0622042618 3.4826174 1103.2963
+167461.0622043661 3.482578 1103.3357
+167462.0622044704 3.4826961 1103.2369
+167463.0622045747 3.482578 1103.3555
+167464.062204679 3.4827354 1103.3555
+167465.0622047833 3.4826567 1103.316
+167466.0622048876 3.4827354 1103.3555
+167467.0622049919 3.4827354 1103.4147
+167468.0622050962 3.4826961 1103.3357
+167469.0622052005 3.4826961 1103.3555
+167470.0622053049 3.4827354 1103.2963
+167471.0622054092 3.4826961 1103.3357
+167472.0622055135 3.4827354 1103.3752
+167473.0622056178 3.4827354 1103.2963
+167474.0622057221 3.4827354 1103.3752
+167475.0622058264 3.4826961 1103.3555
+167476.0622059307 3.4826961 1103.4147
+167477.062206035 3.4826567 1103.2369
+167478.0622061393 3.4826567 1103.3357
+167479.0622062436 3.4827354 1103.4344
+167480.0622063479 3.482578 1103.3752
+167481.0622064522 3.4826961 1103.3949
+167482.0622065566 3.4826961 1103.2369
+167483.0622066609 3.4826174 1103.4344
+167484.0622067652 3.4825387 1103.3752
+167485.0622068695 3.4826961 1103.3357
+167486.0622069738 3.4827354 1103.3555
+167487.0622070781 3.4827354 1103.3555
+167488.0622071824 3.4826961 1103.316
+167489.0622072867 3.4826174 1103.2963
+167490.062207391 3.4826174 1103.3949
+167491.0622074953 3.4828537 1103.316
+167492.0622075996 3.4826567 1103.3752
+167493.0622077039 3.4826174 1103.3949
+167494.0622078083 3.4826961 1103.2567
+167495.0622079126 3.4826961 1103.3949
+167496.0622080169 3.4827354 1103.3752
+167497.0622081212 3.4826961 1103.3555
+167498.0622082255 3.4826567 1103.3949
+167499.0622083298 3.4826961 1103.316
+167500.0622084341 3.4827354 1103.3555
+167501.0622085384 3.4827354 1103.3357
+167502.0622086427 3.4828143 1103.2765
+167503.062208747 3.4828143 1103.3555
+167504.0622088513 3.4828537 1103.316
+167505.0622089556 3.4829323 1103.3555
+167506.06220906 3.4828537 1103.2765
+167507.0622091643 3.482893 1103.316
+167508.0622092686 3.483011 1103.2963
+167509.0622093729 3.482893 1103.3752
+167510.0622094772 3.4830506 1103.3555
+167511.0622095815 3.483011 1103.3555
+167512.0622096858 3.4830899 1103.2963
+167513.0622097901 3.4830506 1103.3752
+167514.0622098944 3.4831293 1103.316
+167515.0622099987 3.4830506 1103.2963
+167516.062210103 3.4830899 1103.316
+167517.0622102073 3.4830899 1103.3752
+167518.0622103116 3.4831293 1103.3357
+167519.062210416 3.4831293 1103.3555
+167520.0622105203 3.4832473 1103.316
+167521.0622106246 3.4832079 1103.3357
+167522.0622107289 3.4831686 1103.3357
+167523.0622108332 3.4830899 1103.4147
+167524.0622109375 3.4830899 1103.3752
+167525.0622110418 3.4831293 1103.3357
+167526.0622111461 3.4829717 1103.2765
+167527.0622112504 3.4829717 1103.3555
+167528.0622113547 3.483011 1103.3555
+167529.062211459 3.4830899 1103.3752
+167530.0622115633 3.4831293 1103.3357
+167531.0622116677 3.4830899 1103.3949
+167532.062211772 3.4830506 1103.2765
+167533.0622118763 3.4830506 1103.3555
+167534.0622119806 3.4829717 1103.2765
+167535.0622120849 3.4831293 1103.3555
+167536.0622121892 3.4831686 1103.3949
+167537.0622122935 3.4830506 1103.3357
+167538.0622123978 3.4830506 1103.3752
+167539.0622125021 3.4831293 1103.3555
+167540.0622126064 3.4830506 1103.3949
+167541.0622127107 3.4831686 1103.3752
+167542.062212815 3.4831293 1103.316
+167543.0622129194 3.4832079 1103.3357
+167544.0622130237 3.4831293 1103.3949
+167545.062213128 3.4830899 1103.316
+167546.0622132323 3.4832866 1103.3752
+167547.0622133366 3.4832079 1103.3949
+167548.0622134409 3.4831686 1103.3555
+167549.0622135452 3.4832079 1103.316
+167550.0622136495 3.483326 1103.3752
+167551.0622137538 3.4832866 1103.2369
+167552.0622138581 3.4832473 1103.3752
+167553.0622139624 3.483326 1103.4147
+167554.0622140667 3.4833655 1103.3555
+167555.062214171 3.4836016 1103.3357
+167556.0622142754 3.4835229 1103.316
+167557.0622143797 3.4834836 1103.3555
+167558.062214484 3.4834836 1103.316
+167559.0622145883 3.4834836 1103.3555
+167560.0622146926 3.4835229 1103.316
+167561.0622147969 3.4833655 1103.3949
+167562.0622149012 3.4834442 1103.2765
+167563.0622150055 3.4834836 1103.3752
+167564.0622151098 3.4835622 1103.3752
+167565.0622152141 3.4836016 1103.3357
+167566.0622153184 3.4836016 1103.3357
+167567.0622154227 3.4836016 1103.316
+167568.0622155271 3.4836409 1103.3555
+167569.0622156314 3.4836409 1103.3555
+167570.0622157357 3.4836805 1103.2369
+167571.06221584 3.4837592 1103.3555
+167572.0622159443 3.4837592 1103.3949
+167573.0622160486 3.4837592 1103.316
+167574.0622161529 3.4838772 1103.3357
+167575.0622162572 3.4838772 1103.3357
+167576.0622163615 3.4837592 1103.2765
+167577.0622164658 3.4839165 1103.3949
+167578.0622165701 3.4837985 1103.2963
+167579.0622166744 3.4837592 1103.4147
+167580.0622167788 3.4838378 1103.3357
+167581.0622168831 3.4838772 1103.3555
+167582.0622169874 3.4837198 1103.3949
+167583.0622170917 3.4837198 1103.2765
+167584.062217196 3.4836805 1103.4344
+167585.0622173003 3.4836409 1103.4344
+167586.0622174046 3.4836409 1103.4542
+167587.0622175089 3.4835622 1103.2963
+167588.0622176132 3.4836016 1103.3357
+167589.0622177175 3.4836409 1103.3752
+167590.0622178218 3.4835622 1103.3752
+167591.0622179261 3.4836016 1103.2963
+167592.0622180304 3.4835622 1103.4147
+167593.0622181348 3.4835622 1103.474
+167594.0622182391 3.4835622 1103.316
+167595.0622183434 3.4835229 1103.3949
+167596.0622184477 3.4836805 1103.2567
+167597.062218552 3.4835622 1103.3357
+167598.0622186563 3.4836409 1103.3357
+167599.0622187606 3.4835622 1103.3357
+167600.0622188649 3.4836409 1103.3357
+167601.0622189692 3.4835229 1103.3949
+167602.0622190735 3.4836409 1103.3752
+167603.0622191778 3.4837198 1103.3752
+167604.0622192821 3.4836016 1103.3357
+167605.0622193865 3.4836805 1103.3752
+167606.0622194908 3.4837198 1103.2963
+167607.0622195951 3.4837198 1103.2963
+167608.0622196994 3.4838772 1103.2963
+167609.0622198037 3.4837592 1103.3949
+167610.062219908 3.4839165 1103.3555
+167611.0622200123 3.4837985 1103.316
+167612.0622201166 3.4837592 1103.3752
+167613.0622202209 3.4838378 1103.4344
+167614.0622203252 3.4836805 1103.3555
+167615.0622204295 3.4837592 1103.3949
+167616.0622205338 3.4837985 1103.3949
+167617.0622206382 3.4838378 1103.2765
+167618.0622207425 3.4838772 1103.4344
+167619.0622208468 3.4838378 1103.2172
+167620.0622209511 3.4837985 1103.3949
+167621.0622210554 3.4838772 1103.3752
+167622.0622211597 3.4838772 1103.316
+167623.062221264 3.4839559 1103.2369
+167624.0622213683 3.4839954 1103.3752
+167625.0622214726 3.4839954 1103.3555
+167626.0622215769 3.4839559 1103.3357
+167627.0622216812 3.4839559 1103.316
+167628.0622217855 3.4839559 1103.3555
+167629.0622218899 3.4839165 1103.4542
+167630.0622219942 3.4839165 1103.2963
+167631.0622220985 3.4840348 1103.2963
+167632.0622222028 3.4840741 1103.3555
+167633.0622223071 3.4841135 1103.2369
+167634.0622224114 3.4840348 1103.4147
+167635.0622225157 3.4842315 1103.2765
+167636.06222262 3.4841135 1103.3357
+167637.0622227243 3.4841135 1103.2963
+167638.0622228286 3.4842315 1103.316
+167639.0622229329 3.4841528 1103.2963
+167640.0622230372 3.4841528 1103.2963
+167641.0622231415 3.4841528 1103.3752
+167642.0622232459 3.4842315 1103.316
+167643.0622233502 3.4841135 1103.2963
+167644.0622234545 3.4841921 1103.3555
+167645.0622235588 3.4841528 1103.3357
+167646.0622236631 3.4843104 1103.316
+167647.0622237674 3.4842708 1103.3357
+167648.0622238717 3.4841921 1103.3752
+167649.062223976 3.4842315 1103.3949
+167650.0622240803 3.4842708 1103.2963
+167651.0622241846 3.4842315 1103.3949
+167652.0622242889 3.4841921 1103.3752
+167653.0622243932 3.4841528 1103.3555
+167654.0622244976 3.4841921 1103.4147
+167655.0622246019 3.4841921 1103.3752
+167656.0622247062 3.4843104 1103.3357
+167657.0622248105 3.4842315 1103.3555
+167658.0622249148 3.4842708 1103.3357
+167659.0622250191 3.4842708 1103.3949
+167660.0622251234 3.4841921 1103.3555
+167661.0622252277 3.4842315 1103.2765
+167662.062225332 3.4843104 1103.3357
+167663.0622254363 3.4843497 1103.3949
+167664.0622255406 3.4842315 1103.3357
+167665.0622256449 3.4842708 1103.4147
+167666.0622257493 3.4843891 1103.3357
+167667.0622258536 3.4843497 1103.3752
+167668.0622259579 3.4843497 1103.316
+167669.0622260622 3.4843104 1103.2765
+167670.0622261665 3.4843104 1103.316
+167671.0622262708 3.4843104 1103.3555
+167672.0622263751 3.4844284 1103.3555
+167673.0622264794 3.4843104 1103.2963
+167674.0622265837 3.4844284 1103.3752
+167675.062226688 3.4844284 1103.316
+167676.0622267923 3.4843891 1103.2765
+167677.0622268966 3.4843891 1103.3752
+167678.0622270009 3.4843891 1103.316
+167679.0622271053 3.4843891 1103.3357
+167680.0622272096 3.4843891 1103.3357
+167681.0622273139 3.4844284 1103.3949
+167682.0622274182 3.4843891 1103.316
+167683.0622275225 3.4845071 1103.3752
+167684.0622276268 3.4844677 1103.2963
+167685.0622277311 3.4844677 1103.3357
+167686.0622278354 3.4845071 1103.3357
+167687.0622279397 3.4844284 1103.3555
+167688.062228044 3.4845858 1103.3752
+167689.0622281483 3.4845464 1103.2963
+167690.0622282526 3.4845071 1103.3752
+167691.062228357 3.4845464 1103.3357
+167692.0622284613 3.4845071 1103.3357
+167693.0622285656 3.4846253 1103.2963
+167694.0622286699 3.484704 1103.4147
+167695.0622287742 3.4846253 1103.3357
+167696.0622288785 3.4846647 1103.3949
+167697.0622289828 3.4845858 1103.2963
+167698.0622290871 3.4847434 1103.3555
+167699.0622291914 3.4847827 1103.3357
+167700.0622292957 3.484704 1103.2765
+167701.0622294 3.484704 1103.316
+167702.0622295043 3.484704 1103.3357
+167703.0622296087 3.484704 1103.3555
+167704.062229713 3.4846253 1103.3357
+167705.0622298173 3.4846647 1103.3357
+167706.0622299216 3.484822 1103.3752
+167707.0622300259 3.484822 1103.3555
+167708.0622301302 3.484822 1103.3357
+167709.0622302345 3.4848614 1103.316
+167710.0622303388 3.4848614 1103.3949
+167711.0622304431 3.4848614 1103.3949
+167712.0622305474 3.484901 1103.3357
+167713.0622306517 3.4850583 1103.3949
+167714.062230756 3.485019 1103.316
+167715.0622308603 3.4850583 1103.3752
+167716.0622309647 3.4850583 1103.316
+167717.062231069 3.4851763 1103.3949
+167718.0622311733 3.4850976 1103.3357
+167719.0622312776 3.4850583 1103.2369
+167720.0622313819 3.4849403 1103.2765
+167721.0622314862 3.4850583 1103.316
+167722.0622315905 3.4849403 1103.4147
+167723.0622316948 3.4850583 1103.3752
+167724.0622317991 3.4850583 1103.2963
+167725.0622319034 3.485019 1103.3752
+167726.0622320077 3.4850583 1103.3949
+167727.062232112 3.485137 1103.3357
+167728.0622322164 3.485019 1103.3357
+167729.0622323207 3.4850976 1103.3555
+167730.062232425 3.485137 1103.3752
+167731.0622325293 3.4851763 1103.3555
+167732.0622326336 3.485137 1103.3949
+167733.0622327379 3.4851763 1103.3357
+167734.0622328422 3.4852552 1103.3357
+167735.0622329465 3.4852552 1103.2567
+167736.0622330508 3.4852552 1103.3555
+167737.0622331551 3.4853339 1103.3357
+167738.0622332594 3.4853339 1103.4147
+167739.0622333637 3.4852552 1103.3357
+167740.0622334681 3.4853339 1103.3949
+167741.0622335724 3.4852946 1103.316
+167742.0622336767 3.4852552 1103.4344
+167743.062233781 3.4852159 1103.2567
+167744.0622338853 3.4853339 1103.4147
+167745.0622339896 3.4852946 1103.3555
+167746.0622340939 3.485137 1103.316
+167747.0622341982 3.4852552 1103.3555
+167748.0622343025 3.4853339 1103.316
+167749.0622344068 3.4854126 1103.3555
+167750.0622345111 3.4854519 1103.3949
+167751.0622346154 3.4853339 1103.2963
+167752.0622347198 3.4853733 1103.3357
+167753.0622348241 3.4855309 1103.3949
+167754.0622349284 3.4854519 1103.3752
+167755.0622350327 3.4856095 1103.2369
+167756.062235137 3.4855702 1103.3752
+167757.0622352413 3.4855309 1103.2963
+167758.0622353456 3.4856095 1103.3949
+167759.0622354499 3.4856882 1103.3357
+167760.0622355542 3.4856095 1103.3555
+167761.0622356585 3.4856489 1103.3555
+167762.0622357628 3.4856882 1103.3752
+167763.0622358671 3.4857669 1103.2963
+167764.0622359714 3.4857275 1103.3949
+167765.0622360758 3.4856882 1103.3752
+167766.0622361801 3.4857669 1103.3357
+167767.0622362844 3.4858062 1103.4147
+167768.0622363887 3.4858062 1103.3555
+167769.062236493 3.4858458 1103.3949
+167770.0622365973 3.4858458 1103.3752
+167771.0622367016 3.4858851 1103.316
+167772.0622368059 3.4859245 1103.2963
+167773.0622369102 3.4859638 1103.3949
+167774.0622370145 3.4859245 1103.4344
+167775.0622371188 3.4860032 1103.3752
+167776.0622372231 3.4859245 1103.3752
+167777.0622373275 3.4860818 1103.3555
+167778.0622374318 3.4860032 1103.3949
+167779.0622375361 3.4860032 1103.3752
+167780.0622376404 3.4860818 1103.3357
+167781.0622377447 3.4860818 1103.316
+167782.062237849 3.4861608 1103.3752
+167783.0622379533 3.4861608 1103.474
+167784.0622380576 3.4862394 1103.2963
+167785.0622381619 3.4861608 1103.2963
+167786.0622382662 3.4860818 1103.3555
+167787.0622383705 3.4860818 1103.3752
+167788.0622384748 3.4860818 1103.4938
+167789.0622385792 3.4862394 1103.3949
+167790.0622386835 3.4861608 1103.3949
+167791.0622387878 3.4862001 1103.4344
+167792.0622388921 3.4862001 1103.3357
+167793.0622389964 3.4862788 1103.2963
+167794.0622391007 3.4862001 1103.2369
+167795.062239205 3.4861212 1103.3357
+167796.0622393093 3.4862001 1103.316
+167797.0622394136 3.4862788 1103.4344
+167798.0622395179 3.4862394 1103.3555
+167799.0622396222 3.4863181 1103.2369
+167800.0622397265 3.4862394 1103.3949
+167801.0622398308 3.4863181 1103.2369
+167802.0622399352 3.4862394 1103.4147
+167803.0622400395 3.4863968 1103.3752
+167804.0622401438 3.4863575 1103.316
+167805.0622402481 3.4863968 1103.2369
+167806.0622403524 3.4864361 1103.3752
+167807.0622404567 3.4863968 1103.316
+167808.062240561 3.4864757 1103.2369
+167809.0622406653 3.4863181 1103.3752
+167810.0622407696 3.4863968 1103.316
+167811.0622408739 3.4863968 1103.316
+167812.0622409782 3.4863181 1103.3357
+167813.0622410825 3.4863968 1103.3357
+167814.0622411869 3.4863181 1103.3555
+167815.0622412912 3.4862788 1103.316
+167816.0622413955 3.4863181 1103.4147
+167817.0622414998 3.4863968 1103.3357
+167818.0622416041 3.4863575 1103.3949
+167819.0622417084 3.4862788 1103.3357
+167820.0622418127 3.4864361 1103.4147
+167821.062241917 3.4864757 1103.3357
+167822.0622420213 3.4862788 1103.3752
+167823.0622421256 3.4864757 1103.2963
+167824.0622422299 3.4864361 1103.316
+167825.0622423342 3.486515 1103.3555
+167826.0622424386 3.4864361 1103.2765
+167827.0622425429 3.4864757 1103.4542
+167828.0622426472 3.4864757 1103.4147
+167829.0622427515 3.4865544 1103.3949
+167830.0622428558 3.4865937 1103.316
+167831.0622429601 3.4865937 1103.3752
+167832.0622430644 3.4865544 1103.2369
+167833.0622431687 3.4865937 1103.4147
+167834.062243273 3.4866724 1103.3555
+167835.0622433773 3.4866331 1103.316
+167836.0622434816 3.4867513 1103.3555
+167837.0622435859 3.4867117 1103.2765
+167838.0622436902 3.4867513 1103.316
+167839.0622437946 3.48683 1103.3555
+167840.0622438989 3.4867907 1103.3949
+167841.0622440032 3.4867907 1103.2963
+167842.0622441075 3.486948 1103.4147
+167843.0622442118 3.4868693 1103.2963
+167844.0622443161 3.4870267 1103.3752
+167845.0622444204 3.4870663 1103.3949
+167846.0622445247 3.486948 1103.3555
+167847.062244629 3.4871449 1103.2963
+167848.0622447333 3.4871449 1103.3357
+167849.0622448376 3.4871056 1103.3555
+167850.0622449419 3.4871056 1103.316
+167851.0622450463 3.4872236 1103.3555
+167852.0622451506 3.4872236 1103.3357
+167853.0622452549 3.4871843 1103.3357
+167854.0622453592 3.4872236 1103.3752
+167855.0622454635 3.4872236 1103.3752
+167856.0622455678 3.4871056 1103.316
+167857.0622456721 3.4871843 1103.3752
+167858.0622457764 3.4870663 1103.3949
+167859.0622458807 3.4871056 1103.2963
+167860.062245985 3.4869874 1103.3357
+167861.0622460893 3.4870663 1103.3752
+167862.0622461936 3.4870663 1103.3752
+167863.062246298 3.4869874 1103.3357
+167864.0622464023 3.4869087 1103.2963
+167865.0622465066 3.4869087 1103.3555
+167866.0622466109 3.4869087 1103.3752
+167867.0622467152 3.4868693 1103.3555
+167868.0622468195 3.4869874 1103.3949
+167869.0622469238 3.4868693 1103.3357
+167870.0622470281 3.4868693 1103.3949
+167871.0622471324 3.486948 1103.2963
+167872.0622472367 3.4869874 1103.3357
+167873.062247341 3.4870267 1103.3555
+167874.0622474453 3.4870663 1103.316
+167875.0622475496 3.4870663 1103.316
+167876.062247654 3.4870267 1103.2765
+167877.0622477583 3.4871056 1103.3752
+167878.0622478626 3.4871449 1103.3752
+167879.0622479669 3.4870663 1103.3752
+167880.0622480712 3.4871056 1103.3752
+167881.0622481755 3.4870663 1103.3949
+167882.0622482798 3.4870663 1103.3752
+167883.0622483841 3.4869874 1103.2963
+167884.0622484884 3.4871056 1103.3357
+167885.0622485927 3.4871056 1103.3949
+167886.062248697 3.4870663 1103.3949
+167887.0622488013 3.4871449 1103.4542
+167888.0622489057 3.4871056 1103.3752
+167889.06224901 3.4871449 1103.3357
+167890.0622491143 3.4871843 1103.3949
+167891.0622492186 3.4871056 1103.3555
+167892.0622493229 3.4872236 1103.316
+167893.0622494272 3.4871449 1103.4147
+167894.0622495315 3.4872236 1103.3752
+167895.0622496358 3.4871056 1103.3357
+167896.0622497401 3.4871843 1103.3949
+167897.0622498444 3.4871449 1103.2765
+167898.0622499487 3.4871449 1103.3357
+167899.062250053 3.4873023 1103.3752
+167900.0622501574 3.4871056 1103.316
+167901.0622502617 3.487263 1103.316
+167902.062250366 3.487263 1103.3949
+167903.0622504703 3.487263 1103.4147
+167904.0622505746 3.4873416 1103.3555
+167905.0622506789 3.4873023 1103.2963
+167906.0622507832 3.4873416 1103.4344
+167907.0622508875 3.4874206 1103.4147
+167908.0622509918 3.4873416 1103.3949
+167909.0622510961 3.4873812 1103.3752
+167910.0622512004 3.4873812 1103.2567
+167911.0622513047 3.4874599 1103.3357
+167912.0622514091 3.4874599 1103.3555
+167913.0622515134 3.4874206 1103.3357
+167914.0622516177 3.4874992 1103.316
+167915.062251722 3.4874599 1103.3752
+167916.0622518263 3.4874992 1103.3752
+167917.0622519306 3.4874206 1103.4344
+167918.0622520349 3.4874599 1103.3949
+167919.0622521392 3.4874992 1103.4344
+167920.0622522435 3.4874206 1103.4147
+167921.0622523478 3.4873812 1103.3752
+167922.0622524521 3.4873812 1103.3949
+167923.0622525564 3.4873416 1103.316
+167924.0622526607 3.4873812 1103.2765
+167925.0622527651 3.4873416 1103.316
+167926.0622528694 3.487263 1103.3357
+167927.0622529737 3.4872236 1103.3752
+167928.062253078 3.4873023 1103.2765
+167929.0622531823 3.4873416 1103.3752
+167930.0622532866 3.487263 1103.3357
+167931.0622533909 3.4872236 1103.3752
+167932.0622534952 3.4872236 1103.4147
+167933.0622535995 3.4872236 1103.316
+167934.0622537038 3.4871449 1103.2765
+167935.0622538081 3.4872236 1103.316
+167936.0622539124 3.4870267 1103.3357
+167937.0622540168 3.4870663 1103.2963
+167938.0622541211 3.4870663 1103.3555
+167939.0622542254 3.4870267 1103.3357
+167940.0622543297 3.4869874 1103.2963
+167941.062254434 3.4870267 1103.3357
+167942.0622545383 3.4870663 1103.316
+167943.0622546426 3.4871056 1103.316
+167944.0622547469 3.4870267 1103.3752
+167945.0622548512 3.4871843 1103.3555
+167946.0622549555 3.4870267 1103.3752
+167947.0622550598 3.4870663 1103.3555
+167948.0622551641 3.4871056 1103.3949
+167949.0622552685 3.4871449 1103.3555
+167950.0622553728 3.4871056 1103.3949
+167951.0622554771 3.4871056 1103.4344
+167952.0622555814 3.4870663 1103.2567
+167953.0622556857 3.4869874 1103.3752
+167954.06225579 3.4872236 1103.3752
+167955.0622558943 3.4870663 1103.3357
+167956.0622559986 3.4869874 1103.316
+167957.0622561029 3.4871056 1103.3555
+167958.0622562072 3.4869874 1103.316
+167959.0622563115 3.486948 1103.3949
+167960.0622564158 3.486948 1103.2369
+167961.0622565201 3.486948 1103.4344
+167962.0622566245 3.48683 1103.3357
+167963.0622567288 3.4867907 1103.4147
+167964.0622568331 3.4869087 1103.3752
+167965.0622569374 3.486948 1103.316
+167966.0622570417 3.4868693 1103.2765
+167967.062257146 3.4869087 1103.3949
+167968.0622572503 3.486948 1103.3555
+167969.0622573546 3.486948 1103.3555
+167970.0622574589 3.486948 1103.3357
+167971.0622575632 3.4868693 1103.3555
+167972.0622576675 3.4868693 1103.3357
+167973.0622577718 3.4869874 1103.3555
+167974.0622578762 3.4869087 1103.3555
+167975.0622579805 3.486948 1103.3949
+167976.0622580848 3.486948 1103.2963
+167977.0622581891 3.4869087 1103.316
+167978.0622582934 3.4870267 1103.3555
+167979.0622583977 3.4870663 1103.316
+167980.062258502 3.4871056 1103.4147
+167981.0622586063 3.4870663 1103.3357
+167982.0622587106 3.4871449 1103.3949
+167983.0622588149 3.4872236 1103.3357
+167984.0622589192 3.4872236 1103.3949
+167985.0622590235 3.4871843 1103.3555
+167986.0622591279 3.487263 1103.3949
+167987.0622592322 3.4873416 1103.316
+167988.0622593365 3.4873416 1103.316
+167989.0622594408 3.4874206 1103.4147
+167990.0622595451 3.4874599 1103.3555
+167991.0622596494 3.4874992 1103.2567
+167992.0622597537 3.4874206 1103.3555
+167993.062259858 3.4874599 1103.2369
+167994.0622599623 3.4874599 1103.2765
+167995.0622600666 3.4874599 1103.2963
+167996.0622601709 3.4874599 1103.316
+167997.0622602752 3.4875386 1103.4147
+167998.0622603795 3.4875386 1103.3555
+167999.0622604839 3.4876173 1103.3949
+168000.0622605882 3.4875779 1103.316
+168001.0622606925 3.4875779 1103.2765
+168002.0622607968 3.4875386 1103.316
+168003.0622609011 3.4875386 1103.2963
+168004.0622610054 3.4875386 1103.3357
+168005.0622611097 3.4875779 1103.2963
+168006.062261214 3.4875386 1103.3949
+168007.0622613183 3.4874992 1103.3357
+168008.0622614226 3.4875386 1103.3357
+168009.0622615269 3.4876173 1103.2963
+168010.0622616312 3.4874992 1103.3357
+168011.0622617356 3.4875779 1103.3949
+168012.0622618399 3.4876173 1103.2963
+168013.0622619442 3.4875779 1103.316
+168014.0622620485 3.4876566 1103.2963
+168015.0622621528 3.4876173 1103.2963
+168016.0622622571 3.4876566 1103.316
+168017.0622623614 3.4876962 1103.3752
+168018.0622624657 3.4876962 1103.3555
+168019.06226257 3.4876962 1103.3949
+168020.0622626743 3.4876962 1103.2963
+168021.0622627786 3.4876962 1103.3752
+168022.0622628829 3.4876962 1103.3357
+168023.0622629873 3.4877355 1103.4147
+168024.0622630916 3.4876173 1103.316
+168025.0622631959 3.4876173 1103.3752
+168026.0622633002 3.4877355 1103.3949
+168027.0622634045 3.4876173 1103.2963
+168028.0622635088 3.4877748 1103.3357
+168029.0622636131 3.4877748 1103.3752
+168030.0622637174 3.4877355 1103.3949
+168031.0622638217 3.4877748 1103.3949
+168032.062263926 3.4876566 1103.316
+168033.0622640303 3.4876962 1103.2765
+168034.0622641346 3.4878142 1103.3555
+168035.062264239 3.4877355 1103.3357
+168036.0622643433 3.4876566 1103.3949
+168037.0622644476 3.4877748 1103.3949
+168038.0622645519 3.4878142 1103.2369
+168039.0622646562 3.4876962 1103.316
+168040.0622647605 3.4879322 1103.3752
+168041.0622648648 3.4877748 1103.4147
+168042.0622649691 3.4880111 1103.3357
+168043.0622650734 3.4880111 1103.316
+168044.0622651777 3.4878535 1103.3752
+168045.062265282 3.4879322 1103.2369
+168046.0622653863 3.4880111 1103.3949
+168047.0622654906 3.4880505 1103.4147
+168048.062265595 3.4881291 1103.316
+168049.0622656993 3.4880111 1103.3752
+168050.0622658036 3.4880898 1103.2765
+168051.0622659079 3.4880898 1103.3555
+168052.0622660122 3.4881685 1103.2567
+168053.0622661165 3.4881685 1103.3555
+168054.0622662208 3.4881291 1103.4344
+168055.0622663251 3.4881685 1103.2567
+168056.0622664294 3.4880505 1103.3752
+168057.0622665337 3.4882078 1103.3555
+168058.062266638 3.4881685 1103.3357
+168059.0622667423 3.4880898 1103.3555
+168060.0622668467 3.4882472 1103.3752
+168061.062266951 3.4882078 1103.3555
+168062.0622670553 3.4882865 1103.3357
+168063.0622671596 3.4882865 1103.3752
+168064.0622672639 3.4882078 1103.3752
+168065.0622673682 3.4882472 1103.3752
+168066.0622674725 3.4883261 1103.3752
+168067.0622675768 3.4884048 1103.2765
+168068.0622676811 3.4883654 1103.3357
+168069.0622677854 3.4884048 1103.3555
+168070.0622678897 3.4884441 1103.316
+168071.062267994 3.4884834 1103.316
+168072.0622680984 3.4885228 1103.3752
+168073.0622682027 3.4884441 1103.3752
+168074.062268307 3.4884441 1103.4147
+168075.0622684113 3.4883654 1103.3555
+168076.0622685156 3.4884834 1103.316
+168077.0622686199 3.4884441 1103.3752
+168078.0622687242 3.4885621 1103.3555
+168079.0622688285 3.4885228 1103.3752
+168080.0622689328 3.4884834 1103.3357
+168081.0622690371 3.4884834 1103.2765
+168082.0622691414 3.4885228 1103.3555
+168083.0622692457 3.4884834 1103.316
+168084.06226935 3.4884834 1103.3752
+168085.0622694544 3.4884834 1103.3357
+168086.0622695587 3.4884834 1103.3949
+168087.062269663 3.4884834 1103.3357
+168088.0622697673 3.4884834 1103.4542
+168089.0622698716 3.4884048 1103.3357
+168090.0622699759 3.4885228 1103.4147
+168091.0622700802 3.4884834 1103.2765
+168092.0622701845 3.488641 1103.3555
+168093.0622702888 3.4884834 1103.3357
+168094.0622703931 3.4884441 1103.3357
+168095.0622704974 3.4886017 1103.4147
+168096.0622706017 3.488641 1103.3752
+168097.0622707061 3.4886017 1103.3555
+168098.0622708104 3.4886017 1103.2567
+168099.0622709147 3.4886017 1103.3949
+168100.062271019 3.4887197 1103.316
+168101.0622711233 3.488641 1103.3555
+168102.0622712276 3.4886804 1103.3357
+168103.0622713319 3.4885621 1103.3949
+168104.0622714362 3.4885621 1103.316
+168105.0622715405 3.488641 1103.3752
+168106.0622716448 3.488641 1103.316
+168107.0622717491 3.488759 1103.3752
+168108.0622718534 3.488641 1103.3949
+168109.0622719578 3.488641 1103.3752
+168110.0622720621 3.488759 1103.3949
+168111.0622721664 3.4887984 1103.3752
+168112.0622722707 3.488759 1103.316
+168113.062272375 3.4887197 1103.3357
+168114.0622724793 3.488759 1103.3357
+168115.0622725836 3.4888377 1103.3357
+168116.0622726879 3.4888377 1103.4147
+168117.0622727922 3.488759 1103.3555
+168118.0622728965 3.488759 1103.2963
+168119.0622730008 3.4887984 1103.2765
+168120.0622731051 3.4888377 1103.3949
+168121.0622732094 3.4888377 1103.2963
+168122.0622733138 3.4888771 1103.3555
+168123.0622734181 3.4887984 1103.3555
+168124.0622735224 3.4888377 1103.3949
+168125.0622736267 3.4887984 1103.3555
+168126.062273731 3.4889166 1103.3357
+168127.0622738353 3.4888771 1103.4147
+168128.0622739396 3.4889166 1103.3357
+168129.0622740439 3.4888771 1103.2963
+168130.0622741482 3.4888771 1103.316
+168131.0622742525 3.488956 1103.4147
+168132.0622743568 3.4888377 1103.2963
+168133.0622744611 3.4888377 1103.3752
+168134.0622745655 3.4887984 1103.2963
+168135.0622746698 3.4888377 1103.2567
+168136.0622747741 3.4888771 1103.3555
+168137.0622748784 3.4888377 1103.3357
+168138.0622749827 3.4889166 1103.3555
+168139.062275087 3.4889166 1103.3357
+168140.0622751913 3.4888771 1103.3752
+168141.0622752956 3.4889166 1103.4344
+168142.0622753999 3.4888771 1103.3555
+168143.0622755042 3.4889166 1103.2765
+168144.0622756085 3.4889166 1103.3555
+168145.0622757128 3.488956 1103.474
+168146.0622758172 3.4889953 1103.4147
+168147.0622759215 3.4890347 1103.3752
+168148.0622760258 3.4890347 1103.316
+168149.0622761301 3.4890347 1103.3752
+168150.0622762344 3.488956 1103.316
+168151.0622763387 3.489074 1103.316
+168152.062276443 3.4889953 1103.3752
+168153.0622765473 3.4890347 1103.3752
+168154.0622766516 3.489074 1103.3949
+168155.0622767559 3.4891527 1103.3752
+168156.0622768602 3.4891527 1103.3752
+168157.0622769645 3.4891133 1103.2765
+168158.0622770689 3.4891527 1103.3949
+168159.0622771732 3.489192 1103.3357
+168160.0622772775 3.4892709 1103.2765
+168161.0622773818 3.4892709 1103.3357
+168162.0622774861 3.4892316 1103.3949
+168163.0622775904 3.4893103 1103.4938
+168164.0622776947 3.4892709 1103.3752
+168165.062277799 3.4893103 1103.3357
+168166.0622779033 3.4892709 1103.2567
+168167.0622780076 3.489192 1103.3949
+168168.0622781119 3.4893103 1103.3949
+168169.0622782162 3.4892709 1103.316
+168170.0622783205 3.4892316 1103.3357
+168171.0622784249 3.4893496 1103.3752
+168172.0622785292 3.4892709 1103.3555
+168173.0622786335 3.4892316 1103.316
+168174.0622787378 3.4892709 1103.4344
+168175.0622788421 3.4893496 1103.3555
+168176.0622789464 3.4892709 1103.4542
+168177.0622790507 3.4893103 1103.316
+168178.062279155 3.4893103 1103.4344
+168179.0622792593 3.489192 1103.3357
+168180.0622793636 3.4893103 1103.3357
+168181.0622794679 3.4892709 1103.3555
+168182.0622795722 3.4893103 1103.2963
+168183.0622796766 3.4893496 1103.2963
+168184.0622797809 3.4892316 1103.4344
+168185.0622798852 3.4893889 1103.3357
+168186.0622799895 3.4893103 1103.3357
+168187.0622800938 3.4893889 1103.3752
+168188.0622801981 3.4894283 1103.3357
+168189.0622803024 3.4892709 1103.4147
+168190.0622804067 3.4893496 1103.316
+168191.062280511 3.4894676 1103.3752
+168192.0622806153 3.4893496 1103.3555
+168193.0622807196 3.4893103 1103.4147
+168194.0622808239 3.4894676 1103.3555
+168195.0622809283 3.4894676 1103.3949
+168196.0622810326 3.4894283 1103.4147
+168197.0622811369 3.4893889 1103.3949
+168198.0622812412 3.4894676 1103.2963
+168199.0622813455 3.489507 1103.4147
+168200.0622814498 3.489507 1103.3555
+168201.0622815541 3.4896252 1103.3949
+168202.0622816584 3.489507 1103.3949
+168203.0622817627 3.4895465 1103.316
+168204.062281867 3.4895859 1103.316
+168205.0622819713 3.4895859 1103.2765
+168206.0622820756 3.4896252 1103.316
+168207.0622821799 3.4895859 1103.474
+168208.0622822843 3.4896252 1103.3357
+168209.0622823886 3.4897039 1103.4147
+168210.0622824929 3.4896646 1103.2567
+168211.0622825972 3.4896646 1103.3752
+168212.0622827015 3.4897432 1103.3357
+168213.0622828058 3.4897826 1103.4344
+168214.0622829101 3.4898219 1103.3949
+168215.0622830144 3.4897826 1103.4344
+168216.0622831187 3.4898219 1103.3357
+168217.062283223 3.4897432 1103.3752
+168218.0622833273 3.4899402 1103.3357
+168219.0622834316 3.4900188 1103.3357
+168220.062283536 3.4899795 1103.3357
+168221.0622836403 3.4899402 1103.3555
+168222.0622837446 3.4899795 1103.316
+168223.0622838489 3.4901371 1103.3752
+168224.0622839532 3.4902158 1103.3752
+168225.0622840575 3.4901371 1103.3949
+168226.0622841618 3.4901371 1103.4344
+168227.0622842661 3.4903338 1103.3949
+168228.0622843704 3.4900975 1103.3357
+168229.0622844747 3.4900975 1103.3752
+168230.062284579 3.4901371 1103.3555
+168231.0622846833 3.4901371 1103.3752
+168232.0622847877 3.4900975 1103.3752
+168233.062284892 3.4900975 1103.3949
+168234.0622849963 3.4900582 1103.3949
+168235.0622851006 3.4900975 1103.3555
+168236.0622852049 3.4901371 1103.2963
+168237.0622853092 3.4901764 1103.3357
+168238.0622854135 3.4900975 1103.3949
+168239.0622855178 3.4902158 1103.3555
+168240.0622856221 3.4902551 1103.2963
+168241.0622857264 3.4901371 1103.316
+168242.0622858307 3.4902158 1103.4147
+168243.062285935 3.4901764 1103.2369
+168244.0622860393 3.4902158 1103.2172
+168245.0622861437 3.4902945 1103.3357
+168246.062286248 3.4902158 1103.4147
+168247.0622863523 3.4902551 1103.3949
+168248.0622864566 3.4902945 1103.3752
+168249.0622865609 3.4901764 1103.316
+168250.0622866652 3.4900582 1103.2963
+168251.0622867695 3.4902551 1103.316
+168252.0622868738 3.4902551 1103.3752
+168253.0622869781 3.4901764 1103.3949
+168254.0622870824 3.4903338 1103.3555
+168255.0622871867 3.4902158 1103.316
+168256.062287291 3.4901371 1103.3555
+168257.0622873954 3.4901764 1103.2963
+168258.0622874997 3.4901371 1103.2963
+168259.062287604 3.4901764 1103.316
+168260.0622877083 3.4902551 1103.2963
+168261.0622878126 3.4901371 1103.3357
+168262.0622879169 3.4900582 1103.3752
+168263.0622880212 3.4900975 1103.3357
+168264.0622881255 3.4902158 1103.3357
+168265.0622882298 3.4901371 1103.4147
+168266.0622883341 3.4901764 1103.316
+168267.0622884384 3.4900188 1103.3752
+168268.0622885427 3.4902945 1103.3555
+168269.0622886471 3.4901371 1103.3357
+168270.0622887514 3.4901371 1103.316
+168271.0622888557 3.4901371 1103.316
+168272.06228896 3.4901764 1103.3555
+168273.0622890643 3.4900975 1103.316
+168274.0622891686 3.4900975 1103.2765
+168275.0622892729 3.4901371 1103.316
+168276.0622893772 3.4900188 1103.3949
+168277.0622894815 3.4900582 1103.3752
+168278.0622895858 3.4901371 1103.3752
+168279.0622896901 3.4900582 1103.3555
+168280.0622897944 3.4901371 1103.4344
+168281.0622898987 3.4900188 1103.4147
+168282.0622900031 3.4901764 1103.3949
+168283.0622901074 3.4902158 1103.2963
+168284.0622902117 3.4900975 1103.3357
+168285.062290316 3.4902158 1103.3555
+168286.0622904203 3.4901764 1103.3949
+168287.0622905246 3.4902945 1103.2963
+168288.0622906289 3.4902945 1103.3949
+168289.0622907332 3.4902945 1103.3752
+168290.0622908375 3.4902551 1103.3752
+168291.0622909418 3.4903338 1103.3949
+168292.0622910461 3.4903338 1103.2963
+168293.0622911504 3.4902158 1103.3357
+168294.0622912548 3.4903338 1103.2765
+168295.0622913591 3.4902551 1103.316
+168296.0622914634 3.4904125 1103.3752
+168297.0622915677 3.4902551 1103.2963
+168298.062291672 3.4904125 1103.2369
+168299.0622917763 3.4903338 1103.3949
+168300.0622918806 3.4903731 1103.2963
+168301.0622919849 3.4903731 1103.3949
+168302.0622920892 3.4904914 1103.3949
+168303.0622921935 3.4904521 1103.316
+168304.0622922978 3.4903731 1103.3357
+168305.0622924021 3.4904521 1103.4344
+168306.0622925065 3.4904125 1103.4344
+168307.0622926108 3.4904521 1103.4147
+168308.0622927151 3.4904521 1103.3752
+168309.0622928194 3.4904521 1103.316
+168310.0622929237 3.4905307 1103.3357
+168311.062293028 3.4904125 1103.3555
+168312.0622931323 3.4902551 1103.3357
+168313.0622932366 3.4903731 1103.3752
+168314.0622933409 3.4904125 1103.3357
+168315.0622934452 3.4905307 1103.2567
+168316.0622935495 3.4904914 1103.2765
+168317.0622936538 3.4904125 1103.3357
+168318.0622937582 3.4906487 1103.2567
+168319.0622938625 3.4905307 1103.3555
+168320.0622939668 3.4904914 1103.3357
+168321.0622940711 3.4906487 1103.3357
+168322.0622941754 3.4906487 1103.3949
+168323.0622942797 3.4905701 1103.3357
+168324.062294384 3.4905701 1103.316
+168325.0622944883 3.4905701 1103.3555
+168326.0622945926 3.4906881 1103.3357
+168327.0622946969 3.4906881 1103.3357
+168328.0622948012 3.490767 1103.3555
+168329.0622949055 3.4906487 1103.3357
+168330.0622950098 3.4907274 1103.2567
+168331.0622951142 3.4906487 1103.316
+168332.0622952185 3.4906487 1103.3752
+168333.0622953228 3.490767 1103.3357
+168334.0622954271 3.4905701 1103.4147
+168335.0622955314 3.4907274 1103.4344
+168336.0622956357 3.4906881 1103.3555
+168337.06229574 3.4908063 1103.3555
+168338.0622958443 3.4908063 1103.3555
+168339.0622959486 3.490885 1103.3357
+168340.0622960529 3.4908457 1103.3555
+168341.0622961572 3.4909244 1103.3752
+168342.0622962615 3.4909637 1103.3357
+168343.0622963659 3.490885 1103.3752
+168344.0622964702 3.4908457 1103.3555
+168345.0622965745 3.4909637 1103.3752
+168346.0622966788 3.4909637 1103.2963
+168347.0622967831 3.4909637 1103.3357
+168348.0622968874 3.4910424 1103.316
+168349.0622969917 3.4910424 1103.3555
+168350.062297096 3.4910424 1103.3357
+168351.0622972003 3.491082 1103.316
+168352.0622973046 3.491003 1103.316
+168353.0622974089 3.4910424 1103.2963
+168354.0622975132 3.4911213 1103.4344
+168355.0622976176 3.4911606 1103.316
+168356.0622977219 3.4911213 1103.2765
+168357.0622978262 3.4912 1103.3555
+168358.0622979305 3.4912 1103.3949
+168359.0622980348 3.4911213 1103.4542
+168360.0622981391 3.4911213 1103.3752
+168361.0622982434 3.4911213 1103.2963
+168362.0622983477 3.491082 1103.3555
+168363.062298452 3.4912 1103.316
+168364.0622985563 3.4912393 1103.3357
+168365.0622986606 3.4912393 1103.3555
+168366.0622987649 3.491082 1103.4147
+168367.0622988692 3.4911606 1103.3357
+168368.0622989736 3.4911606 1103.2963
+168369.0622990779 3.4912393 1103.3555
+168370.0622991822 3.4912 1103.3357
+168371.0622992865 3.4912393 1103.316
+168372.0622993908 3.491082 1103.3752
+168373.0622994951 3.4911213 1103.3752
+168374.0622995994 3.491082 1103.2963
+168375.0622997037 3.4911213 1103.3357
+168376.062299808 3.491082 1103.3555
+168377.0622999123 3.491082 1103.3357
+168378.0623000166 3.491003 1103.3752
+168379.0623001209 3.491003 1103.2369
+168380.0623002253 3.491003 1103.3555
+168381.0623003296 3.491003 1103.3752
+168382.0623004339 3.491003 1103.3357
+168383.0623005382 3.490885 1103.3357
+168384.0623006425 3.4909244 1103.2963
+168385.0623007468 3.4909637 1103.3357
+168386.0623008511 3.4908457 1103.316
+168387.0623009554 3.4909244 1103.3949
+168388.0623010597 3.4909637 1103.3555
+168389.062301164 3.4909244 1103.2765
+168390.0623012683 3.4909244 1103.2172
+168391.0623013726 3.490885 1103.3949
+168392.062301477 3.4909244 1103.3752
+168393.0623015813 3.490885 1103.3357
+168394.0623016856 3.4908457 1103.2765
+168395.0623017899 3.4909244 1103.316
+168396.0623018942 3.490885 1103.3555
+168397.0623019985 3.491003 1103.3555
+168398.0623021028 3.490885 1103.3555
+168399.0623022071 3.490885 1103.3752
+168400.0623023114 3.490767 1103.2963
+168401.0623024157 3.490767 1103.3949
+168402.06230252 3.490885 1103.3949
+168403.0623026243 3.4908457 1103.3752
+168404.0623027286 3.4908063 1103.3949
+168405.062302833 3.4908063 1103.2963
+168406.0623029373 3.4908457 1103.2963
+168407.0623030416 3.4908457 1103.316
+168408.0623031459 3.490885 1103.4147
+168409.0623032502 3.4908457 1103.2963
+168410.0623033545 3.4909637 1103.3752
+168411.0623034588 3.490885 1103.2765
+168412.0623035631 3.490885 1103.316
+168413.0623036674 3.4908457 1103.3949
+168414.0623037717 3.4908457 1103.316
+168415.062303876 3.490885 1103.2963
+168416.0623039803 3.4909637 1103.1975
+168417.0623040847 3.4909244 1103.4344
+168418.062304189 3.4908457 1103.1975
+168419.0623042933 3.4908457 1103.3752
+168420.0623043976 3.4909244 1103.316
+168421.0623045019 3.4909637 1103.4344
+168422.0623046062 3.491003 1103.2765
+168423.0623047105 3.490885 1103.3357
+168424.0623048148 3.4909244 1103.2567
+168425.0623049191 3.4909244 1103.2765
+168426.0623050234 3.4909244 1103.316
+168427.0623051277 3.4909637 1103.3949
+168428.062305232 3.4909637 1103.3949
+168429.0623053364 3.491003 1103.2765
+168430.0623054407 3.491003 1103.316
+168431.062305545 3.491082 1103.316
+168432.0623056493 3.491003 1103.3357
+168433.0623057536 3.4909637 1103.3357
+168434.0623058579 3.4911213 1103.2765
+168435.0623059622 3.491082 1103.3752
+168436.0623060665 3.491003 1103.2567
+168437.0623061708 3.491003 1103.2963
+168438.0623062751 3.490885 1103.316
+168439.0623063794 3.4908457 1103.316
+168440.0623064837 3.4910424 1103.3555
+168441.0623065881 3.4908063 1103.3949
+168442.0623066924 3.4909244 1103.316
+168443.0623067967 3.490885 1103.3555
+168444.062306901 3.4908457 1103.4147
+168445.0623070053 3.490767 1103.3555
+168446.0623071096 3.4908063 1103.3357
+168447.0623072139 3.4907274 1103.3555
+168448.0623073182 3.4906881 1103.3357
+168449.0623074225 3.4908063 1103.3555
+168450.0623075268 3.4907274 1103.3555
+168451.0623076311 3.4906881 1103.2963
+168452.0623077354 3.490767 1103.2963
+168453.0623078397 3.490767 1103.3357
+168454.0623079441 3.4908457 1103.3555
+168455.0623080484 3.4906881 1103.3949
+168456.0623081527 3.4908063 1103.4147
+168457.062308257 3.4907274 1103.3555
+168458.0623083613 3.4908457 1103.2963
+168459.0623084656 3.4906881 1103.3949
+168460.0623085699 3.4906881 1103.316
+168461.0623086742 3.4906881 1103.316
+168462.0623087785 3.490767 1103.316
+168463.0623088828 3.4908063 1103.1975
+168464.0623089871 3.490767 1103.2765
+168465.0623090914 3.490767 1103.3752
+168466.0623091958 3.4909637 1103.3555
+168467.0623093001 3.4908457 1103.3555
+168468.0623094044 3.4908063 1103.316
+168469.0623095087 3.4908457 1103.4344
+168470.062309613 3.4908063 1103.3752
+168471.0623097173 3.4907274 1103.3357
+168472.0623098216 3.4908063 1103.3357
+168473.0623099259 3.490767 1103.316
+168474.0623100302 3.4908457 1103.316
+168475.0623101345 3.4908063 1103.3555
+168476.0623102388 3.4908457 1103.4147
+168477.0623103431 3.490767 1103.3949
+168478.0623104475 3.4908063 1103.3752
+168479.0623105518 3.4908063 1103.2567
+168480.0623106561 3.490767 1103.4147
+168481.0623107604 3.4908063 1103.3949
+168482.0623108647 3.4906881 1103.2963
+168483.062310969 3.490767 1103.2963
+168484.0623110733 3.4907274 1103.2963
+168485.0623111776 3.490767 1103.2369
+168486.0623112819 3.4907274 1103.3357
+168487.0623113862 3.4906881 1103.316
+168488.0623114905 3.4907274 1103.3555
+168489.0623115948 3.490767 1103.316
+168490.0623116991 3.4907274 1103.4147
+168491.0623118035 3.4908063 1103.3949
+168492.0623119078 3.4908063 1103.3357
+168493.0623120121 3.4908457 1103.316
+168494.0623121164 3.4908063 1103.3357
+168495.0623122207 3.490767 1103.3555
+168496.062312325 3.4907274 1103.316
+168497.0623124293 3.4908063 1103.3357
+168498.0623125336 3.4906487 1103.2765
+168499.0623126379 3.4907274 1103.3555
+168500.0623127422 3.4908457 1103.3357
+168501.0623128465 3.4907274 1103.3752
+168502.0623129508 3.4908063 1103.2369
+168503.0623130552 3.490767 1103.3752
+168504.0623131595 3.4908457 1103.4147
+168505.0623132638 3.4908457 1103.3949
+168506.0623133681 3.4907274 1103.3752
+168507.0623134724 3.490767 1103.2963
+168508.0623135767 3.490767 1103.2963
+168509.062313681 3.490885 1103.3357
+168510.0623137853 3.4909637 1103.4344
+168511.0623138896 3.490885 1103.4147
+168512.0623139939 3.490885 1103.3752
+168513.0623140982 3.4908457 1103.3357
+168514.0623142025 3.4908457 1103.3752
+168515.0623143069 3.4909637 1103.3752
+168516.0623144112 3.4909637 1103.3752
+168517.0623145155 3.490885 1103.3752
+168518.0623146198 3.4908063 1103.3357
+168519.0623147241 3.4909244 1103.3949
+168520.0623148284 3.490885 1103.2963
+168521.0623149327 3.4909244 1103.3357
+168522.062315037 3.490885 1103.1975
+168523.0623151413 3.490885 1103.2963
+168524.0623152456 3.4908457 1103.4344
+168525.0623153499 3.4908063 1103.3555
+168526.0623154542 3.4908063 1103.2765
+168527.0623155585 3.491003 1103.4147
+168528.0623156629 3.4908457 1103.3555
+168529.0623157672 3.490885 1103.316
+168530.0623158715 3.4909637 1103.3357
+168531.0623159758 3.490885 1103.3357
+168532.0623160801 3.4909637 1103.3752
+168533.0623161844 3.490885 1103.3752
+168534.0623162887 3.490885 1103.2963
+168535.062316393 3.4909637 1103.2369
+168536.0623164973 3.4909637 1103.3949
+168537.0623166016 3.4910424 1103.2963
+168538.0623167059 3.491003 1103.3555
+168539.0623168102 3.491003 1103.3949
+168540.0623169146 3.4909244 1103.3752
+168541.0623170189 3.4910424 1103.3949
+168542.0623171232 3.491003 1103.4147
+168543.0623172275 3.4909637 1103.3555
+168544.0623173318 3.4911213 1103.2765
+168545.0623174361 3.491082 1103.3555
+168546.0623175404 3.4911606 1103.2765
+168547.0623176447 3.4912 1103.316
+168548.062317749 3.4911606 1103.3949
+168549.0623178533 3.491082 1103.3357
+168550.0623179576 3.4911606 1103.2963
+168551.0623180619 3.491082 1103.2765
+168552.0623181663 3.4911606 1103.3949
+168553.0623182706 3.4912 1103.3357
+168554.0623183749 3.4911606 1103.3752
+168555.0623184792 3.4912 1103.3555
+168556.0623185835 3.4911213 1103.3949
+168557.0623186878 3.4912 1103.3752
+168558.0623187921 3.4911213 1103.4344
+168559.0623188964 3.4911213 1103.3555
+168560.0623190007 3.4912 1103.3949
+168561.062319105 3.4912786 1103.2963
+168562.0623192093 3.4912 1103.3752
+168563.0623193136 3.4912 1103.3555
+168564.062319418 3.4911213 1103.3949
+168565.0623195223 3.4912393 1103.2765
+168566.0623196266 3.491318 1103.3555
+168567.0623197309 3.4911606 1103.3555
+168568.0623198352 3.491318 1103.3555
+168569.0623199395 3.4912393 1103.316
+168570.0623200438 3.4912393 1103.316
+168571.0623201481 3.4913573 1103.2765
+168572.0623202524 3.4912393 1103.2963
+168573.0623203567 3.491318 1103.3949
+168574.062320461 3.491318 1103.3949
+168575.0623205653 3.4913969 1103.3357
+168576.0623206696 3.491318 1103.3752
+168577.062320774 3.4914756 1103.3949
+168578.0623208783 3.4913969 1103.3949
+168579.0623209826 3.4914362 1103.3752
+168580.0623210869 3.4913969 1103.3555
+168581.0623211912 3.4913969 1103.316
+168582.0623212955 3.4915936 1103.2963
+168583.0623213998 3.4915149 1103.3752
+168584.0623215041 3.4914756 1103.3752
+168585.0623216084 3.4915149 1103.3357
+168586.0623217127 3.4914756 1103.316
+168587.062321817 3.4915149 1103.3752
+168588.0623219213 3.4915543 1103.2369
+168589.0623220257 3.4915936 1103.2963
+168590.06232213 3.4914756 1103.4344
+168591.0623222343 3.4915543 1103.4344
+168592.0623223386 3.4915543 1103.2765
+168593.0623224429 3.4915936 1103.3357
+168594.0623225472 3.4917119 1103.3752
+168595.0623226515 3.4917119 1103.2963
+168596.0623227558 3.4917119 1103.4344
+168597.0623228601 3.4917119 1103.3752
+168598.0623229644 3.4918299 1103.3752
+168599.0623230687 3.4917905 1103.2963
+168600.062323173 3.4917905 1103.3949
+168601.0623232774 3.4917512 1103.2369
+168602.0623233817 3.4917905 1103.2963
+168603.062323486 3.4919479 1103.2765
+168604.0623235903 3.4919086 1103.2172
+168605.0623236946 3.4918299 1103.4147
+168606.0623237989 3.4918692 1103.2963
+168607.0623239032 3.4917512 1103.316
+168608.0623240075 3.4918299 1103.316
+168609.0623241118 3.4917905 1103.316
+168610.0623242161 3.4918299 1103.316
+168611.0623243204 3.4917905 1103.2963
+168612.0623244247 3.4917512 1103.3949
+168613.062324529 3.4917905 1103.2369
+168614.0623246334 3.4918692 1103.2765
+168615.0623247377 3.4917905 1103.3555
+168616.062324842 3.4917512 1103.3555
+168617.0623249463 3.4917119 1103.316
+168618.0623250506 3.4917905 1103.4147
+168619.0623251549 3.4917905 1103.3949
+168620.0623252592 3.4917905 1103.3752
+168621.0623253635 3.4917512 1103.2963
+168622.0623254678 3.4917512 1103.3357
+168623.0623255721 3.4917905 1103.3555
+168624.0623256764 3.4917905 1103.3752
+168625.0623257807 3.4918692 1103.3555
+168626.0623258851 3.4918299 1103.2963
+168627.0623259894 3.4917512 1103.3752
+168628.0623260937 3.4917905 1103.3555
+168629.062326198 3.4918299 1103.2369
+168630.0623263023 3.4918299 1103.3357
+168631.0623264066 3.4917512 1103.4344
+168632.0623265109 3.4917119 1103.3357
+168633.0623266152 3.4917512 1103.3949
+168634.0623267195 3.4918692 1103.316
+168635.0623268238 3.4918299 1103.3752
+168636.0623269281 3.4918299 1103.3357
+168637.0623270324 3.4918692 1103.3949
+168638.0623271368 3.4917905 1103.2765
+168639.0623272411 3.4918692 1103.3949
+168640.0623273454 3.4918692 1103.3357
+168641.0623274497 3.4917905 1103.3357
+168642.062327554 3.4918692 1103.316
+168643.0623276583 3.4917512 1103.3752
+168644.0623277626 3.4918299 1103.3555
+168645.0623278669 3.4917905 1103.4344
+168646.0623279712 3.4919086 1103.2963
+168647.0623280755 3.4919086 1103.3555
+168648.0623281798 3.4918299 1103.2963
+168649.0623282841 3.4918692 1103.2963
+168650.0623283884 3.4917119 1103.2765
+168651.0623284928 3.4918692 1103.3752
+168652.0623285971 3.4917905 1103.3555
+168653.0623287014 3.4919875 1103.4147
+168654.0623288057 3.4918692 1103.3949
+168655.06232891 3.4918692 1103.3949
+168656.0623290143 3.4918692 1103.316
+168657.0623291186 3.4918692 1103.3357
+168658.0623292229 3.4918692 1103.3949
+168659.0623293272 3.4918692 1103.2765
+168660.0623294315 3.4919086 1103.3357
+168661.0623295358 3.4919875 1103.316
+168662.0623296401 3.4918692 1103.3555
+168663.0623297445 3.4919875 1103.3555
+168664.0623298488 3.4919086 1103.316
+168665.0623299531 3.4918692 1103.3949
+168666.0623300574 3.4918692 1103.316
+168667.0623301617 3.4919086 1103.316
+168668.062330266 3.4918692 1103.3555
+168669.0623303703 3.4918692 1103.3555
+168670.0623304746 3.4919086 1103.4344
+168671.0623305789 3.4919479 1103.2963
+168672.0623306832 3.4919479 1103.3555
+168673.0623307875 3.4918692 1103.3357
+168674.0623308918 3.4918692 1103.3555
+168675.0623309962 3.4919479 1103.3949
+168676.0623311005 3.4919086 1103.3555
+168677.0623312048 3.4919086 1103.4147
+168678.0623313091 3.4919875 1103.3357
+168679.0623314134 3.4919086 1103.316
+168680.0623315177 3.4919086 1103.316
+168681.062331622 3.4919086 1103.3752
+168682.0623317263 3.4919086 1103.3555
+168683.0623318306 3.4919086 1103.3555
+168684.0623319349 3.4919086 1103.3949
+168685.0623320392 3.4918692 1103.2765
+168686.0623321435 3.4919086 1103.3357
+168687.0623322479 3.4919479 1103.3949
+168688.0623323522 3.4920268 1103.3555
+168689.0623324565 3.4918692 1103.316
+168690.0623325608 3.4919875 1103.2567
+168691.0623326651 3.4919875 1103.2963
+168692.0623327694 3.4920268 1103.3752
+168693.0623328737 3.4921055 1103.3555
+168694.062332978 3.4920268 1103.2369
+168695.0623330823 3.4920661 1103.316
+168696.0623331866 3.4920268 1103.3357
+168697.0623332909 3.4920661 1103.3555
+168698.0623333952 3.4921055 1103.316
+168699.0623334995 3.4920268 1103.3752
+168700.0623336039 3.4921055 1103.3357
+168701.0623337082 3.4920268 1103.3555
+168702.0623338125 3.4920268 1103.474
+168703.0623339168 3.4922628 1103.3752
+168704.0623340211 3.4921055 1103.3555
+168705.0623341254 3.4921448 1103.3357
+168706.0623342297 3.4921842 1103.3555
+168707.062334334 3.4921448 1103.3949
+168708.0623344383 3.4921055 1103.2172
+168709.0623345426 3.4920661 1103.316
+168710.0623346469 3.4921055 1103.3357
+168711.0623347512 3.4921842 1103.316
+168712.0623348556 3.4920661 1103.3949
+168713.0623349599 3.4921448 1103.316
+168714.0623350642 3.4920661 1103.3357
+168715.0623351685 3.4920661 1103.2963
+168716.0623352728 3.4922235 1103.3357
+168717.0623353771 3.4921055 1103.316
+168718.0623354814 3.4922235 1103.3357
+168719.0623355857 3.4921448 1103.4344
+168720.06233569 3.4921448 1103.3357
+168721.0623357943 3.4920268 1103.2963
+168722.0623358986 3.4921055 1103.316
+168723.0623360029 3.4920661 1103.3949
+168724.0623361073 3.4921055 1103.316
+168725.0623362116 3.4920661 1103.3555
+168726.0623363159 3.4921842 1103.3949
+168727.0623364202 3.4921055 1103.3752
+168728.0623365245 3.4921448 1103.3357
+168729.0623366288 3.4922628 1103.3752
+168730.0623367331 3.4921842 1103.316
+168731.0623368374 3.4922235 1103.2567
+168732.0623369417 3.4922628 1103.3752
+168733.062337046 3.4922628 1103.316
+168734.0623371503 3.4922628 1103.4147
+168735.0623372546 3.4923811 1103.3949
+168736.0623373589 3.4922628 1103.3752
+168737.0623374633 3.4923811 1103.3357
+168738.0623375676 3.4922628 1103.3752
+168739.0623376719 3.4923024 1103.3752
+168740.0623377762 3.4923418 1103.2765
+168741.0623378805 3.4923418 1103.3752
+168742.0623379848 3.4923024 1103.316
+168743.0623380891 3.4924204 1103.3752
+168744.0623381934 3.4921842 1103.2765
+168745.0623382977 3.4923418 1103.3752
+168746.062338402 3.4922628 1103.3357
+168747.0623385063 3.4923418 1103.316
+168748.0623386106 3.4922235 1103.316
+168749.062338715 3.4922628 1103.316
+168750.0623388193 3.4921842 1103.3949
+168751.0623389236 3.4922628 1103.3752
+168752.0623390279 3.4922628 1103.4147
+168753.0623391322 3.4921842 1103.2963
+168754.0623392365 3.4922235 1103.3555
+168755.0623393408 3.4921842 1103.3555
+168756.0623394451 3.4921842 1103.4344
+168757.0623395494 3.4922628 1103.3949
+168758.0623396537 3.4923024 1103.2963
+168759.062339758 3.4923024 1103.2963
+168760.0623398623 3.4921842 1103.3357
+168761.0623399667 3.4922628 1103.3752
+168762.062340071 3.4921842 1103.3357
+168763.0623401753 3.4922235 1103.3949
+168764.0623402796 3.4921842 1103.3752
+168765.0623403839 3.4921842 1103.316
+168766.0623404882 3.4922235 1103.3949
+168767.0623405925 3.4920661 1103.3555
+168768.0623406968 3.4922235 1103.3555
+168769.0623408011 3.4922235 1103.3357
+168770.0623409054 3.4921448 1103.2963
+168771.0623410097 3.4922235 1103.2765
+168772.062341114 3.4921842 1103.316
+168773.0623412183 3.4921842 1103.3949
+168774.0623413227 3.4923811 1103.4147
+168775.062341427 3.4922235 1103.4344
+168776.0623415313 3.4922628 1103.316
+168777.0623416356 3.4923811 1103.3357
+168778.0623417399 3.4923418 1103.3357
+168779.0623418442 3.4923024 1103.3555
+168780.0623419485 3.4923418 1103.4147
+168781.0623420528 3.4923418 1103.3752
+168782.0623421571 3.4923418 1103.3357
+168783.0623422614 3.4924204 1103.316
+168784.0623423657 3.4923418 1103.2567
+168785.06234247 3.4923024 1103.2963
+168786.0623425744 3.4924991 1103.2963
+168787.0623426787 3.4923811 1103.3949
+168788.062342783 3.4923418 1103.316
+168789.0623428873 3.4924204 1103.316
+168790.0623429916 3.4924598 1103.4147
+168791.0623430959 3.4924991 1103.2369
+168792.0623432002 3.4925385 1103.2369
+168793.0623433045 3.4926567 1103.4147
+168794.0623434088 3.4926567 1103.3752
+168795.0623435131 3.4925778 1103.316
+168796.0623436174 3.4925778 1103.2567
+168797.0623437217 3.4926174 1103.3357
+168798.0623438261 3.4925778 1103.3752
+168799.0623439304 3.492696 1103.3357
+168800.0623440347 3.492696 1103.3752
+168801.062344139 3.4926567 1103.3357
+168802.0623442433 3.4926174 1103.3752
+168803.0623443476 3.4927354 1103.316
+168804.0623444519 3.492696 1103.3357
+168805.0623445562 3.4926567 1103.3752
+168806.0623446605 3.4927354 1103.2765
+168807.0623447648 3.492696 1103.3357
+168808.0623448691 3.492696 1103.2765
+168809.0623449734 3.4927354 1103.2963
+168810.0623450777 3.4927354 1103.3752
+168811.0623451821 3.4928141 1103.3949
+168812.0623452864 3.4927747 1103.4344
+168813.0623453907 3.4927354 1103.3357
+168814.062345495 3.4927747 1103.3949
+168815.0623455993 3.4927354 1103.2765
+168816.0623457036 3.492696 1103.2963
+168817.0623458079 3.492696 1103.2963
+168818.0623459122 3.4927354 1103.3357
+168819.0623460165 3.4928141 1103.3752
+168820.0623461208 3.4926174 1103.3357
+168821.0623462251 3.4928141 1103.4344
+168822.0623463294 3.4927354 1103.4147
+168823.0623464338 3.4927747 1103.3949
+168824.0623465381 3.4927354 1103.4147
+168825.0623466424 3.4927747 1103.4344
+168826.0623467467 3.4928534 1103.3752
+168827.062346851 3.4928141 1103.3555
+168828.0623469553 3.4927747 1103.3555
+168829.0623470596 3.4927747 1103.316
+168830.0623471639 3.4928534 1103.3949
+168831.0623472682 3.4927747 1103.3555
+168832.0623473725 3.4928927 1103.3555
+168833.0623474768 3.4928141 1103.2963
+168834.0623475811 3.4928927 1103.3555
+168835.0623476855 3.4928534 1103.3949
+168836.0623477898 3.4928534 1103.2369
+168837.0623478941 3.4927354 1103.3555
+168838.0623479984 3.4928141 1103.2963
+168839.0623481027 3.4929717 1103.2963
+168840.062348207 3.493011 1103.3555
+168841.0623483113 3.4929323 1103.2963
+168842.0623484156 3.4929323 1103.3949
+168843.0623485199 3.4928927 1103.3357
+168844.0623486242 3.4929717 1103.2963
+168845.0623487285 3.4929717 1103.316
+168846.0623488328 3.493011 1103.4147
+168847.0623489372 3.4929323 1103.4542
+168848.0623490415 3.493011 1103.3555
+168849.0623491458 3.4928927 1103.2765
+168850.0623492501 3.4929717 1103.3357
+168851.0623493544 3.493011 1103.4542
+168852.0623494587 3.4929717 1103.474
+168853.062349563 3.4930897 1103.4147
+168854.0623496673 3.493011 1103.4147
+168855.0623497716 3.4929717 1103.3752
+168856.0623498759 3.4930897 1103.3357
+168857.0623499802 3.493129 1103.3555
+168858.0623500845 3.4930503 1103.3357
+168859.0623501888 3.4930503 1103.316
+168860.0623502932 3.493011 1103.316
+168861.0623503975 3.4929717 1103.2963
+168862.0623505018 3.4930897 1103.316
+168863.0623506061 3.493011 1103.3357
+168864.0623507104 3.4930503 1103.3357
+168865.0623508147 3.4929717 1103.3555
+168866.062350919 3.4930897 1103.3357
+168867.0623510233 3.4930897 1103.3949
+168868.0623511276 3.493129 1103.2765
+168869.0623512319 3.4932077 1103.316
+168870.0623513362 3.4930897 1103.3752
+168871.0623514405 3.493129 1103.316
+168872.0623515449 3.4930897 1103.2963
+168873.0623516492 3.4931684 1103.2765
+168874.0623517535 3.4932077 1103.3357
+168875.0623518578 3.4932077 1103.316
+168876.0623519621 3.4932077 1103.316
+168877.0623520664 3.493129 1103.3555
+168878.0623521707 3.4932473 1103.3555
+168879.062352275 3.4930897 1103.3555
+168880.0623523793 3.4931684 1103.316
+168881.0623524836 3.4932473 1103.4542
+168882.0623525879 3.493129 1103.4344
+168883.0623526922 3.4932866 1103.3555
+168884.0623527966 3.4932473 1103.3752
+168885.0623529009 3.4932077 1103.3357
+168886.0623530052 3.4932077 1103.3357
+168887.0623531095 3.4933259 1103.2765
+168888.0623532138 3.4932077 1103.2963
+168889.0623533181 3.4933653 1103.4344
+168890.0623534224 3.4932473 1103.3357
+168891.0623535267 3.4932473 1103.3357
+168892.062353631 3.4932473 1103.2765
+168893.0623537353 3.4932866 1103.3555
+168894.0623538396 3.4932866 1103.2963
+168895.0623539439 3.4932473 1103.3752
+168896.0623540482 3.4933653 1103.4542
+168897.0623541526 3.4932473 1103.2765
+168898.0623542569 3.4932866 1103.3752
+168899.0623543612 3.4933259 1103.3555
+168900.0623544655 3.4932866 1103.2369
+168901.0623545698 3.4932866 1103.3357
+168902.0623546741 3.4933653 1103.3357
+168903.0623547784 3.4934046 1103.3752
+168904.0623548827 3.4932866 1103.2963
+168905.062354987 3.4932077 1103.4147
+168906.0623550913 3.4932077 1103.4147
+168907.0623551956 3.4933259 1103.3752
+168908.0623552999 3.4932077 1103.2963
+168909.0623554043 3.4931684 1103.4147
+168910.0623555086 3.4932077 1103.2963
+168911.0623556129 3.4932473 1103.3752
+168912.0623557172 3.4932866 1103.3357
+168913.0623558215 3.4932473 1103.4147
+168914.0623559258 3.4932473 1103.2963
+168915.0623560301 3.4932473 1103.316
+168916.0623561344 3.4932077 1103.3752
+168917.0623562387 3.4931684 1103.3752
+168918.062356343 3.4931684 1103.2765
+168919.0623564473 3.4932473 1103.3949
+168920.0623565516 3.4932077 1103.4542
+168921.062356656 3.4930897 1103.3752
+168922.0623567603 3.4932866 1103.3752
+168923.0623568646 3.4932866 1103.3357
+168924.0623569689 3.4932866 1103.474
+168925.0623570732 3.4934046 1103.3555
+168926.0623571775 3.4933259 1103.3357
+168927.0623572818 3.4933259 1103.4147
+168928.0623573861 3.493444 1103.316
+168929.0623574904 3.4935226 1103.3555
+168930.0623575947 3.4933653 1103.2963
+168931.062357699 3.4935226 1103.3752
+168932.0623578033 3.4932866 1103.3555
+168933.0623579076 3.4934046 1103.3752
+168934.062358012 3.4934833 1103.2567
+168935.0623581163 3.4934046 1103.316
+168936.0623582206 3.4934046 1103.3752
+168937.0623583249 3.4933653 1103.316
+168938.0623584292 3.4934833 1103.3357
+168939.0623585335 3.4935226 1103.316
+168940.0623586378 3.4935226 1103.3949
+168941.0623587421 3.4935226 1103.316
+168942.0623588464 3.4935622 1103.2765
+168943.0623589507 3.4935622 1103.2963
+168944.062359055 3.4936016 1103.3555
+168945.0623591593 3.4936016 1103.3555
+168946.0623592637 3.493444 1103.2963
+168947.062359368 3.493444 1103.3949
+168948.0623594723 3.4935226 1103.4344
+168949.0623595766 3.4934833 1103.3555
+168950.0623596809 3.4935226 1103.4147
+168951.0623597852 3.4935226 1103.3949
+168952.0623598895 3.4935226 1103.3357
+168953.0623599938 3.4935622 1103.3555
+168954.0623600981 3.493444 1103.3555
+168955.0623602024 3.4935226 1103.316
+168956.0623603067 3.4934833 1103.3357
+168957.062360411 3.4935226 1103.3752
+168958.0623605154 3.4935226 1103.4147
+168959.0623606197 3.4935622 1103.3555
+168960.062360724 3.4935226 1103.2765
+168961.0623608283 3.4935226 1103.3555
+168962.0623609326 3.493444 1103.316
+168963.0623610369 3.4935226 1103.3357
+168964.0623611412 3.4935622 1103.3357
+168965.0623612455 3.4935622 1103.4344
+168966.0623613498 3.4936409 1103.3752
+168967.0623614541 3.4935622 1103.3357
+168968.0623615584 3.4935622 1103.2963
+168969.0623616627 3.4936802 1103.3752
+168970.0623617671 3.4936802 1103.2567
+168971.0623618714 3.4936016 1103.3949
+168972.0623619757 3.4936016 1103.2963
+168973.06236208 3.4936409 1103.3752
+168974.0623621843 3.4937196 1103.316
+168975.0623622886 3.4937196 1103.3752
+168976.0623623929 3.4937196 1103.316
+168977.0623624972 3.4937196 1103.3357
+168978.0623626015 3.4937196 1103.2963
+168979.0623627058 3.4937983 1103.2963
+168980.0623628101 3.4937196 1103.4344
+168981.0623629144 3.4937196 1103.3555
+168982.0623630187 3.4936802 1103.3752
+168983.0623631231 3.4937589 1103.2963
+168984.0623632274 3.4937589 1103.3752
+168985.0623633317 3.4937589 1103.316
+168986.062363436 3.4937589 1103.3357
+168987.0623635403 3.4937983 1103.2765
+168988.0623636446 3.4937589 1103.3752
+168989.0623637489 3.4937589 1103.316
+168990.0623638532 3.4938772 1103.3357
+168991.0623639575 3.4937983 1103.3752
+168992.0623640618 3.4937983 1103.3949
+168993.0623641661 3.4938378 1103.4344
+168994.0623642704 3.4938378 1103.3752
+168995.0623643748 3.4937983 1103.3752
+168996.0623644791 3.4937589 1103.2567
+168997.0623645834 3.4937196 1103.3752
+168998.0623646877 3.4937983 1103.2765
+168999.062364792 3.4938378 1103.3949
+169000.0623648963 3.4938378 1103.2567
+169001.0623650006 3.4939165 1103.3949
+169002.0623651049 3.4938772 1103.3555
+169003.0623652092 3.4938772 1103.3555
+169004.0623653135 3.4938772 1103.2765
+169005.0623654178 3.4939165 1103.2963
+169006.0623655221 3.4939559 1103.3357
+169007.0623656265 3.4939952 1103.3949
+169008.0623657308 3.4939165 1103.316
+169009.0623658351 3.4939559 1103.316
+169010.0623659394 3.4940345 1103.3357
+169011.0623660437 3.4939165 1103.2963
+169012.062366148 3.4939559 1103.3555
+169013.0623662523 3.4939952 1103.3752
+169014.0623663566 3.4939559 1103.3752
+169015.0623664609 3.4940345 1103.3555
+169016.0623665652 3.4940739 1103.3357
+169017.0623666695 3.4940739 1103.316
+169018.0623667738 3.4941528 1103.3752
+169019.0623668781 3.4940345 1103.3555
+169020.0623669825 3.4940345 1103.3357
+169021.0623670868 3.4942315 1103.2963
+169022.0623671911 3.4941132 1103.3357
+169023.0623672954 3.4941132 1103.4147
+169024.0623673997 3.4940739 1103.2963
+169025.062367504 3.4941921 1103.3357
+169026.0623676083 3.4941132 1103.3752
+169027.0623677126 3.4941921 1103.2963
+169028.0623678169 3.4941528 1103.316
+169029.0623679212 3.4941132 1103.2765
+169030.0623680255 3.4941921 1103.3752
+169031.0623681298 3.4941528 1103.3752
+169032.0623682342 3.4942315 1103.3357
+169033.0623683385 3.4942315 1103.4147
+169034.0623684428 3.4943101 1103.2765
+169035.0623685471 3.4941921 1103.3752
+169036.0623686514 3.4941921 1103.2765
+169037.0623687557 3.4942315 1103.3357
+169038.06236886 3.4941528 1103.3357
+169039.0623689643 3.4942708 1103.2963
+169040.0623690686 3.4941132 1103.3357
+169041.0623691729 3.4943495 1103.2567
+169042.0623692772 3.4942315 1103.3555
+169043.0623693815 3.4943101 1103.3949
+169044.0623694859 3.4943101 1103.3357
+169045.0623695902 3.4943495 1103.3949
+169046.0623696945 3.4943101 1103.316
+169047.0623697988 3.4943101 1103.3949
+169048.0623699031 3.4943101 1103.3949
+169049.0623700074 3.4943888 1103.3949
+169050.0623701117 3.4943495 1103.316
+169051.062370216 3.4943888 1103.3357
+169052.0623703203 3.4943888 1103.316
+169053.0623704246 3.4943888 1103.4147
+169054.0623705289 3.4943888 1103.316
+169055.0623706332 3.4944282 1103.3555
+169056.0623707375 3.4944282 1103.3949
+169057.0623708419 3.4943495 1103.3555
+169058.0623709462 3.4943495 1103.2567
+169059.0623710505 3.4943888 1103.316
+169060.0623711548 3.4944282 1103.4344
+169061.0623712591 3.4944677 1103.3752
+169062.0623713634 3.4943495 1103.2765
+169063.0623714677 3.4944677 1103.316
+169064.062371572 3.4944677 1103.4147
+169065.0623716763 3.4944282 1103.3555
+169066.0623717806 3.4944282 1103.2963
+169067.0623718849 3.4944282 1103.3357
+169068.0623719892 3.4944282 1103.3555
+169069.0623720936 3.4943888 1103.3752
+169070.0623721979 3.4944282 1103.3949
+169071.0623723022 3.4944677 1103.3949
+169072.0623724065 3.4943888 1103.3555
+169073.0623725108 3.4943495 1103.4147
+169074.0623726151 3.4944677 1103.316
+169075.0623727194 3.4944282 1103.3357
+169076.0623728237 3.4945071 1103.316
+169077.062372928 3.4944282 1103.2963
+169078.0623730323 3.4945858 1103.3357
+169079.0623731366 3.4945071 1103.316
+169080.0623732409 3.4945858 1103.4147
+169081.0623733453 3.4945464 1103.3357
+169082.0623734496 3.4945071 1103.316
+169083.0623735539 3.4945464 1103.3357
+169084.0623736582 3.4945464 1103.4542
+169085.0623737625 3.4946251 1103.3949
+169086.0623738668 3.4945464 1103.3555
+169087.0623739711 3.4944677 1103.3357
+169088.0623740754 3.4945858 1103.4344
+169089.0623741797 3.4945464 1103.3555
+169090.062374284 3.4946251 1103.3357
+169091.0623743883 3.4945071 1103.3555
+169092.0623744926 3.4945071 1103.4542
+169093.062374597 3.4945858 1103.3357
+169094.0623747013 3.4946251 1103.4542
+169095.0623748056 3.4945858 1103.3555
+169096.0623749099 3.4945858 1103.3949
+169097.0623750142 3.4946644 1103.2172
+169098.0623751185 3.4945858 1103.2369
+169099.0623752228 3.4945464 1103.3949
+169100.0623753271 3.4946644 1103.316
+169101.0623754314 3.4946644 1103.3752
+169102.0623755357 3.4946251 1103.3555
+169103.06237564 3.4947038 1103.4147
+169104.0623757443 3.4946251 1103.3949
+169105.0623758486 3.4947038 1103.4147
+169106.062375953 3.4946251 1103.4147
+169107.0623760573 3.4945858 1103.3357
+169108.0623761616 3.4946644 1103.3555
+169109.0623762659 3.4947038 1103.3555
+169110.0623763702 3.4947431 1103.2765
+169111.0623764745 3.4947827 1103.3555
+169112.0623765788 3.4946644 1103.3555
+169113.0623766831 3.4947038 1103.4542
+169114.0623767874 3.4947827 1103.2765
+169115.0623768917 3.4947431 1103.4147
+169116.062376996 3.4947827 1103.3555
+169117.0623771003 3.4949007 1103.3357
+169118.0623772047 3.4947431 1103.2963
+169119.062377309 3.4947431 1103.3555
+169120.0623774133 3.4947431 1103.4147
+169121.0623775176 3.4948614 1103.4938
+169122.0623776219 3.4947827 1103.3949
+169123.0623777262 3.4947827 1103.2963
+169124.0623778305 3.4948614 1103.3752
+169125.0623779348 3.4948614 1103.2765
+169126.0623780391 3.4949794 1103.4147
+169127.0623781434 3.494822 1103.2963
+169128.0623782477 3.49494 1103.3752
+169129.062378352 3.4949794 1103.3752
+169130.0623784564 3.494822 1103.3752
+169131.0623785607 3.49494 1103.4147
+169132.062378665 3.49494 1103.3555
+169133.0623787693 3.494822 1103.3752
+169134.0623788736 3.4949007 1103.3357
+169135.0623789779 3.4950187 1103.316
+169136.0623790822 3.494822 1103.3555
+169137.0623791865 3.4949794 1103.3555
+169138.0623792908 3.4950581 1103.3752
+169139.0623793951 3.49494 1103.3357
+169140.0623794994 3.4950187 1103.1975
+169141.0623796037 3.49494 1103.3555
+169142.062379708 3.4949794 1103.3949
+169143.0623798124 3.4950581 1103.474
+169144.0623799167 3.49494 1103.3949
+169145.062380021 3.4949794 1103.316
+169146.0623801253 3.4949794 1103.2765
+169147.0623802296 3.4950581 1103.3357
+169148.0623803339 3.4950187 1103.2963
+169149.0623804382 3.4950187 1103.316
+169150.0623805425 3.4950976 1103.4147
+169151.0623806468 3.495137 1103.4344
+169152.0623807511 3.4950187 1103.3949
+169153.0623808554 3.495137 1103.2172
+169154.0623809597 3.495255 1103.3949
+169155.0623810641 3.495137 1103.3357
+169156.0623811684 3.495137 1103.3752
+169157.0623812727 3.4951763 1103.3357
+169158.062381377 3.495255 1103.3949
+169159.0623814813 3.4953337 1103.3752
+169160.0623815856 3.4952943 1103.3752
+169161.0623816899 3.4953337 1103.4147
+169162.0623817942 3.4952943 1103.3949
+169163.0623818985 3.495373 1103.2963
+169164.0623820028 3.4954126 1103.4147
+169165.0623821071 3.4953337 1103.3752
+169166.0623822114 3.4954519 1103.3949
+169167.0623823158 3.4954913 1103.2369
+169168.0623824201 3.4954126 1103.2963
+169169.0623825244 3.4954126 1103.3752
+169170.0623826287 3.495373 1103.3357
+169171.062382733 3.4954519 1103.3752
+169172.0623828373 3.495373 1103.3357
+169173.0623829416 3.4954913 1103.2765
+169174.0623830459 3.4954126 1103.3555
+169175.0623831502 3.4954913 1103.3357
+169176.0623832545 3.4955306 1103.3357
+169177.0623833588 3.4954913 1103.3357
+169178.0623834631 3.4954913 1103.3949
+169179.0623835674 3.4954913 1103.3752
+169180.0623836718 3.4956093 1103.3357
+169181.0623837761 3.4955306 1103.3555
+169182.0623838804 3.4955699 1103.3555
+169183.0623839847 3.4954913 1103.3357
+169184.062384089 3.4955306 1103.3949
+169185.0623841933 3.4955306 1103.2963
+169186.0623842976 3.4955699 1103.3555
+169187.0623844019 3.4955699 1103.3555
+169188.0623845062 3.4955306 1103.3357
+169189.0623846105 3.4954519 1103.316
+169190.0623847148 3.4955699 1103.316
+169191.0623848191 3.4955306 1103.4344
+169192.0623849235 3.4955306 1103.2765
+169193.0623850278 3.4955699 1103.3357
+169194.0623851321 3.4955699 1103.3949
+169195.0623852364 3.4956093 1103.3752
+169196.0623853407 3.4956882 1103.2765
+169197.062385445 3.4957669 1103.2963
+169198.0623855493 3.4957669 1103.3357
+169199.0623856536 3.4956882 1103.4344
+169200.0623857579 3.4955699 1103.3357
+169201.0623858622 3.4956486 1103.3949
+169202.0623859665 3.4957669 1103.3949
+169203.0623860708 3.4958062 1103.316
+169204.0623861752 3.4956486 1103.3555
+169205.0623862795 3.4957669 1103.316
+169206.0623863838 3.4958456 1103.3752
+169207.0623864881 3.4957669 1103.3949
+169208.0623865924 3.4957669 1103.3555
+169209.0623866967 3.4957669 1103.3555
+169210.062386801 3.4957275 1103.3555
+169211.0623869053 3.4958062 1103.3357
+169212.0623870096 3.4957669 1103.316
+169213.0623871139 3.4958062 1103.3555
+169214.0623872182 3.4958849 1103.316
+169215.0623873225 3.4957275 1103.3555
+169216.0623874268 3.4959242 1103.3357
+169217.0623875312 3.4957669 1103.3949
+169218.0623876355 3.4957669 1103.4344
+169219.0623877398 3.4958062 1103.4147
+169220.0623878441 3.4959242 1103.3752
+169221.0623879484 3.4958062 1103.2765
+169222.0623880527 3.4959242 1103.3555
+169223.062388157 3.4958062 1103.2963
+169224.0623882613 3.4958456 1103.2567
+169225.0623883656 3.4958456 1103.3357
+169226.0623884699 3.4959636 1103.3555
+169227.0623885742 3.4959242 1103.3555
+169228.0623886785 3.4959242 1103.3555
+169229.0623887829 3.4959636 1103.316
+169230.0623888872 3.4959242 1103.3949
+169231.0623889915 3.4959242 1103.316
+169232.0623890958 3.4958062 1103.316
+169233.0623892001 3.4959636 1103.2765
+169234.0623893044 3.4959636 1103.3949
+169235.0623894087 3.4959242 1103.3949
+169236.062389513 3.4960425 1103.2765
+169237.0623896173 3.4960032 1103.3357
+169238.0623897216 3.4960032 1103.3949
+169239.0623898259 3.4960425 1103.3752
+169240.0623899302 3.4960818 1103.2963
+169241.0623900346 3.4960032 1103.316
+169242.0623901389 3.4961212 1103.2963
+169243.0623902432 3.4960032 1103.3949
+169244.0623903475 3.4960032 1103.4344
+169245.0623904518 3.4961605 1103.4344
+169246.0623905561 3.4962392 1103.2963
+169247.0623906604 3.4960818 1103.316
+169248.0623907647 3.4961212 1103.316
+169249.062390869 3.4961605 1103.3357
+169250.0623909733 3.4960818 1103.2765
+169251.0623910776 3.4961605 1103.3555
+169252.0623911819 3.4960425 1103.3555
+169253.0623912863 3.4960818 1103.2963
+169254.0623913906 3.4960818 1103.3752
+169255.0623914949 3.4961212 1103.2765
+169256.0623915992 3.4961605 1103.3752
+169257.0623917035 3.4961605 1103.3555
+169258.0623918078 3.4961998 1103.3555
+169259.0623919121 3.4961212 1103.3357
+169260.0623920164 3.4961605 1103.3949
+169261.0623921207 3.4961212 1103.3357
+169262.062392225 3.4961605 1103.3357
+169263.0623923293 3.4962785 1103.3752
+169264.0623924336 3.4963181 1103.4147
+169265.0623925379 3.4962785 1103.3357
+169266.0623926423 3.4962785 1103.2963
+169267.0623927466 3.4962392 1103.3555
+169268.0623928509 3.4962785 1103.316
+169269.0623929552 3.4962392 1103.3949
+169270.0623930595 3.4962785 1103.316
+169271.0623931638 3.4962785 1103.4344
+169272.0623932681 3.4963181 1103.3357
+169273.0623933724 3.4963574 1103.2369
+169274.0623934767 3.4964361 1103.3555
+169275.062393581 3.4962785 1103.4344
+169276.0623936853 3.4964755 1103.3357
+169277.0623937896 3.4963968 1103.316
+169278.062393894 3.4963574 1103.3357
+169279.0623939983 3.4964755 1103.3949
+169280.0623941026 3.4963574 1103.4147
+169281.0623942069 3.4964361 1103.316
+169282.0623943112 3.4964361 1103.3357
+169283.0623944155 3.4964361 1103.3555
+169284.0623945198 3.4964755 1103.2963
+169285.0623946241 3.4963574 1103.4344
+169286.0623947284 3.4965541 1103.3949
+169287.0623948327 3.4963574 1103.2765
+169288.062394937 3.4964361 1103.3555
+169289.0623950413 3.4965541 1103.3555
+169290.0623951457 3.4964755 1103.2963
+169291.06239525 3.4964755 1103.316
+169292.0623953543 3.4965541 1103.3555
+169293.0623954586 3.4965148 1103.2963
+169294.0623955629 3.4964755 1103.316
+169295.0623956672 3.4964361 1103.3949
+169296.0623957715 3.4965148 1103.3555
+169297.0623958758 3.4965148 1103.3357
+169298.0623959801 3.4965148 1103.3949
+169299.0623960844 3.4965541 1103.3555
+169300.0623961887 3.4966331 1103.4344
+169301.062396293 3.4966724 1103.3949
+169302.0623963973 3.4966724 1103.4542
+169303.0623965017 3.4966331 1103.316
+169304.062396606 3.4966331 1103.3357
+169305.0623967103 3.4966331 1103.3555
+169306.0623968146 3.4967511 1103.2765
+169307.0623969189 3.4967904 1103.3555
+169308.0623970232 3.4966724 1103.3555
+169309.0623971275 3.4967511 1103.3555
+169310.0623972318 3.4967904 1103.316
+169311.0623973361 3.4967904 1103.3357
+169312.0623974404 3.4967904 1103.4147
+169313.0623975447 3.4967904 1103.3752
+169314.062397649 3.4967511 1103.4344
+169315.0623977534 3.4967904 1103.3752
+169316.0623978577 3.4967904 1103.2963
+169317.062397962 3.4967904 1103.3357
+169318.0623980663 3.4968691 1103.316
+169319.0623981706 3.4969873 1103.3949
+169320.0623982749 3.4969873 1103.316
+169321.0623983792 3.4970267 1103.4147
+169322.0623984835 3.4970267 1103.4938
+169323.0623985878 3.4970267 1103.3357
+169324.0623986921 3.4970267 1103.2567
+169325.0623987964 3.4970267 1103.2963
+169326.0623989007 3.497066 1103.3357
+169327.0623990051 3.4971054 1103.316
+169328.0623991094 3.497066 1103.2765
+169329.0623992137 3.4971054 1103.3357
+169330.062399318 3.4971054 1103.2765
+169331.0623994223 3.4971447 1103.3752
+169332.0623995266 3.4971054 1103.3357
+169333.0623996309 3.497184 1103.3949
+169334.0623997352 3.4971447 1103.3555
+169335.0623998395 3.497184 1103.3949
+169336.0623999438 3.4973023 1103.3555
+169337.0624000481 3.4971054 1103.3357
+169338.0624001524 3.497184 1103.2963
+169339.0624002567 3.497066 1103.4344
+169340.0624003611 3.4972234 1103.3752
+169341.0624004654 3.497184 1103.3357
+169342.0624005697 3.4972234 1103.316
+169343.062400674 3.4972234 1103.3555
+169344.0624007783 3.497263 1103.4147
+169345.0624008826 3.4972234 1103.3357
+169346.0624009869 3.4971447 1103.2765
+169347.0624010912 3.4972234 1103.3555
+169348.0624011955 3.4973023 1103.3555
+169349.0624012998 3.4973023 1103.3752
+169350.0624014041 3.4973416 1103.2567
+169351.0624015084 3.4972234 1103.3752
+169352.0624016128 3.4971447 1103.4344
+169353.0624017171 3.4973023 1103.4147
+169354.0624018214 3.497381 1103.3357
+169355.0624019257 3.4972234 1103.2963
+169356.06240203 3.4972234 1103.316
+169357.0624021343 3.4974203 1103.4147
+169358.0624022386 3.4973023 1103.3555
+169359.0624023429 3.497381 1103.2963
+169360.0624024472 3.4974203 1103.2765
+169361.0624025515 3.497381 1103.316
+169362.0624026558 3.4974203 1103.316
+169363.0624027601 3.497381 1103.316
+169364.0624028645 3.4974597 1103.3357
+169365.0624029688 3.4974597 1103.4344
+169366.0624030731 3.497499 1103.3752
+169367.0624031774 3.4974203 1103.3949
+169368.0624032817 3.4974597 1103.316
+169369.062403386 3.4974597 1103.2963
+169370.0624034903 3.4974203 1103.4542
+169371.0624035946 3.4974597 1103.3949
+169372.0624036989 3.4975386 1103.3949
+169373.0624038032 3.497499 1103.3752
+169374.0624039075 3.4974203 1103.3752
+169375.0624040118 3.4975779 1103.2963
+169376.0624041162 3.4975386 1103.2963
+169377.0624042205 3.4975386 1103.316
+169378.0624043248 3.497499 1103.3949
+169379.0624044291 3.4975386 1103.316
+169380.0624045334 3.4975779 1103.316
+169381.0624046377 3.4975779 1103.2963
+169382.062404742 3.4975779 1103.3357
+169383.0624048463 3.4975779 1103.3357
+169384.0624049506 3.497499 1103.2765
+169385.0624050549 3.4974597 1103.2369
+169386.0624051592 3.497499 1103.316
+169387.0624052635 3.4975386 1103.4147
+169388.0624053678 3.4975386 1103.4344
+169389.0624054722 3.4975386 1103.3752
+169390.0624055765 3.497499 1103.3949
+169391.0624056808 3.497499 1103.3752
+169392.0624057851 3.497499 1103.3357
+169393.0624058894 3.4975386 1103.3357
+169394.0624059937 3.4975779 1103.316
+169395.062406098 3.4975779 1103.4344
+169396.0624062023 3.4975386 1103.3949
+169397.0624063066 3.4976172 1103.316
+169398.0624064109 3.4975386 1103.3752
+169399.0624065152 3.4975779 1103.316
+169400.0624066195 3.4975386 1103.316
+169401.0624067239 3.4976959 1103.3555
+169402.0624068282 3.4976566 1103.3357
+169403.0624069325 3.4975779 1103.2369
+169404.0624070368 3.4975779 1103.2172
+169405.0624071411 3.4976566 1103.3555
+169406.0624072454 3.4976959 1103.316
+169407.0624073497 3.4977353 1103.3357
+169408.062407454 3.4977353 1103.2963
+169409.0624075583 3.4978139 1103.2963
+169410.0624076626 3.4978139 1103.4147
+169411.0624077669 3.4977353 1103.2963
+169412.0624078712 3.4977746 1103.2369
+169413.0624079756 3.4977353 1103.2963
+169414.0624080799 3.4978535 1103.4147
+169415.0624081842 3.4978139 1103.3752
+169416.0624082885 3.4978929 1103.3555
+169417.0624083928 3.4978535 1103.3357
+169418.0624084971 3.4978535 1103.316
+169419.0624086014 3.4979715 1103.316
+169420.0624087057 3.4978139 1103.2963
+169421.06240881 3.4979322 1103.3949
+169422.0624089143 3.4980109 1103.316
+169423.0624090186 3.4980109 1103.3752
+169424.0624091229 3.4979715 1103.316
+169425.0624092272 3.4980502 1103.3555
+169426.0624093316 3.4980896 1103.2765
+169427.0624094359 3.4980502 1103.3357
+169428.0624095402 3.4981289 1103.3949
+169429.0624096445 3.4981289 1103.3357
+169430.0624097488 3.4981289 1103.3949
+169431.0624098531 3.4981685 1103.4542
+169432.0624099574 3.4981685 1103.3555
+169433.0624100617 3.4981685 1103.2963
+169434.062410166 3.4982078 1103.4147
+169435.0624102703 3.4980896 1103.2765
+169436.0624103746 3.4981289 1103.3752
+169437.0624104789 3.4982078 1103.3555
+169438.0624105833 3.4982471 1103.2963
+169439.0624106876 3.4982078 1103.3357
+169440.0624107919 3.4983258 1103.3357
+169441.0624108962 3.4981289 1103.316
+169442.0624110005 3.4982865 1103.2765
+169443.0624111048 3.4982078 1103.2765
+169444.0624112091 3.4982865 1103.3752
+169445.0624113134 3.4982471 1103.2963
+169446.0624114177 3.4982471 1103.316
+169447.062411522 3.4984045 1103.3752
+169448.0624116263 3.4984045 1103.316
+169449.0624117306 3.4984438 1103.4147
+169450.062411835 3.4984438 1103.3555
+169451.0624119393 3.4984438 1103.3949
+169452.0624120436 3.4984438 1103.3949
+169453.0624121479 3.4984834 1103.3752
+169454.0624122522 3.4984438 1103.3357
+169455.0624123565 3.4985228 1103.3752
+169456.0624124608 3.4984834 1103.3949
+169457.0624125651 3.4984438 1103.3555
+169458.0624126694 3.4985228 1103.3357
+169459.0624127737 3.4984438 1103.2765
+169460.062412878 3.4985228 1103.316
+169461.0624129823 3.4984045 1103.316
+169462.0624130866 3.4985228 1103.316
+169463.062413191 3.4986014 1103.2567
+169464.0624132953 3.4984834 1103.3555
+169465.0624133996 3.4985228 1103.3555
+169466.0624135039 3.4987195 1103.2765
+169467.0624136082 3.4985621 1103.2963
+169468.0624137125 3.4986408 1103.316
+169469.0624138168 3.4986014 1103.3949
+169470.0624139211 3.4985228 1103.3949
+169471.0624140254 3.4985621 1103.2963
+169472.0624141297 3.4986801 1103.4147
+169473.062414234 3.4987195 1103.3949
+169474.0624143383 3.4986801 1103.316
+169475.0624144427 3.4986408 1103.3949
+169476.062414547 3.4986801 1103.3555
+169477.0624146513 3.4987195 1103.3555
+169478.0624147556 3.4986801 1103.2963
+169479.0624148599 3.4986408 1103.3555
+169480.0624149642 3.4987195 1103.316
+169481.0624150685 3.4987984 1103.3949
+169482.0624151728 3.4987195 1103.316
+169483.0624152771 3.4987984 1103.2765
+169484.0624153814 3.4988377 1103.2567
+169485.0624154857 3.4987195 1103.4542
+169486.06241559 3.498877 1103.3357
+169487.0624156944 3.4987195 1103.3949
+169488.0624157987 3.498877 1103.3949
+169489.062415903 3.498877 1103.3752
+169490.0624160073 3.498877 1103.3949
+169491.0624161116 3.498877 1103.3949
+169492.0624162159 3.4989164 1103.2963
+169493.0624163202 3.4988377 1103.316
+169494.0624164245 3.4988377 1103.3949
+169495.0624165288 3.4989557 1103.2765
+169496.0624166331 3.4990344 1103.3949
+169497.0624167374 3.4989164 1103.3555
+169498.0624168417 3.4990344 1103.3555
+169499.0624169461 3.4989557 1103.2963
+169500.0624170504 3.4989951 1103.316
+169501.0624171547 3.4990737 1103.2963
+169502.062417259 3.4990344 1103.4147
+169503.0624173633 3.4991133 1103.2567
+169504.0624174676 3.4990344 1103.3949
+169505.0624175719 3.4991133 1103.2963
+169506.0624176762 3.4990344 1103.3357
+169507.0624177805 3.4991527 1103.3555
+169508.0624178848 3.4989557 1103.3752
+169509.0624179891 3.4991527 1103.3357
+169510.0624180934 3.4991133 1103.2963
+169511.0624181977 3.4990344 1103.4542
+169512.0624183021 3.4990737 1103.2369
+169513.0624184064 3.499192 1103.2963
+169514.0624185107 3.4991133 1103.316
+169515.062418615 3.4991527 1103.316
+169516.0624187193 3.4991527 1103.3357
+169517.0624188236 3.4991133 1103.3752
+169518.0624189279 3.499192 1103.3949
+169519.0624190322 3.4992313 1103.3949
+169520.0624191365 3.499192 1103.3752
+169521.0624192408 3.4992313 1103.2765
+169522.0624193451 3.4991527 1103.3357
+169523.0624194494 3.4992313 1103.3949
+169524.0624195538 3.499192 1103.3555
+169525.0624196581 3.4991133 1103.2963
+169526.0624197624 3.4993889 1103.3555
+169527.0624198667 3.4992707 1103.3357
+169528.062419971 3.4993494 1103.2567
+169529.0624200753 3.4992313 1103.3752
+169530.0624201796 3.4992313 1103.3357
+169531.0624202839 3.4991527 1103.3555
+169532.0624203882 3.4992313 1103.316
+169533.0624204925 3.499192 1103.3555
+169534.0624205968 3.4992313 1103.3752
+169535.0624207011 3.4992707 1103.4147
+169536.0624208055 3.4993889 1103.4147
+169537.0624209098 3.4992707 1103.4542
+169538.0624210141 3.4992707 1103.3357
+169539.0624211184 3.4993494 1103.4147
+169540.0624212227 3.4992707 1103.3555
+169541.062421327 3.4993494 1103.3949
+169542.0624214313 3.4992313 1103.3357
+169543.0624215356 3.4993494 1103.3949
+169544.0624216399 3.4992707 1103.3752
+169545.0624217442 3.49931 1103.3752
+169546.0624218485 3.49931 1103.3357
+169547.0624219528 3.4993494 1103.3555
+169548.0624220571 3.499192 1103.3949
+169549.0624221615 3.4994283 1103.4147
+169550.0624222658 3.4994676 1103.2567
+169551.0624223701 3.4993889 1103.3357
+169552.0624224744 3.4994676 1103.3555
+169553.0624225787 3.4993494 1103.3357
+169554.062422683 3.4993889 1103.2765
+169555.0624227873 3.4994283 1103.316
+169556.0624228916 3.4994676 1103.3752
+169557.0624229959 3.4994676 1103.3357
+169558.0624231002 3.4994676 1103.316
+169559.0624232045 3.4994676 1103.3555
+169560.0624233088 3.4994283 1103.2963
+169561.0624234132 3.4995463 1103.3949
+169562.0624235175 3.4995463 1103.3752
+169563.0624236218 3.4994676 1103.3357
+169564.0624237261 3.4995463 1103.2369
+169565.0624238304 3.4995856 1103.2963
+169566.0624239347 3.499625 1103.2765
+169567.062424039 3.4995463 1103.3949
+169568.0624241433 3.4995856 1103.3752
+169569.0624242476 3.4995856 1103.2963
+169570.0624243519 3.499625 1103.3357
+169571.0624244562 3.4995463 1103.3752
+169572.0624245605 3.4995463 1103.2963
+169573.0624246649 3.4995856 1103.3357
+169574.0624247692 3.499625 1103.4542
+169575.0624248735 3.499507 1103.3949
+169576.0624249778 3.4996643 1103.3357
+169577.0624250821 3.4996643 1103.2963
+169578.0624251864 3.4996643 1103.4344
+169579.0624252907 3.4998612 1103.316
+169580.062425395 3.4997826 1103.3949
+169581.0624254993 3.4997826 1103.2765
+169582.0624256036 3.4997826 1103.2765
+169583.0624257079 3.4996643 1103.316
+169584.0624258122 3.4997039 1103.3752
+169585.0624259165 3.4997432 1103.3752
+169586.0624260209 3.4997039 1103.3555
+169587.0624261252 3.4997826 1103.3357
+169588.0624262295 3.4998612 1103.3752
+169589.0624263338 3.4998219 1103.4344
+169590.0624264381 3.4997432 1103.3357
+169591.0624265424 3.4998612 1103.4147
+169592.0624266467 3.4999793 1103.3949
+169593.062426751 3.4998612 1103.1975
+169594.0624268553 3.4999793 1103.3949
+169595.0624269596 3.4999006 1103.3752
+169596.0624270639 3.4999793 1103.4542
+169597.0624271682 3.5000188 1103.2369
+169598.0624272726 3.4999006 1103.3949
+169599.0624273769 3.5000582 1103.3357
+169600.0624274812 3.4999793 1103.2765
+169601.0624275855 3.4999793 1103.3555
+169602.0624276898 3.4999793 1103.3555
+169603.0624277941 3.4998612 1103.2765
+169604.0624278984 3.4999399 1103.4147
+169605.0624280027 3.4999793 1103.316
+169606.062428107 3.4999006 1103.3555
+169607.0624282113 3.4999006 1103.3357
+169608.0624283156 3.4999793 1103.4147
+169609.0624284199 3.5000188 1103.3555
+169610.0624285243 3.4999399 1103.3949
+169611.0624286286 3.5000582 1103.4147
+169612.0624287329 3.4999793 1103.3357
+169613.0624288372 3.4999793 1103.2963
+169614.0624289415 3.4999793 1103.2765
+169615.0624290458 3.5000582 1103.3752
+169616.0624291501 3.5000188 1103.3357
+169617.0624292544 3.5000975 1103.3752
+169618.0624293587 3.5000188 1103.3949
+169619.062429463 3.5000975 1103.316
+169620.0624295673 3.5001762 1103.2963
+169621.0624296716 3.5001369 1103.3949
+169622.062429776 3.5001762 1103.2765
+169623.0624298803 3.5001762 1103.3752
+169624.0624299846 3.5001762 1103.2963
+169625.0624300889 3.5002549 1103.2567
+169626.0624301932 3.5002549 1103.3555
+169627.0624302975 3.5002549 1103.3357
+169628.0624304018 3.5003338 1103.3555
+169629.0624305061 3.5003731 1103.3555
+169630.0624306104 3.5002155 1103.3357
+169631.0624307147 3.5003731 1103.316
+169632.062430819 3.5002549 1103.2963
+169633.0624309233 3.5003338 1103.3555
+169634.0624310276 3.5004125 1103.3357
+169635.062431132 3.5002942 1103.3752
+169636.0624312363 3.5004125 1103.3357
+169637.0624313406 3.5005305 1103.3752
+169638.0624314449 3.5004911 1103.2963
+169639.0624315492 3.5004518 1103.3752
+169640.0624316535 3.5006092 1103.316
+169641.0624317578 3.5005305 1103.316
+169642.0624318621 3.5004518 1103.316
+169643.0624319664 3.5004125 1103.2963
+169644.0624320707 3.5005698 1103.3949
+169645.062432175 3.5005305 1103.3357
+169646.0624322793 3.5005698 1103.3752
+169647.0624323837 3.5006881 1103.316
+169648.062432488 3.5005305 1103.3555
+169649.0624325923 3.5006092 1103.3555
+169650.0624326966 3.5006092 1103.3949
+169651.0624328009 3.5006487 1103.3357
+169652.0624329052 3.5006092 1103.316
+169653.0624330095 3.5005698 1103.3949
+169654.0624331138 3.5007274 1103.3752
+169655.0624332181 3.5007274 1103.3752
+169656.0624333224 3.5007274 1103.3752
+169657.0624334267 3.5006881 1103.316
+169658.062433531 3.5007274 1103.3555
+169659.0624336354 3.5006881 1103.3752
+169660.0624337397 3.5007274 1103.3949
+169661.062433844 3.5008454 1103.316
+169662.0624339483 3.5008061 1103.3752
+169663.0624340526 3.5008061 1103.316
+169664.0624341569 3.5007274 1103.3357
+169665.0624342612 3.5008848 1103.3752
+169666.0624343655 3.5007668 1103.3752
+169667.0624344698 3.5008848 1103.2963
+169668.0624345741 3.5008061 1103.3555
+169669.0624346784 3.5008061 1103.316
+169670.0624347827 3.5008061 1103.3555
+169671.062434887 3.5009637 1103.3949
+169672.0624349914 3.5008454 1103.3752
+169673.0624350957 3.501003 1103.2765
+169674.0624352 3.5009637 1103.3357
+169675.0624353043 3.5009637 1103.4147
+169676.0624354086 3.5009243 1103.316
+169677.0624355129 3.5009637 1103.3752
+169678.0624356172 3.501121 1103.2765
+169679.0624357215 3.5009637 1103.3555
+169680.0624358258 3.5009637 1103.3357
+169681.0624359301 3.5010817 1103.316
+169682.0624360344 3.501003 1103.3357
+169683.0624361387 3.501003 1103.3752
+169684.0624362431 3.5009243 1103.4344
+169685.0624363474 3.5009243 1103.3752
+169686.0624364517 3.5009243 1103.3752
+169687.062436556 3.501121 1103.2765
+169688.0624366603 3.5010817 1103.3555
+169689.0624367646 3.5010817 1103.2963
+169690.0624368689 3.501003 1103.3555
+169691.0624369732 3.5010817 1103.3555
+169692.0624370775 3.5010817 1103.316
+169693.0624371818 3.5010817 1103.3555
+169694.0624372861 3.501003 1103.2963
+169695.0624373904 3.5009637 1103.3949
+169696.0624374948 3.5010817 1103.3555
+169697.0624375991 3.501121 1103.3357
+169698.0624377034 3.5010817 1103.3555
+169699.0624378077 3.5010424 1103.3949
+169700.062437912 3.501121 1103.4542
+169701.0624380163 3.5010424 1103.2963
+169702.0624381206 3.5010424 1103.2963
+169703.0624382249 3.501003 1103.3949
+169704.0624383292 3.5010817 1103.4147
+169705.0624384335 3.5011604 1103.3752
+169706.0624385378 3.5010817 1103.3949
+169707.0624386421 3.501121 1103.316
+169708.0624387464 3.5010817 1103.3752
+169709.0624388508 3.5011997 1103.2765
+169710.0624389551 3.5010817 1103.316
+169711.0624390594 3.501121 1103.3357
+169712.0624391637 3.501121 1103.3555
+169713.062439268 3.501121 1103.316
+169714.0624393723 3.501121 1103.316
+169715.0624394766 3.501121 1103.2963
+169716.0624395809 3.501121 1103.3357
+169717.0624396852 3.5012393 1103.3555
+169718.0624397895 3.5011997 1103.316
+169719.0624398938 3.5011997 1103.3752
+169720.0624399981 3.5011997 1103.3752
+169721.0624401025 3.5011604 1103.3357
+169722.0624402068 3.5011604 1103.316
+169723.0624403111 3.501121 1103.3752
+169724.0624404154 3.5012393 1103.2963
+169725.0624405197 3.5011604 1103.3555
+169726.062440624 3.5011997 1103.3555
+169727.0624407283 3.5011997 1103.316
+169728.0624408326 3.5011997 1103.3752
+169729.0624409369 3.5012786 1103.2963
+169730.0624410412 3.501318 1103.3357
+169731.0624411455 3.501318 1103.316
+169732.0624412498 3.501318 1103.316
+169733.0624413542 3.5012393 1103.3555
+169734.0624414585 3.501318 1103.2567
+169735.0624415628 3.501318 1103.2765
+169736.0624416671 3.501318 1103.3752
+169737.0624417714 3.501318 1103.316
+169738.0624418757 3.501318 1103.3752
+169739.06244198 3.5013573 1103.2567
+169740.0624420843 3.5013967 1103.3357
+169741.0624421886 3.5013573 1103.3752
+169742.0624422929 3.5013573 1103.2369
+169743.0624423972 3.501436 1103.3555
+169744.0624425015 3.501318 1103.3752
+169745.0624426058 3.5013573 1103.316
+169746.0624427102 3.5015147 1103.3357
+169747.0624428145 3.5015147 1103.3555
+169748.0624429188 3.5013967 1103.2765
+169749.0624430231 3.5014753 1103.3752
+169750.0624431274 3.5015147 1103.2567
+169751.0624432317 3.5015543 1103.2963
+169752.062443336 3.501436 1103.3555
+169753.0624434403 3.5015543 1103.2963
+169754.0624435446 3.5015936 1103.316
+169755.0624436489 3.501436 1103.3555
+169756.0624437532 3.5016329 1103.316
+169757.0624438575 3.5015543 1103.3357
+169758.0624439619 3.5015147 1103.3555
+169759.0624440662 3.5015936 1103.2567
+169760.0624441705 3.5015543 1103.3752
+169761.0624442748 3.5016723 1103.3752
+169762.0624443791 3.5015147 1103.3949
+169763.0624444834 3.5015543 1103.3357
+169764.0624445877 3.5017509 1103.316
+169765.062444692 3.5017116 1103.3555
+169766.0624447963 3.5016723 1103.2765
+169767.0624449006 3.5017509 1103.316
+169768.0624450049 3.5017509 1103.3357
+169769.0624451092 3.5017903 1103.3752
+169770.0624452136 3.5017509 1103.2765
+169771.0624453179 3.5017903 1103.2765
+169772.0624454222 3.5017903 1103.3555
+169773.0624455265 3.5019479 1103.2765
+169774.0624456308 3.5019085 1103.316
+169775.0624457351 3.5019085 1103.2765
+169776.0624458394 3.5017903 1103.4147
+169777.0624459437 3.5018296 1103.3555
+169778.062446048 3.5019085 1103.316
+169779.0624461523 3.5019479 1103.3357
+169780.0624462566 3.5018692 1103.2963
+169781.0624463609 3.5019479 1103.3357
+169782.0624464653 3.5019479 1103.3357
+169783.0624465696 3.5020266 1103.3949
+169784.0624466739 3.5020659 1103.3752
+169785.0624467782 3.5020266 1103.3357
+169786.0624468825 3.5020659 1103.3357
+169787.0624469868 3.5020266 1103.2963
+169788.0624470911 3.5019872 1103.316
+169789.0624471954 3.5021052 1103.3357
+169790.0624472997 3.5019479 1103.3357
+169791.062447404 3.5020266 1103.3555
+169792.0624475083 3.5020266 1103.3555
+169793.0624476126 3.5021052 1103.316
+169794.0624477169 3.5020659 1103.3752
+169795.0624478213 3.5019872 1103.2963
+169796.0624479256 3.5021446 1103.2567
+169797.0624480299 3.5020266 1103.4147
+169798.0624481342 3.5021052 1103.316
+169799.0624482385 3.5021052 1103.4147
+169800.0624483428 3.5022628 1103.316
+169801.0624484471 3.5022235 1103.3357
+169802.0624485514 3.5021052 1103.3949
+169803.0624486557 3.5021842 1103.3357
+169804.06244876 3.5021052 1103.3555
+169805.0624488643 3.5021842 1103.3555
+169806.0624489686 3.5022235 1103.316
+169807.062449073 3.5023022 1103.3357
+169808.0624491773 3.5023022 1103.474
+169809.0624492816 3.5023415 1103.3357
+169810.0624493859 3.5023808 1103.2963
+169811.0624494902 3.5023022 1103.3752
+169812.0624495945 3.5023415 1103.3752
+169813.0624496988 3.5023415 1103.4542
+169814.0624498031 3.5023415 1103.3357
+169815.0624499074 3.5024991 1103.474
+169816.0624500117 3.5024991 1103.3752
+169817.062450116 3.5023808 1103.3555
+169818.0624502203 3.5024991 1103.4147
+169819.0624503247 3.5024202 1103.2963
+169820.062450429 3.5026171 1103.3949
+169821.0624505333 3.5026565 1103.3752
+169822.0624506376 3.5024202 1103.2567
+169823.0624507419 3.5024991 1103.4147
+169824.0624508462 3.5026958 1103.3752
+169825.0624509505 3.5026171 1103.2567
+169826.0624510548 3.5025384 1103.3555
+169827.0624511591 3.5025384 1103.2963
+169828.0624512634 3.5026171 1103.3357
+169829.0624513677 3.5027351 1103.316
+169830.062451472 3.5027351 1103.2963
+169831.0624515763 3.5026565 1103.3949
+169832.0624516807 3.5025384 1103.316
+169833.062451785 3.5026171 1103.316
+169834.0624518893 3.5026171 1103.316
+169835.0624519936 3.5026958 1103.3752
+169836.0624520979 3.5026958 1103.3949
+169837.0624522022 3.5028927 1103.3752
+169838.0624523065 3.5027351 1103.2963
+169839.0624524108 3.5026958 1103.3752
+169840.0624525151 3.5027747 1103.316
+169841.0624526194 3.5027747 1103.2963
+169842.0624527237 3.5028141 1103.3357
+169843.062452828 3.5028534 1103.316
+169844.0624529324 3.5028534 1103.3357
+169845.0624530367 3.5028534 1103.316
+169846.062453141 3.5028534 1103.3752
+169847.0624532453 3.5029321 1103.2963
+169848.0624533496 3.5029714 1103.3357
+169849.0624534539 3.5029714 1103.3555
+169850.0624535582 3.5030107 1103.3555
+169851.0624536625 3.5030107 1103.3949
+169852.0624537668 3.5030107 1103.2765
+169853.0624538711 3.5029714 1103.3555
+169854.0624539754 3.5029714 1103.316
+169855.0624540797 3.5030107 1103.3555
+169856.0624541841 3.5029714 1103.3752
+169857.0624542884 3.5030501 1103.3555
+169858.0624543927 3.5029714 1103.3555
+169859.062454497 3.5030501 1103.3949
+169860.0624546013 3.5031683 1103.3357
+169861.0624547056 3.5030501 1103.3357
+169862.0624548099 3.5030897 1103.3555
+169863.0624549142 3.5030501 1103.3555
+169864.0624550185 3.503129 1103.2963
+169865.0624551228 3.503129 1103.2963
+169866.0624552271 3.5030897 1103.4147
+169867.0624553314 3.5032077 1103.4147
+169868.0624554357 3.503129 1103.316
+169869.0624555401 3.503247 1103.316
+169870.0624556444 3.5032077 1103.2765
+169871.0624557487 3.503129 1103.316
+169872.062455853 3.5030897 1103.2963
+169873.0624559573 3.5031683 1103.3555
+169874.0624560616 3.5031683 1103.3555
+169875.0624561659 3.5031683 1103.316
+169876.0624562702 3.5031683 1103.4147
+169877.0624563745 3.5031683 1103.3555
+169878.0624564788 3.5032864 1103.3752
+169879.0624565831 3.5032864 1103.3555
+169880.0624566874 3.5032864 1103.2567
+169881.0624567918 3.5032864 1103.3949
+169882.0624568961 3.5032077 1103.316
+169883.0624570004 3.5032864 1103.3357
+169884.0624571047 3.5033257 1103.3949
+169885.062457209 3.5032864 1103.3555
+169886.0624573133 3.5034046 1103.4344
+169887.0624574176 3.503365 1103.3357
+169888.0624575219 3.5033257 1103.3357
+169889.0624576262 3.5034046 1103.3357
+169890.0624577305 3.503444 1103.316
+169891.0624578348 3.5034833 1103.3752
+169892.0624579391 3.5035226 1103.3949
+169893.0624580435 3.5034833 1103.316
+169894.0624581478 3.5034833 1103.3357
+169895.0624582521 3.503444 1103.3357
+169896.0624583564 3.503444 1103.3752
+169897.0624584607 3.5034833 1103.3357
+169898.062458565 3.5036013 1103.2765
+169899.0624586693 3.503444 1103.2963
+169900.0624587736 3.5035226 1103.3752
+169901.0624588779 3.503562 1103.3555
+169902.0624589822 3.5036407 1103.316
+169903.0624590865 3.5037196 1103.3555
+169904.0624591908 3.5035226 1103.316
+169905.0624592952 3.50368 1103.4147
+169906.0624593995 3.5035226 1103.2369
+169907.0624595038 3.50368 1103.3752
+169908.0624596081 3.5037196 1103.3357
+169909.0624597124 3.5037589 1103.316
+169910.0624598167 3.5037589 1103.316
+169911.062459921 3.5037982 1103.3357
+169912.0624600253 3.5037982 1103.3555
+169913.0624601296 3.5038376 1103.3752
+169914.0624602339 3.5038769 1103.3555
+169915.0624603382 3.5038769 1103.2963
+169916.0624604425 3.5039949 1103.3752
+169917.0624605468 3.5039556 1103.3752
+169918.0624606512 3.5039163 1103.4147
+169919.0624607555 3.5039163 1103.3752
+169920.0624608598 3.5039949 1103.3752
+169921.0624609641 3.5039949 1103.316
+169922.0624610684 3.5038769 1103.3752
+169923.0624611727 3.5041132 1103.3357
+169924.062461277 3.5039949 1103.4147
+169925.0624613813 3.5040739 1103.3555
+169926.0624614856 3.5041132 1103.316
+169927.0624615899 3.5041132 1103.3555
+169928.0624616942 3.5041525 1103.3357
+169929.0624617985 3.5041132 1103.4147
+169930.0624619029 3.5041525 1103.3752
+169931.0624620072 3.5041919 1103.4147
+169932.0624621115 3.5042312 1103.4147
+169933.0624622158 3.5041132 1103.4147
+169934.0624623201 3.5041525 1103.316
+169935.0624624244 3.5042706 1103.3555
+169936.0624625287 3.5043099 1103.3357
+169937.062462633 3.5043495 1103.3949
+169938.0624627373 3.5043495 1103.3357
+169939.0624628416 3.5043099 1103.2567
+169940.0624629459 3.5044281 1103.316
+169941.0624630502 3.5043888 1103.4344
+169942.0624631546 3.5043099 1103.3752
+169943.0624632589 3.5044281 1103.316
+169944.0624633632 3.5044281 1103.2765
+169945.0624634675 3.5043099 1103.2765
+169946.0624635718 3.5043888 1103.3555
+169947.0624636761 3.5044281 1103.2963
+169948.0624637804 3.5045068 1103.4147
+169949.0624638847 3.5044281 1103.3555
+169950.062463989 3.5045462 1103.316
+169951.0624640933 3.5045068 1103.3357
+169952.0624641976 3.5045068 1103.2963
+169953.0624643019 3.5045462 1103.3752
+169954.0624644062 3.5044281 1103.3357
+169955.0624645106 3.5045068 1103.3357
+169956.0624646149 3.5045855 1103.3555
+169957.0624647192 3.5045855 1103.2567
+169958.0624648235 3.5045462 1103.3357
+169959.0624649278 3.5045462 1103.316
+169960.0624650321 3.5046644 1103.316
+169961.0624651364 3.5046644 1103.2765
+169962.0624652407 3.5046251 1103.3752
+169963.062465345 3.5046644 1103.3357
+169964.0624654493 3.5046644 1103.316
+169965.0624655536 3.5048218 1103.4147
+169966.0624656579 3.5047038 1103.3357
+169967.0624657623 3.5047038 1103.3357
+169968.0624658666 3.5047824 1103.2369
+169969.0624659709 3.5048218 1103.316
+169970.0624660752 3.5048611 1103.3555
+169971.0624661795 3.5048611 1103.4344
+169972.0624662838 3.50494 1103.3555
+169973.0624663881 3.5048611 1103.316
+169974.0624664924 3.5049794 1103.316
+169975.0624665967 3.50494 1103.3752
+169976.062466701 3.5049005 1103.2765
+169977.0624668053 3.5049794 1103.3752
+169978.0624669096 3.50494 1103.316
+169979.062467014 3.5050187 1103.3555
+169980.0624671183 3.5050581 1103.4147
+169981.0624672226 3.5050581 1103.2963
+169982.0624673269 3.5050581 1103.4147
+169983.0624674312 3.5050187 1103.3357
+169984.0624675355 3.5051367 1103.2567
+169985.0624676398 3.5052154 1103.4147
+169986.0624677441 3.5050974 1103.3357
+169987.0624678484 3.5050187 1103.2567
+169988.0624679527 3.5051761 1103.2369
+169989.062468057 3.5050974 1103.3752
+169990.0624681613 3.5051761 1103.3752
+169991.0624682656 3.5052154 1103.3555
+169992.06246837 3.5051761 1103.316
+169993.0624684743 3.5051367 1103.3357
+169994.0624685786 3.5050974 1103.3949
+169995.0624686829 3.5051761 1103.3949
+169996.0624687872 3.5051761 1103.4147
+169997.0624688915 3.5052154 1103.2963
+169998.0624689958 3.5051367 1103.2963
+169999.0624691001 3.5051761 1103.2567
+170000.0624692044 3.5051761 1103.2963
+170001.0624693087 3.5052154 1103.4542
+170002.062469413 3.505255 1103.3555
+170003.0624695173 3.5053337 1103.3357
+170004.0624696217 3.5051761 1103.4542
+170005.062469726 3.5051367 1103.3752
+170006.0624698303 3.505255 1103.316
+170007.0624699346 3.505373 1103.3752
+170008.0624700389 3.5052943 1103.316
+170009.0624701432 3.5052943 1103.3752
+170010.0624702475 3.5053337 1103.316
+170011.0624703518 3.5052943 1103.3357
+170012.0624704561 3.5052943 1103.2765
+170013.0624705604 3.5053337 1103.3752
+170014.0624706647 3.5053337 1103.3357
+170015.062470769 3.5053337 1103.3949
+170016.0624708734 3.5054123 1103.2765
+170017.0624709777 3.5054123 1103.316
+170018.062471082 3.505373 1103.3555
+170019.0624711863 3.5052943 1103.2963
+170020.0624712906 3.5053337 1103.3752
+170021.0624713949 3.5054123 1103.3357
+170022.0624714992 3.5054517 1103.316
+170023.0624716035 3.5054123 1103.3555
+170024.0624717078 3.5054123 1103.3752
+170025.0624718121 3.5054517 1103.2567
+170026.0624719164 3.5054517 1103.4147
+170027.0624720207 3.5054517 1103.316
+170028.0624721251 3.505491 1103.3555
+170029.0624722294 3.505491 1103.3555
+170030.0624723337 3.5054517 1103.3555
+170031.062472438 3.5054517 1103.4147
+170032.0624725423 3.505491 1103.3357
+170033.0624726466 3.5055699 1103.3555
+170034.0624727509 3.5055304 1103.3752
+170035.0624728552 3.5054517 1103.3752
+170036.0624729595 3.5055699 1103.2963
+170037.0624730638 3.505491 1103.3949
+170038.0624731681 3.5055304 1103.3555
+170039.0624732724 3.5055304 1103.2765
+170040.0624733767 3.5056093 1103.316
+170041.0624734811 3.5055699 1103.3555
+170042.0624735854 3.5055699 1103.3555
+170043.0624736897 3.5056093 1103.3949
+170044.062473794 3.5056093 1103.3949
+170045.0624738983 3.5056486 1103.3949
+170046.0624740026 3.5057273 1103.3555
+170047.0624741069 3.5057273 1103.2963
+170048.0624742112 3.5055699 1103.2963
+170049.0624743155 3.5056093 1103.3357
+170050.0624744198 3.505688 1103.2963
+170051.0624745241 3.505688 1103.4344
+170052.0624746284 3.5056093 1103.2765
+170053.0624747328 3.5057273 1103.4147
+170054.0624748371 3.5056486 1103.3752
+170055.0624749414 3.5058453 1103.3752
+170056.0624750457 3.5057666 1103.4147
+170057.06247515 3.5058849 1103.3752
+170058.0624752543 3.5059242 1103.3752
+170059.0624753586 3.505688 1103.3357
+170060.0624754629 3.5058849 1103.3357
+170061.0624755672 3.5058453 1103.3357
+170062.0624756715 3.505806 1103.3752
+170063.0624757758 3.505806 1103.3357
+170064.0624758801 3.5058453 1103.2963
+170065.0624759845 3.505806 1103.4542
+170066.0624760888 3.5059242 1103.316
+170067.0624761931 3.5058453 1103.316
+170068.0624762974 3.5059636 1103.3555
+170069.0624764017 3.5059242 1103.3555
+170070.062476506 3.5059636 1103.3357
+170071.0624766103 3.5059636 1103.3357
+170072.0624767146 3.5059636 1103.3357
+170073.0624768189 3.5059242 1103.3357
+170074.0624769232 3.5060029 1103.4542
+170075.0624770275 3.5060816 1103.3555
+170076.0624771318 3.5060422 1103.4542
+170077.0624772361 3.5059636 1103.2765
+170078.0624773405 3.5060422 1103.3949
+170079.0624774448 3.5061603 1103.3949
+170080.0624775491 3.5061209 1103.3752
+170081.0624776534 3.5061209 1103.3555
+170082.0624777577 3.5061209 1103.316
+170083.062477862 3.5060816 1103.316
+170084.0624779663 3.5060816 1103.3949
+170085.0624780706 3.5061603 1103.3555
+170086.0624781749 3.5061998 1103.3949
+170087.0624782792 3.5061603 1103.3752
+170088.0624783835 3.5061998 1103.2963
+170089.0624784878 3.5061998 1103.3555
+170090.0624785922 3.5061998 1103.3357
+170091.0624786965 3.5061209 1103.3949
+170092.0624788008 3.5061998 1103.3357
+170093.0624789051 3.5061998 1103.3949
+170094.0624790094 3.5061603 1103.3752
+170095.0624791137 3.5062785 1103.3555
+170096.062479218 3.5061998 1103.3949
+170097.0624793223 3.5062392 1103.3949
+170098.0624794266 3.5062785 1103.3949
+170099.0624795309 3.5061998 1103.3949
+170100.0624796352 3.5063179 1103.2963
+170101.0624797395 3.5063179 1103.4344
+170102.0624798439 3.5062785 1103.3752
+170103.0624799482 3.5062785 1103.3949
+170104.0624800525 3.5063572 1103.3555
+170105.0624801568 3.5062785 1103.4147
+170106.0624802611 3.5062392 1103.2963
+170107.0624803654 3.5063965 1103.2172
+170108.0624804697 3.5063965 1103.3752
+170109.062480574 3.5064359 1103.3949
+170110.0624806783 3.5063965 1103.3949
+170111.0624807826 3.5064359 1103.3752
+170112.0624808869 3.5063179 1103.3555
+170113.0624809912 3.5064754 1103.3555
+170114.0624810955 3.5063965 1103.316
+170115.0624811999 3.5064359 1103.3555
+170116.0624813042 3.5064359 1103.3555
+170117.0624814085 3.5064754 1103.3949
+170118.0624815128 3.5064754 1103.316
+170119.0624816171 3.5063572 1103.3949
+170120.0624817214 3.5063965 1103.2567
+170121.0624818257 3.5065148 1103.316
+170122.06248193 3.5065148 1103.2765
+170123.0624820343 3.5064754 1103.3752
+170124.0624821386 3.5065541 1103.316
+170125.0624822429 3.5066721 1103.4147
+170126.0624823472 3.5064754 1103.3752
+170127.0624824516 3.5065148 1103.2765
+170128.0624825559 3.5065935 1103.316
+170129.0624826602 3.5065935 1103.316
+170130.0624827645 3.5066721 1103.2963
+170131.0624828688 3.5066721 1103.3555
+170132.0624829731 3.5065935 1103.3357
+170133.0624830774 3.5067115 1103.3555
+170134.0624831817 3.5066328 1103.3555
+170135.062483286 3.5067508 1103.3949
+170136.0624833903 3.5067115 1103.2567
+170137.0624834946 3.5067508 1103.2765
+170138.0624835989 3.5067508 1103.3949
+170139.0624837033 3.5067904 1103.2567
+170140.0624838076 3.5069084 1103.3357
+170141.0624839119 3.5067508 1103.316
+170142.0624840162 3.5067115 1103.3555
+170143.0624841205 3.5067115 1103.2765
+170144.0624842248 3.5068297 1103.2963
+170145.0624843291 3.5069084 1103.4147
+170146.0624844334 3.5067904 1103.3949
+170147.0624845377 3.5067904 1103.3752
+170148.062484642 3.5069084 1103.2963
+170149.0624847463 3.5067508 1103.3357
+170150.0624848506 3.5067904 1103.3357
+170151.0624849549 3.5068297 1103.4344
+170152.0624850593 3.5069478 1103.316
+170153.0624851636 3.5069478 1103.4542
+170154.0624852679 3.5069478 1103.4147
+170155.0624853722 3.5069871 1103.4147
+170156.0624854765 3.5070264 1103.3357
+170157.0624855808 3.5069478 1103.2765
+170158.0624856851 3.5069084 1103.3357
+170159.0624857894 3.5070264 1103.316
+170160.0624858937 3.5069871 1103.2765
+170161.062485998 3.5070264 1103.2963
+170162.0624861023 3.5070658 1103.3555
+170163.0624862066 3.5070658 1103.4147
+170164.062486311 3.5071447 1103.4344
+170165.0624864153 3.5070658 1103.2172
+170166.0624865196 3.5070658 1103.3555
+170167.0624866239 3.5071054 1103.3357
+170168.0624867282 3.5072234 1103.3555
+170169.0624868325 3.5070658 1103.4344
+170170.0624869368 3.5072234 1103.3555
+170171.0624870411 3.5072627 1103.3949
+170172.0624871454 3.507184 1103.3555
+170173.0624872497 3.5072627 1103.2963
+170174.062487354 3.507184 1103.2765
+170175.0624874583 3.5072234 1103.3752
+170176.0624875627 3.5072234 1103.3752
+170177.062487667 3.5072627 1103.3949
+170178.0624877713 3.507302 1103.4542
+170179.0624878756 3.5073807 1103.3357
+170180.0624879799 3.5072627 1103.3752
+170181.0624880842 3.507302 1103.4344
+170182.0624881885 3.5073414 1103.3357
+170183.0624882928 3.5073807 1103.4344
+170184.0624883971 3.5073807 1103.3555
+170185.0624885014 3.5074203 1103.3752
+170186.0624886057 3.5073414 1103.4542
+170187.06248871 3.5073807 1103.3555
+170188.0624888144 3.5075777 1103.3555
+170189.0624889187 3.507499 1103.3555
+170190.062489023 3.5076563 1103.2963
+170191.0624891273 3.5075383 1103.4147
+170192.0624892316 3.5075777 1103.3555
+170193.0624893359 3.5075383 1103.3752
+170194.0624894402 3.5075777 1103.2765
+170195.0624895445 3.5075777 1103.3357
+170196.0624896488 3.5076957 1103.3949
+170197.0624897531 3.5076563 1103.3555
+170198.0624898574 3.5076957 1103.2963
+170199.0624899617 3.5076563 1103.316
+170200.062490066 3.5077353 1103.2963
+170201.0624901704 3.5078139 1103.4344
+170202.0624902747 3.5077353 1103.4344
+170203.062490379 3.5077353 1103.4147
+170204.0624904833 3.5078533 1103.3357
+170205.0624905876 3.5078533 1103.3555
+170206.0624906919 3.5078926 1103.3752
+170207.0624907962 3.5078533 1103.316
+170208.0624909005 3.5079319 1103.474
+170209.0624910048 3.5078533 1103.3949
+170210.0624911091 3.5079319 1103.3357
+170211.0624912134 3.5080502 1103.3357
+170212.0624913177 3.5079713 1103.3752
+170213.0624914221 3.5079319 1103.4147
+170214.0624915264 3.5078533 1103.3752
+170215.0624916307 3.5080502 1103.3555
+170216.062491735 3.5080502 1103.316
+170217.0624918393 3.5080106 1103.3357
+170218.0624919436 3.5080502 1103.4344
+170219.0624920479 3.5080502 1103.3357
+170220.0624921522 3.5080895 1103.316
+170221.0624922565 3.5080502 1103.3357
+170222.0624923608 3.5080895 1103.3752
+170223.0624924651 3.5081682 1103.3555
+170224.0624925694 3.5080502 1103.3752
+170225.0624926738 3.5080502 1103.4542
+170226.0624927781 3.5080895 1103.4344
+170227.0624928824 3.5080895 1103.3357
+170228.0624929867 3.5080895 1103.3555
+170229.062493091 3.5081289 1103.3752
+170230.0624931953 3.5080502 1103.4344
+170231.0624932996 3.5081682 1103.3357
+170232.0624934039 3.5081682 1103.3752
+170233.0624935082 3.5081289 1103.3357
+170234.0624936125 3.5081289 1103.3555
+170235.0624937168 3.5082076 1103.2765
+170236.0624938211 3.5082469 1103.2963
+170237.0624939254 3.5082862 1103.3949
+170238.0624940298 3.5082862 1103.4147
+170239.0624941341 3.5082862 1103.3555
+170240.0624942384 3.5082469 1103.2369
+170241.0624943427 3.5083258 1103.2567
+170242.062494447 3.5083652 1103.3357
+170243.0624945513 3.5082862 1103.3949
+170244.0624946556 3.5083652 1103.3357
+170245.0624947599 3.5082862 1103.4147
+170246.0624948642 3.5084045 1103.316
+170247.0624949685 3.5084045 1103.2567
+170248.0624950728 3.5084438 1103.3555
+170249.0624951771 3.5083652 1103.4147
+170250.0624952815 3.5083652 1103.3949
+170251.0624953858 3.5084045 1103.3555
+170252.0624954901 3.5084045 1103.3357
+170253.0624955944 3.5084045 1103.4542
+170254.0624956987 3.5084045 1103.3949
+170255.062495803 3.5084832 1103.2963
+170256.0624959073 3.5084832 1103.2963
+170257.0624960116 3.5084438 1103.3357
+170258.0624961159 3.5085225 1103.3555
+170259.0624962202 3.5084832 1103.2963
+170260.0624963245 3.5085225 1103.3949
+170261.0624964288 3.5084832 1103.3555
+170262.0624965332 3.5086012 1103.316
+170263.0624966375 3.5085225 1103.2765
+170264.0624967418 3.5085618 1103.3357
+170265.0624968461 3.5084832 1103.3752
+170266.0624969504 3.5085225 1103.316
+170267.0624970547 3.5085225 1103.3357
+170268.062497159 3.5086408 1103.3949
+170269.0624972633 3.5085618 1103.3357
+170270.0624973676 3.5087194 1103.316
+170271.0624974719 3.5086408 1103.3949
+170272.0624975762 3.5086408 1103.3949
+170273.0624976805 3.5086801 1103.2963
+170274.0624977848 3.5087588 1103.4542
+170275.0624978892 3.5086801 1103.3752
+170276.0624979935 3.5087981 1103.3555
+170277.0624980978 3.5087194 1103.316
+170278.0624982021 3.5088375 1103.3357
+170279.0624983064 3.5088375 1103.3555
+170280.0624984107 3.5087588 1103.3357
+170281.062498515 3.5087588 1103.3555
+170282.0624986193 3.5087588 1103.3357
+170283.0624987236 3.5088768 1103.3357
+170284.0624988279 3.5088768 1103.3357
+170285.0624989322 3.5088375 1103.3357
+170286.0624990365 3.5088768 1103.3752
+170287.0624991409 3.5089161 1103.2963
+170288.0624992452 3.5089557 1103.3357
+170289.0624993495 3.5089161 1103.3555
+170290.0624994538 3.5088768 1103.316
+170291.0624995581 3.5088768 1103.3357
+170292.0624996624 3.5090344 1103.316
+170293.0624997667 3.5090344 1103.3949
+170294.062499871 3.5089951 1103.3949
+170295.0624999753 3.5089951 1103.3555
+170296.0625000796 3.5090344 1103.3752
+170297.0625001839 3.5091131 1103.3357
+170298.0625002882 3.5090737 1103.3752
+170299.0625003926 3.5090344 1103.3555
+170300.0625004969 3.5089951 1103.3949
+170301.0625006012 3.5090344 1103.3752
+170302.0625007055 3.5090344 1103.3949
+170303.0625008098 3.5091131 1103.3949
+170304.0625009141 3.5091524 1103.316
+170305.0625010184 3.5091524 1103.3949
+170306.0625011227 3.5091524 1103.3357
+170307.062501227 3.5090737 1103.2567
+170308.0625013313 3.5091131 1103.3555
+170309.0625014356 3.5089951 1103.316
+170310.0625015399 3.5091524 1103.2369
+170311.0625016443 3.5090737 1103.316
+170312.0625017486 3.5090737 1103.3357
+170313.0625018529 3.5091131 1103.3752
+170314.0625019572 3.5091131 1103.316
+170315.0625020615 3.5091131 1103.4147
+170316.0625021658 3.5091524 1103.3752
+170317.0625022701 3.5091131 1103.3949
+170318.0625023744 3.5091524 1103.3752
+170319.0625024787 3.5091524 1103.2765
+170320.062502583 3.5092707 1103.3555
+170321.0625026873 3.5092707 1103.3555
+170322.0625027916 3.5092311 1103.3555
+170323.0625028959 3.5092311 1103.3357
+170324.0625030003 3.50931 1103.3752
+170325.0625031046 3.5091918 1103.316
+170326.0625032089 3.5093493 1103.3555
+170327.0625033132 3.5092707 1103.2963
+170328.0625034175 3.50931 1103.3357
+170329.0625035218 3.5093493 1103.316
+170330.0625036261 3.5093493 1103.2765
+170331.0625037304 3.5093493 1103.316
+170332.0625038347 3.5093493 1103.316
+170333.062503939 3.5094674 1103.2765
+170334.0625040433 3.5093887 1103.3555
+170335.0625041476 3.5093887 1103.3752
+170336.062504252 3.5094674 1103.2963
+170337.0625043563 3.5094674 1103.3357
+170338.0625044606 3.5094674 1103.2765
+170339.0625045649 3.5094674 1103.3949
+170340.0625046692 3.5096643 1103.3555
+170341.0625047735 3.5094674 1103.4147
+170342.0625048778 3.5095856 1103.4147
+170343.0625049821 3.509546 1103.4542
+170344.0625050864 3.5096643 1103.3555
+170345.0625051907 3.509625 1103.316
+170346.062505295 3.5095856 1103.3949
+170347.0625053993 3.5096643 1103.3949
+170348.0625055037 3.509625 1103.3752
+170349.062505608 3.509625 1103.3949
+170350.0625057123 3.5096643 1103.3357
+170351.0625058166 3.5097036 1103.3555
+170352.0625059209 3.5097036 1103.2963
+170353.0625060252 3.509625 1103.2369
+170354.0625061295 3.509743 1103.4147
+170355.0625062338 3.5096643 1103.3357
+170356.0625063381 3.5097823 1103.3555
+170357.0625064424 3.5098612 1103.316
+170358.0625065467 3.509743 1103.3752
+170359.062506651 3.509743 1103.3949
+170360.0625067553 3.5098217 1103.2765
+170361.0625068597 3.5098612 1103.3555
+170362.062506964 3.509743 1103.3752
+170363.0625070683 3.5100186 1103.3357
+170364.0625071726 3.5098217 1103.3357
+170365.0625072769 3.509743 1103.3555
+170366.0625073812 3.5098612 1103.2963
+170367.0625074855 3.5099399 1103.4344
+170368.0625075898 3.5100186 1103.3357
+170369.0625076941 3.5098612 1103.3357
+170370.0625077984 3.5098217 1103.4147
+170371.0625079027 3.5098612 1103.2963
+170372.062508007 3.5099792 1103.3949
+170373.0625081114 3.5098612 1103.3357
+170374.0625082157 3.5099006 1103.4147
+170375.06250832 3.5099399 1103.2963
+170376.0625084243 3.5099792 1103.2963
+170377.0625085286 3.5099006 1103.3555
+170378.0625086329 3.5098612 1103.2369
+170379.0625087372 3.5099792 1103.2567
+170380.0625088415 3.5100186 1103.3357
+170381.0625089458 3.5100579 1103.3949
+170382.0625090501 3.5099399 1103.3357
+170383.0625091544 3.5100186 1103.316
+170384.0625092587 3.5100186 1103.3949
+170385.0625093631 3.5099792 1103.3357
+170386.0625094674 3.5099792 1103.3949
+170387.0625095717 3.5099399 1103.3949
+170388.062509676 3.5100579 1103.3357
+170389.0625097803 3.5100973 1103.2963
+170390.0625098846 3.5100579 1103.2369
+170391.0625099889 3.5100973 1103.4147
+170392.0625100932 3.5100186 1103.3555
+170393.0625101975 3.5101366 1103.3949
+170394.0625103018 3.5100973 1103.2963
+170395.0625104061 3.5101762 1103.3752
+170396.0625105104 3.5101762 1103.316
+170397.0625106147 3.5101762 1103.3752
+170398.0625107191 3.5102155 1103.3555
+170399.0625108234 3.5100973 1103.2369
+170400.0625109277 3.5101366 1103.2963
+170401.062511032 3.5100973 1103.3949
+170402.0625111363 3.5101366 1103.2963
+170403.0625112406 3.5102549 1103.3752
+170404.0625113449 3.5102549 1103.3357
+170405.0625114492 3.5102942 1103.3555
+170406.0625115535 3.5102942 1103.316
+170407.0625116578 3.5101762 1103.3752
+170408.0625117621 3.5102549 1103.316
+170409.0625118664 3.5102549 1103.3752
+170410.0625119708 3.5103335 1103.316
+170411.0625120751 3.5102942 1103.2963
+170412.0625121794 3.5102549 1103.3357
+170413.0625122837 3.5102549 1103.4147
+170414.062512388 3.5103335 1103.2963
+170415.0625124923 3.5104122 1103.4147
+170416.0625125966 3.5104516 1103.316
+170417.0625127009 3.5103335 1103.316
+170418.0625128052 3.5103729 1103.3752
+170419.0625129095 3.5103729 1103.3752
+170420.0625130138 3.5105305 1103.316
+170421.0625131181 3.5104516 1103.3949
+170422.0625132225 3.5105305 1103.3752
+170423.0625133268 3.5104911 1103.3555
+170424.0625134311 3.5106485 1103.316
+170425.0625135354 3.5105698 1103.3949
+170426.0625136397 3.5105698 1103.3555
+170427.062513744 3.5106485 1103.1975
+170428.0625138483 3.5105698 1103.2567
+170429.0625139526 3.5106091 1103.2567
+170430.0625140569 3.5106091 1103.3752
+170431.0625141612 3.5105698 1103.3752
+170432.0625142655 3.5105698 1103.3555
+170433.0625143698 3.5106485 1103.3949
+170434.0625144742 3.5106878 1103.3949
+170435.0625145785 3.5106485 1103.3949
+170436.0625146828 3.5107272 1103.3949
+170437.0625147871 3.5107665 1103.3357
+170438.0625148914 3.5107272 1103.3357
+170439.0625149957 3.5107272 1103.3949
+170440.0625151 3.5107272 1103.3949
+170441.0625152043 3.5107665 1103.316
+170442.0625153086 3.5107665 1103.3357
+170443.0625154129 3.5108061 1103.3949
+170444.0625155172 3.5107665 1103.3357
+170445.0625156215 3.5108454 1103.4147
+170446.0625157258 3.5107665 1103.2963
+170447.0625158302 3.5108848 1103.2963
+170448.0625159345 3.5108454 1103.4344
+170449.0625160388 3.5107272 1103.316
+170450.0625161431 3.5108061 1103.3555
+170451.0625162474 3.5108061 1103.3357
+170452.0625163517 3.5108061 1103.3555
+170453.062516456 3.5108454 1103.3357
+170454.0625165603 3.5108454 1103.3357
+170455.0625166646 3.5109241 1103.3949
+170456.0625167689 3.5108848 1103.2765
+170457.0625168732 3.5109241 1103.3357
+170458.0625169775 3.5109634 1103.3752
+170459.0625170819 3.5109241 1103.2765
+170460.0625171862 3.5110028 1103.474
+170461.0625172905 3.5110421 1103.3752
+170462.0625173948 3.511121 1103.3555
+170463.0625174991 3.5110028 1103.316
+170464.0625176034 3.5110028 1103.3555
+170465.0625177077 3.5111604 1103.3357
+170466.062517812 3.5110421 1103.316
+170467.0625179163 3.5110815 1103.2963
+170468.0625180206 3.5111604 1103.316
+170469.0625181249 3.5109634 1103.3949
+170470.0625182292 3.5110421 1103.3752
+170471.0625183336 3.511121 1103.4344
+170472.0625184379 3.5111604 1103.3357
+170473.0625185422 3.511121 1103.316
+170474.0625186465 3.5110815 1103.316
+170475.0625187508 3.5111604 1103.4147
+170476.0625188551 3.5111997 1103.2963
+170477.0625189594 3.5110815 1103.2963
+170478.0625190637 3.5110815 1103.3555
+170479.062519168 3.511121 1103.3555
+170480.0625192723 3.5110815 1103.316
+170481.0625193766 3.5110815 1103.2963
+170482.0625194809 3.5112391 1103.3555
+170483.0625195852 3.5111997 1103.4542
+170484.0625196896 3.5111997 1103.4542
+170485.0625197939 3.5111604 1103.3555
+170486.0625198982 3.5112391 1103.2765
+170487.0625200025 3.5111997 1103.2765
+170488.0625201068 3.5111997 1103.316
+170489.0625202111 3.5113177 1103.3949
+170490.0625203154 3.5112784 1103.3357
+170491.0625204197 3.5112391 1103.316
+170492.062520524 3.5113177 1103.3555
+170493.0625206283 3.5112784 1103.3752
+170494.0625207326 3.5112784 1103.2567
+170495.0625208369 3.5113177 1103.3555
+170496.0625209413 3.5113571 1103.316
+170497.0625210456 3.5113964 1103.3949
+170498.0625211499 3.5113571 1103.4344
+170499.0625212542 3.511436 1103.2963
+170500.0625213585 3.5113964 1103.3555
+170501.0625214628 3.5113571 1103.3357
+170502.0625215671 3.5112784 1103.2765
+170503.0625216714 3.511436 1103.2963
+170504.0625217757 3.5114753 1103.2765
+170505.06252188 3.5114753 1103.3949
+170506.0625219843 3.5113571 1103.3357
+170507.0625220886 3.511436 1103.2963
+170508.062522193 3.5114753 1103.3949
+170509.0625222973 3.5114753 1103.4344
+170510.0625224016 3.511554 1103.3555
+170511.0625225059 3.5115147 1103.316
+170512.0625226102 3.511554 1103.316
+170513.0625227145 3.511554 1103.3357
+170514.0625228188 3.5116327 1103.316
+170515.0625229231 3.511672 1103.2369
+170516.0625230274 3.5116327 1103.4147
+170517.0625231317 3.5117116 1103.316
+170518.062523236 3.5117116 1103.4147
+170519.0625233403 3.5117116 1103.3555
+170520.0625234446 3.511672 1103.2963
+170521.062523549 3.5117509 1103.3357
+170522.0625236533 3.5118296 1103.3752
+170523.0625237576 3.511869 1103.2963
+170524.0625238619 3.511869 1103.2369
+170525.0625239662 3.5117116 1103.3555
+170526.0625240705 3.5117509 1103.2963
+170527.0625241748 3.5118296 1103.316
+170528.0625242791 3.5118296 1103.3357
+170529.0625243834 3.5119083 1103.3357
+170530.0625244877 3.5117903 1103.316
+170531.062524592 3.5118296 1103.3555
+170532.0625246963 3.5117509 1103.316
+170533.0625248007 3.5118296 1103.3357
+170534.062524905 3.5119476 1103.3357
+170535.0625250093 3.5119083 1103.3357
+170536.0625251136 3.5119083 1103.4542
+170537.0625252179 3.5119083 1103.3752
+170538.0625253222 3.5119083 1103.3357
+170539.0625254265 3.5121052 1103.2567
+170540.0625255308 3.511987 1103.3357
+170541.0625256351 3.5120659 1103.3555
+170542.0625257394 3.5121052 1103.2963
+170543.0625258437 3.5121052 1103.2765
+170544.062525948 3.5120265 1103.3752
+170545.0625260524 3.5122232 1103.316
+170546.0625261567 3.5121446 1103.3555
+170547.062526261 3.5121052 1103.316
+170548.0625263653 3.5122232 1103.316
+170549.0625264696 3.5122232 1103.316
+170550.0625265739 3.5122232 1103.2567
+170551.0625266782 3.5122232 1103.3752
+170552.0625267825 3.5123019 1103.3949
+170553.0625268868 3.5121839 1103.3949
+170554.0625269911 3.5123415 1103.3752
+170555.0625270954 3.5122232 1103.3555
+170556.0625271997 3.5123019 1103.3555
+170557.0625273041 3.5123415 1103.3555
+170558.0625274084 3.5121839 1103.3752
+170559.0625275127 3.5122626 1103.3752
+170560.062527617 3.5123019 1103.4344
+170561.0625277213 3.5123415 1103.3555
+170562.0625278256 3.5122232 1103.316
+170563.0625279299 3.5122626 1103.3949
+170564.0625280342 3.5123415 1103.2963
+170565.0625281385 3.5124595 1103.3752
+170566.0625282428 3.5123808 1103.3752
+170567.0625283471 3.5123019 1103.3357
+170568.0625284514 3.5123415 1103.3357
+170569.0625285557 3.5124595 1103.316
+170570.0625286601 3.5124989 1103.3357
+170571.0625287644 3.5123808 1103.3357
+170572.0625288687 3.5124202 1103.316
+170573.062528973 3.5124202 1103.3555
+170574.0625290773 3.5124202 1103.3357
+170575.0625291816 3.5124202 1103.316
+170576.0625292859 3.5124202 1103.3555
+170577.0625293902 3.5124595 1103.3357
+170578.0625294945 3.5124989 1103.3752
+170579.0625295988 3.5124595 1103.316
+170580.0625297031 3.5125382 1103.316
+170581.0625298074 3.5125382 1103.316
+170582.0625299118 3.5125775 1103.316
+170583.0625300161 3.5126169 1103.3949
+170584.0625301204 3.5126169 1103.316
+170585.0625302247 3.5125775 1103.2963
+170586.062530329 3.5126169 1103.3752
+170587.0625304333 3.5126169 1103.4542
+170588.0625305376 3.5126958 1103.3555
+170589.0625306419 3.5126169 1103.2963
+170590.0625307462 3.5126565 1103.316
+170591.0625308505 3.5126565 1103.3949
+170592.0625309548 3.5126958 1103.3357
+170593.0625310591 3.5126169 1103.316
+170594.0625311635 3.5126958 1103.4147
+170595.0625312678 3.5127745 1103.3949
+170596.0625313721 3.5126958 1103.316
+170597.0625314764 3.5126565 1103.3949
+170598.0625315807 3.5126958 1103.3949
+170599.062531685 3.5127745 1103.3357
+170600.0625317893 3.5128531 1103.316
+170601.0625318936 3.5127745 1103.316
+170602.0625319979 3.5128925 1103.4344
+170603.0625321022 3.5128531 1103.3555
+170604.0625322065 3.5129318 1103.2765
+170605.0625323108 3.5128925 1103.3555
+170606.0625324151 3.5128531 1103.2765
+170607.0625325195 3.5128138 1103.2963
+170608.0625326238 3.5130107 1103.3949
+170609.0625327281 3.5128531 1103.3357
+170610.0625328324 3.5129714 1103.3555
+170611.0625329367 3.5130107 1103.3949
+170612.062533041 3.5130107 1103.3752
+170613.0625331453 3.5130107 1103.4147
+170614.0625332496 3.5130894 1103.316
+170615.0625333539 3.5130501 1103.3752
+170616.0625334582 3.5131681 1103.4542
+170617.0625335625 3.5130894 1103.3357
+170618.0625336668 3.5131288 1103.3752
+170619.0625337712 3.5131288 1103.4344
+170620.0625338755 3.5131681 1103.2963
+170621.0625339798 3.5132074 1103.3357
+170622.0625340841 3.5131681 1103.3555
+170623.0625341884 3.5132468 1103.3949
+170624.0625342927 3.5132074 1103.3357
+170625.062534397 3.5132074 1103.3555
+170626.0625345013 3.5132468 1103.3752
+170627.0625346056 3.5132074 1103.4542
+170628.0625347099 3.5132864 1103.3555
+170629.0625348142 3.5133257 1103.2765
+170630.0625349185 3.5133257 1103.2963
+170631.0625350229 3.5132864 1103.2963
+170632.0625351272 3.5132864 1103.3752
+170633.0625352315 3.5134044 1103.3555
+170634.0625353358 3.513365 1103.3555
+170635.0625354401 3.513365 1103.3949
+170636.0625355444 3.513483 1103.3555
+170637.0625356487 3.513365 1103.316
+170638.062535753 3.513483 1103.2963
+170639.0625358573 3.513483 1103.3357
+170640.0625359616 3.513483 1103.3555
+170641.0625360659 3.5134437 1103.4147
+170642.0625361702 3.5135224 1103.3555
+170643.0625362745 3.5134437 1103.316
+170644.0625363789 3.513562 1103.3357
+170645.0625364832 3.5135224 1103.3555
+170646.0625365875 3.513562 1103.3357
+170647.0625366918 3.5136406 1103.2963
+170648.0625367961 3.5136013 1103.3752
+170649.0625369004 3.51368 1103.4147
+170650.0625370047 3.51368 1103.3555
+170651.062537109 3.5137587 1103.3555
+170652.0625372133 3.5137193 1103.2765
+170653.0625373176 3.5137193 1103.2963
+170654.0625374219 3.5136406 1103.4344
+170655.0625375262 3.513798 1103.316
+170656.0625376306 3.5137193 1103.316
+170657.0625377349 3.513798 1103.4147
+170658.0625378392 3.5137193 1103.3357
+170659.0625379435 3.5137587 1103.3357
+170660.0625380478 3.5137587 1103.3949
+170661.0625381521 3.513798 1103.3357
+170662.0625382564 3.513798 1103.2567
+170663.0625383607 3.5137193 1103.3949
+170664.062538465 3.513798 1103.4344
+170665.0625385693 3.5138373 1103.316
+170666.0625386736 3.513798 1103.3752
+170667.0625387779 3.5137587 1103.3555
+170668.0625388823 3.5138373 1103.2765
+170669.0625389866 3.5138373 1103.3357
+170670.0625390909 3.5137587 1103.3555
+170671.0625391952 3.5138373 1103.2963
+170672.0625392995 3.5138373 1103.3555
+170673.0625394038 3.5137587 1103.2963
+170674.0625395081 3.513798 1103.3949
+170675.0625396124 3.5137587 1103.3555
+170676.0625397167 3.513798 1103.3752
+170677.062539821 3.5137587 1103.3752
+170678.0625399253 3.5138769 1103.2765
+170679.0625400296 3.5138769 1103.3357
+170680.0625401339 3.5138769 1103.3357
+170681.0625402383 3.5138769 1103.316
+170682.0625403426 3.5137193 1103.3752
+170683.0625404469 3.5137193 1103.3555
+170684.0625405512 3.513798 1103.3752
+170685.0625406555 3.5139949 1103.316
+170686.0625407598 3.513798 1103.4147
+170687.0625408641 3.5139556 1103.3949
+170688.0625409684 3.5138769 1103.3357
+170689.0625410727 3.5138769 1103.3357
+170690.062541177 3.5139556 1103.3752
+170691.0625412813 3.5138769 1103.2765
+170692.0625413856 3.5138769 1103.2765
+170693.06254149 3.5139556 1103.3752
+170694.0625415943 3.5138769 1103.2963
+170695.0625416986 3.5139163 1103.4147
+170696.0625418029 3.5138769 1103.2963
+170697.0625419072 3.5139949 1103.3555
+170698.0625420115 3.5139949 1103.3752
+170699.0625421158 3.5139163 1103.2567
+170700.0625422201 3.5138373 1103.2963
+170701.0625423244 3.5140343 1103.3752
+170702.0625424287 3.5139556 1103.3555
+170703.062542533 3.5138769 1103.4147
+170704.0625426373 3.5140343 1103.3555
+170705.0625427417 3.5140343 1103.3555
+170706.062542846 3.5140343 1103.3357
+170707.0625429503 3.5140343 1103.4147
+170708.0625430546 3.5140736 1103.2963
+170709.0625431589 3.5141919 1103.3752
+170710.0625432632 3.5141919 1103.2567
+170711.0625433675 3.5141523 1103.3752
+170712.0625434718 3.5140343 1103.3949
+170713.0625435761 3.5141523 1103.3555
+170714.0625436804 3.5141523 1103.2963
+170715.0625437847 3.5141129 1103.316
+170716.062543889 3.5142705 1103.316
+170717.0625439934 3.5143099 1103.316
+170718.0625440977 3.5142705 1103.3357
+170719.062544202 3.5143099 1103.3555
+170720.0625443063 3.5142705 1103.3949
+170721.0625444106 3.5144279 1103.3949
+170722.0625445149 3.5143492 1103.3555
+170723.0625446192 3.5143492 1103.3555
+170724.0625447235 3.5144672 1103.3555
+170725.0625448278 3.5144672 1103.3357
+170726.0625449321 3.5143099 1103.3357
+170727.0625450364 3.5143886 1103.3752
+170728.0625451407 3.5144279 1103.3752
+170729.062545245 3.5143886 1103.3555
+170730.0625453494 3.5145068 1103.3752
+170731.0625454537 3.5144279 1103.3752
+170732.062545558 3.5145068 1103.3752
+170733.0625456623 3.5144672 1103.3357
+170734.0625457666 3.5145068 1103.3752
+170735.0625458709 3.5145462 1103.2765
+170736.0625459752 3.5144279 1103.4147
+170737.0625460795 3.5145068 1103.3555
+170738.0625461838 3.5145855 1103.3357
+170739.0625462881 3.5145462 1103.4147
+170740.0625463924 3.5145068 1103.3752
+170741.0625464967 3.5146248 1103.3555
+170742.0625466011 3.5145855 1103.4542
+170743.0625467054 3.5146642 1103.3949
+170744.0625468097 3.5147035 1103.3357
+170745.062546914 3.5146248 1103.316
+170746.0625470183 3.5147429 1103.2765
+170747.0625471226 3.5146642 1103.2765
+170748.0625472269 3.5146642 1103.3949
+170749.0625473312 3.5146642 1103.3357
+170750.0625474355 3.5147429 1103.2963
+170751.0625475398 3.5147035 1103.2765
+170752.0625476441 3.5148218 1103.3949
+170753.0625477484 3.5148218 1103.2765
+170754.0625478528 3.5147822 1103.316
+170755.0625479571 3.5149398 1103.2765
+170756.0625480614 3.5148611 1103.316
+170757.0625481657 3.5148611 1103.316
+170758.06254827 3.5150185 1103.3752
+170759.0625483743 3.5150185 1103.3357
+170760.0625484786 3.5150185 1103.3357
+170761.0625485829 3.5149398 1103.3949
+170762.0625486872 3.5149004 1103.3555
+170763.0625487915 3.5149791 1103.3949
+170764.0625488958 3.5150578 1103.3752
+170765.0625490001 3.5150185 1103.2963
+170766.0625491044 3.5150185 1103.3949
+170767.0625492088 3.5149791 1103.3555
+170768.0625493131 3.5150971 1103.2172
+170769.0625494174 3.5151367 1103.3752
+170770.0625495217 3.5151761 1103.2567
+170771.062549626 3.5150578 1103.3752
+170772.0625497303 3.5151367 1103.3357
+170773.0625498346 3.5151367 1103.316
+170774.0625499389 3.5151367 1103.4147
+170775.0625500432 3.5151761 1103.316
+170776.0625501475 3.5150578 1103.3752
+170777.0625502518 3.5151761 1103.3357
+170778.0625503561 3.5152154 1103.3357
+170779.0625504605 3.5152547 1103.3752
+170780.0625505648 3.5152941 1103.3555
+170781.0625506691 3.5152941 1103.3949
+170782.0625507734 3.5153728 1103.3357
+170783.0625508777 3.5153728 1103.3555
+170784.062550982 3.5153334 1103.474
+170785.0625510863 3.5153334 1103.3357
+170786.0625511906 3.5153334 1103.3752
+170787.0625512949 3.5153728 1103.3752
+170788.0625513992 3.5154123 1103.316
+170789.0625515035 3.5154123 1103.3357
+170790.0625516078 3.5153728 1103.2963
+170791.0625517122 3.5154123 1103.3949
+170792.0625518165 3.5154517 1103.3357
+170793.0625519208 3.5154123 1103.3555
+170794.0625520251 3.5153728 1103.2963
+170795.0625521294 3.515491 1103.316
+170796.0625522337 3.5154517 1103.3555
+170797.062552338 3.5154123 1103.3357
+170798.0625524423 3.5154123 1103.316
+170799.0625525466 3.5154123 1103.3357
+170800.0625526509 3.5154517 1103.3949
+170801.0625527552 3.5153728 1103.3357
+170802.0625528595 3.515609 1103.3752
+170803.0625529638 3.5155303 1103.3555
+170804.0625530682 3.515491 1103.3555
+170805.0625531725 3.515491 1103.3555
+170806.0625532768 3.515609 1103.4147
+170807.0625533811 3.5155303 1103.3752
+170808.0625534854 3.5155303 1103.3555
+170809.0625535897 3.515609 1103.2765
+170810.062553694 3.515609 1103.2765
+170811.0625537983 3.5155697 1103.4147
+170812.0625539026 3.5156877 1103.3752
+170813.0625540069 3.5156484 1103.3357
+170814.0625541112 3.515609 1103.3555
+170815.0625542155 3.5156877 1103.2765
+170816.0625543199 3.5156877 1103.3752
+170817.0625544242 3.5155303 1103.316
+170818.0625545285 3.5156877 1103.3752
+170819.0625546328 3.5157273 1103.316
+170820.0625547371 3.5157273 1103.3752
+170821.0625548414 3.5158846 1103.3555
+170822.0625549457 3.5157666 1103.4344
+170823.06255505 3.5158846 1103.3752
+170824.0625551543 3.515806 1103.3752
+170825.0625552586 3.5157666 1103.3357
+170826.0625553629 3.5158846 1103.316
+170827.0625554672 3.5158846 1103.3555
+170828.0625555716 3.5158453 1103.2765
+170829.0625556759 3.5160027 1103.2963
+170830.0625557802 3.515924 1103.3555
+170831.0625558845 3.5158846 1103.316
+170832.0625559888 3.5160027 1103.3357
+170833.0625560931 3.5160422 1103.4542
+170834.0625561974 3.5159633 1103.4542
+170835.0625563017 3.5160422 1103.3752
+170836.062556406 3.5160027 1103.3752
+170837.0625565103 3.5160816 1103.3752
+170838.0625566146 3.5160422 1103.2765
+170839.0625567189 3.5160027 1103.2963
+170840.0625568233 3.5160816 1103.3357
+170841.0625569276 3.5160816 1103.316
+170842.0625570319 3.5161996 1103.3752
+170843.0625571362 3.5162389 1103.3357
+170844.0625572405 3.5162389 1103.4344
+170845.0625573448 3.5161602 1103.2963
+170846.0625574491 3.5161996 1103.474
+170847.0625575534 3.5162389 1103.3555
+170848.0625576577 3.5161209 1103.3357
+170849.062557762 3.5162783 1103.3555
+170850.0625578663 3.5162389 1103.3949
+170851.0625579706 3.5161996 1103.2963
+170852.0625580749 3.5162389 1103.2963
+170853.0625581793 3.5162389 1103.4147
+170854.0625582836 3.5162783 1103.2963
+170855.0625583879 3.5162783 1103.3949
+170856.0625584922 3.5162389 1103.3949
+170857.0625585965 3.5163572 1103.316
+170858.0625587008 3.5162389 1103.3555
+170859.0625588051 3.5161996 1103.4344
+170860.0625589094 3.5163965 1103.3752
+170861.0625590137 3.5163176 1103.3555
+170862.062559118 3.5163176 1103.316
+170863.0625592223 3.5163965 1103.3357
+170864.0625593266 3.5162389 1103.2963
+170865.062559431 3.5163176 1103.3555
+170866.0625595353 3.5163176 1103.316
+170867.0625596396 3.5162783 1103.2369
+170868.0625597439 3.5163572 1103.3555
+170869.0625598482 3.5163176 1103.2963
+170870.0625599525 3.5163572 1103.2765
+170871.0625600568 3.5163176 1103.2765
+170872.0625601611 3.5163572 1103.3555
+170873.0625602654 3.5164752 1103.3555
+170874.0625603697 3.5163176 1103.3752
+170875.062560474 3.5162783 1103.4542
+170876.0625605783 3.5163965 1103.3752
+170877.0625606827 3.5163176 1103.4344
+170878.062560787 3.5164359 1103.3555
+170879.0625608913 3.5164752 1103.2963
+170880.0625609956 3.5162783 1103.3949
+170881.0625610999 3.5163965 1103.2567
+170882.0625612042 3.5163965 1103.3357
+170883.0625613085 3.5164359 1103.3555
+170884.0625614128 3.5164359 1103.3357
+170885.0625615171 3.5165145 1103.4147
+170886.0625616214 3.5164359 1103.2765
+170887.0625617257 3.5164752 1103.2963
+170888.06256183 3.5164752 1103.3752
+170889.0625619343 3.5163965 1103.316
+170890.0625620387 3.5164752 1103.3752
+170891.062562143 3.5164359 1103.3357
+170892.0625622473 3.5164752 1103.3357
+170893.0625623516 3.5165145 1103.3949
+170894.0625624559 3.5164752 1103.4147
+170895.0625625602 3.5164752 1103.2567
+170896.0625626645 3.5164752 1103.3357
+170897.0625627688 3.5165145 1103.4344
+170898.0625628731 3.5165145 1103.4147
+170899.0625629774 3.5165145 1103.2963
+170900.0625630817 3.5166721 1103.3555
+170901.062563186 3.5166326 1103.4344
+170902.0625632904 3.5165539 1103.3357
+170903.0625633947 3.5166326 1103.3752
+170904.062563499 3.5165932 1103.3555
+170905.0625636033 3.5165539 1103.3357
+170906.0625637076 3.5165539 1103.3555
+170907.0625638119 3.5166721 1103.3357
+170908.0625639162 3.5165932 1103.316
+170909.0625640205 3.5166721 1103.3752
+170910.0625641248 3.5166721 1103.4147
+170911.0625642291 3.5167115 1103.2765
+170912.0625643334 3.5167508 1103.3949
+170913.0625644377 3.5167115 1103.2765
+170914.0625645421 3.5167508 1103.316
+170915.0625646464 3.5167115 1103.2765
+170916.0625647507 3.5167902 1103.3357
+170917.062564855 3.5168295 1103.4147
+170918.0625649593 3.5167508 1103.316
+170919.0625650636 3.5167115 1103.3555
+170920.0625651679 3.5167902 1103.3949
+170921.0625652722 3.5168295 1103.3555
+170922.0625653765 3.5167902 1103.2963
+170923.0625654808 3.5166721 1103.2765
+170924.0625655851 3.5167508 1103.316
+170925.0625656894 3.5167902 1103.3555
+170926.0625657937 3.5168688 1103.2765
+170927.0625658981 3.5167508 1103.3949
+170928.0625660024 3.5168688 1103.3752
+170929.0625661067 3.5168295 1103.2765
+170930.062566211 3.5167902 1103.3555
+170931.0625663153 3.5168295 1103.2963
+170932.0625664196 3.5168688 1103.3949
+170933.0625665239 3.5167902 1103.3949
+170934.0625666282 3.5168295 1103.316
+170935.0625667325 3.5168688 1103.316
+170936.0625668368 3.5168295 1103.2765
+170937.0625669411 3.5169082 1103.4344
+170938.0625670454 3.5169082 1103.3752
+170939.0625671498 3.5169871 1103.2963
+170940.0625672541 3.5169871 1103.3555
+170941.0625673584 3.5169082 1103.2963
+170942.0625674627 3.5169082 1103.3357
+170943.062567567 3.5169082 1103.3357
+170944.0625676713 3.5169475 1103.316
+170945.0625677756 3.5170264 1103.3357
+170946.0625678799 3.5170264 1103.3752
+170947.0625679842 3.5169871 1103.2963
+170948.0625680885 3.5170264 1103.2765
+170949.0625681928 3.5169871 1103.2765
+170950.0625682971 3.5170264 1103.316
+170951.0625684015 3.5171444 1103.3555
+170952.0625685058 3.5171051 1103.3357
+170953.0625686101 3.5170658 1103.3555
+170954.0625687144 3.5171444 1103.2765
+170955.0625688187 3.5172231 1103.3357
+170956.062568923 3.5171444 1103.2963
+170957.0625690273 3.5171444 1103.3555
+170958.0625691316 3.5171838 1103.3949
+170959.0625692359 3.5172231 1103.3752
+170960.0625693402 3.5172627 1103.4147
+170961.0625694445 3.5172231 1103.3752
+170962.0625695488 3.5172231 1103.2369
+170963.0625696532 3.5172627 1103.3555
+170964.0625697575 3.5173414 1103.3357
+170965.0625698618 3.517302 1103.4542
+170966.0625699661 3.5172627 1103.4147
+170967.0625700704 3.5173414 1103.4344
+170968.0625701747 3.5174594 1103.3555
+170969.062570279 3.5173807 1103.2963
+170970.0625703833 3.517302 1103.3752
+170971.0625704876 3.5173807 1103.2963
+170972.0625705919 3.5173807 1103.3357
+170973.0625706962 3.5174594 1103.316
+170974.0625708005 3.5174987 1103.316
+170975.0625709048 3.5174987 1103.2963
+170976.0625710092 3.5174987 1103.316
+170977.0625711135 3.5174201 1103.2963
+170978.0625712178 3.517617 1103.3555
+170979.0625713221 3.5174987 1103.3555
+170980.0625714264 3.5175776 1103.3357
+170981.0625715307 3.5176563 1103.4542
+170982.062571635 3.517735 1103.3949
+170983.0625717393 3.5176563 1103.316
+170984.0625718436 3.5176957 1103.3555
+170985.0625719479 3.517735 1103.3555
+170986.0625720522 3.5176957 1103.4147
+170987.0625721565 3.5176957 1103.4147
+170988.0625722609 3.5177743 1103.2963
+170989.0625723652 3.5177743 1103.2567
+170990.0625724695 3.5178926 1103.3949
+170991.0625725738 3.5176957 1103.3949
+170992.0625726781 3.5178137 1103.316
+170993.0625727824 3.517853 1103.3555
+170994.0625728867 3.5177743 1103.3555
+170995.062572991 3.517853 1103.2963
+170996.0625730953 3.5180106 1103.3357
+170997.0625731996 3.517853 1103.316
+170998.0625733039 3.5180106 1103.3357
+170999.0625734082 3.5180106 1103.2765
+171000.0625735126 3.5178926 1103.316
+171001.0625736169 3.5179713 1103.3949
+171002.0625737212 3.5179319 1103.2765
+171003.0625738255 3.5180106 1103.2963
+171004.0625739298 3.51805 1103.316
+171005.0625740341 3.5181286 1103.4147
+171006.0625741384 3.5180893 1103.3555
+171007.0625742427 3.518168 1103.474
+171008.062574347 3.51805 1103.3752
+171009.0625744513 3.5182076 1103.2765
+171010.0625745556 3.5181286 1103.3752
+171011.0625746599 3.518168 1103.3357
+171012.0625747642 3.518168 1103.3555
+171013.0625748686 3.5182469 1103.4344
+171014.0625749729 3.518168 1103.3555
+171015.0625750772 3.5181286 1103.3555
+171016.0625751815 3.5182862 1103.2567
+171017.0625752858 3.5182076 1103.3555
+171018.0625753901 3.518168 1103.3752
+171019.0625754944 3.5182862 1103.3555
+171020.0625755987 3.518168 1103.3555
+171021.062575703 3.5183649 1103.3555
+171022.0625758073 3.5184042 1103.316
+171023.0625759116 3.5182469 1103.4147
+171024.0625760159 3.5182469 1103.316
+171025.0625761203 3.5183649 1103.316
+171026.0625762246 3.5184042 1103.3752
+171027.0625763289 3.5184436 1103.3949
+171028.0625764332 3.5184042 1103.316
+171029.0625765375 3.5184042 1103.3752
+171030.0625766418 3.5185618 1103.3357
+171031.0625767461 3.5185225 1103.2765
+171032.0625768504 3.5185618 1103.3555
+171033.0625769547 3.5184829 1103.316
+171034.062577059 3.5184829 1103.2369
+171035.0625771633 3.5185225 1103.3555
+171036.0625772676 3.5184436 1103.4147
+171037.062577372 3.5185225 1103.316
+171038.0625774763 3.5186012 1103.316
+171039.0625775806 3.5185618 1103.3752
+171040.0625776849 3.5185618 1103.3357
+171041.0625777892 3.5186012 1103.3357
+171042.0625778935 3.5186012 1103.2765
+171043.0625779978 3.5186405 1103.3752
+171044.0625781021 3.5186799 1103.3752
+171045.0625782064 3.5186405 1103.316
+171046.0625783107 3.5187192 1103.1975
+171047.062578415 3.5186405 1103.4147
+171048.0625785193 3.5187192 1103.2963
+171049.0625786236 3.5186799 1103.3555
+171050.062578728 3.5187979 1103.3357
+171051.0625788323 3.5187979 1103.2963
+171052.0625789366 3.5187585 1103.2963
+171053.0625790409 3.5187979 1103.316
+171054.0625791452 3.5187585 1103.3752
+171055.0625792495 3.5189161 1103.316
+171056.0625793538 3.5189161 1103.3555
+171057.0625794581 3.5188768 1103.2567
+171058.0625795624 3.5188768 1103.2765
+171059.0625796667 3.5188768 1103.316
+171060.062579771 3.5188375 1103.3949
+171061.0625798753 3.5189948 1103.3357
+171062.0625799797 3.5189555 1103.3949
+171063.062580084 3.5189948 1103.3357
+171064.0625801883 3.5189555 1103.316
+171065.0625802926 3.5189555 1103.3949
+171066.0625803969 3.5190341 1103.3752
+171067.0625805012 3.5189948 1103.2765
+171068.0625806055 3.5189948 1103.3357
+171069.0625807098 3.5191131 1103.2765
+171070.0625808141 3.5191131 1103.3752
+171071.0625809184 3.5191131 1103.3357
+171072.0625810227 3.5190341 1103.2963
+171073.062581127 3.5190341 1103.3949
+171074.0625812314 3.5190341 1103.3752
+171075.0625813357 3.5190735 1103.2567
+171076.06258144 3.5190735 1103.3949
+171077.0625815443 3.5191131 1103.3752
+171078.0625816486 3.5191917 1103.2963
+171079.0625817529 3.5191131 1103.2963
+171080.0625818572 3.5191917 1103.4542
+171081.0625819615 3.5191917 1103.3949
+171082.0625820658 3.5191917 1103.2369
+171083.0625821701 3.5191917 1103.4344
+171084.0625822744 3.5192311 1103.3752
+171085.0625823787 3.5192311 1103.2963
+171086.062582483 3.5191917 1103.3752
+171087.0625825874 3.5192704 1103.3357
+171088.0625826917 3.5192311 1103.3357
+171089.062582796 3.5193098 1103.2963
+171090.0625829003 3.5193098 1103.3949
+171091.0625830046 3.5193098 1103.3555
+171092.0625831089 3.5193491 1103.316
+171093.0625832132 3.5192704 1103.3357
+171094.0625833175 3.519428 1103.3752
+171095.0625834218 3.519428 1103.3555
+171096.0625835261 3.5193884 1103.4344
+171097.0625836304 3.5193491 1103.3357
+171098.0625837347 3.5193491 1103.3752
+171099.0625838391 3.5193884 1103.3555
+171100.0625839434 3.5195067 1103.3357
+171101.0625840477 3.519546 1103.3555
+171102.062584152 3.5194674 1103.316
+171103.0625842563 3.5194674 1103.3357
+171104.0625843606 3.5194674 1103.3949
+171105.0625844649 3.5196247 1103.3555
+171106.0625845692 3.519546 1103.4147
+171107.0625846735 3.5195067 1103.3555
+171108.0625847778 3.5196247 1103.3357
+171109.0625848821 3.5195067 1103.4542
+171110.0625849864 3.5195854 1103.4147
+171111.0625850908 3.5197034 1103.4344
+171112.0625851951 3.5196247 1103.3752
+171113.0625852994 3.5196247 1103.3357
+171114.0625854037 3.5196247 1103.316
+171115.062585508 3.5195854 1103.4542
+171116.0625856123 3.519743 1103.3555
+171117.0625857166 3.5197823 1103.316
+171118.0625858209 3.5197034 1103.2963
+171119.0625859252 3.5196247 1103.2765
+171120.0625860295 3.519743 1103.3949
+171121.0625861338 3.5197823 1103.3357
+171122.0625862381 3.519743 1103.2963
+171123.0625863425 3.5199003 1103.2567
+171124.0625864468 3.519743 1103.4147
+171125.0625865511 3.5198216 1103.3357
+171126.0625866554 3.5199003 1103.3555
+171127.0625867597 3.5198216 1103.3357
+171128.062586864 3.5199397 1103.316
+171129.0625869683 3.5199397 1103.4147
+171130.0625870726 3.5200579 1103.2567
+171131.0625871769 3.5199397 1103.3949
+171132.0625872812 3.5200183 1103.3752
+171133.0625873855 3.519979 1103.3752
+171134.0625874898 3.519979 1103.3949
+171135.0625875941 3.5200183 1103.316
+171136.0625876985 3.5200579 1103.2765
+171137.0625878028 3.519979 1103.3357
+171138.0625879071 3.5200579 1103.2963
+171139.0625880114 3.5200973 1103.3949
+171140.0625881157 3.5200183 1103.2963
+171141.06258822 3.5201366 1103.3555
+171142.0625883243 3.5201759 1103.316
+171143.0625884286 3.5201366 1103.3357
+171144.0625885329 3.5201759 1103.3357
+171145.0625886372 3.5201366 1103.3357
+171146.0625887415 3.520294 1103.3752
+171147.0625888458 3.520294 1103.316
+171148.0625889502 3.5201759 1103.3555
+171149.0625890545 3.5202153 1103.3752
+171150.0625891588 3.520294 1103.3357
+171151.0625892631 3.5202153 1103.3555
+171152.0625893674 3.5202153 1103.2765
+171153.0625894717 3.520294 1103.3949
+171154.062589576 3.5202546 1103.3357
+171155.0625896803 3.5202153 1103.2765
+171156.0625897846 3.5203333 1103.4344
+171157.0625898889 3.5202546 1103.2567
+171158.0625899932 3.5203333 1103.3357
+171159.0625900975 3.520294 1103.316
+171160.0625902019 3.520294 1103.3555
+171161.0625903062 3.5203333 1103.2963
+171162.0625904105 3.5204122 1103.4147
+171163.0625905148 3.5204122 1103.3949
+171164.0625906191 3.5203333 1103.4147
+171165.0625907234 3.5203729 1103.2765
+171166.0625908277 3.5204515 1103.4147
+171167.062590932 3.520294 1103.3949
+171168.0625910363 3.5204909 1103.3752
+171169.0625911406 3.5204122 1103.4147
+171170.0625912449 3.5204909 1103.3357
+171171.0625913492 3.5205696 1103.3752
+171172.0625914535 3.5204909 1103.3949
+171173.0625915579 3.5206485 1103.3555
+171174.0625916622 3.5205696 1103.3357
+171175.0625917665 3.5204909 1103.3555
+171176.0625918708 3.5205696 1103.3357
+171177.0625919751 3.5206089 1103.3949
+171178.0625920794 3.5204515 1103.3752
+171179.0625921837 3.5204909 1103.316
+171180.062592288 3.5206485 1103.3357
+171181.0625923923 3.5204909 1103.2567
+171182.0625924966 3.5206485 1103.3949
+171183.0625926009 3.5206485 1103.2963
+171184.0625927052 3.5206878 1103.3357
+171185.0625928096 3.5206089 1103.3752
+171186.0625929139 3.5207272 1103.3949
+171187.0625930182 3.5207272 1103.3357
+171188.0625931225 3.5206485 1103.3357
+171189.0625932268 3.5207665 1103.2765
+171190.0625933311 3.5206878 1103.3752
+171191.0625934354 3.5207272 1103.2765
+171192.0625935397 3.5207272 1103.2963
+171193.062593644 3.5208058 1103.3949
+171194.0625937483 3.5208058 1103.4344
+171195.0625938524 3.5207272 1103.3949
+171196.0625939567 3.5208058 1103.316
+171197.062594061 3.5208845 1103.4147
+171198.0625941653 3.5208845 1103.3555
+171199.0625942696 3.5208845 1103.3357
+171200.0625943739 3.5208845 1103.3949
+171201.0625944783 3.5208452 1103.3752
+171202.0625945826 3.5209634 1103.3357
+171203.0625946869 3.5209239 1103.3357
+171204.0625947912 3.5208845 1103.316
+171205.0625948955 3.5209634 1103.2765
+171206.0625949998 3.5209634 1103.2963
+171207.0625951041 3.5210028 1103.3949
+171208.0625952084 3.5209634 1103.3357
+171209.0625953127 3.5209239 1103.3555
+171210.062595417 3.5210421 1103.316
+171211.0625955213 3.5210421 1103.316
+171212.0625956256 3.5210421 1103.3555
+171213.0625957299 3.5210421 1103.3357
+171214.0625958343 3.5210421 1103.3357
+171215.0625959386 3.5210028 1103.3555
+171216.0625960429 3.5211208 1103.3555
+171217.0625961472 3.5211995 1103.2765
+171218.0625962515 3.5211995 1103.3357
+171219.0625963558 3.5211601 1103.3752
+171220.0625964601 3.5212388 1103.3357
+171221.0625965644 3.5211995 1103.316
+171222.0625966687 3.5211601 1103.4344
+171223.062596773 3.5211601 1103.4147
+171224.0625968773 3.5211208 1103.4344
+171225.0625969816 3.5211995 1103.3752
+171226.062597086 3.5211601 1103.3357
+171227.0625971903 3.5213177 1103.3555
+171228.0625972946 3.5211208 1103.3555
+171229.0625973989 3.5212388 1103.3752
+171230.0625975032 3.5211995 1103.4147
+171231.0625976075 3.5212784 1103.3357
+171232.0625977118 3.5212388 1103.3752
+171233.0625978161 3.5212784 1103.2369
+171234.0625979204 3.5213177 1103.2369
+171235.0625980247 3.5213177 1103.2172
+171236.062598129 3.5214357 1103.4542
+171237.0625982333 3.5213571 1103.3357
+171238.0625983377 3.5214357 1103.3357
+171239.062598442 3.5213571 1103.3949
+171240.0625985463 3.5213571 1103.3949
+171241.0625986506 3.5214357 1103.3555
+171242.0625987549 3.5213571 1103.3752
+171243.0625988592 3.5213964 1103.316
+171244.0625989635 3.5214357 1103.2765
+171245.0625990678 3.5214751 1103.2765
+171246.0625991721 3.5213964 1103.3752
+171247.0625992764 3.5214751 1103.3752
+171248.0625993807 3.5214751 1103.316
+171249.062599485 3.5214751 1103.3949
+171250.0625995894 3.5216327 1103.3949
+171251.0625996937 3.5215538 1103.2963
+171252.062599798 3.5214751 1103.3949
+171253.0625999023 3.5215538 1103.3555
+171254.0626000066 3.5215538 1103.3752
+171255.0626001109 3.5216327 1103.2369
+171256.0626002152 3.5215933 1103.3949
+171257.0626003195 3.5215538 1103.1777
+171258.0626004238 3.521672 1103.3752
+171259.0626005281 3.521672 1103.3357
+171260.0626006324 3.5216327 1103.3357
+171261.0626007367 3.5215144 1103.316
+171262.062600841 3.521672 1103.2963
+171263.0626009454 3.5217507 1103.2963
+171264.0626010497 3.521672 1103.3555
+171265.062601154 3.521672 1103.3752
+171266.0626012583 3.5217113 1103.2963
+171267.0626013626 3.5218294 1103.3752
+171268.0626014669 3.5217507 1103.3555
+171269.0626015712 3.521672 1103.3555
+171270.0626016755 3.5217113 1103.2963
+171271.0626017798 3.52179 1103.3949
+171272.0626018841 3.521672 1103.3949
+171273.0626019884 3.5217507 1103.4147
+171274.0626020927 3.5218294 1103.316
+171275.0626021971 3.5217507 1103.4147
+171276.0626023014 3.5218294 1103.4147
+171277.0626024057 3.52179 1103.2765
+171278.06260251 3.5219083 1103.3555
+171279.0626026143 3.5219083 1103.3357
+171280.0626027186 3.5219083 1103.316
+171281.0626028229 3.5219083 1103.2765
+171282.0626029272 3.521987 1103.316
+171283.0626030315 3.5219083 1103.3752
+171284.0626031358 3.5219083 1103.2765
+171285.0626032401 3.521987 1103.1975
+171286.0626033444 3.5220263 1103.4344
+171287.0626034488 3.521987 1103.2963
+171288.0626035531 3.5220656 1103.2765
+171289.0626036574 3.5220656 1103.3752
+171290.0626037617 3.5221443 1103.316
+171291.062603866 3.5220263 1103.4147
+171292.0626039703 3.522105 1103.3752
+171293.0626040746 3.5220263 1103.4147
+171294.0626041789 3.522105 1103.4147
+171295.0626042832 3.5221837 1103.3949
+171296.0626043875 3.5221443 1103.3752
+171297.0626044918 3.5221837 1103.316
+171298.0626045961 3.5221837 1103.3555
+171299.0626047004 3.5222232 1103.3949
+171300.0626048048 3.5222232 1103.474
+171301.0626049091 3.5223019 1103.316
+171302.0626050134 3.5222232 1103.3555
+171303.0626051177 3.5222626 1103.3357
+171304.062605222 3.5222626 1103.2963
+171305.0626053263 3.5223019 1103.3752
+171306.0626054306 3.5223019 1103.4147
+171307.0626055349 3.5223413 1103.2567
+171308.0626056392 3.5222626 1103.2963
+171309.0626057435 3.5223806 1103.3357
+171310.0626058478 3.5224199 1103.2963
+171311.0626059521 3.5224593 1103.2963
+171312.0626060565 3.5223806 1103.3949
+171313.0626061608 3.5223019 1103.3357
+171314.0626062651 3.5223806 1103.3949
+171315.0626063694 3.5224593 1103.3752
+171316.0626064737 3.5224988 1103.2963
+171317.062606578 3.5225382 1103.3357
+171318.0626066823 3.5225382 1103.3555
+171319.0626067866 3.5224593 1103.3949
+171320.0626068909 3.5225382 1103.3357
+171321.0626069952 3.5225775 1103.2963
+171322.0626070995 3.5225775 1103.3949
+171323.0626072038 3.5224988 1103.2765
+171324.0626073082 3.5225775 1103.3357
+171325.0626074125 3.5225775 1103.3752
+171326.0626075168 3.5225775 1103.2963
+171327.0626076211 3.5225775 1103.3555
+171328.0626077254 3.5226955 1103.2963
+171329.0626078297 3.5226562 1103.4542
+171330.062607934 3.5226169 1103.3752
+171331.0626080383 3.5226562 1103.3555
+171332.0626081426 3.5227349 1103.3752
+171333.0626082469 3.5226955 1103.3752
+171334.0626083512 3.5226562 1103.316
+171335.0626084555 3.5226955 1103.3949
+171336.0626085598 3.5227742 1103.2765
+171337.0626086642 3.5227742 1103.3555
+171338.0626087685 3.5228138 1103.3752
+171339.0626088728 3.5228138 1103.4147
+171340.0626089771 3.5228531 1103.3357
+171341.0626090814 3.5228531 1103.3357
+171342.0626091857 3.5227742 1103.3752
+171343.06260929 3.5227349 1103.316
+171344.0626093943 3.5228531 1103.316
+171345.0626094986 3.5229318 1103.3555
+171346.0626096029 3.5228531 1103.316
+171347.0626097072 3.5228531 1103.2963
+171348.0626098115 3.5228531 1103.3357
+171349.0626099159 3.5228138 1103.3752
+171350.0626100202 3.5228531 1103.3752
+171351.0626101245 3.5229318 1103.3357
+171352.0626102288 3.5229318 1103.3555
+171353.0626103331 3.5230105 1103.3555
+171354.0626104374 3.5230498 1103.316
+171355.0626105417 3.5229712 1103.2963
+171356.062610646 3.5230105 1103.3555
+171357.0626107503 3.5230498 1103.3752
+171358.0626108546 3.5229712 1103.4147
+171359.0626109589 3.5229712 1103.3752
+171360.0626110632 3.5231287 1103.4147
+171361.0626111676 3.5230498 1103.316
+171362.0626112719 3.5230105 1103.2765
+171363.0626113762 3.5232468 1103.4344
+171364.0626114805 3.5230498 1103.2567
+171365.0626115848 3.5230498 1103.2765
+171366.0626116891 3.5232074 1103.3357
+171367.0626117934 3.5231287 1103.2963
+171368.0626118977 3.5232074 1103.3555
+171369.062612002 3.5232074 1103.3555
+171370.0626121063 3.5230892 1103.316
+171371.0626122106 3.5231287 1103.316
+171372.0626123149 3.5232468 1103.3555
+171373.0626124192 3.5232468 1103.3357
+171374.0626125236 3.5232468 1103.2963
+171375.0626126279 3.5232861 1103.316
+171376.0626127322 3.5232861 1103.3357
+171377.0626128365 3.5233254 1103.3949
+171378.0626129408 3.5233254 1103.4147
+171379.0626130451 3.5234041 1103.3752
+171380.0626131494 3.5233648 1103.3752
+171381.0626132537 3.5233648 1103.3555
+171382.062613358 3.5234437 1103.3949
+171383.0626134623 3.5234041 1103.3357
+171384.0626135666 3.5234041 1103.2765
+171385.0626136709 3.5233648 1103.2963
+171386.0626137753 3.523483 1103.3752
+171387.0626138796 3.5234041 1103.2963
+171388.0626139839 3.523483 1103.2963
+171389.0626140882 3.5234437 1103.2963
+171390.0626141925 3.5236011 1103.2963
+171391.0626142968 3.5235617 1103.3555
+171392.0626144011 3.5235617 1103.2765
+171393.0626145054 3.5236011 1103.3555
+171394.0626146097 3.5236011 1103.2765
+171395.062614714 3.5236797 1103.316
+171396.0626148183 3.5236797 1103.3555
+171397.0626149226 3.5236011 1103.316
+171398.062615027 3.5236011 1103.316
+171399.0626151313 3.5236404 1103.3949
+171400.0626152356 3.5236797 1103.4344
+171401.0626153399 3.5237191 1103.3357
+171402.0626154442 3.5236011 1103.3949
+171403.0626155485 3.5236404 1103.316
+171404.0626156528 3.5236797 1103.3949
+171405.0626157571 3.5237586 1103.2765
+171406.0626158614 3.5237586 1103.3555
+171407.0626159657 3.5237191 1103.3555
+171408.06261607 3.5235617 1103.3357
+171409.0626161743 3.5237586 1103.3949
+171410.0626162787 3.5237191 1103.3357
+171411.062616383 3.5237191 1103.3555
+171412.0626164873 3.5237586 1103.316
+171413.0626165916 3.5237191 1103.2963
+171414.0626166959 3.5237586 1103.4147
+171415.0626168002 3.5236404 1103.4147
+171416.0626169045 3.523798 1103.3555
+171417.0626170088 3.523798 1103.3357
+171418.0626171131 3.523798 1103.474
+171419.0626172174 3.523798 1103.316
+171420.0626173217 3.5238373 1103.3357
+171421.062617426 3.5238373 1103.316
+171422.0626175303 3.5238373 1103.3357
+171423.0626176347 3.523798 1103.316
+171424.062617739 3.523798 1103.2765
+171425.0626178433 3.5238373 1103.3555
+171426.0626179476 3.523798 1103.474
+171427.0626180519 3.5238373 1103.3949
+171428.0626181562 3.5238373 1103.3555
+171429.0626182605 3.523916 1103.3949
+171430.0626183648 3.5238373 1103.3357
+171431.0626184691 3.523916 1103.3555
+171432.0626185734 3.523916 1103.4147
+171433.0626186777 3.5239553 1103.2567
+171434.062618782 3.5239553 1103.3949
+171435.0626188864 3.5238767 1103.3357
+171436.0626189907 3.5239553 1103.3949
+171437.062619095 3.5238767 1103.316
+171438.0626191993 3.5239947 1103.3752
+171439.0626193036 3.5239947 1103.3949
+171440.0626194079 3.5240736 1103.3357
+171441.0626195122 3.5239947 1103.3357
+171442.0626196165 3.524034 1103.2963
+171443.0626197208 3.5239947 1103.3357
+171444.0626198251 3.5241129 1103.4147
+171445.0626199294 3.5240736 1103.4542
+171446.0626200337 3.524231 1103.2765
+171447.0626201381 3.5241129 1103.3357
+171448.0626202424 3.5241916 1103.3555
+171449.0626203467 3.5241916 1103.2765
+171450.062620451 3.5241916 1103.3949
+171451.0626205553 3.5241916 1103.2567
+171452.0626206596 3.5241916 1103.3555
+171453.0626207639 3.5241916 1103.3555
+171454.0626208682 3.5243096 1103.3949
+171455.0626209725 3.5241916 1103.3752
+171456.0626210768 3.5243096 1103.4147
+171457.0626211811 3.5241916 1103.316
+171458.0626212854 3.524231 1103.3357
+171459.0626213897 3.5244279 1103.3555
+171460.0626214941 3.5242703 1103.3357
+171461.0626215984 3.5243492 1103.3949
+171462.0626217027 3.5242703 1103.316
+171463.062621807 3.5243886 1103.2963
+171464.0626219113 3.5243886 1103.3555
+171465.0626220156 3.5243886 1103.4344
+171466.0626221199 3.5244279 1103.316
+171467.0626222242 3.5244279 1103.3752
+171468.0626223285 3.5243886 1103.3555
+171469.0626224328 3.5243492 1103.3357
+171470.0626225371 3.5244279 1103.3555
+171471.0626226414 3.5245852 1103.3752
+171472.0626227458 3.5243492 1103.3752
+171473.0626228501 3.5244672 1103.2567
+171474.0626229544 3.5246246 1103.3949
+171475.0626230587 3.5245852 1103.2567
+171476.062623163 3.5245066 1103.3752
+171477.0626232673 3.5245459 1103.316
+171478.0626233716 3.5246642 1103.2369
+171479.0626234759 3.5246246 1103.2963
+171480.0626235802 3.5246642 1103.316
+171481.0626236845 3.5246246 1103.3949
+171482.0626237888 3.5247035 1103.4344
+171483.0626238931 3.5247035 1103.3357
+171484.0626239975 3.5247035 1103.3949
+171485.0626241018 3.5247035 1103.3357
+171486.0626242061 3.5247428 1103.2765
+171487.0626243104 3.5247822 1103.2963
+171488.0626244147 3.5247428 1103.2963
+171489.062624519 3.5247822 1103.3949
+171490.0626246233 3.5248215 1103.3949
+171491.0626247276 3.5248215 1103.4344
+171492.0626248319 3.5248215 1103.316
+171493.0626249362 3.5249002 1103.2765
+171494.0626250405 3.5247822 1103.4344
+171495.0626251448 3.5248609 1103.3752
+171496.0626252491 3.5249395 1103.316
+171497.0626253535 3.5248609 1103.3357
+171498.0626254578 3.5249791 1103.2765
+171499.0626255621 3.5249791 1103.2567
+171500.0626256664 3.5249791 1103.316
+171501.0626257707 3.5250185 1103.2963
+171502.062625875 3.5250578 1103.2963
+171503.0626259793 3.5250971 1103.3357
+171504.0626260836 3.5250578 1103.3357
+171505.0626261879 3.5249791 1103.3949
+171506.0626262922 3.5250185 1103.3555
+171507.0626263965 3.5250578 1103.3752
+171508.0626265008 3.5249791 1103.2963
+171509.0626266052 3.5250578 1103.3752
+171510.0626267095 3.5250185 1103.3752
+171511.0626268138 3.5251365 1103.3949
+171512.0626269181 3.5251365 1103.3357
+171513.0626270224 3.5252151 1103.316
+171514.0626271267 3.5250971 1103.316
+171515.062627231 3.5250578 1103.4147
+171516.0626273353 3.5250578 1103.316
+171517.0626274396 3.5251365 1103.4542
+171518.0626275439 3.5250971 1103.2765
+171519.0626276482 3.5251758 1103.2963
+171520.0626277525 3.5251758 1103.2765
+171521.0626278569 3.5251758 1103.3752
+171522.0626279612 3.5251758 1103.3752
+171523.0626280655 3.5252151 1103.3357
+171524.0626281698 3.5252151 1103.474
+171525.0626282741 3.5251758 1103.3555
+171526.0626283784 3.5253334 1103.3752
+171527.0626284827 3.5252545 1103.3555
+171528.062628587 3.5252941 1103.3949
+171529.0626286913 3.5253334 1103.2963
+171530.0626287956 3.5254121 1103.2765
+171531.0626288999 3.5253334 1103.2765
+171532.0626290042 3.5254908 1103.2963
+171533.0626291086 3.5253334 1103.316
+171534.0626292129 3.5254121 1103.3357
+171535.0626293172 3.5254514 1103.3949
+171536.0626294215 3.5254121 1103.316
+171537.0626295258 3.5254121 1103.2765
+171538.0626296301 3.5255694 1103.3357
+171539.0626297344 3.5255301 1103.3752
+171540.0626298387 3.525609 1103.316
+171541.062629943 3.5255301 1103.3357
+171542.0626300473 3.5255694 1103.316
+171543.0626301516 3.5255301 1103.3555
+171544.0626302559 3.5255301 1103.3949
+171545.0626303602 3.5256484 1103.4147
+171546.0626304646 3.525609 1103.316
+171547.0626305689 3.5256484 1103.3357
+171548.0626306732 3.5255694 1103.3752
+171549.0626307775 3.525609 1103.3555
+171550.0626308818 3.5256877 1103.316
+171551.0626309861 3.5256484 1103.3949
+171552.0626310904 3.525609 1103.316
+171553.0626311947 3.5256877 1103.316
+171554.062631299 3.5258057 1103.3949
+171555.0626314033 3.5258057 1103.316
+171556.0626315076 3.5257664 1103.3949
+171557.0626316119 3.5258451 1103.3949
+171558.0626317163 3.5258451 1103.2963
+171559.0626318206 3.5258057 1103.2567
+171560.0626319249 3.525727 1103.2765
+171561.0626320292 3.5257664 1103.3357
+171562.0626321335 3.5258844 1103.3357
+171563.0626322378 3.5258844 1103.3752
+171564.0626323421 3.5258844 1103.2567
+171565.0626324464 3.525924 1103.3555
+171566.0626325507 3.5259633 1103.3357
+171567.062632655 3.5258844 1103.316
+171568.0626327593 3.5259633 1103.2963
+171569.0626328636 3.5260026 1103.3752
+171570.062632968 3.526042 1103.3357
+171571.0626330723 3.525924 1103.3357
+171572.0626331766 3.5260813 1103.3357
+171573.0626332809 3.5259633 1103.316
+171574.0626333852 3.526042 1103.3752
+171575.0626334895 3.525924 1103.2765
+171576.0626335938 3.5261996 1103.3752
+171577.0626336981 3.5260813 1103.3752
+171578.0626338024 3.5260813 1103.3357
+171579.0626339067 3.526042 1103.316
+171580.062634011 3.5260813 1103.2963
+171581.0626341153 3.5260813 1103.3555
+171582.0626342196 3.5260813 1103.2765
+171583.062634324 3.526042 1103.2567
+171584.0626344283 3.5260813 1103.3555
+171585.0626345326 3.5261207 1103.2963
+171586.0626346369 3.52616 1103.3555
+171587.0626347412 3.5261207 1103.316
+171588.0626348455 3.5261207 1103.2172
+171589.0626349498 3.5260813 1103.2963
+171590.0626350541 3.52616 1103.316
+171591.0626351584 3.5260813 1103.316
+171592.0626352627 3.5262783 1103.2567
+171593.062635367 3.5261207 1103.3949
+171594.0626354713 3.5261207 1103.3752
+171595.0626355757 3.5260813 1103.316
+171596.06263568 3.5262389 1103.3949
+171597.0626357843 3.5260813 1103.2963
+171598.0626358886 3.5262389 1103.3949
+171599.0626359929 3.5261996 1103.3357
+171600.0626360972 3.5263176 1103.4344
+171601.0626362015 3.5262783 1103.3555
+171602.0626363058 3.5262783 1103.3949
+171603.0626364101 3.5262389 1103.3555
+171604.0626365144 3.5262783 1103.3555
+171605.0626366187 3.5261996 1103.3949
+171606.062636723 3.5263963 1103.3949
+171607.0626368274 3.5262389 1103.316
+171608.0626369317 3.5263963 1103.3555
+171609.062637036 3.5263963 1103.316
+171610.0626371403 3.5264356 1103.316
+171611.0626372446 3.5263963 1103.3752
+171612.0626373489 3.5263176 1103.316
+171613.0626374532 3.5262783 1103.2963
+171614.0626375575 3.5264356 1103.316
+171615.0626376618 3.5264356 1103.4147
+171616.0626377661 3.5263963 1103.3555
+171617.0626378704 3.5263963 1103.3752
+171618.0626379747 3.5264356 1103.4542
+171619.062638079 3.5263963 1103.3752
+171620.0626381834 3.5265145 1103.4147
+171621.0626382877 3.5265539 1103.3357
+171622.062638392 3.526475 1103.3949
+171623.0626384963 3.5265932 1103.316
+171624.0626386006 3.5265145 1103.3555
+171625.0626387049 3.5266719 1103.316
+171626.0626388092 3.5265145 1103.3752
+171627.0626389135 3.5265145 1103.3752
+171628.0626390178 3.5266325 1103.316
+171629.0626391221 3.5265539 1103.3752
+171630.0626392264 3.5265539 1103.2963
+171631.0626393307 3.5267506 1103.3949
+171632.0626394351 3.5266719 1103.474
+171633.0626395394 3.5266325 1103.2765
+171634.0626396437 3.5267112 1103.3555
+171635.062639748 3.5266325 1103.3357
+171636.0626398523 3.5267506 1103.3357
+171637.0626399566 3.5267899 1103.316
+171638.0626400609 3.5267506 1103.2765
+171639.0626401652 3.5267899 1103.4147
+171640.0626402695 3.5267899 1103.4147
+171641.0626403738 3.5267899 1103.3357
+171642.0626404781 3.5268295 1103.316
+171643.0626405824 3.5268295 1103.3357
+171644.0626406868 3.5267899 1103.3752
+171645.0626407911 3.5269475 1103.3357
+171646.0626408954 3.5269082 1103.3555
+171647.0626409997 3.5269475 1103.3357
+171648.062641104 3.5269475 1103.3949
+171649.0626412083 3.5270655 1103.3555
+171650.0626413126 3.5269868 1103.3752
+171651.0626414169 3.5268295 1103.3949
+171652.0626415212 3.5269082 1103.2567
+171653.0626416255 3.5269868 1103.3949
+171654.0626417298 3.5269868 1103.2963
+171655.0626418341 3.5269868 1103.316
+171656.0626419385 3.5271444 1103.3949
+171657.0626420428 3.5270655 1103.4147
+171658.0626421471 3.5271049 1103.3357
+171659.0626422514 3.5271444 1103.2765
+171660.0626423557 3.5271838 1103.2765
+171661.06264246 3.5271444 1103.2963
+171662.0626425643 3.5271838 1103.316
+171663.0626426686 3.5272231 1103.3555
+171664.0626427729 3.5272624 1103.3555
+171665.0626428772 3.5271838 1103.2765
+171666.0626429815 3.5273018 1103.3555
+171667.0626430858 3.5273018 1103.316
+171668.0626431901 3.5272624 1103.2963
+171669.0626432945 3.5272624 1103.2963
+171670.0626433988 3.5272231 1103.3752
+171671.0626435031 3.5273018 1103.3555
+171672.0626436074 3.5273411 1103.3357
+171673.0626437117 3.5272624 1103.4147
+171674.062643816 3.5273018 1103.2963
+171675.0626439203 3.5272231 1103.3357
+171676.0626440246 3.5273805 1103.316
+171677.0626441289 3.5273411 1103.3357
+171678.0626442332 3.5271838 1103.3357
+171679.0626443375 3.5273411 1103.3949
+171680.0626444418 3.5273805 1103.3752
+171681.0626445462 3.5273018 1103.4147
+171682.0626446505 3.5274198 1103.3357
+171683.0626447548 3.5273411 1103.2963
+171684.0626448591 3.5273805 1103.3357
+171685.0626449634 3.5273805 1103.3357
+171686.0626450677 3.5273411 1103.3555
+171687.062645172 3.5274987 1103.2963
+171688.0626452763 3.5273805 1103.3752
+171689.0626453806 3.5273805 1103.3752
+171690.0626454849 3.5274198 1103.3949
+171691.0626455892 3.5273411 1103.3555
+171692.0626456935 3.5274594 1103.3555
+171693.0626457979 3.5273805 1103.316
+171694.0626459022 3.5274594 1103.2567
+171695.0626460065 3.5274594 1103.3555
+171696.0626461108 3.5274594 1103.3949
+171697.0626462151 3.5275381 1103.3357
+171698.0626463194 3.5274594 1103.3555
+171699.0626464237 3.5275381 1103.4147
+171700.062646528 3.5274987 1103.3555
+171701.0626466323 3.5275381 1103.2567
+171702.0626467366 3.5274987 1103.3949
+171703.0626468409 3.5276167 1103.3357
+171704.0626469452 3.5276167 1103.3555
+171705.0626470495 3.5276167 1103.3357
+171706.0626471539 3.5276561 1103.2567
+171707.0626472582 3.5276167 1103.3949
+171708.0626473625 3.5276561 1103.2765
+171709.0626474668 3.5276167 1103.3752
+171710.0626475711 3.5276167 1103.4344
+171711.0626476754 3.5276561 1103.4542
+171712.0626477797 3.5277743 1103.3357
+171713.062647884 3.5276954 1103.316
+171714.0626479883 3.5276954 1103.4938
+171715.0626480926 3.5276561 1103.2963
+171716.0626481969 3.5278137 1103.3949
+171717.0626483012 3.5277348 1103.3949
+171718.0626484056 3.5277743 1103.3949
+171719.0626485099 3.5277743 1103.3555
+171720.0626486142 3.5278137 1103.2172
+171721.0626487185 3.5278924 1103.3555
+171722.0626488228 3.5277743 1103.4147
+171723.0626489271 3.527853 1103.3949
+171724.0626490314 3.5278137 1103.316
+171725.0626491357 3.5278137 1103.4147
+171726.06264924 3.5278924 1103.3555
+171727.0626493443 3.5279317 1103.2765
+171728.0626494486 3.527853 1103.316
+171729.0626495529 3.527971 1103.3555
+171730.0626496573 3.5279317 1103.3357
+171731.0626497616 3.5279317 1103.3555
+171732.0626498659 3.5280893 1103.3752
+171733.0626499702 3.527971 1103.3752
+171734.0626500745 3.5280104 1103.3357
+171735.0626501788 3.5280499 1103.3752
+171736.0626502831 3.5279317 1103.3555
+171737.0626503874 3.5280499 1103.3555
+171738.0626504917 3.5280104 1103.3949
+171739.062650596 3.5280499 1103.3752
+171740.0626507003 3.5281286 1103.3555
+171741.0626508046 3.5282073 1103.4147
+171742.0626509089 3.5281286 1103.3555
+171743.0626510133 3.5280893 1103.3357
+171744.0626511176 3.5281286 1103.3949
+171745.0626512219 3.5282466 1103.3357
+171746.0626513262 3.5282073 1103.3555
+171747.0626514305 3.5280893 1103.316
+171748.0626515348 3.5281286 1103.316
+171749.0626516391 3.5282466 1103.3555
+171750.0626517434 3.5282073 1103.3752
+171751.0626518477 3.528286 1103.3752
+171752.062651952 3.5282466 1103.3752
+171753.0626520563 3.528168 1103.2963
+171754.0626521606 3.5282073 1103.3949
+171755.062652265 3.5282466 1103.3357
+171756.0626523693 3.528286 1103.3949
+171757.0626524736 3.5283649 1103.3949
+171758.0626525779 3.5282466 1103.3555
+171759.0626526822 3.5283253 1103.3949
+171760.0626527865 3.528168 1103.3357
+171761.0626528908 3.5282073 1103.4938
+171762.0626529951 3.5282073 1103.2567
+171763.0626530994 3.5283253 1103.3357
+171764.0626532037 3.5283253 1103.2963
+171765.062653308 3.5283253 1103.3949
+171766.0626534123 3.5283649 1103.2963
+171767.0626535167 3.5284042 1103.3752
+171768.062653621 3.5283649 1103.2963
+171769.0626537253 3.5284436 1103.3357
+171770.0626538296 3.5283649 1103.3357
+171771.0626539339 3.5284042 1103.3357
+171772.0626540382 3.5284436 1103.2765
+171773.0626541425 3.5284436 1103.3555
+171774.0626542468 3.5284436 1103.316
+171775.0626543511 3.5284829 1103.3555
+171776.0626544554 3.5285223 1103.2963
+171777.0626545597 3.5284436 1103.2567
+171778.062654664 3.5286009 1103.3949
+171779.0626547684 3.5284042 1103.316
+171780.0626548727 3.5286009 1103.2765
+171781.062654977 3.5285616 1103.3752
+171782.0626550813 3.5285616 1103.2963
+171783.0626551856 3.5284829 1103.4147
+171784.0626552899 3.5284436 1103.3555
+171785.0626553942 3.5285223 1103.3752
+171786.0626554985 3.5286009 1103.3949
+171787.0626556028 3.5285616 1103.3555
+171788.0626557071 3.5286403 1103.2963
+171789.0626558114 3.5286403 1103.3752
+171790.0626559157 3.5286009 1103.316
+171791.06265602 3.5287192 1103.3555
+171792.0626561244 3.5286403 1103.3949
+171793.0626562287 3.5286403 1103.2765
+171794.062656333 3.5286798 1103.3357
+171795.0626564373 3.5286798 1103.3949
+171796.0626565416 3.5286403 1103.3752
+171797.0626566459 3.5287585 1103.3949
+171798.0626567502 3.5287979 1103.3357
+171799.0626568545 3.5288372 1103.3357
+171800.0626569588 3.5287979 1103.316
+171801.0626570631 3.5287585 1103.2963
+171802.0626571674 3.5287979 1103.2765
+171803.0626572717 3.5287585 1103.3752
+171804.0626573761 3.5287979 1103.2963
+171805.0626574804 3.5289159 1103.3555
+171806.0626575847 3.5288372 1103.3949
+171807.062657689 3.5288372 1103.316
+171808.0626577933 3.5289948 1103.316
+171809.0626578976 3.5289552 1103.3357
+171810.0626580019 3.5289159 1103.3555
+171811.0626581062 3.5289159 1103.4542
+171812.0626582105 3.5289552 1103.316
+171813.0626583148 3.5289552 1103.2567
+171814.0626584191 3.5289552 1103.316
+171815.0626585234 3.5290341 1103.3555
+171816.0626586278 3.5289948 1103.3555
+171817.0626587321 3.5288765 1103.316
+171818.0626588364 3.5289948 1103.3555
+171819.0626589407 3.5289948 1103.2963
+171820.062659045 3.5289552 1103.3949
+171821.0626591493 3.5289948 1103.3555
+171822.0626592536 3.5290341 1103.3357
+171823.0626593579 3.5291128 1103.316
+171824.0626594622 3.5289948 1103.3949
+171825.0626595665 3.5290341 1103.3949
+171826.0626596708 3.5290735 1103.316
+171827.0626597751 3.5290735 1103.3555
+171828.0626598794 3.5291522 1103.316
+171829.0626599838 3.5291522 1103.316
+171830.0626600881 3.5291128 1103.316
+171831.0626601924 3.5291522 1103.3752
+171832.0626602967 3.5291915 1103.3357
+171833.062660401 3.5291915 1103.316
+171834.0626605053 3.5291522 1103.3555
+171835.0626606096 3.5291915 1103.3752
+171836.0626607139 3.5291915 1103.3555
+171837.0626608182 3.5291915 1103.3949
+171838.0626609225 3.5292308 1103.3555
+171839.0626610268 3.5292308 1103.3752
+171840.0626611311 3.5293491 1103.316
+171841.0626612355 3.5292308 1103.2963
+171842.0626613398 3.5293097 1103.3752
+171843.0626614441 3.5293491 1103.316
+171844.0626615484 3.5292702 1103.3555
+171845.0626616527 3.5293097 1103.316
+171846.062661757 3.5293884 1103.3357
+171847.0626618613 3.5293884 1103.3752
+171848.0626619656 3.5293097 1103.3752
+171849.0626620699 3.5294671 1103.3752
+171850.0626621742 3.5294278 1103.3949
+171851.0626622785 3.5294671 1103.316
+171852.0626623828 3.5295064 1103.3752
+171853.0626624872 3.5295064 1103.2963
+171854.0626625915 3.5294671 1103.3357
+171855.0626626958 3.5296247 1103.3357
+171856.0626628001 3.5294671 1103.3555
+171857.0626629044 3.5295064 1103.3357
+171858.0626630087 3.5295458 1103.2765
+171859.062663113 3.5295854 1103.4147
+171860.0626632173 3.5295854 1103.2963
+171861.0626633216 3.5295458 1103.3357
+171862.0626634259 3.5296247 1103.3357
+171863.0626635302 3.5296247 1103.4542
+171864.0626636345 3.529664 1103.3357
+171865.0626637388 3.529664 1103.2963
+171866.0626638432 3.5297034 1103.4147
+171867.0626639475 3.5297034 1103.3357
+171868.0626640518 3.5297034 1103.3752
+171869.0626641561 3.5297427 1103.4344
+171870.0626642604 3.5297034 1103.3357
+171871.0626643647 3.5297427 1103.2963
+171872.062664469 3.5298214 1103.3357
+171873.0626645733 3.5298214 1103.316
+171874.0626646776 3.5299003 1103.3555
+171875.0626647819 3.5298214 1103.316
+171876.0626648862 3.5300183 1103.2567
+171877.0626649905 3.529979 1103.4147
+171878.0626650949 3.529979 1103.316
+171879.0626651992 3.5298607 1103.3949
+171880.0626653035 3.5299003 1103.3555
+171881.0626654078 3.5299003 1103.316
+171882.0626655121 3.529979 1103.3555
+171883.0626656164 3.5300183 1103.3357
+171884.0626657207 3.530097 1103.3752
+171885.062665825 3.530097 1103.3357
+171886.0626659293 3.5300577 1103.3357
+171887.0626660336 3.530097 1103.3752
+171888.0626661379 3.530097 1103.3555
+171889.0626662422 3.5301363 1103.3555
+171890.0626663466 3.5301363 1103.4147
+171891.0626664509 3.530097 1103.316
+171892.0626665552 3.530097 1103.3555
+171893.0626666595 3.5301757 1103.3555
+171894.0626667638 3.5301757 1103.3752
+171895.0626668681 3.5301757 1103.2765
+171896.0626669724 3.5302546 1103.4542
+171897.0626670767 3.5302546 1103.3949
+171898.062667181 3.5301757 1103.3357
+171899.0626672853 3.5301363 1103.3357
+171900.0626673896 3.5302546 1103.3555
+171901.0626674939 3.5302939 1103.3357
+171902.0626675982 3.5302546 1103.4344
+171903.0626677026 3.5302939 1103.3949
+171904.0626678069 3.5303726 1103.3949
+171905.0626679112 3.5302939 1103.2963
+171906.0626680155 3.5302546 1103.3752
+171907.0626681198 3.5303726 1103.4344
+171908.0626682241 3.530412 1103.3752
+171909.0626683284 3.530412 1103.316
+171910.0626684327 3.530412 1103.3752
+171911.062668537 3.5303333 1103.2963
+171912.0626686413 3.5304513 1103.3357
+171913.0626687456 3.530412 1103.4147
+171914.0626688499 3.5303726 1103.2765
+171915.0626689543 3.5303726 1103.3752
+171916.0626690586 3.5303333 1103.3752
+171917.0626691629 3.5303726 1103.3752
+171918.0626692672 3.530412 1103.3357
+171919.0626693715 3.5304513 1103.3752
+171920.0626694758 3.5304513 1103.2369
+171921.0626695801 3.5304513 1103.4147
+171922.0626696844 3.5304906 1103.3357
+171923.0626697887 3.5304906 1103.3949
+171924.062669893 3.5304513 1103.316
+171925.0626699973 3.5305302 1103.3357
+171926.0626701016 3.5305696 1103.3752
+171927.062670206 3.5305302 1103.3357
+171928.0626703103 3.5305302 1103.316
+171929.0626704146 3.5305302 1103.3357
+171930.0626705189 3.5305696 1103.2963
+171931.0626706232 3.5305302 1103.3555
+171932.0626707275 3.5306089 1103.2369
+171933.0626708318 3.5306482 1103.3357
+171934.0626709361 3.5306482 1103.2963
+171935.0626710404 3.5307662 1103.3357
+171936.0626711447 3.5306482 1103.316
+171937.062671249 3.5306876 1103.3555
+171938.0626713533 3.5307269 1103.316
+171939.0626714577 3.5305696 1103.4147
+171940.062671562 3.5306876 1103.3357
+171941.0626716663 3.5306876 1103.3752
+171942.0626717706 3.5308056 1103.3752
+171943.0626718749 3.5306876 1103.3357
+171944.0626719792 3.5307269 1103.3555
+171945.0626720835 3.5308056 1103.3752
+171946.0626721878 3.5308056 1103.3752
+171947.0626722921 3.5307662 1103.4542
+171948.0626723964 3.5308056 1103.316
+171949.0626725007 3.5308452 1103.3357
+171950.062672605 3.5308845 1103.3357
+171951.0626727093 3.5308845 1103.3357
+171952.0626728137 3.5307269 1103.2963
+171953.062672918 3.5308452 1103.3357
+171954.0626730223 3.5309238 1103.316
+171955.0626731266 3.5308452 1103.3357
+171956.0626732309 3.5308056 1103.4147
+171957.0626733352 3.5309238 1103.316
+171958.0626734395 3.5310025 1103.3357
+171959.0626735438 3.5309238 1103.3357
+171960.0626736481 3.5309632 1103.3752
+171961.0626737524 3.5309632 1103.3949
+171962.0626738567 3.5310812 1103.3555
+171963.062673961 3.5310025 1103.4147
+171964.0626740654 3.5309632 1103.4344
+171965.0626741697 3.5310419 1103.3949
+171966.062674274 3.5309632 1103.316
+171967.0626743783 3.5310025 1103.3949
+171968.0626744826 3.5310419 1103.316
+171969.0626745869 3.5310025 1103.2963
+171970.0626746912 3.5310812 1103.3752
+171971.0626747955 3.5310025 1103.3357
+171972.0626748998 3.5310419 1103.4147
+171973.0626750041 3.5311205 1103.316
+171974.0626751084 3.5310419 1103.316
+171975.0626752127 3.5310812 1103.2963
+171976.0626753171 3.5311995 1103.3555
+171977.0626754214 3.5310812 1103.316
+171978.0626755257 3.5311995 1103.3752
+171979.06267563 3.5311205 1103.4344
+171980.0626757343 3.5311601 1103.316
+171981.0626758386 3.5311995 1103.4344
+171982.0626759429 3.5313175 1103.4344
+171983.0626760472 3.5310812 1103.4147
+171984.0626761515 3.5311995 1103.3555
+171985.0626762558 3.5313175 1103.3752
+171986.0626763601 3.5312781 1103.3555
+171987.0626764644 3.5313175 1103.4938
+171988.0626765687 3.5313962 1103.3357
+171989.0626766731 3.5313175 1103.4147
+171990.0626767774 3.5311995 1103.3555
+171991.0626768817 3.5313962 1103.2963
+171992.062676986 3.5313962 1103.3357
+171993.0626770903 3.5313175 1103.3949
+171994.0626771946 3.5313175 1103.2963
+171995.0626772989 3.5312781 1103.316
+171996.0626774032 3.5314751 1103.3752
+171997.0626775075 3.5314357 1103.4147
+171998.0626776118 3.5313568 1103.3752
+171999.0626777161 3.5315144 1103.3555
+172000.0626778204 3.5313962 1103.3949
+172001.0626779248 3.5314751 1103.316
+172002.0626780291 3.5315144 1103.2963
+172003.0626781334 3.5315537 1103.4147
+172004.0626782377 3.5315144 1103.3555
+172005.062678342 3.5315537 1103.4344
+172006.0626784463 3.5315144 1103.3752
+172007.0626785506 3.5315144 1103.3357
+172008.0626786549 3.5315931 1103.316
+172009.0626787592 3.53179 1103.3949
+172010.0626788635 3.5315537 1103.3949
+172011.0626789678 3.5317507 1103.316
+172012.0626790721 3.5317111 1103.3555
+172013.0626791765 3.5317111 1103.3752
+172014.0626792808 3.5317507 1103.3555
+172015.0626793851 3.5317507 1103.3357
+172016.0626794894 3.5317507 1103.474
+172017.0626795937 3.5318294 1103.3555
+172018.062679698 3.53179 1103.3752
+172019.0626798023 3.53179 1103.316
+172020.0626799066 3.531908 1103.3752
+172021.0626800109 3.5319474 1103.3752
+172022.0626801152 3.531908 1103.3357
+172023.0626802195 3.5318687 1103.3357
+172024.0626803238 3.5319867 1103.316
+172025.0626804281 3.5320261 1103.316
+172026.0626805325 3.5319474 1103.3357
+172027.0626806368 3.5319867 1103.3752
+172028.0626807411 3.5320656 1103.3949
+172029.0626808454 3.5319867 1103.2963
+172030.0626809497 3.5320261 1103.3752
+172031.062681054 3.5320656 1103.2963
+172032.0626811583 3.5321443 1103.2963
+172033.0626812626 3.5321443 1103.3949
+172034.0626813669 3.5320656 1103.316
+172035.0626814712 3.5321443 1103.2963
+172036.0626815755 3.5321443 1103.316
+172037.0626816798 3.532105 1103.3357
+172038.0626817842 3.532105 1103.3949
+172039.0626818885 3.532223 1103.2172
+172040.0626819928 3.5321443 1103.4344
+172041.0626820971 3.532105 1103.3357
+172042.0626822014 3.5323017 1103.3357
+172043.0626823057 3.532223 1103.3752
+172044.06268241 3.5322623 1103.2963
+172045.0626825143 3.532341 1103.3555
+172046.0626826186 3.5322623 1103.3752
+172047.0626827229 3.5323017 1103.3555
+172048.0626828272 3.5323017 1103.3357
+172049.0626829315 3.5323017 1103.4147
+172050.0626830359 3.5323017 1103.4147
+172051.0626831402 3.5323806 1103.3555
+172052.0626832445 3.5323017 1103.3949
+172053.0626833488 3.5323017 1103.4147
+172054.0626834531 3.5323806 1103.3752
+172055.0626835574 3.5324593 1103.2963
+172056.0626836617 3.5324593 1103.3752
+172057.062683766 3.5325379 1103.3555
+172058.0626838703 3.5324199 1103.2369
+172059.0626839746 3.5324199 1103.3555
+172060.0626840789 3.5324593 1103.3357
+172061.0626841832 3.5324986 1103.3752
+172062.0626842876 3.5324986 1103.3555
+172063.0626843919 3.5324593 1103.3752
+172064.0626844962 3.5324986 1103.2963
+172065.0626846005 3.5326166 1103.3357
+172066.0626847048 3.5326166 1103.316
+172067.0626848091 3.5326166 1103.316
+172068.0626849134 3.532656 1103.3949
+172069.0626850177 3.532656 1103.2369
+172070.062685122 3.532656 1103.2567
+172071.0626852263 3.5327349 1103.4147
+172072.0626853306 3.5328135 1103.2765
+172073.0626854349 3.5327349 1103.3555
+172074.0626855392 3.5327349 1103.3752
+172075.0626856436 3.5328529 1103.3752
+172076.0626857479 3.5328529 1103.2765
+172077.0626858522 3.5327349 1103.3752
+172078.0626859565 3.5326955 1103.3949
+172079.0626860608 3.5328135 1103.3752
+172080.0626861651 3.5328922 1103.3949
+172081.0626862694 3.5328135 1103.316
+172082.0626863737 3.5327349 1103.316
+172083.062686478 3.5328135 1103.3949
+172084.0626865823 3.5328922 1103.4542
+172085.0626866866 3.5328922 1103.3752
+172086.0626867909 3.5329316 1103.3555
+172087.0626868953 3.5329709 1103.2963
+172088.0626869996 3.5329316 1103.3752
+172089.0626871039 3.5328529 1103.3555
+172090.0626872082 3.5329709 1103.3357
+172091.0626873125 3.5329709 1103.3752
+172092.0626874168 3.5330498 1103.3752
+172093.0626875211 3.5328922 1103.3752
+172094.0626876254 3.5330105 1103.3752
+172095.0626877297 3.5330105 1103.3752
+172096.062687834 3.5330105 1103.3752
+172097.0626879383 3.5330892 1103.4147
+172098.0626880426 3.5331285 1103.3949
+172099.062688147 3.5330892 1103.3555
+172100.0626882513 3.5330498 1103.316
+172101.0626883556 3.5330498 1103.316
+172102.0626884599 3.5330892 1103.2765
+172103.0626885642 3.5331285 1103.3357
+172104.0626886685 3.5330892 1103.3357
+172105.0626887728 3.5330892 1103.3949
+172106.0626888771 3.5332072 1103.3555
+172107.0626889814 3.5331285 1103.3752
+172108.0626890857 3.5331678 1103.2765
+172109.06268919 3.5331678 1103.3949
+172110.0626892943 3.5332465 1103.3752
+172111.0626893986 3.5332861 1103.3357
+172112.062689503 3.5332072 1103.3949
+172113.0626896073 3.5332465 1103.3357
+172114.0626897116 3.5333648 1103.316
+172115.0626898159 3.5332861 1103.316
+172116.0626899202 3.5333254 1103.2963
+172117.0626900245 3.5333648 1103.2765
+172118.0626901288 3.5333254 1103.3555
+172119.0626902331 3.5333254 1103.2963
+172120.0626903374 3.5333254 1103.2963
+172121.0626904417 3.5334828 1103.3949
+172122.062690546 3.5333254 1103.3555
+172123.0626906503 3.5333648 1103.3555
+172124.0626907547 3.5335221 1103.316
+172125.062690859 3.5335221 1103.3752
+172126.0626909633 3.533601 1103.3555
+172127.0626910676 3.5336404 1103.3949
+172128.0626911719 3.533601 1103.2963
+172129.0626912762 3.533601 1103.3555
+172130.0626913805 3.5336404 1103.3357
+172131.0626914848 3.5336797 1103.3555
+172132.0626915891 3.5335615 1103.3949
+172133.0626916934 3.5336797 1103.3555
+172134.0626917977 3.5336797 1103.3752
+172135.062691902 3.5336404 1103.3752
+172136.0626920064 3.5336404 1103.4147
+172137.0626921107 3.5337584 1103.3357
+172138.062692215 3.5337191 1103.4344
+172139.0626923193 3.5337191 1103.3555
+172140.0626924236 3.5338371 1103.3949
+172141.0626925279 3.5337977 1103.316
+172142.0626926322 3.5337584 1103.3949
+172143.0626927365 3.5338371 1103.3357
+172144.0626928408 3.5338371 1103.3555
+172145.0626929451 3.5337584 1103.3555
+172146.0626930494 3.5337584 1103.3752
+172147.0626931537 3.5337977 1103.3357
+172148.062693258 3.5337977 1103.4542
+172149.0626933624 3.5338764 1103.3555
+172150.0626934667 3.5338371 1103.3752
+172151.062693571 3.5339553 1103.3357
+172152.0626936753 3.533916 1103.2567
+172153.0626937796 3.533916 1103.316
+172154.0626938839 3.5339553 1103.3949
+172155.0626939882 3.5339947 1103.3555
+172156.0626940925 3.5339553 1103.3949
+172157.0626941968 3.5339947 1103.316
+172158.0626943011 3.533916 1103.3555
+172159.0626944054 3.5340734 1103.3752
+172160.0626945097 3.5340734 1103.316
+172161.0626946141 3.534034 1103.3357
+172162.0626947184 3.5341127 1103.3949
+172163.0626948227 3.5341127 1103.3752
+172164.062694927 3.5341914 1103.3555
+172165.0626950313 3.534152 1103.3555
+172166.0626951356 3.534152 1103.3752
+172167.0626952399 3.5342309 1103.2765
+172168.0626953442 3.5341127 1103.3752
+172169.0626954485 3.5342309 1103.3949
+172170.0626955528 3.5341914 1103.4344
+172171.0626956571 3.5342703 1103.2963
+172172.0626957614 3.5342309 1103.2963
+172173.0626958658 3.5343096 1103.4147
+172174.0626959701 3.5342703 1103.3949
+172175.0626960744 3.5342703 1103.316
+172176.0626961787 3.5342309 1103.3555
+172177.062696283 3.534349 1103.4147
+172178.0626963873 3.534349 1103.3752
+172179.0626964916 3.5343883 1103.316
+172180.0626965959 3.5343883 1103.3555
+172181.0626967002 3.5343883 1103.3357
+172182.0626968045 3.534349 1103.3357
+172183.0626969088 3.5345063 1103.3357
+172184.0626970131 3.5344276 1103.3752
+172185.0626971175 3.5343096 1103.3555
+172186.0626972218 3.5344276 1103.4542
+172187.0626973261 3.5344276 1103.4344
+172188.0626974304 3.534467 1103.3949
+172189.0626975347 3.534467 1103.4147
+172190.062697639 3.5345459 1103.4542
+172191.0626977433 3.534467 1103.316
+172192.0626978476 3.5346246 1103.3752
+172193.0626979519 3.5345063 1103.3555
+172194.0626980562 3.5346246 1103.2963
+172195.0626981605 3.5345852 1103.3555
+172196.0626982648 3.5346246 1103.2963
+172197.0626983691 3.5346246 1103.3357
+172198.0626984735 3.5346246 1103.2963
+172199.0626985778 3.5346246 1103.2172
+172200.0626986821 3.5348213 1103.4147
+172201.0626987864 3.5346639 1103.3752
+172202.0626988907 3.5348213 1103.3555
+172203.062698995 3.5347819 1103.3752
+172204.0626990993 3.5347426 1103.316
+172205.0626992036 3.5347426 1103.2765
+172206.0626993079 3.5347819 1103.3752
+172207.0626994122 3.5349002 1103.2963
+172208.0626995165 3.5349002 1103.3555
+172209.0626996208 3.5347819 1103.2963
+172210.0626997252 3.5348213 1103.3555
+172211.0626998295 3.5348608 1103.3555
+172212.0626999338 3.5349395 1103.3752
+172213.0627000381 3.5347819 1103.2369
+172214.0627001424 3.5349789 1103.316
+172215.0627002467 3.5348608 1103.2765
+172216.062700351 3.5348608 1103.3357
+172217.0627004553 3.5350182 1103.316
+172218.0627005596 3.5349789 1103.3949
+172219.0627006639 3.5350182 1103.2963
+172220.0627007682 3.5349002 1103.316
+172221.0627008725 3.5349789 1103.3752
+172222.0627009769 3.5349789 1103.4344
+172223.0627010812 3.5350182 1103.2963
+172224.0627011855 3.5349789 1103.2963
+172225.0627012898 3.5349395 1103.316
+172226.0627013941 3.5351365 1103.4542
+172227.0627014984 3.5349395 1103.3555
+172228.0627016027 3.5350182 1103.3949
+172229.062701707 3.5350575 1103.2963
+172230.0627018113 3.5351365 1103.3357
+172231.0627019156 3.5350575 1103.2765
+172232.0627020199 3.5351758 1103.3357
+172233.0627021242 3.5351365 1103.3357
+172234.0627022285 3.5350969 1103.3752
+172235.0627023329 3.5350969 1103.2963
+172236.0627024372 3.5352151 1103.4344
+172237.0627025415 3.5351365 1103.316
+172238.0627026458 3.5352545 1103.3949
+172239.0627027501 3.5351758 1103.3752
+172240.0627028544 3.5352545 1103.3949
+172241.0627029587 3.5352151 1103.3357
+172242.062703063 3.5354514 1103.3357
+172243.0627031673 3.5354118 1103.2963
+172244.0627032716 3.5353332 1103.2567
+172245.0627033759 3.5353332 1103.4147
+172246.0627034802 3.5352545 1103.316
+172247.0627035846 3.5353725 1103.2172
+172248.0627036889 3.5354118 1103.3752
+172249.0627037932 3.5353332 1103.2963
+172250.0627038975 3.5355694 1103.2567
+172251.0627040018 3.5354514 1103.3752
+172252.0627041061 3.5353725 1103.3357
+172253.0627042104 3.5354908 1103.316
+172254.0627043147 3.5355301 1103.316
+172255.062704419 3.5356088 1103.3752
+172256.0627045233 3.5354908 1103.4344
+172257.0627046276 3.5355301 1103.3949
+172258.0627047319 3.5355694 1103.3752
+172259.0627048363 3.5355694 1103.4147
+172260.0627049406 3.5355301 1103.4147
+172261.0627050449 3.5356088 1103.2765
+172262.0627051492 3.5356874 1103.3555
+172263.0627052535 3.5357268 1103.3357
+172264.0627053578 3.535845 1103.3752
+172265.0627054621 3.5356874 1103.316
+172266.0627055664 3.5357664 1103.3555
+172267.0627056707 3.5356874 1103.4147
+172268.062705775 3.535845 1103.3555
+172269.0627058793 3.5357664 1103.3357
+172270.0627059836 3.5357664 1103.3555
+172271.0627060879 3.535845 1103.2963
+172272.0627061923 3.5358057 1103.3752
+172273.0627062966 3.5358844 1103.3357
+172274.0627064009 3.5358057 1103.3949
+172275.0627065052 3.5359631 1103.3949
+172276.0627066095 3.5358844 1103.3555
+172277.0627067138 3.5359237 1103.3949
+172278.0627068181 3.5359631 1103.3555
+172279.0627069224 3.5358844 1103.2963
+172280.0627070267 3.5360024 1103.316
+172281.062707131 3.5360024 1103.3357
+172282.0627072353 3.5360024 1103.3357
+172283.0627073396 3.5359631 1103.316
+172284.062707444 3.5360417 1103.3555
+172285.0627075483 3.53616 1103.3752
+172286.0627076526 3.5361207 1103.2765
+172287.0627077569 3.5361207 1103.316
+172288.0627078612 3.5360417 1103.316
+172289.0627079655 3.5362387 1103.4542
+172290.0627080698 3.536278 1103.316
+172291.0627081741 3.5361207 1103.3752
+172292.0627082784 3.53616 1103.2765
+172293.0627083827 3.5360813 1103.3357
+172294.062708487 3.5362387 1103.3752
+172295.0627085913 3.5361993 1103.3357
+172296.0627086957 3.5361993 1103.3752
+172297.0627088 3.5363173 1103.3752
+172298.0627089043 3.5361993 1103.3357
+172299.0627090086 3.5363567 1103.3949
+172300.0627091129 3.5363567 1103.3555
+172301.0627092172 3.536278 1103.3752
+172302.0627093215 3.5363173 1103.3357
+172303.0627094258 3.536278 1103.316
+172304.0627095301 3.5362387 1103.3357
+172305.0627096344 3.5363567 1103.316
+172306.0627097387 3.5363963 1103.3555
+172307.062709843 3.5364356 1103.2765
+172308.0627099474 3.5363567 1103.3949
+172309.0627100517 3.5364356 1103.3949
+172310.062710156 3.5364356 1103.3555
+172311.0627102603 3.5364749 1103.3357
+172312.0627103646 3.5364749 1103.4542
+172313.0627104689 3.5364749 1103.3357
+172314.0627105732 3.5364749 1103.3357
+172315.0627106775 3.5364356 1103.2765
+172316.0627107818 3.5364749 1103.2765
+172317.0627108861 3.5365536 1103.316
+172318.0627109904 3.5365536 1103.3555
+172319.0627110947 3.5364749 1103.3752
+172320.062711199 3.536593 1103.474
+172321.0627113034 3.536593 1103.2567
+172322.0627114077 3.5366716 1103.316
+172323.062711512 3.5366323 1103.316
+172324.0627116163 3.5366716 1103.3752
+172325.0627117206 3.5367506 1103.3357
+172326.0627118249 3.536593 1103.4344
+172327.0627119292 3.5367899 1103.3357
+172328.0627120335 3.5367899 1103.3357
+172329.0627121378 3.5367112 1103.3752
+172330.0627122421 3.5366716 1103.3555
+172331.0627123464 3.5368292 1103.3752
+172332.0627124507 3.5367506 1103.4344
+172333.0627125551 3.5367112 1103.4147
+172334.0627126594 3.5367899 1103.3752
+172335.0627127637 3.5367506 1103.3555
+172336.062712868 3.5367506 1103.3555
+172337.0627129723 3.5368292 1103.3949
+172338.0627130766 3.5368292 1103.316
+172339.0627131809 3.5369079 1103.3555
+172340.0627132852 3.5368686 1103.3555
+172341.0627133895 3.5369473 1103.3752
+172342.0627134938 3.5369079 1103.3752
+172343.0627135981 3.5369079 1103.3752
+172344.0627137024 3.5369079 1103.3752
+172345.0627138068 3.5369079 1103.3555
+172346.0627139111 3.5369079 1103.3555
+172347.0627140154 3.5370262 1103.4147
+172348.0627141197 3.5369868 1103.3357
+172349.062714224 3.5370262 1103.3555
+172350.0627143283 3.5370655 1103.4147
+172351.0627144326 3.5370262 1103.1975
+172352.0627145369 3.5370655 1103.3949
+172353.0627146412 3.5371048 1103.4147
+172354.0627147455 3.5371048 1103.3555
+172355.0627148498 3.5371442 1103.2963
+172356.0627149541 3.5370262 1103.3555
+172357.0627150584 3.5370655 1103.316
+172358.0627151628 3.5371048 1103.2765
+172359.0627152671 3.5371442 1103.4147
+172360.0627153714 3.5371048 1103.2963
+172361.0627154757 3.5372229 1103.3357
+172362.06271558 3.5372229 1103.316
+172363.0627156843 3.5373018 1103.4938
+172364.0627157886 3.5372229 1103.3357
+172365.0627158929 3.5373018 1103.3357
+172366.0627159972 3.5371835 1103.3752
+172367.0627161015 3.5373018 1103.3752
+172368.0627162058 3.5373411 1103.4542
+172369.0627163101 3.5372229 1103.4147
+172370.0627164145 3.5373411 1103.3555
+172371.0627165188 3.5373411 1103.3357
+172372.0627166231 3.5374591 1103.3752
+172373.0627167274 3.5373805 1103.4542
+172374.0627168317 3.5373805 1103.316
+172375.062716936 3.5374198 1103.3357
+172376.0627170403 3.5374198 1103.4542
+172377.0627171446 3.5373018 1103.3949
+172378.0627172489 3.5374198 1103.3555
+172379.0627173532 3.5374591 1103.3555
+172380.0627174575 3.5374985 1103.316
+172381.0627175618 3.5374591 1103.3949
+172382.0627176662 3.5374591 1103.4344
+172383.0627177705 3.5376167 1103.316
+172384.0627178748 3.5374591 1103.3555
+172385.0627179791 3.5376167 1103.3555
+172386.0627180834 3.5375772 1103.3752
+172387.0627181877 3.5376167 1103.4147
+172388.062718292 3.5375772 1103.3949
+172389.0627183963 3.5376954 1103.3949
+172390.0627185006 3.5375378 1103.3555
+172391.0627186049 3.5376167 1103.3752
+172392.0627187092 3.5375772 1103.4542
+172393.0627188135 3.5375772 1103.4344
+172394.0627189178 3.5376954 1103.3357
+172395.0627190222 3.5376954 1103.3555
+172396.0627191265 3.5377347 1103.3949
+172397.0627192308 3.5376954 1103.3752
+172398.0627193351 3.5377741 1103.3949
+172399.0627194394 3.5377347 1103.2963
+172400.0627195437 3.5377347 1103.3752
+172401.062719648 3.5377347 1103.3752
+172402.0627197523 3.5377741 1103.2963
+172403.0627198566 3.5375772 1103.3357
+172404.0627199609 3.5376954 1103.2765
+172405.0627200652 3.5378134 1103.2963
+172406.0627201695 3.5377347 1103.316
+172407.0627202739 3.5378134 1103.3752
+172408.0627203782 3.5377741 1103.3752
+172409.0627204825 3.5378921 1103.3752
+172410.0627205868 3.5378528 1103.316
+172411.0627206911 3.5378528 1103.3357
+172412.0627207954 3.5378528 1103.3357
+172413.0627208997 3.5378921 1103.3357
+172414.062721004 3.5377741 1103.3752
+172415.0627211083 3.5379317 1103.3555
+172416.0627212126 3.5378921 1103.2567
+172417.0627213169 3.5380104 1103.3555
+172418.0627214212 3.5379317 1103.3555
+172419.0627215256 3.5378528 1103.2963
+172420.0627216299 3.5379317 1103.3357
+172421.0627217342 3.5379317 1103.3357
+172422.0627218385 3.5379317 1103.3357
+172423.0627219428 3.537971 1103.3752
+172424.0627220471 3.538089 1103.4147
+172425.0627221514 3.5380497 1103.3357
+172426.0627222557 3.5381677 1103.3357
+172427.06272236 3.5381677 1103.316
+172428.0627224643 3.538089 1103.3555
+172429.0627225686 3.538089 1103.4147
+172430.0627226729 3.5381284 1103.2765
+172431.0627227772 3.5381677 1103.2963
+172432.0627228816 3.5380104 1103.3949
+172433.0627229859 3.538089 1103.3357
+172434.0627230902 3.538089 1103.3752
+172435.0627231945 3.5382071 1103.3752
+172436.0627232988 3.538286 1103.3752
+172437.0627234031 3.5381677 1103.2765
+172438.0627235074 3.5382071 1103.4542
+172439.0627236117 3.5382071 1103.3357
+172440.062723716 3.5383646 1103.3555
+172441.0627238203 3.5383646 1103.3752
+172442.0627239246 3.538286 1103.2963
+172443.0627240289 3.538286 1103.3357
+172444.0627241333 3.5383253 1103.3555
+172445.0627242376 3.5383646 1103.3752
+172446.0627243419 3.5384433 1103.3949
+172447.0627244462 3.538404 1103.3357
+172448.0627245505 3.5383646 1103.2963
+172449.0627246548 3.538404 1103.316
+172450.0627247591 3.5383646 1103.316
+172451.0627248634 3.5384827 1103.316
+172452.0627249677 3.5385222 1103.2765
+172453.062725072 3.5384827 1103.3357
+172454.0627251763 3.5386009 1103.2765
+172455.0627252806 3.5384827 1103.3357
+172456.062725385 3.5385222 1103.3949
+172457.0627254893 3.5386796 1103.3357
+172458.0627255936 3.5387189 1103.3949
+172459.0627256979 3.5385616 1103.3949
+172460.0627258022 3.5386403 1103.3555
+172461.0627259065 3.5386796 1103.3555
+172462.0627260108 3.5386403 1103.3752
+172463.0627261151 3.5387189 1103.3357
+172464.0627262194 3.5386796 1103.3752
+172465.0627263237 3.5386796 1103.3949
+172466.062726428 3.5387976 1103.3752
+172467.0627265323 3.5387583 1103.3357
+172468.0627266367 3.5387583 1103.2963
+172469.062726741 3.5387976 1103.3357
+172470.0627268453 3.5388765 1103.3752
+172471.0627269496 3.5388765 1103.4344
+172472.0627270539 3.5388372 1103.3555
+172473.0627271582 3.5388372 1103.2369
+172474.0627272625 3.5388765 1103.4938
+172475.0627273668 3.5389946 1103.316
+172476.0627274711 3.5388765 1103.3357
+172477.0627275754 3.5389946 1103.4147
+172478.0627276797 3.5388372 1103.3949
+172479.062727784 3.5389159 1103.3752
+172480.0627278883 3.5389552 1103.3555
+172481.0627279927 3.5389159 1103.3357
+172482.062728097 3.5390732 1103.3752
+172483.0627282013 3.5389946 1103.3357
+172484.0627283056 3.5391521 1103.3949
+172485.0627284099 3.5390339 1103.3357
+172486.0627285142 3.5391521 1103.3357
+172487.0627286185 3.5391126 1103.3555
+172488.0627287228 3.5391126 1103.2963
+172489.0627288271 3.5391521 1103.2765
+172490.0627289314 3.5391126 1103.3555
+172491.0627290357 3.5392702 1103.3555
+172492.06272914 3.5392702 1103.4542
+172493.0627292444 3.5392702 1103.3555
+172494.0627293487 3.5393488 1103.316
+172495.062729453 3.5392308 1103.3555
+172496.0627295573 3.5393095 1103.4147
+172497.0627296616 3.5392702 1103.4147
+172498.0627297659 3.5393488 1103.4344
+172499.0627298702 3.5392702 1103.316
+172500.0627299745 3.5393488 1103.3752
+172501.0627300788 3.5393488 1103.2765
+172502.0627301831 3.5393882 1103.3752
+172503.0627302874 3.5393488 1103.3357
+172504.0627303917 3.5393488 1103.3357
+172505.0627304961 3.5394275 1103.316
+172506.0627306004 3.5393882 1103.3555
+172507.0627307047 3.5394671 1103.3357
+172508.062730809 3.5395458 1103.3357
+172509.0627309133 3.5394671 1103.4147
+172510.0627310176 3.5395458 1103.3752
+172511.0627311219 3.5394671 1103.3555
+172512.0627312262 3.5395064 1103.3555
+172513.0627313305 3.5395064 1103.2963
+172514.0627314348 3.5395851 1103.316
+172515.0627315391 3.5395458 1103.3555
+172516.0627316434 3.5395458 1103.3555
+172517.0627317477 3.5395851 1103.4344
+172518.0627318521 3.5396245 1103.3752
+172519.0627319564 3.5396638 1103.3357
+172520.0627320607 3.5396245 1103.3555
+172521.062732165 3.5396638 1103.316
+172522.0627322693 3.5396638 1103.2567
+172523.0627323736 3.5397031 1103.316
+172524.0627324779 3.5397031 1103.3949
+172525.0627325822 3.5397031 1103.3555
+172526.0627326865 3.5396245 1103.3752
+172527.0627327908 3.539782 1103.2963
+172528.0627328951 3.5398214 1103.3949
+172529.0627329994 3.5396638 1103.4344
+172530.0627331038 3.539782 1103.3949
+172531.0627332081 3.539782 1103.2765
+172532.0627333124 3.5398607 1103.3752
+172533.0627334167 3.539782 1103.316
+172534.062733521 3.5398607 1103.3949
+172535.0627336253 3.539782 1103.3357
+172536.0627337296 3.5398607 1103.3752
+172537.0627338339 3.5399001 1103.3555
+172538.0627339382 3.5398214 1103.3555
+172539.0627340425 3.5399394 1103.316
+172540.0627341468 3.5399001 1103.3949
+172541.0627342511 3.5399394 1103.3357
+172542.0627343555 3.5400181 1103.316
+172543.0627344598 3.5400181 1103.316
+172544.0627345641 3.5400181 1103.3555
+172545.0627346684 3.5399787 1103.3752
+172546.0627347727 3.5399394 1103.2963
+172547.062734877 3.5399394 1103.3752
+172548.0627349813 3.5400181 1103.4147
+172549.0627350856 3.5400181 1103.4542
+172550.0627351899 3.5400181 1103.3949
+172551.0627352942 3.540097 1103.316
+172552.0627353985 3.5399787 1103.316
+172553.0627355028 3.5400574 1103.1975
+172554.0627356071 3.5400574 1103.3949
+172555.0627357115 3.5400181 1103.2963
+172556.0627358158 3.5400574 1103.3357
+172557.0627359201 3.5402544 1103.3357
+172558.0627360244 3.540215 1103.3752
+172559.0627361287 3.5401757 1103.3357
+172560.062736233 3.5401757 1103.316
+172561.0627363373 3.5401757 1103.3949
+172562.0627364416 3.540215 1103.3555
+172563.0627365459 3.5402544 1103.3555
+172564.0627366502 3.5402544 1103.4344
+172565.0627367545 3.540333 1103.4147
+172566.0627368588 3.5401757 1103.3555
+172567.0627369632 3.540333 1103.3752
+172568.0627370675 3.5402937 1103.316
+172569.0627371718 3.5404119 1103.3949
+172570.0627372761 3.5402544 1103.4344
+172571.0627373804 3.5404119 1103.2963
+172572.0627374847 3.5402544 1103.2963
+172573.062737589 3.5404119 1103.3555
+172574.0627376933 3.5403726 1103.3357
+172575.0627377976 3.5403726 1103.3555
+172576.0627379019 3.5404513 1103.3357
+172577.0627380062 3.5403726 1103.316
+172578.0627381105 3.5404119 1103.3752
+172579.0627382149 3.5405693 1103.3949
+172580.0627383192 3.5404513 1103.3752
+172581.0627384235 3.5404513 1103.3357
+172582.0627385278 3.54053 1103.3752
+172583.0627386321 3.5406086 1103.4344
+172584.0627387364 3.54053 1103.3752
+172585.0627388407 3.5404906 1103.3949
+172586.062738945 3.5404513 1103.3357
+172587.0627390493 3.54053 1103.316
+172588.0627391536 3.5405693 1103.2963
+172589.0627392579 3.54053 1103.3752
+172590.0627393622 3.540648 1103.3555
+172591.0627394666 3.5405693 1103.3752
+172592.0627395709 3.5406876 1103.3357
+172593.0627396752 3.5406876 1103.2567
+172594.0627397795 3.5405693 1103.316
+172595.0627398838 3.5406086 1103.3555
+172596.0627399881 3.5407269 1103.2765
+172597.0627400924 3.5407269 1103.3555
+172598.0627401967 3.5407269 1103.4147
+172599.062740301 3.540648 1103.3357
+172600.0627404053 3.5408449 1103.2567
+172601.0627405096 3.5407662 1103.3357
+172602.0627406139 3.5408449 1103.316
+172603.0627407182 3.5408449 1103.4344
+172604.0627408226 3.5407269 1103.2172
+172605.0627409269 3.5408056 1103.3357
+172606.0627410312 3.5408449 1103.3357
+172607.0627411355 3.5408843 1103.3949
+172608.0627412398 3.5408056 1103.3357
+172609.0627413441 3.5408843 1103.3357
+172610.0627414484 3.5408843 1103.2963
+172611.0627415527 3.5408843 1103.3555
+172612.062741657 3.5409236 1103.3949
+172613.0627417613 3.5408449 1103.3555
+172614.0627418656 3.5408843 1103.316
+172615.0627419699 3.5409236 1103.4147
+172616.0627420743 3.5410025 1103.4147
+172617.0627421786 3.5409629 1103.2963
+172618.0627422829 3.5410025 1103.3949
+172619.0627423872 3.5409629 1103.3357
+172620.0627424915 3.5410025 1103.3752
+172621.0627425958 3.5410419 1103.3752
+172622.0627427001 3.5409236 1103.3357
+172623.0627428044 3.5410812 1103.3357
+172624.0627429087 3.5410812 1103.3949
+172625.062743013 3.5410025 1103.3949
+172626.0627431173 3.5410812 1103.3752
+172627.0627432216 3.5411205 1103.3752
+172628.062743326 3.5411599 1103.3555
+172629.0627434303 3.5411992 1103.3752
+172630.0627435346 3.5411599 1103.3949
+172631.0627436389 3.5411599 1103.2963
+172632.0627437432 3.5411205 1103.3357
+172633.0627438475 3.5411992 1103.2765
+172634.0627439518 3.5412779 1103.316
+172635.0627440561 3.5411599 1103.2963
+172636.0627441604 3.5411992 1103.3555
+172637.0627442647 3.5412779 1103.3555
+172638.062744369 3.5411992 1103.3357
+172639.0627444733 3.5412385 1103.2963
+172640.0627445776 3.5412385 1103.2963
+172641.062744682 3.5413568 1103.2963
+172642.0627447863 3.5413175 1103.2369
+172643.0627448906 3.5413961 1103.316
+172644.0627449949 3.5414355 1103.2963
+172645.0627450992 3.5413961 1103.2765
+172646.0627452035 3.5415535 1103.3752
+172647.0627453078 3.5414748 1103.2172
+172648.0627454121 3.5414355 1103.3949
+172649.0627455164 3.5414748 1103.3555
+172650.0627456207 3.5413961 1103.3555
+172651.062745725 3.5415142 1103.3752
+172652.0627458293 3.5414748 1103.3555
+172653.0627459337 3.5414355 1103.316
+172654.062746038 3.5415535 1103.316
+172655.0627461423 3.5415928 1103.3555
+172656.0627462466 3.5414748 1103.3949
+172657.0627463509 3.5416324 1103.4147
+172658.0627464552 3.5415928 1103.3949
+172659.0627465595 3.5417111 1103.316
+172660.0627466638 3.5416324 1103.316
+172661.0627467681 3.5416324 1103.474
+172662.0627468724 3.5416324 1103.2765
+172663.0627469767 3.5417898 1103.3949
+172664.062747081 3.5415928 1103.4344
+172665.0627471854 3.5416718 1103.2567
+172666.0627472897 3.5417111 1103.3752
+172667.062747394 3.5417504 1103.4344
+172668.0627474983 3.5416718 1103.4344
+172669.0627476026 3.5417504 1103.3555
+172670.0627477069 3.5418291 1103.3752
+172671.0627478112 3.5417111 1103.2567
+172672.0627479155 3.5417504 1103.3949
+172673.0627480198 3.5417504 1103.316
+172674.0627481241 3.5418291 1103.4344
+172675.0627482284 3.5417898 1103.3752
+172676.0627483327 3.5418291 1103.3752
+172677.062748437 3.5418684 1103.316
+172678.0627485414 3.5418684 1103.3752
+172679.0627486457 3.5419078 1103.3555
+172680.06274875 3.5419078 1103.3357
+172681.0627488543 3.5418684 1103.2765
+172682.0627489586 3.5419078 1103.2963
+172683.0627490629 3.5420654 1103.2765
+172684.0627491672 3.5419078 1103.3949
+172685.0627492715 3.5419867 1103.316
+172686.0627493758 3.542026 1103.3555
+172687.0627494801 3.542026 1103.3555
+172688.0627495844 3.542026 1103.316
+172689.0627496887 3.5419867 1103.3357
+172690.0627497931 3.5421441 1103.316
+172691.0627498974 3.5419867 1103.3752
+172692.0627500017 3.5420654 1103.3555
+172693.062750106 3.542026 1103.4542
+172694.0627502103 3.5421441 1103.316
+172695.0627503146 3.5421441 1103.3949
+172696.0627504189 3.5420654 1103.316
+172697.0627505232 3.542026 1103.4147
+172698.0627506275 3.5421441 1103.3555
+172699.0627507318 3.5421834 1103.316
+172700.0627508361 3.542223 1103.3752
+172701.0627509404 3.5421834 1103.4147
+172702.0627510448 3.5421441 1103.3949
+172703.0627511491 3.5421834 1103.3357
+172704.0627512534 3.5423803 1103.3555
+172705.0627513577 3.5423017 1103.3357
+172706.062751462 3.542341 1103.4344
+172707.0627515663 3.542341 1103.3357
+172708.0627516706 3.5423803 1103.3357
+172709.0627517749 3.5423017 1103.3949
+172710.0627518792 3.5424984 1103.3555
+172711.0627519835 3.5423803 1103.2765
+172712.0627520878 3.5423803 1103.3357
+172713.0627521921 3.542459 1103.4344
+172714.0627522965 3.542341 1103.4147
+172715.0627524008 3.542459 1103.4147
+172716.0627525051 3.5424984 1103.316
+172717.0627526094 3.5423803 1103.2963
+172718.0627527137 3.5424984 1103.3555
+172719.062752818 3.542459 1103.3555
+172720.0627529223 3.542459 1103.3357
+172721.0627530266 3.5423803 1103.4344
+172722.0627531309 3.542459 1103.316
+172723.0627532352 3.5424984 1103.2963
+172724.0627533395 3.5425379 1103.316
+172725.0627534438 3.5424984 1103.2963
+172726.0627535481 3.5425379 1103.2963
+172727.0627536525 3.5425773 1103.316
+172728.0627537568 3.5425379 1103.2765
+172729.0627538611 3.5424984 1103.4147
+172730.0627539654 3.5425773 1103.2963
+172731.0627540697 3.5425773 1103.3555
+172732.062754174 3.5425773 1103.4147
+172733.0627542783 3.5426559 1103.3752
+172734.0627543826 3.5427346 1103.2963
+172735.0627544869 3.5426166 1103.316
+172736.0627545912 3.5426559 1103.4542
+172737.0627546955 3.5426559 1103.3357
+172738.0627547998 3.5426559 1103.3357
+172739.0627549042 3.542774 1103.3357
+172740.0627550085 3.5426166 1103.2765
+172741.0627551128 3.542774 1103.3949
+172742.0627552171 3.542774 1103.3555
+172743.0627553214 3.542774 1103.3752
+172744.0627554257 3.5426953 1103.3555
+172745.06275553 3.542774 1103.3949
+172746.0627556343 3.5427346 1103.3949
+172747.0627557386 3.5428133 1103.316
+172748.0627558429 3.5428133 1103.3357
+172749.0627559472 3.5428922 1103.316
+172750.0627560515 3.5428922 1103.3752
+172751.0627561559 3.5428529 1103.3357
+172752.0627562602 3.5428133 1103.4542
+172753.0627563645 3.5428133 1103.3752
+172754.0627564688 3.5429709 1103.3555
+172755.0627565731 3.5428529 1103.3357
+172756.0627566774 3.5428529 1103.4147
+172757.0627567817 3.5429316 1103.2963
+172758.062756886 3.5429316 1103.316
+172759.0627569903 3.5428922 1103.3949
+172760.0627570946 3.5428529 1103.3357
+172761.0627571989 3.5429709 1103.316
+172762.0627573032 3.5430496 1103.3752
+172763.0627574075 3.5430496 1103.3357
+172764.0627575119 3.5430496 1103.3357
+172765.0627576162 3.5430889 1103.4147
+172766.0627577205 3.5429316 1103.3752
+172767.0627578248 3.5430889 1103.3949
+172768.0627579291 3.5429316 1103.4344
+172769.0627580334 3.5431283 1103.3949
+172770.0627581377 3.5430496 1103.3949
+172771.062758242 3.5430889 1103.4147
+172772.0627583463 3.5430889 1103.3949
+172773.0627584506 3.5430889 1103.4147
+172774.0627585549 3.5432072 1103.2765
+172775.0627586592 3.5431678 1103.316
+172776.0627587636 3.5432465 1103.3752
+172777.0627588679 3.5432858 1103.2369
+172778.0627589722 3.5432465 1103.2963
+172779.0627590765 3.5432858 1103.3949
+172780.0627591808 3.5433252 1103.3357
+172781.0627592851 3.5433252 1103.3949
+172782.0627593894 3.5433645 1103.4344
+172783.0627594937 3.5433252 1103.4542
+172784.062759598 3.5434432 1103.4147
+172785.0627597023 3.5432858 1103.2765
+172786.0627598066 3.5432858 1103.3357
+172787.0627599109 3.5433252 1103.2765
+172788.0627600153 3.5433645 1103.3752
+172789.0627601196 3.5434828 1103.3357
+172790.0627602239 3.5434039 1103.3949
+172791.0627603282 3.5434039 1103.3949
+172792.0627604325 3.5434828 1103.316
+172793.0627605368 3.5434432 1103.3949
+172794.0627606411 3.5435221 1103.316
+172795.0627607454 3.5435615 1103.4147
+172796.0627608497 3.5434828 1103.3949
+172797.062760954 3.5436008 1103.3752
+172798.0627610583 3.5435221 1103.2765
+172799.0627611626 3.5435221 1103.3949
+172800.0627612669 3.5435615 1103.3555
+172801.0627613713 3.5436008 1103.2765
+172802.0627614756 3.5435221 1103.3357
+172803.0627615799 3.5435615 1103.4344
+172804.0627616842 3.5436795 1103.3555
+172805.0627617885 3.5436401 1103.3555
+172806.0627618928 3.5437188 1103.474
+172807.0627619971 3.5437188 1103.2963
+172808.0627621014 3.5436401 1103.4147
+172809.0627622057 3.5436795 1103.3357
+172810.06276231 3.5437188 1103.2567
+172811.0627624143 3.5437582 1103.3555
+172812.0627625186 3.5437188 1103.2963
+172813.062762623 3.5437582 1103.316
+172814.0627627273 3.5437188 1103.3752
+172815.0627628316 3.5437188 1103.3949
+172816.0627629359 3.5438371 1103.2567
+172817.0627630402 3.5438371 1103.3752
+172818.0627631445 3.5438371 1103.2963
+172819.0627632488 3.5438371 1103.4147
+172820.0627633531 3.5438764 1103.4147
+172821.0627634574 3.5437977 1103.2963
+172822.0627635617 3.5438764 1103.4147
+172823.062763666 3.5438764 1103.2765
+172824.0627637703 3.5438371 1103.3555
+172825.0627638747 3.5439551 1103.3357
+172826.062763979 3.5439551 1103.3752
+172827.0627640833 3.5438764 1103.3555
+172828.0627641876 3.5438764 1103.316
+172829.0627642919 3.5439157 1103.4147
+172830.0627643962 3.5439944 1103.2765
+172831.0627645005 3.5440733 1103.316
+172832.0627646048 3.5439551 1103.2765
+172833.0627647091 3.5439157 1103.2765
+172834.0627648134 3.544152 1103.3357
+172835.0627649177 3.5439944 1103.3555
+172836.062765022 3.5439944 1103.4147
+172837.0627651263 3.5439551 1103.3555
+172838.0627652307 3.5440733 1103.316
+172839.062765335 3.5440733 1103.2963
+172840.0627654393 3.5440733 1103.3555
+172841.0627655436 3.5441127 1103.3752
+172842.0627656479 3.544152 1103.3357
+172843.0627657522 3.544152 1103.3357
+172844.0627658565 3.5440338 1103.316
+172845.0627659608 3.5441127 1103.3555
+172846.0627660651 3.544152 1103.4542
+172847.0627661694 3.5441127 1103.316
+172848.0627662737 3.5441914 1103.3357
+172849.062766378 3.54427 1103.3949
+172850.0627664824 3.544152 1103.3555
+172851.0627665867 3.5441914 1103.3555
+172852.062766691 3.5443094 1103.474
+172853.0627667953 3.54427 1103.3555
+172854.0627668996 3.54427 1103.3752
+172855.0627670039 3.5442307 1103.3555
+172856.0627671082 3.5443487 1103.3949
+172857.0627672125 3.54427 1103.3949
+172858.0627673168 3.5442307 1103.3357
+172859.0627674211 3.5443094 1103.316
+172860.0627675254 3.5442307 1103.2765
+172861.0627676297 3.5443487 1103.474
+172862.0627677341 3.5444276 1103.3357
+172863.0627678384 3.5443883 1103.3357
+172864.0627679427 3.5443883 1103.3555
+172865.062768047 3.5445063 1103.4147
+172866.0627681513 3.5444276 1103.316
+172867.0627682556 3.544467 1103.316
+172868.0627683599 3.5445063 1103.3752
+172869.0627684642 3.5445457 1103.3555
+172870.0627685685 3.5445457 1103.2963
+172871.0627686728 3.5445063 1103.3949
+172872.0627687771 3.5445457 1103.3949
+172873.0627688814 3.544585 1103.4147
+172874.0627689858 3.5446243 1103.3357
+172875.0627690901 3.5445457 1103.3752
+172876.0627691944 3.544585 1103.474
+172877.0627692987 3.5446243 1103.3949
+172878.062769403 3.5447032 1103.2963
+172879.0627695073 3.5447032 1103.3357
+172880.0627696116 3.5447032 1103.4147
+172881.0627697159 3.5446637 1103.2963
+172882.0627698202 3.5447032 1103.3357
+172883.0627699245 3.5447426 1103.3949
+172884.0627700288 3.5447032 1103.3357
+172885.0627701331 3.5447426 1103.4344
+172886.0627702374 3.5447819 1103.4344
+172887.0627703418 3.5448213 1103.3357
+172888.0627704461 3.5447426 1103.4147
+172889.0627705504 3.5448999 1103.3752
+172890.0627706547 3.5447426 1103.2765
+172891.062770759 3.5448213 1103.3752
+172892.0627708633 3.5448213 1103.3949
+172893.0627709676 3.5448999 1103.2765
+172894.0627710719 3.5448999 1103.316
+172895.0627711762 3.5449786 1103.3555
+172896.0627712805 3.5448213 1103.3357
+172897.0627713848 3.5449786 1103.3949
+172898.0627714891 3.5448999 1103.474
+172899.0627715935 3.5449786 1103.2172
+172900.0627716978 3.5450182 1103.316
+172901.0627718021 3.5448999 1103.3357
+172902.0627719064 3.5450182 1103.3949
+172903.0627720107 3.5450182 1103.316
+172904.062772115 3.5449786 1103.3752
+172905.0627722193 3.5450575 1103.3357
+172906.0627723236 3.5450969 1103.4147
+172907.0627724279 3.5451362 1103.2963
+172908.0627725322 3.5450182 1103.3357
+172909.0627726365 3.5450969 1103.3752
+172910.0627727408 3.5450182 1103.3555
+172911.0627728452 3.5450969 1103.316
+172912.0627729495 3.5451362 1103.3555
+172913.0627730538 3.5451756 1103.3752
+172914.0627731581 3.5452542 1103.3949
+172915.0627732624 3.5451756 1103.2765
+172916.0627733667 3.5452149 1103.4147
+172917.062773471 3.5452149 1103.2567
+172918.0627735753 3.5452542 1103.3752
+172919.0627736796 3.5452149 1103.316
+172920.0627737839 3.5452542 1103.3555
+172921.0627738882 3.5453331 1103.3752
+172922.0627739925 3.5452542 1103.3752
+172923.0627740968 3.5453725 1103.2567
+172924.0627742012 3.5453331 1103.3555
+172925.0627743055 3.5452936 1103.3949
+172926.0627744098 3.5454512 1103.2765
+172927.0627745141 3.5454118 1103.4344
+172928.0627746184 3.5454118 1103.4542
+172929.0627747227 3.5454905 1103.2963
+172930.062774827 3.5454118 1103.3752
+172931.0627749313 3.5455692 1103.4147
+172932.0627750356 3.5455298 1103.4147
+172933.0627751399 3.5455298 1103.3949
+172934.0627752442 3.5454905 1103.4344
+172935.0627753485 3.5455298 1103.3357
+172936.0627754529 3.5454512 1103.3949
+172937.0627755572 3.5455298 1103.316
+172938.0627756615 3.5455298 1103.3949
+172939.0627757658 3.5455298 1103.3949
+172940.0627758701 3.5455692 1103.3357
+172941.0627759744 3.5456085 1103.316
+172942.0627760787 3.5456085 1103.4147
+172943.062776183 3.5455298 1103.316
+172944.0627762873 3.5456874 1103.3357
+172945.0627763916 3.5457268 1103.316
+172946.0627764959 3.5456481 1103.3949
+172947.0627766002 3.5457268 1103.3357
+172948.0627767046 3.5457268 1103.316
+172949.0627768089 3.5457268 1103.2567
+172950.0627769132 3.5457268 1103.3752
+172951.0627770175 3.5458055 1103.4344
+172952.0627771218 3.5458055 1103.3555
+172953.0627772261 3.5458448 1103.4147
+172954.0627773304 3.5458055 1103.3555
+172955.0627774347 3.5458448 1103.3752
+172956.062777539 3.5459237 1103.474
+172957.0627776433 3.5458055 1103.3555
+172958.0627777476 3.5458841 1103.4344
+172959.0627778519 3.545963 1103.316
+172960.0627779562 3.5458841 1103.2567
+172961.0627780606 3.5458841 1103.2963
+172962.0627781649 3.5460024 1103.3555
+172963.0627782692 3.5460811 1103.4147
+172964.0627783735 3.5459237 1103.2963
+172965.0627784778 3.545963 1103.3949
+172966.0627785821 3.5460417 1103.316
+172967.0627786864 3.5460024 1103.3357
+172968.0627787907 3.5458841 1103.3555
+172969.062778895 3.5461204 1103.2567
+172970.0627789993 3.5461204 1103.4147
+172971.0627791036 3.5460811 1103.316
+172972.0627792079 3.5460417 1103.4147
+172973.0627793123 3.5460417 1103.3949
+172974.0627794166 3.5460811 1103.2963
+172975.0627795209 3.5461204 1103.3949
+172976.0627796252 3.5460417 1103.3949
+172977.0627797295 3.5460024 1103.2963
+172978.0627798338 3.5460811 1103.3949
+172979.0627799381 3.5460811 1103.316
+172980.0627800424 3.5461991 1103.3357
+172981.0627801467 3.5462387 1103.3949
+172982.062780251 3.5461597 1103.3357
+172983.0627803553 3.5461597 1103.316
+172984.0627804596 3.5463173 1103.4147
+172985.062780564 3.5461991 1103.3357
+172986.0627806683 3.5462387 1103.3949
+172987.0627807726 3.5461597 1103.2765
+172988.0627808769 3.5462387 1103.3752
+172989.0627809812 3.5461597 1103.3555
+172990.0627810855 3.5462387 1103.3357
+172991.0627811898 3.5463173 1103.3949
+172992.0627812941 3.546278 1103.3752
+172993.0627813984 3.5463567 1103.2765
+172994.0627815027 3.5463567 1103.316
+172995.062781607 3.5463567 1103.2963
+172996.0627817113 3.5463173 1103.2963
+172997.0627818157 3.5464747 1103.3752
+172998.06278192 3.5463567 1103.3555
+172999.0627820243 3.546396 1103.3752
+173000.0627821286 3.5464354 1103.2963
+173001.0627822329 3.5464747 1103.3949
+173002.0627823372 3.5464354 1103.4344
+173003.0627824415 3.5465536 1103.3949
+173004.0627825458 3.5464747 1103.2567
+173005.0627826501 3.546514 1103.3752
+173006.0627827544 3.546396 1103.3752
+173007.0627828587 3.546514 1103.3555
+173008.062782963 3.546514 1103.3949
+173009.0627830673 3.546514 1103.3949
+173010.0627831717 3.5464747 1103.3357
+173011.062783276 3.5465536 1103.3949
+173012.0627833803 3.5465536 1103.3357
+173013.0627834846 3.5465536 1103.3357
+173014.0627835889 3.546593 1103.3949
+173015.0627836932 3.5466323 1103.3357
+173016.0627837975 3.546593 1103.4344
+173017.0627839018 3.546711 1103.3752
+173018.0627840061 3.546711 1103.3357
+173019.0627841104 3.5466323 1103.2963
+173020.0627842147 3.5466716 1103.316
+173021.062784319 3.546593 1103.3555
+173022.0627844234 3.546514 1103.2963
+173023.0627845277 3.5467503 1103.3555
+173024.062784632 3.5466716 1103.3949
+173025.0627847363 3.5466716 1103.2765
+173026.0627848406 3.5466716 1103.3357
+173027.0627849449 3.546711 1103.3949
+173028.0627850492 3.5468686 1103.4344
+173029.0627851535 3.546711 1103.3555
+173030.0627852578 3.546829 1103.4147
+173031.0627853621 3.5469866 1103.4542
+173032.0627854664 3.5469079 1103.3357
+173033.0627855707 3.5466323 1103.3752
+173034.0627856751 3.546829 1103.3752
+173035.0627857794 3.5469866 1103.3752
+173036.0627858837 3.546829 1103.2369
+173037.062785988 3.5468686 1103.316
+173038.0627860923 3.546829 1103.3555
+173039.0627861966 3.5469472 1103.2963
+173040.0627863009 3.5469079 1103.316
+173041.0627864052 3.5468686 1103.3752
+173042.0627865095 3.5469472 1103.316
+173043.0627866138 3.5469866 1103.3357
+173044.0627867181 3.5469866 1103.3357
+173045.0627868224 3.5469866 1103.3752
+173046.0627869267 3.5469866 1103.3357
+173047.0627870311 3.5470259 1103.2963
+173048.0627871354 3.5470653 1103.3949
+173049.0627872397 3.5471835 1103.2963
+173050.062787344 3.5471439 1103.2567
+173051.0627874483 3.5471439 1103.3555
+173052.0627875526 3.5471439 1103.316
+173053.0627876569 3.5471046 1103.3555
+173054.0627877612 3.5471439 1103.2963
+173055.0627878655 3.5471439 1103.3949
+173056.0627879698 3.5472229 1103.3555
+173057.0627880741 3.5471835 1103.3752
+173058.0627881784 3.5472229 1103.316
+173059.0627882828 3.5471835 1103.3357
+173060.0627883871 3.5472229 1103.3357
+173061.0627884914 3.5472622 1103.2963
+173062.0627885957 3.5472622 1103.3357
+173063.0627887 3.5472229 1103.4147
+173064.0627888043 3.5474195 1103.3357
+173065.0627889086 3.5472622 1103.2963
+173066.0627890129 3.5473015 1103.3752
+173067.0627891172 3.5474195 1103.4344
+173068.0627892215 3.5472622 1103.3555
+173069.0627893258 3.5473802 1103.3555
+173070.0627894301 3.5474589 1103.3752
+173071.0627895345 3.5473802 1103.3752
+173072.0627896388 3.5474195 1103.3555
+173073.0627897431 3.5474195 1103.316
+173074.0627898474 3.5473802 1103.3949
+173075.0627899517 3.5474195 1103.3357
+173076.062790056 3.5474985 1103.3555
+173077.0627901603 3.5475378 1103.474
+173078.0627902646 3.5475378 1103.3357
+173079.0627903689 3.5474589 1103.3949
+173080.0627904732 3.5474589 1103.3752
+173081.0627905775 3.5475378 1103.3752
+173082.0627906818 3.5475771 1103.3752
+173083.0627907861 3.5475378 1103.3949
+173084.0627908905 3.5475378 1103.3949
+173085.0627909948 3.5474589 1103.3555
+173086.0627910991 3.5475771 1103.4147
+173087.0627912034 3.5475378 1103.3752
+173088.0627913077 3.5475771 1103.2765
+173089.062791412 3.5475378 1103.3555
+173090.0627915163 3.5474589 1103.3555
+173091.0627916206 3.5476165 1103.3752
+173092.0627917249 3.5475771 1103.3357
+173093.0627918292 3.5476558 1103.4147
+173094.0627919335 3.5476952 1103.3357
+173095.0627920378 3.5476558 1103.3949
+173096.0627921422 3.5476558 1103.3357
+173097.0627922465 3.5476558 1103.3357
+173098.0627923508 3.5477345 1103.3555
+173099.0627924551 3.5476558 1103.3752
+173100.0627925594 3.5477345 1103.3555
+173101.0627926637 3.5477345 1103.3752
+173102.062792768 3.5476952 1103.4147
+173103.0627928723 3.5477741 1103.2963
+173104.0627929766 3.5476558 1103.3555
+173105.0627930809 3.5477741 1103.3357
+173106.0627931852 3.5478134 1103.3357
+173107.0627932895 3.5477741 1103.3357
+173108.0627933939 3.5478528 1103.3949
+173109.0627934982 3.5478528 1103.3949
+173110.0627936025 3.5477741 1103.3752
+173111.0627937068 3.5479314 1103.4344
+173112.0627938111 3.5478921 1103.3752
+173113.0627939154 3.5479708 1103.3555
+173114.0627940197 3.5478528 1103.3752
+173115.062794124 3.5479314 1103.4147
+173116.0627942283 3.5479314 1103.3357
+173117.0627943326 3.5478921 1103.3752
+173118.0627944369 3.5480494 1103.3357
+173119.0627945412 3.5480101 1103.3555
+173120.0627946456 3.5480101 1103.3357
+173121.0627947499 3.5481284 1103.3555
+173122.0627948542 3.5480494 1103.4147
+173123.0627949585 3.5479708 1103.316
+173124.0627950628 3.5480494 1103.316
+173125.0627951671 3.5481677 1103.3357
+173126.0627952714 3.5481677 1103.3357
+173127.0627953757 3.548089 1103.3949
+173128.06279548 3.548207 1103.3752
+173129.0627955843 3.5480494 1103.3555
+173130.0627956886 3.548207 1103.3555
+173131.0627957929 3.5481677 1103.3357
+173132.0627958972 3.548089 1103.3357
+173133.0627960016 3.5481677 1103.2765
+173134.0627961059 3.5481284 1103.3555
+173135.0627962102 3.5481677 1103.3555
+173136.0627963145 3.5482857 1103.3357
+173137.0627964188 3.5482464 1103.2963
+173138.0627965231 3.5482857 1103.3949
+173139.0627966274 3.5483644 1103.3752
+173140.0627967317 3.5483251 1103.3357
+173141.062796836 3.5482464 1103.316
+173142.0627969403 3.548404 1103.3949
+173143.0627970446 3.5483644 1103.4147
+173144.0627971489 3.548404 1103.3555
+173145.0627972533 3.5483644 1103.3752
+173146.0627973576 3.5483644 1103.3357
+173147.0627974619 3.5484433 1103.3555
+173148.0627975662 3.5484433 1103.316
+173149.0627976705 3.548404 1103.3357
+173150.0627977748 3.548404 1103.3752
+173151.0627978791 3.5484827 1103.3357
+173152.0627979834 3.5485613 1103.4344
+173153.0627980877 3.5484433 1103.2765
+173154.062798192 3.5484827 1103.3752
+173155.0627982963 3.548522 1103.3949
+173156.0627984006 3.5485613 1103.316
+173157.062798505 3.548522 1103.3949
+173158.0627986093 3.548522 1103.4147
+173159.0627987136 3.548522 1103.316
+173160.0627988179 3.54864 1103.3752
+173161.0627989222 3.54864 1103.3752
+173162.0627990265 3.5485613 1103.3949
+173163.0627991308 3.5486794 1103.3555
+173164.0627992351 3.54864 1103.4147
+173165.0627993394 3.54864 1103.2567
+173166.0627994437 3.54864 1103.3949
+173167.062799548 3.5486007 1103.3752
+173168.0627996523 3.54864 1103.316
+173169.0627997566 3.5486794 1103.3357
+173170.062799861 3.5487583 1103.4147
+173171.0627999653 3.5487976 1103.3357
+173172.0628000696 3.5486794 1103.3949
+173173.0628001739 3.5487583 1103.3357
+173174.0628002782 3.5488369 1103.3357
+173175.0628003825 3.5487976 1103.316
+173176.0628004868 3.5487976 1103.3555
+173177.0628005911 3.5488369 1103.3555
+173178.0628006954 3.5487976 1103.3357
+173179.0628007997 3.5487583 1103.3357
+173180.062800904 3.5488763 1103.3357
+173181.0628010083 3.5487976 1103.3949
+173182.0628011127 3.5487976 1103.3752
+173183.062801217 3.5489156 1103.3752
+173184.0628013213 3.5488369 1103.2963
+173185.0628014256 3.5488763 1103.3949
+173186.0628015299 3.5488763 1103.3357
+173187.0628016342 3.5488763 1103.3949
+173188.0628017385 3.548955 1103.2765
+173189.0628018428 3.5487976 1103.3752
+173190.0628019471 3.548955 1103.3555
+173191.0628020514 3.5489943 1103.3949
+173192.0628021557 3.5490339 1103.3949
+173193.06280226 3.5490339 1103.3555
+173194.0628023644 3.548955 1103.3357
+173195.0628024687 3.5490732 1103.4344
+173196.062802573 3.5490732 1103.3752
+173197.0628026773 3.5489943 1103.3555
+173198.0628027816 3.5491126 1103.2567
+173199.0628028859 3.5490339 1103.3949
+173200.0628029902 3.5490732 1103.4344
+173201.0628030945 3.5491126 1103.3555
+173202.0628031988 3.5491519 1103.2765
+173203.0628033031 3.5491519 1103.3949
+173204.0628034074 3.5491912 1103.3949
+173205.0628035117 3.5491519 1103.3357
+173206.062803616 3.5491126 1103.2963
+173207.0628037204 3.5492699 1103.3752
+173208.0628038247 3.5493095 1103.4344
+173209.062803929 3.5492699 1103.3752
+173210.0628040333 3.5493095 1103.3357
+173211.0628041376 3.5493488 1103.2963
+173212.0628042419 3.5493488 1103.2963
+173213.0628043462 3.5493882 1103.3949
+173214.0628044505 3.5492699 1103.3555
+173215.0628045548 3.5494275 1103.4147
+173216.0628046591 3.5493882 1103.3752
+173217.0628047634 3.5493095 1103.3357
+173218.0628048677 3.5495455 1103.3949
+173219.0628049721 3.5493882 1103.3949
+173220.0628050764 3.5494668 1103.2765
+173221.0628051807 3.5495062 1103.3555
+173222.062805285 3.5495849 1103.316
+173223.0628053893 3.5496244 1103.3752
+173224.0628054936 3.5493488 1103.3357
+173225.0628055979 3.5495062 1103.3357
+173226.0628057022 3.5496638 1103.2963
+173227.0628058065 3.5495455 1103.3949
+173228.0628059108 3.5495849 1103.4542
+173229.0628060151 3.5497031 1103.316
+173230.0628061194 3.5497031 1103.3752
+173231.0628062238 3.5496244 1103.3555
+173232.0628063281 3.5496638 1103.3357
+173233.0628064324 3.5497031 1103.4147
+173234.0628065367 3.5497818 1103.2567
+173235.062806641 3.5496638 1103.3357
+173236.0628067453 3.5496638 1103.3752
+173237.0628068496 3.5497818 1103.4344
+173238.0628069539 3.5495849 1103.3555
+173239.0628070582 3.5496638 1103.3357
+173240.0628071625 3.5496638 1103.3357
+173241.0628072668 3.5498605 1103.316
+173242.0628073711 3.5497425 1103.3555
+173243.0628074755 3.5497818 1103.316
+173244.0628075798 3.5497425 1103.2765
+173245.0628076841 3.5498211 1103.3555
+173246.0628077884 3.5498998 1103.3555
+173247.0628078927 3.5497818 1103.3949
+173248.062807997 3.5498211 1103.316
+173249.0628081013 3.5497818 1103.3752
+173250.0628082056 3.5498605 1103.3752
+173251.0628083099 3.5499394 1103.4542
+173252.0628084142 3.5498605 1103.4147
+173253.0628085185 3.5500181 1103.3555
+173254.0628086228 3.5498998 1103.4344
+173255.0628087271 3.5500181 1103.316
+173256.0628088315 3.5499787 1103.3357
+173257.0628089358 3.5499394 1103.3357
+173258.0628090401 3.5500968 1103.3949
+173259.0628091444 3.5500181 1103.316
+173260.0628092487 3.5500181 1103.3555
+173261.062809353 3.5500181 1103.3949
+173262.0628094573 3.5500181 1103.2765
+173263.0628095616 3.5500181 1103.3752
+173264.0628096659 3.5500574 1103.3949
+173265.0628097702 3.5499394 1103.4147
+173266.0628098745 3.5500968 1103.3752
+173267.0628099788 3.5500181 1103.3357
+173268.0628100832 3.5499787 1103.3357
+173269.0628101875 3.5501361 1103.3949
+173270.0628102918 3.5502148 1103.3752
+173271.0628103961 3.5501754 1103.2963
+173272.0628105004 3.5501361 1103.3357
+173273.0628106047 3.5501754 1103.316
+173274.062810709 3.5502543 1103.3752
+173275.0628108133 3.5502543 1103.3752
+173276.0628109176 3.5502937 1103.3752
+173277.0628110219 3.5502148 1103.3357
+173278.0628111262 3.5502937 1103.2567
+173279.0628112305 3.5502937 1103.3949
+173280.0628113349 3.5502543 1103.2567
+173281.0628114392 3.5502543 1103.3949
+173282.0628115435 3.550333 1103.2963
+173283.0628116478 3.5502937 1103.3555
+173284.0628117521 3.5502937 1103.474
+173285.0628118564 3.550333 1103.2765
+173286.0628119607 3.550333 1103.3555
+173287.062812065 3.550333 1103.3752
+173288.0628121693 3.5504117 1103.4147
+173289.0628122736 3.5504117 1103.4147
+173290.0628123779 3.550333 1103.3752
+173291.0628124822 3.5504117 1103.3949
+173292.0628125865 3.550451 1103.316
+173293.0628126909 3.5504117 1103.3752
+173294.0628127952 3.5504904 1103.2765
+173295.0628128995 3.5504904 1103.2765
+173296.0628130038 3.5504904 1103.3555
+173297.0628131081 3.550451 1103.3555
+173298.0628132124 3.5504904 1103.4147
+173299.0628133167 3.550451 1103.3752
+173300.062813421 3.5504904 1103.3555
+173301.0628135253 3.5505693 1103.3555
+173302.0628136296 3.5506873 1103.2963
+173303.0628137339 3.5505297 1103.2963
+173304.0628138382 3.5506086 1103.3752
+173305.0628139426 3.550648 1103.3555
+173306.0628140469 3.550648 1103.316
+173307.0628141512 3.550648 1103.3752
+173308.0628142555 3.5506086 1103.3752
+173309.0628143598 3.5506873 1103.2963
+173310.0628144641 3.550648 1103.3752
+173311.0628145684 3.5507267 1103.3357
+173312.0628146727 3.550766 1103.3949
+173313.062814777 3.550766 1103.4147
+173314.0628148813 3.5508053 1103.3555
+173315.0628149856 3.5508053 1103.316
+173316.0628150899 3.5507267 1103.3357
+173317.0628151943 3.5508053 1103.3357
+173318.0628152986 3.5508447 1103.316
+173319.0628154029 3.5508842 1103.316
+173320.0628155072 3.5508447 1103.3357
+173321.0628156115 3.5509236 1103.3949
+173322.0628157158 3.5509236 1103.3752
+173323.0628158201 3.5510023 1103.3357
+173324.0628159244 3.5508842 1103.3752
+173325.0628160287 3.5510023 1103.3555
+173326.062816133 3.5509629 1103.2963
+173327.0628162373 3.5509629 1103.3752
+173328.0628163416 3.5509236 1103.4542
+173329.0628164459 3.5509629 1103.2963
+173330.0628165503 3.5510023 1103.316
+173331.0628166546 3.5510809 1103.3949
+173332.0628167589 3.5510416 1103.3357
+173333.0628168632 3.5510809 1103.3357
+173334.0628169675 3.5511203 1103.3357
+173335.0628170718 3.5510809 1103.3357
+173336.0628171761 3.5511203 1103.316
+173337.0628172804 3.5511599 1103.4147
+173338.0628173847 3.5511203 1103.3949
+173339.062817489 3.5511599 1103.3949
+173340.0628175933 3.5511203 1103.3555
+173341.0628176976 3.5511992 1103.3949
+173342.062817802 3.5511992 1103.316
+173343.0628179063 3.5513566 1103.474
+173344.0628180106 3.5512779 1103.4344
+173345.0628181149 3.5512385 1103.2963
+173346.0628182192 3.5511599 1103.3752
+173347.0628183235 3.5513566 1103.4344
+173348.0628184278 3.5513566 1103.3949
+173349.0628185321 3.5513172 1103.4147
+173350.0628186364 3.5513172 1103.4147
+173351.0628187407 3.5514352 1103.4344
+173352.062818845 3.5513959 1103.4344
+173353.0628189493 3.5514748 1103.3555
+173354.0628190537 3.5513172 1103.4344
+173355.062819158 3.5513959 1103.3357
+173356.0628192623 3.5513959 1103.3357
+173357.0628193666 3.5515141 1103.316
+173358.0628194709 3.5513566 1103.316
+173359.0628195752 3.5514352 1103.2567
+173360.0628196795 3.5515141 1103.3357
+173361.0628197838 3.5515141 1103.3555
+173362.0628198881 3.5515535 1103.3555
+173363.0628199924 3.5513959 1103.316
+173364.0628200967 3.5516322 1103.316
+173365.062820201 3.5515535 1103.3357
+173366.0628203053 3.5515141 1103.3949
+173367.0628204097 3.5516322 1103.3949
+173368.062820514 3.5516322 1103.4542
+173369.0628206183 3.5516322 1103.3752
+173370.0628207226 3.5515928 1103.3357
+173371.0628208269 3.5516715 1103.3752
+173372.0628209312 3.5516322 1103.2765
+173373.0628210355 3.5516715 1103.3949
+173374.0628211398 3.5516322 1103.2765
+173375.0628212441 3.5517898 1103.2963
+173376.0628213484 3.5517108 1103.3752
+173377.0628214527 3.5517108 1103.3752
+173378.062821557 3.5517502 1103.3357
+173379.0628216614 3.5516715 1103.2963
+173380.0628217657 3.5517502 1103.3949
+173381.06282187 3.5517898 1103.2963
+173382.0628219743 3.5517898 1103.3752
+173383.0628220786 3.5517898 1103.2963
+173384.0628221829 3.5518291 1103.3949
+173385.0628222872 3.5518684 1103.3752
+173386.0628223915 3.5518684 1103.3357
+173387.0628224958 3.5519471 1103.3752
+173388.0628226001 3.5518684 1103.3357
+173389.0628227044 3.5519471 1103.4147
+173390.0628228087 3.5519471 1103.3555
+173391.0628229131 3.5518684 1103.3555
+173392.0628230174 3.5520258 1103.2963
+173393.0628231217 3.5519865 1103.3555
+173394.062823226 3.5519865 1103.3357
+173395.0628233303 3.5519865 1103.4147
+173396.0628234346 3.5521047 1103.316
+173397.0628235389 3.5520651 1103.3752
+173398.0628236432 3.5520258 1103.474
+173399.0628237475 3.5521047 1103.3752
+173400.0628238518 3.5521441 1103.316
+173401.0628239561 3.5521441 1103.2567
+173402.0628240604 3.5521047 1103.4344
+173403.0628241648 3.5521441 1103.316
+173404.0628242691 3.5520258 1103.4147
+173405.0628243734 3.5521047 1103.316
+173406.0628244777 3.5521441 1103.3357
+173407.062824582 3.5521047 1103.4147
+173408.0628246863 3.5522227 1103.3357
+173409.0628247906 3.5521047 1103.2963
+173410.0628248949 3.5521834 1103.2765
+173411.0628249992 3.5522621 1103.316
+173412.0628251035 3.5522227 1103.3752
+173413.0628252078 3.5522621 1103.3555
+173414.0628253121 3.5523014 1103.4147
+173415.0628254164 3.5522621 1103.3555
+173416.0628255208 3.5522227 1103.3752
+173417.0628256251 3.5523014 1103.2963
+173418.0628257294 3.5523407 1103.3357
+173419.0628258337 3.5522227 1103.3949
+173420.062825938 3.5523014 1103.474
+173421.0628260423 3.5523801 1103.3357
+173422.0628261466 3.5523407 1103.3752
+173423.0628262509 3.5523801 1103.4542
+173424.0628263552 3.552459 1103.3752
+173425.0628264595 3.5523014 1103.3752
+173426.0628265638 3.5523407 1103.3357
+173427.0628266681 3.5524983 1103.3949
+173428.0628267725 3.552459 1103.3555
+173429.0628268768 3.5524983 1103.3752
+173430.0628269811 3.552459 1103.3555
+173431.0628270854 3.5525377 1103.3949
+173432.0628271897 3.5525377 1103.3949
+173433.062827294 3.5525377 1103.3357
+173434.0628273983 3.5525377 1103.3949
+173435.0628275026 3.5524983 1103.3752
+173436.0628276069 3.5524983 1103.316
+173437.0628277112 3.552459 1103.3752
+173438.0628278155 3.5524983 1103.3357
+173439.0628279198 3.552577 1103.2963
+173440.0628280242 3.5525377 1103.3357
+173441.0628281285 3.5526557 1103.316
+173442.0628282328 3.5526557 1103.3752
+173443.0628283371 3.552695 1103.3357
+173444.0628284414 3.552774 1103.474
+173445.0628285457 3.5526164 1103.3357
+173446.06282865 3.552695 1103.3752
+173447.0628287543 3.5526557 1103.4147
+173448.0628288586 3.5527346 1103.474
+173449.0628289629 3.552695 1103.4147
+173450.0628290672 3.5527346 1103.316
+173451.0628291715 3.5527346 1103.3752
+173452.0628292758 3.5528133 1103.316
+173453.0628293802 3.5526164 1103.2963
+173454.0628294845 3.552774 1103.3555
+173455.0628295888 3.5528133 1103.3752
+173456.0628296931 3.5528526 1103.3357
+173457.0628297974 3.552892 1103.4542
+173458.0628299017 3.5529313 1103.2963
+173459.062830006 3.552892 1103.3357
+173460.0628301103 3.5529313 1103.316
+173461.0628302146 3.5529313 1103.2963
+173462.0628303189 3.5529706 1103.3555
+173463.0628304232 3.5529313 1103.3949
+173464.0628305275 3.552892 1103.3752
+173465.0628306319 3.5530496 1103.3752
+173466.0628307362 3.5530889 1103.2963
+173467.0628308405 3.5529313 1103.3357
+173468.0628309448 3.5530102 1103.3949
+173469.0628310491 3.5530102 1103.2765
+173470.0628311534 3.5531282 1103.3752
+173471.0628312577 3.5530496 1103.4344
+173472.062831362 3.5531282 1103.3555
+173473.0628314663 3.5532069 1103.3357
+173474.0628315706 3.5531676 1103.2963
+173475.0628316749 3.5531676 1103.3752
+173476.0628317792 3.5532856 1103.316
+173477.0628318836 3.5532856 1103.474
+173478.0628319879 3.5532069 1103.3357
+173479.0628320922 3.5532856 1103.3555
+173480.0628321965 3.5533645 1103.3752
+173481.0628323008 3.5532463 1103.3752
+173482.0628324051 3.5533645 1103.4344
+173483.0628325094 3.5532069 1103.316
+173484.0628326137 3.5533252 1103.316
+173485.062832718 3.5533645 1103.3752
+173486.0628328223 3.5533252 1103.3555
+173487.0628329266 3.5533645 1103.474
+173488.0628330309 3.5534039 1103.2765
+173489.0628331352 3.5534432 1103.3949
+173490.0628332396 3.5534039 1103.3555
+173491.0628333439 3.5534825 1103.3752
+173492.0628334482 3.5534039 1103.316
+173493.0628335525 3.5534825 1103.3555
+173494.0628336568 3.5534825 1103.2963
+173495.0628337611 3.5534825 1103.3357
+173496.0628338654 3.5535219 1103.316
+173497.0628339697 3.5535219 1103.4147
+173498.062834074 3.5535612 1103.3555
+173499.0628341783 3.5536401 1103.3752
+173500.0628342826 3.5536005 1103.3752
+173501.0628343869 3.5536005 1103.3752
+173502.0628344913 3.5536401 1103.2963
+173503.0628345956 3.5536795 1103.4542
+173504.0628346999 3.5536401 1103.2765
+173505.0628348042 3.5536401 1103.316
+173506.0628349085 3.5537975 1103.3752
+173507.0628350128 3.5536795 1103.2567
+173508.0628351171 3.5536401 1103.3357
+173509.0628352214 3.5537188 1103.316
+173510.0628353257 3.5537581 1103.3949
+173511.06283543 3.5537975 1103.3752
+173512.0628355343 3.5537975 1103.2963
+173513.0628356386 3.5537581 1103.2765
+173514.062835743 3.5538368 1103.3357
+173515.0628358473 3.5538762 1103.3357
+173516.0628359516 3.5538368 1103.4344
+173517.0628360559 3.5538368 1103.4147
+173518.0628361602 3.5538762 1103.4147
+173519.0628362645 3.5537975 1103.3949
+173520.0628363688 3.5539155 1103.4147
+173521.0628364731 3.5539551 1103.3752
+173522.0628365774 3.5539155 1103.4344
+173523.0628366817 3.5538762 1103.316
+173524.062836786 3.5539944 1103.3752
+173525.0628368903 3.5540338 1103.3752
+173526.0628369947 3.5540338 1103.3357
+173527.062837099 3.5539944 1103.3357
+173528.0628372033 3.5539155 1103.3555
+173529.0628373076 3.5540338 1103.3357
+173530.0628374119 3.5541518 1103.3357
+173531.0628375162 3.5540338 1103.3949
+173532.0628376205 3.5541518 1103.3555
+173533.0628377248 3.5540338 1103.4147
+173534.0628378291 3.5541518 1103.3752
+173535.0628379334 3.5541518 1103.3752
+173536.0628380377 3.5541124 1103.2765
+173537.062838142 3.5541911 1103.4147
+173538.0628382463 3.55427 1103.3752
+173539.0628383507 3.5541911 1103.4147
+173540.062838455 3.5542305 1103.3555
+173541.0628385593 3.5542305 1103.3949
+173542.0628386636 3.5541518 1103.3357
+173543.0628387679 3.5542305 1103.3555
+173544.0628388722 3.5542305 1103.3357
+173545.0628389765 3.55427 1103.316
+173546.0628390808 3.55427 1103.3752
+173547.0628391851 3.5543094 1103.3357
+173548.0628392894 3.5543094 1103.316
+173549.0628393937 3.5543094 1103.3752
+173550.062839498 3.554388 1103.3357
+173551.0628396024 3.5544667 1103.4542
+173552.0628397067 3.5543487 1103.3949
+173553.062839811 3.554388 1103.4147
+173554.0628399153 3.554388 1103.3555
+173555.0628400196 3.5544667 1103.4147
+173556.0628401239 3.5545061 1103.2963
+173557.0628402282 3.5544274 1103.4542
+173558.0628403325 3.5545061 1103.3357
+173559.0628404368 3.5544667 1103.316
+173560.0628405411 3.5545061 1103.3752
+173561.0628406454 3.5545454 1103.4344
+173562.0628407497 3.5545454 1103.3752
+173563.0628408541 3.5545061 1103.4147
+173564.0628409584 3.5545061 1103.4344
+173565.0628410627 3.5544667 1103.3357
+173566.062841167 3.5546243 1103.3949
+173567.0628412713 3.5546637 1103.4147
+173568.0628413756 3.554585 1103.3752
+173569.0628414799 3.554703 1103.3752
+173570.0628415842 3.554585 1103.2963
+173571.0628416885 3.554585 1103.3752
+173572.0628417928 3.554703 1103.316
+173573.0628418971 3.554585 1103.3752
+173574.0628420014 3.5546243 1103.316
+173575.0628421057 3.5546637 1103.316
+173576.0628422101 3.554585 1103.4344
+173577.0628423144 3.5547423 1103.3752
+173578.0628424187 3.5547423 1103.3555
+173579.062842523 3.5547817 1103.3555
+173580.0628426273 3.554821 1103.316
+173581.0628427316 3.5548606 1103.3555
+173582.0628428359 3.5547423 1103.3555
+173583.0628429402 3.554821 1103.3555
+173584.0628430445 3.5547817 1103.2963
+173585.0628431488 3.5548606 1103.4344
+173586.0628432531 3.554821 1103.316
+173587.0628433574 3.5548999 1103.4147
+173588.0628434618 3.5548999 1103.3357
+173589.0628435661 3.5547423 1103.316
+173590.0628436704 3.554821 1103.3357
+173591.0628437747 3.5549786 1103.3949
+173592.062843879 3.5549786 1103.3949
+173593.0628439833 3.5549393 1103.3555
+173594.0628440876 3.5549393 1103.3555
+173595.0628441919 3.5549393 1103.3555
+173596.0628442962 3.5548999 1103.4344
+173597.0628444005 3.5550573 1103.3752
+173598.0628445048 3.5549786 1103.3752
+173599.0628446091 3.5549786 1103.3357
+173600.0628447135 3.5550966 1103.2963
+173601.0628448178 3.5550179 1103.3555
+173602.0628449221 3.5549786 1103.316
+173603.0628450264 3.5550966 1103.3555
+173604.0628451307 3.5550966 1103.2567
+173605.062845235 3.5550179 1103.3752
+173606.0628453393 3.5551755 1103.4542
+173607.0628454436 3.555136 1103.3357
+173608.0628455479 3.5550966 1103.4147
+173609.0628456522 3.5552149 1103.3555
+173610.0628457565 3.5552149 1103.316
+173611.0628458608 3.5551755 1103.3949
+173612.0628459651 3.5552149 1103.3357
+173613.0628460695 3.5552542 1103.3555
+173614.0628461738 3.5551755 1103.3555
+173615.0628462781 3.5553329 1103.316
+173616.0628463824 3.5552936 1103.3949
+173617.0628464867 3.5553722 1103.2963
+173618.062846591 3.5554116 1103.316
+173619.0628466953 3.5553722 1103.316
+173620.0628467996 3.5554116 1103.3555
+173621.0628469039 3.5553722 1103.3949
+173622.0628470082 3.5553329 1103.3949
+173623.0628471125 3.5553722 1103.4147
+173624.0628472168 3.5553722 1103.3555
+173625.0628473212 3.5553329 1103.3752
+173626.0628474255 3.5554116 1103.3752
+173627.0628475298 3.5554905 1103.3752
+173628.0628476341 3.5554905 1103.2963
+173629.0628477384 3.5554509 1103.3752
+173630.0628478427 3.5554116 1103.2963
+173631.062847947 3.5554905 1103.316
+173632.0628480513 3.5554116 1103.3357
+173633.0628481556 3.5554509 1103.3752
+173634.0628482599 3.5557265 1103.316
+173635.0628483642 3.5555692 1103.3752
+173636.0628484685 3.5556085 1103.3357
+173637.0628485729 3.5555692 1103.3949
+173638.0628486772 3.5556479 1103.474
+173639.0628487815 3.5556085 1103.3752
+173640.0628488858 3.5554905 1103.4147
+173641.0628489901 3.5555692 1103.2963
+173642.0628490944 3.5555298 1103.4344
+173643.0628491987 3.5556085 1103.3949
+173644.062849303 3.5556872 1103.4147
+173645.0628494073 3.5557265 1103.316
+173646.0628495116 3.5556479 1103.3555
+173647.0628496159 3.5556872 1103.3752
+173648.0628497202 3.5556872 1103.3752
+173649.0628498246 3.5556872 1103.3752
+173650.0628499289 3.5557265 1103.3752
+173651.0628500332 3.5557659 1103.316
+173652.0628501375 3.5556872 1103.3752
+173653.0628502418 3.5557265 1103.3555
+173654.0628503461 3.5557659 1103.316
+173655.0628504504 3.5558054 1103.3555
+173656.0628505547 3.5557659 1103.2963
+173657.062850659 3.5557659 1103.3752
+173658.0628507633 3.5558448 1103.3357
+173659.0628508676 3.5558841 1103.3555
+173660.0628509719 3.5557659 1103.3555
+173661.0628510762 3.5558448 1103.3752
+173662.0628511806 3.5558448 1103.2567
+173663.0628512849 3.5558841 1103.2963
+173664.0628513892 3.5558448 1103.3357
+173665.0628514935 3.5558448 1103.3555
+173666.0628515978 3.5558054 1103.3752
+173667.0628517021 3.5560021 1103.3752
+173668.0628518064 3.5559235 1103.3555
+173669.0628519107 3.5559628 1103.3949
+173670.062852015 3.5559235 1103.2369
+173671.0628521193 3.5559628 1103.3752
+173672.0628522236 3.5560415 1103.3357
+173673.0628523279 3.5560808 1103.3357
+173674.0628524323 3.5559235 1103.3555
+173675.0628525366 3.5560808 1103.2963
+173676.0628526409 3.5560415 1103.2963
+173677.0628527452 3.5560808 1103.3555
+173678.0628528495 3.5561204 1103.3357
+173679.0628529538 3.5561204 1103.316
+173680.0628530581 3.5561597 1103.3752
+173681.0628531624 3.5560808 1103.4147
+173682.0628532667 3.5561204 1103.2765
+173683.062853371 3.5561991 1103.3555
+173684.0628534753 3.5560808 1103.3949
+173685.0628535796 3.5561204 1103.2567
+173686.062853684 3.5562778 1103.3949
+173687.0628537883 3.5562384 1103.2963
+173688.0628538926 3.5562778 1103.4147
+173689.0628539969 3.5562384 1103.3555
+173690.0628541012 3.5562384 1103.1975
+173691.0628542055 3.5563171 1103.2963
+173692.0628543098 3.5563171 1103.158
+173693.0628544141 3.5563171 1103.316
+173694.0628545184 3.5563171 1103.3357
+173695.0628546227 3.5563958 1103.2765
+173696.062854727 3.5563958 1103.3357
+173697.0628548313 3.5563958 1103.2765
+173698.0628549356 3.5564747 1103.3357
+173699.06285504 3.5564747 1103.3949
+173700.0628551443 3.5565927 1103.316
+173701.0628552486 3.556514 1103.4542
+173702.0628553529 3.5564747 1103.316
+173703.0628554572 3.5564747 1103.4344
+173704.0628555615 3.5565534 1103.2963
+173705.0628556658 3.5565534 1103.3949
+173706.0628557701 3.5564747 1103.3949
+173707.0628558744 3.556514 1103.316
+173708.0628559787 3.5564353 1103.474
+173709.062856083 3.556632 1103.316
+173710.0628561873 3.5565927 1103.3555
+173711.0628562917 3.5565534 1103.3555
+173712.062856396 3.556514 1103.3555
+173713.0628565003 3.556632 1103.2765
+173714.0628566046 3.556632 1103.3555
+173715.0628567089 3.556711 1103.3357
+173716.0628568132 3.5565534 1103.3949
+173717.0628569175 3.5565927 1103.2963
+173718.0628570218 3.556711 1103.3555
+173719.0628571261 3.556711 1103.316
+173720.0628572304 3.5567896 1103.3555
+173721.0628573347 3.556711 1103.3555
+173722.062857439 3.5567503 1103.3357
+173723.0628575434 3.556829 1103.3949
+173724.0628576477 3.5566714 1103.3752
+173725.062857752 3.5568683 1103.4147
+173726.0628578563 3.5569077 1103.4147
+173727.0628579606 3.556947 1103.3949
+173728.0628580649 3.5568683 1103.4344
+173729.0628581692 3.5569077 1103.3949
+173730.0628582735 3.5568683 1103.3949
+173731.0628583778 3.556829 1103.3357
+173732.0628584821 3.556947 1103.2963
+173733.0628585864 3.556947 1103.316
+173734.0628586907 3.5569863 1103.3752
+173735.062858795 3.5570259 1103.3357
+173736.0628588994 3.5569863 1103.3555
+173737.0628590037 3.5569863 1103.3357
+173738.062859108 3.5570652 1103.316
+173739.0628592123 3.5571046 1103.3357
+173740.0628593166 3.5570652 1103.4147
+173741.0628594209 3.5571046 1103.3949
+173742.0628595252 3.5571439 1103.4938
+173743.0628596295 3.5571046 1103.3357
+173744.0628597338 3.5571046 1103.3555
+173745.0628598381 3.5571439 1103.3752
+173746.0628599424 3.5571439 1103.3752
+173747.0628600467 3.5570652 1103.3949
+173748.0628601511 3.5572226 1103.3357
+173749.0628602554 3.5571833 1103.3949
+173750.0628603597 3.5572619 1103.3357
+173751.062860464 3.5572226 1103.4542
+173752.0628605683 3.5572619 1103.2963
+173753.0628606726 3.5573013 1103.3949
+173754.0628607769 3.5572619 1103.3555
+173755.0628608812 3.5573013 1103.2765
+173756.0628609855 3.5573013 1103.3752
+173757.0628610898 3.5573409 1103.2765
+173758.0628611941 3.5573013 1103.4344
+173759.0628612984 3.5572619 1103.3555
+173760.0628614028 3.5573409 1103.3357
+173761.0628615071 3.5573013 1103.3555
+173762.0628616114 3.5573802 1103.3357
+173763.0628617157 3.5573013 1103.3357
+173764.06286182 3.5573013 1103.3357
+173765.0628619243 3.5573802 1103.3357
+173766.0628620286 3.5573802 1103.3555
+173767.0628621329 3.5573013 1103.3752
+173768.0628622372 3.5574982 1103.3357
+173769.0628623415 3.5573409 1103.316
+173770.0628624458 3.5573802 1103.3555
+173771.0628625501 3.5574195 1103.3752
+173772.0628626544 3.5575376 1103.4147
+173773.0628627588 3.5574589 1103.3752
+173774.0628628631 3.5573802 1103.3752
+173775.0628629674 3.5574589 1103.3555
+173776.0628630717 3.5574589 1103.2963
+173777.062863176 3.5574589 1103.3752
+173778.0628632803 3.5575769 1103.3555
+173779.0628633846 3.5575769 1103.316
+173780.0628634889 3.5575769 1103.4147
+173781.0628635932 3.5574195 1103.4344
+173782.0628636975 3.5574982 1103.3752
+173783.0628638018 3.5575769 1103.4344
+173784.0628639061 3.5577345 1103.3752
+173785.0628640105 3.5576558 1103.3949
+173786.0628641148 3.5576558 1103.3949
+173787.0628642191 3.5576952 1103.3357
+173788.0628643234 3.5576558 1103.2765
+173789.0628644277 3.5577345 1103.3357
+173790.062864532 3.5578132 1103.3752
+173791.0628646363 3.5577345 1103.3949
+173792.0628647406 3.5576952 1103.4147
+173793.0628648449 3.5577345 1103.4344
+173794.0628649492 3.5577738 1103.3555
+173795.0628650535 3.5578132 1103.4147
+173796.0628651578 3.5577738 1103.2765
+173797.0628652622 3.5578918 1103.3949
+173798.0628653665 3.5578525 1103.3555
+173799.0628654708 3.5578132 1103.3357
+173800.0628655751 3.5578525 1103.3357
+173801.0628656794 3.5579708 1103.2963
+173802.0628657837 3.5577738 1103.3949
+173803.062865888 3.5578132 1103.316
+173804.0628659923 3.5578918 1103.4147
+173805.0628660966 3.5580101 1103.3752
+173806.0628662009 3.5580101 1103.3949
+173807.0628663052 3.5580494 1103.3555
+173808.0628664095 3.5579312 1103.3555
+173809.0628665139 3.5580888 1103.2567
+173810.0628666182 3.5579708 1103.4542
+173811.0628667225 3.5579708 1103.3949
+173812.0628668268 3.5580494 1103.3752
+173813.0628669311 3.5580888 1103.3752
+173814.0628670354 3.5580888 1103.4344
+173815.0628671397 3.5580494 1103.3949
+173816.062867244 3.5580101 1103.3752
+173817.0628673483 3.5580888 1103.5332
+173818.0628674526 3.5581675 1103.2765
+173819.0628675569 3.5580101 1103.4147
+173820.0628676612 3.5581675 1103.3555
+173821.0628677655 3.5581281 1103.3949
+173822.0628678699 3.5582068 1103.3752
+173823.0628679742 3.5581675 1103.4542
+173824.0628680785 3.5582464 1103.2567
+173825.0628681828 3.5582857 1103.2963
+173826.0628682871 3.5582857 1103.3949
+173827.0628683914 3.5582857 1103.3752
+173828.0628684957 3.5583644 1103.2963
+173829.0628686 3.5582857 1103.3555
+173830.0628687043 3.5582068 1103.3357
+173831.0628688086 3.5582857 1103.4147
+173832.0628689129 3.5582068 1103.3752
+173833.0628690172 3.5582464 1103.3949
+173834.0628691216 3.5584037 1103.3555
+173835.0628692259 3.5583644 1103.3949
+173836.0628693302 3.5584431 1103.3752
+173837.0628694345 3.5584037 1103.2963
+173838.0628695388 3.5584037 1103.2765
+173839.0628696431 3.5583251 1103.316
+173840.0628697474 3.5584431 1103.3555
+173841.0628698517 3.5583644 1103.2765
+173842.062869956 3.5584824 1103.3752
+173843.0628700603 3.5585217 1103.4344
+173844.0628701646 3.5584824 1103.316
+173845.0628702689 3.5585217 1103.4344
+173846.0628703733 3.5585217 1103.3357
+173847.0628704776 3.5586007 1103.3555
+173848.0628705819 3.5584824 1103.3555
+173849.0628706862 3.5585217 1103.3555
+173850.0628707905 3.5583644 1103.3949
+173851.0628708948 3.55864 1103.316
+173852.0628709991 3.5586793 1103.2963
+173853.0628711034 3.5586007 1103.3949
+173854.0628712077 3.5585613 1103.4344
+173855.062871312 3.5585613 1103.3555
+173856.0628714163 3.5585217 1103.4147
+173857.0628715206 3.5584824 1103.3752
+173858.0628716249 3.5586793 1103.2963
+173859.0628717293 3.5585613 1103.4147
+173860.0628718336 3.55864 1103.2765
+173861.0628719379 3.5586793 1103.3555
+173862.0628720422 3.55864 1103.4147
+173863.0628721465 3.55864 1103.2765
+173864.0628722508 3.5586793 1103.3357
+173865.0628723551 3.55864 1103.3555
+173866.0628724594 3.5587187 1103.3949
+173867.0628725637 3.5587187 1103.3357
+173868.062872668 3.5587187 1103.4344
+173869.0628727723 3.5587974 1103.3949
+173870.0628728766 3.5587187 1103.3555
+173871.062872981 3.558758 1103.3357
+173872.0628730853 3.5587974 1103.2765
+173873.0628731896 3.5588763 1103.3357
+173874.0628732939 3.55864 1103.3357
+173875.0628733982 3.5589156 1103.3949
+173876.0628735025 3.5588367 1103.3949
+173877.0628736068 3.5588367 1103.2765
+173878.0628737111 3.5588763 1103.3357
+173879.0628738154 3.5587974 1103.2963
+173880.0628739197 3.5589156 1103.316
+173881.062874024 3.5590336 1103.4542
+173882.0628741283 3.5589943 1103.3357
+173883.0628742327 3.558955 1103.3752
+173884.062874337 3.5589943 1103.3555
+173885.0628744413 3.5589156 1103.3949
+173886.0628745456 3.5590336 1103.3752
+173887.0628746499 3.5590336 1103.3357
+173888.0628747542 3.5590336 1103.2765
+173889.0628748585 3.559073 1103.3357
+173890.0628749628 3.558955 1103.3949
+173891.0628750671 3.5589943 1103.2567
+173892.0628751714 3.559073 1103.3555
+173893.0628752757 3.5591123 1103.3555
+173894.06287538 3.559073 1103.4147
+173895.0628754843 3.5591912 1103.3555
+173896.0628755887 3.5591123 1103.3949
+173897.062875693 3.5591516 1103.3752
+173898.0628757973 3.5591123 1103.3949
+173899.0628759016 3.5591123 1103.2963
+173900.0628760059 3.5591516 1103.3357
+173901.0628761102 3.5591516 1103.3357
+173902.0628762145 3.5592699 1103.2567
+173903.0628763188 3.5592306 1103.3752
+173904.0628764231 3.5591516 1103.3555
+173905.0628765274 3.5591516 1103.316
+173906.0628766317 3.5591516 1103.2765
+173907.062876736 3.5591912 1103.3752
+173908.0628768404 3.5592306 1103.3555
+173909.0628769447 3.5592306 1103.4147
+173910.062877049 3.5591912 1103.3555
+173911.0628771533 3.5592699 1103.316
+173912.0628772576 3.5593879 1103.316
+173913.0628773619 3.5594273 1103.4344
+173914.0628774662 3.5593879 1103.3949
+173915.0628775705 3.5593486 1103.3357
+173916.0628776748 3.5594273 1103.3949
+173917.0628777791 3.5594666 1103.3752
+173918.0628778834 3.5593879 1103.3752
+173919.0628779877 3.5593486 1103.3555
+173920.0628780921 3.5595455 1103.3357
+173921.0628781964 3.5595455 1103.3357
+173922.0628783007 3.5594666 1103.3555
+173923.062878405 3.5595062 1103.4542
+173924.0628785093 3.5595062 1103.4542
+173925.0628786136 3.5595455 1103.3555
+173926.0628787179 3.5594666 1103.3752
+173927.0628788222 3.5595849 1103.3949
+173928.0628789265 3.5596242 1103.2172
+173929.0628790308 3.5595849 1103.4542
+173930.0628791351 3.5595455 1103.3752
+173931.0628792394 3.5595455 1103.3752
+173932.0628793438 3.5595062 1103.3752
+173933.0628794481 3.5596635 1103.2963
+173934.0628795524 3.5597029 1103.316
+173935.0628796567 3.5597029 1103.3357
+173936.062879761 3.5597029 1103.3752
+173937.0628798653 3.5596635 1103.3357
+173938.0628799696 3.5595849 1103.3555
+173939.0628800739 3.5597422 1103.4147
+173940.0628801782 3.5598211 1103.3752
+173941.0628802825 3.5598605 1103.2963
+173942.0628803868 3.5597816 1103.2963
+173943.0628804911 3.5597422 1103.4344
+173944.0628805954 3.5597816 1103.4147
+173945.0628806998 3.5598605 1103.4542
+173946.0628808041 3.5598211 1103.3555
+173947.0628809084 3.5598605 1103.3357
+173948.0628810127 3.5598998 1103.3949
+173949.062881117 3.5599785 1103.4147
+173950.0628812213 3.5599391 1103.3752
+173951.0628813256 3.5598211 1103.3357
+173952.0628814299 3.5598998 1103.2765
+173953.0628815342 3.5598605 1103.4542
+173954.0628816385 3.5598605 1103.3752
+173955.0628817428 3.5599785 1103.3555
+173956.0628818471 3.5600178 1103.2765
+173957.0628819515 3.5599785 1103.3555
+173958.0628820558 3.5600572 1103.3357
+173959.0628821601 3.5600178 1103.3357
+173960.0628822644 3.5600178 1103.2963
+173961.0628823687 3.5600178 1103.4147
+173962.062882473 3.5602148 1103.316
+173963.0628825773 3.5600572 1103.3555
+173964.0628826816 3.5600572 1103.4344
+173965.0628827859 3.5600572 1103.3555
+173966.0628828902 3.5602541 1103.2765
+173967.0628829945 3.5601361 1103.3949
+173968.0628830988 3.5601754 1103.3752
+173969.0628832032 3.5602148 1103.3555
+173970.0628833075 3.5602541 1103.2963
+173971.0628834118 3.5602541 1103.2963
+173972.0628835161 3.5602148 1103.3752
+173973.0628836204 3.5602934 1103.316
+173974.0628837247 3.5603328 1103.3752
+173975.062883829 3.5602934 1103.3949
+173976.0628839333 3.5604117 1103.3555
+173977.0628840376 3.5603721 1103.4147
+173978.0628841419 3.5604117 1103.3555
+173979.0628842462 3.560451 1103.3949
+173980.0628843505 3.5602934 1103.3949
+173981.0628844548 3.5603721 1103.316
+173982.0628845592 3.5604117 1103.3357
+173983.0628846635 3.5605297 1103.3555
+173984.0628847678 3.5605297 1103.3752
+173985.0628848721 3.5605297 1103.3949
+173986.0628849764 3.5604904 1103.316
+173987.0628850807 3.5606477 1103.316
+173988.062885185 3.5606084 1103.3752
+173989.0628852893 3.5606084 1103.3555
+173990.0628853936 3.5605297 1103.3555
+173991.0628854979 3.5606084 1103.3752
+173992.0628856022 3.5606084 1103.4542
+173993.0628857065 3.5606871 1103.3357
+173994.0628858109 3.560766 1103.4147
+173995.0628859152 3.5606084 1103.316
+173996.0628860195 3.5606477 1103.3949
+173997.0628861238 3.560766 1103.4147
+173998.0628862281 3.5606871 1103.2765
+173999.0628863324 3.5606871 1103.4147
+174000.0628864367 3.5606871 1103.3555
+174001.062886541 3.560766 1103.3752
+174002.0628866453 3.5607266 1103.3357
+174003.0628867496 3.5606871 1103.3357
+174004.0628868539 3.560766 1103.3555
+174005.0628869582 3.560766 1103.2765
+174006.0628870626 3.5608053 1103.3357
+174007.0628871669 3.5609233 1103.3555
+174008.0628872712 3.560884 1103.316
+174009.0628873755 3.560884 1103.3555
+174010.0628874798 3.5609627 1103.3752
+174011.0628875841 3.560884 1103.3555
+174012.0628876884 3.5609627 1103.3949
+174013.0628877927 3.5609233 1103.4542
+174014.062887897 3.5609627 1103.2963
+174015.0628880013 3.5609233 1103.316
+174016.0628881056 3.561002 1103.3555
+174017.0628882099 3.5609233 1103.3555
+174018.0628883142 3.5610416 1103.3752
+174019.0628884186 3.5609233 1103.2963
+174020.0628885229 3.5609233 1103.3949
+174021.0628886272 3.5609627 1103.3555
+174022.0628887315 3.5610416 1103.4147
+174023.0628888358 3.561002 1103.3555
+174024.0628889401 3.5610416 1103.3555
+174025.0628890444 3.5611203 1103.3752
+174026.0628891487 3.5610809 1103.2765
+174027.062889253 3.5610416 1103.3752
+174028.0628893573 3.5611203 1103.3357
+174029.0628894616 3.5611596 1103.3949
+174030.0628895659 3.5610416 1103.3555
+174031.0628896703 3.5612383 1103.2963
+174032.0628897746 3.5612383 1103.4147
+174033.0628898789 3.5611989 1103.3357
+174034.0628899832 3.5610416 1103.4147
+174035.0628900875 3.5611203 1103.3949
+174036.0628901918 3.5613565 1103.3752
+174037.0628902961 3.5611989 1103.3752
+174038.0628904004 3.5613959 1103.3555
+174039.0628905047 3.5612776 1103.3357
+174040.062890609 3.5612776 1103.4147
+174041.0628907133 3.5611989 1103.3357
+174042.0628908176 3.561317 1103.3752
+174043.062890922 3.561317 1103.316
+174044.0628910263 3.5613959 1103.3949
+174045.0628911306 3.5614352 1103.2567
+174046.0628912349 3.5615139 1103.3555
+174047.0628913392 3.5614746 1103.2963
+174048.0628914435 3.5615139 1103.3752
+174049.0628915478 3.5614352 1103.3357
+174050.0628916521 3.5614746 1103.3555
+174051.0628917564 3.5614746 1103.3752
+174052.0628918607 3.5614746 1103.3357
+174053.062891965 3.5616319 1103.3752
+174054.0628920693 3.5615926 1103.3752
+174055.0628921737 3.5615139 1103.3752
+174056.062892278 3.5616319 1103.474
+174057.0628923823 3.5616715 1103.2765
+174058.0628924866 3.5616319 1103.3555
+174059.0628925909 3.5617108 1103.3555
+174060.0628926952 3.5616715 1103.4542
+174061.0628927995 3.5617108 1103.3949
+174062.0628929038 3.5617108 1103.3357
+174063.0628930081 3.5616319 1103.3949
+174064.0628931124 3.5616319 1103.3752
+174065.0628932167 3.5617895 1103.3949
+174066.062893321 3.5617108 1103.3752
+174067.0628934253 3.5617108 1103.4344
+174068.0628935297 3.5617895 1103.3949
+174069.062893634 3.5618682 1103.4147
+174070.0628937383 3.5617895 1103.3555
+174071.0628938426 3.5618289 1103.3752
+174072.0628939469 3.5617895 1103.3357
+174073.0628940512 3.5618289 1103.4344
+174074.0628941555 3.5618682 1103.3949
+174075.0628942598 3.5618682 1103.3555
+174076.0628943641 3.5619471 1103.3949
+174077.0628944684 3.5619075 1103.316
+174078.0628945727 3.5618289 1103.3949
+174079.062894677 3.5618682 1103.3357
+174080.0628947814 3.5620258 1103.2963
+174081.0628948857 3.5620258 1103.3752
+174082.06289499 3.5620258 1103.3555
+174083.0628950943 3.5620258 1103.4147
+174084.0628951986 3.5620258 1103.3752
+174085.0628953029 3.5620651 1103.3555
+174086.0628954072 3.5620258 1103.3357
+174087.0628955115 3.5621438 1103.3357
+174088.0628956158 3.5620258 1103.3357
+174089.0628957201 3.5621045 1103.3752
+174090.0628958244 3.5621831 1103.3752
+174091.0628959287 3.5621438 1103.3555
+174092.0628960331 3.5623014 1103.3752
+174093.0628961374 3.5622225 1103.3555
+174094.0628962417 3.5622225 1103.3752
+174095.062896346 3.5621438 1103.3949
+174096.0628964503 3.5622621 1103.3555
+174097.0628965546 3.5622621 1103.4344
+174098.0628966589 3.5622621 1103.3357
+174099.0628967632 3.5622621 1103.474
+174100.0628968675 3.5623014 1103.316
+174101.0628969718 3.5623407 1103.3555
+174102.0628970761 3.5622621 1103.3357
+174103.0628971804 3.5624588 1103.3357
+174104.0628972847 3.5623407 1103.3357
+174105.0628973891 3.5622621 1103.2369
+174106.0628974934 3.5623801 1103.3752
+174107.0628975977 3.5624588 1103.3357
+174108.062897702 3.5624588 1103.3357
+174109.0628978063 3.5624588 1103.3949
+174110.0628979106 3.5624981 1103.3752
+174111.0628980149 3.562577 1103.3752
+174112.0628981192 3.562577 1103.3752
+174113.0628982235 3.5624981 1103.4542
+174114.0628983278 3.5624981 1103.316
+174115.0628984321 3.5626163 1103.4147
+174116.0628985364 3.5625374 1103.3949
+174117.0628986408 3.5624981 1103.2765
+174118.0628987451 3.562695 1103.3949
+174119.0628988494 3.562695 1103.316
+174120.0628989537 3.562577 1103.3357
+174121.062899058 3.5625374 1103.4147
+174122.0628991623 3.562695 1103.3357
+174123.0628992666 3.5627737 1103.474
+174124.0628993709 3.562695 1103.3555
+174125.0628994752 3.5626557 1103.3752
+174126.0628995795 3.562695 1103.3949
+174127.0628996838 3.562695 1103.3357
+174128.0628997881 3.5627344 1103.3949
+174129.0628998925 3.562892 1103.3357
+174130.0628999968 3.562813 1103.3357
+174131.0629001011 3.5627737 1103.3752
+174132.0629002054 3.562892 1103.4542
+174133.0629003097 3.562813 1103.3752
+174134.062900414 3.562892 1103.3752
+174135.0629005183 3.562813 1103.316
+174136.0629006226 3.562892 1103.3357
+174137.0629007269 3.562813 1103.316
+174138.0629008312 3.5629706 1103.3752
+174139.0629009355 3.5628524 1103.3752
+174140.0629010398 3.562892 1103.3949
+174141.0629011441 3.56301 1103.3357
+174142.0629012485 3.5629706 1103.4344
+174143.0629013528 3.562892 1103.2567
+174144.0629014571 3.5629706 1103.3949
+174145.0629015614 3.56301 1103.3555
+174146.0629016657 3.5630887 1103.3949
+174147.06290177 3.5630493 1103.3357
+174148.0629018743 3.56301 1103.316
+174149.0629019786 3.5630493 1103.316
+174150.0629020829 3.5630887 1103.316
+174151.0629021872 3.5630887 1103.3357
+174152.0629022915 3.563128 1103.2963
+174153.0629023958 3.5630887 1103.3555
+174154.0629025002 3.5630887 1103.3752
+174155.0629026045 3.5632069 1103.3949
+174156.0629027088 3.5632069 1103.2567
+174157.0629028131 3.5632463 1103.3752
+174158.0629029174 3.5632463 1103.4344
+174159.0629030217 3.5632463 1103.3555
+174160.062903126 3.5632463 1103.2765
+174161.0629032303 3.5632856 1103.316
+174162.0629033346 3.5632463 1103.3555
+174163.0629034389 3.5632856 1103.2963
+174164.0629035432 3.5632463 1103.3752
+174165.0629036475 3.5632856 1103.316
+174166.0629037519 3.5633643 1103.2963
+174167.0629038562 3.5634823 1103.3949
+174168.0629039605 3.5634823 1103.3555
+174169.0629040648 3.5634429 1103.3752
+174170.0629041691 3.5634823 1103.3949
+174171.0629042734 3.5633643 1103.3949
+174172.0629043777 3.5636005 1103.3357
+174173.062904482 3.5634823 1103.2963
+174174.0629045863 3.5634823 1103.3357
+174175.0629046906 3.5634823 1103.3752
+174176.0629047949 3.5635219 1103.5134
+174177.0629048992 3.5635219 1103.3949
+174178.0629050036 3.5634823 1103.4147
+174179.0629051079 3.5635219 1103.3357
+174180.0629052122 3.5635219 1103.3752
+174181.0629053165 3.5635219 1103.4344
+174182.0629054208 3.5636792 1103.3949
+174183.0629055251 3.5636792 1103.4344
+174184.0629056294 3.5636792 1103.3949
+174185.0629057337 3.5636792 1103.4542
+174186.062905838 3.5636399 1103.4147
+174187.0629059423 3.5637186 1103.3949
+174188.0629060466 3.5636792 1103.3357
+174189.0629061509 3.5637186 1103.2765
+174190.0629062552 3.5636399 1103.3752
+174191.0629063596 3.5637579 1103.4147
+174192.0629064639 3.5637579 1103.3357
+174193.0629065682 3.5637579 1103.3949
+174194.0629066725 3.5639155 1103.2369
+174195.0629067768 3.5638368 1103.3357
+174196.0629068811 3.5637579 1103.3949
+174197.0629069854 3.5638368 1103.316
+174198.0629070897 3.5638368 1103.3555
+174199.062907194 3.5638762 1103.3357
+174200.0629072983 3.5639155 1103.3752
+174201.0629074026 3.5639155 1103.3555
+174202.0629075069 3.5639548 1103.3949
+174203.0629076113 3.5638368 1103.4542
+174204.0629077156 3.5638368 1103.3555
+174205.0629078199 3.5639155 1103.3752
+174206.0629079242 3.5638762 1103.3949
+174207.0629080285 3.5639155 1103.3555
+174208.0629081328 3.5639155 1103.2963
+174209.0629082371 3.5639942 1103.316
+174210.0629083414 3.5640335 1103.3752
+174211.0629084457 3.5639942 1103.3555
+174212.06290855 3.5639548 1103.4147
+174213.0629086543 3.5640335 1103.4147
+174214.0629087586 3.5639548 1103.4344
+174215.062908863 3.5640728 1103.3357
+174216.0629089673 3.5641124 1103.2963
+174217.0629090716 3.5641124 1103.316
+174218.0629091759 3.5640335 1103.316
+174219.0629092802 3.5641518 1103.2765
+174220.0629093845 3.5640728 1103.3752
+174221.0629094888 3.5641911 1103.3949
+174222.0629095931 3.5641518 1103.3555
+174223.0629096974 3.5642304 1103.316
+174224.0629098017 3.5642304 1103.4938
+174225.062909906 3.5642698 1103.316
+174226.0629100103 3.5642304 1103.3752
+174227.0629101146 3.5641124 1103.4344
+174228.062910219 3.5642698 1103.3555
+174229.0629103233 3.5642698 1103.2963
+174230.0629104276 3.5642304 1103.4147
+174231.0629105319 3.5643091 1103.2963
+174232.0629106362 3.5643091 1103.3357
+174233.0629107405 3.5643878 1103.3357
+174234.0629108448 3.5644274 1103.4344
+174235.0629109491 3.5644274 1103.316
+174236.0629110534 3.5643878 1103.3357
+174237.0629111577 3.5644667 1103.3555
+174238.062911262 3.5643878 1103.316
+174239.0629113663 3.5643878 1103.3949
+174240.0629114707 3.5644274 1103.2963
+174241.062911575 3.5645454 1103.3357
+174242.0629116793 3.5644274 1103.4344
+174243.0629117836 3.5645454 1103.4147
+174244.0629118879 3.5644667 1103.3357
+174245.0629119922 3.5645061 1103.4344
+174246.0629120965 3.5645061 1103.3752
+174247.0629122008 3.5645847 1103.4147
+174248.0629123051 3.5644667 1103.4542
+174249.0629124094 3.5645847 1103.3752
+174250.0629125137 3.5645061 1103.316
+174251.062912618 3.5647027 1103.4147
+174252.0629127224 3.5647027 1103.3555
+174253.0629128267 3.5646634 1103.3752
+174254.062912931 3.5646634 1103.3949
+174255.0629130353 3.5647027 1103.4344
+174256.0629131396 3.5647423 1103.3949
+174257.0629132439 3.5647423 1103.3949
+174258.0629133482 3.5647817 1103.3357
+174259.0629134525 3.5647423 1103.3357
+174260.0629135568 3.5646634 1103.3752
+174261.0629136611 3.5647423 1103.3555
+174262.0629137654 3.5647423 1103.3555
+174263.0629138697 3.5647027 1103.3555
+174264.062913974 3.5648997 1103.2765
+174265.0629140784 3.5647027 1103.3555
+174266.0629141827 3.5646634 1103.3752
+174267.062914287 3.564821 1103.3555
+174268.0629143913 3.5648603 1103.4542
+174269.0629144956 3.5647423 1103.316
+174270.0629145999 3.5649784 1103.2765
+174271.0629147042 3.5648603 1103.3357
+174272.0629148085 3.5647817 1103.3752
+174273.0629149128 3.5649784 1103.3555
+174274.0629150171 3.5648997 1103.3555
+174275.0629151214 3.5648997 1103.3555
+174276.0629152257 3.5648603 1103.4344
+174277.0629153301 3.5648997 1103.4147
+174278.0629154344 3.5650966 1103.2765
+174279.0629155387 3.564939 1103.4147
+174280.062915643 3.5649784 1103.3555
+174281.0629157473 3.564939 1103.3555
+174282.0629158516 3.5649784 1103.3555
+174283.0629159559 3.5649784 1103.3357
+174284.0629160602 3.5650573 1103.3555
+174285.0629161645 3.5650966 1103.3357
+174286.0629162688 3.5650177 1103.316
+174287.0629163731 3.5650966 1103.3357
+174288.0629164774 3.5650573 1103.3752
+174289.0629165818 3.5650177 1103.4147
+174290.0629166861 3.5650966 1103.4147
+174291.0629167904 3.565254 1103.2765
+174292.0629168947 3.5652146 1103.3949
+174293.062916999 3.565254 1103.3357
+174294.0629171033 3.565254 1103.2963
+174295.0629172076 3.565254 1103.316
+174296.0629173119 3.565254 1103.3949
+174297.0629174162 3.5652933 1103.3949
+174298.0629175205 3.5653327 1103.3357
+174299.0629176248 3.5653327 1103.3357
+174300.0629177291 3.5651753 1103.3555
+174301.0629178334 3.5653327 1103.3949
+174302.0629179378 3.5653327 1103.3555
+174303.0629180421 3.5653722 1103.3555
+174304.0629181464 3.5654902 1103.3357
+174305.0629182507 3.5654116 1103.3357
+174306.062918355 3.5653722 1103.3555
+174307.0629184593 3.5654902 1103.2963
+174308.0629185636 3.5655689 1103.3752
+174309.0629186679 3.5654902 1103.2765
+174310.0629187722 3.5654509 1103.4147
+174311.0629188765 3.5654902 1103.3949
+174312.0629189808 3.5654902 1103.3357
+174313.0629190851 3.5655296 1103.3555
+174314.0629191895 3.5656083 1103.3555
+174315.0629192938 3.5655296 1103.3752
+174316.0629193981 3.5655689 1103.3752
+174317.0629195024 3.5655296 1103.3555
+174318.0629196067 3.5655296 1103.3752
+174319.062919711 3.5656083 1103.3949
+174320.0629198153 3.5656478 1103.3752
+174321.0629199196 3.5656478 1103.4147
+174322.0629200239 3.5656478 1103.2765
+174323.0629201282 3.5657265 1103.316
+174324.0629202325 3.5658052 1103.3555
+174325.0629203368 3.5656872 1103.3555
+174326.0629204412 3.5658445 1103.4542
+174327.0629205455 3.5658445 1103.3555
+174328.0629206498 3.5657265 1103.3357
+174329.0629207541 3.5658052 1103.4147
+174330.0629208584 3.5658052 1103.2963
+174331.0629209627 3.5657265 1103.4344
+174332.062921067 3.5658839 1103.3555
+174333.0629211713 3.5658052 1103.3949
+174334.0629212756 3.5659628 1103.3949
+174335.0629213799 3.5658445 1103.3949
+174336.0629214842 3.5659628 1103.3555
+174337.0629215885 3.5658839 1103.316
+174338.0629216929 3.5658839 1103.3949
+174339.0629217972 3.5659232 1103.3752
+174340.0629219015 3.5658445 1103.3949
+174341.0629220058 3.5660808 1103.474
+174342.0629221101 3.5659232 1103.3949
+174343.0629222144 3.5659628 1103.316
+174344.0629223187 3.5659232 1103.3949
+174345.062922423 3.5660415 1103.3555
+174346.0629225273 3.5660021 1103.2963
+174347.0629226316 3.5660415 1103.316
+174348.0629227359 3.5660415 1103.3752
+174349.0629228402 3.5660415 1103.3555
+174350.0629229445 3.5660415 1103.3752
+174351.0629230489 3.5660808 1103.3949
+174352.0629231532 3.5660808 1103.3752
+174353.0629232575 3.5660808 1103.3357
+174354.0629233618 3.5661988 1103.3752
+174355.0629234661 3.5661595 1103.316
+174356.0629235704 3.5662382 1103.4147
+174357.0629236747 3.5660808 1103.3752
+174358.062923779 3.5661988 1103.4147
+174359.0629238833 3.5662382 1103.2963
+174360.0629239876 3.5661988 1103.3949
+174361.0629240919 3.5661595 1103.3555
+174362.0629241962 3.5661988 1103.316
+174363.0629243006 3.5662777 1103.2765
+174364.0629244049 3.5663171 1103.4344
+174365.0629245092 3.5663171 1103.3949
+174366.0629246135 3.5663564 1103.316
+174367.0629247178 3.5662777 1103.3555
+174368.0629248221 3.5663564 1103.316
+174369.0629249264 3.5663564 1103.3555
+174370.0629250307 3.5663171 1103.3357
+174371.062925135 3.5663564 1103.3949
+174372.0629252393 3.5663564 1103.316
+174373.0629253436 3.5663564 1103.4147
+174374.0629254479 3.5664351 1103.3752
+174375.0629255523 3.5664351 1103.4147
+174376.0629256566 3.5663958 1103.4147
+174377.0629257609 3.5664351 1103.3357
+174378.0629258652 3.5664351 1103.3752
+174379.0629259695 3.5663958 1103.3357
+174380.0629260738 3.5665138 1103.3949
+174381.0629261781 3.5664351 1103.3752
+174382.0629262824 3.5664744 1103.3752
+174383.0629263867 3.5664744 1103.3555
+174384.062926491 3.5665138 1103.2369
+174385.0629265953 3.5665531 1103.4147
+174386.0629266996 3.5665138 1103.316
+174387.0629268039 3.5665531 1103.3752
+174388.0629269083 3.566632 1103.3752
+174389.0629270126 3.566632 1103.3357
+174390.0629271169 3.5665138 1103.3555
+174391.0629272212 3.5665138 1103.4542
+174392.0629273255 3.5667107 1103.4344
+174393.0629274298 3.566632 1103.3752
+174394.0629275341 3.5666714 1103.316
+174395.0629276384 3.5665927 1103.316
+174396.0629277427 3.5667107 1103.4147
+174397.062927847 3.566632 1103.3555
+174398.0629279513 3.5665927 1103.3752
+174399.0629280556 3.5665927 1103.316
+174400.06292816 3.56675 1103.2369
+174401.0629282643 3.5667894 1103.316
+174402.0629283686 3.5667107 1103.3752
+174403.0629284729 3.5667894 1103.4147
+174404.0629285772 3.56675 1103.2963
+174405.0629286815 3.5667107 1103.3555
+174406.0629287858 3.5667894 1103.4344
+174407.0629288901 3.5668287 1103.4344
+174408.0629289944 3.5668287 1103.3357
+174409.0629290987 3.5667894 1103.2963
+174410.062929203 3.5669076 1103.3752
+174411.0629293073 3.5667894 1103.2963
+174412.0629294117 3.5668287 1103.3357
+174413.062929516 3.5668287 1103.3752
+174414.0629296203 3.5668287 1103.316
+174415.0629297246 3.566947 1103.3752
+174416.0629298289 3.5668681 1103.2963
+174417.0629299332 3.566947 1103.2963
+174418.0629300375 3.5669863 1103.3357
+174419.0629301418 3.5670257 1103.316
+174420.0629302461 3.567065 1103.3752
+174421.0629303504 3.5671043 1103.2765
+174422.0629304547 3.5671833 1103.2963
+174423.062930559 3.567065 1103.3357
+174424.0629306633 3.5669863 1103.4344
+174425.0629307677 3.5670257 1103.3752
+174426.062930872 3.5671833 1103.4147
+174427.0629309763 3.5671043 1103.2963
+174428.0629310806 3.5671043 1103.3949
+174429.0629311849 3.5671833 1103.3357
+174430.0629312892 3.5671437 1103.2567
+174431.0629313935 3.5670257 1103.3949
+174432.0629314978 3.5671833 1103.3949
+174433.0629316021 3.5671043 1103.4147
+174434.0629317064 3.5672226 1103.3555
+174435.0629318107 3.5671437 1103.3949
+174436.062931915 3.5671833 1103.2963
+174437.0629320194 3.5672226 1103.3357
+174438.0629321237 3.5672226 1103.316
+174439.062932228 3.5673013 1103.4147
+174440.0629323323 3.5673013 1103.3357
+174441.0629324366 3.5672226 1103.316
+174442.0629325409 3.5673013 1103.3357
+174443.0629326452 3.5673406 1103.3357
+174444.0629327495 3.5674193 1103.3949
+174445.0629328538 3.5674193 1103.3949
+174446.0629329581 3.5674193 1103.3555
+174447.0629330624 3.5674193 1103.316
+174448.0629331667 3.56738 1103.4344
+174449.0629332711 3.5675375 1103.2963
+174450.0629333754 3.5674193 1103.3752
+174451.0629334797 3.5674586 1103.3752
+174452.062933584 3.5675375 1103.3752
+174453.0629336883 3.5675375 1103.3555
+174454.0629337926 3.5675375 1103.2963
+174455.0629338969 3.5675769 1103.3949
+174456.0629340012 3.5676162 1103.3357
+174457.0629341055 3.5675769 1103.2567
+174458.0629342098 3.5677736 1103.3357
+174459.0629343141 3.5676556 1103.316
+174460.0629344184 3.5676949 1103.3752
+174461.0629345228 3.5676556 1103.3357
+174462.0629346271 3.5676949 1103.3555
+174463.0629347314 3.5676949 1103.2963
+174464.0629348357 3.5676949 1103.3357
+174465.06293494 3.5677342 1103.4147
+174466.0629350443 3.5676556 1103.4147
+174467.0629351486 3.5677736 1103.3752
+174468.0629352529 3.5677736 1103.3949
+174469.0629353572 3.5677342 1103.3752
+174470.0629354615 3.5678918 1103.3555
+174471.0629355658 3.5677342 1103.2765
+174472.0629356701 3.5678525 1103.2963
+174473.0629357744 3.5678132 1103.3357
+174474.0629358788 3.5676949 1103.3752
+174475.0629359831 3.5678525 1103.3752
+174476.0629360874 3.5678132 1103.3949
+174477.0629361917 3.5678525 1103.4147
+174478.062936296 3.5678525 1103.2765
+174479.0629364003 3.5679312 1103.3752
+174480.0629365046 3.5678525 1103.316
+174481.0629366089 3.5678918 1103.3555
+174482.0629367132 3.5678918 1103.3949
+174483.0629368175 3.5678525 1103.4147
+174484.0629369218 3.5679705 1103.3752
+174485.0629370261 3.5680099 1103.3752
+174486.0629371305 3.5679705 1103.3357
+174487.0629372348 3.5679705 1103.316
+174488.0629373391 3.5680099 1103.3752
+174489.0629374434 3.5680492 1103.3949
+174490.0629375477 3.5680492 1103.3949
+174491.062937652 3.5680099 1103.4344
+174492.0629377563 3.5679312 1103.3752
+174493.0629378606 3.5679705 1103.3555
+174494.0629379649 3.5680099 1103.3752
+174495.0629380692 3.5680492 1103.4542
+174496.0629381735 3.5680099 1103.2567
+174497.0629382778 3.5679705 1103.3752
+174498.0629383822 3.5681281 1103.2963
+174499.0629384865 3.5681674 1103.3752
+174500.0629385908 3.5681674 1103.3357
+174501.0629386951 3.5680492 1103.3949
+174502.0629387994 3.5680885 1103.316
+174503.0629389037 3.5681674 1103.3949
+174504.062939008 3.5681674 1103.3752
+174505.0629391123 3.5681674 1103.3357
+174506.0629392166 3.5682461 1103.3357
+174507.0629393209 3.5681674 1103.2963
+174508.0629394252 3.5681674 1103.3357
+174509.0629395295 3.5682855 1103.474
+174510.0629396338 3.5681674 1103.3555
+174511.0629397382 3.5683641 1103.2963
+174512.0629398425 3.5682461 1103.3949
+174513.0629399468 3.5683641 1103.3752
+174514.0629400511 3.5682855 1103.316
+174515.0629401554 3.5683641 1103.2963
+174516.0629402597 3.5682855 1103.2172
+174517.062940364 3.5682855 1103.4344
+174518.0629404683 3.5683641 1103.4147
+174519.0629405726 3.5684431 1103.316
+174520.0629406769 3.5684035 1103.3752
+174521.0629407812 3.5684431 1103.3555
+174522.0629408855 3.5684824 1103.3555
+174523.0629409899 3.5684035 1103.316
+174524.0629410942 3.5685217 1103.3555
+174525.0629411985 3.5684431 1103.3949
+174526.0629413028 3.5685217 1103.3752
+174527.0629414071 3.5684824 1103.316
+174528.0629415114 3.5684824 1103.3555
+174529.0629416157 3.5685611 1103.4542
+174530.06294172 3.5685611 1103.3949
+174531.0629418243 3.5686398 1103.3752
+174532.0629419286 3.5686004 1103.3752
+174533.0629420329 3.5685611 1103.3949
+174534.0629421372 3.5686004 1103.3752
+174535.0629422416 3.5685611 1103.3752
+174536.0629423459 3.5687184 1103.3357
+174537.0629424502 3.5686398 1103.4344
+174538.0629425545 3.5687184 1103.3752
+174539.0629426588 3.5686791 1103.2963
+174540.0629427631 3.5686791 1103.316
+174541.0629428674 3.5688367 1103.3752
+174542.0629429717 3.568758 1103.3555
+174543.062943076 3.5687973 1103.3357
+174544.0629431803 3.5687184 1103.3555
+174545.0629432846 3.5687973 1103.2963
+174546.0629433889 3.568876 1103.3555
+174547.0629434932 3.5688367 1103.2567
+174548.0629435976 3.568876 1103.4147
+174549.0629437019 3.5687973 1103.3752
+174550.0629438062 3.5687973 1103.4147
+174551.0629439105 3.5688367 1103.3949
+174552.0629440148 3.568758 1103.3555
+174553.0629441191 3.5689154 1103.3949
+174554.0629442234 3.5687973 1103.2567
+174555.0629443277 3.5689154 1103.3949
+174556.062944432 3.5689154 1103.2765
+174557.0629445363 3.5689547 1103.2963
+174558.0629446406 3.5689547 1103.3555
+174559.0629447449 3.5689154 1103.316
+174560.0629448493 3.5689154 1103.2963
+174561.0629449536 3.568994 1103.3357
+174562.0629450579 3.568994 1103.4344
+174563.0629451622 3.568994 1103.3949
+174564.0629452665 3.569073 1103.316
+174565.0629453708 3.5689547 1103.4542
+174566.0629454751 3.5690336 1103.3949
+174567.0629455794 3.569073 1103.3752
+174568.0629456837 3.5691516 1103.4147
+174569.062945788 3.5691123 1103.3357
+174570.0629458923 3.5691516 1103.4147
+174571.0629459966 3.5691123 1103.4147
+174572.062946101 3.569191 1103.3949
+174573.0629462053 3.5692697 1103.2963
+174574.0629463096 3.5692697 1103.4344
+174575.0629464139 3.569191 1103.3357
+174576.0629465182 3.5692697 1103.3357
+174577.0629466225 3.569073 1103.3555
+174578.0629467268 3.569191 1103.3357
+174579.0629468311 3.5692697 1103.2963
+174580.0629469354 3.5692697 1103.4542
+174581.0629470397 3.569191 1103.4147
+174582.062947144 3.569309 1103.316
+174583.0629472483 3.569309 1103.3357
+174584.0629473527 3.569309 1103.4542
+174585.062947457 3.5693486 1103.3949
+174586.0629475613 3.5694273 1103.3752
+174587.0629476656 3.5694273 1103.3752
+174588.0629477699 3.5693486 1103.3752
+174589.0629478742 3.569309 1103.2963
+174590.0629479785 3.569309 1103.3949
+174591.0629480828 3.5694273 1103.3357
+174592.0629481871 3.5694273 1103.4147
+174593.0629482914 3.5693879 1103.316
+174594.0629483957 3.5694666 1103.3949
+174595.0629485 3.5694273 1103.316
+174596.0629486043 3.5694666 1103.4344
+174597.0629487087 3.5694666 1103.4147
+174598.062948813 3.5695059 1103.4147
+174599.0629489173 3.5695453 1103.4344
+174600.0629490216 3.5696239 1103.2963
+174601.0629491259 3.5695453 1103.3752
+174602.0629492302 3.5695846 1103.3752
+174603.0629493345 3.5695453 1103.3555
+174604.0629494388 3.5696239 1103.4147
+174605.0629495431 3.5696635 1103.3357
+174606.0629496474 3.5696239 1103.2963
+174607.0629497517 3.5696635 1103.3752
+174608.062949856 3.5695846 1103.316
+174609.0629499604 3.5696239 1103.4147
+174610.0629500647 3.5697422 1103.3357
+174611.062950169 3.5696635 1103.3555
+174612.0629502733 3.5696635 1103.316
+174613.0629503776 3.5696239 1103.3555
+174614.0629504819 3.5696635 1103.3752
+174615.0629505862 3.5697422 1103.3752
+174616.0629506905 3.5697422 1103.4344
+174617.0629507948 3.5698996 1103.316
+174618.0629508991 3.5698209 1103.3555
+174619.0629510034 3.5697029 1103.3752
+174620.0629511077 3.5697422 1103.3949
+174621.0629512121 3.5698602 1103.3752
+174622.0629513164 3.5697422 1103.3357
+174623.0629514207 3.5697815 1103.3357
+174624.062951525 3.5698996 1103.3752
+174625.0629516293 3.5698602 1103.316
+174626.0629517336 3.5699785 1103.316
+174627.0629518379 3.5699389 1103.2963
+174628.0629519422 3.5698602 1103.3555
+174629.0629520465 3.5698602 1103.3555
+174630.0629521508 3.5699389 1103.3357
+174631.0629522551 3.5698996 1103.3949
+174632.0629523594 3.5699389 1103.3357
+174633.0629524637 3.5699389 1103.316
+174634.0629525681 3.5699389 1103.3949
+174635.0629526724 3.5699785 1103.3357
+174636.0629527767 3.5699389 1103.2963
+174637.062952881 3.5698996 1103.3357
+174638.0629529853 3.5700178 1103.2963
+174639.0629530896 3.5700572 1103.3752
+174640.0629531939 3.5700965 1103.3357
+174641.0629532982 3.5700178 1103.2765
+174642.0629534025 3.5700965 1103.3752
+174643.0629535068 3.5700965 1103.316
+174644.0629536111 3.5701358 1103.2567
+174645.0629537154 3.5701358 1103.2963
+174646.0629538198 3.5701358 1103.316
+174647.0629539241 3.5701358 1103.3752
+174648.0629540284 3.5700965 1103.4147
+174649.0629541327 3.5701358 1103.3555
+174650.062954237 3.5701752 1103.3555
+174651.0629543413 3.5700965 1103.3752
+174652.0629544456 3.5702145 1103.316
+174653.0629545499 3.5702934 1103.3555
+174654.0629546542 3.5702145 1103.3357
+174655.0629547585 3.5702145 1103.3555
+174656.0629548628 3.5701752 1103.3949
+174657.0629549671 3.5702538 1103.4147
+174658.0629550715 3.5703721 1103.4542
+174659.0629551758 3.5702538 1103.2765
+174660.0629552801 3.5702934 1103.3752
+174661.0629553844 3.5703328 1103.4344
+174662.0629554887 3.5702934 1103.3555
+174663.062955593 3.5703328 1103.3949
+174664.0629556973 3.5704114 1103.3357
+174665.0629558016 3.5703721 1103.3752
+174666.0629559059 3.5703328 1103.4147
+174667.0629560102 3.5704508 1103.3357
+174668.0629561145 3.5704114 1103.4344
+174669.0629562188 3.5703328 1103.316
+174670.0629563231 3.5704901 1103.4344
+174671.0629564275 3.5703328 1103.4938
+174672.0629565318 3.5703721 1103.3949
+174673.0629566361 3.5704508 1103.3949
+174674.0629567404 3.5703721 1103.3752
+174675.0629568447 3.5705295 1103.316
+174676.062956949 3.5704901 1103.3752
+174677.0629570533 3.5705295 1103.2963
+174678.0629571576 3.5705688 1103.3555
+174679.0629572619 3.5704114 1103.3357
+174680.0629573662 3.5706084 1103.3357
+174681.0629574705 3.5704901 1103.3949
+174682.0629575748 3.5705688 1103.3555
+174683.0629576792 3.5705688 1103.316
+174684.0629577835 3.5705688 1103.3752
+174685.0629578878 3.5706084 1103.3555
+174686.0629579921 3.5705295 1103.3555
+174687.0629580964 3.5706871 1103.316
+174688.0629582007 3.5706871 1103.316
+174689.062958305 3.5706871 1103.3357
+174690.0629584093 3.5707264 1103.3357
+174691.0629585136 3.5708051 1103.3357
+174692.0629586179 3.5708051 1103.2963
+174693.0629587222 3.5706871 1103.3357
+174694.0629588265 3.5707657 1103.3949
+174695.0629589309 3.5708051 1103.3357
+174696.0629590352 3.5707264 1103.3357
+174697.0629591395 3.5708051 1103.4147
+174698.0629592438 3.5707264 1103.4147
+174699.0629593481 3.5708051 1103.3357
+174700.0629594524 3.5707657 1103.4147
+174701.0629595567 3.570884 1103.3555
+174702.062959661 3.5708051 1103.3949
+174703.0629597653 3.5708444 1103.3752
+174704.0629598696 3.570884 1103.316
+174705.0629599739 3.5709233 1103.4147
+174706.0629600782 3.5709233 1103.3752
+174707.0629601825 3.571002 1103.3357
+174708.0629602869 3.571002 1103.3752
+174709.0629603912 3.5709233 1103.3752
+174710.0629604955 3.571002 1103.3752
+174711.0629605998 3.5709233 1103.4147
+174712.0629607041 3.5710807 1103.4147
+174713.0629608084 3.5710413 1103.3357
+174714.0629609127 3.5710807 1103.316
+174715.062961017 3.57112 1103.3949
+174716.0629611213 3.5710807 1103.3752
+174717.0629612256 3.571002 1103.3555
+174718.0629613299 3.5710807 1103.3752
+174719.0629614342 3.5712383 1103.2963
+174720.0629615386 3.5710807 1103.3949
+174721.0629616429 3.5710807 1103.3357
+174722.0629617472 3.5711594 1103.3949
+174723.0629618515 3.5711989 1103.3357
+174724.0629619558 3.5711594 1103.3555
+174725.0629620601 3.5710807 1103.2765
+174726.0629621644 3.5710807 1103.3752
+174727.0629622687 3.5711989 1103.3357
+174728.062962373 3.5712383 1103.2369
+174729.0629624773 3.5712383 1103.3949
+174730.0629625816 3.5712383 1103.3357
+174731.0629626859 3.571317 1103.3357
+174732.0629627903 3.5712776 1103.3949
+174733.0629628946 3.5712776 1103.316
+174734.0629629989 3.5712776 1103.3752
+174735.0629631032 3.5712776 1103.4147
+174736.0629632075 3.571317 1103.3949
+174737.0629633118 3.5712383 1103.316
+174738.0629634161 3.571317 1103.3357
+174739.0629635204 3.5713956 1103.3752
+174740.0629636247 3.571317 1103.3357
+174741.062963729 3.5713956 1103.3555
+174742.0629638333 3.571435 1103.4147
+174743.0629639376 3.5713956 1103.3752
+174744.062964042 3.5714743 1103.3555
+174745.0629641463 3.5713956 1103.3752
+174746.0629642506 3.571435 1103.316
+174747.0629643549 3.5715139 1103.3949
+174748.0629644592 3.5714743 1103.3752
+174749.0629645635 3.5714743 1103.4147
+174750.0629646678 3.5715926 1103.3555
+174751.0629647721 3.5715926 1103.3357
+174752.0629648764 3.5715532 1103.316
+174753.0629649807 3.5715532 1103.2963
+174754.062965085 3.5715139 1103.3949
+174755.0629651893 3.5715926 1103.316
+174756.0629652936 3.5715532 1103.3752
+174757.062965398 3.5716319 1103.2369
+174758.0629655023 3.5716319 1103.3752
+174759.0629656066 3.5716712 1103.316
+174760.0629657109 3.5717106 1103.4147
+174761.0629658152 3.5716712 1103.3555
+174762.0629659195 3.5716712 1103.3357
+174763.0629660238 3.5716319 1103.3555
+174764.0629661281 3.5717106 1103.4147
+174765.0629662324 3.5716712 1103.3752
+174766.0629663367 3.5717499 1103.316
+174767.062966441 3.5718288 1103.3949
+174768.0629665453 3.5717106 1103.3357
+174769.0629666497 3.5717106 1103.3555
+174770.062966754 3.5717499 1103.3555
+174771.0629668583 3.5717893 1103.2963
+174772.0629669626 3.5718682 1103.316
+174773.0629670669 3.5719075 1103.3949
+174774.0629671712 3.5717499 1103.4147
+174775.0629672755 3.5718682 1103.3357
+174776.0629673798 3.5717893 1103.3949
+174777.0629674841 3.5717893 1103.3949
+174778.0629675884 3.5718288 1103.1975
+174779.0629676927 3.5718288 1103.4147
+174780.062967797 3.5719469 1103.3555
+174781.0629679014 3.5719075 1103.3357
+174782.0629680057 3.5718288 1103.3555
+174783.06296811 3.5719075 1103.3752
+174784.0629682143 3.5718288 1103.3752
+174785.0629683186 3.5719862 1103.3752
+174786.0629684229 3.5719075 1103.3357
+174787.0629685272 3.5720255 1103.2963
+174788.0629686315 3.5720649 1103.4542
+174789.0629687358 3.5719862 1103.474
+174790.0629688401 3.5719862 1103.2369
+174791.0629689444 3.5720255 1103.3949
+174792.0629690487 3.5719862 1103.3555
+174793.062969153 3.5719862 1103.3949
+174794.0629692574 3.5721042 1103.316
+174795.0629693617 3.5720255 1103.316
+174796.062969466 3.5720649 1103.3357
+174797.0629695703 3.5720649 1103.3752
+174798.0629696746 3.5721042 1103.3949
+174799.0629697789 3.5720255 1103.3555
+174800.0629698832 3.5721831 1103.3357
+174801.0629699875 3.5720649 1103.3752
+174802.0629700918 3.5721042 1103.3949
+174803.0629701961 3.5721042 1103.3555
+174804.0629703004 3.5721042 1103.316
+174805.0629704047 3.5721831 1103.4147
+174806.0629705091 3.5721042 1103.4147
+174807.0629706134 3.5722618 1103.3752
+174808.0629707177 3.5721831 1103.3357
+174809.062970822 3.5723011 1103.2369
+174810.0629709263 3.5722225 1103.4344
+174811.0629710306 3.5722225 1103.2369
+174812.0629711349 3.5722618 1103.4542
+174813.0629712392 3.5722225 1103.3949
+174814.0629713435 3.5723798 1103.4147
+174815.0629714478 3.5723405 1103.2963
+174816.0629715521 3.5723405 1103.316
+174817.0629716564 3.5722618 1103.3357
+174818.0629717608 3.5723011 1103.3357
+174819.0629718651 3.5723405 1103.3555
+174820.0629719694 3.5723798 1103.3357
+174821.0629720737 3.5723405 1103.3555
+174822.062972178 3.5724981 1103.2369
+174823.0629722823 3.5723798 1103.4147
+174824.0629723866 3.5723798 1103.316
+174825.0629724909 3.5724192 1103.316
+174826.0629725952 3.5724587 1103.3555
+174827.0629726995 3.5724192 1103.3555
+174828.0629728038 3.5725374 1103.3949
+174829.0629729081 3.5724981 1103.3555
+174830.0629730124 3.5724981 1103.4147
+174831.0629731168 3.5724981 1103.4147
+174832.0629732211 3.5725374 1103.3752
+174833.0629733254 3.5724981 1103.4147
+174834.0629734297 3.5725768 1103.3752
+174835.062973534 3.5724981 1103.3752
+174836.0629736383 3.5724981 1103.3357
+174837.0629737426 3.5727344 1103.4344
+174838.0629738469 3.5726554 1103.3949
+174839.0629739512 3.5725374 1103.316
+174840.0629740555 3.5726161 1103.4344
+174841.0629741598 3.5726948 1103.3357
+174842.0629742641 3.5726948 1103.4147
+174843.0629743685 3.5726161 1103.2567
+174844.0629744728 3.5726554 1103.3555
+174845.0629745771 3.5726948 1103.316
+174846.0629746814 3.5726161 1103.3752
+174847.0629747857 3.5726161 1103.3949
+174848.06297489 3.5726948 1103.4147
+174849.0629749943 3.5727344 1103.3357
+174850.0629750986 3.5727737 1103.4344
+174851.0629752029 3.572813 1103.316
+174852.0629753072 3.572813 1103.316
+174853.0629754115 3.5727737 1103.3752
+174854.0629755158 3.5727737 1103.474
+174855.0629756202 3.5729311 1103.3752
+174856.0629757245 3.5728917 1103.4344
+174857.0629758288 3.5728524 1103.3752
+174858.0629759331 3.5728917 1103.2369
+174859.0629760374 3.5729704 1103.3949
+174860.0629761417 3.5729311 1103.3555
+174861.062976246 3.5728917 1103.4344
+174862.0629763503 3.5728917 1103.316
+174863.0629764546 3.5729311 1103.3357
+174864.0629765589 3.5729311 1103.3949
+174865.0629766632 3.5729704 1103.3949
+174866.0629767675 3.5729311 1103.3949
+174867.0629768719 3.5730493 1103.2963
+174868.0629769762 3.5730493 1103.4147
+174869.0629770805 3.5730097 1103.4147
+174870.0629771848 3.5729704 1103.474
+174871.0629772891 3.5730493 1103.3752
+174872.0629773934 3.5730493 1103.3357
+174873.0629774977 3.5730493 1103.3555
+174874.062977602 3.5730886 1103.3949
+174875.0629777063 3.5730886 1103.3949
+174876.0629778106 3.5730097 1103.316
+174877.0629779149 3.573128 1103.5134
+174878.0629780192 3.5730886 1103.3357
+174879.0629781235 3.573128 1103.2765
+174880.0629782279 3.5731673 1103.2567
+174881.0629783322 3.573246 1103.3357
+174882.0629784365 3.5731673 1103.3357
+174883.0629785408 3.573128 1103.316
+174884.0629786451 3.573128 1103.3555
+174885.0629787494 3.573246 1103.3949
+174886.0629788537 3.5733247 1103.316
+174887.062978958 3.5732067 1103.316
+174888.0629790623 3.5732853 1103.2369
+174889.0629791666 3.5732067 1103.4542
+174890.0629792709 3.5732853 1103.3357
+174891.0629793752 3.5734036 1103.3949
+174892.0629794796 3.5733247 1103.2963
+174893.0629795839 3.5733247 1103.2963
+174894.0629796882 3.5734036 1103.3357
+174895.0629797925 3.5734429 1103.3357
+174896.0629798968 3.5733643 1103.2567
+174897.0629800011 3.5734036 1103.2963
+174898.0629801054 3.5733247 1103.3752
+174899.0629802097 3.5734823 1103.3949
+174900.062980314 3.5734823 1103.474
+174901.0629804183 3.5734823 1103.3555
+174902.0629805226 3.5735216 1103.3949
+174903.0629806269 3.5734036 1103.316
+174904.0629807313 3.5734823 1103.3752
+174905.0629808356 3.573561 1103.474
+174906.0629809399 3.5735216 1103.3752
+174907.0629810442 3.573561 1103.3752
+174908.0629811485 3.5736003 1103.316
+174909.0629812528 3.5734823 1103.4147
+174910.0629813571 3.5736003 1103.2765
+174911.0629814614 3.5736003 1103.2963
+174912.0629815657 3.5736396 1103.3555
+174913.06298167 3.5736792 1103.3357
+174914.0629817743 3.5736396 1103.3949
+174915.0629818786 3.5736003 1103.316
+174916.0629819829 3.5736792 1103.3752
+174917.0629820873 3.5737972 1103.3357
+174918.0629821916 3.5737579 1103.3752
+174919.0629822959 3.5736792 1103.3752
+174920.0629824002 3.5737972 1103.3752
+174921.0629825045 3.5737185 1103.3752
+174922.0629826088 3.5736792 1103.4147
+174923.0629827131 3.5737185 1103.4147
+174924.0629828174 3.5738759 1103.3555
+174925.0629829217 3.5738366 1103.316
+174926.062983026 3.5737972 1103.3357
+174927.0629831303 3.5739152 1103.3555
+174928.0629832346 3.5738759 1103.4344
+174929.062983339 3.5737972 1103.3555
+174930.0629834433 3.5739152 1103.3949
+174931.0629835476 3.5737972 1103.3752
+174932.0629836519 3.5738759 1103.3357
+174933.0629837562 3.5739152 1103.3949
+174934.0629838605 3.5738366 1103.3752
+174935.0629839648 3.5739546 1103.3357
+174936.0629840691 3.5737579 1103.3555
+174937.0629841734 3.5739942 1103.3555
+174938.0629842777 3.5740335 1103.2963
+174939.062984382 3.5739546 1103.2765
+174940.0629844863 3.5739152 1103.2963
+174941.0629845907 3.5740335 1103.3752
+174942.062984695 3.5739152 1103.2765
+174943.0629847993 3.5740335 1103.3555
+174944.0629849036 3.5739546 1103.3949
+174945.0629850079 3.5739942 1103.3949
+174946.0629851122 3.5739942 1103.2963
+174947.0629852165 3.5740335 1103.3752
+174948.0629853208 3.5740335 1103.3949
+174949.0629854251 3.5739942 1103.3752
+174950.0629855294 3.5740728 1103.3357
+174951.0629856337 3.5740728 1103.3555
+174952.062985738 3.5741515 1103.4147
+174953.0629858423 3.5741515 1103.3357
+174954.0629859467 3.5741515 1103.3949
+174955.062986051 3.5741122 1103.3752
+174956.0629861553 3.5740335 1103.3555
+174957.0629862596 3.5741515 1103.2963
+174958.0629863639 3.5741909 1103.3752
+174959.0629864682 3.5740728 1103.3357
+174960.0629865725 3.5742302 1103.3949
+174961.0629866768 3.5742302 1103.3752
+174962.0629867811 3.5742302 1103.316
+174963.0629868854 3.5743878 1103.4147
+174964.0629869897 3.5742695 1103.2765
+174965.062987094 3.5742695 1103.3357
+174966.0629871984 3.5742695 1103.2567
+174967.0629873027 3.5743484 1103.3949
+174968.062987407 3.5744271 1103.4542
+174969.0629875113 3.5743484 1103.4344
+174970.0629876156 3.5743484 1103.474
+174971.0629877199 3.5744271 1103.3357
+174972.0629878242 3.5743878 1103.316
+174973.0629879285 3.5744271 1103.4147
+174974.0629880328 3.5744271 1103.4147
+174975.0629881371 3.5743484 1103.3555
+174976.0629882414 3.5743484 1103.3949
+174977.0629883457 3.5743878 1103.3357
+174978.0629884501 3.5744665 1103.3357
+174979.0629885544 3.5745058 1103.3357
+174980.0629886587 3.5744271 1103.3752
+174981.062988763 3.5744665 1103.3555
+174982.0629888673 3.5745847 1103.2963
+174983.0629889716 3.5745451 1103.3949
+174984.0629890759 3.5745451 1103.3555
+174985.0629891802 3.5745451 1103.2172
+174986.0629892845 3.5745451 1103.4542
+174987.0629893888 3.5745058 1103.2567
+174988.0629894931 3.5747421 1103.2963
+174989.0629895974 3.5745847 1103.3555
+174990.0629897018 3.5746241 1103.3357
+174991.0629898061 3.5746634 1103.3949
+174992.0629899104 3.5746241 1103.3555
+174993.0629900147 3.5746241 1103.2765
+174994.062990119 3.5746634 1103.2765
+174995.0629902233 3.5748208 1103.3555
+174996.0629903276 3.5747027 1103.3555
+174997.0629904319 3.5747027 1103.3357
+174998.0629905362 3.5747027 1103.2567
+174999.0629906405 3.5745847 1103.4344
+175000.0629907448 3.5748208 1103.3357
+175001.0629908491 3.5747421 1103.2963
+175002.0629909534 3.5748208 1103.3357
+175003.0629910578 3.5748601 1103.3949
+175004.0629911621 3.5747814 1103.3357
+175005.0629912664 3.5748208 1103.3752
+175006.0629913707 3.5747814 1103.3752
+175007.062991475 3.5748208 1103.3949
+175008.0629915793 3.5748208 1103.4147
+175009.0629916836 3.5747421 1103.3555
+175010.0629917879 3.5748601 1103.316
+175011.0629918922 3.5748208 1103.3357
+175012.0629919965 3.574939 1103.3357
+175013.0629921008 3.5748997 1103.3752
+175014.0629922051 3.5749784 1103.4344
+175015.0629923095 3.5748601 1103.3752
+175016.0629924138 3.574939 1103.3357
+175017.0629925181 3.5748997 1103.3555
+175018.0629926224 3.5749784 1103.3555
+175019.0629927267 3.574939 1103.3555
+175020.062992831 3.574939 1103.3555
+175021.0629929353 3.575057 1103.3357
+175022.0629930396 3.5749784 1103.4147
+175023.0629931439 3.5750177 1103.3752
+175024.0629932482 3.5750177 1103.316
+175025.0629933525 3.5750177 1103.4344
+175026.0629934568 3.5750964 1103.3357
+175027.0629935612 3.5751357 1103.4344
+175028.0629936655 3.575057 1103.3949
+175029.0629937698 3.5750964 1103.3555
+175030.0629938741 3.575057 1103.2765
+175031.0629939784 3.5751357 1103.3752
+175032.0629940827 3.575175 1103.3357
+175033.062994187 3.5752146 1103.3357
+175034.0629942913 3.575175 1103.2963
+175035.0629943956 3.575175 1103.4147
+175036.0629944999 3.5750964 1103.3555
+175037.0629946042 3.5752146 1103.3752
+175038.0629947085 3.5752146 1103.2963
+175039.0629948128 3.575175 1103.3949
+175040.0629949172 3.575254 1103.316
+175041.0629950215 3.5752146 1103.3949
+175042.0629951258 3.5752146 1103.3752
+175043.0629952301 3.5753326 1103.3357
+175044.0629953344 3.575254 1103.316
+175045.0629954387 3.575254 1103.3949
+175046.062995543 3.5753326 1103.2963
+175047.0629956473 3.5752933 1103.3752
+175048.0629957516 3.5753326 1103.3357
+175049.0629958559 3.5754113 1103.474
+175050.0629959602 3.575372 1103.316
+175051.0629960645 3.5754507 1103.3752
+175052.0629961689 3.5752933 1103.3555
+175053.0629962732 3.5753326 1103.3949
+175054.0629963775 3.5753326 1103.3555
+175055.0629964818 3.5754113 1103.4147
+175056.0629965861 3.575254 1103.3357
+175057.0629966904 3.5754113 1103.474
+175058.0629967947 3.5754113 1103.316
+175059.062996899 3.5754113 1103.316
+175060.0629970033 3.5754507 1103.3555
+175061.0629971076 3.5754113 1103.3555
+175062.0629972119 3.5754507 1103.3752
+175063.0629973162 3.57549 1103.3357
+175064.0629974206 3.575372 1103.2765
+175065.0629975249 3.5755296 1103.3949
+175066.0629976292 3.5755296 1103.3555
+175067.0629977335 3.5755689 1103.3949
+175068.0629978378 3.57549 1103.4542
+175069.0629979421 3.5756083 1103.3752
+175070.0629980464 3.5756476 1103.3357
+175071.0629981507 3.5755689 1103.4147
+175072.062998255 3.5756869 1103.4344
+175073.0629983593 3.5756476 1103.4147
+175074.0629984636 3.5756476 1103.2369
+175075.0629985679 3.5756869 1103.3949
+175076.0629986722 3.5756869 1103.2963
+175077.0629987766 3.5757656 1103.4542
+175078.0629988809 3.5756476 1103.3949
+175079.0629989852 3.5756869 1103.316
+175080.0629990895 3.5756869 1103.3752
+175081.0629991938 3.5757656 1103.3555
+175082.0629992981 3.5757656 1103.3555
+175083.0629994024 3.5756869 1103.3752
+175084.0629995067 3.5758049 1103.2963
+175085.062999611 3.5758445 1103.3752
+175086.0629997153 3.5756869 1103.3357
+175087.0629998196 3.5757656 1103.316
+175088.0629999239 3.5758839 1103.2765
+175089.0630000283 3.5757656 1103.3357
+175090.0630001326 3.5758445 1103.316
+175091.0630002369 3.5758049 1103.3357
+175092.0630003412 3.5759232 1103.4344
+175093.0630004455 3.5758445 1103.4344
+175094.0630005498 3.5759232 1103.4542
+175095.0630006541 3.5759232 1103.2963
+175096.0630007584 3.5759232 1103.4147
+175097.0630008627 3.5759625 1103.3357
+175098.063000967 3.5760019 1103.3752
+175099.0630010713 3.5759232 1103.316
+175100.0630011756 3.5759625 1103.3752
+175101.06300128 3.5760412 1103.3555
+175102.0630013843 3.5760019 1103.2963
+175103.0630014886 3.5759625 1103.2963
+175104.0630015929 3.5760412 1103.4147
+175105.0630016972 3.5761199 1103.474
+175106.0630018015 3.5760806 1103.316
+175107.0630019058 3.5760412 1103.2369
+175108.0630020101 3.5760806 1103.2963
+175109.0630021144 3.5761988 1103.4147
+175110.0630022187 3.5761199 1103.3752
+175111.063002323 3.5761595 1103.3555
+175112.0630024273 3.5762382 1103.3555
+175113.0630025317 3.5761988 1103.316
+175114.063002636 3.5761988 1103.3357
+175115.0630027403 3.5761988 1103.3555
+175116.0630028446 3.5762775 1103.316
+175117.0630029489 3.5763168 1103.2963
+175118.0630030532 3.5763562 1103.3357
+175119.0630031575 3.5763168 1103.3752
+175120.0630032618 3.5763955 1103.3752
+175121.0630033661 3.5763562 1103.3555
+175122.0630034704 3.5762775 1103.3357
+175123.0630035747 3.5763955 1103.3752
+175124.063003679 3.5763955 1103.3357
+175125.0630037833 3.5765138 1103.3752
+175126.0630038877 3.5765138 1103.3555
+175127.063003992 3.5764351 1103.2567
+175128.0630040963 3.5765138 1103.3555
+175129.0630042006 3.5765531 1103.3555
+175130.0630043049 3.5765138 1103.4344
+175131.0630044092 3.5764744 1103.4147
+175132.0630045135 3.5764744 1103.3357
+175133.0630046178 3.5765531 1103.316
+175134.0630047221 3.5765924 1103.3357
+175135.0630048264 3.5765924 1103.3357
+175136.0630049307 3.5766318 1103.4147
+175137.063005035 3.5766318 1103.3949
+175138.0630051394 3.5765138 1103.3752
+175139.0630052437 3.5766711 1103.3752
+175140.063005348 3.5765531 1103.316
+175141.0630054523 3.5767105 1103.3752
+175142.0630055566 3.57675 1103.316
+175143.0630056609 3.5765531 1103.316
+175144.0630057652 3.5765924 1103.3752
+175145.0630058695 3.57675 1103.4147
+175146.0630059738 3.57675 1103.2765
+175147.0630060781 3.5766711 1103.3752
+175148.0630061824 3.5767105 1103.3555
+175149.0630062867 3.5768287 1103.2963
+175150.0630063911 3.5767105 1103.3949
+175151.0630064954 3.5768287 1103.3752
+175152.0630065997 3.5767894 1103.3555
+175153.063006704 3.5767894 1103.3357
+175154.0630068083 3.5767894 1103.3357
+175155.0630069126 3.5768681 1103.3357
+175156.0630070169 3.5769467 1103.4147
+175157.0630071212 3.5769467 1103.316
+175158.0630072255 3.5768287 1103.4147
+175159.0630073298 3.5768681 1103.3357
+175160.0630074341 3.5768681 1103.4344
+175161.0630075384 3.5769074 1103.2963
+175162.0630076427 3.5770254 1103.3949
+175163.0630077471 3.5770254 1103.3949
+175164.0630078514 3.5769861 1103.3752
+175165.0630079557 3.5771043 1103.3555
+175166.06300806 3.577065 1103.3555
+175167.0630081643 3.5770254 1103.2765
+175168.0630082686 3.577065 1103.2963
+175169.0630083729 3.5771043 1103.3357
+175170.0630084772 3.5771043 1103.3752
+175171.0630085815 3.5771043 1103.3752
+175172.0630086858 3.577183 1103.3949
+175173.0630087901 3.5771437 1103.3949
+175174.0630088944 3.5771043 1103.3357
+175175.0630089988 3.5771437 1103.4147
+175176.0630091031 3.5771437 1103.3752
+175177.0630092074 3.577183 1103.3752
+175178.0630093117 3.577183 1103.3555
+175179.063009416 3.5772223 1103.3752
+175180.0630095203 3.5772617 1103.316
+175181.0630096246 3.5772223 1103.3357
+175182.0630097289 3.5773799 1103.2963
+175183.0630098332 3.5772617 1103.3949
+175184.0630099375 3.577301 1103.316
+175185.0630100418 3.5772617 1103.4147
+175186.0630101461 3.5772617 1103.4147
+175187.0630102505 3.5773404 1103.4147
+175188.0630103548 3.577301 1103.3357
+175189.0630104591 3.5773404 1103.2765
+175190.0630105634 3.5773799 1103.3357
+175191.0630106677 3.5773404 1103.4542
+175192.063010772 3.5774193 1103.3752
+175193.0630108763 3.5773799 1103.3357
+175194.0630109806 3.5774586 1103.3949
+175195.0630110849 3.5774586 1103.3555
+175196.0630111892 3.5774586 1103.4542
+175197.0630112935 3.5775373 1103.4344
+175198.0630113978 3.5774586 1103.3555
+175199.0630115021 3.5773404 1103.3752
+175200.0630116065 3.5774193 1103.4344
+175201.0630117108 3.5775373 1103.2567
+175202.0630118151 3.5775373 1103.3752
+175203.0630119194 3.577616 1103.4147
+175204.0630120237 3.577498 1103.3752
+175205.063012128 3.5776553 1103.3949
+175206.0630122323 3.5775373 1103.3752
+175207.0630123366 3.5775766 1103.2963
+175208.0630124409 3.577498 1103.3752
+175209.0630125452 3.5775766 1103.3752
+175210.0630126495 3.577616 1103.4147
+175211.0630127538 3.5775766 1103.3357
+175212.0630128582 3.5776949 1103.3357
+175213.0630129625 3.5775766 1103.2567
+175214.0630130668 3.577616 1103.3752
+175215.0630131711 3.5778522 1103.4344
+175216.0630132754 3.5776949 1103.3949
+175217.0630133797 3.5777342 1103.3357
+175218.063013484 3.5778129 1103.2369
+175219.0630135883 3.5776949 1103.3949
+175220.0630136926 3.5777342 1103.2765
+175221.0630137969 3.5776949 1103.4344
+175222.0630139012 3.5777342 1103.4147
+175223.0630140055 3.5778129 1103.316
+175224.0630141099 3.5777736 1103.3555
+175225.0630142142 3.5778916 1103.3752
+175226.0630143185 3.5776949 1103.316
+175227.0630144228 3.5777736 1103.316
+175228.0630145271 3.5778522 1103.4147
+175229.0630146314 3.5778129 1103.4147
+175230.0630147357 3.5778522 1103.2963
+175231.06301484 3.5778129 1103.4344
+175232.0630149443 3.5778522 1103.3357
+175233.0630150486 3.5779705 1103.3357
+175234.0630151529 3.5779705 1103.316
+175235.0630152572 3.5780492 1103.3752
+175236.0630153615 3.5779705 1103.3555
+175237.0630154659 3.5779705 1103.3752
+175238.0630155702 3.5779309 1103.3949
+175239.0630156745 3.5779705 1103.3555
+175240.0630157788 3.5780098 1103.4147
+175241.0630158831 3.5780098 1103.2963
+175242.0630159874 3.5780885 1103.316
+175243.0630160917 3.5780098 1103.3752
+175244.063016196 3.5780492 1103.3752
+175245.0630163003 3.5782065 1103.4147
+175246.0630164046 3.5782459 1103.3357
+175247.0630165089 3.5781672 1103.3752
+175248.0630166132 3.5782065 1103.316
+175249.0630167176 3.5782065 1103.3752
+175250.0630168219 3.5781279 1103.316
+175251.0630169262 3.5781672 1103.4344
+175252.0630170305 3.5781672 1103.3555
+175253.0630171348 3.5781672 1103.3949
+175254.0630172391 3.5782065 1103.3357
+175255.0630173434 3.5781279 1103.3555
+175256.0630174477 3.5782459 1103.3555
+175257.063017552 3.5782065 1103.2765
+175258.0630176563 3.5782459 1103.316
+175259.0630177606 3.5783641 1103.2963
+175260.0630178649 3.5782459 1103.4147
+175261.0630179693 3.5783248 1103.2567
+175262.0630180736 3.5782855 1103.3357
+175263.0630181779 3.5784428 1103.3555
+175264.0630182822 3.5784822 1103.4147
+175265.0630183865 3.5783641 1103.316
+175266.0630184908 3.5783248 1103.2765
+175267.0630185951 3.5784035 1103.316
+175268.0630186994 3.5783641 1103.316
+175269.0630188037 3.5783248 1103.3949
+175270.063018908 3.5783641 1103.316
+175271.0630190123 3.5784822 1103.3357
+175272.0630191166 3.5784428 1103.3555
+175273.063019221 3.5785215 1103.3555
+175274.0630193253 3.5784035 1103.316
+175275.0630194296 3.5785215 1103.3949
+175276.0630195339 3.5784822 1103.2963
+175277.0630196382 3.5784035 1103.2963
+175278.0630197425 3.5784428 1103.2963
+175279.0630198468 3.5784035 1103.3949
+175280.0630199511 3.5784035 1103.3555
+175281.0630200554 3.5785608 1103.3949
+175282.0630201597 3.5785608 1103.3555
+175283.063020264 3.5786397 1103.3357
+175284.0630203683 3.5786004 1103.3752
+175285.0630204726 3.5785608 1103.3357
+175286.063020577 3.5785608 1103.3752
+175287.0630206813 3.5786004 1103.3949
+175288.0630207856 3.5786397 1103.316
+175289.0630208899 3.5786004 1103.3752
+175290.0630209942 3.5787184 1103.4344
+175291.0630210985 3.5785608 1103.3357
+175292.0630212028 3.5786397 1103.2963
+175293.0630213071 3.5786791 1103.3752
+175294.0630214114 3.5787578 1103.3357
+175295.0630215157 3.5786004 1103.3555
+175296.06302162 3.5787971 1103.3357
+175297.0630217243 3.5787578 1103.3555
+175298.0630218287 3.5787971 1103.3949
+175299.063021933 3.5787578 1103.3752
+175300.0630220373 3.5788364 1103.3357
+175301.0630221416 3.5787971 1103.3555
+175302.0630222459 3.5787971 1103.2963
+175303.0630223502 3.5789154 1103.316
+175304.0630224545 3.5787971 1103.3357
+175305.0630225588 3.5788364 1103.3357
+175306.0630226631 3.5787971 1103.3949
+175307.0630227674 3.5789154 1103.3752
+175308.0630228717 3.5788758 1103.3357
+175309.063022976 3.5789154 1103.3752
+175310.0630230804 3.5788758 1103.3949
+175311.0630231847 3.5788758 1103.4147
+175312.063023289 3.5788758 1103.3752
+175313.0630233933 3.5789154 1103.3949
+175314.0630234976 3.5788758 1103.3357
+175315.0630236019 3.5789547 1103.2963
+175316.0630237062 3.5789154 1103.2963
+175317.0630238105 3.5789154 1103.3555
+175318.0630239148 3.5789547 1103.3752
+175319.0630240191 3.5789154 1103.3555
+175320.0630241234 3.578994 1103.3752
+175321.0630242277 3.5790334 1103.2963
+175322.063024332 3.578994 1103.3555
+175323.0630244364 3.578994 1103.316
+175324.0630245407 3.5790334 1103.3357
+175325.063024645 3.5790334 1103.4147
+175326.0630247493 3.5790334 1103.2963
+175327.0630248536 3.5790334 1103.3949
+175328.0630249579 3.578994 1103.4542
+175329.0630250622 3.5790334 1103.2567
+175330.0630251665 3.5791514 1103.3555
+175331.0630252708 3.5790334 1103.4147
+175332.0630253751 3.5791121 1103.3752
+175333.0630254794 3.5791907 1103.3357
+175334.0630255837 3.5790334 1103.3357
+175335.0630256881 3.5791121 1103.3949
+175336.0630257924 3.5791514 1103.3357
+175337.0630258967 3.5791514 1103.3555
+175338.063026001 3.5791907 1103.316
+175339.0630261053 3.5792696 1103.3949
+175340.0630262096 3.5792303 1103.3752
+175341.0630263139 3.5791907 1103.3357
+175342.0630264182 3.5792303 1103.3752
+175343.0630265225 3.5792303 1103.2765
+175344.0630266268 3.5792303 1103.2765
+175345.0630267311 3.5791907 1103.3357
+175346.0630268354 3.579427 1103.316
+175347.0630269398 3.5791907 1103.3752
+175348.0630270441 3.5793483 1103.3949
+175349.0630271484 3.5793483 1103.3949
+175350.0630272527 3.5793483 1103.3949
+175351.063027357 3.5793483 1103.316
+175352.0630274613 3.5793877 1103.3752
+175353.0630275656 3.579427 1103.3555
+175354.0630276699 3.5795453 1103.3555
+175355.0630277742 3.5793483 1103.2963
+175356.0630278785 3.5794663 1103.316
+175357.0630279828 3.5794663 1103.4344
+175358.0630280871 3.5795057 1103.3752
+175359.0630281914 3.579427 1103.3555
+175360.0630282958 3.5795057 1103.3752
+175361.0630284001 3.5795453 1103.316
+175362.0630285044 3.5795846 1103.3357
+175363.0630286087 3.5795453 1103.3752
+175364.063028713 3.5795846 1103.4344
+175365.0630288173 3.5795846 1103.2963
+175366.0630289216 3.5796633 1103.3555
+175367.0630290259 3.5795846 1103.3752
+175368.0630291302 3.5795453 1103.3949
+175369.0630292345 3.5795846 1103.4542
+175370.0630293388 3.5796239 1103.3949
+175371.0630294431 3.5796239 1103.4147
+175372.0630295475 3.5796239 1103.3752
+175373.0630296518 3.5797026 1103.3752
+175374.0630297561 3.5796633 1103.3949
+175375.0630298604 3.5796633 1103.3949
+175376.0630299647 3.5796633 1103.3357
+175377.063030069 3.5796239 1103.3357
+175378.0630301733 3.5796633 1103.158
+175379.0630302776 3.579742 1103.3752
+175380.0630303819 3.5798602 1103.3357
+175381.0630304862 3.5797813 1103.4147
+175382.0630305905 3.5797813 1103.3555
+175383.0630306948 3.5798209 1103.2369
+175384.0630307992 3.5797813 1103.316
+175385.0630309035 3.579742 1103.3357
+175386.0630310078 3.5798995 1103.4147
+175387.0630311121 3.5798995 1103.3555
+175388.0630312164 3.5799389 1103.3752
+175389.0630313207 3.5799389 1103.4147
+175390.063031425 3.5799782 1103.316
+175391.0630315293 3.5799782 1103.316
+175392.0630316336 3.5799389 1103.3752
+175393.0630317379 3.5800176 1103.3357
+175394.0630318422 3.5799782 1103.3752
+175395.0630319465 3.5799782 1103.2963
+175396.0630320509 3.5800569 1103.2963
+175397.0630321552 3.5800569 1103.3357
+175398.0630322595 3.5800176 1103.4542
+175399.0630323638 3.5800176 1103.4147
+175400.0630324681 3.5800962 1103.4147
+175401.0630325724 3.5800962 1103.3357
+175402.0630326767 3.5801358 1103.316
+175403.063032781 3.5801358 1103.2963
+175404.0630328853 3.5801752 1103.4147
+175405.0630329896 3.5800569 1103.3949
+175406.0630330939 3.5802932 1103.4344
+175407.0630331982 3.5802145 1103.3752
+175408.0630333025 3.5802145 1103.3949
+175409.0630334069 3.5802538 1103.3357
+175410.0630335112 3.5800962 1103.3555
+175411.0630336155 3.5802932 1103.3555
+175412.0630337198 3.5802145 1103.2963
+175413.0630338241 3.5802932 1103.2963
+175414.0630339284 3.5802145 1103.3357
+175415.0630340327 3.5803325 1103.2963
+175416.063034137 3.5802932 1103.3949
+175417.0630342413 3.5802932 1103.4147
+175418.0630343456 3.5803325 1103.3555
+175419.0630344499 3.5803719 1103.3949
+175420.0630345542 3.5804112 1103.3949
+175421.0630346586 3.5804112 1103.2765
+175422.0630347629 3.5804508 1103.4147
+175423.0630348672 3.5804901 1103.3555
+175424.0630349715 3.5804508 1103.4147
+175425.0630350758 3.5804901 1103.3555
+175426.0630351801 3.5805295 1103.3357
+175427.0630352844 3.5804901 1103.3949
+175428.0630353887 3.5806081 1103.4542
+175429.063035493 3.5805295 1103.2963
+175430.0630355973 3.5805295 1103.3555
+175431.0630357016 3.5805688 1103.316
+175432.0630358059 3.5804508 1103.3752
+175433.0630359103 3.5806081 1103.4147
+175434.0630360146 3.5806868 1103.3949
+175435.0630361189 3.5805688 1103.2765
+175436.0630362232 3.5807261 1103.4147
+175437.0630363275 3.5806081 1103.3357
+175438.0630364318 3.5806475 1103.3752
+175439.0630365361 3.5806081 1103.3357
+175440.0630366404 3.5807657 1103.4147
+175441.0630367447 3.5806868 1103.3949
+175442.063036849 3.5807657 1103.3357
+175443.0630369533 3.5808051 1103.2963
+175444.0630370576 3.5807261 1103.3555
+175445.0630371619 3.5808051 1103.3752
+175446.0630372663 3.5808051 1103.2765
+175447.0630373706 3.5808444 1103.4147
+175448.0630374749 3.5808051 1103.3752
+175449.0630375792 3.5807657 1103.3555
+175450.0630376835 3.5808051 1103.4542
+175451.0630377878 3.5808051 1103.2963
+175452.0630378921 3.5808051 1103.316
+175453.0630379964 3.5808444 1103.3357
+175454.0630381007 3.5808051 1103.3949
+175455.063038205 3.5809231 1103.316
+175456.0630383093 3.5808837 1103.2963
+175457.0630384136 3.5809624 1103.3357
+175458.063038518 3.5810018 1103.4147
+175459.0630386223 3.5809624 1103.316
+175460.0630387266 3.5810018 1103.2963
+175461.0630388309 3.5808837 1103.2963
+175462.0630389352 3.5810411 1103.3949
+175463.0630390395 3.5810411 1103.3949
+175464.0630391438 3.5810018 1103.3949
+175465.0630392481 3.5810807 1103.3357
+175466.0630393524 3.5810018 1103.3357
+175467.0630394567 3.5810807 1103.2567
+175468.063039561 3.5810807 1103.3752
+175469.0630396653 3.5810411 1103.3555
+175470.0630397697 3.5810807 1103.3555
+175471.063039874 3.58112 1103.3752
+175472.0630399783 3.5811594 1103.3752
+175473.0630400826 3.58112 1103.3752
+175474.0630401869 3.58112 1103.3555
+175475.0630402912 3.5811594 1103.3752
+175476.0630403955 3.5810411 1103.316
+175477.0630404998 3.5811594 1103.3752
+175478.0630406041 3.581238 1103.4147
+175479.0630407084 3.5811987 1103.4344
+175480.0630408127 3.5813167 1103.3357
+175481.063040917 3.581238 1103.3752
+175482.0630410213 3.5813167 1103.3949
+175483.0630411257 3.5813167 1103.4344
+175484.06304123 3.5811987 1103.4147
+175485.0630413343 3.581356 1103.4147
+175486.0630414386 3.581238 1103.474
+175487.0630415429 3.5813167 1103.3357
+175488.0630416472 3.5813167 1103.3752
+175489.0630417515 3.5813167 1103.316
+175490.0630418558 3.581238 1103.2567
+175491.0630419601 3.5813956 1103.2765
+175492.0630420644 3.5813956 1103.316
+175493.0630421687 3.5813956 1103.4542
+175494.063042273 3.5814743 1103.3555
+175495.0630423774 3.581356 1103.4147
+175496.0630424817 3.5814743 1103.3357
+175497.063042586 3.5814743 1103.3949
+175498.0630426903 3.581435 1103.3752
+175499.0630427946 3.581553 1103.3357
+175500.0630428989 3.5814743 1103.3949
+175501.0630430032 3.581553 1103.4147
+175502.0630431075 3.5814743 1103.3357
+175503.0630432118 3.5815923 1103.3555
+175504.0630433161 3.581435 1103.3555
+175505.0630434204 3.5814743 1103.316
+175506.0630435247 3.5816317 1103.3555
+175507.0630436291 3.5814743 1103.3555
+175508.0630437334 3.5814743 1103.3357
+175509.0630438377 3.5814743 1103.3752
+175510.063043942 3.5815923 1103.3949
+175511.0630440463 3.581553 1103.3752
+175512.0630441506 3.5815136 1103.3555
+175513.0630442549 3.5816317 1103.3949
+175514.0630443592 3.5817499 1103.3949
+175515.0630444635 3.5816317 1103.3357
+175516.0630445678 3.5816317 1103.3752
+175517.0630446721 3.5816317 1103.2963
+175518.0630447764 3.5816317 1103.3949
+175519.0630448808 3.5816712 1103.3752
+175520.0630449851 3.5816317 1103.316
+175521.0630450894 3.5817893 1103.3357
+175522.0630451937 3.5817499 1103.3555
+175523.063045298 3.5817499 1103.4147
+175524.0630454023 3.5817893 1103.3357
+175525.0630455066 3.5817106 1103.3357
+175526.0630456109 3.5817893 1103.3752
+175527.0630457152 3.5818286 1103.4542
+175528.0630458195 3.5817499 1103.4147
+175529.0630459238 3.5818679 1103.4147
+175530.0630460281 3.5817499 1103.3357
+175531.0630461324 3.5818679 1103.3357
+175532.0630462368 3.5819466 1103.2963
+175533.0630463411 3.5819073 1103.4147
+175534.0630464454 3.5819466 1103.4938
+175535.0630465497 3.5818679 1103.3357
+175536.063046654 3.5819862 1103.3357
+175537.0630467583 3.5819073 1103.3949
+175538.0630468626 3.5820255 1103.2567
+175539.0630469669 3.5819466 1103.3949
+175540.0630470712 3.5820649 1103.2963
+175541.0630471755 3.5820649 1103.4147
+175542.0630472798 3.5820255 1103.2369
+175543.0630473841 3.5821042 1103.4147
+175544.0630474885 3.5821435 1103.316
+175545.0630475928 3.5821435 1103.3357
+175546.0630476971 3.5822222 1103.3949
+175547.0630478014 3.5821829 1103.2963
+175548.0630479057 3.5821829 1103.3555
+175549.06304801 3.5821829 1103.3357
+175550.0630481143 3.5821829 1103.3752
+175551.0630482186 3.5821829 1103.2963
+175552.0630483229 3.5823798 1103.3357
+175553.0630484272 3.5822616 1103.316
+175554.0630485315 3.5823011 1103.3752
+175555.0630486358 3.5822616 1103.3752
+175556.0630487402 3.5822222 1103.316
+175557.0630488445 3.5822616 1103.3949
+175558.0630489488 3.5822616 1103.3949
+175559.0630490531 3.5822616 1103.316
+175560.0630491574 3.5822222 1103.316
+175561.0630492617 3.5822616 1103.3949
+175562.063049366 3.5822616 1103.3752
+175563.0630494703 3.5823798 1103.3555
+175564.0630495746 3.5822222 1103.2765
+175565.0630496789 3.5823405 1103.316
+175566.0630497832 3.5823798 1103.3752
+175567.0630498875 3.5823405 1103.316
+175568.0630499918 3.5823798 1103.3357
+175569.0630500962 3.5823798 1103.3555
+175570.0630502005 3.5823798 1103.3357
+175571.0630503048 3.5825372 1103.3949
+175572.0630504091 3.5824192 1103.4147
+175573.0630505134 3.5824978 1103.3357
+175574.0630506177 3.5825372 1103.3949
+175575.063050722 3.5825765 1103.4147
+175576.0630508263 3.5824978 1103.4147
+175577.0630509306 3.5824978 1103.3752
+175578.0630510349 3.5825372 1103.3555
+175579.0630511392 3.5824978 1103.2765
+175580.0630512435 3.5825372 1103.2765
+175581.0630513479 3.5825372 1103.3752
+175582.0630514522 3.5825765 1103.4147
+175583.0630515565 3.5824978 1103.3357
+175584.0630516608 3.5825765 1103.3357
+175585.0630517651 3.5825372 1103.3752
+175586.0630518694 3.5825372 1103.3949
+175587.0630519737 3.5826554 1103.3357
+175588.063052078 3.5825765 1103.3752
+175589.0630521823 3.5824978 1103.4542
+175590.0630522866 3.5826948 1103.3949
+175591.0630523909 3.5826948 1103.3752
+175592.0630524952 3.5826948 1103.3357
+175593.0630525996 3.5826948 1103.3555
+175594.0630527039 3.5826161 1103.3752
+175595.0630528082 3.5826554 1103.3752
+175596.0630529125 3.5827734 1103.3949
+175597.0630530168 3.5827734 1103.316
+175598.0630531211 3.5827341 1103.2963
+175599.0630532254 3.5827341 1103.4938
+175600.0630533297 3.5827341 1103.3949
+175601.063053434 3.5828128 1103.3555
+175602.0630535383 3.5827341 1103.316
+175603.0630536426 3.5827734 1103.3949
+175604.0630537469 3.5828128 1103.2567
+175605.0630538512 3.5828128 1103.316
+175606.0630539556 3.5828521 1103.3357
+175607.0630540599 3.5828128 1103.3555
+175608.0630541642 3.5828521 1103.4147
+175609.0630542685 3.582931 1103.316
+175610.0630543728 3.5828521 1103.4147
+175611.0630544771 3.5828915 1103.2567
+175612.0630545814 3.5830097 1103.4147
+175613.0630546857 3.582931 1103.316
+175614.06305479 3.5829704 1103.3357
+175615.0630548943 3.5829704 1103.3357
+175616.0630549986 3.582931 1103.3752
+175617.0630551029 3.5830097 1103.3752
+175618.0630552073 3.582931 1103.3555
+175619.0630553116 3.5830884 1103.3357
+175620.0630554159 3.5830884 1103.3555
+175621.0630555202 3.5830491 1103.3949
+175622.0630556245 3.5830097 1103.316
+175623.0630557288 3.5830884 1103.2567
+175624.0630558331 3.5831277 1103.3752
+175625.0630559374 3.5830884 1103.2765
+175626.0630560417 3.5831671 1103.3752
+175627.063056146 3.5830491 1103.3357
+175628.0630562503 3.5830884 1103.3949
+175629.0630563546 3.5830884 1103.2963
+175630.063056459 3.5832064 1103.3949
+175631.0630565633 3.5832064 1103.3752
+175632.0630566676 3.5832064 1103.3555
+175633.0630567719 3.5830884 1103.2765
+175634.0630568762 3.5831671 1103.2963
+175635.0630569805 3.583246 1103.3752
+175636.0630570848 3.5831277 1103.2963
+175637.0630571891 3.5832853 1103.2567
+175638.0630572934 3.583246 1103.316
+175639.0630573977 3.583364 1103.3949
+175640.063057502 3.5832853 1103.3555
+175641.0630576063 3.5832064 1103.4147
+175642.0630577106 3.5832853 1103.2765
+175643.063057815 3.583246 1103.4542
+175644.0630579193 3.5833247 1103.3752
+175645.0630580236 3.583364 1103.2963
+175646.0630581279 3.583364 1103.2963
+175647.0630582322 3.583364 1103.316
+175648.0630583365 3.5834033 1103.3752
+175649.0630584408 3.5834427 1103.4147
+175650.0630585451 3.5834033 1103.3555
+175651.0630586494 3.5834427 1103.474
+175652.0630587537 3.583482 1103.316
+175653.063058858 3.583482 1103.3555
+175654.0630589623 3.5834427 1103.3752
+175655.0630590667 3.583482 1103.3752
+175656.063059171 3.5834427 1103.3752
+175657.0630592753 3.5834427 1103.3949
+175658.0630593796 3.583482 1103.3949
+175659.0630594839 3.5835216 1103.3555
+175660.0630595882 3.583482 1103.4344
+175661.0630596925 3.5835609 1103.3752
+175662.0630597968 3.5835609 1103.4344
+175663.0630599011 3.583482 1103.2963
+175664.0630600054 3.5835609 1103.3555
+175665.0630601097 3.5836396 1103.3555
+175666.063060214 3.5835609 1103.2963
+175667.0630603184 3.5836396 1103.316
+175668.0630604227 3.5836003 1103.3555
+175669.063060527 3.5836003 1103.3949
+175670.0630606313 3.5836396 1103.4344
+175671.0630607356 3.5837183 1103.3555
+175672.0630608399 3.583679 1103.4344
+175673.0630609442 3.5837183 1103.2765
+175674.0630610485 3.5837576 1103.5134
+175675.0630611528 3.583679 1103.3949
+175676.0630612571 3.5837183 1103.2963
+175677.0630613614 3.5836396 1103.3357
+175678.0630614657 3.583797 1103.2963
+175679.0630615701 3.5837576 1103.3949
+175680.0630616744 3.5838366 1103.3752
+175681.0630617787 3.5838366 1103.316
+175682.063061883 3.5838366 1103.3949
+175683.0630619873 3.5838366 1103.3555
+175684.0630620916 3.5839152 1103.316
+175685.0630621959 3.5838759 1103.3357
+175686.0630623002 3.5838759 1103.3357
+175687.0630624045 3.5839152 1103.316
+175688.0630625088 3.5839152 1103.316
+175689.0630626131 3.5839152 1103.3752
+175690.0630627174 3.5838759 1103.4344
+175691.0630628217 3.5839546 1103.2963
+175692.0630629261 3.5838759 1103.2765
+175693.0630630304 3.5839152 1103.3949
+175694.0630631347 3.5839939 1103.3949
+175695.063063239 3.5840333 1103.4147
+175696.0630633433 3.5839939 1103.3555
+175697.0630634476 3.5840333 1103.2172
+175698.0630635519 3.5840333 1103.4344
+175699.0630636562 3.5840726 1103.3752
+175700.0630637605 3.5841515 1103.3357
+175701.0630638648 3.5841119 1103.3357
+175702.0630639691 3.5840333 1103.3357
+175703.0630640734 3.5841119 1103.3357
+175704.0630641778 3.5841119 1103.4344
+175705.0630642821 3.5840333 1103.4344
+175706.0630643864 3.5841119 1103.4344
+175707.0630644907 3.5840726 1103.3555
+175708.063064595 3.5841515 1103.2567
+175709.0630646993 3.5842302 1103.3555
+175710.0630648036 3.5841119 1103.2765
+175711.0630649079 3.5840726 1103.4542
+175712.0630650122 3.5841119 1103.3949
+175713.0630651165 3.5842302 1103.4344
+175714.0630652208 3.5842302 1103.2765
+175715.0630653251 3.5841908 1103.3752
+175716.0630654295 3.5843089 1103.3555
+175717.0630655338 3.5842695 1103.316
+175718.0630656381 3.5841908 1103.3357
+175719.0630657424 3.5842695 1103.2963
+175720.0630658467 3.5842695 1103.3752
+175721.063065951 3.5843482 1103.3752
+175722.0630660553 3.5843089 1103.3949
+175723.0630661596 3.5843089 1103.316
+175724.0630662639 3.5843482 1103.3752
+175725.0630663682 3.5843482 1103.4542
+175726.0630664725 3.5843875 1103.3357
+175727.0630665768 3.5843875 1103.3752
+175728.0630666811 3.5843875 1103.4344
+175729.0630667855 3.5845058 1103.3555
+175730.0630668898 3.5844665 1103.3555
+175731.0630669941 3.5844269 1103.316
+175732.0630670984 3.5843875 1103.3752
+175733.0630672027 3.5844665 1103.3752
+175734.063067307 3.5845058 1103.3357
+175735.0630674113 3.5845058 1103.3752
+175736.0630675156 3.5844665 1103.4344
+175737.0630676199 3.5844665 1103.4147
+175738.0630677242 3.5845058 1103.2963
+175739.0630678285 3.5845845 1103.3949
+175740.0630679328 3.5845451 1103.4147
+175741.0630680372 3.5846238 1103.3555
+175742.0630681415 3.5846238 1103.316
+175743.0630682458 3.5845058 1103.316
+175744.0630683501 3.5843875 1103.3357
+175745.0630684544 3.5846632 1103.316
+175746.0630685587 3.5845451 1103.3752
+175747.063068663 3.5844665 1103.4344
+175748.0630687673 3.5846238 1103.3357
+175749.0630688716 3.5847025 1103.2963
+175750.0630689759 3.5845845 1103.3949
+175751.0630690802 3.5845845 1103.3555
+175752.0630691845 3.5846238 1103.3752
+175753.0630692889 3.5847025 1103.316
+175754.0630693932 3.5846632 1103.3949
+175755.0630694975 3.5847418 1103.3752
+175756.0630696018 3.5846632 1103.3357
+175757.0630697061 3.5846632 1103.4147
+175758.0630698104 3.5847418 1103.4147
+175759.0630699147 3.5845451 1103.3752
+175760.063070019 3.5847418 1103.3357
+175761.0630701233 3.5848601 1103.4147
+175762.0630702276 3.5847814 1103.3357
+175763.0630703319 3.5847814 1103.3949
+175764.0630704362 3.5847814 1103.2963
+175765.0630705405 3.5847814 1103.316
+175766.0630706449 3.5848207 1103.3555
+175767.0630707492 3.5848207 1103.3357
+175768.0630708535 3.5850174 1103.3752
+175769.0630709578 3.5849388 1103.3357
+175770.0630710621 3.5847814 1103.316
+175771.0630711664 3.5849388 1103.4938
+175772.0630712707 3.5848601 1103.3752
+175773.063071375 3.5848994 1103.3752
+175774.0630714793 3.5849781 1103.3357
+175775.0630715836 3.5849388 1103.3752
+175776.0630716879 3.5849388 1103.3357
+175777.0630717922 3.5848601 1103.3752
+175778.0630718966 3.5849388 1103.3752
+175779.0630720009 3.5848994 1103.3949
+175780.0630721052 3.5849388 1103.3752
+175781.0630722095 3.5850174 1103.3357
+175782.0630723138 3.5850174 1103.3555
+175783.0630724181 3.5850964 1103.3949
+175784.0630725224 3.5851357 1103.4542
+175785.0630726267 3.5850174 1103.3555
+175786.063072731 3.5850174 1103.3555
+175787.0630728353 3.5850964 1103.2963
+175788.0630729396 3.5850964 1103.3752
+175789.0630730439 3.5850568 1103.316
+175790.0630731483 3.5851357 1103.3555
+175791.0630732526 3.5850568 1103.2963
+175792.0630733569 3.5851357 1103.3357
+175793.0630734612 3.5850964 1103.3555
+175794.0630735655 3.585175 1103.3752
+175795.0630736698 3.5852144 1103.3752
+175796.0630737741 3.585175 1103.3949
+175797.0630738784 3.5853324 1103.3555
+175798.0630739827 3.5852144 1103.3555
+175799.063074087 3.5852144 1103.3357
+175800.0630741913 3.5852144 1103.3752
+175801.0630742956 3.5852144 1103.2765
+175802.0630744 3.5852144 1103.3949
+175803.0630745043 3.5852931 1103.2567
+175804.0630746086 3.5853324 1103.3949
+175805.0630747129 3.5853324 1103.3949
+175806.0630748172 3.5852931 1103.4344
+175807.0630749215 3.5852537 1103.4542
+175808.0630750258 3.5852931 1103.316
+175809.0630751301 3.5854113 1103.3949
+175810.0630752344 3.5852537 1103.316
+175811.0630753387 3.5852931 1103.3555
+175812.063075443 3.5854113 1103.3752
+175813.0630755473 3.585372 1103.316
+175814.0630756516 3.5853324 1103.2963
+175815.063075756 3.5854506 1103.4147
+175816.0630758603 3.5854113 1103.3357
+175817.0630759646 3.5854113 1103.3357
+175818.0630760689 3.58549 1103.4542
+175819.0630761732 3.5854506 1103.3949
+175820.0630762775 3.5854113 1103.3357
+175821.0630763818 3.5854113 1103.3949
+175822.0630764861 3.5855293 1103.3555
+175823.0630765904 3.58549 1103.3949
+175824.0630766947 3.5855293 1103.3357
+175825.063076799 3.5854506 1103.4147
+175826.0630769033 3.5855293 1103.3949
+175827.0630770077 3.5855293 1103.3752
+175828.063077112 3.5855293 1103.3949
+175829.0630772163 3.5854113 1103.3949
+175830.0630773206 3.5855293 1103.2963
+175831.0630774249 3.5855687 1103.3752
+175832.0630775292 3.5855687 1103.316
+175833.0630776335 3.5855293 1103.3949
+175834.0630777378 3.5855293 1103.4147
+175835.0630778421 3.5855293 1103.4147
+175836.0630779464 3.5856473 1103.3752
+175837.0630780507 3.585608 1103.316
+175838.063078155 3.5855293 1103.474
+175839.0630782594 3.5857263 1103.4147
+175840.0630783637 3.5855687 1103.3949
+175841.063078468 3.5856869 1103.316
+175842.0630785723 3.5856473 1103.474
+175843.0630786766 3.5857656 1103.3555
+175844.0630787809 3.5858443 1103.3555
+175845.0630788852 3.5856869 1103.4147
+175846.0630789895 3.5856473 1103.3949
+175847.0630790938 3.5857263 1103.3949
+175848.0630791981 3.5857656 1103.2765
+175849.0630793024 3.5856869 1103.3949
+175850.0630794067 3.5857656 1103.3949
+175851.063079511 3.5857263 1103.4542
+175852.0630796154 3.5858443 1103.3752
+175853.0630797197 3.5857656 1103.3949
+175854.063079824 3.585923 1103.4147
+175855.0630799283 3.5858049 1103.3949
+175856.0630800326 3.5858836 1103.4542
+175857.0630801369 3.5857263 1103.3949
+175858.0630802412 3.585923 1103.3752
+175859.0630803455 3.5858836 1103.3555
+175860.0630804498 3.5860019 1103.4344
+175861.0630805541 3.5859623 1103.3752
+175862.0630806584 3.5858836 1103.2963
+175863.0630807627 3.5859623 1103.3752
+175864.0630808671 3.5860019 1103.316
+175865.0630809714 3.5859623 1103.3555
+175866.0630810757 3.5860412 1103.4542
+175867.06308118 3.5861199 1103.3949
+175868.0630812843 3.5861199 1103.3555
+175869.0630813886 3.5860412 1103.2963
+175870.0630814929 3.5860412 1103.4147
+175871.0630815972 3.5860806 1103.3752
+175872.0630817015 3.5861199 1103.3555
+175873.0630818058 3.5860412 1103.3357
+175874.0630819101 3.5860412 1103.3555
+175875.0630820144 3.5861199 1103.3357
+175876.0630821188 3.5861592 1103.3949
+175877.0630822231 3.5860806 1103.3357
+175878.0630823274 3.5861986 1103.4147
+175879.0630824317 3.5861199 1103.3357
+175880.063082536 3.5860806 1103.3555
+175881.0630826403 3.5861199 1103.2765
+175882.0630827446 3.5861986 1103.3357
+175883.0630828489 3.5861986 1103.3357
+175884.0630829532 3.5862379 1103.4147
+175885.0630830575 3.5861986 1103.3555
+175886.0630831618 3.5861986 1103.4542
+175887.0630832661 3.5863955 1103.4147
+175888.0630833704 3.5861986 1103.3752
+175889.0630834748 3.5862379 1103.3949
+175890.0630835791 3.5862379 1103.316
+175891.0630836834 3.5862379 1103.4147
+175892.0630837877 3.5862379 1103.3555
+175893.063083892 3.5863562 1103.3357
+175894.0630839963 3.5862772 1103.3949
+175895.0630841006 3.5863562 1103.3752
+175896.0630842049 3.5863955 1103.316
+175897.0630843092 3.5863955 1103.3752
+175898.0630844135 3.5863562 1103.4542
+175899.0630845178 3.5863168 1103.2567
+175900.0630846221 3.5862379 1103.4147
+175901.0630847265 3.5863955 1103.3752
+175902.0630848308 3.5864348 1103.3949
+175903.0630849351 3.5864742 1103.3949
+175904.0630850394 3.5864742 1103.3949
+175905.0630851437 3.5864348 1103.3555
+175906.063085248 3.5865135 1103.3357
+175907.0630853523 3.5864742 1103.3555
+175908.0630854566 3.5865135 1103.316
+175909.0630855609 3.5865529 1103.3949
+175910.0630856652 3.5864348 1103.4147
+175911.0630857695 3.5864742 1103.3555
+175912.0630858738 3.5865529 1103.4542
+175913.0630859782 3.5865529 1103.3949
+175914.0630860825 3.5866318 1103.4147
+175915.0630861868 3.5865922 1103.3752
+175916.0630862911 3.5865922 1103.3752
+175917.0630863954 3.5865922 1103.2963
+175918.0630864997 3.5865922 1103.3949
+175919.063086604 3.5866318 1103.2765
+175920.0630867083 3.5866318 1103.3752
+175921.0630868126 3.5865922 1103.4344
+175922.0630869169 3.5865922 1103.2765
+175923.0630870212 3.5866711 1103.3752
+175924.0630871255 3.5866318 1103.3357
+175925.0630872299 3.5866711 1103.3555
+175926.0630873342 3.5867105 1103.2765
+175927.0630874385 3.5866711 1103.316
+175928.0630875428 3.5867891 1103.2963
+175929.0630876471 3.5867498 1103.316
+175930.0630877514 3.5867891 1103.3949
+175931.0630878557 3.5867891 1103.316
+175932.06308796 3.5867105 1103.2963
+175933.0630880643 3.5868285 1103.3949
+175934.0630881686 3.5868285 1103.3949
+175935.0630882729 3.5867891 1103.316
+175936.0630883772 3.5868285 1103.3555
+175937.0630884815 3.5868285 1103.4344
+175938.0630885859 3.5868285 1103.316
+175939.0630886902 3.5869074 1103.3555
+175940.0630887945 3.5869467 1103.2963
+175941.0630888988 3.5867891 1103.3555
+175942.0630890031 3.5868285 1103.4147
+175943.0630891074 3.5869074 1103.3555
+175944.0630892117 3.5870647 1103.316
+175945.063089316 3.5867891 1103.3555
+175946.0630894203 3.5869861 1103.316
+175947.0630895246 3.5870254 1103.2567
+175948.0630896289 3.5868678 1103.4147
+175949.0630897332 3.5869074 1103.3752
+175950.0630898376 3.5869467 1103.474
+175951.0630899419 3.5870647 1103.3357
+175952.0630900462 3.5871041 1103.3752
+175953.0630901505 3.5870254 1103.3357
+175954.0630902548 3.5871434 1103.4344
+175955.0630903591 3.5870647 1103.3949
+175956.0630904634 3.5871434 1103.3555
+175957.0630905677 3.5870254 1103.316
+175958.063090672 3.5871828 1103.316
+175959.0630907763 3.5870647 1103.316
+175960.0630908806 3.5871041 1103.3555
+175961.0630909849 3.5872223 1103.3555
+175962.0630910893 3.5870647 1103.3949
+175963.0630911936 3.5871434 1103.3555
+175964.0630912979 3.5870254 1103.4147
+175965.0630914022 3.5871828 1103.3555
+175966.0630915065 3.5871828 1103.3752
+175967.0630916108 3.5872617 1103.3949
+175968.0630917151 3.587301 1103.316
+175969.0630918194 3.5873404 1103.4147
+175970.0630919237 3.5872223 1103.3752
+175971.063092028 3.5873404 1103.3555
+175972.0630921323 3.5873404 1103.2567
+175973.0630922366 3.587301 1103.4344
+175974.0630923409 3.587419 1103.4147
+175975.0630924453 3.5872223 1103.3555
+175976.0630925496 3.5874584 1103.3357
+175977.0630926539 3.5873797 1103.3752
+175978.0630927582 3.587419 1103.3555
+175979.0630928625 3.5873797 1103.3752
+175980.0630929668 3.5874977 1103.3752
+175981.0630930711 3.5874584 1103.316
+175982.0630931754 3.5873797 1103.3752
+175983.0630932797 3.5875373 1103.316
+175984.063093384 3.5874977 1103.3555
+175985.0630934883 3.5875766 1103.2963
+175986.0630935926 3.5875373 1103.316
+175987.063093697 3.5874584 1103.2765
+175988.0630938013 3.5875766 1103.3752
+175989.0630939056 3.587419 1103.3752
+175990.0630940099 3.5874977 1103.3555
+175991.0630941142 3.5874977 1103.3949
+175992.0630942185 3.587616 1103.3752
+175993.0630943228 3.5876553 1103.316
+175994.0630944271 3.5876553 1103.3357
+175995.0630945314 3.587616 1103.3555
+175996.0630946357 3.587616 1103.316
+175997.06309474 3.587616 1103.316
+175998.0630948443 3.587734 1103.3752
+175999.0630949487 3.587734 1103.3555
+176000.063095053 3.587734 1103.4542
+176001.0630951573 3.5876553 1103.3949
+176002.0630952616 3.5876946 1103.3555
+176003.0630953659 3.5877733 1103.4147
+176004.0630954702 3.587734 1103.316
+176005.0630955745 3.5878522 1103.3357
+176006.0630956788 3.587734 1103.3752
+176007.0630957831 3.5876946 1103.3949
+176008.0630958874 3.587734 1103.316
+176009.0630959917 3.5878522 1103.3752
+176010.063096096 3.5878522 1103.3555
+176011.0630962003 3.5878522 1103.4147
+176012.0630963047 3.5879703 1103.3949
+176013.063096409 3.5878916 1103.3357
+176014.0630965133 3.5879703 1103.3555
+176015.0630966176 3.5878916 1103.4147
+176016.0630967219 3.5878127 1103.474
+176017.0630968262 3.5878522 1103.3555
+176018.0630969305 3.5879309 1103.3949
+176019.0630970348 3.5878916 1103.3555
+176020.0630971391 3.5879309 1103.3949
+176021.0630972434 3.5880096 1103.3357
+176022.0630973477 3.5880096 1103.3357
+176023.063097452 3.5879703 1103.3949
+176024.0630975564 3.5880096 1103.4542
+176025.0630976607 3.5880096 1103.3949
+176026.063097765 3.5880096 1103.316
+176027.0630978693 3.5880489 1103.316
+176028.0630979736 3.5881276 1103.2765
+176029.0630980779 3.5881276 1103.3752
+176030.0630981822 3.5880883 1103.474
+176031.0630982865 3.5882852 1103.2963
+176032.0630983908 3.5882459 1103.1975
+176033.0630984951 3.5880883 1103.3357
+176034.0630985994 3.5880883 1103.3357
+176035.0630987037 3.5882065 1103.3949
+176036.0630988081 3.5882459 1103.316
+176037.0630989124 3.5882459 1103.4147
+176038.0630990167 3.5882065 1103.3357
+176039.063099121 3.5882065 1103.4344
+176040.0630992253 3.5882065 1103.3555
+176041.0630993296 3.5882065 1103.2963
+176042.0630994339 3.5883245 1103.3752
+176043.0630995382 3.5882852 1103.474
+176044.0630996425 3.5882459 1103.4542
+176045.0630997468 3.5882065 1103.316
+176046.0630998511 3.5883245 1103.4938
+176047.0630999554 3.5883639 1103.3949
+176048.0631000598 3.5883245 1103.2963
+176049.0631001641 3.5883245 1103.2963
+176050.0631002684 3.5884032 1103.3357
+176051.0631003727 3.5884426 1103.3752
+176052.063100477 3.5884032 1103.3949
+176053.0631005813 3.5884032 1103.3752
+176054.0631006856 3.5884426 1103.4344
+176055.0631007899 3.5884032 1103.3949
+176056.0631008942 3.5884426 1103.2765
+176057.0631009985 3.5884032 1103.3752
+176058.0631011028 3.5884821 1103.4542
+176059.0631012071 3.5884821 1103.4542
+176060.0631013114 3.5884426 1103.2765
+176061.0631014158 3.5885215 1103.3752
+176062.0631015201 3.5884821 1103.3555
+176063.0631016244 3.5886788 1103.2963
+176064.0631017287 3.5886395 1103.3357
+176065.063101833 3.5885215 1103.316
+176066.0631019373 3.5886395 1103.3555
+176067.0631020416 3.5885608 1103.3555
+176068.0631021459 3.5886395 1103.3752
+176069.0631022502 3.5886395 1103.3752
+176070.0631023545 3.5887182 1103.3357
+176071.0631024588 3.5887971 1103.2963
+176072.0631025631 3.5886395 1103.2567
+176073.0631026675 3.5886788 1103.3752
+176074.0631027718 3.5886395 1103.316
+176075.0631028761 3.5886788 1103.2765
+176076.0631029804 3.5887578 1103.3555
+176077.0631030847 3.5887971 1103.3949
+176078.063103189 3.5888364 1103.3357
+176079.0631032933 3.5888758 1103.3752
+176080.0631033976 3.5887578 1103.316
+176081.0631035019 3.5889151 1103.474
+176082.0631036062 3.5888758 1103.3555
+176083.0631037105 3.5887182 1103.316
+176084.0631038148 3.5888758 1103.3555
+176085.0631039192 3.5889544 1103.3752
+176086.0631040235 3.5889544 1103.3752
+176087.0631041278 3.5888364 1103.3949
+176088.0631042321 3.5888364 1103.4344
+176089.0631043364 3.5889151 1103.3752
+176090.0631044407 3.5889151 1103.4344
+176091.063104545 3.5890727 1103.3752
+176092.0631046493 3.5891514 1103.4147
+176093.0631047536 3.5890331 1103.3752
+176094.0631048579 3.5890727 1103.4542
+176095.0631049622 3.5889938 1103.3752
+176096.0631050665 3.5890727 1103.316
+176097.0631051708 3.589112 1103.3949
+176098.0631052752 3.5891514 1103.316
+176099.0631053795 3.5890727 1103.3555
+176100.0631054838 3.5890727 1103.3752
+176101.0631055881 3.5891514 1103.4344
+176102.0631056924 3.5891907 1103.4147
+176103.0631057967 3.5891514 1103.3752
+176104.063105901 3.5892301 1103.316
+176105.0631060053 3.5891514 1103.474
+176106.0631061096 3.5891907 1103.316
+176107.0631062139 3.5892301 1103.3357
+176108.0631063182 3.5891907 1103.3949
+176109.0631064225 3.5893481 1103.4542
+176110.0631065269 3.5891907 1103.3555
+176111.0631066312 3.5892301 1103.2963
+176112.0631067355 3.5892694 1103.4147
+176113.0631068398 3.5892694 1103.3555
+176114.0631069441 3.5892694 1103.3752
+176115.0631070484 3.5893877 1103.3357
+176116.0631071527 3.5893087 1103.3949
+176117.063107257 3.5893481 1103.2765
+176118.0631073613 3.5893877 1103.3357
+176119.0631074656 3.5893877 1103.3357
+176120.0631075699 3.5894663 1103.3752
+176121.0631076742 3.5893877 1103.3752
+176122.0631077786 3.589545 1103.3949
+176123.0631078829 3.5893877 1103.3555
+176124.0631079872 3.5895057 1103.3357
+176125.0631080915 3.5895057 1103.3949
+176126.0631081958 3.5895057 1103.3752
+176127.0631083001 3.589545 1103.4147
+176128.0631084044 3.5893877 1103.3555
+176129.0631085087 3.5896237 1103.3752
+176130.063108613 3.589545 1103.3357
+176131.0631087173 3.589545 1103.316
+176132.0631088216 3.589545 1103.3752
+176133.0631089259 3.5895844 1103.3752
+176134.0631090302 3.5895844 1103.3555
+176135.0631091346 3.5896237 1103.3949
+176136.0631092389 3.5896237 1103.4344
+176137.0631093432 3.5896237 1103.4147
+176138.0631094475 3.589663 1103.2765
+176139.0631095518 3.5897026 1103.316
+176140.0631096561 3.5897026 1103.3357
+176141.0631097604 3.5897026 1103.4344
+176142.0631098647 3.5897419 1103.3752
+176143.063109969 3.5897419 1103.3555
+176144.0631100733 3.5897026 1103.4147
+176145.0631101776 3.5897813 1103.3949
+176146.0631102819 3.5898206 1103.316
+176147.0631103863 3.5897026 1103.3752
+176148.0631104906 3.5897813 1103.4344
+176149.0631105949 3.58986 1103.3752
+176150.0631106992 3.58986 1103.3949
+176151.0631108035 3.5897813 1103.316
+176152.0631109078 3.5898993 1103.3555
+176153.0631110121 3.5898993 1103.3752
+176154.0631111164 3.58986 1103.3752
+176155.0631112207 3.58986 1103.3752
+176156.063111325 3.5898206 1103.4344
+176157.0631114293 3.5899386 1103.2963
+176158.0631115336 3.5899386 1103.3949
+176159.063111638 3.5898206 1103.316
+176160.0631117423 3.589978 1103.3555
+176161.0631118466 3.589978 1103.4147
+176162.0631119509 3.5899386 1103.3555
+176163.0631120552 3.5899386 1103.4147
+176164.0631121595 3.5900176 1103.3357
+176165.0631122638 3.5900569 1103.3752
+176166.0631123681 3.5900176 1103.3949
+176167.0631124724 3.5900176 1103.3752
+176168.0631125767 3.5900569 1103.3752
+176169.063112681 3.5901749 1103.3752
+176170.0631127853 3.5900962 1103.474
+176171.0631128896 3.5901356 1103.4344
+176172.063112994 3.5901356 1103.3752
+176173.0631130983 3.5900569 1103.3555
+176174.0631132026 3.5900569 1103.3555
+176175.0631133069 3.5900569 1103.4938
+176176.0631134112 3.5901356 1103.3752
+176177.0631135155 3.5902929 1103.2765
+176178.0631136198 3.5902929 1103.3555
+176179.0631137241 3.5901356 1103.3949
+176180.0631138284 3.5902536 1103.3357
+176181.0631139327 3.5902143 1103.2765
+176182.063114037 3.5902536 1103.5134
+176183.0631141413 3.5903325 1103.3752
+176184.0631142457 3.5902929 1103.3555
+176185.06311435 3.5901749 1103.3752
+176186.0631144543 3.5902536 1103.4344
+176187.0631145586 3.5903325 1103.3357
+176188.0631146629 3.5901749 1103.3555
+176189.0631147672 3.5902929 1103.3555
+176190.0631148715 3.5902929 1103.4147
+176191.0631149758 3.5903718 1103.316
+176192.0631150801 3.5902929 1103.3752
+176193.0631151844 3.5902929 1103.3555
+176194.0631152887 3.5903325 1103.3949
+176195.063115393 3.5902929 1103.3752
+176196.0631154974 3.5903718 1103.316
+176197.0631156017 3.5903718 1103.474
+176198.063115706 3.5903718 1103.3949
+176199.0631158103 3.5904112 1103.3555
+176200.0631159146 3.5904899 1103.3555
+176201.0631160189 3.5904112 1103.3555
+176202.0631161232 3.5904505 1103.316
+176203.0631162275 3.5904505 1103.4147
+176204.0631163318 3.5904112 1103.4147
+176205.0631164361 3.5905292 1103.4938
+176206.0631165404 3.5905292 1103.3555
+176207.0631166447 3.5905685 1103.2765
+176208.0631167491 3.5905292 1103.4344
+176209.0631168534 3.5905685 1103.3752
+176210.0631169577 3.5905685 1103.2963
+176211.063117062 3.5905685 1103.3555
+176212.0631171663 3.5906475 1103.3555
+176213.0631172706 3.5906081 1103.3555
+176214.0631173749 3.5905292 1103.3752
+176215.0631174792 3.5906081 1103.3949
+176216.0631175835 3.5906868 1103.3357
+176217.0631176878 3.5907261 1103.2963
+176218.0631177921 3.5907655 1103.2963
+176219.0631178964 3.5906081 1103.3555
+176220.0631180007 3.5907261 1103.3949
+176221.0631181051 3.5907655 1103.3752
+176222.0631182094 3.5907261 1103.316
+176223.0631183137 3.5907261 1103.3949
+176224.063118418 3.5908442 1103.4147
+176225.0631185223 3.5906868 1103.4542
+176226.0631186266 3.5908442 1103.3555
+176227.0631187309 3.5908048 1103.3555
+176228.0631188352 3.5907655 1103.316
+176229.0631189395 3.5907655 1103.3949
+176230.0631190438 3.5908442 1103.3357
+176231.0631191481 3.5908442 1103.3555
+176232.0631192524 3.5908048 1103.4147
+176233.0631193568 3.5909231 1103.3357
+176234.0631194611 3.5908835 1103.316
+176235.0631195654 3.5909231 1103.3752
+176236.0631196697 3.5910017 1103.4147
+176237.063119774 3.5908835 1103.3949
+176238.0631198783 3.5908442 1103.3357
+176239.0631199826 3.5910017 1103.3949
+176240.0631200869 3.5909624 1103.3357
+176241.0631201912 3.5908442 1103.3357
+176242.0631202955 3.5910411 1103.3357
+176243.0631203998 3.5909624 1103.4542
+176244.0631205041 3.5910804 1103.3555
+176245.0631206085 3.5910411 1103.316
+176246.0631207128 3.5910411 1103.4147
+176247.0631208171 3.5911591 1103.3555
+176248.0631209214 3.5909624 1103.3752
+176249.0631210257 3.5911198 1103.3555
+176250.06312113 3.5911591 1103.4542
+176251.0631212343 3.591238 1103.4542
+176252.0631213386 3.5911591 1103.3949
+176253.0631214429 3.5911198 1103.316
+176254.0631215472 3.5911984 1103.2963
+176255.0631216515 3.591238 1103.2963
+176256.0631217558 3.5911984 1103.2963
+176257.0631218601 3.591238 1103.3555
+176258.0631219645 3.591238 1103.316
+176259.0631220688 3.5911591 1103.316
+176260.0631221731 3.5911984 1103.3949
+176261.0631222774 3.5912774 1103.3752
+176262.0631223817 3.5912774 1103.3357
+176263.063122486 3.5913167 1103.3555
+176264.0631225903 3.5911984 1103.3752
+176265.0631226946 3.5913167 1103.316
+176266.0631227989 3.591356 1103.3555
+176267.0631229032 3.5913954 1103.3752
+176268.0631230075 3.5913167 1103.3949
+176269.0631231118 3.5914741 1103.3357
+176270.0631232162 3.5914347 1103.2963
+176271.0631233205 3.5914347 1103.4344
+176272.0631234248 3.5913167 1103.3555
+176273.0631235291 3.5913954 1103.4147
+176274.0631236334 3.5913954 1103.3555
+176275.0631237377 3.591356 1103.3555
+176276.063123842 3.5913954 1103.3752
+176277.0631239463 3.5915134 1103.3949
+176278.0631240506 3.591553 1103.3949
+176279.0631241549 3.591553 1103.3357
+176280.0631242592 3.5914347 1103.3357
+176281.0631243635 3.5915134 1103.3949
+176282.0631244679 3.591553 1103.3752
+176283.0631245722 3.591553 1103.4344
+176284.0631246765 3.5916317 1103.3949
+176285.0631247808 3.5915923 1103.3752
+176286.0631248851 3.591553 1103.3357
+176287.0631249894 3.5916317 1103.3752
+176288.0631250937 3.591671 1103.4147
+176289.063125198 3.5916317 1103.3555
+176290.0631253023 3.5916317 1103.3555
+176291.0631254066 3.5917103 1103.3357
+176292.0631255109 3.5917103 1103.3555
+176293.0631256152 3.5917103 1103.4344
+176294.0631257195 3.5917103 1103.3357
+176295.0631258239 3.5917497 1103.3555
+176296.0631259282 3.5918283 1103.3357
+176297.0631260325 3.591789 1103.4147
+176298.0631261368 3.5917497 1103.3752
+176299.0631262411 3.5917103 1103.3949
+176300.0631263454 3.5918283 1103.4344
+176301.0631264497 3.591789 1103.2567
+176302.063126554 3.5918283 1103.316
+176303.0631266583 3.5918283 1103.3949
+176304.0631267626 3.5918283 1103.4344
+176305.0631268669 3.5919073 1103.3357
+176306.0631269712 3.5919859 1103.3949
+176307.0631270756 3.5919466 1103.3555
+176308.0631271799 3.5919466 1103.474
+176309.0631272842 3.5919466 1103.4147
+176310.0631273885 3.5919073 1103.4147
+176311.0631274928 3.5919466 1103.3949
+176312.0631275971 3.5919466 1103.3752
+176313.0631277014 3.592104 1103.3357
+176314.0631278057 3.5920253 1103.2567
+176315.06312791 3.5920646 1103.4147
+176316.0631280143 3.592104 1103.3357
+176317.0631281186 3.5921433 1103.2963
+176318.0631282229 3.5920646 1103.3357
+176319.0631283273 3.5920646 1103.3752
+176320.0631284316 3.5921433 1103.4344
+176321.0631285359 3.5922222 1103.3752
+176322.0631286402 3.5921829 1103.3357
+176323.0631287445 3.5921433 1103.3752
+176324.0631288488 3.5921829 1103.4147
+176325.0631289531 3.5921829 1103.3555
+176326.0631290574 3.5922222 1103.3357
+176327.0631291617 3.5922222 1103.316
+176328.063129266 3.5922616 1103.3949
+176329.0631293703 3.5921829 1103.3555
+176330.0631294746 3.5922222 1103.3752
+176331.063129579 3.5921433 1103.3949
+176332.0631296833 3.5923009 1103.3752
+176333.0631297876 3.5922616 1103.3949
+176334.0631298919 3.5923009 1103.3357
+176335.0631299962 3.5923009 1103.4147
+176336.0631301005 3.5923402 1103.3357
+176337.0631302048 3.5923796 1103.2963
+176338.0631303091 3.5923009 1103.316
+176339.0631304134 3.5923402 1103.2963
+176340.0631305177 3.5923796 1103.3555
+176341.063130622 3.5924189 1103.4542
+176342.0631307263 3.5924585 1103.3357
+176343.0631308306 3.5924189 1103.3357
+176344.063130935 3.5924978 1103.2963
+176345.0631310393 3.5924585 1103.3752
+176346.0631311436 3.5924978 1103.4147
+176347.0631312479 3.5924978 1103.4147
+176348.0631313522 3.5924978 1103.2765
+176349.0631314565 3.5925372 1103.316
+176350.0631315608 3.5925372 1103.3949
+176351.0631316651 3.5925765 1103.2765
+176352.0631317694 3.5926158 1103.3949
+176353.0631318737 3.5925372 1103.316
+176354.063131978 3.5926158 1103.3949
+176355.0631320823 3.5925765 1103.3555
+176356.0631321867 3.5926552 1103.3357
+176357.063132291 3.5926158 1103.3555
+176358.0631323953 3.5926945 1103.3555
+176359.0631324996 3.5927339 1103.3949
+176360.0631326039 3.5926158 1103.3949
+176361.0631327082 3.5927339 1103.3949
+176362.0631328125 3.5926552 1103.3752
+176363.0631329168 3.5926945 1103.3752
+176364.0631330211 3.5926552 1103.3555
+176365.0631331254 3.5927734 1103.3752
+176366.0631332297 3.5928128 1103.3752
+176367.063133334 3.5927339 1103.3357
+176368.0631334384 3.5926945 1103.3357
+176369.0631335427 3.5926945 1103.3752
+176370.063133647 3.5928128 1103.3555
+176371.0631337513 3.5926552 1103.3752
+176372.0631338556 3.5928128 1103.3357
+176373.0631339599 3.5927734 1103.3555
+176374.0631340642 3.5928128 1103.2963
+176375.0631341685 3.5928521 1103.3357
+176376.0631342728 3.5928128 1103.3357
+176377.0631343771 3.5928915 1103.3752
+176378.0631344814 3.5928521 1103.3357
+176379.0631345857 3.5928915 1103.3357
+176380.06313469 3.5928915 1103.3752
+176381.0631347944 3.5928915 1103.2963
+176382.0631348987 3.5928521 1103.474
+176383.063135003 3.5929308 1103.3555
+176384.0631351073 3.5930488 1103.3555
+176385.0631352116 3.5928915 1103.3357
+176386.0631353159 3.5930095 1103.3752
+176387.0631354202 3.5929701 1103.3357
+176388.0631355245 3.5929308 1103.316
+176389.0631356288 3.5930884 1103.316
+176390.0631357331 3.5930095 1103.3949
+176391.0631358374 3.5930884 1103.3357
+176392.0631359417 3.5931277 1103.3357
+176393.0631360461 3.5930488 1103.3357
+176394.0631361504 3.5931277 1103.4344
+176395.0631362547 3.5931277 1103.3357
+176396.063136359 3.5932064 1103.3752
+176397.0631364633 3.5931277 1103.3949
+176398.0631365676 3.5932064 1103.3555
+176399.0631366719 3.5930488 1103.316
+176400.0631367762 3.5932064 1103.3752
+176401.0631368805 3.5932064 1103.2963
+176402.0631369848 3.5931671 1103.3752
+176403.0631370891 3.5932851 1103.2765
+176404.0631371934 3.5931671 1103.3555
+176405.0631372978 3.5931277 1103.4147
+176406.0631374021 3.5933244 1103.3752
+176407.0631375064 3.5933638 1103.3949
+176408.0631376107 3.5932851 1103.3752
+176409.063137715 3.5933244 1103.316
+176410.0631378193 3.5932457 1103.3752
+176411.0631379236 3.5932851 1103.2567
+176412.0631380279 3.5933638 1103.4542
+176413.0631381322 3.5933244 1103.2963
+176414.0631382365 3.5933638 1103.2765
+176415.0631383408 3.5934427 1103.3555
+176416.0631384451 3.5934427 1103.3357
+176417.0631385494 3.5932851 1103.3555
+176418.0631386538 3.5933638 1103.3357
+176419.0631387581 3.5934427 1103.4147
+176420.0631388624 3.5934427 1103.3949
+176421.0631389667 3.5935214 1103.3555
+176422.063139071 3.5934427 1103.3949
+176423.0631391753 3.5935214 1103.316
+176424.0631392796 3.593482 1103.3949
+176425.0631393839 3.5935214 1103.3752
+176426.0631394882 3.5935607 1103.3555
+176427.0631395925 3.5936394 1103.2963
+176428.0631396968 3.5936787 1103.4147
+176429.0631398011 3.5936394 1103.2963
+176430.0631399055 3.593482 1103.3357
+176431.0631400098 3.5936394 1103.2765
+176432.0631401141 3.5936394 1103.3357
+176433.0631402184 3.5936 1103.3752
+176434.0631403227 3.5937183 1103.3752
+176435.063140427 3.593797 1103.2963
+176436.0631405313 3.5936787 1103.3949
+176437.0631406356 3.5937183 1103.4147
+176438.0631407399 3.5937576 1103.3555
+176439.0631408442 3.5938363 1103.2963
+176440.0631409485 3.5937183 1103.3752
+176441.0631410528 3.5937576 1103.4147
+176442.0631411572 3.5938756 1103.316
+176443.0631412615 3.593797 1103.474
+176444.0631413658 3.5937576 1103.3752
+176445.0631414701 3.593915 1103.4147
+176446.0631415744 3.5938363 1103.4147
+176447.0631416787 3.593915 1103.3752
+176448.063141783 3.5940332 1103.3555
+176449.0631418873 3.5938756 1103.3752
+176450.0631419916 3.5939937 1103.3555
+176451.0631420959 3.5939937 1103.3752
+176452.0631422002 3.5939543 1103.3752
+176453.0631423045 3.5940332 1103.3555
+176454.0631424089 3.5939937 1103.3555
+176455.0631425132 3.5941513 1103.4344
+176456.0631426175 3.5941119 1103.3555
+176457.0631427218 3.5940726 1103.3555
+176458.0631428261 3.5941119 1103.3949
+176459.0631429304 3.5941119 1103.4147
+176460.0631430347 3.5941119 1103.316
+176461.063143139 3.5941513 1103.3949
+176462.0631432433 3.5940726 1103.4542
+176463.0631433476 3.5941119 1103.4542
+176464.0631434519 3.5941119 1103.3555
+176465.0631435562 3.5941906 1103.3555
+176466.0631436605 3.5942693 1103.4344
+176467.0631437649 3.5942299 1103.3752
+176468.0631438692 3.5941513 1103.3752
+176469.0631439735 3.5941513 1103.316
+176470.0631440778 3.5941513 1103.3357
+176471.0631441821 3.5942693 1103.3949
+176472.0631442864 3.5942693 1103.4344
+176473.0631443907 3.5943089 1103.4147
+176474.063144495 3.5943089 1103.4147
+176475.0631445993 3.5943089 1103.3357
+176476.0631447036 3.5942299 1103.3752
+176477.0631448079 3.5943875 1103.4147
+176478.0631449122 3.5943875 1103.3555
+176479.0631450166 3.5943089 1103.2963
+176480.0631451209 3.5942693 1103.316
+176481.0631452252 3.5944269 1103.3752
+176482.0631453295 3.5943482 1103.3555
+176483.0631454338 3.5943089 1103.4147
+176484.0631455381 3.5944269 1103.2765
+176485.0631456424 3.5943089 1103.4344
+176486.0631457467 3.5944662 1103.3357
+176487.063145851 3.5944269 1103.4147
+176488.0631459553 3.5944662 1103.4542
+176489.0631460596 3.5943875 1103.3752
+176490.0631461639 3.5944662 1103.3752
+176491.0631462683 3.5945055 1103.3752
+176492.0631463726 3.5945842 1103.3949
+176493.0631464769 3.5944662 1103.2963
+176494.0631465812 3.5945449 1103.4147
+176495.0631466855 3.5945449 1103.4344
+176496.0631467898 3.5945055 1103.4147
+176497.0631468941 3.5946238 1103.3949
+176498.0631469984 3.5945842 1103.3949
+176499.0631471027 3.5946238 1103.3357
+176500.063147207 3.5945842 1103.4147
+176501.0631473113 3.5945842 1103.3949
+176502.0631474156 3.5946238 1103.3949
+176503.0631475199 3.5945842 1103.4147
+176504.0631476243 3.5946631 1103.316
+176505.0631477286 3.5947025 1103.3555
+176506.0631478329 3.5947025 1103.3555
+176507.0631479372 3.5947025 1103.3752
+176508.0631480415 3.5946631 1103.3752
+176509.0631481458 3.5947025 1103.3949
+176510.0631482501 3.5947418 1103.3752
+176511.0631483544 3.5947025 1103.4147
+176512.0631484587 3.5948205 1103.3555
+176513.063148563 3.5947812 1103.3752
+176514.0631486673 3.5947812 1103.3555
+176515.0631487716 3.5948598 1103.3357
+176516.063148876 3.5947812 1103.4542
+176517.0631489803 3.5947812 1103.3949
+176518.0631490846 3.5948992 1103.3949
+176519.0631491889 3.5949388 1103.3555
+176520.0631492932 3.5949388 1103.316
+176521.0631493975 3.5948992 1103.3752
+176522.0631495018 3.5948598 1103.4344
+176523.0631496061 3.5949388 1103.3357
+176524.0631497104 3.5949388 1103.3555
+176525.0631498147 3.5949781 1103.4542
+176526.063149919 3.5948992 1103.3949
+176527.0631500233 3.5949781 1103.3949
+176528.0631501277 3.5949388 1103.2963
+176529.063150232 3.5950568 1103.3949
+176530.0631503363 3.5951355 1103.3752
+176531.0631504406 3.5950568 1103.3752
+176532.0631505449 3.5950174 1103.316
+176533.0631506492 3.5950174 1103.4147
+176534.0631507535 3.5950961 1103.3555
+176535.0631508578 3.5951355 1103.3357
+176536.0631509621 3.5951355 1103.3752
+176537.0631510664 3.5949781 1103.2765
+176538.0631511707 3.5951355 1103.3555
+176539.063151275 3.5951355 1103.3752
+176540.0631513793 3.5951355 1103.3555
+176541.0631514837 3.5952141 1103.3555
+176542.063151588 3.5951355 1103.4542
+176543.0631516923 3.5950568 1103.3357
+176544.0631517966 3.5952537 1103.2963
+176545.0631519009 3.5951748 1103.3555
+176546.0631520052 3.5952537 1103.3357
+176547.0631521095 3.5952141 1103.3357
+176548.0631522138 3.5952141 1103.3949
+176549.0631523181 3.595293 1103.3752
+176550.0631524224 3.5952537 1103.3555
+176551.0631525267 3.595293 1103.316
+176552.063152631 3.595293 1103.3752
+176553.0631527354 3.5953717 1103.2963
+176554.0631528397 3.5953717 1103.4344
+176555.063152944 3.5953717 1103.2963
+176556.0631530483 3.5953717 1103.4147
+176557.0631531526 3.5954111 1103.3555
+176558.0631532569 3.5953717 1103.4344
+176559.0631533612 3.5954897 1103.3555
+176560.0631534655 3.5955291 1103.3752
+176561.0631535698 3.5954504 1103.3752
+176562.0631536741 3.5954504 1103.3357
+176563.0631537784 3.5955687 1103.3357
+176564.0631538827 3.5954897 1103.2765
+176565.0631539871 3.5955291 1103.4147
+176566.0631540914 3.5955687 1103.4147
+176567.0631541957 3.5955687 1103.4147
+176568.0631543 3.5955687 1103.3752
+176569.0631544043 3.5955291 1103.3555
+176570.0631545086 3.5955687 1103.3752
+176571.0631546129 3.5955687 1103.3555
+176572.0631547172 3.5956473 1103.2963
+176573.0631548215 3.5956473 1103.3752
+176574.0631549258 3.5957654 1103.3357
+176575.0631550301 3.5955687 1103.2963
+176576.0631551344 3.595726 1103.3357
+176577.0631552387 3.5956867 1103.3752
+176578.0631553431 3.5956867 1103.4344
+176579.0631554474 3.595844 1103.2963
+176580.0631555517 3.5958047 1103.4147
+176581.063155656 3.5957654 1103.4542
+176582.0631557603 3.5956867 1103.3555
+176583.0631558646 3.5958047 1103.3949
+176584.0631559689 3.595844 1103.4147
+176585.0631560732 3.595844 1103.2765
+176586.0631561775 3.5958836 1103.3752
+176587.0631562818 3.5958836 1103.2369
+176588.0631563861 3.595844 1103.3555
+176589.0631564904 3.5957654 1103.3357
+176590.0631565948 3.5959229 1103.2963
+176591.0631566991 3.5959229 1103.3357
+176592.0631568034 3.5959623 1103.3752
+176593.0631569077 3.5959229 1103.4542
+176594.063157012 3.5959623 1103.3752
+176595.0631571163 3.5960016 1103.2765
+176596.0631572206 3.5959623 1103.3949
+176597.0631573249 3.596041 1103.3357
+176598.0631574292 3.5960803 1103.3752
+176599.0631575335 3.5960803 1103.316
+176600.0631576378 3.5961196 1103.2963
+176601.0631577421 3.5960803 1103.4147
+176602.0631578465 3.5960803 1103.3555
+176603.0631579508 3.596041 1103.3555
+176604.0631580551 3.5962379 1103.4147
+176605.0631581594 3.5961196 1103.4147
+176606.0631582637 3.5961592 1103.2963
+176607.063158368 3.5961592 1103.3949
+176608.0631584723 3.5961592 1103.2963
+176609.0631585766 3.5962379 1103.3752
+176610.0631586809 3.5961986 1103.3555
+176611.0631587852 3.5962772 1103.5134
+176612.0631588895 3.5961986 1103.4542
+176613.0631589938 3.5962772 1103.316
+176614.0631590982 3.5962379 1103.4344
+176615.0631592025 3.5963559 1103.3752
+176616.0631593068 3.5963166 1103.3752
+176617.0631594111 3.5963166 1103.3357
+176618.0631595154 3.5963953 1103.2963
+176619.0631596197 3.5963166 1103.3949
+176620.063159724 3.5964346 1103.3949
+176621.0631598283 3.5964346 1103.3949
+176622.0631599326 3.5964742 1103.3752
+176623.0631600369 3.5963953 1103.4542
+176624.0631601412 3.5964346 1103.2765
+176625.0631602455 3.5964346 1103.3555
+176626.0631603498 3.5964346 1103.474
+176627.0631604542 3.5965135 1103.3752
+176628.0631605585 3.5964346 1103.316
+176629.0631606628 3.5965135 1103.3949
+176630.0631607671 3.5964742 1103.3752
+176631.0631608714 3.5965135 1103.3555
+176632.0631609757 3.5966315 1103.3555
+176633.06316108 3.5965922 1103.3357
+176634.0631611843 3.5965528 1103.316
+176635.0631612886 3.5965528 1103.3949
+176636.0631613929 3.5965528 1103.3752
+176637.0631614972 3.5965922 1103.3752
+176638.0631616015 3.5966709 1103.2765
+176639.0631617059 3.5965135 1103.316
+176640.0631618102 3.5966315 1103.3752
+176641.0631619145 3.5965922 1103.3357
+176642.0631620188 3.5967102 1103.3949
+176643.0631621231 3.5966709 1103.4344
+176644.0631622274 3.5967102 1103.3949
+176645.0631623317 3.5966315 1103.3555
+176646.063162436 3.5968285 1103.3357
+176647.0631625403 3.5966709 1103.3949
+176648.0631626446 3.5967102 1103.316
+176649.0631627489 3.5969071 1103.3752
+176650.0631628532 3.5968678 1103.316
+176651.0631629576 3.5967891 1103.3357
+176652.0631630619 3.5968285 1103.3949
+176653.0631631662 3.5968285 1103.2172
+176654.0631632705 3.5968285 1103.2963
+176655.0631633748 3.5967891 1103.3357
+176656.0631634791 3.5967891 1103.3357
+176657.0631635834 3.5969071 1103.3949
+176658.0631636877 3.5969071 1103.3357
+176659.063163792 3.5969465 1103.4147
+176660.0631638963 3.5969071 1103.3949
+176661.0631640006 3.5970252 1103.316
+176662.0631641049 3.5971041 1103.4344
+176663.0631642092 3.5969465 1103.316
+176664.0631643136 3.5969465 1103.2963
+176665.0631644179 3.5969858 1103.3949
+176666.0631645222 3.5969858 1103.3752
+176667.0631646265 3.5970252 1103.3555
+176668.0631647308 3.5971041 1103.4344
+176669.0631648351 3.5970252 1103.3555
+176670.0631649394 3.5970645 1103.4344
+176671.0631650437 3.5971041 1103.316
+176672.063165148 3.5971828 1103.3357
+176673.0631652523 3.5971434 1103.3949
+176674.0631653566 3.5971434 1103.3357
+176675.0631654609 3.5971828 1103.3752
+176676.0631655653 3.5971434 1103.4147
+176677.0631656696 3.5972221 1103.3752
+176678.0631657739 3.5972221 1103.2963
+176679.0631658782 3.5972614 1103.3357
+176680.0631659825 3.5973008 1103.4147
+176681.0631660868 3.5973008 1103.3752
+176682.0631661911 3.5973008 1103.3949
+176683.0631662954 3.5973401 1103.3555
+176684.0631663997 3.5973008 1103.2765
+176685.063166504 3.5972221 1103.316
+176686.0631666083 3.597419 1103.3949
+176687.0631667126 3.5974584 1103.3752
+176688.063166817 3.5972614 1103.2567
+176689.0631669213 3.5973401 1103.4542
+176690.0631670256 3.5973794 1103.316
+176691.0631671299 3.5974584 1103.2963
+176692.0631672342 3.5973794 1103.3752
+176693.0631673385 3.5973794 1103.3555
+176694.0631674428 3.597419 1103.4147
+176695.0631675471 3.5974584 1103.3357
+176696.0631676514 3.5974584 1103.4344
+176697.0631677557 3.5974584 1103.3752
+176698.06316786 3.5974977 1103.3357
+176699.0631679643 3.5974584 1103.3949
+176700.0631680686 3.5976157 1103.3752
+176701.063168173 3.5974977 1103.2963
+176702.0631682773 3.5974977 1103.4147
+176703.0631683816 3.597537 1103.3752
+176704.0631684859 3.5975764 1103.3357
+176705.0631685902 3.5975764 1103.4344
+176706.0631686945 3.5976551 1103.4147
+176707.0631687988 3.5975764 1103.3752
+176708.0631689031 3.5975764 1103.2963
+176709.0631690074 3.5974977 1103.4344
+176710.0631691117 3.5976157 1103.3752
+176711.063169216 3.5976157 1103.316
+176712.0631693203 3.5976946 1103.316
+176713.0631694247 3.597734 1103.2963
+176714.063169529 3.5976946 1103.3752
+176715.0631696333 3.5976946 1103.3949
+176716.0631697376 3.597734 1103.3752
+176717.0631698419 3.5976946 1103.3949
+176718.0631699462 3.5978127 1103.316
+176719.0631700505 3.5977733 1103.3357
+176720.0631701548 3.5976946 1103.2765
+176721.0631702591 3.5977733 1103.3752
+176722.0631703634 3.597734 1103.3357
+176723.0631704677 3.5978127 1103.3752
+176724.063170572 3.597734 1103.3555
+176725.0631706764 3.5978127 1103.4542
+176726.0631707807 3.5978127 1103.316
+176727.063170885 3.597852 1103.3949
+176728.0631709893 3.597852 1103.3555
+176729.0631710936 3.5978913 1103.3752
+176730.0631711979 3.5978913 1103.3752
+176731.0631713022 3.59797 1103.3357
+176732.0631714065 3.5978913 1103.3555
+176733.0631715108 3.59797 1103.4147
+176734.0631716151 3.59797 1103.2567
+176735.0631717194 3.597852 1103.316
+176736.0631718237 3.59797 1103.3357
+176737.0631719281 3.59797 1103.316
+176738.0631720324 3.59797 1103.3949
+176739.0631721367 3.5980883 1103.2765
+176740.063172241 3.5980489 1103.3752
+176741.0631723453 3.5979307 1103.3357
+176742.0631724496 3.5980883 1103.3949
+176743.0631725539 3.5980883 1103.3949
+176744.0631726582 3.5980489 1103.3949
+176745.0631727625 3.5980489 1103.316
+176746.0631728668 3.5981276 1103.3555
+176747.0631729711 3.5981276 1103.4147
+176748.0631730754 3.5981669 1103.4147
+176749.0631731797 3.5981276 1103.3752
+176750.0631732841 3.5980883 1103.4344
+176751.0631733884 3.5981669 1103.3949
+176752.0631734927 3.5981669 1103.3555
+176753.063173597 3.5981669 1103.3555
+176754.0631737013 3.5981669 1103.3357
+176755.0631738056 3.598285 1103.3357
+176756.0631739099 3.598285 1103.2963
+176757.0631740142 3.5980883 1103.3357
+176758.0631741185 3.5982456 1103.3752
+176759.0631742228 3.5982456 1103.2765
+176760.0631743271 3.5983245 1103.3555
+176761.0631744314 3.598285 1103.3949
+176762.0631745358 3.5983639 1103.316
+176763.0631746401 3.5982456 1103.3357
+176764.0631747444 3.5983639 1103.3555
+176765.0631748487 3.5983245 1103.3357
+176766.063174953 3.598285 1103.3555
+176767.0631750573 3.5984426 1103.2963
+176768.0631751616 3.5985212 1103.316
+176769.0631752659 3.5984819 1103.3555
+176770.0631753702 3.5984426 1103.3357
+176771.0631754745 3.5984426 1103.2963
+176772.0631755788 3.5984819 1103.2963
+176773.0631756831 3.5985212 1103.2963
+176774.0631757875 3.5985999 1103.3357
+176775.0631758918 3.5985999 1103.4147
+176776.0631759961 3.5984819 1103.3555
+176777.0631761004 3.5984819 1103.3357
+176778.0631762047 3.5985999 1103.316
+176779.063176309 3.5985999 1103.3555
+176780.0631764133 3.5986395 1103.3555
+176781.0631765176 3.5986788 1103.3949
+176782.0631766219 3.5986788 1103.3357
+176783.0631767262 3.5987575 1103.2963
+176784.0631768305 3.5985606 1103.4542
+176785.0631769348 3.5986788 1103.3752
+176786.0631770391 3.5986788 1103.3752
+176787.0631771435 3.5987182 1103.316
+176788.0631772478 3.5986788 1103.3357
+176789.0631773521 3.5985999 1103.3752
+176790.0631774564 3.5987575 1103.316
+176791.0631775607 3.5987575 1103.3752
+176792.063177665 3.5985999 1103.3752
+176793.0631777693 3.5987182 1103.2963
+176794.0631778736 3.5987575 1103.3949
+176795.0631779779 3.5987968 1103.3555
+176796.0631780822 3.5987575 1103.3555
+176797.0631781865 3.5987182 1103.4147
+176798.0631782908 3.5989149 1103.3752
+176799.0631783952 3.5989149 1103.3357
+176800.0631784995 3.5987968 1103.3555
+176801.0631786038 3.5988755 1103.316
+176802.0631787081 3.5988755 1103.3752
+176803.0631788124 3.5988755 1103.3555
+176804.0631789167 3.5989149 1103.2567
+176805.063179021 3.5988362 1103.474
+176806.0631791253 3.5989544 1103.3949
+176807.0631792296 3.5989544 1103.2765
+176808.0631793339 3.5989544 1103.4147
+176809.0631794382 3.5989544 1103.3555
+176810.0631795425 3.5989938 1103.3949
+176811.0631796469 3.5989938 1103.4344
+176812.0631797512 3.5989149 1103.4147
+176813.0631798555 3.5989938 1103.3555
+176814.0631799598 3.5990725 1103.3555
+176815.0631800641 3.5990725 1103.4542
+176816.0631801684 3.5989938 1103.4147
+176817.0631802727 3.5990331 1103.3949
+176818.063180377 3.5991118 1103.3555
+176819.0631804813 3.5991118 1103.3752
+176820.0631805856 3.5989938 1103.3357
+176821.0631806899 3.5990725 1103.4147
+176822.0631807942 3.5991118 1103.3555
+176823.0631808985 3.5992298 1103.4344
+176824.0631810029 3.5991905 1103.4344
+176825.0631811072 3.5991118 1103.3949
+176826.0631812115 3.5992694 1103.3555
+176827.0631813158 3.5990725 1103.3949
+176828.0631814201 3.5992694 1103.2963
+176829.0631815244 3.5992298 1103.3357
+176830.0631816287 3.5992694 1103.4147
+176831.063181733 3.5992694 1103.3949
+176832.0631818373 3.5992694 1103.3555
+176833.0631819416 3.5992694 1103.4147
+176834.0631820459 3.5992694 1103.3752
+176835.0631821502 3.5993481 1103.3949
+176836.0631822546 3.5993087 1103.4147
+176837.0631823589 3.5993481 1103.3357
+176838.0631824632 3.5993087 1103.3752
+176839.0631825675 3.5993481 1103.3357
+176840.0631826718 3.5993874 1103.3555
+176841.0631827761 3.5994267 1103.316
+176842.0631828804 3.5993874 1103.3357
+176843.0631829847 3.5994661 1103.2963
+176844.063183089 3.5994661 1103.3949
+176845.0631831933 3.5995054 1103.3555
+176846.0631832976 3.599545 1103.316
+176847.0631834019 3.5995054 1103.3357
+176848.0631835063 3.5994267 1103.3357
+176849.0631836106 3.5994661 1103.316
+176850.0631837149 3.599545 1103.3555
+176851.0631838192 3.599545 1103.4147
+176852.0631839235 3.5996237 1103.4344
+176853.0631840278 3.5995843 1103.3357
+176854.0631841321 3.5995843 1103.3949
+176855.0631842364 3.5996237 1103.3949
+176856.0631843407 3.5995843 1103.4147
+176857.063184445 3.599545 1103.316
+176858.0631845493 3.5995843 1103.316
+176859.0631846536 3.5997024 1103.2765
+176860.063184758 3.5997417 1103.3752
+176861.0631848623 3.599663 1103.4938
+176862.0631849666 3.5997024 1103.2765
+176863.0631850709 3.5997024 1103.3555
+176864.0631851752 3.599781 1103.4344
+176865.0631852795 3.5997417 1103.2963
+176866.0631853838 3.5997024 1103.3949
+176867.0631854881 3.5998204 1103.3555
+176868.0631855924 3.5998204 1103.3357
+176869.0631856967 3.5997417 1103.316
+176870.063185801 3.5997024 1103.3357
+176871.0631859053 3.5998204 1103.3555
+176872.0631860096 3.59986 1103.3752
+176873.063186114 3.599781 1103.2963
+176874.0631862183 3.599781 1103.3357
+176875.0631863226 3.59986 1103.3752
+176876.0631864269 3.59986 1103.4147
+176877.0631865312 3.599978 1103.4542
+176878.0631866355 3.59986 1103.3752
+176879.0631867398 3.5998204 1103.3555
+176880.0631868441 3.5998993 1103.3555
+176881.0631869484 3.6000173 1103.3555
+176882.0631870527 3.6000566 1103.3949
+176883.063187157 3.599978 1103.3357
+176884.0631872613 3.6000566 1103.316
+176885.0631873657 3.600096 1103.4147
+176886.06318747 3.600096 1103.3555
+176887.0631875743 3.6000173 1103.316
+176888.0631876786 3.6000566 1103.316
+176889.0631877829 3.6000566 1103.3949
+176890.0631878872 3.6000173 1103.3949
+176891.0631879915 3.6001749 1103.3752
+176892.0631880958 3.6000566 1103.4344
+176893.0631882001 3.6001353 1103.3357
+176894.0631883044 3.600096 1103.3752
+176895.0631884087 3.600096 1103.4147
+176896.063188513 3.6002142 1103.4344
+176897.0631886174 3.6001353 1103.3555
+176898.0631887217 3.6001353 1103.3357
+176899.063188826 3.6002142 1103.316
+176900.0631889303 3.6001353 1103.2765
+176901.0631890346 3.6002536 1103.2567
+176902.0631891389 3.6002142 1103.3752
+176903.0631892432 3.6002142 1103.316
+176904.0631893475 3.6002536 1103.3555
+176905.0631894518 3.6003716 1103.3555
+176906.0631895561 3.6001749 1103.3555
+176907.0631896604 3.6004109 1103.3555
+176908.0631897647 3.6003323 1103.3752
+176909.063189869 3.6002929 1103.2765
+176910.0631899734 3.6003716 1103.3357
+176911.0631900777 3.6004109 1103.3752
+176912.063190182 3.6003716 1103.3752
+176913.0631902863 3.6003716 1103.2765
+176914.0631903906 3.6004109 1103.316
+176915.0631904949 3.6004109 1103.4147
+176916.0631905992 3.6004503 1103.3949
+176917.0631907035 3.6004109 1103.4344
+176918.0631908078 3.6004899 1103.3555
+176919.0631909121 3.6005292 1103.4147
+176920.0631910164 3.6005292 1103.3752
+176921.0631911207 3.6005685 1103.3357
+176922.0631912251 3.6004503 1103.3555
+176923.0631913294 3.6004899 1103.3555
+176924.0631914337 3.6004503 1103.2963
+176925.063191538 3.6004503 1103.4344
+176926.0631916423 3.6006472 1103.4344
+176927.0631917466 3.6004899 1103.4344
+176928.0631918509 3.6005292 1103.3752
+176929.0631919552 3.6006079 1103.3357
+176930.0631920595 3.6006079 1103.316
+176931.0631921638 3.6005685 1103.4542
+176932.0631922681 3.6005292 1103.3752
+176933.0631923724 3.6006866 1103.474
+176934.0631924768 3.6006866 1103.3949
+176935.0631925811 3.6006472 1103.3949
+176936.0631926854 3.6007652 1103.3949
+176937.0631927897 3.6006472 1103.3357
+176938.063192894 3.6006866 1103.4147
+176939.0631929983 3.6008441 1103.4542
+176940.0631931026 3.6008441 1103.3949
+176941.0631932069 3.6007652 1103.3949
+176942.0631933112 3.6007652 1103.3949
+176943.0631934155 3.6008441 1103.4344
+176944.0631935198 3.6007652 1103.316
+176945.0631936241 3.6008048 1103.2963
+176946.0631937284 3.6008048 1103.3752
+176947.0631938328 3.6007652 1103.3949
+176948.0631939371 3.6008441 1103.3752
+176949.0631940414 3.6008441 1103.3752
+176950.0631941457 3.6007652 1103.3555
+176951.06319425 3.6007652 1103.4344
+176952.0631943543 3.6008835 1103.3555
+176953.0631944586 3.6009622 1103.4147
+176954.0631945629 3.6008835 1103.3555
+176955.0631946672 3.6008835 1103.3357
+176956.0631947715 3.6010408 1103.3949
+176957.0631948758 3.6009622 1103.4147
+176958.0631949801 3.6009228 1103.3949
+176959.0631950845 3.6009622 1103.3949
+176960.0631951888 3.6009622 1103.2963
+176961.0631952931 3.6009228 1103.3949
+176962.0631953974 3.6009228 1103.3357
+176963.0631955017 3.6011591 1103.3949
+176964.063195606 3.6010802 1103.316
+176965.0631957103 3.6009622 1103.3555
+176966.0631958146 3.6010408 1103.4147
+176967.0631959189 3.6010408 1103.3555
+176968.0631960232 3.6010408 1103.3949
+176969.0631961275 3.6010015 1103.316
+176970.0631962318 3.6011591 1103.3357
+176971.0631963362 3.6011984 1103.2963
+176972.0631964405 3.6011198 1103.316
+176973.0631965448 3.6011591 1103.3949
+176974.0631966491 3.6011198 1103.3949
+176975.0631967534 3.6011591 1103.4147
+176976.0631968577 3.6011984 1103.3752
+176977.063196962 3.6011198 1103.3357
+176978.0631970663 3.6011591 1103.3752
+176979.0631971706 3.6010802 1103.3752
+176980.0631972749 3.6011984 1103.3949
+176981.0631973792 3.6012771 1103.316
+176982.0631974835 3.6012771 1103.474
+176983.0631975879 3.6012771 1103.3555
+176984.0631976922 3.6012771 1103.2765
+176985.0631977965 3.6013165 1103.3949
+176986.0631979008 3.6013165 1103.3949
+176987.0631980051 3.6013558 1103.3949
+176988.0631981094 3.6013954 1103.3752
+176989.0631982137 3.6014347 1103.3357
+176990.063198318 3.6013954 1103.3357
+176991.0631984223 3.6013558 1103.4147
+176992.0631985266 3.6013558 1103.316
+176993.0631986309 3.6014347 1103.4147
+176994.0631987352 3.6013954 1103.4147
+176995.0631988395 3.601474 1103.3949
+176996.0631989439 3.6013954 1103.3949
+176997.0631990482 3.601474 1103.4147
+176998.0631991525 3.6015527 1103.3752
+176999.0631992568 3.6015134 1103.316
+177000.0631993611 3.6014347 1103.316
+177001.0631994654 3.6014347 1103.4344
+177002.0631995697 3.6014347 1103.3357
+177003.063199674 3.6015134 1103.3752
+177004.0631997783 3.6015527 1103.3555
+177005.0631998826 3.6015921 1103.4542
+177006.0631999869 3.6015921 1103.3752
+177007.0632000912 3.6015921 1103.316
+177008.0632001956 3.6015921 1103.4344
+177009.0632002999 3.6016707 1103.3357
+177010.0632004042 3.6016707 1103.3357
+177011.0632005085 3.6015921 1103.3357
+177012.0632006128 3.6017497 1103.2963
+177013.0632007171 3.6016707 1103.3555
+177014.0632008214 3.6017103 1103.3752
+177015.0632009257 3.6017497 1103.3949
+177016.06320103 3.601789 1103.4147
+177017.0632011343 3.6016707 1103.2567
+177018.0632012386 3.6017103 1103.3357
+177019.0632013429 3.601907 1103.3357
+177020.0632014473 3.6018677 1103.4344
+177021.0632015516 3.6017497 1103.4938
+177022.0632016559 3.6017103 1103.3555
+177023.0632017602 3.6018283 1103.316
+177024.0632018645 3.6018283 1103.3752
+177025.0632019688 3.6018677 1103.2765
+177026.0632020731 3.601789 1103.2765
+177027.0632021774 3.6018283 1103.3357
+177028.0632022817 3.6018283 1103.3555
+177029.063202386 3.6018677 1103.316
+177030.0632024903 3.6018677 1103.4344
+177031.0632025946 3.6019857 1103.3949
+177032.0632026989 3.601907 1103.3949
+177033.0632028033 3.6020646 1103.3949
+177034.0632029076 3.6018283 1103.3555
+177035.0632030119 3.6019464 1103.4147
+177036.0632031162 3.6020646 1103.3752
+177037.0632032205 3.6020253 1103.2963
+177038.0632033248 3.6019857 1103.2765
+177039.0632034291 3.6020253 1103.3752
+177040.0632035334 3.6020646 1103.3752
+177041.0632036377 3.6020253 1103.3949
+177042.063203742 3.6021039 1103.3752
+177043.0632038463 3.6020253 1103.3752
+177044.0632039506 3.6021826 1103.474
+177045.063204055 3.6021039 1103.3555
+177046.0632041593 3.6021039 1103.3555
+177047.0632042636 3.602222 1103.3949
+177048.0632043679 3.602222 1103.2765
+177049.0632044722 3.6021433 1103.3357
+177050.0632045765 3.6021826 1103.3949
+177051.0632046808 3.6021433 1103.3752
+177052.0632047851 3.6021826 1103.3357
+177053.0632048894 3.6022613 1103.316
+177054.0632049937 3.6022613 1103.2765
+177055.063205098 3.6023402 1103.4344
+177056.0632052023 3.6023402 1103.3752
+177057.0632053067 3.6023006 1103.3555
+177058.063205411 3.6022613 1103.3752
+177059.0632055153 3.6022613 1103.3357
+177060.0632056196 3.6023402 1103.3752
+177061.0632057239 3.6023402 1103.2963
+177062.0632058282 3.602222 1103.474
+177063.0632059325 3.6023006 1103.3752
+177064.0632060368 3.6023796 1103.4344
+177065.0632061411 3.6024582 1103.3555
+177066.0632062454 3.6024189 1103.4542
+177067.0632063497 3.6023796 1103.4344
+177068.063206454 3.6024976 1103.4147
+177069.0632065583 3.6024976 1103.3949
+177070.0632066627 3.6024189 1103.3357
+177071.063206767 3.6025369 1103.474
+177072.0632068713 3.6024976 1103.3357
+177073.0632069756 3.6025763 1103.3949
+177074.0632070799 3.6024976 1103.316
+177075.0632071842 3.6024976 1103.3949
+177076.0632072885 3.6024976 1103.3949
+177077.0632073928 3.6026156 1103.3555
+177078.0632074971 3.6025369 1103.3357
+177079.0632076014 3.6026156 1103.3555
+177080.0632077057 3.6026156 1103.316
+177081.06320781 3.6026552 1103.3949
+177082.0632079144 3.6026552 1103.316
+177083.0632080187 3.6027339 1103.2567
+177084.063208123 3.6025763 1103.2963
+177085.0632082273 3.6024189 1103.4147
+177086.0632083316 3.6026945 1103.3949
+177087.0632084359 3.6026156 1103.3752
+177088.0632085402 3.6026552 1103.3555
+177089.0632086445 3.6027339 1103.4147
+177090.0632087488 3.6026552 1103.3555
+177091.0632088531 3.6026945 1103.3752
+177092.0632089574 3.6027732 1103.4147
+177093.0632090617 3.6026552 1103.3949
+177094.0632091661 3.6027732 1103.2963
+177095.0632092704 3.6028519 1103.3752
+177096.0632093747 3.6027732 1103.2567
+177097.063209479 3.6028519 1103.316
+177098.0632095833 3.6028519 1103.3949
+177099.0632096876 3.6028125 1103.3555
+177100.0632097919 3.6027339 1103.3555
+177101.0632098962 3.6029305 1103.316
+177102.0632100005 3.6028519 1103.3357
+177103.0632101048 3.6028519 1103.4938
+177104.0632102091 3.6028519 1103.316
+177105.0632103134 3.6029701 1103.5134
+177106.0632104177 3.6028912 1103.4147
+177107.0632105221 3.6028125 1103.2963
+177108.0632106264 3.6030095 1103.3555
+177109.0632107307 3.6030095 1103.3949
+177110.063210835 3.6029701 1103.3555
+177111.0632109393 3.6029701 1103.4542
+177112.0632110436 3.6030095 1103.4344
+177113.0632111479 3.6030488 1103.3555
+177114.0632112522 3.6030881 1103.2963
+177115.0632113565 3.6030881 1103.4147
+177116.0632114608 3.6030095 1103.3752
+177117.0632115651 3.6029701 1103.2765
+177118.0632116694 3.6030881 1103.316
+177119.0632117738 3.6031275 1103.4147
+177120.0632118781 3.6030488 1103.4344
+177121.0632119824 3.6030881 1103.2963
+177122.0632120867 3.6030488 1103.3752
+177123.063212191 3.6030488 1103.4147
+177124.0632122953 3.6031668 1103.2963
+177125.0632123996 3.6031668 1103.3752
+177126.0632125039 3.6031668 1103.3752
+177127.0632126082 3.6032851 1103.3752
+177128.0632127125 3.6031668 1103.3555
+177129.0632128168 3.6032851 1103.2765
+177130.0632129211 3.6033244 1103.3555
+177131.0632130255 3.6032457 1103.3555
+177132.0632131298 3.6032851 1103.3752
+177133.0632132341 3.6031668 1103.3357
+177134.0632133384 3.6033244 1103.3555
+177135.0632134427 3.6033638 1103.4542
+177136.063213547 3.6032851 1103.2963
+177137.0632136513 3.6032851 1103.4147
+177138.0632137556 3.6033638 1103.316
+177139.0632138599 3.6033244 1103.4147
+177140.0632139642 3.6033638 1103.316
+177141.0632140685 3.6034818 1103.316
+177142.0632141728 3.6034818 1103.316
+177143.0632142772 3.6034818 1103.3752
+177144.0632143815 3.6035211 1103.3357
+177145.0632144858 3.6034424 1103.3752
+177146.0632145901 3.6034818 1103.3357
+177147.0632146944 3.6034424 1103.3357
+177148.0632147987 3.6034818 1103.3752
+177149.063214903 3.6035607 1103.3555
+177150.0632150073 3.6035607 1103.4938
+177151.0632151116 3.6035607 1103.4147
+177152.0632152159 3.6036 1103.3555
+177153.0632153202 3.6035607 1103.2765
+177154.0632154245 3.6035607 1103.3949
+177155.0632155288 3.6035211 1103.3555
+177156.0632156332 3.603718 1103.4147
+177157.0632157375 3.603718 1103.3949
+177158.0632158418 3.6036394 1103.3357
+177159.0632159461 3.6036 1103.3357
+177160.0632160504 3.603718 1103.3949
+177161.0632161547 3.6036787 1103.474
+177162.063216259 3.6037967 1103.3555
+177163.0632163633 3.6037574 1103.316
+177164.0632164676 3.6037574 1103.3357
+177165.0632165719 3.6036394 1103.3752
+177166.0632166762 3.6037574 1103.3752
+177167.0632167805 3.6037967 1103.316
+177168.0632168849 3.6037967 1103.3357
+177169.0632169892 3.6037967 1103.3949
+177170.0632170935 3.6038756 1103.3949
+177171.0632171978 3.6038756 1103.3357
+177172.0632173021 3.6039937 1103.3949
+177173.0632174064 3.603915 1103.4542
+177174.0632175107 3.6038361 1103.3949
+177175.063217615 3.6039543 1103.3752
+177176.0632177193 3.6038756 1103.4542
+177177.0632178236 3.6039543 1103.3752
+177178.0632179279 3.604033 1103.4147
+177179.0632180322 3.6039543 1103.2765
+177180.0632181366 3.6039543 1103.3555
+177181.0632182409 3.6039937 1103.3752
+177182.0632183452 3.6039543 1103.316
+177183.0632184495 3.6039543 1103.4542
+177184.0632185538 3.6039937 1103.3555
+177185.0632186581 3.6039937 1103.4147
+177186.0632187624 3.604033 1103.316
+177187.0632188667 3.6041117 1103.3949
+177188.063218971 3.604033 1103.3357
+177189.0632190753 3.604033 1103.3555
+177190.0632191796 3.603915 1103.3357
+177191.0632192839 3.6041117 1103.474
+177192.0632193882 3.6041117 1103.3357
+177193.0632194926 3.6041117 1103.2963
+177194.0632195969 3.6041906 1103.3752
+177195.0632197012 3.6040723 1103.474
+177196.0632198055 3.6041117 1103.3357
+177197.0632199098 3.604151 1103.4542
+177198.0632200141 3.604151 1103.3357
+177199.0632201184 3.6041906 1103.2963
+177200.0632202227 3.6043479 1103.3752
+177201.063220327 3.6042299 1103.3949
+177202.0632204313 3.6042693 1103.3949
+177203.0632205356 3.6041906 1103.3949
+177204.0632206399 3.604151 1103.3555
+177205.0632207443 3.6042693 1103.474
+177206.0632208486 3.6042693 1103.3752
+177207.0632209529 3.6043479 1103.3555
+177208.0632210572 3.6042693 1103.4542
+177209.0632211615 3.6043873 1103.3357
+177210.0632212658 3.6043086 1103.316
+177211.0632213701 3.6042299 1103.3555
+177212.0632214744 3.6043873 1103.2765
+177213.0632215787 3.6044266 1103.3555
+177214.063221683 3.6044266 1103.4147
+177215.0632217873 3.6042693 1103.3555
+177216.0632218916 3.6045055 1103.3949
+177217.063221996 3.6043873 1103.3752
+177218.0632221003 3.604466 1103.2765
+177219.0632222046 3.6045055 1103.4147
+177220.0632223089 3.6044266 1103.3357
+177221.0632224132 3.6044266 1103.3555
+177222.0632225175 3.6045055 1103.2963
+177223.0632226218 3.6043873 1103.3949
+177224.0632227261 3.6045449 1103.3555
+177225.0632228304 3.6043873 1103.3752
+177226.0632229347 3.6044266 1103.316
+177227.063223039 3.6045842 1103.2963
+177228.0632231433 3.6045449 1103.3752
+177229.0632232476 3.6045842 1103.3357
+177230.063223352 3.6045449 1103.3752
+177231.0632234563 3.6045842 1103.316
+177232.0632235606 3.6046629 1103.3555
+177233.0632236649 3.6046236 1103.3949
+177234.0632237692 3.6046629 1103.316
+177235.0632238735 3.6046236 1103.2765
+177236.0632239778 3.6047416 1103.316
+177237.0632240821 3.6047809 1103.316
+177238.0632241864 3.6046629 1103.316
+177239.0632242907 3.6045842 1103.316
+177240.063224395 3.6046629 1103.2765
+177241.0632244993 3.6047022 1103.3555
+177242.0632246037 3.6047022 1103.316
+177243.063224708 3.6047809 1103.4542
+177244.0632248123 3.6047416 1103.3752
+177245.0632249166 3.6047022 1103.3357
+177246.0632250209 3.6047416 1103.3555
+177247.0632251252 3.6047809 1103.3752
+177248.0632252295 3.6048205 1103.3555
+177249.0632253338 3.6047809 1103.3555
+177250.0632254381 3.6048205 1103.316
+177251.0632255424 3.6048205 1103.4344
+177252.0632256467 3.6048598 1103.3555
+177253.063225751 3.6049778 1103.3357
+177254.0632258554 3.6048205 1103.3752
+177255.0632259597 3.6049385 1103.4147
+177256.063226064 3.6049385 1103.2765
+177257.0632261683 3.6049385 1103.3555
+177258.0632262726 3.6049385 1103.3752
+177259.0632263769 3.6048598 1103.2567
+177260.0632264812 3.6050172 1103.3752
+177261.0632265855 3.6049385 1103.3357
+177262.0632266898 3.6050172 1103.3555
+177263.0632267941 3.6050172 1103.3357
+177264.0632268984 3.6049778 1103.3949
+177265.0632270027 3.6050172 1103.316
+177266.0632271071 3.6050172 1103.3357
+177267.0632272114 3.6050961 1103.4542
+177268.0632273157 3.6049778 1103.3357
+177269.06322742 3.6050172 1103.2765
+177270.0632275243 3.6050961 1103.3752
+177271.0632276286 3.6051354 1103.3357
+177272.0632277329 3.6052141 1103.2963
+177273.0632278372 3.6051748 1103.2963
+177274.0632279415 3.6051354 1103.3555
+177275.0632280458 3.6050961 1103.3949
+177276.0632281501 3.6051354 1103.3949
+177277.0632282544 3.6052535 1103.3949
+177278.0632283587 3.6052535 1103.3752
+177279.0632284631 3.6052928 1103.3752
+177280.0632285674 3.6052141 1103.3949
+177281.0632286717 3.6052535 1103.3949
+177282.063228776 3.6053715 1103.316
+177283.0632288803 3.6052928 1103.4147
+177284.0632289846 3.6052535 1103.4542
+177285.0632290889 3.6052141 1103.2963
+177286.0632291932 3.6052535 1103.3752
+177287.0632292975 3.6052928 1103.3752
+177288.0632294018 3.6053715 1103.316
+177289.0632295061 3.6052928 1103.4147
+177290.0632296104 3.6053321 1103.3357
+177291.0632297148 3.6053321 1103.4344
+177292.0632298191 3.6053715 1103.3949
+177293.0632299234 3.6053715 1103.3752
+177294.0632300277 3.6054111 1103.3752
+177295.063230132 3.6054111 1103.4147
+177296.0632302363 3.6054504 1103.3752
+177297.0632303406 3.6054897 1103.316
+177298.0632304449 3.6055291 1103.3357
+177299.0632305492 3.6054897 1103.3357
+177300.0632306535 3.6054897 1103.3949
+177301.0632307578 3.6054504 1103.3357
+177302.0632308621 3.6054504 1103.3949
+177303.0632309665 3.6054897 1103.3555
+177304.0632310708 3.6055291 1103.3357
+177305.0632311751 3.6055291 1103.3555
+177306.0632312794 3.6055684 1103.3357
+177307.0632313837 3.6055291 1103.3949
+177308.063231488 3.6055291 1103.3752
+177309.0632315923 3.6056077 1103.3555
+177310.0632316966 3.6056471 1103.3752
+177311.0632318009 3.6056077 1103.3555
+177312.0632319052 3.6056077 1103.3752
+177313.0632320095 3.6056471 1103.3555
+177314.0632321138 3.6056864 1103.316
+177315.0632322181 3.6056864 1103.4344
+177316.0632323225 3.605726 1103.3752
+177317.0632324268 3.6056864 1103.316
+177318.0632325311 3.6056864 1103.3555
+177319.0632326354 3.6058047 1103.3357
+177320.0632327397 3.6057653 1103.3752
+177321.063232844 3.6057653 1103.3357
+177322.0632329483 3.605726 1103.3357
+177323.0632330526 3.6057653 1103.316
+177324.0632331569 3.6057653 1103.2963
+177325.0632332612 3.6058047 1103.3555
+177326.0632333655 3.605726 1103.316
+177327.0632334698 3.6058047 1103.474
+177328.0632335742 3.6058047 1103.474
+177329.0632336785 3.6057653 1103.3357
+177330.0632337828 3.6058834 1103.4344
+177331.0632338871 3.6058834 1103.3357
+177332.0632339914 3.6059227 1103.4147
+177333.0632340957 3.6059227 1103.3357
+177334.0632342 3.605962 1103.3752
+177335.0632343043 3.6059227 1103.4147
+177336.0632344086 3.606041 1103.4344
+177337.0632345129 3.605962 1103.3555
+177338.0632346172 3.6059227 1103.3752
+177339.0632347215 3.6060803 1103.3752
+177340.0632348259 3.606041 1103.474
+177341.0632349302 3.6060014 1103.3752
+177342.0632350345 3.6060803 1103.3949
+177343.0632351388 3.6060014 1103.3949
+177344.0632352431 3.6060803 1103.4542
+177345.0632353474 3.6060803 1103.3555
+177346.0632354517 3.6060803 1103.316
+177347.063235556 3.6061196 1103.3555
+177348.0632356603 3.6060803 1103.3752
+177349.0632357646 3.6060803 1103.3357
+177350.0632358689 3.6060803 1103.3752
+177351.0632359732 3.6060803 1103.3752
+177352.0632360775 3.6061196 1103.3752
+177353.0632361819 3.6061983 1103.3357
+177354.0632362862 3.6061196 1103.3752
+177355.0632363905 3.606159 1103.3357
+177356.0632364948 3.6062376 1103.3752
+177357.0632365991 3.6061983 1103.4147
+177358.0632367034 3.606159 1103.3752
+177359.0632368077 3.6061983 1103.4344
+177360.063236912 3.6061983 1103.3357
+177361.0632370163 3.6061983 1103.5134
+177362.0632371206 3.6062376 1103.2963
+177363.0632372249 3.606277 1103.3949
+177364.0632373292 3.606277 1103.3555
+177365.0632374336 3.6063163 1103.316
+177366.0632375379 3.6063952 1103.2963
+177367.0632376422 3.606277 1103.3357
+177368.0632377465 3.6063952 1103.2963
+177369.0632378508 3.6064346 1103.3357
+177370.0632379551 3.6063163 1103.4147
+177371.0632380594 3.6063559 1103.3949
+177372.0632381637 3.6063559 1103.3752
+177373.063238268 3.6063559 1103.3555
+177374.0632383723 3.6064346 1103.3555
+177375.0632384766 3.6064346 1103.2963
+177376.0632385809 3.6063952 1103.3949
+177377.0632386853 3.6063559 1103.2963
+177378.0632387896 3.6064346 1103.474
+177379.0632388939 3.6064346 1103.3949
+177380.0632389982 3.6065133 1103.2765
+177381.0632391025 3.6065133 1103.3555
+177382.0632392068 3.6065919 1103.3949
+177383.0632393111 3.6064739 1103.3752
+177384.0632394154 3.6065133 1103.3752
+177385.0632395197 3.6064739 1103.4147
+177386.063239624 3.6065526 1103.3949
+177387.0632397283 3.6065526 1103.3752
+177388.0632398326 3.6064739 1103.4147
+177389.063239937 3.6065919 1103.3752
+177390.0632400413 3.6065919 1103.4147
+177391.0632401456 3.6066709 1103.2567
+177392.0632402499 3.6066315 1103.3357
+177393.0632403542 3.6065919 1103.3555
+177394.0632404585 3.6065919 1103.3555
+177395.0632405628 3.6066709 1103.316
+177396.0632406671 3.6067495 1103.3949
+177397.0632407714 3.6066709 1103.3949
+177398.0632408757 3.6066709 1103.3752
+177399.06324098 3.6067495 1103.3752
+177400.0632410843 3.6067102 1103.3949
+177401.0632411886 3.6066709 1103.3949
+177402.063241293 3.6068676 1103.3949
+177403.0632413973 3.6067102 1103.316
+177404.0632415016 3.6067495 1103.3357
+177405.0632416059 3.6066709 1103.316
+177406.0632417102 3.6069465 1103.4344
+177407.0632418145 3.6067889 1103.3357
+177408.0632419188 3.6067889 1103.2963
+177409.0632420231 3.6067495 1103.3555
+177410.0632421274 3.6068282 1103.3752
+177411.0632422317 3.6069069 1103.316
+177412.063242336 3.6068282 1103.3752
+177413.0632424403 3.6068282 1103.3949
+177414.0632425447 3.6069069 1103.3949
+177415.063242649 3.6068676 1103.3555
+177416.0632427533 3.6069069 1103.3752
+177417.0632428576 3.6068676 1103.3357
+177418.0632429619 3.6070251 1103.2765
+177419.0632430662 3.6068282 1103.2963
+177420.0632431705 3.6068676 1103.3555
+177421.0632432748 3.6069858 1103.3949
+177422.0632433791 3.6069465 1103.4147
+177423.0632434834 3.6070251 1103.3752
+177424.0632435877 3.6070645 1103.3752
+177425.063243692 3.6070251 1103.3949
+177426.0632437964 3.6070645 1103.3949
+177427.0632439007 3.6070645 1103.3752
+177428.063244005 3.6069858 1103.3357
+177429.0632441093 3.6070645 1103.3357
+177430.0632442136 3.6070251 1103.2963
+177431.0632443179 3.6070645 1103.3752
+177432.0632444222 3.6071432 1103.4344
+177433.0632445265 3.6071038 1103.316
+177434.0632446308 3.6071432 1103.4542
+177435.0632447351 3.6070645 1103.3357
+177436.0632448394 3.6072614 1103.316
+177437.0632449437 3.6071432 1103.4147
+177438.063245048 3.6072218 1103.2567
+177439.0632451524 3.6071825 1103.3752
+177440.0632452567 3.6071432 1103.3555
+177441.063245361 3.6072218 1103.3949
+177442.0632454653 3.6071825 1103.2963
+177443.0632455696 3.6071825 1103.3949
+177444.0632456739 3.6072614 1103.3555
+177445.0632457782 3.6072614 1103.2369
+177446.0632458825 3.6072614 1103.3752
+177447.0632459868 3.6071825 1103.316
+177448.0632460911 3.6073008 1103.3949
+177449.0632461954 3.6073008 1103.2765
+177450.0632462997 3.6073008 1103.3357
+177451.0632464041 3.6073008 1103.3752
+177452.0632465084 3.6074581 1103.4344
+177453.0632466127 3.6073401 1103.3949
+177454.063246717 3.6074581 1103.316
+177455.0632468213 3.6073794 1103.3555
+177456.0632469256 3.6074581 1103.4147
+177457.0632470299 3.6074188 1103.316
+177458.0632471342 3.6074188 1103.3555
+177459.0632472385 3.6074975 1103.4542
+177460.0632473428 3.6074975 1103.3357
+177461.0632474471 3.6074581 1103.3949
+177462.0632475514 3.6074188 1103.3357
+177463.0632476558 3.6074975 1103.316
+177464.0632477601 3.6074975 1103.3752
+177465.0632478644 3.6075368 1103.3555
+177466.0632479687 3.6075368 1103.2963
+177467.063248073 3.6075764 1103.4147
+177468.0632481773 3.607655 1103.3555
+177469.0632482816 3.6076157 1103.316
+177470.0632483859 3.6076944 1103.316
+177471.0632484902 3.6075764 1103.3555
+177472.0632485945 3.6076157 1103.2963
+177473.0632486988 3.6075764 1103.3752
+177474.0632488031 3.607655 1103.3949
+177475.0632489074 3.607655 1103.316
+177476.0632490118 3.6077337 1103.3949
+177477.0632491161 3.607655 1103.4147
+177478.0632492204 3.6076944 1103.3949
+177479.0632493247 3.6077337 1103.5134
+177480.063249429 3.6077337 1103.3555
+177481.0632495333 3.6076944 1103.2963
+177482.0632496376 3.6078124 1103.316
+177483.0632497419 3.6077337 1103.2963
+177484.0632498462 3.6077731 1103.3357
+177485.0632499505 3.6077731 1103.3949
+177486.0632500548 3.6077337 1103.316
+177487.0632501591 3.6078517 1103.3949
+177488.0632502635 3.6078517 1103.3357
+177489.0632503678 3.6078124 1103.3555
+177490.0632504721 3.6078517 1103.4542
+177491.0632505764 3.6078124 1103.316
+177492.0632506807 3.6078517 1103.4147
+177493.063250785 3.6079307 1103.3357
+177494.0632508893 3.6078913 1103.3752
+177495.0632509936 3.6078913 1103.3949
+177496.0632510979 3.6078517 1103.3357
+177497.0632512022 3.60797 1103.3357
+177498.0632513065 3.6079307 1103.3555
+177499.0632514108 3.608088 1103.316
+177500.0632515152 3.6079307 1103.3555
+177501.0632516195 3.6080487 1103.4147
+177502.0632517238 3.60797 1103.316
+177503.0632518281 3.6081274 1103.2765
+177504.0632519324 3.6080093 1103.2567
+177505.0632520367 3.6080487 1103.3752
+177506.063252141 3.6080487 1103.3752
+177507.0632522453 3.6081274 1103.3555
+177508.0632523496 3.608088 1103.3555
+177509.0632524539 3.608088 1103.3949
+177510.0632525582 3.6081274 1103.3555
+177511.0632526625 3.608088 1103.3752
+177512.0632527668 3.608088 1103.3357
+177513.0632528712 3.6081667 1103.4147
+177514.0632529755 3.6081667 1103.3949
+177515.0632530798 3.6081274 1103.3555
+177516.0632531841 3.6081274 1103.3949
+177517.0632532884 3.6082456 1103.4344
+177518.0632533927 3.6082456 1103.316
+177519.063253497 3.6082063 1103.3357
+177520.0632536013 3.6082456 1103.316
+177521.0632537056 3.6082063 1103.3555
+177522.0632538099 3.6082456 1103.3357
+177523.0632539142 3.6083243 1103.3555
+177524.0632540185 3.6083636 1103.3752
+177525.0632541229 3.6083636 1103.2963
+177526.0632542272 3.608285 1103.3949
+177527.0632543315 3.608285 1103.3949
+177528.0632544358 3.6083243 1103.3752
+177529.0632545401 3.6083243 1103.3752
+177530.0632546444 3.6083636 1103.2963
+177531.0632547487 3.6084819 1103.3949
+177532.063254853 3.608403 1103.3752
+177533.0632549573 3.6084423 1103.3555
+177534.0632550616 3.6085212 1103.3949
+177535.0632551659 3.6084423 1103.3949
+177536.0632552702 3.6084423 1103.3752
+177537.0632553746 3.6084423 1103.3555
+177538.0632554789 3.6085606 1103.3949
+177539.0632555832 3.6085606 1103.3949
+177540.0632556875 3.6084819 1103.3949
+177541.0632557918 3.6085999 1103.3949
+177542.0632558961 3.6085212 1103.3555
+177543.0632560004 3.6085212 1103.3949
+177544.0632561047 3.6085606 1103.3357
+177545.063256209 3.6085212 1103.2963
+177546.0632563133 3.6086392 1103.3752
+177547.0632564176 3.6085606 1103.4147
+177548.0632565219 3.6085212 1103.3752
+177549.0632566263 3.6085212 1103.2963
+177550.0632567306 3.6086392 1103.3555
+177551.0632568349 3.6086392 1103.3949
+177552.0632569392 3.6085606 1103.316
+177553.0632570435 3.6086392 1103.3357
+177554.0632571478 3.6085999 1103.316
+177555.0632572521 3.6086786 1103.3555
+177556.0632573564 3.6085606 1103.3949
+177557.0632574607 3.6086392 1103.4344
+177558.063257565 3.6087573 1103.316
+177559.0632576693 3.6087968 1103.3357
+177560.0632577736 3.6087573 1103.3949
+177561.0632578779 3.6086786 1103.3752
+177562.0632579823 3.6087573 1103.3752
+177563.0632580866 3.6088362 1103.3949
+177564.0632581909 3.6087179 1103.3357
+177565.0632582952 3.6087573 1103.4147
+177566.0632583995 3.6087968 1103.316
+177567.0632585038 3.6088362 1103.316
+177568.0632586081 3.6087968 1103.4344
+177569.0632587124 3.6089935 1103.316
+177570.0632588167 3.6089149 1103.3555
+177571.063258921 3.6087968 1103.3752
+177572.0632590253 3.6088755 1103.3555
+177573.0632591296 3.6089149 1103.4344
+177574.063259234 3.6088755 1103.2567
+177575.0632593383 3.6090329 1103.2765
+177576.0632594426 3.6089542 1103.3752
+177577.0632595469 3.6088755 1103.474
+177578.0632596512 3.6088755 1103.4344
+177579.0632597555 3.6089542 1103.3949
+177580.0632598598 3.6088755 1103.3555
+177581.0632599641 3.6089542 1103.3357
+177582.0632600684 3.6089542 1103.316
+177583.0632601727 3.6091118 1103.3752
+177584.063260277 3.6089542 1103.4147
+177585.0632603813 3.6089935 1103.3752
+177586.0632604857 3.6089542 1103.316
+177587.06326059 3.6090329 1103.3555
+177588.0632606943 3.6090722 1103.3752
+177589.0632607986 3.6089935 1103.3752
+177590.0632609029 3.6091118 1103.3555
+177591.0632610072 3.6091511 1103.4147
+177592.0632611115 3.6090329 1103.3752
+177593.0632612158 3.6090722 1103.3357
+177594.0632613201 3.6090722 1103.3555
+177595.0632614244 3.6091118 1103.3357
+177596.0632615287 3.6090722 1103.4147
+177597.063261633 3.6091118 1103.2963
+177598.0632617373 3.6090722 1103.3752
+177599.0632618417 3.6091905 1103.3357
+177600.063261946 3.6091905 1103.316
+177601.0632620503 3.6091511 1103.2765
+177602.0632621546 3.6091905 1103.3555
+177603.0632622589 3.6091511 1103.316
+177604.0632623632 3.6091511 1103.3357
+177605.0632624675 3.6092298 1103.3357
+177606.0632625718 3.6091905 1103.2963
+177607.0632626761 3.6092298 1103.3357
+177608.0632627804 3.6092691 1103.4344
+177609.0632628847 3.6092298 1103.3555
+177610.063262989 3.6093478 1103.3949
+177611.0632630934 3.6093085 1103.3949
+177612.0632631977 3.6093085 1103.316
+177613.063263302 3.6093085 1103.3949
+177614.0632634063 3.6093085 1103.3357
+177615.0632635106 3.6093085 1103.3555
+177616.0632636149 3.6093085 1103.3555
+177617.0632637192 3.6093478 1103.316
+177618.0632638235 3.6093478 1103.316
+177619.0632639278 3.6093872 1103.316
+177620.0632640321 3.6093478 1103.3555
+177621.0632641364 3.6094267 1103.3555
+177622.0632642407 3.6093872 1103.3555
+177623.0632643451 3.6093872 1103.3752
+177624.0632644494 3.6093478 1103.316
+177625.0632645537 3.6093872 1103.4147
+177626.063264658 3.6095054 1103.3357
+177627.0632647623 3.6093872 1103.316
+177628.0632648666 3.6094267 1103.3555
+177629.0632649709 3.6094661 1103.3555
+177630.0632650752 3.6094661 1103.3752
+177631.0632651795 3.6094267 1103.3949
+177632.0632652838 3.6095054 1103.3555
+177633.0632653881 3.6095448 1103.3357
+177634.0632654924 3.6094661 1103.3357
+177635.0632655967 3.6094267 1103.3555
+177636.0632657011 3.6095054 1103.3357
+177637.0632658054 3.6095054 1103.316
+177638.0632659097 3.6095448 1103.4542
+177639.063266014 3.6094661 1103.3949
+177640.0632661183 3.6094267 1103.3357
+177641.0632662226 3.6095054 1103.3555
+177642.0632663269 3.6096234 1103.4147
+177643.0632664312 3.6096234 1103.4147
+177644.0632665355 3.6096628 1103.3555
+177645.0632666398 3.6096234 1103.2963
+177646.0632667441 3.6095841 1103.3752
+177647.0632668484 3.6097021 1103.3949
+177648.0632669528 3.6097417 1103.316
+177649.0632670571 3.6096234 1103.3752
+177650.0632671614 3.6096628 1103.3555
+177651.0632672657 3.6097417 1103.3555
+177652.06326737 3.6098204 1103.3949
+177653.0632674743 3.6097021 1103.3357
+177654.0632675786 3.6097021 1103.316
+177655.0632676829 3.609781 1103.3555
+177656.0632677872 3.6098204 1103.3949
+177657.0632678915 3.6096628 1103.4344
+177658.0632679958 3.609781 1103.3949
+177659.0632681001 3.6098204 1103.4147
+177660.0632682045 3.6098204 1103.4147
+177661.0632683088 3.6098204 1103.2765
+177662.0632684131 3.6099777 1103.4147
+177663.0632685174 3.609899 1103.3357
+177664.0632686217 3.6098204 1103.3555
+177665.063268726 3.609899 1103.3752
+177666.0632688303 3.6099384 1103.3357
+177667.0632689346 3.6098597 1103.3357
+177668.0632690389 3.6098204 1103.3949
+177669.0632691432 3.6099384 1103.316
+177670.0632692475 3.6099384 1103.3357
+177671.0632693518 3.609899 1103.3555
+177672.0632694562 3.609899 1103.3752
+177673.0632695605 3.6098597 1103.3752
+177674.0632696648 3.6099384 1103.4147
+177675.0632697691 3.6099384 1103.4147
+177676.0632698734 3.6100566 1103.3357
+177677.0632699777 3.6100171 1103.3555
+177678.063270082 3.6099384 1103.3357
+177679.0632701863 3.6100171 1103.3752
+177680.0632702906 3.610096 1103.3555
+177681.0632703949 3.610096 1103.3752
+177682.0632704992 3.6101353 1103.3555
+177683.0632706035 3.6100566 1103.3949
+177684.0632707078 3.610096 1103.3357
+177685.0632708122 3.6100566 1103.3752
+177686.0632709165 3.6100171 1103.3357
+177687.0632710208 3.6101747 1103.3752
+177688.0632711251 3.6100171 1103.3555
+177689.0632712294 3.610214 1103.316
+177690.0632713337 3.6101353 1103.2963
+177691.063271438 3.6101353 1103.3752
+177692.0632715423 3.610214 1103.4542
+177693.0632716466 3.610214 1103.3949
+177694.0632717509 3.610214 1103.3949
+177695.0632718552 3.6102927 1103.4542
+177696.0632719595 3.6103323 1103.3752
+177697.0632720639 3.6102927 1103.2369
+177698.0632721682 3.610096 1103.3752
+177699.0632722725 3.6101747 1103.2567
+177700.0632723768 3.6102927 1103.3949
+177701.0632724811 3.6102533 1103.4344
+177702.0632725854 3.6103716 1103.3357
+177703.0632726897 3.6102927 1103.3555
+177704.063272794 3.6102533 1103.4344
+177705.0632728983 3.610214 1103.3949
+177706.0632730026 3.610214 1103.3555
+177707.0632731069 3.6104109 1103.3357
+177708.0632732112 3.610214 1103.3752
+177709.0632733156 3.6103716 1103.4542
+177710.0632734199 3.6103323 1103.474
+177711.0632735242 3.6103716 1103.2765
+177712.0632736285 3.6102927 1103.3949
+177713.0632737328 3.6103323 1103.3555
+177714.0632738371 3.6104109 1103.4147
+177715.0632739414 3.6103323 1103.2369
+177716.0632740457 3.6104109 1103.3752
+177717.06327415 3.6104896 1103.3357
+177718.0632742543 3.6105289 1103.2963
+177719.0632743586 3.6104896 1103.4938
+177720.0632744629 3.6104109 1103.316
+177721.0632745672 3.6104896 1103.316
+177722.0632746716 3.6104503 1103.3555
+177723.0632747759 3.6104503 1103.2963
+177724.0632748802 3.6104896 1103.3752
+177725.0632749845 3.6104896 1103.3357
+177726.0632750888 3.6105289 1103.4344
+177727.0632751931 3.6105683 1103.3357
+177728.0632752974 3.6104896 1103.3752
+177729.0632754017 3.6105683 1103.3555
+177730.063275506 3.6105683 1103.3949
+177731.0632756103 3.6105683 1103.3555
+177732.0632757146 3.6105683 1103.316
+177733.0632758189 3.6106865 1103.2765
+177734.0632759233 3.6106865 1103.3555
+177735.0632760276 3.6106076 1103.3555
+177736.0632761319 3.6106076 1103.4344
+177737.0632762362 3.6105683 1103.3555
+177738.0632763405 3.6105683 1103.3555
+177739.0632764448 3.6106865 1103.3752
+177740.0632765491 3.6106472 1103.316
+177741.0632766534 3.6107259 1103.4147
+177742.0632767577 3.6106472 1103.3752
+177743.063276862 3.6107259 1103.2963
+177744.0632769663 3.6107259 1103.3752
+177745.0632770706 3.6107259 1103.4147
+177746.063277175 3.6107259 1103.4542
+177747.0632772793 3.6107652 1103.4147
+177748.0632773836 3.6107259 1103.4147
+177749.0632774879 3.6106865 1103.3357
+177750.0632775922 3.6107652 1103.4147
+177751.0632776965 3.6108832 1103.3357
+177752.0632778008 3.6107652 1103.2963
+177753.0632779051 3.6107259 1103.2765
+177754.0632780094 3.6107652 1103.316
+177755.0632781137 3.6108439 1103.3357
+177756.063278218 3.6108046 1103.4147
+177757.0632783223 3.6108832 1103.3555
+177758.0632784266 3.6108046 1103.3949
+177759.063278531 3.6108046 1103.3752
+177760.0632786353 3.6108046 1103.3949
+177761.0632787396 3.6108439 1103.2963
+177762.0632788439 3.6108046 1103.4344
+177763.0632789482 3.6108046 1103.4147
+177764.0632790525 3.6108439 1103.3357
+177765.0632791568 3.6108439 1103.3357
+177766.0632792611 3.6109226 1103.3555
+177767.0632793654 3.6109226 1103.3949
+177768.0632794697 3.6108832 1103.3357
+177769.063279574 3.6108439 1103.3555
+177770.0632796783 3.6108439 1103.3949
+177771.0632797827 3.6109622 1103.3357
+177772.063279887 3.6109226 1103.4147
+177773.0632799913 3.6110802 1103.2963
+177774.0632800956 3.6109622 1103.4542
+177775.0632801999 3.6109622 1103.3555
+177776.0632803042 3.6108832 1103.3949
+177777.0632804085 3.6109226 1103.3752
+177778.0632805128 3.6110408 1103.3555
+177779.0632806171 3.6110802 1103.3949
+177780.0632807214 3.6109226 1103.3555
+177781.0632808257 3.6110802 1103.3949
+177782.06328093 3.6110408 1103.3357
+177783.0632810344 3.6111195 1103.3752
+177784.0632811387 3.6110408 1103.3752
+177785.063281243 3.6111195 1103.316
+177786.0632813473 3.6111195 1103.2963
+177787.0632814516 3.6111195 1103.3949
+177788.0632815559 3.6110408 1103.3357
+177789.0632816602 3.6111982 1103.3555
+177790.0632817645 3.6111195 1103.3357
+177791.0632818688 3.6111195 1103.3752
+177792.0632819731 3.6110802 1103.2963
+177793.0632820774 3.6111195 1103.4344
+177794.0632821817 3.6111588 1103.3555
+177795.0632822861 3.6112375 1103.3949
+177796.0632823904 3.6111588 1103.3555
+177797.0632824947 3.6112375 1103.2963
+177798.063282599 3.6111588 1103.3752
+177799.0632827033 3.6111982 1103.3949
+177800.0632828076 3.6111982 1103.316
+177801.0632829119 3.6113164 1103.3555
+177802.0632830162 3.6112375 1103.3555
+177803.0632831205 3.6113164 1103.3752
+177804.0632832248 3.6112375 1103.3555
+177805.0632833291 3.6113951 1103.3357
+177806.0632834334 3.6112771 1103.4344
+177807.0632835377 3.6112771 1103.3555
+177808.0632836421 3.6113164 1103.3752
+177809.0632837464 3.6112771 1103.4344
+177810.0632838507 3.6113558 1103.3357
+177811.063283955 3.6112771 1103.3555
+177812.0632840593 3.6114345 1103.3357
+177813.0632841636 3.6114345 1103.3752
+177814.0632842679 3.6113951 1103.3752
+177815.0632843722 3.6113951 1103.3357
+177816.0632844765 3.6114345 1103.4147
+177817.0632845808 3.6114738 1103.3555
+177818.0632846851 3.6114738 1103.3555
+177819.0632847894 3.6114738 1103.3555
+177820.0632848938 3.6113558 1103.3949
+177821.0632849981 3.6115131 1103.316
+177822.0632851024 3.6114345 1103.3949
+177823.0632852067 3.6115525 1103.3357
+177824.063285311 3.6114738 1103.2963
+177825.0632854153 3.6113951 1103.3752
+177826.0632855196 3.6115131 1103.3357
+177827.0632856239 3.6114738 1103.3357
+177828.0632857282 3.6115131 1103.316
+177829.0632858325 3.6114345 1103.316
+177830.0632859368 3.6116314 1103.316
+177831.0632860411 3.6115921 1103.2963
+177832.0632861455 3.6116707 1103.3752
+177833.0632862498 3.6115921 1103.3555
+177834.0632863541 3.6116314 1103.4344
+177835.0632864584 3.6115921 1103.3752
+177836.0632865627 3.6115921 1103.316
+177837.063286667 3.6115921 1103.3752
+177838.0632867713 3.6116707 1103.3357
+177839.0632868756 3.6116707 1103.3357
+177840.0632869799 3.6116314 1103.3357
+177841.0632870842 3.6116707 1103.4344
+177842.0632871885 3.6116314 1103.3949
+177843.0632872928 3.6116314 1103.2963
+177844.0632873971 3.6118674 1103.3357
+177845.0632875015 3.6117494 1103.3357
+177846.0632876058 3.6116707 1103.3555
+177847.0632877101 3.6117494 1103.3555
+177848.0632878144 3.6116707 1103.3357
+177849.0632879187 3.6118281 1103.3949
+177850.063288023 3.6118674 1103.3949
+177851.0632881273 3.6117101 1103.3949
+177852.0632882316 3.6117494 1103.2765
+177853.0632883359 3.611907 1103.4147
+177854.0632884402 3.6119463 1103.4147
+177855.0632885445 3.6118674 1103.3555
+177856.0632886488 3.6117887 1103.4147
+177857.0632887532 3.6118281 1103.3555
+177858.0632888575 3.6118281 1103.2963
+177859.0632889618 3.6118281 1103.2963
+177860.0632890661 3.6117887 1103.3949
+177861.0632891704 3.6118674 1103.4147
+177862.0632892747 3.611907 1103.3555
+177863.063289379 3.6118674 1103.3949
+177864.0632894833 3.6118281 1103.3949
+177865.0632895876 3.611907 1103.4147
+177866.0632896919 3.611907 1103.3357
+177867.0632897962 3.611907 1103.3555
+177868.0632899005 3.6118674 1103.4147
+177869.0632900049 3.6119857 1103.3752
+177870.0632901092 3.6119463 1103.4147
+177871.0632902135 3.6118281 1103.4147
+177872.0632903178 3.6119463 1103.316
+177873.0632904221 3.6119857 1103.3555
+177874.0632905264 3.611907 1103.316
+177875.0632906307 3.6119857 1103.4147
+177876.063290735 3.6119857 1103.3949
+177877.0632908393 3.6120644 1103.2567
+177878.0632909436 3.6119463 1103.4344
+177879.0632910479 3.612025 1103.3357
+177880.0632911522 3.6120644 1103.3357
+177881.0632912565 3.612025 1103.3555
+177882.0632913609 3.6121037 1103.4344
+177883.0632914652 3.6121037 1103.3949
+177884.0632915695 3.612143 1103.3949
+177885.0632916738 3.6120644 1103.3949
+177886.0632917781 3.612222 1103.4344
+177887.0632918824 3.6120644 1103.2765
+177888.0632919867 3.612143 1103.4344
+177889.063292091 3.612143 1103.316
+177890.0632921953 3.6120644 1103.3752
+177891.0632922996 3.6121037 1103.3555
+177892.0632924039 3.6121826 1103.316
+177893.0632925082 3.6122613 1103.316
+177894.0632926126 3.612143 1103.3357
+177895.0632927169 3.612222 1103.3555
+177896.0632928212 3.612143 1103.3752
+177897.0632929255 3.6121037 1103.3357
+177898.0632930298 3.6121037 1103.3752
+177899.0632931341 3.6121826 1103.3357
+177900.0632932384 3.6121826 1103.2963
+177901.0632933427 3.6123006 1103.4147
+177902.063293447 3.6123006 1103.4542
+177903.0632935513 3.61234 1103.316
+177904.0632936556 3.61234 1103.3555
+177905.0632937599 3.6122613 1103.3949
+177906.0632938643 3.61234 1103.3949
+177907.0632939686 3.6123006 1103.4147
+177908.0632940729 3.6123793 1103.4344
+177909.0632941772 3.61234 1103.316
+177910.0632942815 3.61234 1103.3752
+177911.0632943858 3.612458 1103.3357
+177912.0632944901 3.6123793 1103.316
+177913.0632945944 3.6124187 1103.3752
+177914.0632946987 3.6123793 1103.2369
+177915.063294803 3.6123793 1103.3555
+177916.0632949073 3.6124187 1103.3752
+177917.0632950116 3.6124187 1103.3357
+177918.063295116 3.6124976 1103.3555
+177919.0632952203 3.612458 1103.316
+177920.0632953246 3.6123793 1103.4147
+177921.0632954289 3.61234 1103.3752
+177922.0632955332 3.6124976 1103.4147
+177923.0632956375 3.612458 1103.3357
+177924.0632957418 3.6124187 1103.3555
+177925.0632958461 3.6124976 1103.3357
+177926.0632959504 3.612458 1103.4147
+177927.0632960547 3.6125369 1103.3555
+177928.063296159 3.612458 1103.3949
+177929.0632962633 3.6125369 1103.4542
+177930.0632963676 3.6125369 1103.3752
+177931.063296472 3.6125369 1103.3357
+177932.0632965763 3.6124976 1103.3357
+177933.0632966806 3.612458 1103.4147
+177934.0632967849 3.6126549 1103.3949
+177935.0632968892 3.6126156 1103.3357
+177936.0632969935 3.6125762 1103.3752
+177937.0632970978 3.6125762 1103.3357
+177938.0632972021 3.6126156 1103.3949
+177939.0632973064 3.6126156 1103.2172
+177940.0632974107 3.6126549 1103.4147
+177941.063297515 3.6126156 1103.3357
+177942.0632976193 3.6126943 1103.3555
+177943.0632977237 3.6125369 1103.4542
+177944.063297828 3.6127729 1103.3949
+177945.0632979323 3.6127729 1103.2567
+177946.0632980366 3.6126943 1103.3752
+177947.0632981409 3.6126549 1103.3752
+177948.0632982452 3.6126549 1103.3752
+177949.0632983495 3.6126549 1103.3357
+177950.0632984538 3.6126943 1103.3752
+177951.0632985581 3.6126549 1103.3357
+177952.0632986624 3.6126943 1103.3949
+177953.0632987667 3.6127729 1103.3555
+177954.063298871 3.6127336 1103.3357
+177955.0632989754 3.6126549 1103.3949
+177956.0632990797 3.6128125 1103.3949
+177957.063299184 3.6127729 1103.3357
+177958.0632992883 3.6127336 1103.3357
+177959.0632993926 3.6128125 1103.2963
+177960.0632994969 3.6128519 1103.316
+177961.0632996012 3.6128125 1103.2963
+177962.0632997055 3.6128519 1103.3357
+177963.0632998098 3.6128519 1103.3752
+177964.0632999141 3.6128912 1103.3555
+177965.0633000184 3.6128125 1103.3555
+177966.0633001227 3.6128912 1103.3752
+177967.063300227 3.6128912 1103.2765
+177968.0633003314 3.6128912 1103.4344
+177969.0633004357 3.6130092 1103.3752
+177970.06330054 3.6128912 1103.3752
+177971.0633006443 3.6130486 1103.3949
+177972.0633007486 3.6129699 1103.3752
+177973.0633008529 3.6129699 1103.3357
+177974.0633009572 3.6128912 1103.2963
+177975.0633010615 3.6130879 1103.3357
+177976.0633011658 3.6130486 1103.4147
+177977.0633012701 3.6129305 1103.3752
+177978.0633013744 3.6129699 1103.2963
+177979.0633014787 3.6131275 1103.316
+177980.0633015831 3.6130092 1103.3752
+177981.0633016874 3.6130879 1103.3949
+177982.0633017917 3.6130486 1103.3555
+177983.063301896 3.6130879 1103.2765
+177984.0633020003 3.6130486 1103.4147
+177985.0633021046 3.6130879 1103.3752
+177986.0633022089 3.6130486 1103.2765
+177987.0633023132 3.6131668 1103.3752
+177988.0633024175 3.6131275 1103.3357
+177989.0633025218 3.6131668 1103.3752
+177990.0633026261 3.6131668 1103.3949
+177991.0633027304 3.6131275 1103.3949
+177992.0633028348 3.6131668 1103.4147
+177993.0633029391 3.6132848 1103.4147
+177994.0633030434 3.6132455 1103.3949
+177995.0633031477 3.6132455 1103.3949
+177996.063303252 3.6132455 1103.3949
+177997.0633033563 3.6131275 1103.2765
+177998.0633034606 3.6132061 1103.4147
+177999.0633035649 3.6132455 1103.3357
+178000.0633036692 3.6132455 1103.3555
+178001.0633037735 3.6131668 1103.4147
+178002.0633038778 3.6132848 1103.4344
+178003.0633039821 3.6133635 1103.3357
+178004.0633040864 3.6132848 1103.3555
+178005.0633041908 3.6133635 1103.3752
+178006.0633042951 3.6133242 1103.2765
+178007.0633043994 3.6133635 1103.3752
+178008.0633045037 3.6132848 1103.4344
+178009.063304608 3.6133635 1103.2963
+178010.0633047123 3.6133635 1103.3752
+178011.0633048166 3.6133242 1103.474
+178012.0633049209 3.6134028 1103.3357
+178013.0633050252 3.6133242 1103.3752
+178014.0633051295 3.6134028 1103.4147
+178015.0633052338 3.6133242 1103.3949
+178016.0633053381 3.6134028 1103.2963
+178017.0633054425 3.6134424 1103.3949
+178018.0633055468 3.6134818 1103.4147
+178019.0633056511 3.6134424 1103.4344
+178020.0633057554 3.6135211 1103.4344
+178021.0633058597 3.6134028 1103.316
+178022.063305964 3.6134818 1103.3555
+178023.0633060683 3.6135604 1103.3949
+178024.0633061726 3.6135211 1103.3357
+178025.0633062769 3.6135211 1103.4147
+178026.0633063812 3.6135211 1103.2963
+178027.0633064855 3.6135211 1103.4147
+178028.0633065898 3.6135998 1103.3752
+178029.0633066942 3.6135998 1103.4542
+178030.0633067985 3.6134818 1103.3357
+178031.0633069028 3.6135604 1103.3752
+178032.0633070071 3.6135211 1103.3752
+178033.0633071114 3.6135998 1103.2963
+178034.0633072157 3.6137574 1103.3555
+178035.06330732 3.6135998 1103.3752
+178036.0633074243 3.6136391 1103.4938
+178037.0633075286 3.6135998 1103.3949
+178038.0633076329 3.6137574 1103.3555
+178039.0633077372 3.6136391 1103.3357
+178040.0633078415 3.6136785 1103.3555
+178041.0633079458 3.6137178 1103.2963
+178042.0633080502 3.6137178 1103.3752
+178043.0633081545 3.6138361 1103.3949
+178044.0633082588 3.6137178 1103.4344
+178045.0633083631 3.6137967 1103.4344
+178046.0633084674 3.6137574 1103.3555
+178047.0633085717 3.6137574 1103.3949
+178048.063308676 3.6137967 1103.3949
+178049.0633087803 3.6137967 1103.3555
+178050.0633088846 3.6137574 1103.316
+178051.0633089889 3.6138361 1103.3949
+178052.0633090932 3.6138361 1103.3357
+178053.0633091975 3.6137967 1103.3752
+178054.0633093019 3.6138754 1103.3949
+178055.0633094062 3.6138754 1103.4344
+178056.0633095105 3.6138754 1103.316
+178057.0633096148 3.6139147 1103.4344
+178058.0633097191 3.6139541 1103.316
+178059.0633098234 3.6140723 1103.3752
+178060.0633099277 3.6139541 1103.2765
+178061.063310032 3.6139541 1103.4344
+178062.0633101363 3.614033 1103.316
+178063.0633102406 3.6139147 1103.4344
+178064.0633103449 3.6139541 1103.3752
+178065.0633104492 3.6139541 1103.2765
+178066.0633105536 3.6139147 1103.3357
+178067.0633106579 3.614033 1103.3357
+178068.0633107622 3.6140723 1103.3357
+178069.0633108665 3.614033 1103.3949
+178070.0633109708 3.6140723 1103.3752
+178071.0633110751 3.614033 1103.3555
+178072.0633111794 3.614033 1103.3752
+178073.0633112837 3.6140723 1103.4147
+178074.063311388 3.6141117 1103.3949
+178075.0633114923 3.6140723 1103.3555
+178076.0633115966 3.614033 1103.3949
+178077.0633117009 3.6141117 1103.3357
+178078.0633118053 3.6141117 1103.316
+178079.0633119096 3.614151 1103.3357
+178080.0633120139 3.614151 1103.4147
+178081.0633121182 3.6141117 1103.316
+178082.0633122225 3.6141117 1103.316
+178083.0633123268 3.614151 1103.3555
+178084.0633124311 3.6141903 1103.3752
+178085.0633125354 3.6142297 1103.3949
+178086.0633126397 3.6142297 1103.2963
+178087.063312744 3.614151 1103.3357
+178088.0633128483 3.6143084 1103.3752
+178089.0633129526 3.6142297 1103.2963
+178090.0633130569 3.6141903 1103.316
+178091.0633131613 3.614269 1103.4147
+178092.0633132656 3.6142297 1103.3555
+178093.0633133699 3.6142297 1103.3949
+178094.0633134742 3.6142297 1103.316
+178095.0633135785 3.614269 1103.3555
+178096.0633136828 3.614269 1103.3949
+178097.0633137871 3.6141903 1103.316
+178098.0633138914 3.6143873 1103.2567
+178099.0633139957 3.614269 1103.4542
+178100.0633141 3.6143084 1103.4147
+178101.0633142043 3.6143873 1103.3555
+178102.0633143086 3.6143084 1103.3555
+178103.063314413 3.614466 1103.3357
+178104.0633145173 3.6143479 1103.3752
+178105.0633146216 3.6143479 1103.3752
+178106.0633147259 3.614466 1103.2963
+178107.0633148302 3.614466 1103.4344
+178108.0633149345 3.6143873 1103.3752
+178109.0633150388 3.6144266 1103.3949
+178110.0633151431 3.6144266 1103.2963
+178111.0633152474 3.614466 1103.4542
+178112.0633153517 3.614466 1103.3555
+178113.063315456 3.614466 1103.316
+178114.0633155603 3.6145446 1103.474
+178115.0633156647 3.6145053 1103.3555
+178116.063315769 3.6145446 1103.3949
+178117.0633158733 3.614584 1103.3949
+178118.0633159776 3.614466 1103.2963
+178119.0633160819 3.6145446 1103.3555
+178120.0633161862 3.6146629 1103.316
+178121.0633162905 3.6145446 1103.4147
+178122.0633163948 3.614584 1103.3357
+178123.0633164991 3.6146233 1103.3949
+178124.0633166034 3.6146233 1103.316
+178125.0633167077 3.6145446 1103.3555
+178126.063316812 3.6145446 1103.2765
+178127.0633169163 3.6146629 1103.3949
+178128.0633170207 3.6145446 1103.3752
+178129.063317125 3.6146233 1103.316
+178130.0633172293 3.614584 1103.3752
+178131.0633173336 3.6146233 1103.3752
+178132.0633174379 3.6147022 1103.2765
+178133.0633175422 3.6145446 1103.3949
+178134.0633176465 3.6147022 1103.3752
+178135.0633177508 3.6145446 1103.3555
+178136.0633178551 3.6146233 1103.3752
+178137.0633179594 3.6147022 1103.3555
+178138.0633180637 3.6146629 1103.3357
+178139.063318168 3.6147416 1103.3949
+178140.0633182724 3.6147022 1103.3555
+178141.0633183767 3.6147416 1103.3752
+178142.063318481 3.6147022 1103.3752
+178143.0633185853 3.6147809 1103.3357
+178144.0633186896 3.6147809 1103.3949
+178145.0633187939 3.6148202 1103.3357
+178146.0633188982 3.6147809 1103.3357
+178147.0633190025 3.6148202 1103.3555
+178148.0633191068 3.6148596 1103.3555
+178149.0633192111 3.6147809 1103.3555
+178150.0633193154 3.6147809 1103.4147
+178151.0633194197 3.6148596 1103.4344
+178152.0633195241 3.6147416 1103.3949
+178153.0633196284 3.6147809 1103.3752
+178154.0633197327 3.6148596 1103.316
+178155.063319837 3.6148596 1103.2963
+178156.0633199413 3.6147809 1103.3949
+178157.0633200456 3.6148989 1103.3357
+178158.0633201499 3.6149383 1103.2963
+178159.0633202542 3.6148596 1103.3752
+178160.0633203585 3.6148596 1103.3949
+178161.0633204628 3.6148596 1103.3949
+178162.0633205671 3.6149383 1103.3555
+178163.0633206714 3.6148202 1103.3752
+178164.0633207757 3.6148596 1103.316
+178165.0633208801 3.6148989 1103.3555
+178166.0633209844 3.6149778 1103.3752
+178167.0633210887 3.6148596 1103.3752
+178168.063321193 3.6148596 1103.4147
+178169.0633212973 3.6149383 1103.316
+178170.0633214016 3.6149383 1103.3555
+178171.0633215059 3.6150172 1103.4147
+178172.0633216102 3.6148989 1103.3555
+178173.0633217145 3.6148989 1103.3555
+178174.0633218188 3.6150565 1103.3949
+178175.0633219231 3.6149383 1103.3357
+178176.0633220274 3.6150565 1103.3357
+178177.0633221318 3.6149778 1103.3949
+178178.0633222361 3.6149778 1103.3949
+178179.0633223404 3.6150565 1103.316
+178180.0633224447 3.6148989 1103.2765
+178181.063322549 3.6150172 1103.2765
+178182.0633226533 3.6149383 1103.316
+178183.0633227576 3.6149778 1103.3949
+178184.0633228619 3.6150565 1103.3752
+178185.0633229662 3.6149383 1103.3949
+178186.0633230705 3.6150959 1103.3555
+178187.0633231748 3.6150565 1103.2963
+178188.0633232791 3.6151352 1103.4344
+178189.0633233835 3.6150959 1103.3357
+178190.0633234878 3.6150565 1103.3555
+178191.0633235921 3.6150959 1103.3555
+178192.0633236964 3.6151352 1103.3357
+178193.0633238007 3.6151352 1103.3555
+178194.063323905 3.6151745 1103.2567
+178195.0633240093 3.6152139 1103.3357
+178196.0633241136 3.6151745 1103.3555
+178197.0633242179 3.6151352 1103.2765
+178198.0633243222 3.6151352 1103.3752
+178199.0633244265 3.6151745 1103.4344
+178200.0633245308 3.6152139 1103.2369
+178201.0633246352 3.6152139 1103.3555
+178202.0633247395 3.6151745 1103.3949
+178203.0633248438 3.6151745 1103.3555
+178204.0633249481 3.6151352 1103.4344
+178205.0633250524 3.6152532 1103.4147
+178206.0633251567 3.6152532 1103.3752
+178207.063325261 3.6151745 1103.2765
+178208.0633253653 3.6152928 1103.316
+178209.0633254696 3.6152532 1103.4147
+178210.0633255739 3.6152532 1103.4344
+178211.0633256782 3.6152532 1103.2963
+178212.0633257825 3.6152139 1103.4147
+178213.0633258868 3.6152928 1103.3555
+178214.0633259912 3.6152532 1103.316
+178215.0633260955 3.6153715 1103.3949
+178216.0633261998 3.6153321 1103.3752
+178217.0633263041 3.6152928 1103.2567
+178218.0633264084 3.6153321 1103.316
+178219.0633265127 3.6153321 1103.3555
+178220.063326617 3.6152928 1103.3949
+178221.0633267213 3.6153321 1103.2963
+178222.0633268256 3.6154108 1103.3555
+178223.0633269299 3.6154108 1103.3357
+178224.0633270342 3.6153715 1103.4344
+178225.0633271385 3.6154501 1103.3949
+178226.0633272429 3.6154501 1103.4344
+178227.0633273472 3.6153321 1103.3949
+178228.0633274515 3.6154501 1103.3555
+178229.0633275558 3.6154108 1103.3357
+178230.0633276601 3.6153321 1103.3752
+178231.0633277644 3.6154108 1103.2963
+178232.0633278687 3.6154108 1103.3555
+178233.063327973 3.6154501 1103.316
+178234.0633280773 3.6154501 1103.3357
+178235.0633281816 3.6154895 1103.316
+178236.0633282859 3.6155684 1103.3752
+178237.0633283902 3.6154895 1103.3949
+178238.0633284946 3.6153321 1103.3555
+178239.0633285989 3.6154501 1103.4147
+178240.0633287032 3.6155684 1103.3357
+178241.0633288075 3.6155288 1103.2963
+178242.0633289118 3.6154895 1103.316
+178243.0633290161 3.6154895 1103.3357
+178244.0633291204 3.6156471 1103.2765
+178245.0633292247 3.6155684 1103.4344
+178246.063329329 3.6155288 1103.4147
+178247.0633294333 3.6154895 1103.3555
+178248.0633295376 3.6155288 1103.4147
+178249.0633296419 3.6156077 1103.4344
+178250.0633297462 3.6155288 1103.4147
+178251.0633298506 3.6155288 1103.3752
+178252.0633299549 3.6156077 1103.3949
+178253.0633300592 3.6156077 1103.4542
+178254.0633301635 3.6155288 1103.3555
+178255.0633302678 3.6155684 1103.3949
+178256.0633303721 3.6156471 1103.316
+178257.0633304764 3.6155684 1103.3555
+178258.0633305807 3.6156077 1103.3752
+178259.063330685 3.6156471 1103.3555
+178260.0633307893 3.6156471 1103.3555
+178261.0633308936 3.6156077 1103.3949
+178262.0633309979 3.6155684 1103.3752
+178263.0633311023 3.6157258 1103.3555
+178264.0633312066 3.6156471 1103.3752
+178265.0633313109 3.6157258 1103.3555
+178266.0633314152 3.6157651 1103.2963
+178267.0633315195 3.6156471 1103.2963
+178268.0633316238 3.6158044 1103.474
+178269.0633317281 3.6156864 1103.3555
+178270.0633318324 3.6157258 1103.2963
+178271.0633319367 3.6158044 1103.3357
+178272.063332041 3.6157258 1103.4147
+178273.0633321453 3.6156471 1103.3949
+178274.0633322496 3.6157258 1103.3555
+178275.063332354 3.6157258 1103.4147
+178276.0633324583 3.6157258 1103.3357
+178277.0633325626 3.6158044 1103.3752
+178278.0633326669 3.6157651 1103.3752
+178279.0633327712 3.6158044 1103.3555
+178280.0633328755 3.6157258 1103.3555
+178281.0633329798 3.6158044 1103.316
+178282.0633330841 3.6157258 1103.3752
+178283.0633331884 3.6158834 1103.4147
+178284.0633332927 3.6158044 1103.3555
+178285.063333397 3.6156864 1103.3949
+178286.0633335013 3.6158044 1103.3949
+178287.0633336056 3.6158438 1103.2963
+178288.06333371 3.6158834 1103.3555
+178289.0633338143 3.6158044 1103.2567
+178290.0633339186 3.6158834 1103.3555
+178291.0633340229 3.6158834 1103.3555
+178292.0633341272 3.6158834 1103.4147
+178293.0633342315 3.6160407 1103.2963
+178294.0633343358 3.6159227 1103.3949
+178295.0633344401 3.615962 1103.4147
+178296.0633345444 3.615962 1103.3555
+178297.0633346487 3.6159227 1103.2963
+178298.063334753 3.6160014 1103.3555
+178299.0633348573 3.615962 1103.3752
+178300.0633349617 3.6159227 1103.3555
+178301.063335066 3.6160014 1103.2963
+178302.0633351703 3.6160407 1103.3555
+178303.0633352746 3.6160407 1103.3357
+178304.0633353789 3.6160407 1103.3949
+178305.0633354832 3.615962 1103.474
+178306.0633355875 3.6160014 1103.3357
+178307.0633356918 3.615962 1103.3949
+178308.0633357961 3.6160014 1103.3357
+178309.0633359004 3.6160407 1103.2765
+178310.0633360047 3.6160014 1103.2963
+178311.063336109 3.615962 1103.3555
+178312.0633362134 3.6160014 1103.3555
+178313.0633363177 3.61608 1103.3555
+178314.063336422 3.61608 1103.3357
+178315.0633365263 3.6160407 1103.4147
+178316.0633366306 3.6161587 1103.3752
+178317.0633367349 3.6161983 1103.4344
+178318.0633368392 3.6161983 1103.3555
+178319.0633369435 3.6161983 1103.2963
+178320.0633370478 3.6161194 1103.3752
+178321.0633371521 3.6161587 1103.2765
+178322.0633372564 3.6161587 1103.3555
+178323.0633373607 3.6161194 1103.3357
+178324.0633374651 3.6162376 1103.3752
+178325.0633375694 3.6162376 1103.3357
+178326.0633376737 3.6161587 1103.316
+178327.063337778 3.616277 1103.4147
+178328.0633378823 3.6161983 1103.316
+178329.0633379866 3.6163163 1103.4147
+178330.0633380909 3.616277 1103.316
+178331.0633381952 3.6162376 1103.3357
+178332.0633382995 3.6162376 1103.3357
+178333.0633384038 3.6163163 1103.3357
+178334.0633385081 3.616277 1103.316
+178335.0633386124 3.6163557 1103.316
+178336.0633387167 3.6163557 1103.3949
+178337.0633388211 3.6163163 1103.3555
+178338.0633389254 3.6163557 1103.3555
+178339.0633390297 3.6163163 1103.2963
+178340.063339134 3.616395 1103.4147
+178341.0633392383 3.6163557 1103.3555
+178342.0633393426 3.6163163 1103.316
+178343.0633394469 3.6163163 1103.4344
+178344.0633395512 3.6163557 1103.3752
+178345.0633396555 3.6163557 1103.3555
+178346.0633397598 3.6164343 1103.3949
+178347.0633398641 3.6163557 1103.3949
+178348.0633399684 3.6164343 1103.3555
+178349.0633400728 3.616395 1103.2963
+178350.0633401771 3.6164343 1103.3949
+178351.0633402814 3.6164737 1103.3949
+178352.0633403857 3.6164737 1103.3752
+178353.06334049 3.6164737 1103.4542
+178354.0633405943 3.6164737 1103.3357
+178355.0633406986 3.616395 1103.3357
+178356.0633408029 3.6164737 1103.3555
+178357.0633409072 3.616395 1103.5332
+178358.0633410115 3.6164737 1103.3949
+178359.0633411158 3.6164343 1103.2765
+178360.0633412201 3.6165526 1103.316
+178361.0633413245 3.6164737 1103.3949
+178362.0633414288 3.6165526 1103.3357
+178363.0633415331 3.6165919 1103.316
+178364.0633416374 3.6165133 1103.3357
+178365.0633417417 3.6166313 1103.3555
+178366.063341846 3.6165919 1103.3357
+178367.0633419503 3.6165133 1103.316
+178368.0633420546 3.6165919 1103.3949
+178369.0633421589 3.6165133 1103.3357
+178370.0633422632 3.6165133 1103.3752
+178371.0633423675 3.6166706 1103.3357
+178372.0633424718 3.6166706 1103.3752
+178373.0633425761 3.6165919 1103.3949
+178374.0633426805 3.6165526 1103.3357
+178375.0633427848 3.6166313 1103.3555
+178376.0633428891 3.6167099 1103.3555
+178377.0633429934 3.6165133 1103.2963
+178378.0633430977 3.6167493 1103.4344
+178379.063343202 3.6165526 1103.4147
+178380.0633433063 3.6165919 1103.316
+178381.0633434106 3.6167099 1103.3357
+178382.0633435149 3.6166706 1103.3752
+178383.0633436192 3.6165919 1103.3555
+178384.0633437235 3.6166313 1103.3357
+178385.0633438278 3.6167493 1103.4344
+178386.0633439322 3.6167099 1103.3555
+178387.0633440365 3.6166313 1103.3555
+178388.0633441408 3.6167099 1103.3949
+178389.0633442451 3.6167099 1103.2963
+178390.0633443494 3.6167099 1103.3357
+178391.0633444537 3.6167099 1103.3752
+178392.063344558 3.6167493 1103.3555
+178393.0633446623 3.6167099 1103.3357
+178394.0633447666 3.6167099 1103.3949
+178395.0633448709 3.6166706 1103.3949
+178396.0633449752 3.6167099 1103.3752
+178397.0633450795 3.6167099 1103.3555
+178398.0633451839 3.6167886 1103.3555
+178399.0633452882 3.6167493 1103.3357
+178400.0633453925 3.6167886 1103.4344
+178401.0633454968 3.6166706 1103.3752
+178402.0633456011 3.6167099 1103.2963
+178403.0633457054 3.6167886 1103.3752
+178404.0633458097 3.6167886 1103.3555
+178405.063345914 3.6168675 1103.3357
+178406.0633460183 3.6168282 1103.316
+178407.0633461226 3.6167886 1103.2765
+178408.0633462269 3.6169069 1103.4147
+178409.0633463312 3.6168282 1103.3555
+178410.0633464355 3.6167886 1103.3555
+178411.0633465399 3.6168675 1103.3555
+178412.0633466442 3.6168675 1103.3555
+178413.0633467485 3.6167493 1103.3752
+178414.0633468528 3.6169462 1103.3555
+178415.0633469571 3.6169069 1103.3752
+178416.0633470614 3.6169856 1103.3949
+178417.0633471657 3.6169856 1103.4147
+178418.06334727 3.6169069 1103.316
+178419.0633473743 3.6169069 1103.3752
+178420.0633474786 3.6168675 1103.316
+178421.0633475829 3.6169856 1103.3555
+178422.0633476872 3.6169069 1103.3949
+178423.0633477916 3.6168675 1103.3555
+178424.0633478959 3.6169856 1103.3752
+178425.0633480002 3.6169856 1103.316
+178426.0633481045 3.6169069 1103.3752
+178427.0633482088 3.6169069 1103.3752
+178428.0633483131 3.6169856 1103.3555
+178429.0633484174 3.6169462 1103.3752
+178430.0633485217 3.6171036 1103.3357
+178431.063348626 3.6170642 1103.3357
+178432.0633487303 3.6170249 1103.3357
+178433.0633488346 3.6171432 1103.316
+178434.0633489389 3.6170249 1103.316
+178435.0633490433 3.6170642 1103.3357
+178436.0633491476 3.6171036 1103.3555
+178437.0633492519 3.6171036 1103.2765
+178438.0633493562 3.6169856 1103.3752
+178439.0633494605 3.6170642 1103.316
+178440.0633495648 3.6170642 1103.3555
+178441.0633496691 3.6170249 1103.4344
+178442.0633497734 3.6171432 1103.3555
+178443.0633498777 3.6170249 1103.3752
+178444.063349982 3.6171432 1103.316
+178445.0633500863 3.6170249 1103.3555
+178446.0633501906 3.6170642 1103.4147
+178447.0633502949 3.6171036 1103.316
+178448.0633503993 3.6171825 1103.316
+178449.0633505036 3.6170642 1103.3752
+178450.0633506079 3.6171036 1103.3357
+178451.0633507122 3.6171825 1103.3357
+178452.0633508165 3.6171825 1103.316
+178453.0633509208 3.6171036 1103.3357
+178454.0633510251 3.6171825 1103.2963
+178455.0633511294 3.6171825 1103.4147
+178456.0633512337 3.6171825 1103.316
+178457.063351338 3.6173005 1103.3555
+178458.0633514423 3.6173005 1103.3752
+178459.0633515466 3.6172612 1103.3555
+178460.063351651 3.6172218 1103.316
+178461.0633517553 3.6172612 1103.4147
+178462.0633518596 3.6173398 1103.3949
+178463.0633519639 3.6173005 1103.3357
+178464.0633520682 3.6172218 1103.3949
+178465.0633521725 3.6173005 1103.316
+178466.0633522768 3.6171432 1103.2172
+178467.0633523811 3.6173005 1103.3752
+178468.0633524854 3.6173792 1103.3555
+178469.0633525897 3.6173792 1103.4147
+178470.063352694 3.6174188 1103.3949
+178471.0633527983 3.6173398 1103.3555
+178472.0633529027 3.6173792 1103.2765
+178473.063353007 3.6173005 1103.3555
+178474.0633531113 3.6173792 1103.2963
+178475.0633532156 3.6173792 1103.4344
+178476.0633533199 3.6173398 1103.3555
+178477.0633534242 3.6173792 1103.316
+178478.0633535285 3.6173792 1103.316
+178479.0633536328 3.6173792 1103.3752
+178480.0633537371 3.6173398 1103.2963
+178481.0633538414 3.6174188 1103.3949
+178482.0633539457 3.6174974 1103.3555
+178483.06335405 3.6174188 1103.3949
+178484.0633541544 3.6173792 1103.3752
+178485.0633542587 3.6173792 1103.3357
+178486.063354363 3.6174581 1103.3555
+178487.0633544673 3.6175368 1103.4147
+178488.0633545716 3.6174581 1103.2963
+178489.0633546759 3.6174188 1103.3357
+178490.0633547802 3.6174581 1103.3357
+178491.0633548845 3.6174188 1103.3752
+178492.0633549888 3.6174581 1103.4147
+178493.0633550931 3.6174188 1103.4147
+178494.0633551974 3.6175368 1103.3555
+178495.0633553017 3.6174188 1103.3949
+178496.063355406 3.6174974 1103.3752
+178497.0633555104 3.6175761 1103.3752
+178498.0633556147 3.6174974 1103.316
+178499.063355719 3.6175761 1103.3949
+178500.0633558233 3.6175761 1103.316
+178501.0633559276 3.6174974 1103.3357
+178502.0633560319 3.6176548 1103.3357
+178503.0633561362 3.6176155 1103.316
+178504.0633562405 3.6175761 1103.3357
+178505.0633563448 3.6176155 1103.3949
+178506.0633564491 3.6174974 1103.4344
+178507.0633565534 3.6175368 1103.2963
+178508.0633566577 3.6176155 1103.3752
+178509.0633567621 3.6176548 1103.3555
+178510.0633568664 3.6176548 1103.3357
+178511.0633569707 3.6176548 1103.4542
+178512.063357075 3.6177337 1103.4344
+178513.0633571793 3.6176941 1103.2963
+178514.0633572836 3.6177337 1103.3357
+178515.0633573879 3.6177731 1103.3555
+178516.0633574922 3.6177731 1103.2765
+178517.0633575965 3.6176941 1103.3555
+178518.0633577008 3.6177337 1103.4147
+178519.0633578051 3.6176548 1103.316
+178520.0633579094 3.6176941 1103.3357
+178521.0633580138 3.6177337 1103.2963
+178522.0633581181 3.6177337 1103.2765
+178523.0633582224 3.6178124 1103.3357
+178524.0633583267 3.6177731 1103.316
+178525.063358431 3.6178517 1103.3752
+178526.0633585353 3.6177731 1103.4147
+178527.0633586396 3.6177731 1103.3357
+178528.0633587439 3.6177731 1103.2567
+178529.0633588482 3.6177731 1103.316
+178530.0633589525 3.6178911 1103.3357
+178531.0633590568 3.6178517 1103.4147
+178532.0633591611 3.6178517 1103.474
+178533.0633592654 3.6177731 1103.316
+178534.0633593698 3.6178124 1103.3752
+178535.0633594741 3.6178911 1103.4147
+178536.0633595784 3.6178517 1103.3949
+178537.0633596827 3.6178911 1103.3357
+178538.063359787 3.6178517 1103.3752
+178539.0633598913 3.6179304 1103.2963
+178540.0633599956 3.6178517 1103.3949
+178541.0633600999 3.6178911 1103.3752
+178542.0633602042 3.6178911 1103.3752
+178543.0633603085 3.6179698 1103.2963
+178544.0633604128 3.6179304 1103.316
+178545.0633605171 3.6180091 1103.3949
+178546.0633606215 3.6179698 1103.4344
+178547.0633607258 3.6179304 1103.2765
+178548.0633608301 3.6179304 1103.3949
+178549.0633609344 3.6178911 1103.3949
+178550.0633610387 3.6180091 1103.3357
+178551.063361143 3.6180091 1103.3555
+178552.0633612473 3.6180091 1103.4344
+178553.0633613516 3.6180091 1103.3949
+178554.0633614559 3.6180487 1103.2765
+178555.0633615602 3.6180091 1103.3752
+178556.0633616645 3.6180091 1103.474
+178557.0633617688 3.6180487 1103.3949
+178558.0633618732 3.6180091 1103.3752
+178559.0633619775 3.6180487 1103.3555
+178560.0633620818 3.6181273 1103.3752
+178561.0633621861 3.6180487 1103.316
+178562.0633622904 3.6180487 1103.3752
+178563.0633623947 3.6180091 1103.3555
+178564.063362499 3.6180091 1103.3752
+178565.0633626033 3.6180091 1103.3752
+178566.0633627076 3.618088 1103.316
+178567.0633628119 3.618088 1103.3555
+178568.0633629162 3.6180487 1103.316
+178569.0633630205 3.618088 1103.3949
+178570.0633631248 3.6181667 1103.4147
+178571.0633632292 3.618088 1103.2765
+178572.0633633335 3.6181273 1103.3555
+178573.0633634378 3.618088 1103.3752
+178574.0633635421 3.6180487 1103.3752
+178575.0633636464 3.6181273 1103.3357
+178576.0633637507 3.6182847 1103.3949
+178577.063363855 3.6181273 1103.3357
+178578.0633639593 3.618088 1103.2963
+178579.0633640636 3.6182454 1103.3555
+178580.0633641679 3.618088 1103.3752
+178581.0633642722 3.618206 1103.3949
+178582.0633643765 3.6181273 1103.3555
+178583.0633644809 3.618206 1103.3752
+178584.0633645852 3.618206 1103.2567
+178585.0633646895 3.6182454 1103.3555
+178586.0633647938 3.6181273 1103.2765
+178587.0633648981 3.6181667 1103.3357
+178588.0633650024 3.6181667 1103.3555
+178589.0633651067 3.618206 1103.2963
+178590.063365211 3.6182454 1103.2567
+178591.0633653153 3.6182454 1103.3555
+178592.0633654196 3.618206 1103.3555
+178593.0633655239 3.618206 1103.3949
+178594.0633656282 3.6182847 1103.2963
+178595.0633657326 3.6182454 1103.3949
+178596.0633658369 3.6182454 1103.3357
+178597.0633659412 3.618324 1103.3555
+178598.0633660455 3.618324 1103.3555
+178599.0633661498 3.618403 1103.3949
+178600.0633662541 3.6182847 1103.4147
+178601.0633663584 3.6182847 1103.3949
+178602.0633664627 3.618403 1103.4344
+178603.063366567 3.618403 1103.3752
+178604.0633666713 3.618403 1103.4344
+178605.0633667756 3.618403 1103.3357
+178606.0633668799 3.6183636 1103.3555
+178607.0633669843 3.6184816 1103.3357
+178608.0633670886 3.618403 1103.3949
+178609.0633671929 3.6184816 1103.3949
+178610.0633672972 3.6184816 1103.4344
+178611.0633674015 3.618403 1103.3752
+178612.0633675058 3.6184423 1103.316
+178613.0633676101 3.6184423 1103.3752
+178614.0633677144 3.6184423 1103.2369
+178615.0633678187 3.6185603 1103.4344
+178616.063367923 3.6184423 1103.3555
+178617.0633680273 3.6184423 1103.2963
+178618.0633681316 3.618521 1103.316
+178619.0633682359 3.6185603 1103.316
+178620.0633683403 3.618521 1103.2963
+178621.0633684446 3.6184423 1103.3555
+178622.0633685489 3.618521 1103.474
+178623.0633686532 3.618639 1103.3555
+178624.0633687575 3.618521 1103.2963
+178625.0633688618 3.618521 1103.2765
+178626.0633689661 3.6185603 1103.316
+178627.0633690704 3.618521 1103.3555
+178628.0633691747 3.6184816 1103.474
+178629.063369279 3.6185603 1103.2963
+178630.0633693833 3.6185997 1103.4147
+178631.0633694876 3.6185997 1103.3949
+178632.063369592 3.618639 1103.3555
+178633.0633696963 3.6186786 1103.2765
+178634.0633698006 3.618639 1103.4147
+178635.0633699049 3.6185997 1103.3357
+178636.0633700092 3.6185603 1103.3949
+178637.0633701135 3.6185997 1103.3357
+178638.0633702178 3.618639 1103.2172
+178639.0633703221 3.6186786 1103.3357
+178640.0633704264 3.618639 1103.4344
+178641.0633705307 3.6186786 1103.3555
+178642.063370635 3.6185997 1103.3555
+178643.0633707393 3.6186786 1103.316
+178644.0633708437 3.6186786 1103.2963
+178645.063370948 3.6185603 1103.4344
+178646.0633710523 3.6187179 1103.3949
+178647.0633711566 3.618639 1103.3752
+178648.0633712609 3.6187179 1103.3555
+178649.0633713652 3.6187966 1103.3752
+178650.0633714695 3.618639 1103.3357
+178651.0633715738 3.6187179 1103.4542
+178652.0633716781 3.6187572 1103.2567
+178653.0633717824 3.6187179 1103.3357
+178654.0633718867 3.6187179 1103.3949
+178655.063371991 3.6187966 1103.3752
+178656.0633720953 3.6187966 1103.3357
+178657.0633721997 3.6187966 1103.3752
+178658.063372304 3.6187572 1103.3555
+178659.0633724083 3.6188359 1103.3357
+178660.0633725126 3.6187572 1103.3752
+178661.0633726169 3.6188753 1103.2963
+178662.0633727212 3.6188753 1103.3555
+178663.0633728255 3.6187966 1103.4147
+178664.0633729298 3.6188753 1103.3357
+178665.0633730341 3.6188359 1103.3752
+178666.0633731384 3.6188753 1103.2963
+178667.0633732427 3.6188753 1103.3752
+178668.063373347 3.6188359 1103.3949
+178669.0633734514 3.6188359 1103.3357
+178670.0633735557 3.6188359 1103.3357
+178671.06337366 3.6188753 1103.3949
+178672.0633737643 3.6189146 1103.3555
+178673.0633738686 3.6189539 1103.3555
+178674.0633739729 3.6189539 1103.316
+178675.0633740772 3.6189146 1103.3949
+178676.0633741815 3.6188753 1103.3752
+178677.0633742858 3.6190329 1103.3357
+178678.0633743901 3.6189539 1103.316
+178679.0633744944 3.6189539 1103.4344
+178680.0633745987 3.6189146 1103.474
+178681.0633747031 3.6190329 1103.316
+178682.0633748074 3.6189935 1103.3752
+178683.0633749117 3.6189539 1103.316
+178684.063375016 3.6189539 1103.2567
+178685.0633751203 3.6190329 1103.3752
+178686.0633752246 3.6189539 1103.4542
+178687.0633753289 3.6190329 1103.316
+178688.0633754332 3.6190329 1103.4344
+178689.0633755375 3.6191115 1103.3357
+178690.0633756418 3.6189935 1103.4147
+178691.0633757461 3.6190722 1103.3752
+178692.0633758504 3.6190722 1103.3357
+178693.0633759547 3.6191115 1103.3357
+178694.0633760591 3.6191115 1103.3357
+178695.0633761634 3.6190722 1103.2963
+178696.0633762677 3.6191902 1103.3949
+178697.063376372 3.6191115 1103.3555
+178698.0633764763 3.6191509 1103.3752
+178699.0633765806 3.6191115 1103.3949
+178700.0633766849 3.6191115 1103.4147
+178701.0633767892 3.6191115 1103.3752
+178702.0633768935 3.6191509 1103.3752
+178703.0633769978 3.6191902 1103.2963
+178704.0633771021 3.6191115 1103.4344
+178705.0633772064 3.6191902 1103.3752
+178706.0633773108 3.6191902 1103.3555
+178707.0633774151 3.6192296 1103.3357
+178708.0633775194 3.6191115 1103.3949
+178709.0633776237 3.6191902 1103.3357
+178710.063377728 3.6192296 1103.3752
+178711.0633778323 3.6191902 1103.3949
+178712.0633779366 3.6192691 1103.316
+178713.0633780409 3.6192691 1103.3357
+178714.0633781452 3.6192296 1103.3752
+178715.0633782495 3.6191902 1103.3752
+178716.0633783538 3.6192296 1103.4147
+178717.0633784581 3.6192296 1103.3949
+178718.0633785625 3.6193085 1103.3752
+178719.0633786668 3.6193085 1103.3949
+178720.0633787711 3.6192691 1103.3949
+178721.0633788754 3.6193871 1103.3555
+178722.0633789797 3.6193871 1103.3949
+178723.063379084 3.6192296 1103.3949
+178724.0633791883 3.6193085 1103.4147
+178725.0633792926 3.6194265 1103.4542
+178726.0633793969 3.6193871 1103.2963
+178727.0633795012 3.6193085 1103.4344
+178728.0633796055 3.6193085 1103.3357
+178729.0633797098 3.6193478 1103.3752
+178730.0633798142 3.6193478 1103.3949
+178731.0633799185 3.6193478 1103.3357
+178732.0633800228 3.6194658 1103.3555
+178733.0633801271 3.6194658 1103.3949
+178734.0633802314 3.6194265 1103.3357
+178735.0633803357 3.6193871 1103.2963
+178736.06338044 3.6194658 1103.3949
+178737.0633805443 3.6194658 1103.4147
+178738.0633806486 3.6193871 1103.2963
+178739.0633807529 3.6194658 1103.2963
+178740.0633808572 3.6195052 1103.3357
+178741.0633809615 3.6195445 1103.3752
+178742.0633810658 3.6195445 1103.4147
+178743.0633811702 3.6194265 1103.3357
+178744.0633812745 3.6195841 1103.316
+178745.0633813788 3.6195445 1103.3752
+178746.0633814831 3.6194658 1103.4147
+178747.0633815874 3.6195052 1103.3555
+178748.0633816917 3.6195445 1103.3752
+178749.063381796 3.6194265 1103.3357
+178750.0633819003 3.6194658 1103.3357
+178751.0633820046 3.6194265 1103.3555
+178752.0633821089 3.6195052 1103.3949
+178753.0633822132 3.6195052 1103.3752
+178754.0633823175 3.6195841 1103.4147
+178755.0633824219 3.6196234 1103.3357
+178756.0633825262 3.6196234 1103.3357
+178757.0633826305 3.6195445 1103.3357
+178758.0633827348 3.6195841 1103.3752
+178759.0633828391 3.6195052 1103.3752
+178760.0633829434 3.6195841 1103.3752
+178761.0633830477 3.6195841 1103.2963
+178762.063383152 3.6197414 1103.3752
+178763.0633832563 3.6197414 1103.3949
+178764.0633833606 3.6197021 1103.3752
+178765.0633834649 3.6197021 1103.316
+178766.0633835692 3.6197021 1103.3555
+178767.0633836736 3.6196628 1103.3752
+178768.0633837779 3.6196628 1103.2963
+178769.0633838822 3.6196628 1103.316
+178770.0633839865 3.6196234 1103.2963
+178771.0633840908 3.6197414 1103.2765
+178772.0633841951 3.6197021 1103.3555
+178773.0633842994 3.6196234 1103.4344
+178774.0633844037 3.6197021 1103.3752
+178775.063384508 3.6197414 1103.3752
+178776.0633846123 3.6198201 1103.3752
+178777.0633847166 3.6197808 1103.2963
+178778.0633848209 3.6197808 1103.3949
+178779.0633849252 3.6197021 1103.3555
+178780.0633850296 3.6197021 1103.3555
+178781.0633851339 3.6198201 1103.474
+178782.0633852382 3.6197808 1103.316
+178783.0633853425 3.6197414 1103.3949
+178784.0633854468 3.6198201 1103.316
+178785.0633855511 3.6198595 1103.3752
+178786.0633856554 3.6199384 1103.3752
+178787.0633857597 3.619899 1103.316
+178788.063385864 3.6198595 1103.3357
+178789.0633859683 3.6198595 1103.3949
+178790.0633860726 3.6197414 1103.3357
+178791.0633861769 3.6198595 1103.3752
+178792.0633862813 3.6197808 1103.3949
+178793.0633863856 3.6198595 1103.3555
+178794.0633864899 3.6199384 1103.3357
+178795.0633865942 3.6198595 1103.3752
+178796.0633866985 3.6199384 1103.2963
+178797.0633868028 3.619899 1103.316
+178798.0633869071 3.6199384 1103.3752
+178799.0633870114 3.6199384 1103.4147
+178800.0633871157 3.6199384 1103.3949
+178801.06338722 3.6199777 1103.4542
+178802.0633873243 3.6199777 1103.3555
+178803.0633874286 3.6199777 1103.3752
+178804.063387533 3.6199777 1103.4542
+178805.0633876373 3.6200564 1103.3752
+178806.0633877416 3.6200564 1103.4147
+178807.0633878459 3.6200171 1103.4344
+178808.0633879502 3.6200564 1103.316
+178809.0633880545 3.6200171 1103.2963
+178810.0633881588 3.6200171 1103.4147
+178811.0633882631 3.6200171 1103.316
+178812.0633883674 3.6199384 1103.3752
+178813.0633884717 3.6200171 1103.3752
+178814.063388576 3.6200564 1103.2963
+178815.0633886803 3.6200957 1103.3949
+178816.0633887846 3.6200957 1103.3752
+178817.063388889 3.6200957 1103.474
+178818.0633889933 3.6200957 1103.3752
+178819.0633890976 3.6201744 1103.4344
+178820.0633892019 3.6200957 1103.3752
+178821.0633893062 3.6200171 1103.4542
+178822.0633894105 3.6201744 1103.316
+178823.0633895148 3.6201744 1103.3555
+178824.0633896191 3.6201351 1103.3949
+178825.0633897234 3.6202533 1103.3555
+178826.0633898277 3.6200957 1103.316
+178827.063389932 3.6201351 1103.3357
+178828.0633900363 3.6202533 1103.316
+178829.0633901407 3.6202533 1103.2172
+178830.063390245 3.6201351 1103.3949
+178831.0633903493 3.6201744 1103.2765
+178832.0633904536 3.6202927 1103.3555
+178833.0633905579 3.6202533 1103.3555
+178834.0633906622 3.6202533 1103.2567
+178835.0633907665 3.6202927 1103.3357
+178836.0633908708 3.6201744 1103.3752
+178837.0633909751 3.620214 1103.316
+178838.0633910794 3.620332 1103.2963
+178839.0633911837 3.6202533 1103.316
+178840.063391288 3.6202533 1103.3555
+178841.0633913924 3.620332 1103.3555
+178842.0633914967 3.620332 1103.4344
+178843.063391601 3.620332 1103.3752
+178844.0633917053 3.620332 1103.3752
+178845.0633918096 3.6202927 1103.3555
+178846.0633919139 3.6203713 1103.3949
+178847.0633920182 3.620332 1103.3949
+178848.0633921225 3.6202927 1103.3949
+178849.0633922268 3.6202927 1103.316
+178850.0633923311 3.6202927 1103.3357
+178851.0633924354 3.62045 1103.3752
+178852.0633925397 3.62045 1103.2963
+178853.0633926441 3.6204107 1103.3555
+178854.0633927484 3.6202927 1103.3555
+178855.0633928527 3.6203713 1103.316
+178856.063392957 3.620332 1103.3752
+178857.0633930613 3.6204894 1103.3555
+178858.0633931656 3.6203713 1103.2567
+178859.0633932699 3.6205289 1103.3555
+178860.0633933742 3.6205289 1103.4344
+178861.0633934785 3.6204894 1103.3949
+178862.0633935828 3.6204107 1103.3949
+178863.0633936871 3.6204894 1103.3357
+178864.0633937914 3.62045 1103.3752
+178865.0633938957 3.62045 1103.316
+178866.0633940001 3.6205289 1103.3555
+178867.0633941044 3.6206863 1103.3555
+178868.0633942087 3.6205289 1103.4344
+178869.063394313 3.62045 1103.3752
+178870.0633944173 3.6205683 1103.3357
+178871.0633945216 3.6205289 1103.3752
+178872.0633946259 3.6205289 1103.3357
+178873.0633947302 3.6205683 1103.3357
+178874.0633948345 3.6205289 1103.3752
+178875.0633949388 3.620765 1103.3752
+178876.0633950431 3.620647 1103.3555
+178877.0633951474 3.6206076 1103.316
+178878.0633952518 3.6205683 1103.3555
+178879.0633953561 3.6205289 1103.316
+178880.0633954604 3.6205683 1103.4147
+178881.0633955647 3.6205683 1103.3752
+178882.063395669 3.6205683 1103.3555
+178883.0633957733 3.6204894 1103.4147
+178884.0633958776 3.6206076 1103.3949
+178885.0633959819 3.620647 1103.2963
+178886.0633960862 3.6207256 1103.2765
+178887.0633961905 3.6206076 1103.3555
+178888.0633962948 3.6206863 1103.3752
+178889.0633963991 3.620647 1103.3555
+178890.0633965035 3.6205683 1103.3555
+178891.0633966078 3.6206863 1103.3752
+178892.0633967121 3.6206863 1103.3752
+178893.0633968164 3.6207256 1103.4147
+178894.0633969207 3.620765 1103.4344
+178895.063397025 3.620765 1103.2963
+178896.0633971293 3.6207256 1103.3752
+178897.0633972336 3.6207256 1103.2963
+178898.0633973379 3.6207256 1103.316
+178899.0633974422 3.6208043 1103.3357
+178900.0633975465 3.6207256 1103.316
+178901.0633976508 3.6207256 1103.3555
+178902.0633977551 3.620765 1103.316
+178903.0633978595 3.6208439 1103.2963
+178904.0633979638 3.6207256 1103.3752
+178905.0633980681 3.6208832 1103.4147
+178906.0633981724 3.6209226 1103.4147
+178907.0633982767 3.6207256 1103.4147
+178908.063398381 3.620765 1103.4147
+178909.0633984853 3.6208043 1103.3949
+178910.0633985896 3.6208439 1103.3949
+178911.0633986939 3.6208043 1103.4147
+178912.0633987982 3.6208043 1103.2963
+178913.0633989025 3.6209226 1103.3752
+178914.0633990068 3.6208043 1103.4147
+178915.0633991112 3.6209226 1103.2765
+178916.0633992155 3.6208043 1103.2765
+178917.0633993198 3.6208439 1103.2963
+178918.0633994241 3.6208439 1103.3752
+178919.0633995284 3.6208832 1103.316
+178920.0633996327 3.6208043 1103.2369
+178921.063399737 3.6210012 1103.3752
+178922.0633998413 3.6208832 1103.3357
+178923.0633999456 3.6208439 1103.3752
+178924.0634000499 3.6208832 1103.3949
+178925.0634001542 3.6210406 1103.3949
+178926.0634002585 3.6209619 1103.3949
+178927.0634003629 3.6209226 1103.4147
+178928.0634004672 3.6210406 1103.3357
+178929.0634005715 3.6210012 1103.2963
+178930.0634006758 3.6210406 1103.316
+178931.0634007801 3.6210012 1103.3555
+178932.0634008844 3.6209226 1103.2963
+178933.0634009887 3.6210799 1103.3949
+178934.063401093 3.6210799 1103.316
+178935.0634011973 3.6210012 1103.4344
+178936.0634013016 3.6209619 1103.3949
+178937.0634014059 3.6210012 1103.4147
+178938.0634015102 3.6210406 1103.3357
+178939.0634016145 3.6210406 1103.3555
+178940.0634017189 3.6209619 1103.4344
+178941.0634018232 3.6209619 1103.3752
+178942.0634019275 3.6211195 1103.4147
+178943.0634020318 3.6210012 1103.3949
+178944.0634021361 3.6211195 1103.316
+178945.0634022404 3.6210799 1103.4147
+178946.0634023447 3.6209619 1103.3555
+178947.063402449 3.6211195 1103.3357
+178948.0634025533 3.6210799 1103.4147
+178949.0634026576 3.6210406 1103.4344
+178950.0634027619 3.6211195 1103.4147
+178951.0634028662 3.6211588 1103.4344
+178952.0634029706 3.6211195 1103.4344
+178953.0634030749 3.6211195 1103.2765
+178954.0634031792 3.6211588 1103.4147
+178955.0634032835 3.6211982 1103.316
+178956.0634033878 3.6212375 1103.3555
+178957.0634034921 3.6211195 1103.3357
+178958.0634035964 3.6210799 1103.316
+178959.0634037007 3.6211588 1103.3752
+178960.063403805 3.6211195 1103.3357
+178961.0634039093 3.6212375 1103.316
+178962.0634040136 3.6211588 1103.3357
+178963.0634041179 3.6211195 1103.3752
+178964.0634042223 3.6212375 1103.3555
+178965.0634043266 3.6212769 1103.3357
+178966.0634044309 3.6211982 1103.3555
+178967.0634045352 3.6211982 1103.3555
+178968.0634046395 3.6213162 1103.316
+178969.0634047438 3.6211982 1103.3357
+178970.0634048481 3.6211588 1103.3949
+178971.0634049524 3.6212375 1103.3555
+178972.0634050567 3.6213162 1103.3752
+178973.063405161 3.6213949 1103.316
+178974.0634052653 3.6212769 1103.3752
+178975.0634053696 3.6213555 1103.3357
+178976.0634054739 3.6212375 1103.316
+178977.0634055783 3.6212769 1103.3752
+178978.0634056826 3.6211982 1103.3555
+178979.0634057869 3.6213555 1103.3357
+178980.0634058912 3.6213162 1103.316
+178981.0634059955 3.6213162 1103.4147
+178982.0634060998 3.6213162 1103.4938
+178983.0634062041 3.6213555 1103.316
+178984.0634063084 3.6214345 1103.3357
+178985.0634064127 3.6212769 1103.3752
+178986.063406517 3.6212769 1103.3357
+178987.0634066213 3.6213949 1103.316
+178988.0634067256 3.6213949 1103.3555
+178989.06340683 3.6213949 1103.2765
+178990.0634069343 3.6213555 1103.3752
+178991.0634070386 3.6214738 1103.4147
+178992.0634071429 3.6214345 1103.3357
+178993.0634072472 3.6214738 1103.3949
+178994.0634073515 3.6214738 1103.3949
+178995.0634074558 3.6213949 1103.3752
+178996.0634075601 3.6215525 1103.4147
+178997.0634076644 3.6214738 1103.3555
+178998.0634077687 3.6215131 1103.3752
+178999.063407873 3.6214738 1103.3357
+179000.0634079773 3.6214738 1103.4147
+179001.0634080817 3.6215131 1103.3357
+179002.063408186 3.6215131 1103.2963
+179003.0634082903 3.6215918 1103.4147
+179004.0634083946 3.6215131 1103.316
+179005.0634084989 3.6215525 1103.316
+179006.0634086032 3.6215131 1103.3555
+179007.0634087075 3.6215131 1103.2963
+179008.0634088118 3.6215525 1103.3555
+179009.0634089161 3.6214738 1103.316
+179010.0634090204 3.6215525 1103.3949
+179011.0634091247 3.6215918 1103.316
+179012.063409229 3.6215131 1103.3949
+179013.0634093334 3.6215918 1103.3752
+179014.0634094377 3.6215525 1103.3555
+179015.063409542 3.6215525 1103.3949
+179016.0634096463 3.6215131 1103.3752
+179017.0634097506 3.6216311 1103.3357
+179018.0634098549 3.6215131 1103.3555
+179019.0634099592 3.6216311 1103.3752
+179020.0634100635 3.6215525 1103.3949
+179021.0634101678 3.6215525 1103.3357
+179022.0634102721 3.6217098 1103.3752
+179023.0634103764 3.6216705 1103.3555
+179024.0634104807 3.6216311 1103.2963
+179025.063410585 3.6217494 1103.316
+179026.0634106894 3.6216705 1103.3949
+179027.0634107937 3.6217494 1103.3357
+179028.063410898 3.6216311 1103.3357
+179029.0634110023 3.6216705 1103.3949
+179030.0634111066 3.6217494 1103.2765
+179031.0634112109 3.6217098 1103.3357
+179032.0634113152 3.6217098 1103.316
+179033.0634114195 3.6217887 1103.3555
+179034.0634115238 3.6217494 1103.4147
+179035.0634116281 3.6217098 1103.3357
+179036.0634117324 3.6216311 1103.2765
+179037.0634118367 3.6218281 1103.4344
+179038.0634119411 3.6217098 1103.4147
+179039.0634120454 3.6218281 1103.2963
+179040.0634121497 3.6217887 1103.2567
+179041.063412254 3.6217887 1103.4147
+179042.0634123583 3.6217887 1103.3949
+179043.0634124626 3.6217887 1103.316
+179044.0634125669 3.6218674 1103.4147
+179045.0634126712 3.6218674 1103.3555
+179046.0634127755 3.6218674 1103.3949
+179047.0634128798 3.6219068 1103.4147
+179048.0634129841 3.6218281 1103.2765
+179049.0634130884 3.6218281 1103.3357
+179050.0634131928 3.6218281 1103.3555
+179051.0634132971 3.6217494 1103.3752
+179052.0634134014 3.6217494 1103.2963
+179053.0634135057 3.6218281 1103.2963
+179054.06341361 3.6218674 1103.2765
+179055.0634137143 3.6219068 1103.3555
+179056.0634138186 3.6219461 1103.4147
+179057.0634139229 3.6218674 1103.2369
+179058.0634140272 3.6219068 1103.3752
+179059.0634141315 3.6219068 1103.3949
+179060.0634142358 3.6218674 1103.3555
+179061.0634143401 3.6219068 1103.3752
+179062.0634144444 3.6218674 1103.316
+179063.0634145488 3.6219068 1103.3752
+179064.0634146531 3.6219854 1103.3949
+179065.0634147574 3.6220248 1103.316
+179066.0634148617 3.6220248 1103.316
+179067.063414966 3.6220248 1103.3555
+179068.0634150703 3.6220248 1103.316
+179069.0634151746 3.6219461 1103.3555
+179070.0634152789 3.6219461 1103.316
+179071.0634153832 3.6220248 1103.3555
+179072.0634154875 3.6220248 1103.316
+179073.0634155918 3.6220248 1103.4147
+179074.0634156961 3.6220248 1103.3357
+179075.0634158005 3.6222217 1103.4147
+179076.0634159048 3.6220644 1103.4344
+179077.0634160091 3.6220644 1103.3752
+179078.0634161134 3.6220248 1103.474
+179079.0634162177 3.622143 1103.3357
+179080.063416322 3.6221824 1103.3752
+179081.0634164263 3.6220644 1103.3555
+179082.0634165306 3.622143 1103.3949
+179083.0634166349 3.6221037 1103.3752
+179084.0634167392 3.622143 1103.3357
+179085.0634168435 3.6220644 1103.316
+179086.0634169478 3.6221824 1103.2765
+179087.0634170522 3.6220248 1103.474
+179088.0634171565 3.6220248 1103.316
+179089.0634172608 3.6219854 1103.4147
+179090.0634173651 3.6222217 1103.2765
+179091.0634174694 3.622143 1103.4147
+179092.0634175737 3.6221037 1103.3752
+179093.063417678 3.6221824 1103.3949
+179094.0634177823 3.6221824 1103.3752
+179095.0634178866 3.6220644 1103.2765
+179096.0634179909 3.6221037 1103.4147
+179097.0634180952 3.6222217 1103.3357
+179098.0634181995 3.6221037 1103.4542
+179099.0634183038 3.622261 1103.3555
+179100.0634184082 3.6221824 1103.3949
+179101.0634185125 3.6223793 1103.3949
+179102.0634186168 3.6221824 1103.3357
+179103.0634187211 3.6222217 1103.3555
+179104.0634188254 3.6222217 1103.3555
+179105.0634189297 3.6222217 1103.3949
+179106.063419034 3.622261 1103.3357
+179107.0634191383 3.6223004 1103.3752
+179108.0634192426 3.6222217 1103.316
+179109.0634193469 3.622261 1103.4344
+179110.0634194512 3.622261 1103.3949
+179111.0634195555 3.6223004 1103.3752
+179112.0634196599 3.6222217 1103.316
+179113.0634197642 3.6223004 1103.4147
+179114.0634198685 3.6222217 1103.3752
+179115.0634199728 3.6223004 1103.2963
+179116.0634200771 3.6223004 1103.2765
+179117.0634201814 3.6222217 1103.3555
+179118.0634202857 3.6223004 1103.3555
+179119.06342039 3.6223004 1103.3555
+179120.0634204943 3.6223397 1103.3555
+179121.0634205986 3.6223793 1103.3555
+179122.0634207029 3.6223004 1103.3555
+179123.0634208072 3.6223004 1103.4542
+179124.0634209116 3.6224186 1103.3949
+179125.0634210159 3.6223793 1103.474
+179126.0634211202 3.6224973 1103.3752
+179127.0634212245 3.6224186 1103.3752
+179128.0634213288 3.6223793 1103.4147
+179129.0634214331 3.6223397 1103.3357
+179130.0634215374 3.6223397 1103.2567
+179131.0634216417 3.622458 1103.316
+179132.063421746 3.6223793 1103.3555
+179133.0634218503 3.6224186 1103.4344
+179134.0634219546 3.622458 1103.3752
+179135.0634220589 3.6224973 1103.3357
+179136.0634221633 3.6223793 1103.3949
+179137.0634222676 3.622458 1103.3357
+179138.0634223719 3.6224186 1103.3752
+179139.0634224762 3.622458 1103.3752
+179140.0634225805 3.622576 1103.3949
+179141.0634226848 3.622576 1103.316
+179142.0634227891 3.622458 1103.3752
+179143.0634228934 3.6224186 1103.3555
+179144.0634229977 3.6224973 1103.474
+179145.063423102 3.6224973 1103.3752
+179146.0634232063 3.6223793 1103.3357
+179147.0634233106 3.622576 1103.3357
+179148.0634234149 3.622458 1103.3555
+179149.0634235193 3.622576 1103.4147
+179150.0634236236 3.6224973 1103.2963
+179151.0634237279 3.622576 1103.316
+179152.0634238322 3.622458 1103.4147
+179153.0634239365 3.6224973 1103.4344
+179154.0634240408 3.6224973 1103.2963
+179155.0634241451 3.6225367 1103.3949
+179156.0634242494 3.622576 1103.3555
+179157.0634243537 3.6226153 1103.4147
+179158.063424458 3.6225367 1103.3949
+179159.0634245623 3.6226153 1103.3357
+179160.0634246666 3.622576 1103.2765
+179161.063424771 3.6225367 1103.4344
+179162.0634248753 3.6226153 1103.316
+179163.0634249796 3.6225367 1103.316
+179164.0634250839 3.6226943 1103.3949
+179165.0634251882 3.6226547 1103.3555
+179166.0634252925 3.6226547 1103.3555
+179167.0634253968 3.6226943 1103.2963
+179168.0634255011 3.622576 1103.3949
+179169.0634256054 3.6226547 1103.3949
+179170.0634257097 3.6226547 1103.3357
+179171.063425814 3.6226547 1103.2963
+179172.0634259183 3.6227336 1103.3357
+179173.0634260227 3.6226943 1103.3949
+179174.063426127 3.6226547 1103.316
+179175.0634262313 3.6226547 1103.3752
+179176.0634263356 3.6226943 1103.4147
+179177.0634264399 3.6226943 1103.4147
+179178.0634265442 3.6226153 1103.3357
+179179.0634266485 3.6226943 1103.3752
+179180.0634267528 3.6227336 1103.3555
+179181.0634268571 3.6227729 1103.316
+179182.0634269614 3.6226547 1103.4344
+179183.0634270657 3.6227729 1103.316
+179184.06342717 3.6226943 1103.2963
+179185.0634272743 3.6227729 1103.3949
+179186.0634273787 3.6226943 1103.316
+179187.063427483 3.6227336 1103.3357
+179188.0634275873 3.6228123 1103.3555
+179189.0634276916 3.6228123 1103.3949
+179190.0634277959 3.6227729 1103.3555
+179191.0634279002 3.6227336 1103.3357
+179192.0634280045 3.6227729 1103.3555
+179193.0634281088 3.6228123 1103.2765
+179194.0634282131 3.6227729 1103.3949
+179195.0634283174 3.6228516 1103.3752
+179196.0634284217 3.6227336 1103.3752
+179197.063428526 3.6227729 1103.3949
+179198.0634286304 3.6227729 1103.4344
+179199.0634287347 3.6228909 1103.3555
+179200.063428839 3.6228516 1103.3357
+179201.0634289433 3.6227729 1103.3357
+179202.0634290476 3.6228123 1103.316
+179203.0634291519 3.6228123 1103.3949
+179204.0634292562 3.6228909 1103.4147
+179205.0634293605 3.6228516 1103.3357
+179206.0634294648 3.6228123 1103.316
+179207.0634295691 3.6228516 1103.2765
+179208.0634296734 3.6229303 1103.3949
+179209.0634297777 3.6228909 1103.2765
+179210.0634298821 3.6229699 1103.3949
+179211.0634299864 3.6228909 1103.4147
+179212.0634300907 3.6228909 1103.2963
+179213.063430195 3.6229699 1103.2369
+179214.0634302993 3.6229699 1103.3752
+179215.0634304036 3.6229699 1103.4542
+179216.0634305079 3.6230092 1103.3949
+179217.0634306122 3.6229699 1103.2963
+179218.0634307165 3.6228516 1103.3555
+179219.0634308208 3.6230092 1103.3752
+179220.0634309251 3.6230879 1103.3752
+179221.0634310294 3.6230485 1103.3555
+179222.0634311337 3.6230485 1103.3752
+179223.0634312381 3.6229303 1103.4147
+179224.0634313424 3.6229699 1103.3752
+179225.0634314467 3.6230092 1103.3949
+179226.063431551 3.6230092 1103.3949
+179227.0634316553 3.6230485 1103.3752
+179228.0634317596 3.6230092 1103.2765
+179229.0634318639 3.6229699 1103.4344
+179230.0634319682 3.6230879 1103.4147
+179231.0634320725 3.6230485 1103.4147
+179232.0634321768 3.6230092 1103.3357
+179233.0634322811 3.6230485 1103.3949
+179234.0634323854 3.6230092 1103.316
+179235.0634324898 3.6230092 1103.3555
+179236.0634325941 3.6231272 1103.3752
+179237.0634326984 3.6231272 1103.3752
+179238.0634328027 3.6230879 1103.3357
+179239.063432907 3.6231272 1103.3949
+179240.0634330113 3.6231272 1103.3949
+179241.0634331156 3.6231272 1103.4344
+179242.0634332199 3.6230485 1103.3949
+179243.0634333242 3.6231666 1103.3555
+179244.0634334285 3.6230879 1103.3752
+179245.0634335328 3.6232452 1103.316
+179246.0634336371 3.6231272 1103.3752
+179247.0634337415 3.6232059 1103.3357
+179248.0634338458 3.6232059 1103.3752
+179249.0634339501 3.6233242 1103.316
+179250.0634340544 3.6232059 1103.316
+179251.0634341587 3.6232059 1103.3555
+179252.063434263 3.6232848 1103.3752
+179253.0634343673 3.6232848 1103.316
+179254.0634344716 3.6232848 1103.3357
+179255.0634345759 3.6231666 1103.2567
+179256.0634346802 3.6232848 1103.2963
+179257.0634347845 3.6232452 1103.3949
+179258.0634348888 3.6233242 1103.4344
+179259.0634349932 3.6234422 1103.2765
+179260.0634350975 3.6232452 1103.4147
+179261.0634352018 3.6233635 1103.3555
+179262.0634353061 3.6233242 1103.316
+179263.0634354104 3.6232848 1103.2963
+179264.0634355147 3.6232848 1103.3949
+179265.063435619 3.6233635 1103.4147
+179266.0634357233 3.6234028 1103.3752
+179267.0634358276 3.6234028 1103.316
+179268.0634359319 3.6233242 1103.3949
+179269.0634360362 3.6233635 1103.4147
+179270.0634361405 3.6234028 1103.3357
+179271.0634362448 3.6234815 1103.3752
+179272.0634363492 3.6234422 1103.3752
+179273.0634364535 3.6234028 1103.3357
+179274.0634365578 3.6234422 1103.3949
+179275.0634366621 3.6234815 1103.3949
+179276.0634367664 3.6235998 1103.3555
+179277.0634368707 3.6235998 1103.3555
+179278.063436975 3.6235602 1103.3555
+179279.0634370793 3.6234815 1103.3752
+179280.0634371836 3.6235209 1103.3555
+179281.0634372879 3.6235602 1103.3555
+179282.0634373922 3.6234815 1103.4147
+179283.0634374965 3.6234422 1103.3555
+179284.0634376009 3.6235998 1103.4344
+179285.0634377052 3.6234422 1103.4147
+179286.0634378095 3.6235602 1103.3357
+179287.0634379138 3.6236391 1103.4344
+179288.0634380181 3.6235602 1103.3752
+179289.0634381224 3.6236391 1103.3357
+179290.0634382267 3.6236391 1103.3752
+179291.063438331 3.6236391 1103.2963
+179292.0634384353 3.6235602 1103.3357
+179293.0634385396 3.6235998 1103.3357
+179294.0634386439 3.6237571 1103.316
+179295.0634387482 3.6236391 1103.3555
+179296.0634388526 3.6236784 1103.3752
+179297.0634389569 3.6236784 1103.316
+179298.0634390612 3.6236784 1103.2963
+179299.0634391655 3.6236784 1103.3949
+179300.0634392698 3.6236391 1103.3555
+179301.0634393741 3.6236391 1103.3752
+179302.0634394784 3.6236784 1103.3357
+179303.0634395827 3.6236784 1103.4147
+179304.063439687 3.6237965 1103.3357
+179305.0634397913 3.6237965 1103.316
+179306.0634398956 3.6237571 1103.3752
+179307.0634399999 3.6236784 1103.3357
+179308.0634401042 3.6236784 1103.3555
+179309.0634402086 3.6237571 1103.3357
+179310.0634403129 3.6237571 1103.316
+179311.0634404172 3.6236784 1103.3357
+179312.0634405215 3.6236784 1103.3555
+179313.0634406258 3.6238751 1103.3555
+179314.0634407301 3.6238358 1103.3555
+179315.0634408344 3.6238358 1103.4542
+179316.0634409387 3.6237965 1103.3949
+179317.063441043 3.6237571 1103.3752
+179318.0634411473 3.6238358 1103.3555
+179319.0634412516 3.6239147 1103.3555
+179320.0634413559 3.6237965 1103.2963
+179321.0634414603 3.6238751 1103.2963
+179322.0634415646 3.6239541 1103.3949
+179323.0634416689 3.6238751 1103.3949
+179324.0634417732 3.6238358 1103.4147
+179325.0634418775 3.6238358 1103.3949
+179326.0634419818 3.6239541 1103.316
+179327.0634420861 3.6239541 1103.3752
+179328.0634421904 3.6238751 1103.4344
+179329.0634422947 3.6239147 1103.3949
+179330.063442399 3.6239934 1103.3752
+179331.0634425033 3.6239147 1103.3949
+179332.0634426076 3.6238751 1103.3752
+179333.063442712 3.6238751 1103.3949
+179334.0634428163 3.6239934 1103.3357
+179335.0634429206 3.6239934 1103.3949
+179336.0634430249 3.6239934 1103.3949
+179337.0634431292 3.6240327 1103.3555
+179338.0634432335 3.6239934 1103.3555
+179339.0634433378 3.6240721 1103.3949
+179340.0634434421 3.6240327 1103.4344
+179341.0634435464 3.6239541 1103.4542
+179342.0634436507 3.6239934 1103.3949
+179343.063443755 3.6240721 1103.316
+179344.0634438593 3.6240721 1103.2765
+179345.0634439636 3.6240327 1103.3752
+179346.063444068 3.6240721 1103.316
+179347.0634441723 3.6239934 1103.3555
+179348.0634442766 3.6241114 1103.3357
+179349.0634443809 3.6240327 1103.4542
+179350.0634444852 3.6240721 1103.4147
+179351.0634445895 3.6240721 1103.4344
+179352.0634446938 3.6240327 1103.3357
+179353.0634447981 3.6241114 1103.3555
+179354.0634449024 3.6241508 1103.3752
+179355.0634450067 3.6241508 1103.3752
+179356.063445111 3.6241901 1103.4147
+179357.0634452153 3.6243083 1103.3752
+179358.0634453197 3.6242297 1103.4344
+179359.063445424 3.6241901 1103.3357
+179360.0634455283 3.6241901 1103.2765
+179361.0634456326 3.624269 1103.2963
+179362.0634457369 3.624269 1103.2963
+179363.0634458412 3.624269 1103.3555
+179364.0634459455 3.6241508 1103.3357
+179365.0634460498 3.624269 1103.3357
+179366.0634461541 3.6243083 1103.316
+179367.0634462584 3.6242297 1103.3555
+179368.0634463627 3.6241901 1103.3949
+179369.063446467 3.6243477 1103.316
+179370.0634465714 3.6242297 1103.3357
+179371.0634466757 3.624387 1103.3949
+179372.06344678 3.624269 1103.4147
+179373.0634468843 3.624269 1103.316
+179374.0634469886 3.624387 1103.3555
+179375.0634470929 3.624387 1103.3357
+179376.0634471972 3.6243477 1103.3357
+179377.0634473015 3.6243083 1103.2963
+179378.0634474058 3.6243083 1103.2963
+179379.0634475101 3.6243083 1103.3752
+179380.0634476144 3.6244264 1103.3949
+179381.0634477187 3.624387 1103.4147
+179382.0634478231 3.6243477 1103.3949
+179383.0634479274 3.6243477 1103.3752
+179384.0634480317 3.6244657 1103.3555
+179385.063448136 3.624505 1103.3752
+179386.0634482403 3.6243477 1103.3752
+179387.0634483446 3.6243477 1103.3949
+179388.0634484489 3.6244657 1103.4147
+179389.0634485532 3.6244264 1103.3357
+179390.0634486575 3.6244264 1103.4542
+179391.0634487618 3.6244657 1103.3949
+179392.0634488661 3.6244264 1103.3949
+179393.0634489704 3.6244657 1103.316
+179394.0634490747 3.6244264 1103.3555
+179395.0634491791 3.6244264 1103.3555
+179396.0634492834 3.6244657 1103.4147
+179397.0634493877 3.624505 1103.316
+179398.063449492 3.624505 1103.3752
+179399.0634495963 3.624505 1103.316
+179400.0634497006 3.6245446 1103.3357
+179401.0634498049 3.6245446 1103.316
+179402.0634499092 3.624505 1103.3357
+179403.0634500135 3.6245446 1103.316
+179404.0634501178 3.624584 1103.3752
+179405.0634502221 3.6245446 1103.3949
+179406.0634503264 3.6245446 1103.2963
+179407.0634504308 3.6245446 1103.3357
+179408.0634505351 3.6244657 1103.4344
+179409.0634506394 3.624584 1103.3357
+179410.0634507437 3.6246233 1103.2963
+179411.063450848 3.624505 1103.4147
+179412.0634509523 3.6246626 1103.3357
+179413.0634510566 3.624584 1103.4344
+179414.0634511609 3.6246626 1103.3555
+179415.0634512652 3.6246626 1103.3357
+179416.0634513695 3.6246233 1103.3752
+179417.0634514738 3.6246626 1103.3949
+179418.0634515781 3.624702 1103.3357
+179419.0634516825 3.6246626 1103.3555
+179420.0634517868 3.6246626 1103.3555
+179421.0634518911 3.624702 1103.3949
+179422.0634519954 3.6246626 1103.4147
+179423.0634520997 3.624702 1103.316
+179424.063452204 3.6247413 1103.3357
+179425.0634523083 3.6247413 1103.3949
+179426.0634524126 3.6248202 1103.3752
+179427.0634525169 3.6247413 1103.3949
+179428.0634526212 3.6247807 1103.316
+179429.0634527255 3.6249382 1103.3555
+179430.0634528298 3.6248202 1103.2963
+179431.0634529341 3.6248596 1103.3752
+179432.0634530385 3.6247413 1103.3949
+179433.0634531428 3.6248202 1103.3949
+179434.0634532471 3.6248202 1103.3357
+179435.0634533514 3.624702 1103.316
+179436.0634534557 3.6248202 1103.3555
+179437.06345356 3.6248202 1103.2765
+179438.0634536643 3.6248989 1103.2963
+179439.0634537686 3.6249382 1103.2963
+179440.0634538729 3.6248989 1103.2963
+179441.0634539772 3.6248596 1103.3949
+179442.0634540815 3.6248989 1103.2963
+179443.0634541858 3.6248989 1103.3752
+179444.0634542902 3.6249776 1103.316
+179445.0634543945 3.6249776 1103.2963
+179446.0634544988 3.6249382 1103.3555
+179447.0634546031 3.6249776 1103.3357
+179448.0634547074 3.6248202 1103.3949
+179449.0634548117 3.6248989 1103.316
+179450.063454916 3.6249382 1103.316
+179451.0634550203 3.6249776 1103.4147
+179452.0634551246 3.6249776 1103.3555
+179453.0634552289 3.6249382 1103.4147
+179454.0634553332 3.6250563 1103.3357
+179455.0634554375 3.6250956 1103.3357
+179456.0634555419 3.6249382 1103.4147
+179457.0634556462 3.6250956 1103.316
+179458.0634557505 3.6250169 1103.3949
+179459.0634558548 3.6250169 1103.3555
+179460.0634559591 3.6250563 1103.3357
+179461.0634560634 3.6250563 1103.3752
+179462.0634561677 3.6250563 1103.3357
+179463.063456272 3.6250563 1103.3949
+179464.0634563763 3.6250169 1103.3752
+179465.0634564806 3.6250956 1103.3357
+179466.0634565849 3.6250563 1103.3357
+179467.0634566892 3.6251352 1103.2963
+179468.0634567935 3.6250956 1103.316
+179469.0634568979 3.6250563 1103.316
+179470.0634570022 3.6251352 1103.3752
+179471.0634571065 3.6251352 1103.4542
+179472.0634572108 3.6251745 1103.3357
+179473.0634573151 3.6252139 1103.3752
+179474.0634574194 3.6252139 1103.3357
+179475.0634575237 3.6251745 1103.316
+179476.063457628 3.6251745 1103.3949
+179477.0634577323 3.6252925 1103.3949
+179478.0634578366 3.6252139 1103.316
+179479.0634579409 3.6252532 1103.316
+179480.0634580452 3.6252532 1103.3357
+179481.0634581496 3.6252532 1103.3949
+179482.0634582539 3.6252139 1103.3949
+179483.0634583582 3.6252139 1103.316
+179484.0634584625 3.6252139 1103.1777
+179485.0634585668 3.6252139 1103.2567
+179486.0634586711 3.6252925 1103.2369
+179487.0634587754 3.6252139 1103.316
+179488.0634588797 3.6252925 1103.3949
+179489.063458984 3.6252532 1103.2369
+179490.0634590883 3.6253319 1103.2567
+179491.0634591926 3.6253712 1103.3357
+179492.0634592969 3.6252925 1103.316
+179493.0634594013 3.6252925 1103.3555
+179494.0634595056 3.6253712 1103.3555
+179495.0634596099 3.6253319 1103.3357
+179496.0634597142 3.6253319 1103.3555
+179497.0634598185 3.6254106 1103.4344
+179498.0634599228 3.6253319 1103.2963
+179499.0634600271 3.6254501 1103.3555
+179500.0634601314 3.6253712 1103.2765
+179501.0634602357 3.6254895 1103.3949
+179502.06346034 3.6254501 1103.3555
+179503.0634604443 3.6254106 1103.2963
+179504.0634605486 3.6254501 1103.2567
+179505.0634606529 3.6253319 1103.3949
+179506.0634607573 3.6254895 1103.3357
+179507.0634608616 3.6254501 1103.2963
+179508.0634609659 3.6254895 1103.3949
+179509.0634610702 3.6254501 1103.3949
+179510.0634611745 3.6254895 1103.4344
+179511.0634612788 3.6255288 1103.3357
+179512.0634613831 3.6254106 1103.4147
+179513.0634614874 3.6254501 1103.2765
+179514.0634615917 3.6255288 1103.3752
+179515.063461696 3.6254895 1103.3949
+179516.0634618003 3.6254895 1103.316
+179517.0634619046 3.6256075 1103.3949
+179518.063462009 3.6255288 1103.3949
+179519.0634621133 3.6254501 1103.3949
+179520.0634622176 3.6256075 1103.316
+179521.0634623219 3.6254895 1103.4147
+179522.0634624262 3.6256075 1103.3555
+179523.0634625305 3.6255682 1103.3357
+179524.0634626348 3.6256468 1103.2765
+179525.0634627391 3.6256075 1103.3357
+179526.0634628434 3.6256468 1103.4147
+179527.0634629477 3.6255682 1103.3555
+179528.063463052 3.6255682 1103.4147
+179529.0634631563 3.6255682 1103.3752
+179530.0634632607 3.6255288 1103.2369
+179531.063463365 3.6256468 1103.3555
+179532.0634634693 3.6255288 1103.2963
+179533.0634635736 3.6256468 1103.3752
+179534.0634636779 3.6256468 1103.3752
+179535.0634637822 3.6256468 1103.3752
+179536.0634638865 3.6255682 1103.3949
+179537.0634639908 3.6256862 1103.3949
+179538.0634640951 3.6257255 1103.316
+179539.0634641994 3.6256862 1103.3555
+179540.0634643037 3.6257651 1103.3949
+179541.063464408 3.6257255 1103.3555
+179542.0634645124 3.6257651 1103.3752
+179543.0634646167 3.6257255 1103.2963
+179544.063464721 3.6258438 1103.3949
+179545.0634648253 3.6258044 1103.316
+179546.0634649296 3.6256862 1103.4147
+179547.0634650339 3.6257651 1103.2567
+179548.0634651382 3.6257651 1103.3949
+179549.0634652425 3.6257651 1103.2963
+179550.0634653468 3.6258044 1103.4344
+179551.0634654511 3.6258438 1103.2963
+179552.0634655554 3.6258438 1103.3555
+179553.0634656597 3.6257651 1103.3949
+179554.063465764 3.6258044 1103.3555
+179555.0634658684 3.6258044 1103.4344
+179556.0634659727 3.6257651 1103.3752
+179557.063466077 3.6257651 1103.4147
+179558.0634661813 3.6258831 1103.4147
+179559.0634662856 3.6256862 1103.2963
+179560.0634663899 3.6258831 1103.4542
+179561.0634664942 3.6257255 1103.2765
+179562.0634665985 3.6258044 1103.316
+179563.0634667028 3.6257651 1103.316
+179564.0634668071 3.6258044 1103.3555
+179565.0634669114 3.6258044 1103.4344
+179566.0634670157 3.6258044 1103.2963
+179567.0634671201 3.6258044 1103.2963
+179568.0634672244 3.6258438 1103.316
+179569.0634673287 3.6259224 1103.3555
+179570.063467433 3.6258438 1103.3555
+179571.0634675373 3.6258438 1103.3752
+179572.0634676416 3.6258831 1103.2963
+179573.0634677459 3.6258831 1103.3949
+179574.0634678502 3.6258831 1103.2963
+179575.0634679545 3.6258438 1103.4147
+179576.0634680588 3.6260011 1103.2963
+179577.0634681631 3.6259224 1103.3752
+179578.0634682674 3.6258831 1103.4344
+179579.0634683718 3.6260405 1103.3949
+179580.0634684761 3.6258831 1103.3357
+179581.0634685804 3.6259224 1103.2963
+179582.0634686847 3.6258831 1103.3752
+179583.063468789 3.6258831 1103.3555
+179584.0634688933 3.6259224 1103.3357
+179585.0634689976 3.6261194 1103.4147
+179586.0634691019 3.6259618 1103.2963
+179587.0634692062 3.6260011 1103.3555
+179588.0634693105 3.6260405 1103.4147
+179589.0634694148 3.6259224 1103.4542
+179590.0634695191 3.6259618 1103.3949
+179591.0634696234 3.6258831 1103.316
+179592.0634697278 3.6261194 1103.3555
+179593.0634698321 3.62608 1103.316
+179594.0634699364 3.6260405 1103.2765
+179595.0634700407 3.6260405 1103.4147
+179596.063470145 3.6260405 1103.316
+179597.0634702493 3.62608 1103.3555
+179598.0634703536 3.6259618 1103.4344
+179599.0634704579 3.6260405 1103.2567
+179600.0634705622 3.6260011 1103.3555
+179601.0634706665 3.6260405 1103.2765
+179602.0634707708 3.6260011 1103.3752
+179603.0634708751 3.6260405 1103.3752
+179604.0634709795 3.62608 1103.3555
+179605.0634710838 3.6261194 1103.3357
+179606.0634711881 3.6260405 1103.3752
+179607.0634712924 3.62608 1103.316
+179608.0634713967 3.6261587 1103.4344
+179609.063471501 3.6261981 1103.3949
+179610.0634716053 3.6261194 1103.2963
+179611.0634717096 3.6260405 1103.3555
+179612.0634718139 3.6260011 1103.3555
+179613.0634719182 3.6261981 1103.316
+179614.0634720225 3.6261981 1103.3555
+179615.0634721268 3.6261587 1103.316
+179616.0634722312 3.6261587 1103.3357
+179617.0634723355 3.6261194 1103.316
+179618.0634724398 3.6262374 1103.4147
+179619.0634725441 3.6261981 1103.316
+179620.0634726484 3.6263161 1103.4344
+179621.0634727527 3.6262374 1103.3949
+179622.063472857 3.6262767 1103.3949
+179623.0634729613 3.6261981 1103.3752
+179624.0634730656 3.6261981 1103.2963
+179625.0634731699 3.6261981 1103.2765
+179626.0634732742 3.6261587 1103.3949
+179627.0634733785 3.6263161 1103.4147
+179628.0634734828 3.6263161 1103.3555
+179629.0634735872 3.6261981 1103.2567
+179630.0634736915 3.6262374 1103.4147
+179631.0634737958 3.6263556 1103.3357
+179632.0634739001 3.6262767 1103.3555
+179633.0634740044 3.6263556 1103.3752
+179634.0634741087 3.6262767 1103.3752
+179635.063474213 3.6263161 1103.4147
+179636.0634743173 3.626395 1103.3949
+179637.0634744216 3.6263161 1103.3752
+179638.0634745259 3.6263556 1103.3357
+179639.0634746302 3.6262767 1103.2963
+179640.0634747345 3.6262767 1103.3357
+179641.0634748389 3.6263161 1103.4147
+179642.0634749432 3.6263161 1103.3752
+179643.0634750475 3.6263556 1103.3752
+179644.0634751518 3.6263556 1103.3752
+179645.0634752561 3.6263556 1103.3555
+179646.0634753604 3.6264343 1103.3555
+179647.0634754647 3.6263161 1103.2963
+179648.063475569 3.6264737 1103.3555
+179649.0634756733 3.6264343 1103.4344
+179650.0634757776 3.6264737 1103.3357
+179651.0634758819 3.626395 1103.4147
+179652.0634759862 3.6264737 1103.3357
+179653.0634760906 3.6264343 1103.3555
+179654.0634761949 3.626395 1103.3555
+179655.0634762992 3.6264737 1103.3752
+179656.0634764035 3.626395 1103.3555
+179657.0634765078 3.6264737 1103.3357
+179658.0634766121 3.626395 1103.3555
+179659.0634767164 3.626513 1103.3752
+179660.0634768207 3.6264737 1103.316
+179661.063476925 3.6264343 1103.2765
+179662.0634770293 3.6264737 1103.3949
+179663.0634771336 3.626395 1103.4344
+179664.0634772379 3.626513 1103.4542
+179665.0634773423 3.6265523 1103.3357
+179666.0634774466 3.6264343 1103.316
+179667.0634775509 3.6265523 1103.474
+179668.0634776552 3.6264737 1103.3949
+179669.0634777595 3.6265917 1103.316
+179670.0634778638 3.626513 1103.3357
+179671.0634779681 3.626513 1103.3949
+179672.0634780724 3.6265523 1103.3752
+179673.0634781767 3.6265917 1103.3752
+179674.063478281 3.6265523 1103.3752
+179675.0634783853 3.6266706 1103.2765
+179676.0634784896 3.626631 1103.316
+179677.0634785939 3.6266706 1103.2963
+179678.0634786983 3.626513 1103.3555
+179679.0634788026 3.6265523 1103.3357
+179680.0634789069 3.6265523 1103.316
+179681.0634790112 3.6265523 1103.2567
+179682.0634791155 3.6266706 1103.3949
+179683.0634792198 3.626631 1103.4147
+179684.0634793241 3.626631 1103.4344
+179685.0634794284 3.626631 1103.3357
+179686.0634795327 3.626631 1103.3357
+179687.063479637 3.6266706 1103.3949
+179688.0634797413 3.6266706 1103.4344
+179689.0634798456 3.626631 1103.3949
+179690.06347995 3.6267886 1103.4147
+179691.0634800543 3.6267886 1103.4344
+179692.0634801586 3.626631 1103.3949
+179693.0634802629 3.6266706 1103.3752
+179694.0634803672 3.6267886 1103.316
+179695.0634804715 3.6267493 1103.3357
+179696.0634805758 3.6267886 1103.4147
+179697.0634806801 3.6267099 1103.3357
+179698.0634807844 3.6267886 1103.3357
+179699.0634808887 3.6267099 1103.3752
+179700.063480993 3.6267886 1103.316
+179701.0634810973 3.6267493 1103.316
+179702.0634812017 3.6267886 1103.3949
+179703.063481306 3.6267493 1103.4344
+179704.0634814103 3.6267099 1103.4344
+179705.0634815146 3.6267886 1103.3949
+179706.0634816189 3.6267493 1103.316
+179707.0634817232 3.6269066 1103.316
+179708.0634818275 3.6268673 1103.4344
+179709.0634819318 3.626828 1103.4344
+179710.0634820361 3.626828 1103.3357
+179711.0634821404 3.6267886 1103.3555
+179712.0634822447 3.6269066 1103.3555
+179713.063482349 3.6269855 1103.316
+179714.0634824533 3.6267886 1103.2369
+179715.0634825577 3.6268673 1103.4542
+179716.063482662 3.6269066 1103.2963
+179717.0634827663 3.626946 1103.4344
+179718.0634828706 3.6269066 1103.3357
+179719.0634829749 3.6269855 1103.3555
+179720.0634830792 3.626946 1103.3357
+179721.0634831835 3.626828 1103.316
+179722.0634832878 3.6269066 1103.3357
+179723.0634833921 3.6269066 1103.3555
+179724.0634834964 3.626946 1103.3949
+179725.0634836007 3.6269066 1103.3357
+179726.063483705 3.6269066 1103.2963
+179727.0634838094 3.6269855 1103.3752
+179728.0634839137 3.6269066 1103.4542
+179729.063484018 3.6269855 1103.3357
+179730.0634841223 3.6268673 1103.3949
+179731.0634842266 3.6270249 1103.3949
+179732.0634843309 3.6269855 1103.3357
+179733.0634844352 3.6269855 1103.316
+179734.0634845395 3.6269855 1103.3555
+179735.0634846438 3.6270642 1103.3949
+179736.0634847481 3.626946 1103.3949
+179737.0634848524 3.6269855 1103.4344
+179738.0634849567 3.6270642 1103.316
+179739.0634850611 3.6270642 1103.2567
+179740.0634851654 3.6270249 1103.3555
+179741.0634852697 3.6269855 1103.4147
+179742.063485374 3.626946 1103.316
+179743.0634854783 3.6271036 1103.4147
+179744.0634855826 3.6270249 1103.4542
+179745.0634856869 3.6269855 1103.3949
+179746.0634857912 3.6269855 1103.4147
+179747.0634858955 3.6270249 1103.2567
+179748.0634859998 3.6271036 1103.3752
+179749.0634861041 3.6270249 1103.3555
+179750.0634862084 3.6271429 1103.3949
+179751.0634863127 3.6271036 1103.474
+179752.0634864171 3.6270642 1103.3752
+179753.0634865214 3.6270642 1103.3752
+179754.0634866257 3.6270642 1103.3555
+179755.06348673 3.6271036 1103.4542
+179756.0634868343 3.6272609 1103.3752
+179757.0634869386 3.6271429 1103.4147
+179758.0634870429 3.6271429 1103.3357
+179759.0634871472 3.6271822 1103.4542
+179760.0634872515 3.6270642 1103.3752
+179761.0634873558 3.6270642 1103.316
+179762.0634874601 3.6271822 1103.3357
+179763.0634875644 3.6271822 1103.3752
+179764.0634876688 3.6271429 1103.316
+179765.0634877731 3.6271822 1103.3949
+179766.0634878774 3.6272216 1103.3752
+179767.0634879817 3.6272216 1103.316
+179768.063488086 3.6272609 1103.3752
+179769.0634881903 3.6271822 1103.3752
+179770.0634882946 3.6273005 1103.3357
+179771.0634883989 3.6272609 1103.3949
+179772.0634885032 3.6272609 1103.4147
+179773.0634886075 3.6273398 1103.3752
+179774.0634887118 3.6272609 1103.316
+179775.0634888161 3.6272216 1103.3949
+179776.0634889205 3.6271822 1103.316
+179777.0634890248 3.6273398 1103.3949
+179778.0634891291 3.6272609 1103.4147
+179779.0634892334 3.6273005 1103.4147
+179780.0634893377 3.6273005 1103.3752
+179781.063489442 3.6272609 1103.3555
+179782.0634895463 3.6273398 1103.4938
+179783.0634896506 3.6273398 1103.316
+179784.0634897549 3.6272609 1103.4542
+179785.0634898592 3.6273005 1103.2963
+179786.0634899635 3.6273005 1103.3555
+179787.0634900678 3.6273005 1103.3357
+179788.0634901722 3.6273398 1103.3357
+179789.0634902765 3.6273398 1103.316
+179790.0634903808 3.6274579 1103.3555
+179791.0634904851 3.6273792 1103.3949
+179792.0634905894 3.6273398 1103.2963
+179793.0634906937 3.6274185 1103.3357
+179794.063490798 3.6274579 1103.3555
+179795.0634909023 3.6274185 1103.3357
+179796.0634910066 3.6275365 1103.2963
+179797.0634911109 3.6273792 1103.2963
+179798.0634912152 3.6273792 1103.3949
+179799.0634913195 3.6274185 1103.3949
+179800.0634914238 3.6274579 1103.3555
+179801.0634915282 3.6275759 1103.3949
+179802.0634916325 3.6274185 1103.4147
+179803.0634917368 3.6275365 1103.2963
+179804.0634918411 3.6274972 1103.3752
+179805.0634919454 3.6274185 1103.316
+179806.0634920497 3.6274579 1103.2963
+179807.063492154 3.6275365 1103.3949
+179808.0634922583 3.6275365 1103.2963
+179809.0634923626 3.6274972 1103.3752
+179810.0634924669 3.6274972 1103.3357
+179811.0634925712 3.6274579 1103.3752
+179812.0634926755 3.6274972 1103.3949
+179813.0634927799 3.6274972 1103.2765
+179814.0634928842 3.6275759 1103.2963
+179815.0634929885 3.6273792 1103.3752
+179816.0634930928 3.6275365 1103.3357
+179817.0634931971 3.6275759 1103.3555
+179818.0634933014 3.6275365 1103.316
+179819.0634934057 3.6275759 1103.3752
+179820.06349351 3.6275365 1103.2963
+179821.0634936143 3.6276548 1103.4344
+179822.0634937186 3.6274972 1103.3357
+179823.0634938229 3.6277335 1103.316
+179824.0634939272 3.6275365 1103.316
+179825.0634940316 3.6277728 1103.316
+179826.0634941359 3.6277335 1103.3357
+179827.0634942402 3.6275759 1103.3357
+179828.0634943445 3.6276548 1103.316
+179829.0634944488 3.6276941 1103.3752
+179830.0634945531 3.6276155 1103.3949
+179831.0634946574 3.6276941 1103.3357
+179832.0634947617 3.6276941 1103.3357
+179833.063494866 3.6277335 1103.2963
+179834.0634949703 3.6277335 1103.2963
+179835.0634950746 3.6277335 1103.2963
+179836.0634951789 3.6276548 1103.316
+179837.0634952832 3.6278515 1103.3357
+179838.0634953876 3.6276941 1103.3949
+179839.0634954919 3.6276941 1103.4542
+179840.0634955962 3.6276941 1103.474
+179841.0634957005 3.6277335 1103.3357
+179842.0634958048 3.6277728 1103.3752
+179843.0634959091 3.6277728 1103.3949
+179844.0634960134 3.6277335 1103.3357
+179845.0634961177 3.6278515 1103.3555
+179846.063496222 3.6278121 1103.4147
+179847.0634963263 3.6277728 1103.4147
+179848.0634964306 3.6278515 1103.3949
+179849.0634965349 3.6278515 1103.474
+179850.0634966393 3.6278121 1103.4344
+179851.0634967436 3.6278908 1103.3949
+179852.0634968479 3.6277335 1103.3949
+179853.0634969522 3.6277728 1103.316
+179854.0634970565 3.6278515 1103.4542
+179855.0634971608 3.6278515 1103.3555
+179856.0634972651 3.6278908 1103.3555
+179857.0634973694 3.6277728 1103.2963
+179858.0634974737 3.6278515 1103.2567
+179859.063497578 3.6279304 1103.3555
+179860.0634976823 3.6279304 1103.3555
+179861.0634977866 3.6278908 1103.3357
+179862.063497891 3.6278515 1103.3357
+179863.0634979953 3.6278908 1103.2567
+179864.0634980996 3.6278908 1103.4147
+179865.0634982039 3.6278908 1103.4147
+179866.0634983082 3.6278908 1103.316
+179867.0634984125 3.6278908 1103.3555
+179868.0634985168 3.6278908 1103.3949
+179869.0634986211 3.6279304 1103.3752
+179870.0634987254 3.6279697 1103.2567
+179871.0634988297 3.6279697 1103.4147
+179872.063498934 3.6280484 1103.3555
+179873.0634990383 3.6279697 1103.3555
+179874.0634991426 3.6279697 1103.3752
+179875.063499247 3.6280484 1103.3555
+179876.0634993513 3.6280091 1103.3357
+179877.0634994556 3.6280091 1103.3949
+179878.0634995599 3.6280091 1103.2765
+179879.0634996642 3.6281271 1103.3752
+179880.0634997685 3.6280484 1103.4147
+179881.0634998728 3.6280484 1103.3555
+179882.0634999771 3.6281664 1103.3357
+179883.0635000814 3.6280484 1103.3949
+179884.0635001857 3.6280091 1103.474
+179885.06350029 3.6280878 1103.3555
+179886.0635003943 3.6279697 1103.4542
+179887.0635004987 3.6279697 1103.3357
+179888.063500603 3.6281271 1103.2765
+179889.0635007073 3.6281271 1103.2963
+179890.0635008116 3.6281271 1103.2369
+179891.0635009159 3.6280878 1103.3357
+179892.0635010202 3.6281664 1103.2963
+179893.0635011245 3.6280878 1103.3555
+179894.0635012288 3.6281271 1103.3752
+179895.0635013331 3.6280878 1103.2963
+179896.0635014374 3.6281664 1103.3357
+179897.0635015417 3.6280878 1103.3357
+179898.063501646 3.6281664 1103.3357
+179899.0635017504 3.628206 1103.3555
+179900.0635018547 3.628206 1103.316
+179901.063501959 3.6281664 1103.2963
+179902.0635020633 3.6281664 1103.3949
+179903.0635021676 3.6282454 1103.2765
+179904.0635022719 3.6281664 1103.316
+179905.0635023762 3.6281664 1103.3752
+179906.0635024805 3.6281664 1103.3752
+179907.0635025848 3.6282454 1103.4542
+179908.0635026891 3.628324 1103.3555
+179909.0635027934 3.628206 1103.4344
+179910.0635028977 3.6281664 1103.3752
+179911.063503002 3.6281664 1103.3357
+179912.0635031064 3.6281664 1103.3555
+179913.0635032107 3.6282847 1103.3555
+179914.063503315 3.6282847 1103.4147
+179915.0635034193 3.628206 1103.4147
+179916.0635035236 3.6282847 1103.3949
+179917.0635036279 3.6282847 1103.3949
+179918.0635037322 3.6282847 1103.2765
+179919.0635038365 3.6283634 1103.2963
+179920.0635039408 3.628324 1103.3357
+179921.0635040451 3.628206 1103.3555
+179922.0635041494 3.6282847 1103.4147
+179923.0635042537 3.6283634 1103.2765
+179924.0635043581 3.6284027 1103.3555
+179925.0635044624 3.6282847 1103.3752
+179926.0635045667 3.6284027 1103.3752
+179927.063504671 3.6283634 1103.3752
+179928.0635047753 3.6282847 1103.3752
+179929.0635048796 3.628324 1103.316
+179930.0635049839 3.6283634 1103.3949
+179931.0635050882 3.6284027 1103.3752
+179932.0635051925 3.628442 1103.3357
+179933.0635052968 3.6284027 1103.3357
+179934.0635054011 3.6283634 1103.3752
+179935.0635055054 3.6283634 1103.3752
+179936.0635056098 3.6284027 1103.3357
+179937.0635057141 3.628442 1103.3555
+179938.0635058184 3.6284814 1103.3357
+179939.0635059227 3.628521 1103.3357
+179940.063506027 3.6284027 1103.3752
+179941.0635061313 3.628442 1103.2369
+179942.0635062356 3.6284027 1103.3752
+179943.0635063399 3.6284027 1103.3555
+179944.0635064442 3.628442 1103.3949
+179945.0635065485 3.6284814 1103.3555
+179946.0635066528 3.628442 1103.3752
+179947.0635067571 3.6285996 1103.3357
+179948.0635068615 3.6284814 1103.3357
+179949.0635069658 3.628442 1103.3357
+179950.0635070701 3.6285603 1103.3752
+179951.0635071744 3.6284814 1103.3752
+179952.0635072787 3.628442 1103.3752
+179953.063507383 3.6285996 1103.3555
+179954.0635074873 3.6285996 1103.3949
+179955.0635075916 3.628639 1103.3357
+179956.0635076959 3.628521 1103.3752
+179957.0635078002 3.6285603 1103.316
+179958.0635079045 3.6284814 1103.3752
+179959.0635080088 3.6285996 1103.3752
+179960.0635081131 3.6285603 1103.3357
+179961.0635082175 3.6285996 1103.2765
+179962.0635083218 3.6285603 1103.3357
+179963.0635084261 3.6285996 1103.3555
+179964.0635085304 3.6285996 1103.316
+179965.0635086347 3.628521 1103.3555
+179966.063508739 3.6285603 1103.4147
+179967.0635088433 3.6285603 1103.3555
+179968.0635089476 3.628521 1103.4147
+179969.0635090519 3.628639 1103.4147
+179970.0635091562 3.628639 1103.3555
+179971.0635092605 3.6286783 1103.3555
+179972.0635093648 3.6287177 1103.3752
+179973.0635094692 3.628639 1103.3555
+179974.0635095735 3.6287177 1103.3357
+179975.0635096778 3.628639 1103.3752
+179976.0635097821 3.628757 1103.3357
+179977.0635098864 3.6286783 1103.4147
+179978.0635099907 3.6287177 1103.3949
+179979.063510095 3.628757 1103.316
+179980.0635101993 3.6287177 1103.4147
+179981.0635103036 3.628757 1103.3357
+179982.0635104079 3.6287177 1103.4147
+179983.0635105122 3.6286783 1103.3949
+179984.0635106165 3.628757 1103.3949
+179985.0635107209 3.628757 1103.3357
+179986.0635108252 3.6287177 1103.3752
+179987.0635109295 3.6288359 1103.3752
+179988.0635110338 3.6286783 1103.4147
+179989.0635111381 3.6287963 1103.3555
+179990.0635112424 3.6287963 1103.2963
+179991.0635113467 3.6287963 1103.3752
+179992.063511451 3.6288753 1103.2963
+179993.0635115553 3.6287963 1103.3357
+179994.0635116596 3.628757 1103.3949
+179995.0635117639 3.628757 1103.3555
+179996.0635118682 3.6287963 1103.3555
+179997.0635119725 3.6288753 1103.2963
+179998.0635120769 3.6287963 1103.3752
+179999.0635121812 3.6288359 1103.3752
+180000.0635122855 3.6288753 1103.316
+180001.0635123898 3.628757 1103.3752
+180002.0635124941 3.6287963 1103.3752
+180003.0635125984 3.6288359 1103.3357
+180004.0635127027 3.6288359 1103.3752
+180005.063512807 3.6288359 1103.3752
+180006.0635129113 3.6288753 1103.3752
+180007.0635130156 3.6289146 1103.4344
+180008.0635131199 3.6289539 1103.4147
+180009.0635132242 3.6289539 1103.3752
+180010.0635133286 3.6289146 1103.3555
+180011.0635134329 3.6287963 1103.316
+180012.0635135372 3.6289146 1103.2963
+180013.0635136415 3.6289146 1103.3357
+180014.0635137458 3.6289539 1103.3752
+180015.0635138501 3.6288753 1103.3555
+180016.0635139544 3.6289933 1103.3949
+180017.0635140587 3.6289933 1103.3752
+180018.063514163 3.6289933 1103.3949
+180019.0635142673 3.6288753 1103.3752
+180020.0635143716 3.6289539 1103.3357
+180021.0635144759 3.6289933 1103.3357
+180022.0635145803 3.6289146 1103.2963
+180023.0635146846 3.6289933 1103.3357
+180024.0635147889 3.6289539 1103.3949
+180025.0635148932 3.6289933 1103.4147
+180026.0635149975 3.6290326 1103.3555
+180027.0635151018 3.6289933 1103.3357
+180028.0635152061 3.6290326 1103.4147
+180029.0635153104 3.6290326 1103.2765
+180030.0635154147 3.6290326 1103.3752
+180031.063515519 3.6289933 1103.4542
+180032.0635156233 3.6290326 1103.2963
+180033.0635157276 3.6291113 1103.3555
+180034.0635158319 3.6290326 1103.4147
+180035.0635159363 3.629072 1103.4542
+180036.0635160406 3.629072 1103.474
+180037.0635161449 3.6290326 1103.3752
+180038.0635162492 3.629072 1103.3357
+180039.0635163535 3.6290326 1103.316
+180040.0635164578 3.629072 1103.2963
+180041.0635165621 3.629072 1103.3949
+180042.0635166664 3.629072 1103.3555
+180043.0635167707 3.6291113 1103.3555
+180044.063516875 3.6292295 1103.3752
+180045.0635169793 3.6292295 1103.316
+180046.0635170836 3.6291509 1103.3949
+180047.063517188 3.6291509 1103.3357
+180048.0635172923 3.6291902 1103.4147
+180049.0635173966 3.6291113 1103.3752
+180050.0635175009 3.6291113 1103.2963
+180051.0635176052 3.6291902 1103.3752
+180052.0635177095 3.629072 1103.4344
+180053.0635178138 3.6292295 1103.3949
+180054.0635179181 3.6292295 1103.3949
+180055.0635180224 3.6291509 1103.3752
+180056.0635181267 3.6291509 1103.3357
+180057.063518231 3.6291902 1103.2567
+180058.0635183353 3.6293082 1103.3752
+180059.0635184397 3.6293082 1103.3357
+180060.063518544 3.6293082 1103.2963
+180061.0635186483 3.6291902 1103.3752
+180062.0635187526 3.6291902 1103.3555
+180063.0635188569 3.6292689 1103.3555
+180064.0635189612 3.6293476 1103.2963
+180065.0635190655 3.6293082 1103.474
+180066.0635191698 3.6292295 1103.474
+180067.0635192741 3.6293476 1103.3357
+180068.0635193784 3.6292689 1103.316
+180069.0635194827 3.6293476 1103.3752
+180070.063519587 3.6293476 1103.3949
+180071.0635196914 3.6293082 1103.3555
+180072.0635197957 3.6293869 1103.3357
+180073.0635199 3.6293476 1103.2963
+180074.0635200043 3.6294262 1103.3752
+180075.0635201086 3.6293082 1103.316
+180076.0635202129 3.6293476 1103.3357
+180077.0635203172 3.6294262 1103.3949
+180078.0635204215 3.6293869 1103.3555
+180079.0635205258 3.6295052 1103.4147
+180080.0635206301 3.6294262 1103.2963
+180081.0635207344 3.6294658 1103.316
+180082.0635208387 3.6294658 1103.316
+180083.063520943 3.6295445 1103.3357
+180084.0635210474 3.6294262 1103.3357
+180085.0635211517 3.6294658 1103.3752
+180086.063521256 3.6295445 1103.4147
+180087.0635213603 3.6294262 1103.3555
+180088.0635214646 3.6295052 1103.3357
+180089.0635215689 3.6295445 1103.4344
+180090.0635216732 3.6294658 1103.2172
+180091.0635217775 3.6295445 1103.4344
+180092.0635218818 3.6294262 1103.316
+180093.0635219861 3.6295838 1103.3555
+180094.0635220904 3.6296232 1103.316
+180095.0635221947 3.6294658 1103.3357
+180096.0635222991 3.6295838 1103.3357
+180097.0635224034 3.6296232 1103.3949
+180098.0635225077 3.6294262 1103.3555
+180099.063522612 3.6296232 1103.4147
+180100.0635227163 3.6296232 1103.4147
+180101.0635228206 3.6295445 1103.3752
+180102.0635229249 3.6295838 1103.3357
+180103.0635230292 3.6295838 1103.3949
+180104.0635231335 3.6295052 1103.3949
+180105.0635232378 3.6295838 1103.2765
+180106.0635233421 3.6296232 1103.3949
+180107.0635234464 3.6296232 1103.3555
+180108.0635235508 3.6295838 1103.3357
+180109.0635236551 3.6296232 1103.3357
+180110.0635237594 3.6295838 1103.3752
+180111.0635238637 3.6296625 1103.4147
+180112.063523968 3.6297019 1103.3752
+180113.0635240723 3.6297019 1103.3949
+180114.0635241766 3.6296625 1103.4344
+180115.0635242809 3.6297412 1103.4147
+180116.0635243852 3.6296625 1103.3555
+180117.0635244895 3.6297808 1103.2963
+180118.0635245938 3.6296232 1103.3357
+180119.0635246981 3.6297412 1103.316
+180120.0635248024 3.6296625 1103.3949
+180121.0635249068 3.6297412 1103.3555
+180122.0635250111 3.6297412 1103.3949
+180123.0635251154 3.6298201 1103.4147
+180124.0635252197 3.6298201 1103.3752
+180125.063525324 3.6298201 1103.3752
+180126.0635254283 3.6297412 1103.3357
+180127.0635255326 3.6297412 1103.316
+180128.0635256369 3.6297808 1103.3752
+180129.0635257412 3.6297019 1103.3949
+180130.0635258455 3.6298988 1103.4542
+180131.0635259498 3.6297412 1103.3752
+180132.0635260541 3.6298988 1103.3949
+180133.0635261585 3.6298594 1103.4147
+180134.0635262628 3.6298988 1103.474
+180135.0635263671 3.6298988 1103.3357
+180136.0635264714 3.6298594 1103.316
+180137.0635265757 3.6298201 1103.3357
+180138.06352668 3.6298594 1103.4542
+180139.0635267843 3.6298594 1103.2765
+180140.0635268886 3.6298594 1103.3949
+180141.0635269929 3.6298201 1103.3555
+180142.0635270972 3.6298201 1103.316
+180143.0635272015 3.6299775 1103.4344
+180144.0635273058 3.6297808 1103.2765
+180145.0635274102 3.6298594 1103.2765
+180146.0635275145 3.6298988 1103.4147
+180147.0635276188 3.6299775 1103.4344
+180148.0635277231 3.6299775 1103.3555
+180149.0635278274 3.6299381 1103.2765
+180150.0635279317 3.6298988 1103.4147
+180151.063528036 3.6300564 1103.3555
+180152.0635281403 3.6298988 1103.3752
+180153.0635282446 3.6299381 1103.4147
+180154.0635283489 3.6300168 1103.3357
+180155.0635284532 3.6298594 1103.3949
+180156.0635285575 3.6300168 1103.316
+180157.0635286618 3.6300168 1103.4147
+180158.0635287662 3.6300168 1103.3949
+180159.0635288705 3.6299381 1103.3752
+180160.0635289748 3.6300168 1103.3357
+180161.0635290791 3.6300564 1103.316
+180162.0635291834 3.6300564 1103.2765
+180163.0635292877 3.6300168 1103.3555
+180164.063529392 3.6300957 1103.474
+180165.0635294963 3.6300957 1103.3752
+180166.0635296006 3.6300957 1103.316
+180167.0635297049 3.6300957 1103.3357
+180168.0635298092 3.6301744 1103.3357
+180169.0635299135 3.6301744 1103.3949
+180170.0635300179 3.6300564 1103.3949
+180171.0635301222 3.6301744 1103.3357
+180172.0635302265 3.6300168 1103.2765
+180173.0635303308 3.6300957 1103.3752
+180174.0635304351 3.6302137 1103.3357
+180175.0635305394 3.6301351 1103.3555
+180176.0635306437 3.6301744 1103.3752
+180177.063530748 3.6301744 1103.3357
+180178.0635308523 3.6300957 1103.3949
+180179.0635309566 3.6302137 1103.2765
+180180.0635310609 3.6302137 1103.316
+180181.0635311652 3.6300957 1103.2369
+180182.0635312696 3.6301351 1103.3555
+180183.0635313739 3.6301744 1103.3555
+180184.0635314782 3.6301744 1103.3949
+180185.0635315825 3.6301744 1103.316
+180186.0635316868 3.6301351 1103.4344
+180187.0635317911 3.6302531 1103.3357
+180188.0635318954 3.6302531 1103.3357
+180189.0635319997 3.6302137 1103.316
+180190.063532104 3.6302924 1103.316
+180191.0635322083 3.6302137 1103.4344
+180192.0635323126 3.6302137 1103.2963
+180193.0635324169 3.6302137 1103.3357
+180194.0635325213 3.6302531 1103.3555
+180195.0635326256 3.6302924 1103.3357
+180196.0635327299 3.6302924 1103.316
+180197.0635328342 3.6302137 1103.3949
+180198.0635329385 3.6302531 1103.3555
+180199.0635330428 3.6303318 1103.316
+180200.0635331471 3.6302924 1103.3949
+180201.0635332514 3.6302137 1103.3752
+180202.0635333557 3.6303713 1103.316
+180203.06353346 3.6302137 1103.4147
+180204.0635335643 3.6303713 1103.3752
+180205.0635336686 3.6304107 1103.316
+180206.0635337729 3.6302531 1103.3949
+180207.0635338773 3.6304107 1103.3752
+180208.0635339816 3.6303318 1103.3752
+180209.0635340859 3.6303318 1103.316
+180210.0635341902 3.6305287 1103.3555
+180211.0635342945 3.6303713 1103.3555
+180212.0635343988 3.6304107 1103.316
+180213.0635345031 3.6304107 1103.3752
+180214.0635346074 3.63045 1103.3949
+180215.0635347117 3.6305287 1103.316
+180216.063534816 3.6304107 1103.4147
+180217.0635349203 3.6303713 1103.3357
+180218.0635350246 3.6304107 1103.316
+180219.063535129 3.6304107 1103.3357
+180220.0635352333 3.6304107 1103.3555
+180221.0635353376 3.63045 1103.3752
+180222.0635354419 3.6303713 1103.474
+180223.0635355462 3.63045 1103.3752
+180224.0635356505 3.63045 1103.316
+180225.0635357548 3.63045 1103.316
+180226.0635358591 3.63045 1103.3357
+180227.0635359634 3.6304107 1103.3949
+180228.0635360677 3.6305287 1103.3752
+180229.063536172 3.6304893 1103.3357
+180230.0635362763 3.6304893 1103.3949
+180231.0635363807 3.6304893 1103.3752
+180232.063536485 3.63045 1103.316
+180233.0635365893 3.6304893 1103.316
+180234.0635366936 3.6305287 1103.316
+180235.0635367979 3.6304893 1103.3357
+180236.0635369022 3.6306074 1103.316
+180237.0635370065 3.630568 1103.3555
+180238.0635371108 3.6305287 1103.4344
+180239.0635372151 3.630568 1103.3357
+180240.0635373194 3.6306467 1103.3555
+180241.0635374237 3.6306863 1103.2963
+180242.063537528 3.6306074 1103.3357
+180243.0635376323 3.6306863 1103.3357
+180244.0635377367 3.630765 1103.3357
+180245.063537841 3.6306467 1103.2963
+180246.0635379453 3.63045 1103.4542
+180247.0635380496 3.6306467 1103.316
+180248.0635381539 3.6306863 1103.3752
+180249.0635382582 3.630765 1103.3555
+180250.0635383625 3.6306467 1103.2963
+180251.0635384668 3.630765 1103.3555
+180252.0635385711 3.6306467 1103.2765
+180253.0635386754 3.6306863 1103.3357
+180254.0635387797 3.6307256 1103.3949
+180255.063538884 3.6308043 1103.3555
+180256.0635389884 3.630765 1103.3752
+180257.0635390927 3.6306863 1103.3555
+180258.063539197 3.6308043 1103.3752
+180259.0635393013 3.6306467 1103.3752
+180260.0635394056 3.6307256 1103.3357
+180261.0635395099 3.6308043 1103.3949
+180262.0635396142 3.6308436 1103.3357
+180263.0635397185 3.6308436 1103.316
+180264.0635398228 3.6307256 1103.3357
+180265.0635399271 3.6307256 1103.3357
+180266.0635400314 3.630883 1103.3949
+180267.0635401357 3.6308436 1103.4147
+180268.0635402401 3.6308436 1103.3752
+180269.0635403444 3.630765 1103.3949
+180270.0635404487 3.6308043 1103.4147
+180271.063540553 3.6308043 1103.3555
+180272.0635406573 3.630883 1103.4344
+180273.0635407616 3.630883 1103.3949
+180274.0635408659 3.6309223 1103.2963
+180275.0635409702 3.630765 1103.3357
+180276.0635410745 3.630883 1103.4147
+180277.0635411788 3.6308436 1103.3555
+180278.0635412831 3.6308436 1103.3555
+180279.0635413874 3.6309223 1103.3752
+180280.0635414917 3.6310012 1103.3357
+180281.0635415961 3.6309223 1103.3357
+180282.0635417004 3.6309223 1103.3752
+180283.0635418047 3.6309223 1103.3949
+180284.063541909 3.630883 1103.4344
+180285.0635420133 3.6309223 1103.474
+180286.0635421176 3.6310012 1103.3949
+180287.0635422219 3.6309617 1103.3555
+180288.0635423262 3.6310012 1103.3949
+180289.0635424305 3.6309617 1103.474
+180290.0635425348 3.6310012 1103.2963
+180291.0635426391 3.6309617 1103.3752
+180292.0635427434 3.630883 1103.2963
+180293.0635428478 3.630883 1103.3949
+180294.0635429521 3.6310406 1103.3555
+180295.0635430564 3.6310012 1103.2963
+180296.0635431607 3.6310012 1103.3357
+180297.063543265 3.6309617 1103.3949
+180298.0635433693 3.6310012 1103.3357
+180299.0635434736 3.6310799 1103.2765
+180300.0635435779 3.6310012 1103.3949
+180301.0635436822 3.6311586 1103.3752
+180302.0635437865 3.6310012 1103.3357
+180303.0635438908 3.6310406 1103.4147
+180304.0635439951 3.6310799 1103.4344
+180305.0635440995 3.6311586 1103.3752
+180306.0635442038 3.6310406 1103.316
+180307.0635443081 3.6311193 1103.3357
+180308.0635444124 3.6310799 1103.4147
+180309.0635445167 3.6312373 1103.2963
+180310.063544621 3.6311193 1103.4344
+180311.0635447253 3.6311193 1103.2963
+180312.0635448296 3.6311193 1103.2963
+180313.0635449339 3.6311979 1103.3949
+180314.0635450382 3.6311193 1103.4147
+180315.0635451425 3.6311193 1103.3357
+180316.0635452468 3.6311586 1103.3357
+180317.0635453512 3.6311979 1103.3555
+180318.0635454555 3.6312373 1103.3357
+180319.0635455598 3.6312373 1103.2963
+180320.0635456641 3.6311979 1103.2765
+180321.0635457684 3.6311193 1103.3752
+180322.0635458727 3.6312766 1103.2963
+180323.063545977 3.6311193 1103.2963
+180324.0635460813 3.6311586 1103.3949
+180325.0635461856 3.6311586 1103.4344
+180326.0635462899 3.6311979 1103.316
+180327.0635463942 3.6313162 1103.2765
+180328.0635464985 3.6312766 1103.2765
+180329.0635466028 3.6312373 1103.2963
+180330.0635467072 3.6311586 1103.2765
+180331.0635468115 3.6313162 1103.3357
+180332.0635469158 3.6312766 1103.2963
+180333.0635470201 3.6312766 1103.3752
+180334.0635471244 3.6313162 1103.3555
+180335.0635472287 3.6312766 1103.2963
+180336.063547333 3.6313162 1103.3949
+180337.0635474373 3.6313162 1103.4147
+180338.0635475416 3.6313162 1103.316
+180339.0635476459 3.6312766 1103.316
+180340.0635477502 3.6312766 1103.2765
+180341.0635478545 3.6312766 1103.3949
+180342.0635479589 3.6314342 1103.3752
+180343.0635480632 3.6313949 1103.3357
+180344.0635481675 3.6313555 1103.4542
+180345.0635482718 3.6313949 1103.2765
+180346.0635483761 3.6313555 1103.2567
+180347.0635484804 3.6313949 1103.2765
+180348.0635485847 3.6313555 1103.3357
+180349.063548689 3.6313162 1103.316
+180350.0635487933 3.6313949 1103.3357
+180351.0635488976 3.6313949 1103.3555
+180352.0635490019 3.6313949 1103.2765
+180353.0635491062 3.6313555 1103.3357
+180354.0635492106 3.6313949 1103.3752
+180355.0635493149 3.6314735 1103.2172
+180356.0635494192 3.6314735 1103.3357
+180357.0635495235 3.6314735 1103.3949
+180358.0635496278 3.6315129 1103.2963
+180359.0635497321 3.6314735 1103.4542
+180360.0635498364 3.6315129 1103.3357
+180361.0635499407 3.6314735 1103.2963
+180362.063550045 3.6314735 1103.2369
+180363.0635501493 3.6314735 1103.316
+180364.0635502536 3.6315129 1103.3555
+180365.0635503579 3.6315522 1103.3555
+180366.0635504622 3.6314735 1103.3949
+180367.0635505666 3.6315129 1103.3949
+180368.0635506709 3.6314342 1103.4147
+180369.0635507752 3.6315916 1103.3949
+180370.0635508795 3.6314735 1103.3555
+180371.0635509838 3.6315129 1103.3555
+180372.0635510881 3.6315129 1103.3752
+180373.0635511924 3.6315916 1103.2765
+180374.0635512967 3.6315522 1103.3555
+180375.063551401 3.6315522 1103.3949
+180376.0635515053 3.6315522 1103.4147
+180377.0635516096 3.6314735 1103.3949
+180378.0635517139 3.6314735 1103.3949
+180379.0635518183 3.6315522 1103.3357
+180380.0635519226 3.6315916 1103.3949
+180381.0635520269 3.6315522 1103.3949
+180382.0635521312 3.6315916 1103.3949
+180383.0635522355 3.6316705 1103.3357
+180384.0635523398 3.6316311 1103.3949
+180385.0635524441 3.6315916 1103.3949
+180386.0635525484 3.6317098 1103.2963
+180387.0635526527 3.6316705 1103.3555
+180388.063552757 3.6317098 1103.3949
+180389.0635528613 3.6316705 1103.2963
+180390.0635529656 3.6317098 1103.316
+180391.06355307 3.6316705 1103.3752
+180392.0635531743 3.6316311 1103.4344
+180393.0635532786 3.6317098 1103.3949
+180394.0635533829 3.6317492 1103.3752
+180395.0635534872 3.6315916 1103.4147
+180396.0635535915 3.6317098 1103.3949
+180397.0635536958 3.6317492 1103.3949
+180398.0635538001 3.6317885 1103.3949
+180399.0635539044 3.6316311 1103.316
+180400.0635540087 3.6316705 1103.3752
+180401.063554113 3.6317885 1103.3357
+180402.0635542173 3.6316705 1103.3752
+180403.0635543216 3.6317098 1103.3555
+180404.063554426 3.6317098 1103.3949
+180405.0635545303 3.6317885 1103.3555
+180406.0635546346 3.6317885 1103.316
+180407.0635547389 3.6316705 1103.3357
+180408.0635548432 3.6317885 1103.2765
+180409.0635549475 3.6317492 1103.3752
+180410.0635550518 3.6318278 1103.316
+180411.0635551561 3.6317885 1103.3752
+180412.0635552604 3.6317885 1103.2765
+180413.0635553647 3.6318278 1103.3357
+180414.063555469 3.6316705 1103.3555
+180415.0635555733 3.6317492 1103.316
+180416.0635556777 3.6317885 1103.3357
+180417.063555782 3.6318278 1103.3357
+180418.0635558863 3.6318278 1103.3752
+180419.0635559906 3.6318278 1103.3555
+180420.0635560949 3.6318672 1103.3752
+180421.0635561992 3.6317492 1103.2963
+180422.0635563035 3.6318672 1103.2765
+180423.0635564078 3.6318278 1103.3555
+180424.0635565121 3.6318672 1103.3752
+180425.0635566164 3.6319067 1103.2765
+180426.0635567207 3.6319461 1103.3357
+180427.063556825 3.6319461 1103.474
+180428.0635569294 3.6318672 1103.3949
+180429.0635570337 3.6318278 1103.3357
+180430.063557138 3.6318278 1103.3555
+180431.0635572423 3.6319854 1103.3752
+180432.0635573466 3.6318672 1103.2765
+180433.0635574509 3.6319067 1103.316
+180434.0635575552 3.6319461 1103.316
+180435.0635576595 3.6319067 1103.3752
+180436.0635577638 3.6319067 1103.3949
+180437.0635578681 3.6318672 1103.316
+180438.0635579724 3.6319854 1103.4147
+180439.0635580767 3.6319461 1103.2765
+180440.063558181 3.6319854 1103.3752
+180441.0635582854 3.6319067 1103.3752
+180442.0635583897 3.6320248 1103.3752
+180443.063558494 3.6320248 1103.3949
+180444.0635585983 3.6319461 1103.3555
+180445.0635587026 3.6319461 1103.3752
+180446.0635588069 3.6319854 1103.3357
+180447.0635589112 3.6319461 1103.3752
+180448.0635590155 3.6320641 1103.316
+180449.0635591198 3.6320248 1103.3357
+180450.0635592241 3.6321034 1103.3555
+180451.0635593284 3.6321428 1103.3752
+180452.0635594327 3.6319461 1103.3357
+180453.0635595371 3.6321428 1103.3949
+180454.0635596414 3.6321034 1103.3555
+180455.0635597457 3.6321034 1103.3357
+180456.06355985 3.6320641 1103.316
+180457.0635599543 3.6321428 1103.3752
+180458.0635600586 3.6321034 1103.316
+180459.0635601629 3.6320641 1103.3949
+180460.0635602672 3.6321428 1103.3357
+180461.0635603715 3.6321821 1103.4147
+180462.0635604758 3.632261 1103.3357
+180463.0635605801 3.6321034 1103.4147
+180464.0635606844 3.6321821 1103.3752
+180465.0635607888 3.6320641 1103.3555
+180466.0635608931 3.6321034 1103.3357
+180467.0635609974 3.6321034 1103.4344
+180468.0635611017 3.6322217 1103.3357
+180469.063561206 3.6321034 1103.3357
+180470.0635613103 3.6322217 1103.3357
+180471.0635614146 3.6321821 1103.2567
+180472.0635615189 3.6321821 1103.2963
+180473.0635616232 3.6321428 1103.3752
+180474.0635617275 3.6322217 1103.3555
+180475.0635618318 3.632261 1103.3357
+180476.0635619361 3.6322217 1103.3949
+180477.0635620405 3.6323004 1103.3555
+180478.0635621448 3.6322217 1103.4147
+180479.0635622491 3.632261 1103.3949
+180480.0635623534 3.6321821 1103.3555
+180481.0635624577 3.6322217 1103.3555
+180482.063562562 3.632261 1103.3357
+180483.0635626663 3.632261 1103.3949
+180484.0635627706 3.6323004 1103.3357
+180485.0635628749 3.6321821 1103.316
+180486.0635629792 3.6322217 1103.3752
+180487.0635630835 3.6323397 1103.3752
+180488.0635631878 3.6323004 1103.4344
+180489.0635632921 3.6323791 1103.316
+180490.0635633965 3.6323397 1103.3752
+180491.0635635008 3.6323397 1103.3555
+180492.0635636051 3.6323397 1103.3752
+180493.0635637094 3.632261 1103.2369
+180494.0635638137 3.6323397 1103.3357
+180495.063563918 3.6323791 1103.3555
+180496.0635640223 3.632261 1103.3752
+180497.0635641266 3.632261 1103.316
+180498.0635642309 3.6324971 1103.3555
+180499.0635643352 3.6324184 1103.3949
+180500.0635644395 3.6323397 1103.3752
+180501.0635645438 3.6324971 1103.3949
+180502.0635646482 3.6323004 1103.3752
+180503.0635647525 3.6324184 1103.3357
+180504.0635648568 3.6324184 1103.3949
+180505.0635649611 3.6324184 1103.316
+180506.0635650654 3.6325366 1103.4344
+180507.0635651697 3.6324971 1103.316
+180508.063565274 3.6324184 1103.3555
+180509.0635653783 3.6324577 1103.3555
+180510.0635654826 3.632576 1103.2963
+180511.0635655869 3.632576 1103.4147
+180512.0635656912 3.6326153 1103.4542
+180513.0635657955 3.6325366 1103.3752
+180514.0635658999 3.6325366 1103.3752
+180515.0635660042 3.632576 1103.2963
+180516.0635661085 3.6324577 1103.3555
+180517.0635662128 3.6326153 1103.4344
+180518.0635663171 3.6325366 1103.316
+180519.0635664214 3.6325366 1103.3555
+180520.0635665257 3.6326547 1103.2567
+180521.06356663 3.6325366 1103.2963
+180522.0635667343 3.6326153 1103.3949
+180523.0635668386 3.6324971 1103.3949
+180524.0635669429 3.6325366 1103.2963
+180525.0635670472 3.6324971 1103.3555
+180526.0635671515 3.632576 1103.3949
+180527.0635672559 3.6326153 1103.316
+180528.0635673602 3.632694 1103.2963
+180529.0635674645 3.6326547 1103.316
+180530.0635675688 3.6325366 1103.316
+180531.0635676731 3.6325366 1103.3357
+180532.0635677774 3.632576 1103.4542
+180533.0635678817 3.6327333 1103.316
+180534.063567986 3.632694 1103.316
+180535.0635680903 3.6326547 1103.2963
+180536.0635681946 3.6327333 1103.4542
+180537.0635682989 3.6327333 1103.3752
+180538.0635684032 3.632576 1103.3949
+180539.0635685076 3.6326547 1103.3949
+180540.0635686119 3.6326547 1103.3752
+180541.0635687162 3.632694 1103.2963
+180542.0635688205 3.6326547 1103.3752
+180543.0635689248 3.6326547 1103.3555
+180544.0635690291 3.6327333 1103.3752
+180545.0635691334 3.6326153 1103.3949
+180546.0635692377 3.632694 1103.316
+180547.063569342 3.632576 1103.2765
+180548.0635694463 3.6327333 1103.2765
+180549.0635695506 3.6326547 1103.1975
+180550.0635696549 3.6327333 1103.3949
+180551.0635697593 3.6327333 1103.3555
+180552.0635698636 3.6326547 1103.3357
+180553.0635699679 3.6327333 1103.316
+180554.0635700722 3.6327333 1103.3949
+180555.0635701765 3.632812 1103.3357
+180556.0635702808 3.632812 1103.3555
+180557.0635703851 3.6328516 1103.3752
+180558.0635704894 3.632694 1103.4147
+180559.0635705937 3.6327333 1103.2963
+180560.063570698 3.6327333 1103.4147
+180561.0635708023 3.6326153 1103.3752
+180562.0635709066 3.6327333 1103.3357
+180563.0635710109 3.6327333 1103.3949
+180564.0635711153 3.6327333 1103.2963
+180565.0635712196 3.632694 1103.2963
+180566.0635713239 3.6327333 1103.3357
+180567.0635714282 3.632694 1103.4147
+180568.0635715325 3.6328909 1103.3555
+180569.0635716368 3.6328909 1103.3357
+180570.0635717411 3.632812 1103.3752
+180571.0635718454 3.6327727 1103.3949
+180572.0635719497 3.6328516 1103.3949
+180573.063572054 3.6328516 1103.4344
+180574.0635721583 3.6328516 1103.3555
+180575.0635722626 3.6328516 1103.2963
+180576.063572367 3.6329303 1103.3555
+180577.0635724713 3.632812 1103.3949
+180578.0635725756 3.632812 1103.316
+180579.0635726799 3.6329696 1103.2963
+180580.0635727842 3.6329303 1103.3752
+180581.0635728885 3.6327333 1103.3357
+180582.0635729928 3.6329303 1103.3357
+180583.0635730971 3.633009 1103.3752
+180584.0635732014 3.6329303 1103.3555
+180585.0635733057 3.6329303 1103.3752
+180586.06357341 3.6329303 1103.3949
+180587.0635735143 3.6329303 1103.316
+180588.0635736187 3.6330483 1103.4344
+180589.063573723 3.6330483 1103.3752
+180590.0635738273 3.6330483 1103.3949
+180591.0635739316 3.6329696 1103.3949
+180592.0635740359 3.6330483 1103.3555
+180593.0635741402 3.6329696 1103.3752
+180594.0635742445 3.6329696 1103.3357
+180595.0635743488 3.6329696 1103.3555
+180596.0635744531 3.6330483 1103.316
+180597.0635745574 3.6329696 1103.3949
+180598.0635746617 3.6330876 1103.2963
+180599.063574766 3.6329696 1103.3752
+180600.0635748704 3.6330876 1103.4147
+180601.0635749747 3.633009 1103.4147
+180602.063575079 3.633009 1103.3357
+180603.0635751833 3.633127 1103.3357
+180604.0635752876 3.6330483 1103.3555
+180605.0635753919 3.6330483 1103.3752
+180606.0635754962 3.6331666 1103.2567
+180607.0635756005 3.6330876 1103.3752
+180608.0635757048 3.633009 1103.3555
+180609.0635758091 3.6332059 1103.3555
+180610.0635759134 3.633127 1103.316
+180611.0635760177 3.6330876 1103.3555
+180612.063576122 3.6330483 1103.3357
+180613.0635762264 3.6331666 1103.3357
+180614.0635763307 3.633127 1103.4147
+180615.063576435 3.6332059 1103.3949
+180616.0635765393 3.6330876 1103.2963
+180617.0635766436 3.6332059 1103.2963
+180618.0635767479 3.6332846 1103.3357
+180619.0635768522 3.6332452 1103.3752
+180620.0635769565 3.6332846 1103.3949
+180621.0635770608 3.6332846 1103.3555
+180622.0635771651 3.6332846 1103.3555
+180623.0635772694 3.6332452 1103.3752
+180624.0635773737 3.6332846 1103.3752
+180625.0635774781 3.6332452 1103.3949
+180626.0635775824 3.6331666 1103.3949
+180627.0635776867 3.6333239 1103.3752
+180628.063577791 3.6333239 1103.3752
+180629.0635778953 3.6333239 1103.3752
+180630.0635779996 3.6332846 1103.316
+180631.0635781039 3.6333239 1103.3752
+180632.0635782082 3.6334026 1103.3752
+180633.0635783125 3.6333632 1103.3357
+180634.0635784168 3.6333239 1103.3555
+180635.0635785211 3.6333239 1103.316
+180636.0635786254 3.6332846 1103.316
+180637.0635787298 3.6333632 1103.2963
+180638.0635788341 3.6334026 1103.3357
+180639.0635789384 3.6333632 1103.3949
+180640.0635790427 3.6334026 1103.3555
+180641.063579147 3.6334419 1103.3357
+180642.0635792513 3.6333632 1103.3357
+180643.0635793556 3.6334815 1103.3752
+180644.0635794599 3.6334419 1103.3752
+180645.0635795642 3.6334026 1103.3357
+180646.0635796685 3.6334815 1103.2963
+180647.0635797728 3.6334026 1103.3752
+180648.0635798771 3.6334419 1103.3555
+180649.0635799814 3.6334815 1103.3752
+180650.0635800858 3.6335208 1103.3752
+180651.0635801901 3.6334815 1103.3752
+180652.0635802944 3.6334419 1103.2963
+180653.0635803987 3.6335208 1103.3949
+180654.063580503 3.6334026 1103.4147
+180655.0635806073 3.6333632 1103.3949
+180656.0635807116 3.6334815 1103.3752
+180657.0635808159 3.6334815 1103.3752
+180658.0635809202 3.6334815 1103.3752
+180659.0635810245 3.6334815 1103.3357
+180660.0635811288 3.6334026 1103.3555
+180661.0635812331 3.6334815 1103.4344
+180662.0635813375 3.6335208 1103.3555
+180663.0635814418 3.6335208 1103.4542
+180664.0635815461 3.6335602 1103.474
+180665.0635816504 3.6335995 1103.4147
+180666.0635817547 3.6336389 1103.4147
+180667.063581859 3.6335208 1103.3752
+180668.0635819633 3.6335602 1103.3555
+180669.0635820676 3.6336389 1103.3752
+180670.0635821719 3.6335208 1103.3357
+180671.0635822762 3.6335208 1103.3357
+180672.0635823805 3.6335602 1103.2765
+180673.0635824848 3.6336389 1103.3752
+180674.0635825892 3.6335995 1103.316
+180675.0635826935 3.6336782 1103.316
+180676.0635827978 3.6335995 1103.3949
+180677.0635829021 3.6336389 1103.3555
+180678.0635830064 3.6336782 1103.3555
+180679.0635831107 3.6337175 1103.4147
+180680.063583215 3.6336389 1103.2765
+180681.0635833193 3.6336782 1103.316
+180682.0635834236 3.6336782 1103.3357
+180683.0635835279 3.6336782 1103.3357
+180684.0635836322 3.6336389 1103.4147
+180685.0635837365 3.6336782 1103.3752
+180686.0635838408 3.6337175 1103.3752
+180687.0635839452 3.6337175 1103.3357
+180688.0635840495 3.6337571 1103.2567
+180689.0635841538 3.6337571 1103.3949
+180690.0635842581 3.6338358 1103.3752
+180691.0635843624 3.6337571 1103.3949
+180692.0635844667 3.6338358 1103.3357
+180693.063584571 3.6337965 1103.3752
+180694.0635846753 3.6338751 1103.4344
+180695.0635847796 3.6337175 1103.3555
+180696.0635848839 3.6337175 1103.3357
+180697.0635849882 3.6338751 1103.3555
+180698.0635850925 3.6338358 1103.3752
+180699.0635851969 3.6338751 1103.2963
+180700.0635853012 3.6338358 1103.3949
+180701.0635854055 3.6338358 1103.4147
+180702.0635855098 3.6337175 1103.2765
+180703.0635856141 3.6337571 1103.4147
+180704.0635857184 3.6338751 1103.3357
+180705.0635858227 3.6338358 1103.3555
+180706.063585927 3.6337175 1103.3357
+180707.0635860313 3.6338751 1103.3949
+180708.0635861356 3.6339538 1103.316
+180709.0635862399 3.6338751 1103.3949
+180710.0635863442 3.6339145 1103.3357
+180711.0635864486 3.6338751 1103.4147
+180712.0635865529 3.6338751 1103.3357
+180713.0635866572 3.6338751 1103.2963
+180714.0635867615 3.6339145 1103.316
+180715.0635868658 3.6338751 1103.2963
+180716.0635869701 3.6338751 1103.4147
+180717.0635870744 3.6339931 1103.3752
+180718.0635871787 3.6339145 1103.3555
+180719.063587283 3.6337965 1103.4147
+180720.0635873873 3.6339931 1103.3357
+180721.0635874916 3.6339145 1103.2765
+180722.0635875959 3.6339538 1103.3357
+180723.0635877003 3.6339931 1103.316
+180724.0635878046 3.6339931 1103.3555
+180725.0635879089 3.6339145 1103.3357
+180726.0635880132 3.6339145 1103.316
+180727.0635881175 3.6339538 1103.2765
+180728.0635882218 3.6339931 1103.3752
+180729.0635883261 3.6339931 1103.2963
+180730.0635884304 3.6340721 1103.316
+180731.0635885347 3.6340325 1103.3555
+180732.063588639 3.6339931 1103.3752
+180733.0635887433 3.6340325 1103.316
+180734.0635888476 3.6339931 1103.316
+180735.0635889519 3.6341507 1103.2567
+180736.0635890563 3.6339145 1103.2963
+180737.0635891606 3.6339931 1103.4147
+180738.0635892649 3.6341114 1103.3752
+180739.0635893692 3.6340721 1103.4147
+180740.0635894735 3.6341114 1103.3752
+180741.0635895778 3.6340721 1103.3357
+180742.0635896821 3.6340721 1103.316
+180743.0635897864 3.6341507 1103.3357
+180744.0635898907 3.6341507 1103.316
+180745.063589995 3.6341114 1103.3949
+180746.0635900993 3.6341507 1103.3357
+180747.0635902036 3.6340325 1103.4344
+180748.063590308 3.6342294 1103.3752
+180749.0635904123 3.6340721 1103.4147
+180750.0635905166 3.6341507 1103.4344
+180751.0635906209 3.6342294 1103.4147
+180752.0635907252 3.6341901 1103.3357
+180753.0635908295 3.6342294 1103.3555
+180754.0635909338 3.6341114 1103.3949
+180755.0635910381 3.6341114 1103.3555
+180756.0635911424 3.6341901 1103.474
+180757.0635912467 3.6341507 1103.4147
+180758.063591351 3.6341507 1103.316
+180759.0635914553 3.6341114 1103.4147
+180760.0635915597 3.6341901 1103.4147
+180761.063591664 3.6342294 1103.2765
+180762.0635917683 3.6341901 1103.3949
+180763.0635918726 3.6341114 1103.3555
+180764.0635919769 3.6342688 1103.4542
+180765.0635920812 3.6343474 1103.3357
+180766.0635921855 3.6341901 1103.3949
+180767.0635922898 3.6342688 1103.4147
+180768.0635923941 3.6342688 1103.3357
+180769.0635924984 3.6341901 1103.3752
+180770.0635926027 3.6342688 1103.3555
+180771.063592707 3.6342688 1103.3949
+180772.0635928113 3.6342688 1103.4542
+180773.0635929157 3.6344264 1103.3555
+180774.06359302 3.6342688 1103.2963
+180775.0635931243 3.6343081 1103.3949
+180776.0635932286 3.6341901 1103.3555
+180777.0635933329 3.6342688 1103.4344
+180778.0635934372 3.6344657 1103.3357
+180779.0635935415 3.6342688 1103.2765
+180780.0635936458 3.6342294 1103.2963
+180781.0635937501 3.6344264 1103.3555
+180782.0635938544 3.6343474 1103.2963
+180783.0635939587 3.6344264 1103.2963
+180784.063594063 3.6343474 1103.316
+180785.0635941674 3.634387 1103.3555
+180786.0635942717 3.6344657 1103.2765
+180787.063594376 3.634387 1103.3752
+180788.0635944803 3.6343474 1103.3357
+180789.0635945846 3.6344657 1103.3949
+180790.0635946889 3.6344657 1103.3357
+180791.0635947932 3.6344264 1103.3752
+180792.0635948975 3.634505 1103.4147
+180793.0635950018 3.6345444 1103.3555
+180794.0635951061 3.6343474 1103.4344
+180795.0635952104 3.6344264 1103.2963
+180796.0635953147 3.6344657 1103.3949
+180797.0635954191 3.6344264 1103.3949
+180798.0635955234 3.634505 1103.3949
+180799.0635956277 3.6344264 1103.4147
+180800.063595732 3.6344264 1103.316
+180801.0635958363 3.6344657 1103.4147
+180802.0635959406 3.6344657 1103.2963
+180803.0635960449 3.6345444 1103.316
+180804.0635961492 3.6345444 1103.3357
+180805.0635962535 3.6346231 1103.3555
+180806.0635963578 3.6345444 1103.2765
+180807.0635964621 3.6344657 1103.3752
+180808.0635965664 3.6344264 1103.2567
+180809.0635966707 3.6345444 1103.2963
+180810.0635967751 3.634505 1103.3555
+180811.0635968794 3.6345837 1103.3555
+180812.0635969837 3.6345837 1103.3357
+180813.063597088 3.6345837 1103.3555
+180814.0635971923 3.6346624 1103.3752
+180815.0635972966 3.6345444 1103.3949
+180816.0635974009 3.6345444 1103.3949
+180817.0635975052 3.6346624 1103.2963
+180818.0635976095 3.6345837 1103.3752
+180819.0635977138 3.634702 1103.4147
+180820.0635978181 3.6346231 1103.3357
+180821.0635979224 3.6346231 1103.3555
+180822.0635980268 3.6345444 1103.3949
+180823.0635981311 3.6345837 1103.3555
+180824.0635982354 3.6345837 1103.2765
+180825.0635983397 3.634702 1103.2765
+180826.063598444 3.6346231 1103.4344
+180827.0635985483 3.634702 1103.3752
+180828.0635986526 3.6346231 1103.3357
+180829.0635987569 3.6345444 1103.2963
+180830.0635988612 3.6346624 1103.3555
+180831.0635989655 3.6346624 1103.3555
+180832.0635990698 3.6347413 1103.3949
+180833.0635991741 3.6347413 1103.2963
+180834.0635992785 3.6347413 1103.3752
+180835.0635993828 3.634702 1103.3555
+180836.0635994871 3.63482 1103.2765
+180837.0635995914 3.6347413 1103.3357
+180838.0635996957 3.6347413 1103.3752
+180839.0635998 3.63482 1103.3949
+180840.0635999043 3.6347413 1103.4147
+180841.0636000086 3.6348593 1103.3752
+180842.0636001129 3.63482 1103.2963
+180843.0636002172 3.63482 1103.316
+180844.0636003215 3.6347413 1103.3752
+180845.0636004258 3.6348593 1103.2567
+180846.0636005301 3.63482 1103.2963
+180847.0636006345 3.6347413 1103.2765
+180848.0636007388 3.63482 1103.2765
+180849.0636008431 3.6348593 1103.316
+180850.0636009474 3.6347806 1103.3357
+180851.0636010517 3.6348593 1103.3357
+180852.063601156 3.6348593 1103.3752
+180853.0636012603 3.6347806 1103.3555
+180854.0636013646 3.634938 1103.4147
+180855.0636014689 3.6347806 1103.3357
+180856.0636015732 3.634938 1103.3752
+180857.0636016775 3.6349773 1103.4344
+180858.0636017818 3.6348593 1103.4344
+180859.0636018862 3.634938 1103.4147
+180860.0636019905 3.634938 1103.4344
+180861.0636020948 3.6350169 1103.3555
+180862.0636021991 3.634938 1103.3357
+180863.0636023034 3.6349773 1103.316
+180864.0636024077 3.6349773 1103.3949
+180865.063602512 3.634938 1103.4344
+180866.0636026163 3.6348987 1103.474
+180867.0636027206 3.634938 1103.4344
+180868.0636028249 3.634938 1103.316
+180869.0636029292 3.6349773 1103.3949
+180870.0636030335 3.6350169 1103.3752
+180871.0636031379 3.6349773 1103.2567
+180872.0636032422 3.6349773 1103.2963
+180873.0636033465 3.6349773 1103.4344
+180874.0636034508 3.6350563 1103.3555
+180875.0636035551 3.6350563 1103.3357
+180876.0636036594 3.6350169 1103.3357
+180877.0636037637 3.6350563 1103.316
+180878.063603868 3.634938 1103.3752
+180879.0636039723 3.6350956 1103.3555
+180880.0636040766 3.6349773 1103.3357
+180881.0636041809 3.6349773 1103.3752
+180882.0636042852 3.634938 1103.3752
+180883.0636043896 3.6349773 1103.3555
+180884.0636044939 3.6350563 1103.3555
+180885.0636045982 3.6351349 1103.4147
+180886.0636047025 3.6350563 1103.316
+180887.0636048068 3.6350956 1103.3555
+180888.0636049111 3.6350563 1103.3949
+180889.0636050154 3.6351349 1103.2963
+180890.0636051197 3.6350563 1103.3357
+180891.063605224 3.6350563 1103.4344
+180892.0636053283 3.6351743 1103.2963
+180893.0636054326 3.6352136 1103.3949
+180894.0636055369 3.6350956 1103.3555
+180895.0636056412 3.6351349 1103.4344
+180896.0636057456 3.6351743 1103.316
+180897.0636058499 3.6351349 1103.2567
+180898.0636059542 3.6350956 1103.316
+180899.0636060585 3.6352136 1103.4344
+180900.0636061628 3.6352136 1103.3752
+180901.0636062671 3.6351349 1103.3555
+180902.0636063714 3.6350956 1103.316
+180903.0636064757 3.6351743 1103.4147
+180904.06360658 3.6351349 1103.4344
+180905.0636066843 3.6351743 1103.3752
+180906.0636067886 3.6351743 1103.4147
+180907.0636068929 3.635253 1103.3949
+180908.0636069973 3.6352136 1103.4344
+180909.0636071016 3.6352925 1103.3357
+180910.0636072059 3.6351743 1103.3357
+180911.0636073102 3.6352925 1103.3752
+180912.0636074145 3.635253 1103.3357
+180913.0636075188 3.6352136 1103.3949
+180914.0636076231 3.6352925 1103.4344
+180915.0636077274 3.6353319 1103.3949
+180916.0636078317 3.635253 1103.2765
+180917.063607936 3.6352136 1103.316
+180918.0636080403 3.6352136 1103.316
+180919.0636081446 3.6352925 1103.3949
+180920.063608249 3.6353319 1103.3752
+180921.0636083533 3.6352925 1103.3949
+180922.0636084576 3.635253 1103.2963
+180923.0636085619 3.6352925 1103.3357
+180924.0636086662 3.6352925 1103.3357
+180925.0636087705 3.6353319 1103.3752
+180926.0636088748 3.6353319 1103.4147
+180927.0636089791 3.6352925 1103.316
+180928.0636090834 3.6353712 1103.3357
+180929.0636091877 3.6354499 1103.3357
+180930.063609292 3.6354105 1103.3357
+180931.0636093963 3.6353319 1103.3555
+180932.0636095006 3.6352925 1103.3555
+180933.063609605 3.6352925 1103.3357
+180934.0636097093 3.6353712 1103.3949
+180935.0636098136 3.6353712 1103.3357
+180936.0636099179 3.6355286 1103.3555
+180937.0636100222 3.6353319 1103.3949
+180938.0636101265 3.6354105 1103.316
+180939.0636102308 3.6354499 1103.3357
+180940.0636103351 3.6354892 1103.316
+180941.0636104394 3.6354105 1103.3555
+180942.0636105437 3.6353712 1103.3949
+180943.063610648 3.6354892 1103.3555
+180944.0636107523 3.6353712 1103.4147
+180945.0636108567 3.6354105 1103.3949
+180946.063610961 3.6354499 1103.3752
+180947.0636110653 3.6354499 1103.3752
+180948.0636111696 3.6355286 1103.3752
+180949.0636112739 3.6354499 1103.3949
+180950.0636113782 3.6354499 1103.3752
+180951.0636114825 3.6354892 1103.316
+180952.0636115868 3.6354892 1103.2963
+180953.0636116911 3.6354105 1103.3555
+180954.0636117954 3.6354892 1103.3949
+180955.0636118997 3.6354892 1103.2963
+180956.063612004 3.6354892 1103.3555
+180957.0636121084 3.6355286 1103.4542
+180958.0636122127 3.6355679 1103.4147
+180959.063612317 3.6355679 1103.316
+180960.0636124213 3.6355286 1103.2765
+180961.0636125256 3.6355286 1103.316
+180962.0636126299 3.6355286 1103.3949
+180963.0636127342 3.6355679 1103.3949
+180964.0636128385 3.6355286 1103.4147
+180965.0636129428 3.6356468 1103.2765
+180966.0636130471 3.6355679 1103.3357
+180967.0636131514 3.6354892 1103.3555
+180968.0636132557 3.6354892 1103.3752
+180969.06361336 3.6356075 1103.2963
+180970.0636134644 3.6357255 1103.316
+180971.0636135687 3.6356468 1103.3357
+180972.063613673 3.6356075 1103.2963
+180973.0636137773 3.6356862 1103.3949
+180974.0636138816 3.6356468 1103.3555
+180975.0636139859 3.6356862 1103.3752
+180976.0636140902 3.6356862 1103.3752
+180977.0636141945 3.6356468 1103.3949
+180978.0636142988 3.6356075 1103.2963
+180979.0636144031 3.6357648 1103.316
+180980.0636145074 3.6356468 1103.3752
+180981.0636146117 3.6356862 1103.3357
+180982.0636147161 3.6356468 1103.3752
+180983.0636148204 3.6357255 1103.3752
+180984.0636149247 3.6356862 1103.316
+180985.063615029 3.6357255 1103.3949
+180986.0636151333 3.6357255 1103.3752
+180987.0636152376 3.6357255 1103.3357
+180988.0636153419 3.6357648 1103.316
+180989.0636154462 3.6358042 1103.2963
+180990.0636155505 3.6357648 1103.3555
+180991.0636156548 3.6358042 1103.3949
+180992.0636157591 3.6358435 1103.3555
+180993.0636158634 3.6358042 1103.3357
+180994.0636159678 3.6358042 1103.2963
+180995.0636160721 3.6358042 1103.3949
+180996.0636161764 3.6358042 1103.316
+180997.0636162807 3.6358042 1103.3949
+180998.063616385 3.6358042 1103.2963
+180999.0636164893 3.6358435 1103.4542
+181000.0636165936 3.6357255 1103.3752
+181001.0636166979 3.6358829 1103.3752
+181002.0636168022 3.6357648 1103.3949
+181003.0636169065 3.6358829 1103.316
+181004.0636170108 3.6358042 1103.3555
+181005.0636171151 3.6359224 1103.2765
+181006.0636172195 3.6359224 1103.3555
+181007.0636173238 3.6358435 1103.316
+181008.0636174281 3.6358435 1103.3357
+181009.0636175324 3.6358435 1103.3555
+181010.0636176367 3.6358829 1103.3555
+181011.063617741 3.6358829 1103.2963
+181012.0636178453 3.6358829 1103.3357
+181013.0636179496 3.6359618 1103.3555
+181014.0636180539 3.6358829 1103.2963
+181015.0636181582 3.6358829 1103.3949
+181016.0636182625 3.6358829 1103.2963
+181017.0636183668 3.6359618 1103.316
+181018.0636184711 3.6358829 1103.3949
+181019.0636185755 3.6360011 1103.4147
+181020.0636186798 3.6358435 1103.3357
+181021.0636187841 3.6359618 1103.2963
+181022.0636188884 3.6358829 1103.316
+181023.0636189927 3.6360798 1103.3357
+181024.063619097 3.6360798 1103.3357
+181025.0636192013 3.6359224 1103.3555
+181026.0636193056 3.6359224 1103.3357
+181027.0636194099 3.6360011 1103.3752
+181028.0636195142 3.6359224 1103.2765
+181029.0636196185 3.6360798 1103.2765
+181030.0636197228 3.6359224 1103.3752
+181031.0636198272 3.6360011 1103.3752
+181032.0636199315 3.6360011 1103.3555
+181033.0636200358 3.6359618 1103.474
+181034.0636201401 3.6360011 1103.316
+181035.0636202444 3.6360404 1103.2963
+181036.0636203487 3.6361585 1103.3357
+181037.063620453 3.6360404 1103.3949
+181038.0636205573 3.6360011 1103.3357
+181039.0636206616 3.6360404 1103.3357
+181040.0636207659 3.6360798 1103.4147
+181041.0636208702 3.6360798 1103.3555
+181042.0636209745 3.6361585 1103.3555
+181043.0636210789 3.6360798 1103.3949
+181044.0636211832 3.6361191 1103.3752
+181045.0636212875 3.6361585 1103.316
+181046.0636213918 3.6360798 1103.3949
+181047.0636214961 3.6361191 1103.3555
+181048.0636216004 3.6360404 1103.3357
+181049.0636217047 3.6360798 1103.4344
+181050.063621809 3.6361585 1103.4542
+181051.0636219133 3.6361585 1103.2963
+181052.0636220176 3.6361191 1103.3752
+181053.0636221219 3.6361191 1103.3357
+181054.0636222262 3.6361191 1103.316
+181055.0636223305 3.6362374 1103.3752
+181056.0636224349 3.6361978 1103.4344
+181057.0636225392 3.6361978 1103.4542
+181058.0636226435 3.6361191 1103.2567
+181059.0636227478 3.6363161 1103.3357
+181060.0636228521 3.6361978 1103.3949
+181061.0636229564 3.6362374 1103.3752
+181062.0636230607 3.6362767 1103.3752
+181063.063623165 3.6361585 1103.4542
+181064.0636232693 3.6361978 1103.3555
+181065.0636233736 3.6362767 1103.3949
+181066.0636234779 3.6363161 1103.3752
+181067.0636235822 3.6362374 1103.316
+181068.0636236866 3.6362767 1103.3949
+181069.0636237909 3.6361978 1103.316
+181070.0636238952 3.6362767 1103.3357
+181071.0636239995 3.6362374 1103.3752
+181072.0636241038 3.6363554 1103.3357
+181073.0636242081 3.6362767 1103.3949
+181074.0636243124 3.6363161 1103.3555
+181075.0636244167 3.6363554 1103.316
+181076.063624521 3.6363554 1103.3752
+181077.0636246253 3.6363947 1103.3949
+181078.0636247296 3.6362767 1103.3357
+181079.0636248339 3.6362767 1103.3555
+181080.0636249383 3.6362767 1103.474
+181081.0636250426 3.6363554 1103.3949
+181082.0636251469 3.6363161 1103.3357
+181083.0636252512 3.6363161 1103.2963
+181084.0636253555 3.6363161 1103.3357
+181085.0636254598 3.6363161 1103.3357
+181086.0636255641 3.6363947 1103.3752
+181087.0636256684 3.6364734 1103.3752
+181088.0636257727 3.6364341 1103.3949
+181089.063625877 3.6365128 1103.3949
+181090.0636259813 3.6363947 1103.2963
+181091.0636260856 3.6363947 1103.3949
+181092.0636261899 3.6363947 1103.3555
+181093.0636262943 3.6363554 1103.3555
+181094.0636263986 3.6364341 1103.4147
+181095.0636265029 3.6364341 1103.4147
+181096.0636266072 3.6363947 1103.3555
+181097.0636267115 3.6363947 1103.3357
+181098.0636268158 3.6364734 1103.3949
+181099.0636269201 3.6364734 1103.3357
+181100.0636270244 3.6365128 1103.4147
+181101.0636271287 3.6363947 1103.3949
+181102.063627233 3.6364341 1103.4147
+181103.0636273373 3.6365523 1103.4147
+181104.0636274416 3.6364734 1103.4344
+181105.063627546 3.6363947 1103.4147
+181106.0636276503 3.6364341 1103.316
+181107.0636277546 3.6365128 1103.3949
+181108.0636278589 3.636631 1103.4147
+181109.0636279632 3.6364734 1103.3752
+181110.0636280675 3.6365917 1103.3555
+181111.0636281718 3.6365523 1103.3752
+181112.0636282761 3.6365523 1103.3752
+181113.0636283804 3.6365917 1103.3949
+181114.0636284847 3.6365523 1103.3949
+181115.063628589 3.6364341 1103.3357
+181116.0636286933 3.6365917 1103.316
+181117.0636287977 3.6365523 1103.2567
+181118.063628902 3.6365128 1103.3752
+181119.0636290063 3.6367097 1103.316
+181120.0636291106 3.6365128 1103.3752
+181121.0636292149 3.6364341 1103.2369
+181122.0636293192 3.6365917 1103.3949
+181123.0636294235 3.636631 1103.4147
+181124.0636295278 3.6365917 1103.3357
+181125.0636296321 3.6367097 1103.2567
+181126.0636297364 3.6365917 1103.3949
+181127.0636298407 3.6365917 1103.3949
+181128.063629945 3.6366704 1103.2963
+181129.0636300494 3.636749 1103.3949
+181130.0636301537 3.6365917 1103.4147
+181131.063630258 3.636631 1103.3752
+181132.0636303623 3.636631 1103.3949
+181133.0636304666 3.6366704 1103.2963
+181134.0636305709 3.6365917 1103.3949
+181135.0636306752 3.636631 1103.4147
+181136.0636307795 3.6367097 1103.3357
+181137.0636308838 3.636631 1103.3357
+181138.0636309881 3.6366704 1103.316
+181139.0636310924 3.6366704 1103.3752
+181140.0636311967 3.6365917 1103.3949
+181141.063631301 3.6366704 1103.3555
+181142.0636314054 3.636631 1103.3752
+181143.0636315097 3.6366704 1103.3357
+181144.063631614 3.636749 1103.3357
+181145.0636317183 3.636631 1103.4147
+181146.0636318226 3.636749 1103.3357
+181147.0636319269 3.6367884 1103.3357
+181148.0636320312 3.6367884 1103.4542
+181149.0636321355 3.6368277 1103.3357
+181150.0636322398 3.6367097 1103.3949
+181151.0636323441 3.6367884 1103.3555
+181152.0636324484 3.6368277 1103.4147
+181153.0636325527 3.636749 1103.3357
+181154.0636326571 3.6368277 1103.3555
+181155.0636327614 3.6367884 1103.2765
+181156.0636328657 3.6368277 1103.3949
+181157.06363297 3.636749 1103.3555
+181158.0636330743 3.6369066 1103.316
+181159.0636331786 3.6369066 1103.3752
+181160.0636332829 3.6368673 1103.316
+181161.0636333872 3.6369066 1103.3752
+181162.0636334915 3.6367884 1103.3949
+181163.0636335958 3.6368277 1103.3357
+181164.0636337001 3.6368277 1103.3555
+181165.0636338044 3.6368277 1103.3555
+181166.0636339088 3.6370246 1103.3357
+181167.0636340131 3.6369066 1103.3555
+181168.0636341174 3.6368277 1103.4147
+181169.0636342217 3.6368673 1103.3555
+181170.063634326 3.6369066 1103.3357
+181171.0636344303 3.636946 1103.4147
+181172.0636345346 3.6368673 1103.3949
+181173.0636346389 3.6369066 1103.3357
+181174.0636347432 3.6368673 1103.3555
+181175.0636348475 3.636946 1103.3752
+181176.0636349518 3.6368277 1103.4344
+181177.0636350561 3.6367884 1103.3752
+181178.0636351604 3.636946 1103.2963
+181179.0636352648 3.6369066 1103.2963
+181180.0636353691 3.6368673 1103.316
+181181.0636354734 3.6369853 1103.4542
+181182.0636355777 3.6370246 1103.3357
+181183.063635682 3.6369066 1103.3949
+181184.0636357863 3.6369853 1103.2963
+181185.0636358906 3.6369853 1103.3357
+181186.0636359949 3.6369853 1103.3949
+181187.0636360992 3.6369853 1103.3555
+181188.0636362035 3.637064 1103.2765
+181189.0636363078 3.6371033 1103.3357
+181190.0636364121 3.6370246 1103.2765
+181191.0636365165 3.6368673 1103.3555
+181192.0636366208 3.6369853 1103.3949
+181193.0636367251 3.6369853 1103.4147
+181194.0636368294 3.6371033 1103.3752
+181195.0636369337 3.636946 1103.3949
+181196.063637038 3.6371822 1103.3752
+181197.0636371423 3.6370246 1103.3555
+181198.0636372466 3.6370246 1103.3752
+181199.0636373509 3.6370246 1103.3357
+181200.0636374552 3.637064 1103.3752
+181201.0636375595 3.6369853 1103.2765
+181202.0636376638 3.6371033 1103.2567
+181203.0636377682 3.637064 1103.316
+181204.0636378725 3.6371429 1103.4147
+181205.0636379768 3.6369853 1103.3555
+181206.0636380811 3.6371033 1103.3555
+181207.0636381854 3.6371033 1103.2567
+181208.0636382897 3.637064 1103.3555
+181209.063638394 3.6371822 1103.3752
+181210.0636384983 3.6371429 1103.3357
+181211.0636386026 3.6371033 1103.3752
+181212.0636387069 3.637064 1103.3949
+181213.0636388112 3.6371822 1103.316
+181214.0636389155 3.6371429 1103.3949
+181215.0636390198 3.6372216 1103.3357
+181216.0636391242 3.6372609 1103.3357
+181217.0636392285 3.6371822 1103.3949
+181218.0636393328 3.6372216 1103.3357
+181219.0636394371 3.6371822 1103.3357
+181220.0636395414 3.6371033 1103.4147
+181221.0636396457 3.6372216 1103.2963
+181222.06363975 3.6371429 1103.3555
+181223.0636398543 3.6372609 1103.316
+181224.0636399586 3.6372609 1103.3752
+181225.0636400629 3.6372609 1103.3555
+181226.0636401672 3.6373396 1103.2765
+181227.0636402715 3.6373003 1103.3949
+181228.0636403759 3.6372216 1103.3555
+181229.0636404802 3.6373789 1103.3555
+181230.0636405845 3.6373003 1103.4344
+181231.0636406888 3.6372216 1103.316
+181232.0636407931 3.6373396 1103.3357
+181233.0636408974 3.6372216 1103.2369
+181234.0636410017 3.6373003 1103.316
+181235.063641106 3.6372609 1103.3949
+181236.0636412103 3.6373396 1103.3357
+181237.0636413146 3.6373003 1103.3357
+181238.0636414189 3.6373396 1103.3752
+181239.0636415232 3.6372609 1103.4147
+181240.0636416276 3.6373396 1103.3752
+181241.0636417319 3.6373789 1103.3357
+181242.0636418362 3.6373789 1103.474
+181243.0636419405 3.6374183 1103.3357
+181244.0636420448 3.6373396 1103.3949
+181245.0636421491 3.6373003 1103.4147
+181246.0636422534 3.6373003 1103.2963
+181247.0636423577 3.6373396 1103.4147
+181248.063642462 3.6373789 1103.2963
+181249.0636425663 3.6374183 1103.316
+181250.0636426706 3.6373789 1103.2963
+181251.0636427749 3.6373396 1103.3555
+181252.0636428793 3.6374578 1103.2765
+181253.0636429836 3.6374183 1103.316
+181254.0636430879 3.6374578 1103.316
+181255.0636431922 3.6374183 1103.2963
+181256.0636432965 3.6374972 1103.3555
+181257.0636434008 3.6374972 1103.3357
+181258.0636435051 3.6374183 1103.3357
+181259.0636436094 3.6374972 1103.1975
+181260.0636437137 3.6374183 1103.3357
+181261.063643818 3.6374578 1103.3752
+181262.0636439223 3.6374578 1103.474
+181263.0636440266 3.6374972 1103.3949
+181264.0636441309 3.6374972 1103.3357
+181265.0636442353 3.6374972 1103.3752
+181266.0636443396 3.6375365 1103.3752
+181267.0636444439 3.6375365 1103.316
+181268.0636445482 3.6376152 1103.3752
+181269.0636446525 3.6374972 1103.4147
+181270.0636447568 3.6375759 1103.4147
+181271.0636448611 3.6376152 1103.3949
+181272.0636449654 3.6374972 1103.4147
+181273.0636450697 3.6375759 1103.3752
+181274.063645174 3.6375759 1103.316
+181275.0636452783 3.6375759 1103.4147
+181276.0636453826 3.6376939 1103.2963
+181277.063645487 3.6376152 1103.316
+181278.0636455913 3.6376545 1103.3752
+181279.0636456956 3.6375759 1103.3555
+181280.0636457999 3.6376152 1103.4344
+181281.0636459042 3.6376152 1103.4147
+181282.0636460085 3.6376939 1103.3752
+181283.0636461128 3.6375365 1103.4344
+181284.0636462171 3.6377332 1103.3752
+181285.0636463214 3.6376152 1103.3752
+181286.0636464257 3.6376939 1103.3752
+181287.06364653 3.6376545 1103.3752
+181288.0636466343 3.6376545 1103.3949
+181289.0636467387 3.6377728 1103.4147
+181290.063646843 3.6376545 1103.3752
+181291.0636469473 3.6377728 1103.3357
+181292.0636470516 3.6376545 1103.4344
+181293.0636471559 3.6376152 1103.3357
+181294.0636472602 3.6377728 1103.3949
+181295.0636473645 3.6377728 1103.3555
+181296.0636474688 3.6376939 1103.3555
+181297.0636475731 3.6376545 1103.3555
+181298.0636476774 3.6377728 1103.3357
+181299.0636477817 3.6377332 1103.3752
+181300.063647886 3.6377332 1103.316
+181301.0636479903 3.6377332 1103.3357
+181302.0636480947 3.6378121 1103.2963
+181303.063648199 3.6377332 1103.3752
+181304.0636483033 3.6377728 1103.3555
+181305.0636484076 3.6377728 1103.2963
+181306.0636485119 3.6377728 1103.316
+181307.0636486162 3.6377332 1103.3752
+181308.0636487205 3.6378908 1103.4344
+181309.0636488248 3.6378515 1103.3555
+181310.0636489291 3.6378121 1103.3949
+181311.0636490334 3.6378121 1103.3949
+181312.0636491377 3.6378515 1103.3357
+181313.063649242 3.6378515 1103.474
+181314.0636493464 3.6378908 1103.3752
+181315.0636494507 3.6377728 1103.2963
+181316.063649555 3.6378121 1103.4344
+181317.0636496593 3.6377728 1103.3555
+181318.0636497636 3.6378121 1103.3752
+181319.0636498679 3.6380088 1103.3555
+181320.0636499722 3.6378515 1103.3752
+181321.0636500765 3.6379302 1103.3357
+181322.0636501808 3.6378515 1103.2963
+181323.0636502851 3.6379695 1103.3949
+181324.0636503894 3.6379695 1103.2765
+181325.0636504937 3.6378908 1103.2567
+181326.0636505981 3.6378515 1103.2963
+181327.0636507024 3.6379695 1103.4147
+181328.0636508067 3.6379302 1103.3555
+181329.063650911 3.6380482 1103.3357
+181330.0636510153 3.6380482 1103.3752
+181331.0636511196 3.6379302 1103.3555
+181332.0636512239 3.6380482 1103.3555
+181333.0636513282 3.6379302 1103.4147
+181334.0636514325 3.6380482 1103.3949
+181335.0636515368 3.6381271 1103.3555
+181336.0636516411 3.6380088 1103.3949
+181337.0636517454 3.6380482 1103.2765
+181338.0636518497 3.6380482 1103.3555
+181339.0636519541 3.6380482 1103.316
+181340.0636520584 3.6380482 1103.3357
+181341.0636521627 3.6381271 1103.2963
+181342.063652267 3.6380482 1103.3752
+181343.0636523713 3.6379695 1103.3752
+181344.0636524756 3.6380482 1103.3752
+181345.0636525799 3.6380877 1103.3752
+181346.0636526842 3.6380877 1103.3357
+181347.0636527885 3.6381271 1103.3357
+181348.0636528928 3.6380877 1103.3949
+181349.0636529971 3.6380877 1103.4344
+181350.0636531014 3.6380088 1103.2567
+181351.0636532058 3.6380877 1103.4147
+181352.0636533101 3.6380877 1103.3357
+181353.0636534144 3.6380877 1103.3555
+181354.0636535187 3.6381664 1103.3752
+181355.063653623 3.6381271 1103.316
+181356.0636537273 3.6381664 1103.3949
+181357.0636538316 3.6382058 1103.4542
+181358.0636539359 3.6382451 1103.4344
+181359.0636540402 3.6382451 1103.3949
+181360.0636541445 3.6382844 1103.4147
+181361.0636542488 3.6382451 1103.3555
+181362.0636543531 3.6382451 1103.4344
+181363.0636544575 3.6382844 1103.3357
+181364.0636545618 3.6382451 1103.3357
+181365.0636546661 3.6382844 1103.3949
+181366.0636547704 3.6381664 1103.3949
+181367.0636548747 3.6381664 1103.2963
+181368.063654979 3.6382844 1103.3555
+181369.0636550833 3.6382058 1103.3555
+181370.0636551876 3.6382844 1103.3357
+181371.0636552919 3.6382451 1103.3555
+181372.0636553962 3.6382058 1103.3555
+181373.0636555005 3.6383631 1103.3949
+181374.0636556048 3.6382844 1103.3555
+181375.0636557091 3.6382844 1103.3555
+181376.0636558135 3.6382451 1103.316
+181377.0636559178 3.6383238 1103.4147
+181378.0636560221 3.6383631 1103.3555
+181379.0636561264 3.638442 1103.3555
+181380.0636562307 3.6382844 1103.316
+181381.063656335 3.6382844 1103.3752
+181382.0636564393 3.6383631 1103.3752
+181383.0636565436 3.6383631 1103.3555
+181384.0636566479 3.6383631 1103.3555
+181385.0636567522 3.6384027 1103.3555
+181386.0636568565 3.6384027 1103.3555
+181387.0636569608 3.6384027 1103.316
+181388.0636570652 3.6384027 1103.5134
+181389.0636571695 3.638442 1103.3752
+181390.0636572738 3.638442 1103.3357
+181391.0636573781 3.6383631 1103.2963
+181392.0636574824 3.6384814 1103.2765
+181393.0636575867 3.6384814 1103.3949
+181394.063657691 3.6384027 1103.3357
+181395.0636577953 3.638442 1103.4542
+181396.0636578996 3.6385601 1103.3752
+181397.0636580039 3.6385207 1103.3357
+181398.0636581082 3.6384814 1103.4147
+181399.0636582125 3.6385601 1103.316
+181400.0636583169 3.6384814 1103.3949
+181401.0636584212 3.6384027 1103.4147
+181402.0636585255 3.638442 1103.4147
+181403.0636586298 3.638442 1103.4542
+181404.0636587341 3.6385601 1103.3555
+181405.0636588384 3.6385994 1103.2765
+181406.0636589427 3.6384814 1103.4147
+181407.063659047 3.6385601 1103.3949
+181408.0636591513 3.6385601 1103.2963
+181409.0636592556 3.6385207 1103.4344
+181410.0636593599 3.638442 1103.3357
+181411.0636594642 3.6385601 1103.3949
+181412.0636595686 3.6385601 1103.3752
+181413.0636596729 3.6385601 1103.3949
+181414.0636597772 3.6385601 1103.2963
+181415.0636598815 3.6386387 1103.2765
+181416.0636599858 3.6386781 1103.3949
+181417.0636600901 3.6385601 1103.3555
+181418.0636601944 3.6386387 1103.3357
+181419.0636602987 3.6385994 1103.3357
+181420.063660403 3.6385994 1103.3752
+181421.0636605073 3.6385601 1103.2765
+181422.0636606116 3.6385601 1103.3752
+181423.0636607159 3.6387177 1103.3357
+181424.0636608202 3.6386387 1103.3949
+181425.0636609246 3.6385601 1103.3357
+181426.0636610289 3.6386781 1103.2963
+181427.0636611332 3.638757 1103.3357
+181428.0636612375 3.6386781 1103.3357
+181429.0636613418 3.6385601 1103.3357
+181430.0636614461 3.6386781 1103.4147
+181431.0636615504 3.6386387 1103.4147
+181432.0636616547 3.6388357 1103.3357
+181433.063661759 3.6386781 1103.4147
+181434.0636618633 3.6387177 1103.3555
+181435.0636619676 3.6386781 1103.316
+181436.0636620719 3.6386781 1103.2765
+181437.0636621763 3.6386781 1103.2963
+181438.0636622806 3.6387177 1103.4542
+181439.0636623849 3.6386781 1103.4542
+181440.0636624892 3.6387177 1103.4147
+181441.0636625935 3.6387177 1103.3949
+181442.0636626978 3.6387177 1103.3949
+181443.0636628021 3.638757 1103.3949
+181444.0636629064 3.6387177 1103.3357
+181445.0636630107 3.6387963 1103.3949
+181446.063663115 3.6387177 1103.3555
+181447.0636632193 3.638757 1103.4147
+181448.0636633236 3.638757 1103.3752
+181449.063663428 3.638757 1103.3357
+181450.0636635323 3.6387177 1103.3555
+181451.0636636366 3.6386781 1103.4147
+181452.0636637409 3.6387177 1103.3555
+181453.0636638452 3.6388357 1103.3357
+181454.0636639495 3.638757 1103.3752
+181455.0636640538 3.6387177 1103.3555
+181456.0636641581 3.638757 1103.3357
+181457.0636642624 3.638875 1103.3752
+181458.0636643667 3.6387963 1103.2963
+181459.063664471 3.6386781 1103.3555
+181460.0636645753 3.6388357 1103.2765
+181461.0636646796 3.6386781 1103.3357
+181462.063664784 3.6388357 1103.3357
+181463.0636648883 3.638757 1103.3752
+181464.0636649926 3.638875 1103.316
+181465.0636650969 3.6388357 1103.2369
+181466.0636652012 3.638875 1103.3357
+181467.0636653055 3.6389143 1103.3949
+181468.0636654098 3.6389933 1103.2567
+181469.0636655141 3.638875 1103.2963
+181470.0636656184 3.638875 1103.3752
+181471.0636657227 3.6389143 1103.2963
+181472.063665827 3.6389143 1103.3949
+181473.0636659313 3.6389143 1103.3752
+181474.0636660357 3.638875 1103.2567
+181475.06366614 3.638875 1103.3357
+181476.0636662443 3.6389537 1103.3949
+181477.0636663486 3.6389537 1103.3752
+181478.0636664529 3.6389537 1103.3752
+181479.0636665572 3.6389537 1103.4344
+181480.0636666615 3.638875 1103.3357
+181481.0636667658 3.6389537 1103.2963
+181482.0636668701 3.6389143 1103.3555
+181483.0636669744 3.638875 1103.316
+181484.0636670787 3.6389933 1103.3752
+181485.063667183 3.6389933 1103.4147
+181486.0636672874 3.6391113 1103.3752
+181487.0636673917 3.6390719 1103.2567
+181488.063667496 3.6390326 1103.3949
+181489.0636676003 3.6390719 1103.4344
+181490.0636677046 3.6390719 1103.2765
+181491.0636678089 3.6390326 1103.3752
+181492.0636679132 3.6389537 1103.3357
+181493.0636680175 3.638875 1103.3752
+181494.0636681218 3.6390326 1103.3752
+181495.0636682261 3.6389933 1103.4147
+181496.0636683304 3.6389933 1103.2765
+181497.0636684347 3.6389933 1103.3555
+181498.063668539 3.6389537 1103.4344
+181499.0636686434 3.6392293 1103.2765
+181500.0636687477 3.6391113 1103.4147
+181501.063668852 3.6389933 1103.2765
+181502.0636689563 3.6390326 1103.4147
+181503.0636690606 3.6390326 1103.2765
+181504.0636691649 3.6391113 1103.3752
+181505.0636692692 3.6392293 1103.4147
+181506.0636693735 3.6391113 1103.4147
+181507.0636694778 3.6391506 1103.316
+181508.0636695821 3.6391113 1103.3752
+181509.0636696864 3.6390719 1103.4542
+181510.0636697907 3.6391506 1103.3752
+181511.0636698951 3.6391113 1103.3949
+181512.0636699994 3.6390326 1103.4147
+181513.0636701037 3.6391506 1103.316
+181514.063670208 3.6391506 1103.3357
+181515.0636703123 3.6391506 1103.3555
+181516.0636704166 3.6391506 1103.3555
+181517.0636705209 3.63919 1103.4147
+181518.0636706252 3.6391113 1103.2963
+181519.0636707295 3.6392686 1103.2963
+181520.0636708338 3.6392686 1103.4344
+181521.0636709381 3.6392293 1103.3555
+181522.0636710424 3.6392293 1103.3555
+181523.0636711468 3.6392686 1103.2765
+181524.0636712511 3.6392293 1103.3949
+181525.0636713554 3.63919 1103.4147
+181526.0636714597 3.63919 1103.2963
+181527.063671564 3.6393476 1103.2963
+181528.0636716683 3.6392293 1103.2369
+181529.0636717726 3.6392686 1103.3752
+181530.0636718769 3.6392686 1103.3752
+181531.0636719812 3.6393082 1103.3357
+181532.0636720855 3.6392686 1103.3357
+181533.0636721898 3.6392686 1103.3949
+181534.0636722941 3.6392293 1103.3752
+181535.0636723985 3.6393082 1103.3357
+181536.0636725028 3.6392293 1103.3357
+181537.0636726071 3.6393082 1103.2765
+181538.0636727114 3.6392293 1103.3752
+181539.0636728157 3.6392686 1103.3949
+181540.06367292 3.6394262 1103.474
+181541.0636730243 3.6395049 1103.3555
+181542.0636731286 3.6393869 1103.3752
+181543.0636732329 3.6392686 1103.3949
+181544.0636733372 3.6393082 1103.3949
+181545.0636734415 3.6393869 1103.3357
+181546.0636735458 3.6393869 1103.3752
+181547.0636736501 3.6395049 1103.3752
+181548.0636737545 3.6393082 1103.316
+181549.0636738588 3.6393476 1103.2567
+181550.0636739631 3.6393869 1103.4147
+181551.0636740674 3.6393869 1103.3357
+181552.0636741717 3.6393869 1103.3949
+181553.063674276 3.6395049 1103.3949
+181554.0636743803 3.6394262 1103.3555
+181555.0636744846 3.6393869 1103.3752
+181556.0636745889 3.6394656 1103.3357
+181557.0636746932 3.6394262 1103.3555
+181558.0636747975 3.6393869 1103.3752
+181559.0636749018 3.6393869 1103.3752
+181560.0636750062 3.6393082 1103.3949
+181561.0636751105 3.6395442 1103.4938
+181562.0636752148 3.6393869 1103.3949
+181563.0636753191 3.6395442 1103.3949
+181564.0636754234 3.6393869 1103.3752
+181565.0636755277 3.6393476 1103.4147
+181566.063675632 3.6394262 1103.2963
+181567.0636757363 3.6395442 1103.3752
+181568.0636758406 3.6396625 1103.2172
+181569.0636759449 3.6395049 1103.3752
+181570.0636760492 3.6395049 1103.3752
+181571.0636761535 3.6395049 1103.3949
+181572.0636762579 3.6395836 1103.3949
+181573.0636763622 3.6395836 1103.3555
+181574.0636764665 3.6395836 1103.3752
+181575.0636765708 3.6395049 1103.3555
+181576.0636766751 3.6395442 1103.3949
+181577.0636767794 3.6395442 1103.3949
+181578.0636768837 3.6395442 1103.3752
+181579.063676988 3.6396232 1103.3555
+181580.0636770923 3.6395836 1103.3555
+181581.0636771966 3.6395836 1103.3949
+181582.0636773009 3.6396232 1103.3555
+181583.0636774052 3.6396625 1103.3752
+181584.0636775095 3.6395836 1103.3555
+181585.0636776139 3.6396625 1103.4147
+181586.0636777182 3.6397018 1103.3555
+181587.0636778225 3.6397018 1103.4147
+181588.0636779268 3.6396232 1103.4147
+181589.0636780311 3.6395836 1103.316
+181590.0636781354 3.6397018 1103.3752
+181591.0636782397 3.6395836 1103.4344
+181592.063678344 3.6396625 1103.3357
+181593.0636784483 3.6396232 1103.3752
+181594.0636785526 3.6397412 1103.3555
+181595.0636786569 3.6397805 1103.316
+181596.0636787612 3.6396625 1103.3949
+181597.0636788656 3.6397805 1103.3555
+181598.0636789699 3.6397805 1103.316
+181599.0636790742 3.6397805 1103.3752
+181600.0636791785 3.6397412 1103.3752
+181601.0636792828 3.6397412 1103.3555
+181602.0636793871 3.6397018 1103.3752
+181603.0636794914 3.6397805 1103.3949
+181604.0636795957 3.6397805 1103.3752
+181605.0636797 3.6398592 1103.4147
+181606.0636798043 3.6397805 1103.2963
+181607.0636799086 3.6397412 1103.3555
+181608.0636800129 3.6397412 1103.3949
+181609.0636801173 3.6397412 1103.3555
+181610.0636802216 3.6399381 1103.316
+181611.0636803259 3.6398592 1103.3357
+181612.0636804302 3.6398199 1103.2963
+181613.0636805345 3.6397805 1103.2963
+181614.0636806388 3.6398985 1103.4147
+181615.0636807431 3.6397805 1103.3949
+181616.0636808474 3.6398985 1103.3555
+181617.0636809517 3.6398985 1103.3752
+181618.063681056 3.6399381 1103.3357
+181619.0636811603 3.6399381 1103.4344
+181620.0636812646 3.6399381 1103.3357
+181621.0636813689 3.6397805 1103.3752
+181622.0636814733 3.6398199 1103.3555
+181623.0636815776 3.6399775 1103.3752
+181624.0636816819 3.6398985 1103.3752
+181625.0636817862 3.6399381 1103.4344
+181626.0636818905 3.6398985 1103.316
+181627.0636819948 3.6399381 1103.3555
+181628.0636820991 3.6398985 1103.2963
+181629.0636822034 3.6399775 1103.3752
+181630.0636823077 3.6399775 1103.3357
+181631.063682412 3.6399775 1103.3555
+181632.0636825163 3.6399775 1103.2963
+181633.0636826206 3.6399775 1103.316
+181634.063682725 3.6399381 1103.3949
+181635.0636828293 3.6400168 1103.3752
+181636.0636829336 3.6399775 1103.3949
+181637.0636830379 3.6398985 1103.4344
+181638.0636831422 3.6400561 1103.3752
+181639.0636832465 3.6400561 1103.3949
+181640.0636833508 3.6399775 1103.3752
+181641.0636834551 3.6399381 1103.2765
+181642.0636835594 3.6400168 1103.4344
+181643.0636836637 3.6400561 1103.3752
+181644.063683768 3.6399775 1103.3949
+181645.0636838723 3.6399775 1103.3555
+181646.0636839767 3.6400168 1103.316
+181647.063684081 3.6400955 1103.316
+181648.0636841853 3.6399775 1103.3752
+181649.0636842896 3.6401348 1103.3357
+181650.0636843939 3.6400955 1103.2765
+181651.0636844982 3.6400168 1103.4147
+181652.0636846025 3.6400561 1103.3555
+181653.0636847068 3.6400561 1103.3357
+181654.0636848111 3.6401348 1103.2765
+181655.0636849154 3.6401348 1103.3555
+181656.0636850197 3.6401742 1103.316
+181657.063685124 3.6400955 1103.2567
+181658.0636852284 3.6400955 1103.3555
+181659.0636853327 3.6401742 1103.316
+181660.063685437 3.6400955 1103.3949
+181661.0636855413 3.6401742 1103.3555
+181662.0636856456 3.6401742 1103.4147
+181663.0636857499 3.6401348 1103.3357
+181664.0636858542 3.6401348 1103.2963
+181665.0636859585 3.6401742 1103.2765
+181666.0636860628 3.6401742 1103.2765
+181667.0636861671 3.6401348 1103.4147
+181668.0636862714 3.6402924 1103.2765
+181669.0636863757 3.6401742 1103.3752
+181670.06368648 3.6402924 1103.4147
+181671.0636865844 3.6402531 1103.3555
+181672.0636866887 3.6401348 1103.316
+181673.063686793 3.6402924 1103.3949
+181674.0636868973 3.6402924 1103.3357
+181675.0636870016 3.6402135 1103.2567
+181676.0636871059 3.6402531 1103.3357
+181677.0636872102 3.6402531 1103.3752
+181678.0636873145 3.6402924 1103.3752
+181679.0636874188 3.6402531 1103.3752
+181680.0636875231 3.6402924 1103.316
+181681.0636876274 3.6402924 1103.4147
+181682.0636877317 3.6402531 1103.3555
+181683.0636878361 3.6402135 1103.3949
+181684.0636879404 3.6402531 1103.2963
+181685.0636880447 3.6402924 1103.2963
+181686.063688149 3.6403317 1103.3752
+181687.0636882533 3.6404104 1103.3555
+181688.0636883576 3.6403317 1103.3752
+181689.0636884619 3.6402531 1103.3357
+181690.0636885662 3.6404498 1103.4542
+181691.0636886705 3.6402531 1103.3555
+181692.0636887748 3.6403711 1103.3357
+181693.0636888791 3.6402924 1103.3752
+181694.0636889834 3.6403317 1103.3357
+181695.0636890878 3.6403317 1103.3752
+181696.0636891921 3.6403317 1103.2963
+181697.0636892964 3.6403711 1103.3752
+181698.0636894007 3.6403317 1103.3752
+181699.063689505 3.6403711 1103.4147
+181700.0636896093 3.6403711 1103.4542
+181701.0636897136 3.6404104 1103.3949
+181702.0636898179 3.6403711 1103.4147
+181703.0636899222 3.6403711 1103.3357
+181704.0636900265 3.6404104 1103.3752
+181705.0636901308 3.6404891 1103.3555
+181706.0636902351 3.6404891 1103.2963
+181707.0636903394 3.6404104 1103.3555
+181708.0636904438 3.6405284 1103.4147
+181709.0636905481 3.6405284 1103.3357
+181710.0636906524 3.6404104 1103.4344
+181711.0636907567 3.6404498 1103.3555
+181712.063690861 3.6404104 1103.3752
+181713.0636909653 3.6405284 1103.316
+181714.0636910696 3.6403711 1103.4147
+181715.0636911739 3.6404498 1103.3752
+181716.0636912782 3.6404891 1103.3752
+181717.0636913825 3.6405284 1103.316
+181718.0636914868 3.6404498 1103.3555
+181719.0636915911 3.6404891 1103.2963
+181720.0636916955 3.640568 1103.3949
+181721.0636917998 3.640568 1103.3949
+181722.0636919041 3.6404498 1103.3555
+181723.0636920084 3.6405284 1103.3555
+181724.0636921127 3.6404891 1103.3555
+181725.063692217 3.640568 1103.2369
+181726.0636923213 3.640568 1103.3555
+181727.0636924256 3.6406467 1103.3752
+181728.0636925299 3.6406467 1103.3949
+181729.0636926342 3.6406467 1103.3752
+181730.0636927385 3.640568 1103.3357
+181731.0636928428 3.640568 1103.3949
+181732.0636929472 3.6405284 1103.3357
+181733.0636930515 3.6407254 1103.2369
+181734.0636931558 3.6406074 1103.2963
+181735.0636932601 3.640568 1103.2765
+181736.0636933644 3.640686 1103.3752
+181737.0636934687 3.6407647 1103.3555
+181738.063693573 3.640568 1103.3752
+181739.0636936773 3.640686 1103.316
+181740.0636937816 3.6406074 1103.3949
+181741.0636938859 3.6406467 1103.4147
+181742.0636939902 3.6407647 1103.3949
+181743.0636940945 3.6407254 1103.3752
+181744.0636941988 3.6406467 1103.3555
+181745.0636943032 3.6407254 1103.316
+181746.0636944075 3.640686 1103.2963
+181747.0636945118 3.640686 1103.316
+181748.0636946161 3.6408436 1103.3357
+181749.0636947204 3.6408041 1103.3555
+181750.0636948247 3.6408041 1103.4147
+181751.063694929 3.640883 1103.3949
+181752.0636950333 3.6407647 1103.4147
+181753.0636951376 3.6408041 1103.316
+181754.0636952419 3.6408041 1103.3555
+181755.0636953462 3.6407254 1103.3357
+181756.0636954505 3.6407647 1103.3949
+181757.0636955549 3.6408436 1103.4147
+181758.0636956592 3.6408436 1103.3752
+181759.0636957635 3.6407647 1103.4147
+181760.0636958678 3.6408436 1103.3555
+181761.0636959721 3.6408436 1103.2963
+181762.0636960764 3.6407254 1103.3752
+181763.0636961807 3.640883 1103.3555
+181764.063696285 3.6409223 1103.3555
+181765.0636963893 3.6409223 1103.3949
+181766.0636964936 3.640883 1103.3752
+181767.0636965979 3.6409616 1103.2963
+181768.0636967022 3.6409223 1103.3949
+181769.0636968066 3.640883 1103.2963
+181770.0636969109 3.6409616 1103.316
+181771.0636970152 3.640883 1103.3752
+181772.0636971195 3.6409223 1103.2765
+181773.0636972238 3.6410403 1103.3949
+181774.0636973281 3.6409223 1103.4147
+181775.0636974324 3.640883 1103.2963
+181776.0636975367 3.6408436 1103.3357
+181777.063697641 3.6410403 1103.3752
+181778.0636977453 3.6409616 1103.3752
+181779.0636978496 3.6409616 1103.3752
+181780.0636979539 3.6409223 1103.3752
+181781.0636980582 3.641001 1103.3949
+181782.0636981626 3.6409616 1103.3555
+181783.0636982669 3.640883 1103.3357
+181784.0636983712 3.641001 1103.4542
+181785.0636984755 3.641001 1103.3949
+181786.0636985798 3.6410797 1103.4344
+181787.0636986841 3.641001 1103.3555
+181788.0636987884 3.641001 1103.3555
+181789.0636988927 3.6410797 1103.2963
+181790.063698997 3.6410403 1103.2765
+181791.0636991013 3.641001 1103.2567
+181792.0636992056 3.641119 1103.3555
+181793.0636993099 3.6410797 1103.2963
+181794.0636994143 3.6410403 1103.3555
+181795.0636995186 3.641001 1103.3555
+181796.0636996229 3.6410403 1103.3949
+181797.0636997272 3.6409616 1103.316
+181798.0636998315 3.6410403 1103.4542
+181799.0636999358 3.6410797 1103.3949
+181800.0637000401 3.641119 1103.316
+181801.0637001444 3.641119 1103.3752
+181802.0637002487 3.6410403 1103.3555
+181803.063700353 3.6410403 1103.3555
+181804.0637004573 3.641119 1103.3357
+181805.0637005616 3.641119 1103.3357
+181806.063700666 3.6411586 1103.4344
+181807.0637007703 3.6411586 1103.4147
+181808.0637008746 3.6411586 1103.316
+181809.0637009789 3.6411979 1103.3752
+181810.0637010832 3.6411586 1103.4147
+181811.0637011875 3.6412373 1103.3949
+181812.0637012918 3.6411979 1103.3555
+181813.0637013961 3.6411979 1103.316
+181814.0637015004 3.6411979 1103.3949
+181815.0637016047 3.6411979 1103.316
+181816.063701709 3.6412373 1103.3555
+181817.0637018133 3.6413159 1103.3752
+181818.0637019177 3.6413553 1103.3555
+181819.063702022 3.6413553 1103.2567
+181820.0637021263 3.6412373 1103.2765
+181821.0637022306 3.6411979 1103.3555
+181822.0637023349 3.6413159 1103.3752
+181823.0637024392 3.6411979 1103.4344
+181824.0637025435 3.6412373 1103.3752
+181825.0637026478 3.6412766 1103.316
+181826.0637027521 3.6413159 1103.3555
+181827.0637028564 3.6412373 1103.3752
+181828.0637029607 3.6411979 1103.4147
+181829.063703065 3.6412766 1103.3357
+181830.0637031693 3.6413553 1103.3357
+181831.0637032737 3.6413946 1103.3949
+181832.063703378 3.6413159 1103.3555
+181833.0637034823 3.6413159 1103.3752
+181834.0637035866 3.641434 1103.316
+181835.0637036909 3.6413946 1103.316
+181836.0637037952 3.6413946 1103.4344
+181837.0637038995 3.6413553 1103.2963
+181838.0637040038 3.6413159 1103.4147
+181839.0637041081 3.6415129 1103.2963
+181840.0637042124 3.6413946 1103.4344
+181841.0637043167 3.6415129 1103.3752
+181842.063704421 3.641434 1103.3949
+181843.0637045254 3.6413553 1103.3555
+181844.0637046297 3.641434 1103.3555
+181845.063704734 3.6413159 1103.3752
+181846.0637048383 3.6413946 1103.3357
+181847.0637049426 3.6413946 1103.2765
+181848.0637050469 3.641434 1103.4147
+181849.0637051512 3.6415522 1103.3949
+181850.0637052555 3.641434 1103.4344
+181851.0637053598 3.641434 1103.3555
+181852.0637054641 3.6413553 1103.3752
+181853.0637055684 3.6413946 1103.3357
+181854.0637056727 3.6414735 1103.316
+181855.0637057771 3.6415129 1103.3555
+181856.0637058814 3.6414735 1103.316
+181857.0637059857 3.6415129 1103.3555
+181858.06370609 3.6413946 1103.316
+181859.0637061943 3.6415129 1103.3752
+181860.0637062986 3.641434 1103.3357
+181861.0637064029 3.6415522 1103.3357
+181862.0637065072 3.6415522 1103.3949
+181863.0637066115 3.6415129 1103.3555
+181864.0637067158 3.6414735 1103.2963
+181865.0637068201 3.6415915 1103.3357
+181866.0637069244 3.6415522 1103.3949
+181867.0637070287 3.6415129 1103.3555
+181868.0637071331 3.641434 1103.316
+181869.0637072374 3.6415522 1103.3357
+181870.0637073417 3.6415522 1103.2567
+181871.063707446 3.6416309 1103.3357
+181872.0637075503 3.6416702 1103.3357
+181873.0637076546 3.6415522 1103.3357
+181874.0637077589 3.6415129 1103.3752
+181875.0637078632 3.6415915 1103.4147
+181876.0637079675 3.6416702 1103.2963
+181877.0637080718 3.6416309 1103.3555
+181878.0637081761 3.6416702 1103.3555
+181879.0637082804 3.6417096 1103.3555
+181880.0637083848 3.6417096 1103.3752
+181881.0637084891 3.6416309 1103.2369
+181882.0637085934 3.6415915 1103.2963
+181883.0637086977 3.6415915 1103.3949
+181884.063708802 3.6417885 1103.4938
+181885.0637089063 3.6417096 1103.316
+181886.0637090106 3.6416309 1103.3357
+181887.0637091149 3.6416309 1103.3357
+181888.0637092192 3.6416309 1103.3555
+181889.0637093235 3.6417096 1103.4344
+181890.0637094278 3.6417489 1103.316
+181891.0637095321 3.6417885 1103.3555
+181892.0637096365 3.6417096 1103.3357
+181893.0637097408 3.6417096 1103.3357
+181894.0637098451 3.6417096 1103.3357
+181895.0637099494 3.6416702 1103.316
+181896.0637100537 3.6417489 1103.2765
+181897.063710158 3.6417096 1103.3357
+181898.0637102623 3.6417489 1103.3555
+181899.0637103666 3.6417885 1103.2765
+181900.0637104709 3.6417885 1103.3357
+181901.0637105752 3.6417096 1103.3752
+181902.0637106795 3.6418278 1103.3752
+181903.0637107838 3.6418672 1103.3949
+181904.0637108881 3.6418672 1103.316
+181905.0637109925 3.6417096 1103.3752
+181906.0637110968 3.6418278 1103.3357
+181907.0637112011 3.6417885 1103.3357
+181908.0637113054 3.6418278 1103.3752
+181909.0637114097 3.6418278 1103.3357
+181910.063711514 3.6418672 1103.316
+181911.0637116183 3.6417489 1103.2963
+181912.0637117226 3.6418672 1103.3949
+181913.0637118269 3.6417885 1103.3555
+181914.0637119312 3.6418672 1103.3752
+181915.0637120355 3.6418672 1103.3752
+181916.0637121398 3.6418278 1103.4147
+181917.0637122442 3.6419065 1103.3752
+181918.0637123485 3.6419065 1103.3752
+181919.0637124528 3.6419852 1103.3949
+181920.0637125571 3.6417885 1103.4542
+181921.0637126614 3.6419065 1103.3752
+181922.0637127657 3.6419065 1103.3555
+181923.06371287 3.6419065 1103.3949
+181924.0637129743 3.6420245 1103.3357
+181925.0637130786 3.6418672 1103.3949
+181926.0637131829 3.6419458 1103.4344
+181927.0637132872 3.6419458 1103.4147
+181928.0637133915 3.6419458 1103.3752
+181929.0637134959 3.6420245 1103.3357
+181930.0637136002 3.6419852 1103.316
+181931.0637137045 3.6419852 1103.4147
+181932.0637138088 3.6419065 1103.2765
+181933.0637139131 3.6419458 1103.2963
+181934.0637140174 3.6419065 1103.316
+181935.0637141217 3.6419065 1103.3949
+181936.063714226 3.6421034 1103.2765
+181937.0637143303 3.6419852 1103.3752
+181938.0637144346 3.6420245 1103.3752
+181939.0637145389 3.6420245 1103.3949
+181940.0637146432 3.6420639 1103.3357
+181941.0637147476 3.6420639 1103.3555
+181942.0637148519 3.6421034 1103.3752
+181943.0637149562 3.6419852 1103.2963
+181944.0637150605 3.6420245 1103.3949
+181945.0637151648 3.6420639 1103.3752
+181946.0637152691 3.6421034 1103.3752
+181947.0637153734 3.6420639 1103.3357
+181948.0637154777 3.6421034 1103.3357
+181949.063715582 3.6421034 1103.4344
+181950.0637156863 3.6420245 1103.2963
+181951.0637157906 3.6420639 1103.3555
+181952.0637158949 3.6420639 1103.3357
+181953.0637159992 3.6419852 1103.2765
+181954.0637161036 3.6421428 1103.4542
+181955.0637162079 3.6421821 1103.3555
+181956.0637163122 3.6421428 1103.4344
+181957.0637164165 3.6421034 1103.4147
+181958.0637165208 3.6420245 1103.3357
+181959.0637166251 3.6420639 1103.3752
+181960.0637167294 3.6420639 1103.4147
+181961.0637168337 3.6421428 1103.3357
+181962.063716938 3.6422215 1103.3357
+181963.0637170423 3.6422215 1103.3752
+181964.0637171466 3.6421034 1103.474
+181965.0637172509 3.6422215 1103.3949
+181966.0637173553 3.6422215 1103.3555
+181967.0637174596 3.6423001 1103.3357
+181968.0637175639 3.6422608 1103.3357
+181969.0637176682 3.6421428 1103.3357
+181970.0637177725 3.6422608 1103.3555
+181971.0637178768 3.6422215 1103.3555
+181972.0637179811 3.6422608 1103.4147
+181973.0637180854 3.6422215 1103.3752
+181974.0637181897 3.6423395 1103.474
+181975.063718294 3.6422215 1103.3949
+181976.0637183983 3.6422215 1103.3357
+181977.0637185026 3.6422215 1103.3949
+181978.063718607 3.6423001 1103.3949
+181979.0637187113 3.6423001 1103.3357
+181980.0637188156 3.6422215 1103.316
+181981.0637189199 3.6423395 1103.316
+181982.0637190242 3.6423395 1103.3357
+181983.0637191285 3.6423001 1103.4542
+181984.0637192328 3.6423001 1103.3357
+181985.0637193371 3.6423788 1103.3357
+181986.0637194414 3.6423001 1103.3949
+181987.0637195457 3.6423395 1103.316
+181988.06371965 3.6424184 1103.3752
+181989.0637197543 3.6422608 1103.3555
+181990.0637198586 3.6424184 1103.3752
+181991.063719963 3.6423788 1103.4147
+181992.0637200673 3.6423001 1103.3357
+181993.0637201716 3.6424184 1103.3752
+181994.0637202759 3.6423395 1103.2765
+181995.0637203802 3.6424184 1103.4147
+181996.0637204845 3.6423788 1103.316
+181997.0637205888 3.6424577 1103.3949
+181998.0637206931 3.6423395 1103.3357
+181999.0637207974 3.6424184 1103.3752
+182000.0637209017 3.6424184 1103.3752
+182001.063721006 3.6424577 1103.3752
+182002.0637211103 3.6424184 1103.3949
+182003.0637212147 3.6423395 1103.316
+182004.063721319 3.6423788 1103.3949
+182005.0637214233 3.6424577 1103.3752
+182006.0637215276 3.6424184 1103.2567
+182007.0637216319 3.6423788 1103.2765
+182008.0637217362 3.6424184 1103.2963
+182009.0637218405 3.6424577 1103.3949
+182010.0637219448 3.6424577 1103.2765
+182011.0637220491 3.6424577 1103.316
+182012.0637221534 3.6425364 1103.2567
+182013.0637222577 3.6424577 1103.3555
+182014.063722362 3.6424577 1103.3752
+182015.0637224664 3.6425364 1103.4344
+182016.0637225707 3.6426544 1103.3752
+182017.063722675 3.6424971 1103.4542
+182018.0637227793 3.6424971 1103.3949
+182019.0637228836 3.6425757 1103.3752
+182020.0637229879 3.6425364 1103.4542
+182021.0637230922 3.6425364 1103.3555
+182022.0637231965 3.6424971 1103.316
+182023.0637233008 3.6425364 1103.3555
+182024.0637234051 3.6425364 1103.4147
+182025.0637235094 3.6425364 1103.3555
+182026.0637236137 3.6425364 1103.3752
+182027.063723718 3.6425364 1103.2765
+182028.0637238224 3.6426544 1103.3752
+182029.0637239267 3.6426544 1103.3357
+182030.063724031 3.6425757 1103.3555
+182031.0637241353 3.6425757 1103.3555
+182032.0637242396 3.6426151 1103.316
+182033.0637243439 3.6426151 1103.2963
+182034.0637244482 3.6426544 1103.3949
+182035.0637245525 3.6426544 1103.3357
+182036.0637246568 3.642694 1103.4344
+182037.0637247611 3.6425757 1103.316
+182038.0637248654 3.642694 1103.316
+182039.0637249697 3.6426544 1103.4147
+182040.0637250741 3.6426544 1103.3555
+182041.0637251784 3.6426544 1103.316
+182042.0637252827 3.6426151 1103.2963
+182043.063725387 3.6426544 1103.3949
+182044.0637254913 3.6426151 1103.3357
+182045.0637255956 3.642694 1103.3357
+182046.0637256999 3.6426151 1103.2963
+182047.0637258042 3.642694 1103.4542
+182048.0637259085 3.6426544 1103.3555
+182049.0637260128 3.6426544 1103.316
+182050.0637261171 3.6427333 1103.3555
+182051.0637262214 3.6426544 1103.3752
+182052.0637263258 3.642694 1103.3357
+182053.0637264301 3.6427333 1103.4344
+182054.0637265344 3.6427333 1103.4147
+182055.0637266387 3.6427727 1103.3357
+182056.063726743 3.642694 1103.4147
+182057.0637268473 3.642694 1103.3555
+182058.0637269516 3.6426151 1103.3949
+182059.0637270559 3.6427727 1103.3555
+182060.0637271602 3.6427727 1103.2963
+182061.0637272645 3.6427333 1103.2963
+182062.0637273688 3.6427727 1103.3752
+182063.0637274731 3.6427727 1103.3949
+182064.0637275775 3.642812 1103.3357
+182065.0637276818 3.6428514 1103.316
+182066.0637277861 3.6428514 1103.316
+182067.0637278904 3.6428514 1103.316
+182068.0637279947 3.6427333 1103.3949
+182069.063728099 3.6428514 1103.3949
+182070.0637282033 3.6428907 1103.3555
+182071.0637283076 3.6428514 1103.3357
+182072.0637284119 3.6428514 1103.3949
+182073.0637285162 3.6427727 1103.2963
+182074.0637286205 3.6427727 1103.3949
+182075.0637287248 3.642812 1103.2963
+182076.0637288291 3.642812 1103.3752
+182077.0637289335 3.6428907 1103.3752
+182078.0637290378 3.6428514 1103.3357
+182079.0637291421 3.6428907 1103.3555
+182080.0637292464 3.642812 1103.3555
+182081.0637293507 3.64293 1103.2765
+182082.063729455 3.6429694 1103.3949
+182083.0637295593 3.642812 1103.316
+182084.0637296636 3.6428514 1103.3555
+182085.0637297679 3.6428514 1103.3555
+182086.0637298722 3.6428514 1103.2567
+182087.0637299765 3.6430089 1103.3752
+182088.0637300808 3.6428907 1103.2963
+182089.0637301852 3.6428514 1103.3555
+182090.0637302895 3.6428907 1103.3752
+182091.0637303938 3.64293 1103.3555
+182092.0637304981 3.64293 1103.2963
+182093.0637306024 3.6429694 1103.316
+182094.0637307067 3.6429694 1103.3949
+182095.063730811 3.6430089 1103.3555
+182096.0637309153 3.6430089 1103.3357
+182097.0637310196 3.64293 1103.316
+182098.0637311239 3.6429694 1103.2567
+182099.0637312282 3.64293 1103.316
+182100.0637313325 3.6429694 1103.4344
+182101.0637314369 3.6430876 1103.316
+182102.0637315412 3.6429694 1103.3555
+182103.0637316455 3.6430483 1103.3357
+182104.0637317498 3.6430483 1103.2963
+182105.0637318541 3.6430483 1103.3752
+182106.0637319584 3.6429694 1103.1975
+182107.0637320627 3.6429694 1103.2567
+182108.063732167 3.6429694 1103.316
+182109.0637322713 3.6430876 1103.3949
+182110.0637323756 3.6430483 1103.4147
+182111.0637324799 3.6430876 1103.4147
+182112.0637325842 3.6430876 1103.2567
+182113.0637326885 3.643127 1103.4344
+182114.0637327929 3.6430483 1103.316
+182115.0637328972 3.6430876 1103.316
+182116.0637330015 3.6430483 1103.3357
+182117.0637331058 3.6430876 1103.3949
+182118.0637332101 3.6432056 1103.2963
+182119.0637333144 3.643127 1103.3555
+182120.0637334187 3.6430876 1103.2765
+182121.063733523 3.643127 1103.3357
+182122.0637336273 3.6430876 1103.2963
+182123.0637337316 3.643127 1103.3357
+182124.0637338359 3.6430876 1103.3752
+182125.0637339402 3.6431663 1103.2369
+182126.0637340446 3.6432056 1103.2765
+182127.0637341489 3.6432056 1103.3357
+182128.0637342532 3.6431663 1103.3357
+182129.0637343575 3.6431663 1103.2765
+182130.0637344618 3.6432843 1103.4147
+182131.0637345661 3.6432843 1103.3752
+182132.0637346704 3.6432843 1103.316
+182133.0637347747 3.6432056 1103.316
+182134.063734879 3.6432843 1103.3357
+182135.0637349833 3.643127 1103.3949
+182136.0637350876 3.643245 1103.316
+182137.0637351919 3.643245 1103.3555
+182138.0637352963 3.6432056 1103.316
+182139.0637354006 3.643245 1103.3357
+182140.0637355049 3.6433239 1103.4147
+182141.0637356092 3.643245 1103.316
+182142.0637357135 3.6432843 1103.3555
+182143.0637358178 3.6432843 1103.3949
+182144.0637359221 3.643245 1103.3555
+182145.0637360264 3.643245 1103.316
+182146.0637361307 3.643245 1103.4542
+182147.063736235 3.6433632 1103.3357
+182148.0637363393 3.643245 1103.2963
+182149.0637364436 3.6433632 1103.2963
+182150.0637365479 3.643245 1103.4147
+182151.0637366523 3.6432843 1103.2963
+182152.0637367566 3.6432056 1103.2963
+182153.0637368609 3.6433239 1103.3555
+182154.0637369652 3.643245 1103.3357
+182155.0637370695 3.6434026 1103.2765
+182156.0637371738 3.6434026 1103.3555
+182157.0637372781 3.6433239 1103.474
+182158.0637373824 3.6433632 1103.3357
+182159.0637374867 3.6434026 1103.2765
+182160.063737591 3.6433632 1103.4147
+182161.0637376953 3.6433632 1103.316
+182162.0637377996 3.6434813 1103.316
+182163.063737904 3.6434419 1103.2765
+182164.0637380083 3.6434026 1103.3949
+182165.0637381126 3.6434813 1103.316
+182166.0637382169 3.6433632 1103.4147
+182167.0637383212 3.6434026 1103.2963
+182168.0637384255 3.6434813 1103.2567
+182169.0637385298 3.6434419 1103.4147
+182170.0637386341 3.6434813 1103.3357
+182171.0637387384 3.6434419 1103.3357
+182172.0637388427 3.6434813 1103.3357
+182173.063738947 3.6435206 1103.316
+182174.0637390513 3.6434813 1103.3555
+182175.0637391557 3.6434419 1103.3555
+182176.06373926 3.6434419 1103.316
+182177.0637393643 3.6434419 1103.316
+182178.0637394686 3.6435206 1103.3752
+182179.0637395729 3.6434419 1103.3357
+182180.0637396772 3.6434419 1103.2963
+182181.0637397815 3.6435993 1103.2765
+182182.0637398858 3.6434419 1103.4344
+182183.0637399901 3.6435206 1103.3357
+182184.0637400944 3.6435599 1103.2963
+182185.0637401987 3.6434813 1103.316
+182186.063740303 3.6435993 1103.3752
+182187.0637404074 3.6436388 1103.4147
+182188.0637405117 3.6435599 1103.3357
+182189.063740616 3.6435993 1103.3752
+182190.0637407203 3.6435993 1103.3555
+182191.0637408246 3.6435599 1103.316
+182192.0637409289 3.6435993 1103.3555
+182193.0637410332 3.6435993 1103.3752
+182194.0637411375 3.6435206 1103.3357
+182195.0637412418 3.6436782 1103.3752
+182196.0637413461 3.6435206 1103.3357
+182197.0637414504 3.6435206 1103.3357
+182198.0637415547 3.6436388 1103.3555
+182199.063741659 3.6436388 1103.4344
+182200.0637417634 3.6435599 1103.3357
+182201.0637418677 3.6436782 1103.3752
+182202.063741972 3.6437569 1103.3357
+182203.0637420763 3.6435993 1103.3752
+182204.0637421806 3.6435993 1103.316
+182205.0637422849 3.6437175 1103.3357
+182206.0637423892 3.6436782 1103.4542
+182207.0637424935 3.6437175 1103.3357
+182208.0637425978 3.6436782 1103.316
+182209.0637427021 3.6437175 1103.4542
+182210.0637428064 3.6437569 1103.316
+182211.0637429107 3.6437175 1103.3357
+182212.0637430151 3.6436782 1103.3555
+182213.0637431194 3.6437569 1103.3949
+182214.0637432237 3.6436388 1103.3752
+182215.063743328 3.6437569 1103.316
+182216.0637434323 3.6436782 1103.316
+182217.0637435366 3.6437569 1103.2963
+182218.0637436409 3.6437962 1103.3752
+182219.0637437452 3.6437962 1103.3555
+182220.0637438495 3.6437569 1103.316
+182221.0637439538 3.6437175 1103.316
+182222.0637440581 3.6437569 1103.316
+182223.0637441624 3.6437569 1103.3357
+182224.0637442668 3.6437962 1103.3949
+182225.0637443711 3.6437569 1103.3949
+182226.0637444754 3.6437962 1103.3752
+182227.0637445797 3.6438355 1103.4147
+182228.063744684 3.6438749 1103.4344
+182229.0637447883 3.6439142 1103.3357
+182230.0637448926 3.6437962 1103.3357
+182231.0637449969 3.6437962 1103.316
+182232.0637451012 3.6437569 1103.3949
+182233.0637452055 3.6438355 1103.316
+182234.0637453098 3.6438355 1103.316
+182235.0637454141 3.6439538 1103.3357
+182236.0637455184 3.6438749 1103.3752
+182237.0637456228 3.6439142 1103.3357
+182238.0637457271 3.6439142 1103.3357
+182239.0637458314 3.6438749 1103.3357
+182240.0637459357 3.6439538 1103.2963
+182241.06374604 3.6438355 1103.2765
+182242.0637461443 3.6438355 1103.3357
+182243.0637462486 3.6438749 1103.2963
+182244.0637463529 3.6439142 1103.2963
+182245.0637464572 3.6438355 1103.3555
+182246.0637465615 3.6439931 1103.3949
+182247.0637466658 3.6439142 1103.316
+182248.0637467701 3.6439931 1103.3555
+182249.0637468745 3.6439931 1103.316
+182250.0637469788 3.6439931 1103.3949
+182251.0637470831 3.6438749 1103.3357
+182252.0637471874 3.6439538 1103.3752
+182253.0637472917 3.6440718 1103.3949
+182254.063747396 3.6440325 1103.3555
+182255.0637475003 3.6439538 1103.3949
+182256.0637476046 3.6441112 1103.3357
+182257.0637477089 3.6439142 1103.2765
+182258.0637478132 3.6441112 1103.3555
+182259.0637479175 3.6439538 1103.3357
+182260.0637480218 3.6440325 1103.3752
+182261.0637481262 3.6439931 1103.3555
+182262.0637482305 3.6440718 1103.3555
+182263.0637483348 3.6440325 1103.3357
+182264.0637484391 3.6441505 1103.3752
+182265.0637485434 3.6441898 1103.3752
+182266.0637486477 3.6440718 1103.3357
+182267.063748752 3.6441112 1103.3555
+182268.0637488563 3.6440718 1103.3555
+182269.0637489606 3.6441112 1103.3949
+182270.0637490649 3.6441112 1103.316
+182271.0637491692 3.6441112 1103.2369
+182272.0637492735 3.6441898 1103.3949
+182273.0637493778 3.6439931 1103.2963
+182274.0637494822 3.6440718 1103.2963
+182275.0637495865 3.6441112 1103.4542
+182276.0637496908 3.6442294 1103.316
+182277.0637497951 3.6441112 1103.3752
+182278.0637498994 3.6442294 1103.3752
+182279.0637500037 3.6441505 1103.316
+182280.063750108 3.6441112 1103.3949
+182281.0637502123 3.6441112 1103.3949
+182282.0637503166 3.6441898 1103.3555
+182283.0637504209 3.6441898 1103.3357
+182284.0637505252 3.6441505 1103.316
+182285.0637506295 3.6442688 1103.316
+182286.0637507339 3.6441112 1103.3949
+182287.0637508382 3.6442688 1103.4147
+182288.0637509425 3.6443474 1103.3949
+182289.0637510468 3.6441898 1103.3357
+182290.0637511511 3.6441898 1103.4147
+182291.0637512554 3.6442688 1103.316
+182292.0637513597 3.6443081 1103.3752
+182293.063751464 3.6442294 1103.3555
+182294.0637515683 3.6441898 1103.3752
+182295.0637516726 3.6442688 1103.3555
+182296.0637517769 3.6443474 1103.3752
+182297.0637518812 3.6441898 1103.4147
+182298.0637519856 3.6443081 1103.3357
+182299.0637520899 3.6442688 1103.2963
+182300.0637521942 3.6442294 1103.4542
+182301.0637522985 3.6442294 1103.2963
+182302.0637524028 3.6443474 1103.316
+182303.0637525071 3.6442294 1103.3949
+182304.0637526114 3.6442294 1103.4147
+182305.0637527157 3.6442688 1103.316
+182306.06375282 3.6442688 1103.3555
+182307.0637529243 3.6444261 1103.4344
+182308.0637530286 3.6443081 1103.3949
+182309.0637531329 3.6442688 1103.3555
+182310.0637532372 3.6444261 1103.3752
+182311.0637533416 3.6443081 1103.3357
+182312.0637534459 3.6443081 1103.3555
+182313.0637535502 3.6442688 1103.2963
+182314.0637536545 3.6443868 1103.3357
+182315.0637537588 3.6443474 1103.3357
+182316.0637538631 3.6443868 1103.316
+182317.0637539674 3.6443868 1103.2963
+182318.0637540717 3.6444261 1103.2765
+182319.063754176 3.6443474 1103.4344
+182320.0637542803 3.6444261 1103.316
+182321.0637543846 3.6445048 1103.4542
+182322.0637544889 3.6444261 1103.3555
+182323.0637545933 3.6444261 1103.316
+182324.0637546976 3.6444654 1103.3555
+182325.0637548019 3.6444261 1103.3949
+182326.0637549062 3.6444654 1103.316
+182327.0637550105 3.6444654 1103.2765
+182328.0637551148 3.6445048 1103.3949
+182329.0637552191 3.6444654 1103.3357
+182330.0637553234 3.6445837 1103.3555
+182331.0637554277 3.6444261 1103.3555
+182332.063755532 3.6444654 1103.2765
+182333.0637556363 3.6445837 1103.3752
+182334.0637557406 3.6443474 1103.3752
+182335.063755845 3.6445837 1103.3752
+182336.0637559493 3.6445048 1103.3357
+182337.0637560536 3.6445444 1103.3357
+182338.0637561579 3.6445048 1103.3752
+182339.0637562622 3.6444654 1103.3949
+182340.0637563665 3.6445444 1103.3555
+182341.0637564708 3.6445048 1103.316
+182342.0637565751 3.6446624 1103.3357
+182343.0637566794 3.6445444 1103.3752
+182344.0637567837 3.644623 1103.3555
+182345.063756888 3.644623 1103.3357
+182346.0637569923 3.644623 1103.3752
+182347.0637570967 3.6447411 1103.316
+182348.063757201 3.6445048 1103.3357
+182349.0637573053 3.6445444 1103.3357
+182350.0637574096 3.6445837 1103.2765
+182351.0637575139 3.644623 1103.3357
+182352.0637576182 3.644623 1103.316
+182353.0637577225 3.6445444 1103.316
+182354.0637578268 3.6445048 1103.316
+182355.0637579311 3.644623 1103.3949
+182356.0637580354 3.6445444 1103.3555
+182357.0637581397 3.6447411 1103.3949
+182358.063758244 3.6445837 1103.3555
+182359.0637583483 3.644623 1103.3555
+182360.0637584527 3.644623 1103.3752
+182361.063758557 3.644623 1103.474
+182362.0637586613 3.6447017 1103.3752
+182363.0637587656 3.6446624 1103.3752
+182364.0637588699 3.6447017 1103.3357
+182365.0637589742 3.6446624 1103.3357
+182366.0637590785 3.6446624 1103.2765
+182367.0637591828 3.6447411 1103.3555
+182368.0637592871 3.6446624 1103.4344
+182369.0637593914 3.6446624 1103.3555
+182370.0637594957 3.6447411 1103.3949
+182371.0637596 3.6447411 1103.3555
+182372.0637597044 3.644623 1103.4344
+182373.0637598087 3.6447804 1103.3949
+182374.063759913 3.6447411 1103.3949
+182375.0637600173 3.6448593 1103.3752
+182376.0637601216 3.6447411 1103.316
+182377.0637602259 3.6447804 1103.3752
+182378.0637603302 3.6446624 1103.2765
+182379.0637604345 3.6448197 1103.3949
+182380.0637605388 3.6448197 1103.316
+182381.0637606431 3.6447017 1103.3357
+182382.0637607474 3.6447804 1103.3949
+182383.0637608517 3.6448593 1103.3752
+182384.0637609561 3.6448593 1103.3555
+182385.0637610604 3.6448197 1103.3555
+182386.0637611647 3.6448197 1103.2963
+182387.063761269 3.6448593 1103.3752
+182388.0637613733 3.6448987 1103.3752
+182389.0637614776 3.6448197 1103.2963
+182390.0637615819 3.6448593 1103.2963
+182391.0637616862 3.6448593 1103.3752
+182392.0637617905 3.6448987 1103.316
+182393.0637618948 3.6448987 1103.3752
+182394.0637619991 3.6448593 1103.316
+182395.0637621034 3.6447804 1103.3752
+182396.0637622077 3.644938 1103.3752
+182397.0637623121 3.6448593 1103.3357
+182398.0637624164 3.644938 1103.3752
+182399.0637625207 3.6448593 1103.2172
+182400.063762625 3.644938 1103.3555
+182401.0637627293 3.644938 1103.4344
+182402.0637628336 3.644938 1103.2765
+182403.0637629379 3.6450167 1103.3949
+182404.0637630422 3.644938 1103.316
+182405.0637631465 3.6448987 1103.3949
+182406.0637632508 3.644938 1103.316
+182407.0637633551 3.6448987 1103.3949
+182408.0637634594 3.644938 1103.3752
+182409.0637635638 3.645056 1103.316
+182410.0637636681 3.645056 1103.2963
+182411.0637637724 3.644938 1103.2765
+182412.0637638767 3.644938 1103.3357
+182413.063763981 3.6448987 1103.4147
+182414.0637640853 3.6449773 1103.316
+182415.0637641896 3.6449773 1103.3555
+182416.0637642939 3.645056 1103.2963
+182417.0637643982 3.6450953 1103.3752
+182418.0637645025 3.645056 1103.3949
+182419.0637646068 3.6450167 1103.4147
+182420.0637647111 3.6450953 1103.3949
+182421.0637648155 3.6450953 1103.2765
+182422.0637649198 3.6450167 1103.316
+182423.0637650241 3.6451347 1103.316
+182424.0637651284 3.6450953 1103.3949
+182425.0637652327 3.6450167 1103.3357
+182426.063765337 3.644938 1103.2963
+182427.0637654413 3.645056 1103.3357
+182428.0637655456 3.645056 1103.3555
+182429.0637656499 3.6451347 1103.316
+182430.0637657542 3.6451347 1103.4344
+182431.0637658585 3.6451347 1103.3949
+182432.0637659628 3.6451743 1103.3949
+182433.0637660671 3.6451347 1103.3752
+182434.0637661715 3.6450953 1103.3357
+182435.0637662758 3.6451743 1103.3357
+182436.0637663801 3.6451743 1103.316
+182437.0637664844 3.6450953 1103.3752
+182438.0637665887 3.6451743 1103.3357
+182439.063766693 3.6451743 1103.2963
+182440.0637667973 3.6452136 1103.3949
+182441.0637669016 3.6451743 1103.2963
+182442.0637670059 3.6452136 1103.316
+182443.0637671102 3.6451347 1103.3752
+182444.0637672145 3.6452136 1103.316
+182445.0637673188 3.6452136 1103.3752
+182446.0637674232 3.6451743 1103.3357
+182447.0637675275 3.6452136 1103.2963
+182448.0637676318 3.6452923 1103.3555
+182449.0637677361 3.6451347 1103.3357
+182450.0637678404 3.6452529 1103.2963
+182451.0637679447 3.6452136 1103.3357
+182452.063768049 3.6452529 1103.4147
+182453.0637681533 3.6452136 1103.2963
+182454.0637682576 3.6452529 1103.4147
+182455.0637683619 3.6452923 1103.3752
+182456.0637684662 3.6452136 1103.3752
+182457.0637685705 3.6452923 1103.3357
+182458.0637686749 3.6452923 1103.4542
+182459.0637687792 3.6452529 1103.3555
+182460.0637688835 3.6454103 1103.3357
+182461.0637689878 3.645371 1103.3555
+182462.0637690921 3.6454103 1103.2567
+182463.0637691964 3.6454103 1103.2963
+182464.0637693007 3.6453316 1103.3555
+182465.063769405 3.6453316 1103.2765
+182466.0637695093 3.6453316 1103.316
+182467.0637696136 3.6453316 1103.3555
+182468.0637697179 3.6454496 1103.3949
+182469.0637698222 3.645371 1103.316
+182470.0637699266 3.6454103 1103.2765
+182471.0637700309 3.645371 1103.4344
+182472.0637701352 3.645371 1103.4147
+182473.0637702395 3.645371 1103.3752
+182474.0637703438 3.6454103 1103.3752
+182475.0637704481 3.6454496 1103.4147
+182476.0637705524 3.645371 1103.3949
+182477.0637706567 3.6454496 1103.3949
+182478.063770761 3.6454496 1103.3555
+182479.0637708653 3.6454892 1103.3357
+182480.0637709696 3.6454892 1103.3949
+182481.0637710739 3.6454103 1103.3949
+182482.0637711782 3.6454103 1103.2963
+182483.0637712826 3.645371 1103.3357
+182484.0637713869 3.6454103 1103.316
+182485.0637714912 3.6455286 1103.316
+182486.0637715955 3.6454496 1103.3555
+182487.0637716998 3.6454496 1103.3555
+182488.0637718041 3.6454496 1103.2765
+182489.0637719084 3.6455286 1103.2963
+182490.0637720127 3.6455679 1103.3949
+182491.063772117 3.6454103 1103.474
+182492.0637722213 3.6454103 1103.3752
+182493.0637723256 3.645371 1103.3357
+182494.0637724299 3.6455679 1103.3357
+182495.0637725343 3.6455679 1103.4344
+182496.0637726386 3.6455286 1103.4147
+182497.0637727429 3.6455286 1103.2567
+182498.0637728472 3.6456072 1103.4344
+182499.0637729515 3.6454892 1103.3357
+182500.0637730558 3.6456466 1103.2963
+182501.0637731601 3.6455679 1103.3949
+182502.0637732644 3.6454496 1103.2765
+182503.0637733687 3.6455679 1103.3357
+182504.063773473 3.6455286 1103.316
+182505.0637735773 3.6456466 1103.3949
+182506.0637736816 3.6455679 1103.4147
+182507.063773786 3.6455286 1103.4542
+182508.0637738903 3.6456466 1103.3752
+182509.0637739946 3.6455286 1103.3357
+182510.0637740989 3.6456859 1103.2963
+182511.0637742032 3.6456466 1103.316
+182512.0637743075 3.6456072 1103.3752
+182513.0637744118 3.6456466 1103.3555
+182514.0637745161 3.6456072 1103.2963
+182515.0637746204 3.6455679 1103.3357
+182516.0637747247 3.6456859 1103.4147
+182517.063774829 3.6456466 1103.3555
+182518.0637749333 3.6457253 1103.3357
+182519.0637750376 3.6456466 1103.2963
+182520.063775142 3.6456072 1103.2963
+182521.0637752463 3.6456859 1103.3357
+182522.0637753506 3.6457646 1103.316
+182523.0637754549 3.6456859 1103.3555
+182524.0637755592 3.6458828 1103.3357
+182525.0637756635 3.6457253 1103.2765
+182526.0637757678 3.6457646 1103.3555
+182527.0637758721 3.6457253 1103.316
+182528.0637759764 3.6456859 1103.3752
+182529.0637760807 3.6457253 1103.316
+182530.063776185 3.6457253 1103.3357
+182531.0637762893 3.6457253 1103.3555
+182532.0637763937 3.6457646 1103.3357
+182533.063776498 3.6457253 1103.3357
+182534.0637766023 3.6457646 1103.3949
+182535.0637767066 3.6458042 1103.3949
+182536.0637768109 3.6457253 1103.2963
+182537.0637769152 3.6457253 1103.3752
+182538.0637770195 3.6458042 1103.3555
+182539.0637771238 3.6457646 1103.5332
+182540.0637772281 3.6457253 1103.3752
+182541.0637773324 3.6458828 1103.3752
+182542.0637774367 3.6459222 1103.3949
+182543.063777541 3.6457646 1103.3555
+182544.0637776454 3.6459222 1103.2963
+182545.0637777497 3.6457646 1103.3949
+182546.063777854 3.6458828 1103.3357
+182547.0637779583 3.6458435 1103.4147
+182548.0637780626 3.6458435 1103.3357
+182549.0637781669 3.6458828 1103.2765
+182550.0637782712 3.6459222 1103.3357
+182551.0637783755 3.6458828 1103.316
+182552.0637784798 3.6458828 1103.4938
+182553.0637785841 3.6459222 1103.3555
+182554.0637786884 3.6458828 1103.4147
+182555.0637787927 3.6459222 1103.2765
+182556.063778897 3.6458828 1103.3555
+182557.0637790014 3.6458435 1103.316
+182558.0637791057 3.6458435 1103.316
+182559.06377921 3.6460009 1103.3357
+182560.0637793143 3.6458435 1103.3752
+182561.0637794186 3.6459615 1103.2765
+182562.0637795229 3.6459222 1103.3949
+182563.0637796272 3.6460402 1103.2765
+182564.0637797315 3.6459222 1103.4344
+182565.0637798358 3.6460009 1103.3555
+182566.0637799401 3.6459615 1103.3357
+182567.0637800444 3.6459615 1103.3555
+182568.0637801487 3.6459222 1103.3357
+182569.0637802531 3.6459615 1103.3555
+182570.0637803574 3.6458828 1103.3555
+182571.0637804617 3.6460009 1103.3555
+182572.063780566 3.6460009 1103.3357
+182573.0637806703 3.6460009 1103.2369
+182574.0637807746 3.6460402 1103.3752
+182575.0637808789 3.6460402 1103.3752
+182576.0637809832 3.6460798 1103.3752
+182577.0637810875 3.6460402 1103.3752
+182578.0637811918 3.6461191 1103.3357
+182579.0637812961 3.6460009 1103.2963
+182580.0637814004 3.6460009 1103.2963
+182581.0637815048 3.6459615 1103.3949
+182582.0637816091 3.6460798 1103.3949
+182583.0637817134 3.6460798 1103.3357
+182584.0637818177 3.6460402 1103.3752
+182585.063781922 3.6461191 1103.3949
+182586.0637820263 3.6461585 1103.2963
+182587.0637821306 3.6460798 1103.3555
+182588.0637822349 3.6461191 1103.4344
+182589.0637823392 3.6460798 1103.3357
+182590.0637824435 3.6461191 1103.3555
+182591.0637825478 3.6460798 1103.2963
+182592.0637826521 3.6461585 1103.316
+182593.0637827565 3.6462371 1103.2567
+182594.0637828608 3.6462371 1103.3949
+182595.0637829651 3.6461585 1103.3752
+182596.0637830694 3.6461585 1103.3752
+182597.0637831737 3.6461191 1103.316
+182598.063783278 3.6462371 1103.2765
+182599.0637833823 3.6460798 1103.3752
+182600.0637834866 3.6461978 1103.3752
+182601.0637835909 3.6461978 1103.3357
+182602.0637836952 3.6462371 1103.3555
+182603.0637837995 3.6462765 1103.3752
+182604.0637839038 3.6461585 1103.4147
+182605.0637840081 3.6462371 1103.3357
+182606.0637841125 3.6461191 1103.3752
+182607.0637842168 3.6461978 1103.4147
+182608.0637843211 3.6463158 1103.316
+182609.0637844254 3.6463158 1103.316
+182610.0637845297 3.6462765 1103.3555
+182611.063784634 3.6462765 1103.474
+182612.0637847383 3.6462371 1103.3752
+182613.0637848426 3.6463552 1103.3357
+182614.0637849469 3.6462765 1103.3555
+182615.0637850512 3.6461978 1103.3949
+182616.0637851555 3.6462765 1103.3752
+182617.0637852598 3.6461978 1103.3357
+182618.0637853642 3.6462765 1103.3752
+182619.0637854685 3.6463947 1103.316
+182620.0637855728 3.6462765 1103.4147
+182621.0637856771 3.6462765 1103.3555
+182622.0637857814 3.6463158 1103.4344
+182623.0637858857 3.6461978 1103.3752
+182624.06378599 3.6462371 1103.3357
+182625.0637860943 3.6463552 1103.3555
+182626.0637861986 3.6463552 1103.3357
+182627.0637863029 3.6463158 1103.3555
+182628.0637864072 3.6463158 1103.2963
+182629.0637865115 3.6463552 1103.3752
+182630.0637866159 3.6463947 1103.3555
+182631.0637867202 3.6463552 1103.3357
+182632.0637868245 3.6463552 1103.3555
+182633.0637869288 3.6465127 1103.316
+182634.0637870331 3.6463158 1103.2963
+182635.0637871374 3.6463947 1103.3357
+182636.0637872417 3.6464341 1103.3555
+182637.063787346 3.6463947 1103.4344
+182638.0637874503 3.6463552 1103.316
+182639.0637875546 3.6463947 1103.3555
+182640.0637876589 3.6465914 1103.2963
+182641.0637877632 3.6464734 1103.3949
+182642.0637878675 3.6463947 1103.2963
+182643.0637879719 3.6464734 1103.316
+182644.0637880762 3.6464734 1103.3555
+182645.0637881805 3.6465127 1103.2172
+182646.0637882848 3.6463947 1103.3555
+182647.0637883891 3.6465127 1103.3555
+182648.0637884934 3.6466308 1103.2765
+182649.0637885977 3.6464341 1103.3752
+182650.063788702 3.6464734 1103.316
+182651.0637888063 3.6465521 1103.4344
+182652.0637889106 3.6465521 1103.3555
+182653.0637890149 3.6465914 1103.3357
+182654.0637891192 3.6465521 1103.2963
+182655.0637892236 3.6465127 1103.3555
+182656.0637893279 3.6465914 1103.3752
+182657.0637894322 3.6465127 1103.474
+182658.0637895365 3.6465127 1103.316
+182659.0637896408 3.6465127 1103.3555
+182660.0637897451 3.6465127 1103.3949
+182661.0637898494 3.6465914 1103.3357
+182662.0637899537 3.6465914 1103.3752
+182663.063790058 3.6466701 1103.3555
+182664.0637901623 3.6465914 1103.3555
+182665.0637902666 3.6465521 1103.2765
+182666.0637903709 3.646749 1103.3555
+182667.0637904753 3.6465914 1103.3949
+182668.0637905796 3.6465127 1103.3357
+182669.0637906839 3.6466701 1103.2765
+182670.0637907882 3.6466308 1103.4147
+182671.0637908925 3.6465914 1103.3357
+182672.0637909968 3.6465914 1103.4344
+182673.0637911011 3.6466701 1103.4147
+182674.0637912054 3.6467097 1103.4344
+182675.0637913097 3.6466701 1103.316
+182676.063791414 3.6466701 1103.3555
+182677.0637915183 3.6466308 1103.316
+182678.0637916226 3.6466701 1103.3555
+182679.0637917269 3.6467097 1103.3752
+182680.0637918313 3.6466701 1103.3949
+182681.0637919356 3.6467097 1103.3752
+182682.0637920399 3.646749 1103.3555
+182683.0637921442 3.6467097 1103.3357
+182684.0637922485 3.646749 1103.3752
+182685.0637923528 3.6467097 1103.2963
+182686.0637924571 3.6467097 1103.3949
+182687.0637925614 3.6467097 1103.3752
+182688.0637926657 3.6467884 1103.3949
+182689.06379277 3.6468277 1103.3949
+182690.0637928743 3.6467884 1103.3555
+182691.0637929786 3.646867 1103.3555
+182692.063793083 3.646749 1103.3357
+182693.0637931873 3.6467884 1103.3555
+182694.0637932916 3.6468277 1103.3357
+182695.0637933959 3.6467884 1103.3949
+182696.0637935002 3.646867 1103.3949
+182697.0637936045 3.6468277 1103.3357
+182698.0637937088 3.646749 1103.3949
+182699.0637938131 3.646867 1103.2963
+182700.0637939174 3.646867 1103.3555
+182701.0637940217 3.6469064 1103.2963
+182702.063794126 3.6468277 1103.3357
+182703.0637942303 3.6467884 1103.3555
+182704.0637943347 3.646867 1103.3949
+182705.063794439 3.6469064 1103.3357
+182706.0637945433 3.6469064 1103.3752
+182707.0637946476 3.6469457 1103.2765
+182708.0637947519 3.646867 1103.3357
+182709.0637948562 3.6469064 1103.3949
+182710.0637949605 3.6469851 1103.3752
+182711.0637950648 3.6469064 1103.3949
+182712.0637951691 3.6470246 1103.316
+182713.0637952734 3.6469064 1103.3752
+182714.0637953777 3.6469064 1103.3555
+182715.063795482 3.6469457 1103.3752
+182716.0637955863 3.6469851 1103.3949
+182717.0637956907 3.647064 1103.4344
+182718.063795795 3.6469457 1103.2963
+182719.0637958993 3.6469457 1103.3949
+182720.0637960036 3.6469851 1103.3357
+182721.0637961079 3.6469851 1103.4344
+182722.0637962122 3.6469851 1103.2765
+182723.0637963165 3.6470246 1103.4344
+182724.0637964208 3.647064 1103.4147
+182725.0637965251 3.6469851 1103.3357
+182726.0637966294 3.6470246 1103.3949
+182727.0637967337 3.6471033 1103.2963
+182728.063796838 3.6471426 1103.3555
+182729.0637969424 3.647064 1103.3555
+182730.0637970467 3.6471033 1103.4344
+182731.063797151 3.647064 1103.316
+182732.0637972553 3.6470246 1103.4344
+182733.0637973596 3.647064 1103.3752
+182734.0637974639 3.6471426 1103.2963
+182735.0637975682 3.6471426 1103.3555
+182736.0637976725 3.647064 1103.3752
+182737.0637977768 3.6470246 1103.3949
+182738.0637978811 3.647064 1103.316
+182739.0637979854 3.6470246 1103.3555
+182740.0637980897 3.647064 1103.3357
+182741.0637981941 3.647182 1103.3752
+182742.0637982984 3.6471033 1103.3357
+182743.0637984027 3.6471426 1103.3555
+182744.063798507 3.6471426 1103.4542
+182745.0637986113 3.6472213 1103.3555
+182746.0637987156 3.6473 1103.3357
+182747.0637988199 3.6471033 1103.316
+182748.0637989242 3.647182 1103.4344
+182749.0637990285 3.647182 1103.3949
+182750.0637991328 3.6472213 1103.4344
+182751.0637992371 3.6471426 1103.3555
+182752.0637993414 3.6472607 1103.3949
+182753.0637994458 3.6472213 1103.3949
+182754.0637995501 3.6472607 1103.474
+182755.0637996544 3.6473396 1103.316
+182756.0637997587 3.6472213 1103.316
+182757.063799863 3.6472213 1103.3357
+182758.0637999673 3.6472213 1103.3752
+182759.0638000716 3.6472607 1103.3555
+182760.0638001759 3.647182 1103.3949
+182761.0638002802 3.6472213 1103.3555
+182762.0638003845 3.6472607 1103.3357
+182763.0638004888 3.6472607 1103.3555
+182764.0638005931 3.6473 1103.3752
+182765.0638006974 3.6472213 1103.4147
+182766.0638008018 3.6472213 1103.2963
+182767.0638009061 3.6472607 1103.3949
+182768.0638010104 3.6473396 1103.3949
+182769.0638011147 3.6473396 1103.3555
+182770.063801219 3.6472607 1103.3357
+182771.0638013233 3.647182 1103.2963
+182772.0638014276 3.6473 1103.3752
+182773.0638015319 3.6473396 1103.3357
+182774.0638016362 3.6473789 1103.4147
+182775.0638017405 3.6473396 1103.3357
+182776.0638018448 3.6473789 1103.3357
+182777.0638019491 3.6474969 1103.2963
+182778.0638020535 3.6473396 1103.3555
+182779.0638021578 3.6474183 1103.3752
+182780.0638022621 3.6474183 1103.4147
+182781.0638023664 3.6474183 1103.3752
+182782.0638024707 3.6473789 1103.2963
+182783.063802575 3.6473789 1103.3752
+182784.0638026793 3.6473789 1103.3357
+182785.0638027836 3.6474576 1103.3357
+182786.0638028879 3.6473789 1103.3357
+182787.0638029922 3.6473789 1103.3949
+182788.0638030965 3.6473789 1103.3949
+182789.0638032008 3.6474576 1103.3949
+182790.0638033052 3.6474183 1103.3357
+182791.0638034095 3.6474183 1103.2963
+182792.0638035138 3.6474969 1103.316
+182793.0638036181 3.6475363 1103.3752
+182794.0638037224 3.6474969 1103.3357
+182795.0638038267 3.6474183 1103.3357
+182796.063803931 3.6474183 1103.316
+182797.0638040353 3.6474969 1103.3555
+182798.0638041396 3.6475363 1103.4542
+182799.0638042439 3.6474969 1103.3555
+182800.0638043482 3.6475363 1103.3555
+182801.0638044525 3.6475756 1103.3357
+182802.0638045568 3.6474576 1103.2963
+182803.0638046612 3.647615 1103.3357
+182804.0638047655 3.6475363 1103.316
+182805.0638048698 3.6474969 1103.4344
+182806.0638049741 3.647615 1103.3949
+182807.0638050784 3.6475756 1103.3752
+182808.0638051827 3.6475363 1103.4147
+182809.063805287 3.6475363 1103.4542
+182810.0638053913 3.6475363 1103.3357
+182811.0638054956 3.6475363 1103.3555
+182812.0638055999 3.6475756 1103.3949
+182813.0638057042 3.6476545 1103.316
+182814.0638058085 3.6475756 1103.3949
+182815.0638059129 3.6476545 1103.474
+182816.0638060172 3.6476545 1103.3555
+182817.0638061215 3.6474969 1103.2369
+182818.0638062258 3.647615 1103.3555
+182819.0638063301 3.6476939 1103.3357
+182820.0638064344 3.6476545 1103.3752
+182821.0638065387 3.6476939 1103.316
+182822.063806643 3.647615 1103.2963
+182823.0638067473 3.6476939 1103.3949
+182824.0638068516 3.6476545 1103.3555
+182825.0638069559 3.6475756 1103.3752
+182826.0638070602 3.6477332 1103.316
+182827.0638071646 3.6476545 1103.316
+182828.0638072689 3.6476939 1103.3949
+182829.0638073732 3.6475756 1103.2963
+182830.0638074775 3.6476545 1103.3949
+182831.0638075818 3.647615 1103.4147
+182832.0638076861 3.6476939 1103.2963
+182833.0638077904 3.6477332 1103.316
+182834.0638078947 3.6476939 1103.2369
+182835.063807999 3.6477726 1103.2369
+182836.0638081033 3.6477332 1103.2963
+182837.0638082076 3.6477726 1103.3752
+182838.0638083119 3.6477726 1103.3752
+182839.0638084162 3.6476939 1103.2369
+182840.0638085206 3.6477332 1103.3752
+182841.0638086249 3.6477726 1103.316
+182842.0638087292 3.6476939 1103.2963
+182843.0638088335 3.6477726 1103.316
+182844.0638089378 3.6478512 1103.2765
+182845.0638090421 3.6478119 1103.316
+182846.0638091464 3.6478119 1103.4147
+182847.0638092507 3.6478119 1103.3555
+182848.063809355 3.6478119 1103.3357
+182849.0638094593 3.6478906 1103.3752
+182850.0638095636 3.6478119 1103.3949
+182851.0638096679 3.6478512 1103.3555
+182852.0638097723 3.6478512 1103.2765
+182853.0638098766 3.6478512 1103.2369
+182854.0638099809 3.6478512 1103.2765
+182855.0638100852 3.6477726 1103.3357
+182856.0638101895 3.6478512 1103.2765
+182857.0638102938 3.6479695 1103.3752
+182858.0638103981 3.6478119 1103.4147
+182859.0638105024 3.6477726 1103.3949
+182860.0638106067 3.6478906 1103.3555
+182861.063810711 3.6478512 1103.2963
+182862.0638108153 3.6478906 1103.3752
+182863.0638109196 3.6479301 1103.3357
+182864.063811024 3.6478906 1103.4542
+182865.0638111283 3.6480088 1103.4147
+182866.0638112326 3.6479301 1103.4938
+182867.0638113369 3.6478512 1103.3357
+182868.0638114412 3.6479301 1103.4147
+182869.0638115455 3.6480088 1103.3357
+182870.0638116498 3.6480088 1103.474
+182871.0638117541 3.6480088 1103.3555
+182872.0638118584 3.6480482 1103.3555
+182873.0638119627 3.6480088 1103.3555
+182874.063812067 3.6480482 1103.3555
+182875.0638121713 3.6479301 1103.3752
+182876.0638122757 3.6480088 1103.3555
+182877.06381238 3.6480482 1103.3555
+182878.0638124843 3.6479695 1103.3357
+182879.0638125886 3.6481268 1103.316
+182880.0638126929 3.6480482 1103.316
+182881.0638127972 3.6480482 1103.2369
+182882.0638129015 3.6479301 1103.3357
+182883.0638130058 3.6479695 1103.4147
+182884.0638131101 3.6480482 1103.4147
+182885.0638132144 3.6480482 1103.3949
+182886.0638133187 3.6480875 1103.3555
+182887.063813423 3.6480875 1103.3949
+182888.0638135273 3.6480088 1103.3949
+182889.0638136317 3.6481268 1103.4147
+182890.063813736 3.6481662 1103.3357
+182891.0638138403 3.6480875 1103.316
+182892.0638139446 3.6481662 1103.3555
+182893.0638140489 3.6481268 1103.3357
+182894.0638141532 3.6480875 1103.3752
+182895.0638142575 3.6481268 1103.2765
+182896.0638143618 3.6480482 1103.3949
+182897.0638144661 3.6480482 1103.3357
+182898.0638145704 3.6480875 1103.3555
+182899.0638146747 3.6482844 1103.3752
+182900.063814779 3.6481268 1103.3752
+182901.0638148834 3.6481662 1103.3752
+182902.0638149877 3.6481268 1103.316
+182903.063815092 3.6482055 1103.3357
+182904.0638151963 3.6481268 1103.4147
+182905.0638153006 3.6482844 1103.3357
+182906.0638154049 3.6482055 1103.316
+182907.0638155092 3.6481662 1103.316
+182908.0638156135 3.6482055 1103.316
+182909.0638157178 3.6482844 1103.2567
+182910.0638158221 3.6481268 1103.3555
+182911.0638159264 3.6482055 1103.2963
+182912.0638160307 3.6481662 1103.3555
+182913.0638161351 3.6482055 1103.3949
+182914.0638162394 3.6483238 1103.3949
+182915.0638163437 3.6482055 1103.3752
+182916.063816448 3.6481662 1103.4147
+182917.0638165523 3.6483238 1103.3555
+182918.0638166566 3.6482844 1103.2963
+182919.0638167609 3.6482055 1103.2963
+182920.0638168652 3.6482844 1103.3752
+182921.0638169695 3.6483238 1103.316
+182922.0638170738 3.6482844 1103.2963
+182923.0638171781 3.6483238 1103.316
+182924.0638172824 3.6483631 1103.3752
+182925.0638173867 3.6482451 1103.3949
+182926.0638174911 3.6484418 1103.3949
+182927.0638175954 3.6483631 1103.2765
+182928.0638176997 3.6484025 1103.3555
+182929.063817804 3.6484418 1103.3949
+182930.0638179083 3.6482844 1103.3357
+182931.0638180126 3.6482844 1103.3949
+182932.0638181169 3.6483238 1103.3357
+182933.0638182212 3.6483631 1103.2963
+182934.0638183255 3.6482844 1103.2567
+182935.0638184298 3.6485205 1103.3357
+182936.0638185341 3.6483238 1103.316
+182937.0638186384 3.6483631 1103.3357
+182938.0638187428 3.6484811 1103.3357
+182939.0638188471 3.6484025 1103.3357
+182940.0638189514 3.6483631 1103.3752
+182941.0638190557 3.6484025 1103.316
+182942.06381916 3.6484025 1103.3752
+182943.0638192643 3.6484025 1103.3752
+182944.0638193686 3.6484418 1103.474
+182945.0638194729 3.6483631 1103.3357
+182946.0638195772 3.6485205 1103.316
+182947.0638196815 3.6484025 1103.3949
+182948.0638197858 3.6485205 1103.4147
+182949.0638198901 3.6484025 1103.3752
+182950.0638199945 3.6484418 1103.3357
+182951.0638200988 3.6485205 1103.3949
+182952.0638202031 3.64856 1103.3555
+182953.0638203074 3.6485205 1103.4938
+182954.0638204117 3.6485205 1103.3555
+182955.063820516 3.64856 1103.2765
+182956.0638206203 3.64856 1103.3555
+182957.0638207246 3.6485205 1103.4147
+182958.0638208289 3.6485205 1103.4147
+182959.0638209332 3.64856 1103.4147
+182960.0638210375 3.6484811 1103.3949
+182961.0638211418 3.6486387 1103.3752
+182962.0638212461 3.6486387 1103.3555
+182963.0638213505 3.6485994 1103.3752
+182964.0638214548 3.6484811 1103.3357
+182965.0638215591 3.64856 1103.2963
+182966.0638216634 3.6485205 1103.3357
+182967.0638217677 3.64856 1103.3949
+182968.063821872 3.6485994 1103.3555
+182969.0638219763 3.6485994 1103.3357
+182970.0638220806 3.6484811 1103.3555
+182971.0638221849 3.6486387 1103.3555
+182972.0638222892 3.6486387 1103.3357
+182973.0638223935 3.6486387 1103.3949
+182974.0638224978 3.6485994 1103.316
+182975.0638226022 3.6486387 1103.3357
+182976.0638227065 3.6486387 1103.2963
+182977.0638228108 3.6486387 1103.474
+182978.0638229151 3.6486387 1103.3949
+182979.0638230194 3.6486387 1103.2765
+182980.0638231237 3.6487174 1103.3752
+182981.063823228 3.6486387 1103.316
+182982.0638233323 3.6486387 1103.3357
+182983.0638234366 3.6487567 1103.316
+182984.0638235409 3.6486781 1103.3752
+182985.0638236452 3.6486781 1103.3357
+182986.0638237495 3.6486781 1103.3752
+182987.0638238539 3.6487174 1103.2963
+182988.0638239582 3.6486781 1103.3949
+182989.0638240625 3.6487567 1103.3357
+182990.0638241668 3.6487961 1103.4344
+182991.0638242711 3.6486387 1103.3555
+182992.0638243754 3.6488354 1103.316
+182993.0638244797 3.6487174 1103.4147
+182994.063824584 3.648875 1103.3357
+182995.0638246883 3.6487174 1103.3555
+182996.0638247926 3.6487174 1103.2963
+182997.0638248969 3.6487961 1103.3357
+182998.0638250012 3.6488354 1103.3949
+182999.0638251056 3.6487961 1103.3555
+183000.0638252099 3.6487961 1103.3949
+183001.0638253142 3.6489143 1103.3555
+183002.0638254185 3.6487961 1103.4344
+183003.0638255228 3.6487567 1103.2765
+183004.0638256271 3.6488354 1103.3555
+183005.0638257314 3.648875 1103.3752
+183006.0638258357 3.6488354 1103.3555
+183007.06382594 3.648875 1103.3357
+183008.0638260443 3.6489143 1103.3555
+183009.0638261486 3.6488354 1103.3357
+183010.0638262529 3.6487174 1103.316
+183011.0638263572 3.6488354 1103.3752
+183012.0638264616 3.6489537 1103.3949
+183013.0638265659 3.6489143 1103.3555
+183014.0638266702 3.6488354 1103.3752
+183015.0638267745 3.648993 1103.3357
+183016.0638268788 3.6489537 1103.3752
+183017.0638269831 3.6489143 1103.2765
+183018.0638270874 3.648993 1103.3555
+183019.0638271917 3.648993 1103.3357
+183020.063827296 3.6489143 1103.4147
+183021.0638274003 3.6489143 1103.4344
+183022.0638275046 3.6489537 1103.2963
+183023.0638276089 3.648993 1103.4147
+183024.0638277133 3.648993 1103.2765
+183025.0638278176 3.6490324 1103.3949
+183026.0638279219 3.6489537 1103.3357
+183027.0638280262 3.6490324 1103.474
+183028.0638281305 3.648993 1103.3752
+183029.0638282348 3.6490717 1103.3555
+183030.0638283391 3.6490717 1103.4542
+183031.0638284434 3.6490324 1103.3357
+183032.0638285477 3.6490324 1103.2963
+183033.063828652 3.6490324 1103.3752
+183034.0638287563 3.6490324 1103.4344
+183035.0638288606 3.648993 1103.3357
+183036.063828965 3.648993 1103.3555
+183037.0638290693 3.6490324 1103.3357
+183038.0638291736 3.648993 1103.3949
+183039.0638292779 3.6490717 1103.3949
+183040.0638293822 3.649111 1103.3555
+183041.0638294865 3.6490324 1103.2765
+183042.0638295908 3.6491504 1103.3555
+183043.0638296951 3.6491899 1103.3555
+183044.0638297994 3.649111 1103.316
+183045.0638299037 3.6490324 1103.2963
+183046.063830008 3.6492293 1103.316
+183047.0638301123 3.649111 1103.2765
+183048.0638302166 3.6490717 1103.3357
+183049.063830321 3.6491504 1103.3555
+183050.0638304253 3.649111 1103.3555
+183051.0638305296 3.6491899 1103.2765
+183052.0638306339 3.649111 1103.316
+183053.0638307382 3.6491899 1103.2765
+183054.0638308425 3.6491899 1103.3752
+183055.0638309468 3.6492293 1103.4147
+183056.0638310511 3.6492686 1103.316
+183057.0638311554 3.6492293 1103.316
+183058.0638312597 3.6492293 1103.3949
+183059.063831364 3.6491899 1103.3357
+183060.0638314683 3.6491504 1103.3357
+183061.0638315727 3.6492293 1103.4542
+183062.063831677 3.6491899 1103.4147
+183063.0638317813 3.6492686 1103.2963
+183064.0638318856 3.6492686 1103.3752
+183065.0638319899 3.6492293 1103.3357
+183066.0638320942 3.6492686 1103.3752
+183067.0638321985 3.6492686 1103.316
+183068.0638323028 3.6492686 1103.4938
+183069.0638324071 3.649308 1103.3357
+183070.0638325114 3.6492686 1103.4147
+183071.0638326157 3.6492686 1103.316
+183072.06383272 3.6492686 1103.3555
+183073.0638328244 3.6492686 1103.2765
+183074.0638329287 3.6493473 1103.3357
+183075.063833033 3.649308 1103.3357
+183076.0638331373 3.6493866 1103.3357
+183077.0638332416 3.6492686 1103.3555
+183078.0638333459 3.649308 1103.3555
+183079.0638334502 3.6493473 1103.3555
+183080.0638335545 3.649426 1103.2963
+183081.0638336588 3.6492686 1103.316
+183082.0638337631 3.6494653 1103.3357
+183083.0638338674 3.6493866 1103.4147
+183084.0638339717 3.649426 1103.4147
+183085.063834076 3.6493473 1103.4147
+183086.0638341804 3.6493866 1103.3555
+183087.0638342847 3.6493866 1103.3949
+183088.063834389 3.649426 1103.3357
+183089.0638344933 3.649308 1103.3357
+183090.0638345976 3.649426 1103.2963
+183091.0638347019 3.6493473 1103.4147
+183092.0638348062 3.6494653 1103.2963
+183093.0638349105 3.649426 1103.3357
+183094.0638350148 3.6495442 1103.316
+183095.0638351191 3.6494653 1103.3949
+183096.0638352234 3.6495049 1103.3357
+183097.0638353277 3.6493866 1103.2963
+183098.0638354321 3.6495049 1103.2963
+183099.0638355364 3.6495049 1103.4542
+183100.0638356407 3.6494653 1103.316
+183101.063835745 3.6494653 1103.3555
+183102.0638358493 3.6494653 1103.3555
+183103.0638359536 3.6495049 1103.3555
+183104.0638360579 3.6495442 1103.3752
+183105.0638361622 3.649426 1103.3357
+183106.0638362665 3.6495049 1103.2567
+183107.0638363708 3.6495836 1103.3357
+183108.0638364751 3.6495049 1103.3555
+183109.0638365794 3.6495442 1103.3752
+183110.0638366838 3.6494653 1103.2963
+183111.0638367881 3.6495442 1103.3949
+183112.0638368924 3.6494653 1103.316
+183113.0638369967 3.6495836 1103.3555
+183114.063837101 3.6495442 1103.3752
+183115.0638372053 3.6495049 1103.3949
+183116.0638373096 3.6495442 1103.3752
+183117.0638374139 3.6495049 1103.3752
+183118.0638375182 3.6495442 1103.3555
+183119.0638376225 3.6497016 1103.2963
+183120.0638377268 3.6496229 1103.3752
+183121.0638378311 3.6495836 1103.316
+183122.0638379355 3.6495836 1103.3752
+183123.0638380398 3.6496623 1103.3357
+183124.0638381441 3.6495836 1103.316
+183125.0638382484 3.6497805 1103.316
+183126.0638383527 3.6496623 1103.3752
+183127.063838457 3.6497016 1103.3555
+183128.0638385613 3.6496229 1103.3949
+183129.0638386656 3.6496229 1103.2567
+183130.0638387699 3.6496229 1103.316
+183131.0638388742 3.6496229 1103.3555
+183132.0638389785 3.6496229 1103.3555
+183133.0638390828 3.6497016 1103.316
+183134.0638391871 3.6496623 1103.3555
+183135.0638392915 3.6497016 1103.3357
+183136.0638393958 3.6498199 1103.3949
+183137.0638395001 3.6497409 1103.2765
+183138.0638396044 3.6497409 1103.3752
+183139.0638397087 3.6497409 1103.4344
+183140.063839813 3.6497805 1103.3555
+183141.0638399173 3.6496229 1103.3555
+183142.0638400216 3.6498592 1103.3555
+183143.0638401259 3.6498592 1103.2963
+183144.0638402302 3.6497805 1103.3949
+183145.0638403345 3.6497016 1103.4147
+183146.0638404388 3.6497409 1103.3555
+183147.0638405432 3.6497016 1103.3357
+183148.0638406475 3.6498592 1103.3357
+183149.0638407518 3.6497805 1103.316
+183150.0638408561 3.6497409 1103.3949
+183151.0638409604 3.6497805 1103.3949
+183152.0638410647 3.6498199 1103.316
+183153.063841169 3.6498199 1103.3555
+183154.0638412733 3.6497805 1103.3752
+183155.0638413776 3.6498985 1103.316
+183156.0638414819 3.6498985 1103.3752
+183157.0638415862 3.6498199 1103.4147
+183158.0638416905 3.6498985 1103.3752
+183159.0638417949 3.6499772 1103.4344
+183160.0638418992 3.6499379 1103.2963
+183161.0638420035 3.6498199 1103.3949
+183162.0638421078 3.6498985 1103.2765
+183163.0638422121 3.6498985 1103.3752
+183164.0638423164 3.6498985 1103.4147
+183165.0638424207 3.6499772 1103.3949
+183166.063842525 3.6499379 1103.316
+183167.0638426293 3.6499379 1103.3357
+183168.0638427336 3.6498592 1103.2963
+183169.0638428379 3.6500165 1103.316
+183170.0638429422 3.6498985 1103.3555
+183171.0638430465 3.6499379 1103.316
+183172.0638431509 3.6499379 1103.2765
+183173.0638432552 3.6498985 1103.3949
+183174.0638433595 3.6500165 1103.2963
+183175.0638434638 3.6499772 1103.3357
+183176.0638435681 3.6499379 1103.3752
+183177.0638436724 3.6498985 1103.3752
+183178.0638437767 3.6500165 1103.3752
+183179.063843881 3.6500165 1103.3555
+183180.0638439853 3.6499379 1103.3949
+183181.0638440896 3.6499379 1103.3357
+183182.0638441939 3.6500955 1103.4542
+183183.0638442982 3.6500165 1103.2172
+183184.0638444026 3.6500955 1103.4147
+183185.0638445069 3.6500559 1103.3752
+183186.0638446112 3.6500165 1103.3752
+183187.0638447155 3.6500559 1103.4147
+183188.0638448198 3.6500559 1103.3555
+183189.0638449241 3.6499772 1103.316
+183190.0638450284 3.6501741 1103.3357
+183191.0638451327 3.6501348 1103.3949
+183192.063845237 3.6500559 1103.3555
+183193.0638453413 3.6500955 1103.3752
+183194.0638454456 3.6501348 1103.3555
+183195.0638455499 3.6502135 1103.3555
+183196.0638456543 3.6501348 1103.3555
+183197.0638457586 3.6502528 1103.316
+183198.0638458629 3.6501348 1103.3555
+183199.0638459672 3.6502135 1103.3752
+183200.0638460715 3.6501741 1103.3752
+183201.0638461758 3.6501348 1103.3357
+183202.0638462801 3.6502135 1103.3949
+183203.0638463844 3.6501741 1103.2765
+183204.0638464887 3.6500955 1103.3357
+183205.063846593 3.6501741 1103.3752
+183206.0638466973 3.6501741 1103.3555
+183207.0638468016 3.6501741 1103.3555
+183208.0638469059 3.6502528 1103.3752
+183209.0638470103 3.6502135 1103.316
+183210.0638471146 3.6502135 1103.3752
+183211.0638472189 3.6500559 1103.4147
+183212.0638473232 3.6503315 1103.3555
+183213.0638474275 3.6502922 1103.3357
+183214.0638475318 3.6501741 1103.3752
+183215.0638476361 3.6503708 1103.4147
+183216.0638477404 3.6503708 1103.3555
+183217.0638478447 3.6502135 1103.2765
+183218.063847949 3.6503315 1103.2963
+183219.0638480533 3.6502528 1103.3357
+183220.0638481576 3.6502528 1103.3357
+183221.063848262 3.6502135 1103.4344
+183222.0638483663 3.6502922 1103.4147
+183223.0638484706 3.6502922 1103.316
+183224.0638485749 3.6504104 1103.3555
+183225.0638486792 3.6502922 1103.316
+183226.0638487835 3.6503708 1103.4147
+183227.0638488878 3.6502922 1103.4147
+183228.0638489921 3.6503708 1103.316
+183229.0638490964 3.6502922 1103.3555
+183230.0638492007 3.6502528 1103.3357
+183231.063849305 3.6503315 1103.316
+183232.0638494093 3.6503315 1103.3752
+183233.0638495137 3.6504104 1103.3752
+183234.063849618 3.6504498 1103.3752
+183235.0638497223 3.6504104 1103.2963
+183236.0638498266 3.6504104 1103.2765
+183237.0638499309 3.6503315 1103.2963
+183238.0638500352 3.6503708 1103.4542
+183239.0638501395 3.6503708 1103.3752
+183240.0638502438 3.6504498 1103.3949
+183241.0638503481 3.6504498 1103.4147
+183242.0638504524 3.6504498 1103.3949
+183243.0638505567 3.6503315 1103.3555
+183244.063850661 3.6504104 1103.3357
+183245.0638507653 3.6504891 1103.4147
+183246.0638508697 3.6504104 1103.2765
+183247.063850974 3.6504498 1103.3752
+183248.0638510783 3.6505284 1103.3949
+183249.0638511826 3.6504498 1103.2765
+183250.0638512869 3.6506071 1103.3752
+183251.0638513912 3.6505284 1103.3555
+183252.0638514955 3.6504498 1103.2765
+183253.0638515998 3.6505284 1103.4344
+183254.0638517041 3.6504891 1103.2567
+183255.0638518084 3.6504891 1103.3752
+183256.0638519127 3.6504891 1103.3752
+183257.063852017 3.6505284 1103.2765
+183258.0638521214 3.6504891 1103.3555
+183259.0638522257 3.6505284 1103.3555
+183260.06385233 3.6505678 1103.2963
+183261.0638524343 3.6505678 1103.4147
+183262.0638525386 3.6506071 1103.3555
+183263.0638526429 3.6505678 1103.3555
+183264.0638527472 3.6505678 1103.3752
+183265.0638528515 3.6506071 1103.316
+183266.0638529558 3.6505284 1103.316
+183267.0638530601 3.6506071 1103.3752
+183268.0638531644 3.6506464 1103.4344
+183269.0638532687 3.6506858 1103.3357
+183270.0638533731 3.6504891 1103.316
+183271.0638534774 3.6506071 1103.2765
+183272.0638535817 3.6505284 1103.316
+183273.063853686 3.6506071 1103.4147
+183274.0638537903 3.6506464 1103.3357
+183275.0638538946 3.6506464 1103.3357
+183276.0638539989 3.6506858 1103.3555
+183277.0638541032 3.6506071 1103.3555
+183278.0638542075 3.6507254 1103.3752
+183279.0638543118 3.6507254 1103.3752
+183280.0638544161 3.6506858 1103.3752
+183281.0638545204 3.6506464 1103.2567
+183282.0638546248 3.6506858 1103.3357
+183283.0638547291 3.6507647 1103.3555
+183284.0638548334 3.6506858 1103.2765
+183285.0638549377 3.6507254 1103.316
+183286.063855042 3.6506464 1103.3555
+183287.0638551463 3.650804 1103.2963
+183288.0638552506 3.6507254 1103.3357
+183289.0638553549 3.6507254 1103.3949
+183290.0638554592 3.6507254 1103.3949
+183291.0638555635 3.6507254 1103.4344
+183292.0638556678 3.6507254 1103.4344
+183293.0638557721 3.6507647 1103.3357
+183294.0638558764 3.650804 1103.3357
+183295.0638559808 3.6506464 1103.3752
+183296.0638560851 3.650804 1103.3949
+183297.0638561894 3.6507647 1103.316
+183298.0638562937 3.6508434 1103.4344
+183299.063856398 3.6507254 1103.2963
+183300.0638565023 3.650804 1103.316
+183301.0638566066 3.6508827 1103.316
+183302.0638567109 3.6508827 1103.3555
+183303.0638568152 3.6507254 1103.4147
+183304.0638569195 3.6508434 1103.316
+183305.0638570238 3.6507647 1103.2963
+183306.0638571281 3.6509221 1103.3949
+183307.0638572325 3.650804 1103.3949
+183308.0638573368 3.6507647 1103.4542
+183309.0638574411 3.6508827 1103.316
+183310.0638575454 3.6508434 1103.3555
+183311.0638576497 3.6508827 1103.3357
+183312.063857754 3.6509614 1103.2765
+183313.0638578583 3.6508827 1103.3357
+183314.0638579626 3.6508827 1103.2369
+183315.0638580669 3.6510007 1103.316
+183316.0638581712 3.6509221 1103.4147
+183317.0638582755 3.6509221 1103.316
+183318.0638583798 3.6509614 1103.4147
+183319.0638584842 3.6510007 1103.3752
+183320.0638585885 3.6509221 1103.3949
+183321.0638586928 3.6510797 1103.3949
+183322.0638587971 3.6509221 1103.3555
+183323.0638589014 3.6510403 1103.3555
+183324.0638590057 3.6510797 1103.3555
+183325.06385911 3.6510403 1103.3357
+183326.0638592143 3.6510403 1103.3555
+183327.0638593186 3.6510403 1103.3555
+183328.0638594229 3.6510007 1103.1975
+183329.0638595272 3.6509614 1103.316
+183330.0638596315 3.6510403 1103.3949
+183331.0638597358 3.6510007 1103.3555
+183332.0638598402 3.6510007 1103.316
+183333.0638599445 3.6510007 1103.3555
+183334.0638600488 3.6510007 1103.3555
+183335.0638601531 3.6511583 1103.3752
+183336.0638602574 3.6510403 1103.3949
+183337.0638603617 3.6510007 1103.2963
+183338.063860466 3.6510403 1103.3752
+183339.0638605703 3.651119 1103.2963
+183340.0638606746 3.6511583 1103.3555
+183341.0638607789 3.6511977 1103.3555
+183342.0638608832 3.6510797 1103.4147
+183343.0638609875 3.6510797 1103.3949
+183344.0638610919 3.6510797 1103.316
+183345.0638611962 3.651119 1103.316
+183346.0638613005 3.6510797 1103.316
+183347.0638614048 3.6511583 1103.2369
+183348.0638615091 3.6511583 1103.3555
+183349.0638616134 3.6510797 1103.3555
+183350.0638617177 3.6511977 1103.4147
+183351.063861822 3.6511583 1103.316
+183352.0638619263 3.651237 1103.2963
+183353.0638620306 3.651119 1103.3949
+183354.0638621349 3.6510797 1103.3555
+183355.0638622392 3.6511977 1103.4344
+183356.0638623436 3.6511977 1103.4344
+183357.0638624479 3.6512764 1103.3555
+183358.0638625522 3.6512764 1103.3357
+183359.0638626565 3.6513157 1103.4542
+183360.0638627608 3.6511977 1103.3357
+183361.0638628651 3.6512764 1103.2567
+183362.0638629694 3.6511977 1103.3357
+183363.0638630737 3.6512764 1103.3949
+183364.063863178 3.651237 1103.4147
+183365.0638632823 3.651237 1103.3357
+183366.0638633866 3.6512764 1103.316
+183367.0638634909 3.651237 1103.3752
+183368.0638635952 3.6512764 1103.3949
+183369.0638636996 3.6513157 1103.3357
+183370.0638638039 3.6513157 1103.4344
+183371.0638639082 3.6513553 1103.3357
+183372.0638640125 3.6511977 1103.3555
+183373.0638641168 3.6513157 1103.3949
+183374.0638642211 3.6512764 1103.4542
+183375.0638643254 3.651237 1103.3555
+183376.0638644297 3.6513553 1103.3752
+183377.063864534 3.6513946 1103.4147
+183378.0638646383 3.6513553 1103.3752
+183379.0638647426 3.6513553 1103.3555
+183380.0638648469 3.6512764 1103.3752
+183381.0638649513 3.6513553 1103.3357
+183382.0638650556 3.6514339 1103.2765
+183383.0638651599 3.6513553 1103.3949
+183384.0638652642 3.6513946 1103.4344
+183385.0638653685 3.6512764 1103.3949
+183386.0638654728 3.6513553 1103.4344
+183387.0638655771 3.6513946 1103.316
+183388.0638656814 3.6513946 1103.3949
+183389.0638657857 3.6514339 1103.316
+183390.06386589 3.6514339 1103.3555
+183391.0638659943 3.6513553 1103.316
+183392.0638660986 3.6514733 1103.3357
+183393.063866203 3.6515126 1103.316
+183394.0638663073 3.6513946 1103.3555
+183395.0638664116 3.6514339 1103.316
+183396.0638665159 3.6514733 1103.4344
+183397.0638666202 3.6514733 1103.3752
+183398.0638667245 3.6513946 1103.3752
+183399.0638668288 3.6514733 1103.3555
+183400.0638669331 3.6514339 1103.3752
+183401.0638670374 3.651552 1103.474
+183402.0638671417 3.6515126 1103.2963
+183403.063867246 3.651552 1103.4147
+183404.0638673503 3.6516309 1103.316
+183405.0638674547 3.6514733 1103.3555
+183406.063867559 3.651552 1103.3949
+183407.0638676633 3.6514339 1103.3357
+183408.0638677676 3.6515126 1103.2369
+183409.0638678719 3.6515126 1103.2765
+183410.0638679762 3.6515126 1103.5134
+183411.0638680805 3.6516702 1103.3357
+183412.0638681848 3.6516309 1103.3949
+183413.0638682891 3.6515913 1103.4344
+183414.0638683934 3.6516309 1103.4147
+183415.0638684977 3.6514733 1103.3357
+183416.063868602 3.6515913 1103.316
+183417.0638687063 3.6515913 1103.3555
+183418.0638688107 3.6515913 1103.316
+183419.063868915 3.6515913 1103.4147
+183420.0638690193 3.6515913 1103.3752
+183421.0638691236 3.6516702 1103.3752
+183422.0638692279 3.6516702 1103.3555
+183423.0638693322 3.651552 1103.2765
+183424.0638694365 3.6516702 1103.3949
+183425.0638695408 3.6517096 1103.4542
+183426.0638696451 3.6516309 1103.3949
+183427.0638697494 3.6515913 1103.3357
+183428.0638698537 3.6517489 1103.3555
+183429.063869958 3.6517096 1103.3949
+183430.0638700624 3.6516702 1103.316
+183431.0638701667 3.6516702 1103.3555
+183432.063870271 3.6517489 1103.3949
+183433.0638703753 3.6517882 1103.3555
+183434.0638704796 3.6517096 1103.2765
+183435.0638705839 3.6518276 1103.3357
+183436.0638706882 3.6517096 1103.2369
+183437.0638707925 3.6517882 1103.2765
+183438.0638708968 3.6517489 1103.3949
+183439.0638710011 3.6517489 1103.2765
+183440.0638711054 3.6517096 1103.316
+183441.0638712097 3.6517489 1103.4344
+183442.0638713141 3.6517882 1103.3752
+183443.0638714184 3.6516309 1103.2963
+183444.0638715227 3.6518669 1103.4938
+183445.063871627 3.6517489 1103.4344
+183446.0638717313 3.6517489 1103.2963
+183447.0638718356 3.6517882 1103.316
+183448.0638719399 3.6517882 1103.4147
+183449.0638720442 3.6517882 1103.3357
+183450.0638721485 3.6517096 1103.3555
+183451.0638722528 3.6519063 1103.3752
+183452.0638723571 3.6519063 1103.3949
+183453.0638724614 3.6517489 1103.4147
+183454.0638725657 3.6518276 1103.4542
+183455.0638726701 3.6518276 1103.3555
+183456.0638727744 3.6518276 1103.3357
+183457.0638728787 3.6519063 1103.3949
+183458.063872983 3.6518669 1103.3752
+183459.0638730873 3.6518669 1103.4344
+183460.0638731916 3.6519458 1103.316
+183461.0638732959 3.6518669 1103.4147
+183462.0638734002 3.6519063 1103.3949
+183463.0638735045 3.6519458 1103.3752
+183464.0638736088 3.6519063 1103.316
+183465.0638737131 3.6519063 1103.3555
+183466.0638738174 3.6519063 1103.3357
+183467.0638739218 3.6520245 1103.316
+183468.0638740261 3.6518669 1103.2963
+183469.0638741304 3.6518669 1103.3357
+183470.0638742347 3.6519063 1103.3555
+183471.063874339 3.6519852 1103.3752
+183472.0638744433 3.6521032 1103.316
+183473.0638745476 3.6520638 1103.2963
+183474.0638746519 3.6519458 1103.3752
+183475.0638747562 3.6519852 1103.3357
+183476.0638748605 3.6520638 1103.3555
+183477.0638749648 3.6520245 1103.316
+183478.0638750691 3.6521032 1103.2963
+183479.0638751735 3.6520245 1103.3752
+183480.0638752778 3.6519458 1103.4147
+183481.0638753821 3.6521032 1103.3555
+183482.0638754864 3.6520245 1103.3555
+183483.0638755907 3.6520638 1103.316
+183484.063875695 3.6519458 1103.3949
+183485.0638757993 3.6521032 1103.2963
+183486.0638759036 3.6521032 1103.316
+183487.0638760079 3.6521425 1103.316
+183488.0638761122 3.6520245 1103.3555
+183489.0638762165 3.6521819 1103.3357
+183490.0638763208 3.6521425 1103.3949
+183491.0638764251 3.6521032 1103.4344
+183492.0638765295 3.6520245 1103.4344
+183493.0638766338 3.6521425 1103.3357
+183494.0638767381 3.6521032 1103.3949
+183495.0638768424 3.6521032 1103.2567
+183496.0638769467 3.6521425 1103.3949
+183497.063877051 3.6520638 1103.3752
+183498.0638771553 3.6521819 1103.4344
+183499.0638772596 3.6520638 1103.3357
+183500.0638773639 3.6522212 1103.316
+183501.0638774682 3.6521425 1103.3752
+183502.0638775725 3.6521032 1103.2765
+183503.0638776768 3.6521425 1103.3555
+183504.0638777812 3.6521819 1103.316
+183505.0638778855 3.6522212 1103.3555
+183506.0638779898 3.6521425 1103.316
+183507.0638780941 3.6521819 1103.2567
+183508.0638781984 3.6521819 1103.3949
+183509.0638783027 3.6521819 1103.316
+183510.063878407 3.6522212 1103.2369
+183511.0638785113 3.6522608 1103.3357
+183512.0638786156 3.6522212 1103.2963
+183513.0638787199 3.6523001 1103.3555
+183514.0638788242 3.6522212 1103.3555
+183515.0638789285 3.6523395 1103.3555
+183516.0638790329 3.6523001 1103.3357
+183517.0638791372 3.6524181 1103.3752
+183518.0638792415 3.6522608 1103.3752
+183519.0638793458 3.6523395 1103.2765
+183520.0638794501 3.6523395 1103.4147
+183521.0638795544 3.6522212 1103.3555
+183522.0638796587 3.6523395 1103.3949
+183523.063879763 3.6523395 1103.3949
+183524.0638798673 3.6522608 1103.3555
+183525.0638799716 3.6523788 1103.3752
+183526.0638800759 3.6523395 1103.316
+183527.0638801802 3.6523395 1103.3357
+183528.0638802846 3.6523788 1103.3555
+183529.0638803889 3.6523788 1103.3949
+183530.0638804932 3.6523788 1103.3752
+183531.0638805975 3.6523788 1103.3555
+183532.0638807018 3.6524575 1103.4344
+183533.0638808061 3.6524181 1103.3949
+183534.0638809104 3.6524575 1103.3949
+183535.0638810147 3.6523788 1103.3949
+183536.063881119 3.6524575 1103.4147
+183537.0638812233 3.6522608 1103.3357
+183538.0638813276 3.6523788 1103.4147
+183539.0638814319 3.6524181 1103.2963
+183540.0638815362 3.6523395 1103.3357
+183541.0638816406 3.6524968 1103.3752
+183542.0638817449 3.6523395 1103.3555
+183543.0638818492 3.6523395 1103.316
+183544.0638819535 3.6524968 1103.4147
+183545.0638820578 3.6524181 1103.316
+183546.0638821621 3.6524181 1103.316
+183547.0638822664 3.6524181 1103.3555
+183548.0638823707 3.6524181 1103.2765
+183549.063882475 3.6524181 1103.4542
+183550.0638825793 3.6523788 1103.2567
+183551.0638826836 3.6524181 1103.3357
+183552.0638827879 3.6525362 1103.316
+183553.0638828923 3.6524181 1103.3555
+183554.0638829966 3.6524968 1103.316
+183555.0638831009 3.6524968 1103.2765
+183556.0638832052 3.6524968 1103.3357
+183557.0638833095 3.6525757 1103.316
+183558.0638834138 3.6524575 1103.3357
+183559.0638835181 3.6526151 1103.316
+183560.0638836224 3.6525362 1103.3555
+183561.0638837267 3.6526151 1103.3357
+183562.063883831 3.6526151 1103.4147
+183563.0638839353 3.6525757 1103.3555
+183564.0638840396 3.6526937 1103.3555
+183565.063884144 3.6526151 1103.3949
+183566.0638842483 3.6524968 1103.3752
+183567.0638843526 3.6524968 1103.3357
+183568.0638844569 3.6526151 1103.3555
+183569.0638845612 3.6526151 1103.2172
+183570.0638846655 3.6524968 1103.3949
+183571.0638847698 3.6526151 1103.3752
+183572.0638848741 3.6526151 1103.3752
+183573.0638849784 3.6526544 1103.316
+183574.0638850827 3.6526151 1103.3949
+183575.063885187 3.6526937 1103.316
+183576.0638852913 3.6527724 1103.3555
+183577.0638853956 3.6526937 1103.3555
+183578.0638855 3.6526544 1103.2567
+183579.0638856043 3.6526544 1103.2963
+183580.0638857086 3.6526544 1103.2963
+183581.0638858129 3.6527331 1103.4147
+183582.0638859172 3.6526544 1103.3555
+183583.0638860215 3.6526544 1103.3752
+183584.0638861258 3.6526544 1103.4344
+183585.0638862301 3.6527724 1103.3357
+183586.0638863344 3.6526937 1103.2369
+183587.0638864387 3.6526544 1103.3555
+183588.063886543 3.6526544 1103.3752
+183589.0638866473 3.6527331 1103.3555
+183590.0638867517 3.6527331 1103.3949
+183591.063886856 3.6527724 1103.3752
+183592.0638869603 3.6528118 1103.4344
+183593.0638870646 3.6527331 1103.2963
+183594.0638871689 3.6527331 1103.3949
+183595.0638872732 3.6528118 1103.3357
+183596.0638873775 3.6528511 1103.4542
+183597.0638874818 3.6527724 1103.3949
+183598.0638875861 3.6527331 1103.3949
+183599.0638876904 3.6527724 1103.4344
+183600.0638877947 3.6528118 1103.3752
+183601.063887899 3.6527724 1103.3752
+183602.0638880034 3.6528118 1103.3555
+183603.0638881077 3.6528511 1103.3752
+183604.063888212 3.6526544 1103.2369
+183605.0638883163 3.6528907 1103.3555
+183606.0638884206 3.6528907 1103.2765
+183607.0638885249 3.6527724 1103.3357
+183608.0638886292 3.6528907 1103.3752
+183609.0638887335 3.6528511 1103.3752
+183610.0638888378 3.6528511 1103.3555
+183611.0638889421 3.6528118 1103.2369
+183612.0638890464 3.6530087 1103.3949
+183613.0638891507 3.65293 1103.4147
+183614.063889255 3.65293 1103.3949
+183615.0638893594 3.6528511 1103.2963
+183616.0638894637 3.6528907 1103.3555
+183617.063889568 3.6528907 1103.3949
+183618.0638896723 3.6529694 1103.316
+183619.0638897766 3.65293 1103.3555
+183620.0638898809 3.6528907 1103.316
+183621.0638899852 3.65293 1103.4147
+183622.0638900895 3.6530874 1103.2963
+183623.0638901938 3.6528907 1103.316
+183624.0638902981 3.6530087 1103.4542
+183625.0638904024 3.6528907 1103.3357
+183626.0638905067 3.653048 1103.4344
+183627.0638906111 3.653048 1103.3752
+183628.0638907154 3.653048 1103.3949
+183629.0638908197 3.6529694 1103.3357
+183630.063890924 3.6530874 1103.3752
+183631.0638910283 3.653048 1103.4542
+183632.0638911326 3.6529694 1103.3949
+183633.0638912369 3.6530087 1103.316
+183634.0638913412 3.6531267 1103.2567
+183635.0638914455 3.6529694 1103.3555
+183636.0638915498 3.653048 1103.3555
+183637.0638916541 3.6530087 1103.3555
+183638.0638917584 3.6530874 1103.3555
+183639.0638918628 3.6531661 1103.4542
+183640.0638919671 3.6530874 1103.3357
+183641.0638920714 3.6530874 1103.3752
+183642.0638921757 3.6530087 1103.2963
+183643.06389228 3.6530874 1103.316
+183644.0638923843 3.6530087 1103.3555
+183645.0638924886 3.6530874 1103.4344
+183646.0638925929 3.6530874 1103.3357
+183647.0638926972 3.6531267 1103.3357
+183648.0638928015 3.6531661 1103.316
+183649.0638929058 3.6530874 1103.3752
+183650.0638930101 3.6532056 1103.316
+183651.0638931144 3.6531661 1103.3357
+183652.0638932188 3.6531661 1103.3949
+183653.0638933231 3.653245 1103.474
+183654.0638934274 3.6531661 1103.3949
+183655.0638935317 3.6531661 1103.3752
+183656.063893636 3.6531661 1103.2567
+183657.0638937403 3.6531661 1103.316
+183658.0638938446 3.6531661 1103.2963
+183659.0638939489 3.6532056 1103.3357
+183660.0638940532 3.6531661 1103.3949
+183661.0638941575 3.6533237 1103.3357
+183662.0638942618 3.6532843 1103.4147
+183663.0638943661 3.6533237 1103.316
+183664.0638944705 3.6532056 1103.3752
+183665.0638945748 3.6532056 1103.3752
+183666.0638946791 3.653363 1103.4147
+183667.0638947834 3.653245 1103.316
+183668.0638948877 3.6533237 1103.3357
+183669.063894992 3.6532056 1103.2172
+183670.0638950963 3.653245 1103.316
+183671.0638952006 3.653363 1103.3949
+183672.0638953049 3.653245 1103.316
+183673.0638954092 3.653245 1103.2765
+183674.0638955135 3.653363 1103.3752
+183675.0638956178 3.6532843 1103.3555
+183676.0638957222 3.653363 1103.3949
+183677.0638958265 3.653245 1103.316
+183678.0638959308 3.6533237 1103.3949
+183679.0638960351 3.6534417 1103.3357
+183680.0638961394 3.653363 1103.4344
+183681.0638962437 3.6533237 1103.3357
+183682.063896348 3.6532843 1103.3555
+183683.0638964523 3.653363 1103.4542
+183684.0638965566 3.6534023 1103.3357
+183685.0638966609 3.6535206 1103.4147
+183686.0638967652 3.6534023 1103.3555
+183687.0638968695 3.653363 1103.316
+183688.0638969739 3.6534417 1103.2369
+183689.0638970782 3.6534417 1103.3555
+183690.0638971825 3.6534023 1103.3357
+183691.0638972868 3.6534023 1103.3357
+183692.0638973911 3.6534417 1103.3555
+183693.0638974954 3.6534812 1103.3949
+183694.0638975997 3.6535206 1103.4147
+183695.063897704 3.653363 1103.3949
+183696.0638978083 3.6535206 1103.3949
+183697.0638979126 3.6534023 1103.2765
+183698.0638980169 3.6534023 1103.3752
+183699.0638981212 3.6534417 1103.3752
+183700.0638982255 3.653363 1103.4344
+183701.0638983299 3.6534812 1103.3752
+183702.0638984342 3.6534812 1103.3752
+183703.0638985385 3.6535206 1103.4344
+183704.0638986428 3.6534023 1103.3949
+183705.0638987471 3.6534812 1103.2963
+183706.0638988514 3.6534812 1103.3752
+183707.0638989557 3.6535206 1103.2963
+183708.06389906 3.6535599 1103.3357
+183709.0638991643 3.6534023 1103.3949
+183710.0638992686 3.6534812 1103.2963
+183711.0638993729 3.6535993 1103.2765
+183712.0638994772 3.6535206 1103.3752
+183713.0638995816 3.6535206 1103.3752
+183714.0638996859 3.6535599 1103.3555
+183715.0638997902 3.6535993 1103.316
+183716.0638998945 3.6536386 1103.3357
+183717.0638999988 3.6535993 1103.2369
+183718.0639001031 3.6535993 1103.3357
+183719.0639002074 3.6535599 1103.316
+183720.0639003117 3.6535993 1103.3752
+183721.063900416 3.6535206 1103.3555
+183722.0639005203 3.6536386 1103.3949
+183723.0639006246 3.6536779 1103.4147
+183724.0639007289 3.6535993 1103.2963
+183725.0639008333 3.6536386 1103.4147
+183726.0639009376 3.6536386 1103.3752
+183727.0639010419 3.6536779 1103.3357
+183728.0639011462 3.6537173 1103.3752
+183729.0639012505 3.6535993 1103.3555
+183730.0639013548 3.6536779 1103.2765
+183731.0639014591 3.6536386 1103.3555
+183732.0639015634 3.6535599 1103.3357
+183733.0639016677 3.6537566 1103.3555
+183734.063901772 3.6536779 1103.316
+183735.0639018763 3.6535993 1103.2963
+183736.0639019806 3.6536779 1103.3357
+183737.0639020849 3.6536386 1103.4938
+183738.0639021893 3.6537173 1103.2765
+183739.0639022936 3.6536779 1103.2963
+183740.0639023979 3.6537566 1103.4147
+183741.0639025022 3.6537566 1103.316
+183742.0639026065 3.6537566 1103.3357
+183743.0639027108 3.6537566 1103.4344
+183744.0639028151 3.6537173 1103.2765
+183745.0639029194 3.6537566 1103.3949
+183746.0639030237 3.6537566 1103.4147
+183747.063903128 3.6537962 1103.3555
+183748.0639032323 3.6537962 1103.3555
+183749.0639033366 3.6538355 1103.4542
+183750.063903441 3.6538749 1103.2963
+183751.0639035453 3.6537962 1103.4147
+183752.0639036496 3.6538749 1103.3555
+183753.0639037539 3.6538355 1103.3357
+183754.0639038582 3.6538355 1103.2567
+183755.0639039625 3.6537962 1103.4147
+183756.0639040668 3.6539142 1103.2765
+183757.0639041711 3.6538355 1103.3357
+183758.0639042754 3.6539142 1103.3752
+183759.0639043797 3.6538749 1103.3357
+183760.063904484 3.6537566 1103.2963
+183761.0639045883 3.6539929 1103.316
+183762.0639046927 3.6538749 1103.2963
+183763.063904797 3.6539536 1103.4147
+183764.0639049013 3.6538749 1103.2963
+183765.0639050056 3.6538355 1103.3949
+183766.0639051099 3.6537962 1103.4344
+183767.0639052142 3.6537962 1103.4344
+183768.0639053185 3.6538749 1103.316
+183769.0639054228 3.6539929 1103.3357
+183770.0639055271 3.6538749 1103.4542
+183771.0639056314 3.6538749 1103.3555
+183772.0639057357 3.6540322 1103.3357
+183773.06390584 3.6540716 1103.3752
+183774.0639059443 3.6539929 1103.3357
+183775.0639060487 3.6538355 1103.3752
+183776.063906153 3.6539929 1103.3357
+183777.0639062573 3.6540322 1103.3555
+183778.0639063616 3.6539142 1103.3949
+183779.0639064659 3.6540322 1103.2963
+183780.0639065702 3.6540716 1103.3357
+183781.0639066745 3.6539929 1103.2765
+183782.0639067788 3.6539536 1103.3949
+183783.0639068831 3.6539929 1103.3555
+183784.0639069874 3.6539536 1103.3555
+183785.0639070917 3.6539536 1103.3752
+183786.063907196 3.6541505 1103.4147
+183787.0639073004 3.6539929 1103.4147
+183788.0639074047 3.6540716 1103.3949
+183789.063907509 3.6540322 1103.3357
+183790.0639076133 3.6540716 1103.2963
+183791.0639077176 3.6540322 1103.316
+183792.0639078219 3.6541111 1103.2963
+183793.0639079262 3.6540322 1103.316
+183794.0639080305 3.6540322 1103.3752
+183795.0639081348 3.6541111 1103.3555
+183796.0639082391 3.6539929 1103.3555
+183797.0639083434 3.6540322 1103.3752
+183798.0639084477 3.6541111 1103.2369
+183799.0639085521 3.6540322 1103.2369
+183800.0639086564 3.6541505 1103.3949
+183801.0639087607 3.6540716 1103.2963
+183802.063908865 3.6540716 1103.2765
+183803.0639089693 3.6541898 1103.2963
+183804.0639090736 3.6541898 1103.2963
+183805.0639091779 3.6542292 1103.3949
+183806.0639092822 3.6542685 1103.2765
+183807.0639093865 3.6542292 1103.3555
+183808.0639094908 3.6541898 1103.3357
+183809.0639095951 3.6541505 1103.3357
+183810.0639096994 3.6543078 1103.3752
+183811.0639098038 3.6541111 1103.2765
+183812.0639099081 3.6541505 1103.3357
+183813.0639100124 3.6542685 1103.2765
+183814.0639101167 3.6541898 1103.4147
+183815.063910221 3.6542292 1103.3555
+183816.0639103253 3.6542292 1103.3949
+183817.0639104296 3.6542292 1103.3752
+183818.0639105339 3.6542685 1103.316
+183819.0639106382 3.6541898 1103.3357
+183820.0639107425 3.6541898 1103.3357
+183821.0639108468 3.6542292 1103.2963
+183822.0639109511 3.6542292 1103.3357
+183823.0639110554 3.6541898 1103.3752
+183824.0639111598 3.6543078 1103.2963
+183825.0639112641 3.6542685 1103.316
+183826.0639113684 3.6542685 1103.3555
+183827.0639114727 3.6542685 1103.3949
+183828.063911577 3.6542685 1103.3357
+183829.0639116813 3.6543472 1103.4147
+183830.0639117856 3.6543472 1103.3555
+183831.0639118899 3.6543865 1103.3752
+183832.0639119942 3.6542685 1103.2765
+183833.0639120985 3.6543078 1103.3752
+183834.0639122028 3.6543472 1103.3555
+183835.0639123071 3.6542685 1103.3357
+183836.0639124115 3.6543865 1103.3357
+183837.0639125158 3.6543472 1103.3752
+183838.0639126201 3.6544261 1103.3357
+183839.0639127244 3.6543865 1103.3555
+183840.0639128287 3.6544261 1103.3555
+183841.063912933 3.6543865 1103.3357
+183842.0639130373 3.6543865 1103.3752
+183843.0639131416 3.6543865 1103.3357
+183844.0639132459 3.6543865 1103.316
+183845.0639133502 3.6544654 1103.3555
+183846.0639134545 3.6544261 1103.3949
+183847.0639135588 3.6545048 1103.2963
+183848.0639136632 3.6544261 1103.3357
+183849.0639137675 3.6544261 1103.3555
+183850.0639138718 3.6545048 1103.1975
+183851.0639139761 3.6543472 1103.2567
+183852.0639140804 3.6544261 1103.4147
+183853.0639141847 3.6544654 1103.3949
+183854.063914289 3.6544261 1103.316
+183855.0639143933 3.6544654 1103.2963
+183856.0639144976 3.6544654 1103.3357
+183857.0639146019 3.6545441 1103.316
+183858.0639147062 3.6543865 1103.3357
+183859.0639148105 3.6544261 1103.3357
+183860.0639149148 3.6544654 1103.3752
+183861.0639150192 3.6545835 1103.2567
+183862.0639151235 3.6544654 1103.3555
+183863.0639152278 3.6545048 1103.2567
+183864.0639153321 3.6545048 1103.3949
+183865.0639154364 3.6547015 1103.2963
+183866.0639155407 3.6545835 1103.3949
+183867.063915645 3.6545835 1103.3555
+183868.0639157493 3.6546228 1103.3357
+183869.0639158536 3.6546621 1103.3555
+183870.0639159579 3.6545835 1103.3555
+183871.0639160622 3.6546228 1103.316
+183872.0639161665 3.6546228 1103.3949
+183873.0639162709 3.6546228 1103.4542
+183874.0639163752 3.6545835 1103.2963
+183875.0639164795 3.6545835 1103.2963
+183876.0639165838 3.6546228 1103.3357
+183877.0639166881 3.6547015 1103.2963
+183878.0639167924 3.654741 1103.2765
+183879.0639168967 3.6546621 1103.3752
+183880.063917001 3.6546228 1103.316
+183881.0639171053 3.6546228 1103.2172
+183882.0639172096 3.6545835 1103.3357
+183883.0639173139 3.6547015 1103.3752
+183884.0639174182 3.6546621 1103.3357
+183885.0639175226 3.6547015 1103.3752
+183886.0639176269 3.6547015 1103.3752
+183887.0639177312 3.6546621 1103.2567
+183888.0639178355 3.6546621 1103.3555
+183889.0639179398 3.6546621 1103.3752
+183890.0639180441 3.654741 1103.2963
+183891.0639181484 3.6547804 1103.2963
+183892.0639182527 3.6548197 1103.3357
+183893.063918357 3.6547015 1103.2963
+183894.0639184613 3.6548197 1103.3752
+183895.0639185656 3.6548197 1103.3949
+183896.0639186699 3.6547804 1103.2765
+183897.0639187742 3.6547804 1103.3752
+183898.0639188786 3.6547015 1103.3357
+183899.0639189829 3.6548197 1103.3555
+183900.0639190872 3.6547804 1103.3752
+183901.0639191915 3.6548197 1103.2567
+183902.0639192958 3.6547804 1103.3555
+183903.0639194001 3.654741 1103.316
+183904.0639195044 3.6548591 1103.316
+183905.0639196087 3.6548591 1103.4147
+183906.063919713 3.6548984 1103.3752
+183907.0639198173 3.6548591 1103.3949
+183908.0639199216 3.6547804 1103.3357
+183909.0639200259 3.6548197 1103.3357
+183910.0639201303 3.6548197 1103.3357
+183911.0639202346 3.6548591 1103.3357
+183912.0639203389 3.6548197 1103.3555
+183913.0639204432 3.6548197 1103.4344
+183914.0639205475 3.6548197 1103.3949
+183915.0639206518 3.6548197 1103.3357
+183916.0639207561 3.6548591 1103.4542
+183917.0639208604 3.6548984 1103.3357
+183918.0639209647 3.6548984 1103.2765
+183919.063921069 3.6549771 1103.3752
+183920.0639211733 3.6548197 1103.3752
+183921.0639212776 3.6550167 1103.3555
+183922.063921382 3.6548591 1103.3949
+183923.0639214863 3.6548984 1103.3357
+183924.0639215906 3.6549377 1103.3555
+183925.0639216949 3.6548591 1103.4147
+183926.0639217992 3.6550167 1103.4147
+183927.0639219035 3.6549377 1103.4344
+183928.0639220078 3.6549771 1103.3357
+183929.0639221121 3.6549377 1103.3752
+183930.0639222164 3.6549377 1103.3357
+183931.0639223207 3.6550167 1103.3752
+183932.063922425 3.6549771 1103.3752
+183933.0639225293 3.6549771 1103.3752
+183934.0639226337 3.6549771 1103.3949
+183935.063922738 3.655056 1103.316
+183936.0639228423 3.6550167 1103.4147
+183937.0639229466 3.6550167 1103.4344
+183938.0639230509 3.655056 1103.4542
+183939.0639231552 3.655056 1103.3357
+183940.0639232595 3.655056 1103.3357
+183941.0639233638 3.6550167 1103.4147
+183942.0639234681 3.655056 1103.3752
+183943.0639235724 3.6550167 1103.2963
+183944.0639236767 3.6550167 1103.3555
+183945.063923781 3.6551347 1103.3357
+183946.0639238853 3.6550167 1103.4344
+183947.0639239897 3.655174 1103.3555
+183948.063924094 3.6551347 1103.3949
+183949.0639241983 3.6551347 1103.3357
+183950.0639243026 3.6551347 1103.316
+183951.0639244069 3.655056 1103.316
+183952.0639245112 3.655056 1103.3357
+183953.0639246155 3.6552527 1103.4938
+183954.0639247198 3.6552527 1103.3357
+183955.0639248241 3.655174 1103.2963
+183956.0639249284 3.6550953 1103.316
+183957.0639250327 3.655056 1103.3555
+183958.063925137 3.655174 1103.3949
+183959.0639252414 3.655174 1103.2963
+183960.0639253457 3.6552134 1103.3752
+183961.06392545 3.6552134 1103.3555
+183962.0639255543 3.655174 1103.2172
+183963.0639256586 3.6552527 1103.3752
+183964.0639257629 3.655174 1103.4147
+183965.0639258672 3.6552527 1103.3555
+183966.0639259715 3.6552527 1103.2963
+183967.0639260758 3.6552134 1103.2963
+183968.0639261801 3.655174 1103.316
+183969.0639262844 3.6552527 1103.3357
+183970.0639263887 3.6550953 1103.3752
+183971.0639264931 3.655292 1103.3357
+183972.0639265974 3.6552527 1103.2963
+183973.0639267017 3.6552527 1103.3357
+183974.063926806 3.655292 1103.316
+183975.0639269103 3.6552134 1103.316
+183976.0639270146 3.6553316 1103.2765
+183977.0639271189 3.6552527 1103.316
+183978.0639272232 3.6553316 1103.3752
+183979.0639273275 3.6552527 1103.316
+183980.0639274318 3.655292 1103.3357
+183981.0639275361 3.655292 1103.316
+183982.0639276404 3.6553316 1103.3357
+183983.0639277447 3.655292 1103.3555
+183984.0639278491 3.655292 1103.2765
+183985.0639279534 3.6554103 1103.2172
+183986.0639280577 3.6553316 1103.3752
+183987.063928162 3.655371 1103.3555
+183988.0639282663 3.655371 1103.1975
+183989.0639283706 3.655292 1103.4344
+183990.0639284749 3.655489 1103.316
+183991.0639285792 3.6553316 1103.2567
+183992.0639286835 3.655371 1103.316
+183993.0639287878 3.6554103 1103.316
+183994.0639288921 3.6554103 1103.3357
+183995.0639289964 3.6554496 1103.316
+183996.0639291008 3.6554496 1103.3357
+183997.0639292051 3.6554103 1103.316
+183998.0639293094 3.6554496 1103.316
+183999.0639294137 3.655371 1103.2765
+184000.063929518 3.6554496 1103.3752
+184001.0639296223 3.6554496 1103.3357
+184002.0639297266 3.6555283 1103.3752
+184003.0639298309 3.6554496 1103.4147
+184004.0639299352 3.6555283 1103.3752
+184005.0639300395 3.655489 1103.3752
+184006.0639301438 3.6554103 1103.3949
+184007.0639302481 3.6555283 1103.316
+184008.0639303525 3.6555283 1103.3752
+184009.0639304568 3.655489 1103.3357
+184010.0639305611 3.6556466 1103.3949
+184011.0639306654 3.6554496 1103.2963
+184012.0639307697 3.6554496 1103.2765
+184013.063930874 3.6556466 1103.2765
+184014.0639309783 3.6555676 1103.2567
+184015.0639310826 3.6555283 1103.2567
+184016.0639311869 3.6555676 1103.2963
+184017.0639312912 3.655607 1103.316
+184018.0639313955 3.655489 1103.2963
+184019.0639314998 3.6556466 1103.3555
+184020.0639316041 3.655607 1103.2963
+184021.0639317085 3.6555283 1103.3357
+184022.0639318128 3.655607 1103.3357
+184023.0639319171 3.6556466 1103.4147
+184024.0639320214 3.6555676 1103.3752
+184025.0639321257 3.655607 1103.3555
+184026.06393223 3.655607 1103.3949
+184027.0639323343 3.6556859 1103.3357
+184028.0639324386 3.655607 1103.3555
+184029.0639325429 3.6556466 1103.316
+184030.0639326472 3.6555283 1103.2963
+184031.0639327515 3.6557252 1103.4147
+184032.0639328558 3.6556466 1103.316
+184033.0639329602 3.6556859 1103.316
+184034.0639330645 3.6556859 1103.2963
+184035.0639331688 3.6557252 1103.3949
+184036.0639332731 3.6556466 1103.3752
+184037.0639333774 3.6556859 1103.3949
+184038.0639334817 3.6556859 1103.4344
+184039.063933586 3.6557252 1103.4147
+184040.0639336903 3.6557646 1103.3949
+184041.0639337946 3.6557252 1103.2963
+184042.0639338989 3.6556466 1103.3357
+184043.0639340032 3.6558039 1103.4147
+184044.0639341075 3.6558039 1103.3357
+184045.0639342119 3.6556466 1103.3357
+184046.0639343162 3.6558433 1103.2963
+184047.0639344205 3.6558039 1103.3357
+184048.0639345248 3.6557252 1103.2765
+184049.0639346291 3.6558433 1103.3949
+184050.0639347334 3.6557646 1103.4147
+184051.0639348377 3.6557646 1103.4542
+184052.063934942 3.6557646 1103.316
+184053.0639350463 3.6558039 1103.3555
+184054.0639351506 3.6557252 1103.3752
+184055.0639352549 3.6558433 1103.3555
+184056.0639353592 3.6558039 1103.4938
+184057.0639354636 3.6558433 1103.316
+184058.0639355679 3.6559219 1103.3555
+184059.0639356722 3.6558826 1103.3357
+184060.0639357765 3.6558433 1103.3555
+184061.0639358808 3.6559615 1103.316
+184062.0639359851 3.6559219 1103.3357
+184063.0639360894 3.6558039 1103.316
+184064.0639361937 3.6558826 1103.3357
+184065.063936298 3.6558826 1103.3949
+184066.0639364023 3.6558826 1103.4344
+184067.0639365066 3.6558433 1103.316
+184068.0639366109 3.6558433 1103.3752
+184069.0639367152 3.6558826 1103.4147
+184070.0639368196 3.6559219 1103.4147
+184071.0639369239 3.6559219 1103.3752
+184072.0639370282 3.6558433 1103.2765
+184073.0639371325 3.6560009 1103.316
+184074.0639372368 3.6558826 1103.316
+184075.0639373411 3.6559615 1103.316
+184076.0639374454 3.6559219 1103.3555
+184077.0639375497 3.6558826 1103.316
+184078.063937654 3.6559615 1103.3357
+184079.0639377583 3.6561189 1103.2765
+184080.0639378626 3.6560795 1103.3949
+184081.0639379669 3.6560009 1103.2567
+184082.0639380713 3.6560009 1103.2567
+184083.0639381756 3.6560795 1103.3357
+184084.0639382799 3.6560009 1103.3752
+184085.0639383842 3.6560009 1103.2567
+184086.0639384885 3.6560402 1103.4147
+184087.0639385928 3.6560402 1103.3357
+184088.0639386971 3.6560009 1103.2765
+184089.0639388014 3.6560402 1103.2765
+184090.0639389057 3.6559615 1103.4147
+184091.06393901 3.6560795 1103.3357
+184092.0639391143 3.6559615 1103.316
+184093.0639392186 3.6560402 1103.4344
+184094.063939323 3.6560009 1103.316
+184095.0639394273 3.6560402 1103.3555
+184096.0639395316 3.6560402 1103.316
+184097.0639396359 3.6560795 1103.2963
+184098.0639397402 3.6561582 1103.3357
+184099.0639398445 3.6560402 1103.2963
+184100.0639399488 3.6560795 1103.3555
+184101.0639400531 3.6561189 1103.3752
+184102.0639401574 3.6561975 1103.3357
+184103.0639402617 3.6561582 1103.3555
+184104.063940366 3.6561189 1103.2567
+184105.0639404703 3.6561582 1103.3555
+184106.0639405746 3.6561189 1103.2567
+184107.063940679 3.6561975 1103.3752
+184108.0639407833 3.6561189 1103.3949
+184109.0639408876 3.6561582 1103.2567
+184110.0639409919 3.6561582 1103.3555
+184111.0639410962 3.6562369 1103.3555
+184112.0639412005 3.6561975 1103.3357
+184113.0639413048 3.6561975 1103.2567
+184114.0639414091 3.6561975 1103.3949
+184115.0639415134 3.6561975 1103.2963
+184116.0639416177 3.6562369 1103.316
+184117.063941722 3.6563158 1103.4344
+184118.0639418263 3.6561975 1103.3949
+184119.0639419307 3.6561582 1103.3357
+184120.063942035 3.6562369 1103.3555
+184121.0639421393 3.6562765 1103.316
+184122.0639422436 3.6561975 1103.2765
+184123.0639423479 3.6562369 1103.3752
+184124.0639424522 3.6562765 1103.2963
+184125.0639425565 3.6562369 1103.2963
+184126.0639426608 3.6563158 1103.2963
+184127.0639427651 3.6563551 1103.3357
+184128.0639428694 3.6563158 1103.3357
+184129.0639429737 3.6563158 1103.3949
+184130.063943078 3.6563945 1103.3357
+184131.0639431824 3.6563158 1103.3555
+184132.0639432867 3.6563158 1103.3752
+184133.063943391 3.6562765 1103.3752
+184134.0639434953 3.6563158 1103.3752
+184135.0639435996 3.6563158 1103.316
+184136.0639437039 3.6563158 1103.2963
+184137.0639438082 3.6562369 1103.316
+184138.0639439125 3.6564338 1103.2765
+184139.0639440168 3.6563158 1103.3949
+184140.0639441211 3.6563551 1103.3357
+184141.0639442254 3.6563945 1103.2765
+184142.0639443297 3.6563945 1103.2765
+184143.063944434 3.6563945 1103.316
+184144.0639445384 3.6564338 1103.316
+184145.0639446427 3.6563551 1103.2765
+184146.063944747 3.6564338 1103.4344
+184147.0639448513 3.6564338 1103.4344
+184148.0639449556 3.6563945 1103.2765
+184149.0639450599 3.6564338 1103.2963
+184150.0639451642 3.6564338 1103.2963
+184151.0639452685 3.6563945 1103.4147
+184152.0639453728 3.6563945 1103.316
+184153.0639454771 3.6564732 1103.3555
+184154.0639455814 3.6564732 1103.3357
+184155.0639456857 3.6563945 1103.3752
+184156.0639457901 3.6565125 1103.2963
+184157.0639458944 3.6564732 1103.3752
+184158.0639459987 3.6565125 1103.3752
+184159.063946103 3.6564732 1103.2765
+184160.0639462073 3.6565125 1103.3752
+184161.0639463116 3.6565125 1103.2963
+184162.0639464159 3.6565125 1103.4147
+184163.0639465202 3.6565914 1103.2765
+184164.0639466245 3.6565125 1103.4542
+184165.0639467288 3.6565518 1103.3357
+184166.0639468331 3.6565518 1103.3357
+184167.0639469374 3.6565518 1103.3949
+184168.0639470418 3.6565518 1103.3752
+184169.0639471461 3.6566701 1103.3949
+184170.0639472504 3.6565914 1103.2369
+184171.0639473547 3.6565518 1103.2963
+184172.063947459 3.6565914 1103.3752
+184173.0639475633 3.6565914 1103.3357
+184174.0639476676 3.6565518 1103.3555
+184175.0639477719 3.6566308 1103.4542
+184176.0639478762 3.6565125 1103.4147
+184177.0639479805 3.6565914 1103.3555
+184178.0639480848 3.6565914 1103.3555
+184179.0639481891 3.6566308 1103.3752
+184180.0639482934 3.6566308 1103.3949
+184181.0639483978 3.6566701 1103.3555
+184182.0639485021 3.6566701 1103.316
+184183.0639486064 3.6565518 1103.3752
+184184.0639487107 3.6566308 1103.3752
+184185.063948815 3.6566308 1103.2963
+184186.0639489193 3.6567488 1103.4344
+184187.0639490236 3.6567094 1103.4344
+184188.0639491279 3.6566308 1103.2963
+184189.0639492322 3.6567094 1103.4938
+184190.0639493365 3.6567488 1103.3949
+184191.0639494408 3.6566701 1103.3555
+184192.0639495451 3.6567094 1103.4147
+184193.0639496495 3.6567488 1103.3555
+184194.0639497538 3.6567881 1103.3357
+184195.0639498581 3.6567094 1103.3555
+184196.0639499624 3.6567488 1103.3357
+184197.0639500667 3.6568274 1103.3555
+184198.063950171 3.6567094 1103.3752
+184199.0639502753 3.6567094 1103.316
+184200.0639503796 3.6568274 1103.3555
+184201.0639504839 3.6568274 1103.2963
+184202.0639505882 3.6567488 1103.3555
+184203.0639506925 3.6567881 1103.4147
+184204.0639507968 3.6568274 1103.3752
+184205.0639509012 3.6568274 1103.4147
+184206.0639510055 3.6568274 1103.4344
+184207.0639511098 3.6567488 1103.3357
+184208.0639512141 3.6568274 1103.2963
+184209.0639513184 3.6567881 1103.3555
+184210.0639514227 3.6569064 1103.3357
+184211.063951527 3.6568274 1103.3357
+184212.0639516313 3.656867 1103.3555
+184213.0639517356 3.656867 1103.3949
+184214.0639518399 3.656867 1103.3357
+184215.0639519442 3.656867 1103.3555
+184216.0639520485 3.6569457 1103.2963
+184217.0639521529 3.656867 1103.3357
+184218.0639522572 3.656867 1103.3357
+184219.0639523615 3.656867 1103.3949
+184220.0639524658 3.6569064 1103.3752
+184221.0639525701 3.6569064 1103.3752
+184222.0639526744 3.6569457 1103.2369
+184223.0639527787 3.656985 1103.3555
+184224.063952883 3.6569064 1103.316
+184225.0639529873 3.6570244 1103.316
+184226.0639530916 3.6569064 1103.3555
+184227.0639531959 3.6569457 1103.316
+184228.0639533002 3.656985 1103.3949
+184229.0639534045 3.656985 1103.2963
+184230.0639535089 3.656985 1103.3752
+184231.0639536132 3.6569457 1103.3357
+184232.0639537175 3.6570244 1103.3752
+184233.0639538218 3.6570637 1103.3752
+184234.0639539261 3.6569457 1103.3357
+184235.0639540304 3.6570637 1103.2963
+184236.0639541347 3.656985 1103.2765
+184237.063954239 3.6571031 1103.3555
+184238.0639543433 3.6570244 1103.316
+184239.0639544476 3.6570637 1103.3752
+184240.0639545519 3.6569457 1103.3752
+184241.0639546562 3.656985 1103.3555
+184242.0639547606 3.656985 1103.3949
+184243.0639548649 3.6570637 1103.2963
+184244.0639549692 3.6569064 1103.2765
+184245.0639550735 3.6570637 1103.2567
+184246.0639551778 3.6571031 1103.3752
+184247.0639552821 3.657182 1103.3752
+184248.0639553864 3.6571031 1103.3752
+184249.0639554907 3.6571031 1103.2369
+184250.063955595 3.6570637 1103.4938
+184251.0639556993 3.6570637 1103.3752
+184252.0639558036 3.6571031 1103.3752
+184253.0639559079 3.6571031 1103.3357
+184254.0639560123 3.6571424 1103.4938
+184255.0639561166 3.6572213 1103.3357
+184256.0639562209 3.6571424 1103.3357
+184257.0639563252 3.657182 1103.3555
+184258.0639564295 3.657182 1103.3949
+184259.0639565338 3.6571424 1103.316
+184260.0639566381 3.657182 1103.3555
+184261.0639567424 3.6572213 1103.3357
+184262.0639568467 3.6572607 1103.3555
+184263.063956951 3.657182 1103.3357
+184264.0639570553 3.6572213 1103.2963
+184265.0639571596 3.6571031 1103.3752
+184266.0639572639 3.6572213 1103.3949
+184267.0639573683 3.6572213 1103.3555
+184268.0639574726 3.6573 1103.3357
+184269.0639575769 3.6572213 1103.4147
+184270.0639576812 3.6572607 1103.3752
+184271.0639577855 3.657182 1103.3949
+184272.0639578898 3.6573393 1103.3752
+184273.0639579941 3.6573 1103.3555
+184274.0639580984 3.6571424 1103.3555
+184275.0639582027 3.6572607 1103.3752
+184276.063958307 3.6573787 1103.316
+184277.0639584113 3.6573 1103.3555
+184278.0639585156 3.6572213 1103.3555
+184279.06395862 3.6573393 1103.3752
+184280.0639587243 3.6573 1103.4147
+184281.0639588286 3.6572607 1103.3357
+184282.0639589329 3.6573393 1103.2765
+184283.0639590372 3.6573393 1103.2963
+184284.0639591415 3.6573787 1103.3752
+184285.0639592458 3.6574574 1103.3949
+184286.0639593501 3.657418 1103.3752
+184287.0639594544 3.6573393 1103.2963
+184288.0639595587 3.6573393 1103.474
+184289.063959663 3.6573 1103.3949
+184290.0639597673 3.6575363 1103.316
+184291.0639598717 3.657418 1103.3752
+184292.063959976 3.6573787 1103.3555
+184293.0639600803 3.6573 1103.3555
+184294.0639601846 3.6573393 1103.5134
+184295.0639602889 3.6573787 1103.2963
+184296.0639603932 3.6573787 1103.3949
+184297.0639604975 3.6574969 1103.3357
+184298.0639606018 3.6575363 1103.2963
+184299.0639607061 3.6573787 1103.3555
+184300.0639608104 3.6574574 1103.3949
+184301.0639609147 3.6574574 1103.316
+184302.063961019 3.657418 1103.3357
+184303.0639611233 3.6573787 1103.2963
+184304.0639612277 3.657418 1103.3752
+184305.063961332 3.657418 1103.4147
+184306.0639614363 3.6575756 1103.316
+184307.0639615406 3.657418 1103.316
+184308.0639616449 3.6575363 1103.3555
+184309.0639617492 3.6574969 1103.2963
+184310.0639618535 3.6575363 1103.316
+184311.0639619578 3.6576543 1103.4344
+184312.0639620621 3.6575363 1103.3752
+184313.0639621664 3.6574969 1103.316
+184314.0639622707 3.6575363 1103.2963
+184315.063962375 3.6576149 1103.3752
+184316.0639624794 3.6575363 1103.4147
+184317.0639625837 3.6576149 1103.3752
+184318.063962688 3.6576543 1103.2765
+184319.0639627923 3.6575756 1103.316
+184320.0639628966 3.6576149 1103.4147
+184321.0639630009 3.6575756 1103.316
+184322.0639631052 3.6575363 1103.3752
+184323.0639632095 3.6576149 1103.3949
+184324.0639633138 3.6574969 1103.2963
+184325.0639634181 3.6575756 1103.4344
+184326.0639635224 3.6577723 1103.3357
+184327.0639636267 3.6576543 1103.2963
+184328.0639637311 3.6576543 1103.3752
+184329.0639638354 3.6576936 1103.2963
+184330.0639639397 3.6576936 1103.2172
+184331.063964044 3.6576543 1103.3949
+184332.0639641483 3.6576936 1103.3752
+184333.0639642526 3.6576936 1103.4147
+184334.0639643569 3.657733 1103.4147
+184335.0639644612 3.6575756 1103.3949
+184336.0639645655 3.657733 1103.316
+184337.0639646698 3.6576543 1103.4147
+184338.0639647741 3.657733 1103.2765
+184339.0639648784 3.657733 1103.3357
+184340.0639649828 3.6576936 1103.3555
+184341.0639650871 3.6576936 1103.3357
+184342.0639651914 3.6576936 1103.2765
+184343.0639652957 3.6576936 1103.316
+184344.0639654 3.6576936 1103.2963
+184345.0639655043 3.6578512 1103.4147
+184346.0639656086 3.6576936 1103.3949
+184347.0639657129 3.6578119 1103.2567
+184348.0639658172 3.6577723 1103.3357
+184349.0639659215 3.6577723 1103.3357
+184350.0639660258 3.657733 1103.2369
+184351.0639661301 3.6578906 1103.3555
+184352.0639662344 3.6578512 1103.2765
+184353.0639663388 3.6578119 1103.4542
+184354.0639664431 3.6578906 1103.3949
+184355.0639665474 3.6578512 1103.3949
+184356.0639666517 3.6578119 1103.3555
+184357.063966756 3.6577723 1103.2963
+184358.0639668603 3.6578119 1103.3555
+184359.0639669646 3.6577723 1103.2963
+184360.0639670689 3.6578906 1103.3357
+184361.0639671732 3.6579299 1103.3357
+184362.0639672775 3.6578906 1103.316
+184363.0639673818 3.6579299 1103.3752
+184364.0639674861 3.6579299 1103.3555
+184365.0639675905 3.6578906 1103.316
+184366.0639676948 3.6578512 1103.316
+184367.0639677991 3.6578512 1103.3357
+184368.0639679034 3.6578512 1103.3752
+184369.0639680077 3.6578906 1103.2963
+184370.063968112 3.6579299 1103.3555
+184371.0639682163 3.6579299 1103.3949
+184372.0639683206 3.6579299 1103.316
+184373.0639684249 3.6580086 1103.3949
+184374.0639685292 3.6579299 1103.2567
+184375.0639686335 3.6579692 1103.3555
+184376.0639687378 3.6580086 1103.3555
+184377.0639688422 3.6579692 1103.2765
+184378.0639689465 3.6579299 1103.3949
+184379.0639690508 3.6579692 1103.3752
+184380.0639691551 3.6579299 1103.4344
+184381.0639692594 3.6580086 1103.3357
+184382.0639693637 3.6579692 1103.4147
+184383.063969468 3.6580479 1103.3357
+184384.0639695723 3.6580479 1103.3949
+184385.0639696766 3.6581268 1103.3949
+184386.0639697809 3.6580086 1103.2963
+184387.0639698852 3.6580479 1103.3949
+184388.0639699895 3.6580873 1103.3752
+184389.0639700938 3.6580479 1103.3357
+184390.0639701982 3.6580873 1103.316
+184391.0639703025 3.6581662 1103.3752
+184392.0639704068 3.6581268 1103.316
+184393.0639705111 3.6580873 1103.2567
+184394.0639706154 3.6580479 1103.3949
+184395.0639707197 3.6579692 1103.3555
+184396.063970824 3.6581268 1103.3949
+184397.0639709283 3.6581268 1103.316
+184398.0639710326 3.6580873 1103.3752
+184399.0639711369 3.6581662 1103.4344
+184400.0639712412 3.6581268 1103.3752
+184401.0639713455 3.6580873 1103.316
+184402.0639714499 3.6581268 1103.2963
+184403.0639715542 3.6582448 1103.3555
+184404.0639716585 3.6581268 1103.474
+184405.0639717628 3.6581268 1103.3752
+184406.0639718671 3.6581662 1103.316
+184407.0639719714 3.6581662 1103.4542
+184408.0639720757 3.6582448 1103.3555
+184409.06397218 3.6582448 1103.316
+184410.0639722843 3.6582055 1103.3357
+184411.0639723886 3.6582448 1103.3752
+184412.0639724929 3.6581662 1103.3357
+184413.0639725972 3.6581662 1103.3949
+184414.0639727016 3.6583629 1103.3752
+184415.0639728059 3.6581662 1103.3357
+184416.0639729102 3.6582448 1103.4147
+184417.0639730145 3.6583235 1103.3555
+184418.0639731188 3.6583235 1103.3555
+184419.0639732231 3.6582842 1103.3752
+184420.0639733274 3.6581662 1103.2963
+184421.0639734317 3.6582842 1103.2567
+184422.063973536 3.6583235 1103.3555
+184423.0639736403 3.6581662 1103.4147
+184424.0639737446 3.6583235 1103.3752
+184425.0639738489 3.6582842 1103.3555
+184426.0639739532 3.6583235 1103.3555
+184427.0639740576 3.6584022 1103.316
+184428.0639741619 3.6584418 1103.3949
+184429.0639742662 3.6583629 1103.3752
+184430.0639743705 3.6583235 1103.2963
+184431.0639744748 3.6584022 1103.4344
+184432.0639745791 3.6583629 1103.2765
+184433.0639746834 3.6583629 1103.4147
+184434.0639747877 3.6583235 1103.316
+184435.063974892 3.6585205 1103.3752
+184436.0639749963 3.6583235 1103.3555
+184437.0639751006 3.6584811 1103.3357
+184438.0639752049 3.6584418 1103.3555
+184439.0639753093 3.6584418 1103.3555
+184440.0639754136 3.6584418 1103.3555
+184441.0639755179 3.6584022 1103.316
+184442.0639756222 3.6584418 1103.3555
+184443.0639757265 3.6584022 1103.4147
+184444.0639758308 3.6584811 1103.316
+184445.0639759351 3.6584811 1103.316
+184446.0639760394 3.6584811 1103.3949
+184447.0639761437 3.6584811 1103.3555
+184448.063976248 3.6584418 1103.316
+184449.0639763523 3.6586778 1103.316
+184450.0639764566 3.6585205 1103.3752
+184451.063976561 3.6585598 1103.3752
+184452.0639766653 3.6585205 1103.3752
+184453.0639767696 3.6584811 1103.3949
+184454.0639768739 3.6585205 1103.3555
+184455.0639769782 3.6585598 1103.316
+184456.0639770825 3.6585205 1103.2369
+184457.0639771868 3.6585991 1103.3555
+184458.0639772911 3.6585205 1103.4147
+184459.0639773954 3.6585205 1103.2963
+184460.0639774997 3.6584811 1103.2963
+184461.063977604 3.6586778 1103.3949
+184462.0639777083 3.6585598 1103.3752
+184463.0639778127 3.6585991 1103.2765
+184464.063977917 3.6585205 1103.3357
+184465.0639780213 3.6585991 1103.4344
+184466.0639781256 3.6585598 1103.3357
+184467.0639782299 3.6585598 1103.2963
+184468.0639783342 3.6586385 1103.3949
+184469.0639784385 3.6585991 1103.3555
+184470.0639785428 3.6585598 1103.3357
+184471.0639786471 3.6585991 1103.3555
+184472.0639787514 3.6586385 1103.316
+184473.0639788557 3.6586385 1103.4344
+184474.06397896 3.6587174 1103.2567
+184475.0639790643 3.6586778 1103.3752
+184476.0639791687 3.6586385 1103.3752
+184477.063979273 3.6586778 1103.2369
+184478.0639793773 3.6587174 1103.4147
+184479.0639794816 3.6585991 1103.316
+184480.0639795859 3.6586778 1103.3949
+184481.0639796902 3.6586778 1103.4147
+184482.0639797945 3.6586778 1103.2369
+184483.0639798988 3.6586385 1103.4147
+184484.0639800031 3.6587174 1103.3555
+184485.0639801074 3.6586778 1103.316
+184486.0639802117 3.6587961 1103.1975
+184487.063980316 3.6587174 1103.4344
+184488.0639804204 3.6586778 1103.4147
+184489.0639805247 3.6587567 1103.3357
+184490.063980629 3.6587174 1103.3752
+184491.0639807333 3.6587567 1103.3357
+184492.0639808376 3.6587961 1103.3752
+184493.0639809419 3.6588748 1103.316
+184494.0639810462 3.6587567 1103.4147
+184495.0639811505 3.6587961 1103.316
+184496.0639812548 3.6587567 1103.2765
+184497.0639813591 3.6588354 1103.2963
+184498.0639814634 3.6587961 1103.3357
+184499.0639815677 3.6588748 1103.3949
+184500.0639816721 3.6587174 1103.3752
+184501.0639817764 3.6588748 1103.3949
+184502.0639818807 3.6589141 1103.3357
+184503.063981985 3.6587961 1103.3357
+184504.0639820893 3.6587961 1103.3752
+184505.0639821936 3.6588748 1103.3949
+184506.0639822979 3.6588354 1103.4147
+184507.0639824022 3.6589141 1103.4344
+184508.0639825065 3.6589928 1103.3949
+184509.0639826108 3.6588748 1103.316
+184510.0639827151 3.6588748 1103.4542
+184511.0639828194 3.6588354 1103.3357
+184512.0639829237 3.6589534 1103.4147
+184513.0639830281 3.6589534 1103.4147
+184514.0639831324 3.6589928 1103.3357
+184515.0639832367 3.6589141 1103.3555
+184516.063983341 3.6589928 1103.3752
+184517.0639834453 3.6589534 1103.4542
+184518.0639835496 3.6589534 1103.3357
+184519.0639836539 3.6589928 1103.3555
+184520.0639837582 3.6590323 1103.3752
+184521.0639838625 3.6589534 1103.3949
+184522.0639839668 3.6590323 1103.316
+184523.0639840711 3.6590717 1103.4147
+184524.0639841754 3.6590717 1103.2963
+184525.0639842798 3.6590323 1103.2963
+184526.0639843841 3.6589141 1103.316
+184527.0639844884 3.6589534 1103.3555
+184528.0639845927 3.6590717 1103.3357
+184529.063984697 3.6590717 1103.3949
+184530.0639848013 3.659111 1103.316
+184531.0639849056 3.6589534 1103.3357
+184532.0639850099 3.6590323 1103.1975
+184533.0639851142 3.659111 1103.2963
+184534.0639852185 3.6590323 1103.3752
+184535.0639853228 3.6590717 1103.3949
+184536.0639854271 3.659111 1103.3949
+184537.0639855315 3.6590717 1103.3555
+184538.0639856358 3.6591504 1103.3555
+184539.0639857401 3.6591897 1103.3555
+184540.0639858444 3.659111 1103.3752
+184541.0639859487 3.6591897 1103.3949
+184542.063986053 3.659229 1103.2963
+184543.0639861573 3.659229 1103.2567
+184544.0639862616 3.659111 1103.3752
+184545.0639863659 3.6591897 1103.3752
+184546.0639864702 3.659111 1103.3357
+184547.0639865745 3.659111 1103.3555
+184548.0639866788 3.6590717 1103.4147
+184549.0639867831 3.659229 1103.2963
+184550.0639868875 3.659111 1103.3555
+184551.0639869918 3.6591504 1103.4147
+184552.0639870961 3.6591897 1103.3357
+184553.0639872004 3.6591897 1103.3357
+184554.0639873047 3.6591897 1103.316
+184555.063987409 3.6591504 1103.3949
+184556.0639875133 3.659229 1103.3949
+184557.0639876176 3.6592684 1103.3357
+184558.0639877219 3.6591897 1103.3949
+184559.0639878262 3.659229 1103.4147
+184560.0639879305 3.6591504 1103.3357
+184561.0639880348 3.6591897 1103.3555
+184562.0639881392 3.6593077 1103.2567
+184563.0639882435 3.659229 1103.3555
+184564.0639883478 3.6591504 1103.3752
+184565.0639884521 3.6592684 1103.316
+184566.0639885564 3.6593866 1103.2765
+184567.0639886607 3.6592684 1103.3949
+184568.063988765 3.6593473 1103.3752
+184569.0639888693 3.6593077 1103.3357
+184570.0639889736 3.6591897 1103.3752
+184571.0639890779 3.6591897 1103.3357
+184572.0639891822 3.6593077 1103.3357
+184573.0639892865 3.6593866 1103.3752
+184574.0639893909 3.6593077 1103.3949
+184575.0639894952 3.6592684 1103.4147
+184576.0639895995 3.6593473 1103.3752
+184577.0639897038 3.6593866 1103.2567
+184578.0639898081 3.6593077 1103.3555
+184579.0639899124 3.6593473 1103.3752
+184580.0639900167 3.6593866 1103.316
+184581.063990121 3.6593866 1103.2567
+184582.0639902253 3.6593866 1103.3555
+184583.0639903296 3.6593473 1103.3949
+184584.0639904339 3.6593077 1103.316
+184585.0639905382 3.6594653 1103.3752
+184586.0639906425 3.659426 1103.2567
+184587.0639907469 3.6594653 1103.2567
+184588.0639908512 3.6593866 1103.316
+184589.0639909555 3.6595047 1103.2963
+184590.0639910598 3.6594653 1103.4542
+184591.0639911641 3.6593866 1103.3357
+184592.0639912684 3.659426 1103.3357
+184593.0639913727 3.6594653 1103.3555
+184594.063991477 3.6595833 1103.3555
+184595.0639915813 3.659544 1103.4344
+184596.0639916856 3.6594653 1103.3949
+184597.0639917899 3.659426 1103.3949
+184598.0639918942 3.6594653 1103.3357
+184599.0639919986 3.6594653 1103.4147
+184600.0639921029 3.6594653 1103.3752
+184601.0639922072 3.659544 1103.3357
+184602.0639923115 3.6595833 1103.3555
+184603.0639924158 3.6595833 1103.3752
+184604.0639925201 3.659544 1103.316
+184605.0639926244 3.659544 1103.3555
+184606.0639927287 3.6595047 1103.3949
+184607.063992833 3.6595833 1103.3752
+184608.0639929373 3.6595833 1103.2963
+184609.0639930416 3.6595833 1103.3949
+184610.0639931459 3.6594653 1103.316
+184611.0639932503 3.6597409 1103.3555
+184612.0639933546 3.6596227 1103.3752
+184613.0639934589 3.6595833 1103.2765
+184614.0639935632 3.6595833 1103.3752
+184615.0639936675 3.6596227 1103.3752
+184616.0639937718 3.6596622 1103.3555
+184617.0639938761 3.6596622 1103.3752
+184618.0639939804 3.6596622 1103.3949
+184619.0639940847 3.6596227 1103.3357
+184620.063994189 3.6596227 1103.316
+184621.0639942933 3.6597016 1103.4344
+184622.0639943976 3.6597016 1103.2567
+184623.063994502 3.659544 1103.3357
+184624.0639946063 3.6597409 1103.3555
+184625.0639947106 3.6597016 1103.2963
+184626.0639948149 3.6597409 1103.3555
+184627.0639949192 3.6596622 1103.3555
+184628.0639950235 3.6596622 1103.4147
+184629.0639951278 3.6596622 1103.4147
+184630.0639952321 3.6597016 1103.3357
+184631.0639953364 3.6598196 1103.4147
+184632.0639954407 3.6597016 1103.3752
+184633.063995545 3.6597016 1103.3555
+184634.0639956493 3.6596622 1103.3752
+184635.0639957536 3.6597803 1103.3357
+184636.063995858 3.6597409 1103.3752
+184637.0639959623 3.6597803 1103.3555
+184638.0639960666 3.6597016 1103.3555
+184639.0639961709 3.6598196 1103.3555
+184640.0639962752 3.6598589 1103.4542
+184641.0639963795 3.6598196 1103.316
+184642.0639964838 3.6598196 1103.3357
+184643.0639965881 3.6597409 1103.3555
+184644.0639966924 3.6598196 1103.2765
+184645.0639967967 3.6598983 1103.3357
+184646.063996901 3.6598196 1103.2765
+184647.0639970053 3.6598196 1103.2963
+184648.0639971097 3.6598196 1103.3357
+184649.063997214 3.6598196 1103.3357
+184650.0639973183 3.6598196 1103.3949
+184651.0639974226 3.6598983 1103.4147
+184652.0639975269 3.6597803 1103.4542
+184653.0639976312 3.6598589 1103.3357
+184654.0639977355 3.6598983 1103.3555
+184655.0639978398 3.6599772 1103.4542
+184656.0639979441 3.6599772 1103.4344
+184657.0639980484 3.6599376 1103.3555
+184658.0639981527 3.6598983 1103.3555
+184659.063998257 3.6598983 1103.3555
+184660.0639983614 3.6599772 1103.4344
+184661.0639984657 3.6598983 1103.3949
+184662.06399857 3.6599376 1103.2963
+184663.0639986743 3.6599772 1103.3752
+184664.0639987786 3.6599772 1103.3357
+184665.0639988829 3.6598589 1103.3357
+184666.0639989872 3.6598589 1103.2567
+184667.0639990915 3.6599376 1103.3555
+184668.0639991958 3.6599772 1103.3357
+184669.0639993001 3.6599772 1103.2963
+184670.0639994044 3.6600165 1103.3555
+184671.0639995087 3.6600952 1103.3357
+184672.063999613 3.6600559 1103.316
+184673.0639997174 3.6598983 1103.3555
+184674.0639998217 3.6600165 1103.2963
+184675.063999926 3.6599376 1103.4147
+184676.0640000303 3.6601739 1103.4344
+184677.0640001346 3.6600952 1103.3555
+184678.0640002389 3.6600559 1103.3949
+184679.0640003432 3.6601346 1103.3555
+184680.0640004475 3.6601346 1103.2765
+184681.0640005518 3.6601346 1103.4344
+184682.0640006561 3.6600559 1103.3949
+184683.0640007604 3.6600952 1103.3555
+184684.0640008647 3.6600952 1103.2963
+184685.0640009691 3.6600559 1103.3949
+184686.0640010734 3.6600165 1103.3357
+184687.0640011777 3.6600559 1103.3357
+184688.064001282 3.6600952 1103.4542
+184689.0640013863 3.6601346 1103.3949
+184690.0640014906 3.6601739 1103.3555
+184691.0640015949 3.6601346 1103.2765
+184692.0640016992 3.6601739 1103.3752
+184693.0640018035 3.6601739 1103.3555
+184694.0640019078 3.6602132 1103.3949
+184695.0640020121 3.6601739 1103.3752
+184696.0640021164 3.6602132 1103.4147
+184697.0640022208 3.6601346 1103.3949
+184698.0640023251 3.6600559 1103.3555
+184699.0640024294 3.6600952 1103.3357
+184700.0640025337 3.6602526 1103.3555
+184701.064002638 3.6602526 1103.316
+184702.0640027423 3.6601739 1103.3555
+184703.0640028466 3.6602132 1103.316
+184704.0640029509 3.6601739 1103.3752
+184705.0640030552 3.6602526 1103.3752
+184706.0640031595 3.6602921 1103.3949
+184707.0640032638 3.6602132 1103.3752
+184708.0640033681 3.6601739 1103.316
+184709.0640034724 3.6601739 1103.3949
+184710.0640035768 3.6602132 1103.316
+184711.0640036811 3.6602132 1103.3555
+184712.0640037854 3.6602526 1103.3752
+184713.0640038897 3.6602921 1103.3752
+184714.064003994 3.6602526 1103.4147
+184715.0640040983 3.6602921 1103.4147
+184716.0640042026 3.6602921 1103.3752
+184717.0640043069 3.6602921 1103.3555
+184718.0640044112 3.6601739 1103.3949
+184719.0640045155 3.6603708 1103.4344
+184720.0640046198 3.6602526 1103.3752
+184721.0640047241 3.6603708 1103.2963
+184722.0640048285 3.6602921 1103.316
+184723.0640049328 3.6604495 1103.3752
+184724.0640050371 3.6603315 1103.2963
+184725.0640051414 3.6602526 1103.3555
+184726.0640052457 3.6603315 1103.3752
+184727.06400535 3.6604102 1103.3555
+184728.0640054543 3.6604102 1103.316
+184729.0640055586 3.6604495 1103.3357
+184730.0640056629 3.6603708 1103.3752
+184731.0640057672 3.6604102 1103.3555
+184732.0640058715 3.6604102 1103.4147
+184733.0640059758 3.6604888 1103.2963
+184734.0640060802 3.6604495 1103.3357
+184735.0640061845 3.6604102 1103.3949
+184736.0640062888 3.6605282 1103.2567
+184737.0640063931 3.6605282 1103.4147
+184738.0640064974 3.6603708 1103.3357
+184739.0640066017 3.6604102 1103.2765
+184740.064006706 3.6605678 1103.3949
+184741.0640068103 3.6604495 1103.2765
+184742.0640069146 3.6604888 1103.3555
+184743.0640070189 3.6604495 1103.316
+184744.0640071232 3.6604102 1103.3555
+184745.0640072275 3.6604888 1103.3752
+184746.0640073319 3.6604495 1103.4938
+184747.0640074362 3.6603708 1103.3555
+184748.0640075405 3.6605282 1103.3752
+184749.0640076448 3.6605282 1103.2765
+184750.0640077491 3.6604888 1103.316
+184751.0640078534 3.6604495 1103.3752
+184752.0640079577 3.6604888 1103.3752
+184753.064008062 3.6604888 1103.3357
+184754.0640081663 3.6606071 1103.4147
+184755.0640082706 3.6605678 1103.316
+184756.0640083749 3.6605282 1103.2963
+184757.0640084792 3.6605678 1103.3555
+184758.0640085835 3.6606464 1103.2963
+184759.0640086879 3.6606464 1103.2963
+184760.0640087922 3.6606071 1103.3555
+184761.0640088965 3.6606071 1103.3555
+184762.0640090008 3.6605282 1103.3752
+184763.0640091051 3.6605678 1103.3357
+184764.0640092094 3.6606071 1103.4147
+184765.0640093137 3.6606071 1103.3752
+184766.064009418 3.6605678 1103.3752
+184767.0640095223 3.6606464 1103.3357
+184768.0640096266 3.6605282 1103.2567
+184769.0640097309 3.6605678 1103.3357
+184770.0640098352 3.6605678 1103.3949
+184771.0640099396 3.6606464 1103.2567
+184772.0640100439 3.6606464 1103.3357
+184773.0640101482 3.6606464 1103.316
+184774.0640102525 3.6607645 1103.3949
+184775.0640103568 3.6607251 1103.3357
+184776.0640104611 3.6606858 1103.3949
+184777.0640105654 3.6607645 1103.2369
+184778.0640106697 3.6607251 1103.2963
+184779.064010774 3.6606858 1103.3555
+184780.0640108783 3.6607645 1103.3555
+184781.0640109826 3.6606464 1103.3949
+184782.0640110869 3.6608038 1103.3357
+184783.0640111913 3.6608431 1103.3555
+184784.0640112956 3.6606858 1103.4344
+184785.0640113999 3.6607645 1103.3949
+184786.0640115042 3.6608038 1103.3555
+184787.0640116085 3.6607251 1103.3949
+184788.0640117128 3.6608431 1103.4344
+184789.0640118171 3.6607645 1103.316
+184790.0640119214 3.6607251 1103.3949
+184791.0640120257 3.6607251 1103.3752
+184792.06401213 3.6608038 1103.3357
+184793.0640122343 3.6608038 1103.3555
+184794.0640123386 3.6607645 1103.2963
+184795.0640124429 3.6606858 1103.2567
+184796.0640125473 3.6607251 1103.2963
+184797.0640126516 3.6608038 1103.3949
+184798.0640127559 3.6608431 1103.316
+184799.0640128602 3.6607645 1103.3555
+184800.0640129645 3.6608431 1103.3949
+184801.0640130688 3.6608431 1103.3357
+184802.0640131731 3.6608038 1103.4147
+184803.0640132774 3.6608827 1103.3949
+184804.0640133817 3.6608827 1103.3357
+184805.064013486 3.6608431 1103.3752
+184806.0640135903 3.6608038 1103.4147
+184807.0640136946 3.6608827 1103.3357
+184808.064013799 3.6608431 1103.2963
+184809.0640139033 3.6609221 1103.316
+184810.0640140076 3.6608431 1103.4147
+184811.0640141119 3.6608827 1103.3357
+184812.0640142162 3.6609614 1103.3752
+184813.0640143205 3.6609614 1103.3555
+184814.0640144248 3.6609221 1103.4344
+184815.0640145291 3.6608827 1103.2963
+184816.0640146334 3.6610401 1103.3949
+184817.0640147377 3.6610007 1103.316
+184818.064014842 3.6609221 1103.3752
+184819.0640149463 3.6610007 1103.3555
+184820.0640150507 3.6610794 1103.3752
+184821.064015155 3.6609614 1103.3949
+184822.0640152593 3.6609614 1103.3752
+184823.0640153636 3.6610401 1103.4147
+184824.0640154679 3.6609614 1103.1975
+184825.0640155722 3.6610401 1103.4147
+184826.0640156765 3.6610401 1103.3949
+184827.0640157808 3.6609614 1103.2963
+184828.0640158851 3.6610401 1103.316
+184829.0640159894 3.6610401 1103.3752
+184830.0640160937 3.6610794 1103.3357
+184831.064016198 3.6611977 1103.2963
+184832.0640163023 3.6610794 1103.3357
+184833.0640164067 3.6609614 1103.4147
+184834.064016511 3.6610794 1103.3357
+184835.0640166153 3.6610007 1103.4147
+184836.0640167196 3.6610401 1103.3949
+184837.0640168239 3.6610794 1103.2765
+184838.0640169282 3.6610794 1103.4147
+184839.0640170325 3.6611581 1103.316
+184840.0640171368 3.6610794 1103.2963
+184841.0640172411 3.6611977 1103.3357
+184842.0640173454 3.6611581 1103.3752
+184843.0640174497 3.6611977 1103.3949
+184844.064017554 3.6610794 1103.3555
+184845.0640176584 3.6611187 1103.3949
+184846.0640177627 3.6611977 1103.3555
+184847.064017867 3.6611581 1103.3357
+184848.0640179713 3.6611581 1103.3357
+184849.0640180756 3.6611977 1103.3555
+184850.0640181799 3.661237 1103.3555
+184851.0640182842 3.6611581 1103.3752
+184852.0640183885 3.661237 1103.316
+184853.0640184928 3.6611977 1103.4344
+184854.0640185971 3.6611977 1103.3555
+184855.0640187014 3.6612763 1103.3949
+184856.0640188057 3.6611581 1103.3949
+184857.0640189101 3.6611187 1103.316
+184858.0640190144 3.6612763 1103.3752
+184859.0640191187 3.661355 1103.3555
+184860.064019223 3.661237 1103.4147
+184861.0640193273 3.661237 1103.2567
+184862.0640194316 3.6611581 1103.4147
+184863.0640195359 3.6613157 1103.3357
+184864.0640196402 3.661237 1103.3357
+184865.0640197445 3.6612763 1103.316
+184866.0640198488 3.6612763 1103.3555
+184867.0640199531 3.6612763 1103.3357
+184868.0640200574 3.661237 1103.316
+184869.0640201618 3.6613157 1103.4147
+184870.0640202661 3.661355 1103.3357
+184871.0640203704 3.661355 1103.2765
+184872.0640204747 3.6612763 1103.4344
+184873.064020579 3.6613944 1103.3555
+184874.0640206833 3.6613157 1103.3752
+184875.0640207876 3.6613157 1103.2567
+184876.0640208919 3.661355 1103.4542
+184877.0640209962 3.6613157 1103.3357
+184878.0640211005 3.6613944 1103.3555
+184879.0640212048 3.6613157 1103.3949
+184880.0640213091 3.6613944 1103.3555
+184881.0640214134 3.6613944 1103.3752
+184882.0640215178 3.6613157 1103.316
+184883.0640216221 3.6613944 1103.2765
+184884.0640217264 3.6613944 1103.3752
+184885.0640218307 3.6613944 1103.3357
+184886.064021935 3.6613944 1103.3357
+184887.0640220393 3.661552 1103.2963
+184888.0640221436 3.661552 1103.3752
+184889.0640222479 3.661355 1103.316
+184890.0640223522 3.661473 1103.3752
+184891.0640224565 3.6614337 1103.3949
+184892.0640225608 3.6613944 1103.3752
+184893.0640226651 3.6614337 1103.2963
+184894.0640227695 3.661473 1103.3555
+184895.0640228738 3.661473 1103.316
+184896.0640229781 3.6613944 1103.3555
+184897.0640230824 3.661552 1103.3752
+184898.0640231867 3.6615126 1103.3555
+184899.064023291 3.6613944 1103.3555
+184900.0640233953 3.6615126 1103.474
+184901.0640234996 3.6614337 1103.3752
+184902.0640236039 3.6615126 1103.3949
+184903.0640237082 3.661552 1103.3752
+184904.0640238125 3.661473 1103.3357
+184905.0640239168 3.6616306 1103.3357
+184906.0640240212 3.661473 1103.4147
+184907.0640241255 3.6615913 1103.2765
+184908.0640242298 3.6615126 1103.3752
+184909.0640243341 3.661552 1103.3555
+184910.0640244384 3.661552 1103.2963
+184911.0640245427 3.6616306 1103.4344
+184912.064024647 3.6616306 1103.2963
+184913.0640247513 3.66167 1103.3555
+184914.0640248556 3.6616306 1103.2765
+184915.0640249599 3.66167 1103.4344
+184916.0640250642 3.66167 1103.3357
+184917.0640251685 3.661552 1103.3949
+184918.0640252728 3.6616306 1103.3357
+184919.0640253772 3.6615913 1103.3357
+184920.0640254815 3.6617486 1103.316
+184921.0640255858 3.66167 1103.3752
+184922.0640256901 3.6616306 1103.2765
+184923.0640257944 3.6616306 1103.3357
+184924.0640258987 3.6617093 1103.3752
+184925.064026003 3.66167 1103.316
+184926.0640261073 3.6615913 1103.3752
+184927.0640262116 3.6616306 1103.2765
+184928.0640263159 3.66167 1103.3555
+184929.0640264202 3.661788 1103.3752
+184930.0640265245 3.66167 1103.3752
+184931.0640266289 3.6617093 1103.4147
+184932.0640267332 3.6616306 1103.316
+184933.0640268375 3.6617093 1103.4147
+184934.0640269418 3.6618276 1103.4344
+184935.0640270461 3.661788 1103.3752
+184936.0640271504 3.66167 1103.3949
+184937.0640272547 3.6617486 1103.4147
+184938.064027359 3.6617486 1103.3555
+184939.0640274633 3.6618276 1103.4147
+184940.0640275676 3.66167 1103.3555
+184941.0640276719 3.661788 1103.4147
+184942.0640277762 3.6618276 1103.3555
+184943.0640278806 3.661788 1103.3555
+184944.0640279849 3.6618276 1103.3555
+184945.0640280892 3.661788 1103.3752
+184946.0640281935 3.661788 1103.4147
+184947.0640282978 3.6617486 1103.2963
+184948.0640284021 3.661788 1103.3949
+184949.0640285064 3.661788 1103.316
+184950.0640286107 3.6618276 1103.316
+184951.064028715 3.6617486 1103.3949
+184952.0640288193 3.6619062 1103.3752
+184953.0640289236 3.6618669 1103.3752
+184954.0640290279 3.6617093 1103.3949
+184955.0640291322 3.6618669 1103.3555
+184956.0640292366 3.6619456 1103.3357
+184957.0640293409 3.6618669 1103.2765
+184958.0640294452 3.6619062 1103.3357
+184959.0640295495 3.6618276 1103.3357
+184960.0640296538 3.6618276 1103.316
+184961.0640297581 3.6619849 1103.3555
+184962.0640298624 3.6619456 1103.3555
+184963.0640299667 3.6619062 1103.3752
+184964.064030071 3.6619849 1103.316
+184965.0640301753 3.6618669 1103.4147
+184966.0640302796 3.6619062 1103.3357
+184967.0640303839 3.6619456 1103.3555
+184968.0640304883 3.6618669 1103.2765
+184969.0640305926 3.6620243 1103.3949
+184970.0640306969 3.6620243 1103.3555
+184971.0640308012 3.6620243 1103.2765
+184972.0640309055 3.6620243 1103.2963
+184973.0640310098 3.6619849 1103.3555
+184974.0640311141 3.6619849 1103.3752
+184975.0640312184 3.6619849 1103.3357
+184976.0640313227 3.6620636 1103.4344
+184977.064031427 3.6619849 1103.3555
+184978.0640315313 3.6620243 1103.3555
+184979.0640316356 3.6620243 1103.3555
+184980.06403174 3.6621029 1103.3752
+184981.0640318443 3.6621029 1103.3752
+184982.0640319486 3.6621425 1103.3752
+184983.0640320529 3.6620636 1103.3752
+184984.0640321572 3.6620636 1103.4147
+184985.0640322615 3.6621029 1103.3357
+184986.0640323658 3.6621029 1103.316
+184987.0640324701 3.6620636 1103.3949
+184988.0640325744 3.6621425 1103.2765
+184989.0640326787 3.6621425 1103.4147
+184990.064032783 3.6620636 1103.316
+184991.0640328873 3.6621425 1103.3949
+184992.0640329917 3.6621029 1103.3555
+184993.064033096 3.6620636 1103.4542
+184994.0640332003 3.6621029 1103.3752
+184995.0640333046 3.6621819 1103.3752
+184996.0640334089 3.6622212 1103.3357
+184997.0640335132 3.6622605 1103.2765
+184998.0640336175 3.6621819 1103.3752
+184999.0640337218 3.6621425 1103.3555
+185000.0640338261 3.6622212 1103.3752
+185001.0640339304 3.6621819 1103.316
+185002.0640340347 3.6621819 1103.3357
+185003.064034139 3.6621819 1103.3752
+185004.0640342433 3.6622999 1103.3752
+185005.0640343477 3.6620636 1103.3357
+185006.064034452 3.6622212 1103.3752
+185007.0640345563 3.6622212 1103.316
+185008.0640346606 3.6621819 1103.4147
+185009.0640347649 3.6621819 1103.3357
+185010.0640348692 3.6622212 1103.4147
+185011.0640349735 3.6621819 1103.316
+185012.0640350778 3.6621819 1103.316
+185013.0640351821 3.6622999 1103.316
+185014.0640352864 3.6622605 1103.2765
+185015.0640353907 3.6621819 1103.316
+185016.064035495 3.6623392 1103.3357
+185017.0640355994 3.6622212 1103.3555
+185018.0640357037 3.6622999 1103.316
+185019.064035808 3.6623392 1103.3555
+185020.0640359123 3.6622212 1103.4344
+185021.0640360166 3.6623392 1103.2765
+185022.0640361209 3.6623392 1103.316
+185023.0640362252 3.6622605 1103.474
+185024.0640363295 3.6622999 1103.3752
+185025.0640364338 3.6622999 1103.2765
+185026.0640365381 3.6622999 1103.3555
+185027.0640366424 3.6623392 1103.3752
+185028.0640367467 3.6623785 1103.316
+185029.0640368511 3.6622999 1103.2963
+185030.0640369554 3.6624181 1103.2765
+185031.0640370597 3.6623785 1103.2963
+185032.064037164 3.6624181 1103.3555
+185033.0640372683 3.6624181 1103.3949
+185034.0640373726 3.6623392 1103.3357
+185035.0640374769 3.6623785 1103.4542
+185036.0640375812 3.6624181 1103.2567
+185037.0640376855 3.6624181 1103.3752
+185038.0640377898 3.6624575 1103.2567
+185039.0640378941 3.6624181 1103.2765
+185040.0640379984 3.6624181 1103.4542
+185041.0640381027 3.6624575 1103.316
+185042.0640382071 3.6624181 1103.2765
+185043.0640383114 3.6625361 1103.2963
+185044.0640384157 3.6625361 1103.3357
+185045.06403852 3.6624181 1103.3949
+185046.0640386243 3.6625755 1103.3949
+185047.0640387286 3.6624575 1103.3555
+185048.0640388329 3.6624181 1103.3555
+185049.0640389372 3.6625361 1103.3555
+185050.0640390415 3.6625755 1103.3357
+185051.0640391458 3.6625361 1103.316
+185052.0640392501 3.6624968 1103.4542
+185053.0640393544 3.6624575 1103.3357
+185054.0640394588 3.6624968 1103.4147
+185055.0640395631 3.6625361 1103.4147
+185056.0640396674 3.6624575 1103.3752
+185057.0640397717 3.6625361 1103.3752
+185058.064039876 3.6625755 1103.3555
+185059.0640399803 3.6626148 1103.3357
+185060.0640400846 3.6626148 1103.3949
+185061.0640401889 3.6625755 1103.3949
+185062.0640402932 3.6626542 1103.3752
+185063.0640403975 3.6625361 1103.316
+185064.0640405018 3.6626148 1103.3752
+185065.0640406061 3.6626148 1103.3357
+185066.0640407105 3.6625361 1103.3357
+185067.0640408148 3.6625755 1103.2963
+185068.0640409191 3.6626542 1103.3357
+185069.0640410234 3.6626148 1103.316
+185070.0640411277 3.6626935 1103.2963
+185071.064041232 3.6626148 1103.474
+185072.0640413363 3.6626542 1103.2567
+185073.0640414406 3.6627331 1103.316
+185074.0640415449 3.6626542 1103.2765
+185075.0640416492 3.6626542 1103.2963
+185076.0640417535 3.6626935 1103.3949
+185077.0640418578 3.6627331 1103.4542
+185078.0640419621 3.6627331 1103.2765
+185079.0640420665 3.6626542 1103.3357
+185080.0640421708 3.6626935 1103.3752
+185081.0640422751 3.6626542 1103.3357
+185082.0640423794 3.6626542 1103.3357
+185083.0640424837 3.6627724 1103.3555
+185084.064042588 3.6627331 1103.3555
+185085.0640426923 3.6627331 1103.3752
+185086.0640427966 3.6627331 1103.3357
+185087.0640429009 3.6628118 1103.2963
+185088.0640430052 3.6628118 1103.2765
+185089.0640431095 3.6626935 1103.3357
+185090.0640432138 3.6627331 1103.3357
+185091.0640433182 3.6626935 1103.3949
+185092.0640434225 3.6628118 1103.3555
+185093.0640435268 3.6628118 1103.2963
+185094.0640436311 3.6628511 1103.4344
+185095.0640437354 3.6626935 1103.316
+185096.0640438397 3.6627331 1103.3555
+185097.064043944 3.6627724 1103.316
+185098.0640440483 3.6629691 1103.3357
+185099.0640441526 3.6628118 1103.3752
+185100.0640442569 3.6629298 1103.3555
+185101.0640443612 3.6628118 1103.3949
+185102.0640444655 3.6628511 1103.3555
+185103.0640445699 3.6628511 1103.3357
+185104.0640446742 3.6628118 1103.3357
+185105.0640447785 3.6628904 1103.3357
+185106.0640448828 3.6630085 1103.3555
+185107.0640449871 3.6628511 1103.3555
+185108.0640450914 3.6628511 1103.3555
+185109.0640451957 3.6628511 1103.3555
+185110.0640453 3.6628118 1103.3357
+185111.0640454043 3.663048 1103.3752
+185112.0640455086 3.6629691 1103.3357
+185113.0640456129 3.6629691 1103.3752
+185114.0640457172 3.663048 1103.3555
+185115.0640458215 3.6629691 1103.3752
+185116.0640459259 3.6628904 1103.2963
+185117.0640460302 3.6630085 1103.3949
+185118.0640461345 3.6629691 1103.4344
+185119.0640462388 3.6630085 1103.2963
+185120.0640463431 3.6629298 1103.3555
+185121.0640464474 3.6629691 1103.3752
+185122.0640465517 3.6630085 1103.3357
+185123.064046656 3.6629691 1103.3357
+185124.0640467603 3.6630874 1103.316
+185125.0640468646 3.6629298 1103.3752
+185126.0640469689 3.6629298 1103.3555
+185127.0640470732 3.6629691 1103.3949
+185128.0640471776 3.6629691 1103.3357
+185129.0640472819 3.663048 1103.3555
+185130.0640473862 3.6630085 1103.3555
+185131.0640474905 3.6630874 1103.4344
+185132.0640475948 3.6630085 1103.2963
+185133.0640476991 3.6630874 1103.3949
+185134.0640478034 3.6630085 1103.3752
+185135.0640479077 3.6630874 1103.3555
+185136.064048012 3.6630874 1103.3357
+185137.0640481163 3.663048 1103.3752
+185138.0640482206 3.6630874 1103.4344
+185139.0640483249 3.663166 1103.3752
+185140.0640484293 3.6630874 1103.316
+185141.0640485336 3.6631267 1103.316
+185142.0640486379 3.6632054 1103.316
+185143.0640487422 3.6631267 1103.3357
+185144.0640488465 3.663166 1103.3357
+185145.0640489508 3.6632054 1103.3949
+185146.0640490551 3.6630874 1103.316
+185147.0640491594 3.6630874 1103.316
+185148.0640492637 3.6632447 1103.3752
+185149.064049368 3.6632054 1103.3752
+185150.0640494723 3.6632054 1103.316
+185151.0640495766 3.6632447 1103.2567
+185152.064049681 3.6632841 1103.3949
+185153.0640497853 3.6632447 1103.316
+185154.0640498896 3.6632447 1103.2369
+185155.0640499939 3.6632054 1103.3752
+185156.0640500982 3.6631267 1103.3752
+185157.0640502025 3.663166 1103.3949
+185158.0640503068 3.6632447 1103.316
+185159.0640504111 3.6632054 1103.3357
+185160.0640505154 3.6632447 1103.3357
+185161.0640506197 3.6632841 1103.316
+185162.064050724 3.6632841 1103.316
+185163.0640508283 3.6632841 1103.316
+185164.0640509326 3.6632447 1103.3752
+185165.064051037 3.6632841 1103.3555
+185166.0640511413 3.663363 1103.3357
+185167.0640512456 3.6632841 1103.4147
+185168.0640513499 3.6634023 1103.4344
+185169.0640514542 3.6632054 1103.4147
+185170.0640515585 3.6633234 1103.4147
+185171.0640516628 3.6632447 1103.4344
+185172.0640517671 3.6633234 1103.2963
+185173.0640518714 3.6633234 1103.3752
+185174.0640519757 3.663166 1103.2963
+185175.06405208 3.6633234 1103.3949
+185176.0640521843 3.6633234 1103.3357
+185177.0640522887 3.6633234 1103.316
+185178.064052393 3.6634023 1103.3357
+185179.0640524973 3.6634023 1103.3555
+185180.0640526016 3.6633234 1103.3357
+185181.0640527059 3.6634023 1103.4542
+185182.0640528102 3.6634417 1103.3555
+185183.0640529145 3.663481 1103.3357
+185184.0640530188 3.663363 1103.3357
+185185.0640531231 3.6634417 1103.316
+185186.0640532274 3.6632841 1103.3555
+185187.0640533317 3.663481 1103.2765
+185188.064053436 3.6634023 1103.2567
+185189.0640535404 3.6634023 1103.3949
+185190.0640536447 3.6634417 1103.316
+185191.064053749 3.6634023 1103.2963
+185192.0640538533 3.663481 1103.2963
+185193.0640539576 3.663481 1103.3949
+185194.0640540619 3.663481 1103.3555
+185195.0640541662 3.6635597 1103.2567
+185196.0640542705 3.6634417 1103.2963
+185197.0640543748 3.6634417 1103.3752
+185198.0640544791 3.6634417 1103.3357
+185199.0640545834 3.6635203 1103.4147
+185200.0640546877 3.663481 1103.2963
+185201.064054792 3.6635203 1103.3555
+185202.0640548964 3.6635597 1103.2963
+185203.0640550007 3.6635203 1103.3752
+185204.064055105 3.6635203 1103.3949
+185205.0640552093 3.6636384 1103.3357
+185206.0640553136 3.6635203 1103.316
+185207.0640554179 3.6636384 1103.3555
+185208.0640555222 3.6635597 1103.3357
+185209.0640556265 3.663599 1103.3752
+185210.0640557308 3.6635597 1103.4542
+185211.0640558351 3.663599 1103.3357
+185212.0640559394 3.6635597 1103.2963
+185213.0640560437 3.6635597 1103.316
+185214.0640561481 3.6636779 1103.4147
+185215.0640562524 3.6635597 1103.316
+185216.0640563567 3.663599 1103.3752
+185217.064056461 3.6636779 1103.3357
+185218.0640565653 3.6636384 1103.3357
+185219.0640566696 3.6636779 1103.3949
+185220.0640567739 3.6637173 1103.2567
+185221.0640568782 3.663599 1103.316
+185222.0640569825 3.6637173 1103.3555
+185223.0640570868 3.6636779 1103.474
+185224.0640571911 3.6635597 1103.2765
+185225.0640572954 3.663599 1103.4147
+185226.0640573998 3.6637566 1103.3752
+185227.0640575041 3.6637173 1103.3752
+185228.0640576084 3.6637566 1103.2765
+185229.0640577127 3.6636779 1103.3357
+185230.064057817 3.6636779 1103.2963
+185231.0640579213 3.6636384 1103.3555
+185232.0640580256 3.6637173 1103.316
+185233.0640581299 3.6637959 1103.2567
+185234.0640582342 3.6637959 1103.3752
+185235.0640583385 3.663914 1103.316
+185236.0640584428 3.6636384 1103.3949
+185237.0640585471 3.6637566 1103.3555
+185238.0640586514 3.6637959 1103.3357
+185239.0640587558 3.6637959 1103.2963
+185240.0640588601 3.6637959 1103.4542
+185241.0640589644 3.6637566 1103.3949
+185242.0640590687 3.6638353 1103.4542
+185243.064059173 3.6638353 1103.3357
+185244.0640592773 3.6638353 1103.3357
+185245.0640593816 3.6637566 1103.3357
+185246.0640594859 3.6637566 1103.3555
+185247.0640595902 3.6638746 1103.3357
+185248.0640596945 3.6638353 1103.2172
+185249.0640597988 3.6638746 1103.3949
+185250.0640599031 3.6638746 1103.3752
+185251.0640600075 3.6637959 1103.316
+185252.0640601118 3.6638353 1103.3949
+185253.0640602161 3.6638353 1103.3357
+185254.0640603204 3.6637959 1103.3357
+185255.0640604247 3.6638353 1103.3555
+185256.064060529 3.6638746 1103.3949
+185257.0640606333 3.6640322 1103.3949
+185258.0640607376 3.6638746 1103.3555
+185259.0640608419 3.6640322 1103.3555
+185260.0640609462 3.663914 1103.3555
+185261.0640610505 3.663914 1103.4344
+185262.0640611548 3.6639535 1103.316
+185263.0640612592 3.6639929 1103.3357
+185264.0640613635 3.6638746 1103.3555
+185265.0640614678 3.663914 1103.2963
+185266.0640615721 3.6639535 1103.3357
+185267.0640616764 3.6639535 1103.316
+185268.0640617807 3.6640716 1103.3357
+185269.064061885 3.6639929 1103.3555
+185270.0640619893 3.6639929 1103.316
+185271.0640620936 3.6639535 1103.3949
+185272.0640621979 3.6640322 1103.3555
+185273.0640623022 3.6640322 1103.3949
+185274.0640624065 3.6639535 1103.3752
+185275.0640625109 3.6641109 1103.474
+185276.0640626152 3.6640322 1103.2765
+185277.0640627195 3.6640322 1103.3555
+185278.0640628238 3.6640716 1103.316
+185279.0640629281 3.6639929 1103.3357
+185280.0640630324 3.6641502 1103.3357
+185281.0640631367 3.6640716 1103.4147
+185282.064063241 3.6641109 1103.3949
+185283.0640633453 3.6640716 1103.2765
+185284.0640634496 3.6641502 1103.316
+185285.0640635539 3.6640716 1103.3555
+185286.0640636582 3.6641109 1103.3752
+185287.0640637625 3.6641109 1103.4542
+185288.0640638669 3.6642289 1103.2963
+185289.0640639712 3.6641896 1103.4344
+185290.0640640755 3.6641109 1103.316
+185291.0640641798 3.6641896 1103.3357
+185292.0640642841 3.6641109 1103.3949
+185293.0640643884 3.6641502 1103.3555
+185294.0640644927 3.6641502 1103.3357
+185295.064064597 3.6642685 1103.2963
+185296.0640647013 3.6640716 1103.3949
+185297.0640648056 3.6642289 1103.3555
+185298.0640649099 3.6641502 1103.3357
+185299.0640650142 3.6641896 1103.3357
+185300.0640651186 3.6642289 1103.3752
+185301.0640652229 3.6641896 1103.3752
+185302.0640653272 3.6642685 1103.2963
+185303.0640654315 3.6643078 1103.3752
+185304.0640655358 3.6642289 1103.2765
+185305.0640656401 3.6641502 1103.316
+185306.0640657444 3.6642685 1103.3752
+185307.0640658487 3.6641896 1103.3357
+185308.064065953 3.6641896 1103.2963
+185309.0640660573 3.6642685 1103.3555
+185310.0640661616 3.6642685 1103.3555
+185311.0640662659 3.6643078 1103.4147
+185312.0640663703 3.6643472 1103.3949
+185313.0640664746 3.6643078 1103.3357
+185314.0640665789 3.6643078 1103.3357
+185315.0640666832 3.6642685 1103.3949
+185316.0640667875 3.6642685 1103.4542
+185317.0640668918 3.6643078 1103.4147
+185318.0640669961 3.6644258 1103.3555
+185319.0640671004 3.6643472 1103.3357
+185320.0640672047 3.6643865 1103.2765
+185321.064067309 3.6642289 1103.2765
+185322.0640674133 3.6643078 1103.2963
+185323.0640675176 3.6642685 1103.316
+185324.0640676219 3.6643472 1103.2963
+185325.0640677263 3.6643472 1103.2963
+185326.0640678306 3.6643472 1103.3752
+185327.0640679349 3.6643865 1103.3357
+185328.0640680392 3.6643472 1103.3357
+185329.0640681435 3.6644258 1103.2567
+185330.0640682478 3.6643078 1103.3752
+185331.0640683521 3.6644652 1103.3752
+185332.0640684564 3.6644258 1103.316
+185333.0640685607 3.6644258 1103.2765
+185334.064068665 3.6644652 1103.3357
+185335.0640687693 3.6644258 1103.3949
+185336.0640688736 3.6644258 1103.2963
+185337.064068978 3.6643865 1103.3357
+185338.0640690823 3.6643865 1103.316
+185339.0640691866 3.6643865 1103.4344
+185340.0640692909 3.6644258 1103.3555
+185341.0640693952 3.6644258 1103.3555
+185342.0640694995 3.6645045 1103.3357
+185343.0640696038 3.6645439 1103.4344
+185344.0640697081 3.6644258 1103.2765
+185345.0640698124 3.6645045 1103.3357
+185346.0640699167 3.6645439 1103.316
+185347.064070021 3.6645439 1103.2963
+185348.0640701253 3.6644258 1103.3949
+185349.0640702297 3.6645439 1103.316
+185350.064070334 3.6645045 1103.316
+185351.0640704383 3.6644258 1103.316
+185352.0640705426 3.6645045 1103.316
+185353.0640706469 3.6644652 1103.2963
+185354.0640707512 3.6646228 1103.2963
+185355.0640708555 3.6645439 1103.3555
+185356.0640709598 3.6645439 1103.4147
+185357.0640710641 3.6645439 1103.2963
+185358.0640711684 3.6646621 1103.2963
+185359.0640712727 3.6645834 1103.316
+185360.064071377 3.6646228 1103.2963
+185361.0640714813 3.6646621 1103.3949
+185362.0640715857 3.6645834 1103.2369
+185363.06407169 3.6646228 1103.3357
+185364.0640717943 3.6645439 1103.3949
+185365.0640718986 3.6646621 1103.2963
+185366.0640720029 3.6646621 1103.2963
+185367.0640721072 3.6646621 1103.316
+185368.0640722115 3.6646621 1103.3357
+185369.0640723158 3.6647015 1103.3949
+185370.0640724201 3.6645439 1103.2765
+185371.0640725244 3.6647408 1103.2963
+185372.0640726287 3.6646621 1103.3357
+185373.064072733 3.6646621 1103.3949
+185374.0640728374 3.6647408 1103.3357
+185375.0640729417 3.6645834 1103.316
+185376.064073046 3.6648195 1103.3752
+185377.0640731503 3.6646621 1103.3555
+185378.0640732546 3.6647015 1103.3949
+185379.0640733589 3.6646621 1103.3357
+185380.0640734632 3.6647408 1103.4542
+185381.0640735675 3.6646228 1103.3555
+185382.0640736718 3.6647801 1103.2172
+185383.0640737761 3.6647408 1103.4147
+185384.0640738804 3.6647801 1103.5134
+185385.0640739847 3.6647408 1103.3555
+185386.0640740891 3.6647408 1103.3949
+185387.0640741934 3.6647801 1103.3555
+185388.0640742977 3.6647408 1103.2765
+185389.064074402 3.6648195 1103.2369
+185390.0640745063 3.6648588 1103.2765
+185391.0640746106 3.6647408 1103.4147
+185392.0640747149 3.6648195 1103.3555
+185393.0640748192 3.6648588 1103.3752
+185394.0640749235 3.6648195 1103.3752
+185395.0640750278 3.6647801 1103.3357
+185396.0640751321 3.6648984 1103.3357
+185397.0640752364 3.6648195 1103.3949
+185398.0640753408 3.6648984 1103.3555
+185399.0640754451 3.6648588 1103.3752
+185400.0640755494 3.6648984 1103.2765
+185401.0640756537 3.6648195 1103.3357
+185402.064075758 3.6648588 1103.3752
+185403.0640758623 3.6649377 1103.3555
+185404.0640759666 3.6647801 1103.2963
+185405.0640760709 3.6650164 1103.4344
+185406.0640761752 3.6648588 1103.3752
+185407.0640762795 3.6648984 1103.2765
+185408.0640763838 3.6649771 1103.2963
+185409.0640764881 3.6649377 1103.3949
+185410.0640765924 3.6649771 1103.3949
+185411.0640766968 3.6648984 1103.3555
+185412.0640768011 3.6650164 1103.2963
+185413.0640769054 3.6649771 1103.3752
+185414.0640770097 3.6649377 1103.3555
+185415.064077114 3.6649377 1103.4147
+185416.0640772183 3.6650164 1103.3555
+185417.0640773226 3.6650164 1103.316
+185418.0640774269 3.6649771 1103.316
+185419.0640775312 3.6650164 1103.4344
+185420.0640776355 3.6650558 1103.2963
+185421.0640777398 3.6650558 1103.3949
+185422.0640778441 3.6650164 1103.3752
+185423.0640779485 3.6650164 1103.3357
+185424.0640780528 3.6650951 1103.3555
+185425.0640781571 3.6649771 1103.3357
+185426.0640782614 3.6650558 1103.3752
+185427.0640783657 3.6651344 1103.4147
+185428.06407847 3.6650558 1103.316
+185429.0640785743 3.6650164 1103.3357
+185430.0640786786 3.6649771 1103.3752
+185431.0640787829 3.6650558 1103.3949
+185432.0640788872 3.6650558 1103.316
+185433.0640789915 3.6651344 1103.3752
+185434.0640790958 3.6650951 1103.3555
+185435.0640792002 3.6650558 1103.4147
+185436.0640793045 3.6651738 1103.3357
+185437.0640794088 3.6649771 1103.3752
+185438.0640795131 3.6650558 1103.474
+185439.0640796174 3.6651344 1103.4344
+185440.0640797217 3.6651344 1103.4147
+185441.064079826 3.6651344 1103.2765
+185442.0640799303 3.6652133 1103.316
+185443.0640800346 3.6652527 1103.3949
+185444.0640801389 3.6652133 1103.3357
+185445.0640802432 3.6652527 1103.3555
+185446.0640803475 3.6650951 1103.316
+185447.0640804518 3.6652527 1103.3555
+185448.0640805562 3.6651738 1103.2963
+185449.0640806605 3.6652133 1103.316
+185450.0640807648 3.6651738 1103.3752
+185451.0640808691 3.6652133 1103.5332
+185452.0640809734 3.6652133 1103.3555
+185453.0640810777 3.6652133 1103.4147
+185454.064081182 3.665292 1103.3949
+185455.0640812863 3.6653314 1103.4542
+185456.0640813906 3.6651738 1103.3555
+185457.0640814949 3.6653314 1103.3949
+185458.0640815992 3.6653314 1103.4344
+185459.0640817035 3.6652133 1103.2765
+185460.0640818079 3.665292 1103.3357
+185461.0640819122 3.665292 1103.2765
+185462.0640820165 3.665292 1103.3752
+185463.0640821208 3.6652527 1103.4147
+185464.0640822251 3.6653314 1103.3949
+185465.0640823294 3.6652527 1103.316
+185466.0640824337 3.665292 1103.2963
+185467.064082538 3.66541 1103.3949
+185468.0640826423 3.665292 1103.3949
+185469.0640827466 3.665292 1103.3949
+185470.0640828509 3.6653707 1103.2765
+185471.0640829552 3.6652527 1103.4147
+185472.0640830596 3.6653314 1103.316
+185473.0640831639 3.6653314 1103.4147
+185474.0640832682 3.6653707 1103.3555
+185475.0640833725 3.6653707 1103.4344
+185476.0640834768 3.6653314 1103.3357
+185477.0640835811 3.6654887 1103.3555
+185478.0640836854 3.66541 1103.3555
+185479.0640837897 3.6654494 1103.3949
+185480.064083894 3.6654494 1103.2963
+185481.0640839983 3.6654887 1103.4542
+185482.0640841026 3.6653707 1103.3555
+185483.0640842069 3.66541 1103.3555
+185484.0640843112 3.6654494 1103.3357
+185485.0640844156 3.6654494 1103.3555
+185486.0640845199 3.6654887 1103.3357
+185487.0640846242 3.6653707 1103.3949
+185488.0640847285 3.6654887 1103.4147
+185489.0640848328 3.66541 1103.2963
+185490.0640849371 3.6656463 1103.3752
+185491.0640850414 3.6654887 1103.316
+185492.0640851457 3.66541 1103.316
+185493.06408525 3.6654494 1103.3357
+185494.0640853543 3.6654494 1103.316
+185495.0640854586 3.6655283 1103.3949
+185496.0640855629 3.6655283 1103.2567
+185497.0640856673 3.6656857 1103.4344
+185498.0640857716 3.6654887 1103.3357
+185499.0640858759 3.6654887 1103.316
+185500.0640859802 3.6655283 1103.3555
+185501.0640860845 3.6655283 1103.316
+185502.0640861888 3.6654494 1103.3752
+185503.0640862931 3.6654494 1103.2765
+185504.0640863974 3.6655283 1103.4542
+185505.0640865017 3.6656463 1103.3357
+185506.064086606 3.6655676 1103.316
+185507.0640867103 3.6655676 1103.2963
+185508.0640868146 3.665607 1103.3555
+185509.064086919 3.6656857 1103.3357
+185510.0640870233 3.665607 1103.3752
+185511.0640871276 3.665607 1103.3357
+185512.0640872319 3.6656857 1103.4542
+185513.0640873362 3.665607 1103.3752
+185514.0640874405 3.665607 1103.4147
+185515.0640875448 3.665607 1103.4344
+185516.0640876491 3.665725 1103.4344
+185517.0640877534 3.6656463 1103.3555
+185518.0640878577 3.6656463 1103.3555
+185519.064087962 3.665607 1103.3357
+185520.0640880663 3.6656857 1103.3357
+185521.0640881706 3.6657643 1103.3555
+185522.064088275 3.6657643 1103.3752
+185523.0640883793 3.665725 1103.3555
+185524.0640884836 3.6657643 1103.3949
+185525.0640885879 3.6657643 1103.2963
+185526.0640886922 3.665725 1103.2963
+185527.0640887965 3.6656857 1103.3752
+185528.0640889008 3.6657643 1103.2963
+185529.0640890051 3.6656857 1103.3752
+185530.0640891094 3.6658432 1103.3949
+185531.0640892137 3.665725 1103.3752
+185532.064089318 3.6656857 1103.316
+185533.0640894223 3.6658039 1103.3555
+185534.0640895267 3.6658039 1103.3752
+185535.064089631 3.6658826 1103.4344
+185536.0640897353 3.6658039 1103.4542
+185537.0640898396 3.6658039 1103.2765
+185538.0640899439 3.6658039 1103.316
+185539.0640900482 3.6658826 1103.3949
+185540.0640901525 3.6658039 1103.3949
+185541.0640902568 3.6658039 1103.3752
+185542.0640903611 3.6658432 1103.4147
+185543.0640904654 3.665725 1103.3752
+185544.0640905697 3.6658039 1103.4542
+185545.064090674 3.6658432 1103.3555
+185546.0640907784 3.6658826 1103.4147
+185547.0640908827 3.6658432 1103.316
+185548.064090987 3.6658039 1103.2963
+185549.0640910913 3.6659613 1103.3949
+185550.0640911956 3.6659219 1103.3752
+185551.0640912999 3.6659219 1103.2567
+185552.0640914042 3.6659219 1103.3752
+185553.0640915085 3.6658039 1103.4147
+185554.0640916128 3.6658826 1103.3752
+185555.0640917171 3.6658826 1103.3949
+185556.0640918214 3.6659219 1103.2172
+185557.0640919257 3.6659219 1103.3357
+185558.0640920301 3.6659219 1103.316
+185559.0640921344 3.6658432 1103.3357
+185560.0640922387 3.6659219 1103.3555
+185561.064092343 3.6658826 1103.3752
+185562.0640924473 3.6660399 1103.3555
+185563.0640925516 3.6660006 1103.474
+185564.0640926559 3.6659613 1103.3752
+185565.0640927602 3.6659219 1103.3949
+185566.0640928645 3.6659613 1103.2567
+185567.0640929688 3.6660793 1103.3357
+185568.0640930731 3.6659219 1103.3949
+185569.0640931774 3.6660006 1103.4147
+185570.0640932817 3.6660006 1103.2963
+185571.0640933861 3.6660399 1103.3357
+185572.0640934904 3.6660399 1103.2963
+185573.0640935947 3.6660006 1103.3752
+185574.064093699 3.6661189 1103.3752
+185575.0640938033 3.6660793 1103.4147
+185576.0640939076 3.6661189 1103.3357
+185577.0640940119 3.6660006 1103.316
+185578.0640941162 3.6660793 1103.3752
+185579.0640942205 3.6660793 1103.3555
+185580.0640943248 3.6661582 1103.3949
+185581.0640944291 3.6661189 1103.3752
+185582.0640945334 3.6661582 1103.3555
+185583.0640946378 3.6661189 1103.4542
+185584.0640947421 3.6661189 1103.3949
+185585.0640948464 3.6661582 1103.3949
+185586.0640949507 3.6661582 1103.316
+185587.064095055 3.6661189 1103.3555
+185588.0640951593 3.6661189 1103.3752
+185589.0640952636 3.6660399 1103.2963
+185590.0640953679 3.6661975 1103.3555
+185591.0640954722 3.6661189 1103.2963
+185592.0640955765 3.6662369 1103.3357
+185593.0640956808 3.6661975 1103.316
+185594.0640957851 3.6661975 1103.3357
+185595.0640958895 3.6661582 1103.3555
+185596.0640959938 3.6661189 1103.3752
+185597.0640960981 3.6661582 1103.3555
+185598.0640962024 3.6662762 1103.3949
+185599.0640963067 3.6663156 1103.4147
+185600.064096411 3.6662369 1103.3752
+185601.0640965153 3.6662369 1103.3357
+185602.0640966196 3.6661975 1103.4938
+185603.0640967239 3.6661582 1103.3357
+185604.0640968282 3.6662762 1103.2567
+185605.0640969325 3.6663156 1103.3752
+185606.0640970368 3.6661975 1103.316
+185607.0640971411 3.6661582 1103.3949
+185608.0640972455 3.6663156 1103.3949
+185609.0640973498 3.6662762 1103.3752
+185610.0640974541 3.6663942 1103.3357
+185611.0640975584 3.6663942 1103.3555
+185612.0640976627 3.6662762 1103.3949
+185613.064097767 3.6663942 1103.3752
+185614.0640978713 3.6662369 1103.3555
+185615.0640979756 3.6663156 1103.3357
+185616.0640980799 3.6663156 1103.3357
+185617.0640981842 3.6664732 1103.316
+185618.0640982885 3.6663549 1103.316
+185619.0640983928 3.6663156 1103.3949
+185620.0640984972 3.6664338 1103.3357
+185621.0640986015 3.6663549 1103.3555
+185622.0640987058 3.6663549 1103.3357
+185623.0640988101 3.6664338 1103.4147
+185624.0640989144 3.6663549 1103.3752
+185625.0640990187 3.6663942 1103.2963
+185626.064099123 3.6665125 1103.3357
+185627.0640992273 3.6663942 1103.3357
+185628.0640993316 3.6663549 1103.3357
+185629.0640994359 3.6663549 1103.3555
+185630.0640995402 3.6664338 1103.3752
+185631.0640996445 3.6663942 1103.316
+185632.0640997489 3.6664338 1103.4344
+185633.0640998532 3.6664338 1103.2765
+185634.0640999575 3.6664732 1103.3555
+185635.0641000618 3.6663549 1103.474
+185636.0641001661 3.6665518 1103.3949
+185637.0641002704 3.6665125 1103.3555
+185638.0641003747 3.6664732 1103.3752
+185639.064100479 3.6664338 1103.3555
+185640.0641005833 3.6665518 1103.3555
+185641.0641006876 3.6664732 1103.316
+185642.0641007919 3.6665912 1103.3555
+185643.0641008962 3.6664338 1103.3357
+185644.0641010005 3.6665125 1103.3949
+185645.0641011049 3.6664732 1103.4147
+185646.0641012092 3.6664732 1103.3555
+185647.0641013135 3.6666305 1103.3555
+185648.0641014178 3.6665125 1103.3752
+185649.0641015221 3.6664732 1103.3357
+185650.0641016264 3.6665518 1103.3357
+185651.0641017307 3.6665912 1103.3752
+185652.064101835 3.6665518 1103.3357
+185653.0641019393 3.6665912 1103.3752
+185654.0641020436 3.6666305 1103.3357
+185655.0641021479 3.6665912 1103.4147
+185656.0641022522 3.6666305 1103.2567
+185657.0641023566 3.6665518 1103.316
+185658.0641024609 3.6666698 1103.2963
+185659.0641025652 3.6666305 1103.3949
+185660.0641026695 3.6665912 1103.3357
+185661.0641027738 3.6666305 1103.316
+185662.0641028781 3.6666305 1103.4147
+185663.0641029824 3.6666698 1103.3357
+185664.0641030867 3.6667488 1103.3357
+185665.064103191 3.6667092 1103.2369
+185666.0641032953 3.6667488 1103.4147
+185667.0641033996 3.6667092 1103.316
+185668.0641035039 3.6667092 1103.316
+185669.0641036083 3.6666305 1103.4147
+185670.0641037126 3.6667488 1103.4147
+185671.0641038169 3.6667488 1103.316
+185672.0641039212 3.6668274 1103.3555
+185673.0641040255 3.6667092 1103.3555
+185674.0641041298 3.6667092 1103.3949
+185675.0641042341 3.6668274 1103.3357
+185676.0641043384 3.6667488 1103.3357
+185677.0641044427 3.6667488 1103.4147
+185678.064104547 3.6668274 1103.3555
+185679.0641046513 3.6668274 1103.3752
+185680.0641047556 3.6669061 1103.3752
+185681.06410486 3.6667092 1103.3555
+185682.0641049643 3.6668274 1103.3752
+185683.0641050686 3.6667488 1103.3357
+185684.0641051729 3.6667881 1103.3555
+185685.0641052772 3.6669061 1103.4147
+185686.0641053815 3.6668274 1103.4147
+185687.0641054858 3.6669061 1103.316
+185688.0641055901 3.6668668 1103.3752
+185689.0641056944 3.6668668 1103.3555
+185690.0641057987 3.6668668 1103.3752
+185691.064105903 3.6669061 1103.3357
+185692.0641060073 3.6667881 1103.4147
+185693.0641061116 3.6668668 1103.3357
+185694.064106216 3.6668668 1103.2765
+185695.0641063203 3.6669848 1103.316
+185696.0641064246 3.6669061 1103.3357
+185697.0641065289 3.6668274 1103.3752
+185698.0641066332 3.6669455 1103.3555
+185699.0641067375 3.6669061 1103.316
+185700.0641068418 3.6668668 1103.2963
+185701.0641069461 3.6669455 1103.316
+185702.0641070504 3.6669455 1103.3752
+185703.0641071547 3.6669455 1103.4344
+185704.064107259 3.6670241 1103.3555
+185705.0641073633 3.6668668 1103.2963
+185706.0641074677 3.6669455 1103.3555
+185707.064107572 3.6669848 1103.2765
+185708.0641076763 3.6669455 1103.4542
+185709.0641077806 3.6670241 1103.3949
+185710.0641078849 3.6670637 1103.3357
+185711.0641079892 3.6669848 1103.3555
+185712.0641080935 3.6670241 1103.3555
+185713.0641081978 3.6670241 1103.316
+185714.0641083021 3.6669455 1103.3949
+185715.0641084064 3.6669455 1103.316
+185716.0641085107 3.6669848 1103.3949
+185717.064108615 3.6669848 1103.3752
+185718.0641087194 3.6669455 1103.316
+185719.0641088237 3.6669455 1103.3357
+185720.064108928 3.6671424 1103.3357
+185721.0641090323 3.6670637 1103.474
+185722.0641091366 3.6671424 1103.316
+185723.0641092409 3.6671424 1103.2567
+185724.0641093452 3.6670241 1103.2765
+185725.0641094495 3.6671031 1103.474
+185726.0641095538 3.6672211 1103.3949
+185727.0641096581 3.6671031 1103.3555
+185728.0641097624 3.6671817 1103.3555
+185729.0641098667 3.6671817 1103.3357
+185730.064109971 3.6671031 1103.3357
+185731.0641100754 3.6672211 1103.316
+185732.0641101797 3.6671424 1103.3555
+185733.064110284 3.6671031 1103.3357
+185734.0641103883 3.6671031 1103.2963
+185735.0641104926 3.6671817 1103.316
+185736.0641105969 3.6671817 1103.4147
+185737.0641107012 3.6671817 1103.474
+185738.0641108055 3.6671817 1103.3555
+185739.0641109098 3.6671817 1103.4344
+185740.0641110141 3.6671817 1103.3357
+185741.0641111184 3.6672997 1103.3357
+185742.0641112227 3.6671424 1103.3357
+185743.0641113271 3.6672997 1103.2963
+185744.0641114314 3.6672211 1103.2765
+185745.0641115357 3.6672997 1103.3949
+185746.06411164 3.6672997 1103.3555
+185747.0641117443 3.6671424 1103.3555
+185748.0641118486 3.6672211 1103.2963
+185749.0641119529 3.6671424 1103.4542
+185750.0641120572 3.6672997 1103.3555
+185751.0641121615 3.6672211 1103.3949
+185752.0641122658 3.6672604 1103.316
+185753.0641123701 3.6671817 1103.4344
+185754.0641124744 3.6673787 1103.3555
+185755.0641125788 3.6672604 1103.3357
+185756.0641126831 3.6672604 1103.2765
+185757.0641127874 3.6672997 1103.3752
+185758.0641128917 3.6672997 1103.3752
+185759.064112996 3.6673787 1103.316
+185760.0641131003 3.6673391 1103.3555
+185761.0641132046 3.6673787 1103.3752
+185762.0641133089 3.6673391 1103.474
+185763.0641134132 3.6673391 1103.3949
+185764.0641135175 3.6673391 1103.316
+185765.0641136218 3.6674573 1103.3752
+185766.0641137261 3.6673391 1103.3752
+185767.0641138304 3.6673787 1103.4542
+185768.0641139348 3.6673391 1103.3357
+185769.0641140391 3.667536 1103.3357
+185770.0641141434 3.6674573 1103.3949
+185771.0641142477 3.6673787 1103.316
+185772.064114352 3.6673391 1103.3949
+185773.0641144563 3.6673787 1103.316
+185774.0641145606 3.667536 1103.3752
+185775.0641146649 3.667536 1103.3555
+185776.0641147692 3.6674967 1103.4938
+185777.0641148735 3.6674967 1103.3555
+185778.0641149778 3.667536 1103.3752
+185779.0641150821 3.6674967 1103.2963
+185780.0641151865 3.667536 1103.3949
+185781.0641152908 3.6674573 1103.3555
+185782.0641153951 3.6674573 1103.3555
+185783.0641154994 3.6676147 1103.316
+185784.0641156037 3.667536 1103.316
+185785.064115708 3.6675754 1103.3949
+185786.0641158123 3.667536 1103.3752
+185787.0641159166 3.6674967 1103.3555
+185788.0641160209 3.6676147 1103.316
+185789.0641161252 3.667536 1103.4542
+185790.0641162295 3.6674573 1103.2963
+185791.0641163338 3.6675754 1103.2963
+185792.0641164382 3.667536 1103.3752
+185793.0641165425 3.667536 1103.3357
+185794.0641166468 3.6675754 1103.3357
+185795.0641167511 3.6675754 1103.3357
+185796.0641168554 3.6676147 1103.316
+185797.0641169597 3.6676543 1103.3752
+185798.064117064 3.6675754 1103.3555
+185799.0641171683 3.6675754 1103.3949
+185800.0641172726 3.6676543 1103.3555
+185801.0641173769 3.667536 1103.3949
+185802.0641174812 3.6676147 1103.4147
+185803.0641175855 3.6676543 1103.2963
+185804.0641176899 3.6675754 1103.4344
+185805.0641177942 3.6676543 1103.3949
+185806.0641178985 3.6676543 1103.3357
+185807.0641180028 3.6676936 1103.2765
+185808.0641181071 3.6676147 1103.3752
+185809.0641182114 3.6676936 1103.3949
+185810.0641183157 3.6677723 1103.3752
+185811.06411842 3.6676147 1103.3949
+185812.0641185243 3.6678116 1103.3555
+185813.0641186286 3.6677723 1103.2963
+185814.0641187329 3.667733 1103.316
+185815.0641188372 3.667733 1103.3555
+185816.0641189415 3.6677723 1103.3555
+185817.0641190459 3.6678116 1103.3555
+185818.0641191502 3.6676936 1103.3555
+185819.0641192545 3.6678116 1103.3752
+185820.0641193588 3.667851 1103.2765
+185821.0641194631 3.667733 1103.4344
+185822.0641195674 3.6676936 1103.3949
+185823.0641196717 3.6677723 1103.3357
+185824.064119776 3.6678116 1103.3752
+185825.0641198803 3.6677723 1103.3555
+185826.0641199846 3.6677723 1103.3949
+185827.0641200889 3.6678116 1103.316
+185828.0641201932 3.6677723 1103.3555
+185829.0641202976 3.667851 1103.2567
+185830.0641204019 3.6677723 1103.3357
+185831.0641205062 3.6677723 1103.3752
+185832.0641206105 3.667851 1103.5134
+185833.0641207148 3.6679296 1103.3555
+185834.0641208191 3.6678903 1103.3555
+185835.0641209234 3.6679296 1103.3357
+185836.0641210277 3.6678116 1103.316
+185837.064121132 3.6679296 1103.3949
+185838.0641212363 3.6678903 1103.2963
+185839.0641213406 3.667851 1103.3357
+185840.0641214449 3.6679296 1103.3357
+185841.0641215493 3.667851 1103.2963
+185842.0641216536 3.6679692 1103.316
+185843.0641217579 3.6679296 1103.2567
+185844.0641218622 3.6680086 1103.2567
+185845.0641219665 3.6679692 1103.4344
+185846.0641220708 3.6680872 1103.3357
+185847.0641221751 3.6679296 1103.3555
+185848.0641222794 3.6680479 1103.316
+185849.0641223837 3.6680086 1103.3357
+185850.064122488 3.6680086 1103.3752
+185851.0641225923 3.6680086 1103.3949
+185852.0641226966 3.6680086 1103.3357
+185853.0641228009 3.6679692 1103.4147
+185854.0641229053 3.6679692 1103.3752
+185855.0641230096 3.6680086 1103.316
+185856.0641231139 3.6680479 1103.3357
+185857.0641232182 3.6680872 1103.3357
+185858.0641233225 3.6680872 1103.3357
+185859.0641234268 3.6680086 1103.3357
+185860.0641235311 3.6681266 1103.3357
+185861.0641236354 3.6680872 1103.3949
+185862.0641237397 3.6680086 1103.3555
+185863.064123844 3.6681659 1103.3752
+185864.0641239483 3.6679692 1103.3357
+185865.0641240526 3.6680872 1103.316
+185866.064124157 3.6682053 1103.3555
+185867.0641242613 3.6681659 1103.3752
+185868.0641243656 3.6681266 1103.2765
+185869.0641244699 3.6681659 1103.316
+185870.0641245742 3.6682053 1103.3357
+185871.0641246785 3.6681266 1103.3555
+185872.0641247828 3.6680479 1103.2369
+185873.0641248871 3.6681266 1103.3752
+185874.0641249914 3.6680872 1103.3357
+185875.0641250957 3.6681266 1103.3752
+185876.0641252 3.6682053 1103.316
+185877.0641253043 3.6681659 1103.3555
+185878.0641254087 3.6681266 1103.3555
+185879.064125513 3.6682842 1103.3752
+185880.0641256173 3.6681659 1103.4542
+185881.0641257216 3.6682053 1103.2765
+185882.0641258259 3.6681659 1103.3357
+185883.0641259302 3.6682446 1103.3555
+185884.0641260345 3.6682842 1103.316
+185885.0641261388 3.6682446 1103.2963
+185886.0641262431 3.6682053 1103.3357
+185887.0641263474 3.6682053 1103.3555
+185888.0641264517 3.6682446 1103.316
+185889.064126556 3.6682053 1103.3949
+185890.0641266603 3.6682842 1103.316
+185891.0641267647 3.6682446 1103.4147
+185892.064126869 3.6682446 1103.2963
+185893.0641269733 3.6682842 1103.3555
+185894.0641270776 3.6682053 1103.316
+185895.0641271819 3.6681659 1103.2963
+185896.0641272862 3.6682446 1103.3357
+185897.0641273905 3.6682842 1103.3357
+185898.0641274948 3.6684809 1103.3752
+185899.0641275991 3.6683235 1103.3357
+185900.0641277034 3.6683235 1103.3752
+185901.0641278077 3.6683235 1103.3949
+185902.064127912 3.6683629 1103.3555
+185903.0641280164 3.6683629 1103.3949
+185904.0641281207 3.6683629 1103.316
+185905.064128225 3.6684022 1103.316
+185906.0641283293 3.6683235 1103.3949
+185907.0641284336 3.6684022 1103.3555
+185908.0641285379 3.6683629 1103.316
+185909.0641286422 3.6684022 1103.2765
+185910.0641287465 3.6684809 1103.3752
+185911.0641288508 3.6684022 1103.316
+185912.0641289551 3.6684809 1103.3555
+185913.0641290594 3.6684809 1103.3555
+185914.0641291637 3.6684809 1103.3555
+185915.0641292681 3.6683629 1103.4147
+185916.0641293724 3.6684022 1103.316
+185917.0641294767 3.6684022 1103.3949
+185918.064129581 3.6685202 1103.2963
+185919.0641296853 3.6684809 1103.3555
+185920.0641297896 3.6684809 1103.316
+185921.0641298939 3.6684022 1103.3752
+185922.0641299982 3.6685202 1103.2765
+185923.0641301025 3.6685202 1103.3357
+185924.0641302068 3.6684415 1103.4147
+185925.0641303111 3.6685991 1103.3752
+185926.0641304154 3.6685202 1103.3357
+185927.0641305198 3.6685202 1103.3357
+185928.0641306241 3.6684809 1103.2567
+185929.0641307284 3.6685991 1103.316
+185930.0641308327 3.6685202 1103.3752
+185931.064130937 3.6684415 1103.3949
+185932.0641310413 3.6685991 1103.2765
+185933.0641311456 3.6685991 1103.3752
+185934.0641312499 3.6686778 1103.2765
+185935.0641313542 3.6685202 1103.3357
+185936.0641314585 3.6684809 1103.3555
+185937.0641315628 3.6686778 1103.2963
+185938.0641316671 3.6685991 1103.3949
+185939.0641317714 3.6685991 1103.3555
+185940.0641318758 3.6685596 1103.2765
+185941.0641319801 3.6685991 1103.4147
+185942.0641320844 3.6685991 1103.4147
+185943.0641321887 3.6687565 1103.3555
+185944.064132293 3.6685991 1103.316
+185945.0641323973 3.6685991 1103.2963
+185946.0641325016 3.6686778 1103.3949
+185947.0641326059 3.6687171 1103.3949
+185948.0641327102 3.6686385 1103.316
+185949.0641328145 3.6686778 1103.2765
+185950.0641329188 3.6687171 1103.316
+185951.0641330231 3.6687958 1103.3949
+185952.0641331275 3.6687171 1103.3949
+185953.0641332318 3.6685991 1103.3752
+185954.0641333361 3.6687171 1103.3752
+185955.0641334404 3.6687565 1103.2963
+185956.0641335447 3.6686385 1103.3555
+185957.064133649 3.6687565 1103.4344
+185958.0641337533 3.6687958 1103.316
+185959.0641338576 3.6687958 1103.3752
+185960.0641339619 3.6687958 1103.3555
+185961.0641340662 3.6687171 1103.4344
+185962.0641341705 3.6687171 1103.316
+185963.0641342748 3.6687565 1103.3357
+185964.0641343792 3.6687171 1103.3555
+185965.0641344835 3.6687958 1103.3555
+185966.0641345878 3.6686778 1103.1975
+185967.0641346921 3.6687565 1103.3949
+185968.0641347964 3.6689141 1103.3555
+185969.0641349007 3.6688352 1103.2567
+185970.064135005 3.6688352 1103.4344
+185971.0641351093 3.6689534 1103.3357
+185972.0641352136 3.6687565 1103.3949
+185973.0641353179 3.6688745 1103.316
+185974.0641354222 3.6689928 1103.316
+185975.0641355265 3.6689141 1103.3555
+185976.0641356308 3.6688745 1103.3555
+185977.0641357352 3.6689141 1103.3752
+185978.0641358395 3.6688745 1103.3752
+185979.0641359438 3.6688352 1103.2963
+185980.0641360481 3.6688745 1103.4147
+185981.0641361524 3.6689534 1103.2963
+185982.0641362567 3.6689141 1103.316
+185983.064136361 3.6689534 1103.4147
+185984.0641364653 3.6689534 1103.3555
+185985.0641365696 3.6689534 1103.3752
+185986.0641366739 3.6688352 1103.316
+185987.0641367782 3.6689534 1103.2765
+185988.0641368825 3.6689534 1103.2963
+185989.0641369869 3.6689534 1103.3357
+185990.0641370912 3.6689534 1103.3555
+185991.0641371955 3.6689928 1103.2765
+185992.0641372998 3.6689534 1103.3752
+185993.0641374041 3.6689928 1103.2567
+185994.0641375084 3.6690321 1103.3555
+185995.0641376127 3.6689141 1103.3357
+185996.064137717 3.6690714 1103.2765
+185997.0641378213 3.6690714 1103.3357
+185998.0641379256 3.6688745 1103.2963
+185999.0641380299 3.6689534 1103.4147
+186000.0641381342 3.6690321 1103.3752
+186001.0641382386 3.6690321 1103.2963
+186002.0641383429 3.6689928 1103.3752
+186003.0641384472 3.6690321 1103.4344
+186004.0641385515 3.6690714 1103.2963
+186005.0641386558 3.6691108 1103.4147
+186006.0641387601 3.6691108 1103.2765
+186007.0641388644 3.6690321 1103.3949
+186008.0641389687 3.6690321 1103.2567
+186009.064139073 3.6691108 1103.4542
+186010.0641391773 3.6691501 1103.3555
+186011.0641392816 3.6690714 1103.3752
+186012.0641393859 3.6691108 1103.3555
+186013.0641394902 3.6690714 1103.2172
+186014.0641395946 3.6691501 1103.3357
+186015.0641396989 3.6691108 1103.3949
+186016.0641398032 3.669229 1103.3555
+186017.0641399075 3.6691108 1103.2963
+186018.0641400118 3.6691108 1103.2765
+186019.0641401161 3.6691108 1103.4344
+186020.0641402204 3.6691108 1103.316
+186021.0641403247 3.669229 1103.3752
+186022.064140429 3.6691501 1103.3555
+186023.0641405333 3.6691895 1103.316
+186024.0641406376 3.6691501 1103.4147
+186025.0641407419 3.6691895 1103.3752
+186026.0641408463 3.6691895 1103.4147
+186027.0641409506 3.669229 1103.3555
+186028.0641410549 3.6691895 1103.3555
+186029.0641411592 3.6691895 1103.3555
+186030.0641412635 3.6693077 1103.3752
+186031.0641413678 3.669229 1103.3555
+186032.0641414721 3.6691895 1103.3357
+186033.0641415764 3.6692684 1103.2963
+186034.0641416807 3.6691895 1103.4542
+186035.064141785 3.669229 1103.3357
+186036.0641418893 3.6692684 1103.3357
+186037.0641419936 3.669229 1103.316
+186038.064142098 3.6693077 1103.2765
+186039.0641422023 3.6692684 1103.3555
+186040.0641423066 3.6693864 1103.2963
+186041.0641424109 3.6693077 1103.2765
+186042.0641425152 3.6693077 1103.3752
+186043.0641426195 3.669347 1103.316
+186044.0641427238 3.6693864 1103.2369
+186045.0641428281 3.669347 1103.3949
+186046.0641429324 3.6693864 1103.2963
+186047.0641430367 3.669347 1103.2963
+186048.064143141 3.6693864 1103.2963
+186049.0641432453 3.6693864 1103.3949
+186050.0641433496 3.6693077 1103.316
+186051.064143454 3.6694257 1103.316
+186052.0641435583 3.6693077 1103.3555
+186053.0641436626 3.6694257 1103.316
+186054.0641437669 3.6694257 1103.316
+186055.0641438712 3.669347 1103.3555
+186056.0641439755 3.6694257 1103.3555
+186057.0641440798 3.669347 1103.3752
+186058.0641441841 3.6693864 1103.3752
+186059.0641442884 3.6694651 1103.316
+186060.0641443927 3.6694651 1103.4147
+186061.064144497 3.6694257 1103.3752
+186062.0641446013 3.669544 1103.3555
+186063.0641447057 3.6694651 1103.4344
+186064.06414481 3.6695046 1103.316
+186065.0641449143 3.669544 1103.3357
+186066.0641450186 3.6694651 1103.3555
+186067.0641451229 3.6694257 1103.2963
+186068.0641452272 3.669544 1103.3949
+186069.0641453315 3.6695046 1103.4344
+186070.0641454358 3.6694651 1103.3949
+186071.0641455401 3.6694257 1103.3357
+186072.0641456444 3.669544 1103.4344
+186073.0641457487 3.669544 1103.3752
+186074.064145853 3.6695046 1103.316
+186075.0641459574 3.669544 1103.3357
+186076.0641460617 3.6696227 1103.3357
+186077.064146166 3.6695833 1103.3752
+186078.0641462703 3.6696227 1103.3752
+186079.0641463746 3.6696227 1103.3357
+186080.0641464789 3.6695046 1103.316
+186081.0641465832 3.669544 1103.3357
+186082.0641466875 3.6696227 1103.3555
+186083.0641467918 3.6695833 1103.2963
+186084.0641468961 3.669662 1103.3752
+186085.0641470004 3.6696227 1103.2765
+186086.0641471047 3.6696227 1103.3357
+186087.0641472091 3.669662 1103.3555
+186088.0641473134 3.669662 1103.3357
+186089.0641474177 3.6695833 1103.3949
+186090.064147522 3.669544 1103.3357
+186091.0641476263 3.669544 1103.3555
+186092.0641477306 3.6697407 1103.3357
+186093.0641478349 3.6696227 1103.4344
+186094.0641479392 3.669662 1103.3752
+186095.0641480435 3.6697407 1103.3357
+186096.0641481478 3.6697407 1103.4542
+186097.0641482521 3.6697407 1103.3555
+186098.0641483564 3.6697407 1103.3357
+186099.0641484607 3.66978 1103.2963
+186100.0641485651 3.669662 1103.3555
+186101.0641486694 3.6697013 1103.2963
+186102.0641487737 3.6698196 1103.3752
+186103.064148878 3.6697407 1103.4147
+186104.0641489823 3.66978 1103.2963
+186105.0641490866 3.66978 1103.2963
+186106.0641491909 3.6698589 1103.3555
+186107.0641492952 3.6697407 1103.3752
+186108.0641493995 3.66978 1103.2765
+186109.0641495038 3.6697407 1103.3949
+186110.0641496081 3.6698589 1103.3752
+186111.0641497124 3.6697013 1103.2963
+186112.0641498168 3.6697407 1103.3949
+186113.0641499211 3.6698589 1103.3357
+186114.0641500254 3.6698196 1103.3555
+186115.0641501297 3.6698196 1103.3357
+186116.064150234 3.6698983 1103.4147
+186117.0641503383 3.6698196 1103.316
+186118.0641504426 3.6698589 1103.3555
+186119.0641505469 3.6699376 1103.3555
+186120.0641506512 3.6698196 1103.3555
+186121.0641507555 3.6698589 1103.3752
+186122.0641508598 3.6698983 1103.3357
+186123.0641509641 3.6698589 1103.316
+186124.0641510685 3.6698983 1103.3752
+186125.0641511728 3.6698983 1103.3752
+186126.0641512771 3.66978 1103.3949
+186127.0641513814 3.6698589 1103.316
+186128.0641514857 3.6699376 1103.316
+186129.06415159 3.6699376 1103.3752
+186130.0641516943 3.6699376 1103.2963
+186131.0641517986 3.6698589 1103.3752
+186132.0641519029 3.6698983 1103.316
+186133.0641520072 3.6699376 1103.3555
+186134.0641521115 3.6698983 1103.4344
+186135.0641522158 3.6700163 1103.3357
+186136.0641523201 3.6698589 1103.3752
+186137.0641524245 3.6699769 1103.316
+186138.0641525288 3.6699769 1103.2963
+186139.0641526331 3.6700163 1103.2765
+186140.0641527374 3.6698983 1103.2765
+186141.0641528417 3.6700556 1103.316
+186142.064152946 3.6699769 1103.3357
+186143.0641530503 3.6699769 1103.3752
+186144.0641531546 3.6700163 1103.2765
+186145.0641532589 3.6700556 1103.3357
+186146.0641533632 3.6700163 1103.2963
+186147.0641534675 3.6700163 1103.3949
+186148.0641535718 3.6701345 1103.3357
+186149.0641536762 3.6699769 1103.316
+186150.0641537805 3.670095 1103.3555
+186151.0641538848 3.6699376 1103.316
+186152.0641539891 3.670095 1103.3357
+186153.0641540934 3.6700163 1103.3357
+186154.0641541977 3.6701345 1103.3949
+186155.064154302 3.670095 1103.2567
+186156.0641544063 3.6701739 1103.4147
+186157.0641545106 3.6701345 1103.2963
+186158.0641546149 3.6700163 1103.3357
+186159.0641547192 3.6701739 1103.2765
+186160.0641548235 3.6701345 1103.3752
+186161.0641549279 3.6700163 1103.3949
+186162.0641550322 3.6701739 1103.3555
+186163.0641551365 3.6701739 1103.3555
+186164.0641552408 3.670095 1103.3949
+186165.0641553451 3.6701345 1103.316
+186166.0641554494 3.6702526 1103.3357
+186167.0641555537 3.6701345 1103.4147
+186168.064155658 3.6701739 1103.2567
+186169.0641557623 3.670095 1103.3357
+186170.0641558666 3.670095 1103.2567
+186171.0641559709 3.6701739 1103.3752
+186172.0641560752 3.6701739 1103.316
+186173.0641561795 3.6701345 1103.2963
+186174.0641562839 3.6702526 1103.2567
+186175.0641563882 3.6701739 1103.3357
+186176.0641564925 3.6702132 1103.3555
+186177.0641565968 3.6701739 1103.474
+186178.0641567011 3.6702132 1103.3752
+186179.0641568054 3.6702526 1103.2765
+186180.0641569097 3.6702919 1103.2567
+186181.064157014 3.6703706 1103.3555
+186182.0641571183 3.6702526 1103.3752
+186183.0641572226 3.6702526 1103.2963
+186184.0641573269 3.6702132 1103.2567
+186185.0641574312 3.6703706 1103.2963
+186186.0641575356 3.6703312 1103.2963
+186187.0641576399 3.6702919 1103.3752
+186188.0641577442 3.6702919 1103.316
+186189.0641578485 3.6704099 1103.3752
+186190.0641579528 3.6703706 1103.4147
+186191.0641580571 3.6703706 1103.3555
+186192.0641581614 3.6702919 1103.2765
+186193.0641582657 3.6703706 1103.3949
+186194.06415837 3.6703312 1103.3357
+186195.0641584743 3.6703706 1103.2765
+186196.0641585786 3.6703312 1103.2765
+186197.0641586829 3.6703706 1103.3555
+186198.0641587873 3.6704495 1103.3752
+186199.0641588916 3.6703706 1103.2369
+186200.0641589959 3.6703706 1103.3357
+186201.0641591002 3.6703312 1103.3752
+186202.0641592045 3.6704099 1103.2963
+186203.0641593088 3.6704888 1103.3555
+186204.0641594131 3.6704495 1103.3555
+186205.0641595174 3.6704099 1103.316
+186206.0641596217 3.6704099 1103.2567
+186207.064159726 3.6704495 1103.3357
+186208.0641598303 3.6704495 1103.2963
+186209.0641599346 3.6704495 1103.2963
+186210.064160039 3.6704099 1103.316
+186211.0641601433 3.6705282 1103.3357
+186212.0641602476 3.6704495 1103.316
+186213.0641603519 3.6704495 1103.2963
+186214.0641604562 3.6704495 1103.3949
+186215.0641605605 3.6704888 1103.3752
+186216.0641606648 3.6704495 1103.3555
+186217.0641607691 3.6705282 1103.3555
+186218.0641608734 3.6705282 1103.2963
+186219.0641609777 3.6704099 1103.2963
+186220.064161082 3.6704888 1103.3555
+186221.0641611863 3.6705675 1103.3555
+186222.0641612906 3.6704888 1103.316
+186223.064161395 3.6705282 1103.3752
+186224.0641614993 3.6706069 1103.3555
+186225.0641616036 3.6705282 1103.3555
+186226.0641617079 3.6706069 1103.316
+186227.0641618122 3.6706462 1103.3357
+186228.0641619165 3.6705675 1103.3357
+186229.0641620208 3.6707249 1103.3555
+186230.0641621251 3.6705675 1103.3357
+186231.0641622294 3.6705675 1103.316
+186232.0641623337 3.6705675 1103.316
+186233.064162438 3.6705282 1103.316
+186234.0641625423 3.6705675 1103.316
+186235.0641626467 3.6706069 1103.3949
+186236.064162751 3.6705675 1103.3752
+186237.0641628553 3.6706855 1103.3752
+186238.0641629596 3.6706462 1103.316
+186239.0641630639 3.6707249 1103.3555
+186240.0641631682 3.6706855 1103.2567
+186241.0641632725 3.6706069 1103.2963
+186242.0641633768 3.6707249 1103.3949
+186243.0641634811 3.6707644 1103.3357
+186244.0641635854 3.6706069 1103.2567
+186245.0641636897 3.6707249 1103.3752
+186246.064163794 3.6706855 1103.3752
+186247.0641638984 3.6707644 1103.3949
+186248.0641640027 3.6708431 1103.316
+186249.064164107 3.6707644 1103.3555
+186250.0641642113 3.6708038 1103.3357
+186251.0641643156 3.6706462 1103.2567
+186252.0641644199 3.6707249 1103.316
+186253.0641645242 3.6707644 1103.3357
+186254.0641646285 3.6707644 1103.3555
+186255.0641647328 3.6707249 1103.3949
+186256.0641648371 3.6707249 1103.2963
+186257.0641649414 3.6708431 1103.3752
+186258.0641650457 3.6708038 1103.3752
+186259.06416515 3.6708825 1103.2963
+186260.0641652544 3.6708825 1103.316
+186261.0641653587 3.6708038 1103.3949
+186262.064165463 3.6708431 1103.3752
+186263.0641655673 3.6708825 1103.4542
+186264.0641656716 3.6707249 1103.3752
+186265.0641657759 3.6708825 1103.2765
+186266.0641658802 3.6708431 1103.3357
+186267.0641659845 3.6707644 1103.3949
+186268.0641660888 3.6707644 1103.3555
+186269.0641661931 3.6708431 1103.3949
+186270.0641662974 3.6709218 1103.2963
+186271.0641664017 3.6708038 1103.2765
+186272.0641665061 3.6708038 1103.3357
+186273.0641666104 3.6709218 1103.3357
+186274.0641667147 3.6709218 1103.3357
+186275.064166819 3.6709611 1103.3555
+186276.0641669233 3.6709218 1103.3357
+186277.0641670276 3.6708825 1103.2567
+186278.0641671319 3.6709218 1103.3357
+186279.0641672362 3.6708825 1103.2369
+186280.0641673405 3.6709611 1103.3949
+186281.0641674448 3.6709611 1103.3752
+186282.0641675491 3.6710005 1103.3949
+186283.0641676534 3.6710398 1103.316
+186284.0641677578 3.6710398 1103.4542
+186285.0641678621 3.6710005 1103.3752
+186286.0641679664 3.6710398 1103.2172
+186287.0641680707 3.6710398 1103.4542
+186288.064168175 3.6710794 1103.316
+186289.0641682793 3.6710398 1103.3949
+186290.0641683836 3.6710398 1103.3357
+186291.0641684879 3.6710398 1103.3357
+186292.0641685922 3.6711187 1103.316
+186293.0641686965 3.6710398 1103.316
+186294.0641688008 3.6710005 1103.4147
+186295.0641689051 3.6709611 1103.3752
+186296.0641690094 3.6709611 1103.3357
+186297.0641691138 3.6710794 1103.316
+186298.0641692181 3.6710794 1103.2963
+186299.0641693224 3.6711187 1103.4147
+186300.0641694267 3.6710794 1103.3357
+186301.064169531 3.6710005 1103.2963
+186302.0641696353 3.6710794 1103.3949
+186303.0641697396 3.6710794 1103.3555
+186304.0641698439 3.6711187 1103.2765
+186305.0641699482 3.6711187 1103.3357
+186306.0641700525 3.6710398 1103.3357
+186307.0641701568 3.6711187 1103.3949
+186308.0641702611 3.6711974 1103.316
+186309.0641703655 3.6711187 1103.3949
+186310.0641704698 3.6711581 1103.3949
+186311.0641705741 3.6711581 1103.3752
+186312.0641706784 3.6711974 1103.3357
+186313.0641707827 3.6711581 1103.3949
+186314.064170887 3.6712368 1103.316
+186315.0641709913 3.6711581 1103.3555
+186316.0641710956 3.6711581 1103.3555
+186317.0641711999 3.6711974 1103.3357
+186318.0641713042 3.6711187 1103.4542
+186319.0641714085 3.6711974 1103.3949
+186320.0641715128 3.6712368 1103.3752
+186321.0641716172 3.6711974 1103.3357
+186322.0641717215 3.6711974 1103.3357
+186323.0641718258 3.6712761 1103.3357
+186324.0641719301 3.6712368 1103.3555
+186325.0641720344 3.6711974 1103.4147
+186326.0641721387 3.6712761 1103.3752
+186327.064172243 3.6712368 1103.316
+186328.0641723473 3.6712761 1103.316
+186329.0641724516 3.671355 1103.316
+186330.0641725559 3.6712761 1103.3949
+186331.0641726602 3.6712761 1103.3555
+186332.0641727645 3.6711581 1103.3555
+186333.0641728689 3.6713154 1103.3555
+186334.0641729732 3.6713943 1103.316
+186335.0641730775 3.6713943 1103.3357
+186336.0641731818 3.671355 1103.3752
+186337.0641732861 3.6713154 1103.4147
+186338.0641733904 3.671355 1103.316
+186339.0641734947 3.6713943 1103.3357
+186340.064173599 3.6713943 1103.3555
+186341.0641737033 3.671473 1103.3555
+186342.0641738076 3.671355 1103.316
+186343.0641739119 3.6712761 1103.3752
+186344.0641740162 3.6714337 1103.3357
+186345.0641741205 3.6713154 1103.3949
+186346.0641742249 3.671355 1103.3555
+186347.0641743292 3.6713943 1103.3949
+186348.0641744335 3.6713943 1103.316
+186349.0641745378 3.6713943 1103.2963
+186350.0641746421 3.6714337 1103.3752
+186351.0641747464 3.671591 1103.3752
+186352.0641748507 3.671473 1103.3555
+186353.064174955 3.671473 1103.4147
+186354.0641750593 3.6713943 1103.4147
+186355.0641751636 3.671473 1103.2963
+186356.0641752679 3.671473 1103.3555
+186357.0641753722 3.671591 1103.3555
+186358.0641754766 3.671473 1103.3949
+186359.0641755809 3.6714337 1103.3949
+186360.0641756852 3.671473 1103.2963
+186361.0641757895 3.671473 1103.3555
+186362.0641758938 3.671473 1103.3752
+186363.0641759981 3.671591 1103.3752
+186364.0641761024 3.6715124 1103.3949
+186365.0641762067 3.6715517 1103.3555
+186366.064176311 3.6715517 1103.2963
+186367.0641764153 3.6716304 1103.3357
+186368.0641765196 3.671591 1103.3357
+186369.0641766239 3.671591 1103.3555
+186370.0641767283 3.6715124 1103.3752
+186371.0641768326 3.671591 1103.2963
+186372.0641769369 3.6715124 1103.3555
+186373.0641770412 3.671591 1103.2765
+186374.0641771455 3.6716304 1103.316
+186375.0641772498 3.67167 1103.316
+186376.0641773541 3.6716304 1103.316
+186377.0641774584 3.67167 1103.4147
+186378.0641775627 3.6716304 1103.3752
+186379.064177667 3.671591 1103.3949
+186380.0641777713 3.6716304 1103.316
+186381.0641778756 3.6717093 1103.2567
+186382.0641779799 3.6715517 1103.2963
+186383.0641780843 3.6716304 1103.316
+186384.0641781886 3.67167 1103.3949
+186385.0641782929 3.6717093 1103.316
+186386.0641783972 3.6716304 1103.316
+186387.0641785015 3.671788 1103.3357
+186388.0641786058 3.67167 1103.3752
+186389.0641787101 3.6717093 1103.3752
+186390.0641788144 3.671788 1103.4147
+186391.0641789187 3.6717093 1103.4147
+186392.064179023 3.6717486 1103.3357
+186393.0641791273 3.6717486 1103.316
+186394.0641792316 3.6716304 1103.4147
+186395.064179336 3.6717486 1103.3555
+186396.0641794403 3.6717486 1103.3555
+186397.0641795446 3.671906 1103.3752
+186398.0641796489 3.6717093 1103.3555
+186399.0641797532 3.6718273 1103.3357
+186400.0641798575 3.6718667 1103.3555
+186401.0641799618 3.6717486 1103.3555
+186402.0641800661 3.671788 1103.2765
+186403.0641801704 3.67167 1103.2369
+186404.0641802747 3.6718667 1103.316
+186405.064180379 3.6718273 1103.3752
+186406.0641804833 3.6718273 1103.3357
+186407.0641805877 3.6718667 1103.316
+186408.064180692 3.671906 1103.3752
+186409.0641807963 3.671788 1103.2963
+186410.0641809006 3.6719453 1103.316
+186411.0641810049 3.6717486 1103.3949
+186412.0641811092 3.6718667 1103.3357
+186413.0641812135 3.671906 1103.2765
+186414.0641813178 3.671906 1103.3357
+186415.0641814221 3.671906 1103.2963
+186416.0641815264 3.6718273 1103.3357
+186417.0641816307 3.671906 1103.316
+186418.064181735 3.671906 1103.3949
+186419.0641818393 3.6719453 1103.3357
+186420.0641819437 3.6719453 1103.316
+186421.064182048 3.6719849 1103.2963
+186422.0641821523 3.6719849 1103.2963
+186423.0641822566 3.671906 1103.3555
+186424.0641823609 3.671906 1103.2765
+186425.0641824652 3.671906 1103.2963
+186426.0641825695 3.6718273 1103.316
+186427.0641826738 3.671906 1103.2765
+186428.0641827781 3.6720636 1103.3752
+186429.0641828824 3.6718667 1103.3555
+186430.0641829867 3.6721029 1103.316
+186431.064183091 3.6720636 1103.4147
+186432.0641831954 3.6720243 1103.3357
+186433.0641832997 3.6720636 1103.2567
+186434.064183404 3.6720243 1103.2963
+186435.0641835083 3.6719849 1103.3555
+186436.0641836126 3.6719453 1103.3949
+186437.0641837169 3.6721029 1103.316
+186438.0641838212 3.6720243 1103.3752
+186439.0641839255 3.6721816 1103.316
+186440.0641840298 3.6719849 1103.3357
+186441.0641841341 3.6720636 1103.3949
+186442.0641842384 3.6721423 1103.3555
+186443.0641843427 3.6720243 1103.316
+186444.0641844471 3.6721029 1103.3357
+186445.0641845514 3.6721029 1103.316
+186446.0641846557 3.6721029 1103.2963
+186447.06418476 3.6720636 1103.3555
+186448.0641848643 3.6721423 1103.316
+186449.0641849686 3.6721029 1103.3949
+186450.0641850729 3.6721423 1103.4147
+186451.0641851772 3.6721816 1103.3555
+186452.0641852815 3.6721423 1103.4344
+186453.0641853858 3.6721423 1103.2963
+186454.0641854901 3.6721423 1103.316
+186455.0641855944 3.6721423 1103.4147
+186456.0641856988 3.6721816 1103.3357
+186457.0641858031 3.6721029 1103.4147
+186458.0641859074 3.6721029 1103.3555
+186459.0641860117 3.6721423 1103.2765
+186460.064186116 3.6722209 1103.2963
+186461.0641862203 3.6722603 1103.3949
+186462.0641863246 3.6722999 1103.2369
+186463.0641864289 3.6721816 1103.2765
+186464.0641865332 3.6722603 1103.4147
+186465.0641866375 3.6722209 1103.4147
+186466.0641867418 3.6722603 1103.316
+186467.0641868461 3.6722209 1103.4344
+186468.0641869504 3.6721029 1103.3555
+186469.0641870548 3.6721816 1103.3949
+186470.0641871591 3.6722999 1103.2963
+186471.0641872634 3.6722603 1103.316
+186472.0641873677 3.6721423 1103.3555
+186473.064187472 3.6723392 1103.3752
+186474.0641875763 3.6723392 1103.3357
+186475.0641876806 3.6722999 1103.3752
+186476.0641877849 3.6723392 1103.3555
+186477.0641878892 3.6723785 1103.2963
+186478.0641879935 3.6722603 1103.316
+186479.0641880978 3.6723392 1103.4938
+186480.0641882021 3.6723392 1103.3555
+186481.0641883065 3.6723785 1103.3555
+186482.0641884108 3.6722999 1103.3752
+186483.0641885151 3.6724179 1103.316
+186484.0641886194 3.6722999 1103.2765
+186485.0641887237 3.6724179 1103.3555
+186486.064188828 3.6724179 1103.3752
+186487.0641889323 3.6724179 1103.4344
+186488.0641890366 3.6724179 1103.3752
+186489.0641891409 3.6723392 1103.3555
+186490.0641892452 3.6724179 1103.4147
+186491.0641893495 3.6724572 1103.316
+186492.0641894538 3.6724966 1103.3357
+186493.0641895582 3.6725359 1103.316
+186494.0641896625 3.6724179 1103.2963
+186495.0641897668 3.6724572 1103.4147
+186496.0641898711 3.6723785 1103.316
+186497.0641899754 3.6724966 1103.3555
+186498.0641900797 3.6724966 1103.3555
+186499.064190184 3.6726148 1103.3949
+186500.0641902883 3.6724572 1103.3949
+186501.0641903926 3.6724179 1103.3357
+186502.0641904969 3.6725752 1103.3555
+186503.0641906012 3.6724966 1103.3357
+186504.0641907055 3.6724572 1103.4147
+186505.0641908098 3.6725752 1103.3357
+186506.0641909142 3.6725359 1103.4147
+186507.0641910185 3.6723785 1103.3357
+186508.0641911228 3.6725752 1103.3752
+186509.0641912271 3.6724966 1103.3752
+186510.0641913314 3.6726148 1103.3555
+186511.0641914357 3.6725752 1103.3555
+186512.06419154 3.6726148 1103.3357
+186513.0641916443 3.6725752 1103.3752
+186514.0641917486 3.6725752 1103.474
+186515.0641918529 3.6724966 1103.4147
+186516.0641919572 3.6725359 1103.3555
+186517.0641920615 3.6726148 1103.2963
+186518.0641921659 3.6726542 1103.2963
+186519.0641922702 3.6725752 1103.4344
+186520.0641923745 3.6726148 1103.3949
+186521.0641924788 3.6726542 1103.3357
+186522.0641925831 3.6725752 1103.3357
+186523.0641926874 3.6727328 1103.2567
+186524.0641927917 3.6725359 1103.316
+186525.064192896 3.6726542 1103.3357
+186526.0641930003 3.6727328 1103.3555
+186527.0641931046 3.6726542 1103.3357
+186528.0641932089 3.6727328 1103.2567
+186529.0641933132 3.6727722 1103.3752
+186530.0641934176 3.6727328 1103.3555
+186531.0641935219 3.6727722 1103.2765
+186532.0641936262 3.6726935 1103.3357
+186533.0641937305 3.6728508 1103.4542
+186534.0641938348 3.6727328 1103.3555
+186535.0641939391 3.6728115 1103.3949
+186536.0641940434 3.6726542 1103.4147
+186537.0641941477 3.6726935 1103.3357
+186538.064194252 3.6728115 1103.2765
+186539.0641943563 3.6728508 1103.3555
+186540.0641944606 3.6727722 1103.3555
+186541.0641945649 3.6728508 1103.316
+186542.0641946692 3.6728115 1103.4147
+186543.0641947736 3.6727722 1103.3555
+186544.0641948779 3.6727722 1103.3357
+186545.0641949822 3.6729298 1103.2567
+186546.0641950865 3.6728508 1103.3357
+186547.0641951908 3.6728508 1103.3752
+186548.0641952951 3.6727722 1103.3752
+186549.0641953994 3.6727722 1103.316
+186550.0641955037 3.6727722 1103.3357
+186551.064195608 3.6728902 1103.3357
+186552.0641957123 3.6728902 1103.3752
+186553.0641958166 3.6727722 1103.4147
+186554.0641959209 3.6728902 1103.4147
+186555.0641960253 3.6729691 1103.2963
+186556.0641961296 3.6729298 1103.4147
+186557.0641962339 3.6729298 1103.3555
+186558.0641963382 3.6728902 1103.3555
+186559.0641964425 3.6728115 1103.316
+186560.0641965468 3.6729298 1103.3357
+186561.0641966511 3.6728902 1103.3752
+186562.0641967554 3.6729298 1103.316
+186563.0641968597 3.6729691 1103.3752
+186564.064196964 3.6730084 1103.3555
+186565.0641970683 3.6728115 1103.3555
+186566.0641971726 3.6729691 1103.3752
+186567.064197277 3.6729298 1103.4147
+186568.0641973813 3.6729691 1103.2963
+186569.0641974856 3.6730478 1103.3752
+186570.0641975899 3.6730871 1103.3949
+186571.0641976942 3.6728902 1103.316
+186572.0641977985 3.6730871 1103.3357
+186573.0641979028 3.6730871 1103.3555
+186574.0641980071 3.6730478 1103.3752
+186575.0641981114 3.6730478 1103.4542
+186576.0641982157 3.6730478 1103.3752
+186577.06419832 3.6730871 1103.3555
+186578.0641984243 3.6731265 1103.3949
+186579.0641985286 3.6730871 1103.3752
+186580.064198633 3.6730478 1103.316
+186581.0641987373 3.6730478 1103.316
+186582.0641988416 3.6731265 1103.316
+186583.0641989459 3.6730084 1103.4147
+186584.0641990502 3.6730871 1103.3357
+186585.0641991545 3.6733234 1103.3752
+186586.0641992588 3.6730478 1103.2172
+186587.0641993631 3.6731265 1103.3752
+186588.0641994674 3.6730871 1103.316
+186589.0641995717 3.6731658 1103.3357
+186590.064199676 3.6732447 1103.3555
+186591.0641997803 3.6731265 1103.4147
+186592.0641998847 3.6732447 1103.3752
+186593.064199989 3.6731265 1103.3752
+186594.0642000933 3.6731265 1103.2963
+186595.0642001976 3.6732054 1103.3949
+186596.0642003019 3.6732054 1103.3752
+186597.0642004062 3.6732054 1103.3949
+186598.0642005105 3.6732054 1103.3949
+186599.0642006148 3.6731658 1103.316
+186600.0642007191 3.6732054 1103.3357
+186601.0642008234 3.6732841 1103.2963
+186602.0642009277 3.6732841 1103.3752
+186603.064201032 3.6732447 1103.3949
+186604.0642011364 3.6732447 1103.2963
+186605.0642012407 3.6732054 1103.3949
+186606.064201345 3.6732054 1103.2765
+186607.0642014493 3.6732841 1103.2963
+186608.0642015536 3.6733627 1103.4542
+186609.0642016579 3.6733234 1103.2963
+186610.0642017622 3.6733627 1103.3752
+186611.0642018665 3.6733234 1103.3752
+186612.0642019708 3.6733234 1103.3949
+186613.0642020751 3.6733627 1103.3949
+186614.0642021794 3.6733234 1103.3752
+186615.0642022837 3.6733234 1103.316
+186616.0642023881 3.6732841 1103.2963
+186617.0642024924 3.6732447 1103.3752
+186618.0642025967 3.6734414 1103.3949
+186619.064202701 3.6733627 1103.2369
+186620.0642028053 3.6732841 1103.3949
+186621.0642029096 3.6733234 1103.3752
+186622.0642030139 3.6734021 1103.2963
+186623.0642031182 3.6734021 1103.2765
+186624.0642032225 3.6733234 1103.4147
+186625.0642033268 3.6734021 1103.3357
+186626.0642034311 3.6733234 1103.3357
+186627.0642035354 3.6734414 1103.4344
+186628.0642036397 3.6734414 1103.316
+186629.0642037441 3.6734021 1103.3555
+186630.0642038484 3.6734414 1103.3949
+186631.0642039527 3.6734414 1103.3357
+186632.064204057 3.6734807 1103.3357
+186633.0642041613 3.6734414 1103.316
+186634.0642042656 3.6734807 1103.4542
+186635.0642043699 3.6735597 1103.4344
+186636.0642044742 3.6735203 1103.3752
+186637.0642045785 3.6735597 1103.2963
+186638.0642046828 3.6734807 1103.316
+186639.0642047871 3.6734414 1103.3555
+186640.0642048914 3.6734807 1103.3555
+186641.0642049958 3.6734807 1103.316
+186642.0642051001 3.6735597 1103.316
+186643.0642052044 3.6734807 1103.2765
+186644.0642053087 3.6734807 1103.4542
+186645.064205413 3.6735597 1103.3357
+186646.0642055173 3.6735203 1103.3555
+186647.0642056216 3.6735203 1103.316
+186648.0642057259 3.6735203 1103.4147
+186649.0642058302 3.6735597 1103.3357
+186650.0642059345 3.6735203 1103.3357
+186651.0642060388 3.673599 1103.3949
+186652.0642061431 3.6735203 1103.2765
+186653.0642062475 3.6735203 1103.3752
+186654.0642063518 3.6735203 1103.2765
+186655.0642064561 3.6736777 1103.3555
+186656.0642065604 3.6735203 1103.3949
+186657.0642066647 3.673599 1103.4344
+186658.064206769 3.673599 1103.3752
+186659.0642068733 3.6735203 1103.3752
+186660.0642069776 3.673599 1103.3949
+186661.0642070819 3.673717 1103.4344
+186662.0642071862 3.673717 1103.3357
+186663.0642072905 3.6736777 1103.4147
+186664.0642073948 3.673717 1103.316
+186665.0642074991 3.673717 1103.3555
+186666.0642076035 3.6735597 1103.3949
+186667.0642077078 3.6736383 1103.3949
+186668.0642078121 3.6737564 1103.4147
+186669.0642079164 3.6737564 1103.316
+186670.0642080207 3.673717 1103.3752
+186671.064208125 3.6737957 1103.3555
+186672.0642082293 3.6737564 1103.3555
+186673.0642083336 3.6737957 1103.3357
+186674.0642084379 3.6736777 1103.3752
+186675.0642085422 3.6737564 1103.2963
+186676.0642086465 3.6737564 1103.4147
+186677.0642087508 3.673914 1103.3752
+186678.0642088552 3.6737957 1103.4147
+186679.0642089595 3.6738746 1103.3949
+186680.0642090638 3.6737564 1103.316
+186681.0642091681 3.6738746 1103.316
+186682.0642092724 3.6737957 1103.4344
+186683.0642093767 3.6738353 1103.3555
+186684.064209481 3.673914 1103.3752
+186685.0642095853 3.6738746 1103.3752
+186686.0642096896 3.6737564 1103.3949
+186687.0642097939 3.673914 1103.3357
+186688.0642098982 3.6738746 1103.316
+186689.0642100025 3.6738353 1103.3752
+186690.0642101069 3.6738353 1103.3555
+186691.0642102112 3.673914 1103.3752
+186692.0642103155 3.6737564 1103.4344
+186693.0642104198 3.673914 1103.4147
+186694.0642105241 3.6738746 1103.3949
+186695.0642106284 3.6739533 1103.3357
+186696.0642107327 3.674032 1103.3555
+186697.064210837 3.673914 1103.3357
+186698.0642109413 3.6738746 1103.3752
+186699.0642110456 3.6739926 1103.2369
+186700.0642111499 3.673914 1103.4147
+186701.0642112542 3.6738746 1103.3555
+186702.0642113585 3.6739533 1103.3949
+186703.0642114629 3.6739926 1103.3555
+186704.0642115672 3.6739926 1103.3752
+186705.0642116715 3.6739533 1103.4542
+186706.0642117758 3.674032 1103.3949
+186707.0642118801 3.6739533 1103.316
+186708.0642119844 3.6741107 1103.3949
+186709.0642120887 3.6740713 1103.3357
+186710.064212193 3.673914 1103.4147
+186711.0642122973 3.6739926 1103.3555
+186712.0642124016 3.6739926 1103.3357
+186713.0642125059 3.674032 1103.3357
+186714.0642126102 3.6741502 1103.3357
+186715.0642127146 3.6741107 1103.3752
+186716.0642128189 3.674032 1103.3555
+186717.0642129232 3.6739533 1103.3752
+186718.0642130275 3.6740713 1103.2963
+186719.0642131318 3.6741502 1103.3752
+186720.0642132361 3.6741107 1103.3555
+186721.0642133404 3.6741107 1103.2567
+186722.0642134447 3.6741107 1103.316
+186723.064213549 3.6741896 1103.3555
+186724.0642136533 3.6740713 1103.3949
+186725.0642137576 3.6742682 1103.4147
+186726.0642138619 3.6741107 1103.4147
+186727.0642139663 3.6741896 1103.3555
+186728.0642140706 3.6741107 1103.4542
+186729.0642141749 3.6741107 1103.3752
+186730.0642142792 3.6742289 1103.3555
+186731.0642143835 3.6741896 1103.3357
+186732.0642144878 3.6741107 1103.316
+186733.0642145921 3.6741502 1103.3752
+186734.0642146964 3.6742289 1103.3555
+186735.0642148007 3.6741896 1103.3949
+186736.064214905 3.6741896 1103.3555
+186737.0642150093 3.6741502 1103.3357
+186738.0642151136 3.6742682 1103.316
+186739.064215218 3.6742682 1103.3752
+186740.0642153223 3.6741896 1103.3357
+186741.0642154266 3.6741107 1103.3949
+186742.0642155309 3.6742289 1103.3949
+186743.0642156352 3.6742682 1103.3555
+186744.0642157395 3.6743076 1103.4147
+186745.0642158438 3.6743469 1103.4344
+186746.0642159481 3.6742289 1103.3949
+186747.0642160524 3.6742289 1103.3555
+186748.0642161567 3.6743469 1103.2963
+186749.064216261 3.6742289 1103.3555
+186750.0642163653 3.6742682 1103.3357
+186751.0642164696 3.6743076 1103.316
+186752.064216574 3.6743863 1103.2567
+186753.0642166783 3.6743469 1103.2765
+186754.0642167826 3.6743076 1103.2765
+186755.0642168869 3.6743469 1103.3555
+186756.0642169912 3.6743076 1103.4344
+186757.0642170955 3.6743469 1103.316
+186758.0642171998 3.6743863 1103.3555
+186759.0642173041 3.6743076 1103.3555
+186760.0642174084 3.6744652 1103.3752
+186761.0642175127 3.6743076 1103.3752
+186762.064217617 3.6743469 1103.3752
+186763.0642177213 3.6743863 1103.2963
+186764.0642178257 3.6745045 1103.316
+186765.06421793 3.6744256 1103.3949
+186766.0642180343 3.6744256 1103.3949
+186767.0642181386 3.6743469 1103.3555
+186768.0642182429 3.6743469 1103.316
+186769.0642183472 3.6745045 1103.3949
+186770.0642184515 3.6744256 1103.3357
+186771.0642185558 3.6745439 1103.3357
+186772.0642186601 3.6744652 1103.2963
+186773.0642187644 3.6744652 1103.2567
+186774.0642188687 3.6744256 1103.4147
+186775.064218973 3.6745045 1103.2963
+186776.0642190774 3.6745045 1103.2567
+186777.0642191817 3.6745832 1103.3555
+186778.064219286 3.6745045 1103.3555
+186779.0642193903 3.6745439 1103.3752
+186780.0642194946 3.6744652 1103.3555
+186781.0642195989 3.6745045 1103.3357
+186782.0642197032 3.6745045 1103.3357
+186783.0642198075 3.6744652 1103.3357
+186784.0642199118 3.6744256 1103.4542
+186785.0642200161 3.6745832 1103.3357
+186786.0642201204 3.6745439 1103.316
+186787.0642202247 3.6745045 1103.3752
+186788.064220329 3.6745832 1103.3555
+186789.0642204334 3.6745832 1103.316
+186790.0642205377 3.6745832 1103.3555
+186791.064220642 3.6745045 1103.3357
+186792.0642207463 3.6746225 1103.3357
+186793.0642208506 3.6745832 1103.3357
+186794.0642209549 3.6745832 1103.3949
+186795.0642210592 3.6745832 1103.3949
+186796.0642211635 3.6745832 1103.2567
+186797.0642212678 3.6746619 1103.2963
+186798.0642213721 3.6746225 1103.2369
+186799.0642214764 3.6746619 1103.2963
+186800.0642215807 3.6746225 1103.2765
+186801.0642216851 3.6747012 1103.3555
+186802.0642217894 3.6747408 1103.3555
+186803.0642218937 3.6745832 1103.3357
+186804.064221998 3.6747012 1103.3357
+186805.0642221023 3.6747408 1103.3357
+186806.0642222066 3.6746225 1103.3949
+186807.0642223109 3.6747012 1103.3357
+186808.0642224152 3.6747801 1103.3555
+186809.0642225195 3.6747408 1103.2963
+186810.0642226238 3.6747012 1103.3555
+186811.0642227281 3.6747012 1103.316
+186812.0642228324 3.6746619 1103.3555
+186813.0642229368 3.6747408 1103.316
+186814.0642230411 3.6747012 1103.3555
+186815.0642231454 3.6747801 1103.316
+186816.0642232497 3.6748588 1103.3555
+186817.064223354 3.6748588 1103.3752
+186818.0642234583 3.6747408 1103.3357
+186819.0642235626 3.6747801 1103.3357
+186820.0642236669 3.6748981 1103.3555
+186821.0642237712 3.6748981 1103.3357
+186822.0642238755 3.6747801 1103.3555
+186823.0642239798 3.6749375 1103.3357
+186824.0642240841 3.6748588 1103.3357
+186825.0642241884 3.6748981 1103.2963
+186826.0642242928 3.6748195 1103.3752
+186827.0642243971 3.6748588 1103.2765
+186828.0642245014 3.6749375 1103.3752
+186829.0642246057 3.6749768 1103.3555
+186830.06422471 3.6749375 1103.316
+186831.0642248143 3.6748981 1103.3752
+186832.0642249186 3.6748588 1103.3752
+186833.0642250229 3.6749375 1103.3949
+186834.0642251272 3.6749375 1103.316
+186835.0642252315 3.6749375 1103.4344
+186836.0642253358 3.6749768 1103.3555
+186837.0642254401 3.6749768 1103.3752
+186838.0642255445 3.6749375 1103.3555
+186839.0642256488 3.6749768 1103.4147
+186840.0642257531 3.6749768 1103.4147
+186841.0642258574 3.6750162 1103.316
+186842.0642259617 3.6749768 1103.316
+186843.064226066 3.6749768 1103.3555
+186844.0642261703 3.6748981 1103.3357
+186845.0642262746 3.6750557 1103.3555
+186846.0642263789 3.6749375 1103.3357
+186847.0642264832 3.6750162 1103.3357
+186848.0642265875 3.6749768 1103.3357
+186849.0642266918 3.6749375 1103.3555
+186850.0642267962 3.6750951 1103.316
+186851.0642269005 3.6750951 1103.3752
+186852.0642270048 3.6749768 1103.316
+186853.0642271091 3.6750162 1103.3949
+186854.0642272134 3.6750557 1103.3555
+186855.0642273177 3.6750951 1103.3949
+186856.064227422 3.6750557 1103.3555
+186857.0642275263 3.6750951 1103.3949
+186858.0642276306 3.6750557 1103.2765
+186859.0642277349 3.6751344 1103.3949
+186860.0642278392 3.6750162 1103.316
+186861.0642279435 3.6752131 1103.4938
+186862.0642280479 3.6751344 1103.316
+186863.0642281522 3.6751344 1103.2765
+186864.0642282565 3.6750557 1103.4542
+186865.0642283608 3.6751738 1103.2963
+186866.0642284651 3.6752131 1103.316
+186867.0642285694 3.6751738 1103.3949
+186868.0642286737 3.6752131 1103.3752
+186869.064228778 3.6751344 1103.2963
+186870.0642288823 3.6751738 1103.3357
+186871.0642289866 3.6751344 1103.3752
+186872.0642290909 3.6752524 1103.2765
+186873.0642291952 3.6752918 1103.3949
+186874.0642292995 3.6751738 1103.3949
+186875.0642294039 3.6752131 1103.3357
+186876.0642295082 3.6751738 1103.3555
+186877.0642296125 3.6752131 1103.316
+186878.0642297168 3.6752131 1103.3357
+186879.0642298211 3.6751344 1103.2963
+186880.0642299254 3.6752524 1103.316
+186881.0642300297 3.6752918 1103.3949
+186882.064230134 3.6751738 1103.3949
+186883.0642302383 3.6753311 1103.3752
+186884.0642303426 3.6752131 1103.3752
+186885.0642304469 3.6753311 1103.2963
+186886.0642305512 3.6752131 1103.316
+186887.0642306556 3.6752131 1103.3357
+186888.0642307599 3.6752918 1103.316
+186889.0642308642 3.6753311 1103.4147
+186890.0642309685 3.6752131 1103.3555
+186891.0642310728 3.6753311 1103.3752
+186892.0642311771 3.67541 1103.3949
+186893.0642312814 3.6752918 1103.3752
+186894.0642313857 3.6753311 1103.3752
+186895.06423149 3.6753707 1103.4344
+186896.0642315943 3.6753707 1103.3949
+186897.0642316986 3.6754494 1103.316
+186898.0642318029 3.67541 1103.3555
+186899.0642319073 3.6753707 1103.3752
+186900.0642320116 3.6754887 1103.3357
+186901.0642321159 3.6753311 1103.3357
+186902.0642322202 3.67541 1103.3555
+186903.0642323245 3.6754494 1103.316
+186904.0642324288 3.67541 1103.4147
+186905.0642325331 3.67541 1103.3752
+186906.0642326374 3.6753707 1103.316
+186907.0642327417 3.6754494 1103.2369
+186908.064232846 3.675528 1103.2963
+186909.0642329503 3.6753311 1103.4147
+186910.0642330546 3.67541 1103.2172
+186911.0642331589 3.6754887 1103.3555
+186912.0642332633 3.67541 1103.3357
+186913.0642333676 3.675528 1103.3555
+186914.0642334719 3.67541 1103.4147
+186915.0642335762 3.6753707 1103.3949
+186916.0642336805 3.6754887 1103.3949
+186917.0642337848 3.6755674 1103.474
+186918.0642338891 3.6756067 1103.3949
+186919.0642339934 3.675528 1103.3555
+186920.0642340977 3.6756461 1103.2963
+186921.064234202 3.6755674 1103.3752
+186922.0642343063 3.6756067 1103.3949
+186923.0642344106 3.675528 1103.3357
+186924.064234515 3.6754887 1103.4344
+186925.0642346193 3.6756461 1103.316
+186926.0642347236 3.6756461 1103.3752
+186927.0642348279 3.6755674 1103.3555
+186928.0642349322 3.6756067 1103.4344
+186929.0642350365 3.6756067 1103.3752
+186930.0642351408 3.675528 1103.3555
+186931.0642352451 3.6756461 1103.316
+186932.0642353494 3.6755674 1103.4344
+186933.0642354537 3.6755674 1103.3357
+186934.064235558 3.6756067 1103.3949
+186935.0642356623 3.6756067 1103.3949
+186936.0642357667 3.6756461 1103.3949
+186937.064235871 3.6756461 1103.3949
+186938.0642359753 3.6756856 1103.3949
+186939.0642360796 3.6756856 1103.3357
+186940.0642361839 3.6756067 1103.2765
+186941.0642362882 3.6756067 1103.3752
+186942.0642363925 3.6756856 1103.316
+186943.0642364968 3.6757643 1103.3949
+186944.0642366011 3.675725 1103.3949
+186945.0642367054 3.6756461 1103.2963
+186946.0642368097 3.6756856 1103.3949
+186947.064236914 3.675725 1103.3357
+186948.0642370183 3.675725 1103.3555
+186949.0642371227 3.6757643 1103.3752
+186950.064237227 3.6757643 1103.316
+186951.0642373313 3.6757643 1103.3752
+186952.0642374356 3.6758037 1103.316
+186953.0642375399 3.675725 1103.3555
+186954.0642376442 3.6758037 1103.3555
+186955.0642377485 3.6758037 1103.4147
+186956.0642378528 3.6757643 1103.3752
+186957.0642379571 3.6758037 1103.2963
+186958.0642380614 3.6758823 1103.3555
+186959.0642381657 3.675843 1103.3357
+186960.06423827 3.6758823 1103.2765
+186961.0642383744 3.6758823 1103.4147
+186962.0642384787 3.6759217 1103.3357
+186963.064238583 3.675961 1103.3357
+186964.0642386873 3.6758823 1103.4542
+186965.0642387916 3.6758823 1103.3949
+186966.0642388959 3.675961 1103.3357
+186967.0642390002 3.675843 1103.4147
+186968.0642391045 3.675843 1103.3555
+186969.0642392088 3.6760006 1103.2963
+186970.0642393131 3.6758823 1103.2963
+186971.0642394174 3.6760399 1103.4147
+186972.0642395217 3.6759217 1103.4147
+186973.0642396261 3.6759217 1103.3949
+186974.0642397304 3.6759217 1103.3949
+186975.0642398347 3.6758823 1103.3752
+186976.064239939 3.6758823 1103.3357
+186977.0642400433 3.6760006 1103.3357
+186978.0642401476 3.6760399 1103.3752
+186979.0642402519 3.6760006 1103.3752
+186980.0642403562 3.6760006 1103.2567
+186981.0642404605 3.675961 1103.2963
+186982.0642405648 3.6760399 1103.3555
+186983.0642406691 3.6759217 1103.3752
+186984.0642407734 3.6759217 1103.316
+186985.0642408777 3.6761186 1103.2963
+186986.0642409821 3.675961 1103.3949
+186987.0642410864 3.6760006 1103.3949
+186988.0642411907 3.6760006 1103.3357
+186989.064241295 3.675961 1103.3357
+186990.0642413993 3.6760006 1103.3555
+186991.0642415036 3.6760793 1103.3555
+186992.0642416079 3.6760399 1103.3555
+186993.0642417122 3.6761973 1103.316
+186994.0642418165 3.6760399 1103.3555
+186995.0642419208 3.6760793 1103.3949
+186996.0642420251 3.6760793 1103.3357
+186997.0642421294 3.6760399 1103.3555
+186998.0642422338 3.6761973 1103.3949
+186999.0642423381 3.6761973 1103.3752
+187000.0642424424 3.6760793 1103.3752
+187001.0642425467 3.676158 1103.3357
+187002.064242651 3.676158 1103.4147
+187003.0642427553 3.6761973 1103.2172
+187004.0642428596 3.676158 1103.3555
+187005.0642429639 3.676158 1103.3555
+187006.0642430682 3.676158 1103.4147
+187007.0642431725 3.6761973 1103.316
+187008.0642432768 3.6762366 1103.2963
+187009.0642433811 3.676158 1103.3949
+187010.0642434855 3.6761973 1103.316
+187011.0642435898 3.6762366 1103.3357
+187012.0642436941 3.6762366 1103.3752
+187013.0642437984 3.676276 1103.316
+187014.0642439027 3.676276 1103.3555
+187015.064244007 3.6761973 1103.3752
+187016.0642441113 3.6763942 1103.316
+187017.0642442156 3.6762366 1103.3949
+187018.0642443199 3.6761973 1103.3357
+187019.0642444242 3.6762366 1103.316
+187020.0642445285 3.6763155 1103.316
+187021.0642446328 3.6763549 1103.2765
+187022.0642447372 3.6762366 1103.3949
+187023.0642448415 3.6763549 1103.3752
+187024.0642449458 3.6763155 1103.316
+187025.0642450501 3.676276 1103.2765
+187026.0642451544 3.6762366 1103.4147
+187027.0642452587 3.6763942 1103.3752
+187028.064245363 3.6763155 1103.3357
+187029.0642454673 3.676276 1103.3752
+187030.0642455716 3.6761973 1103.3357
+187031.0642456759 3.6763942 1103.3357
+187032.0642457802 3.6763549 1103.2963
+187033.0642458845 3.6764729 1103.4147
+187034.0642459888 3.6763155 1103.3357
+187035.0642460932 3.6764336 1103.4147
+187036.0642461975 3.6763155 1103.2963
+187037.0642463018 3.6763549 1103.3752
+187038.0642464061 3.6763549 1103.3357
+187039.0642465104 3.6763549 1103.2369
+187040.0642466147 3.6764729 1103.2963
+187041.064246719 3.6765122 1103.316
+187042.0642468233 3.6764729 1103.2963
+187043.0642469276 3.6763942 1103.2963
+187044.0642470319 3.6764336 1103.3357
+187045.0642471362 3.6764336 1103.3555
+187046.0642472405 3.6763549 1103.3555
+187047.0642473449 3.6764729 1103.3357
+187048.0642474492 3.6764336 1103.3555
+187049.0642475535 3.6764729 1103.2765
+187050.0642476578 3.6765912 1103.4147
+187051.0642477621 3.6765122 1103.4542
+187052.0642478664 3.6765516 1103.2963
+187053.0642479707 3.6765122 1103.3949
+187054.064248075 3.6765516 1103.3752
+187055.0642481793 3.6765912 1103.3357
+187056.0642482836 3.6765516 1103.316
+187057.0642483879 3.6764729 1103.3357
+187058.0642484922 3.6765122 1103.3357
+187059.0642485966 3.6765516 1103.3555
+187060.0642487009 3.6766698 1103.3752
+187061.0642488052 3.6765122 1103.3357
+187062.0642489095 3.6765516 1103.4147
+187063.0642490138 3.6766305 1103.2963
+187064.0642491181 3.6765516 1103.2963
+187065.0642492224 3.6765516 1103.3949
+187066.0642493267 3.6766305 1103.316
+187067.064249431 3.6765516 1103.2963
+187068.0642495353 3.6767092 1103.3949
+187069.0642496396 3.6766698 1103.4147
+187070.0642497439 3.6766305 1103.3555
+187071.0642498482 3.6767092 1103.3752
+187072.0642499526 3.6766698 1103.2765
+187073.0642500569 3.6766698 1103.1975
+187074.0642501612 3.6766305 1103.2963
+187075.0642502655 3.6766698 1103.316
+187076.0642503698 3.6766698 1103.316
+187077.0642504741 3.6765912 1103.3357
+187078.0642505784 3.6767485 1103.2963
+187079.0642506827 3.6765912 1103.316
+187080.064250787 3.6766698 1103.3752
+187081.0642508913 3.6767485 1103.3555
+187082.0642509956 3.6767485 1103.316
+187083.0642510999 3.6767879 1103.2963
+187084.0642512043 3.6767485 1103.3555
+187085.0642513086 3.6766698 1103.2765
+187086.0642514129 3.6767092 1103.3555
+187087.0642515172 3.6767092 1103.2369
+187088.0642516215 3.6767879 1103.2963
+187089.0642517258 3.6768272 1103.3555
+187090.0642518301 3.6768272 1103.2765
+187091.0642519344 3.6767879 1103.2567
+187092.0642520387 3.6767879 1103.3357
+187093.064252143 3.6768665 1103.316
+187094.0642522473 3.6767879 1103.316
+187095.0642523516 3.6768665 1103.3357
+187096.064252456 3.6767485 1103.3357
+187097.0642525603 3.6767879 1103.316
+187098.0642526646 3.6767879 1103.3357
+187099.0642527689 3.6769061 1103.3357
+187100.0642528732 3.6768665 1103.3949
+187101.0642529775 3.6768665 1103.4147
+187102.0642530818 3.6767879 1103.3949
+187103.0642531861 3.6768665 1103.316
+187104.0642532904 3.6769061 1103.3752
+187105.0642533947 3.6769061 1103.3555
+187106.064253499 3.6768665 1103.3752
+187107.0642536033 3.6768272 1103.2765
+187108.0642537076 3.6769061 1103.3357
+187109.064253812 3.6768665 1103.3555
+187110.0642539163 3.6768665 1103.3357
+187111.0642540206 3.6770241 1103.3949
+187112.0642541249 3.6771028 1103.316
+187113.0642542292 3.6770241 1103.4344
+187114.0642543335 3.6769454 1103.3949
+187115.0642544378 3.6769061 1103.316
+187116.0642545421 3.6770241 1103.4147
+187117.0642546464 3.6769848 1103.2963
+187118.0642547507 3.6770241 1103.2765
+187119.064254855 3.6769454 1103.3949
+187120.0642549593 3.6769454 1103.2963
+187121.0642550637 3.6770635 1103.3555
+187122.064255168 3.6769848 1103.4147
+187123.0642552723 3.6769848 1103.4344
+187124.0642553766 3.6770635 1103.4147
+187125.0642554809 3.6771028 1103.4147
+187126.0642555852 3.6771028 1103.2765
+187127.0642556895 3.6769848 1103.316
+187128.0642557938 3.6771028 1103.2963
+187129.0642558981 3.6770241 1103.3555
+187130.0642560024 3.6771028 1103.3949
+187131.0642561067 3.6771421 1103.316
+187132.064256211 3.6770635 1103.2765
+187133.0642563154 3.6769848 1103.2963
+187134.0642564197 3.6770635 1103.2369
+187135.064256524 3.6771421 1103.4542
+187136.0642566283 3.6770241 1103.4344
+187137.0642567326 3.6771028 1103.2765
+187138.0642568369 3.6771421 1103.2567
+187139.0642569412 3.6771421 1103.2765
+187140.0642570455 3.6772211 1103.3555
+187141.0642571498 3.6771815 1103.316
+187142.0642572541 3.6772211 1103.3357
+187143.0642573584 3.6772211 1103.2963
+187144.0642574627 3.6772211 1103.3752
+187145.0642575671 3.6772604 1103.316
+187146.0642576714 3.6772604 1103.2765
+187147.0642577757 3.6772604 1103.3555
+187148.06425788 3.6771815 1103.316
+187149.0642579843 3.6772211 1103.4344
+187150.0642580886 3.6772604 1103.3752
+187151.0642581929 3.6771815 1103.3555
+187152.0642582972 3.6772997 1103.3752
+187153.0642584015 3.6772211 1103.3752
+187154.0642585058 3.6772604 1103.3949
+187155.0642586101 3.6772604 1103.3357
+187156.0642587144 3.6771028 1103.3555
+187157.0642588187 3.6773784 1103.3752
+187158.0642589231 3.6772997 1103.3555
+187159.0642590274 3.6773391 1103.4147
+187160.0642591317 3.6772604 1103.3752
+187161.064259236 3.6772604 1103.316
+187162.0642593403 3.6772604 1103.3357
+187163.0642594446 3.6772211 1103.3949
+187164.0642595489 3.6773784 1103.3357
+187165.0642596532 3.6773391 1103.2765
+187166.0642597575 3.6773784 1103.4147
+187167.0642598618 3.6772604 1103.3555
+187168.0642599661 3.6773391 1103.2963
+187169.0642600704 3.6773784 1103.316
+187170.0642601748 3.6773784 1103.2963
+187171.0642602791 3.6774178 1103.3949
+187172.0642603834 3.6774178 1103.3357
+187173.0642604877 3.6773391 1103.3357
+187174.064260592 3.6773391 1103.3949
+187175.0642606963 3.6774571 1103.2765
+187176.0642608006 3.6774178 1103.3555
+187177.0642609049 3.6774178 1103.3357
+187178.0642610092 3.6773784 1103.3752
+187179.0642611135 3.6774964 1103.316
+187180.0642612178 3.6774178 1103.3949
+187181.0642613221 3.6774178 1103.3752
+187182.0642614265 3.6774178 1103.4344
+187183.0642615308 3.6774964 1103.3752
+187184.0642616351 3.6774964 1103.3357
+187185.0642617394 3.6775753 1103.4147
+187186.0642618437 3.677536 1103.3555
+187187.064261948 3.6774178 1103.3752
+187188.0642620523 3.6774571 1103.3752
+187189.0642621566 3.6774571 1103.3752
+187190.0642622609 3.6774964 1103.2765
+187191.0642623652 3.6775753 1103.316
+187192.0642624695 3.677536 1103.316
+187193.0642625738 3.6775753 1103.316
+187194.0642626781 3.677536 1103.2765
+187195.0642627825 3.6774964 1103.3949
+187196.0642628868 3.6774964 1103.4147
+187197.0642629911 3.6775753 1103.3949
+187198.0642630954 3.6776147 1103.3949
+187199.0642631997 3.677536 1103.3949
+187200.064263304 3.677536 1103.3752
+187201.0642634083 3.6775753 1103.3357
+187202.0642635126 3.6776147 1103.3949
+187203.0642636169 3.6776147 1103.2963
+187204.0642637212 3.6776934 1103.2963
+187205.0642638255 3.6776934 1103.4542
+187206.0642639298 3.677654 1103.3949
+187207.0642640342 3.677654 1103.3357
+187208.0642641385 3.6776147 1103.2567
+187209.0642642428 3.6776147 1103.3357
+187210.0642643471 3.6776147 1103.3357
+187211.0642644514 3.6776147 1103.3752
+187212.0642645557 3.6775753 1103.3752
+187213.06426466 3.677654 1103.3752
+187214.0642647643 3.6776147 1103.3555
+187215.0642648686 3.6776934 1103.3555
+187216.0642649729 3.6776934 1103.3357
+187217.0642650772 3.677772 1103.3357
+187218.0642651815 3.677772 1103.2963
+187219.0642652859 3.677654 1103.3752
+187220.0642653902 3.6778114 1103.3949
+187221.0642654945 3.677654 1103.3555
+187222.0642655988 3.6777327 1103.474
+187223.0642657031 3.677772 1103.3357
+187224.0642658074 3.6777327 1103.3949
+187225.0642659117 3.677772 1103.2963
+187226.064266016 3.6778114 1103.3752
+187227.0642661203 3.6777327 1103.3949
+187228.0642662246 3.677851 1103.4147
+187229.0642663289 3.6777327 1103.3555
+187230.0642664332 3.6778114 1103.2963
+187231.0642665375 3.677851 1103.3357
+187232.0642666419 3.6778903 1103.316
+187233.0642667462 3.6778114 1103.3555
+187234.0642668505 3.6778903 1103.316
+187235.0642669548 3.6778114 1103.3949
+187236.0642670591 3.6778903 1103.4147
+187237.0642671634 3.677851 1103.3949
+187238.0642672677 3.6778114 1103.316
+187239.064267372 3.6778903 1103.3357
+187240.0642674763 3.677851 1103.2963
+187241.0642675806 3.6778114 1103.316
+187242.0642676849 3.6779296 1103.3949
+187243.0642677892 3.6778903 1103.2567
+187244.0642678936 3.677851 1103.3555
+187245.0642679979 3.6778114 1103.316
+187246.0642681022 3.6780477 1103.3555
+187247.0642682065 3.6780477 1103.2765
+187248.0642683108 3.6779296 1103.4147
+187249.0642684151 3.677851 1103.4147
+187250.0642685194 3.6778903 1103.4147
+187251.0642686237 3.6780083 1103.2765
+187252.064268728 3.6780083 1103.3555
+187253.0642688323 3.6780477 1103.2963
+187254.0642689366 3.6779296 1103.3357
+187255.0642690409 3.6780083 1103.3752
+187256.0642691453 3.6780477 1103.2963
+187257.0642692496 3.6780477 1103.4147
+187258.0642693539 3.677969 1103.3752
+187259.0642694582 3.678087 1103.4147
+187260.0642695625 3.6779296 1103.3357
+187261.0642696668 3.6780477 1103.474
+187262.0642697711 3.678087 1103.316
+187263.0642698754 3.678087 1103.3357
+187264.0642699797 3.6780477 1103.2963
+187265.064270084 3.6781263 1103.3949
+187266.0642701883 3.6780477 1103.3752
+187267.0642702926 3.6780083 1103.3555
+187268.064270397 3.6781263 1103.3555
+187269.0642705013 3.6780477 1103.3555
+187270.0642706056 3.678087 1103.2963
+187271.0642707099 3.6781659 1103.3555
+187272.0642708142 3.6781659 1103.3357
+187273.0642709185 3.6782053 1103.2765
+187274.0642710228 3.678087 1103.3357
+187275.0642711271 3.678087 1103.3555
+187276.0642712314 3.6781659 1103.3357
+187277.0642713357 3.6782053 1103.3357
+187278.06427144 3.6781659 1103.3555
+187279.0642715443 3.6781659 1103.3752
+187280.0642716486 3.678087 1103.3752
+187281.064271753 3.6783233 1103.2765
+187282.0642718573 3.6782839 1103.2963
+187283.0642719616 3.6782053 1103.2963
+187284.0642720659 3.6782446 1103.3357
+187285.0642721702 3.6782446 1103.3357
+187286.0642722745 3.6781659 1103.3357
+187287.0642723788 3.6782446 1103.316
+187288.0642724831 3.6782446 1103.3949
+187289.0642725874 3.6782446 1103.3555
+187290.0642726917 3.6783233 1103.3752
+187291.064272796 3.6782053 1103.3555
+187292.0642729003 3.6782446 1103.4344
+187293.0642730047 3.6782839 1103.2765
+187294.064273109 3.6782446 1103.3752
+187295.0642732133 3.6782053 1103.4938
+187296.0642733176 3.6783233 1103.316
+187297.0642734219 3.6782446 1103.2172
+187298.0642735262 3.6783626 1103.316
+187299.0642736305 3.6782839 1103.3949
+187300.0642737348 3.6783233 1103.3357
+187301.0642738391 3.6784019 1103.3752
+187302.0642739434 3.6783626 1103.316
+187303.0642740477 3.6782446 1103.3555
+187304.064274152 3.6783233 1103.3949
+187305.0642742564 3.6783233 1103.3752
+187306.0642743607 3.6784415 1103.4344
+187307.064274465 3.6782839 1103.3949
+187308.0642745693 3.6783626 1103.316
+187309.0642746736 3.6784415 1103.2567
+187310.0642747779 3.6783626 1103.3949
+187311.0642748822 3.6784019 1103.3752
+187312.0642749865 3.6784019 1103.2567
+187313.0642750908 3.6784809 1103.316
+187314.0642751951 3.6783626 1103.316
+187315.0642752994 3.6784019 1103.3949
+187316.0642754037 3.6785202 1103.4147
+187317.064275508 3.6784415 1103.3949
+187318.0642756124 3.6784809 1103.3752
+187319.0642757167 3.6784809 1103.3555
+187320.064275821 3.6785989 1103.3752
+187321.0642759253 3.6784415 1103.2963
+187322.0642760296 3.6785202 1103.3357
+187323.0642761339 3.6784415 1103.3752
+187324.0642762382 3.6784809 1103.316
+187325.0642763425 3.6784415 1103.4344
+187326.0642764468 3.6785202 1103.316
+187327.0642765511 3.6784809 1103.316
+187328.0642766554 3.6785202 1103.4147
+187329.0642767597 3.6784415 1103.2963
+187330.0642768641 3.6784019 1103.3555
+187331.0642769684 3.6786382 1103.3555
+187332.0642770727 3.6785202 1103.3752
+187333.064277177 3.6785989 1103.3357
+187334.0642772813 3.6785595 1103.3555
+187335.0642773856 3.6785595 1103.2765
+187336.0642774899 3.6785989 1103.3357
+187337.0642775942 3.6785202 1103.3357
+187338.0642776985 3.6785989 1103.3555
+187339.0642778028 3.6786776 1103.3357
+187340.0642779071 3.6786382 1103.3949
+187341.0642780114 3.6786382 1103.3752
+187342.0642781158 3.6787565 1103.4147
+187343.0642782201 3.6786776 1103.3357
+187344.0642783244 3.6786776 1103.2963
+187345.0642784287 3.6786776 1103.3555
+187346.064278533 3.6786776 1103.3752
+187347.0642786373 3.6786382 1103.3752
+187348.0642787416 3.6785989 1103.4147
+187349.0642788459 3.6787565 1103.3752
+187350.0642789502 3.6788352 1103.3555
+187351.0642790545 3.6786776 1103.3752
+187352.0642791588 3.6786776 1103.3357
+187353.0642792631 3.6787169 1103.3752
+187354.0642793674 3.6786382 1103.316
+187355.0642794718 3.6787565 1103.3752
+187356.0642795761 3.6787565 1103.3555
+187357.0642796804 3.6787958 1103.316
+187358.0642797847 3.6788352 1103.2172
+187359.064279889 3.6787169 1103.4344
+187360.0642799933 3.6787565 1103.2765
+187361.0642800976 3.6788352 1103.316
+187362.0642802019 3.6787565 1103.2172
+187363.0642803062 3.6787958 1103.3752
+187364.0642804105 3.6788352 1103.2963
+187365.0642805148 3.6787958 1103.3949
+187366.0642806191 3.6787958 1103.3555
+187367.0642807235 3.6787565 1103.474
+187368.0642808278 3.6788745 1103.3357
+187369.0642809321 3.6787958 1103.2765
+187370.0642810364 3.6788745 1103.3555
+187371.0642811407 3.6789532 1103.3949
+187372.064281245 3.6789138 1103.2963
+187373.0642813493 3.6787958 1103.2567
+187374.0642814536 3.6787565 1103.3949
+187375.0642815579 3.6788352 1103.3949
+187376.0642816622 3.6789532 1103.3555
+187377.0642817665 3.6789138 1103.2963
+187378.0642818708 3.6788745 1103.3949
+187379.0642819752 3.6789138 1103.316
+187380.0642820795 3.6789138 1103.3357
+187381.0642821838 3.6789532 1103.3949
+187382.0642822881 3.6789925 1103.2963
+187383.0642823924 3.6789925 1103.3949
+187384.0642824967 3.6789925 1103.3752
+187385.064282601 3.6789925 1103.3555
+187386.0642827053 3.6789138 1103.2963
+187387.0642828096 3.6789925 1103.2963
+187388.0642829139 3.6790318 1103.2963
+187389.0642830182 3.6790714 1103.3555
+187390.0642831225 3.6789532 1103.3555
+187391.0642832269 3.6790714 1103.2963
+187392.0642833312 3.6791501 1103.316
+187393.0642834355 3.6790318 1103.3357
+187394.0642835398 3.6791501 1103.3752
+187395.0642836441 3.6790714 1103.3555
+187396.0642837484 3.6791108 1103.316
+187397.0642838527 3.6791108 1103.3752
+187398.064283957 3.6790714 1103.316
+187399.0642840613 3.6790714 1103.3752
+187400.0642841656 3.6790318 1103.316
+187401.0642842699 3.6791108 1103.3357
+187402.0642843742 3.6790714 1103.3357
+187403.0642844785 3.6791501 1103.4147
+187404.0642845829 3.6791501 1103.4344
+187405.0642846872 3.6791108 1103.316
+187406.0642847915 3.6791108 1103.3357
+187407.0642848958 3.6791894 1103.316
+187408.0642850001 3.6790714 1103.2963
+187409.0642851044 3.6791894 1103.3555
+187410.0642852087 3.6791108 1103.3752
+187411.064285313 3.6791894 1103.3949
+187412.0642854173 3.6791894 1103.2765
+187413.0642855216 3.6791501 1103.3949
+187414.0642856259 3.6791501 1103.3357
+187415.0642857302 3.6791501 1103.3555
+187416.0642858346 3.6792681 1103.3357
+187417.0642859389 3.6792681 1103.2765
+187418.0642860432 3.6792681 1103.3752
+187419.0642861475 3.6791501 1103.3949
+187420.0642862518 3.6793075 1103.4542
+187421.0642863561 3.6791894 1103.3555
+187422.0642864604 3.6792288 1103.316
+187423.0642865647 3.6793468 1103.3949
+187424.064286669 3.6792288 1103.3555
+187425.0642867733 3.6793468 1103.2765
+187426.0642868776 3.6793075 1103.316
+187427.0642869819 3.6793075 1103.3949
+187428.0642870863 3.6792681 1103.3555
+187429.0642871906 3.6793075 1103.316
+187430.0642872949 3.6793468 1103.2963
+187431.0642873992 3.6793468 1103.3752
+187432.0642875035 3.6792681 1103.3752
+187433.0642876078 3.6793468 1103.3555
+187434.0642877121 3.6792288 1103.3949
+187435.0642878164 3.6793075 1103.2963
+187436.0642879207 3.6793864 1103.3752
+187437.064288025 3.6793864 1103.3752
+187438.0642881293 3.6793468 1103.3357
+187439.0642882336 3.6793864 1103.2765
+187440.0642883379 3.6794651 1103.316
+187441.0642884423 3.6794257 1103.3357
+187442.0642885466 3.6793864 1103.3555
+187443.0642886509 3.6793468 1103.3949
+187444.0642887552 3.6793468 1103.3752
+187445.0642888595 3.6793864 1103.3752
+187446.0642889638 3.6793864 1103.3752
+187447.0642890681 3.6794651 1103.3555
+187448.0642891724 3.6793864 1103.3949
+187449.0642892767 3.6794257 1103.4344
+187450.064289381 3.6793468 1103.3555
+187451.0642894853 3.6793864 1103.4344
+187452.0642895896 3.6795044 1103.3357
+187453.064289694 3.6794651 1103.2963
+187454.0642897983 3.6795044 1103.3357
+187455.0642899026 3.6795831 1103.3752
+187456.0642900069 3.6794651 1103.3752
+187457.0642901112 3.6794651 1103.3949
+187458.0642902155 3.6795044 1103.3752
+187459.0642903198 3.6795437 1103.3752
+187460.0642904241 3.6794257 1103.3752
+187461.0642905284 3.6795437 1103.3949
+187462.0642906327 3.6795437 1103.4344
+187463.064290737 3.6795437 1103.3357
+187464.0642908413 3.6795044 1103.3752
+187465.0642909457 3.6795437 1103.3357
+187466.06429105 3.6795437 1103.4147
+187467.0642911543 3.6795044 1103.3357
+187468.0642912586 3.6795437 1103.2765
+187469.0642913629 3.6795437 1103.2963
+187470.0642914672 3.6797013 1103.3357
+187471.0642915715 3.6796618 1103.3357
+187472.0642916758 3.6795831 1103.316
+187473.0642917801 3.6795437 1103.3752
+187474.0642918844 3.6796224 1103.3949
+187475.0642919887 3.6796618 1103.3949
+187476.064292093 3.67978 1103.3555
+187477.0642921973 3.6796618 1103.2369
+187478.0642923017 3.6796618 1103.2963
+187479.064292406 3.67978 1103.4344
+187480.0642925103 3.6796618 1103.4542
+187481.0642926146 3.6796224 1103.3555
+187482.0642927189 3.6797407 1103.4147
+187483.0642928232 3.6796618 1103.3357
+187484.0642929275 3.67978 1103.3555
+187485.0642930318 3.6797013 1103.3752
+187486.0642931361 3.6795831 1103.3555
+187487.0642932404 3.6797013 1103.3752
+187488.0642933447 3.6797407 1103.316
+187489.064293449 3.6797407 1103.3357
+187490.0642935534 3.6798193 1103.3357
+187491.0642936577 3.67978 1103.316
+187492.064293762 3.6798193 1103.3949
+187493.0642938663 3.67978 1103.3357
+187494.0642939706 3.6798193 1103.316
+187495.0642940749 3.6797407 1103.3752
+187496.0642941792 3.6798587 1103.3357
+187497.0642942835 3.67978 1103.3357
+187498.0642943878 3.679898 1103.3949
+187499.0642944921 3.6798193 1103.2765
+187500.0642945964 3.6798193 1103.316
+187501.0642947007 3.679898 1103.3752
+187502.0642948051 3.6798193 1103.3752
+187503.0642949094 3.67978 1103.316
+187504.0642950137 3.67978 1103.2963
+187505.064295118 3.679898 1103.3752
+187506.0642952223 3.6798193 1103.2963
+187507.0642953266 3.6799374 1103.2963
+187508.0642954309 3.679898 1103.3555
+187509.0642955352 3.679898 1103.316
+187510.0642956395 3.6799374 1103.3949
+187511.0642957438 3.6799374 1103.316
+187512.0642958481 3.6799374 1103.3949
+187513.0642959524 3.6799374 1103.2765
+187514.0642960567 3.679898 1103.3752
+187515.0642961611 3.6800163 1103.3555
+187516.0642962654 3.6799767 1103.3555
+187517.0642963697 3.6799767 1103.4344
+187518.064296474 3.6800556 1103.3752
+187519.0642965783 3.6799374 1103.2963
+187520.0642966826 3.6799767 1103.316
+187521.0642967869 3.6799767 1103.2765
+187522.0642968912 3.6799767 1103.3752
+187523.0642969955 3.6799767 1103.3752
+187524.0642970998 3.6799767 1103.3555
+187525.0642972041 3.6799767 1103.3555
+187526.0642973084 3.6800163 1103.3357
+187527.0642974128 3.6800556 1103.4147
+187528.0642975171 3.6800163 1103.3752
+187529.0642976214 3.6800556 1103.316
+187530.0642977257 3.680095 1103.3357
+187531.06429783 3.680095 1103.3357
+187532.0642979343 3.6800163 1103.3555
+187533.0642980386 3.680095 1103.316
+187534.0642981429 3.6801343 1103.4344
+187535.0642982472 3.6800163 1103.4147
+187536.0642983515 3.6800163 1103.316
+187537.0642984558 3.680095 1103.3357
+187538.0642985601 3.6801736 1103.3555
+187539.0642986645 3.6800556 1103.3555
+187540.0642987688 3.680095 1103.316
+187541.0642988731 3.6801736 1103.3555
+187542.0642989774 3.6801736 1103.4147
+187543.0642990817 3.6801736 1103.3357
+187544.064299186 3.6801736 1103.3555
+187545.0642992903 3.6801736 1103.3949
+187546.0642993946 3.6802523 1103.3752
+187547.0642994989 3.6802523 1103.316
+187548.0642996032 3.6802523 1103.316
+187549.0642997075 3.680213 1103.3752
+187550.0642998118 3.680213 1103.3357
+187551.0642999162 3.6802523 1103.2567
+187552.0643000205 3.680213 1103.2963
+187553.0643001248 3.6803312 1103.3949
+187554.0643002291 3.6802919 1103.4147
+187555.0643003334 3.680213 1103.3357
+187556.0643004377 3.680213 1103.3949
+187557.064300542 3.6802919 1103.2963
+187558.0643006463 3.6802919 1103.3555
+187559.0643007506 3.6802919 1103.316
+187560.0643008549 3.6802919 1103.3949
+187561.0643009592 3.6803706 1103.3555
+187562.0643010635 3.6802919 1103.3555
+187563.0643011678 3.6803312 1103.316
+187564.0643012722 3.6803706 1103.4344
+187565.0643013765 3.6803706 1103.316
+187566.0643014808 3.6803706 1103.3357
+187567.0643015851 3.6802919 1103.4344
+187568.0643016894 3.6804099 1103.2765
+187569.0643017937 3.6804492 1103.3357
+187570.064301898 3.6803706 1103.2963
+187571.0643020023 3.6803706 1103.3752
+187572.0643021066 3.6804886 1103.3555
+187573.0643022109 3.6803706 1103.3357
+187574.0643023152 3.6803312 1103.3357
+187575.0643024195 3.6804492 1103.3752
+187576.0643025239 3.6804492 1103.316
+187577.0643026282 3.6804099 1103.2567
+187578.0643027325 3.6804492 1103.3555
+187579.0643028368 3.6804099 1103.3752
+187580.0643029411 3.6805279 1103.3357
+187581.0643030454 3.6804492 1103.3357
+187582.0643031497 3.6805279 1103.3357
+187583.064303254 3.6804886 1103.3752
+187584.0643033583 3.6804886 1103.316
+187585.0643034626 3.6804492 1103.3357
+187586.0643035669 3.6805279 1103.3555
+187587.0643036712 3.6805279 1103.316
+187588.0643037756 3.6804886 1103.4147
+187589.0643038799 3.6805279 1103.3555
+187590.0643039842 3.6805279 1103.4147
+187591.0643040885 3.6805673 1103.3752
+187592.0643041928 3.6805673 1103.3555
+187593.0643042971 3.6805673 1103.2369
+187594.0643044014 3.6804886 1103.3357
+187595.0643045057 3.6805279 1103.4147
+187596.06430461 3.6805279 1103.2963
+187597.0643047143 3.6805673 1103.316
+187598.0643048186 3.6805673 1103.3555
+187599.0643049229 3.6806068 1103.4147
+187600.0643050272 3.6806462 1103.3555
+187601.0643051316 3.6806462 1103.3555
+187602.0643052359 3.6806855 1103.2963
+187603.0643053402 3.6805279 1103.3357
+187604.0643054445 3.6806462 1103.3949
+187605.0643055488 3.6806462 1103.474
+187606.0643056531 3.6806462 1103.3752
+187607.0643057574 3.6805673 1103.316
+187608.0643058617 3.6806462 1103.3752
+187609.064305966 3.6807249 1103.4147
+187610.0643060703 3.6807642 1103.2963
+187611.0643061746 3.6807642 1103.3752
+187612.0643062789 3.6807642 1103.3357
+187613.0643063833 3.6807249 1103.3752
+187614.0643064876 3.6806462 1103.2963
+187615.0643065919 3.6807249 1103.3357
+187616.0643066962 3.6806462 1103.3949
+187617.0643068005 3.6808035 1103.3752
+187618.0643069048 3.6807249 1103.2963
+187619.0643070091 3.6808035 1103.3752
+187620.0643071134 3.6807642 1103.3752
+187621.0643072177 3.6807642 1103.316
+187622.064307322 3.6807642 1103.3555
+187623.0643074263 3.6808035 1103.2765
+187624.0643075306 3.6808429 1103.3357
+187625.064307635 3.6807642 1103.4147
+187626.0643077393 3.6808429 1103.2963
+187627.0643078436 3.6808035 1103.3752
+187628.0643079479 3.6808429 1103.3949
+187629.0643080522 3.6808429 1103.3357
+187630.0643081565 3.6809218 1103.3752
+187631.0643082608 3.6808429 1103.316
+187632.0643083651 3.6808429 1103.3555
+187633.0643084694 3.6808035 1103.2567
+187634.0643085737 3.6808822 1103.2963
+187635.064308678 3.6809218 1103.3357
+187636.0643087823 3.6808429 1103.316
+187637.0643088866 3.6808429 1103.2963
+187638.064308991 3.6808429 1103.2369
+187639.0643090953 3.6809611 1103.316
+187640.0643091996 3.6808822 1103.3949
+187641.0643093039 3.6809611 1103.316
+187642.0643094082 3.6808429 1103.3357
+187643.0643095125 3.6808822 1103.3752
+187644.0643096168 3.6809611 1103.3752
+187645.0643097211 3.6809611 1103.2963
+187646.0643098254 3.6810398 1103.3949
+187647.0643099297 3.6810398 1103.4147
+187648.064310034 3.6809218 1103.3949
+187649.0643101383 3.6810005 1103.3357
+187650.0643102427 3.6810005 1103.3357
+187651.064310347 3.6810005 1103.4147
+187652.0643104513 3.6810005 1103.3949
+187653.0643105556 3.6810005 1103.3357
+187654.0643106599 3.6810005 1103.3949
+187655.0643107642 3.6811578 1103.3752
+187656.0643108685 3.6810398 1103.316
+187657.0643109728 3.6810398 1103.316
+187658.0643110771 3.6810398 1103.3555
+187659.0643111814 3.6811578 1103.316
+187660.0643112857 3.6810005 1103.4344
+187661.06431139 3.6811185 1103.2765
+187662.0643114944 3.6810398 1103.316
+187663.0643115987 3.6810791 1103.2369
+187664.064311703 3.6810005 1103.3357
+187665.0643118073 3.6811185 1103.316
+187666.0643119116 3.6810791 1103.3357
+187667.0643120159 3.6811972 1103.316
+187668.0643121202 3.6810398 1103.2765
+187669.0643122245 3.6811972 1103.3555
+187670.0643123288 3.6810791 1103.3949
+187671.0643124331 3.6812367 1103.3949
+187672.0643125374 3.6811578 1103.2567
+187673.0643126417 3.6811185 1103.3357
+187674.0643127461 3.6811578 1103.3555
+187675.0643128504 3.6812367 1103.3555
+187676.0643129547 3.6811185 1103.3555
+187677.064313059 3.6811578 1103.3357
+187678.0643131633 3.6812367 1103.316
+187679.0643132676 3.6811972 1103.3357
+187680.0643133719 3.6812761 1103.3752
+187681.0643134762 3.6811972 1103.316
+187682.0643135805 3.6812367 1103.3555
+187683.0643136848 3.6812761 1103.3555
+187684.0643137891 3.6811972 1103.3357
+187685.0643138934 3.6812367 1103.3357
+187686.0643139977 3.6812367 1103.2963
+187687.0643141021 3.6812761 1103.316
+187688.0643142064 3.6812367 1103.4344
+187689.0643143107 3.6813154 1103.316
+187690.064314415 3.6813154 1103.3752
+187691.0643145193 3.6813154 1103.4344
+187692.0643146236 3.6813941 1103.3555
+187693.0643147279 3.6813548 1103.3752
+187694.0643148322 3.6813154 1103.2369
+187695.0643149365 3.6812761 1103.474
+187696.0643150408 3.6813154 1103.316
+187697.0643151451 3.6813548 1103.2963
+187698.0643152494 3.6813548 1103.316
+187699.0643153538 3.6813548 1103.3357
+187700.0643154581 3.6814334 1103.2963
+187701.0643155624 3.6814728 1103.3357
+187702.0643156667 3.6813941 1103.316
+187703.064315771 3.6813548 1103.3555
+187704.0643158753 3.6813548 1103.2963
+187705.0643159796 3.6813941 1103.3555
+187706.0643160839 3.6814728 1103.3949
+187707.0643161882 3.6813941 1103.316
+187708.0643162925 3.6814334 1103.3752
+187709.0643163968 3.6814334 1103.3555
+187710.0643165011 3.6814334 1103.4147
+187711.0643166055 3.6814728 1103.3357
+187712.0643167098 3.6814728 1103.3555
+187713.0643168141 3.6816304 1103.316
+187714.0643169184 3.681591 1103.316
+187715.0643170227 3.681591 1103.3752
+187716.064317127 3.6814334 1103.3555
+187717.0643172313 3.6815517 1103.3752
+187718.0643173356 3.6815517 1103.2963
+187719.0643174399 3.6815121 1103.3949
+187720.0643175442 3.6815517 1103.4344
+187721.0643176485 3.6814728 1103.3752
+187722.0643177528 3.6813941 1103.3752
+187723.0643178571 3.6815517 1103.2963
+187724.0643179615 3.681591 1103.2963
+187725.0643180658 3.6816304 1103.3949
+187726.0643181701 3.6815121 1103.3752
+187727.0643182744 3.6816304 1103.4147
+187728.0643183787 3.6815517 1103.3949
+187729.064318483 3.6815517 1103.3752
+187730.0643185873 3.681591 1103.2765
+187731.0643186916 3.6816304 1103.3752
+187732.0643187959 3.6816697 1103.4344
+187733.0643189002 3.6817877 1103.3555
+187734.0643190045 3.6817091 1103.3555
+187735.0643191088 3.6816304 1103.316
+187736.0643192132 3.6816304 1103.316
+187737.0643193175 3.6816697 1103.3949
+187738.0643194218 3.6816697 1103.3949
+187739.0643195261 3.6816304 1103.3752
+187740.0643196304 3.6817484 1103.316
+187741.0643197347 3.6816304 1103.2963
+187742.064319839 3.6817484 1103.3357
+187743.0643199433 3.6817877 1103.3752
+187744.0643200476 3.6817484 1103.4147
+187745.0643201519 3.6816697 1103.3357
+187746.0643202562 3.6816304 1103.2172
+187747.0643203605 3.6816697 1103.3949
+187748.0643204649 3.6817484 1103.3357
+187749.0643205692 3.6817484 1103.2963
+187750.0643206735 3.6817877 1103.3949
+187751.0643207778 3.6817484 1103.3357
+187752.0643208821 3.6817484 1103.3949
+187753.0643209864 3.6818271 1103.2963
+187754.0643210907 3.6817877 1103.3949
+187755.064321195 3.6818666 1103.3949
+187756.0643212993 3.6817091 1103.316
+187757.0643214036 3.6817484 1103.3949
+187758.0643215079 3.6818271 1103.2567
+187759.0643216122 3.6817877 1103.3555
+187760.0643217165 3.6818666 1103.3357
+187761.0643218209 3.681906 1103.3752
+187762.0643219252 3.681906 1103.3752
+187763.0643220295 3.6818666 1103.3949
+187764.0643221338 3.6818666 1103.3949
+187765.0643222381 3.6819453 1103.3752
+187766.0643223424 3.6818666 1103.2765
+187767.0643224467 3.681906 1103.2369
+187768.064322551 3.682024 1103.2963
+187769.0643226553 3.681906 1103.2963
+187770.0643227596 3.6818271 1103.316
+187771.0643228639 3.681906 1103.3357
+187772.0643229682 3.681906 1103.2765
+187773.0643230726 3.6819453 1103.2963
+187774.0643231769 3.6819847 1103.3752
+187775.0643232812 3.6818666 1103.4344
+187776.0643233855 3.6819453 1103.316
+187777.0643234898 3.6819847 1103.3357
+187778.0643235941 3.681906 1103.316
+187779.0643236984 3.6819847 1103.2963
+187780.0643238027 3.6820633 1103.3752
+187781.064323907 3.682024 1103.3752
+187782.0643240113 3.6819847 1103.3555
+187783.0643241156 3.6819453 1103.2765
+187784.0643242199 3.6819453 1103.316
+187785.0643243243 3.6819453 1103.3949
+187786.0643244286 3.6819847 1103.3752
+187787.0643245329 3.682024 1103.3752
+187788.0643246372 3.6820633 1103.316
+187789.0643247415 3.6819847 1103.3357
+187790.0643248458 3.6821816 1103.3357
+187791.0643249501 3.6819847 1103.316
+187792.0643250544 3.6821027 1103.2963
+187793.0643251587 3.6820633 1103.3555
+187794.064325263 3.6821423 1103.316
+187795.0643253673 3.6820633 1103.3555
+187796.0643254716 3.6820633 1103.3752
+187797.064325576 3.6821027 1103.3357
+187798.0643256803 3.6821423 1103.3357
+187799.0643257846 3.6821423 1103.316
+187800.0643258889 3.6821816 1103.4344
+187801.0643259932 3.6821027 1103.3357
+187802.0643260975 3.6821423 1103.3555
+187803.0643262018 3.6822209 1103.316
+187804.0643263061 3.6822209 1103.3949
+187805.0643264104 3.6821816 1103.3752
+187806.0643265147 3.6822209 1103.2567
+187807.064326619 3.6822209 1103.316
+187808.0643267233 3.6821027 1103.3752
+187809.0643268276 3.6822603 1103.3555
+187810.064326932 3.6822996 1103.4147
+187811.0643270363 3.6821816 1103.3752
+187812.0643271406 3.6821423 1103.2963
+187813.0643272449 3.6822603 1103.2963
+187814.0643273492 3.6822996 1103.2765
+187815.0643274535 3.6822603 1103.2765
+187816.0643275578 3.6822209 1103.3555
+187817.0643276621 3.682339 1103.4147
+187818.0643277664 3.6822603 1103.3555
+187819.0643278707 3.6822603 1103.3949
+187820.064327975 3.6823783 1103.2963
+187821.0643280793 3.6822996 1103.3555
+187822.0643281837 3.6822209 1103.3949
+187823.064328288 3.6822996 1103.3357
+187824.0643283923 3.6822996 1103.2963
+187825.0643284966 3.6822603 1103.3357
+187826.0643286009 3.682339 1103.316
+187827.0643287052 3.6824572 1103.3752
+187828.0643288095 3.682339 1103.2963
+187829.0643289138 3.6823783 1103.3555
+187830.0643290181 3.6824176 1103.4147
+187831.0643291224 3.6822996 1103.3555
+187832.0643292267 3.6824965 1103.4147
+187833.064329331 3.6822996 1103.3555
+187834.0643294354 3.6824176 1103.4344
+187835.0643295397 3.682339 1103.3752
+187836.064329644 3.682339 1103.2963
+187837.0643297483 3.6824176 1103.3357
+187838.0643298526 3.6824572 1103.3555
+187839.0643299569 3.6823783 1103.3949
+187840.0643300612 3.6824965 1103.3949
+187841.0643301655 3.6824176 1103.2567
+187842.0643302698 3.6824176 1103.316
+187843.0643303741 3.6825359 1103.4344
+187844.0643304784 3.6824572 1103.316
+187845.0643305827 3.6825359 1103.2963
+187846.064330687 3.6825359 1103.2963
+187847.0643307914 3.6824176 1103.3949
+187848.0643308957 3.6825752 1103.3555
+187849.064331 3.6825752 1103.316
+187850.0643311043 3.6825359 1103.2765
+187851.0643312086 3.6825359 1103.3357
+187852.0643313129 3.6825359 1103.4147
+187853.0643314172 3.6826539 1103.2963
+187854.0643315215 3.6824965 1103.2765
+187855.0643316258 3.6825359 1103.3357
+187856.0643317301 3.6826146 1103.3357
+187857.0643318344 3.6825359 1103.2963
+187858.0643319387 3.6825359 1103.2567
+187859.0643320431 3.6825752 1103.3357
+187860.0643321474 3.6825752 1103.3752
+187861.0643322517 3.6824965 1103.3752
+187862.064332356 3.6826146 1103.3752
+187863.0643324603 3.6826146 1103.316
+187864.0643325646 3.6826932 1103.3752
+187865.0643326689 3.6826539 1103.316
+187866.0643327732 3.6825359 1103.316
+187867.0643328775 3.6827326 1103.3357
+187868.0643329818 3.6827326 1103.2765
+187869.0643330861 3.6825359 1103.2963
+187870.0643331904 3.6825752 1103.3949
+187871.0643332948 3.6827326 1103.3752
+187872.0643333991 3.6826932 1103.474
+187873.0643335034 3.6827722 1103.2963
+187874.0643336077 3.6826539 1103.3949
+187875.064333712 3.6827722 1103.3555
+187876.0643338163 3.6827722 1103.3949
+187877.0643339206 3.6827326 1103.316
+187878.0643340249 3.6827326 1103.3555
+187879.0643341292 3.6826932 1103.3949
+187880.0643342335 3.6828115 1103.316
+187881.0643343378 3.6827326 1103.3357
+187882.0643344421 3.6828115 1103.2963
+187883.0643345464 3.6828508 1103.3555
+187884.0643346508 3.6828902 1103.3949
+187885.0643347551 3.6828115 1103.3357
+187886.0643348594 3.6828508 1103.2963
+187887.0643349637 3.6828508 1103.316
+187888.064335068 3.6827722 1103.3555
+187889.0643351723 3.6827722 1103.3357
+187890.0643352766 3.6826932 1103.4344
+187891.0643353809 3.6827722 1103.2567
+187892.0643354852 3.6829295 1103.2369
+187893.0643355895 3.6828508 1103.3357
+187894.0643356938 3.6828902 1103.3555
+187895.0643357981 3.6827722 1103.3949
+187896.0643359025 3.6828902 1103.316
+187897.0643360068 3.6828508 1103.316
+187898.0643361111 3.6828508 1103.2963
+187899.0643362154 3.6828902 1103.3357
+187900.0643363197 3.6830082 1103.3357
+187901.064336424 3.6829295 1103.316
+187902.0643365283 3.6828508 1103.3555
+187903.0643366326 3.6828115 1103.3949
+187904.0643367369 3.6829689 1103.3357
+187905.0643368412 3.6829689 1103.3555
+187906.0643369455 3.6829689 1103.3357
+187907.0643370498 3.6829295 1103.4344
+187908.0643371542 3.6830871 1103.4344
+187909.0643372585 3.6829689 1103.3357
+187910.0643373628 3.6829689 1103.3357
+187911.0643374671 3.6829295 1103.3555
+187912.0643375714 3.6830082 1103.3752
+187913.0643376757 3.6830082 1103.3949
+187914.06433778 3.6830871 1103.4344
+187915.0643378843 3.6830082 1103.2765
+187916.0643379886 3.6829689 1103.2963
+187917.0643380929 3.6829295 1103.3752
+187918.0643381972 3.6830082 1103.3555
+187919.0643383015 3.6830082 1103.4147
+187920.0643384058 3.6830082 1103.3357
+187921.0643385102 3.6830871 1103.3555
+187922.0643386145 3.6829689 1103.4147
+187923.0643387188 3.6830871 1103.3752
+187924.0643388231 3.6830871 1103.3555
+187925.0643389274 3.6830475 1103.3949
+187926.0643390317 3.6830475 1103.3752
+187927.064339136 3.6830475 1103.3949
+187928.0643392403 3.6832051 1103.3357
+187929.0643393446 3.6831264 1103.3752
+187930.0643394489 3.6831264 1103.3752
+187931.0643395532 3.6830871 1103.2963
+187932.0643396575 3.6832838 1103.2963
+187933.0643397619 3.6832051 1103.3752
+187934.0643398662 3.6832445 1103.3357
+187935.0643399705 3.6831658 1103.3357
+187936.0643400748 3.6831264 1103.3555
+187937.0643401791 3.6832445 1103.3752
+187938.0643402834 3.6831658 1103.3752
+187939.0643403877 3.6831658 1103.316
+187940.064340492 3.6832445 1103.2369
+187941.0643405963 3.6833231 1103.3555
+187942.0643407006 3.6832838 1103.3555
+187943.0643408049 3.6832051 1103.316
+187944.0643409092 3.6833231 1103.3752
+187945.0643410136 3.6832838 1103.474
+187946.0643411179 3.6832445 1103.4542
+187947.0643412222 3.6833231 1103.4344
+187948.0643413265 3.6832838 1103.316
+187949.0643414308 3.6832051 1103.3555
+187950.0643415351 3.6833625 1103.316
+187951.0643416394 3.6832838 1103.3357
+187952.0643417437 3.6833625 1103.316
+187953.064341848 3.6832445 1103.316
+187954.0643419523 3.6833625 1103.3357
+187955.0643420566 3.6833625 1103.2765
+187956.0643421609 3.6832838 1103.3357
+187957.0643422653 3.6833231 1103.3752
+187958.0643423696 3.6832838 1103.3555
+187959.0643424739 3.6832838 1103.4542
+187960.0643425782 3.6833625 1103.3357
+187961.0643426825 3.6833231 1103.316
+187962.0643427868 3.6833231 1103.3949
+187963.0643428911 3.6834807 1103.3357
+187964.0643429954 3.6834414 1103.3752
+187965.0643430997 3.6834414 1103.2963
+187966.064343204 3.6834021 1103.3752
+187967.0643433083 3.6833625 1103.3752
+187968.0643434126 3.6833625 1103.316
+187969.0643435169 3.6833625 1103.3357
+187970.0643436213 3.6834807 1103.4147
+187971.0643437256 3.6834807 1103.3357
+187972.0643438299 3.6834414 1103.3357
+187973.0643439342 3.6835594 1103.4147
+187974.0643440385 3.6834807 1103.3555
+187975.0643441428 3.6835201 1103.3357
+187976.0643442471 3.6834414 1103.3555
+187977.0643443514 3.6835988 1103.316
+187978.0643444557 3.6835594 1103.3752
+187979.06434456 3.6835988 1103.3357
+187980.0643446643 3.6836381 1103.3752
+187981.0643447686 3.6835988 1103.3555
+187982.064344873 3.6836381 1103.3555
+187983.0643449773 3.6835594 1103.2963
+187984.0643450816 3.6835594 1103.3752
+187985.0643451859 3.6835988 1103.3357
+187986.0643452902 3.6835201 1103.3949
+187987.0643453945 3.6836777 1103.4147
+187988.0643454988 3.6835594 1103.3752
+187989.0643456031 3.6836777 1103.4344
+187990.0643457074 3.6836381 1103.3949
+187991.0643458117 3.6835594 1103.3357
+187992.064345916 3.6835988 1103.3555
+187993.0643460203 3.6836777 1103.3357
+187994.0643461247 3.6836381 1103.3555
+187995.064346229 3.6837564 1103.2567
+187996.0643463333 3.6835988 1103.3752
+187997.0643464376 3.6836381 1103.3555
+187998.0643465419 3.6836381 1103.2369
+187999.0643466462 3.6836777 1103.2567
+188000.0643467505 3.683717 1103.3357
+188001.0643468548 3.6836777 1103.3357
+188002.0643469591 3.6837564 1103.2369
+188003.0643470634 3.6837564 1103.3555
+188004.0643471677 3.6838744 1103.316
+188005.064347272 3.683717 1103.3357
+188006.0643473763 3.683717 1103.4147
+188007.0643474807 3.6836777 1103.3752
+188008.064347585 3.6837564 1103.316
+188009.0643476893 3.683717 1103.4147
+188010.0643477936 3.683717 1103.3357
+188011.0643478979 3.6836777 1103.3752
+188012.0643480022 3.683717 1103.316
+188013.0643481065 3.6837564 1103.4147
+188014.0643482108 3.683717 1103.3357
+188015.0643483151 3.683717 1103.3357
+188016.0643484194 3.6837957 1103.2765
+188017.0643485237 3.6837957 1103.3357
+188018.064348628 3.683835 1103.3752
+188019.0643487324 3.6837564 1103.3949
+188020.0643488367 3.6838744 1103.3555
+188021.064348941 3.6838744 1103.3752
+188022.0643490453 3.6837957 1103.4147
+188023.0643491496 3.6839137 1103.3752
+188024.0643492539 3.6838744 1103.2369
+188025.0643493582 3.683835 1103.316
+188026.0643494625 3.6839137 1103.3752
+188027.0643495668 3.683835 1103.3752
+188028.0643496711 3.6838744 1103.316
+188029.0643497754 3.6839137 1103.316
+188030.0643498797 3.683953 1103.2963
+188031.0643499841 3.6839137 1103.2963
+188032.0643500884 3.6839137 1103.4147
+188033.0643501927 3.6839137 1103.316
+188034.064350297 3.683953 1103.2369
+188035.0643504013 3.6838744 1103.4344
+188036.0643505056 3.683953 1103.2765
+188037.0643506099 3.6839926 1103.3357
+188038.0643507142 3.683953 1103.3555
+188039.0643508185 3.683953 1103.3357
+188040.0643509228 3.683953 1103.316
+188041.0643510271 3.6839926 1103.3949
+188042.0643511314 3.6839137 1103.3752
+188043.0643512357 3.6840713 1103.2567
+188044.0643513401 3.6841106 1103.3555
+188045.0643514444 3.6839926 1103.3357
+188046.0643515487 3.683953 1103.316
+188047.064351653 3.6840713 1103.3357
+188048.0643517573 3.6839926 1103.3357
+188049.0643518616 3.684032 1103.3555
+188050.0643519659 3.683953 1103.3752
+188051.0643520702 3.684032 1103.3357
+188052.0643521745 3.6841106 1103.2567
+188053.0643522788 3.6840713 1103.4344
+188054.0643523831 3.684032 1103.316
+188055.0643524874 3.6840713 1103.3357
+188056.0643525918 3.684032 1103.2963
+188057.0643526961 3.6841106 1103.3555
+188058.0643528004 3.6840713 1103.4147
+188059.0643529047 3.6842287 1103.2765
+188060.064353009 3.6840713 1103.316
+188061.0643531133 3.68415 1103.3555
+188062.0643532176 3.68415 1103.2963
+188063.0643533219 3.6842287 1103.3949
+188064.0643534262 3.6841106 1103.3752
+188065.0643535305 3.6843076 1103.316
+188066.0643536348 3.684268 1103.4147
+188067.0643537391 3.6841893 1103.3357
+188068.0643538435 3.68415 1103.3555
+188069.0643539478 3.68415 1103.3752
+188070.0643540521 3.684268 1103.2567
+188071.0643541564 3.6841893 1103.316
+188072.0643542607 3.6841893 1103.316
+188073.064354365 3.6841893 1103.3357
+188074.0643544693 3.68415 1103.3357
+188075.0643545736 3.6842287 1103.3357
+188076.0643546779 3.6842287 1103.2963
+188077.0643547822 3.6842287 1103.316
+188078.0643548865 3.6843076 1103.3555
+188079.0643549908 3.6841893 1103.3752
+188080.0643550952 3.684268 1103.3949
+188081.0643551995 3.6843469 1103.3357
+188082.0643553038 3.6843076 1103.2567
+188083.0643554081 3.6842287 1103.4147
+188084.0643555124 3.684268 1103.316
+188085.0643556167 3.6843469 1103.3357
+188086.064355721 3.6843469 1103.2963
+188087.0643558253 3.6843863 1103.5134
+188088.0643559296 3.6843469 1103.3752
+188089.0643560339 3.6843469 1103.3555
+188090.0643561382 3.6844256 1103.3949
+188091.0643562425 3.6844649 1103.2963
+188092.0643563468 3.6843076 1103.3357
+188093.0643564512 3.6843863 1103.3357
+188094.0643565555 3.6843469 1103.3555
+188095.0643566598 3.6843076 1103.2963
+188096.0643567641 3.6843469 1103.3555
+188097.0643568684 3.6845043 1103.4938
+188098.0643569727 3.6844256 1103.3555
+188099.064357077 3.6843076 1103.3357
+188100.0643571813 3.6844256 1103.3357
+188101.0643572856 3.6845043 1103.2765
+188102.0643573899 3.6844649 1103.316
+188103.0643574942 3.6843863 1103.4147
+188104.0643575985 3.6845043 1103.3555
+188105.0643577029 3.6844256 1103.3555
+188106.0643578072 3.6844649 1103.3752
+188107.0643579115 3.6845436 1103.316
+188108.0643580158 3.6845043 1103.3357
+188109.0643581201 3.6844649 1103.3555
+188110.0643582244 3.6844256 1103.3752
+188111.0643583287 3.6846225 1103.4147
+188112.064358433 3.6845043 1103.3752
+188113.0643585373 3.6845829 1103.3949
+188114.0643586416 3.6845436 1103.3357
+188115.0643587459 3.6846619 1103.2963
+188116.0643588502 3.6845829 1103.3949
+188117.0643589546 3.6846225 1103.2963
+188118.0643590589 3.6846619 1103.3555
+188119.0643591632 3.6845436 1103.3949
+188120.0643592675 3.6845043 1103.4542
+188121.0643593718 3.6846225 1103.3752
+188122.0643594761 3.6846225 1103.2963
+188123.0643595804 3.6846225 1103.3555
+188124.0643596847 3.6846225 1103.3357
+188125.064359789 3.6845829 1103.2963
+188126.0643598933 3.6847012 1103.316
+188127.0643599976 3.6846619 1103.3357
+188128.0643601019 3.6846619 1103.316
+188129.0643602062 3.6846225 1103.3752
+188130.0643603106 3.6847405 1103.3752
+188131.0643604149 3.6847405 1103.2765
+188132.0643605192 3.6846619 1103.316
+188133.0643606235 3.6846619 1103.3555
+188134.0643607278 3.6846619 1103.2963
+188135.0643608321 3.6847405 1103.3357
+188136.0643609364 3.6846619 1103.316
+188137.0643610407 3.6846225 1103.3555
+188138.064361145 3.6847012 1103.4147
+188139.0643612493 3.6846619 1103.3357
+188140.0643613536 3.6847799 1103.316
+188141.0643614579 3.6847012 1103.3555
+188142.0643615623 3.6847799 1103.3949
+188143.0643616666 3.6848586 1103.2765
+188144.0643617709 3.6847012 1103.3949
+188145.0643618752 3.6847405 1103.316
+188146.0643619795 3.6847012 1103.316
+188147.0643620838 3.6847799 1103.2963
+188148.0643621881 3.6847799 1103.3752
+188149.0643622924 3.6847799 1103.3752
+188150.0643623967 3.6848192 1103.316
+188151.064362501 3.6848586 1103.3752
+188152.0643626053 3.6848979 1103.3752
+188153.0643627096 3.6847799 1103.3357
+188154.064362814 3.6848192 1103.3949
+188155.0643629183 3.6849768 1103.3357
+188156.0643630226 3.6849375 1103.3357
+188157.0643631269 3.6848979 1103.3357
+188158.0643632312 3.6847799 1103.3949
+188159.0643633355 3.6850162 1103.3357
+188160.0643634398 3.6849375 1103.3555
+188161.0643635441 3.6850162 1103.3555
+188162.0643636484 3.6847405 1103.3357
+188163.0643637527 3.6848979 1103.316
+188164.064363857 3.6849768 1103.3752
+188165.0643639613 3.6849375 1103.316
+188166.0643640656 3.6849768 1103.3949
+188167.06436417 3.6850162 1103.3949
+188168.0643642743 3.6850162 1103.4147
+188169.0643643786 3.6849768 1103.4344
+188170.0643644829 3.6848586 1103.3752
+188171.0643645872 3.6850555 1103.2963
+188172.0643646915 3.6849768 1103.4542
+188173.0643647958 3.6850162 1103.2567
+188174.0643649001 3.6849375 1103.3555
+188175.0643650044 3.6850162 1103.3949
+188176.0643651087 3.6850555 1103.474
+188177.064365213 3.6850162 1103.3555
+188178.0643653173 3.6851342 1103.3949
+188179.0643654217 3.6850948 1103.3555
+188180.064365526 3.6851342 1103.4147
+188181.0643656303 3.6850948 1103.3949
+188182.0643657346 3.6850555 1103.3752
+188183.0643658389 3.6850948 1103.2765
+188184.0643659432 3.6850948 1103.3949
+188185.0643660475 3.6850555 1103.2963
+188186.0643661518 3.6850948 1103.2567
+188187.0643662561 3.6850162 1103.3357
+188188.0643663604 3.6850948 1103.474
+188189.0643664647 3.6851342 1103.4147
+188190.064366569 3.6850555 1103.3752
+188191.0643666734 3.6852524 1103.3357
+188192.0643667777 3.6851735 1103.2963
+188193.064366882 3.6850948 1103.4344
+188194.0643669863 3.6851735 1103.3555
+188195.0643670906 3.6851342 1103.3357
+188196.0643671949 3.6852129 1103.3949
+188197.0643672992 3.6852524 1103.3357
+188198.0643674035 3.6852918 1103.3555
+188199.0643675078 3.6852918 1103.3752
+188200.0643676121 3.6852918 1103.3949
+188201.0643677164 3.6852129 1103.4147
+188202.0643678207 3.6852524 1103.4147
+188203.0643679251 3.6851735 1103.3555
+188204.0643680294 3.6852129 1103.3752
+188205.0643681337 3.6852918 1103.3949
+188206.064368238 3.6852129 1103.3752
+188207.0643683423 3.6853704 1103.3357
+188208.0643684466 3.6852524 1103.4147
+188209.0643685509 3.6851342 1103.3555
+188210.0643686552 3.6854491 1103.3555
+188211.0643687595 3.6852918 1103.2963
+188212.0643688638 3.6852918 1103.3949
+188213.0643689681 3.6853311 1103.3555
+188214.0643690724 3.6853704 1103.4147
+188215.0643691767 3.6852918 1103.3555
+188216.0643692811 3.6852918 1103.3752
+188217.0643693854 3.6853311 1103.316
+188218.0643694897 3.6854098 1103.2765
+188219.064369594 3.6854098 1103.3357
+188220.0643696983 3.6853704 1103.2963
+188221.0643698026 3.6853311 1103.3357
+188222.0643699069 3.6854491 1103.3555
+188223.0643700112 3.6852918 1103.2567
+188224.0643701155 3.6854885 1103.316
+188225.0643702198 3.685528 1103.3555
+188226.0643703241 3.6853704 1103.316
+188227.0643704284 3.6853704 1103.2567
+188228.0643705328 3.6853704 1103.2963
+188229.0643706371 3.6853704 1103.3752
+188230.0643707414 3.6854491 1103.3555
+188231.0643708457 3.6854491 1103.2963
+188232.06437095 3.6854491 1103.316
+188233.0643710543 3.6854885 1103.316
+188234.0643711586 3.6854885 1103.3555
+188235.0643712629 3.6854885 1103.4344
+188236.0643713672 3.6854885 1103.3752
+188237.0643714715 3.6854885 1103.3949
+188238.0643715758 3.6854491 1103.3357
+188239.0643716801 3.6854885 1103.2765
+188240.0643717845 3.685528 1103.3752
+188241.0643718888 3.6854885 1103.3555
+188242.0643719931 3.6855674 1103.3949
+188243.0643720974 3.685528 1103.316
+188244.0643722017 3.685528 1103.316
+188245.064372306 3.6855674 1103.2963
+188246.0643724103 3.685528 1103.3555
+188247.0643725146 3.6856461 1103.316
+188248.0643726189 3.6856067 1103.3752
+188249.0643727232 3.6856461 1103.3357
+188250.0643728275 3.6856067 1103.3357
+188251.0643729318 3.6856067 1103.2963
+188252.0643730361 3.6856067 1103.3949
+188253.0643731405 3.6856854 1103.3555
+188254.0643732448 3.6856854 1103.316
+188255.0643733491 3.6855674 1103.3752
+188256.0643734534 3.6856854 1103.316
+188257.0643735577 3.6856067 1103.3752
+188258.064373662 3.6856067 1103.2963
+188259.0643737663 3.6856461 1103.316
+188260.0643738706 3.6856461 1103.316
+188261.0643739749 3.6856067 1103.316
+188262.0643740792 3.6857247 1103.2963
+188263.0643741835 3.6856854 1103.3752
+188264.0643742878 3.6856854 1103.3949
+188265.0643743922 3.6857641 1103.4147
+188266.0643744965 3.6856461 1103.3357
+188267.0643746008 3.6857247 1103.316
+188268.0643747051 3.6857641 1103.3357
+188269.0643748094 3.6857247 1103.2765
+188270.0643749137 3.6857641 1103.2963
+188271.064375018 3.6857641 1103.3555
+188272.0643751223 3.6857247 1103.2567
+188273.0643752266 3.6858823 1103.2765
+188274.0643753309 3.6857641 1103.4147
+188275.0643754352 3.6857641 1103.3949
+188276.0643755395 3.6859217 1103.3357
+188277.0643756439 3.6857641 1103.3752
+188278.0643757482 3.6857641 1103.3949
+188279.0643758525 3.685843 1103.3752
+188280.0643759568 3.6858823 1103.316
+188281.0643760611 3.6857641 1103.3555
+188282.0643761654 3.6858823 1103.2765
+188283.0643762697 3.6858034 1103.4147
+188284.064376374 3.6858823 1103.3752
+188285.0643764783 3.685843 1103.3752
+188286.0643765826 3.6858823 1103.3752
+188287.0643766869 3.6859217 1103.3555
+188288.0643767912 3.6859217 1103.2172
+188289.0643768955 3.6857641 1103.3357
+188290.0643769999 3.6858823 1103.3949
+188291.0643771042 3.6859217 1103.3357
+188292.0643772085 3.685961 1103.2765
+188293.0643773128 3.6860003 1103.3949
+188294.0643774171 3.685961 1103.2765
+188295.0643775214 3.6860003 1103.2765
+188296.0643776257 3.6860003 1103.2963
+188297.06437773 3.685961 1103.3357
+188298.0643778343 3.6860003 1103.3555
+188299.0643779386 3.685843 1103.2369
+188300.0643780429 3.6860397 1103.316
+188301.0643781472 3.686079 1103.3949
+188302.0643782516 3.686079 1103.2963
+188303.0643783559 3.686079 1103.3752
+188304.0643784602 3.6860003 1103.316
+188305.0643785645 3.685961 1103.3949
+188306.0643786688 3.685961 1103.3752
+188307.0643787731 3.6860397 1103.4147
+188308.0643788774 3.6860003 1103.3555
+188309.0643789817 3.6860397 1103.3357
+188310.064379086 3.6860397 1103.316
+188311.0643791903 3.686079 1103.3555
+188312.0643792946 3.6860397 1103.4938
+188313.0643793989 3.6861184 1103.4147
+188314.0643795033 3.6860003 1103.3357
+188315.0643796076 3.686079 1103.4344
+188316.0643797119 3.686079 1103.2765
+188317.0643798162 3.6860397 1103.3752
+188318.0643799205 3.6860397 1103.3949
+188319.0643800248 3.686079 1103.316
+188320.0643801291 3.6860397 1103.3555
+188321.0643802334 3.686079 1103.3752
+188322.0643803377 3.686079 1103.3555
+188323.064380442 3.686079 1103.3949
+188324.0643805463 3.686079 1103.316
+188325.0643806506 3.6861184 1103.3949
+188326.064380755 3.6861973 1103.2765
+188327.0643808593 3.6861184 1103.3555
+188328.0643809636 3.6861579 1103.2963
+188329.0643810679 3.6861973 1103.3555
+188330.0643811722 3.686276 1103.2963
+188331.0643812765 3.6861973 1103.3357
+188332.0643813808 3.6861973 1103.316
+188333.0643814851 3.6863546 1103.2963
+188334.0643815894 3.686276 1103.3357
+188335.0643816937 3.6861973 1103.2963
+188336.064381798 3.6863153 1103.3752
+188337.0643819023 3.6862366 1103.3752
+188338.0643820066 3.686276 1103.2963
+188339.064382111 3.686276 1103.2963
+188340.0643822153 3.686276 1103.3752
+188341.0643823196 3.686276 1103.316
+188342.0643824239 3.686276 1103.3752
+188343.0643825282 3.6862366 1103.3357
+188344.0643826325 3.6862366 1103.3949
+188345.0643827368 3.686394 1103.3357
+188346.0643828411 3.6863153 1103.316
+188347.0643829454 3.686394 1103.3752
+188348.0643830497 3.6863546 1103.316
+188349.064383154 3.6863546 1103.2369
+188350.0643832583 3.6863153 1103.3357
+188351.0643833627 3.6864333 1103.3949
+188352.064383467 3.6864333 1103.3752
+188353.0643835713 3.686394 1103.3357
+188354.0643836756 3.6864333 1103.3555
+188355.0643837799 3.6864333 1103.3357
+188356.0643838842 3.6863546 1103.2963
+188357.0643839885 3.6864729 1103.3357
+188358.0643840928 3.686394 1103.3555
+188359.0643841971 3.6865516 1103.3752
+188360.0643843014 3.6865122 1103.316
+188361.0643844057 3.6865122 1103.4147
+188362.06438451 3.686394 1103.3949
+188363.0643846144 3.6864729 1103.2369
+188364.0643847187 3.6865516 1103.3357
+188365.064384823 3.6865122 1103.3555
+188366.0643849273 3.6865122 1103.3555
+188367.0643850316 3.6865122 1103.3555
+188368.0643851359 3.6865516 1103.3357
+188369.0643852402 3.6865122 1103.316
+188370.0643853445 3.6865516 1103.3555
+188371.0643854488 3.6865909 1103.3555
+188372.0643855531 3.6865122 1103.2369
+188373.0643856574 3.6865909 1103.3357
+188374.0643857617 3.6865909 1103.3357
+188375.064385866 3.6866302 1103.3949
+188376.0643859704 3.6865909 1103.3752
+188377.0643860747 3.6865909 1103.3949
+188378.064386179 3.6866302 1103.2963
+188379.0643862833 3.6865122 1103.3555
+188380.0643863876 3.6865516 1103.2963
+188381.0643864919 3.6865516 1103.3357
+188382.0643865962 3.6866302 1103.316
+188383.0643867005 3.6867483 1103.3752
+188384.0643868048 3.6866696 1103.316
+188385.0643869091 3.6867483 1103.2765
+188386.0643870134 3.6865909 1103.3949
+188387.0643871177 3.6866696 1103.316
+188388.0643872221 3.6866302 1103.3752
+188389.0643873264 3.6866696 1103.2369
+188390.0643874307 3.6867483 1103.3357
+188391.064387535 3.6867483 1103.2567
+188392.0643876393 3.6866696 1103.3949
+188393.0643877436 3.6867089 1103.316
+188394.0643878479 3.6867483 1103.2963
+188395.0643879522 3.6867089 1103.316
+188396.0643880565 3.6867089 1103.2567
+188397.0643881608 3.6867878 1103.3752
+188398.0643882651 3.6867483 1103.316
+188399.0643883694 3.6868272 1103.316
+188400.0643884738 3.6866696 1103.3555
+188401.0643885781 3.6868665 1103.2765
+188402.0643886824 3.6867089 1103.4147
+188403.0643887867 3.6867878 1103.3555
+188404.064388891 3.6866696 1103.3555
+188405.0643889953 3.6867483 1103.3949
+188406.0643890996 3.6867878 1103.3949
+188407.0643892039 3.6868272 1103.2765
+188408.0643893082 3.6868272 1103.4147
+188409.0643894125 3.6869059 1103.3357
+188410.0643895168 3.6869059 1103.3555
+188411.0643896211 3.6868665 1103.3752
+188412.0643897254 3.6868272 1103.3752
+188413.0643898298 3.6868665 1103.316
+188414.0643899341 3.6869452 1103.3555
+188415.0643900384 3.6868272 1103.2567
+188416.0643901427 3.6869059 1103.316
+188417.064390247 3.6868272 1103.2963
+188418.0643903513 3.6869059 1103.3752
+188419.0643904556 3.6869845 1103.3752
+188420.0643905599 3.6869845 1103.3357
+188421.0643906642 3.6869845 1103.316
+188422.0643907685 3.6869845 1103.2963
+188423.0643908728 3.6870239 1103.4344
+188424.0643909771 3.6870239 1103.3949
+188425.0643910815 3.6869452 1103.2963
+188426.0643911858 3.6869845 1103.3357
+188427.0643912901 3.6869845 1103.3752
+188428.0643913944 3.6869845 1103.316
+188429.0643914987 3.6868665 1103.4542
+188430.064391603 3.6869845 1103.3752
+188431.0643917073 3.6871028 1103.3555
+188432.0643918116 3.6869452 1103.316
+188433.0643919159 3.6870239 1103.3752
+188434.0643920202 3.6871421 1103.3357
+188435.0643921245 3.6869845 1103.2765
+188436.0643922288 3.6870239 1103.3555
+188437.0643923332 3.6870239 1103.3357
+188438.0643924375 3.6869845 1103.3949
+188439.0643925418 3.6870632 1103.3949
+188440.0643926461 3.6870632 1103.3752
+188441.0643927504 3.6871028 1103.316
+188442.0643928547 3.6871028 1103.316
+188443.064392959 3.6871028 1103.316
+188444.0643930633 3.6872208 1103.3752
+188445.0643931676 3.6871815 1103.4147
+188446.0643932719 3.6871421 1103.3555
+188447.0643933762 3.6871815 1103.2963
+188448.0643934805 3.6872208 1103.3555
+188449.0643935848 3.6870632 1103.3555
+188450.0643936892 3.6871815 1103.3949
+188451.0643937935 3.6871028 1103.3752
+188452.0643938978 3.6871815 1103.316
+188453.0643940021 3.6871815 1103.3752
+188454.0643941064 3.6872602 1103.3949
+188455.0643942107 3.6871815 1103.3357
+188456.064394315 3.6872208 1103.3555
+188457.0643944193 3.6872602 1103.3752
+188458.0643945236 3.6872602 1103.2963
+188459.0643946279 3.6873388 1103.3555
+188460.0643947322 3.6873388 1103.316
+188461.0643948365 3.6872995 1103.316
+188462.0643949409 3.6873388 1103.3752
+188463.0643950452 3.6872602 1103.3555
+188464.0643951495 3.6872208 1103.3357
+188465.0643952538 3.6872995 1103.3949
+188466.0643953581 3.6873388 1103.3555
+188467.0643954624 3.6873784 1103.316
+188468.0643955667 3.6872995 1103.2963
+188469.064395671 3.6873388 1103.3949
+188470.0643957753 3.6872995 1103.316
+188471.0643958796 3.6873784 1103.316
+188472.0643959839 3.6872602 1103.3357
+188473.0643960882 3.6874177 1103.3357
+188474.0643961926 3.6874177 1103.2765
+188475.0643962969 3.6874571 1103.3357
+188476.0643964012 3.6872602 1103.3357
+188477.0643965055 3.6873388 1103.2963
+188478.0643966098 3.6874177 1103.3752
+188479.0643967141 3.6876144 1103.316
+188480.0643968184 3.6875358 1103.316
+188481.0643969227 3.6875358 1103.3357
+188482.064397027 3.6874571 1103.3357
+188483.0643971313 3.6874964 1103.3357
+188484.0643972356 3.6874964 1103.3357
+188485.0643973399 3.6874177 1103.3357
+188486.0643974443 3.6874571 1103.2567
+188487.0643975486 3.6875358 1103.3752
+188488.0643976529 3.6874571 1103.316
+188489.0643977572 3.6875358 1103.2963
+188490.0643978615 3.6874571 1103.2172
+188491.0643979658 3.6874964 1103.3555
+188492.0643980701 3.6875751 1103.2567
+188493.0643981744 3.6875358 1103.2765
+188494.0643982787 3.6875358 1103.2765
+188495.064398383 3.6875358 1103.2963
+188496.0643984873 3.6874964 1103.316
+188497.0643985916 3.6875751 1103.4147
+188498.0643986959 3.6876144 1103.3357
+188499.0643988003 3.6876144 1103.316
+188500.0643989046 3.6876144 1103.3555
+188501.0643990089 3.6875751 1103.2963
+188502.0643991132 3.6875358 1103.2369
+188503.0643992175 3.6875358 1103.3357
+188504.0643993218 3.6875751 1103.3752
+188505.0643994261 3.6876144 1103.2963
+188506.0643995304 3.6875751 1103.4344
+188507.0643996347 3.6876144 1103.3752
+188508.064399739 3.6876144 1103.3949
+188509.0643998433 3.6876934 1103.3752
+188510.0643999476 3.6876144 1103.3752
+188511.064400052 3.6876538 1103.2765
+188512.0644001563 3.6876144 1103.3949
+188513.0644002606 3.6876934 1103.3949
+188514.0644003649 3.6877327 1103.2963
+188515.0644004692 3.687772 1103.2963
+188516.0644005735 3.687772 1103.3357
+188517.0644006778 3.6877327 1103.316
+188518.0644007821 3.6876934 1103.4147
+188519.0644008864 3.687772 1103.2567
+188520.0644009907 3.6876934 1103.3555
+188521.064401095 3.6877327 1103.3555
+188522.0644011993 3.6878901 1103.3357
+188523.0644013037 3.6877327 1103.3555
+188524.064401408 3.6877327 1103.3949
+188525.0644015123 3.687772 1103.316
+188526.0644016166 3.6878114 1103.2963
+188527.0644017209 3.6878114 1103.3357
+188528.0644018252 3.6877327 1103.3949
+188529.0644019295 3.6877327 1103.4344
+188530.0644020338 3.6878114 1103.2765
+188531.0644021381 3.6878901 1103.2765
+188532.0644022424 3.6878507 1103.3555
+188533.0644023467 3.6879294 1103.3357
+188534.064402451 3.6878114 1103.4542
+188535.0644025553 3.6878901 1103.3949
+188536.0644026597 3.6879294 1103.3752
+188537.064402764 3.6878507 1103.3357
+188538.0644028683 3.6879687 1103.2963
+188539.0644029726 3.6879687 1103.3752
+188540.0644030769 3.6878901 1103.2567
+188541.0644031812 3.6879294 1103.3752
+188542.0644032855 3.6879294 1103.4147
+188543.0644033898 3.6879294 1103.2765
+188544.0644034941 3.6879294 1103.3555
+188545.0644035984 3.6879687 1103.4147
+188546.0644037027 3.6878901 1103.3555
+188547.064403807 3.6879687 1103.3752
+188548.0644039114 3.6880476 1103.2765
+188549.0644040157 3.6880083 1103.3357
+188550.06440412 3.688087 1103.3949
+188551.0644042243 3.6879687 1103.3357
+188552.0644043286 3.6880083 1103.316
+188553.0644044329 3.6880083 1103.4147
+188554.0644045372 3.6881263 1103.3752
+188555.0644046415 3.6878901 1103.3752
+188556.0644047458 3.6879687 1103.316
+188557.0644048501 3.6880476 1103.3555
+188558.0644049544 3.6880083 1103.3555
+188559.0644050587 3.6880083 1103.4147
+188560.0644051631 3.6880083 1103.3357
+188561.0644052674 3.6880476 1103.3357
+188562.0644053717 3.6880083 1103.3555
+188563.064405476 3.6881263 1103.316
+188564.0644055803 3.688087 1103.3752
+188565.0644056846 3.688087 1103.3357
+188566.0644057889 3.6881263 1103.4344
+188567.0644058932 3.6881263 1103.3555
+188568.0644059975 3.6881263 1103.3555
+188569.0644061018 3.6881263 1103.2765
+188570.0644062061 3.6881263 1103.316
+188571.0644063104 3.6881263 1103.3949
+188572.0644064147 3.688205 1103.3555
+188573.0644065191 3.6881263 1103.3752
+188574.0644066234 3.6882443 1103.316
+188575.0644067277 3.688087 1103.3555
+188576.064406832 3.6881263 1103.316
+188577.0644069363 3.6882837 1103.3752
+188578.0644070406 3.6881657 1103.2963
+188579.0644071449 3.6881657 1103.4344
+188580.0644072492 3.6882837 1103.3555
+188581.0644073535 3.688205 1103.3752
+188582.0644074578 3.6881657 1103.2963
+188583.0644075621 3.688205 1103.5134
+188584.0644076664 3.688205 1103.3949
+188585.0644077708 3.6882443 1103.4147
+188586.0644078751 3.6882837 1103.3555
+188587.0644079794 3.688205 1103.3752
+188588.0644080837 3.6882837 1103.3949
+188589.064408188 3.6882837 1103.3555
+188590.0644082923 3.6883626 1103.4344
+188591.0644083966 3.6883233 1103.4542
+188592.0644085009 3.6883233 1103.2765
+188593.0644086052 3.6882837 1103.3357
+188594.0644087095 3.6883233 1103.2765
+188595.0644088138 3.6883233 1103.3752
+188596.0644089181 3.6883233 1103.2369
+188597.0644090225 3.6882837 1103.3357
+188598.0644091268 3.6884806 1103.3949
+188599.0644092311 3.6882837 1103.3357
+188600.0644093354 3.6883626 1103.316
+188601.0644094397 3.6883626 1103.3357
+188602.064409544 3.6884413 1103.3357
+188603.0644096483 3.6884413 1103.3555
+188604.0644097526 3.6884413 1103.316
+188605.0644098569 3.6884806 1103.2567
+188606.0644099612 3.6884413 1103.2567
+188607.0644100655 3.6884019 1103.3357
+188608.0644101698 3.68852 1103.3555
+188609.0644102742 3.6885986 1103.4147
+188610.0644103785 3.6884413 1103.3555
+188611.0644104828 3.6885986 1103.3949
+188612.0644105871 3.6886382 1103.3555
+188613.0644106914 3.6884413 1103.3555
+188614.0644107957 3.6885593 1103.3357
+188615.0644109 3.6884806 1103.4344
+188616.0644110043 3.6885986 1103.2172
+188617.0644111086 3.6885986 1103.3555
+188618.0644112129 3.68852 1103.3357
+188619.0644113172 3.6885593 1103.3949
+188620.0644114215 3.6885593 1103.4147
+188621.0644115258 3.6886382 1103.4147
+188622.0644116302 3.6885593 1103.4542
+188623.0644117345 3.6885593 1103.3555
+188624.0644118388 3.6884806 1103.3357
+188625.0644119431 3.68852 1103.316
+188626.0644120474 3.68852 1103.3357
+188627.0644121517 3.6886382 1103.4147
+188628.064412256 3.6885593 1103.3357
+188629.0644123603 3.68852 1103.4147
+188630.0644124646 3.6885593 1103.3555
+188631.0644125689 3.6886775 1103.3357
+188632.0644126732 3.6885986 1103.2765
+188633.0644127775 3.6887562 1103.3752
+188634.0644128819 3.6886775 1103.3949
+188635.0644129862 3.6885986 1103.316
+188636.0644130905 3.6886382 1103.316
+188637.0644131948 3.6886382 1103.3555
+188638.0644132991 3.6887169 1103.3357
+188639.0644134034 3.6886382 1103.3357
+188640.0644135077 3.6887169 1103.3752
+188641.064413612 3.6887956 1103.3357
+188642.0644137163 3.6886382 1103.316
+188643.0644138206 3.6887956 1103.3357
+188644.0644139249 3.6886775 1103.3949
+188645.0644140292 3.6886775 1103.4147
+188646.0644141336 3.6887562 1103.3949
+188647.0644142379 3.6888349 1103.3357
+188648.0644143422 3.6886775 1103.3555
+188649.0644144465 3.6887956 1103.316
+188650.0644145508 3.6887956 1103.316
+188651.0644146551 3.6888742 1103.3555
+188652.0644147594 3.6887169 1103.2765
+188653.0644148637 3.6887562 1103.4344
+188654.064414968 3.6887956 1103.3752
+188655.0644150723 3.6888742 1103.5134
+188656.0644151766 3.6889136 1103.3752
+188657.0644152809 3.6888349 1103.3357
+188658.0644153852 3.6888742 1103.3555
+188659.0644154896 3.6888742 1103.316
+188660.0644155939 3.6888349 1103.3949
+188661.0644156982 3.6887956 1103.316
+188662.0644158025 3.6889925 1103.3555
+188663.0644159068 3.6888742 1103.316
+188664.0644160111 3.6889532 1103.316
+188665.0644161154 3.6889136 1103.3949
+188666.0644162197 3.6888742 1103.3752
+188667.064416324 3.6890712 1103.3555
+188668.0644164283 3.6889925 1103.316
+188669.0644165326 3.6889925 1103.3555
+188670.0644166369 3.6889925 1103.3555
+188671.0644167413 3.6889136 1103.4147
+188672.0644168456 3.6889532 1103.4147
+188673.0644169499 3.6889532 1103.3357
+188674.0644170542 3.6890318 1103.3555
+188675.0644171585 3.6890712 1103.3752
+188676.0644172628 3.6890712 1103.3357
+188677.0644173671 3.6890318 1103.2963
+188678.0644174714 3.6890318 1103.4344
+188679.0644175757 3.6890712 1103.3357
+188680.06441768 3.6889925 1103.2765
+188681.0644177843 3.6891105 1103.3555
+188682.0644178886 3.6889925 1103.4147
+188683.064417993 3.6890318 1103.316
+188684.0644180973 3.6890712 1103.2963
+188685.0644182016 3.6891892 1103.3357
+188686.0644183059 3.6889925 1103.3752
+188687.0644184102 3.6890712 1103.3357
+188688.0644185145 3.6891105 1103.2963
+188689.0644186188 3.6890712 1103.4344
+188690.0644187231 3.6891499 1103.3752
+188691.0644188274 3.6891105 1103.316
+188692.0644189317 3.6891105 1103.3752
+188693.064419036 3.6891499 1103.3949
+188694.0644191403 3.6891105 1103.3555
+188695.0644192446 3.6891892 1103.4147
+188696.064419349 3.6891499 1103.2765
+188697.0644194533 3.6891499 1103.3949
+188698.0644195576 3.6891892 1103.316
+188699.0644196619 3.6891892 1103.3949
+188700.0644197662 3.6892288 1103.3949
+188701.0644198705 3.6891499 1103.3752
+188702.0644199748 3.6891892 1103.3752
+188703.0644200791 3.6891892 1103.3949
+188704.0644201834 3.6892288 1103.4344
+188705.0644202877 3.6891892 1103.2963
+188706.064420392 3.6893075 1103.3752
+188707.0644204963 3.6891892 1103.3357
+188708.0644206007 3.6892288 1103.316
+188709.064420705 3.6892288 1103.3357
+188710.0644208093 3.6893861 1103.3357
+188711.0644209136 3.6893468 1103.474
+188712.0644210179 3.6892288 1103.3357
+188713.0644211222 3.6894255 1103.3357
+188714.0644212265 3.6893468 1103.3555
+188715.0644213308 3.6892681 1103.316
+188716.0644214351 3.6893468 1103.3949
+188717.0644215394 3.6893075 1103.3752
+188718.0644216437 3.6893075 1103.3357
+188719.064421748 3.6893468 1103.3555
+188720.0644218524 3.6892681 1103.2963
+188721.0644219567 3.6894648 1103.316
+188722.064422061 3.6893861 1103.3555
+188723.0644221653 3.6894255 1103.316
+188724.0644222696 3.6894255 1103.316
+188725.0644223739 3.6893075 1103.4147
+188726.0644224782 3.6893468 1103.3949
+188727.0644225825 3.6893075 1103.3752
+188728.0644226868 3.6894648 1103.3949
+188729.0644227911 3.6893861 1103.3555
+188730.0644228954 3.6895041 1103.3752
+188731.0644229997 3.6894255 1103.316
+188732.0644231041 3.6894255 1103.316
+188733.0644232084 3.6895041 1103.3752
+188734.0644233127 3.6893861 1103.3357
+188735.064423417 3.6895831 1103.316
+188736.0644235213 3.6894648 1103.3752
+188737.0644236256 3.6894255 1103.3357
+188738.0644237299 3.6895831 1103.3357
+188739.0644238342 3.6894648 1103.316
+188740.0644239385 3.6894648 1103.3949
+188741.0644240428 3.6895437 1103.2963
+188742.0644241471 3.6895041 1103.3752
+188743.0644242514 3.6895041 1103.2963
+188744.0644243557 3.6895831 1103.2963
+188745.0644244601 3.6895437 1103.3752
+188746.0644245644 3.6895831 1103.3555
+188747.0644246687 3.6895831 1103.2963
+188748.064424773 3.6895437 1103.2963
+188749.0644248773 3.6896617 1103.3752
+188750.0644249816 3.6895831 1103.3752
+188751.0644250859 3.6896617 1103.2963
+188752.0644251902 3.6896617 1103.3949
+188753.0644252945 3.6895437 1103.3357
+188754.0644253988 3.6897011 1103.316
+188755.0644255031 3.6896224 1103.3555
+188756.0644256074 3.6896224 1103.316
+188757.0644257118 3.6895831 1103.316
+188758.0644258161 3.6897011 1103.3555
+188759.0644259204 3.6896224 1103.3949
+188760.0644260247 3.6897798 1103.2567
+188761.064426129 3.6896617 1103.3752
+188762.0644262333 3.6896617 1103.3555
+188763.0644263376 3.6896617 1103.2765
+188764.0644264419 3.6896224 1103.316
+188765.0644265462 3.6898191 1103.4344
+188766.0644266505 3.6897404 1103.2765
+188767.0644267548 3.6897798 1103.3555
+188768.0644268591 3.6895831 1103.2765
+188769.0644269635 3.6897798 1103.316
+188770.0644270678 3.6897798 1103.3752
+188771.0644271721 3.6897404 1103.2765
+188772.0644272764 3.689898 1103.3555
+188773.0644273807 3.6898191 1103.2963
+188774.064427485 3.6897011 1103.3555
+188775.0644275893 3.6897011 1103.316
+188776.0644276936 3.6898587 1103.2963
+188777.0644277979 3.6898587 1103.3752
+188778.0644279022 3.6898191 1103.3555
+188779.0644280065 3.6897798 1103.3357
+188780.0644281108 3.6898191 1103.3357
+188781.0644282151 3.6899767 1103.3752
+188782.0644283195 3.6897798 1103.316
+188783.0644284238 3.6898191 1103.4147
+188784.0644285281 3.6897798 1103.316
+188785.0644286324 3.6898587 1103.3752
+188786.0644287367 3.689898 1103.316
+188787.064428841 3.6899374 1103.316
+188788.0644289453 3.689898 1103.3555
+188789.0644290496 3.6899374 1103.4344
+188790.0644291539 3.689898 1103.2765
+188791.0644292582 3.6899374 1103.3555
+188792.0644293625 3.6899374 1103.3555
+188793.0644294668 3.6899374 1103.2765
+188794.0644295712 3.6899374 1103.3555
+188795.0644296755 3.6899374 1103.316
+188796.0644297798 3.690016 1103.3949
+188797.0644298841 3.6899374 1103.3752
+188798.0644299884 3.6899374 1103.3949
+188799.0644300927 3.6899767 1103.3555
+188800.064430197 3.690016 1103.1975
+188801.0644303013 3.6900554 1103.316
+188802.0644304056 3.690016 1103.3357
+188803.0644305099 3.6900947 1103.3949
+188804.0644306142 3.689898 1103.3949
+188805.0644307185 3.6901736 1103.3752
+188806.0644308229 3.6900947 1103.4344
+188807.0644309272 3.6900554 1103.316
+188808.0644310315 3.6900947 1103.3357
+188809.0644311358 3.690134 1103.2765
+188810.0644312401 3.6900554 1103.3357
+188811.0644313444 3.6900947 1103.316
+188812.0644314487 3.690134 1103.3357
+188813.064431553 3.6901736 1103.2963
+188814.0644316573 3.690134 1103.3752
+188815.0644317616 3.690134 1103.2963
+188816.0644318659 3.690134 1103.3357
+188817.0644319702 3.6900947 1103.3752
+188818.0644320745 3.6901736 1103.3357
+188819.0644321789 3.690213 1103.4147
+188820.0644322832 3.690134 1103.3752
+188821.0644323875 3.6901736 1103.316
+188822.0644324918 3.690213 1103.3555
+188823.0644325961 3.6900554 1103.2765
+188824.0644327004 3.6901736 1103.3357
+188825.0644328047 3.6900947 1103.3949
+188826.064432909 3.6902916 1103.316
+188827.0644330133 3.6901736 1103.3752
+188828.0644331176 3.6902523 1103.3752
+188829.0644332219 3.6903703 1103.3752
+188830.0644333262 3.6902916 1103.316
+188831.0644334306 3.6901736 1103.3357
+188832.0644335349 3.690213 1103.4344
+188833.0644336392 3.6902916 1103.4344
+188834.0644337435 3.690213 1103.3357
+188835.0644338478 3.690213 1103.3949
+188836.0644339521 3.6902523 1103.316
+188837.0644340564 3.6902916 1103.4147
+188838.0644341607 3.690331 1103.316
+188839.064434265 3.6902523 1103.2567
+188840.0644343693 3.690331 1103.2765
+188841.0644344736 3.690449 1103.3555
+188842.0644345779 3.690331 1103.3949
+188843.0644346823 3.6903703 1103.316
+188844.0644347866 3.690331 1103.3949
+188845.0644348909 3.690449 1103.316
+188846.0644349952 3.6904097 1103.3555
+188847.0644350995 3.690331 1103.3752
+188848.0644352038 3.6903703 1103.3949
+188849.0644353081 3.6903703 1103.3555
+188850.0644354124 3.690331 1103.3949
+188851.0644355167 3.6902916 1103.3555
+188852.064435621 3.690331 1103.2765
+188853.0644357253 3.690331 1103.2963
+188854.0644358296 3.6904097 1103.3752
+188855.0644359339 3.6904097 1103.316
+188856.0644360383 3.690449 1103.2765
+188857.0644361426 3.6905279 1103.2963
+188858.0644362469 3.6904097 1103.4344
+188859.0644363512 3.6904097 1103.3357
+188860.0644364555 3.6904886 1103.3555
+188861.0644365598 3.6904886 1103.316
+188862.0644366641 3.6904097 1103.3357
+188863.0644367684 3.6904886 1103.3555
+188864.0644368727 3.6905279 1103.3752
+188865.064436977 3.6905279 1103.3752
+188866.0644370813 3.6905673 1103.3752
+188867.0644371856 3.6906459 1103.3752
+188868.06443729 3.6905279 1103.3357
+188869.0644373943 3.6905673 1103.3555
+188870.0644374986 3.6905673 1103.2765
+188871.0644376029 3.6906066 1103.3752
+188872.0644377072 3.6906066 1103.3949
+188873.0644378115 3.6906066 1103.3555
+188874.0644379158 3.6906459 1103.316
+188875.0644380201 3.6906066 1103.2963
+188876.0644381244 3.6906853 1103.3357
+188877.0644382287 3.6906066 1103.4147
+188878.064438333 3.6905673 1103.2963
+188879.0644384373 3.6905673 1103.2765
+188880.0644385417 3.6906459 1103.3949
+188881.064438646 3.6906066 1103.3357
+188882.0644387503 3.690764 1103.4344
+188883.0644388546 3.6906459 1103.3752
+188884.0644389589 3.6907246 1103.3949
+188885.0644390632 3.6906066 1103.3357
+188886.0644391675 3.6906459 1103.3555
+188887.0644392718 3.690764 1103.316
+188888.0644393761 3.6907246 1103.2963
+188889.0644394804 3.6906459 1103.3752
+188890.0644395847 3.6907246 1103.4344
+188891.064439689 3.690764 1103.316
+188892.0644397934 3.6906853 1103.3555
+188893.0644398977 3.690764 1103.2765
+188894.064440002 3.690764 1103.3949
+188895.0644401063 3.6908035 1103.3752
+188896.0644402106 3.6908429 1103.2963
+188897.0644403149 3.6908035 1103.474
+188898.0644404192 3.6908035 1103.3357
+188899.0644405235 3.6908429 1103.2765
+188900.0644406278 3.6906853 1103.3555
+188901.0644407321 3.6908822 1103.3949
+188902.0644408364 3.6908822 1103.2963
+188903.0644409407 3.6908822 1103.2567
+188904.064441045 3.6908035 1103.316
+188905.0644411494 3.6908429 1103.316
+188906.0644412537 3.6908429 1103.3752
+188907.064441358 3.6908035 1103.316
+188908.0644414623 3.6908822 1103.3752
+188909.0644415666 3.6908822 1103.3752
+188910.0644416709 3.6908822 1103.4542
+188911.0644417752 3.6908822 1103.316
+188912.0644418795 3.6908429 1103.3357
+188913.0644419838 3.6909215 1103.3555
+188914.0644420881 3.6908822 1103.3555
+188915.0644421924 3.6909215 1103.2765
+188916.0644422967 3.6909215 1103.4147
+188917.0644424011 3.6909215 1103.2765
+188918.0644425054 3.6910002 1103.1975
+188919.0644426097 3.6909215 1103.3357
+188920.064442714 3.6910002 1103.3752
+188921.0644428183 3.6910002 1103.316
+188922.0644429226 3.6910002 1103.3555
+188923.0644430269 3.6910002 1103.3752
+188924.0644431312 3.6910002 1103.4147
+188925.0644432355 3.6909609 1103.3752
+188926.0644433398 3.6910396 1103.3949
+188927.0644434441 3.6910791 1103.3357
+188928.0644435484 3.6911185 1103.4147
+188929.0644436528 3.6910396 1103.3752
+188930.0644437571 3.6910791 1103.3555
+188931.0644438614 3.6910002 1103.2567
+188932.0644439657 3.6910002 1103.3752
+188933.06444407 3.6911578 1103.3555
+188934.0644441743 3.6910791 1103.3555
+188935.0644442786 3.6910791 1103.316
+188936.0644443829 3.6911185 1103.3555
+188937.0644444872 3.6910791 1103.3949
+188938.0644445915 3.6910791 1103.3357
+188939.0644446958 3.6910791 1103.4147
+188940.0644448001 3.6910791 1103.3752
+188941.0644449044 3.6911185 1103.2963
+188942.0644450088 3.6911578 1103.3357
+188943.0644451131 3.6910791 1103.2765
+188944.0644452174 3.6911185 1103.2963
+188945.0644453217 3.6911972 1103.3357
+188946.064445426 3.6911578 1103.2765
+188947.0644455303 3.6911972 1103.3555
+188948.0644456346 3.6912365 1103.2567
+188949.0644457389 3.6912758 1103.4147
+188950.0644458432 3.6911578 1103.3357
+188951.0644459475 3.6912365 1103.3555
+188952.0644460518 3.6912365 1103.2963
+188953.0644461561 3.6911578 1103.316
+188954.0644462605 3.6911972 1103.2765
+188955.0644463648 3.6912365 1103.3555
+188956.0644464691 3.6912365 1103.3555
+188957.0644465734 3.6913545 1103.474
+188958.0644466777 3.6911578 1103.4147
+188959.064446782 3.6913152 1103.3949
+188960.0644468863 3.6913152 1103.4147
+188961.0644469906 3.6913545 1103.3752
+188962.0644470949 3.6913152 1103.3949
+188963.0644471992 3.6913545 1103.2567
+188964.0644473035 3.6913545 1103.3357
+188965.0644474078 3.6913941 1103.3949
+188966.0644475122 3.6913545 1103.2172
+188967.0644476165 3.6913545 1103.4344
+188968.0644477208 3.6913941 1103.3555
+188969.0644478251 3.6913941 1103.3752
+188970.0644479294 3.6913941 1103.3555
+188971.0644480337 3.6914334 1103.2963
+188972.064448138 3.6913941 1103.3949
+188973.0644482423 3.6913941 1103.3555
+188974.0644483466 3.6913941 1103.2765
+188975.0644484509 3.6913152 1103.3555
+188976.0644485552 3.6914334 1103.3357
+188977.0644486595 3.6914334 1103.3357
+188978.0644487638 3.6914728 1103.3752
+188979.0644488682 3.6915514 1103.3752
+188980.0644489725 3.6914728 1103.3555
+188981.0644490768 3.6915514 1103.3555
+188982.0644491811 3.6914728 1103.3357
+188983.0644492854 3.6915514 1103.2567
+188984.0644493897 3.6913941 1103.3752
+188985.064449494 3.6915121 1103.3357
+188986.0644495983 3.6915121 1103.3357
+188987.0644497026 3.6916301 1103.2963
+188988.0644498069 3.6915514 1103.3357
+188989.0644499112 3.6915514 1103.3555
+188990.0644500155 3.6915514 1103.3949
+188991.0644501199 3.6915121 1103.316
+188992.0644502242 3.6915514 1103.3357
+188993.0644503285 3.6915908 1103.2765
+188994.0644504328 3.6915514 1103.3357
+188995.0644505371 3.6915908 1103.3357
+188996.0644506414 3.6916695 1103.3555
+188997.0644507457 3.6915908 1103.4344
+188998.06445085 3.6916301 1103.3752
+188999.0644509543 3.6915908 1103.2963
+189000.0644510586 3.691709 1103.2963
+189001.0644511629 3.6916301 1103.316
+189002.0644512672 3.6916695 1103.2765
+189003.0644513716 3.6915908 1103.4542
+189004.0644514759 3.6916695 1103.3752
+189005.0644515802 3.691709 1103.316
+189006.0644516845 3.6915908 1103.3949
+189007.0644517888 3.6916695 1103.3357
+189008.0644518931 3.6917484 1103.3555
+189009.0644519974 3.6917877 1103.3555
+189010.0644521017 3.691709 1103.2765
+189011.064452206 3.6915908 1103.3555
+189012.0644523103 3.6917484 1103.2765
+189013.0644524146 3.6917484 1103.4344
+189014.0644525189 3.6918271 1103.3752
+189015.0644526233 3.6918271 1103.3752
+189016.0644527276 3.6917877 1103.2765
+189017.0644528319 3.6917877 1103.3357
+189018.0644529362 3.691709 1103.2963
+189019.0644530405 3.6918271 1103.3357
+189020.0644531448 3.6918271 1103.3555
+189021.0644532491 3.6918271 1103.3555
+189022.0644533534 3.6919451 1103.316
+189023.0644534577 3.6917484 1103.3949
+189024.064453562 3.6917877 1103.316
+189025.0644536663 3.6918664 1103.316
+189026.0644537706 3.6918271 1103.3357
+189027.0644538749 3.6919057 1103.3752
+189028.0644539793 3.6919451 1103.316
+189029.0644540836 3.6918271 1103.3357
+189030.0644541879 3.6919057 1103.3949
+189031.0644542922 3.6919057 1103.2963
+189032.0644543965 3.6918271 1103.3555
+189033.0644545008 3.6919057 1103.2567
+189034.0644546051 3.6919451 1103.3555
+189035.0644547094 3.6919451 1103.3555
+189036.0644548137 3.6919844 1103.316
+189037.064454918 3.6919057 1103.3357
+189038.0644550223 3.6919844 1103.3752
+189039.0644551266 3.6919844 1103.316
+189040.064455231 3.6919057 1103.3752
+189041.0644553353 3.6919057 1103.3949
+189042.0644554396 3.6919844 1103.2963
+189043.0644555439 3.692024 1103.2765
+189044.0644556482 3.6919844 1103.316
+189045.0644557525 3.6919057 1103.316
+189046.0644558568 3.692024 1103.2765
+189047.0644559611 3.6919451 1103.3752
+189048.0644560654 3.6920633 1103.3357
+189049.0644561697 3.6919844 1103.3555
+189050.064456274 3.6921027 1103.4344
+189051.0644563783 3.692024 1103.3555
+189052.0644564827 3.6921027 1103.2765
+189053.064456587 3.692024 1103.4147
+189054.0644566913 3.692024 1103.3752
+189055.0644567956 3.692024 1103.316
+189056.0644568999 3.6921027 1103.4147
+189057.0644570042 3.692142 1103.2963
+189058.0644571085 3.6921027 1103.3752
+189059.0644572128 3.6920633 1103.3357
+189060.0644573171 3.692142 1103.3357
+189061.0644574214 3.692024 1103.316
+189062.0644575257 3.6921027 1103.3357
+189063.06445763 3.6922207 1103.3752
+189064.0644577343 3.6923389 1103.4542
+189065.0644578387 3.6921813 1103.2963
+189066.064457943 3.6921027 1103.4344
+189067.0644580473 3.6922207 1103.3752
+189068.0644581516 3.69226 1103.4147
+189069.0644582559 3.6921813 1103.316
+189070.0644583602 3.69226 1103.2765
+189071.0644584645 3.6922994 1103.3357
+189072.0644585688 3.6921813 1103.2963
+189073.0644586731 3.6922207 1103.3555
+189074.0644587774 3.6922994 1103.3555
+189075.0644588817 3.6922207 1103.2567
+189076.064458986 3.6922207 1103.3555
+189077.0644590904 3.69226 1103.3555
+189078.0644591947 3.6923389 1103.3357
+189079.064459299 3.6923389 1103.2765
+189080.0644594033 3.6922994 1103.2765
+189081.0644595076 3.6923389 1103.3555
+189082.0644596119 3.6923783 1103.2567
+189083.0644597162 3.6923389 1103.3752
+189084.0644598205 3.69226 1103.316
+189085.0644599248 3.6923389 1103.3357
+189086.0644600291 3.69226 1103.316
+189087.0644601334 3.6923389 1103.3555
+189088.0644602377 3.6922994 1103.2765
+189089.0644603421 3.6923783 1103.3555
+189090.0644604464 3.6924176 1103.3357
+189091.0644605507 3.6923389 1103.3357
+189092.064460655 3.6922994 1103.4344
+189093.0644607593 3.6924963 1103.4344
+189094.0644608636 3.692457 1103.316
+189095.0644609679 3.692457 1103.2963
+189096.0644610722 3.6923783 1103.3555
+189097.0644611765 3.6924176 1103.316
+189098.0644612808 3.692457 1103.3357
+189099.0644613851 3.6924963 1103.4147
+189100.0644614894 3.6924176 1103.2963
+189101.0644615937 3.6924963 1103.3949
+189102.0644616981 3.6924963 1103.3357
+189103.0644618024 3.692457 1103.3752
+189104.0644619067 3.692457 1103.3752
+189105.064462011 3.692575 1103.4147
+189106.0644621153 3.6924963 1103.2567
+189107.0644622196 3.6925356 1103.4344
+189108.0644623239 3.6926146 1103.3357
+189109.0644624282 3.6924963 1103.4542
+189110.0644625325 3.6926146 1103.3357
+189111.0644626368 3.6925356 1103.3555
+189112.0644627411 3.6926539 1103.3357
+189113.0644628454 3.6925356 1103.3752
+189114.0644629498 3.6925356 1103.3752
+189115.0644630541 3.6925356 1103.2963
+189116.0644631584 3.6925356 1103.3555
+189117.0644632627 3.6924963 1103.2963
+189118.064463367 3.692575 1103.4147
+189119.0644634713 3.692575 1103.4344
+189120.0644635756 3.6926146 1103.3357
+189121.0644636799 3.6926146 1103.3949
+189122.0644637842 3.6926539 1103.3752
+189123.0644638885 3.6926932 1103.316
+189124.0644639928 3.6926146 1103.316
+189125.0644640971 3.6925356 1103.3752
+189126.0644642015 3.6927326 1103.3555
+189127.0644643058 3.6926932 1103.3555
+189128.0644644101 3.6927326 1103.3555
+189129.0644645144 3.6926539 1103.3555
+189130.0644646187 3.6926932 1103.3752
+189131.064464723 3.6927326 1103.3555
+189132.0644648273 3.6926539 1103.4147
+189133.0644649316 3.6927719 1103.3752
+189134.0644650359 3.6928113 1103.2567
+189135.0644651402 3.6927326 1103.3555
+189136.0644652445 3.6926539 1103.2963
+189137.0644653488 3.6927326 1103.316
+189138.0644654532 3.6927326 1103.2963
+189139.0644655575 3.6928113 1103.3752
+189140.0644656618 3.6927326 1103.2963
+189141.0644657661 3.6928113 1103.3357
+189142.0644658704 3.6928113 1103.474
+189143.0644659747 3.6927719 1103.3752
+189144.064466079 3.6928113 1103.2963
+189145.0644661833 3.6928506 1103.4147
+189146.0644662876 3.6928899 1103.316
+189147.0644663919 3.6928899 1103.2963
+189148.0644664962 3.6928506 1103.316
+189149.0644666005 3.6928113 1103.316
+189150.0644667048 3.6928506 1103.3555
+189151.0644668092 3.6928506 1103.3949
+189152.0644669135 3.6928113 1103.3357
+189153.0644670178 3.6929295 1103.2765
+189154.0644671221 3.6929295 1103.3752
+189155.0644672264 3.6928899 1103.3555
+189156.0644673307 3.6930082 1103.3555
+189157.064467435 3.6929295 1103.4344
+189158.0644675393 3.6929688 1103.3752
+189159.0644676436 3.6929295 1103.3752
+189160.0644677479 3.6930082 1103.3555
+189161.0644678522 3.6928899 1103.3752
+189162.0644679565 3.6928899 1103.3752
+189163.0644680609 3.6929688 1103.3555
+189164.0644681652 3.6930082 1103.3555
+189165.0644682695 3.6930869 1103.3752
+189166.0644683738 3.6930082 1103.3357
+189167.0644684781 3.6929688 1103.4344
+189168.0644685824 3.6930475 1103.3357
+189169.0644686867 3.6930869 1103.3555
+189170.064468791 3.6930475 1103.3357
+189171.0644688953 3.6930869 1103.3357
+189172.0644689996 3.6930869 1103.2963
+189173.0644691039 3.6930869 1103.3752
+189174.0644692082 3.6932049 1103.3949
+189175.0644693126 3.6930869 1103.3357
+189176.0644694169 3.6930475 1103.3555
+189177.0644695212 3.6929688 1103.2765
+189178.0644696255 3.6931655 1103.4147
+189179.0644697298 3.6931262 1103.3949
+189180.0644698341 3.6931655 1103.4344
+189181.0644699384 3.6931655 1103.3555
+189182.0644700427 3.6930869 1103.2765
+189183.064470147 3.6933231 1103.4147
+189184.0644702513 3.6930869 1103.4147
+189185.0644703556 3.6932445 1103.3949
+189186.0644704599 3.6930869 1103.3555
+189187.0644705642 3.6931655 1103.3752
+189188.0644706686 3.6932049 1103.3357
+189189.0644707729 3.6932049 1103.4147
+189190.0644708772 3.6932445 1103.316
+189191.0644709815 3.6932049 1103.4344
+189192.0644710858 3.6933231 1103.3752
+189193.0644711901 3.6932049 1103.3357
+189194.0644712944 3.6932049 1103.3357
+189195.0644713987 3.6931655 1103.4147
+189196.064471503 3.6932049 1103.3752
+189197.0644716073 3.6932049 1103.2963
+189198.0644717116 3.6933231 1103.3555
+189199.0644718159 3.6932049 1103.3949
+189200.0644719203 3.6932838 1103.316
+189201.0644720246 3.6932049 1103.3949
+189202.0644721289 3.6932838 1103.2369
+189203.0644722332 3.6933625 1103.4344
+189204.0644723375 3.6932445 1103.3357
+189205.0644724418 3.6933231 1103.3357
+189206.0644725461 3.6933625 1103.4344
+189207.0644726504 3.6934412 1103.3949
+189208.0644727547 3.6933625 1103.3752
+189209.064472859 3.6934018 1103.4147
+189210.0644729633 3.6933231 1103.2963
+189211.0644730676 3.6934805 1103.3949
+189212.064473172 3.6933625 1103.3752
+189213.0644732763 3.6934018 1103.3357
+189214.0644733806 3.6933625 1103.3752
+189215.0644734849 3.6934018 1103.3555
+189216.0644735892 3.6933625 1103.2963
+189217.0644736935 3.6933231 1103.3357
+189218.0644737978 3.6934018 1103.3752
+189219.0644739021 3.6934018 1103.3949
+189220.0644740064 3.6934412 1103.3357
+189221.0644741107 3.6934018 1103.3555
+189222.064474215 3.6934412 1103.2963
+189223.0644743193 3.6934412 1103.316
+189224.0644744236 3.6934805 1103.4147
+189225.064474528 3.6934412 1103.3752
+189226.0644746323 3.6934412 1103.3357
+189227.0644747366 3.6934805 1103.3555
+189228.0644748409 3.6934805 1103.3752
+189229.0644749452 3.6934412 1103.3949
+189230.0644750495 3.6934805 1103.3752
+189231.0644751538 3.6935987 1103.3555
+189232.0644752581 3.6934805 1103.2567
+189233.0644753624 3.6935594 1103.316
+189234.0644754667 3.6935594 1103.3555
+189235.064475571 3.6935198 1103.316
+189236.0644756753 3.6935198 1103.3752
+189237.0644757797 3.6935594 1103.316
+189238.064475884 3.6935594 1103.3949
+189239.0644759883 3.6935594 1103.3357
+189240.0644760926 3.6936774 1103.4344
+189241.0644761969 3.6936381 1103.2765
+189242.0644763012 3.6936774 1103.2765
+189243.0644764055 3.6936381 1103.3357
+189244.0644765098 3.6936774 1103.4147
+189245.0644766141 3.6937168 1103.3357
+189246.0644767184 3.6937561 1103.4147
+189247.0644768227 3.6935987 1103.3555
+189248.064476927 3.6936774 1103.3357
+189249.0644770314 3.6937561 1103.2765
+189250.0644771357 3.6936774 1103.3357
+189251.06447724 3.6937561 1103.4147
+189252.0644773443 3.6937561 1103.3555
+189253.0644774486 3.6936774 1103.2567
+189254.0644775529 3.6937168 1103.3357
+189255.0644776572 3.6937561 1103.3357
+189256.0644777615 3.6937168 1103.2765
+189257.0644778658 3.6937954 1103.3357
+189258.0644779701 3.6937561 1103.3357
+189259.0644780744 3.6937168 1103.3949
+189260.0644781787 3.6936774 1103.3357
+189261.0644782831 3.6937954 1103.316
+189262.0644783874 3.6937168 1103.3949
+189263.0644784917 3.6937168 1103.3357
+189264.064478596 3.6938348 1103.3357
+189265.0644787003 3.6938348 1103.4542
+189266.0644788046 3.6937561 1103.3555
+189267.0644789089 3.6938348 1103.3357
+189268.0644790132 3.6938744 1103.316
+189269.0644791175 3.6939137 1103.3555
+189270.0644792218 3.6938744 1103.3357
+189271.0644793261 3.6938744 1103.316
+189272.0644794304 3.6938744 1103.3357
+189273.0644795347 3.6938744 1103.4147
+189274.0644796391 3.6939924 1103.3949
+189275.0644797434 3.6938744 1103.3357
+189276.0644798477 3.6938744 1103.4542
+189277.064479952 3.6937954 1103.3357
+189278.0644800563 3.693953 1103.2963
+189279.0644801606 3.6939137 1103.3357
+189280.0644802649 3.6938744 1103.2765
+189281.0644803692 3.6939924 1103.3357
+189282.0644804735 3.6939137 1103.316
+189283.0644805778 3.6939924 1103.2963
+189284.0644806821 3.693953 1103.3357
+189285.0644807864 3.6940711 1103.3752
+189286.0644808908 3.6939924 1103.3752
+189287.0644809951 3.693953 1103.3555
+189288.0644810994 3.6940317 1103.2765
+189289.0644812037 3.6939924 1103.4344
+189290.064481308 3.6939924 1103.3752
+189291.0644814123 3.6940317 1103.3752
+189292.0644815166 3.6941497 1103.3752
+189293.0644816209 3.6941104 1103.3555
+189294.0644817252 3.6940711 1103.474
+189295.0644818295 3.693953 1103.2567
+189296.0644819338 3.6940317 1103.3555
+189297.0644820381 3.6940317 1103.3357
+189298.0644821425 3.6941497 1103.3752
+189299.0644822468 3.6940711 1103.3555
+189300.0644823511 3.6941497 1103.3752
+189301.0644824554 3.6940711 1103.3752
+189302.0644825597 3.6941497 1103.3555
+189303.064482664 3.6941497 1103.3357
+189304.0644827683 3.6941497 1103.4147
+189305.0644828726 3.6941893 1103.3555
+189306.0644829769 3.6941893 1103.2963
+189307.0644830812 3.6941104 1103.4147
+189308.0644831855 3.6941497 1103.2963
+189309.0644832898 3.6941893 1103.3357
+189310.0644833941 3.694268 1103.2765
+189311.0644834985 3.6941497 1103.316
+189312.0644836028 3.694268 1103.2963
+189313.0644837071 3.6941893 1103.3949
+189314.0644838114 3.6942286 1103.3555
+189315.0644839157 3.6942286 1103.3555
+189316.06448402 3.6943073 1103.3949
+189317.0644841243 3.6942286 1103.316
+189318.0644842286 3.694268 1103.3555
+189319.0644843329 3.6941893 1103.3752
+189320.0644844372 3.694268 1103.3357
+189321.0644845415 3.6943073 1103.2369
+189322.0644846458 3.6943073 1103.3949
+189323.0644847502 3.6943073 1103.2567
+189324.0644848545 3.6943467 1103.2963
+189325.0644849588 3.6943073 1103.3949
+189326.0644850631 3.694268 1103.3555
+189327.0644851674 3.6943073 1103.3555
+189328.0644852717 3.6943073 1103.3357
+189329.064485376 3.6943467 1103.3555
+189330.0644854803 3.694268 1103.3357
+189331.0644855846 3.6943073 1103.4344
+189332.0644856889 3.6943073 1103.4344
+189333.0644857932 3.6943467 1103.2369
+189334.0644858975 3.6945043 1103.3555
+189335.0644860019 3.6944253 1103.2567
+189336.0644861062 3.6944253 1103.3555
+189337.0644862105 3.694386 1103.3555
+189338.0644863148 3.694386 1103.3357
+189339.0644864191 3.6944649 1103.3752
+189340.0644865234 3.6944649 1103.4344
+189341.0644866277 3.6944649 1103.3555
+189342.064486732 3.6944253 1103.3555
+189343.0644868363 3.6944649 1103.2765
+189344.0644869406 3.6945436 1103.3752
+189345.0644870449 3.6945043 1103.3555
+189346.0644871492 3.6944253 1103.3555
+189347.0644872535 3.6945043 1103.316
+189348.0644873579 3.694386 1103.3752
+189349.0644874622 3.6945829 1103.2963
+189350.0644875665 3.6945829 1103.2963
+189351.0644876708 3.6945043 1103.3357
+189352.0644877751 3.6945829 1103.316
+189353.0644878794 3.6945043 1103.3555
+189354.0644879837 3.6945829 1103.3357
+189355.064488088 3.6946616 1103.3357
+189356.0644881923 3.6946223 1103.4344
+189357.0644882966 3.6946223 1103.2369
+189358.0644884009 3.6945829 1103.2963
+189359.0644885052 3.6946616 1103.3752
+189360.0644886096 3.6945829 1103.3555
+189361.0644887139 3.6945829 1103.2765
+189362.0644888182 3.6945829 1103.3555
+189363.0644889225 3.694701 1103.4344
+189364.0644890268 3.6947403 1103.3949
+189365.0644891311 3.694701 1103.3752
+189366.0644892354 3.6946616 1103.3949
+189367.0644893397 3.6946616 1103.3357
+189368.064489444 3.694701 1103.2765
+189369.0644895483 3.6946223 1103.3752
+189370.0644896526 3.6947403 1103.3555
+189371.0644897569 3.6945829 1103.3555
+189372.0644898613 3.6947403 1103.3555
+189373.0644899656 3.6946616 1103.4344
+189374.0644900699 3.6947403 1103.3555
+189375.0644901742 3.694701 1103.2963
+189376.0644902785 3.6947799 1103.5332
+189377.0644903828 3.6947799 1103.2765
+189378.0644904871 3.6946616 1103.3357
+189379.0644905914 3.6947799 1103.3949
+189380.0644906957 3.6947799 1103.2963
+189381.0644908 3.6947799 1103.3752
+189382.0644909043 3.6947799 1103.3949
+189383.0644910086 3.6947799 1103.3357
+189384.0644911129 3.6948586 1103.3555
+189385.0644912173 3.6948586 1103.3949
+189386.0644913216 3.6947799 1103.2963
+189387.0644914259 3.6948192 1103.3357
+189388.0644915302 3.6948192 1103.2963
+189389.0644916345 3.6948192 1103.2963
+189390.0644917388 3.6948586 1103.3949
+189391.0644918431 3.6949372 1103.3357
+189392.0644919474 3.6949372 1103.316
+189393.0644920517 3.6948979 1103.3357
+189394.064492156 3.6948979 1103.3949
+189395.0644922603 3.6948979 1103.3357
+189396.0644923646 3.6948979 1103.3752
+189397.064492469 3.6949372 1103.3949
+189398.0644925733 3.6950159 1103.3555
+189399.0644926776 3.6948192 1103.3357
+189400.0644927819 3.6949372 1103.3752
+189401.0644928862 3.6949766 1103.3555
+189402.0644929905 3.6949372 1103.2963
+189403.0644930948 3.6948979 1103.2963
+189404.0644931991 3.6949766 1103.3555
+189405.0644933034 3.6949372 1103.316
+189406.0644934077 3.6950159 1103.3357
+189407.064493512 3.6950159 1103.3555
+189408.0644936163 3.6949766 1103.3555
+189409.0644937207 3.6950948 1103.2963
+189410.064493825 3.6950552 1103.3752
+189411.0644939293 3.6949766 1103.3752
+189412.0644940336 3.6950948 1103.3555
+189413.0644941379 3.6950159 1103.4344
+189414.0644942422 3.6950159 1103.3357
+189415.0644943465 3.6951342 1103.3752
+189416.0644944508 3.6950552 1103.3555
+189417.0644945551 3.6950948 1103.2765
+189418.0644946594 3.6952128 1103.2567
+189419.0644947637 3.6951342 1103.4344
+189420.064494868 3.6951342 1103.3555
+189421.0644949724 3.6951342 1103.4147
+189422.0644950767 3.6950159 1103.316
+189423.064495181 3.6951342 1103.3357
+189424.0644952853 3.6951342 1103.3949
+189425.0644953896 3.6950552 1103.2963
+189426.0644954939 3.6952128 1103.3949
+189427.0644955982 3.6951735 1103.316
+189428.0644957025 3.6950948 1103.3357
+189429.0644958068 3.6952128 1103.3555
+189430.0644959111 3.6950552 1103.3357
+189431.0644960154 3.6953309 1103.2963
+189432.0644961197 3.6952128 1103.4147
+189433.064496224 3.6951735 1103.3555
+189434.0644963284 3.6952128 1103.3949
+189435.0644964327 3.6952522 1103.2369
+189436.064496537 3.6952522 1103.3357
+189437.0644966413 3.6952522 1103.3357
+189438.0644967456 3.6953309 1103.4147
+189439.0644968499 3.6952915 1103.316
+189440.0644969542 3.6952128 1103.3555
+189441.0644970585 3.6953702 1103.3357
+189442.0644971628 3.6953309 1103.316
+189443.0644972671 3.6954098 1103.316
+189444.0644973714 3.6953309 1103.3357
+189445.0644974757 3.6953309 1103.316
+189446.0644975801 3.6952128 1103.3555
+189447.0644976844 3.6953309 1103.316
+189448.0644977887 3.6952915 1103.3949
+189449.064497893 3.6954491 1103.3357
+189450.0644979973 3.6953702 1103.2963
+189451.0644981016 3.6952915 1103.3949
+189452.0644982059 3.6953702 1103.3752
+189453.0644983102 3.6953702 1103.2963
+189454.0644984145 3.6953309 1103.3357
+189455.0644985188 3.6954491 1103.3555
+189456.0644986231 3.6953702 1103.316
+189457.0644987274 3.6954098 1103.3357
+189458.0644988318 3.6954098 1103.3752
+189459.0644989361 3.6954098 1103.3357
+189460.0644990404 3.6953702 1103.3357
+189461.0644991447 3.6954098 1103.4344
+189462.064499249 3.6954491 1103.2567
+189463.0644993533 3.6955278 1103.2963
+189464.0644994576 3.6955671 1103.2765
+189465.0644995619 3.6954885 1103.3752
+189466.0644996662 3.6955278 1103.3357
+189467.0644997705 3.6955671 1103.3949
+189468.0644998748 3.6955278 1103.3752
+189469.0644999791 3.6955671 1103.3752
+189470.0645000834 3.6955671 1103.316
+189471.0645001878 3.6956458 1103.2963
+189472.0645002921 3.6955671 1103.4147
+189473.0645003964 3.6955671 1103.3949
+189474.0645005007 3.6955671 1103.3752
+189475.064500605 3.6955671 1103.316
+189476.0645007093 3.6957247 1103.316
+189477.0645008136 3.6957247 1103.316
+189478.0645009179 3.6955671 1103.3555
+189479.0645010222 3.6956458 1103.2765
+189480.0645011265 3.6956458 1103.3752
+189481.0645012308 3.6956458 1103.4147
+189482.0645013351 3.6956065 1103.3357
+189483.0645014395 3.6956065 1103.4147
+189484.0645015438 3.6956458 1103.2567
+189485.0645016481 3.6956851 1103.316
+189486.0645017524 3.6956458 1103.316
+189487.0645018567 3.6956851 1103.2369
+189488.064501961 3.6957247 1103.4542
+189489.0645020653 3.6957641 1103.316
+189490.0645021696 3.6957247 1103.4147
+189491.0645022739 3.6957247 1103.3357
+189492.0645023782 3.6956458 1103.4344
+189493.0645024825 3.6957641 1103.3357
+189494.0645025868 3.6958034 1103.3949
+189495.0645026912 3.6958427 1103.3752
+189496.0645027955 3.6957247 1103.3949
+189497.0645028998 3.6958034 1103.2963
+189498.0645030041 3.6956851 1103.4147
+189499.0645031084 3.6957641 1103.316
+189500.0645032127 3.6957641 1103.3357
+189501.064503317 3.6958427 1103.4147
+189502.0645034213 3.6958427 1103.316
+189503.0645035256 3.6958821 1103.3555
+189504.0645036299 3.6958821 1103.3555
+189505.0645037342 3.6958427 1103.2369
+189506.0645038385 3.6959608 1103.3752
+189507.0645039428 3.6958034 1103.3357
+189508.0645040472 3.6958821 1103.2765
+189509.0645041515 3.6958427 1103.3357
+189510.0645042558 3.6959608 1103.3949
+189511.0645043601 3.6957247 1103.3949
+189512.0645044644 3.6958821 1103.3752
+189513.0645045687 3.6959214 1103.3752
+189514.064504673 3.6959608 1103.4344
+189515.0645047773 3.6958821 1103.4147
+189516.0645048816 3.6959214 1103.2963
+189517.0645049859 3.6958821 1103.3752
+189518.0645050902 3.6959214 1103.3357
+189519.0645051945 3.6959214 1103.316
+189520.0645052989 3.6959608 1103.2765
+189521.0645054032 3.6960001 1103.316
+189522.0645055075 3.6961184 1103.3357
+189523.0645056118 3.6958821 1103.2963
+189524.0645057161 3.6959608 1103.3949
+189525.0645058204 3.6960001 1103.3357
+189526.0645059247 3.6959608 1103.4344
+189527.064506029 3.6960001 1103.474
+189528.0645061333 3.6960397 1103.3752
+189529.0645062376 3.696079 1103.3555
+189530.0645063419 3.6960397 1103.3752
+189531.0645064462 3.696079 1103.3752
+189532.0645065506 3.6961184 1103.3555
+189533.0645066549 3.6959608 1103.2963
+189534.0645067592 3.6960397 1103.3949
+189535.0645068635 3.6960397 1103.2567
+189536.0645069678 3.696079 1103.2963
+189537.0645070721 3.6961577 1103.3555
+189538.0645071764 3.6962364 1103.3555
+189539.0645072807 3.696079 1103.4147
+189540.064507385 3.6961577 1103.3949
+189541.0645074893 3.696079 1103.3357
+189542.0645075936 3.696197 1103.2765
+189543.0645076979 3.6961577 1103.2963
+189544.0645078023 3.6961577 1103.2963
+189545.0645079066 3.6962364 1103.2963
+189546.0645080109 3.696197 1103.3752
+189547.0645081152 3.696197 1103.3357
+189548.0645082195 3.696197 1103.3357
+189549.0645083238 3.6962757 1103.3752
+189550.0645084281 3.6962364 1103.3555
+189551.0645085324 3.6962757 1103.2963
+189552.0645086367 3.6963153 1103.3357
+189553.064508741 3.6962364 1103.3555
+189554.0645088453 3.6963153 1103.3555
+189555.0645089496 3.6962757 1103.3949
+189556.0645090539 3.6961577 1103.316
+189557.0645091583 3.696394 1103.4147
+189558.0645092626 3.696394 1103.3752
+189559.0645093669 3.6963153 1103.2765
+189560.0645094712 3.6962757 1103.3555
+189561.0645095755 3.6963546 1103.3752
+189562.0645096798 3.6963153 1103.3752
+189563.0645097841 3.696394 1103.3357
+189564.0645098884 3.6962364 1103.2963
+189565.0645099927 3.6963546 1103.3752
+189566.064510097 3.6963546 1103.316
+189567.0645102013 3.6964333 1103.3357
+189568.0645103056 3.6964726 1103.316
+189569.06451041 3.6963546 1103.3949
+189570.0645105143 3.6964333 1103.3357
+189571.0645106186 3.6963153 1103.2963
+189572.0645107229 3.6964333 1103.3752
+189573.0645108272 3.6964726 1103.3357
+189574.0645109315 3.6964333 1103.316
+189575.0645110358 3.6963546 1103.3555
+189576.0645111401 3.6963546 1103.3752
+189577.0645112444 3.6965513 1103.3752
+189578.0645113487 3.6964726 1103.4147
+189579.064511453 3.6964726 1103.3949
+189580.0645115573 3.6965907 1103.316
+189581.0645116617 3.6965513 1103.4147
+189582.064511766 3.696512 1103.2567
+189583.0645118703 3.6965907 1103.3949
+189584.0645119746 3.696512 1103.2765
+189585.0645120789 3.6965907 1103.3555
+189586.0645121832 3.696512 1103.316
+189587.0645122875 3.6965907 1103.3949
+189588.0645123918 3.6964726 1103.2963
+189589.0645124961 3.696512 1103.4147
+189590.0645126004 3.6966302 1103.3949
+189591.0645127047 3.6965907 1103.2765
+189592.064512809 3.6966696 1103.2963
+189593.0645129133 3.696512 1103.3752
+189594.0645130177 3.6966696 1103.3357
+189595.064513122 3.6966302 1103.3752
+189596.0645132263 3.6965907 1103.3752
+189597.0645133306 3.6967089 1103.3555
+189598.0645134349 3.6965907 1103.3357
+189599.0645135392 3.6966302 1103.3752
+189600.0645136435 3.6966696 1103.3752
+189601.0645137478 3.6967483 1103.2963
+189602.0645138521 3.6966696 1103.4147
+189603.0645139564 3.6967089 1103.3752
+189604.0645140607 3.6966302 1103.2567
+189605.064514165 3.6966302 1103.4147
+189606.0645142694 3.6967483 1103.3752
+189607.0645143737 3.6967089 1103.316
+189608.064514478 3.6967089 1103.4147
+189609.0645145823 3.6967876 1103.3949
+189610.0645146866 3.6966696 1103.3357
+189611.0645147909 3.6967483 1103.3949
+189612.0645148952 3.6967876 1103.3555
+189613.0645149995 3.6968269 1103.3555
+189614.0645151038 3.6967876 1103.3555
+189615.0645152081 3.6968269 1103.316
+189616.0645153124 3.6968663 1103.3949
+189617.0645154167 3.6967483 1103.316
+189618.0645155211 3.6968663 1103.316
+189619.0645156254 3.6968269 1103.4542
+189620.0645157297 3.6968663 1103.2765
+189621.064515834 3.6968663 1103.2765
+189622.0645159383 3.6968269 1103.316
+189623.0645160426 3.6968269 1103.3752
+189624.0645161469 3.6968663 1103.3752
+189625.0645162512 3.6968269 1103.2963
+189626.0645163555 3.6968663 1103.4147
+189627.0645164598 3.6969452 1103.3555
+189628.0645165641 3.6968663 1103.3555
+189629.0645166684 3.6969452 1103.3357
+189630.0645167727 3.6969056 1103.4147
+189631.0645168771 3.6969452 1103.3949
+189632.0645169814 3.6969845 1103.316
+189633.0645170857 3.6969452 1103.3357
+189634.06451719 3.6969452 1103.3555
+189635.0645172943 3.6969452 1103.3949
+189636.0645173986 3.6970239 1103.3555
+189637.0645175029 3.6969845 1103.2963
+189638.0645176072 3.6969452 1103.3752
+189639.0645177115 3.6970239 1103.3555
+189640.0645178158 3.6970239 1103.2963
+189641.0645179201 3.6969845 1103.3357
+189642.0645180244 3.6970632 1103.3357
+189643.0645181288 3.6969845 1103.3752
+189644.0645182331 3.6970239 1103.3555
+189645.0645183374 3.6970632 1103.2963
+189646.0645184417 3.6970239 1103.3949
+189647.064518546 3.6971419 1103.4344
+189648.0645186503 3.6971025 1103.3555
+189649.0645187546 3.6971419 1103.2963
+189650.0645188589 3.6971025 1103.3752
+189651.0645189632 3.6971812 1103.2963
+189652.0645190675 3.6971025 1103.3752
+189653.0645191718 3.6970632 1103.4542
+189654.0645192761 3.6971812 1103.3357
+189655.0645193805 3.6971025 1103.3357
+189656.0645194848 3.6971025 1103.316
+189657.0645195891 3.6972206 1103.316
+189658.0645196934 3.6971419 1103.3357
+189659.0645197977 3.6971419 1103.3357
+189660.064519902 3.6972206 1103.3357
+189661.0645200063 3.6971812 1103.4147
+189662.0645201106 3.6972206 1103.3357
+189663.0645202149 3.6972601 1103.4147
+189664.0645203192 3.6971812 1103.2765
+189665.0645204235 3.6972206 1103.3752
+189666.0645205278 3.6972206 1103.2765
+189667.0645206322 3.6971419 1103.3949
+189668.0645207365 3.6972601 1103.3752
+189669.0645208408 3.6972206 1103.3752
+189670.0645209451 3.6972206 1103.2963
+189671.0645210494 3.6972206 1103.2963
+189672.0645211537 3.6973782 1103.316
+189673.064521258 3.6972995 1103.316
+189674.0645213623 3.6972601 1103.2765
+189675.0645214666 3.6972206 1103.3752
+189676.0645215709 3.6973388 1103.3555
+189677.0645216752 3.6972601 1103.2963
+189678.0645217795 3.6973388 1103.4147
+189679.0645218838 3.6972601 1103.3752
+189680.0645219882 3.6972601 1103.3752
+189681.0645220925 3.6973782 1103.3752
+189682.0645221968 3.6972995 1103.2963
+189683.0645223011 3.6974175 1103.3357
+189684.0645224054 3.6974175 1103.2963
+189685.0645225097 3.6974175 1103.316
+189686.064522614 3.6973388 1103.3949
+189687.0645227183 3.6974175 1103.2567
+189688.0645228226 3.6974175 1103.4147
+189689.0645229269 3.6974175 1103.316
+189690.0645230312 3.6974175 1103.3555
+189691.0645231355 3.6974175 1103.3949
+189692.0645232399 3.6974962 1103.4147
+189693.0645233442 3.6974962 1103.316
+189694.0645234485 3.6975355 1103.3752
+189695.0645235528 3.6974568 1103.316
+189696.0645236571 3.6974568 1103.3357
+189697.0645237614 3.6975355 1103.316
+189698.0645238657 3.6975355 1103.3357
+189699.06452397 3.6975355 1103.3555
+189700.0645240743 3.6974568 1103.3555
+189701.0645241786 3.6975355 1103.3949
+189702.0645242829 3.6975355 1103.2963
+189703.0645243872 3.6975751 1103.3357
+189704.0645244916 3.6975751 1103.3555
+189705.0645245959 3.6975751 1103.4344
+189706.0645247002 3.6976931 1103.3357
+189707.0645248045 3.6976538 1103.3752
+189708.0645249088 3.6976144 1103.3555
+189709.0645250131 3.6976144 1103.2963
+189710.0645251174 3.6976538 1103.316
+189711.0645252217 3.6976144 1103.2963
+189712.064525326 3.6976538 1103.2765
+189713.0645254303 3.6976144 1103.3555
+189714.0645255346 3.6976538 1103.3949
+189715.0645256389 3.6976144 1103.3752
+189716.0645257432 3.6977718 1103.2963
+189717.0645258476 3.6977324 1103.3555
+189718.0645259519 3.6976931 1103.2765
+189719.0645260562 3.6977718 1103.2963
+189720.0645261605 3.6976931 1103.316
+189721.0645262648 3.6976931 1103.3555
+189722.0645263691 3.6977324 1103.4147
+189723.0645264734 3.6976931 1103.3555
+189724.0645265777 3.6976538 1103.3752
+189725.064526682 3.6976538 1103.2963
+189726.0645267863 3.6977718 1103.2963
+189727.0645268906 3.6978111 1103.3949
+189728.0645269949 3.6976538 1103.3949
+189729.0645270993 3.6978111 1103.3555
+189730.0645272036 3.6978111 1103.3357
+189731.0645273079 3.6977718 1103.3555
+189732.0645274122 3.6978505 1103.3357
+189733.0645275165 3.69789 1103.3357
+189734.0645276208 3.6978505 1103.3555
+189735.0645277251 3.6977324 1103.3357
+189736.0645278294 3.6978111 1103.3949
+189737.0645279337 3.6978505 1103.3949
+189738.064528038 3.6978505 1103.4542
+189739.0645281423 3.6978111 1103.3555
+189740.0645282466 3.69789 1103.2765
+189741.064528351 3.6978505 1103.3949
+189742.0645284553 3.6979294 1103.2765
+189743.0645285596 3.69789 1103.4147
+189744.0645286639 3.6978505 1103.316
+189745.0645287682 3.69789 1103.3555
+189746.0645288725 3.6979687 1103.2765
+189747.0645289768 3.6979294 1103.4147
+189748.0645290811 3.6979294 1103.3949
+189749.0645291854 3.6979687 1103.3752
+189750.0645292897 3.6979294 1103.3555
+189751.064529394 3.6979294 1103.3357
+189752.0645294983 3.6979294 1103.2963
+189753.0645296026 3.6980867 1103.3357
+189754.064529707 3.6980081 1103.3555
+189755.0645298113 3.6980474 1103.3752
+189756.0645299156 3.6980474 1103.3555
+189757.0645300199 3.6979687 1103.2567
+189758.0645301242 3.6980081 1103.4147
+189759.0645302285 3.6979687 1103.3357
+189760.0645303328 3.6980867 1103.3555
+189761.0645304371 3.6979294 1103.3555
+189762.0645305414 3.6980867 1103.2963
+189763.0645306457 3.6980867 1103.316
+189764.06453075 3.698205 1103.3555
+189765.0645308543 3.6980867 1103.3555
+189766.0645309587 3.6981261 1103.3752
+189767.064531063 3.6980081 1103.2765
+189768.0645311673 3.6980867 1103.2765
+189769.0645312716 3.6980474 1103.3752
+189770.0645313759 3.6979687 1103.4542
+189771.0645314802 3.6980474 1103.3555
+189772.0645315845 3.6980474 1103.2369
+189773.0645316888 3.6981261 1103.3357
+189774.0645317931 3.6981657 1103.316
+189775.0645318974 3.6981261 1103.3555
+189776.0645320017 3.698205 1103.3357
+189777.064532106 3.6980867 1103.3357
+189778.0645322104 3.6982837 1103.3752
+189779.0645323147 3.6981657 1103.3752
+189780.064532419 3.6982443 1103.2963
+189781.0645325233 3.6982443 1103.3357
+189782.0645326276 3.6982443 1103.3357
+189783.0645327319 3.698323 1103.3555
+189784.0645328362 3.6981657 1103.3752
+189785.0645329405 3.698323 1103.316
+189786.0645330448 3.6982443 1103.2963
+189787.0645331491 3.6983624 1103.3752
+189788.0645332534 3.698323 1103.316
+189789.0645333577 3.698323 1103.2765
+189790.064533462 3.6982837 1103.3752
+189791.0645335664 3.6982443 1103.3752
+189792.0645336707 3.698323 1103.2963
+189793.064533775 3.698323 1103.4542
+189794.0645338793 3.698323 1103.3357
+189795.0645339836 3.6982837 1103.3752
+189796.0645340879 3.6982837 1103.316
+189797.0645341922 3.698441 1103.316
+189798.0645342965 3.6983624 1103.3752
+189799.0645344008 3.698323 1103.3752
+189800.0645345051 3.6983624 1103.2765
+189801.0645346094 3.698441 1103.3555
+189802.0645347137 3.6984017 1103.316
+189803.0645348181 3.698441 1103.3555
+189804.0645349224 3.6984017 1103.3752
+189805.0645350267 3.698441 1103.3949
+189806.064535131 3.6984017 1103.4344
+189807.0645352353 3.6984806 1103.3949
+189808.0645353396 3.6984017 1103.3555
+189809.0645354439 3.6984806 1103.4147
+189810.0645355482 3.6984806 1103.3555
+189811.0645356525 3.6984806 1103.2963
+189812.0645357568 3.6985593 1103.2963
+189813.0645358611 3.6984017 1103.2765
+189814.0645359654 3.698638 1103.4147
+189815.0645360698 3.6985593 1103.316
+189816.0645361741 3.6984806 1103.3949
+189817.0645362784 3.6985199 1103.3555
+189818.0645363827 3.6985199 1103.3555
+189819.064536487 3.6985593 1103.2567
+189820.0645365913 3.6985593 1103.4344
+189821.0645366956 3.698638 1103.316
+189822.0645367999 3.6985986 1103.2963
+189823.0645369042 3.698638 1103.3357
+189824.0645370085 3.6986773 1103.4344
+189825.0645371128 3.6985986 1103.3752
+189826.0645372171 3.6986773 1103.3949
+189827.0645373215 3.6986773 1103.3752
+189828.0645374258 3.698638 1103.3949
+189829.0645375301 3.6987166 1103.2567
+189830.0645376344 3.698638 1103.4344
+189831.0645377387 3.6987166 1103.4344
+189832.064537843 3.698638 1103.3949
+189833.0645379473 3.6986773 1103.3949
+189834.0645380516 3.6985986 1103.3752
+189835.0645381559 3.6987166 1103.3555
+189836.0645382602 3.6987166 1103.316
+189837.0645383645 3.698756 1103.474
+189838.0645384688 3.6987956 1103.3752
+189839.0645385731 3.6987956 1103.316
+189840.0645386775 3.698756 1103.3357
+189841.0645387818 3.698756 1103.2963
+189842.0645388861 3.6987956 1103.3752
+189843.0645389904 3.6987166 1103.316
+189844.0645390947 3.6988742 1103.4147
+189845.064539199 3.6987166 1103.2765
+189846.0645393033 3.698756 1103.2765
+189847.0645394076 3.6989136 1103.3357
+189848.0645395119 3.698756 1103.2567
+189849.0645396162 3.6988349 1103.3357
+189850.0645397205 3.6988349 1103.316
+189851.0645398248 3.6988349 1103.3555
+189852.0645399292 3.6989136 1103.3555
+189853.0645400335 3.6989136 1103.3752
+189854.0645401378 3.6989529 1103.2963
+189855.0645402421 3.6988349 1103.316
+189856.0645403464 3.6988742 1103.3357
+189857.0645404507 3.6989136 1103.316
+189858.064540555 3.6988742 1103.3555
+189859.0645406593 3.6989529 1103.3555
+189860.0645407636 3.6989529 1103.3357
+189861.0645408679 3.6988742 1103.4344
+189862.0645409722 3.6989923 1103.3555
+189863.0645410765 3.6989136 1103.3949
+189864.0645411809 3.6989136 1103.2963
+189865.0645412852 3.6989923 1103.2765
+189866.0645413895 3.6989529 1103.4344
+189867.0645414938 3.6989923 1103.3949
+189868.0645415981 3.6989923 1103.3752
+189869.0645417024 3.6990316 1103.3752
+189870.0645418067 3.6989529 1103.474
+189871.064541911 3.6990709 1103.3752
+189872.0645420153 3.6989923 1103.3555
+189873.0645421196 3.6990316 1103.3752
+189874.0645422239 3.6991498 1103.3357
+189875.0645423282 3.6991105 1103.316
+189876.0645424325 3.6990709 1103.3949
+189877.0645425369 3.6990709 1103.4147
+189878.0645426412 3.6991892 1103.3752
+189879.0645427455 3.6991498 1103.2963
+189880.0645428498 3.6990316 1103.3752
+189881.0645429541 3.6990709 1103.474
+189882.0645430584 3.6991105 1103.3555
+189883.0645431627 3.6990709 1103.3949
+189884.064543267 3.6990709 1103.3949
+189885.0645433713 3.6991105 1103.2963
+189886.0645434756 3.6991105 1103.2963
+189887.0645435799 3.6991498 1103.3949
+189888.0645436842 3.6991498 1103.3357
+189889.0645437886 3.6991498 1103.4542
+189890.0645438929 3.6991105 1103.3949
+189891.0645439972 3.6992285 1103.3357
+189892.0645441015 3.6992679 1103.3357
+189893.0645442058 3.6991892 1103.316
+189894.0645443101 3.6991892 1103.2369
+189895.0645444144 3.6991892 1103.316
+189896.0645445187 3.6992285 1103.4147
+189897.064544623 3.6992679 1103.3949
+189898.0645447273 3.6992679 1103.2567
+189899.0645448316 3.6992285 1103.3949
+189900.0645449359 3.6992679 1103.3949
+189901.0645450403 3.6993072 1103.3752
+189902.0645451446 3.6992285 1103.3752
+189903.0645452489 3.6993072 1103.3752
+189904.0645453532 3.6993465 1103.4147
+189905.0645454575 3.6993465 1103.3357
+189906.0645455618 3.6992679 1103.316
+189907.0645456661 3.6992285 1103.2963
+189908.0645457704 3.6992679 1103.4147
+189909.0645458747 3.6993072 1103.3752
+189910.064545979 3.6994255 1103.3949
+189911.0645460833 3.6994648 1103.3357
+189912.0645461876 3.6993859 1103.3555
+189913.0645462919 3.6994255 1103.3357
+189914.0645463963 3.6994255 1103.2963
+189915.0645465006 3.6993465 1103.316
+189916.0645466049 3.6993859 1103.3357
+189917.0645467092 3.6994255 1103.4147
+189918.0645468135 3.6994648 1103.2963
+189919.0645469178 3.6993859 1103.3752
+189920.0645470221 3.6994255 1103.3555
+189921.0645471264 3.6995041 1103.316
+189922.0645472307 3.6994648 1103.3357
+189923.064547335 3.6994255 1103.3357
+189924.0645474393 3.6995041 1103.2963
+189925.0645475436 3.6994255 1103.316
+189926.064547648 3.6995828 1103.3752
+189927.0645477523 3.6994255 1103.3555
+189928.0645478566 3.6995041 1103.3357
+189929.0645479609 3.6995435 1103.3752
+189930.0645480652 3.6994648 1103.316
+189931.0645481695 3.6995041 1103.3752
+189932.0645482738 3.6996222 1103.3949
+189933.0645483781 3.6995041 1103.3752
+189934.0645484824 3.6995435 1103.316
+189935.0645485867 3.6995828 1103.3752
+189936.064548691 3.6995828 1103.3949
+189937.0645487953 3.6997008 1103.3752
+189938.0645488997 3.6996222 1103.3752
+189939.064549004 3.6995828 1103.2765
+189940.0645491083 3.6997008 1103.3555
+189941.0645492126 3.6996615 1103.316
+189942.0645493169 3.6996222 1103.474
+189943.0645494212 3.6996615 1103.3555
+189944.0645495255 3.6997008 1103.3357
+189945.0645496298 3.6996615 1103.3752
+189946.0645497341 3.6996615 1103.2369
+189947.0645498384 3.6997404 1103.3752
+189948.0645499427 3.6996222 1103.2963
+189949.064550047 3.6997404 1103.316
+189950.0645501514 3.6997797 1103.3752
+189951.0645502557 3.6997008 1103.316
+189952.06455036 3.6997797 1103.316
+189953.0645504643 3.6997797 1103.4344
+189954.0645505686 3.6997404 1103.3555
+189955.0645506729 3.6998191 1103.4344
+189956.0645507772 3.6997404 1103.3357
+189957.0645508815 3.6997404 1103.3357
+189958.0645509858 3.6998584 1103.3949
+189959.0645510901 3.6998191 1103.3949
+189960.0645511944 3.6998584 1103.3752
+189961.0645512987 3.6997797 1103.2765
+189962.064551403 3.6998191 1103.3357
+189963.0645515074 3.6997797 1103.3949
+189964.0645516117 3.6998191 1103.2963
+189965.064551716 3.6999371 1103.3752
+189966.0645518203 3.6998191 1103.316
+189967.0645519246 3.6998584 1103.3357
+189968.0645520289 3.6999371 1103.4147
+189969.0645521332 3.6998978 1103.3555
+189970.0645522375 3.6998584 1103.3357
+189971.0645523418 3.6999371 1103.3949
+189972.0645524461 3.6998191 1103.3949
+189973.0645525504 3.6998584 1103.4542
+189974.0645526547 3.6999764 1103.3752
+189975.0645527591 3.6998978 1103.316
+189976.0645528634 3.6998584 1103.3555
+189977.0645529677 3.6999764 1103.3949
+189978.064553072 3.700016 1103.4147
+189979.0645531763 3.6999764 1103.316
+189980.0645532806 3.6999371 1103.3752
+189981.0645533849 3.700016 1103.3555
+189982.0645534892 3.700016 1103.3357
+189983.0645535935 3.700016 1103.3752
+189984.0645536978 3.6999764 1103.3357
+189985.0645538021 3.7000554 1103.3752
+189986.0645539064 3.7000554 1103.3949
+189987.0645540108 3.7000947 1103.316
+189988.0645541151 3.7000947 1103.3949
+189989.0645542194 3.7000947 1103.2765
+189990.0645543237 3.6999764 1103.3949
+189991.064554428 3.7000554 1103.4147
+189992.0645545323 3.6999764 1103.3357
+189993.0645546366 3.700134 1103.316
+189994.0645547409 3.7000947 1103.3949
+189995.0645548452 3.700016 1103.3949
+189996.0645549495 3.7000947 1103.316
+189997.0645550538 3.7002127 1103.2963
+189998.0645551581 3.7002127 1103.3752
+189999.0645552624 3.700134 1103.4147
+190000.0645553668 3.7002127 1103.316
+190001.0645554711 3.7002914 1103.2369
+190002.0645555754 3.7000947 1103.2765
+190003.0645556797 3.7002521 1103.3357
+190004.064555784 3.7001734 1103.3752
+190005.0645558883 3.7002127 1103.316
+190006.0645559926 3.7002521 1103.3357
+190007.0645560969 3.7002521 1103.3949
+190008.0645562012 3.7002914 1103.2567
+190009.0645563055 3.700331 1103.3555
+190010.0645564098 3.7002127 1103.3357
+190011.0645565141 3.700331 1103.316
+190012.0645566185 3.7002127 1103.4147
+190013.0645567228 3.7002914 1103.3357
+190014.0645568271 3.700331 1103.316
+190015.0645569314 3.7002914 1103.2963
+190016.0645570357 3.7004097 1103.3555
+190017.06455714 3.700331 1103.3357
+190018.0645572443 3.7002914 1103.2765
+190019.0645573486 3.7004097 1103.316
+190020.0645574529 3.700331 1103.3555
+190021.0645575572 3.7003703 1103.3357
+190022.0645576615 3.700331 1103.4542
+190023.0645577658 3.700449 1103.3949
+190024.0645578702 3.7003703 1103.316
+190025.0645579745 3.7003703 1103.2963
+190026.0645580788 3.7003703 1103.4147
+190027.0645581831 3.7003703 1103.3357
+190028.0645582874 3.7004097 1103.3357
+190029.0645583917 3.700449 1103.3357
+190030.064558496 3.7004883 1103.4147
+190031.0645586003 3.700449 1103.2765
+190032.0645587046 3.7005277 1103.2567
+190033.0645588089 3.7004097 1103.3357
+190034.0645589132 3.7003703 1103.4344
+190035.0645590175 3.7004883 1103.2765
+190036.0645591218 3.700449 1103.4344
+190037.0645592262 3.7004883 1103.316
+190038.0645593305 3.7006063 1103.3752
+190039.0645594348 3.7004883 1103.3752
+190040.0645595391 3.7006853 1103.316
+190041.0645596434 3.7004883 1103.3949
+190042.0645597477 3.700567 1103.3357
+190043.064559852 3.7004883 1103.3752
+190044.0645599563 3.7005277 1103.3949
+190045.0645600606 3.7005277 1103.316
+190046.0645601649 3.700567 1103.474
+190047.0645602692 3.7006063 1103.316
+190048.0645603735 3.7006063 1103.2963
+190049.0645604779 3.7006063 1103.3555
+190050.0645605822 3.7006459 1103.3357
+190051.0645606865 3.7006459 1103.2963
+190052.0645607908 3.7006063 1103.3949
+190053.0645608951 3.7006063 1103.4147
+190054.0645609994 3.7006063 1103.3752
+190055.0645611037 3.700567 1103.3949
+190056.064561208 3.7006063 1103.2963
+190057.0645613123 3.7007246 1103.3357
+190058.0645614166 3.7006853 1103.3555
+190059.0645615209 3.7007246 1103.3555
+190060.0645616252 3.7007639 1103.4344
+190061.0645617296 3.7006853 1103.3357
+190062.0645618339 3.7007246 1103.3949
+190063.0645619382 3.7006853 1103.4542
+190064.0645620425 3.7007639 1103.3752
+190065.0645621468 3.7008033 1103.2963
+190066.0645622511 3.7006853 1103.316
+190067.0645623554 3.7007246 1103.2963
+190068.0645624597 3.700882 1103.316
+190069.064562564 3.7008033 1103.3752
+190070.0645626683 3.7008426 1103.3752
+190071.0645627726 3.7007639 1103.3357
+190072.0645628769 3.7008426 1103.2567
+190073.0645629813 3.7007639 1103.3949
+190074.0645630856 3.700882 1103.3357
+190075.0645631899 3.7008426 1103.316
+190076.0645632942 3.7008426 1103.3555
+190077.0645633985 3.7007246 1103.316
+190078.0645635028 3.7008426 1103.3949
+190079.0645636071 3.700882 1103.3357
+190080.0645637114 3.700882 1103.316
+190081.0645638157 3.700882 1103.3752
+190082.06456392 3.700882 1103.3752
+190083.0645640243 3.7009213 1103.2963
+190084.0645641286 3.7008426 1103.3357
+190085.0645642329 3.7008426 1103.316
+190086.0645643373 3.7008426 1103.2963
+190087.0645644416 3.7009213 1103.4344
+190088.0645645459 3.7009609 1103.4147
+190089.0645646502 3.700882 1103.3949
+190090.0645647545 3.7009609 1103.3949
+190091.0645648588 3.7009609 1103.316
+190092.0645649631 3.7010002 1103.3555
+190093.0645650674 3.700882 1103.3357
+190094.0645651717 3.7010789 1103.3357
+190095.064565276 3.7010002 1103.3752
+190096.0645653803 3.7010002 1103.4147
+190097.0645654846 3.7010002 1103.2567
+190098.064565589 3.7010789 1103.316
+190099.0645656933 3.7010396 1103.4344
+190100.0645657976 3.7009609 1103.3555
+190101.0645659019 3.7010789 1103.3752
+190102.0645660062 3.7010789 1103.3357
+190103.0645661105 3.7011576 1103.4147
+190104.0645662148 3.7010789 1103.3949
+190105.0645663191 3.7010002 1103.3752
+190106.0645664234 3.7010396 1103.3949
+190107.0645665277 3.7011576 1103.4542
+190108.064566632 3.7010396 1103.3752
+190109.0645667363 3.7011182 1103.3752
+190110.0645668407 3.7011576 1103.3555
+190111.064566945 3.7011182 1103.316
+190112.0645670493 3.7012362 1103.3357
+190113.0645671536 3.7011576 1103.316
+190114.0645672579 3.7012362 1103.3949
+190115.0645673622 3.7011182 1103.4147
+190116.0645674665 3.7012362 1103.316
+190117.0645675708 3.7011969 1103.3752
+190118.0645676751 3.7012362 1103.3357
+190119.0645677794 3.7012362 1103.3555
+190120.0645678837 3.7011182 1103.2963
+190121.064567988 3.7011969 1103.3752
+190122.0645680923 3.7012758 1103.316
+190123.0645681967 3.7011969 1103.3752
+190124.064568301 3.7012758 1103.2963
+190125.0645684053 3.7012758 1103.4344
+190126.0645685096 3.7012758 1103.3555
+190127.0645686139 3.7013152 1103.3555
+190128.0645687182 3.7012362 1103.3555
+190129.0645688225 3.7012758 1103.2567
+190130.0645689268 3.7012758 1103.3949
+190131.0645690311 3.7013152 1103.3555
+190132.0645691354 3.7013545 1103.3752
+190133.0645692397 3.7011969 1103.474
+190134.064569344 3.7012362 1103.3949
+190135.0645694484 3.7013152 1103.4542
+190136.0645695527 3.7013938 1103.3752
+190137.064569657 3.7014332 1103.3555
+190138.0645697613 3.7013938 1103.3357
+190139.0645698656 3.7014332 1103.3555
+190140.0645699699 3.7013938 1103.3752
+190141.0645700742 3.7013545 1103.3752
+190142.0645701785 3.7013938 1103.3752
+190143.0645702828 3.7013545 1103.3949
+190144.0645703871 3.7015908 1103.3555
+190145.0645704914 3.7015512 1103.3357
+190146.0645705957 3.7014725 1103.316
+190147.0645707001 3.7014725 1103.3357
+190148.0645708044 3.7014725 1103.3752
+190149.0645709087 3.7014725 1103.3555
+190150.064571013 3.7014725 1103.4147
+190151.0645711173 3.7015119 1103.2567
+190152.0645712216 3.7015119 1103.3357
+190153.0645713259 3.7015119 1103.3752
+190154.0645714302 3.7015119 1103.316
+190155.0645715345 3.7013938 1103.3752
+190156.0645716388 3.7015512 1103.2963
+190157.0645717431 3.7014725 1103.3752
+190158.0645718474 3.7015119 1103.3555
+190159.0645719517 3.7015512 1103.316
+190160.0645720561 3.7016301 1103.2369
+190161.0645721604 3.7014725 1103.2963
+190162.0645722647 3.7015119 1103.3949
+190163.064572369 3.7016301 1103.2963
+190164.0645724733 3.7015908 1103.3949
+190165.0645725776 3.7016695 1103.3949
+190166.0645726819 3.7015908 1103.3357
+190167.0645727862 3.7015908 1103.316
+190168.0645728905 3.7015908 1103.3555
+190169.0645729948 3.7017088 1103.3752
+190170.0645730991 3.7016695 1103.316
+190171.0645732034 3.7016301 1103.3949
+190172.0645733078 3.7017481 1103.3357
+190173.0645734121 3.7016301 1103.3357
+190174.0645735164 3.7017088 1103.2765
+190175.0645736207 3.7016695 1103.316
+190176.064573725 3.7016301 1103.3555
+190177.0645738293 3.7016301 1103.4344
+190178.0645739336 3.7016301 1103.316
+190179.0645740379 3.7018268 1103.3752
+190180.0645741422 3.7018268 1103.316
+190181.0645742465 3.7017875 1103.3555
+190182.0645743508 3.7018268 1103.3357
+190183.0645744551 3.7017875 1103.3752
+190184.0645745595 3.7017875 1103.3752
+190185.0645746638 3.7017481 1103.3357
+190186.0645747681 3.7018268 1103.316
+190187.0645748724 3.7017481 1103.2963
+190188.0645749767 3.7018268 1103.3752
+190189.064575081 3.7017875 1103.4344
+190190.0645751853 3.7018268 1103.4344
+190191.0645752896 3.7017088 1103.4344
+190192.0645753939 3.7019057 1103.3555
+190193.0645754982 3.7018664 1103.316
+190194.0645756025 3.7019057 1103.3752
+190195.0645757068 3.7018268 1103.3949
+190196.0645758112 3.7019451 1103.3357
+190197.0645759155 3.7019057 1103.3357
+190198.0645760198 3.7019451 1103.3949
+190199.0645761241 3.7019844 1103.2963
+190200.0645762284 3.7019057 1103.2963
+190201.0645763327 3.7020237 1103.316
+190202.064576437 3.7019844 1103.3357
+190203.0645765413 3.7019057 1103.4147
+190204.0645766456 3.7019451 1103.3752
+190205.0645767499 3.7020237 1103.3357
+190206.0645768542 3.7019844 1103.3357
+190207.0645769585 3.7019451 1103.3949
+190208.0645770628 3.7020237 1103.316
+190209.0645771672 3.7020631 1103.3555
+190210.0645772715 3.7021024 1103.316
+190211.0645773758 3.7020237 1103.3357
+190212.0645774801 3.7019844 1103.4147
+190213.0645775844 3.7020631 1103.3752
+190214.0645776887 3.7020631 1103.4147
+190215.064577793 3.7020237 1103.3357
+190216.0645778973 3.7020631 1103.3949
+190217.0645780016 3.7021024 1103.3752
+190218.0645781059 3.7021418 1103.3555
+190219.0645782102 3.7020631 1103.3555
+190220.0645783145 3.7020631 1103.3949
+190221.0645784189 3.7021024 1103.3752
+190222.0645785232 3.7021024 1103.3752
+190223.0645786275 3.7021418 1103.2765
+190224.0645787318 3.7021813 1103.316
+190225.0645788361 3.70226 1103.3752
+190226.0645789404 3.7021813 1103.316
+190227.0645790447 3.7021418 1103.3357
+190228.064579149 3.7022207 1103.4147
+190229.0645792533 3.7021418 1103.3555
+190230.0645793576 3.7021813 1103.316
+190231.0645794619 3.7021813 1103.2765
+190232.0645795662 3.70226 1103.316
+190233.0645796706 3.7021418 1103.2765
+190234.0645797749 3.7021813 1103.3357
+190235.0645798792 3.7022207 1103.3752
+190236.0645799835 3.70226 1103.316
+190237.0645800878 3.7021813 1103.3949
+190238.0645801921 3.7021813 1103.3555
+190239.0645802964 3.7022994 1103.316
+190240.0645804007 3.7022207 1103.3752
+190241.064580505 3.702378 1103.3752
+190242.0645806093 3.70226 1103.2963
+190243.0645807136 3.7022994 1103.2963
+190244.0645808179 3.702378 1103.3555
+190245.0645809222 3.7023387 1103.3357
+190246.0645810266 3.702378 1103.4542
+190247.0645811309 3.7024174 1103.3555
+190248.0645812352 3.702378 1103.3949
+190249.0645813395 3.7022994 1103.3357
+190250.0645814438 3.7024174 1103.3949
+190251.0645815481 3.7023387 1103.3949
+190252.0645816524 3.7023387 1103.3357
+190253.0645817567 3.7023387 1103.2963
+190254.064581861 3.7024174 1103.3555
+190255.0645819653 3.702378 1103.4344
+190256.0645820696 3.7024174 1103.2963
+190257.0645821739 3.7024567 1103.3357
+190258.0645822783 3.7024174 1103.2765
+190259.0645823826 3.7024963 1103.3752
+190260.0645824869 3.7024963 1103.4147
+190261.0645825912 3.702575 1103.3752
+190262.0645826955 3.7024567 1103.4147
+190263.0645827998 3.7024174 1103.2567
+190264.0645829041 3.702575 1103.316
+190265.0645830084 3.7025356 1103.3555
+190266.0645831127 3.7025356 1103.3555
+190267.064583217 3.702575 1103.3949
+190268.0645833213 3.702575 1103.3752
+190269.0645834256 3.7024963 1103.3357
+190270.06458353 3.7026143 1103.2567
+190271.0645836343 3.7024963 1103.3357
+190272.0645837386 3.702575 1103.3752
+190273.0645838429 3.7026536 1103.4147
+190274.0645839472 3.702693 1103.3357
+190275.0645840515 3.7026143 1103.474
+190276.0645841558 3.7026536 1103.3357
+190277.0645842601 3.7026143 1103.3949
+190278.0645843644 3.702575 1103.3949
+190279.0645844687 3.702575 1103.2765
+190280.064584573 3.702693 1103.2567
+190281.0645846773 3.7026536 1103.2765
+190282.0645847816 3.7026536 1103.3555
+190283.064584886 3.702693 1103.3949
+190284.0645849903 3.7026143 1103.3357
+190285.0645850946 3.7026536 1103.3357
+190286.0645851989 3.702693 1103.3555
+190287.0645853032 3.7027323 1103.3752
+190288.0645854075 3.702693 1103.2567
+190289.0645855118 3.702693 1103.3752
+190290.0645856161 3.702693 1103.3357
+190291.0645857204 3.702693 1103.3357
+190292.0645858247 3.702575 1103.316
+190293.064585929 3.702693 1103.3949
+190294.0645860333 3.7027323 1103.3752
+190295.0645861377 3.7028899 1103.4147
+190296.064586242 3.7027717 1103.3555
+190297.0645863463 3.7027717 1103.3949
+190298.0645864506 3.7028506 1103.316
+190299.0645865549 3.7028899 1103.3752
+190300.0645866592 3.7028899 1103.3949
+190301.0645867635 3.7027717 1103.3949
+190302.0645868678 3.7027717 1103.2765
+190303.0645869721 3.7028112 1103.3752
+190304.0645870764 3.702693 1103.316
+190305.0645871807 3.7028112 1103.3949
+190306.064587285 3.7028899 1103.2963
+190307.0645873894 3.7029293 1103.3357
+190308.0645874937 3.7028506 1103.3555
+190309.064587598 3.7028506 1103.3357
+190310.0645877023 3.7029686 1103.3555
+190311.0645878066 3.7029686 1103.3949
+190312.0645879109 3.7029686 1103.3949
+190313.0645880152 3.7029686 1103.3949
+190314.0645881195 3.7028899 1103.316
+190315.0645882238 3.7029293 1103.316
+190316.0645883281 3.7030079 1103.3357
+190317.0645884324 3.7028899 1103.2963
+190318.0645885367 3.7029686 1103.3357
+190319.064588641 3.7029293 1103.3357
+190320.0645887454 3.7030079 1103.2765
+190321.0645888497 3.7030473 1103.2567
+190322.064588954 3.7030079 1103.4344
+190323.0645890583 3.7030079 1103.316
+190324.0645891626 3.7030866 1103.3357
+190325.0645892669 3.7029686 1103.3357
+190326.0645893712 3.7030473 1103.3555
+190327.0645894755 3.7030866 1103.4147
+190328.0645895798 3.7030473 1103.4147
+190329.0645896841 3.7030866 1103.316
+190330.0645897884 3.7031262 1103.3949
+190331.0645898927 3.7031655 1103.3357
+190332.0645899971 3.7031655 1103.316
+190333.0645901014 3.7030079 1103.2963
+190334.0645902057 3.7032442 1103.3357
+190335.06459031 3.7030866 1103.3555
+190336.0645904143 3.7031655 1103.3555
+190337.0645905186 3.7031655 1103.3949
+190338.0645906229 3.7032049 1103.316
+190339.0645907272 3.7032442 1103.3949
+190340.0645908315 3.7031655 1103.316
+190341.0645909358 3.7031262 1103.4147
+190342.0645910401 3.7031655 1103.3555
+190343.0645911444 3.7032049 1103.316
+190344.0645912488 3.7031655 1103.3357
+190345.0645913531 3.7033622 1103.3555
+190346.0645914574 3.7032049 1103.3555
+190347.0645915617 3.7032835 1103.316
+190348.064591666 3.7032442 1103.3752
+190349.0645917703 3.7032835 1103.3949
+190350.0645918746 3.7032049 1103.316
+190351.0645919789 3.7032442 1103.3357
+190352.0645920832 3.7032835 1103.4147
+190353.0645921875 3.7033229 1103.2963
+190354.0645922918 3.7033229 1103.3949
+190355.0645923961 3.7033622 1103.3752
+190356.0645925005 3.7033622 1103.3949
+190357.0645926048 3.7032835 1103.316
+190358.0645927091 3.7033622 1103.3555
+190359.0645928134 3.7034018 1103.2765
+190360.0645929177 3.7033229 1103.3752
+190361.064593022 3.7033622 1103.316
+190362.0645931263 3.7033622 1103.2963
+190363.0645932306 3.7034805 1103.3949
+190364.0645933349 3.7034411 1103.3555
+190365.0645934392 3.7033229 1103.3949
+190366.0645935435 3.7033622 1103.316
+190367.0645936478 3.7034411 1103.3949
+190368.0645937519 3.7034018 1103.3357
+190369.0645938562 3.7034018 1103.3949
+190370.0645939605 3.7033622 1103.3752
+190371.0645940648 3.7034411 1103.316
+190372.0645941691 3.7034411 1103.316
+190373.0645942735 3.7034018 1103.4344
+190374.0645943778 3.7034805 1103.3949
+190375.0645944821 3.7035592 1103.316
+190376.0645945864 3.7035592 1103.2963
+190377.0645946907 3.7035198 1103.3357
+190378.064594795 3.7035985 1103.4542
+190379.0645948993 3.7034411 1103.3555
+190380.0645950036 3.7035592 1103.3752
+190381.0645951079 3.7036378 1103.316
+190382.0645952122 3.7035592 1103.3752
+190383.0645953165 3.7035985 1103.4147
+190384.0645954208 3.7035592 1103.3949
+190385.0645955252 3.7035985 1103.2963
+190386.0645956295 3.7035985 1103.4344
+190387.0645957338 3.7035592 1103.3949
+190388.0645958381 3.7036378 1103.4344
+190389.0645959424 3.7036378 1103.3752
+190390.0645960467 3.7035592 1103.3357
+190391.064596151 3.7035985 1103.316
+190392.0645962553 3.7036378 1103.3555
+190393.0645963596 3.7036378 1103.3555
+190394.0645964639 3.7036378 1103.3752
+190395.0645965682 3.7036378 1103.4147
+190396.0645966725 3.7037168 1103.3555
+190397.0645967769 3.7037561 1103.3555
+190398.0645968812 3.7036378 1103.316
+190399.0645969855 3.7036378 1103.3752
+190400.0645970898 3.7037561 1103.3555
+190401.0645971941 3.7037954 1103.2369
+190402.0645972984 3.7037168 1103.2369
+190403.0645974027 3.7037561 1103.2963
+190404.064597507 3.7035985 1103.3949
+190405.0645976113 3.7037561 1103.2765
+190406.0645977156 3.7037954 1103.3949
+190407.0645978199 3.7037561 1103.2963
+190408.0645979242 3.7039135 1103.4344
+190409.0645980285 3.7037561 1103.4147
+190410.0645981329 3.7037954 1103.3357
+190411.0645982372 3.7038741 1103.4147
+190412.0645983415 3.7038741 1103.3357
+190413.0645984458 3.7038348 1103.3752
+190414.0645985501 3.7037954 1103.3357
+190415.0645986544 3.7038741 1103.316
+190416.0645987587 3.7038348 1103.2963
+190417.064598863 3.7038741 1103.4147
+190418.0645989673 3.7039135 1103.3752
+190419.0645990716 3.7039528 1103.2172
+190420.0645991759 3.7038348 1103.316
+190421.0645992802 3.7038348 1103.3555
+190422.0645993846 3.7039528 1103.3555
+190423.0645994889 3.7040317 1103.2963
+190424.0645995932 3.7038741 1103.3949
+190425.0645996975 3.7039135 1103.3555
+190426.0645998018 3.7039528 1103.4147
+190427.0645999061 3.7039921 1103.4542
+190428.0646000104 3.7039921 1103.2963
+190429.0646001147 3.7040317 1103.3357
+190430.064600219 3.7039135 1103.3949
+190431.0646003233 3.7039528 1103.2963
+190432.0646004276 3.7041497 1103.4542
+190433.0646005319 3.7039528 1103.3752
+190434.0646006363 3.7039528 1103.3752
+190435.0646007406 3.704071 1103.316
+190436.0646008449 3.704071 1103.316
+190437.0646009492 3.7040317 1103.316
+190438.0646010535 3.7042284 1103.316
+190439.0646011578 3.7039921 1103.2963
+190440.0646012621 3.7040317 1103.3949
+190441.0646013664 3.7041104 1103.3752
+190442.0646014707 3.7039921 1103.3752
+190443.064601575 3.7041104 1103.3555
+190444.0646016793 3.7041104 1103.316
+190445.0646017836 3.7041104 1103.3752
+190446.0646018879 3.7041497 1103.3555
+190447.0646019923 3.7043071 1103.3555
+190448.0646020966 3.7042284 1103.316
+190449.0646022009 3.7042284 1103.3949
+190450.0646023052 3.7041104 1103.3949
+190451.0646024095 3.7041497 1103.4344
+190452.0646025138 3.7042284 1103.316
+190453.0646026181 3.7041891 1103.3357
+190454.0646027224 3.7041497 1103.3752
+190455.0646028267 3.7041891 1103.316
+190456.064602931 3.7041891 1103.3752
+190457.0646030353 3.7043467 1103.4344
+190458.0646031396 3.7042284 1103.3357
+190459.064603244 3.7042284 1103.2765
+190460.0646033483 3.7043071 1103.2567
+190461.0646034526 3.7042677 1103.4147
+190462.0646035569 3.7043467 1103.316
+190463.0646036612 3.7042284 1103.3949
+190464.0646037655 3.7042677 1103.3752
+190465.0646038698 3.7043467 1103.3357
+190466.0646039741 3.704386 1103.3357
+190467.0646040784 3.7044253 1103.3357
+190468.0646041827 3.7043071 1103.4147
+190469.064604287 3.7043467 1103.3949
+190470.0646043913 3.7043467 1103.3555
+190471.0646044957 3.7044253 1103.4147
+190472.0646046 3.7044253 1103.4147
+190473.0646047043 3.7043467 1103.2963
+190474.0646048086 3.7044253 1103.316
+190475.0646049129 3.7043467 1103.3357
+190476.0646050172 3.704386 1103.4147
+190477.0646051215 3.7044647 1103.3752
+190478.0646052258 3.7044253 1103.2765
+190479.0646053301 3.7043467 1103.3555
+190480.0646054344 3.704386 1103.3357
+190481.0646055387 3.704386 1103.4147
+190482.064605643 3.7044647 1103.3949
+190483.0646057474 3.704504 1103.2765
+190484.0646058517 3.704386 1103.3949
+190485.064605956 3.7044253 1103.3555
+190486.0646060603 3.7044647 1103.3949
+190487.0646061646 3.704504 1103.2765
+190488.0646062689 3.704504 1103.3357
+190489.0646063732 3.704504 1103.2963
+190490.0646064775 3.7045434 1103.316
+190491.0646065818 3.7045434 1103.3752
+190492.0646066861 3.7045827 1103.316
+190493.0646067904 3.704504 1103.316
+190494.0646068947 3.7045434 1103.2963
+190495.064606999 3.7045827 1103.3357
+190496.0646071034 3.704622 1103.3555
+190497.0646072077 3.704622 1103.316
+190498.064607312 3.7045827 1103.4344
+190499.0646074163 3.7047009 1103.3949
+190500.0646075206 3.704622 1103.3357
+190501.0646076249 3.704622 1103.3555
+190502.0646077292 3.7045434 1103.3555
+190503.0646078335 3.7046616 1103.3949
+190504.0646079378 3.704622 1103.2963
+190505.0646080421 3.7047796 1103.3357
+190506.0646081464 3.7046616 1103.2369
+190507.0646082507 3.7047403 1103.2963
+190508.0646083551 3.7046616 1103.316
+190509.0646084594 3.7046616 1103.3357
+190510.0646085637 3.7047796 1103.3555
+190511.064608668 3.7047403 1103.2963
+190512.0646087723 3.704622 1103.3555
+190513.0646088766 3.7047403 1103.3949
+190514.0646089809 3.7047403 1103.316
+190515.0646090852 3.7047009 1103.4542
+190516.0646091895 3.7047796 1103.3949
+190517.0646092938 3.7047796 1103.3752
+190518.0646093981 3.7047796 1103.3357
+190519.0646095024 3.7047796 1103.3752
+190520.0646096068 3.7047796 1103.316
+190521.0646097111 3.704819 1103.3555
+190522.0646098154 3.7047796 1103.3752
+190523.0646099197 3.7047796 1103.2963
+190524.064610024 3.704819 1103.3949
+190525.0646101283 3.7048976 1103.316
+190526.0646102326 3.7049766 1103.3357
+190527.0646103369 3.7048583 1103.3752
+190528.0646104412 3.7048976 1103.3555
+190529.0646105455 3.704937 1103.3357
+190530.0646106498 3.704937 1103.3752
+190531.0646107541 3.7048976 1103.3357
+190532.0646108584 3.7048583 1103.2963
+190533.0646109628 3.704937 1103.3752
+190534.0646110671 3.7048976 1103.3555
+190535.0646111714 3.7048976 1103.316
+190536.0646112757 3.7048976 1103.3555
+190537.06461138 3.7050552 1103.3357
+190538.0646114843 3.7050159 1103.3357
+190539.0646115886 3.7050159 1103.2765
+190540.0646116929 3.7050552 1103.3555
+190541.0646117972 3.704937 1103.3555
+190542.0646119015 3.7050159 1103.4147
+190543.0646120058 3.7049766 1103.4147
+190544.0646121101 3.7050159 1103.3357
+190545.0646122145 3.7050159 1103.2765
+190546.0646123188 3.7049766 1103.3752
+190547.0646124231 3.7049766 1103.2963
+190548.0646125274 3.7050552 1103.4344
+190549.0646126317 3.7050552 1103.3752
+190550.064612736 3.7050946 1103.3555
+190551.0646128403 3.7050159 1103.3949
+190552.0646129446 3.7050946 1103.316
+190553.0646130489 3.7050946 1103.3949
+190554.0646131532 3.7051339 1103.316
+190555.0646132575 3.7050946 1103.316
+190556.0646133618 3.7051339 1103.2765
+190557.0646134662 3.7052522 1103.3357
+190558.0646135705 3.7052126 1103.3555
+190559.0646136748 3.7051339 1103.3555
+190560.0646137791 3.7052126 1103.2963
+190561.0646138834 3.7051733 1103.3357
+190562.0646139877 3.7052126 1103.4344
+190563.064614092 3.7052126 1103.3752
+190564.0646141963 3.7051733 1103.2963
+190565.0646143006 3.7052915 1103.2963
+190566.0646144049 3.7052915 1103.3357
+190567.0646145092 3.7052522 1103.2963
+190568.0646146135 3.7052522 1103.3357
+190569.0646147178 3.7052126 1103.3752
+190570.0646148222 3.7052126 1103.2963
+190571.0646149265 3.7052915 1103.4147
+190572.0646150308 3.7052522 1103.3555
+190573.0646151351 3.7053702 1103.4147
+190574.0646152394 3.7053702 1103.3949
+190575.0646153437 3.7052915 1103.3555
+190576.064615448 3.7052915 1103.3752
+190577.0646155523 3.7052915 1103.3752
+190578.0646156566 3.7053308 1103.3752
+190579.0646157609 3.7053702 1103.3752
+190580.0646158652 3.7054489 1103.3357
+190581.0646159695 3.7053308 1103.3555
+190582.0646160739 3.7054095 1103.316
+190583.0646161782 3.7054882 1103.2963
+190584.0646162825 3.7053308 1103.4344
+190585.0646163868 3.7054095 1103.3357
+190586.0646164911 3.7053702 1103.3752
+190587.0646165954 3.7054882 1103.2172
+190588.0646166997 3.7054489 1103.316
+190589.064616804 3.7055275 1103.3949
+190590.0646169083 3.7054489 1103.3555
+190591.0646170126 3.7054882 1103.3949
+190592.0646171169 3.7054882 1103.2963
+190593.0646172212 3.7055275 1103.3949
+190594.0646173256 3.7055671 1103.3555
+190595.0646174299 3.7054489 1103.3752
+190596.0646175342 3.7055275 1103.3555
+190597.0646176385 3.7054882 1103.316
+190598.0646177428 3.7055671 1103.4147
+190599.0646178471 3.7056065 1103.3949
+190600.0646179514 3.7055275 1103.3949
+190601.0646180557 3.7055275 1103.4938
+190602.06461816 3.7054882 1103.316
+190603.0646182643 3.7055671 1103.2172
+190604.0646183686 3.7057245 1103.3555
+190605.0646184729 3.7056458 1103.3752
+190606.0646185772 3.7056458 1103.2369
+190607.0646186816 3.7056851 1103.3555
+190608.0646187859 3.7056065 1103.4344
+190609.0646188902 3.7056458 1103.3949
+190610.0646189945 3.7056458 1103.316
+190611.0646190988 3.7056458 1103.3357
+190612.0646192031 3.7056458 1103.4147
+190613.0646193074 3.7056458 1103.3752
+190614.0646194117 3.7056851 1103.3949
+190615.064619516 3.7057245 1103.3949
+190616.0646196203 3.7057245 1103.316
+190617.0646197246 3.7057638 1103.3555
+190618.0646198289 3.7057245 1103.4344
+190619.0646199333 3.7057245 1103.4147
+190620.0646200376 3.7057638 1103.3555
+190621.0646201419 3.7057245 1103.2963
+190622.0646202462 3.7058821 1103.316
+190623.0646203505 3.7057638 1103.3555
+190624.0646204548 3.7058821 1103.3555
+190625.0646205591 3.7058425 1103.316
+190626.0646206634 3.7058032 1103.3752
+190627.0646207677 3.7058821 1103.3357
+190628.064620872 3.7058821 1103.4147
+190629.0646209763 3.7059214 1103.3752
+190630.0646210806 3.7058821 1103.3949
+190631.064621185 3.7058821 1103.4147
+190632.0646212893 3.7059214 1103.4344
+190633.0646213936 3.7058032 1103.316
+190634.0646214979 3.7059214 1103.2963
+190635.0646216022 3.7058425 1103.3752
+190636.0646217065 3.7058032 1103.2369
+190637.0646218108 3.7059608 1103.3555
+190638.0646219151 3.7059214 1103.3555
+190639.0646220194 3.7059214 1103.3555
+190640.0646221237 3.7060394 1103.3555
+190641.064622228 3.7060394 1103.3555
+190642.0646223323 3.7059214 1103.2567
+190643.0646224367 3.7059214 1103.316
+190644.064622541 3.7060394 1103.316
+190645.0646226453 3.7058821 1103.3555
+190646.0646227496 3.7059214 1103.2963
+190647.0646228539 3.7059608 1103.3357
+190648.0646229582 3.7060788 1103.316
+190649.0646230625 3.7060788 1103.3555
+190650.0646231668 3.7060788 1103.4344
+190651.0646232711 3.7060394 1103.3555
+190652.0646233754 3.7061181 1103.2567
+190653.0646234797 3.7060001 1103.3357
+190654.064623584 3.7059608 1103.3555
+190655.0646236883 3.7060788 1103.2765
+190656.0646237927 3.7061181 1103.2963
+190657.064623897 3.7060394 1103.3555
+190658.0646240013 3.7061181 1103.3752
+190659.0646241056 3.7061574 1103.3357
+190660.0646242099 3.7061574 1103.3357
+190661.0646243142 3.706197 1103.2963
+190662.0646244185 3.7061574 1103.316
+190663.0646245228 3.7060788 1103.3949
+190664.0646246271 3.7061181 1103.2963
+190665.0646247314 3.7061181 1103.3357
+190666.0646248357 3.7060001 1103.2963
+190667.06462494 3.7062364 1103.1975
+190668.0646250444 3.7062757 1103.316
+190669.0646251487 3.7061574 1103.3357
+190670.064625253 3.7061574 1103.3357
+190671.0646253573 3.706197 1103.3555
+190672.0646254616 3.706315 1103.3357
+190673.0646255659 3.706315 1103.2963
+190674.0646256702 3.7062364 1103.316
+190675.0646257745 3.706197 1103.316
+190676.0646258788 3.7062364 1103.316
+190677.0646259831 3.706315 1103.3357
+190678.0646260874 3.7062757 1103.3357
+190679.0646261917 3.706197 1103.3555
+190680.0646262961 3.7063544 1103.2963
+190681.0646264004 3.7063544 1103.3949
+190682.0646265047 3.706315 1103.2567
+190683.064626609 3.7063544 1103.316
+190684.0646267133 3.7063937 1103.2765
+190685.0646268176 3.7062757 1103.3357
+190686.0646269219 3.7063544 1103.3555
+190687.0646270262 3.7064331 1103.316
+190688.0646271305 3.706315 1103.2765
+190689.0646272348 3.7064724 1103.3357
+190690.0646273391 3.7064331 1103.4147
+190691.0646274434 3.7063937 1103.3555
+190692.0646275477 3.706315 1103.3949
+190693.0646276521 3.7064724 1103.3555
+190694.0646277564 3.7063937 1103.4344
+190695.0646278607 3.706512 1103.316
+190696.064627965 3.7064724 1103.4344
+190697.0646280693 3.7064331 1103.3555
+190698.0646281736 3.7064331 1103.316
+190699.0646282779 3.7065907 1103.3752
+190700.0646283822 3.706512 1103.316
+190701.0646284865 3.7063544 1103.316
+190702.0646285908 3.7064331 1103.3357
+190703.0646286951 3.706512 1103.2567
+190704.0646287994 3.7065907 1103.2765
+190705.0646289038 3.7065907 1103.316
+190706.0646290081 3.7065513 1103.3949
+190707.0646291124 3.7065907 1103.3357
+190708.0646292167 3.7065907 1103.3949
+190709.064629321 3.7065513 1103.316
+190710.0646294253 3.70663 1103.2765
+190711.0646295296 3.7065907 1103.2963
+190712.0646296339 3.7065907 1103.2765
+190713.0646297382 3.7065513 1103.4542
+190714.0646298425 3.70663 1103.3752
+190715.0646299468 3.70663 1103.4147
+190716.0646300511 3.7065907 1103.3555
+190717.0646301555 3.7065513 1103.3357
+190718.0646302598 3.7067087 1103.316
+190719.0646303641 3.7066693 1103.3357
+190720.0646304684 3.7066693 1103.4542
+190721.0646305727 3.7067087 1103.3752
+190722.064630677 3.7067087 1103.3752
+190723.0646307813 3.7065513 1103.3357
+190724.0646308856 3.7067087 1103.3555
+190725.0646309899 3.706748 1103.3555
+190726.0646310942 3.7067873 1103.316
+190727.0646311985 3.7068269 1103.3555
+190728.0646313028 3.7067087 1103.2765
+190729.0646314071 3.706748 1103.3752
+190730.0646315115 3.70663 1103.316
+190731.0646316158 3.7068663 1103.3555
+190732.0646317201 3.706748 1103.316
+190733.0646318244 3.706748 1103.3752
+190734.0646319287 3.7068269 1103.4542
+190735.064632033 3.7068269 1103.2765
+190736.0646321373 3.706748 1103.316
+190737.0646322416 3.7067873 1103.3752
+190738.0646323459 3.7067873 1103.3357
+190739.0646324502 3.706748 1103.2963
+190740.0646325545 3.7067873 1103.3949
+190741.0646326588 3.7067873 1103.2765
+190742.0646327632 3.7068269 1103.3555
+190743.0646328675 3.7069449 1103.3357
+190744.0646329718 3.7069056 1103.3357
+190745.0646330761 3.7069056 1103.4147
+190746.0646331804 3.7068663 1103.3752
+190747.0646332847 3.7069843 1103.3357
+190748.064633389 3.7068663 1103.3752
+190749.0646334933 3.7069056 1103.3555
+190750.0646335976 3.7069056 1103.3752
+190751.0646337019 3.7068663 1103.3555
+190752.0646338062 3.7071025 1103.3555
+190753.0646339105 3.7069449 1103.316
+190754.0646340149 3.707063 1103.3555
+190755.0646341192 3.7070236 1103.3555
+190756.0646342235 3.7071025 1103.2963
+190757.0646343278 3.7071419 1103.2765
+190758.0646344321 3.7070236 1103.4147
+190759.0646345364 3.7071025 1103.2567
+190760.0646346407 3.7071419 1103.3752
+190761.064634745 3.707063 1103.3357
+190762.0646348493 3.7070236 1103.3752
+190763.0646349536 3.7071419 1103.4344
+190764.0646350579 3.707063 1103.3555
+190765.0646351622 3.707063 1103.4147
+190766.0646352666 3.7071025 1103.316
+190767.0646353709 3.7071025 1103.474
+190768.0646354752 3.7071812 1103.3752
+190769.0646355795 3.7071419 1103.3949
+190770.0646356838 3.7071812 1103.3357
+190771.0646357881 3.7071025 1103.3357
+190772.0646358924 3.7071025 1103.3752
+190773.0646359967 3.707063 1103.316
+190774.064636101 3.7071812 1103.3752
+190775.0646362053 3.7071419 1103.3357
+190776.0646363096 3.7071419 1103.3949
+190777.0646364139 3.7071812 1103.3752
+190778.0646365182 3.7071812 1103.2963
+190779.0646366226 3.7071812 1103.2963
+190780.0646367269 3.7072599 1103.3752
+190781.0646368312 3.7072206 1103.3357
+190782.0646369355 3.7073386 1103.4147
+190783.0646370398 3.7071419 1103.316
+190784.0646371441 3.7072599 1103.3555
+190785.0646372484 3.7073386 1103.4344
+190786.0646373527 3.7073779 1103.2963
+190787.064637457 3.7072992 1103.316
+190788.0646375613 3.7072206 1103.316
+190789.0646376656 3.7071812 1103.3357
+190790.0646377699 3.7072599 1103.2765
+190791.0646378743 3.7072206 1103.3357
+190792.0646379786 3.7073779 1103.3357
+190793.0646380829 3.7074175 1103.316
+190794.0646381872 3.7073779 1103.316
+190795.0646382915 3.7073386 1103.3752
+190796.0646383958 3.7073386 1103.3752
+190797.0646385001 3.7074568 1103.3555
+190798.0646386044 3.7074175 1103.2765
+190799.0646387087 3.7074962 1103.3555
+190800.064638813 3.7073779 1103.4147
+190801.0646389173 3.7073386 1103.3949
+190802.0646390216 3.7074175 1103.316
+190803.064639126 3.7074568 1103.4147
+190804.0646392303 3.7074175 1103.3357
+190805.0646393346 3.7075355 1103.3949
+190806.0646394389 3.7074962 1103.3949
+190807.0646395432 3.7073386 1103.2765
+190808.0646396475 3.7074962 1103.3949
+190809.0646397518 3.7076142 1103.3555
+190810.0646398561 3.7075748 1103.316
+190811.0646399604 3.7076142 1103.4147
+190812.0646400647 3.7076142 1103.3357
+190813.064640169 3.7074962 1103.3949
+190814.0646402733 3.7075748 1103.3555
+190815.0646403776 3.7076142 1103.3555
+190816.064640482 3.7075355 1103.3555
+190817.0646405863 3.7076142 1103.3752
+190818.0646406906 3.7075355 1103.2963
+190819.0646407949 3.7076142 1103.3752
+190820.0646408992 3.7075355 1103.316
+190821.0646410035 3.7075748 1103.3555
+190822.0646411078 3.7076142 1103.4344
+190823.0646412121 3.7075748 1103.3555
+190824.0646413164 3.7078111 1103.2567
+190825.0646414207 3.7076929 1103.2765
+190826.064641525 3.7076142 1103.3752
+190827.0646416293 3.7076929 1103.3357
+190828.0646417337 3.7076929 1103.4344
+190829.064641838 3.7077324 1103.4344
+190830.0646419423 3.7077324 1103.3752
+190831.0646420466 3.7076535 1103.316
+190832.0646421509 3.7076535 1103.3752
+190833.0646422552 3.7076929 1103.3949
+190834.0646423595 3.7077324 1103.4344
+190835.0646424638 3.7077718 1103.3752
+190836.0646425681 3.7077718 1103.316
+190837.0646426724 3.7077324 1103.4147
+190838.0646427767 3.7077718 1103.2765
+190839.064642881 3.7076929 1103.3949
+190840.0646429854 3.7078111 1103.3357
+190841.0646430897 3.7077718 1103.4344
+190842.064643194 3.7077324 1103.3752
+190843.0646432983 3.7077718 1103.316
+190844.0646434026 3.7079291 1103.3357
+190845.0646435069 3.7079291 1103.2765
+190846.0646436112 3.7078898 1103.2963
+190847.0646437155 3.7078898 1103.3949
+190848.0646438198 3.7078898 1103.316
+190849.0646439241 3.7078505 1103.316
+190850.0646440284 3.7078505 1103.4938
+190851.0646441327 3.7079291 1103.2567
+190852.064644237 3.7079291 1103.2765
+190853.0646443414 3.7078898 1103.3752
+190854.0646444457 3.7078898 1103.3949
+190855.06464455 3.7078505 1103.316
+190856.0646446543 3.7079685 1103.2765
+190857.0646447586 3.7079291 1103.4147
+190858.0646448629 3.7079291 1103.3357
+190859.0646449672 3.7079685 1103.2963
+190860.0646450715 3.7079685 1103.3949
+190861.0646451758 3.7079685 1103.4147
+190862.0646452801 3.7080078 1103.2963
+190863.0646453844 3.7078898 1103.4542
+190864.0646454887 3.7080474 1103.2765
+190865.0646455931 3.7080867 1103.4147
+190866.0646456974 3.7079685 1103.3357
+190867.0646458017 3.7080867 1103.3357
+190868.064645906 3.7080474 1103.3357
+190869.0646460103 3.7080474 1103.3555
+190870.0646461146 3.7080867 1103.4344
+190871.0646462189 3.7080474 1103.3357
+190872.0646463232 3.7080867 1103.2765
+190873.0646464275 3.7081261 1103.4147
+190874.0646465318 3.7081261 1103.474
+190875.0646466361 3.7081654 1103.3752
+190876.0646467404 3.7081261 1103.316
+190877.0646468448 3.7080867 1103.3949
+190878.0646469491 3.7082047 1103.3357
+190879.0646470534 3.7081261 1103.316
+190880.0646471577 3.7081654 1103.3357
+190881.064647262 3.7080474 1103.3752
+190882.0646473663 3.7081654 1103.3752
+190883.0646474706 3.7081654 1103.3357
+190884.0646475749 3.7081654 1103.2765
+190885.0646476792 3.7081654 1103.3357
+190886.0646477835 3.7083623 1103.3357
+190887.0646478878 3.7081261 1103.2963
+190888.0646479921 3.7082441 1103.3752
+190889.0646480965 3.7083228 1103.3357
+190890.0646482008 3.7082441 1103.2567
+190891.0646483051 3.7083228 1103.3555
+190892.0646484094 3.7082834 1103.2567
+190893.0646485137 3.7083228 1103.3949
+190894.064648618 3.7082047 1103.2963
+190895.0646487223 3.708441 1103.3357
+190896.0646488266 3.7083228 1103.2765
+190897.0646489309 3.7083228 1103.3555
+190898.0646490352 3.708441 1103.3357
+190899.0646491395 3.7083623 1103.3752
+190900.0646492438 3.7083228 1103.3752
+190901.0646493481 3.7083623 1103.3949
+190902.0646494525 3.7084017 1103.4147
+190903.0646495568 3.7082834 1103.3555
+190904.0646496611 3.708441 1103.3752
+190905.0646497654 3.7083623 1103.316
+190906.0646498697 3.7083623 1103.3555
+190907.064649974 3.7083623 1103.3357
+190908.0646500783 3.7084804 1103.2765
+190909.0646501826 3.7085197 1103.2765
+190910.0646502869 3.7084804 1103.3357
+190911.0646503912 3.7085197 1103.3752
+190912.0646504955 3.708559 1103.316
+190913.0646505998 3.708441 1103.2765
+190914.0646507042 3.7085197 1103.3555
+190915.0646508085 3.7084804 1103.2567
+190916.0646509128 3.7085197 1103.3949
+190917.0646510171 3.708559 1103.316
+190918.0646511214 3.7084804 1103.3555
+190919.0646512257 3.708559 1103.3555
+190920.06465133 3.7085197 1103.2765
+190921.0646514343 3.7085984 1103.3357
+190922.0646515386 3.7087166 1103.2765
+190923.0646516429 3.7086377 1103.3357
+190924.0646517472 3.7085197 1103.3555
+190925.0646518515 3.7086773 1103.4147
+190926.0646519559 3.7085197 1103.3949
+190927.0646520602 3.7085984 1103.3752
+190928.0646521645 3.7086377 1103.2963
+190929.0646522688 3.7086377 1103.3357
+190930.0646523731 3.7086377 1103.3555
+190931.0646524774 3.7086377 1103.316
+190932.0646525817 3.7086377 1103.2963
+190933.064652686 3.7086773 1103.4344
+190934.0646527903 3.708756 1103.3357
+190935.0646528946 3.708756 1103.316
+190936.0646529989 3.7087166 1103.4938
+190937.0646531032 3.7086773 1103.3752
+190938.0646532075 3.7086377 1103.4147
+190939.0646533119 3.708756 1103.316
+190940.0646534162 3.708874 1103.3949
+190941.0646535205 3.708756 1103.3752
+190942.0646536248 3.708756 1103.3752
+190943.0646537291 3.708756 1103.3357
+190944.0646538334 3.7087953 1103.316
+190945.0646539377 3.7087953 1103.3357
+190946.064654042 3.708756 1103.4147
+190947.0646541463 3.7087953 1103.3357
+190948.0646542506 3.708874 1103.3357
+190949.0646543549 3.7088346 1103.3949
+190950.0646544592 3.7088346 1103.316
+190951.0646545636 3.7088346 1103.4344
+190952.0646546679 3.708874 1103.3752
+190953.0646547722 3.7088346 1103.2172
+190954.0646548765 3.708874 1103.3357
+190955.0646549808 3.7088346 1103.3752
+190956.0646550851 3.7088346 1103.4344
+190957.0646551894 3.7089529 1103.3357
+190958.0646552937 3.7088346 1103.3357
+190959.064655398 3.708874 1103.2963
+190960.0646555023 3.7089922 1103.3357
+190961.0646556066 3.7089529 1103.2963
+190962.0646557109 3.7089922 1103.4542
+190963.0646558153 3.7090709 1103.2963
+190964.0646559196 3.7089529 1103.3752
+190965.0646560239 3.7090316 1103.316
+190966.0646561282 3.7089922 1103.3555
+190967.0646562325 3.7089922 1103.2963
+190968.0646563368 3.7089133 1103.3752
+190969.0646564411 3.7090316 1103.3949
+190970.0646565454 3.7090709 1103.2963
+190971.0646566497 3.7091103 1103.3752
+190972.064656754 3.7090709 1103.4344
+190973.0646568583 3.7091103 1103.4147
+190974.0646569626 3.7091103 1103.316
+190975.0646570669 3.7091103 1103.3357
+190976.0646571713 3.7091496 1103.2567
+190977.0646572756 3.7091496 1103.316
+190978.0646573799 3.7091103 1103.3357
+190979.0646574842 3.7091103 1103.3357
+190980.0646575885 3.7090709 1103.3752
+190981.0646576928 3.7090316 1103.3357
+190982.0646577971 3.7090709 1103.3949
+190983.0646579014 3.7091103 1103.3949
+190984.0646580057 3.7091103 1103.316
+190985.06465811 3.7091103 1103.3357
+190986.0646582143 3.7092679 1103.2963
+190987.0646583186 3.7092679 1103.3555
+190988.064658423 3.7091889 1103.4938
+190989.0646585273 3.7093072 1103.3555
+190990.0646586316 3.7092283 1103.3752
+190991.0646587359 3.7092283 1103.316
+190992.0646588402 3.7092283 1103.3752
+190993.0646589445 3.7092679 1103.4147
+190994.0646590488 3.7093465 1103.2963
+190995.0646591531 3.7092283 1103.2567
+190996.0646592574 3.7092283 1103.3949
+190997.0646593617 3.7092679 1103.3555
+190998.064659466 3.7092283 1103.316
+190999.0646595703 3.7092283 1103.2765
+191000.0646596747 3.7093859 1103.3555
+191001.064659779 3.7093072 1103.3555
+191002.0646598833 3.7093465 1103.3555
+191003.0646599876 3.7093072 1103.3949
+191004.0646600919 3.7091889 1103.3752
+191005.0646601962 3.7093465 1103.2765
+191006.0646603005 3.7093465 1103.2963
+191007.0646604048 3.7093072 1103.2765
+191008.0646605091 3.7093859 1103.2963
+191009.0646606134 3.7093859 1103.316
+191010.0646607177 3.7095039 1103.2963
+191011.064660822 3.7094252 1103.3357
+191012.0646609263 3.7093465 1103.316
+191013.0646610307 3.7094252 1103.316
+191014.064661135 3.7095039 1103.3752
+191015.0646612393 3.7093465 1103.3949
+191016.0646613436 3.7094252 1103.3357
+191017.0646614479 3.7095828 1103.4147
+191018.0646615522 3.7095432 1103.2963
+191019.0646616565 3.7095432 1103.3555
+191020.0646617608 3.7095039 1103.3949
+191021.0646618651 3.7094646 1103.3949
+191022.0646619694 3.7095039 1103.3357
+191023.0646620737 3.7095432 1103.3357
+191024.064662178 3.7095432 1103.5134
+191025.0646622824 3.7095432 1103.3357
+191026.0646623867 3.7095432 1103.3555
+191027.064662491 3.7096221 1103.3357
+191028.0646625953 3.7096221 1103.3949
+191029.0646626996 3.7097008 1103.3357
+191030.0646628039 3.7097402 1103.3357
+191031.0646629082 3.7096221 1103.3752
+191032.0646630125 3.7095828 1103.4147
+191033.0646631168 3.7096221 1103.3752
+191034.0646632211 3.7095828 1103.3949
+191035.0646633254 3.7096221 1103.3357
+191036.0646634297 3.7097008 1103.3555
+191037.0646635341 3.7097008 1103.3949
+191038.0646636384 3.7096615 1103.3357
+191039.0646637427 3.7097402 1103.3555
+191040.064663847 3.7097008 1103.3357
+191041.0646639513 3.7097795 1103.3752
+191042.0646640556 3.7096221 1103.3555
+191043.0646641599 3.7097008 1103.2963
+191044.0646642642 3.7097402 1103.3949
+191045.0646643685 3.7096615 1103.3949
+191046.0646644728 3.7096221 1103.3357
+191047.0646645771 3.7097008 1103.316
+191048.0646646814 3.7097402 1103.3752
+191049.0646647858 3.7097008 1103.1975
+191050.0646648901 3.7097795 1103.4147
+191051.0646649944 3.7098188 1103.3555
+191052.0646650987 3.7098978 1103.3555
+191053.064665203 3.7097795 1103.3752
+191054.0646653073 3.7098978 1103.3357
+191055.0646654116 3.7100158 1103.3752
+191056.0646655159 3.7098978 1103.3752
+191057.0646656202 3.7097402 1103.316
+191058.0646657245 3.7098188 1103.3752
+191059.0646658288 3.7098978 1103.2963
+191060.0646659331 3.7098188 1103.3949
+191061.0646660374 3.7098978 1103.2963
+191062.0646661418 3.7098978 1103.3752
+191063.0646662461 3.7099371 1103.3357
+191064.0646663504 3.7099764 1103.316
+191065.0646664547 3.7098978 1103.2963
+191066.064666559 3.7100158 1103.316
+191067.0646666633 3.7098978 1103.2765
+191068.0646667676 3.7098978 1103.2963
+191069.0646668719 3.7100158 1103.3752
+191070.0646669762 3.7100158 1103.4147
+191071.0646670805 3.7100551 1103.3357
+191072.0646671848 3.7100551 1103.3752
+191073.0646672891 3.7099764 1103.2963
+191074.0646673935 3.7100551 1103.3949
+191075.0646674978 3.7100945 1103.3357
+191076.0646676021 3.7101338 1103.316
+191077.0646677064 3.7099764 1103.4938
+191078.0646678107 3.7100551 1103.4147
+191079.064667915 3.7100551 1103.4147
+191080.0646680193 3.7100945 1103.3555
+191081.0646681236 3.7100945 1103.3555
+191082.0646682279 3.7100158 1103.3357
+191083.0646683322 3.7100945 1103.3752
+191084.0646684365 3.7101731 1103.3949
+191085.0646685408 3.7102127 1103.4344
+191086.0646686452 3.7101338 1103.4147
+191087.0646687495 3.7100158 1103.3357
+191088.0646688538 3.7102127 1103.4147
+191089.0646689581 3.7102127 1103.3752
+191090.0646690624 3.7100945 1103.3357
+191091.0646691667 3.7102127 1103.3555
+191092.064669271 3.7101731 1103.3752
+191093.0646693753 3.710252 1103.3949
+191094.0646694796 3.7101731 1103.2963
+191095.0646695839 3.710252 1103.3555
+191096.0646696882 3.710252 1103.4147
+191097.0646697925 3.7101731 1103.316
+191098.0646698968 3.7102127 1103.3949
+191099.0646700012 3.7103307 1103.3357
+191100.0646701055 3.7103307 1103.3357
+191101.0646702098 3.7102914 1103.3357
+191102.0646703141 3.7103307 1103.3752
+191103.0646704184 3.710252 1103.3949
+191104.0646705227 3.7102914 1103.2765
+191105.064670627 3.7103701 1103.2765
+191106.0646707313 3.7102914 1103.3357
+191107.0646708356 3.7104094 1103.3752
+191108.0646709399 3.7103701 1103.316
+191109.0646710442 3.7103701 1103.3357
+191110.0646711485 3.7103701 1103.3752
+191111.0646712529 3.7104094 1103.4147
+191112.0646713572 3.7103701 1103.3555
+191113.0646714615 3.7104487 1103.4147
+191114.0646715658 3.7103701 1103.4344
+191115.0646716701 3.7103701 1103.316
+191116.0646717744 3.710567 1103.2765
+191117.0646718787 3.7104881 1103.3752
+191118.064671983 3.7103701 1103.3357
+191119.0646720873 3.7104487 1103.3357
+191120.0646721916 3.7106457 1103.3555
+191121.0646722959 3.7105277 1103.3752
+191122.0646724002 3.7103701 1103.2369
+191123.0646725046 3.7104881 1103.316
+191124.0646726089 3.7104487 1103.3752
+191125.0646727132 3.7106063 1103.3949
+191126.0646728175 3.7104881 1103.2963
+191127.0646729218 3.7105277 1103.316
+191128.0646730261 3.7106457 1103.316
+191129.0646731304 3.7104487 1103.2963
+191130.0646732347 3.7104487 1103.3752
+191131.064673339 3.7106063 1103.4344
+191132.0646734433 3.710567 1103.2567
+191133.0646735476 3.7105277 1103.4344
+191134.0646736519 3.7106457 1103.3752
+191135.0646737562 3.7106457 1103.2765
+191136.0646738606 3.7106063 1103.3949
+191137.0646739649 3.7106063 1103.2369
+191138.0646740692 3.710567 1103.4344
+191139.0646741735 3.710685 1103.316
+191140.0646742778 3.710685 1103.316
+191141.0646743821 3.7106063 1103.4542
+191142.0646744864 3.7106457 1103.3949
+191143.0646745907 3.7107637 1103.316
+191144.064674695 3.7107244 1103.4147
+191145.0646747993 3.710685 1103.3357
+191146.0646749036 3.7107244 1103.3357
+191147.0646750079 3.7106063 1103.3555
+191148.0646751123 3.7106063 1103.316
+191149.0646752166 3.7106457 1103.3949
+191150.0646753209 3.7108033 1103.3555
+191151.0646754252 3.7108033 1103.3949
+191152.0646755295 3.7108033 1103.2765
+191153.0646756338 3.7107244 1103.3357
+191154.0646757381 3.7107244 1103.2963
+191155.0646758424 3.7107637 1103.3357
+191156.0646759467 3.7107637 1103.3555
+191157.064676051 3.7108819 1103.3949
+191158.0646761553 3.7107637 1103.3949
+191159.0646762596 3.7108819 1103.316
+191160.064676364 3.7108819 1103.3357
+191161.0646764683 3.7108033 1103.3357
+191162.0646765726 3.7108819 1103.316
+191163.0646766769 3.7108426 1103.3357
+191164.0646767812 3.7108426 1103.316
+191165.0646768855 3.7108819 1103.3949
+191166.0646769898 3.7108426 1103.4147
+191167.0646770941 3.7109606 1103.3555
+191168.0646771984 3.7109213 1103.3949
+191169.0646773027 3.711 1103.3752
+191170.064677407 3.7108426 1103.474
+191171.0646775113 3.711 1103.3752
+191172.0646776157 3.711 1103.316
+191173.06467772 3.7109606 1103.3357
+191174.0646778243 3.711 1103.4344
+191175.0646779286 3.7110393 1103.3949
+191176.0646780329 3.7109606 1103.3555
+191177.0646781372 3.7110786 1103.3357
+191178.0646782415 3.711 1103.3555
+191179.0646783458 3.711 1103.3949
+191180.0646784501 3.7110393 1103.3949
+191181.0646785544 3.7110786 1103.3555
+191182.0646786587 3.7110786 1103.3555
+191183.064678763 3.7111576 1103.316
+191184.0646788673 3.7110393 1103.2963
+191185.0646789717 3.711 1103.3949
+191186.064679076 3.7111182 1103.3357
+191187.0646791803 3.7110786 1103.3555
+191188.0646792846 3.7111182 1103.4147
+191189.0646793889 3.7111182 1103.2765
+191190.0646794932 3.7110393 1103.316
+191191.0646795975 3.7110786 1103.2963
+191192.0646797018 3.7111969 1103.3555
+191193.0646798061 3.7110393 1103.3555
+191194.0646799104 3.7111182 1103.3752
+191195.0646800147 3.7111182 1103.2765
+191196.064680119 3.7111576 1103.3752
+191197.0646802234 3.7111576 1103.3949
+191198.0646803277 3.7111576 1103.3357
+191199.064680432 3.7111969 1103.2963
+191200.0646805363 3.7111969 1103.4147
+191201.0646806406 3.7111576 1103.3357
+191202.0646807449 3.7112756 1103.3752
+191203.0646808492 3.7112756 1103.3752
+191204.0646809535 3.7112756 1103.3555
+191205.0646810578 3.7112756 1103.3555
+191206.0646811621 3.7112756 1103.4147
+191207.0646812664 3.7112756 1103.2172
+191208.0646813707 3.7112756 1103.3949
+191209.0646814751 3.7112362 1103.3357
+191210.0646815794 3.7113149 1103.3752
+191211.0646816837 3.7113149 1103.3555
+191212.064681788 3.7113149 1103.3555
+191213.0646818923 3.7112756 1103.2765
+191214.0646819966 3.7113149 1103.3752
+191215.0646821009 3.7114332 1103.316
+191216.0646822052 3.7113543 1103.2963
+191217.0646823095 3.7113543 1103.2765
+191218.0646824138 3.7114332 1103.316
+191219.0646825181 3.7113936 1103.3752
+191220.0646826224 3.7114332 1103.2369
+191221.0646827267 3.7114725 1103.3949
+191222.0646828311 3.7113936 1103.3752
+191223.0646829354 3.7114725 1103.4147
+191224.0646830397 3.7115119 1103.316
+191225.064683144 3.7114725 1103.3357
+191226.0646832483 3.7114332 1103.3555
+191227.0646833526 3.7114332 1103.3555
+191228.0646834569 3.7114725 1103.316
+191229.0646835612 3.7114332 1103.3357
+191230.0646836655 3.7115119 1103.3357
+191231.0646837698 3.7115119 1103.3555
+191232.0646838741 3.7115512 1103.2963
+191233.0646839784 3.7114725 1103.2963
+191234.0646840828 3.7114725 1103.474
+191235.0646841871 3.7115512 1103.3357
+191236.0646842914 3.7114725 1103.3555
+191237.0646843957 3.7116299 1103.2567
+191238.0646845 3.7117085 1103.3357
+191239.0646846043 3.7116299 1103.3555
+191240.0646847086 3.7115905 1103.2765
+191241.0646848129 3.7116299 1103.2963
+191242.0646849172 3.7115905 1103.3357
+191243.0646850215 3.7115905 1103.3357
+191244.0646851258 3.7115905 1103.2765
+191245.0646852301 3.7116299 1103.3555
+191246.0646853345 3.7117085 1103.2765
+191247.0646854388 3.7117481 1103.2369
+191248.0646855431 3.7117085 1103.3357
+191249.0646856474 3.7116692 1103.2765
+191250.0646857517 3.7115905 1103.2765
+191251.064685856 3.7118268 1103.3752
+191252.0646859603 3.7116692 1103.4344
+191253.0646860646 3.7118268 1103.316
+191254.0646861689 3.7117875 1103.3357
+191255.0646862732 3.7118268 1103.3752
+191256.0646863775 3.7116692 1103.2963
+191257.0646864818 3.7117875 1103.2765
+191258.0646865861 3.7117481 1103.316
+191259.0646866905 3.7118268 1103.3949
+191260.0646867948 3.7118268 1103.316
+191261.0646868991 3.7118268 1103.3752
+191262.0646870034 3.7119055 1103.3555
+191263.0646871077 3.7117875 1103.2963
+191264.064687212 3.7117875 1103.4147
+191265.0646873163 3.7118661 1103.3555
+191266.0646874206 3.7118661 1103.3357
+191267.0646875249 3.7117875 1103.316
+191268.0646876292 3.7118268 1103.3357
+191269.0646877335 3.7119055 1103.3555
+191270.0646878378 3.7118268 1103.2963
+191271.0646879422 3.7119842 1103.3949
+191272.0646880465 3.7119448 1103.3752
+191273.0646881508 3.7119055 1103.3555
+191274.0646882551 3.7119842 1103.316
+191275.0646883594 3.7120235 1103.2963
+191276.0646884637 3.7119055 1103.3949
+191277.064688568 3.7119055 1103.4147
+191278.0646886723 3.7119448 1103.3357
+191279.0646887766 3.7120235 1103.316
+191280.0646888809 3.7119842 1103.3752
+191281.0646889852 3.7120631 1103.3949
+191282.0646890895 3.7119055 1103.2963
+191283.0646891939 3.7119448 1103.2765
+191284.0646892982 3.7119448 1103.4542
+191285.0646894025 3.7120631 1103.3752
+191286.0646895068 3.7119055 1103.3357
+191287.0646896111 3.7120235 1103.4147
+191288.0646897154 3.7120235 1103.316
+191289.0646898197 3.7121024 1103.3555
+191290.064689924 3.7121024 1103.3555
+191291.0646900283 3.7121024 1103.2963
+191292.0646901326 3.7121024 1103.4344
+191293.0646902369 3.7120631 1103.4147
+191294.0646903412 3.7120631 1103.2765
+191295.0646904456 3.7121418 1103.2765
+191296.0646905499 3.7121811 1103.2963
+191297.0646906542 3.7122204 1103.3357
+191298.0646907585 3.7121024 1103.3949
+191299.0646908628 3.7121811 1103.4147
+191300.0646909671 3.7122204 1103.3752
+191301.0646910714 3.7122204 1103.3752
+191302.0646911757 3.7122204 1103.316
+191303.06469128 3.7122204 1103.3555
+191304.0646913843 3.7121418 1103.3555
+191305.0646914886 3.7122991 1103.3949
+191306.0646915929 3.7122991 1103.3752
+191307.0646916972 3.7121811 1103.3752
+191308.0646918016 3.7122598 1103.2765
+191309.0646919059 3.7122598 1103.316
+191310.0646920102 3.7121811 1103.3555
+191311.0646921145 3.7122598 1103.316
+191312.0646922188 3.7122991 1103.3555
+191313.0646923231 3.7122991 1103.4147
+191314.0646924274 3.7122598 1103.3752
+191315.0646925317 3.7124567 1103.3555
+191316.064692636 3.7123387 1103.2765
+191317.0646927403 3.7123387 1103.3555
+191318.0646928446 3.7123387 1103.2765
+191319.0646929489 3.7123387 1103.3555
+191320.0646930533 3.7123387 1103.3357
+191321.0646931576 3.7122991 1103.3555
+191322.0646932619 3.712378 1103.3752
+191323.0646933662 3.712378 1103.3555
+191324.0646934705 3.7124567 1103.3357
+191325.0646935748 3.7124174 1103.3949
+191326.0646936791 3.7124174 1103.316
+191327.0646937834 3.7124174 1103.3752
+191328.0646938877 3.712496 1103.3752
+191329.064693992 3.7124174 1103.316
+191330.0646940963 3.712496 1103.316
+191331.0646942006 3.7124567 1103.3555
+191332.064694305 3.7124174 1103.3752
+191333.0646944093 3.712496 1103.2765
+191334.0646945136 3.7125747 1103.3357
+191335.0646946179 3.7125747 1103.3357
+191336.0646947222 3.7124174 1103.4344
+191337.0646948265 3.7125354 1103.316
+191338.0646949308 3.7125354 1103.2963
+191339.0646950351 3.7125354 1103.3357
+191340.0646951394 3.712496 1103.3949
+191341.0646952437 3.7124567 1103.3357
+191342.064695348 3.7126536 1103.3752
+191343.0646954523 3.7126536 1103.2765
+191344.0646955566 3.7126141 1103.3752
+191345.064695661 3.7125747 1103.3752
+191346.0646957653 3.7125354 1103.4147
+191347.0646958696 3.7126536 1103.3949
+191348.0646959739 3.7127323 1103.3752
+191349.0646960782 3.7126536 1103.3555
+191350.0646961825 3.7127323 1103.4542
+191351.0646962868 3.712693 1103.316
+191352.0646963911 3.7126536 1103.4147
+191353.0646964954 3.7126536 1103.4147
+191354.0646965997 3.7126536 1103.3752
+191355.064696704 3.712693 1103.316
+191356.0646968083 3.7127323 1103.2765
+191357.0646969127 3.712693 1103.316
+191358.064697017 3.7127717 1103.3752
+191359.0646971213 3.7127717 1103.3555
+191360.0646972256 3.712811 1103.316
+191361.0646973299 3.712811 1103.3357
+191362.0646974342 3.7128897 1103.3752
+191363.0646975385 3.712693 1103.316
+191364.0646976428 3.7127323 1103.2567
+191365.0646977471 3.7128503 1103.2963
+191366.0646978514 3.712693 1103.2963
+191367.0646979557 3.7128503 1103.2369
+191368.06469806 3.712811 1103.3949
+191369.0646981644 3.712811 1103.2963
+191370.0646982687 3.7127717 1103.3555
+191371.064698373 3.7128897 1103.316
+191372.0646984773 3.7129686 1103.3357
+191373.0646985816 3.7130473 1103.3752
+191374.0646986859 3.7128503 1103.2369
+191375.0646987902 3.7128897 1103.3357
+191376.0646988945 3.7128897 1103.4147
+191377.0646989988 3.7128503 1103.3949
+191378.0646991031 3.7130079 1103.316
+191379.0646992074 3.7129686 1103.3357
+191380.0646993117 3.712929 1103.2963
+191381.064699416 3.712929 1103.4147
+191382.0646995204 3.7128897 1103.3555
+191383.0646996247 3.7130079 1103.316
+191384.064699729 3.7130473 1103.316
+191385.0646998333 3.7130866 1103.2963
+191386.0646999376 3.7130473 1103.316
+191387.0647000419 3.7131259 1103.2963
+191388.0647001462 3.7130473 1103.3555
+191389.0647002505 3.7130473 1103.3357
+191390.0647003548 3.7131259 1103.3949
+191391.0647004591 3.7131259 1103.2567
+191392.0647005634 3.7129686 1103.3949
+191393.0647006677 3.7130866 1103.2765
+191394.0647007721 3.7131259 1103.316
+191395.0647008764 3.7131259 1103.3949
+191396.0647009807 3.7131259 1103.3752
+191397.064701085 3.7131259 1103.3357
+191398.0647011893 3.7131653 1103.316
+191399.0647012936 3.7131653 1103.3752
+191400.0647013979 3.7132046 1103.3752
+191401.0647015022 3.7130473 1103.3357
+191402.0647016065 3.7131259 1103.3357
+191403.0647017108 3.7131259 1103.3357
+191404.0647018151 3.7132046 1103.4147
+191405.0647019194 3.7131653 1103.4147
+191406.0647020238 3.713244 1103.316
+191407.0647021281 3.7132046 1103.2567
+191408.0647022324 3.7132835 1103.3357
+191409.0647023367 3.7132046 1103.3555
+191410.064702441 3.7133622 1103.3949
+191411.0647025453 3.713244 1103.3357
+191412.0647026496 3.713244 1103.3752
+191413.0647027539 3.7133229 1103.3555
+191414.0647028582 3.7133622 1103.3555
+191415.0647029625 3.7134016 1103.3357
+191416.0647030668 3.7133622 1103.316
+191417.0647031711 3.7131259 1103.316
+191418.0647032755 3.713244 1103.3752
+191419.0647033798 3.7133622 1103.3949
+191420.0647034841 3.7134016 1103.3752
+191421.0647035884 3.7133229 1103.2765
+191422.0647036927 3.7134409 1103.3555
+191423.064703797 3.7133622 1103.316
+191424.0647039013 3.713244 1103.4344
+191425.0647040056 3.7133622 1103.3752
+191426.0647041099 3.7134016 1103.3555
+191427.0647042142 3.7133622 1103.2963
+191428.0647043185 3.7134016 1103.3357
+191429.0647044228 3.7134409 1103.3555
+191430.0647045271 3.7134802 1103.3357
+191431.0647046315 3.7134802 1103.2567
+191432.0647047358 3.7135985 1103.3949
+191433.0647048401 3.7135196 1103.3949
+191434.0647049444 3.7134409 1103.3555
+191435.0647050487 3.7135985 1103.4147
+191436.064705153 3.7135196 1103.3949
+191437.0647052573 3.7135196 1103.2765
+191438.0647053616 3.7136378 1103.3752
+191439.0647054659 3.7135589 1103.2765
+191440.0647055702 3.7135589 1103.316
+191441.0647056745 3.7135196 1103.316
+191442.0647057788 3.7135985 1103.3752
+191443.0647058832 3.7135589 1103.2567
+191444.0647059875 3.7135985 1103.3555
+191445.0647060918 3.7135589 1103.316
+191446.0647061961 3.7135985 1103.4147
+191447.0647063004 3.7135589 1103.3555
+191448.0647064047 3.7137165 1103.3949
+191449.064706509 3.7135985 1103.3752
+191450.0647066133 3.7135985 1103.3752
+191451.0647067176 3.7136772 1103.3357
+191452.0647068219 3.7136378 1103.474
+191453.0647069262 3.7137558 1103.2765
+191454.0647070305 3.7136772 1103.2567
+191455.0647071349 3.7137952 1103.2963
+191456.0647072392 3.7136378 1103.3555
+191457.0647073435 3.7137165 1103.3752
+191458.0647074478 3.7137165 1103.3949
+191459.0647075521 3.7135589 1103.316
+191460.0647076564 3.7137165 1103.316
+191461.0647077607 3.7137558 1103.3357
+191462.064707865 3.7137165 1103.3357
+191463.0647079693 3.7137558 1103.3555
+191464.0647080736 3.7136772 1103.3555
+191465.0647081779 3.7137558 1103.3555
+191466.0647082822 3.7138345 1103.2765
+191467.0647083865 3.7138739 1103.316
+191468.0647084909 3.7137558 1103.2963
+191469.0647085952 3.7137952 1103.3949
+191470.0647086995 3.7137952 1103.3555
+191471.0647088038 3.7138739 1103.316
+191472.0647089081 3.7137952 1103.3357
+191473.0647090124 3.7139134 1103.316
+191474.0647091167 3.7138739 1103.2963
+191475.064709221 3.7139528 1103.3555
+191476.0647093253 3.7138739 1103.3357
+191477.0647094296 3.7139134 1103.316
+191478.0647095339 3.7139528 1103.3752
+191479.0647096382 3.7139134 1103.3752
+191480.0647097426 3.7139528 1103.3555
+191481.0647098469 3.7139921 1103.3357
+191482.0647099512 3.7139134 1103.3555
+191483.0647100555 3.7139528 1103.316
+191484.0647101598 3.7141495 1103.3357
+191485.0647102641 3.7140708 1103.3357
+191486.0647103684 3.7139528 1103.4147
+191487.0647104727 3.7141101 1103.2963
+191488.064710577 3.7139921 1103.3949
+191489.0647106813 3.7140315 1103.4147
+191490.0647107856 3.7141101 1103.3555
+191491.0647108899 3.7140315 1103.3357
+191492.0647109943 3.7140708 1103.3949
+191493.0647110986 3.7140708 1103.3357
+191494.0647112029 3.7140315 1103.2765
+191495.0647113072 3.7141101 1103.4147
+191496.0647114115 3.7140708 1103.3949
+191497.0647115158 3.7141891 1103.3752
+191498.0647116201 3.7140315 1103.3555
+191499.0647117244 3.7140708 1103.3357
+191500.0647118287 3.7141101 1103.3949
+191501.064711933 3.7141495 1103.3357
+191502.0647120373 3.7142284 1103.3752
+191503.0647121416 3.7141891 1103.3357
+191504.0647122459 3.7142284 1103.3555
+191505.0647123503 3.7141495 1103.3357
+191506.0647124546 3.7141495 1103.3555
+191507.0647125589 3.7142284 1103.2963
+191508.0647126632 3.7141101 1103.3555
+191509.0647127675 3.7143071 1103.5134
+191510.0647128718 3.7141891 1103.316
+191511.0647129761 3.7141891 1103.316
+191512.0647130804 3.7142677 1103.316
+191513.0647131847 3.7142284 1103.2765
+191514.064713289 3.7141495 1103.3752
+191515.0647133933 3.7142677 1103.3555
+191516.0647134976 3.7143857 1103.3555
+191517.064713602 3.7142677 1103.3949
+191518.0647137063 3.7143464 1103.3555
+191519.0647138106 3.7142677 1103.2765
+191520.0647139149 3.7143464 1103.3949
+191521.0647140192 3.7143464 1103.3752
+191522.0647141235 3.7143071 1103.4147
+191523.0647142278 3.7143857 1103.2963
+191524.0647143321 3.7143857 1103.316
+191525.0647144364 3.7144251 1103.3555
+191526.0647145407 3.7144251 1103.4147
+191527.064714645 3.7143464 1103.3752
+191528.0647147493 3.7144644 1103.4542
+191529.0647148537 3.7144644 1103.316
+191530.064714958 3.7143857 1103.3949
+191531.0647150623 3.7143857 1103.474
+191532.0647151666 3.714504 1103.3949
+191533.0647152709 3.7144644 1103.3949
+191534.0647153752 3.7144644 1103.2963
+191535.0647154795 3.7145433 1103.4147
+191536.0647155838 3.7144644 1103.3555
+191537.0647156881 3.7145433 1103.316
+191538.0647157924 3.714504 1103.3949
+191539.0647158967 3.7145433 1103.3752
+191540.064716001 3.714504 1103.3949
+191541.0647161053 3.7145827 1103.3949
+191542.0647162097 3.714622 1103.3752
+191543.064716314 3.714504 1103.316
+191544.0647164183 3.714622 1103.3555
+191545.0647165226 3.714504 1103.3752
+191546.0647166269 3.7147007 1103.3752
+191547.0647167312 3.7145827 1103.3555
+191548.0647168355 3.7145827 1103.2172
+191549.0647169398 3.714504 1103.2963
+191550.0647170441 3.7146614 1103.3949
+191551.0647171484 3.7145433 1103.3357
+191552.0647172527 3.7146614 1103.2963
+191553.064717357 3.7146614 1103.3555
+191554.0647174614 3.714622 1103.3555
+191555.0647175657 3.7147007 1103.3752
+191556.06471767 3.7146614 1103.3357
+191557.0647177743 3.7145827 1103.3752
+191558.0647178786 3.7147007 1103.2963
+191559.0647179829 3.7147794 1103.3555
+191560.0647180872 3.7147007 1103.3949
+191561.0647181915 3.7147007 1103.3357
+191562.0647182958 3.7147007 1103.3357
+191563.0647184001 3.714819 1103.3555
+191564.0647185044 3.7147794 1103.3555
+191565.0647186087 3.7147794 1103.316
+191566.0647187131 3.71474 1103.316
+191567.0647188174 3.7148976 1103.3949
+191568.0647189217 3.71474 1103.3752
+191569.064719026 3.71474 1103.3555
+191570.0647191303 3.7147794 1103.3949
+191571.0647192346 3.7148583 1103.4147
+191572.0647193389 3.714819 1103.4147
+191573.0647194432 3.7148583 1103.3555
+191574.0647195475 3.7147794 1103.3752
+191575.0647196518 3.7148976 1103.3555
+191576.0647197561 3.714937 1103.2963
+191577.0647198604 3.7148976 1103.3357
+191578.0647199648 3.7147794 1103.3357
+191579.0647200691 3.7148976 1103.3752
+191580.0647201734 3.714937 1103.3752
+191581.0647202777 3.7148976 1103.3752
+191582.064720382 3.7149763 1103.3357
+191583.0647204863 3.7150156 1103.316
+191584.0647205906 3.714937 1103.2369
+191585.0647206949 3.7150156 1103.3555
+191586.0647207992 3.715055 1103.2963
+191587.0647209035 3.7150156 1103.3357
+191588.0647210078 3.715055 1103.4147
+191589.0647211121 3.714937 1103.4147
+191590.0647212164 3.7150156 1103.3752
+191591.0647213208 3.715055 1103.2567
+191592.0647214251 3.7150156 1103.316
+191593.0647215294 3.715055 1103.3752
+191594.0647216337 3.7152126 1103.3752
+191595.064721738 3.7151732 1103.3752
+191596.0647218423 3.715055 1103.3752
+191597.0647219466 3.7150156 1103.4147
+191598.0647220509 3.7149763 1103.3357
+191599.0647221552 3.7151732 1103.3752
+191600.0647222595 3.715055 1103.3555
+191601.0647223638 3.7152126 1103.2567
+191602.0647224681 3.715055 1103.3357
+191603.0647225725 3.7151732 1103.3949
+191604.0647226768 3.7151339 1103.3357
+191605.0647227811 3.7152913 1103.2963
+191606.0647228854 3.7152126 1103.316
+191607.0647229897 3.7152913 1103.2963
+191608.064723094 3.7152519 1103.3752
+191609.0647231983 3.7152126 1103.3949
+191610.0647233026 3.7152126 1103.3555
+191611.0647234069 3.7152519 1103.4147
+191612.0647235112 3.7151732 1103.3752
+191613.0647236155 3.7153306 1103.3949
+191614.0647237198 3.7152519 1103.2963
+191615.0647238242 3.7152913 1103.3357
+191616.0647239285 3.7152519 1103.2567
+191617.0647240328 3.7152913 1103.2963
+191618.0647241371 3.7153699 1103.4147
+191619.0647242414 3.7153699 1103.3357
+191620.0647243457 3.7154093 1103.316
+191621.06472445 3.7154882 1103.3555
+191622.0647245543 3.7152519 1103.3949
+191623.0647246586 3.7153306 1103.3752
+191624.0647247629 3.7154489 1103.3555
+191625.0647248672 3.7154882 1103.3357
+191626.0647249715 3.7154489 1103.3555
+191627.0647250758 3.7154489 1103.316
+191628.0647251802 3.7154093 1103.3357
+191629.0647252845 3.7153699 1103.3752
+191630.0647253888 3.7154489 1103.316
+191631.0647254931 3.7153699 1103.3555
+191632.0647255974 3.7154489 1103.3357
+191633.0647257017 3.7154882 1103.316
+191634.064725806 3.7155275 1103.316
+191635.0647259103 3.7155275 1103.2963
+191636.0647260146 3.7154882 1103.2369
+191637.0647261189 3.7155275 1103.3752
+191638.0647262232 3.7154882 1103.3752
+191639.0647263275 3.7155275 1103.3949
+191640.0647264319 3.7155275 1103.2765
+191641.0647265362 3.7156849 1103.3357
+191642.0647266405 3.7155669 1103.3752
+191643.0647267448 3.7156062 1103.3357
+191644.0647268491 3.7155275 1103.3357
+191645.0647269534 3.7156062 1103.3555
+191646.0647270577 3.7156456 1103.3752
+191647.064727162 3.7156456 1103.316
+191648.0647272663 3.7156456 1103.316
+191649.0647273706 3.7156849 1103.3357
+191650.0647274749 3.7156456 1103.2963
+191651.0647275792 3.7157242 1103.3357
+191652.0647276836 3.7156456 1103.3555
+191653.0647277879 3.7156849 1103.316
+191654.0647278922 3.7156062 1103.3752
+191655.0647279965 3.7156062 1103.2172
+191656.0647281008 3.7157638 1103.3949
+191657.0647282051 3.7158031 1103.3357
+191658.0647283094 3.7157638 1103.316
+191659.0647284137 3.7157638 1103.2963
+191660.064728518 3.7159212 1103.316
+191661.0647286223 3.7157638 1103.3949
+191662.0647287266 3.7158031 1103.3949
+191663.0647288309 3.7158031 1103.2963
+191664.0647289352 3.7157242 1103.3357
+191665.0647290396 3.7158031 1103.2765
+191666.0647291439 3.7158818 1103.2963
+191667.0647292482 3.7158031 1103.3752
+191668.0647293525 3.7157638 1103.4344
+191669.0647294568 3.7157638 1103.3357
+191670.0647295611 3.7159212 1103.3357
+191671.0647296654 3.7158425 1103.3752
+191672.0647297697 3.7158031 1103.316
+191673.064729874 3.7157638 1103.3752
+191674.0647299783 3.7158818 1103.3949
+191675.0647300826 3.7159212 1103.4147
+191676.0647301869 3.7157638 1103.2567
+191677.0647302913 3.7159998 1103.3752
+191678.0647303956 3.7159998 1103.3357
+191679.0647304999 3.7159605 1103.2963
+191680.0647306042 3.7159605 1103.3555
+191681.0647307085 3.7159212 1103.3555
+191682.0647308128 3.7159998 1103.3357
+191683.0647309171 3.7159605 1103.3555
+191684.0647310214 3.7159605 1103.316
+191685.0647311257 3.7159998 1103.316
+191686.06473123 3.7159998 1103.3357
+191687.0647313343 3.7159605 1103.3949
+191688.0647314386 3.7160788 1103.4147
+191689.064731543 3.7161181 1103.3752
+191690.0647316473 3.7160394 1103.4938
+191691.0647317516 3.7160788 1103.3357
+191692.0647318559 3.7160788 1103.2963
+191693.0647319602 3.7160788 1103.3555
+191694.0647320645 3.7161968 1103.3357
+191695.0647321688 3.7160394 1103.2963
+191696.0647322731 3.7160788 1103.4147
+191697.0647323774 3.7161181 1103.2963
+191698.0647324817 3.7162361 1103.3752
+191699.064732586 3.7161574 1103.4542
+191700.0647326903 3.7162361 1103.2963
+191701.0647327947 3.7161181 1103.3949
+191702.064732899 3.7161968 1103.316
+191703.0647330033 3.7161574 1103.2765
+191704.0647331076 3.7162361 1103.2765
+191705.0647332119 3.7161968 1103.3357
+191706.0647333162 3.7161574 1103.3752
+191707.0647334205 3.7162361 1103.3357
+191708.0647335248 3.7163148 1103.4542
+191709.0647336291 3.7162361 1103.3357
+191710.0647337334 3.7161968 1103.3949
+191711.0647338377 3.7162361 1103.3949
+191712.064733942 3.7162361 1103.3357
+191713.0647340463 3.7162361 1103.3555
+191714.0647341507 3.7163148 1103.3555
+191715.064734255 3.7162755 1103.4147
+191716.0647343593 3.7163937 1103.3357
+191717.0647344636 3.7162755 1103.2567
+191718.0647345679 3.7163148 1103.3949
+191719.0647346722 3.7162755 1103.316
+191720.0647347765 3.7163148 1103.2369
+191721.0647348808 3.7163937 1103.3949
+191722.0647349851 3.7163937 1103.2369
+191723.0647350894 3.7163937 1103.4147
+191724.0647351937 3.7163148 1103.2963
+191725.064735298 3.7165117 1103.3752
+191726.0647354024 3.7163937 1103.3752
+191727.0647355067 3.7163937 1103.4344
+191728.064735611 3.7163544 1103.2963
+191729.0647357153 3.7163544 1103.316
+191730.0647358196 3.7165117 1103.2963
+191731.0647359239 3.7163937 1103.3357
+191732.0647360282 3.716433 1103.316
+191733.0647361325 3.7165511 1103.2567
+191734.0647362368 3.7165117 1103.3752
+191735.0647363411 3.7165511 1103.3949
+191736.0647364454 3.7165117 1103.3357
+191737.0647365497 3.7165511 1103.3949
+191738.0647366541 3.7166297 1103.3357
+191739.0647367584 3.7165511 1103.316
+191740.0647368627 3.7165904 1103.3949
+191741.064736967 3.7165511 1103.474
+191742.0647370713 3.7165904 1103.3752
+191743.0647371756 3.7167087 1103.316
+191744.0647372799 3.7165904 1103.316
+191745.0647373842 3.7166297 1103.3949
+191746.0647374885 3.7166297 1103.3357
+191747.0647375928 3.7167087 1103.3555
+191748.0647376971 3.7166693 1103.2765
+191749.0647378014 3.7166693 1103.2567
+191750.0647379057 3.7166693 1103.3949
+191751.0647380101 3.7167087 1103.316
+191752.0647381144 3.716748 1103.3752
+191753.0647382187 3.7167087 1103.4542
+191754.064738323 3.7166693 1103.2963
+191755.0647384273 3.7167873 1103.4344
+191756.0647385316 3.7167873 1103.2765
+191757.0647386359 3.7167087 1103.3949
+191758.0647387402 3.7167087 1103.3357
+191759.0647388445 3.716748 1103.316
+191760.0647389488 3.7168267 1103.4147
+191761.0647390531 3.7167873 1103.316
+191762.0647391574 3.7167087 1103.2765
+191763.0647392618 3.7169054 1103.3752
+191764.0647393661 3.716748 1103.4344
+191765.0647394704 3.7169054 1103.3949
+191766.0647395747 3.716866 1103.316
+191767.064739679 3.7168267 1103.3555
+191768.0647397833 3.7168267 1103.3555
+191769.0647398876 3.7168267 1103.316
+191770.0647399919 3.7169054 1103.3949
+191771.0647400962 3.7167873 1103.2765
+191772.0647402005 3.7169447 1103.3752
+191773.0647403048 3.7169054 1103.3752
+191774.0647404091 3.716866 1103.3357
+191775.0647405135 3.716866 1103.2567
+191776.0647406178 3.7168267 1103.2765
+191777.0647407221 3.7169447 1103.2765
+191778.0647408264 3.7169447 1103.2765
+191779.0647409307 3.7169447 1103.3752
+191780.064741035 3.7169843 1103.2765
+191781.0647411393 3.7170236 1103.3555
+191782.0647412436 3.7169843 1103.3357
+191783.0647413479 3.7169843 1103.3752
+191784.0647414522 3.7169843 1103.3555
+191785.0647415565 3.717063 1103.2963
+191786.0647416608 3.7170236 1103.3357
+191787.0647417651 3.7171416 1103.3949
+191788.0647418695 3.717063 1103.3357
+191789.0647419738 3.7170236 1103.2765
+191790.0647420781 3.7170236 1103.3357
+191791.0647421824 3.717181 1103.3555
+191792.0647422867 3.7171416 1103.316
+191793.064742391 3.7171023 1103.3555
+191794.0647424953 3.7171416 1103.316
+191795.0647425996 3.7171023 1103.2963
+191796.0647427039 3.7171023 1103.3752
+191797.0647428082 3.717063 1103.2172
+191798.0647429125 3.717063 1103.4147
+191799.0647430168 3.7171416 1103.2963
+191800.0647431212 3.7172596 1103.3357
+191801.0647432255 3.7171023 1103.3555
+191802.0647433298 3.7171023 1103.316
+191803.0647434341 3.7172203 1103.3752
+191804.0647435384 3.7172203 1103.316
+191805.0647436427 3.717181 1103.3752
+191806.064743747 3.7172203 1103.316
+191807.0647438513 3.717181 1103.3555
+191808.0647439556 3.7171416 1103.316
+191809.0647440599 3.7172203 1103.3752
+191810.0647441642 3.7172596 1103.4147
+191811.0647442685 3.7172992 1103.3752
+191812.0647443729 3.7172203 1103.3555
+191813.0647444772 3.7173386 1103.316
+191814.0647445815 3.7172596 1103.3752
+191815.0647446858 3.7173386 1103.3555
+191816.0647447901 3.717181 1103.3949
+191817.0647448944 3.7172992 1103.316
+191818.0647449987 3.7173779 1103.3555
+191819.064745103 3.7173779 1103.4542
+191820.0647452073 3.7173779 1103.3555
+191821.0647453116 3.7172992 1103.2765
+191822.0647454159 3.7173386 1103.316
+191823.0647455202 3.7173386 1103.2369
+191824.0647456246 3.7173779 1103.3752
+191825.0647457289 3.7174566 1103.2765
+191826.0647458332 3.7173386 1103.3357
+191827.0647459375 3.7174566 1103.3949
+191828.0647460418 3.7174959 1103.2369
+191829.0647461461 3.7174172 1103.3357
+191830.0647462504 3.7174566 1103.2963
+191831.0647463547 3.7175746 1103.316
+191832.064746459 3.7174959 1103.3357
+191833.0647465633 3.7175353 1103.4542
+191834.0647466676 3.7175746 1103.3949
+191835.0647467719 3.7174959 1103.316
+191836.0647468762 3.7174566 1103.3752
+191837.0647469806 3.7175353 1103.3752
+191838.0647470849 3.7175353 1103.2765
+191839.0647471892 3.7175353 1103.4147
+191840.0647472935 3.7176142 1103.2963
+191841.0647473978 3.7175353 1103.3555
+191842.0647475021 3.7175353 1103.3555
+191843.0647476064 3.7176142 1103.3555
+191844.0647477107 3.7175746 1103.3555
+191845.064747815 3.7176142 1103.316
+191846.0647479193 3.7175746 1103.2963
+191847.0647480236 3.7175353 1103.1975
+191848.0647481279 3.7176929 1103.3357
+191849.0647482323 3.7176535 1103.3555
+191850.0647483366 3.7176535 1103.4147
+191851.0647484409 3.7176142 1103.3555
+191852.0647485452 3.7176929 1103.2765
+191853.0647486495 3.7176142 1103.316
+191854.0647487538 3.7177715 1103.3555
+191855.0647488581 3.7176929 1103.4147
+191856.0647489624 3.7176535 1103.316
+191857.0647490667 3.7177322 1103.3949
+191858.064749171 3.7176142 1103.3357
+191859.0647492753 3.7177715 1103.3555
+191860.0647493796 3.7178898 1103.2963
+191861.064749484 3.7177715 1103.2963
+191862.0647495883 3.7178109 1103.316
+191863.0647496926 3.7178109 1103.3752
+191864.0647497969 3.7176929 1103.3949
+191865.0647499012 3.7178502 1103.3555
+191866.0647500055 3.7178898 1103.3752
+191867.0647501098 3.7177322 1103.3357
+191868.0647502141 3.7178109 1103.2963
+191869.0647503184 3.7178898 1103.474
+191870.0647504227 3.7178898 1103.3949
+191871.064750527 3.7178898 1103.2963
+191872.0647506313 3.7179291 1103.2963
+191873.0647507356 3.7178898 1103.2765
+191874.06475084 3.7179291 1103.3555
+191875.0647509443 3.7178898 1103.3357
+191876.0647510486 3.7179291 1103.4147
+191877.0647511529 3.7179291 1103.3949
+191878.0647512572 3.7179685 1103.3752
+191879.0647513615 3.7178502 1103.2963
+191880.0647514658 3.7179291 1103.2963
+191881.0647515701 3.7178898 1103.2963
+191882.0647516744 3.7180078 1103.4147
+191883.0647517787 3.7180865 1103.3555
+191884.064751883 3.7179685 1103.3949
+191885.0647519873 3.7180078 1103.3752
+191886.0647520917 3.7180078 1103.316
+191887.064752196 3.7180078 1103.3752
+191888.0647523003 3.7180078 1103.3752
+191889.0647524046 3.7179685 1103.3752
+191890.0647525089 3.7179685 1103.3555
+191891.0647526132 3.7181258 1103.3357
+191892.0647527175 3.7180865 1103.316
+191893.0647528218 3.7180078 1103.2963
+191894.0647529261 3.7180471 1103.3752
+191895.0647530304 3.7181258 1103.3555
+191896.0647531347 3.7181258 1103.316
+191897.064753239 3.7181652 1103.3357
+191898.0647533434 3.7181258 1103.3752
+191899.0647534477 3.7181258 1103.3752
+191900.064753552 3.7181652 1103.3357
+191901.0647536563 3.7182047 1103.3555
+191902.0647537606 3.7183228 1103.3555
+191903.0647538649 3.7182834 1103.3949
+191904.0647539692 3.7182834 1103.3555
+191905.0647540735 3.7182441 1103.4344
+191906.0647541778 3.7182834 1103.316
+191907.0647542821 3.7182047 1103.3357
+191908.0647543864 3.7183228 1103.2369
+191909.0647544907 3.7182441 1103.3752
+191910.064754595 3.7183228 1103.3357
+191911.0647546994 3.7182047 1103.3949
+191912.0647548037 3.7182834 1103.3949
+191913.064754908 3.7182834 1103.3949
+191914.0647550123 3.7183228 1103.2567
+191915.0647551166 3.7182834 1103.3357
+191916.0647552209 3.7184014 1103.2765
+191917.0647553252 3.7183621 1103.3949
+191918.0647554295 3.7182834 1103.3752
+191919.0647555338 3.7183228 1103.3752
+191920.0647556381 3.7183228 1103.2963
+191921.0647557424 3.7183621 1103.3752
+191922.0647558467 3.7184408 1103.2963
+191923.0647559511 3.7184408 1103.3949
+191924.0647560554 3.7183621 1103.316
+191925.0647561597 3.7183621 1103.2963
+191926.064756264 3.7183621 1103.3752
+191927.0647563683 3.7184408 1103.316
+191928.0647564726 3.7184801 1103.4147
+191929.0647565769 3.7184801 1103.3949
+191930.0647566812 3.7185197 1103.3949
+191931.0647567855 3.7184014 1103.3555
+191932.0647568898 3.7184408 1103.4147
+191933.0647569941 3.7185197 1103.4344
+191934.0647570984 3.7183228 1103.3555
+191935.0647572028 3.7184801 1103.3555
+191936.0647573071 3.7185197 1103.3357
+191937.0647574114 3.7185984 1103.3357
+191938.0647575157 3.7185984 1103.3555
+191939.06475762 3.7185984 1103.3357
+191940.0647577243 3.7186377 1103.3357
+191941.0647578286 3.718559 1103.3949
+191942.0647579329 3.7187557 1103.3357
+191943.0647580372 3.7185197 1103.2963
+191944.0647581415 3.7186377 1103.316
+191945.0647582458 3.7186377 1103.316
+191946.0647583501 3.7185984 1103.2963
+191947.0647584544 3.718559 1103.3555
+191948.0647585588 3.718677 1103.3752
+191949.0647586631 3.7187951 1103.2963
+191950.0647587674 3.718677 1103.2963
+191951.0647588717 3.718677 1103.2765
+191952.064758976 3.7187951 1103.3555
+191953.0647590803 3.718677 1103.3357
+191954.0647591846 3.7186377 1103.2963
+191955.0647592889 3.718677 1103.2567
+191956.0647593932 3.718677 1103.3555
+191957.0647594975 3.7187164 1103.316
+191958.0647596018 3.7187164 1103.3752
+191959.0647597061 3.7187557 1103.3357
+191960.0647598105 3.7187557 1103.2963
+191961.0647599148 3.7187951 1103.4147
+191962.0647600191 3.718874 1103.3555
+191963.0647601234 3.7187164 1103.3949
+191964.0647602277 3.7188346 1103.2963
+191965.064760332 3.718874 1103.2963
+191966.0647604363 3.718874 1103.2963
+191967.0647605406 3.7187951 1103.3357
+191968.0647606449 3.718874 1103.2172
+191969.0647607492 3.7188346 1103.3949
+191970.0647608535 3.7188346 1103.3357
+191971.0647609578 3.7189527 1103.4147
+191972.0647610622 3.7189133 1103.3949
+191973.0647611665 3.718874 1103.3555
+191974.0647612708 3.718874 1103.3357
+191975.0647613751 3.7189133 1103.4147
+191976.0647614794 3.7188346 1103.3752
+191977.0647615837 3.7187951 1103.3555
+191978.064761688 3.7189527 1103.3949
+191979.0647617923 3.7190707 1103.2963
+191980.0647618966 3.718992 1103.3357
+191981.0647620009 3.7190707 1103.3357
+191982.0647621052 3.7190707 1103.3357
+191983.0647622095 3.7189527 1103.474
+191984.0647623139 3.718992 1103.4147
+191985.0647624182 3.7189527 1103.4147
+191986.0647625225 3.718992 1103.4147
+191987.0647626268 3.7190313 1103.2172
+191988.0647627311 3.7189527 1103.3555
+191989.0647628354 3.7190313 1103.3555
+191990.0647629397 3.71911 1103.3357
+191991.064763044 3.7190707 1103.3949
+191992.0647631483 3.7190313 1103.3752
+191993.0647632526 3.7192676 1103.316
+191994.0647633569 3.7190707 1103.3555
+191995.0647634612 3.71911 1103.316
+191996.0647635655 3.7190707 1103.2963
+191997.0647636699 3.7190707 1103.3752
+191998.0647637742 3.7191496 1103.316
+191999.0647638785 3.7191496 1103.3357
+192000.0647639828 3.7191889 1103.2963
+192001.0647640871 3.7191496 1103.4147
+192002.0647641914 3.7191889 1103.4147
+192003.0647642957 3.7192283 1103.3357
+192004.0647644 3.7191889 1103.4147
+192005.0647645043 3.7191889 1103.3752
+192006.0647646086 3.7193069 1103.2963
+192007.0647647129 3.7191889 1103.3949
+192008.0647648172 3.7192283 1103.3357
+192009.0647649216 3.7192676 1103.316
+192010.0647650259 3.7192283 1103.3555
+192011.0647651302 3.7192283 1103.3357
+192012.0647652345 3.7193069 1103.4147
+192013.0647653388 3.7193069 1103.2963
+192014.0647654431 3.7192283 1103.3752
+192015.0647655474 3.7193856 1103.3949
+192016.0647656517 3.7193463 1103.3949
+192017.064765756 3.7193069 1103.3555
+192018.0647658603 3.7193069 1103.3949
+192019.0647659646 3.7193463 1103.3357
+192020.0647660689 3.7192283 1103.4147
+192021.0647661733 3.7193856 1103.316
+192022.0647662776 3.7194645 1103.3752
+192023.0647663819 3.7193463 1103.2963
+192024.0647664862 3.7194645 1103.3357
+192025.0647665905 3.7193856 1103.3357
+192026.0647666948 3.7194645 1103.2567
+192027.0647667991 3.7195432 1103.3752
+192028.0647669034 3.7194645 1103.3357
+192029.0647670077 3.7194645 1103.3752
+192030.064767112 3.7195039 1103.3752
+192031.0647672163 3.7195039 1103.4542
+192032.0647673206 3.7195826 1103.3357
+192033.0647674249 3.7195039 1103.4147
+192034.0647675293 3.7195432 1103.3949
+192035.0647676336 3.7194645 1103.3357
+192036.0647677379 3.7195039 1103.316
+192037.0647678422 3.7195039 1103.3949
+192038.0647679465 3.7195826 1103.3555
+192039.0647680508 3.7195826 1103.316
+192040.0647681551 3.7195826 1103.3555
+192041.0647682594 3.7195039 1103.4147
+192042.0647683637 3.7196219 1103.3752
+192043.064768468 3.7196612 1103.3752
+192044.0647685723 3.7195826 1103.2765
+192045.0647686766 3.7195826 1103.3555
+192046.064768781 3.7196219 1103.3555
+192047.0647688853 3.7197006 1103.3357
+192048.0647689896 3.7197006 1103.3555
+192049.0647690939 3.7197006 1103.3555
+192050.0647691982 3.7197402 1103.3752
+192051.0647693025 3.7196219 1103.2765
+192052.0647694068 3.7196612 1103.3949
+192053.0647695111 3.7197006 1103.3752
+192054.0647696154 3.7197795 1103.3949
+192055.0647697197 3.7196612 1103.3752
+192056.064769824 3.7197795 1103.3357
+192057.0647699283 3.7197006 1103.316
+192058.0647700327 3.7198188 1103.3555
+192059.064770137 3.7198582 1103.3949
+192060.0647702413 3.7198188 1103.3555
+192061.0647703456 3.7197795 1103.3357
+192062.0647704499 3.7197795 1103.3752
+192063.0647705542 3.7198582 1103.474
+192064.0647706585 3.7198188 1103.4147
+192065.0647707628 3.7198582 1103.3752
+192066.0647708671 3.7197402 1103.3752
+192067.0647709714 3.7197795 1103.3555
+192068.0647710757 3.7197795 1103.3357
+192069.06477118 3.7198582 1103.3555
+192070.0647712843 3.7198975 1103.3357
+192071.0647713887 3.7199368 1103.474
+192072.064771493 3.7199368 1103.3357
+192073.0647715973 3.7199368 1103.3357
+192074.0647717016 3.7198975 1103.2963
+192075.0647718059 3.7199762 1103.316
+192076.0647719102 3.7199368 1103.3357
+192077.0647720145 3.7199368 1103.4147
+192078.0647721188 3.7199762 1103.4147
+192079.0647722231 3.7199762 1103.3752
+192080.0647723274 3.7200155 1103.3949
+192081.0647724317 3.7200551 1103.3752
+192082.064772536 3.7199762 1103.2963
+192083.0647726404 3.7199762 1103.2172
+192084.0647727447 3.7200155 1103.3357
+192085.064772849 3.7200944 1103.3752
+192086.0647729533 3.7200551 1103.3357
+192087.0647730576 3.7200155 1103.3357
+192088.0647731619 3.7200155 1103.3357
+192089.0647732662 3.7200551 1103.2963
+192090.0647733705 3.7199368 1103.3555
+192091.0647734748 3.7201731 1103.3357
+192092.0647735791 3.7202518 1103.3357
+192093.0647736834 3.7200551 1103.3752
+192094.0647737877 3.7202125 1103.2963
+192095.0647738921 3.7200944 1103.3555
+192096.0647739964 3.7200551 1103.316
+192097.0647741007 3.7201338 1103.3555
+192098.064774205 3.7201338 1103.3357
+192099.0647743093 3.7202125 1103.3752
+192100.0647744136 3.7201731 1103.316
+192101.0647745179 3.7201731 1103.316
+192102.0647746222 3.7202125 1103.2765
+192103.0647747265 3.7202125 1103.3752
+192104.0647748308 3.7202125 1103.4147
+192105.0647749351 3.7202518 1103.3949
+192106.0647750394 3.7203305 1103.2963
+192107.0647751438 3.7202125 1103.3555
+192108.0647752481 3.7202518 1103.3752
+192109.0647753524 3.7203701 1103.3949
+192110.0647754567 3.7202911 1103.2369
+192111.064775561 3.7202911 1103.3752
+192112.0647756653 3.7204487 1103.316
+192113.0647757696 3.7204094 1103.316
+192114.0647758739 3.7203701 1103.3949
+192115.0647759782 3.7203305 1103.3555
+192116.0647760825 3.7202911 1103.316
+192117.0647761868 3.7204094 1103.4344
+192118.0647762911 3.7204094 1103.3949
+192119.0647763954 3.7204094 1103.3357
+192120.0647764998 3.7204094 1103.3752
+192121.0647766041 3.7203305 1103.4344
+192122.0647767084 3.7203305 1103.316
+192123.0647768127 3.7205274 1103.3357
+192124.064776917 3.7205274 1103.3357
+192125.0647770213 3.7203305 1103.3555
+192126.0647771256 3.7203305 1103.3357
+192127.0647772299 3.7204881 1103.3357
+192128.0647773342 3.7204881 1103.2963
+192129.0647774385 3.7204881 1103.3357
+192130.0647775428 3.7204881 1103.3949
+192131.0647776471 3.7205274 1103.3949
+192132.0647777515 3.7204487 1103.3357
+192133.0647778558 3.7205667 1103.3357
+192134.0647779601 3.7205667 1103.3357
+192135.0647780644 3.7206061 1103.3555
+192136.0647781687 3.7204487 1103.316
+192137.064778273 3.7205667 1103.3555
+192138.0647783773 3.7205274 1103.316
+192139.0647784816 3.7206061 1103.2765
+192140.0647785859 3.7206061 1103.4147
+192141.0647786902 3.7206454 1103.3752
+192142.0647787945 3.7205667 1103.316
+192143.0647788988 3.7206061 1103.3357
+192144.0647790032 3.7206061 1103.4542
+192145.0647791075 3.7206454 1103.316
+192146.0647792118 3.720685 1103.3949
+192147.0647793161 3.7206061 1103.3752
+192148.0647794204 3.720685 1103.4147
+192149.0647795247 3.7205667 1103.3357
+192150.064779629 3.7207243 1103.3949
+192151.0647797333 3.7207637 1103.4147
+192152.0647798376 3.7206061 1103.3555
+192153.0647799419 3.7206061 1103.3949
+192154.0647800462 3.720803 1103.3357
+192155.0647801505 3.7207637 1103.316
+192156.0647802548 3.7207637 1103.3752
+192157.0647803592 3.7207243 1103.3949
+192158.0647804635 3.720803 1103.2963
+192159.0647805678 3.7207243 1103.3555
+192160.0647806721 3.720803 1103.316
+192161.0647807764 3.7208817 1103.2765
+192162.0647808807 3.7207637 1103.3357
+192163.064780985 3.720921 1103.2765
+192164.0647810893 3.7208424 1103.316
+192165.0647811936 3.720921 1103.3555
+192166.0647812979 3.7208817 1103.2765
+192167.0647814022 3.7208424 1103.3357
+192168.0647815065 3.7209604 1103.4147
+192169.0647816109 3.7208817 1103.316
+192170.0647817152 3.7208817 1103.3555
+192171.0647818195 3.721 1103.316
+192172.0647819238 3.7208424 1103.316
+192173.0647820281 3.7209604 1103.3752
+192174.0647821324 3.7208424 1103.3555
+192175.0647822367 3.720921 1103.2963
+192176.064782341 3.7209604 1103.3555
+192177.0647824453 3.7209604 1103.3555
+192178.0647825496 3.7210393 1103.3357
+192179.0647826539 3.721 1103.3949
+192180.0647827582 3.7210393 1103.4147
+192181.0647828626 3.721 1103.3752
+192182.0647829669 3.720921 1103.3555
+192183.0647830712 3.721 1103.3555
+192184.0647831755 3.721118 1103.3752
+192185.0647832798 3.721118 1103.3949
+192186.0647833841 3.721118 1103.3949
+192187.0647834884 3.721 1103.316
+192188.0647835927 3.7210393 1103.2963
+192189.064783697 3.7211967 1103.3949
+192190.0647838013 3.721118 1103.3949
+192191.0647839056 3.7210393 1103.3357
+192192.0647840099 3.7211573 1103.3949
+192193.0647841142 3.7210393 1103.3949
+192194.0647842186 3.7211573 1103.3555
+192195.0647843229 3.721118 1103.2963
+192196.0647844272 3.7211967 1103.316
+192197.0647845315 3.7211967 1103.2963
+192198.0647846358 3.721236 1103.3555
+192199.0647847401 3.721236 1103.2567
+192200.0647848444 3.7211967 1103.2963
+192201.0647849487 3.7211573 1103.3752
+192202.064785053 3.7212756 1103.316
+192203.0647851573 3.721236 1103.3949
+192204.0647852616 3.721236 1103.3357
+192205.0647853659 3.7212756 1103.3357
+192206.0647854703 3.7211573 1103.2963
+192207.0647855746 3.721236 1103.316
+192208.0647856789 3.7212756 1103.4147
+192209.0647857832 3.7213936 1103.3752
+192210.0647858875 3.7213936 1103.3357
+192211.0647859918 3.7213542 1103.3357
+192212.0647860961 3.7212756 1103.316
+192213.0647862004 3.7212756 1103.2963
+192214.0647863047 3.7213149 1103.4344
+192215.064786409 3.7213149 1103.2567
+192216.0647865133 3.7214723 1103.316
+192217.0647866176 3.7213542 1103.4147
+192218.064786722 3.7213936 1103.316
+192219.0647868263 3.7213149 1103.2963
+192220.0647869306 3.7213936 1103.3555
+192221.0647870349 3.7213936 1103.3357
+192222.0647871392 3.7214329 1103.3555
+192223.0647872435 3.7214329 1103.2963
+192224.0647873478 3.7214723 1103.3752
+192225.0647874521 3.7214329 1103.2765
+192226.0647875564 3.7214723 1103.3555
+192227.0647876607 3.7215116 1103.3357
+192228.064787765 3.7215509 1103.3555
+192229.0647878693 3.7215116 1103.316
+192230.0647879737 3.7214723 1103.3949
+192231.064788078 3.7215116 1103.316
+192232.0647881823 3.7214723 1103.2963
+192233.0647882866 3.7215116 1103.316
+192234.0647883909 3.7215116 1103.3752
+192235.0647884952 3.7215116 1103.2963
+192236.0647885995 3.7215509 1103.3357
+192237.0647887038 3.7215905 1103.3752
+192238.0647888081 3.7216299 1103.3357
+192239.0647889124 3.7215905 1103.3555
+192240.0647890167 3.7216692 1103.3949
+192241.064789121 3.7216692 1103.3555
+192242.0647892253 3.7217085 1103.3752
+192243.0647893297 3.7216692 1103.2765
+192244.064789434 3.7217479 1103.3357
+192245.0647895383 3.7217085 1103.3752
+192246.0647896426 3.7217872 1103.3357
+192247.0647897469 3.7217085 1103.4147
+192248.0647898512 3.7216692 1103.3357
+192249.0647899555 3.7217085 1103.4147
+192250.0647900598 3.7217479 1103.3357
+192251.0647901641 3.7217872 1103.3949
+192252.0647902684 3.7217479 1103.3357
+192253.0647903727 3.7217479 1103.4147
+192254.064790477 3.7217872 1103.2567
+192255.0647905814 3.7216692 1103.316
+192256.0647906857 3.7217872 1103.2567
+192257.06479079 3.7217479 1103.3752
+192258.0647908943 3.7217872 1103.3555
+192259.0647909986 3.7219055 1103.3752
+192260.0647911029 3.7218659 1103.3752
+192261.0647912072 3.7219448 1103.3949
+192262.0647913115 3.7218659 1103.316
+192263.0647914158 3.7218266 1103.4344
+192264.0647915201 3.7217872 1103.3357
+192265.0647916244 3.7219841 1103.3357
+192266.0647917287 3.7218659 1103.3752
+192267.0647918331 3.7218266 1103.3752
+192268.0647919374 3.7218266 1103.3752
+192269.0647920417 3.7219841 1103.3949
+192270.064792146 3.7219055 1103.2963
+192271.0647922503 3.7220235 1103.3555
+192272.0647923546 3.7218266 1103.316
+192273.0647924589 3.7219448 1103.3555
+192274.0647925632 3.7219448 1103.2963
+192275.0647926675 3.7220628 1103.3752
+192276.0647927718 3.7221022 1103.3752
+192277.0647928761 3.7219448 1103.4344
+192278.0647929804 3.7219448 1103.3949
+192279.0647930847 3.7220235 1103.4344
+192280.0647931891 3.7221022 1103.3949
+192281.0647932934 3.7220235 1103.4147
+192282.0647933977 3.7220235 1103.4147
+192283.064793502 3.7220235 1103.3752
+192284.0647936063 3.7221415 1103.3752
+192285.0647937106 3.7220628 1103.3357
+192286.0647938149 3.7220628 1103.4147
+192287.0647939192 3.7221022 1103.3949
+192288.0647940235 3.7222204 1103.316
+192289.0647941278 3.7221022 1103.4147
+192290.0647942321 3.7221808 1103.3752
+192291.0647943364 3.7221808 1103.316
+192292.0647944408 3.7221415 1103.3949
+192293.0647945451 3.7221808 1103.4147
+192294.0647946494 3.7221415 1103.1975
+192295.0647947537 3.7221808 1103.4147
+192296.064794858 3.7221415 1103.3949
+192297.0647949623 3.7222991 1103.4344
+192298.0647950666 3.7222204 1103.316
+192299.0647951709 3.7221808 1103.3949
+192300.0647952752 3.7222991 1103.316
+192301.0647953795 3.7221415 1103.2567
+192302.0647954838 3.7222991 1103.316
+192303.0647955881 3.7221808 1103.3555
+192304.0647956925 3.7222991 1103.3752
+192305.0647957968 3.7222991 1103.3949
+192306.0647959011 3.7223778 1103.3752
+192307.0647960054 3.7224171 1103.3555
+192308.0647961097 3.7223384 1103.316
+192309.064796214 3.7222991 1103.2567
+192310.0647963183 3.7223384 1103.4344
+192311.0647964226 3.7223778 1103.3357
+192312.0647965269 3.7223778 1103.3555
+192313.0647966312 3.7223778 1103.3752
+192314.0647967355 3.7224171 1103.3555
+192315.0647968398 3.7223778 1103.3357
+192316.0647969441 3.7224565 1103.3555
+192317.0647970485 3.7224958 1103.2765
+192318.0647971528 3.7224565 1103.3752
+192319.0647972571 3.7224171 1103.3357
+192320.0647973614 3.7224171 1103.5134
+192321.0647974657 3.7225354 1103.3949
+192322.06479757 3.7224958 1103.3357
+192323.0647976743 3.7225354 1103.3357
+192324.0647977786 3.7224171 1103.3555
+192325.0647978829 3.7226534 1103.3555
+192326.0647979872 3.7224958 1103.3555
+192327.0647980915 3.7224565 1103.3555
+192328.0647981958 3.7225747 1103.3357
+192329.0647983002 3.7225747 1103.3752
+192330.0647984045 3.7225747 1103.316
+192331.0647985088 3.7225354 1103.4542
+192332.0647986131 3.7225747 1103.2963
+192333.0647987174 3.7225747 1103.3752
+192334.0647988217 3.7225747 1103.316
+192335.064798926 3.722614 1103.3752
+192336.0647990303 3.7225747 1103.3357
+192337.0647991346 3.7225747 1103.3357
+192338.0647992389 3.7226534 1103.3949
+192339.0647993432 3.722614 1103.2963
+192340.0647994475 3.7224958 1103.3555
+192341.0647995519 3.7226927 1103.3357
+192342.0647996562 3.7226534 1103.316
+192343.0647997605 3.7226927 1103.2765
+192344.0647998648 3.7226534 1103.2963
+192345.0647999691 3.7227321 1103.3555
+192346.0648000734 3.7227321 1103.4147
+192347.0648001777 3.7227321 1103.2963
+192348.064800282 3.7228107 1103.4147
+192349.0648003863 3.7228107 1103.3752
+192350.0648004906 3.7228107 1103.316
+192351.0648005949 3.7227321 1103.316
+192352.0648006992 3.722929 1103.3357
+192353.0648008036 3.7228503 1103.3357
+192354.0648009079 3.7228107 1103.2963
+192355.0648010122 3.7227321 1103.4542
+192356.0648011165 3.7228503 1103.3357
+192357.0648012208 3.7228107 1103.3555
+192358.0648013251 3.7227714 1103.316
+192359.0648014294 3.7228107 1103.3752
+192360.0648015337 3.7228107 1103.2963
+192361.064801638 3.7230077 1103.3357
+192362.0648017423 3.722929 1103.4542
+192363.0648018466 3.7229683 1103.3555
+192364.0648019509 3.7229683 1103.4147
+192365.0648020552 3.7229683 1103.4542
+192366.0648021596 3.7228503 1103.2963
+192367.0648022639 3.722929 1103.4147
+192368.0648023682 3.722929 1103.3357
+192369.0648024725 3.7229683 1103.3357
+192370.0648025768 3.7230077 1103.316
+192371.0648026811 3.7230077 1103.3555
+192372.0648027854 3.7229683 1103.3752
+192373.0648028897 3.7229683 1103.3949
+192374.064802994 3.723047 1103.2765
+192375.0648030983 3.7230077 1103.4147
+192376.0648032026 3.723047 1103.3357
+192377.0648033069 3.7231259 1103.4147
+192378.0648034113 3.7230077 1103.2765
+192379.0648035156 3.7231259 1103.3752
+192380.0648036199 3.723047 1103.316
+192381.0648037242 3.723047 1103.3752
+192382.0648038285 3.7231653 1103.3357
+192383.0648039328 3.7230864 1103.2765
+192384.0648040371 3.7231653 1103.316
+192385.0648041414 3.7230864 1103.2963
+192386.0648042457 3.7232046 1103.3949
+192387.06480435 3.723244 1103.2963
+192388.0648044543 3.7232833 1103.3357
+192389.0648045586 3.7231259 1103.3752
+192390.064804663 3.7231653 1103.3752
+192391.0648047673 3.7231653 1103.4542
+192392.0648048716 3.7232833 1103.4147
+192393.0648049759 3.7231653 1103.3752
+192394.0648050802 3.7231653 1103.4344
+192395.0648051845 3.7232833 1103.3555
+192396.0648052888 3.7231259 1103.3555
+192397.0648053931 3.7233226 1103.3357
+192398.0648054974 3.7234013 1103.316
+192399.0648056017 3.723244 1103.316
+192400.064805706 3.7233226 1103.3555
+192401.0648058103 3.7232833 1103.2765
+192402.0648059146 3.7233226 1103.3752
+192403.064806019 3.7232833 1103.2963
+192404.0648061233 3.7232833 1103.3949
+192405.0648062276 3.7232833 1103.2963
+192406.0648063319 3.723362 1103.2567
+192407.0648064362 3.723362 1103.3357
+192408.0648065405 3.723244 1103.3555
+192409.0648066448 3.723362 1103.3555
+192410.0648067491 3.723362 1103.3752
+192411.0648068534 3.7234409 1103.316
+192412.0648069577 3.723362 1103.3555
+192413.064807062 3.7234802 1103.4147
+192414.0648071663 3.7234013 1103.3555
+192415.0648072707 3.7234802 1103.316
+192416.064807375 3.7234409 1103.3752
+192417.0648074793 3.7234802 1103.316
+192418.0648075836 3.7234802 1103.3357
+192419.0648076879 3.7234802 1103.4147
+192420.0648077922 3.7235589 1103.3555
+192421.0648078965 3.7235589 1103.2963
+192422.0648080008 3.7234802 1103.2963
+192423.0648081051 3.7235589 1103.316
+192424.0648082094 3.7234409 1103.316
+192425.0648083137 3.7235196 1103.3949
+192426.064808418 3.7235589 1103.316
+192427.0648085224 3.7236769 1103.3357
+192428.0648086267 3.7236769 1103.3752
+192429.064808731 3.7235196 1103.3752
+192430.0648088353 3.7236376 1103.3752
+192431.0648089396 3.7236769 1103.3555
+192432.0648090439 3.7236769 1103.4147
+192433.0648091482 3.7236769 1103.3949
+192434.0648092525 3.7236769 1103.2765
+192435.0648093568 3.7236376 1103.3555
+192436.0648094611 3.7236376 1103.316
+192437.0648095654 3.7237558 1103.316
+192438.0648096697 3.7237163 1103.3357
+192439.064809774 3.7237163 1103.3555
+192440.0648098784 3.7236769 1103.3752
+192441.0648099827 3.7238345 1103.3949
+192442.064810087 3.7237558 1103.3555
+192443.0648101913 3.7237952 1103.3555
+192444.0648102956 3.7237952 1103.3752
+192445.0648103999 3.7237952 1103.4147
+192446.0648105042 3.7238345 1103.2765
+192447.0648106085 3.7237163 1103.316
+192448.0648107128 3.7239132 1103.4147
+192449.0648108171 3.7239132 1103.3555
+192450.0648109214 3.7238345 1103.2963
+192451.0648110257 3.7238345 1103.3357
+192452.0648111301 3.7238345 1103.4542
+192453.0648112344 3.7237952 1103.3555
+192454.0648113387 3.7238345 1103.3357
+192455.064811443 3.7238345 1103.3555
+192456.0648115473 3.7238345 1103.3555
+192457.0648116516 3.7240312 1103.3949
+192458.0648117559 3.7239132 1103.4147
+192459.0648118602 3.7239132 1103.3555
+192460.0648119645 3.7238345 1103.3555
+192461.0648120688 3.7238739 1103.316
+192462.0648121731 3.7239919 1103.3949
+192463.0648122774 3.7240708 1103.3949
+192464.0648123818 3.7239919 1103.316
+192465.0648124861 3.7239525 1103.316
+192466.0648125904 3.7239919 1103.316
+192467.0648126947 3.7239919 1103.3555
+192468.064812799 3.7240312 1103.2963
+192469.0648129033 3.7240312 1103.4344
+192470.0648130076 3.7239132 1103.3357
+192471.0648131119 3.7240708 1103.4147
+192472.0648132162 3.7240312 1103.3752
+192473.0648133205 3.7240708 1103.3555
+192474.0648134248 3.7240708 1103.3752
+192475.0648135291 3.7240312 1103.3949
+192476.0648136334 3.7241495 1103.3752
+192477.0648137378 3.7241495 1103.2963
+192478.0648138421 3.7240708 1103.3555
+192479.0648139464 3.7240708 1103.316
+192480.0648140507 3.7241888 1103.3555
+192481.064814155 3.7241495 1103.3949
+192482.0648142593 3.7241495 1103.2963
+192483.0648143636 3.7241888 1103.2765
+192484.0648144679 3.7242675 1103.3752
+192485.0648145722 3.7242281 1103.3752
+192486.0648146765 3.7242281 1103.2765
+192487.0648147808 3.7241888 1103.4344
+192488.0648148851 3.7243068 1103.3357
+192489.0648149895 3.7242675 1103.2963
+192490.0648150938 3.7243068 1103.2963
+192491.0648151981 3.7242281 1103.2963
+192492.0648153024 3.7244251 1103.316
+192493.0648154067 3.7243068 1103.4147
+192494.064815511 3.7243068 1103.316
+192495.0648156153 3.7243068 1103.3752
+192496.0648157196 3.7243068 1103.4147
+192497.0648158239 3.7243068 1103.3752
+192498.0648159282 3.7242675 1103.4147
+192499.0648160325 3.7243857 1103.3357
+192500.0648161368 3.7243462 1103.4147
+192501.0648162412 3.7244251 1103.316
+192502.0648163455 3.7244251 1103.3555
+192503.0648164498 3.7242675 1103.4542
+192504.0648165541 3.7244251 1103.316
+192505.0648166584 3.7244251 1103.3949
+192506.0648167627 3.7244251 1103.316
+192507.064816867 3.7244251 1103.316
+192508.0648169713 3.7244251 1103.4147
+192509.0648170756 3.7245431 1103.2963
+192510.0648171799 3.7244251 1103.3555
+192511.0648172842 3.7244251 1103.3357
+192512.0648173885 3.7245038 1103.3949
+192513.0648174929 3.7245824 1103.3555
+192514.0648175972 3.7245431 1103.3555
+192515.0648177015 3.7245038 1103.3752
+192516.0648178058 3.7245038 1103.316
+192517.0648179101 3.7245038 1103.2963
+192518.0648180144 3.7244644 1103.316
+192519.0648181187 3.7245824 1103.3357
+192520.064818223 3.7247007 1103.2765
+192521.0648183273 3.7246218 1103.3949
+192522.0648184316 3.7246611 1103.3555
+192523.0648185359 3.7246218 1103.3357
+192524.0648186402 3.7245824 1103.3949
+192525.0648187445 3.7247007 1103.3752
+192526.0648188489 3.7246611 1103.3357
+192527.0648189532 3.7247007 1103.4938
+192528.0648190575 3.7246218 1103.3357
+192529.0648191618 3.7246218 1103.3752
+192530.0648192661 3.72474 1103.3752
+192531.0648193704 3.7247007 1103.2369
+192532.0648194747 3.7246611 1103.3357
+192533.064819579 3.7246611 1103.3752
+192534.0648196833 3.7247794 1103.3555
+192535.0648197876 3.7247007 1103.316
+192536.0648198919 3.72474 1103.2765
+192537.0648199962 3.7247007 1103.3555
+192538.0648201006 3.72474 1103.3357
+192539.0648202049 3.7247007 1103.2765
+192540.0648203092 3.72474 1103.4542
+192541.0648204135 3.7247794 1103.3357
+192542.0648205178 3.7247794 1103.3949
+192543.0648206221 3.7248187 1103.3949
+192544.0648207264 3.724858 1103.3949
+192545.0648208307 3.724858 1103.316
+192546.064820935 3.7248974 1103.2369
+192547.0648210393 3.724858 1103.4344
+192548.0648211436 3.7248974 1103.3752
+192549.0648212479 3.7249367 1103.3752
+192550.0648213523 3.7248974 1103.3752
+192551.0648214566 3.724858 1103.3555
+192552.0648215609 3.7250943 1103.2369
+192553.0648216652 3.7248974 1103.316
+192554.0648217695 3.7249367 1103.2963
+192555.0648218738 3.7250156 1103.3555
+192556.0648219781 3.7249763 1103.4344
+192557.0648220824 3.725055 1103.3752
+192558.0648221867 3.7249367 1103.3752
+192559.064822291 3.725055 1103.3949
+192560.0648223953 3.7249763 1103.3357
+192561.0648224996 3.7250156 1103.2963
+192562.0648226039 3.7250156 1103.4147
+192563.0648227083 3.7249763 1103.2963
+192564.0648228126 3.7250156 1103.3949
+192565.0648229169 3.7248974 1103.3555
+192566.0648230212 3.725055 1103.3555
+192567.0648231255 3.7250156 1103.2963
+192568.0648232298 3.725055 1103.3357
+192569.0648233341 3.725055 1103.3752
+192570.0648234384 3.7251337 1103.316
+192571.0648235427 3.7251337 1103.3357
+192572.064823647 3.7250943 1103.3357
+192573.0648237513 3.7250943 1103.2963
+192574.0648238556 3.7252123 1103.3949
+192575.06482396 3.7252517 1103.316
+192576.0648240643 3.725173 1103.3555
+192577.0648241686 3.725173 1103.3949
+192578.0648242729 3.725173 1103.3357
+192579.0648243772 3.7251337 1103.3357
+192580.0648244815 3.7252517 1103.2765
+192581.0648245858 3.7252517 1103.3949
+192582.0648246901 3.7252517 1103.3752
+192583.0648247944 3.7252123 1103.3949
+192584.0648248987 3.7252517 1103.3357
+192585.064825003 3.7252517 1103.4344
+192586.0648251073 3.7252913 1103.3752
+192587.0648252117 3.7253306 1103.3357
+192588.064825316 3.7253306 1103.3357
+192589.0648254203 3.7253306 1103.3357
+192590.0648255246 3.7253306 1103.3555
+192591.0648256289 3.7253306 1103.3357
+192592.0648257332 3.7253306 1103.3949
+192593.0648258375 3.7254093 1103.3555
+192594.0648259418 3.7254093 1103.3555
+192595.0648260461 3.7253306 1103.4542
+192596.0648261504 3.7253306 1103.3555
+192597.0648262547 3.7254093 1103.2963
+192598.064826359 3.7254486 1103.3357
+192599.0648264633 3.7253699 1103.2567
+192600.0648265677 3.7254093 1103.316
+192601.064826672 3.7254486 1103.3555
+192602.0648267763 3.7254486 1103.316
+192603.0648268806 3.7254486 1103.3357
+192604.0648269849 3.7254486 1103.316
+192605.0648270892 3.7254486 1103.2765
+192606.0648271935 3.7255273 1103.3357
+192607.0648272978 3.7254093 1103.316
+192608.0648274021 3.7254879 1103.316
+192609.0648275064 3.7255273 1103.3752
+192610.0648276107 3.7255273 1103.2963
+192611.064827715 3.7255666 1103.3357
+192612.0648278194 3.7256062 1103.4147
+192613.0648279237 3.7256062 1103.316
+192614.064828028 3.7255666 1103.3357
+192615.0648281323 3.7255666 1103.3555
+192616.0648282366 3.7256062 1103.3555
+192617.0648283409 3.7256062 1103.3555
+192618.0648284452 3.7256849 1103.3752
+192619.0648285495 3.7256849 1103.3555
+192620.0648286538 3.7256455 1103.3555
+192621.0648287581 3.7255666 1103.3357
+192622.0648288624 3.7257242 1103.3357
+192623.0648289667 3.7256849 1103.4344
+192624.0648290711 3.7256849 1103.474
+192625.0648291754 3.7256062 1103.3555
+192626.0648292797 3.7256849 1103.3357
+192627.064829384 3.7256062 1103.4344
+192628.0648294883 3.7256849 1103.2765
+192629.0648295926 3.7258029 1103.3555
+192630.0648296969 3.7258422 1103.4344
+192631.0648298012 3.7257242 1103.3357
+192632.0648299055 3.7258029 1103.3357
+192633.0648300098 3.7257636 1103.4147
+192634.0648301141 3.7257636 1103.3357
+192635.0648302184 3.7258422 1103.316
+192636.0648303228 3.7258029 1103.2963
+192637.0648304271 3.7258029 1103.3949
+192638.0648305314 3.7257636 1103.3357
+192639.0648306357 3.7258422 1103.3949
+192640.06483074 3.7258816 1103.316
+192641.0648308443 3.7258816 1103.3555
+192642.0648309486 3.7259605 1103.4147
+192643.0648310529 3.7258816 1103.3949
+192644.0648311572 3.7258029 1103.3752
+192645.0648312615 3.7259212 1103.3555
+192646.0648313658 3.7258816 1103.3357
+192647.0648314701 3.7259605 1103.316
+192648.0648315744 3.7259605 1103.3752
+192649.0648316788 3.7259212 1103.3752
+192650.0648317831 3.7259605 1103.3357
+192651.0648318874 3.7260392 1103.4344
+192652.0648319917 3.7259998 1103.2963
+192653.064832096 3.7260785 1103.4147
+192654.0648322003 3.7259998 1103.3555
+192655.0648323046 3.7260785 1103.2567
+192656.0648324089 3.7259998 1103.3949
+192657.0648325132 3.7260785 1103.316
+192658.0648326175 3.7260785 1103.3555
+192659.0648327218 3.7259998 1103.316
+192660.0648328261 3.7261178 1103.2765
+192661.0648329305 3.7261178 1103.316
+192662.0648330348 3.7261178 1103.2963
+192663.0648331391 3.7260392 1103.4147
+192664.0648332434 3.7260785 1103.2963
+192665.0648333477 3.7261178 1103.3555
+192666.064833452 3.7261178 1103.3555
+192667.0648335563 3.7261965 1103.3752
+192668.0648336606 3.7260785 1103.3555
+192669.0648337649 3.7260785 1103.3555
+192670.0648338692 3.7261178 1103.2567
+192671.0648339735 3.7261178 1103.2765
+192672.0648340778 3.7262361 1103.4147
+192673.0648341822 3.7261965 1103.3357
+192674.0648342865 3.7262754 1103.3752
+192675.0648343908 3.7262754 1103.3949
+192676.0648344951 3.7261572 1103.3357
+192677.0648345994 3.7262361 1103.3949
+192678.0648347037 3.7262361 1103.3555
+192679.064834808 3.7261965 1103.3555
+192680.0648349123 3.7262754 1103.4542
+192681.0648350166 3.7263148 1103.2765
+192682.0648351209 3.7262754 1103.3357
+192683.0648352252 3.7263541 1103.3949
+192684.0648353295 3.7263541 1103.3357
+192685.0648354338 3.7263541 1103.3949
+192686.0648355382 3.7264328 1103.3357
+192687.0648356425 3.7264721 1103.3555
+192688.0648357468 3.7264328 1103.2963
+192689.0648358511 3.7263541 1103.3357
+192690.0648359554 3.7263541 1103.2963
+192691.0648360597 3.7263935 1103.316
+192692.064836164 3.7263935 1103.3357
+192693.0648362683 3.7264328 1103.3357
+192694.0648363726 3.7264328 1103.4344
+192695.0648364769 3.7264721 1103.2963
+192696.0648365812 3.7264328 1103.316
+192697.0648366855 3.7264721 1103.3949
+192698.0648367899 3.7265115 1103.3752
+192699.0648368942 3.7265115 1103.2765
+192700.0648369985 3.7264328 1103.2765
+192701.0648371028 3.7264328 1103.4147
+192702.0648372071 3.7265511 1103.3752
+192703.0648373114 3.7265511 1103.316
+192704.0648374157 3.7266297 1103.4147
+192705.06483752 3.7265904 1103.3752
+192706.0648376243 3.7265904 1103.4147
+192707.0648377286 3.7265511 1103.3752
+192708.0648378329 3.7265904 1103.316
+192709.0648379372 3.7265511 1103.3555
+192710.0648380416 3.7266691 1103.2963
+192711.0648381459 3.7265904 1103.2765
+192712.0648382502 3.7267478 1103.4542
+192713.0648383545 3.7266297 1103.3357
+192714.0648384588 3.7266297 1103.3555
+192715.0648385631 3.7266691 1103.316
+192716.0648386674 3.7267478 1103.3752
+192717.0648387717 3.7266691 1103.3752
+192718.064838876 3.7266691 1103.4542
+192719.0648389803 3.7267084 1103.2765
+192720.0648390846 3.7266691 1103.3555
+192721.0648391889 3.7267084 1103.3949
+192722.0648392932 3.7267084 1103.3752
+192723.0648393976 3.7267871 1103.316
+192724.0648395019 3.7267478 1103.4147
+192725.0648396062 3.7267871 1103.3357
+192726.0648397105 3.7267084 1103.2963
+192727.0648398148 3.726866 1103.3752
+192728.0648399191 3.7268267 1103.3555
+192729.0648400234 3.7267871 1103.316
+192730.0648401277 3.7267478 1103.316
+192731.064840232 3.7268267 1103.3752
+192732.0648403363 3.7269447 1103.3949
+192733.0648404406 3.7269053 1103.3555
+192734.0648405449 3.7269053 1103.3949
+192735.0648406493 3.7267871 1103.474
+192736.0648407536 3.7268267 1103.3555
+192737.0648408579 3.7269447 1103.3949
+192738.0648409622 3.7269053 1103.3752
+192739.0648410665 3.7269447 1103.4147
+192740.0648411708 3.7269053 1103.316
+192741.0648412751 3.7270234 1103.3357
+192742.0648413794 3.726866 1103.2567
+192743.0648414837 3.726984 1103.3357
+192744.064841588 3.7269447 1103.4344
+192745.0648416923 3.726984 1103.2567
+192746.0648417966 3.7270627 1103.3752
+192747.064841901 3.7270234 1103.3357
+192748.0648420053 3.726984 1103.316
+192749.0648421096 3.7270627 1103.3752
+192750.0648422139 3.727102 1103.3357
+192751.0648423182 3.7270234 1103.316
+192752.0648424225 3.727102 1103.4147
+192753.0648425268 3.726984 1103.316
+192754.0648426311 3.7271416 1103.3555
+192755.0648427354 3.7270627 1103.3949
+192756.0648428397 3.727102 1103.3752
+192757.064842944 3.727181 1103.316
+192758.0648430483 3.7271416 1103.316
+192759.0648431527 3.7271416 1103.316
+192760.064843257 3.7272203 1103.316
+192761.0648433613 3.7271416 1103.2963
+192762.0648434656 3.727181 1103.3357
+192763.0648435699 3.7272203 1103.3555
+192764.0648436742 3.727181 1103.4344
+192765.0648437785 3.727181 1103.3357
+192766.0648438828 3.727181 1103.3357
+192767.0648439871 3.7273383 1103.3357
+192768.0648440914 3.7272203 1103.3555
+192769.0648441957 3.7273383 1103.3949
+192770.0648443 3.7272203 1103.3555
+192771.0648444043 3.727299 1103.4147
+192772.0648445087 3.7273383 1103.3555
+192773.064844613 3.727299 1103.316
+192774.0648447173 3.7273777 1103.3357
+192775.0648448216 3.7273383 1103.2765
+192776.0648449259 3.7273383 1103.4147
+192777.0648450302 3.727417 1103.2765
+192778.0648451345 3.7273777 1103.3949
+192779.0648452388 3.7273777 1103.2963
+192780.0648453431 3.727299 1103.2963
+192781.0648454474 3.7274566 1103.3555
+192782.0648455517 3.7273383 1103.3555
+192783.064845656 3.727417 1103.4344
+192784.0648457604 3.727417 1103.3555
+192785.0648458647 3.7273777 1103.2765
+192786.064845969 3.727417 1103.3752
+192787.0648460733 3.7274959 1103.316
+192788.0648461776 3.7274566 1103.316
+192789.0648462819 3.7274959 1103.3555
+192790.0648463862 3.7274959 1103.3752
+192791.0648464905 3.7276139 1103.3555
+192792.0648465948 3.7274566 1103.3752
+192793.0648466991 3.7273383 1103.3357
+192794.0648468034 3.7274566 1103.4147
+192795.0648469077 3.7274959 1103.3357
+192796.0648470121 3.7275352 1103.3357
+192797.0648471164 3.7276926 1103.3357
+192798.0648472207 3.7274959 1103.4147
+192799.064847325 3.7275746 1103.3752
+192800.0648474293 3.7276139 1103.3752
+192801.0648475336 3.7275352 1103.3555
+192802.0648476379 3.7275746 1103.3752
+192803.0648477422 3.7276533 1103.3357
+192804.0648478465 3.7276926 1103.3752
+192805.0648479508 3.7276139 1103.3949
+192806.0648480551 3.7276533 1103.3555
+192807.0648481594 3.7275352 1103.2963
+192808.0648482637 3.7276533 1103.2567
+192809.0648483681 3.7276533 1103.2963
+192810.0648484724 3.7277319 1103.3949
+192811.0648485767 3.7277319 1103.2567
+192812.064848681 3.7277715 1103.3555
+192813.0648487853 3.7277319 1103.3555
+192814.0648488896 3.7277715 1103.3752
+192815.0648489939 3.7276533 1103.3752
+192816.0648490982 3.7276926 1103.3555
+192817.0648492025 3.7277715 1103.3949
+192818.0648493068 3.7278109 1103.4344
+192819.0648494111 3.7277715 1103.3752
+192820.0648495154 3.7278502 1103.3555
+192821.0648496198 3.7277715 1103.4147
+192822.0648497241 3.7278895 1103.3752
+192823.0648498284 3.7279289 1103.3555
+192824.0648499327 3.7278109 1103.4344
+192825.064850037 3.7278502 1103.3357
+192826.0648501413 3.7277715 1103.3949
+192827.0648502456 3.7279682 1103.3555
+192828.0648503499 3.7278895 1103.3555
+192829.0648504542 3.7279289 1103.2765
+192830.0648505585 3.7278895 1103.4344
+192831.0648506628 3.7279289 1103.2963
+192832.0648507671 3.7279289 1103.4542
+192833.0648508715 3.7280076 1103.3357
+192834.0648509758 3.7279682 1103.4344
+192835.0648510801 3.7281651 1103.4147
+192836.0648511844 3.7280076 1103.3752
+192837.0648512887 3.7280076 1103.3949
+192838.064851393 3.7280469 1103.3555
+192839.0648514973 3.7280076 1103.2963
+192840.0648516016 3.7280076 1103.2765
+192841.0648517059 3.7279682 1103.3752
+192842.0648518102 3.7280076 1103.3752
+192843.0648519145 3.7280865 1103.3752
+192844.0648520188 3.7280076 1103.3357
+192845.0648521231 3.7281258 1103.3752
+192846.0648522275 3.7280865 1103.4147
+192847.0648523318 3.7280865 1103.3555
+192848.0648524361 3.7281258 1103.2963
+192849.0648525404 3.7281258 1103.3555
+192850.0648526447 3.7281258 1103.3752
+192851.064852749 3.7280865 1103.3555
+192852.0648528533 3.7282045 1103.316
+192853.0648529576 3.7282045 1103.3752
+192854.0648530619 3.7281651 1103.3357
+192855.0648531662 3.7282438 1103.3357
+192856.0648532705 3.7282438 1103.3555
+192857.0648533748 3.7282438 1103.3555
+192858.0648534792 3.7282438 1103.4344
+192859.0648535835 3.7283225 1103.3949
+192860.0648536878 3.7282438 1103.2567
+192861.0648537921 3.7283618 1103.2963
+192862.0648538964 3.7283618 1103.3949
+192863.0648540007 3.7282832 1103.316
+192864.064854105 3.7282438 1103.3357
+192865.0648542093 3.7283618 1103.3357
+192866.0648543136 3.7283618 1103.316
+192867.0648544179 3.7283618 1103.3752
+192868.0648545222 3.7283225 1103.2963
+192869.0648546265 3.7282832 1103.3357
+192870.0648547309 3.7283225 1103.3357
+192871.0648548352 3.7283618 1103.3949
+192872.0648549395 3.7283618 1103.3949
+192873.0648550438 3.7284408 1103.2963
+192874.0648551481 3.7284408 1103.3949
+192875.0648552524 3.7283618 1103.4147
+192876.0648553567 3.7284801 1103.3555
+192877.064855461 3.7284801 1103.3357
+192878.0648555653 3.7283618 1103.316
+192879.0648556696 3.7284801 1103.3752
+192880.0648557739 3.7285194 1103.3752
+192881.0648558782 3.7284801 1103.3555
+192882.0648559825 3.7284801 1103.3357
+192883.0648560869 3.7284801 1103.3949
+192884.0648561912 3.7285981 1103.3949
+192885.0648562955 3.7285588 1103.3752
+192886.0648563998 3.7285588 1103.4147
+192887.0648565041 3.7286375 1103.3555
+192888.0648566084 3.7285588 1103.3752
+192889.0648567127 3.7285588 1103.474
+192890.064856817 3.7285981 1103.4147
+192891.0648569213 3.7284801 1103.2765
+192892.0648570256 3.7285588 1103.2369
+192893.0648571299 3.7285194 1103.2963
+192894.0648572342 3.7285588 1103.3949
+192895.0648573386 3.7286375 1103.3752
+192896.0648574429 3.7287164 1103.4344
+192897.0648575472 3.7287164 1103.3357
+192898.0648576515 3.7285981 1103.316
+192899.0648577558 3.728677 1103.3949
+192900.0648578601 3.7287164 1103.4344
+192901.0648579644 3.7287164 1103.2765
+192902.0648580687 3.7287557 1103.2567
+192903.064858173 3.7287164 1103.4147
+192904.0648582773 3.7287951 1103.2765
+192905.0648583816 3.7288344 1103.4542
+192906.0648584859 3.7287951 1103.316
+192907.0648585903 3.7287557 1103.4147
+192908.0648586946 3.7287951 1103.4147
+192909.0648587989 3.7287557 1103.3357
+192910.0648589032 3.7288344 1103.3555
+192911.0648590075 3.7287951 1103.3357
+192912.0648591118 3.7287557 1103.3949
+192913.0648592161 3.7287557 1103.3555
+192914.0648593204 3.7288344 1103.4344
+192915.0648594247 3.7288344 1103.3949
+192916.064859529 3.7287951 1103.3949
+192917.0648596333 3.7289524 1103.2765
+192918.0648597376 3.7288344 1103.4344
+192919.064859842 3.7288737 1103.2963
+192920.0648599463 3.7290313 1103.316
+192921.0648600506 3.7288344 1103.3555
+192922.0648601549 3.7289131 1103.3357
+192923.0648602592 3.7289524 1103.3555
+192924.0648603635 3.7289524 1103.3357
+192925.0648604678 3.7289524 1103.2963
+192926.0648605721 3.7289524 1103.2963
+192927.0648606764 3.728992 1103.4344
+192928.0648607807 3.7290313 1103.3949
+192929.064860885 3.7290313 1103.316
+192930.0648609893 3.7289524 1103.3555
+192931.0648610936 3.7290313 1103.316
+192932.064861198 3.728992 1103.3949
+192933.0648613023 3.7290707 1103.3752
+192934.0648614066 3.728992 1103.3752
+192935.0648615109 3.72911 1103.4147
+192936.0648616152 3.7291887 1103.2963
+192937.0648617195 3.72911 1103.3752
+192938.0648618238 3.7291493 1103.316
+192939.0648619281 3.7290707 1103.3555
+192940.0648620324 3.72911 1103.316
+192941.0648621367 3.7291887 1103.4147
+192942.064862241 3.7291887 1103.3752
+192943.0648623453 3.729228 1103.3949
+192944.0648624497 3.729228 1103.3752
+192945.064862554 3.7291493 1103.316
+192946.0648626583 3.7291887 1103.316
+192947.0648627626 3.7292674 1103.316
+192948.0648628669 3.7292674 1103.2369
+192949.0648629712 3.7293069 1103.3555
+192950.0648630755 3.7291493 1103.316
+192951.0648631798 3.7293463 1103.3752
+192952.0648632841 3.729228 1103.316
+192953.0648633884 3.729228 1103.316
+192954.0648634927 3.7293463 1103.3357
+192955.064863597 3.7292674 1103.2963
+192956.0648637014 3.7293463 1103.316
+192957.0648638057 3.7292674 1103.3752
+192958.06486391 3.7292674 1103.3555
+192959.0648640143 3.7292674 1103.3949
+192960.0648641186 3.729228 1103.2567
+192961.0648642229 3.729425 1103.3752
+192962.0648643272 3.7292674 1103.3555
+192963.0648644315 3.729425 1103.3752
+192964.0648645358 3.7293463 1103.3752
+192965.0648646401 3.7293856 1103.3555
+192966.0648647444 3.7294643 1103.2765
+192967.0648648487 3.729425 1103.3949
+192968.064864953 3.7293463 1103.2963
+192969.0648650574 3.7294643 1103.3357
+192970.0648651617 3.7293856 1103.3752
+192971.064865266 3.729425 1103.2765
+192972.0648653703 3.7295036 1103.3949
+192973.0648654746 3.7294643 1103.316
+192974.0648655789 3.7295036 1103.3357
+192975.0648656832 3.729543 1103.4542
+192976.0648657875 3.7295036 1103.2963
+192977.0648658918 3.7296612 1103.3555
+192978.0648659961 3.7295823 1103.2765
+192979.0648661004 3.7295823 1103.3752
+192980.0648662047 3.7296612 1103.3752
+192981.0648663091 3.729543 1103.2963
+192982.0648664134 3.7297006 1103.3555
+192983.0648665177 3.7296612 1103.3555
+192984.064866622 3.7296219 1103.316
+192985.0648667263 3.7295036 1103.3949
+192986.0648668306 3.7297006 1103.4147
+192987.0648669349 3.7297006 1103.316
+192988.0648670392 3.7297006 1103.4147
+192989.0648671435 3.7295823 1103.3357
+192990.0648672478 3.7297006 1103.3949
+192991.0648673521 3.7297399 1103.3555
+192992.0648674564 3.7297006 1103.4344
+192993.0648675608 3.7297006 1103.3752
+192994.0648676651 3.7296612 1103.3555
+192995.0648677694 3.7297792 1103.4542
+192996.0648678737 3.7297399 1103.2369
+192997.064867978 3.7297006 1103.3357
+192998.0648680823 3.7297399 1103.3949
+192999.0648681866 3.7299368 1103.4344
+193000.0648682909 3.7298186 1103.316
+193001.0648683952 3.7298186 1103.316
+193002.0648684995 3.7297399 1103.3949
+193003.0648686038 3.7297792 1103.316
+193004.0648687081 3.7297399 1103.3357
+193005.0648688124 3.7298186 1103.2963
+193006.0648689168 3.7298579 1103.316
+193007.0648690211 3.7298579 1103.3555
+193008.0648691254 3.7297399 1103.3949
+193009.0648692297 3.7298973 1103.3752
+193010.064869334 3.7298973 1103.3752
+193011.0648694383 3.7298973 1103.3357
+193012.0648695426 3.7297792 1103.3949
+193013.0648696469 3.7299762 1103.2567
+193014.0648697512 3.7300155 1103.4147
+193015.0648698555 3.7299368 1103.3555
+193016.0648699598 3.7299368 1103.4344
+193017.0648700641 3.7298973 1103.3949
+193018.0648701685 3.7300155 1103.3555
+193019.0648702728 3.7300549 1103.3752
+193020.0648703771 3.7300942 1103.3357
+193021.0648704814 3.7300549 1103.3555
+193022.0648705857 3.7299762 1103.3949
+193023.06487069 3.7301729 1103.3357
+193024.0648707943 3.7300549 1103.4147
+193025.0648708986 3.7300155 1103.3949
+193026.0648710029 3.7300942 1103.316
+193027.0648711072 3.7300549 1103.3555
+193028.0648712115 3.7301335 1103.2963
+193029.0648713158 3.7300549 1103.316
+193030.0648714202 3.7300942 1103.3949
+193031.0648715245 3.7300942 1103.2963
+193032.0648716288 3.7301335 1103.316
+193033.0648717331 3.7300942 1103.2963
+193034.0648718374 3.7301729 1103.4147
+193035.0648719417 3.7301335 1103.3752
+193036.064872046 3.7302122 1103.4938
+193037.0648721503 3.7300942 1103.3555
+193038.0648722546 3.7302122 1103.316
+193039.0648723589 3.7301335 1103.3357
+193040.0648724632 3.7302122 1103.4542
+193041.0648725675 3.7302122 1103.4147
+193042.0648726719 3.7303305 1103.3555
+193043.0648727762 3.7301729 1103.3357
+193044.0648728805 3.7303305 1103.3555
+193045.0648729848 3.7302911 1103.4344
+193046.0648730891 3.7302518 1103.316
+193047.0648731934 3.7302911 1103.3357
+193048.0648732977 3.7303305 1103.2963
+193049.064873402 3.7302122 1103.2765
+193050.0648735063 3.7303698 1103.2963
+193051.0648736106 3.7304091 1103.3752
+193052.0648737149 3.7303305 1103.3949
+193053.0648738192 3.7304091 1103.3357
+193054.0648739235 3.7304485 1103.2369
+193055.0648740279 3.7304091 1103.4344
+193056.0648741322 3.7304091 1103.3555
+193057.0648742365 3.7303698 1103.316
+193058.0648743408 3.7303698 1103.3949
+193059.0648744451 3.7304485 1103.3752
+193060.0648745494 3.7304878 1103.316
+193061.0648746537 3.7304485 1103.3357
+193062.064874758 3.7304485 1103.3357
+193063.0648748623 3.7303698 1103.3752
+193064.0648749666 3.7306061 1103.2963
+193065.0648750709 3.7305667 1103.2567
+193066.0648751752 3.7304878 1103.4344
+193067.0648752796 3.7304878 1103.3357
+193068.0648753839 3.7305274 1103.3752
+193069.0648754882 3.7306454 1103.3555
+193070.0648755925 3.7306061 1103.3555
+193071.0648756968 3.7305274 1103.316
+193072.0648758011 3.7306061 1103.2765
+193073.0648759054 3.7306061 1103.3752
+193074.0648760097 3.7306061 1103.3949
+193075.064876114 3.7306061 1103.3752
+193076.0648762183 3.7304878 1103.2765
+193077.0648763226 3.7305667 1103.316
+193078.0648764269 3.7306848 1103.4147
+193079.0648765313 3.7306061 1103.3357
+193080.0648766356 3.7306454 1103.3357
+193081.0648767399 3.7306061 1103.3357
+193082.0648768442 3.7307634 1103.3752
+193083.0648769485 3.7307241 1103.4344
+193084.0648770528 3.7306848 1103.316
+193085.0648771571 3.7308424 1103.316
+193086.0648772614 3.7307634 1103.3555
+193087.0648773657 3.7306454 1103.3555
+193088.06487747 3.7306848 1103.316
+193089.0648775743 3.7307241 1103.3357
+193090.0648776786 3.7306061 1103.4938
+193091.0648777829 3.7308028 1103.3949
+193092.0648778873 3.7308817 1103.3357
+193093.0648779916 3.7308028 1103.3949
+193094.0648780959 3.7307634 1103.4938
+193095.0648782002 3.7307634 1103.4344
+193096.0648783045 3.7309604 1103.3555
+193097.0648784088 3.7308817 1103.4542
+193098.0648785131 3.7308028 1103.3357
+193099.0648786174 3.7308424 1103.3555
+193100.0648787217 3.7308028 1103.2963
+193101.064878826 3.730921 1103.4542
+193102.0648789303 3.7309604 1103.2963
+193103.0648790346 3.7309604 1103.3357
+193104.064879139 3.7308817 1103.2963
+193105.0648792433 3.7309604 1103.3555
+193106.0648793476 3.7309604 1103.3949
+193107.0648794519 3.730921 1103.3752
+193108.0648795562 3.730921 1103.3555
+193109.0648796605 3.731039 1103.3555
+193110.0648797648 3.731039 1103.3357
+193111.0648798691 3.7310784 1103.4344
+193112.0648799734 3.731039 1103.2567
+193113.0648800777 3.7309997 1103.3357
+193114.064880182 3.731039 1103.2963
+193115.0648802863 3.731039 1103.3752
+193116.0648803907 3.731039 1103.3752
+193117.064880495 3.731039 1103.3357
+193118.0648805993 3.731039 1103.2567
+193119.0648807036 3.731039 1103.4147
+193120.0648808079 3.7310784 1103.3357
+193121.0648809122 3.7311966 1103.3752
+193122.0648810165 3.7311573 1103.316
+193123.0648811208 3.731039 1103.3555
+193124.0648812251 3.7311177 1103.3949
+193125.0648813294 3.7311966 1103.3752
+193126.0648814337 3.7311177 1103.3357
+193127.064881538 3.7311177 1103.3555
+193128.0648816423 3.7311177 1103.2765
+193129.0648817467 3.7311573 1103.3555
+193130.064881851 3.7311573 1103.2963
+193131.0648819553 3.731236 1103.2963
+193132.0648820596 3.7311966 1103.2963
+193133.0648821639 3.7311573 1103.316
+193134.0648822682 3.731236 1103.3357
+193135.0648823725 3.731354 1103.4147
+193136.0648824768 3.7311573 1103.316
+193137.0648825811 3.7313147 1103.3949
+193138.0648826854 3.7312753 1103.2963
+193139.0648827897 3.731236 1103.3949
+193140.064882894 3.7312753 1103.2963
+193141.0648829984 3.7312753 1103.3555
+193142.0648831027 3.7313933 1103.2963
+193143.064883207 3.7313147 1103.2765
+193144.0648833113 3.7314723 1103.3752
+193145.0648834156 3.7313147 1103.3949
+193146.0648835199 3.7313933 1103.316
+193147.0648836242 3.7313933 1103.3357
+193148.0648837285 3.7313933 1103.3357
+193149.0648838328 3.7314327 1103.4344
+193150.0648839371 3.731354 1103.2963
+193151.0648840414 3.7314723 1103.3357
+193152.0648841457 3.7314723 1103.3752
+193153.0648842501 3.7314327 1103.2963
+193154.0648843544 3.7313933 1103.316
+193155.0648844587 3.7314327 1103.3555
+193156.064884563 3.7314723 1103.2963
+193157.0648846673 3.7315116 1103.4542
+193158.0648847716 3.7314327 1103.3357
+193159.0648848759 3.7313933 1103.3555
+193160.0648849802 3.7315903 1103.316
+193161.0648850845 3.7315116 1103.316
+193162.0648851888 3.7315509 1103.2567
+193163.0648852931 3.7316296 1103.3555
+193164.0648853974 3.7316689 1103.2369
+193165.0648855018 3.7316296 1103.2963
+193166.0648856061 3.7316296 1103.2765
+193167.0648857104 3.7315903 1103.3752
+193168.0648858147 3.7316689 1103.316
+193169.064885919 3.7315509 1103.3949
+193170.0648860233 3.7316689 1103.3949
+193171.0648861276 3.7316296 1103.3752
+193172.0648862319 3.7316296 1103.316
+193173.0648863362 3.7317872 1103.3949
+193174.0648864405 3.7315903 1103.3357
+193175.0648865448 3.7316296 1103.3555
+193176.0648866491 3.7316689 1103.3357
+193177.0648867534 3.7316689 1103.3555
+193178.0648868578 3.7317083 1103.3555
+193179.0648869621 3.7318659 1103.3357
+193180.0648870664 3.7317476 1103.2369
+193181.0648871707 3.7317476 1103.2963
+193182.064887275 3.7317083 1103.3949
+193183.0648873793 3.7317872 1103.4147
+193184.0648874836 3.7317872 1103.4344
+193185.0648875879 3.7318265 1103.316
+193186.0648876922 3.7317476 1103.2567
+193187.0648877965 3.7318265 1103.316
+193188.0648879008 3.7319052 1103.316
+193189.0648880051 3.7318659 1103.3949
+193190.0648881095 3.7318265 1103.3555
+193191.0648882138 3.7318659 1103.4344
+193192.0648883181 3.7318659 1103.3555
+193193.0648884224 3.7319446 1103.4344
+193194.0648885267 3.7319446 1103.3752
+193195.064888631 3.7321022 1103.4147
+193196.0648887353 3.7319446 1103.3555
+193197.0648888396 3.7319052 1103.316
+193198.0648889439 3.7319446 1103.4147
+193199.0648890482 3.7318659 1103.316
+193200.0648891525 3.7320232 1103.2963
+193201.0648892568 3.7318659 1103.4147
+193202.0648893612 3.7319052 1103.2963
+193203.0648894655 3.7320628 1103.4344
+193204.0648895698 3.7319446 1103.2765
+193205.0648896741 3.7320232 1103.3357
+193206.0648897784 3.7320232 1103.2567
+193207.0648898827 3.7320232 1103.3357
+193208.064889987 3.7320628 1103.316
+193209.0648900913 3.7320628 1103.2172
+193210.0648901956 3.7320628 1103.4147
+193211.0648902999 3.7321808 1103.3357
+193212.0648904042 3.7321808 1103.3752
+193213.0648905085 3.7321808 1103.4344
+193214.0648906128 3.7321415 1103.3357
+193215.0648907172 3.7320628 1103.3357
+193216.0648908215 3.7321808 1103.4147
+193217.0648909258 3.7322202 1103.3357
+193218.0648910301 3.7321415 1103.3555
+193219.0648911344 3.7322989 1103.3752
+193220.0648912387 3.7321415 1103.316
+193221.064891343 3.7322595 1103.3357
+193222.0648914473 3.7322202 1103.3555
+193223.0648915516 3.7321415 1103.3555
+193224.0648916559 3.7322595 1103.3752
+193225.0648917602 3.7322202 1103.3555
+193226.0648918645 3.7321808 1103.3752
+193227.0648919689 3.7323778 1103.3357
+193228.0648920732 3.7321808 1103.3357
+193229.0648921775 3.7322595 1103.4542
+193230.0648922818 3.7323382 1103.316
+193231.0648923861 3.7322202 1103.3949
+193232.0648924904 3.7324171 1103.3752
+193233.0648925947 3.7323382 1103.3949
+193234.064892699 3.7323778 1103.3752
+193235.0648928033 3.7322989 1103.2963
+193236.0648929076 3.7322989 1103.2567
+193237.0648930119 3.7324564 1103.3949
+193238.0648931162 3.7324564 1103.3555
+193239.0648932206 3.7323778 1103.4542
+193240.0648933249 3.7324171 1103.3555
+193241.0648934292 3.7324564 1103.4147
+193242.0648935335 3.7324171 1103.3555
+193243.0648936378 3.7324958 1103.2765
+193244.0648937421 3.7325351 1103.3555
+193245.0648938464 3.7324564 1103.3752
+193246.0648939507 3.7324564 1103.3357
+193247.064894055 3.7323382 1103.2963
+193248.0648941593 3.7324564 1103.2963
+193249.0648942636 3.7325351 1103.2765
+193250.0648943679 3.7325745 1103.3555
+193251.0648944722 3.7325351 1103.4344
+193252.0648945766 3.7325351 1103.316
+193253.0648946809 3.7325745 1103.3949
+193254.0648947852 3.7325351 1103.2963
+193255.0648948895 3.7325351 1103.3752
+193256.0648949938 3.7325351 1103.4344
+193257.0648950981 3.7326531 1103.2765
+193258.0648952024 3.7326531 1103.2963
+193259.0648953067 3.7327714 1103.3357
+193260.064895411 3.7326531 1103.3357
+193261.0648955153 3.7325745 1103.3357
+193262.0648956196 3.7325745 1103.2963
+193263.0648957239 3.7326927 1103.3357
+193264.0648958283 3.7326531 1103.2963
+193265.0648959326 3.7326927 1103.3752
+193266.0648960369 3.7326531 1103.3357
+193267.0648961412 3.7327714 1103.3555
+193268.0648962455 3.7326927 1103.3555
+193269.0648963498 3.7327714 1103.3555
+193270.0648964541 3.7326927 1103.316
+193271.0648965584 3.7327714 1103.3752
+193272.0648966627 3.7327321 1103.3949
+193273.064896767 3.7328107 1103.3555
+193274.0648968713 3.7329288 1103.4938
+193275.0648969756 3.7327714 1103.3555
+193276.06489708 3.7327714 1103.4344
+193277.0648971843 3.7328107 1103.3752
+193278.0648972886 3.7328894 1103.4147
+193279.0648973929 3.7328894 1103.3949
+193280.0648974972 3.7328501 1103.4147
+193281.0648976015 3.7328894 1103.3555
+193282.0648977058 3.7328107 1103.3555
+193283.0648978101 3.7328894 1103.3357
+193284.0648979144 3.7328501 1103.2963
+193285.0648980187 3.7328501 1103.3357
+193286.064898123 3.7328894 1103.3357
+193287.0648982273 3.7328501 1103.3752
+193288.0648983317 3.7329288 1103.3949
+193289.064898436 3.733047 1103.3752
+193290.0648985403 3.7330077 1103.316
+193291.0648986446 3.7330863 1103.3357
+193292.0648987489 3.733047 1103.3555
+193293.0648988532 3.7330077 1103.3357
+193294.0648989575 3.7330077 1103.2765
+193295.0648990618 3.7330077 1103.3752
+193296.0648991661 3.733047 1103.2963
+193297.0648992704 3.733047 1103.3555
+193298.0648993747 3.733165 1103.3949
+193299.064899479 3.7331257 1103.4147
+193300.0648995833 3.7331257 1103.316
+193301.0648996877 3.733047 1103.3357
+193302.064899792 3.7332044 1103.316
+193303.0648998963 3.733165 1103.3752
+193304.0649000006 3.7331257 1103.316
+193305.0649001049 3.7331257 1103.3357
+193306.0649002092 3.7332437 1103.3357
+193307.0649003135 3.733165 1103.3752
+193308.0649004178 3.7332437 1103.3752
+193309.0649005221 3.733283 1103.2765
+193310.0649006264 3.7332044 1103.3555
+193311.0649007307 3.7332437 1103.3752
+193312.064900835 3.733165 1103.3949
+193313.0649009394 3.7332044 1103.3752
+193314.0649010437 3.7332437 1103.3555
+193315.064901148 3.733283 1103.4147
+193316.0649012523 3.733283 1103.2963
+193317.0649013566 3.733283 1103.3752
+193318.0649014609 3.7333226 1103.3357
+193319.0649015652 3.7333226 1103.316
+193320.0649016695 3.7333226 1103.3752
+193321.0649017738 3.7333226 1103.3752
+193322.0649018781 3.7332437 1103.3555
+193323.0649019824 3.733362 1103.3357
+193324.0649020867 3.7334013 1103.316
+193325.0649021911 3.733362 1103.3949
+193326.0649022954 3.733362 1103.316
+193327.0649023997 3.7334013 1103.2963
+193328.064902504 3.7334013 1103.316
+193329.0649026083 3.73348 1103.2963
+193330.0649027126 3.7335193 1103.3752
+193331.0649028169 3.7335193 1103.3555
+193332.0649029212 3.73348 1103.4344
+193333.0649030255 3.7335587 1103.3752
+193334.0649031298 3.7334013 1103.316
+193335.0649032341 3.7335193 1103.3555
+193336.0649033384 3.7335193 1103.2963
+193337.0649034427 3.7335193 1103.2963
+193338.0649035471 3.7335193 1103.316
+193339.0649036514 3.73348 1103.3752
+193340.0649037557 3.7335587 1103.3949
+193341.06490386 3.7335193 1103.316
+193342.0649039643 3.7335193 1103.2369
+193343.0649040686 3.7335587 1103.3555
+193344.0649041729 3.733598 1103.2963
+193345.0649042772 3.733598 1103.316
+193346.0649043815 3.733598 1103.3555
+193347.0649044858 3.7336769 1103.2765
+193348.0649045901 3.7337162 1103.316
+193349.0649046944 3.7336376 1103.3949
+193350.0649047988 3.7337162 1103.3357
+193351.0649049031 3.7336769 1103.3555
+193352.0649050074 3.733598 1103.3357
+193353.0649051117 3.7337162 1103.4147
+193354.064905216 3.7336769 1103.3949
+193355.0649053203 3.7336769 1103.2963
+193356.0649054246 3.7337949 1103.3949
+193357.0649055289 3.7337162 1103.3949
+193358.0649056332 3.7337556 1103.2963
+193359.0649057375 3.7337162 1103.3357
+193360.0649058418 3.7337949 1103.3555
+193361.0649059461 3.7337162 1103.3357
+193362.0649060505 3.7337556 1103.3752
+193363.0649061548 3.7337949 1103.3357
+193364.0649062591 3.7338343 1103.316
+193365.0649063634 3.7338343 1103.4344
+193366.0649064677 3.7338736 1103.316
+193367.064906572 3.7338343 1103.2765
+193368.0649066763 3.7339132 1103.3949
+193369.0649067806 3.7338736 1103.2172
+193370.0649068849 3.7339525 1103.3555
+193371.0649069892 3.7338343 1103.3752
+193372.0649070935 3.7339919 1103.4147
+193373.0649071978 3.7339919 1103.316
+193374.0649073021 3.7339525 1103.4147
+193375.0649074065 3.7339525 1103.2765
+193376.0649075108 3.7339525 1103.3752
+193377.0649076151 3.7340312 1103.3555
+193378.0649077194 3.7338736 1103.3357
+193379.0649078237 3.7339919 1103.316
+193380.064907928 3.7340312 1103.3752
+193381.0649080323 3.7340705 1103.3949
+193382.0649081366 3.7340312 1103.2963
+193383.0649082409 3.7339525 1103.3949
+193384.0649083452 3.7341492 1103.3752
+193385.0649084495 3.7341099 1103.4147
+193386.0649085538 3.7341099 1103.3357
+193387.0649086582 3.7341099 1103.3949
+193388.0649087625 3.7341099 1103.3555
+193389.0649088668 3.7340705 1103.316
+193390.0649089711 3.7341492 1103.3357
+193391.0649090754 3.7340312 1103.3949
+193392.0649091797 3.7341886 1103.2963
+193393.064909284 3.7341492 1103.3752
+193394.0649093883 3.7342281 1103.2963
+193395.0649094926 3.7341886 1103.3357
+193396.0649095969 3.7341886 1103.3949
+193397.0649097012 3.7341886 1103.3949
+193398.0649098055 3.7342281 1103.2963
+193399.0649099099 3.7342675 1103.3555
+193400.0649100142 3.7341886 1103.3752
+193401.0649101185 3.7341886 1103.2369
+193402.0649102228 3.7342675 1103.2963
+193403.0649103271 3.7342281 1103.3752
+193404.0649104314 3.7342675 1103.3949
+193405.0649105357 3.7342281 1103.3357
+193406.06491064 3.7342675 1103.3357
+193407.0649107443 3.7343462 1103.3555
+193408.0649108486 3.7343068 1103.3357
+193409.0649109529 3.7343462 1103.3555
+193410.0649110572 3.7343462 1103.2963
+193411.0649111615 3.7343462 1103.3752
+193412.0649112659 3.7344248 1103.3357
+193413.0649113702 3.7344642 1103.3752
+193414.0649114745 3.7343855 1103.3357
+193415.0649115788 3.7343068 1103.3555
+193416.0649116831 3.7344248 1103.3555
+193417.0649117874 3.7343462 1103.2369
+193418.0649118917 3.7343855 1103.3357
+193419.064911996 3.7344248 1103.3752
+193420.0649121003 3.7345035 1103.3357
+193421.0649122046 3.7344248 1103.3949
+193422.0649123089 3.7345035 1103.3555
+193423.0649124132 3.7345035 1103.3555
+193424.0649125176 3.7345431 1103.3752
+193425.0649126219 3.7344248 1103.4344
+193426.0649127262 3.7345035 1103.3949
+193427.0649128305 3.7345431 1103.2963
+193428.0649129348 3.7345824 1103.3357
+193429.0649130391 3.7345824 1103.3357
+193430.0649131434 3.7345824 1103.3752
+193431.0649132477 3.7344642 1103.2963
+193432.064913352 3.7345824 1103.3949
+193433.0649134563 3.7345431 1103.2765
+193434.0649135606 3.7346218 1103.316
+193435.0649136649 3.7346218 1103.2963
+193436.0649137693 3.7347004 1103.2567
+193437.0649138736 3.7347004 1103.2172
+193438.0649139779 3.7346611 1103.3555
+193439.0649140822 3.7346218 1103.4344
+193440.0649141865 3.7347398 1103.4147
+193441.0649142908 3.7347398 1103.3357
+193442.0649143951 3.7347004 1103.3555
+193443.0649144994 3.7346218 1103.3555
+193444.0649146037 3.7347398 1103.2963
+193445.064914708 3.7347398 1103.3949
+193446.0649148123 3.734858 1103.2963
+193447.0649149166 3.7347398 1103.316
+193448.064915021 3.7347398 1103.2963
+193449.0649151253 3.734858 1103.3752
+193450.0649152296 3.7348185 1103.3555
+193451.0649153339 3.734858 1103.3555
+193452.0649154382 3.7348185 1103.3555
+193453.0649155425 3.7348185 1103.3949
+193454.0649156468 3.7347398 1103.4344
+193455.0649157511 3.7348185 1103.3949
+193456.0649158554 3.7348974 1103.316
+193457.0649159597 3.7348185 1103.4147
+193458.064916064 3.7349367 1103.3949
+193459.0649161683 3.7349367 1103.4344
+193460.0649162726 3.7348974 1103.2765
+193461.064916377 3.7349367 1103.3949
+193462.0649164813 3.7349761 1103.3752
+193463.0649165856 3.7348974 1103.3357
+193464.0649166899 3.7348974 1103.2963
+193465.0649167942 3.7349761 1103.3949
+193466.0649168985 3.7349367 1103.3555
+193467.0649170028 3.7349761 1103.3357
+193468.0649171071 3.7350154 1103.316
+193469.0649172114 3.7350547 1103.3357
+193470.0649173157 3.7349367 1103.3555
+193471.06491742 3.7351334 1103.3949
+193472.0649175243 3.7350154 1103.4344
+193473.0649176287 3.7349761 1103.2567
+193474.064917733 3.7351334 1103.3357
+193475.0649178373 3.7351334 1103.3357
+193476.0649179416 3.7351334 1103.316
+193477.0649180459 3.7350547 1103.4147
+193478.0649181502 3.7351334 1103.3357
+193479.0649182545 3.735173 1103.4147
+193480.0649183588 3.7350941 1103.2369
+193481.0649184631 3.7352123 1103.316
+193482.0649185674 3.735173 1103.316
+193483.0649186717 3.7351334 1103.3357
+193484.064918776 3.7352123 1103.316
+193485.0649188804 3.735173 1103.2963
+193486.0649189847 3.735173 1103.2567
+193487.064919089 3.7351334 1103.316
+193488.0649191933 3.7351334 1103.4147
+193489.0649192976 3.7352123 1103.3949
+193490.0649194019 3.7352517 1103.3555
+193491.0649195062 3.7352123 1103.3555
+193492.0649196105 3.7352123 1103.3555
+193493.0649197148 3.735291 1103.316
+193494.0649198191 3.735291 1103.3357
+193495.0649199234 3.735291 1103.3752
+193496.0649200277 3.7353303 1103.316
+193497.064920132 3.735409 1103.3357
+193498.0649202364 3.7353303 1103.2765
+193499.0649203407 3.7353697 1103.3357
+193500.064920445 3.7353697 1103.316
+193501.0649205493 3.7354879 1103.3949
+193502.0649206536 3.735409 1103.3555
+193503.0649207579 3.7353303 1103.2963
+193504.0649208622 3.7353697 1103.4344
+193505.0649209665 3.7354879 1103.4147
+193506.0649210708 3.735409 1103.3555
+193507.0649211751 3.735409 1103.3752
+193508.0649212794 3.7354484 1103.3949
+193509.0649213837 3.7354484 1103.3555
+193510.0649214881 3.7354879 1103.3357
+193511.0649215924 3.7355273 1103.3752
+193512.0649216967 3.735409 1103.2963
+193513.064921801 3.7354879 1103.3949
+193514.0649219053 3.7354879 1103.2963
+193515.0649220096 3.7355666 1103.3555
+193516.0649221139 3.7354879 1103.316
+193517.0649222182 3.7355666 1103.2567
+193518.0649223225 3.7355273 1103.4147
+193519.0649224268 3.7356453 1103.3357
+193520.0649225311 3.7356453 1103.3357
+193521.0649226354 3.7354879 1103.2567
+193522.0649227398 3.735606 1103.3357
+193523.0649228441 3.735606 1103.316
+193524.0649229484 3.7356453 1103.3752
+193525.0649230527 3.7356453 1103.316
+193526.064923157 3.735606 1103.3949
+193527.0649232613 3.735724 1103.3357
+193528.0649233656 3.7356453 1103.4147
+193529.0649234699 3.735724 1103.4344
+193530.0649235742 3.735724 1103.316
+193531.0649236785 3.7356453 1103.2963
+193532.0649237828 3.7356846 1103.3949
+193533.0649238871 3.7357635 1103.3357
+193534.0649239914 3.7357635 1103.3357
+193535.0649240958 3.735724 1103.316
+193536.0649242001 3.735724 1103.3752
+193537.0649243044 3.7358029 1103.2963
+193538.0649244087 3.7358029 1103.4147
+193539.064924513 3.7358422 1103.2963
+193540.0649246173 3.7356846 1103.3357
+193541.0649247216 3.7358422 1103.3555
+193542.0649248259 3.7358422 1103.3357
+193543.0649249302 3.7358029 1103.4147
+193544.0649250345 3.7357635 1103.316
+193545.0649251388 3.7358422 1103.3555
+193546.0649252431 3.7358816 1103.3949
+193547.0649253475 3.7358816 1103.3555
+193548.0649254518 3.7358029 1103.2963
+193549.0649255561 3.7359209 1103.3752
+193550.0649256604 3.7358816 1103.3357
+193551.0649257647 3.7359209 1103.3752
+193552.064925869 3.7359996 1103.4147
+193553.0649259733 3.7359209 1103.3555
+193554.0649260776 3.7359209 1103.4344
+193555.0649261819 3.7360389 1103.4147
+193556.0649262862 3.7359209 1103.3752
+193557.0649263905 3.7360389 1103.3555
+193558.0649264948 3.7360389 1103.2567
+193559.0649265992 3.7360389 1103.2963
+193560.0649267035 3.7360389 1103.2765
+193561.0649268078 3.7360389 1103.2963
+193562.0649269121 3.7360389 1103.3555
+193563.0649270164 3.7361572 1103.2963
+193564.0649271207 3.7361178 1103.4344
+193565.064927225 3.7360389 1103.316
+193566.0649273293 3.7359602 1103.3752
+193567.0649274336 3.7361572 1103.3555
+193568.0649275379 3.7361178 1103.2765
+193569.0649276422 3.7361572 1103.3752
+193570.0649277465 3.7361572 1103.3949
+193571.0649278509 3.7361572 1103.3357
+193572.0649279552 3.7361572 1103.316
+193573.0649280595 3.7361178 1103.3555
+193574.0649281638 3.7361572 1103.3357
+193575.0649282681 3.7362752 1103.4147
+193576.0649283724 3.7361572 1103.3555
+193577.0649284767 3.7362752 1103.316
+193578.064928581 3.7361178 1103.3357
+193579.0649286853 3.7361572 1103.3555
+193580.0649287896 3.7362359 1103.316
+193581.0649288939 3.7363145 1103.4344
+193582.0649289982 3.7362359 1103.3949
+193583.0649291025 3.7362752 1103.3357
+193584.0649292069 3.7363539 1103.316
+193585.0649293112 3.7363145 1103.3752
+193586.0649294155 3.7363145 1103.3357
+193587.0649295198 3.7362359 1103.2963
+193588.0649296241 3.7363145 1103.3357
+193589.0649297284 3.7363935 1103.316
+193590.0649298327 3.7363539 1103.2963
+193591.064929937 3.7364328 1103.3357
+193592.0649300413 3.7361965 1103.2765
+193593.0649301456 3.7364328 1103.3949
+193594.0649302499 3.7364328 1103.3949
+193595.0649303542 3.7363935 1103.316
+193596.0649304586 3.7364328 1103.3555
+193597.0649305629 3.7364721 1103.2765
+193598.0649306672 3.7365508 1103.3752
+193599.0649307715 3.7366295 1103.2963
+193600.0649308758 3.7365115 1103.2369
+193601.0649309801 3.7365115 1103.316
+193602.0649310844 3.7365508 1103.3752
+193603.0649311887 3.7364721 1103.3357
+193604.064931293 3.7365115 1103.4344
+193605.0649313973 3.7365115 1103.316
+193606.0649315016 3.7365901 1103.3752
+193607.0649316059 3.7365508 1103.3555
+193608.0649317103 3.7364328 1103.4542
+193609.0649318146 3.7364328 1103.3949
+193610.0649319189 3.7366295 1103.3752
+193611.0649320232 3.7365508 1103.3949
+193612.0649321275 3.7365508 1103.3949
+193613.0649322318 3.7366295 1103.2963
+193614.0649323361 3.7366295 1103.3949
+193615.0649324404 3.7366295 1103.3752
+193616.0649325447 3.7365901 1103.3555
+193617.064932649 3.7366295 1103.4147
+193618.0649327533 3.7366688 1103.3949
+193619.0649328576 3.7367084 1103.316
+193620.0649329619 3.7366295 1103.3949
+193621.0649330663 3.7367084 1103.3555
+193622.0649331706 3.7367871 1103.316
+193623.0649332749 3.7368658 1103.3752
+193624.0649333792 3.7367871 1103.3357
+193625.0649334835 3.7367084 1103.3357
+193626.0649335878 3.7367084 1103.3949
+193627.0649336921 3.7368264 1103.2963
+193628.0649337964 3.7367477 1103.3357
+193629.0649339007 3.7368264 1103.2963
+193630.064934005 3.7368658 1103.3752
+193631.0649341093 3.7368264 1103.3357
+193632.0649342136 3.7368264 1103.316
+193633.064934318 3.7368658 1103.3949
+193634.0649344223 3.7369051 1103.3752
+193635.0649345266 3.7368658 1103.316
+193636.0649346309 3.7368264 1103.3357
+193637.0649347352 3.7368264 1103.3949
+193638.0649348395 3.7370234 1103.3357
+193639.0649349438 3.7369838 1103.4344
+193640.0649350481 3.7369838 1103.3555
+193641.0649351524 3.7369444 1103.3555
+193642.0649352567 3.7369444 1103.3949
+193643.064935361 3.7369444 1103.3555
+193644.0649354653 3.7369444 1103.3357
+193645.0649355697 3.7370627 1103.3949
+193646.064935674 3.7369444 1103.4147
+193647.0649357783 3.7369838 1103.3357
+193648.0649358826 3.7370234 1103.3752
+193649.0649359869 3.7370234 1103.3555
+193650.0649360912 3.7369838 1103.3949
+193651.0649361955 3.7371414 1103.316
+193652.0649362998 3.7371807 1103.2765
+193653.0649364041 3.7370234 1103.3357
+193654.0649365084 3.7370234 1103.3357
+193655.0649366127 3.7370627 1103.4542
+193656.064936717 3.737102 1103.316
+193657.0649368213 3.7371414 1103.3357
+193658.0649369257 3.737102 1103.2765
+193659.06493703 3.7371414 1103.2963
+193660.0649371343 3.7371414 1103.3949
+193661.0649372386 3.7372594 1103.316
+193662.0649373429 3.73722 1103.3555
+193663.0649374472 3.7371807 1103.2963
+193664.0649375515 3.73722 1103.3555
+193665.0649376558 3.73722 1103.316
+193666.0649377601 3.7373383 1103.3357
+193667.0649378644 3.7371807 1103.3555
+193668.0649379687 3.7372594 1103.316
+193669.064938073 3.7373776 1103.3752
+193670.0649381774 3.73722 1103.3555
+193671.0649382817 3.7372987 1103.3555
+193672.064938386 3.7373383 1103.3949
+193673.0649384903 3.7373776 1103.4344
+193674.0649385946 3.7372987 1103.3555
+193675.0649386989 3.7372987 1103.3752
+193676.0649388032 3.737417 1103.3357
+193677.0649389075 3.737417 1103.3752
+193678.0649390118 3.7373383 1103.2963
+193679.0649391161 3.737417 1103.3357
+193680.0649392204 3.7372987 1103.3357
+193681.0649393247 3.7373776 1103.3555
+193682.0649394291 3.737417 1103.3555
+193683.0649395334 3.737417 1103.3752
+193684.0649396377 3.737417 1103.4344
+193685.064939742 3.7373383 1103.2765
+193686.0649398463 3.7374957 1103.2963
+193687.0649399506 3.7374563 1103.3357
+193688.0649400549 3.7374563 1103.316
+193689.0649401592 3.7374957 1103.3357
+193690.0649402635 3.7375743 1103.3752
+193691.0649403678 3.7376139 1103.4147
+193692.0649404721 3.7375743 1103.316
+193693.0649405764 3.737535 1103.4147
+193694.0649406808 3.7375743 1103.2963
+193695.0649407851 3.7375743 1103.3555
+193696.0649408894 3.7376139 1103.4147
+193697.0649409937 3.737535 1103.2765
+193698.064941098 3.737535 1103.3752
+193699.0649412023 3.7375743 1103.3555
+193700.0649413066 3.7376533 1103.2172
+193701.0649414109 3.7376533 1103.3752
+193702.0649415152 3.7376139 1103.3752
+193703.0649416195 3.7375743 1103.3555
+193704.0649417238 3.7377319 1103.3752
+193705.0649418281 3.7377713 1103.316
+193706.0649419324 3.7377713 1103.3949
+193707.0649420368 3.7377713 1103.4147
+193708.0649421411 3.7377319 1103.3949
+193709.0649422454 3.7377713 1103.3752
+193710.0649423497 3.7376926 1103.4147
+193711.064942454 3.7378106 1103.3949
+193712.0649425583 3.7376926 1103.4147
+193713.0649426626 3.7377319 1103.3752
+193714.0649427669 3.7377713 1103.3949
+193715.0649428712 3.7377319 1103.3555
+193716.0649429755 3.7378106 1103.3752
+193717.0649430798 3.7378106 1103.3357
+193718.0649431841 3.73785 1103.2963
+193719.0649432885 3.73785 1103.3357
+193720.0649433928 3.7379289 1103.4147
+193721.0649434971 3.73785 1103.3357
+193722.0649436014 3.73785 1103.4147
+193723.0649437057 3.7378893 1103.2567
+193724.06494381 3.7378106 1103.4147
+193725.0649439143 3.7379682 1103.3949
+193726.0649440186 3.7379682 1103.2963
+193727.0649441229 3.7379682 1103.2765
+193728.0649442272 3.7378893 1103.3555
+193729.0649443315 3.7380075 1103.3949
+193730.0649444358 3.7379289 1103.3555
+193731.0649445402 3.7380469 1103.3752
+193732.0649446445 3.7379289 1103.2963
+193733.0649447488 3.7379289 1103.3555
+193734.0649448531 3.7379682 1103.316
+193735.0649449574 3.7379682 1103.2963
+193736.0649450617 3.7381256 1103.3949
+193737.064945166 3.7380075 1103.3357
+193738.0649452703 3.7381256 1103.3555
+193739.0649453746 3.7380862 1103.3752
+193740.0649454789 3.7381649 1103.316
+193741.0649455832 3.7380862 1103.3752
+193742.0649456875 3.7381256 1103.4344
+193743.0649457918 3.7382042 1103.3752
+193744.0649458962 3.7380469 1103.2963
+193745.0649460005 3.7381649 1103.3949
+193746.0649461048 3.7381649 1103.2963
+193747.0649462091 3.7382042 1103.4344
+193748.0649463134 3.7382832 1103.4344
+193749.0649464177 3.7382042 1103.3555
+193750.064946522 3.7381649 1103.4147
+193751.0649466263 3.7382832 1103.3949
+193752.0649467306 3.7381256 1103.316
+193753.0649468349 3.7382438 1103.3357
+193754.0649469392 3.7381649 1103.3949
+193755.0649470435 3.7383225 1103.2963
+193756.0649471479 3.7383225 1103.316
+193757.0649472522 3.7382832 1103.4344
+193758.0649473565 3.7382832 1103.3752
+193759.0649474608 3.7382832 1103.3555
+193760.0649475651 3.7383618 1103.3555
+193761.0649476694 3.7382832 1103.4542
+193762.0649477737 3.7382438 1103.2963
+193763.064947878 3.7384012 1103.4147
+193764.0649479823 3.7383618 1103.2963
+193765.0649480866 3.7382832 1103.3752
+193766.0649481909 3.7383225 1103.2765
+193767.0649482952 3.7383225 1103.4147
+193768.0649483996 3.7384405 1103.3357
+193769.0649485039 3.7384012 1103.3949
+193770.0649486082 3.7385192 1103.2567
+193771.0649487125 3.7384405 1103.3357
+193772.0649488168 3.7384799 1103.3357
+193773.0649489211 3.7384405 1103.4542
+193774.0649490254 3.7384799 1103.316
+193775.0649491297 3.7385192 1103.2963
+193776.064949234 3.7385192 1103.3949
+193777.0649493383 3.7385192 1103.4344
+193778.0649494426 3.7386374 1103.2765
+193779.0649495469 3.7385192 1103.4344
+193780.0649496512 3.7385981 1103.2765
+193781.0649497556 3.7384799 1103.2963
+193782.0649498599 3.7385192 1103.3555
+193783.0649499642 3.7385981 1103.2765
+193784.0649500685 3.7386768 1103.3949
+193785.0649501728 3.7386374 1103.3949
+193786.0649502771 3.7385981 1103.2765
+193787.0649503814 3.7385588 1103.316
+193788.0649504857 3.7386374 1103.3555
+193789.06495059 3.7386768 1103.2765
+193790.0649506943 3.7385588 1103.2567
+193791.0649507986 3.7386768 1103.3357
+193792.0649509029 3.7385981 1103.2963
+193793.0649510073 3.7387161 1103.2963
+193794.0649511116 3.7387161 1103.2963
+193795.0649512159 3.7387161 1103.316
+193796.0649513202 3.7387555 1103.4147
+193797.0649514245 3.7387555 1103.316
+193798.0649515288 3.7387555 1103.2963
+193799.0649516331 3.7388341 1103.3555
+193800.0649517374 3.7386768 1103.2172
+193801.0649518417 3.7387948 1103.3555
+193802.064951946 3.7387948 1103.3555
+193803.0649520503 3.7387161 1103.2963
+193804.0649521546 3.7387948 1103.2765
+193805.064952259 3.7388341 1103.3949
+193806.0649523633 3.7389131 1103.3357
+193807.0649524676 3.7388737 1103.4147
+193808.0649525719 3.7388737 1103.3357
+193809.0649526762 3.7388341 1103.3949
+193810.0649527805 3.7389917 1103.316
+193811.0649528848 3.7388341 1103.4147
+193812.0649529891 3.7389524 1103.3752
+193813.0649530934 3.7388341 1103.316
+193814.0649531977 3.7389917 1103.2963
+193815.064953302 3.7389917 1103.2963
+193816.0649534063 3.7388737 1103.4344
+193817.0649535107 3.7390311 1103.3752
+193818.064953615 3.7389524 1103.3357
+193819.0649537193 3.7389917 1103.2963
+193820.0649538236 3.7390311 1103.4147
+193821.0649539279 3.7389917 1103.3357
+193822.0649540322 3.7390704 1103.3357
+193823.0649541365 3.7390311 1103.3752
+193824.0649542408 3.7389917 1103.4147
+193825.0649543451 3.7390311 1103.3555
+193826.0649544494 3.7391491 1103.2963
+193827.0649545537 3.7390704 1103.4147
+193828.064954658 3.7391491 1103.3949
+193829.0649547623 3.7391491 1103.3555
+193830.0649548667 3.7390704 1103.3752
+193831.064954971 3.7390311 1103.2963
+193832.0649550753 3.7391887 1103.2765
+193833.0649551796 3.7391491 1103.316
+193834.0649552839 3.7390704 1103.4147
+193835.0649553882 3.7391098 1103.474
+193836.0649554925 3.7392673 1103.3357
+193837.0649555968 3.7391887 1103.2765
+193838.0649557011 3.739228 1103.2963
+193839.0649558054 3.7392673 1103.3357
+193840.0649559097 3.7391491 1103.3949
+193841.064956014 3.739228 1103.3752
+193842.0649561184 3.7392673 1103.3357
+193843.0649562227 3.7393854 1103.3949
+193844.064956327 3.7393854 1103.3357
+193845.0649564313 3.739346 1103.2567
+193846.0649565356 3.7393854 1103.3752
+193847.0649566399 3.7393067 1103.3357
+193848.0649567442 3.739346 1103.3357
+193849.0649568485 3.7393854 1103.3752
+193850.0649569528 3.7393854 1103.3949
+193851.0649570571 3.739346 1103.4147
+193852.0649571614 3.7392673 1103.316
+193853.0649572657 3.739346 1103.316
+193854.0649573701 3.7394643 1103.4344
+193855.0649574744 3.7394247 1103.3555
+193856.0649575787 3.7394247 1103.316
+193857.064957683 3.7395823 1103.3357
+193858.0649577873 3.7394247 1103.3357
+193859.0649578916 3.7394643 1103.3555
+193860.0649579959 3.7394247 1103.2963
+193861.0649581002 3.739661 1103.3555
+193862.0649582045 3.7395036 1103.3555
+193863.0649583088 3.739543 1103.3752
+193864.0649584131 3.739543 1103.2963
+193865.0649585174 3.7396216 1103.2765
+193866.0649586217 3.7395823 1103.2963
+193867.0649587261 3.7396216 1103.3555
+193868.0649588304 3.739543 1103.4147
+193869.0649589347 3.7395823 1103.316
+193870.064959039 3.7396216 1103.3949
+193871.0649591433 3.7395823 1103.2963
+193872.0649592476 3.739661 1103.2963
+193873.0649593519 3.7396216 1103.316
+193874.0649594562 3.739661 1103.2369
+193875.0649595605 3.7397397 1103.316
+193876.0649596648 3.7397003 1103.4542
+193877.0649597691 3.7397397 1103.3555
+193878.0649598734 3.7397003 1103.3555
+193879.0649599778 3.7398186 1103.4147
+193880.0649600821 3.7397003 1103.3357
+193881.0649601864 3.7397003 1103.3949
+193882.0649602907 3.7397792 1103.3555
+193883.064960395 3.7397397 1103.3357
+193884.0649604993 3.7397003 1103.3357
+193885.0649606036 3.7397792 1103.3555
+193886.0649607079 3.7398186 1103.4344
+193887.0649608122 3.7398579 1103.3752
+193888.0649609165 3.7398973 1103.3752
+193889.0649610208 3.7398186 1103.3555
+193890.0649611251 3.7398579 1103.316
+193891.0649612295 3.7398186 1103.3555
+193892.0649613338 3.7398186 1103.3752
+193893.0649614381 3.7398973 1103.2963
+193894.0649615424 3.7398186 1103.316
+193895.0649616467 3.7398973 1103.3752
+193896.064961751 3.7398186 1103.2963
+193897.0649618553 3.7398579 1103.3752
+193898.0649619596 3.7399366 1103.3752
+193899.0649620639 3.7399759 1103.4147
+193900.0649621682 3.7399366 1103.3752
+193901.0649622725 3.7399366 1103.3752
+193902.0649623768 3.7400153 1103.316
+193903.0649624811 3.7399759 1103.3357
+193904.0649625855 3.7399759 1103.3752
+193905.0649626898 3.7399759 1103.4344
+193906.0649627941 3.7399759 1103.2963
+193907.0649628984 3.7400153 1103.4344
+193908.0649630027 3.7400153 1103.3555
+193909.064963107 3.7400546 1103.3752
+193910.0649632113 3.7400546 1103.3752
+193911.0649633156 3.7400942 1103.2963
+193912.0649634199 3.7401729 1103.2765
+193913.0649635242 3.7401335 1103.3357
+193914.0649636285 3.7400942 1103.474
+193915.0649637328 3.7400942 1103.3357
+193916.0649638372 3.7400546 1103.2963
+193917.0649639415 3.7402909 1103.4344
+193918.0649640458 3.7402515 1103.316
+193919.0649641501 3.7402122 1103.3357
+193920.0649642544 3.7402122 1103.3357
+193921.0649643587 3.7402909 1103.3555
+193922.064964463 3.7401335 1103.474
+193923.0649645673 3.7402909 1103.3555
+193924.0649646716 3.7401729 1103.4344
+193925.0649647759 3.7401729 1103.3357
+193926.0649648802 3.7401729 1103.3752
+193927.0649649845 3.7403302 1103.3752
+193928.0649650889 3.7403302 1103.3357
+193929.0649651932 3.7403302 1103.2765
+193930.0649652975 3.7402515 1103.3949
+193931.0649654018 3.7402909 1103.3949
+193932.0649655061 3.7403696 1103.3357
+193933.0649656104 3.7403696 1103.2765
+193934.0649657147 3.7404091 1103.2963
+193935.064965819 3.7403696 1103.3555
+193936.0649659233 3.7404878 1103.2765
+193937.0649660276 3.7403696 1103.3555
+193938.0649661319 3.7403696 1103.3357
+193939.0649662362 3.7404878 1103.2963
+193940.0649663405 3.7404091 1103.316
+193941.0649664449 3.7403696 1103.3357
+193942.0649665492 3.7404485 1103.3949
+193943.0649666535 3.7403696 1103.3555
+193944.0649667578 3.7404878 1103.4542
+193945.0649668621 3.7404878 1103.3752
+193946.0649669664 3.7405665 1103.316
+193947.0649670707 3.7404485 1103.2963
+193948.064967175 3.7405272 1103.3752
+193949.0649672793 3.7405272 1103.3949
+193950.0649673836 3.7405665 1103.3357
+193951.0649674879 3.7406452 1103.316
+193952.0649675922 3.7406058 1103.474
+193953.0649676966 3.7406452 1103.3555
+193954.0649678009 3.7406452 1103.3555
+193955.0649679052 3.7406452 1103.4147
+193956.0649680095 3.7407241 1103.4147
+193957.0649681138 3.7406452 1103.4344
+193958.0649682181 3.7407634 1103.3555
+193959.0649683224 3.7406845 1103.3357
+193960.0649684267 3.7405665 1103.4344
+193961.064968531 3.7407241 1103.3752
+193962.0649686353 3.7407634 1103.3357
+193963.0649687396 3.7406452 1103.3555
+193964.0649688439 3.7408028 1103.3357
+193965.0649689483 3.7408028 1103.3555
+193966.0649690526 3.7407634 1103.3357
+193967.0649691569 3.7407634 1103.2765
+193968.0649692612 3.7407634 1103.4147
+193969.0649693655 3.7408421 1103.2963
+193970.0649694698 3.7407634 1103.4147
+193971.0649695741 3.7408028 1103.4147
+193972.0649696784 3.7408028 1103.316
+193973.0649697827 3.7408814 1103.2963
+193974.064969887 3.7408421 1103.316
+193975.0649699913 3.7408814 1103.3555
+193976.0649700956 3.7408814 1103.3752
+193977.0649702 3.7407241 1103.3752
+193978.0649703043 3.7409997 1103.3555
+193979.0649704086 3.7408814 1103.3752
+193980.0649705129 3.7409601 1103.2765
+193981.0649706172 3.7408421 1103.3752
+193982.0649707215 3.7409601 1103.316
+193983.0649708258 3.7409601 1103.4344
+193984.0649709301 3.7409208 1103.3949
+193985.0649710344 3.741039 1103.3949
+193986.0649711387 3.7409601 1103.3357
+193987.064971243 3.7409208 1103.316
+193988.0649713473 3.7409601 1103.316
+193989.0649714516 3.7409601 1103.3752
+193990.064971556 3.7409997 1103.4344
+193991.0649716603 3.7411177 1103.3752
+193992.0649717646 3.7409997 1103.3752
+193993.0649718689 3.7411177 1103.3555
+193994.0649719732 3.741039 1103.3949
+193995.0649720775 3.7411571 1103.316
+193996.0649721818 3.7409601 1103.2567
+193997.0649722861 3.7411571 1103.2765
+193998.0649723904 3.7411964 1103.3752
+193999.0649724947 3.7411964 1103.3949
+194000.064972599 3.7410784 1103.3357
+194001.0649727033 3.7411964 1103.4147
+194002.0649728077 3.7411177 1103.316
+194003.064972912 3.7411964 1103.3555
+194004.0649730163 3.7411177 1103.3555
+194005.0649731206 3.7411964 1103.3357
+194006.0649732249 3.7412357 1103.3357
+194007.0649733292 3.7411571 1103.3357
+194008.0649734335 3.7412751 1103.316
+194009.0649735378 3.7412357 1103.3949
+194010.0649736421 3.7412357 1103.3357
+194011.0649737464 3.7412357 1103.316
+194012.0649738507 3.7413146 1103.3949
+194013.064973955 3.7412357 1103.3357
+194014.0649740594 3.741354 1103.3752
+194015.0649741637 3.7413146 1103.3357
+194016.064974268 3.7413146 1103.2567
+194017.0649743723 3.7413146 1103.3949
+194018.0649744766 3.7413146 1103.3357
+194019.0649745809 3.7413933 1103.4344
+194020.0649746852 3.7412751 1103.4147
+194021.0649747895 3.741354 1103.3357
+194022.0649748938 3.7414327 1103.2567
+194023.0649749981 3.7414327 1103.2765
+194024.0649751024 3.7415113 1103.3949
+194025.0649752067 3.741472 1103.3357
+194026.064975311 3.7413933 1103.3949
+194027.0649754154 3.7414327 1103.3752
+194028.0649755197 3.741472 1103.3357
+194029.064975624 3.741472 1103.3752
+194030.0649757283 3.7414327 1103.2963
+194031.0649758326 3.741472 1103.2765
+194032.0649759369 3.7415113 1103.2963
+194033.0649760412 3.7415113 1103.3949
+194034.0649761455 3.7415113 1103.3555
+194035.0649762498 3.741472 1103.316
+194036.0649763541 3.74159 1103.316
+194037.0649764584 3.74159 1103.3555
+194038.0649765627 3.74159 1103.4344
+194039.0649766671 3.7416296 1103.4147
+194040.0649767714 3.7415507 1103.3357
+194041.0649768757 3.74159 1103.3752
+194042.06497698 3.74159 1103.3357
+194043.0649770843 3.7415507 1103.2765
+194044.0649771886 3.74159 1103.3555
+194045.0649772929 3.7416296 1103.2963
+194046.0649773972 3.7417083 1103.3752
+194047.0649775015 3.7416689 1103.3555
+194048.0649776058 3.7416689 1103.316
+194049.0649777101 3.7417476 1103.3752
+194050.0649778144 3.74159 1103.316
+194051.0649779188 3.7417476 1103.3357
+194052.0649780231 3.7417083 1103.3949
+194053.0649781274 3.7417476 1103.3357
+194054.0649782317 3.741787 1103.3949
+194055.064978336 3.741905 1103.4344
+194056.0649784403 3.741905 1103.3949
+194057.0649785446 3.741787 1103.3555
+194058.0649786489 3.741905 1103.2369
+194059.0649787532 3.741787 1103.3949
+194060.0649788575 3.7418263 1103.3752
+194061.0649789618 3.741905 1103.3752
+194062.0649790661 3.7418263 1103.3752
+194063.0649791704 3.7418656 1103.3357
+194064.0649792748 3.7418263 1103.2765
+194065.0649793791 3.7418656 1103.3357
+194066.0649794834 3.7420626 1103.3949
+194067.0649795877 3.7419839 1103.3752
+194068.064979692 3.741905 1103.4147
+194069.0649797963 3.7420232 1103.316
+194070.0649799006 3.7420626 1103.3949
+194071.0649800049 3.7419446 1103.3555
+194072.0649801092 3.7419446 1103.3949
+194073.0649802135 3.7421412 1103.3555
+194074.0649803178 3.7419446 1103.3555
+194075.0649804221 3.7420232 1103.3555
+194076.0649805265 3.7421019 1103.2963
+194077.0649806308 3.7421019 1103.3555
+194078.0649807351 3.7419839 1103.316
+194079.0649808394 3.7421019 1103.2963
+194080.0649809437 3.7421019 1103.3357
+194081.064981048 3.7420232 1103.3555
+194082.0649811523 3.7421019 1103.3357
+194083.0649812566 3.7421806 1103.3752
+194084.0649813609 3.7421019 1103.3357
+194085.0649814652 3.7422199 1103.3555
+194086.0649815695 3.7421806 1103.2963
+194087.0649816738 3.7422199 1103.2963
+194088.0649817782 3.7421806 1103.2765
+194089.0649818825 3.7421806 1103.3752
+194090.0649819868 3.7420626 1103.2765
+194091.0649820911 3.7422199 1103.2963
+194092.0649821954 3.7422199 1103.3555
+194093.0649822997 3.7422595 1103.2567
+194094.064982404 3.7422988 1103.4344
+194095.0649825083 3.7422199 1103.2369
+194096.0649826126 3.7423382 1103.3357
+194097.0649827169 3.7422988 1103.3555
+194098.0649828212 3.7422199 1103.316
+194099.0649829255 3.7423775 1103.3555
+194100.0649830299 3.7423775 1103.316
+194101.0649831342 3.7424169 1103.2765
+194102.0649832385 3.7424169 1103.3357
+194103.0649833428 3.7423382 1103.3555
+194104.0649834471 3.7422988 1103.3357
+194105.0649835514 3.7424169 1103.3555
+194106.0649836557 3.7423382 1103.3555
+194107.06498376 3.7423382 1103.3752
+194108.0649838643 3.7424955 1103.4344
+194109.0649839686 3.7423775 1103.4542
+194110.0649840729 3.7424169 1103.3357
+194111.0649841772 3.7424955 1103.316
+194112.0649842815 3.7424169 1103.3752
+194113.0649843859 3.7424955 1103.3752
+194114.0649844902 3.7424169 1103.3752
+194115.0649845945 3.7425349 1103.3752
+194116.0649846988 3.7424955 1103.3555
+194117.0649848031 3.7424562 1103.3555
+194118.0649849074 3.7425745 1103.3752
+194119.0649850117 3.7425349 1103.2765
+194120.064985116 3.7424562 1103.3357
+194121.0649852203 3.7426531 1103.2963
+194122.0649853246 3.7425349 1103.3555
+194123.0649854289 3.7426138 1103.3949
+194124.0649855332 3.7425745 1103.3357
+194125.0649856376 3.7426138 1103.3949
+194126.0649857419 3.7426925 1103.4344
+194127.0649858462 3.7426925 1103.3555
+194128.0649859505 3.7425745 1103.3555
+194129.0649860548 3.7426138 1103.316
+194130.0649861591 3.7426138 1103.3752
+194131.0649862634 3.7426138 1103.3357
+194132.0649863677 3.7427318 1103.3752
+194133.064986472 3.7427318 1103.3555
+194134.0649865763 3.7427711 1103.3949
+194135.0649866806 3.7427318 1103.3949
+194136.0649867849 3.7427711 1103.2765
+194137.0649868893 3.7426925 1103.3357
+194138.0649869936 3.7428105 1103.2963
+194139.0649870979 3.7426531 1103.4147
+194140.0649872022 3.7427318 1103.316
+194141.0649873065 3.7426925 1103.3949
+194142.0649874108 3.7428894 1103.2172
+194143.0649875151 3.7428105 1103.3555
+194144.0649876194 3.7428501 1103.316
+194145.0649877237 3.7428501 1103.3752
+194146.064987828 3.7428501 1103.3357
+194147.0649879323 3.7429287 1103.3357
+194148.0649880366 3.7428105 1103.3752
+194149.0649881409 3.7429681 1103.1975
+194150.0649882453 3.7429681 1103.316
+194151.0649883496 3.7429287 1103.3357
+194152.0649884539 3.7430074 1103.3752
+194153.0649885582 3.7428501 1103.2567
+194154.0649886625 3.7430074 1103.3357
+194155.0649887668 3.7430074 1103.3949
+194156.0649888711 3.7429287 1103.3555
+194157.0649889754 3.7430468 1103.3555
+194158.0649890797 3.7430074 1103.3555
+194159.064989184 3.7430468 1103.316
+194160.0649892883 3.7430861 1103.3555
+194161.0649893926 3.7430074 1103.316
+194162.064989497 3.7429681 1103.2963
+194163.0649896013 3.7430468 1103.3752
+194164.0649897056 3.7431254 1103.316
+194165.0649898099 3.7430074 1103.2963
+194166.0649899142 3.7430074 1103.316
+194167.0649900185 3.743165 1103.316
+194168.0649901228 3.7432044 1103.4344
+194169.0649902271 3.7432044 1103.2567
+194170.0649903314 3.7431254 1103.3752
+194171.0649904357 3.7432044 1103.3357
+194172.06499054 3.743165 1103.3949
+194173.0649906443 3.7432044 1103.3752
+194174.0649907487 3.743165 1103.3752
+194175.064990853 3.743165 1103.3555
+194176.0649909573 3.7433224 1103.3357
+194177.0649910616 3.7432437 1103.316
+194178.0649911659 3.7431254 1103.3357
+194179.0649912702 3.7432437 1103.4147
+194180.0649913745 3.7433224 1103.3752
+194181.0649914788 3.743283 1103.3357
+194182.0649915831 3.7433224 1103.4147
+194183.0649916874 3.743283 1103.3752
+194184.0649917917 3.7433617 1103.316
+194185.064991896 3.7432437 1103.316
+194186.0649920003 3.743283 1103.2963
+194187.0649921047 3.743283 1103.4147
+194188.064992209 3.7434011 1103.316
+194189.0649923133 3.7434011 1103.3752
+194190.0649924176 3.7433617 1103.3752
+194191.0649925219 3.7434011 1103.3357
+194192.0649926262 3.7434011 1103.3949
+194193.0649927305 3.74348 1103.316
+194194.0649928348 3.7434404 1103.3555
+194195.0649929391 3.74348 1103.2963
+194196.0649930434 3.74348 1103.3357
+194197.0649931477 3.74348 1103.3949
+194198.064993252 3.7435193 1103.3752
+194199.0649933564 3.7434011 1103.3752
+194200.0649934607 3.7435193 1103.2963
+194201.064993565 3.7435586 1103.316
+194202.0649936693 3.743598 1103.2567
+194203.0649937736 3.74348 1103.3555
+194204.0649938779 3.7435586 1103.4147
+194205.0649939822 3.74348 1103.3555
+194206.0649940865 3.743598 1103.316
+194207.0649941908 3.7436373 1103.316
+194208.0649942951 3.7436373 1103.3555
+194209.0649943994 3.7436767 1103.316
+194210.0649945037 3.743716 1103.3752
+194211.0649946081 3.7436373 1103.3949
+194212.0649947124 3.7436373 1103.3357
+194213.0649948167 3.7435193 1103.3949
+194214.064994921 3.7436767 1103.3555
+194215.0649950253 3.7437553 1103.3949
+194216.0649951296 3.7436373 1103.3357
+194217.0649952339 3.743598 1103.4344
+194218.0649953382 3.743716 1103.2567
+194219.0649954425 3.7436767 1103.3357
+194220.0649955468 3.7436767 1103.3752
+194221.0649956511 3.7436767 1103.3357
+194222.0649957554 3.7437553 1103.3555
+194223.0649958598 3.7437553 1103.3752
+194224.0649959641 3.7438343 1103.3357
+194225.0649960684 3.7436767 1103.3555
+194226.0649961727 3.7438736 1103.3949
+194227.064996277 3.7437949 1103.3357
+194228.0649963813 3.7438343 1103.3752
+194229.0649964856 3.7437553 1103.3752
+194230.0649965899 3.7439129 1103.2963
+194231.0649966942 3.7439523 1103.3752
+194232.0649967985 3.7438736 1103.3949
+194233.0649969028 3.7439129 1103.316
+194234.0649970071 3.7439129 1103.3752
+194235.0649971114 3.7439523 1103.4542
+194236.0649972158 3.7439523 1103.3752
+194237.0649973201 3.7439916 1103.316
+194238.0649974244 3.7438736 1103.3357
+194239.0649975287 3.7438736 1103.316
+194240.064997633 3.7439523 1103.3752
+194241.0649977373 3.7439129 1103.316
+194242.0649978416 3.7441099 1103.3555
+194243.0649979459 3.744031 1103.316
+194244.0649980502 3.7439523 1103.3949
+194245.0649981545 3.744031 1103.3949
+194246.0649982588 3.744031 1103.316
+194247.0649983631 3.7440703 1103.2963
+194248.0649984675 3.7439523 1103.316
+194249.0649985718 3.7440703 1103.316
+194250.0649986761 3.7441099 1103.3752
+194251.0649987804 3.7441492 1103.3357
+194252.0649988847 3.7441492 1103.3357
+194253.064998989 3.7441885 1103.316
+194254.0649990933 3.7441099 1103.316
+194255.0649991976 3.7441492 1103.3949
+194256.0649993019 3.7441099 1103.3752
+194257.0649994062 3.7442672 1103.2765
+194258.0649995105 3.7442672 1103.3752
+194259.0649996148 3.7442279 1103.3949
+194260.0649997192 3.7442279 1103.3949
+194261.0649998235 3.7442672 1103.316
+194262.0649999278 3.7441492 1103.316
+194263.0650000321 3.7442672 1103.4147
+194264.0650001364 3.7441885 1103.316
+194265.0650002407 3.7443066 1103.3357
+194266.065000345 3.7443852 1103.3949
+194267.0650004493 3.7443066 1103.3357
+194268.0650005536 3.7444248 1103.2963
+194269.0650006579 3.7444248 1103.3555
+194270.0650007622 3.7443852 1103.3357
+194271.0650008665 3.7443459 1103.3949
+194272.0650009708 3.7444248 1103.4344
+194273.0650010752 3.7443852 1103.3555
+194274.0650011795 3.7444248 1103.316
+194275.0650012838 3.7444248 1103.3357
+194276.0650013881 3.7443852 1103.3555
+194277.0650014924 3.7443852 1103.3357
+194278.0650015967 3.7444248 1103.2963
+194279.065001701 3.7444248 1103.3555
+194280.0650018053 3.7444642 1103.3752
+194281.0650019096 3.7445035 1103.3555
+194282.0650020139 3.7444642 1103.316
+194283.0650021182 3.7444642 1103.474
+194284.0650022225 3.7444248 1103.4344
+194285.0650023269 3.7444642 1103.3752
+194286.0650024312 3.7446609 1103.4147
+194287.0650025355 3.7445428 1103.3555
+194288.0650026398 3.7445035 1103.4344
+194289.0650027441 3.7445428 1103.3555
+194290.0650028484 3.7445428 1103.3555
+194291.0650029527 3.7445822 1103.3949
+194292.065003057 3.7444642 1103.2963
+194293.0650031613 3.7446215 1103.3949
+194294.0650032656 3.7447004 1103.3949
+194295.0650033699 3.7446215 1103.4344
+194296.0650034742 3.7446215 1103.3949
+194297.0650035786 3.7446609 1103.3752
+194298.0650036829 3.7447004 1103.3555
+194299.0650037872 3.7447004 1103.3555
+194300.0650038915 3.7447004 1103.3357
+194301.0650039958 3.7447791 1103.3357
+194302.0650041001 3.7447398 1103.316
+194303.0650042044 3.7447398 1103.3752
+194304.0650043087 3.7447398 1103.3752
+194305.065004413 3.7447398 1103.3949
+194306.0650045173 3.7447398 1103.3357
+194307.0650046216 3.7447004 1103.3555
+194308.0650047259 3.7447791 1103.3949
+194309.0650048302 3.7448578 1103.316
+194310.0650049346 3.7448184 1103.3555
+194311.0650050389 3.7448971 1103.3555
+194312.0650051432 3.7448971 1103.316
+194313.0650052475 3.7448184 1103.4344
+194314.0650053518 3.7448578 1103.3555
+194315.0650054561 3.7448971 1103.2765
+194316.0650055604 3.7448578 1103.316
+194317.0650056647 3.7448578 1103.2963
+194318.065005769 3.7449365 1103.3949
+194319.0650058733 3.7449758 1103.3555
+194320.0650059776 3.7448184 1103.3357
+194321.0650060819 3.7449758 1103.3357
+194322.0650061863 3.7450547 1103.4344
+194323.0650062906 3.7448971 1103.316
+194324.0650063949 3.7449758 1103.3357
+194325.0650064992 3.7450154 1103.316
+194326.0650066035 3.7450154 1103.3357
+194327.0650067078 3.7450154 1103.3949
+194328.0650068121 3.7450941 1103.4147
+194329.0650069164 3.7451334 1103.3357
+194330.0650070207 3.7450154 1103.3357
+194331.065007125 3.7450941 1103.4147
+194332.0650072293 3.7450547 1103.3752
+194333.0650073336 3.7451334 1103.2765
+194334.065007438 3.7451727 1103.3752
+194335.0650075423 3.7452121 1103.4344
+194336.0650076466 3.7451727 1103.2567
+194337.0650077509 3.7451334 1103.316
+194338.0650078552 3.7451334 1103.3752
+194339.0650079595 3.7451334 1103.2963
+194340.0650080638 3.7451727 1103.316
+194341.0650081681 3.7451727 1103.3357
+194342.0650082724 3.7452121 1103.3357
+194343.0650083767 3.7452121 1103.3555
+194344.065008481 3.7451727 1103.4147
+194345.0650085853 3.7451727 1103.3555
+194346.0650086896 3.7452121 1103.3949
+194347.065008794 3.7452121 1103.3357
+194348.0650088983 3.7452908 1103.3555
+194349.0650090026 3.7452908 1103.2963
+194350.0650091069 3.7452908 1103.3949
+194351.0650092112 3.7453303 1103.3357
+194352.0650093155 3.7452121 1103.3357
+194353.0650094198 3.7452514 1103.3357
+194354.0650095241 3.7452908 1103.3357
+194355.0650096284 3.7453697 1103.3752
+194356.0650097327 3.7453697 1103.3752
+194357.065009837 3.7453697 1103.3752
+194358.0650099413 3.745527 1103.3555
+194359.0650100457 3.7454484 1103.3555
+194360.06501015 3.7454484 1103.3357
+194361.0650102543 3.7454484 1103.4542
+194362.0650103586 3.7455664 1103.3752
+194363.0650104629 3.7454877 1103.3555
+194364.0650105672 3.745409 1103.4147
+194365.0650106715 3.7454877 1103.3555
+194366.0650107758 3.745527 1103.2567
+194367.0650108801 3.745527 1103.316
+194368.0650109844 3.745527 1103.2172
+194369.0650110887 3.745527 1103.3555
+194370.065011193 3.745527 1103.3949
+194371.0650112974 3.745527 1103.3555
+194372.0650114017 3.745527 1103.4147
+194373.065011506 3.7456453 1103.3357
+194374.0650116103 3.7456453 1103.3555
+194375.0650117146 3.7456846 1103.3752
+194376.0650118189 3.7456057 1103.2172
+194377.0650119232 3.7456846 1103.3357
+194378.0650120275 3.7456846 1103.3555
+194379.0650121318 3.7456057 1103.3949
+194380.0650122361 3.7456846 1103.3357
+194381.0650123404 3.745724 1103.2963
+194382.0650124447 3.7456846 1103.3357
+194383.0650125491 3.745724 1103.3555
+194384.0650126534 3.7456846 1103.2567
+194385.0650127577 3.7456846 1103.3949
+194386.065012862 3.7456453 1103.3555
+194387.0650129663 3.745724 1103.3555
+194388.0650130706 3.745724 1103.3555
+194389.0650131749 3.7457633 1103.474
+194390.0650132792 3.745842 1103.3949
+194391.0650133835 3.7457633 1103.3949
+194392.0650134878 3.7457633 1103.3555
+194393.0650135921 3.7458026 1103.3357
+194394.0650136964 3.745724 1103.3357
+194395.0650138007 3.745842 1103.3752
+194396.0650139051 3.7457633 1103.2963
+194397.0650140094 3.7459602 1103.3357
+194398.0650141137 3.745842 1103.4344
+194399.065014218 3.7458026 1103.3357
+194400.0650143223 3.7458813 1103.2765
+194401.0650144266 3.7459996 1103.316
+194402.0650145309 3.745842 1103.316
+194403.0650146352 3.7459602 1103.3555
+194404.0650147395 3.7458813 1103.3357
+194405.0650148438 3.7460389 1103.4147
+194406.0650149481 3.7458813 1103.2765
+194407.0650150524 3.7459996 1103.3752
+194408.0650151568 3.7459207 1103.2963
+194409.0650152611 3.7459996 1103.3752
+194410.0650153654 3.7460389 1103.3752
+194411.0650154697 3.7460389 1103.2963
+194412.065015574 3.7460389 1103.2765
+194413.0650156783 3.7459996 1103.3357
+194414.0650157826 3.7460783 1103.316
+194415.0650158869 3.7460389 1103.4344
+194416.0650159912 3.7461963 1103.2963
+194417.0650160955 3.7461963 1103.3949
+194418.0650161998 3.7461963 1103.3555
+194419.0650163041 3.7461569 1103.316
+194420.0650164085 3.7461176 1103.4147
+194421.0650165128 3.7461569 1103.3357
+194422.0650166171 3.7461963 1103.3555
+194423.0650167214 3.7462356 1103.316
+194424.0650168257 3.7461176 1103.2765
+194425.06501693 3.7461963 1103.3752
+194426.0650170343 3.7462752 1103.316
+194427.0650171386 3.7461963 1103.3555
+194428.0650172429 3.7462356 1103.3949
+194429.0650173472 3.7462752 1103.2765
+194430.0650174515 3.7462752 1103.316
+194431.0650175558 3.7462356 1103.3555
+194432.0650176601 3.7462356 1103.3357
+194433.0650177645 3.7462356 1103.3752
+194434.0650178688 3.7463539 1103.3555
+194435.0650179731 3.7464325 1103.3949
+194436.0650180774 3.7463539 1103.3949
+194437.0650181817 3.7463539 1103.3949
+194438.065018286 3.7463539 1103.3752
+194439.0650183903 3.7462752 1103.3949
+194440.0650184946 3.7463932 1103.316
+194441.0650185989 3.7463932 1103.2963
+194442.0650187032 3.7464719 1103.3357
+194443.0650188075 3.7465112 1103.3555
+194444.0650189118 3.7465112 1103.3752
+194445.0650190162 3.7465112 1103.2765
+194446.0650191205 3.7464325 1103.2963
+194447.0650192248 3.7464719 1103.2765
+194448.0650193291 3.7465508 1103.3949
+194449.0650194334 3.7463932 1103.2765
+194450.0650195377 3.7464719 1103.3555
+194451.065019642 3.7466688 1103.3357
+194452.0650197463 3.7465508 1103.3555
+194453.0650198506 3.7465112 1103.3752
+194454.0650199549 3.7466295 1103.316
+194455.0650200592 3.7465508 1103.4147
+194456.0650201635 3.7465112 1103.3357
+194457.0650202679 3.7465112 1103.3357
+194458.0650203722 3.7466295 1103.3357
+194459.0650204765 3.7466295 1103.2963
+194460.0650205808 3.7466295 1103.316
+194461.0650206851 3.7466688 1103.316
+194462.0650207894 3.7466688 1103.3752
+194463.0650208937 3.7466295 1103.3752
+194464.065020998 3.7466688 1103.3752
+194465.0650211023 3.7467082 1103.3357
+194466.0650212066 3.7467475 1103.316
+194467.0650213109 3.7467082 1103.3357
+194468.0650214152 3.7466688 1103.3949
+194469.0650215195 3.7467082 1103.3949
+194470.0650216239 3.7467475 1103.3555
+194471.0650217282 3.7467475 1103.3555
+194472.0650218325 3.7467475 1103.316
+194473.0650219368 3.7467475 1103.316
+194474.0650220411 3.7467868 1103.3357
+194475.0650221454 3.7468262 1103.2765
+194476.0650222497 3.7468657 1103.2963
+194477.065022354 3.7468657 1103.3949
+194478.0650224583 3.7468262 1103.3555
+194479.0650225626 3.7469444 1103.2963
+194480.0650226669 3.7469444 1103.316
+194481.0650227712 3.7469444 1103.3752
+194482.0650228756 3.7469838 1103.2765
+194483.0650229799 3.7468262 1103.4147
+194484.0650230842 3.7469051 1103.3949
+194485.0650231885 3.7469444 1103.2963
+194486.0650232928 3.7469838 1103.3357
+194487.0650233971 3.7469051 1103.3555
+194488.0650235014 3.7469838 1103.3949
+194489.0650236057 3.7469838 1103.3357
+194490.06502371 3.7470231 1103.3357
+194491.0650238143 3.7471018 1103.3357
+194492.0650239186 3.7469838 1103.3357
+194493.0650240229 3.7469838 1103.316
+194494.0650241273 3.7470624 1103.3357
+194495.0650242316 3.7470624 1103.3752
+194496.0650243359 3.7471018 1103.3752
+194497.0650244402 3.7471018 1103.3555
+194498.0650245445 3.7471411 1103.3949
+194499.0650246488 3.7471807 1103.3555
+194500.0650247531 3.7472594 1103.2567
+194501.0650248574 3.7470624 1103.2567
+194502.0650249617 3.7471807 1103.3357
+194503.065025066 3.74722 1103.3752
+194504.0650251703 3.74722 1103.3357
+194505.0650252746 3.7472594 1103.3752
+194506.065025379 3.7471018 1103.4147
+194507.0650254833 3.7471807 1103.3357
+194508.0650255876 3.7471807 1103.3357
+194509.0650256919 3.74722 1103.3949
+194510.0650257962 3.7471807 1103.3555
+194511.0650259005 3.7471807 1103.3949
+194512.0650260048 3.7472594 1103.3752
+194513.0650261091 3.7472594 1103.3357
+194514.0650262134 3.7473774 1103.316
+194515.0650263177 3.7472987 1103.3555
+194516.065026422 3.7473381 1103.316
+194517.0650265263 3.7473774 1103.316
+194518.0650266306 3.7472987 1103.3752
+194519.065026735 3.7473381 1103.4344
+194520.0650268393 3.7474167 1103.3752
+194521.0650269436 3.7473381 1103.3555
+194522.0650270479 3.7474167 1103.2963
+194523.0650271522 3.7474561 1103.4147
+194524.0650272565 3.7473774 1103.3357
+194525.0650273608 3.7474167 1103.3357
+194526.0650274651 3.7474167 1103.3555
+194527.0650275694 3.7473774 1103.3555
+194528.0650276737 3.7474561 1103.316
+194529.065027778 3.7475743 1103.2765
+194530.0650278823 3.7475743 1103.3949
+194531.0650279867 3.747535 1103.2765
+194532.065028091 3.7474167 1103.4147
+194533.0650281953 3.747535 1103.3949
+194534.0650282996 3.747535 1103.2765
+194535.0650284039 3.7475743 1103.3752
+194536.0650285082 3.747535 1103.2567
+194537.0650286125 3.7475743 1103.3949
+194538.0650287168 3.7477317 1103.2765
+194539.0650288211 3.747653 1103.4147
+194540.0650289254 3.7475743 1103.3949
+194541.0650290297 3.747653 1103.3357
+194542.065029134 3.747653 1103.2765
+194543.0650292384 3.7477317 1103.4344
+194544.0650293427 3.747653 1103.2765
+194545.065029447 3.747653 1103.4542
+194546.0650295513 3.747653 1103.316
+194547.0650296556 3.747653 1103.4147
+194548.0650297599 3.7476923 1103.4147
+194549.0650298642 3.747653 1103.3752
+194550.0650299685 3.747653 1103.3555
+194551.0650300728 3.7477317 1103.3949
+194552.0650301771 3.7478106 1103.2963
+194553.0650302814 3.7477317 1103.4344
+194554.0650303857 3.747771 1103.3555
+194555.06503049 3.7477317 1103.2963
+194556.0650305944 3.747771 1103.4147
+194557.0650306987 3.7478499 1103.3555
+194558.065030803 3.7478499 1103.2963
+194559.0650309073 3.7478893 1103.3555
+194560.0650310116 3.7478106 1103.2963
+194561.0650311159 3.7478499 1103.3752
+194562.0650312202 3.7478499 1103.3555
+194563.0650313245 3.7478499 1103.3555
+194564.0650314288 3.7478893 1103.2765
+194565.0650315331 3.747968 1103.4147
+194566.0650316374 3.747968 1103.2963
+194567.0650317417 3.7479286 1103.3555
+194568.0650318461 3.7479286 1103.3357
+194569.0650319504 3.747968 1103.3555
+194570.0650320547 3.747968 1103.3555
+194571.065032159 3.7479286 1103.3555
+194572.0650322633 3.747968 1103.3357
+194573.0650323676 3.7480073 1103.3555
+194574.0650324719 3.7480073 1103.3752
+194575.0650325762 3.748086 1103.2963
+194576.0650326805 3.7480466 1103.474
+194577.0650327848 3.7480466 1103.3752
+194578.0650328891 3.748086 1103.3752
+194579.0650329934 3.7480466 1103.4147
+194580.0650330978 3.7481256 1103.2963
+194581.0650332021 3.7482436 1103.3949
+194582.0650333064 3.7480466 1103.3555
+194583.0650334107 3.748086 1103.3949
+194584.065033515 3.7481649 1103.3752
+194585.0650336193 3.7481256 1103.4542
+194586.0650337236 3.7482042 1103.4542
+194587.0650338279 3.748086 1103.3949
+194588.0650339322 3.7482042 1103.3357
+194589.0650340365 3.7481256 1103.3555
+194590.0650341408 3.7482042 1103.2963
+194591.0650342451 3.7482436 1103.3357
+194592.0650343494 3.7482436 1103.3555
+194593.0650344538 3.7482829 1103.4344
+194594.0650345581 3.7482829 1103.4542
+194595.0650346624 3.7482829 1103.3357
+194596.0650347667 3.7482829 1103.3357
+194597.065034871 3.7482829 1103.4542
+194598.0650349753 3.7482436 1103.3555
+194599.0650350796 3.7484405 1103.3555
+194600.0650351839 3.7482829 1103.3357
+194601.0650352882 3.7484798 1103.2567
+194602.0650353925 3.7484798 1103.3752
+194603.0650354968 3.7484405 1103.2963
+194604.0650356011 3.7484012 1103.316
+194605.0650357055 3.7484405 1103.316
+194606.0650358098 3.7484405 1103.3555
+194607.0650359141 3.7484012 1103.3555
+194608.0650360184 3.7484405 1103.4147
+194609.0650361227 3.7484405 1103.3357
+194610.065036227 3.7485192 1103.3752
+194611.0650363313 3.7484405 1103.4344
+194612.0650364356 3.7484405 1103.3357
+194613.0650365399 3.7485192 1103.316
+194614.0650366442 3.7484798 1103.3357
+194615.0650367485 3.7485979 1103.4344
+194616.0650368528 3.7484405 1103.3357
+194617.0650369572 3.7484798 1103.3357
+194618.0650370615 3.7485979 1103.316
+194619.0650371658 3.7485979 1103.2567
+194620.0650372701 3.7485585 1103.4344
+194621.0650373744 3.7485979 1103.4147
+194622.0650374787 3.7486372 1103.2765
+194623.065037583 3.7485585 1103.3752
+194624.0650376873 3.7486765 1103.4344
+194625.0650377916 3.7486372 1103.316
+194626.0650378959 3.7486765 1103.4147
+194627.0650380002 3.7486765 1103.3357
+194628.0650381045 3.7486765 1103.4542
+194629.0650382089 3.7486372 1103.3949
+194630.0650383132 3.7487555 1103.2765
+194631.0650384175 3.7487555 1103.3357
+194632.0650385218 3.7487161 1103.3555
+194633.0650386261 3.7487948 1103.4344
+194634.0650387304 3.7486765 1103.3357
+194635.0650388347 3.7488341 1103.4938
+194636.065038939 3.7487948 1103.3357
+194637.0650390433 3.7487161 1103.3752
+194638.0650391476 3.7487948 1103.316
+194639.0650392519 3.7489128 1103.2765
+194640.0650393562 3.7487948 1103.3752
+194641.0650394605 3.7487555 1103.2567
+194642.0650395649 3.7488735 1103.3949
+194643.0650396692 3.7489128 1103.316
+194644.0650397735 3.7488735 1103.316
+194645.0650398778 3.7488735 1103.3752
+194646.0650399821 3.7489128 1103.3357
+194647.0650400864 3.7489128 1103.316
+194648.0650401907 3.7489522 1103.4147
+194649.065040295 3.7490311 1103.2765
+194650.0650403993 3.7489915 1103.316
+194651.0650405036 3.7490311 1103.2567
+194652.0650406079 3.7489522 1103.3555
+194653.0650407122 3.7489915 1103.3555
+194654.0650408166 3.7489522 1103.3949
+194655.0650409209 3.7490311 1103.316
+194656.0650410252 3.7490704 1103.3357
+194657.0650411295 3.7490704 1103.2963
+194658.0650412338 3.7490704 1103.2765
+194659.0650413381 3.7490704 1103.3752
+194660.0650414424 3.7491097 1103.2963
+194661.0650415467 3.7491884 1103.3752
+194662.065041651 3.7491097 1103.3357
+194663.0650417553 3.7491097 1103.3555
+194664.0650418596 3.7491884 1103.4147
+194665.0650419639 3.7491491 1103.316
+194666.0650420683 3.7491491 1103.3357
+194667.0650421726 3.7491884 1103.3752
+194668.0650422769 3.7492278 1103.4542
+194669.0650423812 3.7491884 1103.316
+194670.0650424855 3.7491884 1103.3555
+194671.0650425898 3.7492671 1103.3752
+194672.0650426941 3.7491884 1103.3555
+194673.0650427984 3.7492671 1103.3357
+194674.0650429027 3.7492671 1103.3357
+194675.065043007 3.7492278 1103.3555
+194676.0650431113 3.7492671 1103.3555
+194677.0650432156 3.7493064 1103.3752
+194678.0650433199 3.7493064 1103.316
+194679.0650434243 3.7493064 1103.316
+194680.0650435286 3.7493064 1103.316
+194681.0650436329 3.749346 1103.3949
+194682.0650437372 3.7493854 1103.316
+194683.0650438415 3.749464 1103.316
+194684.0650439458 3.7493854 1103.4542
+194685.0650440501 3.749464 1103.3357
+194686.0650441544 3.749346 1103.2963
+194687.0650442587 3.7494247 1103.4147
+194688.065044363 3.7494247 1103.316
+194689.0650444673 3.749464 1103.2963
+194690.0650445716 3.7495427 1103.3752
+194691.065044676 3.7493854 1103.3949
+194692.0650447803 3.7494247 1103.3555
+194693.0650448846 3.7495427 1103.3949
+194694.0650449889 3.7495034 1103.2963
+194695.0650450932 3.7495034 1103.3949
+194696.0650451975 3.7495427 1103.2963
+194697.0650453018 3.7495427 1103.3752
+194698.0650454061 3.7495821 1103.3752
+194699.0650455104 3.749464 1103.3357
+194700.0650456147 3.749464 1103.316
+194701.065045719 3.7495821 1103.3949
+194702.0650458233 3.7495427 1103.3357
+194703.0650459277 3.7497003 1103.4344
+194704.065046032 3.7497003 1103.316
+194705.0650461363 3.7495821 1103.3357
+194706.0650462406 3.7495821 1103.2963
+194707.0650463449 3.7497003 1103.3555
+194708.0650464492 3.7495821 1103.2567
+194709.0650465535 3.749661 1103.3555
+194710.0650466578 3.7497003 1103.316
+194711.0650467621 3.7497396 1103.316
+194712.0650468664 3.749779 1103.3555
+194713.0650469707 3.7498183 1103.3555
+194714.065047075 3.749779 1103.3357
+194715.0650471793 3.7498183 1103.3752
+194716.0650472837 3.7498183 1103.4344
+194717.065047388 3.749779 1103.316
+194718.0650474923 3.7498183 1103.3752
+194719.0650475966 3.7497003 1103.3555
+194720.0650477009 3.749897 1103.3949
+194721.0650478052 3.7498577 1103.3357
+194722.0650479095 3.7498577 1103.3949
+194723.0650480138 3.7499759 1103.3752
+194724.0650481181 3.749897 1103.3357
+194725.0650482224 3.7498577 1103.3555
+194726.0650483267 3.7498577 1103.3555
+194727.065048431 3.7499363 1103.3752
+194728.0650485354 3.7499759 1103.3357
+194729.0650486397 3.7499759 1103.4147
+194730.065048744 3.7499759 1103.3357
+194731.0650488483 3.7499759 1103.3949
+194732.0650489526 3.7500546 1103.3555
+194733.0650490569 3.7499759 1103.4147
+194734.0650491612 3.7500546 1103.3555
+194735.0650492655 3.7500546 1103.4147
+194736.0650493698 3.7499759 1103.3357
+194737.0650494741 3.7500939 1103.3752
+194738.0650495784 3.7499759 1103.4147
+194739.0650496827 3.7500546 1103.316
+194740.0650497871 3.7501726 1103.3555
+194741.0650498914 3.7500939 1103.3357
+194742.0650499957 3.7501333 1103.3555
+194743.0650501 3.7501333 1103.4147
+194744.0650502043 3.7501333 1103.316
+194745.0650503086 3.7500546 1103.3752
+194746.0650504129 3.7501726 1103.3949
+194747.0650505172 3.7501726 1103.3949
+194748.0650506215 3.7501726 1103.3752
+194749.0650507258 3.750212 1103.4147
+194750.0650508301 3.750212 1103.3752
+194751.0650509344 3.750212 1103.3949
+194752.0650510388 3.750212 1103.3555
+194753.0650511431 3.750212 1103.3357
+194754.0650512474 3.7502515 1103.474
+194755.0650513517 3.7501726 1103.3949
+194756.065051456 3.750212 1103.3555
+194757.0650515603 3.7501726 1103.3949
+194758.0650516646 3.750212 1103.2765
+194759.0650517689 3.7502515 1103.3555
+194760.0650518732 3.7503302 1103.4542
+194761.0650519775 3.7502909 1103.3357
+194762.0650520818 3.7503302 1103.3555
+194763.0650521861 3.7502909 1103.316
+194764.0650522904 3.7503302 1103.316
+194765.0650523948 3.7503302 1103.4542
+194766.0650524991 3.7502909 1103.3357
+194767.0650526034 3.7504089 1103.2963
+194768.0650527077 3.7504089 1103.2963
+194769.065052812 3.7504876 1103.3752
+194770.0650529163 3.7504089 1103.316
+194771.0650530206 3.7504089 1103.3949
+194772.0650531249 3.7504482 1103.3555
+194773.0650532292 3.7504089 1103.3555
+194774.0650533335 3.7504876 1103.4147
+194775.0650534378 3.7505269 1103.3555
+194776.0650535421 3.7504482 1103.3949
+194777.0650536465 3.7505665 1103.2963
+194778.0650537508 3.7505269 1103.3752
+194779.0650538551 3.7504876 1103.3555
+194780.0650539594 3.7505269 1103.3555
+194781.0650540637 3.7505269 1103.3357
+194782.065054168 3.7505665 1103.3357
+194783.0650542723 3.7506452 1103.2963
+194784.0650543766 3.7505665 1103.316
+194785.0650544809 3.7506452 1103.316
+194786.0650545852 3.7506845 1103.3555
+194787.0650546895 3.7506452 1103.316
+194788.0650547938 3.7506452 1103.3752
+194789.0650548982 3.7506058 1103.3357
+194790.0650550025 3.7506452 1103.2963
+194791.0650551068 3.7507238 1103.3949
+194792.0650552111 3.7507632 1103.3949
+194793.0650553154 3.7506845 1103.2963
+194794.0650554197 3.7507632 1103.3949
+194795.065055524 3.7508025 1103.3357
+194796.0650556283 3.7507632 1103.2765
+194797.0650557326 3.7508025 1103.3555
+194798.0650558369 3.7507632 1103.3949
+194799.0650559412 3.7508419 1103.2765
+194800.0650560455 3.7508025 1103.3555
+194801.0650561498 3.7507632 1103.3752
+194802.0650562542 3.7508025 1103.3555
+194803.0650563585 3.7508025 1103.3555
+194804.0650564628 3.7508419 1103.3555
+194805.0650565671 3.7508419 1103.3357
+194806.0650566714 3.7508419 1103.3752
+194807.0650567757 3.7508814 1103.3752
+194808.06505688 3.7508419 1103.3752
+194809.0650569843 3.7508419 1103.3949
+194810.0650570886 3.7509995 1103.4147
+194811.0650571929 3.7509208 1103.316
+194812.0650572972 3.7508814 1103.3752
+194813.0650574015 3.7509208 1103.4147
+194814.0650575059 3.7509995 1103.3949
+194815.0650576102 3.7509995 1103.3752
+194816.0650577145 3.7510388 1103.3752
+194817.0650578188 3.7509601 1103.2765
+194818.0650579231 3.7510781 1103.316
+194819.0650580274 3.7509995 1103.3357
+194820.0650581317 3.7510388 1103.4542
+194821.065058236 3.7510781 1103.3555
+194822.0650583403 3.7511175 1103.3949
+194823.0650584446 3.7511568 1103.3752
+194824.0650585489 3.7511568 1103.316
+194825.0650586532 3.7510781 1103.3357
+194826.0650587576 3.7511568 1103.3752
+194827.0650588619 3.7510388 1103.3752
+194828.0650589662 3.7511568 1103.3752
+194829.0650590705 3.7511568 1103.316
+194830.0650591748 3.7512357 1103.3555
+194831.0650592791 3.7512751 1103.316
+194832.0650593834 3.7511964 1103.2765
+194833.0650594877 3.7512357 1103.3752
+194834.065059592 3.7512357 1103.316
+194835.0650596963 3.7512751 1103.3949
+194836.0650598006 3.7512751 1103.3752
+194837.0650599049 3.7512751 1103.4147
+194838.0650600092 3.7513144 1103.316
+194839.0650601136 3.7512357 1103.4344
+194840.0650602179 3.7513931 1103.3357
+194841.0650603222 3.7513144 1103.2369
+194842.0650604265 3.7512751 1103.2963
+194843.0650605308 3.7513537 1103.2963
+194844.0650606351 3.7513537 1103.2369
+194845.0650607394 3.7513537 1103.3357
+194846.0650608437 3.7513144 1103.4147
+194847.065060948 3.7513931 1103.3555
+194848.0650610523 3.7513931 1103.3555
+194849.0650611566 3.7513931 1103.3949
+194850.0650612609 3.7514718 1103.3357
+194851.0650613653 3.7514718 1103.3357
+194852.0650614696 3.7515113 1103.474
+194853.0650615739 3.7515113 1103.474
+194854.0650616782 3.7513537 1103.3357
+194855.0650617825 3.7515113 1103.3752
+194856.0650618868 3.7513537 1103.3949
+194857.0650619911 3.7515507 1103.3555
+194858.0650620954 3.7515507 1103.3752
+194859.0650621997 3.75159 1103.3752
+194860.065062304 3.7514718 1103.3949
+194861.0650624083 3.7513931 1103.3357
+194862.0650625126 3.75159 1103.4344
+194863.065062617 3.7516294 1103.2963
+194864.0650627213 3.7515507 1103.3555
+194865.0650628256 3.75159 1103.2963
+194866.0650629299 3.7516294 1103.3357
+194867.0650630342 3.7516294 1103.3752
+194868.0650631385 3.7515507 1103.3555
+194869.0650632428 3.7516294 1103.4542
+194870.0650633471 3.75159 1103.3752
+194871.0650634514 3.751708 1103.3555
+194872.0650635557 3.7516687 1103.2765
+194873.06506366 3.7517474 1103.3752
+194874.0650637643 3.7516687 1103.3949
+194875.0650638686 3.7517474 1103.316
+194876.065063973 3.7518263 1103.3752
+194877.0650640773 3.7516294 1103.316
+194878.0650641816 3.7517474 1103.3555
+194879.0650642859 3.7517869 1103.2567
+194880.0650643902 3.7518263 1103.3357
+194881.0650644945 3.7517474 1103.4938
+194882.0650645988 3.7517869 1103.3752
+194883.0650647031 3.7518263 1103.3357
+194884.0650648074 3.7517869 1103.316
+194885.0650649117 3.751905 1103.3555
+194886.065065016 3.7518263 1103.3752
+194887.0650651203 3.7518656 1103.3555
+194888.0650652247 3.7518656 1103.316
+194889.065065329 3.751905 1103.3357
+194890.0650654333 3.751905 1103.3555
+194891.0650655376 3.751905 1103.3752
+194892.0650656419 3.7519443 1103.3752
+194893.0650657462 3.7519836 1103.2963
+194894.0650658505 3.751905 1103.3555
+194895.0650659548 3.751905 1103.3357
+194896.0650660591 3.7520623 1103.2567
+194897.0650661634 3.751905 1103.3949
+194898.0650662677 3.7521412 1103.316
+194899.065066372 3.7521412 1103.4147
+194900.0650664764 3.7521412 1103.2963
+194901.0650665807 3.7519443 1103.2765
+194902.065066685 3.7521019 1103.3357
+194903.0650667893 3.752023 1103.4147
+194904.0650668936 3.7520623 1103.3555
+194905.0650669979 3.7521019 1103.3949
+194906.0650671022 3.7521412 1103.316
+194907.0650672065 3.7519836 1103.2963
+194908.0650673108 3.7521806 1103.3555
+194909.0650674151 3.7521412 1103.2963
+194910.0650675194 3.7521806 1103.3555
+194911.0650676237 3.7522199 1103.4147
+194912.0650677281 3.7522199 1103.2963
+194913.0650678324 3.7522199 1103.3555
+194914.0650679367 3.7522199 1103.3357
+194915.065068041 3.7522593 1103.3752
+194916.0650681453 3.7522199 1103.2963
+194917.0650682496 3.7522593 1103.2765
+194918.0650683539 3.7523379 1103.316
+194919.0650684582 3.7522986 1103.3357
+194920.0650685625 3.7522986 1103.3357
+194921.0650686668 3.7523379 1103.2963
+194922.0650687711 3.7522986 1103.4344
+194923.0650688754 3.7523773 1103.3555
+194924.0650689797 3.7522593 1103.316
+194925.0650690841 3.7523773 1103.3555
+194926.0650691884 3.7523379 1103.3949
+194927.0650692927 3.7523773 1103.3555
+194928.065069397 3.7524168 1103.3555
+194929.0650695013 3.7524562 1103.3752
+194930.0650696056 3.7523773 1103.316
+194931.0650697099 3.7524562 1103.316
+194932.0650698142 3.7524955 1103.3949
+194933.0650699185 3.7523773 1103.3752
+194934.0650700228 3.7524168 1103.316
+194935.0650701271 3.7524562 1103.316
+194936.0650702314 3.7524562 1103.3357
+194937.0650703358 3.7524955 1103.3752
+194938.0650704401 3.7525349 1103.3752
+194939.0650705444 3.7526135 1103.3949
+194940.0650706487 3.7526135 1103.3949
+194941.065070753 3.7526135 1103.3357
+194942.0650708573 3.7526135 1103.2963
+194943.0650709616 3.7525742 1103.3555
+194944.0650710659 3.7526922 1103.4344
+194945.0650711702 3.7525742 1103.3949
+194946.0650712745 3.7525742 1103.2765
+194947.0650713788 3.7526135 1103.3752
+194948.0650714831 3.7525349 1103.3949
+194949.0650715875 3.7526529 1103.3949
+194950.0650716918 3.7526529 1103.2963
+194951.0650717961 3.7527318 1103.3357
+194952.0650719004 3.7527711 1103.3949
+194953.0650720047 3.7526529 1103.3555
+194954.065072109 3.7526529 1103.3752
+194955.0650722133 3.7527318 1103.3357
+194956.0650723176 3.7526922 1103.316
+194957.0650724219 3.7527711 1103.3357
+194958.0650725262 3.7527711 1103.2963
+194959.0650726305 3.7528498 1103.2963
+194960.0650727348 3.7527711 1103.2567
+194961.0650728391 3.7527711 1103.4542
+194962.0650729435 3.7528105 1103.2963
+194963.0650730478 3.7528105 1103.4147
+194964.0650731521 3.7528498 1103.3949
+194965.0650732564 3.7528498 1103.474
+194966.0650733607 3.7528892 1103.2172
+194967.065073465 3.7527711 1103.3555
+194968.0650735693 3.7529285 1103.2963
+194969.0650736736 3.7528498 1103.3357
+194970.0650737779 3.7528498 1103.4344
+194971.0650738822 3.7529285 1103.3357
+194972.0650739865 3.7530072 1103.3357
+194973.0650740908 3.7529285 1103.2963
+194974.0650741952 3.7528892 1103.3357
+194975.0650742995 3.7529285 1103.3949
+194976.0650744038 3.7530072 1103.4344
+194977.0650745081 3.7530468 1103.3752
+194978.0650746124 3.7530072 1103.316
+194979.0650747167 3.7530072 1103.3555
+194980.065074821 3.7529285 1103.3752
+194981.0650749253 3.7530072 1103.316
+194982.0650750296 3.7530072 1103.3752
+194983.0650751339 3.7530468 1103.4147
+194984.0650752382 3.7530468 1103.3949
+194985.0650753425 3.7530861 1103.3752
+194986.0650754469 3.7531254 1103.3357
+194987.0650755512 3.7530861 1103.3357
+194988.0650756555 3.7530861 1103.2567
+194989.0650757598 3.7532041 1103.3752
+194990.0650758641 3.7531254 1103.3752
+194991.0650759684 3.7532041 1103.3752
+194992.0650760727 3.7532434 1103.3752
+194993.065076177 3.7531254 1103.3357
+194994.0650762813 3.7532041 1103.3357
+194995.0650763856 3.7532434 1103.3555
+194996.0650764899 3.7532041 1103.3949
+194997.0650765942 3.7532434 1103.3555
+194998.0650766985 3.7532041 1103.3752
+194999.0650768029 3.7531648 1103.3949
+195000.0650769072 3.7533221 1103.2765
+195001.0650770115 3.7532828 1103.3357
+195002.0650771158 3.7532828 1103.3555
+195003.0650772201 3.753401 1103.3949
+195004.0650773244 3.7533221 1103.2765
+195005.0650774287 3.7532828 1103.2765
+195006.065077533 3.7533221 1103.316
+195007.0650776373 3.7532041 1103.316
+195008.0650777416 3.753401 1103.3949
+195009.0650778459 3.7533617 1103.2963
+195010.0650779502 3.753401 1103.3752
+195011.0650780546 3.7535191 1103.3752
+195012.0650781589 3.7533617 1103.3752
+195013.0650782632 3.7535191 1103.3555
+195014.0650783675 3.7535584 1103.3357
+195015.0650784718 3.7535191 1103.2963
+195016.0650785761 3.7534404 1103.2765
+195017.0650786804 3.7535191 1103.3555
+195018.0650787847 3.7535977 1103.3357
+195019.065078889 3.7534797 1103.3949
+195020.0650789933 3.7536767 1103.3555
+195021.0650790976 3.7534404 1103.3555
+195022.0650792019 3.7536373 1103.2963
+195023.0650793063 3.7535584 1103.3357
+195024.0650794106 3.7535191 1103.316
+195025.0650795149 3.7535977 1103.3752
+195026.0650796192 3.7536373 1103.3752
+195027.0650797235 3.7535977 1103.3949
+195028.0650798278 3.7537553 1103.2765
+195029.0650799321 3.7535977 1103.3357
+195030.0650800364 3.7536373 1103.3357
+195031.0650801407 3.7536373 1103.2963
+195032.065080245 3.7535977 1103.3949
+195033.0650803493 3.7535977 1103.2765
+195034.0650804536 3.7538733 1103.2765
+195035.065080558 3.7535977 1103.4344
+195036.0650806623 3.7537553 1103.3555
+195037.0650807666 3.753716 1103.4542
+195038.0650808709 3.7537553 1103.2963
+195039.0650809752 3.753716 1103.4147
+195040.0650810795 3.7537947 1103.3752
+195041.0650811838 3.7537553 1103.316
+195042.0650812881 3.7537553 1103.3752
+195043.0650813924 3.7537947 1103.3555
+195044.0650814967 3.7537553 1103.3555
+195045.065081601 3.753834 1103.3752
+195046.0650817053 3.7539523 1103.2765
+195047.0650818096 3.7539127 1103.2963
+195048.065081914 3.753834 1103.2369
+195049.0650820183 3.7539916 1103.4344
+195050.0650821226 3.7539127 1103.2963
+195051.0650822269 3.7539523 1103.3752
+195052.0650823312 3.7539127 1103.316
+195053.0650824355 3.7539523 1103.3752
+195054.0650825398 3.7538733 1103.316
+195055.0650826441 3.7538733 1103.3752
+195056.0650827484 3.7539523 1103.3752
+195057.0650828527 3.7540309 1103.2765
+195058.065082957 3.7539916 1103.3357
+195059.0650830613 3.7540309 1103.4147
+195060.0650831657 3.7539523 1103.3555
+195061.06508327 3.7540703 1103.3555
+195062.0650833743 3.7540309 1103.3357
+195063.0650834786 3.7540309 1103.3752
+195064.0650835829 3.7541096 1103.2765
+195065.0650836872 3.7541096 1103.3357
+195066.0650837915 3.7540703 1103.4147
+195067.0650838958 3.7541096 1103.2963
+195068.0650840001 3.754149 1103.3555
+195069.0650841044 3.754149 1103.3752
+195070.0650842087 3.7542672 1103.4147
+195071.065084313 3.754149 1103.3357
+195072.0650844174 3.754149 1103.3357
+195073.0650845217 3.7541883 1103.3357
+195074.065084626 3.7542276 1103.2369
+195075.0650847303 3.7543066 1103.3949
+195076.0650848346 3.7542276 1103.3357
+195077.0650849389 3.7542276 1103.2765
+195078.0650850432 3.7542276 1103.3949
+195079.0650851475 3.7543066 1103.316
+195080.0650852518 3.7542672 1103.3357
+195081.0650853561 3.7543852 1103.316
+195082.0650854604 3.7542672 1103.3949
+195083.0650855647 3.7543852 1103.2567
+195084.065085669 3.7544246 1103.2963
+195085.0650857734 3.7543852 1103.3357
+195086.0650858777 3.7543066 1103.4542
+195087.065085982 3.7544246 1103.4147
+195088.0650860863 3.7543852 1103.3357
+195089.0650861906 3.7543066 1103.3555
+195090.0650862949 3.7543852 1103.2963
+195091.0650863992 3.7545033 1103.2567
+195092.0650865035 3.7544639 1103.3555
+195093.0650866078 3.7544639 1103.3555
+195094.0650867121 3.7544639 1103.3357
+195095.0650868164 3.7545033 1103.316
+195096.0650869207 3.7545033 1103.2765
+195097.0650870251 3.7545426 1103.3357
+195098.0650871294 3.7545033 1103.3949
+195099.0650872337 3.7544639 1103.316
+195100.065087338 3.7545033 1103.3357
+195101.0650874423 3.7545033 1103.3357
+195102.0650875466 3.7545033 1103.2567
+195103.0650876509 3.7546215 1103.3752
+195104.0650877552 3.7546608 1103.3357
+195105.0650878595 3.7545033 1103.4147
+195106.0650879638 3.7545426 1103.3752
+195107.0650880681 3.7545426 1103.3752
+195108.0650881724 3.7545822 1103.2765
+195109.0650882768 3.7547789 1103.3555
+195110.0650883811 3.7546608 1103.2963
+195111.0650884854 3.7546608 1103.2765
+195112.0650885897 3.7548182 1103.316
+195113.065088694 3.7547002 1103.3555
+195114.0650887983 3.7546608 1103.316
+195115.0650889026 3.7547002 1103.3555
+195116.0650890069 3.7547395 1103.316
+195117.0650891112 3.7547002 1103.316
+195118.0650892155 3.7547789 1103.316
+195119.0650893198 3.7547789 1103.3949
+195120.0650894241 3.7547002 1103.3752
+195121.0650895284 3.7547789 1103.3357
+195122.0650896328 3.7547395 1103.316
+195123.0650897371 3.7547789 1103.4344
+195124.0650898414 3.7547002 1103.3555
+195125.0650899457 3.7548971 1103.3949
+195126.06509005 3.7549365 1103.2963
+195127.0650901543 3.7548182 1103.2963
+195128.0650902586 3.7548575 1103.316
+195129.0650903629 3.7548971 1103.3555
+195130.0650904672 3.7548971 1103.2765
+195131.0650905715 3.7549365 1103.4344
+195132.0650906758 3.7548971 1103.2765
+195133.0650907801 3.7548971 1103.4542
+195134.0650908845 3.7548971 1103.3555
+195135.0650909888 3.7548971 1103.3949
+195136.0650910931 3.7548971 1103.2765
+195137.0650911974 3.7549758 1103.3357
+195138.0650913017 3.7550151 1103.3357
+195139.065091406 3.7550151 1103.3752
+195140.0650915103 3.7550151 1103.2963
+195141.0650916146 3.7550545 1103.3752
+195142.0650917189 3.7550938 1103.3555
+195143.0650918232 3.7550938 1103.3555
+195144.0650919275 3.7550938 1103.2369
+195145.0650920318 3.7551332 1103.316
+195146.0650921362 3.7550938 1103.2963
+195147.0650922405 3.7551332 1103.3752
+195148.0650923448 3.7550938 1103.4147
+195149.0650924491 3.7551725 1103.3555
+195150.0650925534 3.7551332 1103.2963
+195151.0650926577 3.7551725 1103.3555
+195152.065092762 3.7552514 1103.3752
+195153.0650928663 3.7551725 1103.3752
+195154.0650929706 3.7553301 1103.3752
+195155.0650930749 3.7552514 1103.3555
+195156.0650931792 3.7552121 1103.4147
+195157.0650932835 3.7553301 1103.2963
+195158.0650933879 3.7552907 1103.2963
+195159.0650934922 3.7552907 1103.3357
+195160.0650935965 3.7552907 1103.4344
+195161.0650937008 3.7552907 1103.3752
+195162.0650938051 3.7553694 1103.4147
+195163.0650939094 3.7551725 1103.3949
+195164.0650940137 3.7552907 1103.4147
+195165.065094118 3.7552907 1103.3555
+195166.0650942223 3.7554088 1103.3555
+195167.0650943266 3.7553694 1103.4147
+195168.0650944309 3.7553694 1103.3949
+195169.0650945352 3.7554088 1103.2567
+195170.0650946395 3.7554088 1103.3555
+195171.0650947439 3.7554877 1103.3555
+195172.0650948482 3.7554088 1103.3555
+195173.0650949525 3.7554088 1103.316
+195174.0650950568 3.7554877 1103.3949
+195175.0650951611 3.7554877 1103.3752
+195176.0650952654 3.7554088 1103.3555
+195177.0650953697 3.755527 1103.3752
+195178.065095474 3.7554877 1103.474
+195179.0650955783 3.755527 1103.3949
+195180.0650956826 3.755527 1103.4147
+195181.0650957869 3.755527 1103.3555
+195182.0650958912 3.755645 1103.3949
+195183.0650959956 3.7555664 1103.2765
+195184.0650960999 3.7556057 1103.3752
+195185.0650962042 3.755645 1103.3752
+195186.0650963085 3.755645 1103.3357
+195187.0650964128 3.755645 1103.3752
+195188.0650965171 3.755645 1103.3752
+195189.0650966214 3.755645 1103.316
+195190.0650967257 3.7556844 1103.2963
+195191.06509683 3.7557631 1103.2963
+195192.0650969343 3.7556844 1103.3357
+195193.0650970386 3.7555664 1103.3752
+195194.0650971429 3.7558026 1103.3752
+195195.0650972473 3.7557237 1103.3949
+195196.0650973516 3.7556844 1103.2567
+195197.0650974559 3.7558026 1103.3949
+195198.0650975602 3.7558026 1103.5134
+195199.0650976645 3.7558026 1103.3555
+195200.0650977688 3.7558026 1103.316
+195201.0650978731 3.7558026 1103.316
+195202.0650979774 3.755842 1103.4147
+195203.0650980817 3.755842 1103.3357
+195204.065098186 3.7558026 1103.2963
+195205.0650982903 3.755842 1103.2369
+195206.0650983946 3.7558813 1103.3555
+195207.0650984989 3.75596 1103.3555
+195208.0650986033 3.7558813 1103.3949
+195209.0650987076 3.7559206 1103.3555
+195210.0650988119 3.7558813 1103.3949
+195211.0650989162 3.7558813 1103.3949
+195212.0650990205 3.7559993 1103.316
+195213.0650991248 3.7559206 1103.3555
+195214.0650992291 3.7559206 1103.316
+195215.0650993334 3.7560387 1103.2963
+195216.0650994377 3.7560387 1103.3357
+195217.065099542 3.7560387 1103.2369
+195218.0650996463 3.7560387 1103.3752
+195219.0650997506 3.7559993 1103.3949
+195220.065099855 3.756078 1103.316
+195221.0650999593 3.7559993 1103.3752
+195222.0651000636 3.7559993 1103.2567
+195223.0651001679 3.756078 1103.2765
+195224.0651002722 3.7561176 1103.316
+195225.0651003765 3.7560387 1103.4147
+195226.0651004808 3.7561176 1103.3949
+195227.0651005851 3.7561176 1103.2963
+195228.0651006894 3.7561176 1103.3555
+195229.0651007937 3.7561569 1103.3357
+195230.065100898 3.7562749 1103.2963
+195231.0651010023 3.7561176 1103.3555
+195232.0651011067 3.7561569 1103.2567
+195233.065101211 3.7562356 1103.316
+195234.0651013153 3.7561176 1103.3949
+195235.0651014196 3.7562749 1103.3752
+195236.0651015239 3.7562749 1103.3357
+195237.0651016282 3.7562356 1103.3949
+195238.0651017325 3.756393 1103.4147
+195239.0651018368 3.7563143 1103.4147
+195240.0651019411 3.7562749 1103.3357
+195241.0651020454 3.7563143 1103.316
+195242.0651021497 3.7563536 1103.3949
+195243.065102254 3.7563143 1103.3555
+195244.0651023583 3.756393 1103.316
+195245.0651024627 3.7563536 1103.3357
+195246.065102567 3.756393 1103.3949
+195247.0651026713 3.7564325 1103.4344
+195248.0651027756 3.756393 1103.3752
+195249.0651028799 3.756393 1103.2567
+195250.0651029842 3.7565899 1103.3752
+195251.0651030885 3.7564719 1103.3752
+195252.0651031928 3.7564325 1103.3949
+195253.0651032971 3.7565112 1103.3752
+195254.0651034014 3.7563536 1103.3752
+195255.0651035057 3.7565112 1103.3752
+195256.06510361 3.7565112 1103.4344
+195257.0651037144 3.7565112 1103.3357
+195258.0651038187 3.7565112 1103.3752
+195259.065103923 3.7564719 1103.4542
+195260.0651040273 3.7566292 1103.3555
+195261.0651041316 3.7565506 1103.2567
+195262.0651042359 3.7566292 1103.3555
+195263.0651043402 3.7567079 1103.2765
+195264.0651044445 3.7566292 1103.316
+195265.0651045488 3.7565506 1103.4147
+195266.0651046531 3.7567079 1103.4147
+195267.0651047574 3.7565899 1103.3555
+195268.0651048617 3.7566686 1103.2765
+195269.0651049661 3.7566292 1103.316
+195270.0651050704 3.7565112 1103.3949
+195271.0651051747 3.7567868 1103.2963
+195272.065105279 3.7566292 1103.3555
+195273.0651053833 3.7568262 1103.316
+195274.0651054876 3.7566686 1103.3752
+195275.0651055919 3.7567079 1103.4147
+195276.0651056962 3.7567475 1103.2963
+195277.0651058005 3.7566686 1103.3555
+195278.0651059048 3.7568262 1103.3555
+195279.0651060091 3.7567868 1103.4147
+195280.0651061134 3.7568262 1103.3357
+195281.0651062177 3.7567868 1103.3752
+195282.0651063221 3.7569048 1103.3555
+195283.0651064264 3.7567868 1103.3357
+195284.0651065307 3.7568655 1103.3752
+195285.065106635 3.7569048 1103.3752
+195286.0651067393 3.7568262 1103.3949
+195287.0651068436 3.7568262 1103.2963
+195288.0651069479 3.7568655 1103.316
+195289.0651070522 3.7569835 1103.3357
+195290.0651071565 3.7569048 1103.4344
+195291.0651072608 3.7569835 1103.4344
+195292.0651073651 3.7569442 1103.3752
+195293.0651074694 3.7569835 1103.3357
+195294.0651075738 3.7571018 1103.4147
+195295.0651076781 3.7569835 1103.3752
+195296.0651077824 3.7571018 1103.316
+195297.0651078867 3.7569442 1103.3357
+195298.065107991 3.7571018 1103.3949
+195299.0651080953 3.7571018 1103.316
+195300.0651081996 3.7570229 1103.316
+195301.0651083039 3.7570624 1103.3357
+195302.0651084082 3.7570229 1103.3752
+195303.0651085125 3.7571411 1103.3752
+195304.0651086168 3.7571411 1103.2963
+195305.0651087211 3.7571018 1103.3752
+195306.0651088255 3.7572591 1103.3752
+195307.0651089298 3.7571411 1103.3949
+195308.0651090341 3.7571411 1103.3949
+195309.0651091384 3.7572198 1103.3357
+195310.0651092427 3.7572198 1103.2963
+195311.065109347 3.7572198 1103.1975
+195312.0651094513 3.7572198 1103.3949
+195313.0651095556 3.7572198 1103.2963
+195314.0651096599 3.7571018 1103.3357
+195315.0651097642 3.7572198 1103.3357
+195316.0651098685 3.7572198 1103.2765
+195317.0651099728 3.7572985 1103.3752
+195318.0651100772 3.7572591 1103.3949
+195319.0651101815 3.7572985 1103.2963
+195320.0651102858 3.757338 1103.316
+195321.0651103901 3.757338 1103.3555
+195322.0651104944 3.7572591 1103.2172
+195323.0651105987 3.7574167 1103.2963
+195324.065110703 3.7573774 1103.316
+195325.0651108073 3.7573774 1103.3357
+195326.0651109116 3.7574167 1103.3357
+195327.0651110159 3.7574561 1103.2963
+195328.0651111202 3.7573774 1103.316
+195329.0651112245 3.7573774 1103.316
+195330.0651113288 3.7574954 1103.3752
+195331.0651114332 3.7573774 1103.3752
+195332.0651115375 3.7573774 1103.3555
+195333.0651116418 3.7574954 1103.3357
+195334.0651117461 3.7574954 1103.3357
+195335.0651118504 3.7574167 1103.3357
+195336.0651119547 3.7574167 1103.3949
+195337.065112059 3.7574954 1103.3357
+195338.0651121633 3.7574561 1103.3949
+195339.0651122676 3.7575741 1103.3357
+195340.0651123719 3.7575741 1103.316
+195341.0651124762 3.7576134 1103.2567
+195342.0651125805 3.7576923 1103.3357
+195343.0651126849 3.7575741 1103.3555
+195344.0651127892 3.7575741 1103.3357
+195345.0651128935 3.7575741 1103.316
+195346.0651129978 3.7576134 1103.3949
+195347.0651131021 3.7575741 1103.3949
+195348.0651132064 3.7575741 1103.3357
+195349.0651133107 3.7576134 1103.3752
+195350.065113415 3.7576134 1103.3752
+195351.0651135193 3.7576923 1103.316
+195352.0651136236 3.757653 1103.4147
+195353.0651137279 3.7576134 1103.2765
+195354.0651138322 3.7577317 1103.4147
+195355.0651139366 3.7576923 1103.2765
+195356.0651140409 3.757771 1103.3752
+195357.0651141452 3.7578497 1103.4147
+195358.0651142495 3.7577317 1103.316
+195359.0651143538 3.7578104 1103.3357
+195360.0651144581 3.757771 1103.3752
+195361.0651145624 3.757771 1103.2765
+195362.0651146667 3.757771 1103.4147
+195363.065114771 3.7579284 1103.3357
+195364.0651148753 3.757889 1103.3555
+195365.0651149796 3.757771 1103.2963
+195366.0651150839 3.7578497 1103.4542
+195367.0651151882 3.7578497 1103.3555
+195368.0651152926 3.7578497 1103.2963
+195369.0651153969 3.7580466 1103.3555
+195370.0651155012 3.7579284 1103.3357
+195371.0651156055 3.7578497 1103.4147
+195372.0651157098 3.7578104 1103.3357
+195373.0651158141 3.757889 1103.3752
+195374.0651159184 3.758086 1103.316
+195375.0651160227 3.7580073 1103.316
+195376.065116127 3.7579679 1103.3555
+195377.0651162313 3.7580073 1103.3357
+195378.0651163356 3.758086 1103.2765
+195379.0651164399 3.758086 1103.3752
+195380.0651165443 3.758086 1103.3555
+195381.0651166486 3.7579679 1103.4542
+195382.0651167529 3.758086 1103.3555
+195383.0651168572 3.7581253 1103.4542
+195384.0651169615 3.7581253 1103.474
+195385.0651170658 3.7580466 1103.3555
+195386.0651171701 3.7581646 1103.3357
+195387.0651172744 3.758204 1103.316
+195388.0651173787 3.7582433 1103.316
+195389.065117483 3.7581646 1103.3357
+195390.0651175873 3.7581646 1103.4147
+195391.0651176916 3.7582433 1103.316
+195392.065117796 3.7582433 1103.316
+195393.0651179003 3.758086 1103.2963
+195394.0651180046 3.7583222 1103.316
+195395.0651181089 3.7582829 1103.3555
+195396.0651182132 3.7582433 1103.3357
+195397.0651183175 3.7583222 1103.3752
+195398.0651184218 3.7582829 1103.316
+195399.0651185261 3.7582829 1103.3357
+195400.0651186304 3.7582829 1103.2567
+195401.0651187347 3.7583616 1103.4147
+195402.065118839 3.7584009 1103.3555
+195403.0651189433 3.7584009 1103.3555
+195404.0651190476 3.7583222 1103.3949
+195405.065119152 3.7584796 1103.4147
+195406.0651192563 3.7584009 1103.3555
+195407.0651193606 3.7583616 1103.316
+195408.0651194649 3.7583616 1103.316
+195409.0651195692 3.7583616 1103.3949
+195410.0651196735 3.7584009 1103.3555
+195411.0651197778 3.7585189 1103.2765
+195412.0651198821 3.7584403 1103.2963
+195413.0651199864 3.7585189 1103.4344
+195414.0651200907 3.7584796 1103.3752
+195415.065120195 3.7585583 1103.3357
+195416.0651202993 3.7584796 1103.2963
+195417.0651204037 3.7584403 1103.3555
+195418.065120508 3.7585189 1103.3949
+195419.0651206123 3.7584403 1103.3357
+195420.0651207166 3.7585979 1103.4344
+195421.0651208209 3.7585189 1103.3357
+195422.0651209252 3.7585583 1103.4147
+195423.0651210295 3.7585979 1103.2369
+195424.0651211338 3.7585979 1103.3357
+195425.0651212381 3.7585583 1103.3752
+195426.0651213424 3.7585979 1103.4147
+195427.0651214467 3.7586765 1103.3357
+195428.065121551 3.7586372 1103.3357
+195429.0651216554 3.7586372 1103.2765
+195430.0651217597 3.7586765 1103.3357
+195431.065121864 3.7586372 1103.316
+195432.0651219683 3.7586765 1103.2765
+195433.0651220726 3.7586765 1103.3357
+195434.0651221769 3.7588339 1103.2765
+195435.0651222812 3.7586765 1103.3357
+195436.0651223855 3.7587945 1103.3357
+195437.0651224898 3.7587159 1103.3357
+195438.0651225941 3.7587945 1103.316
+195439.0651226984 3.7587945 1103.2765
+195440.0651228027 3.7588732 1103.2765
+195441.0651229071 3.7588339 1103.3949
+195442.0651230114 3.7587945 1103.3949
+195443.0651231157 3.7587945 1103.3752
+195444.06512322 3.7588339 1103.3357
+195445.0651233243 3.7589128 1103.3752
+195446.0651234286 3.7588732 1103.3752
+195447.0651235329 3.7588339 1103.3752
+195448.0651236372 3.7589521 1103.2765
+195449.0651237415 3.7589915 1103.3752
+195450.0651238458 3.7589521 1103.4147
+195451.0651239501 3.7588339 1103.3357
+195452.0651240544 3.7590308 1103.4147
+195453.0651241587 3.7589915 1103.4147
+195454.0651242631 3.7589128 1103.316
+195455.0651243674 3.7590308 1103.316
+195456.0651244717 3.7589128 1103.4344
+195457.065124576 3.7590308 1103.3357
+195458.0651246803 3.7591095 1103.3752
+195459.0651247846 3.7589521 1103.3949
+195460.0651248889 3.7591884 1103.2765
+195461.0651249932 3.7590702 1103.1975
+195462.0651250975 3.7591095 1103.3555
+195463.0651252018 3.7590702 1103.3555
+195464.0651253061 3.7591095 1103.3949
+195465.0651254104 3.7590702 1103.3357
+195466.0651255148 3.7591095 1103.2567
+195467.0651256191 3.7591488 1103.3357
+195468.0651257234 3.7591488 1103.2963
+195469.0651258277 3.7592278 1103.316
+195470.065125932 3.7592278 1103.3357
+195471.0651260363 3.7593064 1103.3357
+195472.0651261406 3.7591884 1103.3949
+195473.0651262449 3.7591488 1103.3555
+195474.0651263492 3.7592278 1103.2765
+195475.0651264535 3.7592278 1103.3357
+195476.0651265578 3.7593064 1103.3752
+195477.0651266621 3.7593064 1103.3555
+195478.0651267665 3.7593458 1103.4542
+195479.0651268708 3.7594244 1103.3752
+195480.0651269751 3.7593064 1103.2963
+195481.0651270794 3.7593458 1103.3555
+195482.0651271837 3.7593458 1103.3949
+195483.065127288 3.7593458 1103.4147
+195484.0651273923 3.7593458 1103.3555
+195485.0651274966 3.7593064 1103.3357
+195486.0651276009 3.7593851 1103.3357
+195487.0651277052 3.7594244 1103.3752
+195488.0651278095 3.7593064 1103.2963
+195489.0651279138 3.7595034 1103.2765
+195490.0651280181 3.7595034 1103.2963
+195491.0651281225 3.7594638 1103.316
+195492.0651282268 3.7594638 1103.2963
+195493.0651283311 3.7594638 1103.4147
+195494.0651284354 3.7594244 1103.316
+195495.0651285397 3.7595034 1103.316
+195496.065128644 3.7594638 1103.3949
+195497.0651287483 3.7596214 1103.3555
+195498.0651288526 3.7595034 1103.2963
+195499.0651289569 3.7595427 1103.316
+195500.0651290612 3.7597394 1103.2963
+195501.0651291655 3.7595034 1103.2963
+195502.0651292698 3.7596214 1103.2567
+195503.0651293742 3.7596607 1103.2765
+195504.0651294785 3.7595427 1103.2765
+195505.0651295828 3.7597001 1103.316
+195506.0651296871 3.7596214 1103.3752
+195507.0651297914 3.7597394 1103.3752
+195508.0651298957 3.7596607 1103.3357
+195509.06513 3.7596607 1103.2963
+195510.0651301043 3.7596214 1103.2963
+195511.0651302086 3.7597001 1103.3555
+195512.0651303129 3.7596607 1103.2172
+195513.0651304172 3.7597787 1103.316
+195514.0651305215 3.7598183 1103.316
+195515.0651306259 3.759897 1103.4344
+195516.0651307302 3.7597787 1103.2963
+195517.0651308345 3.7598183 1103.2963
+195518.0651309388 3.7597787 1103.4147
+195519.0651310431 3.7598183 1103.4147
+195520.0651311474 3.7597787 1103.4344
+195521.0651312517 3.7598183 1103.4147
+195522.065131356 3.7599363 1103.3357
+195523.0651314603 3.7598577 1103.316
+195524.0651315646 3.7598183 1103.316
+195525.0651316689 3.7599757 1103.3555
+195526.0651317732 3.759897 1103.3357
+195527.0651318775 3.7599363 1103.3357
+195528.0651319819 3.760015 1103.3357
+195529.0651320862 3.759897 1103.3555
+195530.0651321905 3.759897 1103.4147
+195531.0651322948 3.7599757 1103.3752
+195532.0651323991 3.760015 1103.2765
+195533.0651325034 3.7599363 1103.4147
+195534.0651326077 3.7599757 1103.4147
+195535.065132712 3.760015 1103.316
+195536.0651328163 3.760015 1103.3555
+195537.0651329206 3.760015 1103.4147
+195538.0651330249 3.760015 1103.3555
+195539.0651331292 3.7599757 1103.4344
+195540.0651332336 3.7600937 1103.3555
+195541.0651333379 3.7601333 1103.3752
+195542.0651334422 3.760015 1103.3555
+195543.0651335465 3.7601726 1103.4344
+195544.0651336508 3.7601726 1103.3752
+195545.0651337551 3.7602119 1103.316
+195546.0651338594 3.7601333 1103.3949
+195547.0651339637 3.7601726 1103.3555
+195548.065134068 3.7602119 1103.2765
+195549.0651341723 3.7600937 1103.3357
+195550.0651342766 3.7602119 1103.3752
+195551.0651343809 3.7602119 1103.4344
+195552.0651344853 3.7601726 1103.3357
+195553.0651345896 3.7601333 1103.4147
+195554.0651346939 3.7601726 1103.4147
+195555.0651347982 3.7602513 1103.2963
+195556.0651349025 3.76033 1103.3555
+195557.0651350068 3.7604086 1103.2963
+195558.0651351111 3.7602906 1103.3949
+195559.0651352154 3.7604086 1103.3949
+195560.0651353197 3.7604086 1103.3555
+195561.065135424 3.7602906 1103.3555
+195562.0651355283 3.76033 1103.316
+195563.0651356326 3.76033 1103.2567
+195564.065135737 3.7604482 1103.3357
+195565.0651358413 3.7604482 1103.4542
+195566.0651359456 3.7602906 1103.3949
+195567.0651360499 3.7604086 1103.4344
+195568.0651361542 3.7604482 1103.3357
+195569.0651362585 3.7604482 1103.2963
+195570.0651363628 3.7605269 1103.2963
+195571.0651364671 3.7603693 1103.3357
+195572.0651365714 3.7604086 1103.3555
+195573.0651366757 3.7604876 1103.3949
+195574.06513678 3.7604876 1103.3752
+195575.0651368843 3.7605662 1103.3555
+195576.0651369886 3.7606056 1103.2963
+195577.065137093 3.7604876 1103.3949
+195578.0651371973 3.7604086 1103.3752
+195579.0651373016 3.7604482 1103.3949
+195580.0651374059 3.7605662 1103.2765
+195581.0651375102 3.7606056 1103.3949
+195582.0651376145 3.7605662 1103.2963
+195583.0651377188 3.7606449 1103.3949
+195584.0651378231 3.7606449 1103.316
+195585.0651379274 3.7606056 1103.316
+195586.0651380317 3.7606449 1103.3555
+195587.065138136 3.7606843 1103.3949
+195588.0651382403 3.7606449 1103.4344
+195589.0651383447 3.7607238 1103.3555
+195590.065138449 3.7606449 1103.3752
+195591.0651385533 3.7606056 1103.3357
+195592.0651386576 3.7607238 1103.3357
+195593.0651387619 3.7606843 1103.3949
+195594.0651388662 3.7607238 1103.3357
+195595.0651389705 3.7607632 1103.2963
+195596.0651390748 3.7608418 1103.2963
+195597.0651391791 3.7607632 1103.3752
+195598.0651392834 3.7608025 1103.316
+195599.0651393877 3.7609205 1103.2567
+195600.065139492 3.7608418 1103.2765
+195601.0651395964 3.7608025 1103.2567
+195602.0651397007 3.7608418 1103.3555
+195603.065139805 3.7608812 1103.2765
+195604.0651399093 3.7608812 1103.3357
+195605.0651400136 3.7608812 1103.3357
+195606.0651401179 3.7608418 1103.2963
+195607.0651402222 3.7609599 1103.3357
+195608.0651403265 3.7608812 1103.316
+195609.0651404308 3.7608418 1103.4542
+195610.0651405351 3.7609599 1103.316
+195611.0651406394 3.7610388 1103.2963
+195612.0651407437 3.7609599 1103.3949
+195613.065140848 3.7609205 1103.3357
+195614.0651409524 3.7610388 1103.4147
+195615.0651410567 3.7610781 1103.2963
+195616.065141161 3.7609599 1103.3752
+195617.0651412653 3.7610781 1103.3357
+195618.0651413696 3.7609992 1103.3357
+195619.0651414739 3.7610388 1103.3555
+195620.0651415782 3.7609992 1103.2765
+195621.0651416825 3.7610781 1103.3357
+195622.0651417868 3.7611175 1103.316
+195623.0651418911 3.7611961 1103.2567
+195624.0651419954 3.7611175 1103.3752
+195625.0651420997 3.7611961 1103.3357
+195626.0651422041 3.7611568 1103.316
+195627.0651423084 3.7612355 1103.3752
+195628.0651424127 3.7611175 1103.3357
+195629.065142517 3.7611961 1103.2765
+195630.0651426213 3.7612355 1103.3357
+195631.0651427256 3.7612355 1103.3357
+195632.0651428299 3.7611568 1103.2963
+195633.0651429342 3.7613537 1103.3555
+195634.0651430385 3.7613537 1103.316
+195635.0651431428 3.7612748 1103.316
+195636.0651432471 3.7613931 1103.2963
+195637.0651433514 3.7613142 1103.3555
+195638.0651434558 3.7612748 1103.316
+195639.0651435601 3.7613537 1103.4344
+195640.0651436644 3.7613931 1103.3752
+195641.0651437687 3.7612748 1103.3555
+195642.065143873 3.7614324 1103.3555
+195643.0651439773 3.7613931 1103.3949
+195644.0651440816 3.7613931 1103.3752
+195645.0651441859 3.7613931 1103.316
+195646.0651442902 3.7614717 1103.3949
+195647.0651443945 3.7613931 1103.3357
+195648.0651444988 3.7614717 1103.3752
+195649.0651446031 3.7615504 1103.3555
+195650.0651447074 3.7614324 1103.4147
+195651.0651448118 3.7615111 1103.3949
+195652.0651449161 3.7615111 1103.3357
+195653.0651450204 3.7614324 1103.3752
+195654.0651451247 3.7615111 1103.2765
+195655.065145229 3.7614324 1103.3555
+195656.0651453333 3.7615504 1103.2963
+195657.0651454376 3.7615111 1103.2963
+195658.0651455419 3.7615898 1103.3949
+195659.0651456462 3.7615111 1103.4542
+195660.0651457505 3.7616687 1103.3555
+195661.0651458548 3.7616291 1103.3357
+195662.0651459591 3.7616291 1103.3752
+195663.0651460635 3.7616687 1103.4147
+195664.0651461678 3.7616687 1103.4147
+195665.0651462721 3.7616687 1103.4147
+195666.0651463764 3.7615898 1103.316
+195667.0651464807 3.7617474 1103.316
+195668.065146585 3.761708 1103.3357
+195669.0651466893 3.7617867 1103.4344
+195670.0651467936 3.7617474 1103.2963
+195671.0651468979 3.7617474 1103.4147
+195672.0651470022 3.761708 1103.316
+195673.0651471065 3.761826 1103.3555
+195674.0651472108 3.761826 1103.3752
+195675.0651473152 3.7617474 1103.316
+195676.0651474195 3.761826 1103.4147
+195677.0651475238 3.761826 1103.3752
+195678.0651476281 3.7617474 1103.3357
+195679.0651477324 3.7619047 1103.2963
+195680.0651478367 3.7619047 1103.2567
+195681.065147941 3.7618654 1103.3752
+195682.0651480453 3.761826 1103.3555
+195683.0651481496 3.7619441 1103.3357
+195684.0651482539 3.7619441 1103.3357
+195685.0651483582 3.7618654 1103.3357
+195686.0651484625 3.761826 1103.3555
+195687.0651485669 3.762023 1103.4147
+195688.0651486712 3.7619441 1103.4147
+195689.0651487755 3.7619836 1103.316
+195690.0651488798 3.762023 1103.3949
+195691.0651489841 3.762023 1103.4147
+195692.0651490884 3.7619441 1103.4344
+195693.0651491927 3.7618654 1103.316
+195694.065149297 3.762023 1103.3357
+195695.0651494013 3.7620623 1103.2963
+195696.0651495056 3.7621803 1103.2567
+195697.0651496099 3.762023 1103.2172
+195698.0651497142 3.762141 1103.3949
+195699.0651498185 3.7621017 1103.3949
+195700.0651499229 3.7621017 1103.3949
+195701.0651500272 3.762141 1103.2567
+195702.0651501315 3.7621017 1103.2963
+195703.0651502358 3.7621803 1103.3949
+195704.0651503401 3.7621017 1103.2369
+195705.0651504444 3.7621803 1103.4147
+195706.0651505487 3.762259 1103.2765
+195707.065150653 3.7621803 1103.3949
+195708.0651507573 3.7622197 1103.3357
+195709.0651508616 3.7622197 1103.2369
+195710.0651509659 3.7622197 1103.3752
+195711.0651510702 3.7622197 1103.316
+195712.0651511746 3.762259 1103.4344
+195713.0651512789 3.762259 1103.3357
+195714.0651513832 3.7623379 1103.3949
+195715.0651514875 3.7622986 1103.3752
+195716.0651515918 3.7622986 1103.3357
+195717.0651516961 3.7622986 1103.2369
+195718.0651518004 3.7623773 1103.2963
+195719.0651519047 3.7624166 1103.3555
+195720.065152009 3.7623379 1103.3357
+195721.0651521133 3.7622986 1103.3555
+195722.0651522176 3.7623773 1103.3752
+195723.0651523219 3.7624166 1103.2963
+195724.0651524263 3.7624166 1103.3555
+195725.0651525306 3.7624953 1103.3357
+195726.0651526349 3.7624559 1103.2765
+195727.0651527392 3.7624559 1103.3949
+195728.0651528435 3.7624559 1103.3555
+195729.0651529478 3.7624953 1103.3949
+195730.0651530521 3.7625346 1103.3949
+195731.0651531564 3.7624953 1103.4147
+195732.0651532607 3.7624953 1103.3357
+195733.065153365 3.7625346 1103.3752
+195734.0651534693 3.7626529 1103.3555
+195735.0651535736 3.7624953 1103.4147
+195736.0651536779 3.7626135 1103.4147
+195737.0651537823 3.7626529 1103.3752
+195738.0651538866 3.7625742 1103.2963
+195739.0651539909 3.7626135 1103.3555
+195740.0651540952 3.7625346 1103.2963
+195741.0651541995 3.7626135 1103.2765
+195742.0651543038 3.7625346 1103.2963
+195743.0651544081 3.7626922 1103.3357
+195744.0651545124 3.7626529 1103.2369
+195745.0651546167 3.7626922 1103.3357
+195746.065154721 3.7626922 1103.3949
+195747.0651548253 3.7627316 1103.3357
+195748.0651549296 3.7626135 1103.3555
+195749.065155034 3.7626922 1103.3555
+195750.0651551383 3.7626922 1103.3555
+195751.0651552426 3.7627709 1103.316
+195752.0651553469 3.7626922 1103.3752
+195753.0651554512 3.7628102 1103.3357
+195754.0651555555 3.7627709 1103.2963
+195755.0651556598 3.7629285 1103.2963
+195756.0651557641 3.7628102 1103.3752
+195757.0651558684 3.7627709 1103.3555
+195758.0651559727 3.7628102 1103.2963
+195759.065156077 3.7628496 1103.3357
+195760.0651561813 3.7628891 1103.3949
+195761.0651562857 3.7628102 1103.2765
+195762.06515639 3.7628496 1103.2765
+195763.0651564943 3.7628891 1103.316
+195764.0651565986 3.7629285 1103.3555
+195765.0651567029 3.7628891 1103.3949
+195766.0651568072 3.7630072 1103.3752
+195767.0651569115 3.7630858 1103.2963
+195768.0651570158 3.7630465 1103.3357
+195769.0651571201 3.7629678 1103.3357
+195770.0651572244 3.7630465 1103.3752
+195771.0651573287 3.7628891 1103.3949
+195772.065157433 3.7629678 1103.3555
+195773.0651575373 3.7630858 1103.3555
+195774.0651576417 3.7630858 1103.3357
+195775.065157746 3.7630072 1103.2567
+195776.0651578503 3.7630465 1103.2369
+195777.0651579546 3.7630465 1103.2963
+195778.0651580589 3.7631252 1103.316
+195779.0651581632 3.7632041 1103.3949
+195780.0651582675 3.7631645 1103.3357
+195781.0651583718 3.7630858 1103.2765
+195782.0651584761 3.7632434 1103.316
+195783.0651585804 3.7631645 1103.3752
+195784.0651586847 3.7632434 1103.3555
+195785.065158789 3.7632041 1103.4147
+195786.0651588934 3.7632041 1103.3949
+195787.0651589977 3.7632434 1103.2765
+195788.065159102 3.7633615 1103.3752
+195789.0651592063 3.7633221 1103.3555
+195790.0651593106 3.7633221 1103.3752
+195791.0651594149 3.7633615 1103.2963
+195792.0651595192 3.7632434 1103.316
+195793.0651596235 3.7632434 1103.2369
+195794.0651597278 3.7634008 1103.3357
+195795.0651598321 3.7632828 1103.2369
+195796.0651599364 3.7632434 1103.3357
+195797.0651600407 3.7634008 1103.3949
+195798.0651601451 3.7633615 1103.3949
+195799.0651602494 3.7633615 1103.3752
+195800.0651603537 3.7634401 1103.3357
+195801.065160458 3.7634401 1103.3752
+195802.0651605623 3.7633221 1103.3357
+195803.0651606666 3.7634401 1103.3752
+195804.0651607709 3.7634401 1103.2963
+195805.0651608752 3.763519 1103.4147
+195806.0651609795 3.7636371 1103.4147
+195807.0651610838 3.7634401 1103.3752
+195808.0651611881 3.7634795 1103.2963
+195809.0651612924 3.7634008 1103.3949
+195810.0651613967 3.7634795 1103.2963
+195811.0651615011 3.7634795 1103.3357
+195812.0651616054 3.7635584 1103.3555
+195813.0651617097 3.763519 1103.3752
+195814.065161814 3.7634795 1103.2765
+195815.0651619183 3.763519 1103.3752
+195816.0651620226 3.7635977 1103.3555
+195817.0651621269 3.7635977 1103.3752
+195818.0651622312 3.7635977 1103.2963
+195819.0651623355 3.7636764 1103.2963
+195820.0651624398 3.7637157 1103.3752
+195821.0651625441 3.7637551 1103.3949
+195822.0651626484 3.7636371 1103.316
+195823.0651627528 3.7637157 1103.3357
+195824.0651628571 3.7637157 1103.4147
+195825.0651629614 3.7637551 1103.316
+195826.0651630657 3.7637944 1103.3555
+195827.06516317 3.7637551 1103.3555
+195828.0651632743 3.7637551 1103.2963
+195829.0651633786 3.7637551 1103.3752
+195830.0651634829 3.7636764 1103.4147
+195831.0651635872 3.7637551 1103.3357
+195832.0651636915 3.7637551 1103.3949
+195833.0651637958 3.7639127 1103.3357
+195834.0651639001 3.7638733 1103.3752
+195835.0651640045 3.7638733 1103.3555
+195836.0651641088 3.7637944 1103.3949
+195837.0651642131 3.7639127 1103.316
+195838.0651643174 3.7638733 1103.3357
+195839.0651644217 3.7638733 1103.3752
+195840.065164526 3.7639127 1103.3357
+195841.0651646303 3.763834 1103.3752
+195842.0651647346 3.7639127 1103.3949
+195843.0651648389 3.7639914 1103.2765
+195844.0651649432 3.7639127 1103.3357
+195845.0651650475 3.763952 1103.3752
+195846.0651651518 3.7639914 1103.3949
+195847.0651652562 3.7640307 1103.3752
+195848.0651653605 3.7640307 1103.3949
+195849.0651654648 3.7641094 1103.3357
+195850.0651655691 3.7640307 1103.3357
+195851.0651656734 3.76407 1103.316
+195852.0651657777 3.7640307 1103.3555
+195853.065165882 3.7640307 1103.3357
+195854.0651659863 3.7641094 1103.316
+195855.0651660906 3.764149 1103.3752
+195856.0651661949 3.76407 1103.316
+195857.0651662992 3.7639914 1103.3949
+195858.0651664035 3.7641883 1103.316
+195859.0651665078 3.7641094 1103.3555
+195860.0651666122 3.76407 1103.2765
+195861.0651667165 3.764149 1103.3357
+195862.0651668208 3.764149 1103.3555
+195863.0651669251 3.7642276 1103.3357
+195864.0651670294 3.7641883 1103.3949
+195865.0651671337 3.764267 1103.4147
+195866.065167238 3.7642276 1103.3357
+195867.0651673423 3.7642276 1103.3752
+195868.0651674466 3.764267 1103.2172
+195869.0651675509 3.7643456 1103.3752
+195870.0651676552 3.7643063 1103.3357
+195871.0651677595 3.764267 1103.2963
+195872.0651678639 3.764385 1103.3357
+195873.0651679682 3.7644246 1103.3357
+195874.0651680725 3.7643456 1103.3555
+195875.0651681768 3.764385 1103.316
+195876.0651682811 3.7644246 1103.3752
+195877.0651683854 3.764385 1103.3357
+195878.0651684897 3.7643456 1103.3357
+195879.065168594 3.7644246 1103.4147
+195880.0651686983 3.764385 1103.3949
+195881.0651688026 3.7645032 1103.3357
+195882.0651689069 3.7644639 1103.316
+195883.0651690112 3.7645426 1103.2369
+195884.0651691156 3.7645426 1103.4938
+195885.0651692199 3.7644246 1103.3357
+195886.0651693242 3.7645426 1103.2765
+195887.0651694285 3.7645032 1103.3357
+195888.0651695328 3.7645032 1103.316
+195889.0651696371 3.7646213 1103.316
+195890.0651697414 3.7645426 1103.4147
+195891.0651698457 3.7645426 1103.2963
+195892.06516995 3.7646213 1103.3357
+195893.0651700543 3.7645819 1103.3555
+195894.0651701586 3.7646999 1103.316
+195895.0651702629 3.7646213 1103.316
+195896.0651703672 3.7646999 1103.316
+195897.0651704716 3.7646213 1103.4147
+195898.0651705759 3.7646999 1103.2567
+195899.0651706802 3.7646606 1103.3752
+195900.0651707845 3.7646606 1103.4542
+195901.0651708888 3.7647395 1103.2765
+195902.0651709931 3.7647395 1103.3555
+195903.0651710974 3.7646999 1103.3555
+195904.0651712017 3.7647395 1103.2765
+195905.065171306 3.7646999 1103.316
+195906.0651714103 3.7647395 1103.2963
+195907.0651715146 3.7646606 1103.3357
+195908.0651716189 3.7648575 1103.3357
+195909.0651717233 3.7646999 1103.4344
+195910.0651718276 3.7648182 1103.4147
+195911.0651719319 3.7648969 1103.316
+195912.0651720362 3.7648969 1103.3752
+195913.0651721405 3.7648182 1103.316
+195914.0651722448 3.7648182 1103.2765
+195915.0651723491 3.7648575 1103.3752
+195916.0651724534 3.7648575 1103.2963
+195917.0651725577 3.7649755 1103.2963
+195918.065172662 3.7648575 1103.3752
+195919.0651727663 3.7648575 1103.3357
+195920.0651728706 3.7648969 1103.3357
+195921.065172975 3.7650149 1103.3949
+195922.0651730793 3.7649755 1103.3752
+195923.0651731836 3.7649362 1103.3949
+195924.0651732879 3.7649755 1103.3949
+195925.0651733922 3.7650149 1103.5134
+195926.0651734965 3.7648575 1103.3357
+195927.0651736008 3.7650938 1103.3752
+195928.0651737051 3.7650149 1103.4344
+195929.0651738094 3.7650938 1103.316
+195930.0651739137 3.7650938 1103.3555
+195931.065174018 3.7651331 1103.3949
+195932.0651741223 3.7651725 1103.3949
+195933.0651742266 3.7652118 1103.474
+195934.065174331 3.7650545 1103.2963
+195935.0651744353 3.7650938 1103.3949
+195936.0651745396 3.7651331 1103.3357
+195937.0651746439 3.7651331 1103.2567
+195938.0651747482 3.7650938 1103.3752
+195939.0651748525 3.7651725 1103.3752
+195940.0651749568 3.7652118 1103.3949
+195941.0651750611 3.7651331 1103.2963
+195942.0651751654 3.7652905 1103.2567
+195943.0651752697 3.7652512 1103.3555
+195944.065175374 3.7652905 1103.3357
+195945.0651754783 3.7653298 1103.3752
+195946.0651755827 3.7653298 1103.3555
+195947.065175687 3.7653298 1103.4147
+195948.0651757913 3.7652905 1103.3949
+195949.0651758956 3.7652905 1103.2765
+195950.0651759999 3.7653298 1103.3357
+195951.0651761042 3.7652512 1103.3949
+195952.0651762085 3.7653298 1103.3357
+195953.0651763128 3.7654088 1103.316
+195954.0651764171 3.7654481 1103.3357
+195955.0651765214 3.7653694 1103.3357
+195956.0651766257 3.7654874 1103.2963
+195957.06517673 3.7654874 1103.3357
+195958.0651768344 3.7654874 1103.3555
+195959.0651769387 3.7654874 1103.2765
+195960.065177043 3.7654088 1103.2765
+195961.0651771473 3.7655268 1103.3752
+195962.0651772516 3.7654874 1103.3357
+195963.0651773559 3.7654874 1103.3555
+195964.0651774602 3.7655268 1103.4147
+195965.0651775645 3.7654088 1103.3949
+195966.0651776688 3.7656054 1103.3949
+195967.0651777731 3.7656054 1103.2963
+195968.0651778774 3.7656054 1103.3752
+195969.0651779817 3.7656448 1103.4147
+195970.0651780861 3.7656054 1103.3949
+195971.0651781904 3.7655661 1103.3357
+195972.0651782947 3.7655661 1103.316
+195973.065178399 3.7656448 1103.3752
+195974.0651785033 3.7656844 1103.3555
+195975.0651786076 3.7658024 1103.3357
+195976.0651787119 3.7656844 1103.2963
+195977.0651788162 3.7656844 1103.3752
+195978.0651789205 3.7658024 1103.2369
+195979.0651790248 3.7658811 1103.3752
+195980.0651791291 3.7657237 1103.3357
+195981.0651792334 3.7656844 1103.3357
+195982.0651793377 3.7657237 1103.3949
+195983.0651794421 3.7658024 1103.3752
+195984.0651795464 3.765763 1103.3357
+195985.0651796507 3.765763 1103.3357
+195986.065179755 3.7659204 1103.3357
+195987.0651798593 3.7658811 1103.3752
+195988.0651799636 3.7658417 1103.3555
+195989.0651800679 3.7658417 1103.3357
+195990.0651801722 3.7659597 1103.3752
+195991.0651802765 3.7658811 1103.3752
+195992.0651803808 3.7659204 1103.3357
+195993.0651804851 3.7658811 1103.3555
+195994.0651805894 3.7658417 1103.3752
+195995.0651806938 3.7659204 1103.4147
+195996.0651807981 3.766078 1103.316
+195997.0651809024 3.7659993 1103.4147
+195998.0651810067 3.7659993 1103.4147
+195999.065181111 3.766078 1103.2765
+196000.0651812153 3.7660387 1103.4147
+196001.0651813196 3.766078 1103.316
+196002.0651814239 3.7659597 1103.2963
+196003.0651815282 3.7659993 1103.3949
+196004.0651816325 3.7661173 1103.2567
+196005.0651817368 3.766078 1103.316
+196006.0651818411 3.7661173 1103.3555
+196007.0651819455 3.7659993 1103.3752
+196008.0651820498 3.7659993 1103.3555
+196009.0651821541 3.7661173 1103.3752
+196010.0651822584 3.7662354 1103.4147
+196011.0651823627 3.766078 1103.316
+196012.065182467 3.7661173 1103.3357
+196013.0651825713 3.766196 1103.316
+196014.0651826756 3.7661173 1103.3357
+196015.0651827799 3.766196 1103.316
+196016.0651828842 3.766196 1103.3752
+196017.0651829885 3.766196 1103.2567
+196018.0651830928 3.7662354 1103.3357
+196019.0651831971 3.7663143 1103.3752
+196020.0651833015 3.7663143 1103.3555
+196021.0651834058 3.7662749 1103.3752
+196022.0651835101 3.7662749 1103.3949
+196023.0651836144 3.7663143 1103.316
+196024.0651837187 3.7663536 1103.3555
+196025.065183823 3.7663143 1103.3752
+196026.0651839273 3.7663143 1103.3357
+196027.0651840316 3.7662749 1103.2765
+196028.0651841359 3.7663536 1103.3752
+196029.0651842402 3.7664323 1103.3752
+196030.0651843445 3.7663536 1103.3357
+196031.0651844488 3.7663143 1103.316
+196032.0651845532 3.7664323 1103.3357
+196033.0651846575 3.7663929 1103.4147
+196034.0651847618 3.7664323 1103.3555
+196035.0651848661 3.7664323 1103.2963
+196036.0651849704 3.7664716 1103.316
+196037.0651850747 3.7664323 1103.316
+196038.065185179 3.7664716 1103.3752
+196039.0651852833 3.7664716 1103.3752
+196040.0651853876 3.7664323 1103.316
+196041.0651854919 3.766511 1103.3949
+196042.0651855962 3.7666292 1103.2963
+196043.0651857005 3.7665899 1103.3357
+196044.0651858049 3.7665899 1103.3357
+196045.0651859092 3.7665899 1103.3949
+196046.0651860135 3.7665899 1103.3555
+196047.0651861178 3.7667079 1103.3555
+196048.0651862221 3.7666292 1103.316
+196049.0651863264 3.7666292 1103.3357
+196050.0651864307 3.7665899 1103.2963
+196051.065186535 3.7666292 1103.3555
+196052.0651866393 3.7665899 1103.2963
+196053.0651867436 3.7667079 1103.3949
+196054.0651868479 3.7666292 1103.3357
+196055.0651869522 3.7666686 1103.3752
+196056.0651870565 3.7667079 1103.3752
+196057.0651871609 3.7667866 1103.4147
+196058.0651872652 3.7667472 1103.3555
+196059.0651873695 3.7667472 1103.3752
+196060.0651874738 3.7667079 1103.3357
+196061.0651875781 3.7667866 1103.3752
+196062.0651876824 3.7668259 1103.316
+196063.0651877867 3.7667472 1103.3555
+196064.065187891 3.7668653 1103.3555
+196065.0651879953 3.7669048 1103.316
+196066.0651880996 3.7668259 1103.3555
+196067.0651882039 3.7667866 1103.316
+196068.0651883082 3.7667472 1103.316
+196069.0651884126 3.7669835 1103.3555
+196070.0651885169 3.7667472 1103.3752
+196071.0651886212 3.7669442 1103.316
+196072.0651887255 3.7670228 1103.2963
+196073.0651888298 3.7668653 1103.4344
+196074.0651889341 3.7669048 1103.316
+196075.0651890384 3.7669835 1103.2963
+196076.0651891427 3.7669835 1103.2963
+196077.065189247 3.7669048 1103.4542
+196078.0651893513 3.7670622 1103.316
+196079.0651894556 3.7669835 1103.3357
+196080.0651895599 3.7670228 1103.2369
+196081.0651896643 3.7669835 1103.3357
+196082.0651897686 3.7670228 1103.3555
+196083.0651898729 3.7671409 1103.316
+196084.0651899772 3.7670622 1103.4147
+196085.0651900815 3.7670622 1103.4147
+196086.0651901858 3.7670622 1103.3555
+196087.0651902901 3.7671409 1103.3949
+196088.0651903944 3.7671802 1103.3555
+196089.0651904987 3.7671015 1103.3752
+196090.065190603 3.7671802 1103.3752
+196091.0651907073 3.7671802 1103.4147
+196092.0651908116 3.7672198 1103.3555
+196093.065190916 3.7671802 1103.3357
+196094.0651910203 3.7672985 1103.4147
+196095.0651911246 3.7672591 1103.316
+196096.0651912289 3.7672591 1103.2765
+196097.0651913332 3.7672198 1103.4344
+196098.0651914375 3.7673378 1103.3555
+196099.0651915418 3.7672198 1103.2963
+196100.0651916461 3.7673378 1103.3555
+196101.0651917504 3.7672591 1103.3949
+196102.0651918547 3.7673378 1103.3357
+196103.065191959 3.7672985 1103.4542
+196104.0651920633 3.7672985 1103.316
+196105.0651921676 3.7673378 1103.3752
+196106.065192272 3.7672985 1103.3752
+196107.0651923763 3.7673378 1103.3357
+196108.0651924806 3.7673771 1103.2963
+196109.0651925849 3.7674558 1103.3555
+196110.0651926892 3.7673771 1103.3357
+196111.0651927935 3.7674952 1103.3357
+196112.0651928978 3.7674165 1103.3752
+196113.0651930021 3.7674165 1103.3357
+196114.0651931064 3.7673771 1103.2963
+196115.0651932107 3.7674558 1103.2765
+196116.065193315 3.7674558 1103.3949
+196117.0651934193 3.7674952 1103.4344
+196118.0651935237 3.7674558 1103.3752
+196119.065193628 3.7675741 1103.316
+196120.0651937323 3.7676528 1103.3357
+196121.0651938366 3.7674952 1103.3555
+196122.0651939409 3.7675741 1103.3357
+196123.0651940452 3.7675347 1103.3357
+196124.0651941495 3.7676134 1103.2963
+196125.0651942538 3.7675347 1103.3752
+196126.0651943581 3.7676134 1103.4147
+196127.0651944624 3.7674952 1103.4147
+196128.0651945667 3.7678101 1103.3357
+196129.065194671 3.7676134 1103.316
+196130.0651947754 3.7676528 1103.2963
+196131.0651948797 3.7678101 1103.3357
+196132.065194984 3.7676134 1103.4147
+196133.0651950883 3.7676921 1103.3555
+196134.0651951926 3.7676921 1103.3357
+196135.0651952969 3.7676528 1103.3949
+196136.0651954012 3.7677708 1103.2963
+196137.0651955055 3.7677708 1103.3949
+196138.0651956098 3.7677708 1103.3949
+196139.0651957141 3.7678497 1103.3752
+196140.0651958184 3.7677314 1103.3357
+196141.0651959227 3.7678497 1103.3357
+196142.065196027 3.7677314 1103.4542
+196143.0651961314 3.767889 1103.3752
+196144.0651962357 3.7678497 1103.4147
+196145.06519634 3.767889 1103.2765
+196146.0651964443 3.7678101 1103.3555
+196147.0651965486 3.767889 1103.3357
+196148.0651966529 3.767889 1103.3357
+196149.0651967572 3.768007 1103.3357
+196150.0651968615 3.7679284 1103.316
+196151.0651969658 3.7679677 1103.316
+196152.0651970701 3.767889 1103.3555
+196153.0651971744 3.768007 1103.3555
+196154.0651972787 3.767889 1103.4147
+196155.0651973831 3.7680464 1103.3752
+196156.0651974874 3.7679284 1103.3555
+196157.0651975917 3.7679677 1103.2765
+196158.065197696 3.7680857 1103.316
+196159.0651978003 3.7680464 1103.2963
+196160.0651979046 3.7680464 1103.3752
+196161.0651980089 3.7679677 1103.316
+196162.0651981132 3.7680857 1103.3555
+196163.0651982175 3.7681646 1103.3949
+196164.0651983218 3.7680857 1103.3949
+196165.0651984261 3.7681253 1103.2963
+196166.0651985304 3.7681646 1103.2765
+196167.0651986348 3.7681253 1103.3949
+196168.0651987391 3.7680464 1103.3357
+196169.0651988434 3.7681253 1103.4344
+196170.0651989477 3.7681646 1103.2963
+196171.065199052 3.7681646 1103.3357
+196172.0651991563 3.7682433 1103.4344
+196173.0651992606 3.7681646 1103.3949
+196174.0651993649 3.768204 1103.3555
+196175.0651994692 3.7682433 1103.316
+196176.0651995735 3.7683613 1103.316
+196177.0651996778 3.7682433 1103.316
+196178.0651997821 3.768204 1103.316
+196179.0651998864 3.768322 1103.3752
+196180.0651999908 3.768322 1103.4147
+196181.0652000951 3.7684007 1103.3555
+196182.0652001994 3.7682827 1103.316
+196183.0652003037 3.7684402 1103.4344
+196184.065200408 3.7684007 1103.2567
+196185.0652005123 3.7683613 1103.316
+196186.0652006166 3.7684007 1103.4344
+196187.0652007209 3.7684007 1103.2765
+196188.0652008252 3.7684007 1103.474
+196189.0652009295 3.7684796 1103.3555
+196190.0652010338 3.7684007 1103.4147
+196191.0652011381 3.7685189 1103.3357
+196192.0652012425 3.7685583 1103.3555
+196193.0652013468 3.7685189 1103.316
+196194.0652014511 3.7684402 1103.3949
+196195.0652015554 3.7684796 1103.3357
+196196.0652016597 3.7685976 1103.3752
+196197.065201764 3.7686369 1103.474
+196198.0652018683 3.7685189 1103.3357
+196199.0652019726 3.7685583 1103.316
+196200.0652020769 3.7685976 1103.2765
+196201.0652021812 3.7685976 1103.3752
+196202.0652022855 3.7687552 1103.3949
+196203.0652023898 3.7685976 1103.3555
+196204.0652024942 3.7685583 1103.3752
+196205.0652025985 3.7685583 1103.3357
+196206.0652027028 3.7686369 1103.2765
+196207.0652028071 3.7685976 1103.2963
+196208.0652029114 3.7686369 1103.3752
+196209.0652030157 3.7686763 1103.2963
+196210.06520312 3.7685976 1103.3357
+196211.0652032243 3.7687552 1103.3555
+196212.0652033286 3.7687945 1103.2765
+196213.0652034329 3.7687945 1103.2963
+196214.0652035372 3.7687552 1103.4344
+196215.0652036415 3.7687945 1103.316
+196216.0652037458 3.7687552 1103.3357
+196217.0652038502 3.7687945 1103.3752
+196218.0652039545 3.7687552 1103.3357
+196219.0652040588 3.7688732 1103.316
+196220.0652041631 3.7689126 1103.316
+196221.0652042674 3.7688732 1103.3357
+196222.0652043717 3.7689126 1103.2963
+196223.065204476 3.7688339 1103.2765
+196224.0652045803 3.7688732 1103.3752
+196225.0652046846 3.7689126 1103.3752
+196226.0652047889 3.7689519 1103.3555
+196227.0652048932 3.7689126 1103.3555
+196228.0652049975 3.7689912 1103.3752
+196229.0652051019 3.7689519 1103.4147
+196230.0652052062 3.7689519 1103.3555
+196231.0652053105 3.7689126 1103.3555
+196232.0652054148 3.7689912 1103.2963
+196233.0652055191 3.7689519 1103.3555
+196234.0652056234 3.7689912 1103.4938
+196235.0652057277 3.7689912 1103.2567
+196236.065205832 3.7690701 1103.3752
+196237.0652059363 3.7689912 1103.3752
+196238.0652060406 3.7689912 1103.2963
+196239.0652061449 3.7690701 1103.2963
+196240.0652062492 3.7691095 1103.3357
+196241.0652063536 3.7691882 1103.316
+196242.0652064579 3.7689912 1103.3949
+196243.0652065622 3.7690701 1103.3555
+196244.0652066665 3.7691488 1103.4147
+196245.0652067708 3.7690701 1103.3357
+196246.0652068751 3.7691095 1103.316
+196247.0652069794 3.7691882 1103.2567
+196248.0652070837 3.7690701 1103.2765
+196249.065207188 3.7691488 1103.3949
+196250.0652072923 3.7691882 1103.3357
+196251.0652073966 3.7692275 1103.2765
+196252.0652075009 3.7692668 1103.3752
+196253.0652076053 3.7693062 1103.2765
+196254.0652077096 3.7693062 1103.4147
+196255.0652078139 3.7692668 1103.3357
+196256.0652079182 3.7693062 1103.3752
+196257.0652080225 3.7693455 1103.4147
+196258.0652081268 3.7693851 1103.316
+196259.0652082311 3.7693851 1103.3949
+196260.0652083354 3.7693455 1103.3357
+196261.0652084397 3.7694638 1103.2369
+196262.065208544 3.7694244 1103.3357
+196263.0652086483 3.7692668 1103.2765
+196264.0652087526 3.7693062 1103.2765
+196265.0652088569 3.7694244 1103.3752
+196266.0652089613 3.7694638 1103.3949
+196267.0652090656 3.7694638 1103.316
+196268.0652091699 3.7695031 1103.3752
+196269.0652092742 3.7695031 1103.3752
+196270.0652093785 3.7694638 1103.3357
+196271.0652094828 3.7695031 1103.3357
+196272.0652095871 3.7694638 1103.3949
+196273.0652096914 3.7696607 1103.4147
+196274.0652097957 3.7695031 1103.3752
+196275.0652099 3.7695818 1103.3555
+196276.0652100043 3.7695818 1103.2765
+196277.0652101086 3.7695818 1103.3949
+196278.065210213 3.7696211 1103.3949
+196279.0652103173 3.7695031 1103.316
+196280.0652104216 3.7696211 1103.3555
+196281.0652105259 3.7695818 1103.3357
+196282.0652106302 3.7697001 1103.316
+196283.0652107345 3.7696607 1103.3555
+196284.0652108388 3.7696607 1103.316
+196285.0652109431 3.7697394 1103.3357
+196286.0652110474 3.7696607 1103.2963
+196287.0652111517 3.7696607 1103.3949
+196288.065211256 3.7697001 1103.3752
+196289.0652113603 3.7697394 1103.316
+196290.0652114647 3.7697394 1103.4147
+196291.065211569 3.7697001 1103.3949
+196292.0652116733 3.7697787 1103.3357
+196293.0652117776 3.7697394 1103.3357
+196294.0652118819 3.7697001 1103.3752
+196295.0652119862 3.7697787 1103.3357
+196296.0652120905 3.7698181 1103.3949
+196297.0652121948 3.7698967 1103.2963
+196298.0652122991 3.7698574 1103.3357
+196299.0652124034 3.7698967 1103.3357
+196300.0652125077 3.7697787 1103.3555
+196301.065212612 3.7698574 1103.2963
+196302.0652127163 3.7699757 1103.3949
+196303.0652128207 3.7699361 1103.4344
+196304.065212925 3.770015 1103.3555
+196305.0652130293 3.7699757 1103.2765
+196306.0652131336 3.770015 1103.3555
+196307.0652132379 3.7699757 1103.3357
+196308.0652133422 3.7699361 1103.3357
+196309.0652134465 3.770015 1103.3752
+196310.0652135508 3.770015 1103.3752
+196311.0652136551 3.7699361 1103.3357
+196312.0652137594 3.770015 1103.3752
+196313.0652138637 3.7699757 1103.3949
+196314.065213968 3.7700543 1103.4147
+196315.0652140724 3.7700937 1103.2963
+196316.0652141767 3.7700937 1103.3752
+196317.065214281 3.7699361 1103.3752
+196318.0652143853 3.7700937 1103.316
+196319.0652144896 3.7700937 1103.3357
+196320.0652145939 3.770133 1103.2963
+196321.0652146982 3.770133 1103.4344
+196322.0652148025 3.770133 1103.3357
+196323.0652149068 3.770015 1103.4542
+196324.0652150111 3.7701724 1103.2963
+196325.0652151154 3.7700937 1103.4147
+196326.0652152197 3.7702117 1103.2567
+196327.0652153241 3.7701724 1103.2963
+196328.0652154284 3.770251 1103.2963
+196329.0652155327 3.770251 1103.3357
+196330.065215637 3.7702906 1103.2765
+196331.0652157413 3.770251 1103.316
+196332.0652158456 3.7702906 1103.4147
+196333.0652159499 3.77033 1103.3357
+196334.0652160542 3.77033 1103.3949
+196335.0652161585 3.7703693 1103.3949
+196336.0652162628 3.7702906 1103.3357
+196337.0652163671 3.770251 1103.3752
+196338.0652164714 3.770448 1103.3555
+196339.0652165757 3.7702906 1103.3949
+196340.0652166801 3.77033 1103.3555
+196341.0652167844 3.77033 1103.4147
+196342.0652168887 3.7704086 1103.316
+196343.065216993 3.770448 1103.316
+196344.0652170973 3.7704086 1103.4147
+196345.0652172016 3.7704873 1103.316
+196346.0652173059 3.770448 1103.2765
+196347.0652174102 3.7704086 1103.3752
+196348.0652175145 3.7704086 1103.3949
+196349.0652176188 3.7704873 1103.2765
+196350.0652177231 3.7704873 1103.2765
+196351.0652178274 3.7704873 1103.3555
+196352.0652179318 3.770566 1103.3555
+196353.0652180361 3.770448 1103.3752
+196354.0652181404 3.770566 1103.316
+196355.0652182447 3.770566 1103.2765
+196356.065218349 3.7706449 1103.3555
+196357.0652184533 3.7706449 1103.3357
+196358.0652185576 3.7706056 1103.3752
+196359.0652186619 3.7707629 1103.3949
+196360.0652187662 3.7706056 1103.316
+196361.0652188705 3.7706056 1103.3949
+196362.0652189748 3.7706842 1103.3357
+196363.0652190791 3.7706842 1103.2567
+196364.0652191835 3.7707629 1103.3555
+196365.0652192878 3.7706449 1103.3357
+196366.0652193921 3.7707236 1103.2567
+196367.0652194964 3.7706842 1103.316
+196368.0652196007 3.7707629 1103.3752
+196369.065219705 3.7707629 1103.2765
+196370.0652198093 3.7708023 1103.4147
+196371.0652199136 3.7707236 1103.3752
+196372.0652200179 3.7708416 1103.2963
+196373.0652201222 3.7707629 1103.3555
+196374.0652202265 3.7707236 1103.4147
+196375.0652203308 3.7708023 1103.3357
+196376.0652204352 3.7708809 1103.4147
+196377.0652205395 3.7708809 1103.2765
+196378.0652206438 3.7708023 1103.2963
+196379.0652207481 3.7708416 1103.3752
+196380.0652208524 3.7708809 1103.3555
+196381.0652209567 3.7709599 1103.3949
+196382.065221061 3.7709599 1103.3555
+196383.0652211653 3.7709205 1103.316
+196384.0652212696 3.7709205 1103.2567
+196385.0652213739 3.7709205 1103.316
+196386.0652214782 3.7709599 1103.3949
+196387.0652215825 3.7710385 1103.316
+196388.0652216868 3.7710385 1103.3752
+196389.0652217912 3.7710779 1103.3555
+196390.0652218955 3.7710385 1103.3555
+196391.0652219998 3.7710385 1103.316
+196392.0652221041 3.7710779 1103.4344
+196393.0652222084 3.7710779 1103.4147
+196394.0652223127 3.7711565 1103.2567
+196395.065222417 3.7710385 1103.3752
+196396.0652225213 3.7711565 1103.3752
+196397.0652226256 3.7709992 1103.3357
+196398.0652227299 3.7711959 1103.3752
+196399.0652228342 3.7711959 1103.2765
+196400.0652229385 3.7711565 1103.3555
+196401.0652230429 3.7710779 1103.3949
+196402.0652231472 3.7712355 1103.4344
+196403.0652232515 3.7711959 1103.4147
+196404.0652233558 3.7711565 1103.3949
+196405.0652234601 3.7712748 1103.3357
+196406.0652235644 3.7712748 1103.3357
+196407.0652236687 3.7712355 1103.3555
+196408.065223773 3.7712355 1103.4147
+196409.0652238773 3.7712748 1103.3752
+196410.0652239816 3.7711565 1103.3357
+196411.0652240859 3.7713535 1103.3555
+196412.0652241902 3.7712748 1103.3555
+196413.0652242946 3.7713141 1103.3555
+196414.0652243989 3.7712748 1103.3752
+196415.0652245032 3.7713535 1103.3357
+196416.0652246075 3.7713928 1103.316
+196417.0652247118 3.7713928 1103.2963
+196418.0652248161 3.7714322 1103.2765
+196419.0652249204 3.7714322 1103.3752
+196420.0652250247 3.7714322 1103.3357
+196421.065225129 3.7713535 1103.316
+196422.0652252333 3.7714322 1103.3357
+196423.0652253376 3.7714715 1103.4344
+196424.0652254419 3.7715111 1103.3949
+196425.0652255462 3.7714322 1103.316
+196426.0652256506 3.7714715 1103.3555
+196427.0652257549 3.7715111 1103.3357
+196428.0652258592 3.7715111 1103.316
+196429.0652259635 3.7715111 1103.3555
+196430.0652260678 3.7714715 1103.2963
+196431.0652261721 3.7715504 1103.3752
+196432.0652262764 3.7715504 1103.3555
+196433.0652263807 3.7715504 1103.316
+196434.065226485 3.7716291 1103.3555
+196435.0652265893 3.7715898 1103.316
+196436.0652266936 3.7716291 1103.2567
+196437.0652267979 3.7716291 1103.3752
+196438.0652269023 3.7716684 1103.3357
+196439.0652270066 3.7716684 1103.3752
+196440.0652271109 3.7717078 1103.316
+196441.0652272152 3.7716684 1103.2963
+196442.0652273195 3.7717471 1103.2963
+196443.0652274238 3.7717078 1103.3752
+196444.0652275281 3.7717078 1103.316
+196445.0652276324 3.771826 1103.3949
+196446.0652277367 3.7717865 1103.2963
+196447.065227841 3.7717865 1103.316
+196448.0652279453 3.771826 1103.316
+196449.0652280496 3.7719047 1103.2765
+196450.065228154 3.771826 1103.316
+196451.0652282583 3.7717865 1103.3555
+196452.0652283626 3.771826 1103.3555
+196453.0652284669 3.771826 1103.2963
+196454.0652285712 3.7718654 1103.3949
+196455.0652286755 3.7719047 1103.2765
+196456.0652287798 3.771944 1103.3752
+196457.0652288841 3.771944 1103.3752
+196458.0652289884 3.7718654 1103.3357
+196459.0652290927 3.7719047 1103.316
+196460.065229197 3.7718654 1103.4542
+196461.0652293013 3.7719047 1103.3752
+196462.0652294056 3.7719834 1103.2567
+196463.06522951 3.7720227 1103.4147
+196464.0652296143 3.7719834 1103.316
+196465.0652297186 3.7721014 1103.3357
+196466.0652298229 3.7719047 1103.3949
+196467.0652299272 3.7720621 1103.3752
+196468.0652300315 3.7719834 1103.316
+196469.0652301358 3.7720621 1103.2765
+196470.0652302401 3.7721014 1103.316
+196471.0652303444 3.7719047 1103.316
+196472.0652304487 3.7721014 1103.3752
+196473.065230553 3.772141 1103.3357
+196474.0652306573 3.772141 1103.4147
+196475.0652307617 3.7722197 1103.2765
+196476.065230866 3.7721803 1103.2963
+196477.0652309703 3.7722197 1103.3752
+196478.0652310746 3.7722197 1103.3949
+196479.0652311789 3.7720621 1103.4147
+196480.0652312832 3.772259 1103.3752
+196481.0652313875 3.7722983 1103.316
+196482.0652314918 3.7722197 1103.3752
+196483.0652315961 3.7723377 1103.4344
+196484.0652317004 3.772259 1103.2567
+196485.0652318047 3.7723377 1103.3357
+196486.065231909 3.7723377 1103.3555
+196487.0652320134 3.772377 1103.2963
+196488.0652321177 3.7724164 1103.3949
+196489.065232222 3.7724559 1103.316
+196490.0652323263 3.772377 1103.4147
+196491.0652324306 3.7724164 1103.4344
+196492.0652325349 3.7723377 1103.2963
+196493.0652326392 3.7724953 1103.3555
+196494.0652327435 3.7724559 1103.2369
+196495.0652328478 3.7723377 1103.3555
+196496.0652329521 3.7724164 1103.3752
+196497.0652330564 3.772377 1103.3357
+196498.0652331607 3.7724953 1103.2963
+196499.0652332651 3.772377 1103.3357
+196500.0652333694 3.7724953 1103.2963
+196501.0652334737 3.7724559 1103.3752
+196502.065233578 3.7724953 1103.316
+196503.0652336823 3.7724953 1103.4344
+196504.0652337866 3.7725739 1103.2963
+196505.0652338909 3.7726133 1103.3949
+196506.0652339952 3.7726526 1103.3555
+196507.0652340995 3.7725346 1103.3949
+196508.0652342038 3.7725739 1103.3555
+196509.0652343081 3.7725346 1103.3357
+196510.0652344124 3.7725739 1103.3357
+196511.0652345167 3.7726526 1103.3357
+196512.0652346211 3.7725739 1103.3357
+196513.0652347254 3.7727313 1103.2369
+196514.0652348297 3.772692 1103.3949
+196515.065234934 3.772692 1103.4147
+196516.0652350383 3.7726133 1103.4147
+196517.0652351426 3.772692 1103.2963
+196518.0652352469 3.772692 1103.2963
+196519.0652353512 3.7727313 1103.2963
+196520.0652354555 3.772692 1103.2963
+196521.0652355598 3.772692 1103.3949
+196522.0652356641 3.7727709 1103.2963
+196523.0652357684 3.7727709 1103.3357
+196524.0652358728 3.7728102 1103.3357
+196525.0652359771 3.7728102 1103.316
+196526.0652360814 3.7728889 1103.4542
+196527.0652361857 3.7728496 1103.3752
+196528.06523629 3.7728102 1103.3555
+196529.0652363943 3.7728496 1103.3949
+196530.0652364986 3.7728496 1103.2765
+196531.0652366029 3.7728889 1103.3357
+196532.0652367072 3.7729282 1103.3949
+196533.0652368115 3.7729282 1103.3357
+196534.0652369158 3.7728889 1103.3357
+196535.0652370201 3.7729676 1103.4147
+196536.0652371245 3.7729282 1103.2765
+196537.0652372288 3.7729676 1103.3555
+196538.0652373331 3.7730069 1103.3949
+196539.0652374374 3.7730069 1103.3949
+196540.0652375417 3.7730069 1103.4147
+196541.065237646 3.7730463 1103.3752
+196542.0652377503 3.7730463 1103.3357
+196543.0652378546 3.7730463 1103.3949
+196544.0652379589 3.7730069 1103.3357
+196545.0652380632 3.7730069 1103.3357
+196546.0652381675 3.7730069 1103.3949
+196547.0652382718 3.7732038 1103.3949
+196548.0652383761 3.7730069 1103.2963
+196549.0652384805 3.7731252 1103.3752
+196550.0652385848 3.7730069 1103.3949
+196551.0652386891 3.7731645 1103.2765
+196552.0652387934 3.7731252 1103.3357
+196553.0652388977 3.7730858 1103.2369
+196554.065239002 3.7732825 1103.2567
+196555.0652391063 3.7732432 1103.4147
+196556.0652392106 3.7731252 1103.3357
+196557.0652393149 3.7732038 1103.3357
+196558.0652394192 3.7733219 1103.3752
+196559.0652395235 3.7731645 1103.4147
+196560.0652396278 3.7733614 1103.3555
+196561.0652397322 3.7733614 1103.3555
+196562.0652398365 3.7732432 1103.3555
+196563.0652399408 3.7734008 1103.3357
+196564.0652400451 3.7732432 1103.3752
+196565.0652401494 3.7732825 1103.3357
+196566.0652402537 3.7733614 1103.3555
+196567.065240358 3.7734008 1103.4147
+196568.0652404623 3.7734008 1103.4344
+196569.0652405666 3.7734401 1103.3949
+196570.0652406709 3.7732825 1103.4344
+196571.0652407752 3.7734401 1103.316
+196572.0652408795 3.7734008 1103.3357
+196573.0652409839 3.7733614 1103.316
+196574.0652410882 3.7734401 1103.2963
+196575.0652411925 3.7733219 1103.2963
+196576.0652412968 3.7735581 1103.3949
+196577.0652414011 3.7734401 1103.3949
+196578.0652415054 3.7735188 1103.2765
+196579.0652416097 3.7735581 1103.2963
+196580.065241714 3.7734795 1103.4147
+196581.0652418183 3.7734795 1103.3555
+196582.0652419226 3.7735975 1103.4542
+196583.0652420269 3.7734795 1103.3555
+196584.0652421312 3.7735188 1103.3357
+196585.0652422355 3.7736368 1103.2963
+196586.0652423399 3.7734401 1103.4147
+196587.0652424442 3.7735975 1103.3555
+196588.0652425485 3.7735188 1103.316
+196589.0652426528 3.7736368 1103.2567
+196590.0652427571 3.7736764 1103.3555
+196591.0652428614 3.7735975 1103.3555
+196592.0652429657 3.7735581 1103.316
+196593.06524307 3.7736368 1103.3357
+196594.0652431743 3.7737551 1103.3357
+196595.0652432786 3.7735975 1103.5134
+196596.0652433829 3.7737157 1103.3357
+196597.0652434872 3.7737944 1103.316
+196598.0652435916 3.7737551 1103.3949
+196599.0652436959 3.7737944 1103.2567
+196600.0652438002 3.7737944 1103.316
+196601.0652439045 3.7738338 1103.3555
+196602.0652440088 3.7737551 1103.3752
+196603.0652441131 3.7738731 1103.316
+196604.0652442174 3.7738338 1103.3555
+196605.0652443217 3.7739518 1103.3357
+196606.065244426 3.7737944 1103.4344
+196607.0652445303 3.7739124 1103.3555
+196608.0652446346 3.7739518 1103.316
+196609.0652447389 3.7738731 1103.2963
+196610.0652448433 3.7739124 1103.316
+196611.0652449476 3.7739124 1103.2963
+196612.0652450519 3.7738731 1103.3357
+196613.0652451562 3.77407 1103.2765
+196614.0652452605 3.7740307 1103.3357
+196615.0652453648 3.7739518 1103.3357
+196616.0652454691 3.77407 1103.316
+196617.0652455734 3.7739913 1103.2765
+196618.0652456777 3.7740307 1103.3752
+196619.065245782 3.7741094 1103.2765
+196620.0652458863 3.7740307 1103.3752
+196621.0652459906 3.77407 1103.316
+196622.065246095 3.7740307 1103.2567
+196623.0652461993 3.77407 1103.3555
+196624.0652463036 3.7741487 1103.3555
+196625.0652464079 3.77407 1103.2963
+196626.0652465122 3.7741487 1103.316
+196627.0652466165 3.77407 1103.3949
+196628.0652467208 3.77407 1103.3357
+196629.0652468251 3.7742274 1103.3555
+196630.0652469294 3.7742274 1103.3555
+196631.0652470337 3.7741487 1103.3357
+196632.065247138 3.7742274 1103.316
+196633.0652472423 3.7742274 1103.316
+196634.0652473466 3.774188 1103.3949
+196635.065247451 3.774188 1103.2765
+196636.0652475553 3.774188 1103.3752
+196637.0652476596 3.7743063 1103.3555
+196638.0652477639 3.7742274 1103.3357
+196639.0652478682 3.7743456 1103.3555
+196640.0652479725 3.7742274 1103.3752
+196641.0652480768 3.7743456 1103.3555
+196642.0652481811 3.774385 1103.3752
+196643.0652482854 3.7743456 1103.4147
+196644.0652483897 3.7744243 1103.4542
+196645.065248494 3.774385 1103.3752
+196646.0652485983 3.7744243 1103.3752
+196647.0652487027 3.774385 1103.3949
+196648.065248807 3.774503 1103.3555
+196649.0652489113 3.7743456 1103.316
+196650.0652490156 3.7744243 1103.3357
+196651.0652491199 3.7744637 1103.316
+196652.0652492242 3.7744637 1103.2963
+196653.0652493285 3.7745423 1103.2567
+196654.0652494328 3.7744243 1103.3357
+196655.0652495371 3.774503 1103.316
+196656.0652496414 3.774503 1103.2567
+196657.0652497457 3.7745817 1103.4147
+196658.06524985 3.774503 1103.3949
+196659.0652499544 3.7746212 1103.3555
+196660.0652500587 3.774503 1103.4344
+196661.065250163 3.7746212 1103.2765
+196662.0652502673 3.7744637 1103.3949
+196663.0652503716 3.7745817 1103.2963
+196664.0652504759 3.7746606 1103.4344
+196665.0652505802 3.7746999 1103.2963
+196666.0652506845 3.7745817 1103.2765
+196667.0652507888 3.7746606 1103.2963
+196668.0652508931 3.7746999 1103.3752
+196669.0652509974 3.7746212 1103.3357
+196670.0652511017 3.7746606 1103.316
+196671.065251206 3.7747393 1103.2567
+196672.0652513104 3.7746606 1103.3752
+196673.0652514147 3.7747393 1103.3752
+196674.065251519 3.7746999 1103.3357
+196675.0652516233 3.7748179 1103.3949
+196676.0652517276 3.7747393 1103.4147
+196677.0652518319 3.7747786 1103.3752
+196678.0652519362 3.7748573 1103.2567
+196679.0652520405 3.7748179 1103.3949
+196680.0652521448 3.7748179 1103.3357
+196681.0652522491 3.7748179 1103.3752
+196682.0652523534 3.7749362 1103.1777
+196683.0652524577 3.7749362 1103.3555
+196684.0652525621 3.7748179 1103.3357
+196685.0652526664 3.7748966 1103.3357
+196686.0652527707 3.7749362 1103.3555
+196687.065252875 3.7749362 1103.2765
+196688.0652529793 3.7749755 1103.3949
+196689.0652530836 3.7749362 1103.316
+196690.0652531879 3.7748966 1103.4344
+196691.0652532922 3.7749362 1103.4147
+196692.0652533965 3.7750542 1103.2963
+196693.0652535008 3.7750149 1103.3752
+196694.0652536051 3.7750542 1103.316
+196695.0652537094 3.7750542 1103.2765
+196696.0652538138 3.7750149 1103.316
+196697.0652539181 3.7750149 1103.316
+196698.0652540224 3.7750542 1103.3357
+196699.0652541267 3.7750936 1103.3357
+196700.065254231 3.7750542 1103.2765
+196701.0652543353 3.7750542 1103.316
+196702.0652544396 3.7750936 1103.3357
+196703.0652545439 3.7750936 1103.316
+196704.0652546482 3.7751329 1103.3357
+196705.0652547525 3.7752118 1103.2963
+196706.0652548568 3.7751329 1103.3555
+196707.0652549611 3.7751722 1103.3357
+196708.0652550654 3.7750936 1103.3555
+196709.0652551698 3.7751722 1103.3949
+196710.0652552741 3.7752512 1103.3357
+196711.0652553784 3.7753298 1103.3357
+196712.0652554827 3.7751329 1103.3752
+196713.065255587 3.7752905 1103.3949
+196714.0652556913 3.7751329 1103.2963
+196715.0652557956 3.7753298 1103.3752
+196716.0652558999 3.7752905 1103.4542
+196717.0652560042 3.7754085 1103.316
+196718.0652561085 3.7752905 1103.3357
+196719.0652562128 3.7753298 1103.3555
+196720.0652563171 3.7752905 1103.316
+196721.0652564215 3.7753692 1103.3949
+196722.0652565258 3.7754085 1103.3949
+196723.0652566301 3.7754085 1103.3555
+196724.0652567344 3.7754872 1103.3357
+196725.0652568387 3.7753692 1103.3357
+196726.065256943 3.7754872 1103.3357
+196727.0652570473 3.7754478 1103.316
+196728.0652571516 3.7754478 1103.2765
+196729.0652572559 3.7754478 1103.2765
+196730.0652573602 3.7754478 1103.3357
+196731.0652574645 3.7754478 1103.3752
+196732.0652575688 3.7754872 1103.3357
+196733.0652576732 3.7755268 1103.3555
+196734.0652577775 3.7754478 1103.3752
+196735.0652578818 3.7754872 1103.316
+196736.0652579861 3.7756054 1103.3949
+196737.0652580904 3.7756054 1103.3752
+196738.0652581947 3.7755268 1103.2963
+196739.065258299 3.7756054 1103.2765
+196740.0652584033 3.7756054 1103.2369
+196741.0652585076 3.7757235 1103.3555
+196742.0652586119 3.7757235 1103.316
+196743.0652587162 3.7756841 1103.3357
+196744.0652588205 3.7756448 1103.3752
+196745.0652589248 3.7757235 1103.3949
+196746.0652590292 3.7755268 1103.3357
+196747.0652591335 3.7756841 1103.2765
+196748.0652592378 3.7757235 1103.316
+196749.0652593421 3.7757628 1103.3357
+196750.0652594464 3.7756841 1103.3752
+196751.0652595507 3.7757235 1103.3949
+196752.065259655 3.7757235 1103.3555
+196753.0652597593 3.7758417 1103.3949
+196754.0652598636 3.7758021 1103.3357
+196755.0652599679 3.7759597 1103.3357
+196756.0652600722 3.7758417 1103.316
+196757.0652601765 3.7758021 1103.3357
+196758.0652602809 3.7758021 1103.316
+196759.0652603852 3.7758417 1103.316
+196760.0652604895 3.7758811 1103.316
+196761.0652605938 3.7758021 1103.3752
+196762.0652606981 3.7759991 1103.3752
+196763.0652608024 3.7758811 1103.2765
+196764.0652609067 3.7758811 1103.3949
+196765.065261011 3.7759204 1103.4147
+196766.0652611153 3.7759597 1103.316
+196767.0652612196 3.7759204 1103.3949
+196768.0652613239 3.7759991 1103.316
+196769.0652614282 3.7759991 1103.2963
+196770.0652615326 3.7760384 1103.2765
+196771.0652616369 3.7760777 1103.2963
+196772.0652617412 3.7759597 1103.3752
+196773.0652618455 3.7760384 1103.3752
+196774.0652619498 3.7759597 1103.2963
+196775.0652620541 3.7760777 1103.3555
+196776.0652621584 3.7760384 1103.316
+196777.0652622627 3.7760384 1103.3357
+196778.065262367 3.7762353 1103.3555
+196779.0652624713 3.7761567 1103.3949
+196780.0652625756 3.776196 1103.316
+196781.0652626799 3.7761567 1103.3357
+196782.0652627843 3.7762353 1103.3555
+196783.0652628886 3.7762747 1103.3357
+196784.0652629929 3.7762353 1103.3357
+196785.0652630972 3.7761567 1103.3357
+196786.0652632015 3.776196 1103.3555
+196787.0652633058 3.7762353 1103.3949
+196788.0652634101 3.7762353 1103.3752
+196789.0652635144 3.776432 1103.316
+196790.0652636187 3.776314 1103.2567
+196791.065263723 3.7762353 1103.4147
+196792.0652638273 3.7762747 1103.3949
+196793.0652639316 3.776314 1103.3752
+196794.0652640359 3.7763927 1103.3357
+196795.0652641403 3.776314 1103.3752
+196796.0652642446 3.7763927 1103.3555
+196797.0652643489 3.7763534 1103.3357
+196798.0652644532 3.7763534 1103.3949
+196799.0652645575 3.776432 1103.3357
+196800.0652646618 3.7763534 1103.3357
+196801.0652647661 3.7764716 1103.3949
+196802.0652648704 3.7763927 1103.3357
+196803.0652649747 3.7763927 1103.3949
+196804.065265079 3.7764716 1103.2765
+196805.0652651833 3.776432 1103.2963
+196806.0652652876 3.776511 1103.4147
+196807.065265392 3.776511 1103.3949
+196808.0652654963 3.7765896 1103.3555
+196809.0652656006 3.7764716 1103.2765
+196810.0652657049 3.7764716 1103.3555
+196811.0652658092 3.776432 1103.3357
+196812.0652659135 3.7765503 1103.3357
+196813.0652660178 3.7765503 1103.474
+196814.0652661221 3.776629 1103.3949
+196815.0652662264 3.7765896 1103.2963
+196816.0652663307 3.7765503 1103.3949
+196817.065266435 3.776511 1103.4542
+196818.0652665393 3.7765503 1103.3752
+196819.0652666437 3.7765503 1103.3357
+196820.065266748 3.7767076 1103.3555
+196821.0652668523 3.7766683 1103.3555
+196822.0652669566 3.7767076 1103.3752
+196823.0652670609 3.776747 1103.3357
+196824.0652671652 3.776747 1103.316
+196825.0652672695 3.776747 1103.3949
+196826.0652673738 3.776629 1103.3752
+196827.0652674781 3.7766683 1103.3357
+196828.0652675824 3.7768259 1103.3555
+196829.0652676867 3.776747 1103.3752
+196830.065267791 3.776747 1103.3357
+196831.0652678953 3.7768259 1103.3555
+196832.0652679997 3.7768259 1103.3555
+196833.065268104 3.7769046 1103.4147
+196834.0652682083 3.7769046 1103.2963
+196835.0652683126 3.7769046 1103.3357
+196836.0652684169 3.7769046 1103.3949
+196837.0652685212 3.7769046 1103.2765
+196838.0652686255 3.7769046 1103.2963
+196839.0652687298 3.7769439 1103.2963
+196840.0652688341 3.7769439 1103.3357
+196841.0652689384 3.7769833 1103.2963
+196842.0652690427 3.7769439 1103.3357
+196843.065269147 3.7769439 1103.316
+196844.0652692514 3.7770226 1103.4542
+196845.0652693557 3.7769439 1103.3555
+196846.06526946 3.7770622 1103.2369
+196847.0652695643 3.7770226 1103.3555
+196848.0652696686 3.7770622 1103.3949
+196849.0652697729 3.7770226 1103.3949
+196850.0652698772 3.7769833 1103.4147
+196851.0652699815 3.7771015 1103.3752
+196852.0652700858 3.7770226 1103.3357
+196853.0652701901 3.7770622 1103.3357
+196854.0652702944 3.7771802 1103.3949
+196855.0652703987 3.7771015 1103.2963
+196856.0652705031 3.7771802 1103.3555
+196857.0652706074 3.7771015 1103.3357
+196858.0652707117 3.7771802 1103.3752
+196859.065270816 3.7771409 1103.3555
+196860.0652709203 3.7772195 1103.3949
+196861.0652710246 3.7771015 1103.3949
+196862.0652711289 3.7772195 1103.4344
+196863.0652712332 3.7772589 1103.3752
+196864.0652713375 3.7772195 1103.3357
+196865.0652714418 3.7771802 1103.2765
+196866.0652715461 3.7772589 1103.3752
+196867.0652716504 3.7772589 1103.4147
+196868.0652717547 3.7772195 1103.4147
+196869.0652718591 3.7772589 1103.4147
+196870.0652719634 3.7773376 1103.3752
+196871.0652720677 3.7772589 1103.3949
+196872.065272172 3.7773771 1103.2963
+196873.0652722763 3.7773376 1103.3752
+196874.0652723806 3.7773376 1103.3555
+196875.0652724849 3.7774165 1103.4542
+196876.0652725892 3.7774165 1103.3357
+196877.0652726935 3.7774558 1103.3752
+196878.0652727978 3.7774558 1103.316
+196879.0652729021 3.7774165 1103.2172
+196880.0652730064 3.7773771 1103.3357
+196881.0652731108 3.7774558 1103.3752
+196882.0652732151 3.7774951 1103.316
+196883.0652733194 3.7773771 1103.3555
+196884.0652734237 3.7774165 1103.3357
+196885.065273528 3.7774558 1103.3357
+196886.0652736323 3.7774951 1103.2963
+196887.0652737366 3.7774951 1103.3555
+196888.0652738409 3.7774951 1103.3555
+196889.0652739452 3.7775345 1103.316
+196890.0652740495 3.7776525 1103.4147
+196891.0652741538 3.7776132 1103.3949
+196892.0652742581 3.7774951 1103.3357
+196893.0652743625 3.7775738 1103.2567
+196894.0652744668 3.7776132 1103.3949
+196895.0652745711 3.7777314 1103.316
+196896.0652746754 3.7776132 1103.3949
+196897.0652747797 3.7776921 1103.3949
+196898.065274884 3.7776132 1103.3752
+196899.0652749883 3.7776921 1103.316
+196900.0652750926 3.7776921 1103.3752
+196901.0652751969 3.7775738 1103.316
+196902.0652753012 3.7777708 1103.3949
+196903.0652754055 3.7776921 1103.4147
+196904.0652755098 3.7777708 1103.3752
+196905.0652756142 3.7777708 1103.3949
+196906.0652757185 3.7778101 1103.2567
+196907.0652758228 3.7777314 1103.4344
+196908.0652759271 3.7777708 1103.3752
+196909.0652760314 3.7777314 1103.3949
+196910.0652761357 3.7778494 1103.316
+196911.06527624 3.7778101 1103.316
+196912.0652763443 3.7778494 1103.2963
+196913.0652764486 3.7778494 1103.2963
+196914.0652765529 3.7779281 1103.3555
+196915.0652766572 3.7778494 1103.2963
+196916.0652767615 3.7779281 1103.316
+196917.0652768658 3.7778888 1103.2765
+196918.0652769702 3.7779675 1103.3752
+196919.0652770745 3.7779281 1103.3949
+196920.0652771788 3.778007 1103.4147
+196921.0652772831 3.7778888 1103.316
+196922.0652773874 3.7779281 1103.2963
+196923.0652774917 3.7779675 1103.3555
+196924.065277596 3.7779675 1103.2963
+196925.0652777003 3.7780857 1103.3752
+196926.0652778046 3.778007 1103.3357
+196927.0652779089 3.7779675 1103.2963
+196928.0652780132 3.778125 1103.3752
+196929.0652781175 3.7779675 1103.3357
+196930.0652782219 3.778125 1103.3555
+196931.0652783262 3.7780857 1103.3949
+196932.0652784305 3.7782037 1103.3752
+196933.0652785348 3.778125 1103.3752
+196934.0652786391 3.778125 1103.3555
+196935.0652787434 3.7781644 1103.3357
+196936.0652788477 3.7782824 1103.4344
+196937.065278952 3.7781644 1103.316
+196938.0652790563 3.7782431 1103.3752
+196939.0652791606 3.7781644 1103.3949
+196940.0652792649 3.7782037 1103.3555
+196941.0652793692 3.7782037 1103.4542
+196942.0652794736 3.7782824 1103.3949
+196943.0652795779 3.7781644 1103.3752
+196944.0652796822 3.778322 1103.3555
+196945.0652797865 3.778322 1103.3555
+196946.0652798908 3.778322 1103.3752
+196947.0652799951 3.7782824 1103.3357
+196948.0652800994 3.778322 1103.2963
+196949.0652802037 3.7783613 1103.3949
+196950.065280308 3.7783613 1103.3555
+196951.0652804123 3.7783613 1103.3752
+196952.0652805166 3.7784007 1103.3949
+196953.0652806209 3.7784007 1103.2765
+196954.0652807252 3.7783613 1103.3752
+196955.0652808296 3.7784007 1103.3752
+196956.0652809339 3.77844 1103.2567
+196957.0652810382 3.7785187 1103.4147
+196958.0652811425 3.77844 1103.3555
+196959.0652812468 3.7784793 1103.3357
+196960.0652813511 3.77844 1103.3555
+196961.0652814554 3.77844 1103.3357
+196962.0652815597 3.7784793 1103.3949
+196963.065281664 3.778558 1103.3357
+196964.0652817683 3.778558 1103.316
+196965.0652818726 3.778558 1103.3357
+196966.0652819769 3.7786369 1103.2963
+196967.0652820813 3.778558 1103.3752
+196968.0652821856 3.7786369 1103.4147
+196969.0652822899 3.7786763 1103.3949
+196970.0652823942 3.7786369 1103.4147
+196971.0652824985 3.7785974 1103.4542
+196972.0652826028 3.7786763 1103.316
+196973.0652827071 3.7787156 1103.3752
+196974.0652828114 3.7786763 1103.316
+196975.0652829157 3.7786763 1103.3357
+196976.06528302 3.7787549 1103.316
+196977.0652831243 3.7787549 1103.3555
+196978.0652832286 3.7787156 1103.3949
+196979.065283333 3.7786763 1103.3357
+196980.0652834373 3.7786763 1103.4344
+196981.0652835416 3.7788336 1103.3357
+196982.0652836459 3.7788336 1103.2963
+196983.0652837502 3.7785974 1103.2765
+196984.0652838545 3.7787943 1103.3752
+196985.0652839588 3.7788336 1103.4147
+196986.0652840631 3.7787156 1103.316
+196987.0652841674 3.778873 1103.3357
+196988.0652842717 3.7787943 1103.2963
+196989.065284376 3.7789519 1103.4147
+196990.0652844803 3.7788336 1103.4147
+196991.0652845846 3.7787943 1103.316
+196992.065284689 3.7789125 1103.316
+196993.0652847933 3.7789125 1103.3357
+196994.0652848976 3.7789912 1103.316
+196995.0652850019 3.7789912 1103.3949
+196996.0652851062 3.7789912 1103.3555
+196997.0652852105 3.7789125 1103.316
+196998.0652853148 3.7788336 1103.3555
+196999.0652854191 3.7789912 1103.2963
+197000.0652855234 3.7790306 1103.3357
+197001.0652856277 3.7789912 1103.3949
+197002.065285732 3.7789519 1103.3752
+197003.0652858363 3.7790699 1103.4344
+197004.0652859407 3.7790306 1103.316
+197005.065286045 3.7790306 1103.3752
+197006.0652861493 3.7791486 1103.3357
+197007.0652862536 3.7790699 1103.3752
+197008.0652863579 3.7790699 1103.3357
+197009.0652864622 3.7791486 1103.3555
+197010.0652865665 3.7791092 1103.474
+197011.0652866708 3.7791486 1103.2963
+197012.0652867751 3.7791092 1103.3752
+197013.0652868794 3.7792275 1103.3555
+197014.0652869837 3.7791879 1103.3555
+197015.065287088 3.7792275 1103.4147
+197016.0652871924 3.7791879 1103.3357
+197017.0652872967 3.7792668 1103.3555
+197018.065287401 3.7792668 1103.3555
+197019.0652875053 3.7792275 1103.3949
+197020.0652876096 3.7792275 1103.3357
+197021.0652877139 3.7793062 1103.3752
+197022.0652878182 3.7792668 1103.3555
+197023.0652879225 3.7793849 1103.316
+197024.0652880268 3.7793062 1103.316
+197025.0652881311 3.7793062 1103.4344
+197026.0652882354 3.7793849 1103.3555
+197027.0652883397 3.7793849 1103.3752
+197028.0652884441 3.7793455 1103.4147
+197029.0652885484 3.7794242 1103.3555
+197030.0652886527 3.7795029 1103.316
+197031.065288757 3.7793849 1103.3357
+197032.0652888613 3.7794242 1103.3949
+197033.0652889656 3.7794242 1103.3555
+197034.0652890699 3.7793849 1103.316
+197035.0652891742 3.7795029 1103.2765
+197036.0652892785 3.7795029 1103.2963
+197037.0652893828 3.7795818 1103.3949
+197038.0652894871 3.7794242 1103.316
+197039.0652895914 3.7795424 1103.3357
+197040.0652896957 3.7795424 1103.2963
+197041.0652898001 3.7794635 1103.316
+197042.0652899044 3.7795424 1103.2765
+197043.0652900087 3.7794635 1103.2963
+197044.065290113 3.7795818 1103.2963
+197045.0652902173 3.7794635 1103.4938
+197046.0652903216 3.7795818 1103.2765
+197047.0652904259 3.7795424 1103.4147
+197048.0652905302 3.7795424 1103.2963
+197049.0652906345 3.7796605 1103.4147
+197050.0652907388 3.7796605 1103.3555
+197051.0652908431 3.7796605 1103.3752
+197052.0652909474 3.7797391 1103.3555
+197053.0652910518 3.7796211 1103.2172
+197054.0652911561 3.7797785 1103.3555
+197055.0652912604 3.7796605 1103.3752
+197056.0652913647 3.7796998 1103.316
+197057.065291469 3.7798178 1103.2963
+197058.0652915733 3.7797785 1103.3357
+197059.0652916776 3.7798178 1103.2963
+197060.0652917819 3.7798178 1103.316
+197061.0652918862 3.7798178 1103.3357
+197062.0652919905 3.7798574 1103.316
+197063.0652920948 3.7799361 1103.3752
+197064.0652921991 3.7799361 1103.3555
+197065.0652923035 3.7798967 1103.474
+197066.0652924078 3.7797391 1103.2963
+197067.0652925121 3.7798178 1103.3555
+197068.0652926164 3.7799361 1103.316
+197069.0652927207 3.7799361 1103.316
+197070.065292825 3.7798967 1103.3752
+197071.0652929293 3.7799361 1103.3357
+197072.0652930336 3.7800148 1103.4344
+197073.0652931379 3.7799754 1103.2963
+197074.0652932422 3.7799754 1103.3949
+197075.0652933465 3.7800541 1103.3555
+197076.0652934508 3.7799754 1103.3555
+197077.0652935551 3.7800934 1103.3949
+197078.0652936595 3.7800148 1103.4147
+197079.0652937638 3.7799754 1103.3555
+197080.0652938681 3.7800934 1103.3555
+197081.0652939724 3.7800934 1103.3357
+197082.0652940767 3.7799754 1103.3357
+197083.065294181 3.7800934 1103.3949
+197084.0652942853 3.7800934 1103.3949
+197085.0652943896 3.7801328 1103.3357
+197086.0652944939 3.7801328 1103.3555
+197087.0652945982 3.7801328 1103.3357
+197088.0652947025 3.7801328 1103.316
+197089.0652948068 3.7801723 1103.2567
+197090.0652949112 3.7802117 1103.3752
+197091.0652950155 3.7802117 1103.3949
+197092.0652951198 3.7801723 1103.2172
+197093.0652952241 3.7802117 1103.3555
+197094.0652953284 3.7801723 1103.2963
+197095.0652954327 3.780251 1103.3555
+197096.065295537 3.7801723 1103.3357
+197097.0652956413 3.7802904 1103.4147
+197098.0652957456 3.7802904 1103.2765
+197099.0652958499 3.7802904 1103.3357
+197100.0652959542 3.7803297 1103.316
+197101.0652960585 3.7804084 1103.3752
+197102.0652961629 3.7804084 1103.3555
+197103.0652962672 3.7803297 1103.2963
+197104.0652963715 3.7804084 1103.4344
+197105.0652964758 3.780369 1103.3357
+197106.0652965801 3.780369 1103.2567
+197107.0652966844 3.780448 1103.3555
+197108.0652967887 3.780369 1103.3752
+197109.065296893 3.780448 1103.3357
+197110.0652969973 3.7805266 1103.3752
+197111.0652971016 3.7804873 1103.3949
+197112.0652972059 3.780448 1103.2765
+197113.0652973102 3.7804873 1103.3555
+197114.0652974145 3.780566 1103.3555
+197115.0652975189 3.7804873 1103.3555
+197116.0652976232 3.7805266 1103.3555
+197117.0652977275 3.780566 1103.3949
+197118.0652978318 3.7804873 1103.2963
+197119.0652979361 3.780684 1103.2765
+197120.0652980404 3.780566 1103.3752
+197121.0652981447 3.780566 1103.3555
+197122.065298249 3.7804873 1103.3357
+197123.0652983533 3.780566 1103.316
+197124.0652984576 3.7806447 1103.3357
+197125.0652985619 3.780684 1103.316
+197126.0652986662 3.7806447 1103.2963
+197127.0652987706 3.7806053 1103.3555
+197128.0652988749 3.7807629 1103.3752
+197129.0652989792 3.7807629 1103.3752
+197130.0652990835 3.7806447 1103.3555
+197131.0652991878 3.7807233 1103.316
+197132.0652992921 3.7807629 1103.3949
+197133.0652993964 3.7808022 1103.2963
+197134.0652995007 3.7807629 1103.3357
+197135.065299605 3.780684 1103.4542
+197136.0652997093 3.7808416 1103.3555
+197137.0652998136 3.7808416 1103.3555
+197138.0652999179 3.7808022 1103.2963
+197139.0653000223 3.7808022 1103.3555
+197140.0653001266 3.7808022 1103.2567
+197141.0653002309 3.7808809 1103.3752
+197142.0653003352 3.7809203 1103.3949
+197143.0653004395 3.7808809 1103.3949
+197144.0653005438 3.7809203 1103.3357
+197145.0653006481 3.7809596 1103.3357
+197146.0653007524 3.7810383 1103.2963
+197147.0653008567 3.7808416 1103.3949
+197148.065300961 3.7809203 1103.316
+197149.0653010653 3.7809596 1103.3357
+197150.0653011696 3.7809203 1103.316
+197151.0653012739 3.7809989 1103.3357
+197152.0653013783 3.7810383 1103.4344
+197153.0653014826 3.7810779 1103.3752
+197154.0653015869 3.7809596 1103.2963
+197155.0653016912 3.7810383 1103.2765
+197156.0653017955 3.7809989 1103.3752
+197157.0653018998 3.7810779 1103.3555
+197158.0653020041 3.7810779 1103.3357
+197159.0653021084 3.7810383 1103.3752
+197160.0653022127 3.7810779 1103.2963
+197161.065302317 3.7810779 1103.316
+197162.0653024213 3.7811172 1103.2963
+197163.0653025256 3.7811565 1103.3752
+197164.06530263 3.7812352 1103.316
+197165.0653027343 3.7810779 1103.3357
+197166.0653028386 3.7811959 1103.3752
+197167.0653029429 3.7811959 1103.3555
+197168.0653030472 3.7811172 1103.3949
+197169.0653031515 3.7811959 1103.316
+197170.0653032558 3.7811959 1103.3357
+197171.0653033601 3.7812746 1103.4344
+197172.0653034644 3.7813139 1103.2765
+197173.0653035687 3.7813139 1103.3949
+197174.065303673 3.7813532 1103.2567
+197175.0653037773 3.7813928 1103.4147
+197176.0653038817 3.7812352 1103.3949
+197177.065303986 3.7813928 1103.3752
+197178.0653040903 3.7813928 1103.316
+197179.0653041946 3.7813139 1103.3555
+197180.0653042989 3.7813532 1103.2765
+197181.0653044032 3.7813928 1103.316
+197182.0653045075 3.7814322 1103.3752
+197183.0653046118 3.7814322 1103.3555
+197184.0653047161 3.7813928 1103.3555
+197185.0653048204 3.7814715 1103.4147
+197186.0653049247 3.7814715 1103.2963
+197187.065305029 3.7815108 1103.3752
+197188.0653051334 3.7814322 1103.316
+197189.0653052377 3.7815108 1103.3555
+197190.065305342 3.7815108 1103.2567
+197191.0653054463 3.7814715 1103.2567
+197192.0653055506 3.7815895 1103.316
+197193.0653056549 3.7815108 1103.3357
+197194.0653057592 3.7815895 1103.2765
+197195.0653058635 3.7816288 1103.3357
+197196.0653059678 3.7815502 1103.3555
+197197.0653060721 3.7816288 1103.316
+197198.0653061764 3.7815895 1103.316
+197199.0653062807 3.7815895 1103.3752
+197200.065306385 3.7815895 1103.3555
+197201.0653064894 3.7816682 1103.316
+197202.0653065937 3.7816682 1103.316
+197203.065306698 3.7815895 1103.316
+197204.0653068023 3.7816682 1103.2963
+197205.0653069066 3.7816682 1103.3357
+197206.0653070109 3.7817864 1103.316
+197207.0653071152 3.7816682 1103.4344
+197208.0653072195 3.7817471 1103.316
+197209.0653073238 3.7817078 1103.3752
+197210.0653074281 3.7816682 1103.3949
+197211.0653075324 3.7817078 1103.3949
+197212.0653076367 3.7817471 1103.2963
+197213.0653077411 3.7817864 1103.3357
+197214.0653078454 3.7818651 1103.474
+197215.0653079497 3.7817864 1103.2765
+197216.065308054 3.7818258 1103.316
+197217.0653081583 3.7818651 1103.3357
+197218.0653082626 3.7819045 1103.3752
+197219.0653083669 3.7819045 1103.2567
+197220.0653084712 3.7818651 1103.3555
+197221.0653085755 3.7820227 1103.316
+197222.0653086798 3.7819438 1103.3357
+197223.0653087841 3.7819045 1103.3949
+197224.0653088884 3.7818651 1103.2963
+197225.0653089928 3.7819438 1103.3555
+197226.0653090971 3.7819831 1103.4344
+197227.0653092014 3.7819831 1103.3555
+197228.0653093057 3.7820621 1103.316
+197229.06530941 3.7820227 1103.3752
+197230.0653095143 3.7820227 1103.2963
+197231.0653096186 3.7821407 1103.4147
+197232.0653097229 3.7820621 1103.3357
+197233.0653098272 3.7821014 1103.316
+197234.0653099315 3.7821801 1103.316
+197235.0653100358 3.7822194 1103.3357
+197236.0653101401 3.7821014 1103.3357
+197237.0653102444 3.7821407 1103.3357
+197238.0653103488 3.7820621 1103.2567
+197239.0653104531 3.7821407 1103.3357
+197240.0653105574 3.7819831 1103.3555
+197241.0653106617 3.7822194 1103.3555
+197242.065310766 3.7822587 1103.474
+197243.0653108703 3.7822194 1103.2963
+197244.0653109746 3.7822587 1103.3752
+197245.0653110789 3.7822194 1103.3752
+197246.0653111832 3.7822983 1103.3555
+197247.0653112875 3.7823377 1103.3752
+197248.0653113918 3.7822194 1103.3752
+197249.0653114961 3.7822587 1103.316
+197250.0653116005 3.7823377 1103.3752
+197251.0653117048 3.7824163 1103.3555
+197252.0653118091 3.7823377 1103.3949
+197253.0653119134 3.7823377 1103.3357
+197254.0653120177 3.7823377 1103.3555
+197255.065312122 3.7824557 1103.2369
+197256.0653122263 3.7824163 1103.2765
+197257.0653123306 3.782377 1103.4344
+197258.0653124349 3.7824163 1103.3949
+197259.0653125392 3.7823377 1103.3949
+197260.0653126435 3.782495 1103.316
+197261.0653127478 3.7824163 1103.316
+197262.0653128522 3.7824163 1103.3949
+197263.0653129565 3.782495 1103.3555
+197264.0653130608 3.7825344 1103.3357
+197265.0653131651 3.782377 1103.2765
+197266.0653132694 3.7825737 1103.3752
+197267.0653133737 3.782495 1103.474
+197268.065313478 3.7824557 1103.4147
+197269.0653135823 3.7825344 1103.4147
+197270.0653136866 3.7825344 1103.4147
+197271.0653137909 3.7826133 1103.3752
+197272.0653138952 3.7825344 1103.4938
+197273.0653139995 3.7825737 1103.3357
+197274.0653141038 3.7826133 1103.3949
+197275.0653142082 3.7826526 1103.2963
+197276.0653143125 3.7826526 1103.3949
+197277.0653144168 3.7826133 1103.316
+197278.0653145211 3.782692 1103.3752
+197279.0653146254 3.7827313 1103.4344
+197280.0653147297 3.782692 1103.2567
+197281.065314834 3.782692 1103.2172
+197282.0653149383 3.7826526 1103.2963
+197283.0653150426 3.782692 1103.3555
+197284.0653151469 3.7827313 1103.3752
+197285.0653152512 3.78281 1103.3752
+197286.0653153555 3.7827706 1103.3357
+197287.0653154599 3.7827706 1103.3752
+197288.0653155642 3.7827706 1103.2963
+197289.0653156685 3.7828493 1103.4147
+197290.0653157728 3.78281 1103.2963
+197291.0653158771 3.78281 1103.3752
+197292.0653159814 3.78281 1103.3949
+197293.0653160857 3.7829282 1103.3555
+197294.06531619 3.78281 1103.3752
+197295.0653162943 3.7829282 1103.3357
+197296.0653163986 3.7829282 1103.3752
+197297.0653165029 3.7828887 1103.4147
+197298.0653166072 3.7828493 1103.4344
+197299.0653167116 3.7828887 1103.3555
+197300.0653168159 3.7828887 1103.3949
+197301.0653169202 3.7830069 1103.3949
+197302.0653170245 3.7829282 1103.3357
+197303.0653171288 3.7828887 1103.2963
+197304.0653172331 3.7830462 1103.3752
+197305.0653173374 3.7830462 1103.316
+197306.0653174417 3.7830069 1103.3555
+197307.065317546 3.7831643 1103.3752
+197308.0653176503 3.7830462 1103.3555
+197309.0653177546 3.7830856 1103.2765
+197310.0653178589 3.7831249 1103.4147
+197311.0653179633 3.7830856 1103.3357
+197312.0653180676 3.7830856 1103.3949
+197313.0653181719 3.7830856 1103.2963
+197314.0653182762 3.7831643 1103.3555
+197315.0653183805 3.7831249 1103.316
+197316.0653184848 3.7832432 1103.316
+197317.0653185891 3.7831249 1103.4344
+197318.0653186934 3.7832036 1103.3752
+197319.0653187977 3.7831249 1103.4344
+197320.065318902 3.7831643 1103.2963
+197321.0653190063 3.7832036 1103.4344
+197322.0653191106 3.7833219 1103.316
+197323.0653192149 3.7833219 1103.316
+197324.0653193193 3.7833219 1103.2765
+197325.0653194236 3.7832432 1103.3752
+197326.0653195279 3.7833219 1103.316
+197327.0653196322 3.7833219 1103.3752
+197328.0653197365 3.7833219 1103.4147
+197329.0653198408 3.7834005 1103.316
+197330.0653199451 3.7833219 1103.3357
+197331.0653200494 3.7834399 1103.3752
+197332.0653201537 3.7833219 1103.3752
+197333.065320258 3.7833219 1103.3357
+197334.0653203623 3.7834005 1103.3357
+197335.0653204666 3.7834792 1103.4344
+197336.065320571 3.7834399 1103.3357
+197337.0653206753 3.7833219 1103.3555
+197338.0653207796 3.7834399 1103.316
+197339.0653208839 3.7833612 1103.2567
+197340.0653209882 3.7834399 1103.2765
+197341.0653210925 3.7834005 1103.3752
+197342.0653211968 3.7834399 1103.3949
+197343.0653213011 3.7835186 1103.3555
+197344.0653214054 3.7834792 1103.3555
+197345.0653215097 3.7835975 1103.316
+197346.065321614 3.7835581 1103.316
+197347.0653217183 3.7835186 1103.3949
+197348.0653218227 3.7835975 1103.4147
+197349.065321927 3.7835975 1103.3555
+197350.0653220313 3.7835581 1103.316
+197351.0653221356 3.7835581 1103.3357
+197352.0653222399 3.7836761 1103.3555
+197353.0653223442 3.7837942 1103.3949
+197354.0653224485 3.7837155 1103.3752
+197355.0653225528 3.7836368 1103.3949
+197356.0653226571 3.7837155 1103.2963
+197357.0653227614 3.7837942 1103.3555
+197358.0653228657 3.7836761 1103.2765
+197359.06532297 3.7837548 1103.316
+197360.0653230743 3.7837155 1103.3555
+197361.0653231787 3.7837548 1103.3555
+197362.065323283 3.7837155 1103.3357
+197363.0653233873 3.7837548 1103.3949
+197364.0653234916 3.7838731 1103.2567
+197365.0653235959 3.7839124 1103.4147
+197366.0653237002 3.7838335 1103.3555
+197367.0653238045 3.7838731 1103.4147
+197368.0653239088 3.7838731 1103.3752
+197369.0653240131 3.7838731 1103.3752
+197370.0653241174 3.7839518 1103.2369
+197371.0653242217 3.7839124 1103.3752
+197372.065324326 3.7839911 1103.3357
+197373.0653244304 3.7839124 1103.3752
+197374.0653245347 3.7839911 1103.3555
+197375.065324639 3.7839911 1103.3949
+197376.0653247433 3.7838731 1103.2369
+197377.0653248476 3.7839124 1103.316
+197378.0653249519 3.7840698 1103.316
+197379.0653250562 3.7839911 1103.3357
+197380.0653251605 3.7839518 1103.4147
+197381.0653252648 3.7839911 1103.4147
+197382.0653253691 3.7839911 1103.2567
+197383.0653254734 3.7840304 1103.2963
+197384.0653255777 3.7840698 1103.3357
+197385.0653256821 3.7839911 1103.3752
+197386.0653257864 3.7840698 1103.3752
+197387.0653258907 3.784188 1103.3752
+197388.065325995 3.7841487 1103.3555
+197389.0653260993 3.784188 1103.316
+197390.0653262036 3.7841487 1103.4542
+197391.0653263079 3.784188 1103.3555
+197392.0653264122 3.7841487 1103.3752
+197393.0653265165 3.7841091 1103.3555
+197394.0653266208 3.784188 1103.3555
+197395.0653267251 3.7842274 1103.4938
+197396.0653268294 3.7841487 1103.4344
+197397.0653269337 3.7842667 1103.2765
+197398.0653270381 3.7842667 1103.4147
+197399.0653271424 3.7843454 1103.3357
+197400.0653272467 3.784306 1103.3357
+197401.065327351 3.784306 1103.3357
+197402.0653274553 3.7842667 1103.2765
+197403.0653275596 3.7843454 1103.3357
+197404.0653276639 3.7843454 1103.316
+197405.0653277682 3.7844636 1103.3357
+197406.0653278725 3.7842667 1103.2567
+197407.0653279768 3.7844636 1103.4344
+197408.0653280811 3.7843454 1103.2963
+197409.0653281854 3.7844636 1103.316
+197410.0653282898 3.7844241 1103.3357
+197411.0653283941 3.7843454 1103.4542
+197412.0653284984 3.7844636 1103.2765
+197413.0653286027 3.7844636 1103.316
+197414.065328707 3.7843847 1103.3949
+197415.0653288113 3.7844636 1103.3752
+197416.0653289156 3.7845423 1103.3555
+197417.0653290199 3.7844241 1103.3555
+197418.0653291242 3.7845423 1103.2765
+197419.0653292285 3.7845423 1103.2963
+197420.0653293328 3.784503 1103.2963
+197421.0653294371 3.784621 1103.2369
+197422.0653295415 3.784621 1103.2963
+197423.0653296458 3.7845817 1103.3949
+197424.0653297501 3.784621 1103.3752
+197425.0653298544 3.7845817 1103.3752
+197426.0653299587 3.784621 1103.4147
+197427.065330063 3.7846997 1103.316
+197428.0653301673 3.7846603 1103.3555
+197429.0653302716 3.7846603 1103.4344
+197430.0653303759 3.784621 1103.4147
+197431.0653304802 3.7847786 1103.3357
+197432.0653305845 3.7846997 1103.2963
+197433.0653306888 3.784739 1103.3555
+197434.0653307932 3.784621 1103.3555
+197435.0653308975 3.784739 1103.2765
+197436.0653310018 3.7846997 1103.316
+197437.0653311061 3.7847786 1103.3357
+197438.0653312104 3.7847786 1103.3357
+197439.0653313147 3.7848573 1103.2567
+197440.065331419 3.7848179 1103.3752
+197441.0653315233 3.7846997 1103.3555
+197442.0653316276 3.7848573 1103.2765
+197443.0653317319 3.7848573 1103.2567
+197444.0653318362 3.7848179 1103.3752
+197445.0653319405 3.7848573 1103.2765
+197446.0653320448 3.7848179 1103.3752
+197447.0653321492 3.7848966 1103.3752
+197448.0653322535 3.7848179 1103.2963
+197449.0653323578 3.784936 1103.3357
+197450.0653324621 3.785054 1103.316
+197451.0653325664 3.7849753 1103.4542
+197452.0653326707 3.7850146 1103.1975
+197453.065332775 3.785054 1103.2765
+197454.0653328793 3.7848966 1103.3357
+197455.0653329836 3.7850146 1103.316
+197456.0653330879 3.7850146 1103.3555
+197457.0653331922 3.7850146 1103.4344
+197458.0653332965 3.7850935 1103.3555
+197459.0653334009 3.7851329 1103.3555
+197460.0653335052 3.7850935 1103.3555
+197461.0653336095 3.7850146 1103.3357
+197462.0653337138 3.7850935 1103.3357
+197463.0653338181 3.7851722 1103.316
+197464.0653339224 3.7851329 1103.316
+197465.0653340267 3.7851722 1103.2765
+197466.065334131 3.7851329 1103.316
+197467.0653342353 3.7852116 1103.3949
+197468.0653343396 3.7851329 1103.3357
+197469.0653344439 3.7852509 1103.3555
+197470.0653345482 3.7852509 1103.3555
+197471.0653346526 3.7851722 1103.3357
+197472.0653347569 3.7852116 1103.474
+197473.0653348612 3.7852116 1103.3357
+197474.0653349655 3.7853689 1103.3357
+197475.0653350698 3.7852509 1103.3949
+197476.0653351741 3.7852116 1103.3752
+197477.0653352784 3.7853689 1103.2963
+197478.0653353827 3.7854872 1103.3949
+197479.065335487 3.7852509 1103.3555
+197480.0653355913 3.7853689 1103.3357
+197481.0653356956 3.7854872 1103.316
+197482.0653357999 3.7853296 1103.316
+197483.0653359042 3.7854085 1103.2963
+197484.0653360086 3.7854478 1103.2765
+197485.0653361129 3.7853296 1103.3752
+197486.0653362172 3.7854085 1103.316
+197487.0653363215 3.7853296 1103.3357
+197488.0653364258 3.7854478 1103.3357
+197489.0653365301 3.7854872 1103.2963
+197490.0653366344 3.7854872 1103.3357
+197491.0653367387 3.7855265 1103.3555
+197492.065336843 3.7856052 1103.3357
+197493.0653369473 3.7854872 1103.3357
+197494.0653370516 3.7854872 1103.316
+197495.0653371559 3.7855659 1103.3357
+197496.0653372603 3.7855659 1103.3752
+197497.0653373646 3.7856445 1103.3752
+197498.0653374689 3.7856052 1103.2963
+197499.0653375732 3.7855659 1103.2765
+197500.0653376775 3.7855659 1103.3357
+197501.0653377818 3.7856445 1103.3752
+197502.0653378861 3.7856839 1103.3949
+197503.0653379904 3.7856445 1103.4147
+197504.0653380947 3.7857628 1103.3357
+197505.065338199 3.7856839 1103.2369
+197506.0653383033 3.7857234 1103.3555
+197507.0653384076 3.7856445 1103.3949
+197508.065338512 3.7856839 1103.3752
+197509.0653386163 3.7856839 1103.3555
+197510.0653387206 3.7858021 1103.3949
+197511.0653388249 3.7857628 1103.3555
+197512.0653389292 3.7858021 1103.3357
+197513.0653390335 3.7857234 1103.4542
+197514.0653391378 3.7858021 1103.3555
+197515.0653392421 3.7858021 1103.3555
+197516.0653393464 3.7858415 1103.3555
+197517.0653394507 3.7858808 1103.3752
+197518.065339555 3.7859201 1103.474
+197519.0653396593 3.7858021 1103.4344
+197520.0653397636 3.7858808 1103.3357
+197521.065339868 3.7858808 1103.3949
+197522.0653399723 3.7859201 1103.2765
+197523.0653400766 3.7859595 1103.2567
+197524.0653401809 3.7859595 1103.2369
+197525.0653402852 3.7859595 1103.3949
+197526.0653403895 3.7860384 1103.316
+197527.0653404938 3.7858808 1103.3949
+197528.0653405981 3.7859595 1103.3357
+197529.0653407024 3.7859201 1103.3555
+197530.0653408067 3.7859991 1103.3949
+197531.065340911 3.7859991 1103.2963
+197532.0653410153 3.7859991 1103.2567
+197533.0653411197 3.7861171 1103.3752
+197534.065341224 3.7861171 1103.4344
+197535.0653413283 3.7861958 1103.3949
+197536.0653414326 3.7861171 1103.2963
+197537.0653415369 3.7859991 1103.3555
+197538.0653416412 3.7860384 1103.3752
+197539.0653417455 3.7861564 1103.3752
+197540.0653418498 3.7861171 1103.2963
+197541.0653419541 3.7862351 1103.3357
+197542.0653420584 3.7861564 1103.4147
+197543.0653421627 3.7862744 1103.3752
+197544.065342267 3.7862351 1103.3949
+197545.0653423714 3.7862351 1103.3357
+197546.0653424757 3.7862351 1103.316
+197547.06534258 3.7862351 1103.3949
+197548.0653426843 3.7861564 1103.3752
+197549.0653427886 3.786314 1103.2765
+197550.0653428929 3.7861958 1103.3949
+197551.0653429972 3.786314 1103.3949
+197552.0653431015 3.7862744 1103.3555
+197553.0653432058 3.786314 1103.3555
+197554.0653433101 3.7863927 1103.2963
+197555.0653434144 3.7862744 1103.3555
+197556.0653435187 3.786314 1103.2963
+197557.0653436231 3.7863533 1103.3949
+197558.0653437274 3.786432 1103.2963
+197559.0653438317 3.7863533 1103.3357
+197560.065343936 3.786432 1103.4147
+197561.0653440403 3.7865107 1103.3555
+197562.0653441446 3.786432 1103.316
+197563.0653442489 3.7865894 1103.3752
+197564.0653443532 3.786432 1103.4344
+197565.0653444575 3.7865107 1103.3949
+197566.0653445618 3.786432 1103.3752
+197567.0653446661 3.786432 1103.3555
+197568.0653447704 3.7865107 1103.3555
+197569.0653448747 3.7864714 1103.316
+197570.0653449791 3.7865107 1103.316
+197571.0653450834 3.78655 1103.2963
+197572.0653451877 3.78655 1103.3357
+197573.065345292 3.7865894 1103.474
+197574.0653453963 3.7864714 1103.316
+197575.0653455006 3.78655 1103.3949
+197576.0653456049 3.78655 1103.3357
+197577.0653457092 3.7865894 1103.3357
+197578.0653458135 3.7867076 1103.4542
+197579.0653459178 3.7866683 1103.4344
+197580.0653460221 3.786629 1103.316
+197581.0653461264 3.7866683 1103.3555
+197582.0653462308 3.7867863 1103.3555
+197583.0653463351 3.7867076 1103.3949
+197584.0653464394 3.7867863 1103.3949
+197585.0653465437 3.7866683 1103.2172
+197586.065346648 3.786865 1103.3357
+197587.0653467523 3.786865 1103.3357
+197588.0653468566 3.786865 1103.2963
+197589.0653469609 3.7867863 1103.3357
+197590.0653470652 3.7867863 1103.2963
+197591.0653471695 3.786747 1103.2765
+197592.0653472738 3.7868257 1103.3357
+197593.0653473781 3.786747 1103.3555
+197594.0653474825 3.786865 1103.4147
+197595.0653475868 3.786865 1103.2369
+197596.0653476911 3.7868257 1103.2963
+197597.0653477954 3.7868257 1103.4542
+197598.0653478997 3.7870226 1103.2567
+197599.065348004 3.7869833 1103.3752
+197600.0653481083 3.7869439 1103.4344
+197601.0653482126 3.7869833 1103.2963
+197602.0653483169 3.7869043 1103.2765
+197603.0653484212 3.7869833 1103.316
+197604.0653485255 3.7870226 1103.3555
+197605.0653486298 3.7869833 1103.3949
+197606.0653487341 3.7870619 1103.3949
+197607.0653488385 3.7871013 1103.316
+197608.0653489428 3.7870619 1103.2369
+197609.0653490471 3.7870226 1103.3949
+197610.0653491514 3.7870619 1103.316
+197611.0653492557 3.7871013 1103.2963
+197612.06534936 3.7870619 1103.3555
+197613.0653494643 3.7870619 1103.2765
+197614.0653495686 3.7871799 1103.3949
+197615.0653496729 3.7870619 1103.2765
+197616.0653497772 3.7871406 1103.3555
+197617.0653498815 3.7870226 1103.3357
+197618.0653499858 3.7872193 1103.3752
+197619.0653500902 3.7872589 1103.4147
+197620.0653501945 3.7872589 1103.3752
+197621.0653502988 3.7872589 1103.3752
+197622.0653504031 3.7871406 1103.316
+197623.0653505074 3.7872193 1103.3949
+197624.0653506117 3.7872589 1103.2765
+197625.065350716 3.7872589 1103.3357
+197626.0653508203 3.7872589 1103.316
+197627.0653509246 3.7872193 1103.3752
+197628.0653510289 3.7873375 1103.3752
+197629.0653511332 3.7873769 1103.3555
+197630.0653512375 3.7873769 1103.4147
+197631.0653513419 3.7874162 1103.3357
+197632.0653514462 3.7873375 1103.4344
+197633.0653515505 3.7873375 1103.3752
+197634.0653516548 3.7873375 1103.3555
+197635.0653517591 3.7872982 1103.3555
+197636.0653518634 3.7874556 1103.3357
+197637.0653519677 3.7874556 1103.3949
+197638.065352072 3.7874162 1103.316
+197639.0653521763 3.7875342 1103.316
+197640.0653522806 3.7875342 1103.2567
+197641.0653523849 3.7874162 1103.316
+197642.0653524892 3.7874949 1103.3357
+197643.0653525935 3.7874556 1103.4344
+197644.0653526979 3.7875738 1103.2963
+197645.0653528022 3.7875738 1103.3752
+197646.0653529065 3.7875342 1103.3752
+197647.0653530108 3.7875342 1103.3357
+197648.0653531151 3.7875738 1103.2963
+197649.0653532194 3.7876132 1103.3949
+197650.0653533237 3.7876525 1103.316
+197651.065353428 3.7875738 1103.4147
+197652.0653535323 3.7876132 1103.3752
+197653.0653536366 3.7876918 1103.2765
+197654.0653537409 3.7876132 1103.3357
+197655.0653538452 3.7876525 1103.4147
+197656.0653539496 3.7876525 1103.3752
+197657.0653540539 3.7876918 1103.3752
+197658.0653541582 3.7878098 1103.3357
+197659.0653542625 3.7876525 1103.316
+197660.0653543668 3.7877312 1103.3357
+197661.0653544711 3.7877705 1103.316
+197662.0653545754 3.7877705 1103.2765
+197663.0653546797 3.7876918 1103.3752
+197664.065354784 3.7877312 1103.3555
+197665.0653548883 3.7877705 1103.3555
+197666.0653549926 3.7878098 1103.2567
+197667.0653550969 3.7878098 1103.316
+197668.0653552013 3.7880068 1103.3357
+197669.0653553056 3.7878098 1103.3949
+197670.0653554099 3.7877705 1103.3949
+197671.0653555142 3.7878494 1103.3752
+197672.0653556185 3.7879281 1103.3752
+197673.0653557228 3.7879281 1103.3555
+197674.0653558271 3.7878888 1103.316
+197675.0653559314 3.7880068 1103.2172
+197676.0653560357 3.7880068 1103.3949
+197677.06535614 3.7880461 1103.3357
+197678.0653562443 3.7880068 1103.2963
+197679.0653563486 3.7880855 1103.3752
+197680.0653564529 3.7880461 1103.3357
+197681.0653565573 3.7880855 1103.4147
+197682.0653566616 3.7880068 1103.2963
+197683.0653567659 3.7880461 1103.2963
+197684.0653568702 3.7881248 1103.3555
+197685.0653569745 3.7880855 1103.3949
+197686.0653570788 3.7880855 1103.2765
+197687.0653571831 3.7880855 1103.3949
+197688.0653572874 3.7882431 1103.2567
+197689.0653573917 3.7882037 1103.3949
+197690.065357496 3.7880855 1103.3752
+197691.0653576003 3.7881644 1103.2963
+197692.0653577046 3.7881248 1103.3752
+197693.065357809 3.7880461 1103.4147
+197694.0653579133 3.7881248 1103.3949
+197695.0653580176 3.7880855 1103.3752
+197696.0653581219 3.7882037 1103.3752
+197697.0653582262 3.7883611 1103.3357
+197698.0653583305 3.7882431 1103.3752
+197699.0653584348 3.7882431 1103.3357
+197700.0653585391 3.7882431 1103.3949
+197701.0653586434 3.7882431 1103.316
+197702.0653587477 3.7882824 1103.3555
+197703.065358852 3.7883217 1103.3752
+197704.0653589563 3.7884398 1103.3357
+197705.0653590607 3.7884004 1103.3949
+197706.065359165 3.7883611 1103.3357
+197707.0653592693 3.7883611 1103.3752
+197708.0653593736 3.7884004 1103.4147
+197709.0653594779 3.7884004 1103.3752
+197710.0653595822 3.7884793 1103.2765
+197711.0653596865 3.7883217 1103.316
+197712.0653597908 3.7884398 1103.3357
+197713.0653598951 3.7884398 1103.3949
+197714.0653599994 3.7884004 1103.3555
+197715.0653601037 3.7884398 1103.3357
+197716.065360208 3.7884004 1103.4147
+197717.0653603124 3.7885187 1103.4147
+197718.0653604167 3.7884793 1103.2963
+197719.065360521 3.7884793 1103.2963
+197720.0653606253 3.788558 1103.3949
+197721.0653607296 3.7884398 1103.2369
+197722.0653608339 3.788558 1103.316
+197723.0653609382 3.7886367 1103.3555
+197724.0653610425 3.7886367 1103.3555
+197725.0653611468 3.7885973 1103.3949
+197726.0653612511 3.7887154 1103.4147
+197727.0653613554 3.7886367 1103.3752
+197728.0653614597 3.7887547 1103.3357
+197729.065361564 3.788676 1103.3555
+197730.0653616684 3.788676 1103.316
+197731.0653617727 3.7887154 1103.3555
+197732.065361877 3.7886367 1103.3555
+197733.0653619813 3.7886367 1103.3357
+197734.0653620856 3.788676 1103.4147
+197735.0653621899 3.7887547 1103.4344
+197736.0653622942 3.7887547 1103.4147
+197737.0653623985 3.7887154 1103.3555
+197738.0653625028 3.7888336 1103.3752
+197739.0653626071 3.7889123 1103.3752
+197740.0653627114 3.7888336 1103.3555
+197741.0653628157 3.7887547 1103.3357
+197742.0653629201 3.7887547 1103.316
+197743.0653630244 3.7889516 1103.3357
+197744.0653631287 3.788873 1103.2963
+197745.065363233 3.788873 1103.316
+197746.0653633373 3.788873 1103.4938
+197747.0653634416 3.7889516 1103.3752
+197748.0653635459 3.788991 1103.3555
+197749.0653636502 3.7889123 1103.3555
+197750.0653637545 3.7889123 1103.3949
+197751.0653638588 3.7890697 1103.316
+197752.0653639631 3.7889123 1103.2963
+197753.0653640674 3.7889516 1103.316
+197754.0653641718 3.7889123 1103.4344
+197755.0653642761 3.788991 1103.3949
+197756.0653643804 3.7889516 1103.2963
+197757.0653644847 3.7890303 1103.2765
+197758.065364589 3.7891092 1103.4147
+197759.0653646933 3.7891092 1103.3752
+197760.0653647976 3.7890697 1103.4147
+197761.0653649019 3.7891092 1103.316
+197762.0653650062 3.7890303 1103.3752
+197763.0653651105 3.7891486 1103.4147
+197764.0653652148 3.7891092 1103.3752
+197765.0653653191 3.7891486 1103.3752
+197766.0653654234 3.7891879 1103.3949
+197767.0653655278 3.7891879 1103.3752
+197768.0653656321 3.7891879 1103.3752
+197769.0653657364 3.7893059 1103.316
+197770.0653658407 3.7891879 1103.2567
+197771.065365945 3.7891486 1103.3357
+197772.0653660493 3.7891486 1103.3357
+197773.0653661536 3.7892272 1103.316
+197774.0653662579 3.7892666 1103.3555
+197775.0653663622 3.7892272 1103.2567
+197776.0653664665 3.7892666 1103.316
+197777.0653665708 3.7891486 1103.3752
+197778.0653666751 3.7893059 1103.3555
+197779.0653667795 3.7893059 1103.4344
+197780.0653668838 3.7893848 1103.2765
+197781.0653669881 3.7893059 1103.3555
+197782.0653670924 3.7892666 1103.3357
+197783.0653671967 3.7893848 1103.2765
+197784.065367301 3.7892666 1103.316
+197785.0653674053 3.7893848 1103.3357
+197786.0653675096 3.7893848 1103.4542
+197787.0653676139 3.7894635 1103.4147
+197788.0653677182 3.7894242 1103.2765
+197789.0653678225 3.7895422 1103.316
+197790.0653679268 3.7894242 1103.316
+197791.0653680312 3.7895422 1103.2963
+197792.0653681355 3.7895029 1103.3752
+197793.0653682398 3.7895029 1103.3752
+197794.0653683441 3.7895029 1103.2567
+197795.0653684484 3.7895422 1103.3555
+197796.0653685527 3.7895029 1103.3752
+197797.065368657 3.7895029 1103.4344
+197798.0653687613 3.7895422 1103.316
+197799.0653688656 3.7894635 1103.3357
+197800.0653689699 3.7895815 1103.3949
+197801.0653690742 3.7895422 1103.3949
+197802.0653691785 3.7895815 1103.3949
+197803.0653692828 3.7895815 1103.3357
+197804.0653693872 3.7896602 1103.316
+197805.0653694915 3.7895815 1103.3752
+197806.0653695958 3.7897391 1103.3949
+197807.0653697001 3.7897391 1103.2567
+197808.0653698044 3.7897391 1103.2963
+197809.0653699087 3.7897391 1103.3357
+197810.065370013 3.7897391 1103.3357
+197811.0653701173 3.7897785 1103.3357
+197812.0653702216 3.7897391 1103.3752
+197813.0653703259 3.7898965 1103.2765
+197814.0653704302 3.7898178 1103.3555
+197815.0653705345 3.7898178 1103.2369
+197816.0653706389 3.7897391 1103.316
+197817.0653707432 3.7898178 1103.316
+197818.0653708475 3.7898965 1103.2963
+197819.0653709518 3.7898178 1103.316
+197820.0653710561 3.7898965 1103.3555
+197821.0653711604 3.7898178 1103.3357
+197822.0653712647 3.7897785 1103.4542
+197823.065371369 3.7898965 1103.3357
+197824.0653714733 3.7898571 1103.2765
+197825.0653715776 3.7900541 1103.316
+197826.0653716819 3.7900147 1103.3555
+197827.0653717862 3.7900147 1103.3752
+197828.0653718906 3.7898571 1103.3949
+197829.0653719949 3.7900147 1103.4147
+197830.0653720992 3.7900541 1103.4147
+197831.0653722035 3.7900541 1103.316
+197832.0653723078 3.7900147 1103.3555
+197833.0653724121 3.7900934 1103.3752
+197834.0653725164 3.7899752 1103.3555
+197835.0653726207 3.7900541 1103.3752
+197836.065372725 3.7900147 1103.4147
+197837.0653728293 3.7901328 1103.2567
+197838.0653729336 3.7900934 1103.3949
+197839.0653730379 3.7900147 1103.2765
+197840.0653731423 3.7902114 1103.3949
+197841.0653732466 3.7901721 1103.3555
+197842.0653733509 3.7902508 1103.3555
+197843.0653734552 3.7900934 1103.3357
+197844.0653735595 3.7901328 1103.3555
+197845.0653736638 3.7901721 1103.3555
+197846.0653737681 3.7902114 1103.2963
+197847.0653738724 3.7901328 1103.3949
+197848.0653739767 3.7902114 1103.2963
+197849.065374081 3.7902508 1103.2963
+197850.0653741853 3.7902508 1103.3357
+197851.0653742896 3.7902508 1103.316
+197852.0653743939 3.7902114 1103.3949
+197853.0653744983 3.7902508 1103.316
+197854.0653746026 3.7902508 1103.316
+197855.0653747069 3.7903297 1103.316
+197856.0653748112 3.7902508 1103.316
+197857.0653749155 3.7902901 1103.2963
+197858.0653750198 3.7904084 1103.316
+197859.0653751241 3.7903297 1103.3752
+197860.0653752284 3.7902901 1103.2567
+197861.0653753327 3.790369 1103.4147
+197862.065375437 3.7904084 1103.3357
+197863.0653755413 3.7904084 1103.2963
+197864.0653756456 3.7904477 1103.4344
+197865.06537575 3.7904084 1103.2963
+197866.0653758543 3.7904477 1103.3555
+197867.0653759586 3.7906051 1103.3949
+197868.0653760629 3.7904871 1103.3752
+197869.0653761672 3.7904871 1103.2963
+197870.0653762715 3.7906051 1103.3357
+197871.0653763758 3.7904084 1103.316
+197872.0653764801 3.7905657 1103.2963
+197873.0653765844 3.7905264 1103.3555
+197874.0653766887 3.7905264 1103.3357
+197875.065376793 3.7906051 1103.3949
+197876.0653768973 3.7905657 1103.3752
+197877.0653770017 3.7905657 1103.3357
+197878.065377106 3.7906446 1103.3752
+197879.0653772103 3.7906446 1103.3357
+197880.0653773146 3.7906051 1103.316
+197881.0653774189 3.790684 1103.3357
+197882.0653775232 3.7907627 1103.3555
+197883.0653776275 3.7907233 1103.4147
+197884.0653777318 3.7907627 1103.316
+197885.0653778361 3.7907233 1103.3555
+197886.0653779404 3.7908413 1103.316
+197887.0653780447 3.7906446 1103.3752
+197888.065378149 3.7907233 1103.316
+197889.0653782533 3.7907627 1103.3555
+197890.0653783577 3.7907233 1103.3357
+197891.065378462 3.790684 1103.4147
+197892.0653785663 3.7908413 1103.2963
+197893.0653786706 3.790802 1103.3555
+197894.0653787749 3.7909596 1103.3555
+197895.0653788792 3.7908807 1103.316
+197896.0653789835 3.7909596 1103.4344
+197897.0653790878 3.7909596 1103.3752
+197898.0653791921 3.7908413 1103.3357
+197899.0653792964 3.7908807 1103.3752
+197900.0653794007 3.7908413 1103.474
+197901.065379505 3.7910383 1103.3357
+197902.0653796094 3.7909596 1103.2765
+197903.0653797137 3.7910383 1103.316
+197904.065379818 3.7909596 1103.3949
+197905.0653799223 3.7910383 1103.2765
+197906.0653800266 3.7909596 1103.3555
+197907.0653801309 3.7911563 1103.2963
+197908.0653802352 3.7909989 1103.3357
+197909.0653803395 3.791117 1103.3555
+197910.0653804438 3.7910383 1103.3357
+197911.0653805481 3.7910776 1103.4147
+197912.0653806524 3.7910383 1103.3752
+197913.0653807567 3.7911563 1103.2963
+197914.0653808611 3.7910383 1103.316
+197915.0653809654 3.7910776 1103.2765
+197916.0653810697 3.7911563 1103.3752
+197917.065381174 3.791117 1103.3357
+197918.0653812783 3.7911956 1103.3752
+197919.0653813826 3.7912745 1103.3555
+197920.0653814869 3.7912352 1103.3357
+197921.0653815912 3.7911956 1103.3357
+197922.0653816955 3.7912745 1103.3555
+197923.0653817998 3.7913139 1103.2963
+197924.0653819041 3.7912352 1103.3752
+197925.0653820084 3.7911563 1103.2963
+197926.0653821127 3.7913139 1103.3555
+197927.0653822171 3.7913139 1103.3555
+197928.0653823214 3.7914319 1103.3357
+197929.0653824257 3.7913139 1103.4147
+197930.06538253 3.7913139 1103.2765
+197931.0653826343 3.7913532 1103.316
+197932.0653827386 3.7912745 1103.3357
+197933.0653828429 3.7914712 1103.316
+197934.0653829472 3.7914712 1103.2567
+197935.0653830515 3.7913139 1103.4147
+197936.0653831558 3.7913926 1103.3752
+197937.0653832601 3.7914712 1103.4147
+197938.0653833644 3.7914319 1103.3752
+197939.0653834688 3.7913926 1103.2963
+197940.0653835731 3.7915106 1103.316
+197941.0653836774 3.7914712 1103.3949
+197942.0653837817 3.7915895 1103.3555
+197943.065383886 3.7914319 1103.3752
+197944.0653839903 3.7915895 1103.3555
+197945.0653840946 3.7914712 1103.2765
+197946.0653841989 3.7915502 1103.316
+197947.0653843032 3.7916288 1103.3357
+197948.0653844075 3.7915106 1103.2963
+197949.0653845118 3.7915106 1103.2765
+197950.0653846161 3.7916682 1103.3752
+197951.0653847205 3.7915895 1103.3357
+197952.0653848248 3.7915895 1103.3555
+197953.0653849291 3.7915895 1103.316
+197954.0653850334 3.7916288 1103.3555
+197955.0653851377 3.7915895 1103.2963
+197956.065385242 3.7916682 1103.3949
+197957.0653853463 3.7916682 1103.3357
+197958.0653854506 3.7917075 1103.316
+197959.0653855549 3.7917862 1103.2963
+197960.0653856592 3.7918651 1103.3555
+197961.0653857635 3.7917862 1103.3357
+197962.0653858678 3.7918651 1103.3752
+197963.0653859722 3.7917469 1103.2963
+197964.0653860765 3.7917862 1103.3555
+197965.0653861808 3.7917862 1103.4542
+197966.0653862851 3.7918651 1103.3357
+197967.0653863894 3.7917469 1103.3949
+197968.0653864937 3.7918255 1103.3949
+197969.065386598 3.7918651 1103.2963
+197970.0653867023 3.7919044 1103.474
+197971.0653868066 3.7919044 1103.3357
+197972.0653869109 3.7918651 1103.4147
+197973.0653870152 3.7919044 1103.3555
+197974.0653871195 3.7918651 1103.3555
+197975.0653872238 3.7918651 1103.3752
+197976.0653873282 3.7919831 1103.2963
+197977.0653874325 3.7919044 1103.2963
+197978.0653875368 3.7919044 1103.4542
+197979.0653876411 3.7921801 1103.2765
+197980.0653877454 3.7920225 1103.3357
+197981.0653878497 3.7920225 1103.316
+197982.065387954 3.7919438 1103.3555
+197983.0653880583 3.7920618 1103.4542
+197984.0653881626 3.7919831 1103.2963
+197985.0653882669 3.7920618 1103.3357
+197986.0653883712 3.7920618 1103.3357
+197987.0653884755 3.7920225 1103.4542
+197988.0653885799 3.7921405 1103.2963
+197989.0653886842 3.7921011 1103.3357
+197990.0653887885 3.7921011 1103.4344
+197991.0653888928 3.7921801 1103.3949
+197992.0653889971 3.7921405 1103.3752
+197993.0653891014 3.7921801 1103.4344
+197994.0653892057 3.7920618 1103.316
+197995.06538931 3.7921011 1103.3357
+197996.0653894143 3.7922194 1103.3555
+197997.0653895186 3.7921801 1103.1975
+197998.0653896229 3.7921801 1103.3752
+197999.0653897272 3.7921405 1103.2765
+198000.0653898316 3.7923374 1103.316
+198001.0653899359 3.7922981 1103.3555
+198002.0653900402 3.7922587 1103.1777
+198003.0653901445 3.7923374 1103.316
+198004.0653902488 3.7923374 1103.4344
+198005.0653903531 3.7923768 1103.3357
+198006.0653904574 3.7923374 1103.3555
+198007.0653905617 3.7923374 1103.3357
+198008.065390666 3.7924161 1103.1777
+198009.0653907703 3.7923768 1103.3555
+198010.0653908746 3.7923768 1103.4147
+198011.0653909789 3.7923768 1103.2765
+198012.0653910832 3.7924161 1103.316
+198013.0653911876 3.7923768 1103.316
+198014.0653912919 3.7924161 1103.3555
+198015.0653913962 3.7923768 1103.3555
+198016.0653915005 3.792495 1103.3752
+198017.0653916048 3.792495 1103.3949
+198018.0653917091 3.7923374 1103.3357
+198019.0653918134 3.7924554 1103.2963
+198020.0653919177 3.7925344 1103.316
+198021.065392022 3.7925344 1103.316
+198022.0653921263 3.7926524 1103.3357
+198023.0653922306 3.7925344 1103.3555
+198024.0653923349 3.7925737 1103.3752
+198025.0653924393 3.792613 1103.3555
+198026.0653925436 3.7926917 1103.316
+198027.0653926479 3.7925737 1103.3752
+198028.0653927522 3.7925737 1103.4147
+198029.0653928565 3.792613 1103.2369
+198030.0653929608 3.792613 1103.3357
+198031.0653930651 3.7924554 1103.3555
+198032.0653931694 3.792731 1103.3357
+198033.0653932737 3.7926524 1103.3357
+198034.065393378 3.792613 1103.3752
+198035.0653934823 3.7926524 1103.4344
+198036.0653935866 3.7926917 1103.4542
+198037.065393691 3.79281 1103.3752
+198038.0653937953 3.792731 1103.2963
+198039.0653938996 3.7926917 1103.2765
+198040.0653940039 3.7926917 1103.316
+198041.0653941082 3.792731 1103.3752
+198042.0653942125 3.7927704 1103.3949
+198043.0653943168 3.79281 1103.3555
+198044.0653944211 3.7928886 1103.4344
+198045.0653945254 3.79281 1103.3555
+198046.0653946297 3.7928493 1103.3357
+198047.065394734 3.79281 1103.3357
+198048.0653948383 3.7928493 1103.3949
+198049.0653949426 3.792928 1103.3555
+198050.065395047 3.7928886 1103.3949
+198051.0653951513 3.7930067 1103.2963
+198052.0653952556 3.7929673 1103.3357
+198053.0653953599 3.7928886 1103.3357
+198054.0653954642 3.7929673 1103.4542
+198055.0653955685 3.7929673 1103.2765
+198056.0653956728 3.792928 1103.3752
+198057.0653957771 3.7928886 1103.3555
+198058.0653958814 3.7929673 1103.2963
+198059.0653959857 3.792928 1103.3949
+198060.06539609 3.793046 1103.2963
+198061.0653961943 3.793046 1103.3357
+198062.0653962987 3.7931249 1103.316
+198063.065396403 3.793046 1103.3752
+198064.0653965073 3.7930856 1103.3752
+198065.0653966116 3.7930856 1103.2963
+198066.0653967159 3.7930856 1103.4147
+198067.0653968202 3.7931249 1103.316
+198068.0653969245 3.7930856 1103.316
+198069.0653970288 3.7932429 1103.316
+198070.0653971331 3.7930856 1103.3752
+198071.0653972374 3.7931249 1103.3555
+198072.0653973417 3.7931643 1103.2963
+198073.065397446 3.7932429 1103.4147
+198074.0653975504 3.7931249 1103.2963
+198075.0653976547 3.7931643 1103.316
+198076.065397759 3.7932823 1103.3949
+198077.0653978633 3.7932429 1103.3752
+198078.0653979676 3.7931643 1103.4542
+198079.0653980719 3.7933216 1103.3357
+198080.0653981762 3.7932823 1103.3752
+198081.0653982805 3.7932429 1103.4147
+198082.0653983848 3.7932823 1103.316
+198083.0653984891 3.7934005 1103.316
+198084.0653985934 3.7933216 1103.316
+198085.0653986977 3.7933609 1103.3555
+198086.065398802 3.7933216 1103.3555
+198087.0653989064 3.7933609 1103.316
+198088.0653990107 3.7934005 1103.2963
+198089.065399115 3.7934005 1103.3949
+198090.0653992193 3.7933609 1103.3555
+198091.0653993236 3.7935579 1103.2963
+198092.0653994279 3.7935185 1103.2963
+198093.0653995322 3.7934792 1103.3949
+198094.0653996365 3.7934005 1103.3357
+198095.0653997408 3.7935185 1103.3555
+198096.0653998451 3.7934792 1103.2963
+198097.0653999494 3.7934792 1103.3357
+198098.0654000537 3.7935185 1103.316
+198099.0654001581 3.7935579 1103.3949
+198100.0654002624 3.7935579 1103.316
+198101.0654003667 3.7935185 1103.3752
+198102.065400471 3.7935579 1103.2765
+198103.0654005753 3.7935185 1103.2765
+198104.0654006796 3.7935972 1103.4344
+198105.0654007839 3.7936759 1103.3555
+198106.0654008882 3.7937155 1103.3357
+198107.0654009925 3.7936366 1103.3949
+198108.0654010968 3.7936366 1103.4344
+198109.0654012011 3.7936366 1103.4542
+198110.0654013054 3.7937548 1103.3949
+198111.0654014098 3.7937155 1103.3555
+198112.0654015141 3.7937548 1103.3555
+198113.0654016184 3.7936759 1103.3555
+198114.0654017227 3.7937548 1103.3752
+198115.065401827 3.7937548 1103.3752
+198116.0654019313 3.7937942 1103.2567
+198117.0654020356 3.7937942 1103.3357
+198118.0654021399 3.7938335 1103.3752
+198119.0654022442 3.7938335 1103.4147
+198120.0654023485 3.7937942 1103.3752
+198121.0654024528 3.7939122 1103.3752
+198122.0654025571 3.7938728 1103.3555
+198123.0654026615 3.7937942 1103.3949
+198124.0654027658 3.7938728 1103.2567
+198125.0654028701 3.7939515 1103.3949
+198126.0654029744 3.7939122 1103.2765
+198127.0654030787 3.7938335 1103.4344
+198128.065403183 3.7940304 1103.3752
+198129.0654032873 3.7939909 1103.316
+198130.0654033916 3.7938335 1103.3949
+198131.0654034959 3.7939909 1103.2567
+198132.0654036002 3.7939909 1103.3949
+198133.0654037045 3.7938728 1103.3357
+198134.0654038088 3.7939122 1103.316
+198135.0654039131 3.7939515 1103.3357
+198136.0654040175 3.7940304 1103.3555
+198137.0654041218 3.7940698 1103.3555
+198138.0654042261 3.7941091 1103.3752
+198139.0654043304 3.7940304 1103.4147
+198140.0654044347 3.7941091 1103.316
+198141.065404539 3.7940698 1103.3555
+198142.0654046433 3.7941484 1103.3949
+198143.0654047476 3.7941091 1103.2963
+198144.0654048519 3.7941091 1103.3752
+198145.0654049562 3.7940698 1103.316
+198146.0654050605 3.7940698 1103.3949
+198147.0654051648 3.7941878 1103.3357
+198148.0654052692 3.7942271 1103.3357
+198149.0654053735 3.7942271 1103.3752
+198150.0654054778 3.7943058 1103.3357
+198151.0654055821 3.7942665 1103.2963
+198152.0654056864 3.7942271 1103.2963
+198153.0654057907 3.7942271 1103.3357
+198154.065405895 3.7943847 1103.316
+198155.0654059993 3.7943058 1103.316
+198156.0654061036 3.7943058 1103.3555
+198157.0654062079 3.7943058 1103.2963
+198158.0654063122 3.7943847 1103.3949
+198159.0654064165 3.7943058 1103.3555
+198160.0654065209 3.7943847 1103.3949
+198161.0654066252 3.7943058 1103.316
+198162.0654067295 3.7942665 1103.3949
+198163.0654068338 3.7943454 1103.3357
+198164.0654069381 3.7943847 1103.3949
+198165.0654070424 3.7944634 1103.3949
+198166.0654071467 3.7943847 1103.2963
+198167.065407251 3.7945027 1103.3752
+198168.0654073553 3.7945814 1103.3949
+198169.0654074596 3.7944241 1103.3752
+198170.0654075639 3.7944241 1103.2963
+198171.0654076682 3.7945814 1103.3555
+198172.0654077725 3.7945814 1103.3555
+198173.0654078769 3.7945421 1103.3949
+198174.0654079812 3.7946208 1103.4542
+198175.0654080855 3.7945814 1103.3949
+198176.0654081898 3.7945814 1103.3357
+198177.0654082941 3.7945421 1103.3357
+198178.0654083984 3.7945421 1103.4542
+198179.0654085027 3.7946603 1103.2963
+198180.065408607 3.7946208 1103.4147
+198181.0654087113 3.7946208 1103.3949
+198182.0654088156 3.7945814 1103.4344
+198183.0654089199 3.7946603 1103.3357
+198184.0654090242 3.7946603 1103.3752
+198185.0654091286 3.7946603 1103.3555
+198186.0654092329 3.794739 1103.3949
+198187.0654093372 3.7946208 1103.3555
+198188.0654094415 3.7946997 1103.3555
+198189.0654095458 3.794739 1103.316
+198190.0654096501 3.794739 1103.3752
+198191.0654097544 3.794739 1103.3357
+198192.0654098587 3.7948177 1103.4147
+198193.065409963 3.7947783 1103.3555
+198194.0654100673 3.794857 1103.2765
+198195.0654101716 3.7947783 1103.4147
+198196.0654102759 3.7947783 1103.474
+198197.0654103803 3.794857 1103.3555
+198198.0654104846 3.794857 1103.3949
+198199.0654105889 3.794857 1103.3752
+198200.0654106932 3.794857 1103.3752
+198201.0654107975 3.7948964 1103.4147
+198202.0654109018 3.7949359 1103.3357
+198203.0654110061 3.794857 1103.2765
+198204.0654111104 3.7949753 1103.3357
+198205.0654112147 3.7949753 1103.2369
+198206.065411319 3.7950146 1103.3949
+198207.0654114233 3.7949359 1103.4147
+198208.0654115276 3.7950146 1103.4147
+198209.0654116319 3.795054 1103.3752
+198210.0654117363 3.7949753 1103.3357
+198211.0654118406 3.7950146 1103.3949
+198212.0654119449 3.795054 1103.3555
+198213.0654120492 3.7950146 1103.4147
+198214.0654121535 3.795054 1103.3949
+198215.0654122578 3.795172 1103.3357
+198216.0654123621 3.795054 1103.3555
+198217.0654124664 3.7949753 1103.316
+198218.0654125707 3.795172 1103.3752
+198219.065412675 3.795054 1103.3752
+198220.0654127793 3.7952113 1103.3357
+198221.0654128836 3.7951326 1103.3949
+198222.065412988 3.795172 1103.3752
+198223.0654130923 3.7951326 1103.4147
+198224.0654131966 3.7952509 1103.2765
+198225.0654133009 3.7952113 1103.2765
+198226.0654134052 3.7952113 1103.3555
+198227.0654135095 3.7952509 1103.2963
+198228.0654136138 3.7952113 1103.4344
+198229.0654137181 3.7952509 1103.3949
+198230.0654138224 3.7952113 1103.3357
+198231.0654139267 3.7952902 1103.3555
+198232.065414031 3.7953296 1103.3555
+198233.0654141353 3.7954476 1103.3949
+198234.0654142397 3.7954082 1103.316
+198235.065414344 3.7953689 1103.3949
+198236.0654144483 3.7952902 1103.3555
+198237.0654145526 3.7953689 1103.3555
+198238.0654146569 3.7953689 1103.3752
+198239.0654147612 3.7954082 1103.474
+198240.0654148655 3.7953296 1103.3555
+198241.0654149698 3.7954082 1103.316
+198242.0654150741 3.7954869 1103.2765
+198243.0654151784 3.7954476 1103.3949
+198244.0654152827 3.7954476 1103.2963
+198245.065415387 3.7954869 1103.3555
+198246.0654154914 3.7955658 1103.3555
+198247.0654155957 3.7954476 1103.2567
+198248.0654157 3.7955263 1103.316
+198249.0654158043 3.7955263 1103.3949
+198250.0654159086 3.7954869 1103.316
+198251.0654160129 3.7956445 1103.3357
+198252.0654161172 3.7956052 1103.2963
+198253.0654162215 3.7955263 1103.3357
+198254.0654163258 3.7956052 1103.3357
+198255.0654164301 3.7956052 1103.2567
+198256.0654165344 3.7957232 1103.4938
+198257.0654166387 3.7956839 1103.3357
+198258.065416743 3.7956445 1103.3357
+198259.0654168474 3.7955263 1103.3752
+198260.0654169517 3.7956052 1103.4147
+198261.065417056 3.7956839 1103.3357
+198262.0654171603 3.7955658 1103.3949
+198263.0654172646 3.7957232 1103.2765
+198264.0654173689 3.7957625 1103.316
+198265.0654174732 3.7957625 1103.3555
+198266.0654175775 3.7956839 1103.3357
+198267.0654176818 3.7957232 1103.3949
+198268.0654177861 3.7958019 1103.3555
+198269.0654178904 3.7958019 1103.3949
+198270.0654179947 3.7957625 1103.3357
+198271.0654180991 3.7957232 1103.316
+198272.0654182034 3.7958808 1103.3949
+198273.0654183077 3.7958412 1103.3752
+198274.065418412 3.7958412 1103.2765
+198275.0654185163 3.7958412 1103.4147
+198276.0654186206 3.7958019 1103.3752
+198277.0654187249 3.7958808 1103.316
+198278.0654188292 3.7958808 1103.4147
+198279.0654189335 3.7960382 1103.3357
+198280.0654190378 3.7959201 1103.2765
+198281.0654191421 3.7958412 1103.3555
+198282.0654192464 3.7959595 1103.4147
+198283.0654193508 3.7959988 1103.316
+198284.0654194551 3.7960382 1103.3357
+198285.0654195594 3.7960382 1103.3357
+198286.0654196637 3.7960382 1103.3555
+198287.065419768 3.7960775 1103.3555
+198288.0654198723 3.7959988 1103.3357
+198289.0654199766 3.7959988 1103.4542
+198290.0654200809 3.7959988 1103.316
+198291.0654201852 3.7960382 1103.3357
+198292.0654202895 3.7961168 1103.3555
+198293.0654203938 3.7960775 1103.2369
+198294.0654204981 3.7962351 1103.3555
+198295.0654206024 3.7960775 1103.316
+198296.0654207068 3.7961562 1103.2567
+198297.0654208111 3.7962351 1103.2963
+198298.0654209154 3.7961168 1103.316
+198299.0654210197 3.7961168 1103.316
+198300.065421124 3.7961168 1103.2963
+198301.0654212283 3.7962351 1103.316
+198302.0654213326 3.7962744 1103.316
+198303.0654214369 3.7962351 1103.3357
+198304.0654215412 3.7962351 1103.3752
+198305.0654216455 3.7962351 1103.3357
+198306.0654217498 3.7962744 1103.2567
+198307.0654218541 3.7962744 1103.3752
+198308.0654219585 3.7963138 1103.3949
+198309.0654220628 3.7962351 1103.2765
+198310.0654221671 3.7963138 1103.3357
+198311.0654222714 3.7963138 1103.2369
+198312.0654223757 3.7963138 1103.2963
+198313.06542248 3.7963138 1103.316
+198314.0654225843 3.7964318 1103.3752
+198315.0654226886 3.7963138 1103.3555
+198316.0654227929 3.7964318 1103.3752
+198317.0654228972 3.7964318 1103.4147
+198318.0654230015 3.7963924 1103.3357
+198319.0654231058 3.7965107 1103.2369
+198320.0654232102 3.7964711 1103.4147
+198321.0654233145 3.7963531 1103.2963
+198322.0654234188 3.7964318 1103.3357
+198323.0654235231 3.7964711 1103.316
+198324.0654236274 3.7964318 1103.3555
+198325.0654237317 3.7964711 1103.2963
+198326.065423836 3.7964711 1103.2765
+198327.0654239403 3.7965107 1103.3555
+198328.0654240446 3.7966287 1103.3752
+198329.0654241489 3.79655 1103.3752
+198330.0654242532 3.7966681 1103.316
+198331.0654243575 3.7965107 1103.3752
+198332.0654244618 3.79655 1103.3357
+198333.0654245662 3.7967074 1103.3357
+198334.0654246705 3.7966681 1103.4542
+198335.0654247748 3.7965107 1103.3357
+198336.0654248791 3.7966681 1103.3555
+198337.0654249834 3.7966287 1103.3555
+198338.0654250877 3.7967074 1103.316
+198339.065425192 3.7967467 1103.3752
+198340.0654252963 3.7967074 1103.4542
+198341.0654254006 3.7966681 1103.3752
+198342.0654255049 3.7967074 1103.2765
+198343.0654256092 3.7967863 1103.3357
+198344.0654257135 3.7966681 1103.4147
+198345.0654258179 3.7968256 1103.3555
+198346.0654259222 3.7966681 1103.2963
+198347.0654260265 3.7968256 1103.3752
+198348.0654261308 3.7967467 1103.3949
+198349.0654262351 3.7967863 1103.3752
+198350.0654263394 3.7968256 1103.3357
+198351.0654264437 3.7967863 1103.2765
+198352.065426548 3.7969043 1103.3555
+198353.0654266523 3.7969043 1103.3752
+198354.0654267566 3.7969043 1103.316
+198355.0654268609 3.796865 1103.3752
+198356.0654269652 3.796865 1103.3949
+198357.0654270696 3.7969437 1103.3949
+198358.0654271739 3.7969043 1103.316
+198359.0654272782 3.7969437 1103.2963
+198360.0654273825 3.7969437 1103.3949
+198361.0654274868 3.7970223 1103.2963
+198362.0654275911 3.796983 1103.3555
+198363.0654276954 3.7970617 1103.316
+198364.0654277997 3.7969437 1103.3357
+198365.065427904 3.796983 1103.3555
+198366.0654280083 3.7970617 1103.3752
+198367.0654281126 3.7971013 1103.3357
+198368.0654282169 3.7971013 1103.316
+198369.0654283213 3.7970617 1103.316
+198370.0654284256 3.7971406 1103.2963
+198371.0654285299 3.7971799 1103.3752
+198372.0654286342 3.7971013 1103.3752
+198373.0654287385 3.7971406 1103.4147
+198374.0654288428 3.7971013 1103.316
+198375.0654289471 3.7972586 1103.316
+198376.0654290514 3.7971799 1103.3949
+198377.0654291557 3.7972586 1103.316
+198378.06542926 3.7972193 1103.2765
+198379.0654293643 3.7971799 1103.3752
+198380.0654294686 3.7971799 1103.4147
+198381.0654295729 3.7971406 1103.3752
+198382.0654296773 3.7972586 1103.3357
+198383.0654297816 3.7971799 1103.2765
+198384.0654298859 3.7973373 1103.3949
+198385.0654299902 3.797298 1103.3555
+198386.0654300945 3.7974162 1103.2765
+198387.0654301988 3.797298 1103.3949
+198388.0654303031 3.7973766 1103.3357
+198389.0654304074 3.7974555 1103.316
+198390.0654305117 3.7974555 1103.3555
+198391.065430616 3.7974162 1103.3357
+198392.0654307203 3.7973373 1103.3949
+198393.0654308246 3.7974162 1103.4147
+198394.065430929 3.7974555 1103.3555
+198395.0654310333 3.7973373 1103.316
+198396.0654311376 3.7974555 1103.3752
+198397.0654312419 3.7974949 1103.316
+198398.0654313462 3.7975342 1103.3752
+198399.0654314505 3.7975736 1103.3752
+198400.0654315548 3.7974949 1103.3555
+198401.0654316591 3.7975342 1103.316
+198402.0654317634 3.7975342 1103.4542
+198403.0654318677 3.7974949 1103.2765
+198404.065431972 3.7976129 1103.3555
+198405.0654320763 3.7975342 1103.1975
+198406.0654321807 3.7975342 1103.4344
+198407.065432285 3.7975736 1103.3555
+198408.0654323893 3.7976916 1103.316
+198409.0654324936 3.7975736 1103.3357
+198410.0654325979 3.7976916 1103.3752
+198411.0654327022 3.7975342 1103.3949
+198412.0654328065 3.7977312 1103.316
+198413.0654329108 3.7976522 1103.3357
+198414.0654330151 3.7976129 1103.3357
+198415.0654331194 3.7976916 1103.3555
+198416.0654332237 3.7976916 1103.3555
+198417.065433328 3.7977312 1103.3752
+198418.0654334323 3.7978098 1103.3752
+198419.0654335367 3.7977312 1103.2567
+198420.065433641 3.7978098 1103.316
+198421.0654337453 3.7977312 1103.2765
+198422.0654338496 3.7977705 1103.2172
+198423.0654339539 3.7978492 1103.4344
+198424.0654340582 3.7977312 1103.3357
+198425.0654341625 3.7978885 1103.316
+198426.0654342668 3.7978492 1103.3555
+198427.0654343711 3.7978492 1103.3555
+198428.0654344754 3.7979279 1103.3357
+198429.0654345797 3.7979672 1103.316
+198430.065434684 3.7978492 1103.3555
+198431.0654347884 3.7978885 1103.3357
+198432.0654348927 3.7979672 1103.3555
+198433.065434997 3.7978492 1103.316
+198434.0654351013 3.7979672 1103.2963
+198435.0654352056 3.7980065 1103.4147
+198436.0654353099 3.7980461 1103.316
+198437.0654354142 3.7980065 1103.2765
+198438.0654355185 3.7980065 1103.3357
+198439.0654356228 3.7980065 1103.3949
+198440.0654357271 3.7980461 1103.3949
+198441.0654358314 3.7980461 1103.3357
+198442.0654359357 3.7980461 1103.3949
+198443.0654360401 3.7980461 1103.3752
+198444.0654361444 3.7980855 1103.4344
+198445.0654362487 3.7981248 1103.2963
+198446.065436353 3.7981248 1103.3357
+198447.0654364573 3.7982035 1103.3752
+198448.0654365616 3.7982821 1103.3357
+198449.0654366659 3.7981248 1103.4542
+198450.0654367702 3.7982428 1103.3357
+198451.0654368745 3.7982035 1103.3357
+198452.0654369788 3.7982035 1103.4147
+198453.0654370831 3.7982428 1103.2765
+198454.0654371874 3.7982035 1103.3357
+198455.0654372917 3.7982428 1103.3752
+198456.0654373961 3.7983217 1103.3949
+198457.0654375004 3.7982428 1103.3949
+198458.0654376047 3.7983217 1103.4147
+198459.065437709 3.7983611 1103.4344
+198460.0654378133 3.7982428 1103.3949
+198461.0654379176 3.7982821 1103.2963
+198462.0654380219 3.7983217 1103.2765
+198463.0654381262 3.7984004 1103.3555
+198464.0654382305 3.7982821 1103.4344
+198465.0654383348 3.7983611 1103.316
+198466.0654384391 3.7983611 1103.3555
+198467.0654385434 3.7984397 1103.3752
+198468.0654386478 3.7985184 1103.3555
+198469.0654387521 3.7984397 1103.2963
+198470.0654388564 3.7984791 1103.4147
+198471.0654389607 3.7984397 1103.316
+198472.065439065 3.7984791 1103.3555
+198473.0654391693 3.7985184 1103.3555
+198474.0654392736 3.7985971 1103.4147
+198475.0654393779 3.7984791 1103.3949
+198476.0654394822 3.7985184 1103.2765
+198477.0654395865 3.7984791 1103.2567
+198478.0654396908 3.7985578 1103.3357
+198479.0654397951 3.7986367 1103.3555
+198480.0654398995 3.7985971 1103.2963
+198481.0654400038 3.7985578 1103.2765
+198482.0654401081 3.7986367 1103.3555
+198483.0654402124 3.7986367 1103.316
+198484.0654403167 3.7985971 1103.3555
+198485.065440421 3.7986367 1103.3555
+198486.0654405253 3.798676 1103.3555
+198487.0654406296 3.7987154 1103.3357
+198488.0654407339 3.7987154 1103.3555
+198489.0654408382 3.798676 1103.2765
+198490.0654409425 3.7988334 1103.3357
+198491.0654410468 3.7987154 1103.3752
+198492.0654411512 3.798794 1103.2963
+198493.0654412555 3.7987154 1103.3357
+198494.0654413598 3.798794 1103.2369
+198495.0654414641 3.798794 1103.2963
+198496.0654415684 3.7988727 1103.3555
+198497.0654416727 3.7987547 1103.3357
+198498.065441777 3.7988334 1103.4147
+198499.0654418813 3.798912 1103.4344
+198500.0654419856 3.7987547 1103.3949
+198501.0654420899 3.7988334 1103.4147
+198502.0654421942 3.798991 1103.3357
+198503.0654422985 3.7988727 1103.3357
+198504.0654424028 3.798912 1103.3555
+198505.0654425072 3.798912 1103.2765
+198506.0654426115 3.7989516 1103.2765
+198507.0654427158 3.798912 1103.2765
+198508.0654428201 3.7990303 1103.3752
+198509.0654429244 3.798991 1103.3357
+198510.0654430287 3.7989516 1103.3555
+198511.065443133 3.798991 1103.3752
+198512.0654432373 3.7990303 1103.316
+198513.0654433416 3.7990303 1103.2963
+198514.0654434459 3.7989516 1103.3555
+198515.0654435502 3.7990303 1103.3752
+198516.0654436545 3.7990303 1103.3357
+198517.0654437589 3.7990696 1103.3555
+198518.0654438632 3.7990303 1103.3949
+198519.0654439675 3.7990303 1103.3949
+198520.0654440718 3.7991483 1103.3752
+198521.0654441761 3.7991877 1103.3357
+198522.0654442804 3.7991483 1103.2963
+198523.0654443847 3.799227 1103.2963
+198524.065444489 3.7991483 1103.2567
+198525.0654445933 3.7991877 1103.3949
+198526.0654446976 3.7992666 1103.2765
+198527.0654448019 3.7991483 1103.4147
+198528.0654449062 3.7991877 1103.316
+198529.0654450106 3.7991877 1103.3949
+198530.0654451149 3.799227 1103.4147
+198531.0654452192 3.7992666 1103.3357
+198532.0654453235 3.7991877 1103.3949
+198533.0654454278 3.7993846 1103.3949
+198534.0654455321 3.7993453 1103.316
+198535.0654456364 3.7992666 1103.3357
+198536.0654457407 3.7994239 1103.2369
+198537.065445845 3.7992666 1103.3752
+198538.0654459493 3.7993453 1103.3949
+198539.0654460536 3.7993846 1103.2567
+198540.0654461579 3.7993846 1103.3752
+198541.0654462622 3.7993846 1103.2963
+198542.0654463666 3.7993453 1103.316
+198543.0654464709 3.7993846 1103.2567
+198544.0654465752 3.7994239 1103.3555
+198545.0654466795 3.7993453 1103.2963
+198546.0654467838 3.7994633 1103.3752
+198547.0654468881 3.7994239 1103.3949
+198548.0654469924 3.799542 1103.3752
+198549.0654470967 3.7994239 1103.3949
+198550.065447201 3.799542 1103.474
+198551.0654473053 3.7994633 1103.3357
+198552.0654474096 3.7996602 1103.3949
+198553.0654475139 3.7995026 1103.3357
+198554.0654476183 3.799542 1103.3555
+198555.0654477226 3.7997389 1103.3555
+198556.0654478269 3.7996602 1103.3357
+198557.0654479312 3.7996209 1103.2963
+198558.0654480355 3.7996209 1103.3357
+198559.0654481398 3.7996602 1103.3357
+198560.0654482441 3.7996602 1103.3555
+198561.0654483484 3.7996602 1103.3949
+198562.0654484527 3.7997389 1103.2963
+198563.065448557 3.7996209 1103.3752
+198564.0654486613 3.7996995 1103.2567
+198565.0654487656 3.7996995 1103.2963
+198566.06544887 3.7997389 1103.3752
+198567.0654489743 3.7997389 1103.2567
+198568.0654490786 3.7998176 1103.4344
+198569.0654491829 3.7996995 1103.3555
+198570.0654492872 3.7998176 1103.4147
+198571.0654493915 3.7998176 1103.2963
+198572.0654494958 3.7998569 1103.3949
+198573.0654496001 3.7998176 1103.3357
+198574.0654497044 3.7997389 1103.3949
+198575.0654498087 3.7998176 1103.3357
+198576.065449913 3.7998176 1103.3949
+198577.0654500173 3.7998965 1103.2172
+198578.0654501216 3.8000538 1103.2963
+198579.065450226 3.7998569 1103.2567
+198580.0654503303 3.7998965 1103.2765
+198581.0654504346 3.7998965 1103.3752
+198582.0654505389 3.7998965 1103.316
+198583.0654506432 3.8000145 1103.4147
+198584.0654507475 3.7999358 1103.2765
+198585.0654508518 3.7999752 1103.3357
+198586.0654509561 3.8000145 1103.3752
+198587.0654510604 3.8001325 1103.3752
+198588.0654511647 3.7999752 1103.4344
+198589.065451269 3.8000145 1103.2963
+198590.0654513733 3.8000145 1103.3555
+198591.0654514777 3.8001325 1103.3555
+198592.065451582 3.8000538 1103.4344
+198593.0654516863 3.8001325 1103.3949
+198594.0654517906 3.8000538 1103.4147
+198595.0654518949 3.8002508 1103.316
+198596.0654519992 3.8001325 1103.4344
+198597.0654521035 3.8002114 1103.3357
+198598.0654522078 3.8001721 1103.3752
+198599.0654523121 3.8002114 1103.316
+198600.0654524164 3.8000932 1103.2963
+198601.0654525207 3.8002508 1103.316
+198602.065452625 3.8002508 1103.3752
+198603.0654527294 3.8001721 1103.2963
+198604.0654528337 3.8002508 1103.2765
+198605.065452938 3.8002901 1103.316
+198606.0654530423 3.8002508 1103.2765
+198607.0654531466 3.8004081 1103.3357
+198608.0654532509 3.8002114 1103.3752
+198609.0654533552 3.8004081 1103.3949
+198610.0654534595 3.8003294 1103.3949
+198611.0654535638 3.8003688 1103.4147
+198612.0654536681 3.8003688 1103.316
+198613.0654537724 3.8004475 1103.3555
+198614.0654538767 3.8003688 1103.3555
+198615.065453981 3.8004081 1103.2567
+198616.0654540854 3.8003294 1103.3949
+198617.0654541897 3.8003688 1103.3752
+198618.065454294 3.8004081 1103.2765
+198619.0654543983 3.8004475 1103.4344
+198620.0654545026 3.8003688 1103.316
+198621.0654546069 3.8004475 1103.3752
+198622.0654547112 3.8004081 1103.3752
+198623.0654548155 3.8004475 1103.4147
+198624.0654549198 3.800487 1103.3752
+198625.0654550241 3.8005657 1103.3949
+198626.0654551284 3.800487 1103.3555
+198627.0654552327 3.8005657 1103.3752
+198628.0654553371 3.8005264 1103.2765
+198629.0654554414 3.800487 1103.3752
+198630.0654555457 3.8006444 1103.2963
+198631.06545565 3.8005657 1103.3555
+198632.0654557543 3.8005657 1103.3357
+198633.0654558586 3.8006051 1103.3555
+198634.0654559629 3.8006837 1103.2765
+198635.0654560672 3.8006837 1103.316
+198636.0654561715 3.8007624 1103.2963
+198637.0654562758 3.8007624 1103.3752
+198638.0654563801 3.8006837 1103.3555
+198639.0654564844 3.8007624 1103.3555
+198640.0654565888 3.8007231 1103.3555
+198641.0654566931 3.8007231 1103.3949
+198642.0654567974 3.8006837 1103.316
+198643.0654569017 3.8007231 1103.3752
+198644.065457006 3.8007231 1103.3752
+198645.0654571103 3.8008807 1103.4147
+198646.0654572146 3.8008413 1103.3357
+198647.0654573189 3.8008413 1103.3949
+198648.0654574232 3.800802 1103.3555
+198649.0654575275 3.800802 1103.4344
+198650.0654576318 3.8008807 1103.316
+198651.0654577361 3.800802 1103.2963
+198652.0654578405 3.8009593 1103.3555
+198653.0654579448 3.8008807 1103.2963
+198654.0654580491 3.80092 1103.2567
+198655.0654581534 3.8009987 1103.316
+198656.0654582577 3.80092 1103.316
+198657.065458362 3.8008807 1103.3949
+198658.0654584663 3.80092 1103.3555
+198659.0654585706 3.8009593 1103.316
+198660.0654586749 3.8009593 1103.2567
+198661.0654587792 3.801038 1103.4344
+198662.0654588835 3.8009987 1103.2963
+198663.0654589878 3.8010774 1103.3555
+198664.0654590921 3.8009987 1103.3555
+198665.0654591965 3.8009987 1103.3555
+198666.0654593008 3.8011563 1103.316
+198667.0654594051 3.801038 1103.3752
+198668.0654595094 3.8011169 1103.3555
+198669.0654596137 3.8011169 1103.316
+198670.065459718 3.8011563 1103.3752
+198671.0654598223 3.8011563 1103.3555
+198672.0654599266 3.801038 1103.316
+198673.0654600309 3.8011563 1103.316
+198674.0654601352 3.801235 1103.2765
+198675.0654602395 3.8011956 1103.3752
+198676.0654603438 3.8011956 1103.3357
+198677.0654604482 3.8011956 1103.2963
+198678.0654605525 3.801235 1103.3357
+198679.0654606568 3.8013923 1103.3357
+198680.0654607611 3.8013136 1103.3949
+198681.0654608654 3.8013136 1103.4147
+198682.0654609697 3.8012743 1103.3949
+198683.065461074 3.8013136 1103.3752
+198684.0654611783 3.8012743 1103.2765
+198685.0654612826 3.8012743 1103.3357
+198686.0654613869 3.8013136 1103.2567
+198687.0654614912 3.8013136 1103.2567
+198688.0654615955 3.8013136 1103.2567
+198689.0654616999 3.8013923 1103.3752
+198690.0654618042 3.8014712 1103.3357
+198691.0654619085 3.8014319 1103.3949
+198692.0654620128 3.801353 1103.3752
+198693.0654621171 3.8014319 1103.2567
+198694.0654622214 3.8014319 1103.4542
+198695.0654623257 3.8014319 1103.3357
+198696.06546243 3.8015499 1103.3555
+198697.0654625343 3.8015499 1103.3752
+198698.0654626386 3.8015499 1103.3555
+198699.0654627429 3.8015893 1103.3555
+198700.0654628472 3.8014712 1103.2963
+198701.0654629515 3.8015499 1103.2765
+198702.0654630559 3.8014319 1103.3555
+198703.0654631602 3.8015499 1103.316
+198704.0654632645 3.8015499 1103.316
+198705.0654633688 3.8015106 1103.4147
+198706.0654634731 3.8016679 1103.4344
+198707.0654635774 3.8015893 1103.3752
+198708.0654636817 3.8015106 1103.4542
+198709.065463786 3.8016679 1103.3752
+198710.0654638903 3.8016286 1103.2963
+198711.0654639946 3.8016679 1103.3357
+198712.0654640989 3.8016679 1103.316
+198713.0654642032 3.8017073 1103.2567
+198714.0654643076 3.8016679 1103.316
+198715.0654644119 3.8017468 1103.3357
+198716.0654645162 3.8017468 1103.2369
+198717.0654646205 3.8017862 1103.316
+198718.0654647248 3.8017073 1103.2567
+198719.0654648291 3.8018649 1103.3357
+198720.0654649334 3.8018255 1103.3752
+198721.0654650377 3.8017468 1103.2172
+198722.065465142 3.8017073 1103.3752
+198723.0654652463 3.8019042 1103.2963
+198724.0654653506 3.8018255 1103.3555
+198725.0654654549 3.8017468 1103.3555
+198726.0654655593 3.8018649 1103.3752
+198727.0654656636 3.8019042 1103.3357
+198728.0654657679 3.8019042 1103.3555
+198729.0654658722 3.8018255 1103.3752
+198730.0654659765 3.8019829 1103.3949
+198731.0654660808 3.8019042 1103.3555
+198732.0654661851 3.8019042 1103.3752
+198733.0654662894 3.8019829 1103.3949
+198734.0654663937 3.8019829 1103.3357
+198735.065466498 3.8019435 1103.316
+198736.0654666023 3.8019435 1103.3357
+198737.0654667066 3.8019829 1103.3949
+198738.0654668109 3.8020225 1103.3949
+198739.0654669153 3.8019829 1103.2567
+198740.0654670196 3.8020225 1103.3357
+198741.0654671239 3.8021798 1103.3555
+198742.0654672282 3.8019829 1103.2765
+198743.0654673325 3.8019829 1103.2963
+198744.0654674368 3.8021798 1103.3555
+198745.0654675411 3.8021011 1103.2963
+198746.0654676454 3.8021405 1103.316
+198747.0654677497 3.8021011 1103.3555
+198748.065467854 3.8020618 1103.3752
+198749.0654679583 3.8021798 1103.3752
+198750.0654680626 3.8020618 1103.3555
+198751.065468167 3.8022192 1103.2963
+198752.0654682713 3.8021798 1103.3555
+198753.0654683756 3.8021405 1103.3949
+198754.0654684799 3.8022585 1103.474
+198755.0654685842 3.8022585 1103.2172
+198756.0654686885 3.8022192 1103.316
+198757.0654687928 3.8023374 1103.3555
+198758.0654688971 3.8022192 1103.3949
+198759.0654690014 3.8022978 1103.3752
+198760.0654691057 3.8022585 1103.316
+198761.06546921 3.8022585 1103.3752
+198762.0654693143 3.8023374 1103.3949
+198763.0654694187 3.8023767 1103.2963
+198764.065469523 3.8023767 1103.4147
+198765.0654696273 3.8024948 1103.3555
+198766.0654697316 3.8023767 1103.316
+198767.0654698359 3.8023374 1103.3357
+198768.0654699402 3.8025341 1103.4147
+198769.0654700445 3.8024161 1103.3555
+198770.0654701488 3.8024554 1103.474
+198771.0654702531 3.8024161 1103.3357
+198772.0654703574 3.8025734 1103.3752
+198773.0654704617 3.8025341 1103.3357
+198774.065470566 3.8024554 1103.316
+198775.0654706704 3.8025734 1103.316
+198776.0654707747 3.8025341 1103.3752
+198777.065470879 3.8026524 1103.3555
+198778.0654709833 3.8025341 1103.316
+198779.0654710876 3.8025341 1103.316
+198780.0654711919 3.8026524 1103.4344
+198781.0654712962 3.8025734 1103.3555
+198782.0654714005 3.8025734 1103.316
+198783.0654715048 3.802731 1103.316
+198784.0654716091 3.8026128 1103.3555
+198785.0654717134 3.8026917 1103.3949
+198786.0654718177 3.802731 1103.3949
+198787.065471922 3.8026128 1103.3752
+198788.0654720264 3.8026917 1103.4344
+198789.0654721307 3.802731 1103.4542
+198790.065472235 3.8026524 1103.4344
+198791.0654723393 3.8027704 1103.3555
+198792.0654724436 3.8028491 1103.3357
+198793.0654725479 3.8026524 1103.3752
+198794.0654726522 3.8028097 1103.2963
+198795.0654727565 3.8027704 1103.3752
+198796.0654728608 3.802731 1103.2963
+198797.0654729651 3.8028097 1103.3555
+198798.0654730694 3.8028491 1103.2765
+198799.0654731737 3.8027704 1103.3949
+198800.0654732781 3.8029673 1103.3357
+198801.0654733824 3.8028491 1103.4147
+198802.0654734867 3.8029673 1103.316
+198803.065473591 3.8028491 1103.3555
+198804.0654736953 3.8030066 1103.3949
+198805.0654737996 3.8028884 1103.316
+198806.0654739039 3.8029673 1103.2567
+198807.0654740082 3.8029277 1103.316
+198808.0654741125 3.8029277 1103.3357
+198809.0654742168 3.803046 1103.3949
+198810.0654743211 3.8029277 1103.316
+198811.0654744254 3.8029673 1103.3555
+198812.0654745298 3.8029673 1103.3357
+198813.0654746341 3.8030853 1103.2567
+198814.0654747384 3.8029673 1103.3949
+198815.0654748427 3.8031247 1103.3357
+198816.065474947 3.8031247 1103.2567
+198817.0654750513 3.8031247 1103.3357
+198818.0654751556 3.803164 1103.3357
+198819.0654752599 3.8030853 1103.2963
+198820.0654753642 3.8031247 1103.3949
+198821.0654754685 3.8031247 1103.3949
+198822.0654755728 3.8032823 1103.3949
+198823.0654756771 3.803164 1103.3555
+198824.0654757814 3.803164 1103.4147
+198825.0654758858 3.8032033 1103.316
+198826.0654759901 3.8032427 1103.3555
+198827.0654760944 3.803164 1103.3949
+198828.0654761987 3.8032823 1103.2567
+198829.065476303 3.8032427 1103.3555
+198830.0654764073 3.8032427 1103.4147
+198831.0654765116 3.8032427 1103.4344
+198832.0654766159 3.8033609 1103.474
+198833.0654767202 3.8033216 1103.3357
+198834.0654768245 3.8032823 1103.2963
+198835.0654769288 3.8034003 1103.316
+198836.0654770331 3.8033216 1103.316
+198837.0654771375 3.8034003 1103.316
+198838.0654772418 3.8032823 1103.3752
+198839.0654773461 3.8034396 1103.4147
+198840.0654774504 3.8034003 1103.3949
+198841.0654775547 3.8034003 1103.3555
+198842.065477659 3.8034396 1103.3752
+198843.0654777633 3.8034396 1103.3752
+198844.0654778676 3.8034396 1103.2963
+198845.0654779719 3.8035183 1103.3357
+198846.0654780762 3.8033609 1103.2963
+198847.0654781805 3.803479 1103.2963
+198848.0654782848 3.8036366 1103.3357
+198849.0654783892 3.8035183 1103.3949
+198850.0654784935 3.8035183 1103.3752
+198851.0654785978 3.8035576 1103.2963
+198852.0654787021 3.8035972 1103.316
+198853.0654788064 3.8035576 1103.316
+198854.0654789107 3.8035972 1103.3949
+198855.065479015 3.8036366 1103.2963
+198856.0654791193 3.8036366 1103.3949
+198857.0654792236 3.8036366 1103.3752
+198858.0654793279 3.8037152 1103.3555
+198859.0654794322 3.8036759 1103.4147
+198860.0654795365 3.8036759 1103.4542
+198861.0654796408 3.8037546 1103.3752
+198862.0654797452 3.8037152 1103.474
+198863.0654798495 3.8036366 1103.3752
+198864.0654799538 3.8036759 1103.3555
+198865.0654800581 3.8037546 1103.3555
+198866.0654801624 3.8036366 1103.3555
+198867.0654802667 3.8037939 1103.316
+198868.065480371 3.8037546 1103.3357
+198869.0654804753 3.8038332 1103.316
+198870.0654805796 3.8038332 1103.3752
+198871.0654806839 3.8037939 1103.3949
+198872.0654807882 3.8037939 1103.316
+198873.0654808925 3.8038332 1103.3357
+198874.0654809969 3.8037939 1103.3752
+198875.0654811012 3.8039515 1103.3555
+198876.0654812055 3.8039122 1103.2963
+198877.0654813098 3.8038332 1103.3357
+198878.0654814141 3.8038728 1103.3555
+198879.0654815184 3.8039122 1103.2963
+198880.0654816227 3.8038728 1103.3752
+198881.065481727 3.8039515 1103.3752
+198882.0654818313 3.8040695 1103.2963
+198883.0654819356 3.8039515 1103.3555
+198884.0654820399 3.8039908 1103.3949
+198885.0654821442 3.8038728 1103.3752
+198886.0654822486 3.8040695 1103.316
+198887.0654823529 3.8040695 1103.3357
+198888.0654824572 3.8039908 1103.2963
+198889.0654825615 3.8041089 1103.3555
+198890.0654826658 3.8039122 1103.3752
+198891.0654827701 3.8040695 1103.3555
+198892.0654828744 3.8041482 1103.3555
+198893.0654829787 3.8041482 1103.3949
+198894.065483083 3.8041089 1103.3357
+198895.0654831873 3.8041089 1103.316
+198896.0654832916 3.8041089 1103.3752
+198897.0654833959 3.8041482 1103.3555
+198898.0654835003 3.8042665 1103.316
+198899.0654836046 3.8042271 1103.4147
+198900.0654837089 3.8041878 1103.4147
+198901.0654838132 3.8041878 1103.3555
+198902.0654839175 3.8041878 1103.2963
+198903.0654840218 3.8041878 1103.3752
+198904.0654841261 3.8042271 1103.2963
+198905.0654842304 3.8043058 1103.3949
+198906.0654843347 3.8043058 1103.3752
+198907.065484439 3.8042271 1103.316
+198908.0654845433 3.8044631 1103.3752
+198909.0654846476 3.8043058 1103.3357
+198910.0654847519 3.8043845 1103.3357
+198911.0654848563 3.8042665 1103.2369
+198912.0654849606 3.8043451 1103.3949
+198913.0654850649 3.8045027 1103.3555
+198914.0654851692 3.8043451 1103.3357
+198915.0654852735 3.8044238 1103.4147
+198916.0654853778 3.8044238 1103.3555
+198917.0654854821 3.8045027 1103.3357
+198918.0654855864 3.8045027 1103.3357
+198919.0654856907 3.8043845 1103.3357
+198920.065485795 3.8045421 1103.3555
+198921.0654858993 3.8045027 1103.3949
+198922.0654860036 3.8044631 1103.3357
+198923.065486108 3.8044631 1103.2765
+198924.0654862123 3.8045027 1103.3949
+198925.0654863166 3.8045814 1103.316
+198926.0654864209 3.8046207 1103.3555
+198927.0654865252 3.8045421 1103.3555
+198928.0654866295 3.8045027 1103.3555
+198929.0654867338 3.8045421 1103.3752
+198930.0654868381 3.8045814 1103.4147
+198931.0654869424 3.8046601 1103.2567
+198932.0654870467 3.8047388 1103.2567
+198933.065487151 3.8046207 1103.3357
+198934.0654872553 3.8046994 1103.2567
+198935.0654873597 3.8046601 1103.2765
+198936.065487464 3.8046601 1103.3555
+198937.0654875683 3.8047388 1103.3555
+198938.0654876726 3.8048177 1103.316
+198939.0654877769 3.8046207 1103.316
+198940.0654878812 3.8048177 1103.3357
+198941.0654879855 3.8048177 1103.3752
+198942.0654880898 3.8047781 1103.3752
+198943.0654881941 3.8047388 1103.3357
+198944.0654882984 3.8048964 1103.3357
+198945.0654884027 3.804857 1103.3555
+198946.065488507 3.804857 1103.3357
+198947.0654886113 3.8048964 1103.3357
+198948.0654887157 3.8047388 1103.316
+198949.06548882 3.8048177 1103.3555
+198950.0654889243 3.8047781 1103.3357
+198951.0654890286 3.8048964 1103.4147
+198952.0654891329 3.804975 1103.3357
+198953.0654892372 3.8048964 1103.3752
+198954.0654893415 3.8050144 1103.3555
+198955.0654894458 3.8049357 1103.3555
+198956.0654895501 3.8048964 1103.2369
+198957.0654896544 3.8049357 1103.316
+198958.0654897587 3.8049357 1103.2567
+198959.065489863 3.8049357 1103.3357
+198960.0654899674 3.804975 1103.3752
+198961.0654900717 3.8050537 1103.3357
+198962.065490176 3.8049357 1103.3752
+198963.0654902803 3.8050537 1103.3555
+198964.0654903846 3.804975 1103.2963
+198965.0654904889 3.8050537 1103.3752
+198966.0654905932 3.8050537 1103.3752
+198967.0654906975 3.8050931 1103.316
+198968.0654908018 3.804975 1103.316
+198969.0654909061 3.8052506 1103.316
+198970.0654910104 3.8052113 1103.3555
+198971.0654911147 3.8050931 1103.316
+198972.0654912191 3.8052113 1103.2765
+198973.0654913234 3.805172 1103.3752
+198974.0654914277 3.8052113 1103.2765
+198975.065491532 3.805172 1103.4147
+198976.0654916363 3.805172 1103.4542
+198977.0654917406 3.8052113 1103.316
+198978.0654918449 3.80529 1103.3555
+198979.0654919492 3.80529 1103.3752
+198980.0654920535 3.8052113 1103.316
+198981.0654921578 3.80529 1103.3555
+198982.0654922621 3.8052506 1103.3752
+198983.0654923664 3.80529 1103.2567
+198984.0654924707 3.80529 1103.3949
+198985.0654925751 3.8053687 1103.3357
+198986.0654926794 3.8052113 1103.2765
+198987.0654927837 3.8053687 1103.3555
+198988.065492888 3.8053293 1103.3357
+198989.0654929923 3.805408 1103.3555
+198990.0654930966 3.8054476 1103.4147
+198991.0654932009 3.805408 1103.4147
+198992.0654933052 3.8053687 1103.2963
+198993.0654934095 3.8054476 1103.316
+198994.0654935138 3.8053687 1103.3555
+198995.0654936181 3.8054869 1103.3357
+198996.0654937224 3.8054476 1103.3752
+198997.0654938268 3.8055656 1103.3752
+198998.0654939311 3.8055263 1103.316
+198999.0654940354 3.8055263 1103.3752
+199000.0654941397 3.8055656 1103.316
+199001.065494244 3.8054869 1103.4147
+199002.0654943483 3.8056049 1103.2765
+199003.0654944526 3.8055656 1103.2963
+199004.0654945569 3.8054476 1103.4344
+199005.0654946612 3.8056049 1103.3949
+199006.0654947655 3.8057232 1103.2963
+199007.0654948698 3.8056049 1103.3357
+199008.0654949741 3.8056049 1103.3949
+199009.0654950785 3.8056443 1103.3555
+199010.0654951828 3.8056836 1103.3555
+199011.0654952871 3.8056443 1103.3752
+199012.0654953914 3.8056443 1103.3752
+199013.0654954957 3.8057232 1103.316
+199014.0654956 3.8056836 1103.3949
+199015.0654957043 3.8056836 1103.1975
+199016.0654958086 3.8057625 1103.3555
+199017.0654959129 3.8057232 1103.3555
+199018.0654960172 3.8058412 1103.3752
+199019.0654961215 3.8057232 1103.4147
+199020.0654962258 3.8058019 1103.3555
+199021.0654963301 3.8058412 1103.3555
+199022.0654964345 3.8058412 1103.3949
+199023.0654965388 3.8059199 1103.3357
+199024.0654966431 3.8058019 1103.2963
+199025.0654967474 3.8058805 1103.3949
+199026.0654968517 3.8058805 1103.3949
+199027.065496956 3.8059592 1103.3357
+199028.0654970603 3.8058019 1103.3357
+199029.0654971646 3.8059986 1103.3752
+199030.0654972689 3.8059199 1103.3357
+199031.0654973732 3.8060381 1103.2765
+199032.0654974775 3.8059592 1103.3357
+199033.0654975818 3.8059592 1103.3949
+199034.0654976862 3.8059986 1103.3555
+199035.0654977905 3.8060381 1103.3357
+199036.0654978948 3.8059986 1103.3752
+199037.0654979991 3.8059986 1103.3357
+199038.0654981034 3.8060381 1103.3555
+199039.0654982077 3.8061168 1103.2369
+199040.065498312 3.8060775 1103.3357
+199041.0654984163 3.8059986 1103.4147
+199042.0654985206 3.8061562 1103.3555
+199043.0654986249 3.8060775 1103.3357
+199044.0654987292 3.8062348 1103.3357
+199045.0654988335 3.8061562 1103.3949
+199046.0654989379 3.8061955 1103.316
+199047.0654990422 3.8061562 1103.3752
+199048.0654991465 3.8061168 1103.3555
+199049.0654992508 3.8061955 1103.3555
+199050.0654993551 3.8062742 1103.2765
+199051.0654994594 3.8061955 1103.2963
+199052.0654995637 3.8061562 1103.3555
+199053.065499668 3.8062348 1103.2963
+199054.0654997723 3.8062348 1103.3752
+199055.0654998766 3.8063135 1103.316
+199056.0654999809 3.8062742 1103.2963
+199057.0655000852 3.8062742 1103.3752
+199058.0655001896 3.8062742 1103.3357
+199059.0655002939 3.8063135 1103.3357
+199060.0655003982 3.8063531 1103.4147
+199061.0655005025 3.8063531 1103.316
+199062.0655006068 3.8063531 1103.1975
+199063.0655007111 3.8063531 1103.3357
+199064.0655008154 3.8064318 1103.316
+199065.0655009197 3.8064318 1103.3949
+199066.065501024 3.8063924 1103.3949
+199067.0655011283 3.8063135 1103.316
+199068.0655012326 3.8065104 1103.3752
+199069.0655013369 3.8065104 1103.3555
+199070.0655014412 3.8064318 1103.3357
+199071.0655015456 3.8064711 1103.3752
+199072.0655016499 3.8065104 1103.2963
+199073.0655017542 3.8065498 1103.3357
+199074.0655018585 3.8065104 1103.2765
+199075.0655019628 3.8065104 1103.3555
+199076.0655020671 3.8064318 1103.2963
+199077.0655021714 3.8065498 1103.316
+199078.0655022757 3.806668 1103.4542
+199079.06550238 3.8065498 1103.3555
+199080.0655024843 3.8065498 1103.316
+199081.0655025886 3.806668 1103.2963
+199082.0655026929 3.806668 1103.3555
+199083.0655027973 3.8066285 1103.3357
+199084.0655029016 3.8065891 1103.3949
+199085.0655030059 3.8065891 1103.4147
+199086.0655031102 3.806668 1103.4147
+199087.0655032145 3.8065498 1103.3357
+199088.0655033188 3.8067467 1103.3357
+199089.0655034231 3.8068254 1103.2567
+199090.0655035274 3.8067861 1103.316
+199091.0655036317 3.806668 1103.3357
+199092.065503736 3.8067861 1103.3357
+199093.0655038403 3.8067861 1103.3752
+199094.0655039446 3.8068254 1103.3752
+199095.065504049 3.8067467 1103.2567
+199096.0655041533 3.8067861 1103.3752
+199097.0655042576 3.8068254 1103.3752
+199098.0655043619 3.806668 1103.3357
+199099.0655044662 3.8068254 1103.316
+199100.0655045705 3.8069434 1103.2369
+199101.0655046748 3.8069041 1103.3357
+199102.0655047791 3.8068254 1103.3949
+199103.0655048834 3.8068647 1103.3949
+199104.0655049877 3.8069041 1103.3555
+199105.065505092 3.806983 1103.4147
+199106.0655051963 3.8069041 1103.3949
+199107.0655053006 3.8070223 1103.3752
+199108.065505405 3.8070223 1103.2963
+199109.0655055093 3.806983 1103.2963
+199110.0655056136 3.8069434 1103.3357
+199111.0655057179 3.806983 1103.2369
+199112.0655058222 3.806983 1103.2765
+199113.0655059265 3.8070617 1103.2765
+199114.0655060308 3.8070617 1103.3752
+199115.0655061351 3.8071797 1103.3555
+199116.0655062394 3.8070617 1103.4147
+199117.0655063437 3.8070223 1103.2765
+199118.065506448 3.807101 1103.4147
+199119.0655065523 3.807101 1103.3752
+199120.0655066567 3.8070617 1103.316
+199121.065506761 3.8071404 1103.4147
+199122.0655068653 3.8071404 1103.3949
+199123.0655069696 3.807219 1103.316
+199124.0655070739 3.8071797 1103.4344
+199125.0655071782 3.8072584 1103.316
+199126.0655072825 3.8071404 1103.2963
+199127.0655073868 3.8071797 1103.4938
+199128.0655074911 3.8072584 1103.316
+199129.0655075954 3.8072584 1103.316
+199130.0655076997 3.807219 1103.3555
+199131.065507804 3.8072584 1103.3752
+199132.0655079084 3.8072979 1103.3357
+199133.0655080127 3.807219 1103.2963
+199134.065508117 3.807416 1103.3357
+199135.0655082213 3.8072584 1103.2567
+199136.0655083256 3.8073766 1103.4344
+199137.0655084299 3.8073766 1103.3752
+199138.0655085342 3.8073373 1103.316
+199139.0655086385 3.8073766 1103.3752
+199140.0655087428 3.8072979 1103.2567
+199141.0655088471 3.807416 1103.2963
+199142.0655089514 3.807416 1103.4344
+199143.0655090557 3.8074553 1103.3752
+199144.06550916 3.8073766 1103.3555
+199145.0655092644 3.8074946 1103.3555
+199146.0655093687 3.807416 1103.316
+199147.065509473 3.8075736 1103.3357
+199148.0655095773 3.8075736 1103.2765
+199149.0655096816 3.807534 1103.3357
+199150.0655097859 3.8074553 1103.3949
+199151.0655098902 3.807534 1103.3357
+199152.0655099945 3.807534 1103.3752
+199153.0655100988 3.807534 1103.3357
+199154.0655102031 3.8076129 1103.3752
+199155.0655103074 3.8075736 1103.4344
+199156.0655104117 3.8076522 1103.3555
+199157.0655105161 3.8076916 1103.4147
+199158.0655106204 3.8076522 1103.3752
+199159.0655107247 3.8077309 1103.316
+199160.065510829 3.8076129 1103.3555
+199161.0655109333 3.8077309 1103.316
+199162.0655110376 3.8076522 1103.316
+199163.0655111419 3.8077703 1103.2765
+199164.0655112462 3.8076916 1103.4147
+199165.0655113505 3.8076522 1103.4147
+199166.0655114548 3.8077703 1103.3752
+199167.0655115591 3.8077703 1103.3555
+199168.0655116634 3.8077703 1103.3555
+199169.0655117678 3.8078096 1103.2963
+199170.0655118721 3.8077703 1103.2963
+199171.0655119764 3.8078096 1103.4147
+199172.0655120807 3.8078489 1103.3357
+199173.065512185 3.8078489 1103.316
+199174.0655122893 3.8078489 1103.3555
+199175.0655123936 3.8078885 1103.3949
+199176.0655124979 3.8079278 1103.3555
+199177.0655126022 3.8078885 1103.316
+199178.0655127065 3.8080459 1103.3357
+199179.0655128108 3.8078885 1103.316
+199180.0655129151 3.8078885 1103.3752
+199181.0655130195 3.8078885 1103.316
+199182.0655131238 3.8079278 1103.2963
+199183.0655132281 3.8080459 1103.3752
+199184.0655133324 3.8080065 1103.2765
+199185.0655134367 3.8080459 1103.3555
+199186.065513541 3.8080065 1103.3357
+199187.0655136453 3.8080065 1103.3357
+199188.0655137496 3.8080065 1103.316
+199189.0655138539 3.8082035 1103.3949
+199190.0655139582 3.8080065 1103.4147
+199191.0655140625 3.8080459 1103.3357
+199192.0655141668 3.8080852 1103.4147
+199193.0655142711 3.8080852 1103.3555
+199194.0655143755 3.8081639 1103.3949
+199195.0655144798 3.8079672 1103.3357
+199196.0655145841 3.8081245 1103.3357
+199197.0655146884 3.8081639 1103.2567
+199198.0655147927 3.8082035 1103.2765
+199199.065514897 3.8081245 1103.4344
+199200.0655150013 3.8082428 1103.3357
+199201.0655151056 3.8082428 1103.3949
+199202.0655152099 3.8083215 1103.3357
+199203.0655153142 3.8082428 1103.2963
+199204.0655154185 3.8082428 1103.2963
+199205.0655155228 3.8082035 1103.2963
+199206.0655156272 3.8083215 1103.3357
+199207.0655157315 3.8082428 1103.2963
+199208.0655158358 3.8083215 1103.2963
+199209.0655159401 3.8082428 1103.3752
+199210.0655160444 3.8083608 1103.2963
+199211.0655161487 3.8084395 1103.316
+199212.065516253 3.8083215 1103.3555
+199213.0655163573 3.8083608 1103.2963
+199214.0655164616 3.8084002 1103.3555
+199215.0655165659 3.8083608 1103.2567
+199216.0655166702 3.8084395 1103.3949
+199217.0655167745 3.8084395 1103.2567
+199218.0655168789 3.8084395 1103.316
+199219.0655169832 3.8084002 1103.3752
+199220.0655170875 3.8084395 1103.3752
+199221.0655171918 3.8084788 1103.4147
+199222.0655172961 3.8084788 1103.3752
+199223.0655174004 3.8084395 1103.4344
+199224.0655175047 3.8085577 1103.4147
+199225.065517609 3.8085577 1103.3357
+199226.0655177133 3.8085971 1103.2963
+199227.0655178176 3.8085184 1103.316
+199228.0655179219 3.8085971 1103.3949
+199229.0655180262 3.8086758 1103.2963
+199230.0655181305 3.8086758 1103.3357
+199231.0655182349 3.8085971 1103.3752
+199232.0655183392 3.8086758 1103.3752
+199233.0655184435 3.8085577 1103.3555
+199234.0655185478 3.8085971 1103.3357
+199235.0655186521 3.8086364 1103.3555
+199236.0655187564 3.8087938 1103.2567
+199237.0655188607 3.8086364 1103.3752
+199238.065518965 3.8087938 1103.3949
+199239.0655190693 3.8086758 1103.316
+199240.0655191736 3.8087151 1103.316
+199241.0655192779 3.8087544 1103.316
+199242.0655193822 3.8088727 1103.3555
+199243.0655194866 3.8087938 1103.4147
+199244.0655195909 3.8088334 1103.3357
+199245.0655196952 3.8087544 1103.3555
+199246.0655197995 3.8088727 1103.3752
+199247.0655199038 3.8087544 1103.3752
+199248.0655200081 3.808912 1103.316
+199249.0655201124 3.8089514 1103.3949
+199250.0655202167 3.8088727 1103.3357
+199251.065520321 3.8088334 1103.3555
+199252.0655204253 3.808912 1103.316
+199253.0655205296 3.8087938 1103.3752
+199254.0655206339 3.8088334 1103.3949
+199255.0655207383 3.8088727 1103.3357
+199256.0655208426 3.8089907 1103.2765
+199257.0655209469 3.8089514 1103.316
+199258.0655210512 3.8089907 1103.3949
+199259.0655211555 3.8090694 1103.3555
+199260.0655212598 3.8090301 1103.3357
+199261.0655213641 3.8089907 1103.3357
+199262.0655214684 3.809109 1103.3949
+199263.0655215727 3.8090301 1103.3357
+199264.065521677 3.8090694 1103.2963
+199265.0655217813 3.8090694 1103.3949
+199266.0655218856 3.8091483 1103.4147
+199267.0655219899 3.8091483 1103.2963
+199268.0655220943 3.8090694 1103.3949
+199269.0655221986 3.8091877 1103.2963
+199270.0655223029 3.8091483 1103.2963
+199271.0655224072 3.8091877 1103.3555
+199272.0655225115 3.8091483 1103.2567
+199273.0655226158 3.8091483 1103.316
+199274.0655227201 3.8091877 1103.316
+199275.0655228244 3.8092663 1103.3752
+199276.0655229287 3.809227 1103.3949
+199277.065523033 3.8091483 1103.3949
+199278.0655231373 3.8092663 1103.2963
+199279.0655232416 3.8092663 1103.4147
+199280.065523346 3.809227 1103.3949
+199281.0655234503 3.8094239 1103.3949
+199282.0655235546 3.809227 1103.3357
+199283.0655236589 3.8092663 1103.3752
+199284.0655237632 3.8092663 1103.3357
+199285.0655238675 3.8093843 1103.2369
+199286.0655239718 3.8093057 1103.2963
+199287.0655240761 3.8094239 1103.316
+199288.0655241804 3.809345 1103.3357
+199289.0655242847 3.8093057 1103.316
+199290.065524389 3.8094239 1103.3555
+199291.0655244933 3.8092663 1103.3357
+199292.0655245977 3.8094239 1103.2765
+199293.065524702 3.8093843 1103.3555
+199294.0655248063 3.8095419 1103.2963
+199295.0655249106 3.8093843 1103.3752
+199296.0655250149 3.8095026 1103.3357
+199297.0655251192 3.8095026 1103.3357
+199298.0655252235 3.8094633 1103.316
+199299.0655253278 3.8095026 1103.3357
+199300.0655254321 3.8095026 1103.3357
+199301.0655255364 3.8095419 1103.3357
+199302.0655256407 3.8095813 1103.2963
+199303.065525745 3.8095813 1103.3357
+199304.0655258494 3.8095419 1103.4344
+199305.0655259537 3.8096206 1103.3949
+199306.065526058 3.80966 1103.4147
+199307.0655261623 3.80966 1103.316
+199308.0655262666 3.8096206 1103.3949
+199309.0655263709 3.8097389 1103.316
+199310.0655264752 3.8097389 1103.316
+199311.0655265795 3.8096206 1103.2765
+199312.0655266838 3.8097782 1103.3949
+199313.0655267881 3.8096993 1103.316
+199314.0655268924 3.8096993 1103.3949
+199315.0655269967 3.8097389 1103.3357
+199316.065527101 3.8097389 1103.2369
+199317.0655272054 3.8096993 1103.2963
+199318.0655273097 3.8097389 1103.3949
+199319.065527414 3.8098569 1103.4147
+199320.0655275183 3.8098176 1103.2765
+199321.0655276226 3.8099356 1103.2567
+199322.0655277269 3.8097389 1103.2369
+199323.0655278312 3.8098569 1103.3357
+199324.0655279355 3.8099356 1103.3555
+199325.0655280398 3.8098569 1103.3357
+199326.0655281441 3.8098569 1103.316
+199327.0655282484 3.8098962 1103.3752
+199328.0655283527 3.8098962 1103.316
+199329.0655284571 3.8100538 1103.3555
+199330.0655285614 3.8098962 1103.316
+199331.0655286657 3.8098962 1103.3752
+199332.06552877 3.8098962 1103.316
+199333.0655288743 3.8100538 1103.3555
+199334.0655289786 3.8100142 1103.2765
+199335.0655290829 3.8100538 1103.3357
+199336.0655291872 3.8100142 1103.3357
+199337.0655292915 3.8100538 1103.3357
+199338.0655293958 3.8100142 1103.2963
+199339.0655295001 3.8100142 1103.3357
+199340.0655296044 3.8100538 1103.3357
+199341.0655297088 3.8100142 1103.3555
+199342.0655298131 3.8101718 1103.4147
+199343.0655299174 3.8102112 1103.3357
+199344.0655300217 3.8102112 1103.3555
+199345.065530126 3.8101325 1103.2963
+199346.0655302303 3.8101718 1103.3949
+199347.0655303346 3.8102505 1103.3357
+199348.0655304389 3.8102112 1103.2765
+199349.0655305432 3.8102899 1103.2567
+199350.0655306475 3.8102112 1103.316
+199351.0655307518 3.8102505 1103.2963
+199352.0655308561 3.8102112 1103.3555
+199353.0655309604 3.8103292 1103.316
+199354.0655310648 3.8103292 1103.3752
+199355.0655311691 3.8102899 1103.2963
+199356.0655312734 3.8103688 1103.316
+199357.0655313777 3.8102505 1103.4147
+199358.065531482 3.8102899 1103.2765
+199359.0655315863 3.8104475 1103.2765
+199360.0655316906 3.8103688 1103.3357
+199361.0655317949 3.8103688 1103.2963
+199362.0655318992 3.8104081 1103.3357
+199363.0655320035 3.8103688 1103.2567
+199364.0655321078 3.8104081 1103.2567
+199365.0655322121 3.8104868 1103.3357
+199366.0655323165 3.8104475 1103.316
+199367.0655324208 3.8104868 1103.4147
+199368.0655325251 3.8104868 1103.3555
+199369.0655326294 3.8105261 1103.3357
+199370.0655327337 3.8104868 1103.2963
+199371.065532838 3.8104475 1103.3555
+199372.0655329423 3.8104868 1103.3949
+199373.0655330466 3.8104475 1103.2765
+199374.0655331509 3.8106048 1103.4344
+199375.0655332552 3.8105261 1103.3949
+199376.0655333595 3.8106441 1103.3357
+199377.0655334638 3.8105261 1103.3357
+199378.0655335682 3.8106441 1103.2963
+199379.0655336725 3.8105655 1103.316
+199380.0655337768 3.8106441 1103.2963
+199381.0655338811 3.8106837 1103.3752
+199382.0655339854 3.8106837 1103.2765
+199383.0655340897 3.8106441 1103.4344
+199384.065534194 3.8106837 1103.4344
+199385.0655342983 3.8106837 1103.316
+199386.0655344026 3.8106837 1103.4147
+199387.0655345069 3.8106837 1103.3752
+199388.0655346112 3.8106441 1103.2963
+199389.0655347155 3.8107624 1103.3949
+199390.0655348198 3.8107624 1103.316
+199391.0655349242 3.8108411 1103.3752
+199392.0655350285 3.8108411 1103.3357
+199393.0655351328 3.8109198 1103.3357
+199394.0655352371 3.8107624 1103.3555
+199395.0655353414 3.8108411 1103.3752
+199396.0655354457 3.8107624 1103.316
+199397.06553555 3.8108017 1103.3555
+199398.0655356543 3.8108804 1103.3357
+199399.0655357586 3.8108804 1103.3357
+199400.0655358629 3.8108411 1103.3949
+199401.0655359672 3.8108017 1103.2765
+199402.0655360715 3.8109987 1103.3357
+199403.0655361759 3.8109987 1103.3752
+199404.0655362802 3.8109593 1103.3555
+199405.0655363845 3.8109198 1103.3555
+199406.0655364888 3.8108804 1103.316
+199407.0655365931 3.8108804 1103.2963
+199408.0655366974 3.8111167 1103.3752
+199409.0655368017 3.8109593 1103.3752
+199410.065536906 3.8110774 1103.3752
+199411.0655370103 3.8109987 1103.3949
+199412.0655371146 3.811038 1103.3752
+199413.0655372189 3.8111167 1103.3555
+199414.0655373232 3.8111954 1103.2765
+199415.0655374276 3.8111167 1103.3949
+199416.0655375319 3.8111954 1103.316
+199417.0655376362 3.811156 1103.3752
+199418.0655377405 3.8111167 1103.2963
+199419.0655378448 3.811156 1103.2765
+199420.0655379491 3.8111954 1103.4542
+199421.0655380534 3.8111954 1103.3357
+199422.0655381577 3.8111167 1103.3357
+199423.065538262 3.811156 1103.316
+199424.0655383663 3.8112743 1103.4344
+199425.0655384706 3.8112743 1103.3555
+199426.0655385749 3.8112347 1103.3949
+199427.0655386793 3.8111954 1103.3555
+199428.0655387836 3.8112743 1103.4344
+199429.0655388879 3.8112347 1103.2765
+199430.0655389922 3.8112743 1103.2369
+199431.0655390965 3.8112743 1103.3949
+199432.0655392008 3.8112347 1103.2963
+199433.0655393051 3.811353 1103.3357
+199434.0655394094 3.8113136 1103.3752
+199435.0655395137 3.811353 1103.3555
+199436.065539618 3.8113136 1103.4542
+199437.0655397223 3.811353 1103.3357
+199438.0655398266 3.811471 1103.3752
+199439.0655399309 3.8113923 1103.3555
+199440.0655400353 3.8113923 1103.3752
+199441.0655401396 3.8115497 1103.3949
+199442.0655402439 3.8114316 1103.316
+199443.0655403482 3.8115103 1103.3752
+199444.0655404525 3.8115103 1103.4344
+199445.0655405568 3.8115497 1103.4147
+199446.0655406611 3.8115103 1103.4147
+199447.0655407654 3.8115497 1103.3752
+199448.0655408697 3.8115497 1103.316
+199449.065540974 3.8115103 1103.3357
+199450.0655410783 3.8115497 1103.2963
+199451.0655411826 3.8115892 1103.3949
+199452.065541287 3.8115892 1103.3555
+199453.0655413913 3.8117073 1103.3555
+199454.0655414956 3.8116286 1103.3949
+199455.0655415999 3.8116286 1103.3752
+199456.0655417042 3.8115892 1103.3949
+199457.0655418085 3.8116679 1103.3949
+199458.0655419128 3.8117073 1103.3949
+199459.0655420171 3.8117073 1103.316
+199460.0655421214 3.8116679 1103.316
+199461.0655422257 3.8116679 1103.2765
+199462.06554233 3.8117073 1103.3357
+199463.0655424343 3.8117073 1103.3357
+199464.0655425387 3.8116679 1103.3555
+199465.065542643 3.8117073 1103.3555
+199466.0655427473 3.8118646 1103.316
+199467.0655428516 3.8118253 1103.3949
+199468.0655429559 3.8117466 1103.3357
+199469.0655430602 3.8118253 1103.4344
+199470.0655431645 3.8117466 1103.3555
+199471.0655432688 3.8117859 1103.3357
+199472.0655433731 3.8118253 1103.2567
+199473.0655434774 3.8118646 1103.3555
+199474.0655435817 3.8119829 1103.3949
+199475.065543686 3.8118646 1103.2567
+199476.0655437903 3.8119829 1103.2963
+199477.0655438947 3.8119435 1103.2963
+199478.065543999 3.8119829 1103.3555
+199479.0655441033 3.8119829 1103.316
+199480.0655442076 3.8119829 1103.316
+199481.0655443119 3.8119829 1103.2963
+199482.0655444162 3.8121009 1103.4344
+199483.0655445205 3.8119829 1103.3949
+199484.0655446248 3.8119829 1103.3357
+199485.0655447291 3.8119435 1103.316
+199486.0655448334 3.8120222 1103.3949
+199487.0655449377 3.8120615 1103.2765
+199488.065545042 3.8121009 1103.2963
+199489.0655451464 3.8120615 1103.3555
+199490.0655452507 3.8121009 1103.2765
+199491.065545355 3.8122191 1103.3752
+199492.0655454593 3.8121402 1103.4147
+199493.0655455636 3.8120615 1103.3555
+199494.0655456679 3.8122585 1103.2765
+199495.0655457722 3.8121402 1103.3949
+199496.0655458765 3.8121796 1103.2963
+199497.0655459808 3.8121402 1103.3555
+199498.0655460851 3.8121402 1103.3555
+199499.0655461894 3.8121009 1103.3357
+199500.0655462937 3.8122191 1103.316
+199501.0655463981 3.8122978 1103.316
+199502.0655465024 3.8122585 1103.316
+199503.0655466067 3.8121796 1103.2765
+199504.065546711 3.8122978 1103.4344
+199505.0655468153 3.8122978 1103.3357
+199506.0655469196 3.8122978 1103.4147
+199507.0655470239 3.8124552 1103.316
+199508.0655471282 3.8124158 1103.316
+199509.0655472325 3.8123372 1103.4542
+199510.0655473368 3.8124552 1103.2963
+199511.0655474411 3.8124552 1103.3949
+199512.0655475454 3.8123372 1103.316
+199513.0655476497 3.8124158 1103.2765
+199514.0655477541 3.8124945 1103.2963
+199515.0655478584 3.8124158 1103.3357
+199516.0655479627 3.8124158 1103.3555
+199517.065548067 3.8124158 1103.3752
+199518.0655481713 3.8124945 1103.316
+199519.0655482756 3.8124552 1103.2963
+199520.0655483799 3.8125341 1103.2765
+199521.0655484842 3.8126521 1103.3949
+199522.0655485885 3.8125734 1103.3949
+199523.0655486928 3.8124945 1103.4147
+199524.0655487971 3.8126128 1103.316
+199525.0655489014 3.8126128 1103.3949
+199526.0655490058 3.8125341 1103.316
+199527.0655491101 3.8126128 1103.3949
+199528.0655492144 3.8126521 1103.3555
+199529.0655493187 3.8126128 1103.316
+199530.065549423 3.8126521 1103.2765
+199531.0655495273 3.8127308 1103.3357
+199532.0655496316 3.8126915 1103.3752
+199533.0655497359 3.8126915 1103.3357
+199534.0655498402 3.8126915 1103.316
+199535.0655499445 3.8126521 1103.3949
+199536.0655500488 3.8127308 1103.3949
+199537.0655501531 3.812849 1103.3357
+199538.0655502575 3.8127701 1103.3949
+199539.0655503618 3.812849 1103.3357
+199540.0655504661 3.8127308 1103.3949
+199541.0655505704 3.8127701 1103.316
+199542.0655506747 3.8127701 1103.2369
+199543.065550779 3.8127701 1103.3555
+199544.0655508833 3.8128097 1103.3752
+199545.0655509876 3.8127308 1103.2765
+199546.0655510919 3.8129277 1103.3949
+199547.0655511962 3.8128097 1103.3357
+199548.0655513005 3.8129277 1103.3949
+199549.0655514048 3.8130064 1103.4344
+199550.0655515091 3.812849 1103.3555
+199551.0655516135 3.8128884 1103.316
+199552.0655517178 3.8129671 1103.3357
+199553.0655518221 3.8129277 1103.3357
+199554.0655519264 3.8130851 1103.3555
+199555.0655520307 3.8129277 1103.3357
+199556.065552135 3.8130064 1103.3555
+199557.0655522393 3.8130851 1103.3357
+199558.0655523436 3.8131247 1103.3949
+199559.0655524479 3.8130064 1103.2963
+199560.0655525522 3.8130851 1103.2963
+199561.0655526565 3.813164 1103.3555
+199562.0655527608 3.8131247 1103.3752
+199563.0655528652 3.8130851 1103.2765
+199564.0655529695 3.8130457 1103.3949
+199565.0655530738 3.8130457 1103.2963
+199566.0655531781 3.813164 1103.316
+199567.0655532824 3.8132033 1103.3752
+199568.0655533867 3.813164 1103.3555
+199569.065553491 3.8131247 1103.2963
+199570.0655535953 3.813164 1103.316
+199571.0655536996 3.8132033 1103.3949
+199572.0655538039 3.8132033 1103.4147
+199573.0655539082 3.813164 1103.3357
+199574.0655540125 3.813164 1103.4344
+199575.0655541169 3.8132033 1103.3555
+199576.0655542212 3.813164 1103.3357
+199577.0655543255 3.8133607 1103.4542
+199578.0655544298 3.8133214 1103.3555
+199579.0655545341 3.8133214 1103.2963
+199580.0655546384 3.8133214 1103.3949
+199581.0655547427 3.8133214 1103.3752
+199582.065554847 3.8133607 1103.2567
+199583.0655549513 3.8133607 1103.3357
+199584.0655550556 3.8133607 1103.2765
+199585.0655551599 3.8134 1103.3357
+199586.0655552642 3.8133607 1103.2963
+199587.0655553686 3.8134396 1103.3752
+199588.0655554729 3.8134789 1103.316
+199589.0655555772 3.8134 1103.3357
+199590.0655556815 3.8134 1103.3752
+199591.0655557858 3.8134396 1103.3555
+199592.0655558901 3.8135576 1103.316
+199593.0655559944 3.8135183 1103.3555
+199594.0655560987 3.8135576 1103.3752
+199595.065556203 3.8135183 1103.3555
+199596.0655563073 3.8135576 1103.4147
+199597.0655564116 3.8136363 1103.3555
+199598.0655565159 3.8134789 1103.3949
+199599.0655566202 3.8135183 1103.3357
+199600.0655567246 3.813597 1103.2172
+199601.0655568289 3.8136363 1103.316
+199602.0655569332 3.8136756 1103.2765
+199603.0655570375 3.813597 1103.2567
+199604.0655571418 3.8136363 1103.2963
+199605.0655572461 3.8136363 1103.2567
+199606.0655573504 3.8136756 1103.3949
+199607.0655574547 3.8136363 1103.2765
+199608.065557559 3.8137546 1103.316
+199609.0655576633 3.8138332 1103.4344
+199610.0655577676 3.8137939 1103.3949
+199611.0655578719 3.8136756 1103.2369
+199612.0655579763 3.8138332 1103.3357
+199613.0655580806 3.8137939 1103.3949
+199614.0655581849 3.8138332 1103.2765
+199615.0655582892 3.8137939 1103.4542
+199616.0655583935 3.8136756 1103.3357
+199617.0655584978 3.8138332 1103.2963
+199618.0655586021 3.8138332 1103.316
+199619.0655587064 3.8138332 1103.3555
+199620.0655588107 3.8139119 1103.3949
+199621.065558915 3.8139513 1103.3357
+199622.0655590193 3.8139119 1103.4147
+199623.0655591236 3.8138726 1103.2963
+199624.065559228 3.8138726 1103.3555
+199625.0655593323 3.8139119 1103.3555
+199626.0655594366 3.8139119 1103.3752
+199627.0655595409 3.8140695 1103.2765
+199628.0655596452 3.8139906 1103.316
+199629.0655597495 3.8139906 1103.3555
+199630.0655598538 3.8139119 1103.3949
+199631.0655599581 3.8140299 1103.3357
+199632.0655600624 3.8140299 1103.3949
+199633.0655601667 3.8139513 1103.2567
+199634.065560271 3.8141088 1103.4147
+199635.0655603753 3.8141088 1103.2963
+199636.0655604796 3.8141875 1103.2963
+199637.065560584 3.8140299 1103.2963
+199638.0655606883 3.8140695 1103.2963
+199639.0655607926 3.8141875 1103.3357
+199640.0655608969 3.8141088 1103.3752
+199641.0655610012 3.8141482 1103.3949
+199642.0655611055 3.8141088 1103.316
+199643.0655612098 3.8141875 1103.316
+199644.0655613141 3.8141088 1103.3752
+199645.0655614184 3.8141875 1103.4147
+199646.0655615227 3.8143055 1103.316
+199647.065561627 3.8142269 1103.3357
+199648.0655617313 3.8141875 1103.3752
+199649.0655618357 3.8142269 1103.316
+199650.06556194 3.8143055 1103.2963
+199651.0655620443 3.8143055 1103.3555
+199652.0655621486 3.8142662 1103.3752
+199653.0655622529 3.8143449 1103.4147
+199654.0655623572 3.8143449 1103.2963
+199655.0655624615 3.8143449 1103.3357
+199656.0655625658 3.8142662 1103.2963
+199657.0655626701 3.8143449 1103.3555
+199658.0655627744 3.8144238 1103.4147
+199659.0655628787 3.8144238 1103.3357
+199660.065562983 3.8143845 1103.2765
+199661.0655630874 3.8143845 1103.3357
+199662.0655631917 3.8145418 1103.4147
+199663.065563296 3.8145025 1103.1975
+199664.0655634003 3.8144238 1103.3752
+199665.0655635046 3.8144631 1103.4147
+199666.0655636089 3.8145812 1103.2963
+199667.0655637132 3.8144238 1103.2963
+199668.0655638175 3.8145025 1103.2369
+199669.0655639218 3.8144238 1103.3357
+199670.0655640261 3.8145418 1103.3357
+199671.0655641304 3.8144631 1103.2963
+199672.0655642347 3.8145418 1103.3555
+199673.065564339 3.8145025 1103.316
+199674.0655644434 3.8146601 1103.3752
+199675.0655645477 3.8146205 1103.3357
+199676.065564652 3.8146205 1103.3555
+199677.0655647563 3.8146205 1103.2567
+199678.0655648606 3.8146994 1103.4147
+199679.0655649649 3.8146205 1103.3949
+199680.0655650692 3.8147388 1103.3555
+199681.0655651735 3.8145812 1103.3357
+199682.0655652778 3.8146994 1103.3357
+199683.0655653821 3.8147388 1103.3555
+199684.0655654864 3.8147781 1103.2963
+199685.0655655907 3.8148174 1103.4147
+199686.0655656951 3.8148174 1103.4542
+199687.0655657994 3.8147781 1103.3949
+199688.0655659037 3.8147388 1103.316
+199689.065566008 3.8148174 1103.3752
+199690.0655661123 3.8147781 1103.3357
+199691.0655662166 3.8148568 1103.316
+199692.0655663209 3.8148568 1103.4147
+199693.0655664252 3.8149354 1103.3357
+199694.0655665295 3.8148568 1103.3357
+199695.0655666338 3.8148568 1103.3555
+199696.0655667381 3.8148568 1103.316
+199697.0655668424 3.8149354 1103.316
+199698.0655669468 3.8149354 1103.3949
+199699.0655670511 3.814975 1103.3357
+199700.0655671554 3.8148568 1103.3949
+199701.0655672597 3.8149354 1103.2963
+199702.065567364 3.8150144 1103.3555
+199703.0655674683 3.8150144 1103.3949
+199704.0655675726 3.8150144 1103.3949
+199705.0655676769 3.8150144 1103.3752
+199706.0655677812 3.8150537 1103.4147
+199707.0655678855 3.8150144 1103.2567
+199708.0655679898 3.814975 1103.3357
+199709.0655680941 3.8150537 1103.4344
+199710.0655681985 3.815093 1103.3357
+199711.0655683028 3.815093 1103.3555
+199712.0655684071 3.815093 1103.316
+199713.0655685114 3.8150537 1103.3752
+199714.0655686157 3.8151324 1103.4147
+199715.06556872 3.8152111 1103.3752
+199716.0655688243 3.8150537 1103.3357
+199717.0655689286 3.8151717 1103.2963
+199718.0655690329 3.8151717 1103.3357
+199719.0655691372 3.8151717 1103.3357
+199720.0655692415 3.8151717 1103.2963
+199721.0655693458 3.8151717 1103.3555
+199722.0655694501 3.8152504 1103.3357
+199723.0655695545 3.81529 1103.3555
+199724.0655696588 3.81529 1103.3357
+199725.0655697631 3.8152504 1103.2963
+199726.0655698674 3.8152504 1103.3949
+199727.0655699717 3.8152504 1103.3555
+199728.065570076 3.8153687 1103.3357
+199729.0655701803 3.81529 1103.3752
+199730.0655702846 3.81529 1103.3555
+199731.0655703889 3.8153687 1103.3357
+199732.0655704932 3.8153293 1103.4344
+199733.0655705975 3.8154867 1103.3752
+199734.0655707018 3.815408 1103.316
+199735.0655708062 3.8154473 1103.4147
+199736.0655709105 3.815408 1103.3752
+199737.0655710148 3.8154473 1103.3555
+199738.0655711191 3.8154473 1103.3949
+199739.0655712234 3.815408 1103.4344
+199740.0655713277 3.8155653 1103.2567
+199741.065571432 3.8154867 1103.3357
+199742.0655715363 3.8155653 1103.3555
+199743.0655716406 3.8154867 1103.4344
+199744.0655717449 3.8155653 1103.3357
+199745.0655718492 3.815526 1103.2567
+199746.0655719535 3.8156049 1103.3555
+199747.0655720579 3.815526 1103.4147
+199748.0655721622 3.8155653 1103.3949
+199749.0655722665 3.815526 1103.2963
+199750.0655723708 3.8156049 1103.3752
+199751.0655724751 3.8156049 1103.3555
+199752.0655725794 3.8157229 1103.3555
+199753.0655726837 3.8156049 1103.316
+199754.065572788 3.8156443 1103.3752
+199755.0655728923 3.8156443 1103.3357
+199756.0655729966 3.8158016 1103.4542
+199757.0655731009 3.8157623 1103.2963
+199758.0655732052 3.8156443 1103.316
+199759.0655733095 3.8157623 1103.3555
+199760.0655734139 3.8158016 1103.3752
+199761.0655735182 3.8157229 1103.3555
+199762.0655736225 3.8158016 1103.3357
+199763.0655737268 3.8157623 1103.3357
+199764.0655738311 3.815841 1103.2172
+199765.0655739354 3.8158803 1103.2963
+199766.0655740397 3.815841 1103.316
+199767.065574144 3.815841 1103.3555
+199768.0655742483 3.8159199 1103.3949
+199769.0655743526 3.8158803 1103.4542
+199770.0655744569 3.815841 1103.2963
+199771.0655745612 3.8159199 1103.3949
+199772.0655746656 3.815841 1103.3555
+199773.0655747699 3.8158803 1103.3949
+199774.0655748742 3.8159199 1103.316
+199775.0655749785 3.8158803 1103.316
+199776.0655750828 3.8160772 1103.4147
+199777.0655751871 3.8160379 1103.3357
+199778.0655752914 3.8159199 1103.4147
+199779.0655753957 3.8159592 1103.3357
+199780.0655755 3.8160772 1103.4147
+199781.0655756043 3.8159592 1103.3357
+199782.0655757086 3.8159592 1103.316
+199783.0655758129 3.8160772 1103.2765
+199784.0655759173 3.8161166 1103.3357
+199785.0655760216 3.8160772 1103.3949
+199786.0655761259 3.8161952 1103.316
+199787.0655762302 3.8159592 1103.316
+199788.0655763345 3.8160379 1103.3555
+199789.0655764388 3.8161166 1103.2963
+199790.0655765431 3.8161166 1103.316
+199791.0655766474 3.8161559 1103.2963
+199792.0655767517 3.8162348 1103.3949
+199793.065576856 3.8161952 1103.4147
+199794.0655769603 3.8162348 1103.316
+199795.0655770646 3.8162348 1103.2765
+199796.0655771689 3.8161559 1103.3357
+199797.0655772733 3.8162348 1103.3752
+199798.0655773776 3.8162742 1103.2369
+199799.0655774819 3.8162348 1103.316
+199800.0655775862 3.8163135 1103.3752
+199801.0655776905 3.8163528 1103.2963
+199802.0655777948 3.8162742 1103.2963
+199803.0655778991 3.8163135 1103.2765
+199804.0655780034 3.8162348 1103.3555
+199805.0655781077 3.8163135 1103.3357
+199806.065578212 3.8163528 1103.2963
+199807.0655783163 3.8163528 1103.3949
+199808.0655784206 3.8164315 1103.3357
+199809.065578525 3.8164709 1103.3949
+199810.0655786293 3.8163922 1103.3752
+199811.0655787336 3.8163922 1103.2963
+199812.0655788379 3.8164315 1103.3555
+199813.0655789422 3.8164709 1103.4147
+199814.0655790465 3.8165104 1103.3752
+199815.0655791508 3.8165891 1103.2963
+199816.0655792551 3.8164709 1103.3555
+199817.0655793594 3.8164709 1103.3949
+199818.0655794637 3.8165498 1103.2963
+199819.065579568 3.8165891 1103.2369
+199820.0655796723 3.8164709 1103.3752
+199821.0655797767 3.8166285 1103.316
+199822.065579881 3.8164709 1103.3357
+199823.0655799853 3.8165891 1103.3555
+199824.0655800896 3.8165891 1103.316
+199825.0655801939 3.8167071 1103.3555
+199826.0655802982 3.8166678 1103.3949
+199827.0655804025 3.8166678 1103.3357
+199828.0655805068 3.8167071 1103.2567
+199829.0655806111 3.8167071 1103.316
+199830.0655807154 3.8167071 1103.2567
+199831.0655808197 3.8166678 1103.2963
+199832.065580924 3.8168254 1103.4344
+199833.0655810284 3.8167465 1103.4147
+199834.0655811327 3.8167465 1103.3752
+199835.065581237 3.8167071 1103.4147
+199836.0655813413 3.8167071 1103.3752
+199837.0655814456 3.8167858 1103.316
+199838.0655815499 3.8168254 1103.3949
+199839.0655816542 3.8167858 1103.4147
+199840.0655817585 3.8168647 1103.3949
+199841.0655818628 3.8169041 1103.3752
+199842.0655819671 3.8168254 1103.3752
+199843.0655820714 3.8167858 1103.4344
+199844.0655821757 3.8169041 1103.3752
+199845.06558228 3.8168647 1103.3357
+199846.0655823844 3.8169434 1103.3949
+199847.0655824887 3.8168647 1103.316
+199848.065582593 3.8169041 1103.2172
+199849.0655826973 3.8169041 1103.3555
+199850.0655828016 3.8169434 1103.3357
+199851.0655829059 3.8170221 1103.3357
+199852.0655830102 3.8169827 1103.3555
+199853.0655831145 3.8169827 1103.3752
+199854.0655832188 3.8170614 1103.3752
+199855.0655833231 3.8171008 1103.3752
+199856.0655834274 3.8170614 1103.2765
+199857.0655835317 3.8170221 1103.3555
+199858.0655836361 3.8171403 1103.3357
+199859.0655837404 3.8170221 1103.3949
+199860.0655838447 3.8171008 1103.4147
+199861.065583949 3.8171403 1103.3752
+199862.0655840533 3.8170614 1103.316
+199863.0655841576 3.8171403 1103.3752
+199864.0655842619 3.817219 1103.316
+199865.0655843662 3.8171008 1103.3555
+199866.0655844705 3.8171403 1103.316
+199867.0655845748 3.8171403 1103.3949
+199868.0655846791 3.8171797 1103.3555
+199869.0655847834 3.817337 1103.3555
+199870.0655848878 3.8172977 1103.3357
+199871.0655849921 3.8172977 1103.4344
+199872.0655850964 3.817219 1103.316
+199873.0655852007 3.817219 1103.3949
+199874.065585305 3.8172584 1103.2567
+199875.0655854093 3.817337 1103.3949
+199876.0655855136 3.8173764 1103.3357
+199877.0655856179 3.8172977 1103.3357
+199878.0655857222 3.817337 1103.3752
+199879.0655858265 3.8172977 1103.3357
+199880.0655859308 3.8173764 1103.3357
+199881.0655860351 3.8172977 1103.2369
+199882.0655861394 3.8173764 1103.3949
+199883.0655862438 3.8173764 1103.4344
+199884.0655863481 3.8174157 1103.3357
+199885.0655864524 3.8173764 1103.3752
+199886.0655865567 3.8174946 1103.3357
+199887.065586661 3.817337 1103.4147
+199888.0655867653 3.8174946 1103.3555
+199889.0655868696 3.8174157 1103.316
+199890.0655869739 3.8174946 1103.2765
+199891.0655870782 3.8174946 1103.316
+199892.0655871825 3.8174946 1103.2567
+199893.0655872868 3.8175733 1103.2765
+199894.0655873911 3.817652 1103.316
+199895.0655874955 3.8176126 1103.3949
+199896.0655875998 3.817652 1103.3555
+199897.0655877041 3.817652 1103.3752
+199898.0655878084 3.8176126 1103.3555
+199899.0655879127 3.8176126 1103.3752
+199900.065588017 3.8176913 1103.2765
+199901.0655881213 3.8175733 1103.316
+199902.0655882256 3.8176913 1103.4147
+199903.0655883299 3.8176913 1103.3555
+199904.0655884342 3.817652 1103.3555
+199905.0655885385 3.8177702 1103.3357
+199906.0655886428 3.8177307 1103.2765
+199907.0655887472 3.8177702 1103.3555
+199908.0655888515 3.8177307 1103.3357
+199909.0655889558 3.8178096 1103.3357
+199910.0655890601 3.817652 1103.2963
+199911.0655891644 3.8177702 1103.2963
+199912.0655892687 3.8177307 1103.2765
+199913.065589373 3.8178096 1103.3357
+199914.0655894773 3.8178489 1103.3555
+199915.0655895816 3.8178489 1103.4147
+199916.0655896859 3.8177307 1103.3949
+199917.0655897902 3.8178883 1103.3752
+199918.0655898945 3.8178489 1103.3555
+199919.0655899988 3.8177307 1103.2369
+199920.0655901032 3.8179669 1103.3357
+199921.0655902075 3.8178883 1103.4147
+199922.0655903118 3.8178096 1103.2567
+199923.0655904161 3.8179276 1103.316
+199924.0655905204 3.8180063 1103.3357
+199925.0655906247 3.8180459 1103.3555
+199926.065590729 3.8179276 1103.2567
+199927.0655908333 3.8180063 1103.3949
+199928.0655909376 3.8179669 1103.3357
+199929.0655910419 3.8180459 1103.316
+199930.0655911462 3.8180459 1103.2963
+199931.0655912505 3.8180852 1103.2963
+199932.0655913549 3.8180459 1103.3949
+199933.0655914592 3.8180063 1103.3555
+199934.0655915635 3.8181639 1103.4147
+199935.0655916678 3.8181245 1103.3357
+199936.0655917721 3.8180852 1103.3555
+199937.0655918764 3.8181639 1103.3357
+199938.0655919807 3.8181245 1103.4147
+199939.065592085 3.8180852 1103.3555
+199940.0655921893 3.8182425 1103.3949
+199941.0655922936 3.8182032 1103.4147
+199942.0655923979 3.8181639 1103.3357
+199943.0655925022 3.8181639 1103.2567
+199944.0655926066 3.8182425 1103.3555
+199945.0655927109 3.8181639 1103.2765
+199946.0655928152 3.8181245 1103.3555
+199947.0655929195 3.8183212 1103.3752
+199948.0655930238 3.8181639 1103.3357
+199949.0655931281 3.8183608 1103.3357
+199950.0655932324 3.8184395 1103.3949
+199951.0655933367 3.8183212 1103.3555
+199952.065593441 3.8183212 1103.4147
+199953.0655935453 3.8184788 1103.3555
+199954.0655936496 3.8184001 1103.3949
+199955.0655937539 3.8184001 1103.4344
+199956.0655938582 3.8184395 1103.3555
+199957.0655939626 3.8183608 1103.2963
+199958.0655940669 3.8184395 1103.316
+199959.0655941712 3.8184395 1103.3752
+199960.0655942755 3.8184395 1103.3949
+199961.0655943798 3.8184788 1103.3357
+199962.0655944841 3.8185182 1103.3357
+199963.0655945884 3.8184395 1103.3752
+199964.0655946927 3.8185575 1103.2765
+199965.065594797 3.8185182 1103.3357
+199966.0655949013 3.8185575 1103.474
+199967.0655950056 3.8185575 1103.3357
+199968.0655951099 3.8184788 1103.2369
+199969.0655952143 3.8186758 1103.3357
+199970.0655953186 3.8185968 1103.3555
+199971.0655954229 3.8185575 1103.3357
+199972.0655955272 3.8186362 1103.3949
+199973.0655956315 3.8185968 1103.316
+199974.0655957358 3.8186758 1103.3555
+199975.0655958401 3.8185575 1103.3949
+199976.0655959444 3.8185575 1103.3752
+199977.0655960487 3.8187151 1103.3555
+199978.065596153 3.8186362 1103.316
+199979.0655962573 3.8187544 1103.3949
+199980.0655963616 3.8187938 1103.3949
+199981.065596466 3.8187151 1103.2567
+199982.0655965703 3.8187151 1103.3752
+199983.0655966746 3.8187938 1103.2567
+199984.0655967789 3.8188725 1103.3555
+199985.0655968832 3.8187151 1103.3357
+199986.0655969875 3.8187544 1103.3357
+199987.0655970918 3.8187938 1103.4938
+199988.0655971961 3.8187938 1103.4344
+199989.0655973004 3.8188725 1103.3949
+199990.0655974047 3.8187938 1103.3752
+199991.065597509 3.8187938 1103.3949
+199992.0655976133 3.8187938 1103.3949
+199993.0655977177 3.8188725 1103.3949
+199994.065597822 3.8189118 1103.316
+199995.0655979263 3.8189118 1103.316
+199996.0655980306 3.8188725 1103.3555
+199997.0655981349 3.8189118 1103.3555
+199998.0655982392 3.8189118 1103.4344
+199999.0655983435 3.8189511 1103.3949
+200000.0655984478 3.8189511 1103.2765
+200001.0655985521 3.8189511 1103.3949
+200002.0655986564 3.8189118 1103.2567
+200003.0655987607 3.81903 1103.4147
+200004.065598865 3.8190694 1103.3357
+200005.0655989693 3.81903 1103.3752
+200006.0655990737 3.81903 1103.3752
+200007.065599178 3.8189511 1103.4147
+200008.0655992823 3.8191481 1103.3357
+200009.0655993866 3.8190694 1103.2963
+200010.0655994909 3.8190694 1103.4344
+200011.0655995952 3.8191874 1103.3555
+200012.0655996995 3.8191874 1103.2963
+200013.0655998038 3.8191874 1103.2172
+200014.0655999081 3.8191087 1103.3555
+200015.0656000124 3.8191874 1103.3357
+200016.0656001167 3.8191874 1103.3357
+200017.065600221 3.8191874 1103.4147
+200018.0656003254 3.8193057 1103.2765
+200019.0656004297 3.8192661 1103.3555
+200020.065600534 3.8191481 1103.4344
+200021.0656006383 3.8193057 1103.3555
+200022.0656007426 3.8191874 1103.3357
+200023.0656008469 3.819345 1103.3357
+200024.0656009512 3.8194237 1103.3357
+200025.0656010555 3.8191874 1103.4344
+200026.0656011598 3.8192267 1103.2765
+200027.0656012641 3.8192661 1103.3555
+200028.0656013684 3.8194237 1103.3555
+200029.0656014727 3.819345 1103.316
+200030.0656015771 3.819463 1103.2765
+200031.0656016814 3.8194237 1103.3555
+200032.0656017857 3.8194237 1103.3752
+200033.06560189 3.819463 1103.3752
+200034.0656019943 3.8195024 1103.3555
+200035.0656020986 3.8195417 1103.3357
+200036.0656022029 3.8193843 1103.3555
+200037.0656023072 3.8194237 1103.316
+200038.0656024115 3.819463 1103.2963
+200039.0656025158 3.8193843 1103.3357
+200040.0656026201 3.8195024 1103.3752
+200041.0656027244 3.8195024 1103.3357
+200042.0656028287 3.8194237 1103.3752
+200043.0656029331 3.8195024 1103.316
+200044.0656030374 3.8196993 1103.3357
+200045.0656031417 3.8196206 1103.3555
+200046.065603246 3.8196993 1103.3949
+200047.0656033503 3.8196599 1103.3752
+200048.0656034546 3.8195417 1103.316
+200049.0656035589 3.8196993 1103.3949
+200050.0656036632 3.8195024 1103.2963
+200051.0656037675 3.8196993 1103.3555
+200052.0656038718 3.8195417 1103.2963
+200053.0656039761 3.8198173 1103.3752
+200054.0656040804 3.8197386 1103.3555
+200055.0656041848 3.8197386 1103.2567
+200056.0656042891 3.819778 1103.4344
+200057.0656043934 3.8196993 1103.316
+200058.0656044977 3.8198173 1103.316
+200059.065604602 3.8198173 1103.3357
+200060.0656047063 3.8198566 1103.3555
+200061.0656048106 3.8198566 1103.3357
+200062.0656049149 3.8198173 1103.3357
+200063.0656050192 3.8197386 1103.3752
+200064.0656051235 3.8199356 1103.3752
+200065.0656052278 3.8198566 1103.3555
+200066.0656053321 3.8198566 1103.2765
+200067.0656054365 3.8198173 1103.3752
+200068.0656055408 3.819778 1103.316
+200069.0656056451 3.8198566 1103.3357
+200070.0656057494 3.8198173 1103.3555
+200071.0656058537 3.8199356 1103.2963
+200072.065605958 3.8199356 1103.2963
+200073.0656060623 3.8199356 1103.316
+200074.0656061666 3.8199749 1103.2963
+200075.0656062709 3.8199356 1103.4344
+200076.0656063752 3.8200142 1103.3752
+200077.0656064795 3.8200536 1103.3357
+200078.0656065838 3.8200142 1103.3752
+200079.0656066881 3.8200929 1103.2765
+200080.0656067925 3.8200929 1103.3752
+200081.0656068968 3.8200536 1103.3752
+200082.0656070011 3.8201716 1103.2963
+200083.0656071054 3.8200536 1103.3357
+200084.0656072097 3.8200929 1103.2963
+200085.065607314 3.8200929 1103.3752
+200086.0656074183 3.8200929 1103.3949
+200087.0656075226 3.8201323 1103.3752
+200088.0656076269 3.8200929 1103.3555
+200089.0656077312 3.8201716 1103.3357
+200090.0656078355 3.8202505 1103.3949
+200091.0656079398 3.8202112 1103.3752
+200092.0656080442 3.8202112 1103.3752
+200093.0656081485 3.8202899 1103.3357
+200094.0656082528 3.8203292 1103.3357
+200095.0656083571 3.8204865 1103.3752
+200096.0656084614 3.8202505 1103.3752
+200097.0656085657 3.8203685 1103.316
+200098.06560867 3.8202899 1103.3752
+200099.0656087743 3.8203685 1103.3357
+200100.0656088786 3.8203685 1103.2765
+200101.0656089829 3.8203685 1103.3752
+200102.0656090872 3.8203292 1103.3357
+200103.0656091915 3.8203685 1103.3949
+200104.0656092959 3.8203685 1103.3555
+200105.0656094002 3.8203685 1103.3357
+200106.0656095045 3.8204472 1103.3949
+200107.0656096088 3.8203685 1103.3555
+200108.0656097131 3.8204079 1103.4147
+200109.0656098174 3.8204472 1103.2765
+200110.0656099217 3.8204079 1103.4147
+200111.065610026 3.8204079 1103.3555
+200112.0656101303 3.8205655 1103.3357
+200113.0656102346 3.8204865 1103.3555
+200114.0656103389 3.8204865 1103.4147
+200115.0656104432 3.8205655 1103.3555
+200116.0656105476 3.8206835 1103.3949
+200117.0656106519 3.8205655 1103.3752
+200118.0656107562 3.8205655 1103.3752
+200119.0656108605 3.8206048 1103.4147
+200120.0656109648 3.8206048 1103.3949
+200121.0656110691 3.8206048 1103.3357
+200122.0656111734 3.8206441 1103.3752
+200123.0656112777 3.8206048 1103.2765
+200124.065611382 3.8206835 1103.3752
+200125.0656114863 3.8206048 1103.3752
+200126.0656115906 3.8206441 1103.316
+200127.0656116949 3.8206835 1103.2963
+200128.0656117992 3.8208015 1103.3357
+200129.0656119036 3.8208411 1103.3949
+200130.0656120079 3.8207622 1103.316
+200131.0656121122 3.8208411 1103.4938
+200132.0656122165 3.8208804 1103.4147
+200133.0656123208 3.8208804 1103.3752
+200134.0656124251 3.8208015 1103.2963
+200135.0656125294 3.8208015 1103.4542
+200136.0656126337 3.8208411 1103.2963
+200137.065612738 3.8209198 1103.4344
+200138.0656128423 3.8207622 1103.2963
+200139.0656129466 3.8208804 1103.3357
+200140.0656130509 3.8208804 1103.4344
+200141.0656131553 3.8208015 1103.3555
+200142.0656132596 3.8209198 1103.3752
+200143.0656133639 3.8209198 1103.3752
+200144.0656134682 3.8209591 1103.3949
+200145.0656135725 3.8209198 1103.3555
+200146.0656136768 3.8209591 1103.2765
+200147.0656137811 3.8209591 1103.3555
+200148.0656138854 3.8210378 1103.3752
+200149.0656139897 3.8210378 1103.3752
+200150.065614094 3.821156 1103.316
+200151.0656141983 3.8210378 1103.3949
+200152.0656143026 3.8210378 1103.4147
+200153.065614407 3.8210378 1103.2765
+200154.0656145113 3.8210378 1103.3555
+200155.0656146156 3.8211164 1103.2765
+200156.0656147199 3.821156 1103.316
+200157.0656148242 3.8211164 1103.3357
+200158.0656149285 3.821156 1103.4344
+200159.0656150328 3.8211164 1103.4147
+200160.0656151371 3.8211164 1103.3555
+200161.0656152414 3.821156 1103.3949
+200162.0656153457 3.8211164 1103.3357
+200163.06561545 3.8211954 1103.3752
+200164.0656155543 3.821156 1103.4147
+200165.0656156586 3.8213134 1103.2963
+200166.065615763 3.8211954 1103.3752
+200167.0656158673 3.8213527 1103.3752
+200168.0656159716 3.821274 1103.316
+200169.0656160759 3.8211954 1103.3357
+200170.0656161802 3.8213134 1103.4147
+200171.0656162845 3.8212347 1103.316
+200172.0656163888 3.8213527 1103.3555
+200173.0656164931 3.8213527 1103.3752
+200174.0656165974 3.821274 1103.2765
+200175.0656167017 3.8213527 1103.316
+200176.065616806 3.8213134 1103.3555
+200177.0656169103 3.8213921 1103.3555
+200178.0656170147 3.8213527 1103.316
+200179.065617119 3.8213921 1103.3752
+200180.0656172233 3.8213527 1103.316
+200181.0656173276 3.8213527 1103.3357
+200182.0656174319 3.8213921 1103.3555
+200183.0656175362 3.8215103 1103.3357
+200184.0656176405 3.8213921 1103.3555
+200185.0656177448 3.8214314 1103.3357
+200186.0656178491 3.821471 1103.3555
+200187.0656179534 3.821589 1103.2172
+200188.0656180577 3.821471 1103.2963
+200189.065618162 3.8216283 1103.3752
+200190.0656182664 3.8215497 1103.4344
+200191.0656183707 3.821589 1103.316
+200192.065618475 3.821589 1103.3949
+200193.0656185793 3.8216677 1103.316
+200194.0656186836 3.8216283 1103.4147
+200195.0656187879 3.8216283 1103.3949
+200196.0656188922 3.8216283 1103.316
+200197.0656189965 3.821707 1103.316
+200198.0656191008 3.821707 1103.3357
+200199.0656192051 3.8216677 1103.3357
+200200.0656193094 3.8216677 1103.3949
+200201.0656194137 3.821707 1103.3752
+200202.065619518 3.8216677 1103.2963
+200203.0656196224 3.821707 1103.2963
+200204.0656197267 3.8218646 1103.316
+200205.065619831 3.8218253 1103.316
+200206.0656199353 3.8218253 1103.3949
+200207.0656200396 3.8217466 1103.316
+200208.0656201439 3.8217466 1103.316
+200209.0656202482 3.8217466 1103.2963
+200210.0656203525 3.8219039 1103.4542
+200211.0656204568 3.8218646 1103.2765
+200212.0656205611 3.8218646 1103.3357
+200213.0656206654 3.8218253 1103.3357
+200214.0656207697 3.8217859 1103.3949
+200215.0656208741 3.8218253 1103.2765
+200216.0656209784 3.8219433 1103.3555
+200217.0656210827 3.8219039 1103.2765
+200218.065621187 3.8218646 1103.3555
+200219.0656212913 3.8219039 1103.2765
+200220.0656213956 3.8218646 1103.316
+200221.0656214999 3.8219826 1103.3752
+200222.0656216042 3.8219433 1103.3949
+200223.0656217085 3.8220615 1103.3752
+200224.0656218128 3.8221009 1103.316
+200225.0656219171 3.822022 1103.3357
+200226.0656220214 3.8219433 1103.2567
+200227.0656221258 3.8219826 1103.3357
+200228.0656222301 3.822022 1103.4147
+200229.0656223344 3.8221009 1103.4344
+200230.0656224387 3.8221402 1103.3752
+200231.065622543 3.8221402 1103.3357
+200232.0656226473 3.8221009 1103.3555
+200233.0656227516 3.8221402 1103.3949
+200234.0656228559 3.8221009 1103.3752
+200235.0656229602 3.8221009 1103.4147
+200236.0656230645 3.8222582 1103.3357
+200237.0656231688 3.8221402 1103.3555
+200238.0656232731 3.8221009 1103.316
+200239.0656233775 3.8222582 1103.2963
+200240.0656234818 3.8222582 1103.2369
+200241.0656235861 3.8222976 1103.4147
+200242.0656236904 3.8222582 1103.4147
+200243.0656237947 3.8222582 1103.2765
+200244.065623899 3.8222976 1103.3555
+200245.0656240033 3.8222976 1103.3555
+200246.0656241076 3.8222976 1103.3357
+200247.0656242119 3.8222976 1103.3752
+200248.0656243162 3.8223369 1103.4344
+200249.0656244205 3.8222976 1103.3752
+200250.0656245248 3.8222582 1103.474
+200251.0656246291 3.8224158 1103.3555
+200252.0656247335 3.8224945 1103.316
+200253.0656248378 3.8223765 1103.316
+200254.0656249421 3.8224552 1103.4147
+200255.0656250464 3.8224158 1103.3555
+200256.0656251507 3.8225338 1103.3555
+200257.065625255 3.8224945 1103.3949
+200258.0656253593 3.8225338 1103.316
+200259.0656254636 3.8224945 1103.3555
+200260.0656255679 3.8225338 1103.3949
+200261.0656256722 3.8225338 1103.3752
+200262.0656257765 3.8225732 1103.3357
+200263.0656258808 3.8226519 1103.3357
+200264.0656259852 3.8225338 1103.316
+200265.0656260895 3.8225338 1103.3949
+200266.0656261938 3.8226125 1103.4344
+200267.0656262981 3.8225338 1103.2963
+200268.0656264024 3.8226125 1103.2567
+200269.0656265067 3.8226914 1103.3555
+200270.065626611 3.8226125 1103.3555
+200271.0656267153 3.8226519 1103.3555
+200272.0656268196 3.8226914 1103.3357
+200273.0656269239 3.8227308 1103.2567
+200274.0656270282 3.8226914 1103.3752
+200275.0656271325 3.8227308 1103.3357
+200276.0656272369 3.8226519 1103.3555
+200277.0656273412 3.8227701 1103.3357
+200278.0656274455 3.8227701 1103.2963
+200279.0656275498 3.8227701 1103.3752
+200280.0656276541 3.8228488 1103.3357
+200281.0656277584 3.8228095 1103.3357
+200282.0656278627 3.8228095 1103.4542
+200283.065627967 3.8227701 1103.3752
+200284.0656280713 3.8228881 1103.2567
+200285.0656281756 3.8228488 1103.3357
+200286.0656282799 3.8228881 1103.3949
+200287.0656283842 3.8228881 1103.2963
+200288.0656284885 3.8229275 1103.3555
+200289.0656285929 3.8230457 1103.3949
+200290.0656286972 3.8228881 1103.316
+200291.0656288015 3.8229275 1103.3752
+200292.0656289058 3.8228488 1103.3555
+200293.0656290101 3.8229275 1103.2567
+200294.0656291144 3.8230064 1103.3949
+200295.0656292187 3.8229668 1103.3752
+200296.065629323 3.8230064 1103.3752
+200297.0656294273 3.8230064 1103.3357
+200298.0656295316 3.8230457 1103.3949
+200299.0656296359 3.8230457 1103.4147
+200300.0656297402 3.8230457 1103.2369
+200301.0656298446 3.8231637 1103.3555
+200302.0656299489 3.8229275 1103.3752
+200303.0656300532 3.8230457 1103.316
+200304.0656301575 3.8231637 1103.3949
+200305.0656302618 3.8230064 1103.3357
+200306.0656303661 3.8230457 1103.3357
+200307.0656304704 3.8231637 1103.3752
+200308.0656305747 3.8231637 1103.3949
+200309.065630679 3.8230851 1103.2765
+200310.0656307833 3.8232031 1103.3555
+200311.0656308876 3.8232031 1103.3949
+200312.0656309919 3.8233213 1103.316
+200313.0656310963 3.8232818 1103.3555
+200314.0656312006 3.8232031 1103.316
+200315.0656313049 3.8232818 1103.2765
+200316.0656314092 3.8232424 1103.2963
+200317.0656315135 3.8233213 1103.2963
+200318.0656316178 3.8233213 1103.316
+200319.0656317221 3.8233213 1103.3357
+200320.0656318264 3.8232818 1103.3949
+200321.0656319307 3.8233213 1103.3357
+200322.065632035 3.8234394 1103.3949
+200323.0656321393 3.8234787 1103.1975
+200324.0656322436 3.8234394 1103.3752
+200325.0656323479 3.8234787 1103.3357
+200326.0656324523 3.8234394 1103.3949
+200327.0656325566 3.8234787 1103.3357
+200328.0656326609 3.8234394 1103.3752
+200329.0656327652 3.8234787 1103.316
+200330.0656328695 3.8234 1103.316
+200331.0656329738 3.8234394 1103.3357
+200332.0656330781 3.8234394 1103.3949
+200333.0656331824 3.823518 1103.2369
+200334.0656332867 3.8235574 1103.3357
+200335.065633391 3.823518 1103.3555
+200336.0656334953 3.8234787 1103.3949
+200337.0656335996 3.8235574 1103.316
+200338.065633704 3.823715 1103.3949
+200339.0656338083 3.8235574 1103.2963
+200340.0656339126 3.8236363 1103.2963
+200341.0656340169 3.8236363 1103.3752
+200342.0656341212 3.823715 1103.4147
+200343.0656342255 3.823597 1103.3357
+200344.0656343298 3.823597 1103.3555
+200345.0656344341 3.8237543 1103.2765
+200346.0656345384 3.8236756 1103.4344
+200347.0656346427 3.8237936 1103.3555
+200348.065634747 3.8237543 1103.2963
+200349.0656348513 3.823715 1103.316
+200350.0656349557 3.8237543 1103.3555
+200351.06563506 3.8237936 1103.4147
+200352.0656351643 3.8237543 1103.3357
+200353.0656352686 3.8237543 1103.3555
+200354.0656353729 3.8237543 1103.474
+200355.0656354772 3.8239119 1103.2963
+200356.0656355815 3.8237936 1103.3949
+200357.0656356858 3.8239119 1103.3949
+200358.0656357901 3.8237936 1103.3752
+200359.0656358944 3.823833 1103.2567
+200360.0656359987 3.8238723 1103.4147
+200361.065636103 3.8238723 1103.3949
+200362.0656362074 3.8238723 1103.2765
+200363.0656363117 3.8239512 1103.3555
+200364.065636416 3.8239119 1103.3949
+200365.0656365203 3.8239906 1103.3949
+200366.0656366246 3.8239119 1103.2369
+200367.0656367289 3.8239906 1103.2765
+200368.0656368332 3.8239512 1103.2567
+200369.0656369375 3.8240299 1103.3752
+200370.0656370418 3.8239906 1103.3949
+200371.0656371461 3.8241086 1103.3949
+200372.0656372504 3.8240693 1103.3752
+200373.0656373547 3.8240299 1103.316
+200374.065637459 3.8239512 1103.316
+200375.0656375634 3.8240299 1103.3555
+200376.0656376677 3.8240299 1103.316
+200377.065637772 3.8241086 1103.2963
+200378.0656378763 3.8242269 1103.316
+200379.0656379806 3.8241479 1103.2963
+200380.0656380849 3.8241479 1103.3949
+200381.0656381892 3.8241479 1103.316
+200382.0656382935 3.8241873 1103.3752
+200383.0656383978 3.8241873 1103.316
+200384.0656385021 3.8242269 1103.3357
+200385.0656386064 3.8241873 1103.2963
+200386.0656387107 3.8242662 1103.3555
+200387.0656388151 3.8242662 1103.316
+200388.0656389194 3.8241873 1103.3752
+200389.0656390237 3.8242269 1103.4147
+200390.065639128 3.8242269 1103.3949
+200391.0656392323 3.8243055 1103.2963
+200392.0656393366 3.8242662 1103.3752
+200393.0656394409 3.8244236 1103.3555
+200394.0656395452 3.8242662 1103.3752
+200395.0656396495 3.8243055 1103.3357
+200396.0656397538 3.8243449 1103.2963
+200397.0656398581 3.8244629 1103.316
+200398.0656399624 3.8244629 1103.2963
+200399.0656400668 3.8245022 1103.316
+200400.0656401711 3.8244236 1103.3357
+200401.0656402754 3.8244236 1103.3357
+200402.0656403797 3.8244236 1103.2963
+200403.065640484 3.8244629 1103.3949
+200404.0656405883 3.8243842 1103.3752
+200405.0656406926 3.8244629 1103.3752
+200406.0656407969 3.8245022 1103.3752
+200407.0656409012 3.8245022 1103.316
+200408.0656410055 3.8246205 1103.2765
+200409.0656411098 3.8245811 1103.3752
+200410.0656412141 3.8245418 1103.316
+200411.0656413184 3.8244629 1103.4542
+200412.0656414228 3.8245811 1103.3357
+200413.0656415271 3.8245811 1103.4344
+200414.0656416314 3.8245418 1103.3752
+200415.0656417357 3.8246205 1103.3357
+200416.06564184 3.8245418 1103.2765
+200417.0656419443 3.8246205 1103.316
+200418.0656420486 3.8247778 1103.316
+200419.0656421529 3.8247385 1103.3949
+200420.0656422572 3.8246598 1103.2963
+200421.0656423615 3.8246598 1103.3357
+200422.0656424658 3.8246992 1103.3555
+200423.0656425701 3.8246598 1103.3357
+200424.0656426745 3.8247385 1103.3357
+200425.0656427788 3.8247385 1103.3555
+200426.0656428831 3.8247778 1103.3949
+200427.0656429874 3.8247778 1103.4147
+200428.0656430917 3.8247778 1103.3357
+200429.065643196 3.8247778 1103.316
+200430.0656433003 3.8248568 1103.3555
+200431.0656434046 3.8248172 1103.3752
+200432.0656435089 3.8248568 1103.2765
+200433.0656436132 3.8248568 1103.3555
+200434.0656437175 3.8248568 1103.3949
+200435.0656438218 3.8248961 1103.3357
+200436.0656439262 3.8248961 1103.3555
+200437.0656440305 3.8249748 1103.3555
+200438.0656441348 3.8249354 1103.3949
+200439.0656442391 3.8249748 1103.3357
+200440.0656443434 3.8249748 1103.3357
+200441.0656444477 3.8249354 1103.2765
+200442.065644552 3.8249748 1103.4938
+200443.0656446563 3.8249354 1103.2765
+200444.0656447606 3.8250141 1103.2369
+200445.0656448649 3.8250535 1103.3555
+200446.0656449692 3.8250535 1103.316
+200447.0656450735 3.8249354 1103.2765
+200448.0656451778 3.8250535 1103.3752
+200449.0656452822 3.8251717 1103.316
+200450.0656453865 3.8251321 1103.316
+200451.0656454908 3.8250535 1103.3555
+200452.0656455951 3.825211 1103.3555
+200453.0656456994 3.8251321 1103.3357
+200454.0656458037 3.8250928 1103.316
+200455.065645908 3.8251321 1103.3555
+200456.0656460123 3.825211 1103.4147
+200457.0656461166 3.8251321 1103.3357
+200458.0656462209 3.825211 1103.3555
+200459.0656463252 3.825211 1103.316
+200460.0656464295 3.8252504 1103.3555
+200461.0656465339 3.8251717 1103.3357
+200462.0656466382 3.825211 1103.2369
+200463.0656467425 3.8252897 1103.3357
+200464.0656468468 3.8252504 1103.3555
+200465.0656469511 3.8252504 1103.3357
+200466.0656470554 3.8252504 1103.2963
+200467.0656471597 3.8253684 1103.3752
+200468.065647264 3.8253291 1103.3949
+200469.0656473683 3.8253684 1103.2765
+200470.0656474726 3.8253291 1103.2963
+200471.0656475769 3.8253684 1103.2963
+200472.0656476812 3.8254077 1103.3949
+200473.0656477856 3.8253684 1103.3949
+200474.0656478899 3.8254077 1103.3555
+200475.0656479942 3.8253684 1103.2963
+200476.0656480985 3.8254473 1103.316
+200477.0656482028 3.825526 1103.3752
+200478.0656483071 3.8254473 1103.4542
+200479.0656484114 3.8254867 1103.5134
+200480.0656485157 3.8254867 1103.316
+200481.06564862 3.825526 1103.2765
+200482.0656487243 3.8256047 1103.3949
+200483.0656488286 3.825644 1103.316
+200484.0656489329 3.8255653 1103.316
+200485.0656490372 3.8257227 1103.4147
+200486.0656491416 3.825644 1103.3949
+200487.0656492459 3.8255653 1103.316
+200488.0656493502 3.825644 1103.4147
+200489.0656494545 3.8256047 1103.4542
+200490.0656495588 3.8256834 1103.3555
+200491.0656496631 3.8257227 1103.316
+200492.0656497674 3.8256047 1103.4147
+200493.0656498717 3.825644 1103.3752
+200494.065649976 3.8256834 1103.3752
+200495.0656500803 3.8258803 1103.2963
+200496.0656501846 3.8256834 1103.4344
+200497.0656502889 3.8256834 1103.4344
+200498.0656503933 3.825841 1103.4147
+200499.0656504976 3.8258016 1103.3752
+200500.0656506019 3.8257623 1103.316
+200501.0656507062 3.825841 1103.316
+200502.0656508105 3.8257623 1103.2765
+200503.0656509148 3.8257623 1103.3555
+200504.0656510191 3.8258016 1103.3357
+200505.0656511234 3.8258016 1103.3357
+200506.0656512277 3.8258803 1103.3555
+200507.065651332 3.825841 1103.3949
+200508.0656514363 3.825841 1103.3555
+200509.0656515406 3.8258803 1103.316
+200510.065651645 3.825959 1103.3555
+200511.0656517493 3.8259196 1103.2963
+200512.0656518536 3.8259196 1103.4147
+200513.0656519579 3.8259196 1103.3555
+200514.0656520622 3.825959 1103.2963
+200515.0656521665 3.825959 1103.3555
+200516.0656522708 3.8259983 1103.3555
+200517.0656523751 3.825959 1103.3949
+200518.0656524794 3.8260376 1103.4147
+200519.0656525837 3.8260772 1103.2963
+200520.065652688 3.8260376 1103.4147
+200521.0656527923 3.8261166 1103.2765
+200522.0656528967 3.8260772 1103.3555
+200523.065653001 3.8260376 1103.2963
+200524.0656531053 3.8260772 1103.2765
+200525.0656532096 3.8260772 1103.2765
+200526.0656533139 3.8261166 1103.2765
+200527.0656534182 3.8260772 1103.3357
+200528.0656535225 3.8261559 1103.3752
+200529.0656536268 3.8261952 1103.2963
+200530.0656537311 3.8262346 1103.3949
+200531.0656538354 3.8261559 1103.3555
+200532.0656539397 3.8261559 1103.3357
+200533.065654044 3.8261559 1103.3357
+200534.0656541483 3.8261952 1103.4147
+200535.0656542527 3.8263133 1103.3752
+200536.065654357 3.8262739 1103.2369
+200537.0656544613 3.8263133 1103.4938
+200538.0656545656 3.8263133 1103.4147
+200539.0656546699 3.8263133 1103.4344
+200540.0656547742 3.8262739 1103.316
+200541.0656548785 3.8263526 1103.4542
+200542.0656549828 3.8262346 1103.2765
+200543.0656550871 3.8264315 1103.3357
+200544.0656551914 3.8263526 1103.3949
+200545.0656552957 3.8265102 1103.2567
+200546.0656554 3.8263133 1103.3555
+200547.0656555044 3.8263526 1103.3357
+200548.0656556087 3.8265102 1103.3357
+200549.065655713 3.8263526 1103.3949
+200550.0656558173 3.8265495 1103.3357
+200551.0656559216 3.8265495 1103.3752
+200552.0656560259 3.8265889 1103.3555
+200553.0656561302 3.8264709 1103.2765
+200554.0656562345 3.8265889 1103.3752
+200555.0656563388 3.8265889 1103.3752
+200556.0656564431 3.8266282 1103.2567
+200557.0656565474 3.8265889 1103.3357
+200558.0656566517 3.8265102 1103.3949
+200559.0656567561 3.8265889 1103.3752
+200560.0656568604 3.8265889 1103.3949
+200561.0656569647 3.8265889 1103.3752
+200562.065657069 3.8266675 1103.2765
+200563.0656571733 3.8266282 1103.3555
+200564.0656572776 3.8266282 1103.2963
+200565.0656573819 3.8266675 1103.3357
+200566.0656574862 3.8266675 1103.474
+200567.0656575905 3.8266282 1103.3949
+200568.0656576948 3.8267858 1103.3752
+200569.0656577991 3.8267858 1103.2765
+200570.0656579034 3.8266675 1103.3752
+200571.0656580077 3.8267071 1103.3949
+200572.0656581121 3.8267071 1103.4147
+200573.0656582164 3.8269038 1103.3949
+200574.0656583207 3.8267465 1103.474
+200575.065658425 3.8268645 1103.2172
+200576.0656585293 3.8268251 1103.316
+200577.0656586336 3.8268251 1103.3555
+200578.0656587379 3.8269038 1103.1975
+200579.0656588422 3.8269432 1103.316
+200580.0656589465 3.8268251 1103.3555
+200581.0656590508 3.8268645 1103.2567
+200582.0656591551 3.8268645 1103.316
+200583.0656592594 3.8267858 1103.3357
+200584.0656593638 3.8269432 1103.2765
+200585.0656594681 3.8268645 1103.316
+200586.0656595724 3.8270221 1103.3752
+200587.0656596767 3.8269038 1103.3752
+200588.065659781 3.8270221 1103.2963
+200589.0656598853 3.8270221 1103.3357
+200590.0656599896 3.8269825 1103.316
+200591.0656600939 3.8270221 1103.3555
+200592.0656601982 3.8270614 1103.3357
+200593.0656603025 3.8269825 1103.2765
+200594.0656604068 3.8271794 1103.3949
+200595.0656605111 3.8271794 1103.2765
+200596.0656606155 3.8271008 1103.3357
+200597.0656607198 3.8270614 1103.3752
+200598.0656608241 3.8271008 1103.3949
+200599.0656609284 3.8271401 1103.2963
+200600.0656610327 3.8272581 1103.2765
+200601.065661137 3.8271401 1103.3949
+200602.0656612413 3.8271008 1103.3752
+200603.0656613456 3.8271401 1103.2963
+200604.0656614499 3.8271401 1103.3555
+200605.0656615542 3.8272581 1103.2963
+200606.0656616585 3.8272977 1103.3555
+200607.0656617628 3.8272581 1103.2765
+200608.0656618671 3.8272977 1103.3357
+200609.0656619715 3.8271794 1103.316
+200610.0656620758 3.8272581 1103.3949
+200611.0656621801 3.8272977 1103.3752
+200612.0656622844 3.8272977 1103.316
+200613.0656623887 3.827337 1103.4542
+200614.065662493 3.8272581 1103.316
+200615.0656625973 3.8273764 1103.2963
+200616.0656627016 3.827337 1103.3555
+200617.0656628059 3.8273764 1103.3357
+200618.0656629102 3.8274157 1103.316
+200619.0656630145 3.8273764 1103.2963
+200620.0656631188 3.8274157 1103.3949
+200621.0656632232 3.8274157 1103.3555
+200622.0656633275 3.827455 1103.2765
+200623.0656634318 3.8274944 1103.4147
+200624.0656635361 3.8275731 1103.3949
+200625.0656636404 3.827455 1103.3555
+200626.0656637447 3.827455 1103.3357
+200627.065663849 3.8275731 1103.2963
+200628.0656639533 3.8275731 1103.3752
+200629.0656640576 3.8276126 1103.3555
+200630.0656641619 3.8274944 1103.2567
+200631.0656642662 3.8275337 1103.4542
+200632.0656643705 3.8276126 1103.3357
+200633.0656644749 3.8275337 1103.3357
+200634.0656645792 3.8275731 1103.3555
+200635.0656646835 3.8276126 1103.316
+200636.0656647878 3.827652 1103.3555
+200637.0656648921 3.8276913 1103.316
+200638.0656649964 3.8276126 1103.3555
+200639.0656651007 3.8276126 1103.3752
+200640.065665205 3.8276126 1103.3555
+200641.0656653093 3.8276913 1103.4147
+200642.0656654136 3.8277307 1103.3949
+200643.0656655179 3.8276913 1103.3357
+200644.0656656222 3.8278093 1103.316
+200645.0656657266 3.8278093 1103.3949
+200646.0656658309 3.8277307 1103.3357
+200647.0656659352 3.8276913 1103.316
+200648.0656660395 3.8278487 1103.316
+200649.0656661438 3.8278093 1103.4147
+200650.0656662481 3.8278093 1103.316
+200651.0656663524 3.82777 1103.3357
+200652.0656664567 3.827888 1103.3752
+200653.065666561 3.8278093 1103.4147
+200654.0656666653 3.8278487 1103.3555
+200655.0656667696 3.8279276 1103.474
+200656.0656668739 3.8278487 1103.4542
+200657.0656669782 3.827888 1103.4147
+200658.0656670826 3.8279276 1103.3752
+200659.0656671869 3.8279669 1103.3555
+200660.0656672912 3.8278487 1103.2765
+200661.0656673955 3.8279276 1103.3555
+200662.0656674998 3.8280063 1103.2963
+200663.0656676041 3.8280063 1103.2567
+200664.0656677084 3.8280063 1103.3357
+200665.0656678127 3.8280849 1103.3555
+200666.065667917 3.8280456 1103.3555
+200667.0656680213 3.8281243 1103.2963
+200668.0656681256 3.8280456 1103.3752
+200669.0656682299 3.8280456 1103.4147
+200670.0656683343 3.8281243 1103.3357
+200671.0656684386 3.8280849 1103.3752
+200672.0656685429 3.8280849 1103.3949
+200673.0656686472 3.8280063 1103.3949
+200674.0656687515 3.8281243 1103.3357
+200675.0656688558 3.8280849 1103.3949
+200676.0656689601 3.8281243 1103.3555
+200677.0656690644 3.828203 1103.316
+200678.0656691687 3.8280849 1103.3357
+200679.065669273 3.8282819 1103.4147
+200680.0656693773 3.8281636 1103.3949
+200681.0656694816 3.828203 1103.4147
+200682.065669586 3.8282819 1103.3357
+200683.0656696903 3.8282425 1103.3555
+200684.0656697946 3.8283606 1103.2765
+200685.0656698989 3.828203 1103.3357
+200686.0656700032 3.8283606 1103.316
+200687.0656701075 3.8283212 1103.2369
+200688.0656702118 3.8283606 1103.3949
+200689.0656703161 3.8283999 1103.2963
+200690.0656704204 3.8284392 1103.3357
+200691.0656705247 3.8284786 1103.3555
+200692.065670629 3.8283999 1103.4147
+200693.0656707333 3.8284392 1103.2369
+200694.0656708376 3.8285179 1103.2567
+200695.065670942 3.8284786 1103.3949
+200696.0656710463 3.8284786 1103.3555
+200697.0656711506 3.8285179 1103.2963
+200698.0656712549 3.8284392 1103.3752
+200699.0656713592 3.8284786 1103.3752
+200700.0656714635 3.8285179 1103.3357
+200701.0656715678 3.8284786 1103.4344
+200702.0656716721 3.8285575 1103.3357
+200703.0656717764 3.8285179 1103.3555
+200704.0656718807 3.8285575 1103.3752
+200705.065671985 3.8285968 1103.3752
+200706.0656720893 3.8285575 1103.3555
+200707.0656721937 3.8285575 1103.2963
+200708.065672298 3.8286362 1103.3555
+200709.0656724023 3.8285179 1103.3752
+200710.0656725066 3.8286362 1103.3555
+200711.0656726109 3.8287148 1103.3555
+200712.0656727152 3.8286755 1103.2963
+200713.0656728195 3.8286362 1103.3949
+200714.0656729238 3.8286755 1103.316
+200715.0656730281 3.8287148 1103.2963
+200716.0656731324 3.8286755 1103.3555
+200717.0656732367 3.8286362 1103.316
+200718.065673341 3.8287935 1103.316
+200719.0656734454 3.8287542 1103.3555
+200720.0656735497 3.8287935 1103.3555
+200721.065673654 3.8287542 1103.316
+200722.0656737583 3.8288724 1103.3949
+200723.0656738626 3.8287542 1103.2963
+200724.0656739669 3.8289511 1103.4344
+200725.0656740712 3.8289511 1103.3357
+200726.0656741755 3.8289118 1103.3949
+200727.0656742798 3.8288724 1103.4344
+200728.0656743841 3.8289118 1103.3357
+200729.0656744884 3.8288724 1103.3949
+200730.0656745927 3.8288724 1103.316
+200731.065674697 3.8289511 1103.3357
+200732.0656748014 3.8289511 1103.2765
+200733.0656749057 3.8290298 1103.316
+200734.06567501 3.8289905 1103.3357
+200735.0656751143 3.8289118 1103.2963
+200736.0656752186 3.8290298 1103.3949
+200737.0656753229 3.8289511 1103.3752
+200738.0656754272 3.8290298 1103.2963
+200739.0656755315 3.8290298 1103.4147
+200740.0656756358 3.8291481 1103.3555
+200741.0656757401 3.8289905 1103.316
+200742.0656758444 3.8290298 1103.3752
+200743.0656759487 3.8289905 1103.3949
+200744.0656760531 3.8291085 1103.3357
+200745.0656761574 3.8290298 1103.2369
+200746.0656762617 3.8291481 1103.2963
+200747.065676366 3.8291874 1103.3949
+200748.0656764703 3.8292661 1103.4147
+200749.0656765746 3.8291085 1103.4147
+200750.0656766789 3.8291481 1103.3555
+200751.0656767832 3.8293054 1103.3357
+200752.0656768875 3.8292267 1103.3357
+200753.0656769918 3.8292661 1103.2765
+200754.0656770961 3.8292661 1103.3949
+200755.0656772004 3.8293447 1103.2765
+200756.0656773048 3.8292267 1103.3949
+200757.0656774091 3.8293054 1103.3555
+200758.0656775134 3.8292661 1103.3357
+200759.0656776177 3.8293054 1103.3949
+200760.065677722 3.8292267 1103.3357
+200761.0656778263 3.8293447 1103.3555
+200762.0656779306 3.8293447 1103.4147
+200763.0656780349 3.8293841 1103.316
+200764.0656781392 3.8293841 1103.3357
+200765.0656782435 3.829581 1103.3555
+200766.0656783478 3.8294234 1103.2765
+200767.0656784521 3.829463 1103.2765
+200768.0656785565 3.8295417 1103.3555
+200769.0656786608 3.8293841 1103.1975
+200770.0656787651 3.8294234 1103.3357
+200771.0656788694 3.8295023 1103.3555
+200772.0656789737 3.8295023 1103.3555
+200773.065679078 3.8295023 1103.3949
+200774.0656791823 3.8295023 1103.3555
+200775.0656792866 3.829581 1103.2765
+200776.0656793909 3.829463 1103.3752
+200777.0656794952 3.8295417 1103.3752
+200778.0656795995 3.8295417 1103.3949
+200779.0656797038 3.8295023 1103.3555
+200780.0656798081 3.8296204 1103.316
+200781.0656799125 3.8296204 1103.3555
+200782.0656800168 3.8296204 1103.316
+200783.0656801211 3.8296204 1103.3949
+200784.0656802254 3.8296204 1103.4147
+200785.0656803297 3.8296204 1103.316
+200786.065680434 3.829778 1103.3555
+200787.0656805383 3.829699 1103.2963
+200788.0656806426 3.8296597 1103.3357
+200789.0656807469 3.8296204 1103.3357
+200790.0656808512 3.8298173 1103.316
+200791.0656809555 3.829699 1103.3555
+200792.0656810598 3.8297384 1103.3357
+200793.0656811642 3.829778 1103.3555
+200794.0656812685 3.8298173 1103.3357
+200795.0656813728 3.8298566 1103.3949
+200796.0656814771 3.8298173 1103.3752
+200797.0656815814 3.8298566 1103.3949
+200798.0656816857 3.8298173 1103.2765
+200799.06568179 3.829896 1103.3555
+200800.0656818943 3.830014 1103.3949
+200801.0656819986 3.8298566 1103.3949
+200802.0656821029 3.829896 1103.3752
+200803.0656822072 3.8298173 1103.3357
+200804.0656823115 3.829896 1103.316
+200805.0656824159 3.8299353 1103.4147
+200806.0656825202 3.8299747 1103.2963
+200807.0656826245 3.8298566 1103.316
+200808.0656827288 3.8300929 1103.2963
+200809.0656828331 3.830014 1103.3949
+200810.0656829374 3.8299747 1103.3752
+200811.0656830417 3.8299353 1103.4344
+200812.065683146 3.8299747 1103.3555
+200813.0656832503 3.830014 1103.4344
+200814.0656833546 3.8300929 1103.3357
+200815.0656834589 3.8301322 1103.3555
+200816.0656835632 3.8301716 1103.316
+200817.0656836675 3.8300929 1103.3357
+200818.0656837719 3.8301322 1103.316
+200819.0656838762 3.8301322 1103.3949
+200820.0656839805 3.8302109 1103.2963
+200821.0656840848 3.8301716 1103.3357
+200822.0656841891 3.8303289 1103.3357
+200823.0656842934 3.8302896 1103.316
+200824.0656843977 3.8302896 1103.3357
+200825.065684502 3.8302503 1103.3752
+200826.0656846063 3.8302896 1103.316
+200827.0656847106 3.8302109 1103.3357
+200828.0656848149 3.8302503 1103.3752
+200829.0656849192 3.8302109 1103.3555
+200830.0656850236 3.8302109 1103.316
+200831.0656851279 3.8302503 1103.3357
+200832.0656852322 3.8302109 1103.2172
+200833.0656853365 3.8304079 1103.4147
+200834.0656854408 3.8304079 1103.2963
+200835.0656855451 3.8303289 1103.3949
+200836.0656856494 3.8302896 1103.3752
+200837.0656857537 3.8304079 1103.3555
+200838.065685858 3.8303683 1103.3555
+200839.0656859623 3.8305652 1103.316
+200840.0656860666 3.8304472 1103.3357
+200841.0656861709 3.8304472 1103.316
+200842.0656862753 3.8304865 1103.4147
+200843.0656863796 3.8304865 1103.3357
+200844.0656864839 3.8306046 1103.4147
+200845.0656865882 3.8305259 1103.316
+200846.0656866925 3.8305652 1103.2369
+200847.0656867968 3.8306046 1103.3555
+200848.0656869011 3.8305259 1103.316
+200849.0656870054 3.8305652 1103.316
+200850.0656871097 3.8305652 1103.3555
+200851.065687214 3.8306046 1103.3357
+200852.0656873183 3.8306046 1103.3555
+200853.0656874226 3.8306439 1103.3357
+200854.0656875269 3.8306835 1103.3949
+200855.0656876313 3.8306046 1103.3949
+200856.0656877356 3.8306835 1103.3555
+200857.0656878399 3.8306835 1103.4542
+200858.0656879442 3.8306835 1103.3555
+200859.0656880485 3.8306439 1103.4147
+200860.0656881528 3.8307228 1103.2765
+200861.0656882571 3.8306439 1103.4147
+200862.0656883614 3.8307621 1103.3357
+200863.0656884657 3.8307621 1103.3357
+200864.06568857 3.8307228 1103.3357
+200865.0656886743 3.8307621 1103.3555
+200866.0656887786 3.8307228 1103.316
+200867.065688883 3.8308408 1103.3555
+200868.0656889873 3.8307228 1103.2765
+200869.0656890916 3.8307621 1103.3949
+200870.0656891959 3.8308015 1103.3752
+200871.0656893002 3.8308802 1103.3357
+200872.0656894045 3.8308802 1103.3555
+200873.0656895088 3.8308802 1103.4344
+200874.0656896131 3.8308408 1103.316
+200875.0656897174 3.8308408 1103.2765
+200876.0656898217 3.8308408 1103.3357
+200877.065689926 3.8308802 1103.316
+200878.0656900303 3.8309984 1103.4147
+200879.0656901347 3.8309195 1103.4344
+200880.065690239 3.8309984 1103.3555
+200881.0656903433 3.8309984 1103.1975
+200882.0656904476 3.8309984 1103.3357
+200883.0656905519 3.8309984 1103.4147
+200884.0656906562 3.8311164 1103.316
+200885.0656907605 3.8311164 1103.3357
+200886.0656908648 3.8311558 1103.3752
+200887.0656909691 3.8310378 1103.3555
+200888.0656910734 3.8311164 1103.3555
+200889.0656911777 3.8311558 1103.2567
+200890.065691282 3.8311164 1103.3949
+200891.0656913864 3.8311164 1103.3949
+200892.0656914907 3.8311558 1103.4147
+200893.065691595 3.8311558 1103.3949
+200894.0656916993 3.8311951 1103.3357
+200895.0656918036 3.8313134 1103.3555
+200896.0656919079 3.8311558 1103.3949
+200897.0656920122 3.8311951 1103.3357
+200898.0656921165 3.8313134 1103.4344
+200899.0656922208 3.8312738 1103.316
+200900.0656923251 3.8311951 1103.3357
+200901.0656924294 3.8312345 1103.3949
+200902.0656925337 3.8311951 1103.3949
+200903.065692638 3.8313527 1103.3752
+200904.0656927424 3.8313134 1103.3752
+200905.0656928467 3.8312738 1103.3949
+200906.065692951 3.8313134 1103.3949
+200907.0656930553 3.831392 1103.3555
+200908.0656931596 3.8313527 1103.4542
+200909.0656932639 3.8314707 1103.3555
+200910.0656933682 3.8313527 1103.3949
+200911.0656934725 3.8314707 1103.3752
+200912.0656935768 3.8314707 1103.3949
+200913.0656936811 3.8314707 1103.3357
+200914.0656937854 3.8314314 1103.3555
+200915.0656938897 3.8314707 1103.316
+200916.0656939941 3.831392 1103.2765
+200917.0656940984 3.8314707 1103.316
+200918.0656942027 3.8314707 1103.3357
+200919.065694307 3.8315494 1103.2963
+200920.0656944113 3.8314707 1103.3752
+200921.0656945156 3.8314707 1103.3555
+200922.0656946199 3.8315887 1103.3555
+200923.0656947242 3.8315101 1103.2567
+200924.0656948285 3.8315494 1103.3555
+200925.0656949328 3.8315887 1103.316
+200926.0656950371 3.8315887 1103.3357
+200927.0656951414 3.8315494 1103.4147
+200928.0656952458 3.8316283 1103.3752
+200929.0656953501 3.8315887 1103.4147
+200930.0656954544 3.8317463 1103.4147
+200931.0656955587 3.831707 1103.3555
+200932.065695663 3.8317857 1103.2567
+200933.0656957673 3.8316283 1103.3357
+200934.0656958716 3.8317463 1103.3752
+200935.0656959759 3.831707 1103.2765
+200936.0656960802 3.831707 1103.3752
+200937.0656961845 3.831825 1103.3752
+200938.0656962888 3.831825 1103.2765
+200939.0656963931 3.831825 1103.3752
+200940.0656964974 3.8317857 1103.4344
+200941.0656966018 3.8319433 1103.3357
+200942.0656967061 3.831825 1103.3555
+200943.0656968104 3.8317857 1103.2963
+200944.0656969147 3.831825 1103.316
+200945.065697019 3.8319037 1103.3949
+200946.0656971233 3.8319037 1103.3949
+200947.0656972276 3.8319433 1103.3357
+200948.0656973319 3.8319433 1103.3555
+200949.0656974362 3.8319826 1103.4147
+200950.0656975405 3.832022 1103.2963
+200951.0656976448 3.8319037 1103.2963
+200952.0656977491 3.832022 1103.3357
+200953.0656978535 3.8320613 1103.316
+200954.0656979578 3.8319433 1103.3752
+200955.0656980621 3.8320613 1103.4147
+200956.0656981664 3.8320613 1103.3555
+200957.0656982707 3.832022 1103.316
+200958.065698375 3.83214 1103.4344
+200959.0656984793 3.83214 1103.3357
+200960.0656985836 3.8320613 1103.3949
+200961.0656986879 3.8321006 1103.3949
+200962.0656987922 3.832022 1103.3949
+200963.0656988965 3.83214 1103.3555
+200964.0656990008 3.83214 1103.2963
+200965.0656991052 3.8322976 1103.3949
+200966.0656992095 3.8321793 1103.3949
+200967.0656993138 3.83214 1103.3555
+200968.0656994181 3.8322186 1103.2765
+200969.0656995224 3.8321793 1103.3949
+200970.0656996267 3.8322186 1103.316
+200971.065699731 3.8322186 1103.2963
+200972.0656998353 3.8322976 1103.3357
+200973.0656999396 3.8322186 1103.316
+200974.0657000439 3.83214 1103.3357
+200975.0657001482 3.8323762 1103.316
+200976.0657002525 3.8323762 1103.3752
+200977.0657003568 3.8323762 1103.3949
+200978.0657004612 3.8324549 1103.316
+200979.0657005655 3.8323762 1103.3555
+200980.0657006698 3.8323369 1103.3357
+200981.0657007741 3.8324156 1103.3357
+200982.0657008784 3.8324156 1103.3752
+200983.0657009827 3.8323369 1103.316
+200984.065701087 3.8324943 1103.3357
+200985.0657011913 3.8324156 1103.3357
+200986.0657012956 3.8323762 1103.3752
+200987.0657013999 3.8324943 1103.316
+200988.0657015042 3.8324943 1103.3357
+200989.0657016085 3.8324549 1103.4344
+200990.0657017129 3.8324549 1103.3752
+200991.0657018172 3.8326125 1103.3752
+200992.0657019215 3.8325338 1103.2963
+200993.0657020258 3.8325338 1103.3752
+200994.0657021301 3.8325732 1103.316
+200995.0657022344 3.8325732 1103.3357
+200996.0657023387 3.8326125 1103.4344
+200997.065702443 3.8325732 1103.3357
+200998.0657025473 3.8325732 1103.2765
+200999.0657026516 3.8327305 1103.3752
+201000.0657027559 3.8325732 1103.316
+201001.0657028602 3.8325732 1103.3357
+201002.0657029646 3.8327699 1103.3555
+201003.0657030689 3.8327305 1103.2963
+201004.0657031732 3.8328092 1103.3555
+201005.0657032775 3.8327305 1103.3949
+201006.0657033818 3.8327305 1103.4344
+201007.0657034861 3.8326912 1103.316
+201008.0657035904 3.8327305 1103.5134
+201009.0657036947 3.8328488 1103.3357
+201010.065703799 3.8328881 1103.2963
+201011.0657039033 3.8328881 1103.4542
+201012.0657040076 3.8328092 1103.3357
+201013.0657041119 3.8328488 1103.3752
+201014.0657042162 3.8327699 1103.3555
+201015.0657043206 3.8328881 1103.2963
+201016.0657044249 3.8328092 1103.3555
+201017.0657045292 3.8328881 1103.3555
+201018.0657046335 3.8328488 1103.3752
+201019.0657047378 3.8328881 1103.3949
+201020.0657048421 3.8329668 1103.3752
+201021.0657049464 3.8330061 1103.2963
+201022.0657050507 3.8329668 1103.316
+201023.065705155 3.8330455 1103.316
+201024.0657052593 3.8328881 1103.4147
+201025.0657053636 3.8330061 1103.3357
+201026.0657054679 3.8328881 1103.3752
+201027.0657055723 3.8330848 1103.4147
+201028.0657056766 3.8330455 1103.316
+201029.0657057809 3.8330455 1103.316
+201030.0657058852 3.8331242 1103.3555
+201031.0657059895 3.8331242 1103.3949
+201032.0657060938 3.8331242 1103.3357
+201033.0657061981 3.8330455 1103.3555
+201034.0657063024 3.8331637 1103.4147
+201035.0657064067 3.8332031 1103.4147
+201036.065706511 3.8331637 1103.3555
+201037.0657066153 3.8331242 1103.3555
+201038.0657067196 3.8332031 1103.3752
+201039.065706824 3.8332424 1103.2567
+201040.0657069283 3.8331637 1103.4344
+201041.0657070326 3.8332818 1103.316
+201042.0657071369 3.8332031 1103.3357
+201043.0657072412 3.8332818 1103.2963
+201044.0657073455 3.8331637 1103.316
+201045.0657074498 3.8333211 1103.3949
+201046.0657075541 3.8332818 1103.3949
+201047.0657076584 3.8333211 1103.3752
+201048.0657077627 3.8333604 1103.3357
+201049.065707867 3.8333604 1103.3949
+201050.0657079713 3.8333211 1103.2765
+201051.0657080757 3.8333998 1103.3555
+201052.06570818 3.8333998 1103.316
+201053.0657082843 3.8333998 1103.3357
+201054.0657083886 3.8334787 1103.4344
+201055.0657084929 3.8333998 1103.3357
+201056.0657085972 3.8333998 1103.3949
+201057.0657087015 3.833518 1103.2567
+201058.0657088058 3.8334391 1103.3949
+201059.0657089101 3.8335574 1103.316
+201060.0657090144 3.8335574 1103.3949
+201061.0657091187 3.8335574 1103.2369
+201062.065709223 3.833636 1103.3357
+201063.0657093273 3.833518 1103.3949
+201064.0657094317 3.833636 1103.3357
+201065.065709536 3.8335574 1103.3752
+201066.0657096403 3.8335574 1103.3357
+201067.0657097446 3.8335967 1103.316
+201068.0657098489 3.8335967 1103.3357
+201069.0657099532 3.833636 1103.2765
+201070.0657100575 3.8335574 1103.3949
+201071.0657101618 3.8335574 1103.3752
+201072.0657102661 3.8336754 1103.3555
+201073.0657103704 3.8336754 1103.3555
+201074.0657104747 3.833636 1103.3752
+201075.065710579 3.8335967 1103.3752
+201076.0657106834 3.8337541 1103.3555
+201077.0657107877 3.8337541 1103.3357
+201078.065710892 3.8337147 1103.316
+201079.0657109963 3.8337147 1103.316
+201080.0657111006 3.8337936 1103.2765
+201081.0657112049 3.833833 1103.316
+201082.0657113092 3.8337541 1103.2172
+201083.0657114135 3.8338723 1103.3555
+201084.0657115178 3.8338723 1103.316
+201085.0657116221 3.8338723 1103.316
+201086.0657117264 3.8338723 1103.4344
+201087.0657118307 3.8338723 1103.3752
+201088.0657119351 3.8338723 1103.3949
+201089.0657120394 3.8338723 1103.3555
+201090.0657121437 3.833833 1103.2963
+201091.065712248 3.833951 1103.2963
+201092.0657123523 3.8339117 1103.3752
+201093.0657124566 3.8340297 1103.2963
+201094.0657125609 3.8340297 1103.3555
+201095.0657126652 3.8339117 1103.3357
+201096.0657127695 3.8339903 1103.3752
+201097.0657128738 3.8340297 1103.2765
+201098.0657129781 3.8340297 1103.2963
+201099.0657130824 3.8341479 1103.3555
+201100.0657131867 3.834069 1103.3357
+201101.0657132911 3.834069 1103.3555
+201102.0657133954 3.834069 1103.3555
+201103.0657134997 3.8341479 1103.2567
+201104.065713604 3.8340297 1103.3752
+201105.0657137083 3.8341873 1103.316
+201106.0657138126 3.8341873 1103.3752
+201107.0657139169 3.8341479 1103.3555
+201108.0657140212 3.8342266 1103.2963
+201109.0657141255 3.8343053 1103.2369
+201110.0657142298 3.8341086 1103.3555
+201111.0657143341 3.8342659 1103.3555
+201112.0657144384 3.8341873 1103.3357
+201113.0657145428 3.8341086 1103.3357
+201114.0657146471 3.8342659 1103.3555
+201115.0657147514 3.8342659 1103.3752
+201116.0657148557 3.8342659 1103.2567
+201117.06571496 3.8342659 1103.3357
+201118.0657150643 3.8343053 1103.474
+201119.0657151686 3.8343053 1103.2963
+201120.0657152729 3.8343053 1103.4147
+201121.0657153772 3.8343446 1103.316
+201122.0657154815 3.8342659 1103.3555
+201123.0657155858 3.8344235 1103.3752
+201124.0657156901 3.8343053 1103.3555
+201125.0657157945 3.8344629 1103.3555
+201126.0657158988 3.8344235 1103.316
+201127.0657160031 3.8343842 1103.3357
+201128.0657161074 3.8344629 1103.3752
+201129.0657162117 3.8344629 1103.316
+201130.065716316 3.8343842 1103.2963
+201131.0657164203 3.8345022 1103.3357
+201132.0657165246 3.8345022 1103.3357
+201133.0657166289 3.8344629 1103.316
+201134.0657167332 3.8345809 1103.2963
+201135.0657168375 3.8345809 1103.4147
+201136.0657169418 3.8345022 1103.3752
+201137.0657170461 3.8345022 1103.3949
+201138.0657171505 3.8344629 1103.3752
+201139.0657172548 3.8346202 1103.2172
+201140.0657173591 3.8346596 1103.3357
+201141.0657174634 3.8346596 1103.2963
+201142.0657175677 3.8346596 1103.4147
+201143.065717672 3.8345809 1103.3949
+201144.0657177763 3.8346596 1103.3752
+201145.0657178806 3.8346992 1103.2567
+201146.0657179849 3.8347385 1103.3949
+201147.0657180892 3.8347385 1103.3752
+201148.0657181935 3.8347778 1103.3357
+201149.0657182978 3.8347385 1103.3357
+201150.0657184022 3.8346992 1103.2963
+201151.0657185065 3.8347385 1103.4147
+201152.0657186108 3.8348565 1103.2963
+201153.0657187151 3.8347385 1103.2765
+201154.0657188194 3.8347778 1103.2963
+201155.0657189237 3.8348172 1103.316
+201156.065719028 3.8347778 1103.3357
+201157.0657191323 3.8347778 1103.3555
+201158.0657192366 3.8347778 1103.3555
+201159.0657193409 3.8348958 1103.4344
+201160.0657194452 3.8350141 1103.3949
+201161.0657195495 3.8348565 1103.2765
+201162.0657196539 3.8348958 1103.2963
+201163.0657197582 3.8348565 1103.3949
+201164.0657198625 3.8349352 1103.3752
+201165.0657199668 3.8349352 1103.316
+201166.0657200711 3.8349745 1103.2567
+201167.0657201754 3.8348565 1103.3555
+201168.0657202797 3.8350141 1103.2765
+201169.065720384 3.8350141 1103.3752
+201170.0657204883 3.8350534 1103.3357
+201171.0657205926 3.8349745 1103.3357
+201172.0657206969 3.8350141 1103.4147
+201173.0657208012 3.8350141 1103.3555
+201174.0657209056 3.8350534 1103.2963
+201175.0657210099 3.8350928 1103.2963
+201176.0657211142 3.8351715 1103.3555
+201177.0657212185 3.8351715 1103.4147
+201178.0657213228 3.8350928 1103.3752
+201179.0657214271 3.8351715 1103.3752
+201180.0657215314 3.8351715 1103.3357
+201181.0657216357 3.8352108 1103.3357
+201182.06572174 3.8350928 1103.4344
+201183.0657218443 3.8352108 1103.2963
+201184.0657219486 3.8353291 1103.4147
+201185.0657220529 3.8352108 1103.2765
+201186.0657221572 3.8352501 1103.316
+201187.0657222616 3.8352501 1103.3752
+201188.0657223659 3.8352501 1103.2369
+201189.0657224702 3.8352501 1103.3357
+201190.0657225745 3.8352895 1103.3752
+201191.0657226788 3.8354077 1103.4542
+201192.0657227831 3.8354077 1103.3357
+201193.0657228874 3.8353291 1103.3752
+201194.0657229917 3.8353291 1103.3357
+201195.065723096 3.8353291 1103.3949
+201196.0657232003 3.8354864 1103.3357
+201197.0657233046 3.8354471 1103.3555
+201198.0657234089 3.8354471 1103.2963
+201199.0657235133 3.8353684 1103.4344
+201200.0657236176 3.8354077 1103.2963
+201201.0657237219 3.8353291 1103.316
+201202.0657238262 3.8354864 1103.316
+201203.0657239305 3.8355258 1103.3357
+201204.0657240348 3.8355258 1103.3357
+201205.0657241391 3.8355258 1103.3357
+201206.0657242434 3.8354864 1103.3949
+201207.0657243477 3.8356044 1103.3555
+201208.065724452 3.8356833 1103.3555
+201209.0657245563 3.8355258 1103.3357
+201210.0657246606 3.8355651 1103.3949
+201211.065724765 3.835644 1103.3357
+201212.0657248693 3.835644 1103.3752
+201213.0657249736 3.835644 1103.2369
+201214.0657250779 3.8355651 1103.316
+201215.0657251822 3.835762 1103.316
+201216.0657252865 3.835644 1103.3949
+201217.0657253908 3.8356833 1103.2765
+201218.0657254951 3.8356044 1103.3357
+201219.0657255994 3.8355651 1103.4542
+201220.0657257037 3.8356833 1103.2567
+201221.065725808 3.8357227 1103.2567
+201222.0657259123 3.8356833 1103.3752
+201223.0657260166 3.835762 1103.3357
+201224.065726121 3.83588 1103.316
+201225.0657262253 3.8358014 1103.3752
+201226.0657263296 3.8358407 1103.316
+201227.0657264339 3.8358407 1103.316
+201228.0657265382 3.835762 1103.3357
+201229.0657266425 3.8359194 1103.3357
+201230.0657267468 3.83588 1103.316
+201231.0657268511 3.8358407 1103.3555
+201232.0657269554 3.8358407 1103.3752
+201233.0657270597 3.8359194 1103.3555
+201234.065727164 3.835959 1103.3555
+201235.0657272683 3.835959 1103.316
+201236.0657273727 3.8358407 1103.3357
+201237.065727477 3.8359983 1103.3357
+201238.0657275813 3.8360376 1103.2963
+201239.0657276856 3.8359983 1103.3555
+201240.0657277899 3.835959 1103.316
+201241.0657278942 3.835959 1103.2963
+201242.0657279985 3.836077 1103.316
+201243.0657281028 3.836077 1103.2369
+201244.0657282071 3.8360376 1103.3555
+201245.0657283114 3.8360376 1103.316
+201246.0657284157 3.8361163 1103.2963
+201247.06572852 3.836077 1103.316
+201248.0657286244 3.836077 1103.2963
+201249.0657287287 3.8361163 1103.2963
+201250.065728833 3.836195 1103.316
+201251.0657289373 3.8362346 1103.3357
+201252.0657290416 3.836077 1103.3555
+201253.0657291459 3.8362346 1103.3357
+201254.0657292502 3.836195 1103.3949
+201255.0657293545 3.836195 1103.3752
+201256.0657294588 3.836195 1103.3555
+201257.0657295631 3.8362739 1103.4344
+201258.0657296674 3.8361557 1103.3752
+201259.0657297717 3.8362739 1103.3357
+201260.065729876 3.8362739 1103.2963
+201261.0657299804 3.8363526 1103.2765
+201262.0657300847 3.8362739 1103.316
+201263.065730189 3.8363526 1103.3357
+201264.0657302933 3.8363526 1103.4344
+201265.0657303976 3.8363526 1103.2765
+201266.0657305019 3.8365099 1103.316
+201267.0657306062 3.8363526 1103.316
+201268.0657307105 3.8363919 1103.4344
+201269.0657308148 3.8364313 1103.3949
+201270.0657309191 3.8365099 1103.4542
+201271.0657310234 3.8364706 1103.3949
+201272.0657311277 3.8364313 1103.2369
+201273.0657312321 3.8365099 1103.2963
+201274.0657313364 3.8365099 1103.2963
+201275.0657314407 3.8365495 1103.3555
+201276.065731545 3.8365495 1103.3357
+201277.0657316493 3.8364706 1103.3752
+201278.0657317536 3.8365495 1103.2765
+201279.0657318579 3.8365889 1103.3555
+201280.0657319622 3.8365495 1103.3555
+201281.0657320665 3.8365889 1103.2963
+201282.0657321708 3.8365495 1103.2765
+201283.0657322751 3.8367069 1103.2765
+201284.0657323794 3.8367069 1103.2963
+201285.0657324838 3.8367069 1103.316
+201286.0657325881 3.8368249 1103.316
+201287.0657326924 3.8367069 1103.4344
+201288.0657327967 3.8367069 1103.2963
+201289.065732901 3.8367069 1103.2369
+201290.0657330053 3.8367462 1103.3949
+201291.0657331096 3.8367462 1103.2369
+201292.0657332139 3.8367069 1103.316
+201293.0657333182 3.8368249 1103.316
+201294.0657334225 3.8367856 1103.3357
+201295.0657335268 3.8367856 1103.316
+201296.0657336311 3.8368249 1103.3752
+201297.0657337355 3.8367856 1103.316
+201298.0657338398 3.8367856 1103.4344
+201299.0657339441 3.8369038 1103.4147
+201300.0657340484 3.8368249 1103.3752
+201301.0657341527 3.8367856 1103.2765
+201302.065734257 3.8369431 1103.3357
+201303.0657343613 3.8369038 1103.2369
+201304.0657344656 3.8369038 1103.3357
+201305.0657345699 3.8369431 1103.2963
+201306.0657346742 3.8369431 1103.3949
+201307.0657347785 3.8369825 1103.4147
+201308.0657348828 3.8369825 1103.4542
+201309.0657349871 3.8369038 1103.2765
+201310.0657350915 3.8369431 1103.3357
+201311.0657351958 3.8370612 1103.4344
+201312.0657353001 3.8371398 1103.3949
+201313.0657354044 3.8369825 1103.3752
+201314.0657355087 3.8370612 1103.3357
+201315.065735613 3.8370612 1103.3357
+201316.0657357173 3.8371005 1103.2765
+201317.0657358216 3.8371794 1103.3949
+201318.0657359259 3.8372188 1103.316
+201319.0657360302 3.8372974 1103.3555
+201320.0657361345 3.8369825 1103.2369
+201321.0657362388 3.8372188 1103.3752
+201322.0657363432 3.8371005 1103.3949
+201323.0657364475 3.8371794 1103.2963
+201324.0657365518 3.8372188 1103.3752
+201325.0657366561 3.8372974 1103.4147
+201326.0657367604 3.8372188 1103.316
+201327.0657368647 3.8372974 1103.3357
+201328.065736969 3.8372188 1103.316
+201329.0657370733 3.8373368 1103.316
+201330.0657371776 3.8372974 1103.3949
+201331.0657372819 3.8372974 1103.3357
+201332.0657373862 3.8374155 1103.2963
+201333.0657374905 3.8373368 1103.2567
+201334.0657375949 3.8374155 1103.3357
+201335.0657376992 3.8372974 1103.3357
+201336.0657378035 3.8372974 1103.3357
+201337.0657379078 3.8373761 1103.2963
+201338.0657380121 3.8374155 1103.3555
+201339.0657381164 3.8373368 1103.3752
+201340.0657382207 3.8372974 1103.2963
+201341.065738325 3.8375337 1103.3555
+201342.0657384293 3.8374944 1103.3555
+201343.0657385336 3.8375731 1103.3949
+201344.0657386379 3.8375337 1103.3752
+201345.0657387422 3.8375337 1103.3752
+201346.0657388465 3.8374548 1103.4147
+201347.0657389509 3.8374548 1103.2765
+201348.0657390552 3.8374944 1103.3752
+201349.0657391595 3.8376124 1103.4542
+201350.0657392638 3.8375731 1103.3357
+201351.0657393681 3.8375731 1103.3357
+201352.0657394724 3.8375337 1103.2567
+201353.0657395767 3.8375731 1103.2963
+201354.065739681 3.8376124 1103.2963
+201355.0657397853 3.8376517 1103.2567
+201356.0657398896 3.8376517 1103.4344
+201357.0657399939 3.83777 1103.4344
+201358.0657400982 3.8376517 1103.3357
+201359.0657402026 3.8377304 1103.316
+201360.0657403069 3.83777 1103.3555
+201361.0657404112 3.8376517 1103.3555
+201362.0657405155 3.8376911 1103.3555
+201363.0657406198 3.8377304 1103.2765
+201364.0657407241 3.837888 1103.2765
+201365.0657408284 3.83777 1103.2369
+201366.0657409327 3.8377304 1103.3357
+201367.065741037 3.83777 1103.3752
+201368.0657411413 3.8378487 1103.316
+201369.0657412456 3.8379273 1103.3357
+201370.0657413499 3.8379667 1103.3357
+201371.0657414543 3.8379273 1103.3357
+201372.0657415586 3.8378487 1103.2765
+201373.0657416629 3.83777 1103.3949
+201374.0657417672 3.838006 1103.2963
+201375.0657418715 3.8379667 1103.3752
+201376.0657419758 3.8379667 1103.2765
+201377.0657420801 3.838006 1103.3949
+201378.0657421844 3.8380849 1103.316
+201379.0657422887 3.838006 1103.3949
+201380.065742393 3.838006 1103.316
+201381.0657424973 3.8380849 1103.3555
+201382.0657426016 3.8380849 1103.3752
+201383.0657427059 3.8380454 1103.3752
+201384.0657428103 3.838006 1103.4344
+201385.0657429146 3.838006 1103.3357
+201386.0657430189 3.8380849 1103.2963
+201387.0657431232 3.8381636 1103.2172
+201388.0657432275 3.838203 1103.4147
+201389.0657433318 3.8381636 1103.2765
+201390.0657434361 3.8381636 1103.4147
+201391.0657435404 3.8380849 1103.3752
+201392.0657436447 3.8381636 1103.4147
+201393.065743749 3.8380454 1103.3752
+201394.0657438533 3.8382816 1103.4542
+201395.0657439576 3.8382423 1103.2765
+201396.065744062 3.838203 1103.2963
+201397.0657441663 3.838203 1103.3357
+201398.0657442706 3.8382816 1103.3357
+201399.0657443749 3.838203 1103.3555
+201400.0657444792 3.838321 1103.2963
+201401.0657445835 3.8382423 1103.3555
+201402.0657446878 3.8383999 1103.3555
+201403.0657447921 3.8382423 1103.316
+201404.0657448964 3.8383999 1103.3949
+201405.0657450007 3.8383603 1103.316
+201406.065745105 3.8382816 1103.3357
+201407.0657452093 3.8384392 1103.3949
+201408.0657453137 3.8383999 1103.3357
+201409.065745418 3.8383999 1103.2963
+201410.0657455223 3.8384392 1103.3357
+201411.0657456266 3.8384786 1103.4542
+201412.0657457309 3.8383999 1103.3752
+201413.0657458352 3.8383999 1103.3555
+201414.0657459395 3.8385966 1103.3949
+201415.0657460438 3.8384786 1103.3357
+201416.0657461481 3.8384786 1103.3357
+201417.0657462524 3.8385572 1103.3357
+201418.0657463567 3.8385966 1103.4344
+201419.065746461 3.8385572 1103.3555
+201420.0657465653 3.8385179 1103.2567
+201421.0657466697 3.8385572 1103.2765
+201422.065746774 3.8385572 1103.2567
+201423.0657468783 3.8386359 1103.316
+201424.0657469826 3.8385966 1103.3555
+201425.0657470869 3.8385572 1103.316
+201426.0657471912 3.8386359 1103.3949
+201427.0657472955 3.8385572 1103.2963
+201428.0657473998 3.8386359 1103.3949
+201429.0657475041 3.8386359 1103.4542
+201430.0657476084 3.8387148 1103.3555
+201431.0657477127 3.8385966 1103.2765
+201432.065747817 3.8387935 1103.3752
+201433.0657479214 3.8386359 1103.3357
+201434.0657480257 3.8387148 1103.3752
+201435.06574813 3.8387935 1103.3357
+201436.0657482343 3.8387542 1103.3357
+201437.0657483386 3.8387935 1103.3357
+201438.0657484429 3.8387542 1103.3752
+201439.0657485472 3.8389115 1103.3555
+201440.0657486515 3.8388722 1103.316
+201441.0657487558 3.8387542 1103.2765
+201442.0657488601 3.8388329 1103.2567
+201443.0657489644 3.8388329 1103.3357
+201444.0657490687 3.8389509 1103.3752
+201445.0657491731 3.8389115 1103.2765
+201446.0657492774 3.8389902 1103.3357
+201447.0657493817 3.8390298 1103.3752
+201448.065749486 3.8389509 1103.3555
+201449.0657495903 3.8389115 1103.3555
+201450.0657496946 3.8389902 1103.2963
+201451.0657497989 3.8389902 1103.3357
+201452.0657499032 3.8389509 1103.2567
+201453.0657500075 3.8389902 1103.2963
+201454.0657501118 3.8389902 1103.2567
+201455.0657502161 3.8391085 1103.3949
+201456.0657503204 3.8389902 1103.2172
+201457.0657504248 3.8390691 1103.3555
+201458.0657505291 3.8391478 1103.3949
+201459.0657506334 3.8390298 1103.3949
+201460.0657507377 3.8391478 1103.3357
+201461.065750842 3.8391871 1103.3357
+201462.0657509463 3.8391478 1103.3949
+201463.0657510506 3.8391871 1103.2765
+201464.0657511549 3.8391871 1103.316
+201465.0657512592 3.8391478 1103.3752
+201466.0657513635 3.8392265 1103.4344
+201467.0657514678 3.8391871 1103.3357
+201468.0657515721 3.8393052 1103.3555
+201469.0657516764 3.8391478 1103.3949
+201470.0657517808 3.8392265 1103.3357
+201471.0657518851 3.8393052 1103.3949
+201472.0657519894 3.8393052 1103.4147
+201473.0657520937 3.8392658 1103.3357
+201474.065752198 3.8393447 1103.3949
+201475.0657523023 3.8394234 1103.316
+201476.0657524066 3.8393447 1103.3357
+201477.0657525109 3.8394234 1103.3752
+201478.0657526152 3.8394234 1103.2765
+201479.0657527195 3.8393447 1103.2963
+201480.0657528238 3.8395414 1103.474
+201481.0657529281 3.8394234 1103.3752
+201482.0657530325 3.8393841 1103.3949
+201483.0657531368 3.8394234 1103.316
+201484.0657532411 3.8395021 1103.3357
+201485.0657533454 3.8395808 1103.3357
+201486.0657534497 3.8395414 1103.3752
+201487.065753554 3.8394628 1103.4147
+201488.0657536583 3.8395414 1103.2567
+201489.0657537626 3.8395808 1103.3949
+201490.0657538669 3.8395021 1103.3357
+201491.0657539712 3.8396597 1103.4147
+201492.0657540755 3.8396204 1103.3752
+201493.0657541798 3.8396597 1103.3555
+201494.0657542842 3.8395808 1103.3357
+201495.0657543885 3.8395808 1103.3555
+201496.0657544928 3.8396204 1103.3949
+201497.0657545971 3.839699 1103.4344
+201498.0657547014 3.839699 1103.3555
+201499.0657548057 3.8396597 1103.3357
+201500.06575491 3.8396597 1103.3555
+201501.0657550143 3.8397384 1103.316
+201502.0657551186 3.8397384 1103.3357
+201503.0657552229 3.839699 1103.2765
+201504.0657553272 3.8397384 1103.3752
+201505.0657554315 3.839699 1103.3357
+201506.0657555358 3.839699 1103.3752
+201507.0657556402 3.8397777 1103.3357
+201508.0657557445 3.839817 1103.3752
+201509.0657558488 3.8398564 1103.316
+201510.0657559531 3.839817 1103.3752
+201511.0657560574 3.8398564 1103.2172
+201512.0657561617 3.8397777 1103.4542
+201513.065756266 3.839817 1103.3752
+201514.0657563703 3.839817 1103.2765
+201515.0657564746 3.8398957 1103.4344
+201516.0657565789 3.8398564 1103.3949
+201517.0657566832 3.8399353 1103.316
+201518.0657567875 3.8399746 1103.3555
+201519.0657568919 3.8399746 1103.316
+201520.0657569962 3.8399353 1103.3357
+201521.0657571005 3.8400533 1103.3357
+201522.0657572048 3.840014 1103.316
+201523.0657573091 3.8398564 1103.3752
+201524.0657574134 3.8400533 1103.2963
+201525.0657575177 3.840014 1103.3752
+201526.065757622 3.8399746 1103.2765
+201527.0657577263 3.8400533 1103.2963
+201528.0657578306 3.8400533 1103.4542
+201529.0657579349 3.8400533 1103.4147
+201530.0657580392 3.840132 1103.4344
+201531.0657581436 3.840132 1103.2172
+201532.0657582479 3.840132 1103.3357
+201533.0657583522 3.8400927 1103.316
+201534.0657584565 3.8400533 1103.3752
+201535.0657585608 3.8402107 1103.4344
+201536.0657586651 3.8402503 1103.3949
+201537.0657587694 3.840132 1103.2567
+201538.0657588737 3.8400927 1103.2963
+201539.065758978 3.8401713 1103.3555
+201540.0657590823 3.8402503 1103.2567
+201541.0657591866 3.8402107 1103.3752
+201542.0657592909 3.8402107 1103.3555
+201543.0657593952 3.8403289 1103.2963
+201544.0657594996 3.8403289 1103.3357
+201545.0657596039 3.8402896 1103.3555
+201546.0657597082 3.8403289 1103.3752
+201547.0657598125 3.8403289 1103.2963
+201548.0657599168 3.8403289 1103.3949
+201549.0657600211 3.8404076 1103.4147
+201550.0657601254 3.8404469 1103.3949
+201551.0657602297 3.8404076 1103.316
+201552.065760334 3.8405652 1103.3357
+201553.0657604383 3.8404076 1103.316
+201554.0657605426 3.8404076 1103.3357
+201555.0657606469 3.8404076 1103.3555
+201556.0657607513 3.8406045 1103.3949
+201557.0657608556 3.8404076 1103.3949
+201558.0657609599 3.8404469 1103.316
+201559.0657610642 3.8405256 1103.4344
+201560.0657611685 3.8404863 1103.316
+201561.0657612728 3.8405256 1103.316
+201562.0657613771 3.8404863 1103.316
+201563.0657614814 3.8404863 1103.2567
+201564.0657615857 3.8405652 1103.2963
+201565.06576169 3.8406045 1103.3357
+201566.0657617943 3.8406439 1103.316
+201567.0657618986 3.8406045 1103.3555
+201568.065762003 3.8407226 1103.3752
+201569.0657621073 3.8406439 1103.3752
+201570.0657622116 3.8405652 1103.3357
+201571.0657623159 3.8406045 1103.3357
+201572.0657624202 3.8407226 1103.4542
+201573.0657625245 3.8408012 1103.3752
+201574.0657626288 3.8408012 1103.3555
+201575.0657627331 3.8406832 1103.3555
+201576.0657628374 3.8407226 1103.4147
+201577.0657629417 3.8407226 1103.3357
+201578.065763046 3.8408012 1103.3752
+201579.0657631503 3.8407619 1103.4147
+201580.0657632547 3.8407619 1103.3357
+201581.065763359 3.8407619 1103.4542
+201582.0657634633 3.8408012 1103.3357
+201583.0657635676 3.8408802 1103.4344
+201584.0657636719 3.8408802 1103.3949
+201585.0657637762 3.8408802 1103.4147
+201586.0657638805 3.8408802 1103.316
+201587.0657639848 3.8409195 1103.3752
+201588.0657640891 3.8409982 1103.2369
+201589.0657641934 3.8409588 1103.4147
+201590.0657642977 3.8411162 1103.3949
+201591.065764402 3.8409195 1103.3555
+201592.0657645063 3.8409195 1103.2963
+201593.0657646107 3.8410375 1103.3752
+201594.065764715 3.8410375 1103.3555
+201595.0657648193 3.8410769 1103.3555
+201596.0657649236 3.8410769 1103.3555
+201597.0657650279 3.8409982 1103.3949
+201598.0657651322 3.8410769 1103.3949
+201599.0657652365 3.8409982 1103.4147
+201600.0657653408 3.8411555 1103.3949
+201601.0657654451 3.8410769 1103.3357
+201602.0657655494 3.8411162 1103.3949
+201603.0657656537 3.8411555 1103.316
+201604.065765758 3.8411555 1103.3555
+201605.0657658624 3.8412344 1103.3555
+201606.0657659667 3.8412738 1103.3555
+201607.065766071 3.8411162 1103.3752
+201608.0657661753 3.8412344 1103.3357
+201609.0657662796 3.8411162 1103.4147
+201610.0657663839 3.8413131 1103.316
+201611.0657664882 3.8413131 1103.2765
+201612.0657665925 3.8413131 1103.3555
+201613.0657666968 3.8413525 1103.3555
+201614.0657668011 3.8413131 1103.3357
+201615.0657669054 3.8413918 1103.3949
+201616.0657670097 3.8413131 1103.2765
+201617.0657671141 3.8411951 1103.3949
+201618.0657672184 3.8413525 1103.3357
+201619.0657673227 3.8413131 1103.4344
+201620.065767427 3.8414311 1103.3357
+201621.0657675313 3.8413918 1103.3949
+201622.0657676356 3.8413918 1103.3949
+201623.0657677399 3.8413918 1103.3357
+201624.0657678442 3.8414311 1103.3752
+201625.0657679485 3.8413918 1103.2963
+201626.0657680528 3.8413525 1103.3555
+201627.0657681571 3.8413918 1103.316
+201628.0657682614 3.8415494 1103.316
+201629.0657683657 3.8415494 1103.3752
+201630.0657684701 3.8415101 1103.3949
+201631.0657685744 3.8415887 1103.3949
+201632.0657686787 3.8413918 1103.3752
+201633.065768783 3.8415887 1103.3555
+201634.0657688873 3.8415101 1103.3357
+201635.0657689916 3.8416674 1103.4344
+201636.0657690959 3.8415887 1103.4542
+201637.0657692002 3.8416674 1103.3752
+201638.0657693045 3.8416674 1103.3555
+201639.0657694088 3.8416281 1103.3555
+201640.0657695131 3.8416281 1103.2963
+201641.0657696174 3.8417068 1103.3555
+201642.0657697218 3.8417461 1103.2765
+201643.0657698261 3.8417461 1103.3357
+201644.0657699304 3.8416674 1103.3357
+201645.0657700347 3.8417461 1103.3949
+201646.065770139 3.841825 1103.3555
+201647.0657702433 3.8415887 1103.2963
+201648.0657703476 3.8418643 1103.3555
+201649.0657704519 3.8417857 1103.316
+201650.0657705562 3.8418643 1103.316
+201651.0657706605 3.841825 1103.3357
+201652.0657707648 3.8418643 1103.2963
+201653.0657708691 3.8418643 1103.2567
+201654.0657709735 3.841825 1103.3752
+201655.0657710778 3.8419037 1103.3555
+201656.0657711821 3.8418643 1103.2765
+201657.0657712864 3.8418643 1103.3752
+201658.0657713907 3.841825 1103.3357
+201659.065771495 3.841825 1103.3555
+201660.0657715993 3.8420217 1103.4147
+201661.0657717036 3.8419824 1103.2963
+201662.0657718079 3.841943 1103.3357
+201663.0657719122 3.841943 1103.2765
+201664.0657720165 3.8420217 1103.3555
+201665.0657721208 3.842061 1103.3555
+201666.0657722251 3.8419824 1103.2963
+201667.0657723295 3.8421006 1103.4344
+201668.0657724338 3.8419824 1103.3949
+201669.0657725381 3.8420217 1103.4147
+201670.0657726424 3.84214 1103.3949
+201671.0657727467 3.842061 1103.316
+201672.065772851 3.8421793 1103.316
+201673.0657729553 3.842061 1103.4147
+201674.0657730596 3.842258 1103.474
+201675.0657731639 3.8421793 1103.2963
+201676.0657732682 3.84214 1103.316
+201677.0657733725 3.8421793 1103.316
+201678.0657734768 3.84214 1103.3752
+201679.0657735812 3.8421793 1103.316
+201680.0657736855 3.8421793 1103.2765
+201681.0657737898 3.8422186 1103.316
+201682.0657738941 3.842258 1103.3555
+201683.0657739984 3.8423367 1103.4147
+201684.0657741027 3.8422186 1103.2963
+201685.065774207 3.8422186 1103.3555
+201686.0657743113 3.8424549 1103.3555
+201687.0657744156 3.842376 1103.3949
+201688.0657745199 3.842376 1103.3357
+201689.0657746242 3.8423367 1103.3752
+201690.0657747285 3.8424549 1103.316
+201691.0657748329 3.8424156 1103.316
+201692.0657749372 3.842376 1103.316
+201693.0657750415 3.8424549 1103.3752
+201694.0657751458 3.8424549 1103.316
+201695.0657752501 3.842376 1103.3949
+201696.0657753544 3.8424156 1103.316
+201697.0657754587 3.8424549 1103.316
+201698.065775563 3.8424549 1103.3357
+201699.0657756673 3.8424942 1103.2963
+201700.0657757716 3.8424942 1103.3752
+201701.0657758759 3.8425336 1103.2963
+201702.0657759802 3.8425336 1103.3555
+201703.0657760846 3.8425336 1103.316
+201704.0657761889 3.8426123 1103.3752
+201705.0657762932 3.8426123 1103.3949
+201706.0657763975 3.8426123 1103.2172
+201707.0657765018 3.8426909 1103.3555
+201708.0657766061 3.8426516 1103.4147
+201709.0657767104 3.8426909 1103.316
+201710.0657768147 3.8426123 1103.3357
+201711.065776919 3.8426516 1103.3752
+201712.0657770233 3.8427305 1103.2765
+201713.0657771276 3.8428092 1103.3555
+201714.0657772319 3.8426909 1103.2963
+201715.0657773362 3.8427305 1103.3555
+201716.0657774406 3.8427305 1103.3949
+201717.0657775449 3.8427699 1103.2963
+201718.0657776492 3.8427699 1103.3949
+201719.0657777535 3.8427305 1103.316
+201720.0657778578 3.8427305 1103.3949
+201721.0657779621 3.8428092 1103.3949
+201722.0657780664 3.8428092 1103.3555
+201723.0657781707 3.8427699 1103.3357
+201724.065778275 3.8428092 1103.2567
+201725.0657783793 3.8429666 1103.2567
+201726.0657784836 3.8430059 1103.4147
+201727.0657785879 3.8429272 1103.316
+201728.0657786923 3.8428879 1103.3555
+201729.0657787966 3.8429272 1103.3949
+201730.0657789009 3.8429666 1103.3555
+201731.0657790052 3.8430059 1103.3752
+201732.0657791095 3.8430059 1103.3555
+201733.0657792138 3.8429272 1103.3555
+201734.0657793181 3.8429666 1103.3357
+201735.0657794224 3.8430848 1103.3555
+201736.0657795267 3.8429272 1103.316
+201737.065779631 3.8431242 1103.3949
+201738.0657797353 3.8430059 1103.3555
+201739.0657798396 3.8431242 1103.4147
+201740.065779944 3.8430848 1103.3949
+201741.0657800483 3.8431242 1103.3555
+201742.0657801526 3.8430848 1103.3949
+201743.0657802569 3.8431635 1103.3752
+201744.0657803612 3.8432028 1103.2567
+201745.0657804655 3.8431242 1103.3357
+201746.0657805698 3.8432028 1103.3752
+201747.0657806741 3.8432422 1103.316
+201748.0657807784 3.8431635 1103.2963
+201749.0657808827 3.8431635 1103.3555
+201750.065780987 3.8432028 1103.3752
+201751.0657810913 3.8432422 1103.316
+201752.0657811956 3.8432422 1103.3357
+201753.0657813 3.8433211 1103.3949
+201754.0657814043 3.8432028 1103.3555
+201755.0657815086 3.8432422 1103.3949
+201756.0657816129 3.8433211 1103.3752
+201757.0657817172 3.8433211 1103.2963
+201758.0657818215 3.8433211 1103.3752
+201759.0657819258 3.8433998 1103.2963
+201760.0657820301 3.8432422 1103.3357
+201761.0657821344 3.8434391 1103.2963
+201762.0657822387 3.8433604 1103.3555
+201763.065782343 3.8433604 1103.2765
+201764.0657824473 3.8434784 1103.3357
+201765.0657825517 3.8435178 1103.3949
+201766.065782656 3.8434784 1103.3949
+201767.0657827603 3.8435178 1103.316
+201768.0657828646 3.8433998 1103.316
+201769.0657829689 3.8434784 1103.3949
+201770.0657830732 3.8435965 1103.2963
+201771.0657831775 3.8434784 1103.3752
+201772.0657832818 3.8434784 1103.2963
+201773.0657833861 3.8435178 1103.3752
+201774.0657834904 3.8435965 1103.3949
+201775.0657835947 3.843636 1103.3752
+201776.065783699 3.8435571 1103.3555
+201777.0657838034 3.8435571 1103.3357
+201778.0657839077 3.843636 1103.2765
+201779.065784012 3.843636 1103.3555
+201780.0657841163 3.8436754 1103.3949
+201781.0657842206 3.8437147 1103.3949
+201782.0657843249 3.8435965 1103.2963
+201783.0657844292 3.8436754 1103.2963
+201784.0657845335 3.8437541 1103.316
+201785.0657846378 3.8437541 1103.3555
+201786.0657847421 3.843636 1103.3555
+201787.0657848464 3.8437934 1103.3949
+201788.0657849507 3.8438327 1103.3752
+201789.065785055 3.843636 1103.4147
+201790.0657851594 3.8436754 1103.3555
+201791.0657852637 3.8437934 1103.316
+201792.065785368 3.8438327 1103.3752
+201793.0657854723 3.8437147 1103.316
+201794.0657855766 3.8438327 1103.3555
+201795.0657856809 3.8437541 1103.3357
+201796.0657857852 3.8439903 1103.2369
+201797.0657858895 3.8438327 1103.316
+201798.0657859938 3.8438327 1103.3752
+201799.0657860981 3.8438721 1103.3555
+201800.0657862024 3.8438721 1103.3752
+201801.0657863067 3.8438721 1103.3949
+201802.0657864111 3.8439114 1103.3357
+201803.0657865154 3.8439114 1103.3949
+201804.0657866197 3.8439903 1103.3752
+201805.065786724 3.8439903 1103.316
+201806.0657868283 3.844069 1103.3555
+201807.0657869326 3.8440297 1103.3357
+201808.0657870369 3.8441083 1103.3357
+201809.0657871412 3.8440297 1103.4147
+201810.0657872455 3.843951 1103.3949
+201811.0657873498 3.8441083 1103.3357
+201812.0657874541 3.8440297 1103.3555
+201813.0657875584 3.8441083 1103.2963
+201814.0657876628 3.844069 1103.3357
+201815.0657877671 3.8441083 1103.3555
+201816.0657878714 3.8441477 1103.3752
+201817.0657879757 3.8441477 1103.316
+201818.06578808 3.8441477 1103.3949
+201819.0657881843 3.8441477 1103.316
+201820.0657882886 3.8442264 1103.3357
+201821.0657883929 3.8443446 1103.3752
+201822.0657884972 3.8443053 1103.3357
+201823.0657886015 3.8443446 1103.3752
+201824.0657887058 3.8443053 1103.3555
+201825.0657888101 3.8442264 1103.3357
+201826.0657889145 3.8443053 1103.316
+201827.0657890188 3.8442659 1103.4147
+201828.0657891231 3.8442264 1103.3752
+201829.0657892274 3.8443446 1103.3752
+201830.0657893317 3.8443053 1103.3949
+201831.065789436 3.844384 1103.3752
+201832.0657895403 3.8443446 1103.3555
+201833.0657896446 3.844384 1103.2963
+201834.0657897489 3.8444233 1103.4147
+201835.0657898532 3.844384 1103.4344
+201836.0657899575 3.844384 1103.4147
+201837.0657900618 3.8443446 1103.3357
+201838.0657901661 3.844384 1103.3949
+201839.0657902705 3.844502 1103.4542
+201840.0657903748 3.8444233 1103.3555
+201841.0657904791 3.844502 1103.2963
+201842.0657905834 3.8445413 1103.2765
+201843.0657906877 3.8445809 1103.2765
+201844.065790792 3.844502 1103.3555
+201845.0657908963 3.8445809 1103.3357
+201846.0657910006 3.8445809 1103.3357
+201847.0657911049 3.8444626 1103.3357
+201848.0657912092 3.8446989 1103.3752
+201849.0657913135 3.8445809 1103.3357
+201850.0657914178 3.8446989 1103.3949
+201851.0657915222 3.8446596 1103.3752
+201852.0657916265 3.8446989 1103.3752
+201853.0657917308 3.8446596 1103.2963
+201854.0657918351 3.8446202 1103.3555
+201855.0657919394 3.8446989 1103.3357
+201856.0657920437 3.8446989 1103.3752
+201857.065792148 3.8447382 1103.316
+201858.0657922523 3.8446989 1103.2963
+201859.0657923566 3.8447382 1103.3752
+201860.0657924609 3.8447382 1103.316
+201861.0657925652 3.8448169 1103.2963
+201862.0657926695 3.8448169 1103.2567
+201863.0657927739 3.8448169 1103.3752
+201864.0657928782 3.8448563 1103.3752
+201865.0657929825 3.8449352 1103.3949
+201866.0657930868 3.8448958 1103.3752
+201867.0657931911 3.8448563 1103.4344
+201868.0657932954 3.8448169 1103.4147
+201869.0657933997 3.8448958 1103.3949
+201870.065793504 3.8448958 1103.3752
+201871.0657936083 3.8448958 1103.3949
+201872.0657937126 3.8448958 1103.316
+201873.0657938169 3.8449745 1103.316
+201874.0657939212 3.8449352 1103.3555
+201875.0657940255 3.8450925 1103.2567
+201876.0657941299 3.8448958 1103.3949
+201877.0657942342 3.8450532 1103.4542
+201878.0657943385 3.8450139 1103.3357
+201879.0657944428 3.8450532 1103.316
+201880.0657945471 3.8450139 1103.3555
+201881.0657946514 3.8450139 1103.316
+201882.0657947557 3.8450925 1103.3357
+201883.06579486 3.8451319 1103.4147
+201884.0657949643 3.8450925 1103.316
+201885.0657950686 3.8451715 1103.3357
+201886.0657951729 3.8451319 1103.4147
+201887.0657952772 3.8452108 1103.3752
+201888.0657953816 3.8451319 1103.2963
+201889.0657954859 3.8451715 1103.3357
+201890.0657955902 3.8450532 1103.4344
+201891.0657956945 3.8452895 1103.2963
+201892.0657957988 3.8452501 1103.3752
+201893.0657959031 3.8451319 1103.3357
+201894.0657960074 3.8452108 1103.3752
+201895.0657961117 3.8453681 1103.3555
+201896.065796216 3.8452895 1103.3949
+201897.0657963203 3.8453288 1103.3555
+201898.0657964246 3.8452895 1103.3752
+201899.0657965289 3.8454075 1103.3949
+201900.0657966333 3.8453288 1103.3555
+201901.0657967376 3.8454075 1103.4344
+201902.0657968419 3.8453681 1103.4542
+201903.0657969462 3.8453681 1103.3949
+201904.0657970505 3.8454075 1103.3949
+201905.0657971548 3.8454075 1103.3555
+201906.0657972591 3.8453681 1103.3357
+201907.0657973634 3.8454075 1103.2765
+201908.0657974677 3.8454075 1103.3752
+201909.065797572 3.8454864 1103.3752
+201910.0657976763 3.8454468 1103.2963
+201911.0657977806 3.8455257 1103.3555
+201912.0657978849 3.8455651 1103.3555
+201913.0657979893 3.8455257 1103.2963
+201914.0657980936 3.8454864 1103.3949
+201915.0657981979 3.8454468 1103.4344
+201916.0657983022 3.8456044 1103.2765
+201917.0657984065 3.8455257 1103.3555
+201918.0657985108 3.8456438 1103.2765
+201919.0657986151 3.8455257 1103.3357
+201920.0657987194 3.8456438 1103.2963
+201921.0657988237 3.8456044 1103.3555
+201922.065798928 3.8455651 1103.4344
+201923.0657990323 3.8456044 1103.4344
+201924.0657991366 3.8456438 1103.3555
+201925.065799241 3.8456438 1103.3555
+201926.0657993453 3.8456044 1103.4147
+201927.0657994496 3.8456831 1103.3752
+201928.0657995539 3.8457224 1103.2963
+201929.0657996582 3.8456438 1103.316
+201930.0657997625 3.8458407 1103.2963
+201931.0657998668 3.8457618 1103.3357
+201932.0657999711 3.8457618 1103.3949
+201933.0658000754 3.8458014 1103.3357
+201934.0658001797 3.8458407 1103.3357
+201935.065800284 3.8456438 1103.316
+201936.0658003883 3.84588 1103.316
+201937.0658004927 3.84588 1103.3949
+201938.065800597 3.8458407 1103.3357
+201939.0658007013 3.84588 1103.3752
+201940.0658008056 3.8458407 1103.4147
+201941.0658009099 3.84588 1103.4147
+201942.0658010142 3.84588 1103.2963
+201943.0658011185 3.84588 1103.316
+201944.0658012228 3.8459587 1103.3555
+201945.0658013271 3.8459194 1103.3949
+201946.0658014314 3.8459587 1103.316
+201947.0658015357 3.8459587 1103.316
+201948.06580164 3.8459587 1103.3357
+201949.0658017443 3.8460374 1103.2963
+201950.0658018487 3.8460767 1103.316
+201951.065801953 3.8460374 1103.316
+201952.0658020573 3.8460767 1103.2963
+201953.0658021616 3.8461163 1103.3752
+201954.0658022659 3.846195 1103.2765
+201955.0658023702 3.8461163 1103.316
+201956.0658024745 3.8460767 1103.316
+201957.0658025788 3.846195 1103.3949
+201958.0658026831 3.8461163 1103.316
+201959.0658027874 3.8461556 1103.2963
+201960.0658028917 3.846195 1103.3357
+201961.065802996 3.8462737 1103.3752
+201962.0658031004 3.8461556 1103.3949
+201963.0658032047 3.8461556 1103.3357
+201964.065803309 3.846195 1103.3555
+201965.0658034133 3.8462343 1103.316
+201966.0658035176 3.846313 1103.316
+201967.0658036219 3.8462737 1103.3949
+201968.0658037262 3.8462343 1103.3357
+201969.0658038305 3.846313 1103.3357
+201970.0658039348 3.8462737 1103.3752
+201971.0658040391 3.8463917 1103.3752
+201972.0658041434 3.8463917 1103.3555
+201973.0658042477 3.846313 1103.316
+201974.0658043521 3.8463917 1103.3752
+201975.0658044564 3.8463523 1103.3357
+201976.0658045607 3.8462737 1103.3949
+201977.065804665 3.8463523 1103.316
+201978.0658047693 3.8463917 1103.3949
+201979.0658048736 3.846313 1103.3949
+201980.0658049779 3.8464313 1103.3555
+201981.0658050822 3.846313 1103.3357
+201982.0658051865 3.8464313 1103.2963
+201983.0658052908 3.8464706 1103.2765
+201984.0658053951 3.846628 1103.3949
+201985.0658054994 3.846628 1103.4147
+201986.0658056038 3.8467069 1103.2567
+201987.0658057081 3.8465099 1103.316
+201988.0658058124 3.8465099 1103.316
+201989.0658059167 3.8465886 1103.2765
+201990.065806021 3.8465493 1103.3555
+201991.0658061253 3.846628 1103.3357
+201992.0658062296 3.846628 1103.4147
+201993.0658063339 3.8467069 1103.3752
+201994.0658064382 3.8466673 1103.3357
+201995.0658065425 3.8467069 1103.3555
+201996.0658066468 3.8466673 1103.3555
+201997.0658067511 3.8467462 1103.316
+201998.0658068554 3.8467462 1103.316
+201999.0658069598 3.8467462 1103.4344
+202000.0658070641 3.8467462 1103.2963
+202001.0658071684 3.8467069 1103.2765
+202002.0658072727 3.8467855 1103.3555
+202003.065807377 3.8468249 1103.3357
+202004.0658074813 3.8467462 1103.2567
+202005.0658075856 3.8468249 1103.3752
+202006.0658076899 3.8468642 1103.3752
+202007.0658077942 3.8467069 1103.3949
+202008.0658078985 3.8467462 1103.3555
+202009.0658080028 3.8469036 1103.3357
+202010.0658081071 3.8469429 1103.3555
+202011.0658082115 3.8469429 1103.316
+202012.0658083158 3.8469036 1103.3357
+202013.0658084201 3.8469822 1103.3555
+202014.0658085244 3.8469429 1103.3555
+202015.0658086287 3.8470218 1103.4147
+202016.065808733 3.8469036 1103.3555
+202017.0658088373 3.8469429 1103.3949
+202018.0658089416 3.8469822 1103.3357
+202019.0658090459 3.8470218 1103.4344
+202020.0658091502 3.8469822 1103.3555
+202021.0658092545 3.8470612 1103.3752
+202022.0658093588 3.8469822 1103.4147
+202023.0658094632 3.8470612 1103.3949
+202024.0658095675 3.8471398 1103.2765
+202025.0658096718 3.8471005 1103.2765
+202026.0658097761 3.8470612 1103.3752
+202027.0658098804 3.8471005 1103.2567
+202028.0658099847 3.8471792 1103.4542
+202029.065810089 3.8471005 1103.3555
+202030.0658101933 3.8471792 1103.3357
+202031.0658102976 3.8471398 1103.3357
+202032.0658104019 3.8471005 1103.2963
+202033.0658105062 3.8472579 1103.2765
+202034.0658106105 3.8472579 1103.2963
+202035.0658107148 3.8472185 1103.3752
+202036.0658108192 3.8472579 1103.4147
+202037.0658109235 3.8473368 1103.3949
+202038.0658110278 3.8473761 1103.2765
+202039.0658111321 3.8472972 1103.2963
+202040.0658112364 3.8472972 1103.3555
+202041.0658113407 3.8472185 1103.2765
+202042.065811445 3.8473368 1103.3949
+202043.0658115493 3.8474154 1103.3357
+202044.0658116536 3.8474154 1103.2765
+202045.0658117579 3.8473761 1103.4542
+202046.0658118622 3.8472972 1103.4147
+202047.0658119665 3.8474941 1103.316
+202048.0658120709 3.8474154 1103.3949
+202049.0658121752 3.8474548 1103.316
+202050.0658122795 3.8474548 1103.316
+202051.0658123838 3.8474941 1103.4147
+202052.0658124881 3.8475335 1103.3949
+202053.0658125924 3.8474154 1103.3949
+202054.0658126967 3.8475728 1103.2765
+202055.065812801 3.8474941 1103.3555
+202056.0658129053 3.8475335 1103.3949
+202057.0658130096 3.8474941 1103.3357
+202058.0658131139 3.8475335 1103.3555
+202059.0658132182 3.8474941 1103.4344
+202060.0658133226 3.8476121 1103.2172
+202061.0658134269 3.8476121 1103.316
+202062.0658135312 3.8475728 1103.4344
+202063.0658136355 3.8476517 1103.2765
+202064.0658137398 3.8476911 1103.4344
+202065.0658138441 3.8475728 1103.3752
+202066.0658139484 3.8477304 1103.316
+202067.0658140527 3.8476517 1103.3555
+202068.065814157 3.8477697 1103.3752
+202069.0658142613 3.8477304 1103.3357
+202070.0658143656 3.8476911 1103.3752
+202071.0658144699 3.8477697 1103.316
+202072.0658145742 3.8478091 1103.3752
+202073.0658146786 3.8477304 1103.3752
+202074.0658147829 3.8478091 1103.3949
+202075.0658148872 3.8476911 1103.3555
+202076.0658149915 3.8478484 1103.3555
+202077.0658150958 3.8478878 1103.2963
+202078.0658152001 3.8478484 1103.3752
+202079.0658153044 3.8478484 1103.2765
+202080.0658154087 3.8478878 1103.2765
+202081.065815513 3.8479271 1103.3357
+202082.0658156173 3.8478878 1103.3555
+202083.0658157216 3.8479271 1103.3555
+202084.0658158259 3.8479667 1103.3357
+202085.0658159303 3.8479271 1103.316
+202086.0658160346 3.8478484 1103.3752
+202087.0658161389 3.8479667 1103.3357
+202088.0658162432 3.848006 1103.3555
+202089.0658163475 3.8480453 1103.3949
+202090.0658164518 3.848006 1103.3555
+202091.0658165561 3.8480453 1103.2567
+202092.0658166604 3.848124 1103.3357
+202093.0658167647 3.848006 1103.3752
+202094.065816869 3.8479667 1103.3555
+202095.0658169733 3.848124 1103.316
+202096.0658170776 3.8480847 1103.2765
+202097.065817182 3.8480453 1103.3357
+202098.0658172863 3.848124 1103.3357
+202099.0658173906 3.848124 1103.3752
+202100.0658174949 3.8480847 1103.316
+202101.0658175992 3.8481634 1103.316
+202102.0658177035 3.8481634 1103.2963
+202103.0658178078 3.8481634 1103.3357
+202104.0658179121 3.8482027 1103.3949
+202105.0658180164 3.848124 1103.3357
+202106.0658181207 3.8482027 1103.3949
+202107.065818225 3.8483603 1103.3752
+202108.0658183293 3.848242 1103.2963
+202109.0658184337 3.848321 1103.4344
+202110.065818538 3.8482027 1103.4147
+202111.0658186423 3.848242 1103.3357
+202112.0658187466 3.8482816 1103.3949
+202113.0658188509 3.8482027 1103.3949
+202114.0658189552 3.848321 1103.3357
+202115.0658190595 3.8483603 1103.316
+202116.0658191638 3.8483996 1103.4147
+202117.0658192681 3.8482816 1103.3357
+202118.0658193724 3.8483996 1103.3555
+202119.0658194767 3.8483603 1103.4147
+202120.065819581 3.8483996 1103.2963
+202121.0658196853 3.8483996 1103.4344
+202122.0658197897 3.8485572 1103.3949
+202123.065819894 3.8484783 1103.3357
+202124.0658199983 3.848439 1103.2963
+202125.0658201026 3.848439 1103.3752
+202126.0658202069 3.848439 1103.3949
+202127.0658203112 3.8485966 1103.3357
+202128.0658204155 3.8485572 1103.4147
+202129.0658205198 3.8484783 1103.4147
+202130.0658206241 3.8485572 1103.2567
+202131.0658207284 3.8486359 1103.4147
+202132.0658208327 3.8485966 1103.3752
+202133.065820937 3.8486359 1103.316
+202134.0658210414 3.8486359 1103.2963
+202135.0658211457 3.8486359 1103.3555
+202136.06582125 3.8487146 1103.3357
+202137.0658213543 3.8486753 1103.316
+202138.0658214586 3.8487146 1103.3752
+202139.0658215629 3.8486359 1103.4147
+202140.0658216672 3.8487146 1103.2963
+202141.0658217715 3.8487539 1103.3555
+202142.0658218758 3.8487146 1103.2567
+202143.0658219801 3.8487933 1103.3949
+202144.0658220844 3.8487146 1103.3357
+202145.0658221887 3.8487539 1103.3555
+202146.0658222931 3.8488326 1103.316
+202147.0658223974 3.8488326 1103.2963
+202148.0658225017 3.8488722 1103.3357
+202149.065822606 3.8488326 1103.3555
+202150.0658227103 3.8488326 1103.4147
+202151.0658228146 3.8488326 1103.3555
+202152.0658229189 3.8489509 1103.5134
+202153.0658230232 3.8489509 1103.3949
+202154.0658231275 3.8488722 1103.3949
+202155.0658232318 3.8488722 1103.4147
+202156.0658233361 3.8489115 1103.3949
+202157.0658234404 3.8489509 1103.3555
+202158.0658235447 3.8490295 1103.3752
+202159.0658236491 3.8489115 1103.3752
+202160.0658237534 3.8489902 1103.2765
+202161.0658238577 3.8489902 1103.3949
+202162.065823962 3.8489115 1103.3949
+202163.0658240663 3.8490295 1103.3357
+202164.0658241706 3.8491082 1103.2963
+202165.0658242749 3.8490295 1103.2963
+202166.0658243792 3.8491082 1103.3949
+202167.0658244835 3.8491082 1103.3555
+202168.0658245878 3.8491871 1103.474
+202169.0658246921 3.8490689 1103.3357
+202170.0658247964 3.8491476 1103.3357
+202171.0658249008 3.8491871 1103.3752
+202172.0658250051 3.8491476 1103.3357
+202173.0658251094 3.8491082 1103.3752
+202174.0658252137 3.8491871 1103.4542
+202175.065825318 3.8492658 1103.3357
+202176.0658254223 3.8491871 1103.3357
+202177.0658255266 3.8492265 1103.3555
+202178.0658256309 3.8493052 1103.2765
+202179.0658257352 3.8492658 1103.3949
+202180.0658258395 3.8493838 1103.3752
+202181.0658259438 3.8493052 1103.3752
+202182.0658260481 3.8493052 1103.3752
+202183.0658261525 3.8493838 1103.3555
+202184.0658262568 3.8493445 1103.4344
+202185.0658263611 3.8493052 1103.3752
+202186.0658264654 3.8493838 1103.3555
+202187.0658265697 3.8495021 1103.3555
+202188.065826674 3.8493838 1103.2567
+202189.0658267783 3.8493052 1103.316
+202190.0658268826 3.8494232 1103.3752
+202191.0658269869 3.8493838 1103.3949
+202192.0658270912 3.8494232 1103.4147
+202193.0658271955 3.8495414 1103.3949
+202194.0658272998 3.8494232 1103.3752
+202195.0658274041 3.8495021 1103.2963
+202196.0658275085 3.8495414 1103.3949
+202197.0658276128 3.8495021 1103.4147
+202198.0658277171 3.8496201 1103.2765
+202199.0658278214 3.8496201 1103.2765
+202200.0658279257 3.8496594 1103.3357
+202201.06582803 3.8496594 1103.2765
+202202.0658281343 3.8496988 1103.3752
+202203.0658282386 3.8496988 1103.2765
+202204.0658283429 3.8496988 1103.3357
+202205.0658284472 3.8496594 1103.3752
+202206.0658285515 3.8497381 1103.2963
+202207.0658286558 3.8496201 1103.3357
+202208.0658287602 3.8495808 1103.3752
+202209.0658288645 3.8496988 1103.316
+202210.0658289688 3.8496594 1103.316
+202211.0658290731 3.8497381 1103.316
+202212.0658291774 3.8497381 1103.2963
+202213.0658292817 3.8496988 1103.3555
+202214.065829386 3.8497775 1103.3752
+202215.0658294903 3.8497775 1103.4147
+202216.0658295946 3.8496988 1103.3357
+202217.0658296989 3.8498564 1103.4147
+202218.0658298032 3.8498564 1103.316
+202219.0658299075 3.8498957 1103.3949
+202220.0658300119 3.8498564 1103.2963
+202221.0658301162 3.8498564 1103.3949
+202222.0658302205 3.8499351 1103.2963
+202223.0658303248 3.8499351 1103.3555
+202224.0658304291 3.8498957 1103.4147
+202225.0658305334 3.8499351 1103.3949
+202226.0658306377 3.8499351 1103.3357
+202227.065830742 3.8500137 1103.3357
+202228.0658308463 3.8500137 1103.3752
+202229.0658309506 3.8500924 1103.4147
+202230.0658310549 3.8500531 1103.316
+202231.0658311592 3.8500137 1103.3949
+202232.0658312636 3.8500924 1103.3752
+202233.0658313679 3.8499744 1103.2172
+202234.0658314722 3.850132 1103.3555
+202235.0658315765 3.8499744 1103.316
+202236.0658316808 3.8500531 1103.3357
+202237.0658317851 3.850132 1103.3949
+202238.0658318894 3.8500924 1103.4147
+202239.0658319937 3.8500924 1103.3949
+202240.065832098 3.850132 1103.3752
+202241.0658322023 3.850132 1103.3752
+202242.0658323066 3.8501713 1103.316
+202243.0658324109 3.8500924 1103.4147
+202244.0658325152 3.8502107 1103.3752
+202245.0658326196 3.8503287 1103.3555
+202246.0658327239 3.8502893 1103.3752
+202247.0658328282 3.8502107 1103.3949
+202248.0658329325 3.8502107 1103.3357
+202249.0658330368 3.8502107 1103.316
+202250.0658331411 3.85025 1103.2567
+202251.0658332454 3.8503287 1103.3357
+202252.0658333497 3.850368 1103.3949
+202253.065833454 3.850368 1103.2765
+202254.0658335583 3.850368 1103.316
+202255.0658336626 3.8504076 1103.3357
+202256.0658337669 3.8504469 1103.4147
+202257.0658338713 3.8504469 1103.4542
+202258.0658339756 3.850368 1103.3555
+202259.0658340799 3.8504076 1103.3555
+202260.0658341842 3.8504076 1103.4344
+202261.0658342885 3.8504863 1103.2765
+202262.0658343928 3.850565 1103.4147
+202263.0658344971 3.8504863 1103.3357
+202264.0658346014 3.8504076 1103.3752
+202265.0658347057 3.850565 1103.2963
+202266.06583481 3.8505256 1103.316
+202267.0658349143 3.8504076 1103.3949
+202268.0658350186 3.8506043 1103.3555
+202269.065835123 3.850565 1103.2765
+202270.0658352273 3.8506436 1103.316
+202271.0658353316 3.8506436 1103.4147
+202272.0658354359 3.850565 1103.3555
+202273.0658355402 3.8506043 1103.2567
+202274.0658356445 3.8506043 1103.3752
+202275.0658357488 3.8507619 1103.3555
+202276.0658358531 3.850683 1103.3555
+202277.0658359574 3.8506043 1103.3357
+202278.0658360617 3.8507226 1103.3357
+202279.065836166 3.8508012 1103.3752
+202280.0658362703 3.8507226 1103.3555
+202281.0658363746 3.8507619 1103.3752
+202282.065836479 3.8507619 1103.3357
+202283.0658365833 3.8508406 1103.3752
+202284.0658366876 3.8507226 1103.3752
+202285.0658367919 3.8508012 1103.3949
+202286.0658368962 3.8508012 1103.2369
+202287.0658370005 3.8508406 1103.4344
+202288.0658371048 3.8508799 1103.2765
+202289.0658372091 3.8509586 1103.3357
+202290.0658373134 3.8508799 1103.3357
+202291.0658374177 3.8509192 1103.3752
+202292.065837522 3.8509192 1103.4147
+202293.0658376263 3.8509586 1103.4147
+202294.0658377307 3.8508799 1103.3555
+202295.065837835 3.8510375 1103.3752
+202296.0658379393 3.8509586 1103.3752
+202297.0658380436 3.8509979 1103.2963
+202298.0658381479 3.8509586 1103.2963
+202299.0658382522 3.8510375 1103.4147
+202300.0658383565 3.8510375 1103.474
+202301.0658384608 3.8510375 1103.3555
+202302.0658385651 3.8510375 1103.4147
+202303.0658386694 3.8510375 1103.3752
+202304.0658387737 3.8510768 1103.4147
+202305.065838878 3.8510768 1103.3357
+202306.0658389824 3.8511162 1103.2963
+202307.0658390867 3.8511555 1103.2172
+202308.065839191 3.8512342 1103.3357
+202309.0658392953 3.8511555 1103.3555
+202310.0658393996 3.8511949 1103.3555
+202311.0658395039 3.8511162 1103.316
+202312.0658396082 3.8512735 1103.4344
+202313.0658397125 3.8513525 1103.3752
+202314.0658398168 3.8511949 1103.3949
+202315.0658399211 3.8512342 1103.3949
+202316.0658400254 3.8512735 1103.3357
+202317.0658401297 3.8512735 1103.3752
+202318.065840234 3.8513129 1103.2963
+202319.0658403384 3.8512342 1103.3752
+202320.0658404427 3.8513525 1103.4147
+202321.065840547 3.8512342 1103.3357
+202322.0658406513 3.8513918 1103.3555
+202323.0658407556 3.8514705 1103.316
+202324.0658408599 3.8513525 1103.4542
+202325.0658409642 3.8513129 1103.3357
+202326.0658410685 3.8513525 1103.4147
+202327.0658411728 3.8514311 1103.3949
+202328.0658412771 3.8514311 1103.316
+202329.0658413814 3.8515098 1103.3555
+202330.0658414857 3.8515491 1103.4147
+202331.0658415901 3.8514705 1103.316
+202332.0658416944 3.8513918 1103.3357
+202333.0658417987 3.8513918 1103.4147
+202334.065841903 3.8515491 1103.2567
+202335.0658420073 3.8514311 1103.316
+202336.0658421116 3.8515491 1103.3949
+202337.0658422159 3.8515885 1103.316
+202338.0658423202 3.8515098 1103.3949
+202339.0658424245 3.8515491 1103.3555
+202340.0658425288 3.8515491 1103.3555
+202341.0658426331 3.8515491 1103.4344
+202342.0658427374 3.8515885 1103.3555
+202343.0658428418 3.8515885 1103.4542
+202344.0658429461 3.8516674 1103.2765
+202345.0658430504 3.8515885 1103.2567
+202346.0658431547 3.8517067 1103.3752
+202347.065843259 3.8517067 1103.316
+202348.0658433633 3.8517067 1103.3357
+202349.0658434676 3.8517067 1103.3752
+202350.0658435719 3.8517854 1103.3752
+202351.0658436762 3.8517067 1103.3555
+202352.0658437805 3.8517854 1103.3555
+202353.0658438848 3.8517067 1103.3752
+202354.0658439891 3.8517854 1103.4344
+202355.0658440934 3.8518248 1103.2567
+202356.0658441978 3.8518248 1103.4147
+202357.0658443021 3.8518248 1103.3555
+202358.0658444064 3.8519034 1103.3555
+202359.0658445107 3.8518641 1103.2963
+202360.065844615 3.8518248 1103.3949
+202361.0658447193 3.8519034 1103.4147
+202362.0658448236 3.8519428 1103.3752
+202363.0658449279 3.8518641 1103.3752
+202364.0658450322 3.8519824 1103.3555
+202365.0658451365 3.8520217 1103.4147
+202366.0658452408 3.8519428 1103.316
+202367.0658453451 3.8520217 1103.316
+202368.0658454495 3.852061 1103.3752
+202369.0658455538 3.8521004 1103.3752
+202370.0658456581 3.8521397 1103.3357
+202371.0658457624 3.8519034 1103.2963
+202372.0658458667 3.8521397 1103.2963
+202373.065845971 3.8521004 1103.3357
+202374.0658460753 3.852061 1103.3555
+202375.0658461796 3.8521004 1103.3357
+202376.0658462839 3.8521397 1103.474
+202377.0658463882 3.8521004 1103.2765
+202378.0658464925 3.8521397 1103.3555
+202379.0658465968 3.8521397 1103.316
+202380.0658467012 3.8521004 1103.3555
+202381.0658468055 3.8521004 1103.3357
+202382.0658469098 3.8522184 1103.3949
+202383.0658470141 3.8521791 1103.3949
+202384.0658471184 3.852258 1103.3555
+202385.0658472227 3.8521791 1103.316
+202386.065847327 3.8523366 1103.2765
+202387.0658474313 3.8522973 1103.316
+202388.0658475356 3.8522184 1103.2963
+202389.0658476399 3.852258 1103.316
+202390.0658477442 3.8523366 1103.3949
+202391.0658478485 3.8523366 1103.2963
+202392.0658479529 3.8522973 1103.3357
+202393.0658480572 3.8523366 1103.4147
+202394.0658481615 3.8523366 1103.3555
+202395.0658482658 3.852258 1103.3949
+202396.0658483701 3.852376 1103.3752
+202397.0658484744 3.852376 1103.2765
+202398.0658485787 3.852494 1103.2765
+202399.065848683 3.8524547 1103.2963
+202400.0658487873 3.8523366 1103.4344
+202401.0658488916 3.8524547 1103.316
+202402.0658489959 3.8525333 1103.3357
+202403.0658491002 3.8524153 1103.3752
+202404.0658492045 3.852494 1103.2369
+202405.0658493089 3.8525333 1103.3357
+202406.0658494132 3.8525729 1103.2963
+202407.0658495175 3.8524547 1103.3357
+202408.0658496218 3.8526516 1103.3555
+202409.0658497261 3.8526123 1103.4147
+202410.0658498304 3.8526123 1103.3357
+202411.0658499347 3.8526123 1103.2963
+202412.065850039 3.8526516 1103.2765
+202413.0658501433 3.8526516 1103.3752
+202414.0658502476 3.8526516 1103.316
+202415.0658503519 3.8527303 1103.3949
+202416.0658504562 3.8526909 1103.3752
+202417.0658505606 3.8527696 1103.3752
+202418.0658506649 3.8527303 1103.3357
+202419.0658507692 3.8527303 1103.2963
+202420.0658508735 3.852809 1103.2963
+202421.0658509778 3.8526516 1103.3949
+202422.0658510821 3.8527696 1103.3357
+202423.0658511864 3.8528483 1103.4147
+202424.0658512907 3.8528879 1103.3357
+202425.065851395 3.8528483 1103.3752
+202426.0658514993 3.8527696 1103.4542
+202427.0658516036 3.8528879 1103.3357
+202428.0658517079 3.852809 1103.3555
+202429.0658518123 3.852809 1103.2765
+202430.0658519166 3.8528879 1103.2963
+202431.0658520209 3.8528879 1103.3555
+202432.0658521252 3.8528483 1103.3752
+202433.0658522295 3.8530059 1103.316
+202434.0658523338 3.8530059 1103.3949
+202435.0658524381 3.8530059 1103.2963
+202436.0658525424 3.8530846 1103.3752
+202437.0658526467 3.8529665 1103.3752
+202438.065852751 3.8530059 1103.2963
+202439.0658528553 3.8529272 1103.4147
+202440.0658529596 3.8530846 1103.3357
+202441.0658530639 3.8531239 1103.316
+202442.0658531683 3.8530846 1103.4344
+202443.0658532726 3.8529665 1103.3752
+202444.0658533769 3.8531239 1103.4147
+202445.0658534812 3.8530846 1103.3752
+202446.0658535855 3.8531632 1103.4344
+202447.0658536898 3.8532028 1103.3357
+202448.0658537941 3.8530846 1103.2369
+202449.0658538984 3.8531239 1103.2963
+202450.0658540027 3.8531632 1103.2963
+202451.065854107 3.8532422 1103.3752
+202452.0658542113 3.8531239 1103.3752
+202453.0658543156 3.8532422 1103.3357
+202454.06585442 3.8532815 1103.3752
+202455.0658545243 3.8533602 1103.3752
+202456.0658546286 3.8532422 1103.3752
+202457.0658547329 3.8533995 1103.316
+202458.0658548372 3.8532422 1103.3949
+202459.0658549415 3.8532028 1103.316
+202460.0658550458 3.8533602 1103.4147
+202461.0658551501 3.8533208 1103.316
+202462.0658552544 3.8533995 1103.3555
+202463.0658553587 3.8533602 1103.3357
+202464.065855463 3.8534782 1103.316
+202465.0658555673 3.8534782 1103.4344
+202466.0658556717 3.8533602 1103.316
+202467.065855776 3.8534389 1103.4542
+202468.0658558803 3.8535178 1103.3949
+202469.0658559846 3.8534782 1103.2765
+202470.0658560889 3.8534782 1103.316
+202471.0658561932 3.8534389 1103.316
+202472.0658562975 3.8534782 1103.3752
+202473.0658564018 3.8535571 1103.3357
+202474.0658565061 3.8536358 1103.3555
+202475.0658566104 3.8535571 1103.3555
+202476.0658567147 3.8535964 1103.3752
+202477.065856819 3.8535571 1103.3357
+202478.0658569233 3.8535178 1103.4147
+202479.0658570277 3.8536751 1103.2963
+202480.065857132 3.8535178 1103.4147
+202481.0658572363 3.8535964 1103.316
+202482.0658573406 3.8536358 1103.316
+202483.0658574449 3.8536751 1103.3555
+202484.0658575492 3.8536751 1103.4147
+202485.0658576535 3.8537538 1103.3555
+202486.0658577578 3.8537145 1103.3949
+202487.0658578621 3.8535964 1103.316
+202488.0658579664 3.8538327 1103.4147
+202489.0658580707 3.8537931 1103.4542
+202490.065858175 3.8537538 1103.3752
+202491.0658582794 3.8537538 1103.4344
+202492.0658583837 3.8537931 1103.3555
+202493.065858488 3.8539114 1103.4344
+202494.0658585923 3.8537931 1103.3752
+202495.0658586966 3.8538721 1103.316
+202496.0658588009 3.8539114 1103.3555
+202497.0658589052 3.8539901 1103.3357
+202498.0658590095 3.8539114 1103.3555
+202499.0658591138 3.8539507 1103.2963
+202500.0658592181 3.8539114 1103.3949
+202501.0658593224 3.8538721 1103.3752
+202502.0658594267 3.8539114 1103.3949
+202503.0658595311 3.8538721 1103.3555
+202504.0658596354 3.8539507 1103.316
+202505.0658597397 3.8539507 1103.3555
+202506.065859844 3.8540294 1103.2765
+202507.0658599483 3.8539901 1103.3357
+202508.0658600526 3.8540688 1103.3555
+202509.0658601569 3.8540294 1103.2963
+202510.0658602612 3.8540688 1103.2963
+202511.0658603655 3.854187 1103.3752
+202512.0658604698 3.854187 1103.3555
+202513.0658605741 3.8541083 1103.3357
+202514.0658606784 3.8541083 1103.2963
+202515.0658607828 3.854187 1103.4542
+202516.0658608871 3.8540688 1103.2369
+202517.0658609914 3.8542264 1103.316
+202518.0658610957 3.8541083 1103.2963
+202519.0658612 3.8541477 1103.3555
+202520.0658613043 3.854187 1103.316
+202521.0658614086 3.854187 1103.2963
+202522.0658615129 3.8542264 1103.3357
+202523.0658616172 3.8542657 1103.3357
+202524.0658617215 3.854187 1103.3555
+202525.0658618258 3.8543837 1103.3555
+202526.0658619301 3.8542657 1103.3555
+202527.0658620344 3.8542264 1103.1975
+202528.0658621388 3.8542657 1103.3357
+202529.0658622431 3.8543837 1103.316
+202530.0658623474 3.8543837 1103.3949
+202531.0658624517 3.8543444 1103.2963
+202532.065862556 3.854305 1103.3357
+202533.0658626603 3.8543444 1103.4147
+202534.0658627646 3.8543837 1103.3357
+202535.0658628689 3.8544233 1103.3357
+202536.0658629732 3.8543837 1103.3949
+202537.0658630775 3.8544626 1103.3555
+202538.0658631818 3.8544626 1103.3752
+202539.0658632861 3.8544233 1103.3555
+202540.0658633905 3.8545413 1103.3357
+202541.0658634948 3.854502 1103.3752
+202542.0658635991 3.8544626 1103.3357
+202543.0658637034 3.8545413 1103.5134
+202544.0658638077 3.854502 1103.4147
+202545.065863912 3.8545806 1103.3949
+202546.0658640163 3.8544626 1103.3949
+202547.0658641206 3.8545806 1103.316
+202548.0658642249 3.8545806 1103.316
+202549.0658643292 3.85462 1103.2369
+202550.0658644335 3.85462 1103.4147
+202551.0658645378 3.85462 1103.3949
+202552.0658646422 3.85462 1103.3357
+202553.0658647465 3.85462 1103.316
+202554.0658648508 3.85462 1103.4344
+202555.0658649551 3.85462 1103.3357
+202556.0658650594 3.8547382 1103.316
+202557.0658651637 3.8546987 1103.3949
+202558.065865268 3.8547776 1103.316
+202559.0658653723 3.8547382 1103.2765
+202560.0658654766 3.8547776 1103.3555
+202561.0658655809 3.8548563 1103.2963
+202562.0658656852 3.8548563 1103.3555
+202563.0658657895 3.8548563 1103.4147
+202564.0658658938 3.8548169 1103.3752
+202565.0658659982 3.8547776 1103.3752
+202566.0658661025 3.8548563 1103.3555
+202567.0658662068 3.8548169 1103.3752
+202568.0658663111 3.8548956 1103.3752
+202569.0658664154 3.8548169 1103.3357
+202570.0658665197 3.8550136 1103.316
+202571.065866624 3.8548956 1103.3949
+202572.0658667283 3.8548563 1103.3752
+202573.0658668326 3.8549743 1103.4147
+202574.0658669369 3.8550136 1103.316
+202575.0658670412 3.8549743 1103.3555
+202576.0658671455 3.8550532 1103.2963
+202577.0658672499 3.8551319 1103.2963
+202578.0658673542 3.8550136 1103.3357
+202579.0658674585 3.8550136 1103.2765
+202580.0658675628 3.8550532 1103.316
+202581.0658676671 3.8550532 1103.3357
+202582.0658677714 3.8550925 1103.3949
+202583.0658678757 3.8552105 1103.3555
+202584.06586798 3.8550925 1103.2765
+202585.0658680843 3.8551319 1103.3555
+202586.0658681886 3.8552105 1103.3555
+202587.0658682929 3.8551712 1103.3357
+202588.0658683972 3.8550925 1103.3752
+202589.0658685016 3.8552105 1103.3357
+202590.0658686059 3.8551712 1103.3555
+202591.0658687102 3.8552105 1103.2567
+202592.0658688145 3.8552892 1103.3555
+202593.0658689188 3.8552892 1103.4542
+202594.0658690231 3.8552499 1103.3949
+202595.0658691274 3.8551712 1103.3949
+202596.0658692317 3.8552892 1103.2963
+202597.065869336 3.8553286 1103.1975
+202598.0658694403 3.8552892 1103.2963
+202599.0658695446 3.8553681 1103.3752
+202600.0658696489 3.8555255 1103.2963
+202601.0658697532 3.8553681 1103.3949
+202602.0658698576 3.8554468 1103.2963
+202603.0658699619 3.8553681 1103.3752
+202604.0658700662 3.8553681 1103.2963
+202605.0658701705 3.8554075 1103.3949
+202606.0658702748 3.8555648 1103.3949
+202607.0658703791 3.8553681 1103.3357
+202608.0658704834 3.8555255 1103.316
+202609.0658705877 3.8555255 1103.3555
+202610.065870692 3.8554468 1103.3357
+202611.0658707963 3.8554862 1103.2963
+202612.0658709006 3.8554862 1103.3555
+202613.0658710049 3.8555255 1103.4147
+202614.0658711093 3.8555648 1103.3555
+202615.0658712136 3.8556042 1103.4147
+202616.0658713179 3.8554862 1103.3357
+202617.0658714222 3.8555648 1103.3752
+202618.0658715265 3.8556042 1103.2963
+202619.0658716308 3.8556435 1103.3555
+202620.0658717351 3.8556435 1103.3357
+202621.0658718394 3.8556831 1103.3555
+202622.0658719437 3.8555648 1103.4147
+202623.065872048 3.8556435 1103.316
+202624.0658721523 3.8557618 1103.3752
+202625.0658722566 3.8557224 1103.316
+202626.065872361 3.8556042 1103.3752
+202627.0658724653 3.8556831 1103.3555
+202628.0658725696 3.8558011 1103.1975
+202629.0658726739 3.8557618 1103.3357
+202630.0658727782 3.8556831 1103.3949
+202631.0658728825 3.8558798 1103.316
+202632.0658729868 3.8557618 1103.3357
+202633.0658730911 3.8559191 1103.3357
+202634.0658731954 3.8559191 1103.2765
+202635.0658732997 3.8558404 1103.3555
+202636.065873404 3.8558011 1103.3752
+202637.0658735083 3.8558404 1103.2765
+202638.0658736127 3.8558798 1103.3357
+202639.065873717 3.8558404 1103.4344
+202640.0658738213 3.8558798 1103.2963
+202641.0658739256 3.8559587 1103.4147
+202642.0658740299 3.8558404 1103.316
+202643.0658741342 3.8559191 1103.2567
+202644.0658742385 3.855998 1103.3357
+202645.0658743428 3.855998 1103.2369
+202646.0658744471 3.8561161 1103.4147
+202647.0658745514 3.855998 1103.3555
+202648.0658746557 3.8560767 1103.4147
+202649.06587476 3.8560374 1103.3357
+202650.0658748643 3.8560374 1103.3752
+202651.0658749687 3.8560374 1103.3555
+202652.065875073 3.8560767 1103.3949
+202653.0658751773 3.8561161 1103.3555
+202654.0658752816 3.8561161 1103.3357
+202655.0658753859 3.8561554 1103.2567
+202656.0658754902 3.8560767 1103.3949
+202657.0658755945 3.8562341 1103.3555
+202658.0658756988 3.8561554 1103.2172
+202659.0658758031 3.8561947 1103.3357
+202660.0658759074 3.8562341 1103.3752
+202661.0658760117 3.8561554 1103.3752
+202662.065876116 3.8562737 1103.3752
+202663.0658762204 3.8562341 1103.316
+202664.0658763247 3.8562737 1103.3752
+202665.065876429 3.8562341 1103.2567
+202666.0658765333 3.856313 1103.3357
+202667.0658766376 3.856313 1103.316
+202668.0658767419 3.856313 1103.3752
+202669.0658768462 3.856313 1103.2765
+202670.0658769505 3.8562737 1103.3555
+202671.0658770548 3.8563523 1103.3357
+202672.0658771591 3.8563917 1103.3949
+202673.0658772634 3.8564703 1103.316
+202674.0658773677 3.856431 1103.3752
+202675.0658774721 3.856431 1103.3357
+202676.0658775764 3.8563917 1103.3357
+202677.0658776807 3.856549 1103.3949
+202678.065877785 3.8564703 1103.2765
+202679.0658778893 3.8564703 1103.3357
+202680.0658779936 3.8563917 1103.316
+202681.0658780979 3.8564703 1103.3555
+202682.0658782022 3.8565886 1103.3752
+202683.0658783065 3.856549 1103.3949
+202684.0658784108 3.8565886 1103.3555
+202685.0658785151 3.8566279 1103.3555
+202686.0658786194 3.8565886 1103.316
+202687.0658787237 3.8566673 1103.316
+202688.0658788281 3.856549 1103.3555
+202689.0658789324 3.8566279 1103.3949
+202690.0658790367 3.8566673 1103.3752
+202691.065879141 3.8566279 1103.3752
+202692.0658792453 3.8566279 1103.3555
+202693.0658793496 3.8566673 1103.474
+202694.0658794539 3.8567066 1103.3555
+202695.0658795582 3.8567066 1103.3949
+202696.0658796625 3.856746 1103.2963
+202697.0658797668 3.8567066 1103.3752
+202698.0658798711 3.8567853 1103.4542
+202699.0658799754 3.8568246 1103.3357
+202700.0658800798 3.8567853 1103.3555
+202701.0658801841 3.8567853 1103.3357
+202702.0658802884 3.856864 1103.3555
+202703.0658803927 3.8567853 1103.316
+202704.065880497 3.8569036 1103.2567
+202705.0658806013 3.8568246 1103.3555
+202706.0658807056 3.856864 1103.3949
+202707.0658808099 3.8569429 1103.3949
+202708.0658809142 3.8569429 1103.3949
+202709.0658810185 3.8569036 1103.3752
+202710.0658811228 3.8569429 1103.4344
+202711.0658812271 3.8569429 1103.4147
+202712.0658813315 3.8569822 1103.2765
+202713.0658814358 3.8569822 1103.3949
+202714.0658815401 3.8569429 1103.3357
+202715.0658816444 3.8570216 1103.3949
+202716.0658817487 3.8569822 1103.2765
+202717.065881853 3.8570216 1103.3555
+202718.0658819573 3.8570609 1103.4147
+202719.0658820616 3.8569822 1103.3357
+202720.0658821659 3.8570609 1103.4147
+202721.0658822702 3.8571396 1103.3357
+202722.0658823745 3.8571396 1103.3949
+202723.0658824788 3.8569822 1103.2765
+202724.0658825831 3.8572185 1103.3752
+202725.0658826875 3.8571396 1103.2963
+202726.0658827918 3.8572578 1103.316
+202727.0658828961 3.8572578 1103.3555
+202728.0658830004 3.8572578 1103.316
+202729.0658831047 3.8573365 1103.316
+202730.065883209 3.8571396 1103.3357
+202731.0658833133 3.8572972 1103.3357
+202732.0658834176 3.8573365 1103.3357
+202733.0658835219 3.8572578 1103.3752
+202734.0658836262 3.8571789 1103.3949
+202735.0658837305 3.8573759 1103.316
+202736.0658838348 3.8573759 1103.3949
+202737.0658839392 3.8571789 1103.316
+202738.0658840435 3.8573365 1103.3752
+202739.0658841478 3.8573759 1103.316
+202740.0658842521 3.8573759 1103.3555
+202741.0658843564 3.8573759 1103.2963
+202742.0658844607 3.8574941 1103.3752
+202743.065884565 3.8574545 1103.3357
+202744.0658846693 3.8574152 1103.3949
+202745.0658847736 3.8573365 1103.3555
+202746.0658848779 3.8574152 1103.4147
+202747.0658849822 3.8574152 1103.2963
+202748.0658850865 3.8573759 1103.3555
+202749.0658851909 3.8575335 1103.3949
+202750.0658852952 3.8576121 1103.3555
+202751.0658853995 3.8574941 1103.2567
+202752.0658855038 3.8575335 1103.316
+202753.0658856081 3.8575728 1103.3752
+202754.0658857124 3.8575728 1103.3555
+202755.0658858167 3.8575335 1103.3357
+202756.065885921 3.8575728 1103.3949
+202757.0658860253 3.8576515 1103.3752
+202758.0658861296 3.8576121 1103.3555
+202759.0658862339 3.8578484 1103.4344
+202760.0658863382 3.8576908 1103.2963
+202761.0658864426 3.8577695 1103.3555
+202762.0658865469 3.8577302 1103.3752
+202763.0658866512 3.8576515 1103.4344
+202764.0658867555 3.8576121 1103.3752
+202765.0658868598 3.8577695 1103.3752
+202766.0658869641 3.8577695 1103.4147
+202767.0658870684 3.8578484 1103.3752
+202768.0658871727 3.8577695 1103.3357
+202769.065887277 3.8579271 1103.4147
+202770.0658873813 3.8577695 1103.3357
+202771.0658874856 3.8578484 1103.316
+202772.0658875899 3.8577302 1103.3555
+202773.0658876942 3.8578484 1103.316
+202774.0658877986 3.8578484 1103.2963
+202775.0658879029 3.8578877 1103.3555
+202776.0658880072 3.8578484 1103.3555
+202777.0658881115 3.8578877 1103.4344
+202778.0658882158 3.8579271 1103.2172
+202779.0658883201 3.8579271 1103.3555
+202780.0658884244 3.8580451 1103.3752
+202781.0658885287 3.8579271 1103.4542
+202782.065888633 3.8580058 1103.316
+202783.0658887373 3.8580058 1103.2963
+202784.0658888416 3.8580844 1103.3357
+202785.0658889459 3.8580844 1103.3357
+202786.0658890503 3.8580058 1103.316
+202787.0658891546 3.8581634 1103.3752
+202788.0658892589 3.8581634 1103.4147
+202789.0658893632 3.8580844 1103.3949
+202790.0658894675 3.858124 1103.3752
+202791.0658895718 3.8580844 1103.3752
+202792.0658896761 3.858124 1103.3555
+202793.0658897804 3.8580844 1103.3752
+202794.0658898847 3.8581634 1103.3357
+202795.065889989 3.858124 1103.4344
+202796.0658900933 3.8581634 1103.3555
+202797.0658901976 3.8582027 1103.3357
+202798.065890302 3.858242 1103.2765
+202799.0658904063 3.8583207 1103.4147
+202800.0658905106 3.858124 1103.4344
+202801.0658906149 3.8581634 1103.3357
+202802.0658907192 3.858242 1103.4147
+202803.0658908235 3.858242 1103.3555
+202804.0658909278 3.8583207 1103.3949
+202805.0658910321 3.8583601 1103.3357
+202806.0658911364 3.8583207 1103.316
+202807.0658912407 3.8583207 1103.3555
+202808.065891345 3.8582814 1103.3555
+202809.0658914493 3.858439 1103.3752
+202810.0658915536 3.8583994 1103.4147
+202811.065891658 3.8583601 1103.3949
+202812.0658917623 3.8583994 1103.3555
+202813.0658918666 3.858439 1103.2963
+202814.0658919709 3.858439 1103.3949
+202815.0658920752 3.858439 1103.5332
+202816.0658921795 3.858557 1103.3357
+202817.0658922838 3.858439 1103.3357
+202818.0658923881 3.858557 1103.2765
+202819.0658924924 3.8584783 1103.3752
+202820.0658925967 3.858557 1103.3555
+202821.065892701 3.8586357 1103.4542
+202822.0658928053 3.8585176 1103.316
+202823.0658929097 3.8585963 1103.4542
+202824.065893014 3.858675 1103.3949
+202825.0658931183 3.8586357 1103.3555
+202826.0658932226 3.8585963 1103.2765
+202827.0658933269 3.858675 1103.316
+202828.0658934312 3.858675 1103.3949
+202829.0658935355 3.858675 1103.4344
+202830.0658936398 3.8587539 1103.2963
+202831.0658937441 3.8587539 1103.4147
+202832.0658938484 3.858675 1103.3752
+202833.0658939527 3.8587539 1103.316
+202834.065894057 3.858675 1103.3357
+202835.0658941614 3.8587539 1103.3555
+202836.0658942657 3.8588326 1103.3357
+202837.06589437 3.8588326 1103.2963
+202838.0658944743 3.8587539 1103.3357
+202839.0658945786 3.8587933 1103.3555
+202840.0658946829 3.8588719 1103.3752
+202841.0658947872 3.8588326 1103.3949
+202842.0658948915 3.8588326 1103.2567
+202843.0658949958 3.8588719 1103.3357
+202844.0658951001 3.8589113 1103.3555
+202845.0658952044 3.8588326 1103.3555
+202846.0658953087 3.8588719 1103.3357
+202847.065895413 3.8589506 1103.3752
+202848.0658955174 3.8589113 1103.3357
+202849.0658956217 3.8590293 1103.3752
+202850.065895726 3.85899 1103.3949
+202851.0658958303 3.85899 1103.3357
+202852.0658959346 3.8590689 1103.4344
+202853.0658960389 3.8591082 1103.3357
+202854.0658961432 3.8590293 1103.316
+202855.0658962475 3.8589506 1103.1975
+202856.0658963518 3.8590689 1103.3357
+202857.0658964561 3.8591475 1103.2963
+202858.0658965604 3.8591869 1103.2765
+202859.0658966647 3.8590689 1103.316
+202860.0658967691 3.8591869 1103.3357
+202861.0658968734 3.8591082 1103.3752
+202862.0658969777 3.8591869 1103.3949
+202863.065897082 3.8591082 1103.3357
+202864.0658971863 3.8590689 1103.3357
+202865.0658972906 3.8591869 1103.3949
+202866.0658973949 3.8591475 1103.3555
+202867.0658974992 3.8592656 1103.3949
+202868.0658976035 3.8592262 1103.4147
+202869.0658977078 3.8592262 1103.316
+202870.0658978121 3.8592262 1103.3949
+202871.0658979164 3.8591869 1103.3555
+202872.0658980208 3.8593445 1103.3357
+202873.0658981251 3.8593445 1103.3555
+202874.0658982294 3.8594625 1103.316
+202875.0658983337 3.8593445 1103.3949
+202876.065898438 3.8594232 1103.3752
+202877.0658985423 3.8593838 1103.3357
+202878.0658986466 3.8594232 1103.4344
+202879.0658987509 3.8594625 1103.3357
+202880.0658988552 3.8593838 1103.3752
+202881.0658989595 3.8594232 1103.3357
+202882.0658990638 3.8595805 1103.3752
+202883.0658991681 3.8593049 1103.3357
+202884.0658992724 3.8595018 1103.3555
+202885.0658993768 3.8594625 1103.3357
+202886.0658994811 3.8595412 1103.3357
+202887.0658995854 3.8595018 1103.2963
+202888.0658996897 3.8595412 1103.3357
+202889.065899794 3.8595412 1103.3949
+202890.0658998983 3.8595805 1103.2963
+202891.0659000026 3.8595412 1103.316
+202892.0659001069 3.8596199 1103.3752
+202893.0659002112 3.8596199 1103.3357
+202894.0659003155 3.8596594 1103.4344
+202895.0659004198 3.8596594 1103.4147
+202896.0659005241 3.8596988 1103.4147
+202897.0659006285 3.8597381 1103.316
+202898.0659007328 3.8596594 1103.2765
+202899.0659008371 3.8596199 1103.3357
+202900.0659009414 3.8597381 1103.3555
+202901.0659010457 3.8596988 1103.3949
+202902.06590115 3.8596988 1103.3357
+202903.0659012543 3.8598168 1103.4344
+202904.0659013586 3.8597381 1103.4344
+202905.0659014629 3.8597775 1103.3555
+202906.0659015672 3.8598168 1103.316
+202907.0659016715 3.8598168 1103.3555
+202908.0659017758 3.8598955 1103.3752
+202909.0659018802 3.8597775 1103.3357
+202910.0659019845 3.8599348 1103.3357
+202911.0659020888 3.8598561 1103.3752
+202912.0659021931 3.8598561 1103.3357
+202913.0659022974 3.8598168 1103.3555
+202914.0659024017 3.8598955 1103.4147
+202915.065902506 3.8600137 1103.3357
+202916.0659026103 3.8599348 1103.2765
+202917.0659027146 3.8600137 1103.3555
+202918.0659028189 3.8600137 1103.3949
+202919.0659029232 3.8600531 1103.3357
+202920.0659030275 3.8600531 1103.3752
+202921.0659031319 3.8600924 1103.3555
+202922.0659032362 3.8600531 1103.2369
+202923.0659033405 3.8600531 1103.3357
+202924.0659034448 3.8600924 1103.3357
+202925.0659035491 3.8600137 1103.2963
+202926.0659036534 3.8600137 1103.316
+202927.0659037577 3.8600531 1103.4147
+202928.065903862 3.8601317 1103.316
+202929.0659039663 3.8600924 1103.3357
+202930.0659040706 3.8600924 1103.3752
+202931.0659041749 3.8601711 1103.474
+202932.0659042792 3.8602104 1103.3555
+202933.0659043835 3.8602104 1103.3357
+202934.0659044879 3.8602498 1103.3752
+202935.0659045922 3.8602104 1103.2963
+202936.0659046965 3.8602893 1103.2963
+202937.0659048008 3.860368 1103.4344
+202938.0659049051 3.8602498 1103.3555
+202939.0659050094 3.860368 1103.2765
+202940.0659051137 3.860368 1103.3357
+202941.065905218 3.8603287 1103.3949
+202942.0659053223 3.860368 1103.2963
+202943.0659054266 3.8602893 1103.2567
+202944.0659055309 3.8604074 1103.2765
+202945.0659056352 3.860368 1103.4147
+202946.0659057396 3.8604467 1103.3357
+202947.0659058439 3.8604074 1103.316
+202948.0659059482 3.860486 1103.3555
+202949.0659060525 3.8604074 1103.3357
+202950.0659061568 3.8604467 1103.2369
+202951.0659062611 3.8604467 1103.2567
+202952.0659063654 3.8605254 1103.2765
+202953.0659064697 3.8604467 1103.3555
+202954.065906574 3.860486 1103.2963
+202955.0659066783 3.8604074 1103.474
+202956.0659067826 3.860486 1103.3555
+202957.0659068869 3.8605254 1103.3357
+202958.0659069913 3.8605254 1103.2963
+202959.0659070956 3.8606043 1103.3949
+202960.0659071999 3.8606043 1103.3555
+202961.0659073042 3.8606043 1103.316
+202962.0659074085 3.8606436 1103.316
+202963.0659075128 3.8606043 1103.2765
+202964.0659076171 3.8605647 1103.3555
+202965.0659077214 3.8605647 1103.3555
+202966.0659078257 3.8606436 1103.316
+202967.06590793 3.8606436 1103.3357
+202968.0659080343 3.8606436 1103.3949
+202969.0659081386 3.8607223 1103.4344
+202970.0659082429 3.8607223 1103.4147
+202971.0659083473 3.8607616 1103.3357
+202972.0659084516 3.860683 1103.2963
+202973.0659085559 3.8608403 1103.3357
+202974.0659086602 3.8607616 1103.3357
+202975.0659087645 3.8607616 1103.3357
+202976.0659088688 3.860801 1103.3555
+202977.0659089731 3.8607616 1103.3357
+202978.0659090774 3.860801 1103.3949
+202979.0659091817 3.8609586 1103.3752
+202980.065909286 3.8609192 1103.316
+202981.0659093903 3.8608797 1103.316
+202982.0659094946 3.8609586 1103.3752
+202983.065909599 3.8609586 1103.4344
+202984.0659097033 3.8608797 1103.3357
+202985.0659098076 3.8609586 1103.3949
+202986.0659099119 3.8610373 1103.3555
+202987.0659100162 3.8608797 1103.316
+202988.0659101205 3.8609586 1103.2963
+202989.0659102248 3.8610373 1103.3949
+202990.0659103291 3.8609586 1103.3949
+202991.0659104334 3.8609979 1103.3357
+202992.0659105377 3.8611553 1103.316
+202993.065910642 3.8611159 1103.3752
+202994.0659107463 3.8610373 1103.3555
+202995.0659108507 3.8611553 1103.3357
+202996.065910955 3.8610373 1103.3949
+202997.0659110593 3.8611159 1103.3357
+202998.0659111636 3.8610766 1103.3555
+202999.0659112679 3.8611948 1103.3555
+203000.0659113722 3.8611948 1103.3949
+203001.0659114765 3.8611553 1103.4147
+203002.0659115808 3.8612342 1103.3752
+203003.0659116851 3.8611948 1103.2963
+203004.0659117894 3.8612735 1103.3949
+203005.0659118937 3.8612735 1103.316
+203006.065911998 3.8611553 1103.3357
+203007.0659121023 3.8612735 1103.3752
+203008.0659122067 3.8612735 1103.3357
+203009.065912311 3.8613129 1103.2765
+203010.0659124153 3.8613129 1103.4147
+203011.0659125196 3.8612342 1103.2963
+203012.0659126239 3.8613522 1103.2963
+203013.0659127282 3.8614309 1103.3555
+203014.0659128325 3.8613915 1103.3752
+203015.0659129368 3.8613915 1103.2963
+203016.0659130411 3.8615098 1103.3555
+203017.0659131454 3.8614702 1103.3752
+203018.0659132497 3.8613915 1103.3555
+203019.065913354 3.8614309 1103.3357
+203020.0659134584 3.8614702 1103.3949
+203021.0659135627 3.8614309 1103.3555
+203022.065913667 3.8614702 1103.316
+203023.0659137713 3.8614702 1103.3357
+203024.0659138756 3.8614309 1103.3555
+203025.0659139799 3.8615098 1103.316
+203026.0659140842 3.8614309 1103.316
+203027.0659141885 3.8615885 1103.4147
+203028.0659142928 3.8615491 1103.3752
+203029.0659143971 3.8616278 1103.2765
+203030.0659145014 3.8616672 1103.3555
+203031.0659146057 3.8615885 1103.2963
+203032.0659147101 3.8616278 1103.4344
+203033.0659148144 3.8616278 1103.316
+203034.0659149187 3.8617065 1103.4344
+203035.065915023 3.8617458 1103.3357
+203036.0659151273 3.8616672 1103.3555
+203037.0659152316 3.8617852 1103.3752
+203038.0659153359 3.8617458 1103.3752
+203039.0659154402 3.8617065 1103.3752
+203040.0659155445 3.8617065 1103.3357
+203041.0659156488 3.8617852 1103.3357
+203042.0659157531 3.8617458 1103.316
+203043.0659158574 3.8617065 1103.316
+203044.0659159618 3.8617852 1103.3357
+203045.0659160661 3.8617852 1103.2765
+203046.0659161704 3.8618248 1103.2963
+203047.0659162747 3.8618248 1103.4344
+203048.065916379 3.8617458 1103.3752
+203049.0659164833 3.8618248 1103.316
+203050.0659165876 3.8619034 1103.3949
+203051.0659166919 3.8619034 1103.3949
+203052.0659167962 3.8618641 1103.3949
+203053.0659169005 3.8619821 1103.3949
+203054.0659170048 3.8619821 1103.3949
+203055.0659171091 3.8619821 1103.2765
+203056.0659172134 3.8619821 1103.3555
+203057.0659173178 3.8619821 1103.3949
+203058.0659174221 3.8620608 1103.316
+203059.0659175264 3.8620214 1103.3949
+203060.0659176307 3.8621001 1103.3555
+203061.065917735 3.8621001 1103.3555
+203062.0659178393 3.862179 1103.3752
+203063.0659179436 3.8620214 1103.316
+203064.0659180479 3.8621397 1103.4147
+203065.0659181522 3.862179 1103.316
+203066.0659182565 3.8620608 1103.3752
+203067.0659183608 3.8620608 1103.3949
+203068.0659184651 3.8622577 1103.3752
+203069.0659185695 3.8621001 1103.3555
+203070.0659186738 3.862179 1103.3949
+203071.0659187781 3.8622184 1103.316
+203072.0659188824 3.862179 1103.316
+203073.0659189867 3.8622577 1103.3555
+203074.065919091 3.8622577 1103.316
+203075.0659191953 3.8622577 1103.316
+203076.0659192996 3.8622971 1103.3949
+203077.0659194039 3.8623364 1103.316
+203078.0659195082 3.8622971 1103.316
+203079.0659196125 3.8622971 1103.3555
+203080.0659197168 3.8622971 1103.3555
+203081.0659198212 3.8623757 1103.2963
+203082.0659199255 3.8622971 1103.3555
+203083.0659200298 3.8622971 1103.3752
+203084.0659201341 3.8624547 1103.3949
+203085.0659202384 3.862494 1103.3357
+203086.0659203427 3.8623757 1103.3752
+203087.065920447 3.8623757 1103.3357
+203088.0659205513 3.8623757 1103.4147
+203089.0659206556 3.862494 1103.3555
+203090.0659207599 3.862494 1103.3949
+203091.0659208642 3.862494 1103.3555
+203092.0659209685 3.862494 1103.4147
+203093.0659210728 3.8625727 1103.3949
+203094.0659211772 3.8625333 1103.2963
+203095.0659212815 3.8626513 1103.3949
+203096.0659213858 3.862494 1103.3949
+203097.0659214901 3.8625333 1103.2963
+203098.0659215944 3.86273 1103.3555
+203099.0659216987 3.862612 1103.3949
+203100.065921803 3.8626907 1103.316
+203101.0659219073 3.8625333 1103.3555
+203102.0659220116 3.86273 1103.2963
+203103.0659221159 3.8626513 1103.3357
+203104.0659222202 3.8626907 1103.4344
+203105.0659223245 3.8627696 1103.3357
+203106.0659224289 3.8626907 1103.3357
+203107.0659225332 3.8626907 1103.3949
+203108.0659226375 3.8627696 1103.3357
+203109.0659227418 3.8626907 1103.3752
+203110.0659228461 3.8627696 1103.3357
+203111.0659229504 3.8628876 1103.3555
+203112.0659230547 3.8628483 1103.316
+203113.065923159 3.8628483 1103.2369
+203114.0659232633 3.8628089 1103.316
+203115.0659233676 3.8628876 1103.316
+203116.0659234719 3.8628089 1103.4147
+203117.0659235762 3.8628876 1103.316
+203118.0659236806 3.8628876 1103.3752
+203119.0659237849 3.8628876 1103.2963
+203120.0659238892 3.862927 1103.2963
+203121.0659239935 3.8628876 1103.3555
+203122.0659240978 3.8629663 1103.316
+203123.0659242021 3.8630056 1103.3949
+203124.0659243064 3.862927 1103.2963
+203125.0659244107 3.8629663 1103.3555
+203126.065924515 3.8629663 1103.316
+203127.0659246193 3.8630452 1103.316
+203128.0659247236 3.8630846 1103.3357
+203129.0659248279 3.8630452 1103.3357
+203130.0659249322 3.8630452 1103.3555
+203131.0659250366 3.8630846 1103.316
+203132.0659251409 3.8631239 1103.2963
+203133.0659252452 3.8631632 1103.3949
+203134.0659253495 3.8632813 1103.2963
+203135.0659254538 3.8631239 1103.316
+203136.0659255581 3.8631632 1103.2765
+203137.0659256624 3.8632026 1103.3555
+203138.0659257667 3.8630846 1103.316
+203139.065925871 3.8632026 1103.4344
+203140.0659259753 3.8632026 1103.3357
+203141.0659260796 3.8632026 1103.2963
+203142.0659261839 3.8632419 1103.3752
+203143.0659262883 3.8633206 1103.4147
+203144.0659263926 3.8633602 1103.3555
+203145.0659264969 3.8632813 1103.3949
+203146.0659266012 3.8632419 1103.3357
+203147.0659267055 3.8633602 1103.3555
+203148.0659268098 3.8632813 1103.3555
+203149.0659269141 3.8634388 1103.3752
+203150.0659270184 3.8633602 1103.3949
+203151.0659271227 3.8633995 1103.2765
+203152.065927227 3.8633206 1103.3949
+203153.0659273313 3.8633206 1103.3555
+203154.0659274356 3.8634388 1103.3949
+203155.06592754 3.8633995 1103.4344
+203156.0659276443 3.8635175 1103.4147
+203157.0659277486 3.8634782 1103.3752
+203158.0659278529 3.8635175 1103.3357
+203159.0659279572 3.8635569 1103.2963
+203160.0659280615 3.8634782 1103.3752
+203161.0659281658 3.8635569 1103.4344
+203162.0659282701 3.8635175 1103.3949
+203163.0659283744 3.8635962 1103.3752
+203164.0659284787 3.8635962 1103.316
+203165.065928583 3.8635569 1103.3357
+203166.0659286873 3.8634782 1103.3357
+203167.0659287917 3.8635962 1103.2567
+203168.065928896 3.8635962 1103.3752
+203169.0659290003 3.8635569 1103.3949
+203170.0659291046 3.8637145 1103.316
+203171.0659292089 3.8637538 1103.3357
+203172.0659293132 3.8637538 1103.3357
+203173.0659294175 3.8636355 1103.4147
+203174.0659295218 3.8636751 1103.2963
+203175.0659296261 3.8637145 1103.3949
+203176.0659297304 3.8636355 1103.316
+203177.0659298347 3.8637538 1103.2765
+203178.065929939 3.8637931 1103.3357
+203179.0659300433 3.8637931 1103.3555
+203180.0659301477 3.8638325 1103.3752
+203181.065930252 3.8637931 1103.3949
+203182.0659303563 3.8637538 1103.3357
+203183.0659304606 3.8639112 1103.3555
+203184.0659305649 3.8639505 1103.3752
+203185.0659306692 3.8638718 1103.3752
+203186.0659307735 3.8639505 1103.3357
+203187.0659308778 3.8638718 1103.4344
+203188.0659309821 3.8639505 1103.2963
+203189.0659310864 3.8639112 1103.2963
+203190.0659311907 3.8639112 1103.2963
+203191.065931295 3.8639901 1103.2963
+203192.0659313994 3.8641081 1103.2765
+203193.0659315037 3.8639505 1103.3752
+203194.065931608 3.8639112 1103.3752
+203195.0659317123 3.8639112 1103.3357
+203196.0659318166 3.8640294 1103.3555
+203197.0659319209 3.8640294 1103.3949
+203198.0659320252 3.8639505 1103.3555
+203199.0659321295 3.8640294 1103.3357
+203200.0659322338 3.8639901 1103.3357
+203201.0659323381 3.8640687 1103.316
+203202.0659324424 3.8641081 1103.3752
+203203.0659325467 3.8641474 1103.3357
+203204.0659326511 3.8641868 1103.3752
+203205.0659327554 3.8642261 1103.4344
+203206.0659328597 3.864305 1103.2765
+203207.065932964 3.8642261 1103.3357
+203208.0659330683 3.8641868 1103.3949
+203209.0659331726 3.8641474 1103.4344
+203210.0659332769 3.8642261 1103.4542
+203211.0659333812 3.8642654 1103.2963
+203212.0659334855 3.8642261 1103.4344
+203213.0659335898 3.8642261 1103.4147
+203214.0659336941 3.8641868 1103.3555
+203215.0659337984 3.8643444 1103.3357
+203216.0659339027 3.8641474 1103.316
+203217.0659340071 3.8642654 1103.3357
+203218.0659341114 3.8643444 1103.316
+203219.0659342157 3.8643837 1103.3752
+203220.06593432 3.8642654 1103.3555
+203221.0659344243 3.8642654 1103.4147
+203222.0659345286 3.864423 1103.3752
+203223.0659346329 3.864423 1103.3357
+203224.0659347372 3.8643837 1103.3752
+203225.0659348415 3.8645411 1103.3555
+203226.0659349458 3.8644624 1103.3555
+203227.0659350501 3.864423 1103.4147
+203228.0659351544 3.8645804 1103.316
+203229.0659352588 3.8645804 1103.3949
+203230.0659353631 3.8645804 1103.3949
+203231.0659354674 3.8644624 1103.3357
+203232.0659355717 3.86462 1103.4147
+203233.065935676 3.8645804 1103.2567
+203234.0659357803 3.8645804 1103.2963
+203235.0659358846 3.86462 1103.3752
+203236.0659359889 3.8646593 1103.3357
+203237.0659360932 3.8645804 1103.3752
+203238.0659361975 3.8646986 1103.3555
+203239.0659363018 3.86462 1103.3949
+203240.0659364061 3.86462 1103.2567
+203241.0659365105 3.8646986 1103.4147
+203242.0659366148 3.8646986 1103.316
+203243.0659367191 3.864738 1103.316
+203244.0659368234 3.8646593 1103.2963
+203245.0659369277 3.8647773 1103.3949
+203246.065937032 3.864856 1103.3949
+203247.0659371363 3.8647773 1103.3555
+203248.0659372406 3.8648167 1103.474
+203249.0659373449 3.864856 1103.2567
+203250.0659374492 3.864856 1103.3357
+203251.0659375535 3.8647773 1103.4147
+203252.0659376578 3.8648167 1103.3949
+203253.0659377621 3.8648167 1103.2963
+203254.0659378665 3.864856 1103.3752
+203255.0659379708 3.8648956 1103.3555
+203256.0659380751 3.864856 1103.3752
+203257.0659381794 3.8649743 1103.2765
+203258.0659382837 3.864856 1103.2963
+203259.065938388 3.8649349 1103.3752
+203260.0659384923 3.8650136 1103.3357
+203261.0659385966 3.8649743 1103.3752
+203262.0659387009 3.8650136 1103.316
+203263.0659388052 3.8649349 1103.3357
+203264.0659389095 3.8650529 1103.3949
+203265.0659390138 3.8650529 1103.2369
+203266.0659391182 3.8650923 1103.3752
+203267.0659392225 3.8650529 1103.2963
+203268.0659393268 3.8650529 1103.3949
+203269.0659394311 3.8650923 1103.3949
+203270.0659395354 3.8650923 1103.2963
+203271.0659396397 3.8650923 1103.2963
+203272.065939744 3.865171 1103.3555
+203273.0659398483 3.8651316 1103.2963
+203274.0659399526 3.865171 1103.3752
+203275.0659400569 3.865171 1103.3555
+203276.0659401612 3.8651316 1103.4344
+203277.0659402655 3.8652499 1103.316
+203278.0659403699 3.865171 1103.3949
+203279.0659404742 3.8652892 1103.4344
+203280.0659405785 3.8652892 1103.4344
+203281.0659406828 3.8651316 1103.3555
+203282.0659407871 3.8652499 1103.3357
+203283.0659408914 3.8652105 1103.2567
+203284.0659409957 3.8653286 1103.3555
+203285.0659411 3.8652892 1103.316
+203286.0659412043 3.8653286 1103.316
+203287.0659413086 3.8653679 1103.316
+203288.0659414129 3.8653286 1103.2963
+203289.0659415172 3.8653679 1103.4542
+203290.0659416215 3.8654072 1103.3949
+203291.0659417259 3.8653679 1103.3357
+203292.0659418302 3.8653679 1103.3949
+203293.0659419345 3.8654072 1103.3555
+203294.0659420388 3.8654859 1103.3357
+203295.0659421431 3.8654859 1103.316
+203296.0659422474 3.8654859 1103.3949
+203297.0659423517 3.8656435 1103.3949
+203298.065942456 3.8654466 1103.2765
+203299.0659425603 3.8654072 1103.2567
+203300.0659426646 3.8654466 1103.3357
+203301.0659427689 3.8655255 1103.3555
+203302.0659428732 3.8656435 1103.3357
+203303.0659429776 3.8655648 1103.3555
+203304.0659430819 3.8656042 1103.474
+203305.0659431862 3.8656042 1103.3752
+203306.0659432905 3.8656435 1103.3949
+203307.0659433948 3.8656042 1103.3357
+203308.0659434991 3.8656042 1103.3949
+203309.0659436034 3.8655648 1103.3357
+203310.0659437077 3.8656435 1103.3752
+203311.065943812 3.8657222 1103.3555
+203312.0659439163 3.8657615 1103.3752
+203313.0659440206 3.8657615 1103.2765
+203314.0659441249 3.8657222 1103.3555
+203315.0659442293 3.8658009 1103.3555
+203316.0659443336 3.8657222 1103.316
+203317.0659444379 3.8657222 1103.3752
+203318.0659445422 3.8658009 1103.3357
+203319.0659446465 3.8657615 1103.316
+203320.0659447508 3.8658009 1103.3752
+203321.0659448551 3.8658798 1103.4344
+203322.0659449594 3.8658404 1103.3949
+203323.0659450637 3.8658404 1103.2765
+203324.065945168 3.8658404 1103.3752
+203325.0659452723 3.8660371 1103.3555
+203326.0659453766 3.8658404 1103.3752
+203327.065945481 3.8658798 1103.3357
+203328.0659455853 3.8659585 1103.3949
+203329.0659456896 3.8659585 1103.3752
+203330.0659457939 3.8660765 1103.2765
+203331.0659458982 3.8659978 1103.3555
+203332.0659460025 3.8659191 1103.3357
+203333.0659461068 3.8660371 1103.3949
+203334.0659462111 3.8659978 1103.3555
+203335.0659463154 3.8661554 1103.3752
+203336.0659464197 3.8660371 1103.3357
+203337.065946524 3.8660765 1103.3357
+203338.0659466283 3.8660765 1103.3357
+203339.0659467326 3.8661158 1103.3949
+203340.065946837 3.8660371 1103.3555
+203341.0659469413 3.8660765 1103.316
+203342.0659470456 3.8661947 1103.3752
+203343.0659471499 3.8662341 1103.4147
+203344.0659472542 3.8661554 1103.3752
+203345.0659473585 3.8661554 1103.474
+203346.0659474628 3.8662341 1103.3949
+203347.0659475671 3.8661947 1103.3357
+203348.0659476714 3.8663127 1103.3357
+203349.0659477757 3.8661947 1103.3949
+203350.06594788 3.8662734 1103.2963
+203351.0659479843 3.8662341 1103.4147
+203352.0659480887 3.866431 1103.316
+203353.065948193 3.8663521 1103.3949
+203354.0659482973 3.8662734 1103.3752
+203355.0659484016 3.8663521 1103.2963
+203356.0659485059 3.8663521 1103.3555
+203357.0659486102 3.8663521 1103.316
+203358.0659487145 3.866431 1103.2963
+203359.0659488188 3.8664703 1103.4542
+203360.0659489231 3.866431 1103.3555
+203361.0659490274 3.8663521 1103.3555
+203362.0659491317 3.866431 1103.3752
+203363.065949236 3.8664703 1103.3555
+203364.0659493404 3.8664703 1103.3357
+203365.0659494447 3.8663914 1103.4147
+203366.065949549 3.8664703 1103.2963
+203367.0659496533 3.8665097 1103.316
+203368.0659497576 3.866549 1103.3949
+203369.0659498619 3.866549 1103.316
+203370.0659499662 3.8666277 1103.3949
+203371.0659500705 3.8664703 1103.3752
+203372.0659501748 3.866667 1103.3357
+203373.0659502791 3.8665884 1103.3752
+203374.0659503834 3.866549 1103.316
+203375.0659504877 3.8666277 1103.3357
+203376.065950592 3.8667064 1103.3357
+203377.0659506964 3.866667 1103.316
+203378.0659508007 3.8667064 1103.3752
+203379.065950905 3.8667459 1103.2567
+203380.0659510093 3.8667459 1103.3752
+203381.0659511136 3.8667064 1103.3752
+203382.0659512179 3.8667853 1103.3949
+203383.0659513222 3.8667064 1103.474
+203384.0659514265 3.8667459 1103.3752
+203385.0659515308 3.866864 1103.316
+203386.0659516351 3.8667459 1103.316
+203387.0659517394 3.8668246 1103.2765
+203388.0659518437 3.8668246 1103.3752
+203389.0659519481 3.8669426 1103.4344
+203390.0659520524 3.8669033 1103.2963
+203391.0659521567 3.8669426 1103.4344
+203392.065952261 3.866864 1103.3357
+203393.0659523653 3.8669426 1103.2963
+203394.0659524696 3.8669033 1103.316
+203395.0659525739 3.8669033 1103.4344
+203396.0659526782 3.866864 1103.3357
+203397.0659527825 3.8669033 1103.4147
+203398.0659528868 3.866982 1103.3357
+203399.0659529911 3.866982 1103.3555
+203400.0659530954 3.8669426 1103.2765
+203401.0659531998 3.8670609 1103.3357
+203402.0659533041 3.866982 1103.3357
+203403.0659534084 3.866982 1103.4147
+203404.0659535127 3.8671396 1103.2963
+203405.065953617 3.8671002 1103.3555
+203406.0659537213 3.8671789 1103.3949
+203407.0659538256 3.8671396 1103.316
+203408.0659539299 3.8670213 1103.3752
+203409.0659540342 3.8671396 1103.316
+203410.0659541385 3.8671002 1103.316
+203411.0659542428 3.8671789 1103.4542
+203412.0659543471 3.8671396 1103.3752
+203413.0659544514 3.8670609 1103.3752
+203414.0659545558 3.8672969 1103.3949
+203415.0659546601 3.8672969 1103.3752
+203416.0659547644 3.8671002 1103.4147
+203417.0659548687 3.8671396 1103.3949
+203418.065954973 3.8672183 1103.3357
+203419.0659550773 3.8673759 1103.4542
+203420.0659551816 3.8672969 1103.2369
+203421.0659552859 3.8672576 1103.316
+203422.0659553902 3.8673759 1103.2963
+203423.0659554945 3.8673759 1103.316
+203424.0659555988 3.8672969 1103.2963
+203425.0659557031 3.8672969 1103.3949
+203426.0659558075 3.8674152 1103.3555
+203427.0659559118 3.8673759 1103.2567
+203428.0659560161 3.8673759 1103.3357
+203429.0659561204 3.8673759 1103.3357
+203430.0659562247 3.8674152 1103.3357
+203431.065956329 3.8673759 1103.316
+203432.0659564333 3.8673759 1103.3752
+203433.0659565376 3.8674545 1103.3949
+203434.0659566419 3.8674939 1103.3357
+203435.0659567462 3.8676512 1103.2963
+203436.0659568505 3.8675332 1103.4542
+203437.0659569548 3.8675332 1103.2963
+203438.0659570592 3.8674545 1103.316
+203439.0659571635 3.8675332 1103.3555
+203440.0659572678 3.8674939 1103.3752
+203441.0659573721 3.8676908 1103.316
+203442.0659574764 3.8675332 1103.3357
+203443.0659575807 3.8675332 1103.4147
+203444.065957685 3.8676119 1103.3752
+203445.0659577893 3.8676908 1103.316
+203446.0659578936 3.8676908 1103.3752
+203447.0659579979 3.8676119 1103.3949
+203448.0659581022 3.8676119 1103.3752
+203449.0659582065 3.8676119 1103.2765
+203450.0659583109 3.8676908 1103.3949
+203451.0659584152 3.8677695 1103.3357
+203452.0659585195 3.8677301 1103.3949
+203453.0659586238 3.8678088 1103.3752
+203454.0659587281 3.8678088 1103.3752
+203455.0659588324 3.8677695 1103.3752
+203456.0659589367 3.8678088 1103.3949
+203457.065959041 3.8678088 1103.3555
+203458.0659591453 3.8677695 1103.3752
+203459.0659592496 3.8677695 1103.2765
+203460.0659593539 3.8679268 1103.3357
+203461.0659594582 3.8680058 1103.316
+203462.0659595625 3.8679662 1103.3555
+203463.0659596669 3.8677695 1103.3949
+203464.0659597712 3.8677695 1103.316
+203465.0659598755 3.8678875 1103.3555
+203466.0659599798 3.8679268 1103.3555
+203467.0659600841 3.8679268 1103.316
+203468.0659601884 3.8679268 1103.316
+203469.0659602927 3.8680058 1103.4344
+203470.065960397 3.8680058 1103.316
+203471.0659605013 3.8680451 1103.3752
+203472.0659606056 3.8680451 1103.3555
+203473.0659607099 3.8681238 1103.3357
+203474.0659608142 3.8681238 1103.316
+203475.0659609186 3.8681631 1103.474
+203476.0659610229 3.8680844 1103.4344
+203477.0659611272 3.8680451 1103.3555
+203478.0659612315 3.8681238 1103.2172
+203479.0659613358 3.8681238 1103.3752
+203480.0659614401 3.8681238 1103.2963
+203481.0659615444 3.8681238 1103.316
+203482.0659616487 3.8682024 1103.3752
+203483.065961753 3.8681631 1103.4147
+203484.0659618573 3.8681238 1103.3357
+203485.0659619616 3.8682024 1103.3555
+203486.0659620659 3.8681631 1103.3357
+203487.0659621703 3.8682418 1103.3555
+203488.0659622746 3.8682814 1103.2963
+203489.0659623789 3.8682024 1103.4147
+203490.0659624832 3.8682024 1103.316
+203491.0659625875 3.8682418 1103.3555
+203492.0659626918 3.86836 1103.3752
+203493.0659627961 3.8684781 1103.2963
+203494.0659629004 3.8683994 1103.3357
+203495.0659630047 3.8684387 1103.316
+203496.065963109 3.86836 1103.2963
+203497.0659632133 3.8683994 1103.3949
+203498.0659633176 3.8684387 1103.4147
+203499.0659634219 3.8683207 1103.316
+203500.0659635263 3.8684387 1103.316
+203501.0659636306 3.86836 1103.3752
+203502.0659637349 3.8684387 1103.3949
+203503.0659638392 3.8684387 1103.3357
+203504.0659639435 3.8684781 1103.4147
+203505.0659640478 3.8683994 1103.316
+203506.0659641521 3.8684781 1103.3949
+203507.0659642564 3.8685174 1103.316
+203508.0659643607 3.8685567 1103.3752
+203509.065964465 3.8685174 1103.3357
+203510.0659645693 3.8685963 1103.3357
+203511.0659646736 3.8685567 1103.4147
+203512.065964778 3.8686357 1103.316
+203513.0659648823 3.8685567 1103.3555
+203514.0659649866 3.8685567 1103.2765
+203515.0659650909 3.8685567 1103.2369
+203516.0659651952 3.8687143 1103.2369
+203517.0659652995 3.868675 1103.2963
+203518.0659654038 3.868675 1103.316
+203519.0659655081 3.868675 1103.3555
+203520.0659656124 3.868793 1103.316
+203521.0659657167 3.8686357 1103.316
+203522.065965821 3.868675 1103.3752
+203523.0659659253 3.868793 1103.3555
+203524.0659660297 3.868793 1103.3357
+203525.065966134 3.868793 1103.316
+203526.0659662383 3.8687143 1103.316
+203527.0659663426 3.8688323 1103.3357
+203528.0659664469 3.8688717 1103.3949
+203529.0659665512 3.8688323 1103.2567
+203530.0659666555 3.8689113 1103.2963
+203531.0659667598 3.8687537 1103.3555
+203532.0659668641 3.8688717 1103.3357
+203533.0659669684 3.8689506 1103.316
+203534.0659670727 3.8689506 1103.3357
+203535.065967177 3.8687537 1103.3357
+203536.0659672813 3.8689113 1103.3949
+203537.0659673857 3.8689113 1103.3555
+203538.06596749 3.8689113 1103.2369
+203539.0659675943 3.8689506 1103.2567
+203540.0659676986 3.8690686 1103.2963
+203541.0659678029 3.8690293 1103.3555
+203542.0659679072 3.8689899 1103.4147
+203543.0659680115 3.8690686 1103.3949
+203544.0659681158 3.8690293 1103.3555
+203545.0659682201 3.869108 1103.3555
+203546.0659683244 3.869108 1103.3752
+203547.0659684287 3.869108 1103.2567
+203548.065968533 3.869108 1103.3949
+203549.0659686374 3.8691473 1103.3752
+203550.0659687417 3.8691473 1103.3357
+203551.065968846 3.8691473 1103.553
+203552.0659689503 3.8691473 1103.3752
+203553.0659690546 3.8691473 1103.316
+203554.0659691589 3.8691866 1103.3357
+203555.0659692632 3.8693049 1103.4344
+203556.0659693675 3.8691866 1103.3949
+203557.0659694718 3.8693049 1103.3555
+203558.0659695761 3.8692262 1103.4344
+203559.0659696804 3.8691866 1103.3752
+203560.0659697847 3.8694623 1103.3949
+203561.0659698891 3.8693049 1103.4147
+203562.0659699934 3.8693049 1103.316
+203563.0659700977 3.8693442 1103.4147
+203564.065970202 3.8693836 1103.3357
+203565.0659703063 3.8693442 1103.2765
+203566.0659704106 3.8694229 1103.4344
+203567.0659705149 3.8693442 1103.3752
+203568.0659706192 3.8694229 1103.3949
+203569.0659707235 3.8693836 1103.3357
+203570.0659708278 3.8694229 1103.3752
+203571.0659709321 3.8694229 1103.3555
+203572.0659710364 3.8695016 1103.3357
+203573.0659711408 3.8694623 1103.3555
+203574.0659712451 3.8694623 1103.3357
+203575.0659713494 3.8694623 1103.2963
+203576.0659714537 3.8695805 1103.2765
+203577.065971558 3.8695412 1103.3357
+203578.0659716623 3.8695412 1103.3357
+203579.0659717666 3.8695412 1103.3752
+203580.0659718709 3.8695412 1103.3357
+203581.0659719752 3.8696592 1103.3949
+203582.0659720795 3.8695805 1103.4344
+203583.0659721838 3.8696592 1103.3949
+203584.0659722881 3.8696592 1103.3357
+203585.0659723924 3.8696198 1103.2963
+203586.0659724968 3.8696985 1103.3357
+203587.0659726011 3.8697772 1103.3752
+203588.0659727054 3.8697379 1103.3357
+203589.0659728097 3.8696592 1103.3949
+203590.065972914 3.8697379 1103.4938
+203591.0659730183 3.8697379 1103.3555
+203592.0659731226 3.8697772 1103.3555
+203593.0659732269 3.8697379 1103.3555
+203594.0659733312 3.8698165 1103.2963
+203595.0659734355 3.8698165 1103.3555
+203596.0659735398 3.8698165 1103.316
+203597.0659736441 3.8698561 1103.3555
+203598.0659737485 3.8698955 1103.3752
+203599.0659738528 3.8698165 1103.3555
+203600.0659739571 3.8698955 1103.3555
+203601.0659740614 3.8699348 1103.3752
+203602.0659741657 3.8698955 1103.2963
+203603.06597427 3.8699741 1103.2963
+203604.0659743743 3.8699741 1103.316
+203605.0659744786 3.8700528 1103.3555
+203606.0659745829 3.8698955 1103.3357
+203607.0659746872 3.8699741 1103.3752
+203608.0659747915 3.8699348 1103.3555
+203609.0659748958 3.8700135 1103.3357
+203610.0659750002 3.8700135 1103.3949
+203611.0659751045 3.8700528 1103.316
+203612.0659752088 3.8700528 1103.3357
+203613.0659753131 3.8700135 1103.316
+203614.0659754174 3.8701317 1103.2765
+203615.0659755217 3.8700922 1103.3357
+203616.065975626 3.8701317 1103.3555
+203617.0659757303 3.8701711 1103.3357
+203618.0659758346 3.8701711 1103.3752
+203619.0659759389 3.8701317 1103.3752
+203620.0659760432 3.8702104 1103.2567
+203621.0659761475 3.8701711 1103.3752
+203622.0659762518 3.8702104 1103.3555
+203623.0659763562 3.8703678 1103.3555
+203624.0659764605 3.8702891 1103.3555
+203625.0659765648 3.8702497 1103.316
+203626.0659766691 3.8703284 1103.3357
+203627.0659767734 3.8702497 1103.316
+203628.0659768777 3.8702497 1103.4147
+203629.065976982 3.8703284 1103.316
+203630.0659770863 3.8703678 1103.3949
+203631.0659771906 3.8703284 1103.3555
+203632.0659772949 3.8703284 1103.2963
+203633.0659773992 3.8702891 1103.3949
+203634.0659775035 3.8703284 1103.3555
+203635.0659776079 3.8704467 1103.2765
+203636.0659777122 3.8704071 1103.2963
+203637.0659778165 3.870486 1103.3555
+203638.0659779208 3.8704467 1103.3949
+203639.0659780251 3.8704071 1103.316
+203640.0659781294 3.8706434 1103.3555
+203641.0659782337 3.870486 1103.3357
+203642.065978338 3.8705254 1103.3949
+203643.0659784423 3.870486 1103.3357
+203644.0659785466 3.870604 1103.3949
+203645.0659786509 3.8705647 1103.2963
+203646.0659787552 3.870604 1103.3752
+203647.0659788596 3.8705647 1103.3752
+203648.0659789639 3.8706827 1103.3357
+203649.0659790682 3.8706434 1103.2765
+203650.0659791725 3.8706434 1103.3752
+203651.0659792768 3.870604 1103.316
+203652.0659793811 3.8707221 1103.3555
+203653.0659794854 3.8707616 1103.316
+203654.0659795897 3.8706434 1103.316
+203655.065979694 3.8706434 1103.3555
+203656.0659797983 3.8707221 1103.3555
+203657.0659799026 3.8707221 1103.316
+203658.0659800069 3.870801 1103.2963
+203659.0659801112 3.8707221 1103.2963
+203660.0659802156 3.8708797 1103.4147
+203661.0659803199 3.870801 1103.2963
+203662.0659804242 3.8707616 1103.3555
+203663.0659805285 3.870919 1103.3949
+203664.0659806328 3.8708797 1103.3555
+203665.0659807371 3.8708797 1103.3555
+203666.0659808414 3.8708403 1103.3357
+203667.0659809457 3.8709583 1103.3949
+203668.06598105 3.8708797 1103.4344
+203669.0659811543 3.870919 1103.4147
+203670.0659812586 3.8709977 1103.2567
+203671.0659813629 3.8708797 1103.3555
+203672.0659814673 3.8708797 1103.3949
+203673.0659815716 3.8709977 1103.3949
+203674.0659816759 3.871037 1103.3752
+203675.0659817802 3.8708797 1103.2963
+203676.0659818845 3.871037 1103.2963
+203677.0659819888 3.871037 1103.3555
+203678.0659820931 3.871037 1103.3949
+203679.0659821974 3.8710766 1103.2765
+203680.0659823017 3.8711159 1103.2963
+203681.065982406 3.871037 1103.3357
+203682.0659825103 3.8711159 1103.3555
+203683.0659826146 3.8711159 1103.3752
+203684.065982719 3.871037 1103.2963
+203685.0659828233 3.8711159 1103.3555
+203686.0659829276 3.8711553 1103.2963
+203687.0659830319 3.8712733 1103.316
+203688.0659831362 3.8711946 1103.2567
+203689.0659832405 3.8712733 1103.3752
+203690.0659833448 3.8712339 1103.3555
+203691.0659834491 3.8712339 1103.3357
+203692.0659835534 3.8713126 1103.3555
+203693.0659836577 3.8712733 1103.3555
+203694.065983762 3.8713126 1103.3555
+203695.0659838663 3.8712733 1103.2963
+203696.0659839707 3.871352 1103.4147
+203697.065984075 3.8712339 1103.3752
+203698.0659841793 3.8712733 1103.3752
+203699.0659842836 3.871352 1103.3949
+203700.0659843879 3.871352 1103.3555
+203701.0659844922 3.8714309 1103.2963
+203702.0659845965 3.871352 1103.3555
+203703.0659847008 3.8713915 1103.3555
+203704.0659848051 3.8713915 1103.3555
+203705.0659849094 3.8715489 1103.3555
+203706.0659850137 3.8714309 1103.4147
+203707.065985118 3.8715096 1103.2963
+203708.0659852223 3.8713915 1103.316
+203709.0659853267 3.8715489 1103.2963
+203710.065985431 3.8715489 1103.3949
+203711.0659855353 3.8715489 1103.3752
+203712.0659856396 3.8716276 1103.3555
+203713.0659857439 3.8716276 1103.3357
+203714.0659858482 3.8715489 1103.3357
+203715.0659859525 3.8716669 1103.3357
+203716.0659860568 3.8715882 1103.3949
+203717.0659861611 3.8717458 1103.4147
+203718.0659862654 3.8716276 1103.4147
+203719.0659863697 3.8716276 1103.2963
+203720.065986474 3.8717065 1103.3949
+203721.0659865784 3.8716669 1103.4344
+203722.0659866827 3.8716276 1103.3357
+203723.065986787 3.8717852 1103.2567
+203724.0659868913 3.8717852 1103.316
+203725.0659869956 3.8716276 1103.4147
+203726.0659870999 3.8717458 1103.2963
+203727.0659872042 3.8717458 1103.3357
+203728.0659873085 3.8717852 1103.2963
+203729.0659874128 3.8717458 1103.2963
+203730.0659875171 3.8718245 1103.3555
+203731.0659876214 3.8717852 1103.3555
+203732.0659877257 3.8718638 1103.3752
+203733.0659878301 3.8718638 1103.3555
+203734.0659879344 3.8719821 1103.3555
+203735.0659880387 3.8718638 1103.3555
+203736.065988143 3.8719425 1103.316
+203737.0659882473 3.8719425 1103.3555
+203738.0659883516 3.8718638 1103.3555
+203739.0659884559 3.8719425 1103.2963
+203740.0659885602 3.8719425 1103.3357
+203741.0659886645 3.8719032 1103.3752
+203742.0659887688 3.8720214 1103.316
+203743.0659888731 3.8720214 1103.3555
+203744.0659889774 3.8720214 1103.3949
+203745.0659890817 3.8720214 1103.3555
+203746.0659891861 3.8720608 1103.4344
+203747.0659892904 3.8720214 1103.2765
+203748.0659893947 3.8721788 1103.316
+203749.065989499 3.8721001 1103.316
+203750.0659896033 3.8722575 1103.4147
+203751.0659897076 3.8721788 1103.3555
+203752.0659898119 3.8721395 1103.3357
+203753.0659899162 3.8721788 1103.3555
+203754.0659900205 3.8721395 1103.2765
+203755.0659901248 3.872297 1103.4938
+203756.0659902291 3.8722181 1103.4344
+203757.0659903334 3.8722181 1103.2963
+203758.0659904378 3.8722575 1103.3555
+203759.0659905421 3.8722575 1103.316
+203760.0659906464 3.8722181 1103.3555
+203761.0659907507 3.8724151 1103.3357
+203762.065990855 3.8723757 1103.2963
+203763.0659909593 3.8723364 1103.316
+203764.0659910636 3.8723364 1103.3357
+203765.0659911679 3.8723364 1103.3752
+203766.0659912722 3.872297 1103.3949
+203767.0659913765 3.8724151 1103.4344
+203768.0659914808 3.8724937 1103.4147
+203769.0659915851 3.8724151 1103.2567
+203770.0659916895 3.8723364 1103.3752
+203771.0659917938 3.8724151 1103.316
+203772.0659918981 3.8724544 1103.3357
+203773.0659920024 3.8724544 1103.3555
+203774.0659921067 3.8725724 1103.2765
+203775.065992211 3.8724937 1103.3949
+203776.0659923153 3.8724937 1103.2765
+203777.0659924196 3.8724544 1103.3555
+203778.0659925239 3.8724544 1103.3752
+203779.0659926282 3.8725331 1103.316
+203780.0659927325 3.8725724 1103.4147
+203781.0659928368 3.872612 1103.4344
+203782.0659929411 3.872612 1103.3949
+203783.0659930455 3.8724937 1103.2963
+203784.0659931498 3.8726513 1103.3555
+203785.0659932541 3.8726513 1103.3949
+203786.0659933584 3.87273 1103.3555
+203787.0659934627 3.8726513 1103.3357
+203788.065993567 3.8727694 1103.3357
+203789.0659936713 3.8727694 1103.316
+203790.0659937756 3.8726907 1103.3752
+203791.0659938799 3.8728087 1103.3752
+203792.0659939842 3.8727694 1103.3555
+203793.0659940885 3.8727694 1103.3357
+203794.0659941928 3.87273 1103.3357
+203795.0659942972 3.8728087 1103.3357
+203796.0659944015 3.8726907 1103.3949
+203797.0659945058 3.872848 1103.2567
+203798.0659946101 3.8728087 1103.316
+203799.0659947144 3.8728087 1103.3949
+203800.0659948187 3.872848 1103.3949
+203801.065994923 3.872927 1103.3752
+203802.0659950273 3.872927 1103.3752
+203803.0659951316 3.872927 1103.316
+203804.0659952359 3.872927 1103.3949
+203805.0659953402 3.872927 1103.3752
+203806.0659954445 3.8729663 1103.4147
+203807.0659955489 3.8730056 1103.3357
+203808.0659956532 3.873045 1103.3752
+203809.0659957575 3.8730056 1103.3555
+203810.0659958618 3.8730056 1103.3357
+203811.0659959661 3.873045 1103.3752
+203812.0659960704 3.8730843 1103.3555
+203813.0659961747 3.873045 1103.3949
+203814.065996279 3.873045 1103.2963
+203815.0659963833 3.873045 1103.2963
+203816.0659964876 3.8731236 1103.2963
+203817.0659965919 3.8732023 1103.4344
+203818.0659966962 3.8732023 1103.3555
+203819.0659968005 3.8730843 1103.3555
+203820.0659969049 3.8732023 1103.316
+203821.0659970092 3.8731236 1103.3949
+203822.0659971135 3.8732419 1103.3555
+203823.0659972178 3.873163 1103.3949
+203824.0659973221 3.8732023 1103.316
+203825.0659974264 3.8732419 1103.4147
+203826.0659975307 3.873163 1103.316
+203827.065997635 3.8732812 1103.3752
+203828.0659977393 3.8732419 1103.2172
+203829.0659978436 3.8732023 1103.3357
+203830.0659979479 3.8733206 1103.3752
+203831.0659980522 3.8733206 1103.316
+203832.0659981566 3.873163 1103.2765
+203833.0659982609 3.8733599 1103.3752
+203834.0659983652 3.8732419 1103.316
+203835.0659984695 3.8733206 1103.2172
+203836.0659985738 3.8734779 1103.2369
+203837.0659986781 3.8732419 1103.3555
+203838.0659987824 3.8734386 1103.3949
+203839.0659988867 3.8734779 1103.3752
+203840.065998991 3.8734386 1103.316
+203841.0659990953 3.8733993 1103.3555
+203842.0659991996 3.8735569 1103.3555
+203843.0659993039 3.8734386 1103.316
+203844.0659994083 3.8735569 1103.2963
+203845.0659995126 3.8735173 1103.316
+203846.0659996169 3.8735569 1103.3357
+203847.0659997212 3.8735173 1103.2765
+203848.0659998255 3.8734779 1103.4542
+203849.0659999298 3.8735569 1103.2963
+203850.0660000341 3.8736749 1103.3752
+203851.0660001384 3.8735569 1103.3555
+203852.0660002427 3.8735569 1103.3752
+203853.066000347 3.8736355 1103.2963
+203854.0660004513 3.8735569 1103.3949
+203855.0660005556 3.8737535 1103.3949
+203856.06600066 3.8737142 1103.3357
+203857.0660007643 3.8735569 1103.316
+203858.0660008686 3.8737142 1103.2765
+203859.0660009729 3.8737142 1103.3555
+203860.0660010772 3.8737929 1103.3357
+203861.0660011815 3.8736749 1103.3555
+203862.0660012858 3.8738325 1103.3949
+203863.0660013901 3.8737535 1103.3555
+203864.0660014944 3.8737929 1103.3555
+203865.0660015987 3.8737142 1103.4542
+203866.066001703 3.8738718 1103.3357
+203867.0660018073 3.8737535 1103.3949
+203868.0660019116 3.8738718 1103.2765
+203869.066002016 3.8738718 1103.3949
+203870.0660021203 3.8737929 1103.316
+203871.0660022246 3.8738718 1103.3357
+203872.0660023289 3.8738718 1103.2567
+203873.0660024332 3.8739111 1103.3357
+203874.0660025375 3.8739505 1103.4147
+203875.0660026418 3.8739505 1103.3949
+203876.0660027461 3.8740292 1103.2765
+203877.0660028504 3.8739898 1103.316
+203878.0660029547 3.8739505 1103.316
+203879.066003059 3.8739898 1103.2963
+203880.0660031633 3.8741474 1103.3357
+203881.0660032677 3.8740685 1103.3555
+203882.066003372 3.8740292 1103.2963
+203883.0660034763 3.8741474 1103.2963
+203884.0660035806 3.8741078 1103.3357
+203885.0660036849 3.8741474 1103.2963
+203886.0660037892 3.8741078 1103.2765
+203887.0660038935 3.8742654 1103.4147
+203888.0660039978 3.8741474 1103.4147
+203889.0660041021 3.8741868 1103.3752
+203890.0660042064 3.8741078 1103.3555
+203891.0660043107 3.8742261 1103.4147
+203892.066004415 3.8741474 1103.3752
+203893.0660045194 3.8742261 1103.3555
+203894.0660046237 3.8741474 1103.3357
+203895.066004728 3.8742654 1103.316
+203896.0660048323 3.8743441 1103.3752
+203897.0660049366 3.8743048 1103.3949
+203898.0660050409 3.8742654 1103.3357
+203899.0660051452 3.8742261 1103.3752
+203900.0660052495 3.8743441 1103.3357
+203901.0660053538 3.8743048 1103.3357
+203902.0660054581 3.8743441 1103.3357
+203903.0660055624 3.8743441 1103.2567
+203904.0660056667 3.8743441 1103.3357
+203905.066005771 3.8743834 1103.3752
+203906.0660058754 3.8744624 1103.316
+203907.0660059797 3.8744228 1103.2963
+203908.066006084 3.8744228 1103.3949
+203909.0660061883 3.8744228 1103.3752
+203910.0660062926 3.8745017 1103.4938
+203911.0660063969 3.8745017 1103.4147
+203912.0660065012 3.8744624 1103.3752
+203913.0660066055 3.874541 1103.3949
+203914.0660067098 3.8745804 1103.3949
+203915.0660068141 3.8745017 1103.3752
+203916.0660069184 3.874541 1103.2963
+203917.0660070227 3.8746197 1103.2963
+203918.0660071271 3.8745017 1103.3752
+203919.0660072314 3.874541 1103.3357
+203920.0660073357 3.8746197 1103.2963
+203921.06600744 3.8745804 1103.3752
+203922.0660075443 3.8746197 1103.3357
+203923.0660076486 3.8746197 1103.3752
+203924.0660077529 3.8746984 1103.3357
+203925.0660078572 3.8747773 1103.3752
+203926.0660079615 3.8747377 1103.3752
+203927.0660080658 3.8746591 1103.2963
+203928.0660081701 3.8746984 1103.316
+203929.0660082744 3.8746197 1103.3752
+203930.0660083788 3.8747773 1103.3357
+203931.0660084831 3.8747773 1103.3555
+203932.0660085874 3.8747377 1103.316
+203933.0660086917 3.8747377 1103.3357
+203934.066008796 3.8747377 1103.2963
+203935.0660089003 3.8748953 1103.3357
+203936.0660090046 3.8748167 1103.3752
+203937.0660091089 3.8747377 1103.4344
+203938.0660092132 3.874974 1103.3357
+203939.0660093175 3.8748953 1103.2963
+203940.0660094218 3.874856 1103.3555
+203941.0660095261 3.8750134 1103.3357
+203942.0660096304 3.8749347 1103.4147
+203943.0660097348 3.874856 1103.4344
+203944.0660098391 3.8750134 1103.3357
+203945.0660099434 3.8750134 1103.3752
+203946.0660100477 3.8749347 1103.2765
+203947.066010152 3.874974 1103.4344
+203948.0660102563 3.874974 1103.3357
+203949.0660103606 3.8750923 1103.3357
+203950.0660104649 3.8750527 1103.2765
+203951.0660105692 3.8750923 1103.2765
+203952.0660106735 3.8751709 1103.316
+203953.0660107778 3.8750923 1103.3555
+203954.0660108821 3.8750923 1103.3949
+203955.0660109865 3.8752496 1103.3752
+203956.0660110908 3.8750527 1103.4344
+203957.0660111951 3.8751316 1103.3752
+203958.0660112994 3.8752103 1103.3752
+203959.0660114037 3.8751316 1103.2765
+203960.066011508 3.8751709 1103.3555
+203961.0660116123 3.8753283 1103.3357
+203962.0660117166 3.8752496 1103.3752
+203963.0660118209 3.8751709 1103.4344
+203964.0660119252 3.8752496 1103.4542
+203965.0660120295 3.8753679 1103.3357
+203966.0660121338 3.8753283 1103.3752
+203967.0660122382 3.8754072 1103.3357
+203968.0660123425 3.875289 1103.4344
+203969.0660124468 3.875289 1103.3752
+203970.0660125511 3.8753679 1103.3357
+203971.0660126554 3.8753283 1103.3555
+203972.0660127597 3.8753679 1103.4147
+203973.066012864 3.8753283 1103.3357
+203974.0660129683 3.8754072 1103.316
+203975.0660130726 3.8754466 1103.3949
+203976.0660131769 3.8753679 1103.3752
+203977.0660132812 3.8753679 1103.316
+203978.0660133855 3.8754072 1103.3949
+203979.0660134899 3.8754859 1103.2765
+203980.0660135942 3.8755252 1103.316
+203981.0660136985 3.8755646 1103.316
+203982.0660138028 3.8756039 1103.4344
+203983.0660139071 3.8756039 1103.3555
+203984.0660140114 3.8754466 1103.2963
+203985.0660141157 3.8754859 1103.316
+203986.06601422 3.8756039 1103.3949
+203987.0660143243 3.8755252 1103.3949
+203988.0660144286 3.8756828 1103.2963
+203989.0660145329 3.8756828 1103.3752
+203990.0660146372 3.8756433 1103.316
+203991.0660147415 3.8756433 1103.3949
+203992.0660148459 3.8756433 1103.3555
+203993.0660149502 3.8757615 1103.2765
+203994.0660150545 3.8756828 1103.3752
+203995.0660151588 3.8757222 1103.3357
+203996.0660152631 3.8756039 1103.3949
+203997.0660153674 3.8757615 1103.3949
+203998.0660154717 3.8757222 1103.3949
+203999.066015576 3.8758402 1103.3555
+204000.0660156803 3.8758402 1103.2963
+204001.0660157846 3.8757222 1103.3949
+204002.0660158889 3.8758008 1103.3555
+204003.0660159932 3.8758402 1103.316
+204004.0660160976 3.8757615 1103.3752
+204005.0660162019 3.8758402 1103.3752
+204006.0660163062 3.8758795 1103.3949
+204007.0660164105 3.8759582 1103.316
+204008.0660165148 3.8759582 1103.3555
+204009.0660166191 3.8759582 1103.3555
+204010.0660167234 3.8759582 1103.3752
+204011.0660168277 3.8759978 1103.3555
+204012.066016932 3.8759582 1103.2765
+204013.0660170363 3.8759189 1103.2963
+204014.0660171406 3.8760371 1103.2765
+204015.0660172449 3.8760765 1103.316
+204016.0660173493 3.8760371 1103.2765
+204017.0660174536 3.8760371 1103.316
+204018.0660175579 3.8760371 1103.3555
+204019.0660176622 3.8760765 1103.3949
+204020.0660177665 3.8760765 1103.4344
+204021.0660178708 3.8759582 1103.3949
+204022.0660179751 3.8761551 1103.316
+204023.0660180794 3.8761945 1103.2567
+204024.0660181837 3.8761158 1103.2963
+204025.066018288 3.8762338 1103.3555
+204026.0660183923 3.8761551 1103.3357
+204027.0660184966 3.8761945 1103.1777
+204028.0660186009 3.8762338 1103.3555
+204029.0660187053 3.8761551 1103.316
+204030.0660188096 3.8762732 1103.2963
+204031.0660189139 3.8762732 1103.2765
+204032.0660190182 3.8762732 1103.3949
+204033.0660191225 3.8763521 1103.2963
+204034.0660192268 3.8763521 1103.3752
+204035.0660193311 3.8763127 1103.3949
+204036.0660194354 3.8763127 1103.2963
+204037.0660195397 3.8763914 1103.3357
+204038.066019644 3.8763127 1103.3752
+204039.0660197483 3.8763521 1103.3949
+204040.0660198526 3.8764701 1103.4542
+204041.066019957 3.8763127 1103.3949
+204042.0660200613 3.8764307 1103.3752
+204043.0660201656 3.8764307 1103.2963
+204044.0660202699 3.8764701 1103.3949
+204045.0660203742 3.8763914 1103.3357
+204046.0660204785 3.8765094 1103.3949
+204047.0660205828 3.8764701 1103.3357
+204048.0660206871 3.8765094 1103.3555
+204049.0660207914 3.8764701 1103.4542
+204050.0660208957 3.8765881 1103.316
+204051.066021 3.8765488 1103.2963
+204052.0660211043 3.8765488 1103.3357
+204053.0660212087 3.8765488 1103.2765
+204054.066021313 3.8765881 1103.3555
+204055.0660214173 3.8765094 1103.3357
+204056.0660215216 3.876667 1103.4344
+204057.0660216259 3.8765488 1103.3357
+204058.0660217302 3.8767457 1103.2963
+204059.0660218345 3.8767064 1103.316
+204060.0660219388 3.8766277 1103.316
+204061.0660220431 3.8767064 1103.3555
+204062.0660221474 3.8767064 1103.3949
+204063.0660222517 3.8767457 1103.3357
+204064.066022356 3.876785 1103.3555
+204065.0660224603 3.876667 1103.316
+204066.0660225647 3.8767457 1103.2567
+204067.066022669 3.876785 1103.316
+204068.0660227733 3.8767457 1103.3357
+204069.0660228776 3.8768244 1103.2567
+204070.0660229819 3.8769426 1103.3949
+204071.0660230862 3.8768244 1103.3555
+204072.0660231905 3.8768637 1103.3949
+204073.0660232948 3.8768637 1103.3357
+204074.0660233991 3.8769031 1103.316
+204075.0660235034 3.8768637 1103.316
+204076.0660236077 3.8770213 1103.316
+204077.066023712 3.8769031 1103.3555
+204078.0660238164 3.8769426 1103.4344
+204079.0660239207 3.876982 1103.3555
+204080.066024025 3.8770213 1103.2369
+204081.0660241293 3.8769426 1103.2963
+204082.0660242336 3.876982 1103.3752
+204083.0660243379 3.876982 1103.316
+204084.0660244422 3.8770607 1103.3949
+204085.0660245465 3.8771 1103.3949
+204086.0660246508 3.8770213 1103.3949
+204087.0660247551 3.8770607 1103.3555
+204088.0660248594 3.8771787 1103.3949
+204089.0660249637 3.8771393 1103.2765
+204090.0660250681 3.8771393 1103.2765
+204091.0660251724 3.8771 1103.3357
+204092.0660252767 3.8771 1103.3357
+204093.066025381 3.8771787 1103.2963
+204094.0660254853 3.8772182 1103.3555
+204095.0660255896 3.8771787 1103.3357
+204096.0660256939 3.8771787 1103.3357
+204097.0660257982 3.8771787 1103.2369
+204098.0660259025 3.8772182 1103.3949
+204099.0660260068 3.8772969 1103.2963
+204100.0660261111 3.8772576 1103.3357
+204101.0660262154 3.8772969 1103.4147
+204102.0660263198 3.8773363 1103.2963
+204103.0660264241 3.8772969 1103.316
+204104.0660265284 3.8774149 1103.3357
+204105.0660266327 3.8773756 1103.2963
+204106.066026737 3.8774149 1103.2567
+204107.0660268413 3.8774936 1103.4344
+204108.0660269456 3.8772969 1103.3555
+204109.0660270499 3.8773756 1103.3752
+204110.0660271542 3.8774543 1103.3949
+204111.0660272585 3.8774543 1103.4147
+204112.0660273628 3.8774543 1103.3555
+204113.0660274671 3.8774149 1103.3752
+204114.0660275714 3.8774936 1103.316
+204115.0660276758 3.8774936 1103.2567
+204116.0660277801 3.8774936 1103.3752
+204117.0660278844 3.8775725 1103.4344
+204118.0660279887 3.8775332 1103.2765
+204119.066028093 3.8775332 1103.3555
+204120.0660281973 3.8776119 1103.3357
+204121.0660283016 3.8776512 1103.3357
+204122.0660284059 3.8776119 1103.2963
+204123.0660285102 3.8776119 1103.3357
+204124.0660286145 3.8776119 1103.4344
+204125.0660287188 3.8776906 1103.3555
+204126.0660288231 3.8776906 1103.2567
+204127.0660289275 3.8776512 1103.3752
+204128.0660290318 3.8776512 1103.3752
+204129.0660291361 3.8776512 1103.3357
+204130.0660292404 3.8776512 1103.2765
+204131.0660293447 3.8777692 1103.3555
+204132.066029449 3.8776906 1103.316
+204133.0660295533 3.8778086 1103.3752
+204134.0660296576 3.8778875 1103.3949
+204135.0660297619 3.8777692 1103.3949
+204136.0660298662 3.8778481 1103.3555
+204137.0660299705 3.8778086 1103.3752
+204138.0660300748 3.8778481 1103.316
+204139.0660301792 3.8777299 1103.3357
+204140.0660302835 3.8778481 1103.3949
+204141.0660303878 3.8778086 1103.3555
+204142.0660304921 3.8778875 1103.2369
+204143.0660305964 3.8779662 1103.3555
+204144.0660307007 3.8778086 1103.316
+204145.066030805 3.8779268 1103.2963
+204146.0660309093 3.8779268 1103.3555
+204147.0660310136 3.8780055 1103.3949
+204148.0660311179 3.8779268 1103.316
+204149.0660312222 3.8780448 1103.2567
+204150.0660313265 3.8780842 1103.3752
+204151.0660314308 3.8779662 1103.2963
+204152.0660315352 3.8780842 1103.3555
+204153.0660316395 3.8781235 1103.4147
+204154.0660317438 3.8780055 1103.3555
+204155.0660318481 3.8780055 1103.4542
+204156.0660319524 3.8782024 1103.316
+204157.0660320567 3.8781631 1103.3357
+204158.066032161 3.8781631 1103.3949
+204159.0660322653 3.8781235 1103.3752
+204160.0660323696 3.8781235 1103.3752
+204161.0660324739 3.8782024 1103.3357
+204162.0660325782 3.8781631 1103.3555
+204163.0660326825 3.8782418 1103.2567
+204164.0660327869 3.8782418 1103.3949
+204165.0660328912 3.8782024 1103.2963
+204166.0660329955 3.8782024 1103.3357
+204167.0660330998 3.8783205 1103.316
+204168.0660332041 3.8783205 1103.316
+204169.0660333084 3.8782811 1103.3555
+204170.0660334127 3.8784385 1103.316
+204171.066033517 3.8783205 1103.3555
+204172.0660336213 3.8783991 1103.2765
+204173.0660337256 3.8783205 1103.3752
+204174.0660338299 3.8783991 1103.316
+204175.0660339342 3.8783991 1103.2963
+204176.0660340386 3.8785174 1103.3357
+204177.0660341429 3.8783991 1103.3555
+204178.0660342472 3.8784781 1103.3357
+204179.0660343515 3.8785567 1103.3555
+204180.0660344558 3.8785174 1103.4147
+204181.0660345601 3.8784781 1103.2765
+204182.0660346644 3.8786354 1103.2963
+204183.0660347687 3.8785174 1103.3555
+204184.066034873 3.8785567 1103.474
+204185.0660349773 3.8785567 1103.3555
+204186.0660350816 3.8785961 1103.2567
+204187.0660351859 3.8785567 1103.3555
+204188.0660352902 3.8785174 1103.3752
+204189.0660353946 3.8786354 1103.2765
+204190.0660354989 3.8785567 1103.3555
+204191.0660356032 3.8785961 1103.316
+204192.0660357075 3.8785961 1103.3555
+204193.0660358118 3.8786354 1103.316
+204194.0660359161 3.8787141 1103.316
+204195.0660360204 3.8786747 1103.3752
+204196.0660361247 3.8786747 1103.3555
+204197.066036229 3.8787534 1103.3555
+204198.0660363333 3.8787141 1103.3752
+204199.0660364376 3.8788323 1103.3357
+204200.0660365419 3.878793 1103.3949
+204201.0660366463 3.8787141 1103.4542
+204202.0660367506 3.8788323 1103.316
+204203.0660368549 3.8788323 1103.3752
+204204.0660369592 3.8788323 1103.3752
+204205.0660370635 3.8788323 1103.4344
+204206.0660371678 3.878911 1103.316
+204207.0660372721 3.8789504 1103.2765
+204208.0660373764 3.8789504 1103.4542
+204209.0660374807 3.878911 1103.3357
+204210.066037585 3.878911 1103.4147
+204211.0660376893 3.8789504 1103.3555
+204212.0660377936 3.879108 1103.3752
+204213.066037898 3.8789897 1103.316
+204214.0660380023 3.8789897 1103.2369
+204215.0660381066 3.8789504 1103.4542
+204216.0660382109 3.879108 1103.2963
+204217.0660383152 3.879029 1103.4147
+204218.0660384195 3.879029 1103.2963
+204219.0660385238 3.879029 1103.3555
+204220.0660386281 3.879108 1103.2765
+204221.0660387324 3.8790686 1103.4147
+204222.0660388367 3.8791473 1103.2567
+204223.066038941 3.8791473 1103.2963
+204224.0660390453 3.879108 1103.3357
+204225.0660391496 3.8791866 1103.3949
+204226.066039254 3.8791866 1103.4938
+204227.0660393583 3.879226 1103.4542
+204228.0660394626 3.8792653 1103.2765
+204229.0660395669 3.879226 1103.3752
+204230.0660396712 3.8793046 1103.3555
+204231.0660397755 3.8792653 1103.316
+204232.0660398798 3.879226 1103.3555
+204233.0660399841 3.8793046 1103.2963
+204234.0660400884 3.8793046 1103.3752
+204235.0660401927 3.8793836 1103.316
+204236.066040297 3.8793836 1103.3555
+204237.0660404013 3.879344 1103.3555
+204238.0660405057 3.879344 1103.3949
+204239.06604061 3.8793046 1103.316
+204240.0660407143 3.8793836 1103.3555
+204241.0660408186 3.8793836 1103.3949
+204242.0660409229 3.8795409 1103.2963
+204243.0660410272 3.8793836 1103.3555
+204244.0660411315 3.8795409 1103.2963
+204245.0660412358 3.8795409 1103.4147
+204246.0660413401 3.8794229 1103.4344
+204247.0660414444 3.8794622 1103.316
+204248.0660415487 3.8795803 1103.3752
+204249.066041653 3.8795016 1103.3752
+204250.0660417574 3.8795803 1103.3949
+204251.0660418617 3.8795803 1103.4542
+204252.066041966 3.8794229 1103.2963
+204253.0660420703 3.8796985 1103.3357
+204254.0660421746 3.8796196 1103.3949
+204255.0660422789 3.8796589 1103.316
+204256.0660423832 3.8796196 1103.2963
+204257.0660424875 3.8796985 1103.3357
+204258.0660425918 3.8796196 1103.3949
+204259.0660426961 3.8795803 1103.3752
+204260.0660428004 3.8796985 1103.3357
+204261.0660429047 3.8796985 1103.3555
+204262.0660430091 3.8796985 1103.3949
+204263.0660431134 3.8797379 1103.2963
+204264.0660432177 3.8798165 1103.3357
+204265.066043322 3.8798165 1103.3949
+204266.0660434263 3.8797772 1103.3949
+204267.0660435306 3.8798952 1103.3555
+204268.0660436349 3.8798165 1103.3357
+204269.0660437392 3.8798952 1103.3752
+204270.0660438435 3.8798559 1103.2765
+204271.0660439478 3.8799345 1103.4542
+204272.0660440521 3.8798165 1103.3752
+204273.0660441564 3.8799739 1103.3752
+204274.0660442607 3.8798952 1103.4542
+204275.0660443651 3.8798952 1103.3357
+204276.0660444694 3.8799345 1103.3949
+204277.0660445737 3.8800528 1103.2963
+204278.066044678 3.8800135 1103.316
+204279.0660447823 3.8799345 1103.3357
+204280.0660448866 3.8800135 1103.3752
+204281.0660449909 3.8800135 1103.2765
+204282.0660450952 3.8799739 1103.4147
+204283.0660451995 3.8800528 1103.3357
+204284.0660453038 3.8800528 1103.3752
+204285.0660454081 3.8800921 1103.3357
+204286.0660455124 3.8800528 1103.3752
+204287.0660456168 3.8801315 1103.2369
+204288.0660457211 3.8800921 1103.3752
+204289.0660458254 3.8801315 1103.3752
+204290.0660459297 3.8801708 1103.3357
+204291.066046034 3.8802495 1103.3949
+204292.0660461383 3.8801708 1103.316
+204293.0660462426 3.8802102 1103.2765
+204294.0660463469 3.8802102 1103.4147
+204295.0660464512 3.8802495 1103.3949
+204296.0660465555 3.8802102 1103.316
+204297.0660466598 3.8803678 1103.3752
+204298.0660467641 3.8802888 1103.316
+204299.0660468685 3.8802495 1103.3555
+204300.0660469728 3.8802102 1103.3357
+204301.0660470771 3.8802888 1103.316
+204302.0660471814 3.8804464 1103.3555
+204303.0660472857 3.8804071 1103.316
+204304.06604739 3.8802888 1103.2765
+204305.0660474943 3.8802495 1103.2963
+204306.0660475986 3.8803678 1103.3555
+204307.0660477029 3.8803678 1103.2963
+204308.0660478072 3.8804464 1103.3752
+204309.0660479115 3.8803678 1103.3357
+204310.0660480158 3.8804071 1103.316
+204311.0660481201 3.8805251 1103.316
+204312.0660482245 3.8805251 1103.316
+204313.0660483288 3.8804858 1103.3357
+204314.0660484331 3.8806434 1103.316
+204315.0660485374 3.8805251 1103.3555
+204316.0660486417 3.8806038 1103.3752
+204317.066048746 3.8805645 1103.3752
+204318.0660488503 3.8806434 1103.3357
+204319.0660489546 3.8805645 1103.4147
+204320.0660490589 3.8804858 1103.3357
+204321.0660491632 3.8806434 1103.3357
+204322.0660492675 3.8806827 1103.2963
+204323.0660493718 3.8806038 1103.3357
+204324.0660494762 3.8807614 1103.3357
+204325.0660495805 3.8806434 1103.2369
+204326.0660496848 3.8806827 1103.3555
+204327.0660497891 3.8807614 1103.3752
+204328.0660498934 3.8808007 1103.3555
+204329.0660499977 3.880722 1103.3752
+204330.066050102 3.880722 1103.3555
+204331.0660502063 3.8807614 1103.3949
+204332.0660503106 3.8808794 1103.3752
+204333.0660504149 3.8808007 1103.3357
+204334.0660505192 3.8808401 1103.3357
+204335.0660506235 3.8808007 1103.3555
+204336.0660507279 3.8808794 1103.316
+204337.0660508322 3.880919 1103.3357
+204338.0660509365 3.8808794 1103.3357
+204339.0660510408 3.880919 1103.3357
+204340.0660511451 3.8809583 1103.316
+204341.0660512494 3.8809977 1103.3949
+204342.0660513537 3.8809977 1103.2765
+204343.066051458 3.8809977 1103.2963
+204344.0660515623 3.880919 1103.4147
+204345.0660516666 3.8808794 1103.3949
+204346.0660517709 3.8810763 1103.3555
+204347.0660518752 3.8810763 1103.2963
+204348.0660519795 3.8810763 1103.2963
+204349.0660520839 3.8810763 1103.316
+204350.0660521882 3.8810763 1103.3949
+204351.0660522925 3.8811944 1103.2963
+204352.0660523968 3.881155 1103.2963
+204353.0660525011 3.8810763 1103.3357
+204354.0660526054 3.8811157 1103.316
+204355.0660527097 3.881155 1103.2567
+204356.066052814 3.8811944 1103.3357
+204357.0660529183 3.8812339 1103.316
+204358.0660530226 3.8811944 1103.316
+204359.0660531269 3.8811944 1103.3555
+204360.0660532312 3.8812733 1103.2963
+204361.0660533356 3.8811944 1103.3949
+204362.0660534399 3.8813519 1103.2567
+204363.0660535442 3.8813126 1103.3555
+204364.0660536485 3.8813519 1103.3357
+204365.0660537528 3.8813913 1103.3357
+204366.0660538571 3.88147 1103.3357
+204367.0660539614 3.8813519 1103.3357
+204368.0660540657 3.8813519 1103.3555
+204369.06605417 3.8813519 1103.316
+204370.0660542743 3.88147 1103.316
+204371.0660543786 3.8811944 1103.3357
+204372.0660544829 3.8814306 1103.3357
+204373.0660545873 3.8815093 1103.3555
+204374.0660546916 3.8815489 1103.3357
+204375.0660547959 3.8814306 1103.3357
+204376.0660549002 3.88147 1103.3357
+204377.0660550045 3.8815093 1103.4147
+204378.0660551088 3.8815489 1103.2963
+204379.0660552131 3.88147 1103.3949
+204380.0660553174 3.8815882 1103.2963
+204381.0660554217 3.8815489 1103.3555
+204382.066055526 3.8815489 1103.3949
+204383.0660556303 3.8815489 1103.3555
+204384.0660557346 3.8816276 1103.3949
+204385.066055839 3.8815882 1103.3752
+204386.0660559433 3.8816669 1103.4344
+204387.0660560476 3.8816276 1103.3357
+204388.0660561519 3.8816276 1103.3555
+204389.0660562562 3.8816669 1103.3555
+204390.0660563605 3.8816669 1103.3357
+204391.0660564648 3.8816669 1103.3555
+204392.0660565691 3.8816669 1103.3357
+204393.0660566734 3.8817062 1103.4147
+204394.0660567777 3.8817062 1103.3357
+204395.066056882 3.8817849 1103.3752
+204396.0660569863 3.8818243 1103.3949
+204397.0660570906 3.8818243 1103.2963
+204398.066057195 3.8817456 1103.3357
+204399.0660572993 3.8818638 1103.316
+204400.0660574036 3.8819032 1103.2963
+204401.0660575079 3.8817849 1103.2765
+204402.0660576122 3.8818638 1103.3752
+204403.0660577165 3.8819032 1103.2963
+204404.0660578208 3.8819818 1103.3357
+204405.0660579251 3.8819032 1103.4344
+204406.0660580294 3.8819818 1103.3357
+204407.0660581337 3.8819425 1103.3949
+204408.066058238 3.8819818 1103.316
+204409.0660583423 3.8819818 1103.316
+204410.0660584467 3.8819818 1103.2963
+204411.066058551 3.8819818 1103.2963
+204412.0660586553 3.8820212 1103.3357
+204413.0660587596 3.8819425 1103.2963
+204414.0660588639 3.8820999 1103.4147
+204415.0660589682 3.8820999 1103.2369
+204416.0660590725 3.8820999 1103.3949
+204417.0660591768 3.8822181 1103.4542
+204418.0660592811 3.8820605 1103.3752
+204419.0660593854 3.8820999 1103.3949
+204420.0660594897 3.8822181 1103.3949
+204421.066059594 3.8822575 1103.3752
+204422.0660596984 3.8822181 1103.4344
+204423.0660598027 3.8822575 1103.3555
+204424.066059907 3.8821788 1103.316
+204425.0660600113 3.8822968 1103.3949
+204426.0660601156 3.8822181 1103.3357
+204427.0660602199 3.8823361 1103.3949
+204428.0660603242 3.8823361 1103.3555
+204429.0660604285 3.8822968 1103.3752
+204430.0660605328 3.8823361 1103.4147
+204431.0660606371 3.8823755 1103.3357
+204432.0660607414 3.8823755 1103.2963
+204433.0660608457 3.8824542 1103.3949
+204434.06606095 3.8824937 1103.2963
+204435.0660610544 3.8823755 1103.3949
+204436.0660611587 3.8824542 1103.3949
+204437.066061263 3.8824148 1103.3752
+204438.0660613673 3.8824542 1103.316
+204439.0660614716 3.8824148 1103.316
+204440.0660615759 3.8824937 1103.3357
+204441.0660616802 3.8824937 1103.2765
+204442.0660617845 3.8825331 1103.3357
+204443.0660618888 3.8825331 1103.3555
+204444.0660619931 3.8826118 1103.3357
+204445.0660620974 3.8825331 1103.4147
+204446.0660622017 3.8826118 1103.3752
+204447.0660623061 3.8825724 1103.316
+204448.0660624104 3.8825331 1103.3949
+204449.0660625147 3.8826511 1103.2963
+204450.066062619 3.8826904 1103.3555
+204451.0660627233 3.8826511 1103.3949
+204452.0660628276 3.8826904 1103.316
+204453.0660629319 3.8826511 1103.316
+204454.0660630362 3.8826904 1103.3949
+204455.0660631405 3.8826511 1103.4344
+204456.0660632448 3.8827298 1103.3357
+204457.0660633491 3.8827298 1103.2765
+204458.0660634534 3.8828087 1103.3555
+204459.0660635578 3.882848 1103.3949
+204460.0660636621 3.8827693 1103.2567
+204461.0660637664 3.8828087 1103.3555
+204462.0660638707 3.8828087 1103.316
+204463.066063975 3.8828874 1103.2963
+204464.0660640793 3.8828087 1103.3752
+204465.0660641836 3.8828087 1103.2567
+204466.0660642879 3.8828087 1103.2567
+204467.0660643922 3.8828874 1103.4542
+204468.0660644965 3.8828874 1103.3752
+204469.0660646008 3.8828874 1103.3555
+204470.0660647051 3.8830054 1103.3949
+204471.0660648094 3.8828874 1103.2765
+204472.0660649138 3.882966 1103.4147
+204473.0660650181 3.8830054 1103.316
+204474.0660651224 3.882966 1103.316
+204475.0660652267 3.8830054 1103.3357
+204476.066065331 3.8830447 1103.3949
+204477.0660654353 3.8830054 1103.3555
+204478.0660655396 3.8830054 1103.4344
+204479.0660656439 3.8830447 1103.3357
+204480.0660657482 3.8830054 1103.3357
+204481.0660658525 3.883163 1103.3752
+204482.0660659568 3.8831236 1103.2765
+204483.0660660611 3.8831236 1103.2963
+204484.0660661655 3.8831236 1103.316
+204485.0660662698 3.8831236 1103.3357
+204486.0660663741 3.883163 1103.3949
+204487.0660664784 3.8832023 1103.3752
+204488.0660665827 3.8832417 1103.4147
+204489.066066687 3.8832023 1103.3555
+204490.0660667913 3.8832023 1103.3949
+204491.0660668956 3.883281 1103.3752
+204492.0660669999 3.883281 1103.3555
+204493.0660671042 3.8833992 1103.3949
+204494.0660672085 3.8833203 1103.3949
+204495.0660673128 3.8833597 1103.316
+204496.0660674172 3.8833597 1103.3949
+204497.0660675215 3.8833597 1103.3357
+204498.0660676258 3.8833597 1103.3949
+204499.0660677301 3.8833597 1103.4147
+204500.0660678344 3.8833203 1103.3357
+204501.0660679387 3.8834386 1103.3357
+204502.066068043 3.8833992 1103.2567
+204503.0660681473 3.8834386 1103.3555
+204504.0660682516 3.8833992 1103.4147
+204505.0660683559 3.8834386 1103.4344
+204506.0660684602 3.8834386 1103.4344
+204507.0660685645 3.8834779 1103.4147
+204508.0660686689 3.8835566 1103.2963
+204509.0660687732 3.8835566 1103.3752
+204510.0660688775 3.8835173 1103.4344
+204511.0660689818 3.8835566 1103.3357
+204512.0660690861 3.8835959 1103.2765
+204513.0660691904 3.8835959 1103.3555
+204514.0660692947 3.8836746 1103.3949
+204515.066069399 3.8835959 1103.3752
+204516.0660695033 3.8835566 1103.2963
+204517.0660696076 3.8836353 1103.2963
+204518.0660697119 3.8837142 1103.316
+204519.0660698162 3.8837142 1103.3555
+204520.0660699205 3.8837142 1103.3949
+204521.0660700249 3.8837142 1103.4147
+204522.0660701292 3.8838322 1103.2765
+204523.0660702335 3.8837535 1103.3357
+204524.0660703378 3.8837535 1103.3357
+204525.0660704421 3.8838716 1103.3357
+204526.0660705464 3.8837535 1103.3357
+204527.0660706507 3.8838322 1103.2765
+204528.066070755 3.8838716 1103.316
+204529.0660708593 3.8838716 1103.2963
+204530.0660709636 3.8839896 1103.3949
+204531.0660710679 3.8839502 1103.3949
+204532.0660711722 3.8837535 1103.3357
+204533.0660712766 3.8840292 1103.4938
+204534.0660713809 3.8839109 1103.2963
+204535.0660714852 3.8839502 1103.2765
+204536.0660715895 3.8838716 1103.3949
+204537.0660716938 3.8840292 1103.3752
+204538.0660717981 3.8839502 1103.3752
+204539.0660719024 3.8838716 1103.2765
+204540.0660720067 3.8840685 1103.3752
+204541.066072111 3.8840685 1103.3357
+204542.0660722153 3.8840292 1103.3555
+204543.0660723196 3.8840685 1103.2963
+204544.0660724239 3.8840685 1103.3949
+204545.0660725283 3.8841078 1103.316
+204546.0660726326 3.8841472 1103.3555
+204547.0660727369 3.8841078 1103.3949
+204548.0660728412 3.8841865 1103.316
+204549.0660729455 3.8842258 1103.3555
+204550.0660730498 3.8842258 1103.2963
+204551.0660731541 3.8841472 1103.3555
+204552.0660732584 3.8842652 1103.316
+204553.0660733627 3.8842258 1103.316
+204554.066073467 3.8841472 1103.3752
+204555.0660735713 3.8841472 1103.4147
+204556.0660736756 3.8842652 1103.2963
+204557.0660737799 3.8842652 1103.4542
+204558.0660738843 3.8843441 1103.3555
+204559.0660739886 3.8844621 1103.2963
+204560.0660740929 3.8843441 1103.3752
+204561.0660741972 3.8843441 1103.3357
+204562.0660743015 3.8843045 1103.3555
+204563.0660744058 3.8844621 1103.316
+204564.0660745101 3.8843834 1103.3752
+204565.0660746144 3.8845015 1103.3555
+204566.0660747187 3.8845015 1103.2765
+204567.066074823 3.8843441 1103.3752
+204568.0660749273 3.8844228 1103.316
+204569.0660750316 3.8845408 1103.3357
+204570.066075136 3.8844621 1103.2567
+204571.0660752403 3.8844621 1103.2567
+204572.0660753446 3.8845408 1103.2963
+204573.0660754489 3.8845801 1103.3357
+204574.0660755532 3.8844621 1103.3357
+204575.0660756575 3.8845801 1103.3752
+204576.0660757618 3.8846197 1103.3752
+204577.0660758661 3.8846197 1103.1777
+204578.0660759704 3.8845408 1103.3357
+204579.0660760747 3.8846591 1103.2567
+204580.066076179 3.8846591 1103.3357
+204581.0660762833 3.8846197 1103.316
+204582.0660763877 3.8848164 1103.3555
+204583.066076492 3.8847771 1103.3949
+204584.0660765963 3.8846984 1103.316
+204585.0660767006 3.8846591 1103.4147
+204586.0660768049 3.8847771 1103.316
+204587.0660769092 3.8846984 1103.2963
+204588.0660770135 3.8847377 1103.3752
+204589.0660771178 3.8848164 1103.3752
+204590.0660772221 3.8847377 1103.4147
+204591.0660773264 3.8847377 1103.3752
+204592.0660774307 3.8848951 1103.316
+204593.066077535 3.8848951 1103.2963
+204594.0660776393 3.8848951 1103.3949
+204595.0660777437 3.8848951 1103.3555
+204596.066077848 3.8849347 1103.2369
+204597.0660779523 3.8849347 1103.3949
+204598.0660780566 3.8850133 1103.316
+204599.0660781609 3.8849347 1103.2567
+204600.0660782652 3.8848951 1103.2567
+204601.0660783695 3.8850133 1103.3357
+204602.0660784738 3.8849347 1103.3555
+204603.0660785781 3.8850527 1103.3555
+204604.0660786824 3.885092 1103.3752
+204605.0660787867 3.8850133 1103.2963
+204606.066078891 3.8850527 1103.3555
+204607.0660789954 3.8850133 1103.2963
+204608.0660790997 3.8850133 1103.3752
+204609.066079204 3.8851707 1103.3357
+204610.0660793083 3.88521 1103.2963
+204611.0660794126 3.8851707 1103.3357
+204612.0660795169 3.8851707 1103.2963
+204613.0660796212 3.8852496 1103.3357
+204614.0660797255 3.88521 1103.3555
+204615.0660798298 3.8851707 1103.3357
+204616.0660799341 3.88521 1103.4344
+204617.0660800384 3.8852496 1103.316
+204618.0660801427 3.8851707 1103.4147
+204619.0660802471 3.8852496 1103.4147
+204620.0660803514 3.8853283 1103.3752
+204621.0660804557 3.8853676 1103.316
+204622.06608056 3.8853283 1103.3949
+204623.0660806643 3.8852496 1103.2765
+204624.0660807686 3.8853283 1103.3752
+204625.0660808729 3.8853283 1103.3949
+204626.0660809772 3.885407 1103.3555
+204627.0660810815 3.8853283 1103.2963
+204628.0660811858 3.885525 1103.316
+204629.0660812901 3.885407 1103.3752
+204630.0660813944 3.8854856 1103.3555
+204631.0660814988 3.885407 1103.3555
+204632.0660816031 3.8854463 1103.3752
+204633.0660817074 3.8854856 1103.2963
+204634.0660818117 3.8854463 1103.316
+204635.066081916 3.885525 1103.2963
+204636.0660820203 3.885407 1103.2765
+204637.0660821246 3.885525 1103.3357
+204638.0660822289 3.885525 1103.3357
+204639.0660823332 3.885525 1103.3555
+204640.0660824375 3.8856039 1103.3752
+204641.0660825418 3.8856432 1103.3752
+204642.0660826461 3.8856826 1103.3752
+204643.0660827504 3.8855646 1103.3357
+204644.0660828548 3.8856826 1103.3357
+204645.0660829591 3.8856826 1103.2765
+204646.0660830634 3.8857219 1103.316
+204647.0660831677 3.8858006 1103.3555
+204648.066083272 3.8856826 1103.316
+204649.0660833763 3.8858006 1103.3357
+204650.0660834806 3.8856826 1103.3555
+204651.0660835849 3.8858399 1103.316
+204652.0660836892 3.8858006 1103.4147
+204653.0660837935 3.8858399 1103.2765
+204654.0660838978 3.8858006 1103.316
+204655.0660840021 3.8859189 1103.3357
+204656.0660841065 3.8858795 1103.4344
+204657.0660842108 3.8858399 1103.2963
+204658.0660843151 3.8859189 1103.3357
+204659.0660844194 3.8857613 1103.3752
+204660.0660845237 3.8858795 1103.3752
+204661.066084628 3.8859582 1103.316
+204662.0660847323 3.8858399 1103.3555
+204663.0660848366 3.8859582 1103.3949
+204664.0660849409 3.8859975 1103.2963
+204665.0660850452 3.8859582 1103.2963
+204666.0660851495 3.8860762 1103.3949
+204667.0660852538 3.8859582 1103.3357
+204668.0660853582 3.8860369 1103.474
+204669.0660854625 3.8860762 1103.3555
+204670.0660855668 3.8860369 1103.3752
+204671.0660856711 3.8860762 1103.316
+204672.0660857754 3.8860369 1103.316
+204673.0660858797 3.8861551 1103.316
+204674.066085984 3.8860762 1103.4344
+204675.0660860883 3.8861156 1103.3555
+204676.0660861926 3.8861156 1103.3555
+204677.0660862969 3.8861156 1103.3949
+204678.0660864012 3.8861551 1103.316
+204679.0660865055 3.8860369 1103.3555
+204680.0660866098 3.8862731 1103.3357
+204681.0660867142 3.8862731 1103.3752
+204682.0660868185 3.8861945 1103.3555
+204683.0660869228 3.8862731 1103.2765
+204684.0660870271 3.8861945 1103.4344
+204685.0660871314 3.8862731 1103.3357
+204686.0660872357 3.8863125 1103.3949
+204687.06608734 3.8862731 1103.3555
+204688.0660874443 3.8863125 1103.3555
+204689.0660875486 3.8863125 1103.3752
+204690.0660876529 3.8864305 1103.3752
+204691.0660877572 3.8864305 1103.2567
+204692.0660878615 3.8864701 1103.2765
+204693.0660879659 3.8863518 1103.316
+204694.0660880702 3.8864701 1103.3357
+204695.0660881745 3.8863125 1103.3949
+204696.0660882788 3.8863912 1103.3752
+204697.0660883831 3.8864305 1103.3555
+204698.0660884874 3.8865094 1103.316
+204699.0660885917 3.8866668 1103.3949
+204700.066088696 3.8865881 1103.4147
+204701.0660888003 3.8865881 1103.2765
+204702.0660889046 3.8865488 1103.3555
+204703.0660890089 3.8864305 1103.3555
+204704.0660891132 3.8865488 1103.3555
+204705.0660892176 3.8866274 1103.3555
+204706.0660893219 3.8866668 1103.2765
+204707.0660894262 3.8865881 1103.3357
+204708.0660895305 3.8865488 1103.3949
+204709.0660896348 3.8866668 1103.4147
+204710.0660897391 3.8866668 1103.3357
+204711.0660898434 3.8866668 1103.3949
+204712.0660899477 3.8865881 1103.3357
+204713.066090052 3.8867061 1103.3555
+204714.0660901563 3.886785 1103.3357
+204715.0660902606 3.8867455 1103.2567
+204716.0660903649 3.886785 1103.3357
+204717.0660904692 3.8866668 1103.316
+204718.0660905736 3.886785 1103.3357
+204719.0660906779 3.8868244 1103.3357
+204720.0660907822 3.8868637 1103.3752
+204721.0660908865 3.8868244 1103.3555
+204722.0660909908 3.886903 1103.3357
+204723.0660910951 3.8868637 1103.3357
+204724.0660911994 3.886903 1103.3357
+204725.0660913037 3.8868637 1103.3357
+204726.066091408 3.8869817 1103.3357
+204727.0660915123 3.8868637 1103.2963
+204728.0660916166 3.886903 1103.3555
+204729.0660917209 3.8869817 1103.316
+204730.0660918253 3.8870211 1103.3949
+204731.0660919296 3.8870604 1103.3752
+204732.0660920339 3.8870211 1103.3949
+204733.0660921382 3.8870604 1103.4147
+204734.0660922425 3.8869817 1103.3555
+204735.0660923468 3.8871393 1103.3555
+204736.0660924511 3.8871393 1103.3357
+204737.0660925554 3.8870604 1103.3357
+204738.0660926597 3.8871787 1103.316
+204739.066092764 3.8871393 1103.316
+204740.0660928683 3.8871787 1103.3752
+204741.0660929726 3.8872573 1103.3752
+204742.066093077 3.8871787 1103.3555
+204743.0660931813 3.8871393 1103.3555
+204744.0660932856 3.887218 1103.3752
+204745.0660933899 3.8872967 1103.4542
+204746.0660934942 3.887218 1103.316
+204747.0660935985 3.8872573 1103.3555
+204748.0660937028 3.8872573 1103.3357
+204749.0660938071 3.887218 1103.2963
+204750.0660939114 3.8873754 1103.4147
+204751.0660940157 3.887336 1103.3949
+204752.06609412 3.887336 1103.2963
+204753.0660942243 3.8873754 1103.3752
+204754.0660943286 3.887336 1103.316
+204755.066094433 3.887336 1103.3949
+204756.0660945373 3.887336 1103.2765
+204757.0660946416 3.8874543 1103.4147
+204758.0660947459 3.8874543 1103.3357
+204759.0660948502 3.8874543 1103.4147
+204760.0660949545 3.8873754 1103.316
+204761.0660950588 3.8872967 1103.3555
+204762.0660951631 3.8874936 1103.3752
+204763.0660952674 3.8874936 1103.2765
+204764.0660953717 3.8874543 1103.2567
+204765.066095476 3.8875329 1103.3357
+204766.0660955803 3.8875723 1103.316
+204767.0660956847 3.8876116 1103.4542
+204768.066095789 3.8874543 1103.4344
+204769.0660958933 3.8876116 1103.3555
+204770.0660959976 3.8875329 1103.316
+204771.0660961019 3.8877299 1103.3555
+204772.0660962062 3.887651 1103.3555
+204773.0660963105 3.887651 1103.2765
+204774.0660964148 3.8876903 1103.3357
+204775.0660965191 3.8876903 1103.316
+204776.0660966234 3.8876903 1103.3357
+204777.0660967277 3.8877299 1103.3357
+204778.066096832 3.8876903 1103.3752
+204779.0660969364 3.8876903 1103.3752
+204780.0660970407 3.8878872 1103.3357
+204781.066097145 3.8878872 1103.316
+204782.0660972493 3.8878872 1103.3357
+204783.0660973536 3.8878086 1103.3357
+204784.0660974579 3.8878086 1103.2963
+204785.0660975622 3.8878479 1103.3357
+204786.0660976665 3.8878086 1103.3357
+204787.0660977708 3.8878872 1103.3949
+204788.0660978751 3.8878872 1103.3752
+204789.0660979794 3.8879659 1103.3555
+204790.0660980837 3.8878872 1103.4147
+204791.0660981881 3.8880055 1103.3752
+204792.0660982924 3.8880055 1103.2765
+204793.0660983967 3.8879659 1103.316
+204794.066098501 3.8880448 1103.2765
+204795.0660986053 3.8880055 1103.3752
+204796.0660987096 3.8880842 1103.316
+204797.0660988139 3.8880448 1103.2765
+204798.0660989182 3.8879266 1103.316
+204799.0660990225 3.8880448 1103.3555
+204800.0660991268 3.8881235 1103.3357
+204801.0660992311 3.8880448 1103.2765
+204802.0660993354 3.8880055 1103.2567
+204803.0660994397 3.8881235 1103.316
+204804.0660995441 3.8881235 1103.3752
+204805.0660996484 3.8881629 1103.2765
+204806.0660997527 3.8880842 1103.2765
+204807.066099857 3.8880842 1103.3752
+204808.0660999613 3.8881629 1103.3555
+204809.0661000656 3.8882415 1103.316
+204810.0661001699 3.8882022 1103.3555
+204811.0661002742 3.8883204 1103.3357
+204812.0661003785 3.8881629 1103.316
+204813.0661004828 3.8882809 1103.2963
+204814.0661005871 3.8882809 1103.3555
+204815.0661006914 3.8884385 1103.2963
+204816.0661007958 3.8883598 1103.3357
+204817.0661009001 3.8883204 1103.2963
+204818.0661010044 3.8883991 1103.4344
+204819.0661011087 3.8883204 1103.4147
+204820.066101213 3.8883598 1103.3752
+204821.0661013173 3.8883598 1103.3949
+204822.0661014216 3.8884778 1103.3949
+204823.0661015259 3.8883598 1103.4344
+204824.0661016302 3.8885171 1103.3555
+204825.0661017345 3.8884385 1103.3752
+204826.0661018388 3.8885565 1103.3555
+204827.0661019431 3.8884778 1103.316
+204828.0661020475 3.8885958 1103.3555
+204829.0661021518 3.8885565 1103.2567
+204830.0661022561 3.8886354 1103.3555
+204831.0661023604 3.8886354 1103.2963
+204832.0661024647 3.8885958 1103.3555
+204833.066102569 3.8886747 1103.2567
+204834.0661026733 3.8885958 1103.3555
+204835.0661027776 3.8885958 1103.4147
+204836.0661028819 3.8886354 1103.316
+204837.0661029862 3.8887141 1103.3555
+204838.0661030905 3.8887928 1103.2765
+204839.0661031948 3.8887534 1103.3949
+204840.0661032991 3.8887534 1103.3357
+204841.0661034035 3.8887141 1103.3752
+204842.0661035078 3.8887534 1103.316
+204843.0661036121 3.8887534 1103.3752
+204844.0661037164 3.8887534 1103.316
+204845.0661038207 3.8888321 1103.4344
+204846.066103925 3.8887534 1103.3555
+204847.0661040293 3.8888321 1103.2963
+204848.0661041336 3.8889503 1103.3357
+204849.0661042379 3.8888714 1103.3555
+204850.0661043422 3.8888714 1103.3752
+204851.0661044465 3.8889108 1103.3752
+204852.0661045508 3.8889897 1103.2765
+204853.0661046552 3.8888714 1103.316
+204854.0661047595 3.8889897 1103.3752
+204855.0661048638 3.8889503 1103.3555
+204856.0661049681 3.8889503 1103.3357
+204857.0661050724 3.8889503 1103.4344
+204858.0661051767 3.8889503 1103.316
+204859.066105281 3.8891864 1103.3752
+204860.0661053853 3.8889108 1103.3555
+204861.0661054896 3.8890684 1103.3949
+204862.0661055939 3.8890684 1103.3752
+204863.0661056982 3.8889897 1103.3555
+204864.0661058025 3.8889897 1103.3752
+204865.0661059069 3.8890684 1103.4147
+204866.0661060112 3.889147 1103.316
+204867.0661061155 3.8891077 1103.3357
+204868.0661062198 3.8890684 1103.3752
+204869.0661063241 3.8890684 1103.3555
+204870.0661064284 3.8892257 1103.2963
+204871.0661065327 3.8890684 1103.2963
+204872.066106637 3.8892257 1103.2963
+204873.0661067413 3.8891864 1103.3752
+204874.0661068456 3.8891864 1103.316
+204875.0661069499 3.889344 1103.3357
+204876.0661070542 3.8893046 1103.2765
+204877.0661071585 3.8893046 1103.3555
+204878.0661072629 3.8894227 1103.3555
+204879.0661073672 3.8893046 1103.2963
+204880.0661074715 3.8894227 1103.2963
+204881.0661075758 3.8893046 1103.4344
+204882.0661076801 3.8893046 1103.3752
+204883.0661077844 3.8893833 1103.316
+204884.0661078887 3.8894227 1103.3949
+204885.066107993 3.8893833 1103.4147
+204886.0661080973 3.8893833 1103.316
+204887.0661082016 3.8894227 1103.316
+204888.0661083059 3.8895013 1103.3357
+204889.0661084102 3.8894227 1103.3752
+204890.0661085146 3.889462 1103.3949
+204891.0661086189 3.8894227 1103.3949
+204892.0661087232 3.8895013 1103.3752
+204893.0661088275 3.889462 1103.2765
+204894.0661089318 3.8896196 1103.4147
+204895.0661090361 3.8896196 1103.3949
+204896.0661091404 3.8895013 1103.3752
+204897.0661092447 3.8895802 1103.3357
+204898.066109349 3.8895407 1103.2765
+204899.0661094533 3.8895802 1103.2963
+204900.0661095576 3.8895802 1103.3357
+204901.0661096619 3.8896589 1103.2765
+204902.0661097663 3.8895802 1103.3752
+204903.0661098706 3.8896589 1103.2963
+204904.0661099749 3.8896589 1103.3555
+204905.0661100792 3.8896983 1103.3357
+204906.0661101835 3.8897769 1103.4344
+204907.0661102878 3.8898163 1103.4344
+204908.0661103921 3.8898559 1103.316
+204909.0661104964 3.8896983 1103.3949
+204910.0661106007 3.8897376 1103.3555
+204911.066110705 3.8898559 1103.4542
+204912.0661108093 3.8898952 1103.2963
+204913.0661109136 3.8899345 1103.3949
+204914.066111018 3.8898952 1103.316
+204915.0661111223 3.8898952 1103.2963
+204916.0661112266 3.8898559 1103.3357
+204917.0661113309 3.8899345 1103.316
+204918.0661114352 3.8898952 1103.3752
+204919.0661115395 3.8900132 1103.2765
+204920.0661116438 3.8899739 1103.2765
+204921.0661117481 3.8900526 1103.3949
+204922.0661118524 3.8899345 1103.3752
+204923.0661119567 3.8898952 1103.3357
+204924.066112061 3.8900526 1103.316
+204925.0661121653 3.8900526 1103.3752
+204926.0661122696 3.8900526 1103.3752
+204927.066112374 3.8901708 1103.2567
+204928.0661124783 3.8900919 1103.3555
+204929.0661125826 3.8900919 1103.2369
+204930.0661126869 3.8899739 1103.3752
+204931.0661127912 3.8900919 1103.316
+204932.0661128955 3.8901312 1103.3357
+204933.0661129998 3.8902102 1103.3357
+204934.0661131041 3.8901312 1103.3357
+204935.0661132084 3.8902102 1103.3357
+204936.0661133127 3.8902888 1103.2765
+204937.066113417 3.8902102 1103.3357
+204938.0661135213 3.8902495 1103.4344
+204939.0661136257 3.8902495 1103.3357
+204940.06611373 3.8903282 1103.3752
+204941.0661138343 3.8902888 1103.3752
+204942.0661139386 3.8902495 1103.3752
+204943.0661140429 3.8902888 1103.3555
+204944.0661141472 3.8904462 1103.2765
+204945.0661142515 3.8904068 1103.2765
+204946.0661143558 3.8904462 1103.3357
+204947.0661144601 3.8903282 1103.4344
+204948.0661145644 3.8904858 1103.2963
+204949.0661146687 3.8903675 1103.316
+204950.066114773 3.8904462 1103.3357
+204951.0661148774 3.8904858 1103.3949
+204952.0661149817 3.8904068 1103.3555
+204953.066115086 3.8904462 1103.3752
+204954.0661151903 3.8905251 1103.3555
+204955.0661152946 3.8905644 1103.2765
+204956.0661153989 3.8905251 1103.316
+204957.0661155032 3.8905644 1103.3357
+204958.0661156075 3.8906825 1103.4344
+204959.0661157118 3.8906431 1103.3949
+204960.0661158161 3.8906431 1103.2765
+204961.0661159204 3.8904858 1103.2765
+204962.0661160247 3.8905644 1103.3752
+204963.066116129 3.8905644 1103.3555
+204964.0661162334 3.8906825 1103.3949
+204965.0661163377 3.8907218 1103.4147
+204966.066116442 3.8906825 1103.3555
+204967.0661165463 3.8906825 1103.3555
+204968.0661166506 3.8907218 1103.2567
+204969.0661167549 3.8908401 1103.3555
+204970.0661168592 3.8907218 1103.316
+204971.0661169635 3.8907611 1103.2765
+204972.0661170678 3.8908007 1103.3555
+204973.0661171721 3.8907611 1103.2963
+204974.0661172764 3.8908007 1103.4147
+204975.0661173807 3.8908401 1103.3357
+204976.0661174851 3.8908007 1103.316
+204977.0661175894 3.8908007 1103.3357
+204978.0661176937 3.8909581 1103.3949
+204979.066117798 3.8907611 1103.3555
+204980.0661179023 3.8908401 1103.2172
+204981.0661180066 3.8909187 1103.3357
+204982.0661181109 3.8909974 1103.3555
+204983.0661182152 3.8908794 1103.3357
+204984.0661183195 3.8909974 1103.3752
+204985.0661184238 3.8909974 1103.4147
+204986.0661185281 3.8910367 1103.3555
+204987.0661186324 3.8910367 1103.3555
+204988.0661187368 3.8911157 1103.3752
+204989.0661188411 3.891155 1103.3357
+204990.0661189454 3.8910367 1103.3752
+204991.0661190497 3.8909974 1103.3949
+204992.066119154 3.8910367 1103.3949
+204993.0661192583 3.8910761 1103.3949
+204994.0661193626 3.8911943 1103.3555
+204995.0661194669 3.8911943 1103.3949
+204996.0661195712 3.8911943 1103.3949
+204997.0661196755 3.891155 1103.2765
+204998.0661197798 3.8911157 1103.3357
+204999.0661198841 3.8912337 1103.316
+205000.0661199884 3.891273 1103.3949
+205001.0661200928 3.891391 1103.3752
+205002.0661201971 3.8913124 1103.2765
+205003.0661203014 3.8911943 1103.3752
+205004.0661204057 3.891273 1103.3357
+205005.06612051 3.891391 1103.2963
+205006.0661206143 3.8913517 1103.3949
+205007.0661207186 3.8913517 1103.3949
+205008.0661208229 3.8913517 1103.3555
+205009.0661209272 3.8913124 1103.3752
+205010.0661210315 3.8913517 1103.3555
+205011.0661211358 3.8915093 1103.2963
+205012.0661212401 3.891391 1103.316
+205013.0661213445 3.8913124 1103.4344
+205014.0661214488 3.89147 1103.3752
+205015.0661215531 3.8914306 1103.3949
+205016.0661216574 3.8915093 1103.3949
+205017.0661217617 3.89147 1103.3949
+205018.066121866 3.89147 1103.2963
+205019.0661219703 3.8915093 1103.316
+205020.0661220746 3.8915093 1103.3357
+205021.0661221789 3.8915486 1103.3357
+205022.0661222832 3.891588 1103.3949
+205023.0661223875 3.8916273 1103.3949
+205024.0661224918 3.8915093 1103.3949
+205025.0661225962 3.8916667 1103.3752
+205026.0661227005 3.8917062 1103.3555
+205027.0661228048 3.8916667 1103.4344
+205028.0661229091 3.8916667 1103.3555
+205029.0661230134 3.8917456 1103.3949
+205030.0661231177 3.8917456 1103.3357
+205031.066123222 3.8917456 1103.3752
+205032.0661233263 3.8917849 1103.316
+205033.0661234306 3.8916667 1103.316
+205034.0661235349 3.8917062 1103.4542
+205035.0661236392 3.8917456 1103.3555
+205036.0661237435 3.8917849 1103.4147
+205037.0661238479 3.8916273 1103.3555
+205038.0661239522 3.8917849 1103.3555
+205039.0661240565 3.8918242 1103.3555
+205040.0661241608 3.8917456 1103.316
+205041.0661242651 3.8918636 1103.3949
+205042.0661243694 3.8918636 1103.3357
+205043.0661244737 3.8918636 1103.3555
+205044.066124578 3.8919423 1103.3357
+205045.0661246823 3.8920605 1103.2963
+205046.0661247866 3.8919423 1103.3555
+205047.0661248909 3.8919816 1103.3357
+205048.0661249952 3.8919423 1103.3555
+205049.0661250995 3.8919816 1103.3555
+205050.0661252039 3.8920212 1103.3949
+205051.0661253082 3.8919816 1103.316
+205052.0661254125 3.8920212 1103.3949
+205053.0661255168 3.8920212 1103.3555
+205054.0661256211 3.8920605 1103.316
+205055.0661257254 3.8920999 1103.316
+205056.0661258297 3.8921785 1103.3752
+205057.066125934 3.8921785 1103.3949
+205058.0661260383 3.8920999 1103.4147
+205059.0661261426 3.8921392 1103.2963
+205060.0661262469 3.8922572 1103.3555
+205061.0661263512 3.8921785 1103.2963
+205062.0661264556 3.8921392 1103.316
+205063.0661265599 3.8922572 1103.316
+205064.0661266642 3.8922179 1103.3555
+205065.0661267685 3.8921785 1103.3555
+205066.0661268728 3.8922179 1103.3752
+205067.0661269771 3.8922572 1103.3752
+205068.0661270814 3.8923361 1103.3949
+205069.0661271857 3.8923361 1103.4542
+205070.06612729 3.8922966 1103.2567
+205071.0661273943 3.8923361 1103.3555
+205072.0661274986 3.8924148 1103.2963
+205073.0661276029 3.8923755 1103.3357
+205074.0661277073 3.8923755 1103.3949
+205075.0661278116 3.8923755 1103.3949
+205076.0661279159 3.8924541 1103.316
+205077.0661280202 3.8924541 1103.4147
+205078.0661281245 3.8924541 1103.316
+205079.0661282288 3.8925722 1103.4147
+205080.0661283331 3.8925722 1103.3357
+205081.0661284374 3.8923755 1103.316
+205082.0661285417 3.8924541 1103.3752
+205083.066128646 3.8924148 1103.316
+205084.0661287503 3.8925722 1103.4147
+205085.0661288546 3.8925328 1103.4147
+205086.0661289589 3.8924935 1103.3357
+205087.0661290633 3.8925722 1103.2963
+205088.0661291676 3.8925722 1103.3949
+205089.0661292719 3.8925722 1103.316
+205090.0661293762 3.8926511 1103.3357
+205091.0661294805 3.8926115 1103.3555
+205092.0661295848 3.8926115 1103.316
+205093.0661296891 3.8926904 1103.2172
+205094.0661297934 3.8927691 1103.3555
+205095.0661298977 3.8928871 1103.3555
+205096.066130002 3.8926904 1103.3555
+205097.0661301063 3.8926115 1103.4542
+205098.0661302106 3.8927298 1103.3357
+205099.066130315 3.8926904 1103.316
+205100.0661304193 3.8927298 1103.2765
+205101.0661305236 3.8927691 1103.2963
+205102.0661306279 3.8928871 1103.3752
+205103.0661307322 3.8927691 1103.3357
+205104.0661308365 3.8928478 1103.3752
+205105.0661309408 3.8928871 1103.3555
+205106.0661310451 3.8929265 1103.3357
+205107.0661311494 3.892966 1103.2963
+205108.0661312537 3.8928871 1103.3357
+205109.066131358 3.8929265 1103.2963
+205110.0661314623 3.8930447 1103.3949
+205111.0661315667 3.893084 1103.3555
+205112.066131671 3.8929265 1103.3752
+205113.0661317753 3.8930447 1103.3357
+205114.0661318796 3.892966 1103.316
+205115.0661319839 3.8930054 1103.3357
+205116.0661320882 3.8930447 1103.3555
+205117.0661321925 3.893084 1103.316
+205118.0661322968 3.8930447 1103.2963
+205119.0661324011 3.8930054 1103.3752
+205120.0661325054 3.892966 1103.4147
+205121.0661326097 3.8931234 1103.3752
+205122.066132714 3.8932414 1103.3357
+205123.0661328183 3.8931234 1103.2369
+205124.0661329227 3.8931627 1103.4147
+205125.066133027 3.8931234 1103.3949
+205126.0661331313 3.8931234 1103.3752
+205127.0661332356 3.8931627 1103.3555
+205128.0661333399 3.8931627 1103.3949
+205129.0661334442 3.8932021 1103.3752
+205130.0661335485 3.8932414 1103.3752
+205131.0661336528 3.8932021 1103.2765
+205132.0661337571 3.8933597 1103.3752
+205133.0661338614 3.8932414 1103.4542
+205134.0661339657 3.8933597 1103.2765
+205135.06613407 3.8933597 1103.4344
+205136.0661341744 3.893281 1103.3357
+205137.0661342787 3.893399 1103.2963
+205138.066134383 3.893517 1103.2963
+205139.0661344873 3.893517 1103.4147
+205140.0661345916 3.8934383 1103.2765
+205141.0661346959 3.893517 1103.3752
+205142.0661348002 3.8934383 1103.4344
+205143.0661349045 3.893399 1103.2765
+205144.0661350088 3.8934383 1103.3555
+205145.0661351131 3.893517 1103.3949
+205146.0661352174 3.8934383 1103.4344
+205147.0661353217 3.893399 1103.3357
+205148.0661354261 3.8935566 1103.316
+205149.0661355304 3.8936353 1103.474
+205150.0661356347 3.8935959 1103.2765
+205151.066135739 3.8936353 1103.3357
+205152.0661358433 3.8936353 1103.4147
+205153.0661359476 3.8935959 1103.316
+205154.0661360519 3.8935566 1103.2765
+205155.0661361562 3.8935959 1103.316
+205156.0661362605 3.8936353 1103.3555
+205157.0661363648 3.893714 1103.3555
+205158.0661364691 3.8936746 1103.316
+205159.0661365734 3.8937926 1103.3949
+205160.0661366777 3.893832 1103.316
+205161.0661367821 3.8937533 1103.2963
+205162.0661368864 3.893714 1103.2963
+205163.0661369907 3.893832 1103.4344
+205164.066137095 3.8938715 1103.316
+205165.0661371993 3.8937926 1103.3752
+205166.0661373036 3.893832 1103.3752
+205167.0661374079 3.8938715 1103.4147
+205168.0661375122 3.893832 1103.3357
+205169.0661376165 3.893832 1103.3555
+205170.0661377208 3.8939109 1103.3752
+205171.0661378251 3.8938715 1103.3752
+205172.0661379294 3.8939502 1103.316
+205173.0661380338 3.893832 1103.4147
+205174.0661381381 3.8937926 1103.3357
+205175.0661382424 3.8938715 1103.3555
+205176.0661383467 3.8939109 1103.316
+205177.066138451 3.8939502 1103.3752
+205178.0661385553 3.8939896 1103.3949
+205179.0661386596 3.8941076 1103.2963
+205180.0661387639 3.8940682 1103.4147
+205181.0661388682 3.8941469 1103.3949
+205182.0661389725 3.8941076 1103.316
+205183.0661390768 3.8941076 1103.4344
+205184.0661391811 3.8939896 1103.3357
+205185.0661392855 3.8941865 1103.3555
+205186.0661393898 3.8941469 1103.316
+205187.0661394941 3.8941076 1103.3357
+205188.0661395984 3.8941076 1103.2963
+205189.0661397027 3.8942652 1103.2963
+205190.066139807 3.8941865 1103.3949
+205191.0661399113 3.8942258 1103.316
+205192.0661400156 3.8942258 1103.3555
+205193.0661401199 3.8941865 1103.3357
+205194.0661402242 3.8942258 1103.3949
+205195.0661403285 3.8943439 1103.4147
+205196.0661404328 3.8942652 1103.2963
+205197.0661405372 3.8943832 1103.316
+205198.0661406415 3.8943045 1103.2765
+205199.0661407458 3.8941865 1103.3555
+205200.0661408501 3.8943832 1103.316
+205201.0661409544 3.8942652 1103.3357
+205202.0661410587 3.8944225 1103.2963
+205203.066141163 3.8944225 1103.3949
+205204.0661412673 3.8944225 1103.3555
+205205.0661413716 3.8944225 1103.3357
+205206.0661414759 3.8944619 1103.2963
+205207.0661415802 3.8944619 1103.3555
+205208.0661416845 3.8944225 1103.3357
+205209.0661417888 3.8945014 1103.316
+205210.0661418932 3.8945408 1103.2567
+205211.0661419975 3.8945014 1103.3949
+205212.0661421018 3.8946195 1103.4147
+205213.0661422061 3.8945801 1103.3555
+205214.0661423104 3.8945014 1103.3555
+205215.0661424147 3.8946195 1103.3555
+205216.066142519 3.8945408 1103.3949
+205217.0661426233 3.8946588 1103.4147
+205218.0661427276 3.8946588 1103.316
+205219.0661428319 3.8945801 1103.3357
+205220.0661429362 3.8946981 1103.3357
+205221.0661430405 3.8946981 1103.3555
+205222.0661431449 3.8946981 1103.4344
+205223.0661432492 3.8947375 1103.2963
+205224.0661433535 3.8948557 1103.3555
+205225.0661434578 3.8946588 1103.3555
+205226.0661435621 3.8947375 1103.3555
+205227.0661436664 3.8948164 1103.2765
+205228.0661437707 3.8948164 1103.3752
+205229.066143875 3.8948164 1103.3949
+205230.0661439793 3.8948557 1103.3555
+205231.0661440836 3.8947768 1103.3357
+205232.0661441879 3.8949344 1103.2567
+205233.0661442922 3.8948951 1103.3555
+205234.0661443966 3.8949738 1103.316
+205235.0661445009 3.8949344 1103.3357
+205236.0661446052 3.8949738 1103.3555
+205237.0661447095 3.8949344 1103.3357
+205238.0661448138 3.8950524 1103.316
+205239.0661449181 3.8949344 1103.3752
+205240.0661450224 3.8949738 1103.316
+205241.0661451267 3.8949738 1103.4344
+205242.066145231 3.895092 1103.3949
+205243.0661453353 3.8950524 1103.3357
+205244.0661454396 3.8950131 1103.3555
+205245.0661455439 3.8950131 1103.3949
+205246.0661456482 3.8950131 1103.3555
+205247.0661457526 3.895092 1103.3555
+205248.0661458569 3.8951707 1103.316
+205249.0661459612 3.8951313 1103.2765
+205250.0661460655 3.89521 1103.316
+205251.0661461698 3.8951313 1103.2765
+205252.0661462741 3.89521 1103.2567
+205253.0661463784 3.8952494 1103.2963
+205254.0661464827 3.8951707 1103.2567
+205255.066146587 3.8951313 1103.2963
+205256.0661466913 3.895328 1103.2963
+205257.0661467956 3.8952494 1103.3752
+205258.0661468999 3.89521 1103.3752
+205259.0661470043 3.895407 1103.3555
+205260.0661471086 3.895328 1103.3357
+205261.0661472129 3.8953674 1103.3752
+205262.0661473172 3.8953674 1103.316
+205263.0661474215 3.8952887 1103.4147
+205264.0661475258 3.8953674 1103.4542
+205265.0661476301 3.895407 1103.3752
+205266.0661477344 3.8953674 1103.316
+205267.0661478387 3.895407 1103.2765
+205268.066147943 3.8954463 1103.3555
+205269.0661480473 3.8953674 1103.3752
+205270.0661481516 3.895407 1103.4147
+205271.066148256 3.8954856 1103.316
+205272.0661483603 3.8953674 1103.316
+205273.0661484646 3.895525 1103.3357
+205274.0661485689 3.8954856 1103.3555
+205275.0661486732 3.895525 1103.316
+205276.0661487775 3.895643 1103.3752
+205277.0661488818 3.8957219 1103.316
+205278.0661489861 3.895643 1103.2567
+205279.0661490904 3.895643 1103.1975
+205280.0661491947 3.895643 1103.3752
+205281.066149299 3.8955643 1103.3357
+205282.0661494033 3.8956037 1103.3752
+205283.0661495076 3.8956823 1103.316
+205284.066149612 3.895643 1103.3357
+205285.0661497163 3.8956823 1103.2765
+205286.0661498206 3.895643 1103.316
+205287.0661499249 3.8958006 1103.2963
+205288.0661500292 3.8958399 1103.3357
+205289.0661501335 3.8957219 1103.3949
+205290.0661502378 3.8958399 1103.3752
+205291.0661503421 3.8956823 1103.3949
+205292.0661504464 3.8957613 1103.3357
+205293.0661505507 3.8959186 1103.316
+205294.066150655 3.8959186 1103.3752
+205295.0661507593 3.8958006 1103.3357
+205296.0661508637 3.8958399 1103.3752
+205297.066150968 3.8959973 1103.4147
+205298.0661510723 3.8958399 1103.2963
+205299.0661511766 3.8959973 1103.3949
+205300.0661512809 3.8959186 1103.4147
+205301.0661513852 3.8959186 1103.316
+205302.0661514895 3.8959579 1103.3555
+205303.0661515938 3.8959973 1103.2963
+205304.0661516981 3.8959973 1103.3357
+205305.0661518024 3.8960369 1103.3752
+205306.0661519067 3.8959973 1103.3357
+205307.066152011 3.8960762 1103.3357
+205308.0661521154 3.8960762 1103.3949
+205309.0661522197 3.8960369 1103.3555
+205310.066152324 3.8961942 1103.2963
+205311.0661524283 3.8960369 1103.316
+205312.0661525326 3.8961549 1103.3752
+205313.0661526369 3.8961155 1103.3555
+205314.0661527412 3.8962336 1103.4147
+205315.0661528455 3.8962336 1103.3949
+205316.0661529498 3.8961942 1103.3752
+205317.0661530541 3.8962729 1103.4147
+205318.0661531584 3.8961942 1103.3949
+205319.0661532627 3.8962336 1103.2567
+205320.0661533671 3.8961942 1103.3357
+205321.0661534714 3.8964305 1103.3555
+205322.0661535757 3.8962729 1103.3949
+205323.06615368 3.8962336 1103.2963
+205324.0661537843 3.8963518 1103.3752
+205325.0661538886 3.8962729 1103.5134
+205326.0661539929 3.8964698 1103.316
+205327.0661540972 3.8964305 1103.3357
+205328.0661542015 3.8962336 1103.2963
+205329.0661543058 3.8963122 1103.2567
+205330.0661544101 3.8964698 1103.3357
+205331.0661545144 3.8965092 1103.3555
+205332.0661546187 3.8963518 1103.3949
+205333.0661547231 3.8965485 1103.4147
+205334.0661548274 3.8966272 1103.2765
+205335.0661549317 3.8964305 1103.4344
+205336.066155036 3.8966272 1103.474
+205337.0661551403 3.8964698 1103.316
+205338.0661552446 3.8965485 1103.316
+205339.0661553489 3.8964305 1103.4147
+205340.0661554532 3.8965878 1103.4147
+205341.0661555575 3.8965485 1103.2963
+205342.0661556618 3.8965878 1103.3555
+205343.0661557661 3.8966668 1103.3357
+205344.0661558704 3.8966272 1103.2567
+205345.0661559748 3.8967454 1103.2963
+205346.0661560791 3.8966668 1103.3752
+205347.0661561834 3.8967061 1103.316
+205348.0661562877 3.8967848 1103.3357
+205349.066156392 3.8967454 1103.3357
+205350.0661564963 3.8968241 1103.3357
+205351.0661566006 3.8967848 1103.3357
+205352.0661567049 3.8967061 1103.4344
+205353.0661568092 3.8968635 1103.3357
+205354.0661569135 3.8968241 1103.4344
+205355.0661570178 3.8968635 1103.316
+205356.0661571221 3.8969028 1103.3949
+205357.0661572265 3.8968635 1103.3949
+205358.0661573308 3.8969028 1103.3949
+205359.0661574351 3.8969424 1103.3752
+205360.0661575394 3.8969424 1103.3949
+205361.0661576437 3.8967848 1103.3357
+205362.066157748 3.8969028 1103.2765
+205363.0661578523 3.8969028 1103.3357
+205364.0661579566 3.8969817 1103.3555
+205365.0661580609 3.8969817 1103.3357
+205366.0661581652 3.8969424 1103.316
+205367.0661582695 3.8970211 1103.4147
+205368.0661583738 3.8970211 1103.2567
+205369.0661584781 3.8970997 1103.316
+205370.0661585825 3.8970211 1103.3949
+205371.0661586868 3.8970997 1103.2963
+205372.0661587911 3.8970997 1103.3949
+205373.0661588954 3.8970997 1103.316
+205374.0661589997 3.8970997 1103.3752
+205375.066159104 3.8972967 1103.3555
+205376.0661592083 3.8970604 1103.2963
+205377.0661593126 3.8971784 1103.3752
+205378.0661594169 3.8971784 1103.2765
+205379.0661595212 3.8972573 1103.2963
+205380.0661596255 3.8972573 1103.3752
+205381.0661597298 3.8971784 1103.316
+205382.0661598342 3.8972573 1103.3752
+205383.0661599385 3.8972178 1103.3752
+205384.0661600428 3.8974147 1103.2172
+205385.0661601471 3.897336 1103.4344
+205386.0661602514 3.8972573 1103.3555
+205387.0661603557 3.8972573 1103.3357
+205388.06616046 3.8973753 1103.3752
+205389.0661605643 3.8973753 1103.2963
+205390.0661606686 3.897336 1103.4147
+205391.0661607729 3.8972573 1103.4147
+205392.0661608772 3.897454 1103.2963
+205393.0661609815 3.897454 1103.3949
+205394.0661610859 3.8974934 1103.316
+205395.0661611902 3.8973753 1103.3357
+205396.0661612945 3.8973753 1103.316
+205397.0661613988 3.8974934 1103.2765
+205398.0661615031 3.8975723 1103.3357
+205399.0661616074 3.8974934 1103.316
+205400.0661617117 3.8975327 1103.316
+205401.066161816 3.8975327 1103.3752
+205402.0661619203 3.8975327 1103.3357
+205403.0661620246 3.8974934 1103.316
+205404.0661621289 3.8976116 1103.316
+205405.0661622332 3.8976903 1103.3752
+205406.0661623375 3.897651 1103.2765
+205407.0661624419 3.897651 1103.3752
+205408.0661625462 3.8976903 1103.3752
+205409.0661626505 3.8976903 1103.3949
+205410.0661627548 3.8977296 1103.3555
+205411.0661628591 3.8976903 1103.3949
+205412.0661629634 3.8976903 1103.3555
+205413.0661630677 3.8976903 1103.3752
+205414.066163172 3.8978083 1103.3555
+205415.0661632763 3.8978083 1103.3555
+205416.0661633806 3.8977296 1103.3555
+205417.0661634849 3.897769 1103.3357
+205418.0661635892 3.897769 1103.3357
+205419.0661636936 3.8978477 1103.3555
+205420.0661637979 3.8978477 1103.3357
+205421.0661639022 3.8978477 1103.3752
+205422.0661640065 3.8978872 1103.4542
+205423.0661641108 3.8979266 1103.3555
+205424.0661642151 3.8980446 1103.3555
+205425.0661643194 3.8979266 1103.3357
+205426.0661644237 3.8980839 1103.3752
+205427.066164528 3.8980446 1103.3752
+205428.0661646323 3.8978872 1103.3357
+205429.0661647366 3.8979659 1103.3949
+205430.0661648409 3.8980839 1103.316
+205431.0661649453 3.8979659 1103.4344
+205432.0661650496 3.8980839 1103.3357
+205433.0661651539 3.8980446 1103.3555
+205434.0661652582 3.8981233 1103.3357
+205435.0661653625 3.8980839 1103.3555
+205436.0661654668 3.8980446 1103.3357
+205437.0661655711 3.8980446 1103.3949
+205438.0661656754 3.8981233 1103.3357
+205439.0661657797 3.8981626 1103.1777
+205440.066165884 3.8982415 1103.3357
+205441.0661659883 3.8982022 1103.3555
+205442.0661660926 3.8983202 1103.3752
+205443.066166197 3.8982415 1103.3555
+205444.0661663013 3.8982022 1103.2963
+205445.0661664056 3.8982809 1103.3752
+205446.0661665099 3.8982809 1103.4147
+205447.0661666142 3.8982415 1103.3949
+205448.0661667185 3.8982809 1103.3555
+205449.0661668228 3.8983595 1103.2567
+205450.0661669271 3.8983989 1103.3752
+205451.0661670314 3.8983202 1103.3949
+205452.0661671357 3.8983595 1103.3949
+205453.06616724 3.8984382 1103.3555
+205454.0661673443 3.8984776 1103.3949
+205455.0661674486 3.8983595 1103.3357
+205456.066167553 3.8984776 1103.3752
+205457.0661676573 3.8984382 1103.3555
+205458.0661677616 3.8984382 1103.3555
+205459.0661678659 3.8984382 1103.4147
+205460.0661679702 3.8984382 1103.3752
+205461.0661680745 3.8985565 1103.2963
+205462.0661681788 3.8984776 1103.4344
+205463.0661682831 3.8985171 1103.2567
+205464.0661683874 3.8985958 1103.2369
+205465.0661684917 3.8985958 1103.2963
+205466.066168596 3.8985565 1103.4344
+205467.0661687003 3.8986745 1103.3357
+205468.0661688047 3.8986351 1103.3357
+205469.066168909 3.8985958 1103.2963
+205470.0661690133 3.8986351 1103.3555
+205471.0661691176 3.8987138 1103.2963
+205472.0661692219 3.8987138 1103.2963
+205473.0661693262 3.8987927 1103.3949
+205474.0661694305 3.8987532 1103.4542
+205475.0661695348 3.8987927 1103.4147
+205476.0661696391 3.8987927 1103.3555
+205477.0661697434 3.8987532 1103.3949
+205478.0661698477 3.8987927 1103.2369
+205479.066169952 3.8987927 1103.2765
+205480.0661700564 3.8988321 1103.3555
+205481.0661701607 3.8988321 1103.3555
+205482.066170265 3.8988714 1103.3357
+205483.0661703693 3.8989108 1103.3949
+205484.0661704736 3.8989108 1103.2963
+205485.0661705779 3.8988321 1103.3357
+205486.0661706822 3.8988321 1103.3555
+205487.0661707865 3.8988714 1103.3357
+205488.0661708908 3.8989894 1103.316
+205489.0661709951 3.899147 1103.3357
+205490.0661710994 3.8989501 1103.4147
+205491.0661712037 3.8990288 1103.3752
+205492.066171308 3.8990288 1103.2963
+205493.0661714124 3.8989501 1103.3752
+205494.0661715167 3.8990288 1103.316
+205495.066171621 3.8990681 1103.3752
+205496.0661717253 3.8989894 1103.3752
+205497.0661718296 3.8991077 1103.4542
+205498.0661719339 3.8990681 1103.3752
+205499.0661720382 3.8991077 1103.316
+205500.0661721425 3.8991864 1103.3555
+205501.0661722468 3.8991864 1103.3555
+205502.0661723511 3.899147 1103.3752
+205503.0661724554 3.8990681 1103.2765
+205504.0661725597 3.8991864 1103.3949
+205505.0661726641 3.8992651 1103.3357
+205506.0661727684 3.8992651 1103.4147
+205507.0661728727 3.8991864 1103.4147
+205508.066172977 3.8992651 1103.3357
+205509.0661730813 3.8993044 1103.4344
+205510.0661731856 3.8993044 1103.4147
+205511.0661732899 3.8992257 1103.2765
+205512.0661733942 3.8993044 1103.2567
+205513.0661734985 3.899462 1103.3555
+205514.0661736028 3.8993831 1103.3555
+205515.0661737071 3.8993437 1103.3555
+205516.0661738114 3.8993437 1103.3949
+205517.0661739158 3.8993044 1103.2963
+205518.0661740201 3.8993831 1103.3555
+205519.0661741244 3.899462 1103.316
+205520.0661742287 3.899462 1103.2765
+205521.066174333 3.8995013 1103.3555
+205522.0661744373 3.8994226 1103.316
+205523.0661745416 3.8995013 1103.3357
+205524.0661746459 3.8995013 1103.3949
+205525.0661747502 3.8995407 1103.316
+205526.0661748545 3.8995407 1103.3555
+205527.0661749588 3.8995407 1103.2963
+205528.0661750631 3.899462 1103.316
+205529.0661751674 3.89958 1103.4147
+205530.0661752718 3.89958 1103.4147
+205531.0661753761 3.8997769 1103.2172
+205532.0661754804 3.8996193 1103.2567
+205533.0661755847 3.8996587 1103.3752
+205534.066175689 3.8996587 1103.316
+205535.0661757933 3.8996193 1103.3555
+205536.0661758976 3.89958 1103.3555
+205537.0661760019 3.8997376 1103.3357
+205538.0661761062 3.8997376 1103.3752
+205539.0661762105 3.899698 1103.3357
+205540.0661763148 3.899698 1103.3555
+205541.0661764191 3.8998163 1103.316
+205542.0661765235 3.899698 1103.3555
+205543.0661766278 3.8997376 1103.3949
+205544.0661767321 3.8999343 1103.3357
+205545.0661768364 3.8998556 1103.3752
+205546.0661769407 3.8998556 1103.4344
+205547.066177045 3.8998163 1103.4147
+205548.0661771493 3.8998163 1103.3752
+205549.0661772536 3.900013 1103.3555
+205550.0661773579 3.899895 1103.4542
+205551.0661774622 3.8999343 1103.2567
+205552.0661775665 3.899895 1103.316
+205553.0661776708 3.8999343 1103.3357
+205554.0661777752 3.8999736 1103.3752
+205555.0661778795 3.9000525 1103.2765
+205556.0661779838 3.8999343 1103.3555
+205557.0661780881 3.9000525 1103.3949
+205558.0661781924 3.8999736 1103.4344
+205559.0661782967 3.900013 1103.3752
+205560.066178401 3.9001706 1103.316
+205561.0661785053 3.9001706 1103.3555
+205562.0661786096 3.900013 1103.3357
+205563.0661787139 3.9001312 1103.316
+205564.0661788182 3.9000919 1103.3949
+205565.0661789225 3.9001706 1103.3357
+205566.0661790269 3.9001312 1103.3555
+205567.0661791312 3.9001312 1103.3357
+205568.0661792355 3.9002492 1103.2369
+205569.0661793398 3.9002492 1103.3555
+205570.0661794441 3.9002099 1103.3752
+205571.0661795484 3.9002492 1103.3357
+205572.0661796527 3.9002492 1103.316
+205573.066179757 3.9002886 1103.3949
+205574.0661798613 3.9003279 1103.3752
+205575.0661799656 3.9003279 1103.3949
+205576.0661800699 3.9002886 1103.3555
+205577.0661801742 3.9002886 1103.3555
+205578.0661802785 3.9003279 1103.3555
+205579.0661803829 3.9003675 1103.2567
+205580.0661804872 3.9002099 1103.3357
+205581.0661805915 3.9004068 1103.3949
+205582.0661806958 3.9004068 1103.2963
+205583.0661808001 3.9004068 1103.4344
+205584.0661809044 3.9004462 1103.3752
+205585.0661810087 3.9004462 1103.2765
+205586.066181113 3.9004068 1103.3949
+205587.0661812173 3.9005249 1103.2765
+205588.0661813216 3.9005249 1103.3357
+205589.0661814259 3.9005249 1103.4147
+205590.0661815302 3.9005249 1103.316
+205591.0661816346 3.9005249 1103.316
+205592.0661817389 3.9005642 1103.316
+205593.0661818432 3.9006035 1103.4147
+205594.0661819475 3.9005642 1103.3555
+205595.0661820518 3.9005642 1103.3752
+205596.0661821561 3.9006824 1103.3555
+205597.0661822604 3.9007218 1103.2963
+205598.0661823647 3.9006431 1103.316
+205599.066182469 3.9005642 1103.3752
+205600.0661825733 3.9006431 1103.316
+205601.0661826776 3.9007611 1103.3555
+205602.0661827819 3.9007611 1103.3949
+205603.0661828863 3.9006824 1103.3949
+205604.0661829906 3.9008005 1103.3752
+205605.0661830949 3.9006824 1103.3357
+205606.0661831992 3.9008398 1103.2765
+205607.0661833035 3.9008398 1103.316
+205608.0661834078 3.9007611 1103.3949
+205609.0661835121 3.9008005 1103.2765
+205610.0661836164 3.9008398 1103.316
+205611.0661837207 3.9008791 1103.2567
+205612.066183825 3.9008398 1103.4147
+205613.0661839293 3.9007611 1103.2963
+205614.0661840336 3.9008791 1103.2765
+205615.0661841379 3.9009185 1103.4344
+205616.0661842423 3.9008791 1103.3752
+205617.0661843466 3.9009185 1103.3357
+205618.0661844509 3.9010367 1103.2567
+205619.0661845552 3.9009581 1103.3949
+205620.0661846595 3.9010367 1103.3752
+205621.0661847638 3.9010761 1103.3555
+205622.0661848681 3.9010367 1103.3752
+205623.0661849724 3.9009581 1103.316
+205624.0661850767 3.9009974 1103.2963
+205625.066185181 3.9010761 1103.3357
+205626.0661852853 3.9011548 1103.3357
+205627.0661853896 3.9010367 1103.3357
+205628.066185494 3.9011941 1103.2963
+205629.0661855983 3.9011941 1103.2172
+205630.0661857026 3.9010367 1103.3357
+205631.0661858069 3.9011548 1103.3357
+205632.0661859112 3.9011548 1103.4147
+205633.0661860155 3.9010367 1103.3555
+205634.0661861198 3.9011941 1103.3949
+205635.0661862241 3.9011941 1103.2567
+205636.0661863284 3.9011941 1103.3949
+205637.0661864327 3.9012334 1103.3357
+205638.066186537 3.9012334 1103.3555
+205639.0661866413 3.901273 1103.3752
+205640.0661867457 3.9012334 1103.3949
+205641.06618685 3.901391 1103.4147
+205642.0661869543 3.9012334 1103.3949
+205643.0661870586 3.901391 1103.3357
+205644.0661871629 3.9014304 1103.316
+205645.0661872672 3.9013517 1103.316
+205646.0661873715 3.9014697 1103.2765
+205647.0661874758 3.9013124 1103.316
+205648.0661875801 3.9013517 1103.3555
+205649.0661876844 3.901509 1103.4147
+205650.0661877887 3.9014304 1103.3357
+205651.066187893 3.9015484 1103.3357
+205652.0661879973 3.9014304 1103.4344
+205653.0661881017 3.901509 1103.2765
+205654.066188206 3.9014697 1103.3357
+205655.0661883103 3.901509 1103.3949
+205656.0661884146 3.901509 1103.3555
+205657.0661885189 3.9016273 1103.3555
+205658.0661886232 3.9015484 1103.2963
+205659.0661887275 3.9016666 1103.2172
+205660.0661888318 3.901588 1103.3555
+205661.0661889361 3.9016666 1103.3357
+205662.0661890404 3.9016273 1103.3752
+205663.0661891447 3.9016273 1103.3555
+205664.066189249 3.901706 1103.3752
+205665.0661893534 3.901588 1103.2369
+205666.0661894577 3.9016666 1103.3752
+205667.066189562 3.9016273 1103.4147
+205668.0661896663 3.9017847 1103.3752
+205669.0661897706 3.9016666 1103.316
+205670.0661898749 3.9017847 1103.3357
+205671.0661899792 3.9017453 1103.3752
+205672.0661900835 3.9018633 1103.316
+205673.0661901878 3.9017453 1103.316
+205674.0661902921 3.9017847 1103.3752
+205675.0661903964 3.9019029 1103.4147
+205676.0661905007 3.9018633 1103.3752
+205677.0661906051 3.9017453 1103.3357
+205678.0661907094 3.9020209 1103.3949
+205679.0661908137 3.9019029 1103.4344
+205680.066190918 3.9018633 1103.2765
+205681.0661910223 3.9019029 1103.4147
+205682.0661911266 3.9019423 1103.4344
+205683.0661912309 3.9019423 1103.2567
+205684.0661913352 3.9020209 1103.3752
+205685.0661914395 3.9020209 1103.3752
+205686.0661915438 3.9020603 1103.2963
+205687.0661916481 3.9020209 1103.2765
+205688.0661917524 3.9020603 1103.3357
+205689.0661918567 3.9020996 1103.3752
+205690.0661919611 3.9020996 1103.3949
+205691.0661920654 3.9020209 1103.3949
+205692.0661921697 3.9019816 1103.2567
+205693.066192274 3.9020996 1103.3555
+205694.0661923783 3.9020996 1103.474
+205695.0661924826 3.9020996 1103.3752
+205696.0661925869 3.9021783 1103.3752
+205697.0661926912 3.9022572 1103.2963
+205698.0661927955 3.9022179 1103.3357
+205699.0661928998 3.9022179 1103.2963
+205700.0661930041 3.9020996 1103.3752
+205701.0661931084 3.9022965 1103.316
+205702.0661932128 3.9022572 1103.316
+205703.0661933171 3.9022965 1103.316
+205704.0661934214 3.9022572 1103.3555
+205705.0661935257 3.9022572 1103.3555
+205706.06619363 3.9022965 1103.3555
+205707.0661937343 3.9022572 1103.3949
+205708.0661938386 3.9023752 1103.316
+205709.0661939429 3.9024146 1103.3949
+205710.0661940472 3.9023752 1103.3752
+205711.0661941515 3.9024539 1103.316
+205712.0661942558 3.9022965 1103.3357
+205713.0661943601 3.9023359 1103.3752
+205714.0661944645 3.9024935 1103.316
+205715.0661945688 3.9024539 1103.3949
+205716.0661946731 3.9024539 1103.3555
+205717.0661947774 3.9024935 1103.3949
+205718.0661948817 3.9025328 1103.316
+205719.066194986 3.9024935 1103.4147
+205720.0661950903 3.9025328 1103.3949
+205721.0661951946 3.9025722 1103.4344
+205722.0661952989 3.9026115 1103.316
+205723.0661954032 3.9025328 1103.3555
+205724.0661955075 3.9026115 1103.3555
+205725.0661956118 3.9025722 1103.3357
+205726.0661957162 3.9026508 1103.3555
+205727.0661958205 3.9024935 1103.3949
+205728.0661959248 3.9026508 1103.3555
+205729.0661960291 3.9025722 1103.4344
+205730.0661961334 3.9026115 1103.3949
+205731.0661962377 3.9026115 1103.3555
+205732.066196342 3.9026115 1103.3555
+205733.0661964463 3.9026902 1103.2369
+205734.0661965506 3.9027295 1103.316
+205735.0661966549 3.9027689 1103.4147
+205736.0661967592 3.9026902 1103.3555
+205737.0661968635 3.9028084 1103.316
+205738.0661969678 3.9027295 1103.316
+205739.0661970722 3.9026902 1103.2765
+205740.0661971765 3.9028084 1103.316
+205741.0661972808 3.9027689 1103.3357
+205742.0661973851 3.9027689 1103.3555
+205743.0661974894 3.9028871 1103.2765
+205744.0661975937 3.9028478 1103.2963
+205745.066197698 3.9029658 1103.3949
+205746.0661978023 3.9030051 1103.2963
+205747.0661979066 3.9029264 1103.2172
+205748.0661980109 3.9028871 1103.2765
+205749.0661981152 3.9029658 1103.3752
+205750.0661982195 3.9029658 1103.3752
+205751.0661983239 3.9030051 1103.2765
+205752.0661984282 3.9029658 1103.3357
+205753.0661985325 3.9030051 1103.4147
+205754.0661986368 3.9028871 1103.316
+205755.0661987411 3.9030445 1103.3752
+205756.0661988454 3.9030445 1103.3752
+205757.0661989497 3.9030445 1103.316
+205758.066199054 3.9030838 1103.3357
+205759.0661991583 3.9031627 1103.3357
+205760.0661992626 3.9031234 1103.4147
+205761.0661993669 3.9031234 1103.3555
+205762.0661994712 3.9032021 1103.3357
+205763.0661995756 3.9031234 1103.2963
+205764.0661996799 3.9030838 1103.3555
+205765.0661997842 3.9031627 1103.3752
+205766.0661998885 3.9032414 1103.3555
+205767.0661999928 3.9032021 1103.316
+205768.0662000971 3.9032021 1103.3949
+205769.0662002014 3.9033201 1103.3357
+205770.0662003057 3.9032807 1103.3949
+205771.06620041 3.9032807 1103.3357
+205772.0662005143 3.9032414 1103.3555
+205773.0662006186 3.9033988 1103.2963
+205774.0662007229 3.9033594 1103.3949
+205775.0662008272 3.9033988 1103.3555
+205776.0662009316 3.9033594 1103.2567
+205777.0662010359 3.9033201 1103.316
+205778.0662011402 3.9033988 1103.2963
+205779.0662012445 3.9033594 1103.2765
+205780.0662013488 3.9033988 1103.3949
+205781.0662014531 3.9034777 1103.2765
+205782.0662015574 3.9034777 1103.2567
+205783.0662016617 3.9034383 1103.3752
+205784.066201766 3.9034777 1103.3752
+205785.0662018703 3.903517 1103.3555
+205786.0662019746 3.9034777 1103.2765
+205787.0662020789 3.9035563 1103.316
+205788.0662021833 3.903517 1103.3949
+205789.0662022876 3.9035957 1103.3949
+205790.0662023919 3.9036744 1103.4147
+205791.0662024962 3.9035563 1103.4147
+205792.0662026005 3.9036744 1103.3752
+205793.0662027048 3.9036744 1103.2172
+205794.0662028091 3.9035957 1103.316
+205795.0662029134 3.9036744 1103.2765
+205796.0662030177 3.9036744 1103.4344
+205797.066203122 3.9037137 1103.3949
+205798.0662032263 3.903635 1103.2567
+205799.0662033306 3.9035957 1103.3752
+205800.066203435 3.9037926 1103.3752
+205801.0662035393 3.9037533 1103.3357
+205802.0662036436 3.903635 1103.3949
+205803.0662037479 3.9037926 1103.3555
+205804.0662038522 3.9037926 1103.4147
+205805.0662039565 3.9037137 1103.3555
+205806.0662040608 3.9037926 1103.2765
+205807.0662041651 3.90395 1103.4147
+205808.0662042694 3.9038713 1103.2963
+205809.0662043737 3.9037533 1103.2765
+205810.066204478 3.9039106 1103.316
+205811.0662045823 3.9039106 1103.3752
+205812.0662046866 3.9039106 1103.4344
+205813.066204791 3.90395 1103.4542
+205814.0662048953 3.90395 1103.2369
+205815.0662049996 3.90395 1103.3357
+205816.0662051039 3.90395 1103.3752
+205817.0662052082 3.90395 1103.3357
+205818.0662053125 3.9039106 1103.2963
+205819.0662054168 3.9039893 1103.2963
+205820.0662055211 3.9041076 1103.2765
+205821.0662056254 3.9040289 1103.3555
+205822.0662057297 3.9039106 1103.3752
+205823.066205834 3.9040289 1103.3949
+205824.0662059383 3.9041862 1103.2963
+205825.0662060427 3.9041076 1103.3357
+205826.066206147 3.9040289 1103.3555
+205827.0662062513 3.9041469 1103.3555
+205828.0662063556 3.9042649 1103.3752
+205829.0662064599 3.9040289 1103.3949
+205830.0662065642 3.9041469 1103.316
+205831.0662066685 3.9041862 1103.3357
+205832.0662067728 3.9041862 1103.2963
+205833.0662068771 3.9041862 1103.3555
+205834.0662069814 3.9042649 1103.2172
+205835.0662070857 3.9042256 1103.3555
+205836.06620719 3.9043043 1103.2765
+205837.0662072944 3.9042649 1103.3357
+205838.0662073987 3.9043438 1103.316
+205839.066207503 3.9043043 1103.2765
+205840.0662076073 3.9043832 1103.4344
+205841.0662077116 3.9043832 1103.2963
+205842.0662078159 3.9042649 1103.3949
+205843.0662079202 3.9044619 1103.3357
+205844.0662080245 3.9043832 1103.3357
+205845.0662081288 3.9043832 1103.2369
+205846.0662082331 3.9044225 1103.3949
+205847.0662083374 3.9043043 1103.3357
+205848.0662084417 3.9044619 1103.3949
+205849.0662085461 3.9043832 1103.316
+205850.0662086504 3.9045012 1103.3555
+205851.0662087547 3.9045799 1103.316
+205852.066208859 3.9045012 1103.4344
+205853.0662089633 3.9045799 1103.3949
+205854.0662090676 3.9045799 1103.3357
+205855.0662091719 3.9045405 1103.2765
+205856.0662092762 3.9046192 1103.3949
+205857.0662093805 3.9045405 1103.2963
+205858.0662094848 3.9045799 1103.2963
+205859.0662095891 3.9045799 1103.3555
+205860.0662096934 3.9046588 1103.3752
+205861.0662097977 3.9047375 1103.2765
+205862.0662099021 3.9046192 1103.4542
+205863.0662100064 3.9046981 1103.2567
+205864.0662101107 3.9046588 1103.3949
+205865.066210215 3.9046981 1103.3949
+205866.0662103193 3.9047768 1103.3357
+205867.0662104236 3.9047768 1103.2963
+205868.0662105279 3.9047375 1103.3357
+205869.0662106322 3.9047375 1103.2765
+205870.0662107365 3.9047768 1103.2567
+205871.0662108408 3.9047375 1103.3949
+205872.0662109451 3.9047768 1103.2369
+205873.0662110494 3.9047768 1103.3752
+205874.0662111538 3.9048555 1103.316
+205875.0662112581 3.9048555 1103.3949
+205876.0662113624 3.9048948 1103.3357
+205877.0662114667 3.9048555 1103.3555
+205878.066211571 3.9050524 1103.3752
+205879.0662116753 3.9049342 1103.3555
+205880.0662117796 3.9049737 1103.316
+205881.0662118839 3.9050524 1103.2765
+205882.0662119882 3.9048555 1103.3949
+205883.0662120925 3.9050524 1103.3357
+205884.0662121968 3.9049737 1103.4147
+205885.0662123011 3.9049737 1103.3752
+205886.0662124055 3.9050131 1103.4344
+205887.0662125098 3.9050131 1103.4344
+205888.0662126141 3.9052098 1103.316
+205889.0662127184 3.9051311 1103.4147
+205890.0662128227 3.9050918 1103.3555
+205891.066212927 3.9051704 1103.316
+205892.0662130313 3.9050524 1103.3752
+205893.0662131356 3.9051311 1103.2369
+205894.0662132399 3.9051311 1103.316
+205895.0662133442 3.9051311 1103.3949
+205896.0662134485 3.9051311 1103.2567
+205897.0662135528 3.9052887 1103.2963
+205898.0662136571 3.9052491 1103.3752
+205899.0662137615 3.905328 1103.3949
+205900.0662138658 3.9051704 1103.2765
+205901.0662139701 3.9052098 1103.474
+205902.0662140744 3.9052491 1103.3555
+205903.0662141787 3.905328 1103.3357
+205904.066214283 3.9052491 1103.3555
+205905.0662143873 3.905328 1103.3752
+205906.0662144916 3.9054067 1103.3555
+205907.0662145959 3.9052491 1103.316
+205908.0662147002 3.905328 1103.3555
+205909.0662148045 3.9054854 1103.3752
+205910.0662149088 3.9052887 1103.4344
+205911.0662150132 3.9054461 1103.3357
+205912.0662151175 3.905328 1103.3752
+205913.0662152218 3.9054067 1103.3555
+205914.0662153261 3.9055247 1103.3555
+205915.0662154304 3.9053674 1103.3555
+205916.0662155347 3.9055247 1103.3555
+205917.066215639 3.9055247 1103.3357
+205918.0662157433 3.9054461 1103.2963
+205919.0662158476 3.9056036 1103.3555
+205920.0662159519 3.9055247 1103.3357
+205921.0662160562 3.905643 1103.4542
+205922.0662161605 3.9055247 1103.2567
+205923.0662162649 3.9055641 1103.316
+205924.0662163692 3.9056823 1103.3752
+205925.0662164735 3.9057217 1103.316
+205926.0662165778 3.9056036 1103.2369
+205927.0662166821 3.9056823 1103.3357
+205928.0662167864 3.9057217 1103.4147
+205929.0662168907 3.9056036 1103.3555
+205930.066216995 3.9057217 1103.3555
+205931.0662170993 3.9057217 1103.3752
+205932.0662172036 3.9057217 1103.3752
+205933.0662173079 3.905761 1103.4147
+205934.0662174122 3.9058003 1103.3555
+205935.0662175165 3.9058003 1103.4542
+205936.0662176209 3.9056823 1103.3752
+205937.0662177252 3.9058793 1103.4344
+205938.0662178295 3.9058003 1103.4147
+205939.0662179338 3.9058003 1103.3555
+205940.0662180381 3.9059186 1103.316
+205941.0662181424 3.9058003 1103.3949
+205942.0662182467 3.9058793 1103.3357
+205943.066218351 3.9058397 1103.3357
+205944.0662184553 3.9058793 1103.3752
+205945.0662185596 3.9059186 1103.2567
+205946.0662186639 3.9058793 1103.3555
+205947.0662187682 3.9059579 1103.3357
+205948.0662188726 3.9059579 1103.316
+205949.0662189769 3.9060366 1103.3357
+205950.0662190812 3.9059973 1103.2765
+205951.0662191855 3.9059973 1103.316
+205952.0662192898 3.9060366 1103.474
+205953.0662193941 3.9059973 1103.3555
+205954.0662194984 3.9059973 1103.4344
+205955.0662196027 3.9061153 1103.2567
+205956.066219707 3.906076 1103.2963
+205957.0662198113 3.9060366 1103.3357
+205958.0662199156 3.9061153 1103.3555
+205959.0662200199 3.9061546 1103.3357
+205960.0662201243 3.9060366 1103.3357
+205961.0662202286 3.9061942 1103.4147
+205962.0662203329 3.9061153 1103.3555
+205963.0662204372 3.9062335 1103.3357
+205964.0662205415 3.9061942 1103.2963
+205965.0662206458 3.9061546 1103.3357
+205966.0662207501 3.9061546 1103.3949
+205967.0662208544 3.9062335 1103.2963
+205968.0662209587 3.9063122 1103.3752
+205969.066221063 3.9062729 1103.3555
+205970.0662211673 3.9063122 1103.3752
+205971.0662212716 3.9063516 1103.3949
+205972.066221376 3.9062729 1103.2765
+205973.0662214803 3.9063122 1103.3752
+205974.0662215846 3.9063909 1103.3752
+205975.0662216889 3.9063516 1103.316
+205976.0662217932 3.9063516 1103.3357
+205977.0662218975 3.9062729 1103.3357
+205978.0662220018 3.9064302 1103.3555
+205979.0662221061 3.9063516 1103.2963
+205980.0662222104 3.9065092 1103.3357
+205981.0662223147 3.9063909 1103.4147
+205982.066222419 3.9064696 1103.3357
+205983.0662225233 3.9065092 1103.3949
+205984.0662226276 3.9064302 1103.3555
+205985.066222732 3.9065878 1103.3752
+205986.0662228363 3.9064696 1103.316
+205987.0662229406 3.9065092 1103.3752
+205988.0662230449 3.9066272 1103.3357
+205989.0662231492 3.9067059 1103.3752
+205990.0662232535 3.9066272 1103.3752
+205991.0662233578 3.9065485 1103.3555
+205992.0662234621 3.9067059 1103.3555
+205993.0662235664 3.9066665 1103.3555
+205994.0662236707 3.9066665 1103.3357
+205995.066223775 3.9066272 1103.3357
+205996.0662238793 3.9066272 1103.3949
+205997.0662239837 3.9067452 1103.316
+205998.066224088 3.9067059 1103.3752
+205999.0662241923 3.9067059 1103.3949
+206000.0662242966 3.9067452 1103.3555
+206001.0662244009 3.9067845 1103.4344
+206002.0662245052 3.9067452 1103.316
+206003.0662246095 3.9067845 1103.2963
+206004.0662247138 3.9067845 1103.3555
+206005.0662248181 3.9068635 1103.2963
+206006.0662249224 3.9067845 1103.3357
+206007.0662250267 3.9068241 1103.3555
+206008.066225131 3.9067845 1103.3357
+206009.0662252354 3.9068241 1103.3752
+206010.0662253397 3.9069421 1103.3555
+206011.066225444 3.9069028 1103.3357
+206012.0662255483 3.9069421 1103.3949
+206013.0662256526 3.9069028 1103.2765
+206014.0662257569 3.9069421 1103.2963
+206015.0662258612 3.9069815 1103.3949
+206016.0662259655 3.9069815 1103.3752
+206017.0662260698 3.9070601 1103.3555
+206018.0662261741 3.9070208 1103.3555
+206019.0662262784 3.9070208 1103.3555
+206020.0662263827 3.9070601 1103.2172
+206021.066226487 3.9070601 1103.3555
+206022.0662265914 3.9069421 1103.3949
+206023.0662266957 3.9071391 1103.3949
+206024.0662268 3.9071391 1103.316
+206025.0662269043 3.9070995 1103.3752
+206026.0662270086 3.9071391 1103.3752
+206027.0662271129 3.9072177 1103.3555
+206028.0662272172 3.9071784 1103.2765
+206029.0662273215 3.9070995 1103.2765
+206030.0662274258 3.9071784 1103.2963
+206031.0662275301 3.9071784 1103.3357
+206032.0662276344 3.9072571 1103.316
+206033.0662277387 3.9071784 1103.2369
+206034.0662278431 3.9071784 1103.2567
+206035.0662279474 3.9072571 1103.2963
+206036.0662280517 3.9072964 1103.3949
+206037.066228156 3.9072571 1103.3555
+206038.0662282603 3.9072571 1103.4344
+206039.0662283646 3.9072571 1103.3752
+206040.0662284689 3.9073358 1103.3555
+206041.0662285732 3.9073358 1103.3555
+206042.0662286775 3.9073358 1103.2963
+206043.0662287818 3.9073358 1103.3555
+206044.0662288861 3.9074144 1103.2963
+206045.0662289904 3.9074144 1103.3752
+206046.0662290948 3.9073358 1103.3949
+206047.0662291991 3.9073358 1103.316
+206048.0662293034 3.907454 1103.3555
+206049.0662294077 3.907454 1103.3752
+206050.066229512 3.9075327 1103.2963
+206051.0662296163 3.9074934 1103.3357
+206052.0662297206 3.907572 1103.3752
+206053.0662298249 3.907454 1103.2369
+206054.0662299292 3.9075327 1103.3357
+206055.0662300335 3.907572 1103.4344
+206056.0662301378 3.907572 1103.3752
+206057.0662302421 3.907572 1103.316
+206058.0662303464 3.9076507 1103.316
+206059.0662304508 3.9076114 1103.3555
+206060.0662305551 3.90769 1103.3555
+206061.0662306594 3.9076507 1103.3752
+206062.0662307637 3.90769 1103.3949
+206063.066230868 3.9076507 1103.3357
+206064.0662309723 3.907769 1103.3357
+206065.0662310766 3.90769 1103.4344
+206066.0662311809 3.907769 1103.4344
+206067.0662312852 3.90769 1103.3357
+206068.0662313895 3.9078083 1103.3752
+206069.0662314938 3.907769 1103.3357
+206070.0662315981 3.9078083 1103.3357
+206071.0662317025 3.907769 1103.3752
+206072.0662318068 3.9078083 1103.3357
+206073.0662319111 3.9078476 1103.3555
+206074.0662320154 3.9078083 1103.3357
+206075.0662321197 3.9078476 1103.2567
+206076.066232224 3.907887 1103.3949
+206077.0662323283 3.9078083 1103.3555
+206078.0662324326 3.908005 1103.4147
+206079.0662325369 3.9079657 1103.316
+206080.0662326412 3.9078476 1103.3555
+206081.0662327455 3.907887 1103.2567
+206082.0662328498 3.9079657 1103.3555
+206083.0662329542 3.907887 1103.316
+206084.0662330585 3.9081233 1103.3555
+206085.0662331628 3.9079657 1103.2963
+206086.0662332671 3.9080446 1103.3949
+206087.0662333714 3.908005 1103.2765
+206088.0662334757 3.9080839 1103.2963
+206089.06623358 3.9081233 1103.3949
+206090.0662336843 3.9081233 1103.2369
+206091.0662337886 3.9081626 1103.3357
+206092.0662338929 3.9080839 1103.316
+206093.0662339972 3.9081233 1103.316
+206094.0662341015 3.9082019 1103.3752
+206095.0662342058 3.9081626 1103.3752
+206096.0662343102 3.9081626 1103.3357
+206097.0662344145 3.9081626 1103.316
+206098.0662345188 3.9081626 1103.316
+206099.0662346231 3.9082413 1103.3949
+206100.0662347274 3.9082806 1103.316
+206101.0662348317 3.9082413 1103.2963
+206102.066234936 3.9082413 1103.3752
+206103.0662350403 3.9082019 1103.2963
+206104.0662351446 3.9082413 1103.2369
+206105.0662352489 3.90832 1103.316
+206106.0662353532 3.9082806 1103.3949
+206107.0662354575 3.9082806 1103.3949
+206108.0662355619 3.9083595 1103.2765
+206109.0662356662 3.90832 1103.316
+206110.0662357705 3.9083595 1103.4344
+206111.0662358748 3.9083595 1103.3357
+206112.0662359791 3.9084775 1103.2765
+206113.0662360834 3.90832 1103.4147
+206114.0662361877 3.9085169 1103.4147
+206115.066236292 3.9084382 1103.3555
+206116.0662363963 3.9085169 1103.3357
+206117.0662365006 3.9085956 1103.3752
+206118.0662366049 3.9085169 1103.4147
+206119.0662367092 3.9084775 1103.316
+206120.0662368136 3.9085169 1103.3357
+206121.0662369179 3.9085956 1103.3357
+206122.0662370222 3.9085169 1103.3357
+206123.0662371265 3.9086349 1103.474
+206124.0662372308 3.9085956 1103.3357
+206125.0662373351 3.9085562 1103.4147
+206126.0662374394 3.9087138 1103.3357
+206127.0662375437 3.9085169 1103.4344
+206128.066237648 3.9087138 1103.3357
+206129.0662377523 3.9086349 1103.3949
+206130.0662378566 3.9086349 1103.3357
+206131.0662379609 3.9086745 1103.3555
+206132.0662380653 3.9087138 1103.3949
+206133.0662381696 3.9086745 1103.3357
+206134.0662382739 3.9087138 1103.316
+206135.0662383782 3.9087138 1103.3357
+206136.0662384825 3.9087925 1103.3949
+206137.0662385868 3.9088712 1103.3949
+206138.0662386911 3.9088318 1103.4344
+206139.0662387954 3.9086349 1103.4542
+206140.0662388997 3.9087925 1103.2963
+206141.066239004 3.9087925 1103.3752
+206142.0662391083 3.9088318 1103.3949
+206143.0662392126 3.9089105 1103.4147
+206144.0662393169 3.9087925 1103.3357
+206145.0662394213 3.9089499 1103.3752
+206146.0662395256 3.9087532 1103.2567
+206147.0662396299 3.9089894 1103.2765
+206148.0662397342 3.9088712 1103.4147
+206149.0662398385 3.9089499 1103.2963
+206150.0662399428 3.9090681 1103.316
+206151.0662400471 3.9088712 1103.3555
+206152.0662401514 3.9090288 1103.316
+206153.0662402557 3.9089894 1103.316
+206154.06624036 3.9090288 1103.2765
+206155.0662404643 3.9089499 1103.316
+206156.0662405686 3.9090288 1103.3752
+206157.066240673 3.9091074 1103.2765
+206158.0662407773 3.9090681 1103.3949
+206159.0662408816 3.9091074 1103.3357
+206160.0662409859 3.9091074 1103.3752
+206161.0662410902 3.9091074 1103.3357
+206162.0662411945 3.9090681 1103.3752
+206163.0662412988 3.9093044 1103.316
+206164.0662414031 3.9093437 1103.3949
+206165.0662415074 3.9091861 1103.3555
+206166.0662416117 3.9092648 1103.4344
+206167.066241716 3.9092648 1103.3949
+206168.0662418203 3.9092648 1103.3357
+206169.0662419247 3.9092255 1103.3555
+206170.066242029 3.9092648 1103.2567
+206171.0662421333 3.9092648 1103.3357
+206172.0662422376 3.9092648 1103.2765
+206173.0662423419 3.9093437 1103.3949
+206174.0662424462 3.9093044 1103.3555
+206175.0662425505 3.9093044 1103.3357
+206176.0662426548 3.9093831 1103.3752
+206177.0662427591 3.9093831 1103.3555
+206178.0662428634 3.9093831 1103.3555
+206179.0662429677 3.9093831 1103.4542
+206180.066243072 3.9094617 1103.2567
+206181.0662431763 3.9095011 1103.3357
+206182.0662432807 3.9094224 1103.4147
+206183.066243385 3.9094224 1103.3555
+206184.0662434893 3.9094617 1103.3752
+206185.0662435936 3.9094617 1103.2765
+206186.0662436979 3.9094617 1103.2567
+206187.0662438022 3.9095011 1103.3949
+206188.0662439065 3.9094617 1103.4542
+206189.0662440108 3.9094617 1103.2369
+206190.0662441151 3.90958 1103.3555
+206191.0662442194 3.90958 1103.3555
+206192.0662443237 3.90958 1103.316
+206193.066244428 3.9096587 1103.316
+206194.0662445324 3.9095011 1103.3357
+206195.0662446367 3.9095404 1103.2963
+206196.066244741 3.9096193 1103.3357
+206197.0662448453 3.9096193 1103.3555
+206198.0662449496 3.9097373 1103.4938
+206199.0662450539 3.9096587 1103.316
+206200.0662451582 3.9096587 1103.3555
+206201.0662452625 3.9096587 1103.3752
+206202.0662453668 3.9096587 1103.3752
+206203.0662454711 3.9097373 1103.3555
+206204.0662455754 3.909698 1103.3752
+206205.0662456797 3.9097373 1103.3357
+206206.0662457841 3.909698 1103.4147
+206207.0662458884 3.9097373 1103.3949
+206208.0662459927 3.909816 1103.316
+206209.066246097 3.909816 1103.316
+206210.0662462013 3.9097767 1103.2963
+206211.0662463056 3.909816 1103.3752
+206212.0662464099 3.9098949 1103.3752
+206213.0662465142 3.9099343 1103.3357
+206214.0662466185 3.909816 1103.3357
+206215.0662467228 3.9098554 1103.3752
+206216.0662468271 3.9098949 1103.3357
+206217.0662469314 3.9098949 1103.2567
+206218.0662470357 3.9100523 1103.3357
+206219.0662471401 3.9098949 1103.316
+206220.0662472444 3.9100523 1103.2963
+206221.0662473487 3.9099343 1103.2765
+206222.066247453 3.910131 1103.3752
+206223.0662475573 3.9100523 1103.316
+206224.0662476616 3.910131 1103.3949
+206225.0662477659 3.9100916 1103.3357
+206226.0662478702 3.910131 1103.3555
+206227.0662479745 3.9100523 1103.2963
+206228.0662480788 3.910013 1103.3555
+206229.0662481831 3.9102099 1103.3752
+206230.0662482874 3.910013 1103.3357
+206231.0662483918 3.910131 1103.2765
+206232.0662484961 3.9102099 1103.4344
+206233.0662486004 3.9101703 1103.3752
+206234.0662487047 3.9101703 1103.3752
+206235.066248809 3.9102099 1103.3357
+206236.0662489133 3.9101703 1103.3357
+206237.0662490176 3.9101703 1103.474
+206238.0662491219 3.9102099 1103.316
+206239.0662492262 3.9101703 1103.2369
+206240.0662493305 3.9103279 1103.3752
+206241.0662494348 3.9102886 1103.3357
+206242.0662495391 3.9102492 1103.3949
+206243.0662496435 3.9103279 1103.2963
+206244.0662497478 3.9103279 1103.2963
+206245.0662498521 3.9103279 1103.4147
+206246.0662499564 3.9102492 1103.2963
+206247.0662500607 3.9104066 1103.3752
+206248.066250165 3.9104853 1103.316
+206249.0662502693 3.9104066 1103.2765
+206250.0662503736 3.9104066 1103.2963
+206251.0662504779 3.9103673 1103.3555
+206252.0662505822 3.9105248 1103.3555
+206253.0662506865 3.9104066 1103.3949
+206254.0662507908 3.9104459 1103.3357
+206255.0662508952 3.9104066 1103.4147
+206256.0662509995 3.9104853 1103.2765
+206257.0662511038 3.9104066 1103.4344
+206258.0662512081 3.9104853 1103.3555
+206259.0662513124 3.9105248 1103.3357
+206260.0662514167 3.9105248 1103.316
+206261.066251521 3.9106035 1103.4344
+206262.0662516253 3.9105248 1103.3752
+206263.0662517296 3.9105248 1103.3555
+206264.0662518339 3.9105642 1103.2765
+206265.0662519382 3.9106035 1103.3357
+206266.0662520425 3.9106429 1103.2963
+206267.0662521468 3.9106035 1103.3949
+206268.0662522512 3.9106429 1103.4147
+206269.0662523555 3.9106822 1103.3357
+206270.0662524598 3.9106822 1103.3949
+206271.0662525641 3.9107215 1103.4147
+206272.0662526684 3.9107609 1103.3555
+206273.0662527727 3.9106822 1103.4542
+206274.066252877 3.9107215 1103.3752
+206275.0662529813 3.9108002 1103.4344
+206276.0662530856 3.9108398 1103.3357
+206277.0662531899 3.9108002 1103.316
+206278.0662532942 3.9108002 1103.2567
+206279.0662533985 3.9108398 1103.316
+206280.0662535029 3.9109185 1103.3949
+206281.0662536072 3.9109185 1103.3555
+206282.0662537115 3.9109972 1103.3555
+206283.0662538158 3.9108398 1103.3752
+206284.0662539201 3.9109185 1103.3555
+206285.0662540244 3.9109185 1103.3555
+206286.0662541287 3.9109185 1103.4542
+206287.066254233 3.9109972 1103.3949
+206288.0662543373 3.9109185 1103.2567
+206289.0662544416 3.9109185 1103.4344
+206290.0662545459 3.9109185 1103.2963
+206291.0662546502 3.9110365 1103.316
+206292.0662547546 3.9109972 1103.3357
+206293.0662548589 3.9111152 1103.3752
+206294.0662549632 3.9109972 1103.3555
+206295.0662550675 3.9109578 1103.3949
+206296.0662551718 3.9110365 1103.4147
+206297.0662552761 3.9109972 1103.316
+206298.0662553804 3.9111152 1103.3949
+206299.0662554847 3.9110758 1103.3357
+206300.066255589 3.9110758 1103.316
+206301.0662556933 3.9111547 1103.2963
+206302.0662557976 3.9111941 1103.3949
+206303.0662559019 3.9109972 1103.3357
+206304.0662560062 3.9111547 1103.3752
+206305.0662561106 3.9110758 1103.2765
+206306.0662562149 3.9111547 1103.3555
+206307.0662563192 3.9111941 1103.3555
+206308.0662564235 3.9112728 1103.4147
+206309.0662565278 3.9112334 1103.4344
+206310.0662566321 3.9112728 1103.3357
+206311.0662567364 3.9112728 1103.2567
+206312.0662568407 3.9113908 1103.4344
+206313.066256945 3.9112728 1103.3949
+206314.0662570493 3.9113908 1103.2963
+206315.0662571536 3.9113514 1103.3357
+206316.0662572579 3.9113514 1103.2963
+206317.0662573623 3.9114697 1103.316
+206318.0662574666 3.9113908 1103.3949
+206319.0662575709 3.9113514 1103.3357
+206320.0662576752 3.9114697 1103.3357
+206321.0662577795 3.9114304 1103.3357
+206322.0662578838 3.9113908 1103.3357
+206323.0662579881 3.911509 1103.3555
+206324.0662580924 3.9114697 1103.316
+206325.0662581967 3.9116271 1103.3357
+206326.066258301 3.911509 1103.316
+206327.0662584053 3.9114304 1103.316
+206328.0662585096 3.9115484 1103.2963
+206329.066258614 3.9115877 1103.316
+206330.0662587183 3.9116271 1103.3357
+206331.0662588226 3.9115484 1103.3949
+206332.0662589269 3.9116664 1103.2963
+206333.0662590312 3.911509 1103.3555
+206334.0662591355 3.9114697 1103.3752
+206335.0662592398 3.9116664 1103.3752
+206336.0662593441 3.9117057 1103.3357
+206337.0662594484 3.9117453 1103.3752
+206338.0662595527 3.9115484 1103.4147
+206339.066259657 3.9115877 1103.3357
+206340.0662597613 3.9117057 1103.2963
+206341.0662598656 3.9116664 1103.2765
+206342.06625997 3.9115484 1103.3752
+206343.0662600743 3.911824 1103.4147
+206344.0662601786 3.9117453 1103.3357
+206345.0662602829 3.9119027 1103.3357
+206346.0662603872 3.9118633 1103.3752
+206347.0662604915 3.9119027 1103.3949
+206348.0662605958 3.9118633 1103.3949
+206349.0662607001 3.911824 1103.3555
+206350.0662608044 3.911824 1103.3752
+206351.0662609087 3.9117846 1103.3949
+206352.066261013 3.9119027 1103.3752
+206353.0662611173 3.911942 1103.4147
+206354.0662612217 3.9119813 1103.3949
+206355.066261326 3.9119813 1103.316
+206356.0662614303 3.9120603 1103.3949
+206357.0662615346 3.9119813 1103.2765
+206358.0662616389 3.9120207 1103.2369
+206359.0662617432 3.911942 1103.4147
+206360.0662618475 3.911942 1103.3949
+206361.0662619518 3.9120603 1103.4147
+206362.0662620561 3.9120207 1103.3752
+206363.0662621604 3.9120996 1103.316
+206364.0662622647 3.9120603 1103.316
+206365.066262369 3.9119813 1103.4542
+206366.0662624734 3.9121389 1103.3949
+206367.0662625777 3.9120996 1103.316
+206368.066262682 3.9120996 1103.3357
+206369.0662627863 3.9122176 1103.3752
+206370.0662628906 3.9121389 1103.2765
+206371.0662629949 3.9121389 1103.3752
+206372.0662630992 3.9120996 1103.3949
+206373.0662632035 3.9121783 1103.3949
+206374.0662633078 3.9121783 1103.3949
+206375.0662634121 3.9121783 1103.3752
+206376.0662635164 3.9122176 1103.4344
+206377.0662636207 3.9122176 1103.316
+206378.0662637251 3.9122176 1103.3357
+206379.0662638294 3.9122176 1103.316
+206380.0662639337 3.9121783 1103.316
+206381.066264038 3.912257 1103.3555
+206382.0662641423 3.9123356 1103.2963
+206383.0662642466 3.9123356 1103.4147
+206384.0662643509 3.9123752 1103.3752
+206385.0662644552 3.9122176 1103.3752
+206386.0662645595 3.9124539 1103.4344
+206387.0662646638 3.9123752 1103.1975
+206388.0662647681 3.9123356 1103.3949
+206389.0662648724 3.9123752 1103.4147
+206390.0662649767 3.9124146 1103.3357
+206391.0662650811 3.9123752 1103.3555
+206392.0662651854 3.9124146 1103.4542
+206393.0662652897 3.9125719 1103.3555
+206394.066265394 3.9124539 1103.3752
+206395.0662654983 3.9123752 1103.3752
+206396.0662656026 3.9124539 1103.2963
+206397.0662657069 3.9125326 1103.3949
+206398.0662658112 3.9126112 1103.2765
+206399.0662659155 3.9124932 1103.3357
+206400.0662660198 3.9125719 1103.4147
+206401.0662661241 3.9124932 1103.3949
+206402.0662662284 3.9125719 1103.316
+206403.0662663328 3.9126112 1103.2963
+206404.0662664371 3.9126112 1103.3357
+206405.0662665414 3.9126506 1103.2963
+206406.0662666457 3.9126902 1103.3357
+206407.06626675 3.9127688 1103.3555
+206408.0662668543 3.9127688 1103.3949
+206409.0662669586 3.9127688 1103.3949
+206410.0662670629 3.9127295 1103.3949
+206411.0662671672 3.9127688 1103.3949
+206412.0662672715 3.9126902 1103.3555
+206413.0662673758 3.9126902 1103.3752
+206414.0662674801 3.9127688 1103.3357
+206415.0662675845 3.9128475 1103.2963
+206416.0662676888 3.9128475 1103.3752
+206417.0662677931 3.9128082 1103.316
+206418.0662678974 3.9129262 1103.316
+206419.0662680017 3.9128082 1103.3555
+206420.066268106 3.9128475 1103.3949
+206421.0662682103 3.9128082 1103.3949
+206422.0662683146 3.9128475 1103.3752
+206423.0662684189 3.9128869 1103.3555
+206424.0662685232 3.9129655 1103.3555
+206425.0662686275 3.9130051 1103.2765
+206426.0662687318 3.9129262 1103.3949
+206427.0662688361 3.9128869 1103.4147
+206428.0662689405 3.9129655 1103.3752
+206429.0662690448 3.9129655 1103.4542
+206430.0662691491 3.9129262 1103.2765
+206431.0662692534 3.9130051 1103.3555
+206432.0662693577 3.9130445 1103.3357
+206433.066269462 3.9131231 1103.3752
+206434.0662695663 3.9130051 1103.3949
+206435.0662696706 3.9130051 1103.3949
+206436.0662697749 3.9129655 1103.3949
+206437.0662698792 3.9130838 1103.3555
+206438.0662699835 3.9131231 1103.3357
+206439.0662700878 3.9130445 1103.3357
+206440.0662701922 3.9131625 1103.2172
+206441.0662702965 3.9131625 1103.2765
+206442.0662704008 3.9131625 1103.3357
+206443.0662705051 3.9131625 1103.316
+206444.0662706094 3.9131625 1103.3949
+206445.0662707137 3.9132411 1103.3357
+206446.066270818 3.9132018 1103.3555
+206447.0662709223 3.9132411 1103.4147
+206448.0662710266 3.9131625 1103.2963
+206449.0662711309 3.9132411 1103.3752
+206450.0662712352 3.9132807 1103.3357
+206451.0662713395 3.9132807 1103.3752
+206452.0662714439 3.9133594 1103.3752
+206453.0662715482 3.9132807 1103.316
+206454.0662716525 3.9132807 1103.2963
+206455.0662717568 3.9133987 1103.3555
+206456.0662718611 3.9133987 1103.4147
+206457.0662719654 3.9132807 1103.2963
+206458.0662720697 3.9133594 1103.4542
+206459.066272174 3.9134381 1103.3357
+206460.0662722783 3.9133987 1103.316
+206461.0662723826 3.9134774 1103.3949
+206462.0662724869 3.9134381 1103.3752
+206463.0662725912 3.9133594 1103.3357
+206464.0662726955 3.9135957 1103.4147
+206465.0662727999 3.9134381 1103.4147
+206466.0662729042 3.9134774 1103.316
+206467.0662730085 3.9135168 1103.316
+206468.0662731128 3.9135561 1103.3555
+206469.0662732171 3.9135957 1103.3357
+206470.0662733214 3.9135561 1103.3949
+206471.0662734257 3.9134381 1103.4147
+206472.06627353 3.9135561 1103.4542
+206473.0662736343 3.9135957 1103.3752
+206474.0662737386 3.9135561 1103.316
+206475.0662738429 3.9135168 1103.3949
+206476.0662739472 3.9136744 1103.3357
+206477.0662740516 3.9137137 1103.3949
+206478.0662741559 3.913635 1103.3357
+206479.0662742602 3.913635 1103.3357
+206480.0662743645 3.9136744 1103.3949
+206481.0662744688 3.9136744 1103.4344
+206482.0662745731 3.9136744 1103.316
+206483.0662746774 3.9138317 1103.2567
+206484.0662747817 3.9137137 1103.3752
+206485.066274886 3.913753 1103.3949
+206486.0662749903 3.9136744 1103.316
+206487.0662750946 3.9138317 1103.3752
+206488.0662751989 3.9138317 1103.4147
+206489.0662753033 3.913753 1103.3555
+206490.0662754076 3.91395 1103.3357
+206491.0662755119 3.9137924 1103.316
+206492.0662756162 3.9139106 1103.3949
+206493.0662757205 3.9139106 1103.316
+206494.0662758248 3.91395 1103.316
+206495.0662759291 3.913871 1103.4147
+206496.0662760334 3.9139106 1103.316
+206497.0662761377 3.91395 1103.2765
+206498.066276242 3.9139893 1103.4147
+206499.0662763463 3.9139106 1103.3357
+206500.0662764506 3.91395 1103.3555
+206501.066276555 3.91395 1103.3357
+206502.0662766593 3.91395 1103.3752
+206503.0662767636 3.91395 1103.3752
+206504.0662768679 3.9139893 1103.3555
+206505.0662769722 3.9139893 1103.2765
+206506.0662770765 3.9140286 1103.316
+206507.0662771808 3.9139893 1103.3357
+206508.0662772851 3.914068 1103.2765
+206509.0662773894 3.914186 1103.316
+206510.0662774937 3.914068 1103.3949
+206511.066277598 3.9141467 1103.3752
+206512.0662777023 3.9141073 1103.2963
+206513.0662778066 3.914068 1103.3752
+206514.066277911 3.914068 1103.4147
+206515.0662780153 3.914186 1103.3949
+206516.0662781196 3.9140286 1103.2963
+206517.0662782239 3.914186 1103.316
+206518.0662783282 3.9141467 1103.3555
+206519.0662784325 3.9142649 1103.3357
+206520.0662785368 3.9142649 1103.316
+206521.0662786411 3.9142649 1103.3555
+206522.0662787454 3.9142649 1103.3357
+206523.0662788497 3.9142649 1103.4344
+206524.066278954 3.9143043 1103.3555
+206525.0662790583 3.9142256 1103.3949
+206526.0662791627 3.9143436 1103.4147
+206527.066279267 3.9144223 1103.2765
+206528.0662793713 3.9143436 1103.3949
+206529.0662794756 3.9143829 1103.316
+206530.0662795799 3.9144223 1103.3752
+206531.0662796842 3.9144223 1103.2765
+206532.0662797885 3.9144223 1103.3949
+206533.0662798928 3.9145405 1103.3555
+206534.0662799971 3.9144616 1103.4344
+206535.0662801014 3.9144223 1103.2369
+206536.0662802057 3.914501 1103.2369
+206537.06628031 3.9144223 1103.3357
+206538.0662804144 3.9145405 1103.2963
+206539.0662805187 3.9144616 1103.3752
+206540.066280623 3.9144616 1103.3555
+206541.0662807273 3.9146192 1103.3949
+206542.0662808316 3.9145405 1103.2963
+206543.0662809359 3.9144616 1103.3949
+206544.0662810402 3.9145799 1103.3357
+206545.0662811445 3.914501 1103.3357
+206546.0662812488 3.9145405 1103.3752
+206547.0662813531 3.9147372 1103.316
+206548.0662814574 3.9145405 1103.2963
+206549.0662815617 3.9145405 1103.3555
+206550.066281666 3.9146979 1103.3357
+206551.0662817704 3.9146585 1103.3357
+206552.0662818747 3.9146585 1103.316
+206553.066281979 3.9147372 1103.2567
+206554.0662820833 3.9146585 1103.3752
+206555.0662821876 3.9146979 1103.3752
+206556.0662822919 3.9147372 1103.4344
+206557.0662823962 3.9148161 1103.3949
+206558.0662825005 3.9147766 1103.316
+206559.0662826048 3.9147372 1103.3949
+206560.0662827091 3.9147766 1103.4344
+206561.0662828134 3.9148555 1103.3752
+206562.0662829177 3.9148555 1103.3752
+206563.0662830221 3.9148555 1103.3752
+206564.0662831264 3.9148948 1103.2765
+206565.0662832307 3.9148161 1103.3357
+206566.066283335 3.9148161 1103.3752
+206567.0662834393 3.9150128 1103.2567
+206568.0662835436 3.9150128 1103.3357
+206569.0662836479 3.9148161 1103.3357
+206570.0662837522 3.9149735 1103.2765
+206571.0662838565 3.9149342 1103.3752
+206572.0662839608 3.9149735 1103.3357
+206573.0662840651 3.9150128 1103.3555
+206574.0662841694 3.9148948 1103.3752
+206575.0662842738 3.9149342 1103.316
+206576.0662843781 3.9150128 1103.4147
+206577.0662844824 3.9150522 1103.3752
+206578.0662845867 3.9150522 1103.3357
+206579.066284691 3.9149735 1103.4344
+206580.0662847953 3.9151311 1103.3949
+206581.0662848996 3.9150915 1103.2765
+206582.0662850039 3.9150915 1103.4542
+206583.0662851082 3.9151311 1103.3357
+206584.0662852125 3.9151704 1103.3752
+206585.0662853168 3.9151704 1103.3752
+206586.0662854211 3.9151311 1103.3752
+206587.0662855254 3.9152491 1103.3357
+206588.0662856298 3.9152491 1103.2765
+206589.0662857341 3.9151704 1103.3752
+206590.0662858384 3.9152884 1103.2765
+206591.0662859427 3.9152098 1103.2963
+206592.066286047 3.9152491 1103.2963
+206593.0662861513 3.9153278 1103.3949
+206594.0662862556 3.9152884 1103.3555
+206595.0662863599 3.9152491 1103.3752
+206596.0662864642 3.9152884 1103.2963
+206597.0662865685 3.9152884 1103.3357
+206598.0662866728 3.9153671 1103.1975
+206599.0662867771 3.9153671 1103.2567
+206600.0662868815 3.9154065 1103.316
+206601.0662869858 3.9154065 1103.3357
+206602.0662870901 3.9153671 1103.3555
+206603.0662871944 3.9153671 1103.3357
+206604.0662872987 3.9154854 1103.316
+206605.066287403 3.9153671 1103.3752
+206606.0662875073 3.915446 1103.3555
+206607.0662876116 3.9155641 1103.316
+206608.0662877159 3.9154854 1103.2963
+206609.0662878202 3.9154854 1103.2765
+206610.0662879245 3.9154854 1103.4938
+206611.0662880288 3.9154854 1103.4147
+206612.0662881332 3.9154854 1103.3357
+206613.0662882375 3.9154854 1103.2765
+206614.0662883418 3.9155641 1103.3357
+206615.0662884461 3.9156427 1103.3752
+206616.0662885504 3.9155247 1103.3949
+206617.0662886547 3.9155641 1103.3357
+206618.066288759 3.9155641 1103.316
+206619.0662888633 3.9155641 1103.2963
+206620.0662889676 3.9156427 1103.3357
+206621.0662890719 3.9156034 1103.4147
+206622.0662891762 3.9156034 1103.3555
+206623.0662892805 3.9155641 1103.316
+206624.0662893848 3.9157214 1103.3949
+206625.0662894892 3.9156821 1103.2963
+206626.0662895935 3.9156821 1103.3555
+206627.0662896978 3.9157214 1103.2963
+206628.0662898021 3.915761 1103.2963
+206629.0662899064 3.9158397 1103.3949
+206630.0662900107 3.9158003 1103.3357
+206631.066290115 3.915761 1103.3555
+206632.0662902193 3.9157214 1103.3555
+206633.0662903236 3.9158003 1103.4147
+206634.0662904279 3.9158397 1103.3555
+206635.0662905322 3.9158397 1103.316
+206636.0662906365 3.9159184 1103.3949
+206637.0662907409 3.9159184 1103.3555
+206638.0662908452 3.9159577 1103.3357
+206639.0662909495 3.9159577 1103.2765
+206640.0662910538 3.9159184 1103.3752
+206641.0662911581 3.915879 1103.3357
+206642.0662912624 3.915997 1103.3752
+206643.0662913667 3.9159577 1103.316
+206644.066291471 3.9159184 1103.2963
+206645.0662915753 3.9160364 1103.3357
+206646.0662916796 3.9159184 1103.3357
+206647.0662917839 3.9159577 1103.3555
+206648.0662918882 3.9160759 1103.3357
+206649.0662919926 3.915997 1103.3949
+206650.0662920969 3.9160364 1103.316
+206651.0662922012 3.9161153 1103.3555
+206652.0662923055 3.9161546 1103.3357
+206653.0662924098 3.9161153 1103.316
+206654.0662925141 3.9160759 1103.316
+206655.0662926184 3.9160759 1103.316
+206656.0662927227 3.9161546 1103.4147
+206657.066292827 3.9161153 1103.3555
+206658.0662929313 3.9162726 1103.3555
+206659.0662930356 3.9161153 1103.2963
+206660.0662931399 3.9162333 1103.2567
+206661.0662932443 3.9162333 1103.3949
+206662.0662933486 3.9162726 1103.3555
+206663.0662934529 3.9161546 1103.3752
+206664.0662935572 3.916312 1103.3752
+206665.0662936615 3.916312 1103.316
+206666.0662937658 3.916194 1103.3949
+206667.0662938701 3.9162726 1103.316
+206668.0662939744 3.916312 1103.3949
+206669.0662940787 3.916312 1103.2172
+206670.066294183 3.9163909 1103.2765
+206671.0662942873 3.9163513 1103.4344
+206672.0662943916 3.9164302 1103.3555
+206673.0662944959 3.916312 1103.3752
+206674.0662946003 3.9164302 1103.2963
+206675.0662947046 3.9163513 1103.4147
+206676.0662948089 3.9163909 1103.4147
+206677.0662949132 3.9163909 1103.316
+206678.0662950175 3.9164302 1103.3555
+206679.0662951218 3.9164302 1103.2567
+206680.0662952261 3.9163513 1103.3949
+206681.0662953304 3.9164302 1103.4344
+206682.0662954347 3.9165483 1103.3752
+206683.066295539 3.9164696 1103.3555
+206684.0662956433 3.9165089 1103.4147
+206685.0662957476 3.9166269 1103.3555
+206686.066295852 3.9165876 1103.4344
+206687.0662959563 3.9165483 1103.3752
+206688.0662960606 3.9165483 1103.3752
+206689.0662961649 3.9166269 1103.3949
+206690.0662962692 3.9165876 1103.3752
+206691.0662963735 3.9165876 1103.316
+206692.0662964778 3.9166665 1103.4344
+206693.0662965821 3.9166665 1103.4542
+206694.0662966864 3.9165876 1103.3555
+206695.0662967907 3.9167452 1103.2963
+206696.066296895 3.9167058 1103.316
+206697.0662969993 3.9167058 1103.4147
+206698.0662971037 3.9167452 1103.3555
+206699.066297208 3.9166665 1103.3949
+206700.0662973123 3.9167452 1103.2963
+206701.0662974166 3.9168239 1103.3752
+206702.0662975209 3.9167845 1103.4344
+206703.0662976252 3.9168632 1103.3949
+206704.0662977295 3.9168239 1103.3357
+206705.0662978338 3.9167452 1103.3357
+206706.0662979381 3.9167845 1103.4147
+206707.0662980424 3.9169025 1103.316
+206708.0662981467 3.9168632 1103.3752
+206709.066298251 3.9169025 1103.316
+206710.0662983553 3.9168632 1103.2963
+206711.0662984597 3.9169025 1103.2765
+206712.066298564 3.9170208 1103.3555
+206713.0662986683 3.9168239 1103.3752
+206714.0662987726 3.9167845 1103.3555
+206715.0662988769 3.9170208 1103.3555
+206716.0662989812 3.9170601 1103.3555
+206717.0662990855 3.9169025 1103.2369
+206718.0662991898 3.9170208 1103.4147
+206719.0662992941 3.9169815 1103.3555
+206720.0662993984 3.9170995 1103.4147
+206721.0662995027 3.9170995 1103.3949
+206722.066299607 3.9170995 1103.3555
+206723.0662997114 3.9171782 1103.2369
+206724.0662998157 3.9170601 1103.4147
+206725.06629992 3.9171388 1103.3752
+206726.0663000243 3.9170601 1103.4147
+206727.0663001286 3.9170995 1103.3949
+206728.0663002329 3.9172175 1103.2963
+206729.0663003372 3.9171388 1103.3949
+206730.0663004415 3.9170601 1103.3752
+206731.0663005458 3.9171388 1103.3357
+206732.0663006501 3.9171782 1103.3555
+206733.0663007544 3.9171782 1103.3555
+206734.0663008587 3.9172175 1103.316
+206735.0663009631 3.9172175 1103.4147
+206736.0663010674 3.9173751 1103.2963
+206737.0663011717 3.9172964 1103.2963
+206738.066301276 3.9172175 1103.3752
+206739.0663013803 3.9173751 1103.3357
+206740.0663014846 3.9172964 1103.3555
+206741.0663015889 3.9173751 1103.3752
+206742.0663016932 3.9172568 1103.4147
+206743.0663017975 3.9173751 1103.316
+206744.0663019018 3.9173751 1103.3949
+206745.0663020061 3.9173357 1103.316
+206746.0663021104 3.9175324 1103.3949
+206747.0663022147 3.9174144 1103.3949
+206748.0663023191 3.9173751 1103.3949
+206749.0663024234 3.9174931 1103.3949
+206750.0663025277 3.9174931 1103.2369
+206751.066302632 3.9174538 1103.3752
+206752.0663027363 3.9174931 1103.3752
+206753.0663028406 3.9175324 1103.3357
+206754.0663029449 3.9174144 1103.4344
+206755.0663030492 3.9174538 1103.2963
+206756.0663031535 3.9175718 1103.316
+206757.0663032578 3.9176114 1103.3949
+206758.0663033621 3.9175718 1103.316
+206759.0663034664 3.9175718 1103.3949
+206760.0663035708 3.9175718 1103.3752
+206761.0663036751 3.9176114 1103.2369
+206762.0663037794 3.9178474 1103.316
+206763.0663038837 3.91769 1103.3357
+206764.066303988 3.9176114 1103.316
+206765.0663040923 3.9175718 1103.3752
+206766.0663041966 3.91769 1103.3752
+206767.0663043009 3.9176507 1103.3752
+206768.0663044052 3.9177294 1103.3555
+206769.0663045095 3.9176507 1103.3357
+206770.0663046138 3.91769 1103.316
+206771.0663047181 3.9177294 1103.3752
+206772.0663048225 3.9177294 1103.316
+206773.0663049268 3.9177294 1103.3555
+206774.0663050311 3.9177687 1103.3949
+206775.0663051354 3.9177687 1103.316
+206776.0663052397 3.9177687 1103.316
+206777.066305344 3.9177687 1103.316
+206778.0663054483 3.9178081 1103.3555
+206779.0663055526 3.9178867 1103.4344
+206780.0663056569 3.9178081 1103.316
+206781.0663057612 3.9178867 1103.4542
+206782.0663058655 3.9178474 1103.2765
+206783.0663059698 3.9177687 1103.3949
+206784.0663060742 3.9178474 1103.316
+206785.0663061785 3.9179657 1103.316
+206786.0663062828 3.9179263 1103.2172
+206787.0663063871 3.918005 1103.316
+206788.0663064914 3.9180443 1103.4938
+206789.0663065957 3.9179263 1103.2765
+206790.0663067 3.9180443 1103.3752
+206791.0663068043 3.918005 1103.2963
+206792.0663069086 3.9179657 1103.316
+206793.0663070129 3.9180443 1103.3357
+206794.0663071172 3.9180443 1103.3555
+206795.0663072215 3.9180837 1103.4147
+206796.0663073258 3.9180443 1103.2963
+206797.0663074302 3.9180837 1103.2963
+206798.0663075345 3.918123 1103.3555
+206799.0663076388 3.9181623 1103.3752
+206800.0663077431 3.9180443 1103.3752
+206801.0663078474 3.9181623 1103.3949
+206802.0663079517 3.9182017 1103.3357
+206803.066308056 3.9182017 1103.2765
+206804.0663081603 3.918123 1103.3555
+206805.0663082646 3.918123 1103.4542
+206806.0663083689 3.9182017 1103.3949
+206807.0663084732 3.918123 1103.316
+206808.0663085775 3.9183199 1103.3357
+206809.0663086819 3.9182413 1103.3555
+206810.0663087862 3.9182806 1103.4344
+206811.0663088905 3.9182413 1103.3752
+206812.0663089948 3.9183199 1103.3555
+206813.0663090991 3.9183199 1103.3555
+206814.0663092034 3.9182806 1103.2963
+206815.0663093077 3.9183593 1103.3752
+206816.066309412 3.9183986 1103.3949
+206817.0663095163 3.9183593 1103.3357
+206818.0663096206 3.9183986 1103.2567
+206819.0663097249 3.9183986 1103.3555
+206820.0663098292 3.9183986 1103.2963
+206821.0663099336 3.918438 1103.3555
+206822.0663100379 3.9183593 1103.316
+206823.0663101422 3.918438 1103.3752
+206824.0663102465 3.9183593 1103.2963
+206825.0663103508 3.918438 1103.3357
+206826.0663104551 3.9183986 1103.2963
+206827.0663105594 3.9185169 1103.3357
+206828.0663106637 3.918438 1103.316
+206829.066310768 3.918438 1103.3357
+206830.0663108723 3.9185956 1103.3357
+206831.0663109766 3.9184773 1103.3752
+206832.0663110809 3.9186349 1103.3555
+206833.0663111852 3.918438 1103.3752
+206834.0663112896 3.9186349 1103.3752
+206835.0663113939 3.9186349 1103.4147
+206836.0663114982 3.9185956 1103.316
+206837.0663116025 3.9185956 1103.316
+206838.0663117068 3.9186742 1103.3555
+206839.0663118111 3.9186349 1103.3357
+206840.0663119154 3.9186349 1103.3357
+206841.0663120197 3.9185956 1103.3949
+206842.066312124 3.9185956 1103.2765
+206843.0663122283 3.9187136 1103.4938
+206844.0663123326 3.9187136 1103.3357
+206845.0663124369 3.9187529 1103.2963
+206846.0663125413 3.9187922 1103.3555
+206847.0663126456 3.9187922 1103.5134
+206848.0663127499 3.9187529 1103.2963
+206849.0663128542 3.9188318 1103.3357
+206850.0663129585 3.9187922 1103.2963
+206851.0663130628 3.9188318 1103.316
+206852.0663131671 3.9187136 1103.316
+206853.0663132714 3.9187529 1103.2765
+206854.0663133757 3.9187529 1103.3555
+206855.06631348 3.9187529 1103.3949
+206856.0663135843 3.9188318 1103.3752
+206857.0663136886 3.9189498 1103.3555
+206858.066313793 3.9188712 1103.3555
+206859.0663138973 3.9189892 1103.3357
+206860.0663140016 3.9188712 1103.2765
+206861.0663141059 3.9189105 1103.3357
+206862.0663142102 3.9189892 1103.3555
+206863.0663143145 3.9189892 1103.2963
+206864.0663144188 3.9189498 1103.2765
+206865.0663145231 3.9190285 1103.3555
+206866.0663146274 3.9190285 1103.2765
+206867.0663147317 3.9189498 1103.3357
+206868.066314836 3.9189892 1103.316
+206869.0663149403 3.9191072 1103.3357
+206870.0663150446 3.9189498 1103.4147
+206871.066315149 3.9191468 1103.3555
+206872.0663152533 3.9190679 1103.3752
+206873.0663153576 3.9191468 1103.3357
+206874.0663154619 3.9190679 1103.2765
+206875.0663155662 3.9191468 1103.2963
+206876.0663156705 3.9192255 1103.3555
+206877.0663157748 3.9191468 1103.3949
+206878.0663158791 3.9191861 1103.3752
+206879.0663159834 3.9191072 1103.3949
+206880.0663160877 3.9190679 1103.316
+206881.066316192 3.9191468 1103.3949
+206882.0663162963 3.9191861 1103.3949
+206883.0663164007 3.9191072 1103.3949
+206884.066316505 3.9192255 1103.3752
+206885.0663166093 3.9192648 1103.3357
+206886.0663167136 3.9192648 1103.2172
+206887.0663168179 3.9192648 1103.3555
+206888.0663169222 3.9192648 1103.2963
+206889.0663170265 3.9193041 1103.3357
+206890.0663171308 3.9192255 1103.4147
+206891.0663172351 3.9193435 1103.2765
+206892.0663173394 3.9192648 1103.3357
+206893.0663174437 3.9194221 1103.3752
+206894.066317548 3.9194221 1103.2963
+206895.0663176524 3.9193828 1103.3555
+206896.0663177567 3.9193828 1103.3752
+206897.066317861 3.9193435 1103.3752
+206898.0663179653 3.9194221 1103.3357
+206899.0663180696 3.9195404 1103.3555
+206900.0663181739 3.9194617 1103.3752
+206901.0663182782 3.9193828 1103.3357
+206902.0663183825 3.9195011 1103.2963
+206903.0663184868 3.9195404 1103.2963
+206904.0663185911 3.9194221 1103.316
+206905.0663186954 3.9196584 1103.2765
+206906.0663187997 3.9195404 1103.3357
+206907.0663189041 3.9196191 1103.2963
+206908.0663190084 3.9196191 1103.316
+206909.0663191127 3.9195797 1103.3555
+206910.066319217 3.9195797 1103.2963
+206911.0663193213 3.9196191 1103.3357
+206912.0663194256 3.9196978 1103.3752
+206913.0663195299 3.9196978 1103.316
+206914.0663196342 3.9196191 1103.2765
+206915.0663197385 3.9196978 1103.3555
+206916.0663198428 3.9196191 1103.3949
+206917.0663199471 3.9196978 1103.2963
+206918.0663200514 3.9196584 1103.3752
+206919.0663201557 3.9196584 1103.316
+206920.0663202601 3.9196978 1103.3752
+206921.0663203644 3.9197767 1103.3752
+206922.0663204687 3.9196584 1103.3555
+206923.066320573 3.9196978 1103.3752
+206924.0663206773 3.9197371 1103.2963
+206925.0663207816 3.9197371 1103.316
+206926.0663208859 3.9197767 1103.3752
+206927.0663209902 3.9196978 1103.3357
+206928.0663210945 3.919816 1103.3949
+206929.0663211988 3.9198554 1103.2963
+206930.0663213031 3.919934 1103.3752
+206931.0663214074 3.9198554 1103.4147
+206932.0663215118 3.9198554 1103.2963
+206933.0663216161 3.9198554 1103.3949
+206934.0663217204 3.9199734 1103.3949
+206935.0663218247 3.9198947 1103.3752
+206936.066321929 3.9198554 1103.3555
+206937.0663220333 3.919934 1103.4147
+206938.0663221376 3.9199734 1103.316
+206939.0663222419 3.9199734 1103.2765
+206940.0663223462 3.9199734 1103.3357
+206941.0663224505 3.9200916 1103.2567
+206942.0663225548 3.9199734 1103.3555
+206943.0663226591 3.9200916 1103.316
+206944.0663227635 3.9200521 1103.4147
+206945.0663228678 3.9200127 1103.3357
+206946.0663229721 3.9200127 1103.3555
+206947.0663230764 3.9200127 1103.3555
+206948.0663231807 3.920131 1103.3357
+206949.066323285 3.9200521 1103.3555
+206950.0663233893 3.9200521 1103.316
+206951.0663234936 3.9201703 1103.3555
+206952.0663235979 3.920131 1103.3752
+206953.0663237022 3.9202096 1103.3357
+206954.0663238065 3.920131 1103.3555
+206955.0663239108 3.9200916 1103.3949
+206956.0663240151 3.920131 1103.3555
+206957.0663241195 3.9201703 1103.4147
+206958.0663242238 3.920249 1103.4344
+206959.0663243281 3.920249 1103.3949
+206960.0663244324 3.920249 1103.2963
+206961.0663245367 3.9202883 1103.4344
+206962.066324641 3.9202883 1103.3555
+206963.0663247453 3.920249 1103.3752
+206964.0663248496 3.9203277 1103.3752
+206965.0663249539 3.9203672 1103.4542
+206966.0663250582 3.920249 1103.3357
+206967.0663251625 3.9202096 1103.2172
+206968.0663252668 3.9203277 1103.3357
+206969.0663253712 3.9203672 1103.3555
+206970.0663254755 3.9203672 1103.2963
+206971.0663255798 3.9204066 1103.3555
+206972.0663256841 3.920249 1103.4147
+206973.0663257884 3.9205246 1103.3752
+206974.0663258927 3.9203277 1103.3357
+206975.066325997 3.9203277 1103.3949
+206976.0663261013 3.9204066 1103.3357
+206977.0663262056 3.9204066 1103.4542
+206978.0663263099 3.9204853 1103.3357
+206979.0663264142 3.9203672 1103.3949
+206980.0663265185 3.9204066 1103.4147
+206981.0663266229 3.9204853 1103.2765
+206982.0663267272 3.9204853 1103.3752
+206983.0663268315 3.9205246 1103.3752
+206984.0663269358 3.9205639 1103.3752
+206985.0663270401 3.9205639 1103.3949
+206986.0663271444 3.9205246 1103.3357
+206987.0663272487 3.9206033 1103.3357
+206988.066327353 3.9205246 1103.316
+206989.0663274573 3.9205639 1103.3357
+206990.0663275616 3.9206426 1103.316
+206991.0663276659 3.9206822 1103.3555
+206992.0663277702 3.9205246 1103.316
+206993.0663278745 3.9206033 1103.2963
+206994.0663279789 3.9206033 1103.4344
+206995.0663280832 3.9206822 1103.2765
+206996.0663281875 3.9207609 1103.3949
+206997.0663282918 3.9206822 1103.316
+206998.0663283961 3.9207215 1103.316
+206999.0663285004 3.9206822 1103.3357
+207000.0663286047 3.9207609 1103.3752
+207001.066328709 3.9206822 1103.3949
+207002.0663288133 3.9207215 1103.3357
+207003.0663289176 3.9206822 1103.3357
+207004.0663290219 3.9208395 1103.3752
+207005.0663291262 3.9208395 1103.316
+207006.0663292306 3.9207215 1103.4147
+207007.0663293349 3.9206822 1103.3752
+207008.0663294392 3.9209576 1103.316
+207009.0663295435 3.9207215 1103.3555
+207010.0663296478 3.9209182 1103.3752
+207011.0663297521 3.9209182 1103.3752
+207012.0663298564 3.9208789 1103.3357
+207013.0663299607 3.9209971 1103.3555
+207014.066330065 3.9209182 1103.2963
+207015.0663301693 3.9207215 1103.3357
+207016.0663302736 3.9208789 1103.3357
+207017.0663303779 3.9208789 1103.3555
+207018.0663304823 3.9209576 1103.4147
+207019.0663305866 3.9209182 1103.3752
+207020.0663306909 3.9209576 1103.3357
+207021.0663307952 3.9209576 1103.3752
+207022.0663308995 3.9209971 1103.316
+207023.0663310038 3.9210365 1103.3357
+207024.0663311081 3.9209971 1103.3949
+207025.0663312124 3.9210365 1103.4147
+207026.0663313167 3.9210365 1103.3555
+207027.066331421 3.9211545 1103.4344
+207028.0663315253 3.9211152 1103.4147
+207029.0663316296 3.9211545 1103.3949
+207030.0663317339 3.9210758 1103.3555
+207031.0663318383 3.9211152 1103.3555
+207032.0663319426 3.9211545 1103.316
+207033.0663320469 3.9211938 1103.4147
+207034.0663321512 3.9211545 1103.3555
+207035.0663322555 3.9211938 1103.2567
+207036.0663323598 3.9212332 1103.316
+207037.0663324641 3.9211545 1103.316
+207038.0663325684 3.9211938 1103.3555
+207039.0663326727 3.9211545 1103.4344
+207040.066332777 3.9211938 1103.316
+207041.0663328813 3.9212332 1103.3752
+207042.0663329856 3.9212332 1103.2765
+207043.06633309 3.9211938 1103.3357
+207044.0663331943 3.9212725 1103.3357
+207045.0663332986 3.9212725 1103.2963
+207046.0663334029 3.9212725 1103.3949
+207047.0663335072 3.9212725 1103.3555
+207048.0663336115 3.9212725 1103.2567
+207049.0663337158 3.9213908 1103.3555
+207050.0663338201 3.9213514 1103.4344
+207051.0663339244 3.9213514 1103.3752
+207052.0663340287 3.9213908 1103.3555
+207053.066334133 3.9215088 1103.3949
+207054.0663342373 3.9213514 1103.4147
+207055.0663343417 3.9214694 1103.3555
+207056.066334446 3.9214694 1103.2369
+207057.0663345503 3.9214301 1103.3357
+207058.0663346546 3.9214301 1103.4147
+207059.0663347589 3.9215088 1103.3357
+207060.0663348632 3.9214301 1103.2765
+207061.0663349675 3.9214301 1103.3555
+207062.0663350718 3.9214694 1103.3357
+207063.0663351761 3.9214301 1103.3555
+207064.0663352804 3.921627 1103.3555
+207065.0663353847 3.9215875 1103.4147
+207066.066335489 3.9215088 1103.3752
+207067.0663355934 3.9215481 1103.2765
+207068.0663356977 3.921627 1103.3949
+207069.066335802 3.9216664 1103.316
+207070.0663359063 3.9215875 1103.474
+207071.0663360106 3.9217844 1103.3752
+207072.0663361149 3.9216664 1103.2963
+207073.0663362192 3.9217057 1103.3752
+207074.0663363235 3.921627 1103.3357
+207075.0663364278 3.9217057 1103.4147
+207076.0663365321 3.9217057 1103.3752
+207077.0663366364 3.9217844 1103.3949
+207078.0663367407 3.9217057 1103.3357
+207079.066336845 3.9217057 1103.3555
+207080.0663369494 3.9217057 1103.3752
+207081.0663370537 3.9217451 1103.2963
+207082.066337158 3.9216664 1103.2963
+207083.0663372623 3.9217451 1103.316
+207084.0663373666 3.9217844 1103.2567
+207085.0663374709 3.9217451 1103.2369
+207086.0663375752 3.9217057 1103.3357
+207087.0663376795 3.9217844 1103.3555
+207088.0663377838 3.9219024 1103.3949
+207089.0663378881 3.9218237 1103.3357
+207090.0663379924 3.9217451 1103.316
+207091.0663380967 3.9218631 1103.4147
+207092.0663382011 3.9219813 1103.2765
+207093.0663383054 3.9217844 1103.3555
+207094.0663384097 3.9219024 1103.3555
+207095.066338514 3.9219024 1103.2963
+207096.0663386183 3.9219024 1103.3949
+207097.0663387226 3.921942 1103.3949
+207098.0663388269 3.921942 1103.2963
+207099.0663389312 3.9219024 1103.3949
+207100.0663390355 3.92206 1103.4542
+207101.0663391398 3.9219813 1103.3357
+207102.0663392441 3.9219813 1103.2963
+207103.0663393484 3.9219813 1103.4147
+207104.0663394528 3.921942 1103.3555
+207105.0663395571 3.9219813 1103.3555
+207106.0663396614 3.9219813 1103.4147
+207107.0663397657 3.9220207 1103.316
+207108.06633987 3.9220994 1103.4542
+207109.0663399743 3.9220207 1103.2765
+207110.0663400786 3.922178 1103.2567
+207111.0663401829 3.9220994 1103.3752
+207112.0663402872 3.92206 1103.3357
+207113.0663403915 3.9221387 1103.3949
+207114.0663404958 3.922178 1103.3752
+207115.0663406001 3.9222569 1103.3752
+207116.0663407044 3.9221387 1103.2963
+207117.0663408088 3.9221387 1103.3949
+207118.0663409131 3.9222176 1103.3555
+207119.0663410174 3.9222569 1103.2963
+207120.0663411217 3.9222963 1103.3555
+207121.066341226 3.922178 1103.316
+207122.0663413303 3.9222569 1103.4542
+207123.0663414346 3.9222963 1103.3555
+207124.0663415389 3.922375 1103.3357
+207125.0663416432 3.9222176 1103.2963
+207126.0663417475 3.9222963 1103.2567
+207127.0663418518 3.922375 1103.2567
+207128.0663419561 3.9223356 1103.3752
+207129.0663420605 3.9222569 1103.3752
+207130.0663421648 3.9224536 1103.2963
+207131.0663422691 3.9223356 1103.3555
+207132.0663423734 3.9223356 1103.4147
+207133.0663424777 3.9224143 1103.3357
+207134.066342582 3.9224143 1103.2765
+207135.0663426863 3.9224536 1103.3752
+207136.0663427906 3.922493 1103.3357
+207137.0663428949 3.9224536 1103.316
+207138.0663429992 3.922493 1103.2765
+207139.0663431035 3.9225326 1103.3752
+207140.0663432078 3.9224536 1103.2963
+207141.0663433122 3.922493 1103.2963
+207142.0663434165 3.922493 1103.316
+207143.0663435208 3.9224143 1103.2567
+207144.0663436251 3.9225719 1103.2765
+207145.0663437294 3.9225719 1103.3555
+207146.0663438337 3.9225719 1103.3752
+207147.066343938 3.9226112 1103.3949
+207148.0663440423 3.9225326 1103.3949
+207149.0663441466 3.9224536 1103.3555
+207150.0663442509 3.9225719 1103.4147
+207151.0663443552 3.9224536 1103.3357
+207152.0663444595 3.9226112 1103.3752
+207153.0663445638 3.9226506 1103.2765
+207154.0663446682 3.9226112 1103.3555
+207155.0663447725 3.9226506 1103.3357
+207156.0663448768 3.9226899 1103.4147
+207157.0663449811 3.9225719 1103.2963
+207158.0663450854 3.9227686 1103.2765
+207159.0663451897 3.9227293 1103.3555
+207160.066345294 3.9226899 1103.4147
+207161.0663453983 3.9228475 1103.2369
+207162.0663455026 3.9227293 1103.316
+207163.0663456069 3.9227686 1103.316
+207164.0663457112 3.9227686 1103.3752
+207165.0663458155 3.9227293 1103.4147
+207166.0663459199 3.9227686 1103.3949
+207167.0663460242 3.9227686 1103.3752
+207168.0663461285 3.9228079 1103.2765
+207169.0663462328 3.9228868 1103.2765
+207170.0663463371 3.9228475 1103.316
+207171.0663464414 3.9227293 1103.4147
+207172.0663465457 3.9228475 1103.3357
+207173.06634665 3.9228868 1103.2963
+207174.0663467543 3.9229262 1103.3949
+207175.0663468586 3.9228868 1103.3949
+207176.0663469629 3.9229655 1103.3357
+207177.0663470672 3.9229655 1103.3555
+207178.0663471716 3.9230442 1103.3357
+207179.0663472759 3.9228868 1103.2963
+207180.0663473802 3.9229655 1103.3357
+207181.0663474845 3.9230049 1103.3752
+207182.0663475888 3.9229262 1103.316
+207183.0663476931 3.9230049 1103.3949
+207184.0663477974 3.9230442 1103.3949
+207185.0663479017 3.9230442 1103.3357
+207186.066348006 3.9230442 1103.474
+207187.0663481103 3.9230049 1103.2567
+207188.0663482146 3.9230835 1103.3752
+207189.0663483189 3.9230835 1103.3555
+207190.0663484233 3.9231625 1103.2963
+207191.0663485276 3.9230835 1103.3357
+207192.0663486319 3.9231625 1103.3555
+207193.0663487362 3.9230835 1103.3555
+207194.0663488405 3.9231229 1103.2963
+207195.0663489448 3.9232018 1103.316
+207196.0663490491 3.9232018 1103.3555
+207197.0663491534 3.9231625 1103.3555
+207198.0663492577 3.9232018 1103.3949
+207199.066349362 3.9232018 1103.3555
+207200.0663494663 3.9232411 1103.3555
+207201.0663495706 3.9231625 1103.316
+207202.0663496749 3.9232805 1103.316
+207203.0663497793 3.9232018 1103.3949
+207204.0663498836 3.9231229 1103.3357
+207205.0663499879 3.9232805 1103.4542
+207206.0663500922 3.9232805 1103.3752
+207207.0663501965 3.9233198 1103.316
+207208.0663503008 3.9233198 1103.3357
+207209.0663504051 3.9232018 1103.2963
+207210.0663505094 3.9232411 1103.3357
+207211.0663506137 3.9233592 1103.3357
+207212.066350718 3.9233985 1103.3555
+207213.0663508223 3.9233592 1103.3357
+207214.0663509266 3.9233985 1103.316
+207215.066351031 3.9233985 1103.4147
+207216.0663511353 3.9234378 1103.316
+207217.0663512396 3.9234774 1103.3949
+207218.0663513439 3.9233985 1103.3555
+207219.0663514482 3.9233592 1103.3752
+207220.0663515525 3.9235954 1103.316
+207221.0663516568 3.9233985 1103.316
+207222.0663517611 3.9234378 1103.4147
+207223.0663518654 3.9234774 1103.2765
+207224.0663519697 3.9234774 1103.3357
+207225.066352074 3.9235561 1103.2369
+207226.0663521783 3.9235168 1103.3949
+207227.0663522827 3.9235561 1103.3949
+207228.066352387 3.9234774 1103.316
+207229.0663524913 3.9235561 1103.3357
+207230.0663525956 3.9235954 1103.3555
+207231.0663526999 3.9236741 1103.3555
+207232.0663528042 3.9235954 1103.2765
+207233.0663529085 3.9235168 1103.2765
+207234.0663530128 3.9236741 1103.316
+207235.0663531171 3.9235954 1103.2765
+207236.0663532214 3.9237134 1103.3752
+207237.0663533257 3.9236348 1103.3555
+207238.06635343 3.9236741 1103.3357
+207239.0663535343 3.9237134 1103.3555
+207240.0663536387 3.9236741 1103.3752
+207241.066353743 3.9237924 1103.3555
+207242.0663538473 3.9237134 1103.2963
+207243.0663539516 3.923753 1103.3752
+207244.0663540559 3.9238317 1103.3555
+207245.0663541602 3.9236741 1103.2369
+207246.0663542645 3.9238317 1103.2963
+207247.0663543688 3.9238317 1103.316
+207248.0663544731 3.9237134 1103.3752
+207249.0663545774 3.9237924 1103.2369
+207250.0663546817 3.9237924 1103.3752
+207251.066354786 3.923871 1103.3555
+207252.0663548904 3.9238317 1103.3357
+207253.0663549947 3.9237924 1103.3752
+207254.066355099 3.9238317 1103.2963
+207255.0663552033 3.9238317 1103.2963
+207256.0663553076 3.923871 1103.3949
+207257.0663554119 3.9239497 1103.3555
+207258.0663555162 3.9240284 1103.3357
+207259.0663556205 3.9239497 1103.4542
+207260.0663557248 3.9239104 1103.3357
+207261.0663558291 3.9238317 1103.3357
+207262.0663559334 3.9240284 1103.3752
+207263.0663560377 3.9239497 1103.3357
+207264.0663561421 3.9240284 1103.3357
+207265.0663562464 3.9241073 1103.2765
+207266.0663563507 3.9239891 1103.3357
+207267.066356455 3.924068 1103.3949
+207268.0663565593 3.9239497 1103.4147
+207269.0663566636 3.9241073 1103.3949
+207270.0663567679 3.924186 1103.316
+207271.0663568722 3.924186 1103.3949
+207272.0663569765 3.924068 1103.3752
+207273.0663570808 3.924068 1103.3555
+207274.0663571851 3.924186 1103.3752
+207275.0663572894 3.9241073 1103.3949
+207276.0663573937 3.924068 1103.2963
+207277.0663574981 3.924068 1103.2765
+207278.0663576024 3.9242253 1103.3752
+207279.0663577067 3.9242647 1103.4147
+207280.066357811 3.9242253 1103.316
+207281.0663579153 3.9241467 1103.3555
+207282.0663580196 3.9241467 1103.3949
+207283.0663581239 3.9243433 1103.3555
+207284.0663582282 3.924186 1103.3949
+207285.0663583325 3.9242647 1103.316
+207286.0663584368 3.9242647 1103.3555
+207287.0663585411 3.9242647 1103.2765
+207288.0663586454 3.9243829 1103.3555
+207289.0663587498 3.9243433 1103.3555
+207290.0663588541 3.9243829 1103.3949
+207291.0663589584 3.924304 1103.3357
+207292.0663590627 3.9244223 1103.3555
+207293.066359167 3.9243433 1103.2963
+207294.0663592713 3.9244223 1103.3949
+207295.0663593756 3.9243829 1103.3949
+207296.0663594799 3.9243433 1103.3949
+207297.0663595842 3.9244616 1103.3949
+207298.0663596885 3.9244223 1103.316
+207299.0663597928 3.9244223 1103.3949
+207300.0663598971 3.9244223 1103.3752
+207301.0663600015 3.9244223 1103.4344
+207302.0663601058 3.9244223 1103.3752
+207303.0663602101 3.9245009 1103.2963
+207304.0663603144 3.9244223 1103.2765
+207305.0663604187 3.9244616 1103.3357
+207306.066360523 3.9245403 1103.3752
+207307.0663606273 3.924619 1103.3752
+207308.0663607316 3.9245009 1103.316
+207309.0663608359 3.9245796 1103.3555
+207310.0663609402 3.9245009 1103.3555
+207311.0663610445 3.9245796 1103.3752
+207312.0663611488 3.9246583 1103.3752
+207313.0663612532 3.9245796 1103.316
+207314.0663613575 3.9245796 1103.3357
+207315.0663614618 3.924619 1103.2765
+207316.0663615661 3.9246583 1103.3555
+207317.0663616704 3.9245796 1103.2765
+207318.0663617747 3.924619 1103.3555
+207319.066361879 3.9247372 1103.316
+207320.0663619833 3.9247766 1103.3357
+207321.0663620876 3.9247766 1103.3949
+207322.0663621919 3.924619 1103.4147
+207323.0663622962 3.9247766 1103.3555
+207324.0663624005 3.9247372 1103.3357
+207325.0663625048 3.9248159 1103.3357
+207326.0663626092 3.9247766 1103.3555
+207327.0663627135 3.9248159 1103.3357
+207328.0663628178 3.9246979 1103.4147
+207329.0663629221 3.9247766 1103.4147
+207330.0663630264 3.9248552 1103.316
+207331.0663631307 3.9246979 1103.4542
+207332.066363235 3.9248552 1103.3357
+207333.0663633393 3.9249339 1103.3555
+207334.0663634436 3.9248552 1103.316
+207335.0663635479 3.9247766 1103.3752
+207336.0663636522 3.9248552 1103.3555
+207337.0663637565 3.9249339 1103.316
+207338.0663638609 3.9249732 1103.3555
+207339.0663639652 3.9248946 1103.4938
+207340.0663640695 3.9248552 1103.316
+207341.0663641738 3.9249339 1103.3555
+207342.0663642781 3.9250128 1103.316
+207343.0663643824 3.9248552 1103.3752
+207344.0663644867 3.9249339 1103.3949
+207345.066364591 3.9249339 1103.3949
+207346.0663646953 3.9250522 1103.3555
+207347.0663647996 3.9250915 1103.3949
+207348.0663649039 3.9250128 1103.4344
+207349.0663650082 3.9249732 1103.3555
+207350.0663651126 3.9250522 1103.2765
+207351.0663652169 3.9250915 1103.3752
+207352.0663653212 3.9250915 1103.2963
+207353.0663654255 3.9252095 1103.4147
+207354.0663655298 3.9250522 1103.3752
+207355.0663656341 3.9252489 1103.2765
+207356.0663657384 3.9251308 1103.3555
+207357.0663658427 3.9250522 1103.3949
+207358.066365947 3.9252095 1103.2765
+207359.0663660513 3.9251702 1103.3555
+207360.0663661556 3.9252095 1103.3752
+207361.0663662599 3.9251702 1103.3752
+207362.0663663642 3.9251702 1103.2963
+207363.0663664686 3.9251702 1103.3752
+207364.0663665729 3.9252095 1103.4147
+207365.0663666772 3.9251702 1103.316
+207366.0663667815 3.9252095 1103.3357
+207367.0663668858 3.9252882 1103.1975
+207368.0663669901 3.9252882 1103.2963
+207369.0663670944 3.9252882 1103.3949
+207370.0663671987 3.9252882 1103.3949
+207371.066367303 3.9253278 1103.316
+207372.0663674073 3.9252882 1103.316
+207373.0663675116 3.9253278 1103.2765
+207374.0663676159 3.9253671 1103.3357
+207375.0663677203 3.9252489 1103.3752
+207376.0663678246 3.9254065 1103.3357
+207377.0663679289 3.9254065 1103.3357
+207378.0663680332 3.9254065 1103.3357
+207379.0663681375 3.9253671 1103.3555
+207380.0663682418 3.9254458 1103.316
+207381.0663683461 3.9254851 1103.3752
+207382.0663684504 3.9254065 1103.316
+207383.0663685547 3.9254458 1103.4147
+207384.066368659 3.9254458 1103.3357
+207385.0663687633 3.9255638 1103.3949
+207386.0663688676 3.9254458 1103.2567
+207387.066368972 3.9254458 1103.3752
+207388.0663690763 3.9255638 1103.3555
+207389.0663691806 3.9254458 1103.316
+207390.0663692849 3.9254851 1103.3357
+207391.0663693892 3.9254851 1103.3949
+207392.0663694935 3.9254851 1103.3752
+207393.0663695978 3.9255638 1103.2963
+207394.0663697021 3.9255638 1103.3357
+207395.0663698064 3.9256427 1103.4542
+207396.0663699107 3.9256821 1103.3555
+207397.066370015 3.9256034 1103.2765
+207398.0663701193 3.9256034 1103.4147
+207399.0663702236 3.9255638 1103.3555
+207400.066370328 3.9256427 1103.316
+207401.0663704323 3.9256427 1103.3555
+207402.0663705366 3.9256427 1103.316
+207403.0663706409 3.9257214 1103.2765
+207404.0663707452 3.9257214 1103.3555
+207405.0663708495 3.9256821 1103.3752
+207406.0663709538 3.9256821 1103.3555
+207407.0663710581 3.9256821 1103.2963
+207408.0663711624 3.9256821 1103.3357
+207409.0663712667 3.9258394 1103.2963
+207410.066371371 3.9256821 1103.3949
+207411.0663714753 3.9257607 1103.2765
+207412.0663715797 3.9257214 1103.2765
+207413.066371684 3.9257607 1103.3752
+207414.0663717883 3.9257607 1103.4344
+207415.0663718926 3.9258001 1103.316
+207416.0663719969 3.9258394 1103.2963
+207417.0663721012 3.9257607 1103.3357
+207418.0663722055 3.9259183 1103.3555
+207419.0663723098 3.9258788 1103.4147
+207420.0663724141 3.9259183 1103.3357
+207421.0663725184 3.9259577 1103.4344
+207422.0663726227 3.9258788 1103.316
+207423.066372727 3.9259183 1103.3949
+207424.0663728314 3.9259183 1103.3555
+207425.0663729357 3.9258001 1103.316
+207426.06637304 3.9260364 1103.3357
+207427.0663731443 3.9259577 1103.3752
+207428.0663732486 3.9259577 1103.3555
+207429.0663733529 3.925997 1103.3555
+207430.0663734572 3.9259577 1103.3752
+207431.0663735615 3.925997 1103.3555
+207432.0663736658 3.9260757 1103.2567
+207433.0663737701 3.9259577 1103.316
+207434.0663738744 3.9260757 1103.3357
+207435.0663739787 3.9260757 1103.3357
+207436.0663740831 3.925997 1103.3555
+207437.0663741874 3.9261937 1103.2765
+207438.0663742917 3.9260364 1103.3949
+207439.066374396 3.9260757 1103.3555
+207440.0663745003 3.9262333 1103.316
+207441.0663746046 3.9260757 1103.4147
+207442.0663747089 3.9260364 1103.3555
+207443.0663748132 3.926115 1103.3752
+207444.0663749175 3.9261544 1103.4147
+207445.0663750218 3.9261544 1103.2172
+207446.0663751261 3.9261937 1103.2567
+207447.0663752304 3.9261937 1103.3555
+207448.0663753347 3.926115 1103.2963
+207449.0663754391 3.9262726 1103.316
+207450.0663755434 3.9261937 1103.3949
+207451.0663756477 3.9261937 1103.3357
+207452.066375752 3.926312 1103.3555
+207453.0663758563 3.9262726 1103.3357
+207454.0663759606 3.9263906 1103.3357
+207455.0663760649 3.9263513 1103.3555
+207456.0663761692 3.926312 1103.316
+207457.0663762735 3.9263513 1103.3357
+207458.0663763778 3.9263513 1103.316
+207459.0663764821 3.9263906 1103.316
+207460.0663765864 3.9263513 1103.3357
+207461.0663766908 3.9264693 1103.3949
+207462.0663767951 3.9262726 1103.3357
+207463.0663768994 3.92643 1103.2963
+207464.0663770037 3.9263906 1103.4147
+207465.066377108 3.9265087 1103.3357
+207466.0663772123 3.9263906 1103.3555
+207467.0663773166 3.9265876 1103.2369
+207468.0663774209 3.92643 1103.3752
+207469.0663775252 3.92643 1103.316
+207470.0663776295 3.9265087 1103.2963
+207471.0663777338 3.9264693 1103.2963
+207472.0663778381 3.9265482 1103.3752
+207473.0663779425 3.9265087 1103.3752
+207474.0663780468 3.9265482 1103.3357
+207475.0663781511 3.9266269 1103.3752
+207476.0663782554 3.9264693 1103.4147
+207477.0663783597 3.9266663 1103.4542
+207478.066378464 3.9266269 1103.4344
+207479.0663785683 3.9266663 1103.3949
+207480.0663786726 3.9265482 1103.3357
+207481.0663787769 3.9265876 1103.3752
+207482.0663788812 3.9266663 1103.3752
+207483.0663789855 3.9265876 1103.3555
+207484.0663790898 3.9267449 1103.3752
+207485.0663791941 3.9266663 1103.3555
+207486.0663792985 3.9267056 1103.4147
+207487.0663794028 3.9266269 1103.4147
+207488.0663795071 3.9266663 1103.3752
+207489.0663796114 3.9267056 1103.2369
+207490.0663797157 3.9266663 1103.3752
+207491.06637982 3.9266663 1103.3555
+207492.0663799243 3.9267449 1103.3949
+207493.0663800286 3.9266269 1103.3949
+207494.0663801329 3.9268632 1103.3555
+207495.0663802372 3.9267843 1103.3555
+207496.0663803415 3.9267843 1103.3949
+207497.0663804458 3.9267843 1103.3555
+207498.0663805502 3.9267843 1103.474
+207499.0663806545 3.9267056 1103.2765
+207500.0663807588 3.9267843 1103.3949
+207501.0663808631 3.9268632 1103.3357
+207502.0663809674 3.9268632 1103.2963
+207503.0663810717 3.9267843 1103.3752
+207504.066381176 3.9268632 1103.316
+207505.0663812803 3.9269025 1103.4147
+207506.0663813846 3.9269419 1103.3949
+207507.0663814889 3.9268236 1103.3949
+207508.0663815932 3.9269419 1103.3949
+207509.0663816975 3.9269419 1103.3949
+207510.0663818019 3.9269812 1103.3752
+207511.0663819062 3.9269025 1103.2765
+207512.0663820105 3.9269419 1103.4147
+207513.0663821148 3.9270599 1103.2963
+207514.0663822191 3.9270599 1103.316
+207515.0663823234 3.9270599 1103.3752
+207516.0663824277 3.9270599 1103.3752
+207517.066382532 3.9269419 1103.3555
+207518.0663826363 3.9270992 1103.316
+207519.0663827406 3.9270205 1103.3357
+207520.0663828449 3.9270205 1103.3949
+207521.0663829492 3.9271386 1103.3752
+207522.0663830535 3.9271781 1103.3752
+207523.0663831579 3.9270992 1103.316
+207524.0663832622 3.9271386 1103.3555
+207525.0663833665 3.9271781 1103.2765
+207526.0663834708 3.9270992 1103.3949
+207527.0663835751 3.9272175 1103.2765
+207528.0663836794 3.9270205 1103.316
+207529.0663837837 3.9270992 1103.316
+207530.066383888 3.9271781 1103.3555
+207531.0663839923 3.9272568 1103.3752
+207532.0663840966 3.9272962 1103.3555
+207533.0663842009 3.9272175 1103.3555
+207534.0663843052 3.9271781 1103.3555
+207535.0663844096 3.9271781 1103.2963
+207536.0663845139 3.9272568 1103.3555
+207537.0663846182 3.9271781 1103.3357
+207538.0663847225 3.9273748 1103.3752
+207539.0663848268 3.9273355 1103.4147
+207540.0663849311 3.9272962 1103.4344
+207541.0663850354 3.9274142 1103.4147
+207542.0663851397 3.9273355 1103.316
+207543.066385244 3.9274142 1103.316
+207544.0663853483 3.9273748 1103.3555
+207545.0663854526 3.9274538 1103.3357
+207546.0663855569 3.9273748 1103.2567
+207547.0663856613 3.9274142 1103.3357
+207548.0663857656 3.9274142 1103.3555
+207549.0663858699 3.9274538 1103.3949
+207550.0663859742 3.9274538 1103.3949
+207551.0663860785 3.9274931 1103.3357
+207552.0663861828 3.9274142 1103.2963
+207553.0663862871 3.9273748 1103.2963
+207554.0663863914 3.9274538 1103.3752
+207555.0663864957 3.9275324 1103.3949
+207556.0663866 3.9275324 1103.3357
+207557.0663867043 3.9275324 1103.3357
+207558.0663868086 3.9275324 1103.2567
+207559.0663869129 3.9275718 1103.316
+207560.0663870173 3.9275718 1103.3949
+207561.0663871216 3.9275324 1103.3949
+207562.0663872259 3.9275718 1103.3752
+207563.0663873302 3.9275718 1103.3555
+207564.0663874345 3.9275718 1103.3752
+207565.0663875388 3.9275718 1103.3752
+207566.0663876431 3.9276505 1103.3752
+207567.0663877474 3.9275324 1103.3555
+207568.0663878517 3.9277687 1103.3555
+207569.066387956 3.9277687 1103.3752
+207570.0663880603 3.9276111 1103.3752
+207571.0663881646 3.9276505 1103.3949
+207572.066388269 3.9276898 1103.2765
+207573.0663883733 3.9276898 1103.3555
+207574.0663884776 3.9276898 1103.3555
+207575.0663885819 3.927808 1103.474
+207576.0663886862 3.9276898 1103.3357
+207577.0663887905 3.927808 1103.2963
+207578.0663888948 3.9277687 1103.3752
+207579.0663889991 3.9277687 1103.3555
+207580.0663891034 3.9276898 1103.3555
+207581.0663892077 3.927808 1103.4147
+207582.066389312 3.927808 1103.3357
+207583.0663894163 3.9277687 1103.3357
+207584.0663895207 3.9278474 1103.316
+207585.066389625 3.9278474 1103.3555
+207586.0663897293 3.9278867 1103.3949
+207587.0663898336 3.9278867 1103.316
+207588.0663899379 3.9279261 1103.2963
+207589.0663900422 3.9278867 1103.3752
+207590.0663901465 3.9280047 1103.3555
+207591.0663902508 3.9278867 1103.3752
+207592.0663903551 3.9279261 1103.3752
+207593.0663904594 3.9279261 1103.4147
+207594.0663905637 3.9279654 1103.3357
+207595.066390668 3.9279261 1103.2567
+207596.0663907724 3.9279261 1103.3357
+207597.0663908767 3.9279654 1103.3752
+207598.066390981 3.9279654 1103.3949
+207599.0663910853 3.927808 1103.2567
+207600.0663911896 3.9280047 1103.2963
+207601.0663912939 3.928123 1103.3752
+207602.0663913982 3.9280837 1103.316
+207603.0663915025 3.9279654 1103.3752
+207604.0663916068 3.9280047 1103.2567
+207605.0663917111 3.9279654 1103.2963
+207606.0663918154 3.9280441 1103.2765
+207607.0663919197 3.9281623 1103.3357
+207608.066392024 3.9280441 1103.2567
+207609.0663921284 3.9282017 1103.3357
+207610.0663922327 3.928123 1103.316
+207611.066392337 3.9281623 1103.3752
+207612.0663924413 3.9281623 1103.316
+207613.0663925456 3.9281623 1103.3752
+207614.0663926499 3.9281623 1103.316
+207615.0663927542 3.9281623 1103.3949
+207616.0663928585 3.9281623 1103.3555
+207617.0663929628 3.928241 1103.3949
+207618.0663930671 3.9281623 1103.2369
+207619.0663931714 3.928241 1103.2567
+207620.0663932757 3.928241 1103.3357
+207621.0663933801 3.9282017 1103.2963
+207622.0663934844 3.9283197 1103.316
+207623.0663935887 3.9282804 1103.3555
+207624.066393693 3.928241 1103.3357
+207625.0663937973 3.928241 1103.3949
+207626.0663939016 3.9283197 1103.3752
+207627.0663940059 3.928359 1103.3555
+207628.0663941102 3.9284379 1103.2963
+207629.0663942145 3.9283986 1103.2963
+207630.0663943188 3.928359 1103.4542
+207631.0663944231 3.9284379 1103.3555
+207632.0663945274 3.9284773 1103.3752
+207633.0663946318 3.928359 1103.316
+207634.0663947361 3.9283197 1103.3949
+207635.0663948404 3.928359 1103.2963
+207636.0663949447 3.9283986 1103.3555
+207637.066395049 3.9283986 1103.3949
+207638.0663951533 3.9283986 1103.3949
+207639.0663952576 3.9284379 1103.3752
+207640.0663953619 3.9285953 1103.3752
+207641.0663954662 3.9285166 1103.3357
+207642.0663955705 3.9283986 1103.3949
+207643.0663956748 3.928556 1103.3357
+207644.0663957791 3.9285166 1103.3555
+207645.0663958834 3.928556 1103.3752
+207646.0663959878 3.9285166 1103.3752
+207647.0663960921 3.928556 1103.3357
+207648.0663961964 3.9285953 1103.2963
+207649.0663963007 3.928556 1103.2963
+207650.066396405 3.9285166 1103.3949
+207651.0663965093 3.928556 1103.3357
+207652.0663966136 3.928556 1103.2765
+207653.0663967179 3.9287529 1103.3357
+207654.0663968222 3.928674 1103.3752
+207655.0663969265 3.9287922 1103.316
+207656.0663970308 3.9287136 1103.3752
+207657.0663971351 3.928674 1103.3949
+207658.0663972395 3.9287136 1103.3949
+207659.0663973438 3.928674 1103.3555
+207660.0663974481 3.928674 1103.474
+207661.0663975524 3.928674 1103.3949
+207662.0663976567 3.9287136 1103.3949
+207663.066397761 3.9287922 1103.2765
+207664.0663978653 3.9288316 1103.2963
+207665.0663979696 3.9288316 1103.3555
+207666.0663980739 3.9287529 1103.3752
+207667.0663981782 3.9288316 1103.3357
+207668.0663982825 3.9287922 1103.3555
+207669.0663983868 3.9288316 1103.3949
+207670.0663984912 3.9287529 1103.3357
+207671.0663985955 3.9289889 1103.3357
+207672.0663986998 3.9287529 1103.3555
+207673.0663988041 3.9287922 1103.4147
+207674.0663989084 3.9288316 1103.1975
+207675.0663990127 3.9288709 1103.3752
+207676.066399117 3.9289103 1103.3752
+207677.0663992213 3.9288316 1103.316
+207678.0663993256 3.9289889 1103.316
+207679.0663994299 3.9289496 1103.3555
+207680.0663995342 3.9289103 1103.3357
+207681.0663996385 3.9290285 1103.316
+207682.0663997428 3.9289496 1103.2963
+207683.0663998472 3.9289496 1103.3357
+207684.0663999515 3.9289496 1103.3752
+207685.0664000558 3.9289496 1103.316
+207686.0664001601 3.9290285 1103.316
+207687.0664002644 3.9290679 1103.3357
+207688.0664003687 3.9290679 1103.3357
+207689.066400473 3.9288709 1103.3555
+207690.0664005773 3.9290679 1103.3357
+207691.0664006816 3.9289889 1103.2963
+207692.0664007859 3.9290285 1103.2765
+207693.0664008902 3.9290679 1103.4147
+207694.0664009945 3.9291072 1103.3752
+207695.0664010989 3.9289889 1103.3555
+207696.0664012032 3.9290679 1103.3752
+207697.0664013075 3.9292252 1103.3555
+207698.0664014118 3.9291859 1103.3949
+207699.0664015161 3.9290285 1103.3949
+207700.0664016204 3.9291859 1103.3555
+207701.0664017247 3.9291465 1103.2567
+207702.066401829 3.9291465 1103.474
+207703.0664019333 3.9293041 1103.3357
+207704.0664020376 3.9291072 1103.3555
+207705.0664021419 3.9292252 1103.2765
+207706.0664022462 3.9292645 1103.316
+207707.0664023506 3.9292645 1103.2765
+207708.0664024549 3.9292252 1103.3357
+207709.0664025592 3.9292645 1103.4147
+207710.0664026635 3.9293041 1103.474
+207711.0664027678 3.9293435 1103.4147
+207712.0664028721 3.9292645 1103.3752
+207713.0664029764 3.9293435 1103.316
+207714.0664030807 3.9293828 1103.3357
+207715.066403185 3.9293828 1103.4344
+207716.0664032893 3.9294615 1103.3357
+207717.0664033936 3.9293041 1103.3949
+207718.0664034979 3.9294221 1103.3752
+207719.0664036023 3.9293828 1103.3357
+207720.0664037066 3.9293828 1103.3555
+207721.0664038109 3.9293041 1103.3949
+207722.0664039152 3.9294615 1103.3752
+207723.0664040195 3.9293828 1103.3949
+207724.0664041238 3.9293828 1103.3555
+207725.0664042281 3.9295008 1103.3949
+207726.0664043324 3.9294615 1103.3949
+207727.0664044367 3.9295008 1103.3752
+207728.066404541 3.9294221 1103.3555
+207729.0664046453 3.9295008 1103.3555
+207730.0664047496 3.9295795 1103.2765
+207731.0664048539 3.9295402 1103.4344
+207732.0664049583 3.9296978 1103.3949
+207733.0664050626 3.9295008 1103.2765
+207734.0664051669 3.9295402 1103.4344
+207735.0664052712 3.9295795 1103.3752
+207736.0664053755 3.9295795 1103.2765
+207737.0664054798 3.9296191 1103.3949
+207738.0664055841 3.9295402 1103.3555
+207739.0664056884 3.9295402 1103.2963
+207740.0664057927 3.9296978 1103.316
+207741.066405897 3.9296191 1103.3357
+207742.0664060013 3.9296978 1103.3555
+207743.0664061056 3.9295795 1103.2963
+207744.06640621 3.9296584 1103.4147
+207745.0664063143 3.9296584 1103.3949
+207746.0664064186 3.9297764 1103.3949
+207747.0664065229 3.9296978 1103.316
+207748.0664066272 3.9296978 1103.3555
+207749.0664067315 3.9296978 1103.3357
+207750.0664068358 3.9297371 1103.2963
+207751.0664069401 3.9297764 1103.3555
+207752.0664070444 3.9297371 1103.4344
+207753.0664071487 3.9298551 1103.4147
+207754.066407253 3.9298158 1103.2963
+207755.0664073573 3.9297371 1103.4147
+207756.0664074617 3.9298944 1103.2963
+207757.066407566 3.929934 1103.3357
+207758.0664076703 3.9298551 1103.3357
+207759.0664077746 3.9298551 1103.3555
+207760.0664078789 3.9298944 1103.4147
+207761.0664079832 3.9298158 1103.4147
+207762.0664080875 3.9298551 1103.3949
+207763.0664081918 3.9299734 1103.3752
+207764.0664082961 3.9298158 1103.4147
+207765.0664084004 3.9298551 1103.3555
+207766.0664085047 3.9299734 1103.3752
+207767.066408609 3.9298944 1103.3357
+207768.0664087133 3.9299734 1103.3752
+207769.0664088177 3.930052 1103.3752
+207770.066408922 3.929934 1103.3357
+207771.0664090263 3.929934 1103.3949
+207772.0664091306 3.9299734 1103.3357
+207773.0664092349 3.9299734 1103.316
+207774.0664093392 3.9300914 1103.2567
+207775.0664094435 3.930052 1103.3555
+207776.0664095478 3.9300914 1103.3949
+207777.0664096521 3.930052 1103.3357
+207778.0664097564 3.9300914 1103.3357
+207779.0664098607 3.9300127 1103.3949
+207780.066409965 3.930052 1103.3752
+207781.0664100694 3.930052 1103.316
+207782.0664101737 3.9302094 1103.3555
+207783.066410278 3.9301307 1103.3752
+207784.0664103823 3.930052 1103.316
+207785.0664104866 3.9301307 1103.474
+207786.0664105909 3.9301701 1103.3357
+207787.0664106952 3.9302094 1103.2765
+207788.0664107995 3.9302094 1103.3555
+207789.0664109038 3.9301701 1103.3555
+207790.0664110081 3.930249 1103.2963
+207791.0664111124 3.930249 1103.316
+207792.0664112167 3.930249 1103.2963
+207793.0664113211 3.9303277 1103.3752
+207794.0664114254 3.930249 1103.3357
+207795.0664115297 3.930249 1103.3555
+207796.066411634 3.9303277 1103.316
+207797.0664117383 3.9302883 1103.4344
+207798.0664118426 3.9303277 1103.3555
+207799.0664119469 3.930367 1103.316
+207800.0664120512 3.930367 1103.3555
+207801.0664121555 3.9304063 1103.3555
+207802.0664122598 3.930367 1103.3357
+207803.0664123641 3.9304457 1103.2963
+207804.0664124684 3.930367 1103.4542
+207805.0664125727 3.930367 1103.2963
+207806.0664126771 3.9304063 1103.316
+207807.0664127814 3.9302883 1103.2963
+207808.0664128857 3.9303277 1103.316
+207809.06641299 3.9304457 1103.3357
+207810.0664130943 3.9304457 1103.2765
+207811.0664131986 3.9304457 1103.2963
+207812.0664133029 3.9304063 1103.3752
+207813.0664134072 3.9305243 1103.3555
+207814.0664135115 3.9304457 1103.316
+207815.0664136158 3.9305243 1103.3752
+207816.0664137201 3.9305243 1103.3752
+207817.0664138244 3.9305639 1103.3555
+207818.0664139288 3.9305639 1103.316
+207819.0664140331 3.9306033 1103.3752
+207820.0664141374 3.9306033 1103.3357
+207821.0664142417 3.9306426 1103.316
+207822.066414346 3.9305243 1103.4147
+207823.0664144503 3.9305639 1103.316
+207824.0664145546 3.9306033 1103.3949
+207825.0664146589 3.9305639 1103.2963
+207826.0664147632 3.9305243 1103.3357
+207827.0664148675 3.9306426 1103.3752
+207828.0664149718 3.9306426 1103.3357
+207829.0664150761 3.9306819 1103.3555
+207830.0664151805 3.9307213 1103.2765
+207831.0664152848 3.9306819 1103.316
+207832.0664153891 3.9306426 1103.4344
+207833.0664154934 3.9305639 1103.4147
+207834.0664155977 3.9307213 1103.2963
+207835.066415702 3.9307213 1103.3357
+207836.0664158063 3.9307213 1103.3949
+207837.0664159106 3.9307606 1103.2765
+207838.0664160149 3.9307606 1103.3357
+207839.0664161192 3.9308 1103.3949
+207840.0664162235 3.9308 1103.3357
+207841.0664163278 3.9307606 1103.3555
+207842.0664164322 3.9308789 1103.2567
+207843.0664165365 3.9308 1103.2765
+207844.0664166408 3.9308 1103.3555
+207845.0664167451 3.9307213 1103.2963
+207846.0664168494 3.9307606 1103.3555
+207847.0664169537 3.9309576 1103.2963
+207848.066417058 3.9309576 1103.316
+207849.0664171623 3.9308789 1103.2963
+207850.0664172666 3.9309182 1103.3752
+207851.0664173709 3.9309182 1103.3555
+207852.0664174752 3.9309969 1103.3752
+207853.0664175795 3.9309969 1103.3949
+207854.0664176838 3.9309182 1103.3555
+207855.0664177882 3.9309969 1103.4344
+207856.0664178925 3.9309576 1103.3949
+207857.0664179968 3.9309576 1103.3949
+207858.0664181011 3.9310362 1103.4344
+207859.0664182054 3.9310756 1103.3752
+207860.0664183097 3.9310362 1103.3357
+207861.066418414 3.9310362 1103.2963
+207862.0664185183 3.9311149 1103.3752
+207863.0664186226 3.9311149 1103.3752
+207864.0664187269 3.9310756 1103.4344
+207865.0664188312 3.9310756 1103.4938
+207866.0664189355 3.9310362 1103.4344
+207867.0664190399 3.9311545 1103.2765
+207868.0664191442 3.9311545 1103.4147
+207869.0664192485 3.9311545 1103.316
+207870.0664193528 3.9311545 1103.3949
+207871.0664194571 3.9311545 1103.3357
+207872.0664195614 3.9311545 1103.2963
+207873.0664196657 3.9311545 1103.3949
+207874.06641977 3.9311938 1103.2765
+207875.0664198743 3.9312332 1103.3357
+207876.0664199786 3.9311545 1103.3555
+207877.0664200829 3.9311938 1103.3949
+207878.0664201872 3.9312725 1103.3357
+207879.0664202916 3.9313118 1103.3357
+207880.0664203959 3.9311938 1103.316
+207881.0664205002 3.9312332 1103.316
+207882.0664206045 3.9312725 1103.4344
+207883.0664207088 3.9312725 1103.316
+207884.0664208131 3.9313118 1103.316
+207885.0664209174 3.9313118 1103.4542
+207886.0664210217 3.9313118 1103.4344
+207887.066421126 3.9313118 1103.3752
+207888.0664212303 3.9313118 1103.3949
+207889.0664213346 3.9313512 1103.316
+207890.0664214389 3.9313512 1103.316
+207891.0664215432 3.9313512 1103.3949
+207892.0664216476 3.9314299 1103.3752
+207893.0664217519 3.9313905 1103.3357
+207894.0664218562 3.9313905 1103.3949
+207895.0664219605 3.9314299 1103.2963
+207896.0664220648 3.9314299 1103.4147
+207897.0664221691 3.9313905 1103.3752
+207898.0664222734 3.9315088 1103.316
+207899.0664223777 3.9315481 1103.3752
+207900.066422482 3.9313905 1103.3752
+207901.0664225863 3.9313905 1103.2963
+207902.0664226906 3.9315481 1103.3555
+207903.0664227949 3.9315088 1103.4147
+207904.0664228993 3.9314694 1103.316
+207905.0664230036 3.9315481 1103.3357
+207906.0664231079 3.9316268 1103.4542
+207907.0664232122 3.9315088 1103.2963
+207908.0664233165 3.9315875 1103.2963
+207909.0664234208 3.9315875 1103.3357
+207910.0664235251 3.9315481 1103.2963
+207911.0664236294 3.9315481 1103.3357
+207912.0664237337 3.9315481 1103.3357
+207913.066423838 3.9315481 1103.3555
+207914.0664239423 3.9316268 1103.3752
+207915.0664240466 3.9316661 1103.2963
+207916.066424151 3.9315481 1103.4344
+207917.0664242553 3.9316268 1103.3752
+207918.0664243596 3.9317055 1103.3949
+207919.0664244639 3.9317055 1103.3949
+207920.0664245682 3.9317448 1103.4147
+207921.0664246725 3.9317055 1103.3357
+207922.0664247768 3.9317055 1103.3357
+207923.0664248811 3.9317055 1103.2963
+207924.0664249854 3.9317055 1103.316
+207925.0664250897 3.9317448 1103.2963
+207926.066425194 3.9318631 1103.2765
+207927.0664252983 3.9319024 1103.3357
+207928.0664254026 3.9317448 1103.4147
+207929.066425507 3.9318631 1103.3752
+207930.0664256113 3.9317448 1103.3949
+207931.0664257156 3.9317844 1103.4344
+207932.0664258199 3.9317844 1103.316
+207933.0664259242 3.9318237 1103.316
+207934.0664260285 3.9317844 1103.3949
+207935.0664261328 3.9318237 1103.3357
+207936.0664262371 3.9319811 1103.2963
+207937.0664263414 3.9319024 1103.3357
+207938.0664264457 3.9317844 1103.3752
+207939.06642655 3.9319417 1103.3357
+207940.0664266543 3.9319417 1103.3555
+207941.0664267587 3.9320204 1103.3555
+207942.066426863 3.9320204 1103.4542
+207943.0664269673 3.9319024 1103.3357
+207944.0664270716 3.9320598 1103.316
+207945.0664271759 3.9319417 1103.316
+207946.0664272802 3.9318631 1103.3357
+207947.0664273845 3.9319811 1103.2567
+207948.0664274888 3.9320204 1103.2963
+207949.0664275931 3.9320204 1103.3949
+207950.0664276974 3.9320598 1103.3357
+207951.0664278017 3.9320993 1103.3949
+207952.066427906 3.9320598 1103.2963
+207953.0664280104 3.9320598 1103.2567
+207954.0664281147 3.9319811 1103.3357
+207955.066428219 3.9320598 1103.3949
+207956.0664283233 3.9320598 1103.2963
+207957.0664284276 3.932178 1103.316
+207958.0664285319 3.932178 1103.2567
+207959.0664286362 3.9320598 1103.3357
+207960.0664287405 3.9322174 1103.2567
+207961.0664288448 3.9321387 1103.3555
+207962.0664289491 3.9321387 1103.3555
+207963.0664290534 3.9320993 1103.3555
+207964.0664291577 3.9322567 1103.3357
+207965.0664292621 3.9322174 1103.3357
+207966.0664293664 3.9322174 1103.316
+207967.0664294707 3.9323354 1103.3555
+207968.066429575 3.932178 1103.4147
+207969.0664296793 3.9322567 1103.3555
+207970.0664297836 3.9322567 1103.3752
+207971.0664298879 3.9321387 1103.3949
+207972.0664299922 3.9322567 1103.3555
+207973.0664300965 3.932296 1103.3357
+207974.0664302008 3.9323747 1103.4147
+207975.0664303051 3.9323354 1103.3752
+207976.0664304094 3.9323354 1103.316
+207977.0664305137 3.9322567 1103.3949
+207978.0664306181 3.932296 1103.4344
+207979.0664307224 3.9324143 1103.3752
+207980.0664308267 3.9323354 1103.3555
+207981.066430931 3.9323747 1103.2765
+207982.0664310353 3.932493 1103.3752
+207983.0664311396 3.9324143 1103.3752
+207984.0664312439 3.9324536 1103.2963
+207985.0664313482 3.9325323 1103.3949
+207986.0664314525 3.932493 1103.2963
+207987.0664315568 3.9324536 1103.2963
+207988.0664316611 3.932493 1103.3555
+207989.0664317654 3.9325323 1103.3357
+207990.0664318698 3.9324536 1103.3555
+207991.0664319741 3.932493 1103.2765
+207992.0664320784 3.9325323 1103.3949
+207993.0664321827 3.932493 1103.3357
+207994.066432287 3.9325716 1103.3752
+207995.0664323913 3.932493 1103.316
+207996.0664324956 3.9325323 1103.2963
+207997.0664325999 3.9326897 1103.3752
+207998.0664327042 3.9326897 1103.4344
+207999.0664328085 3.932611 1103.3949
+208000.0664329128 3.932611 1103.3752
+208001.0664330171 3.9326503 1103.316
+208002.0664331215 3.9326503 1103.316
+208003.0664332258 3.932611 1103.3949
+208004.0664333301 3.9326897 1103.3555
+208005.0664334344 3.9326897 1103.3555
+208006.0664335387 3.9327292 1103.3555
+208007.066433643 3.9327686 1103.3949
+208008.0664337473 3.9327292 1103.3949
+208009.0664338516 3.9327686 1103.3555
+208010.0664339559 3.9326897 1103.3555
+208011.0664340602 3.9327292 1103.2963
+208012.0664341645 3.9328473 1103.316
+208013.0664342688 3.9326897 1103.316
+208014.0664343731 3.9327686 1103.2963
+208015.0664344775 3.9327292 1103.3555
+208016.0664345818 3.9328079 1103.3949
+208017.0664346861 3.9327686 1103.3555
+208018.0664347904 3.9328473 1103.3555
+208019.0664348947 3.9327686 1103.2765
+208020.066434999 3.9327686 1103.3357
+208021.0664351033 3.9328473 1103.4344
+208022.0664352076 3.9327686 1103.3555
+208023.0664353119 3.9328866 1103.2567
+208024.0664354162 3.9329259 1103.3555
+208025.0664355205 3.9329259 1103.3752
+208026.0664356248 3.9329259 1103.2567
+208027.0664357292 3.9329259 1103.3555
+208028.0664358335 3.9328866 1103.3752
+208029.0664359378 3.9329653 1103.4147
+208030.0664360421 3.9328866 1103.3555
+208031.0664361464 3.9328866 1103.2963
+208032.0664362507 3.9328866 1103.3949
+208033.066436355 3.9330442 1103.2765
+208034.0664364593 3.9330049 1103.2567
+208035.0664365636 3.9330835 1103.316
+208036.0664366679 3.9330049 1103.3357
+208037.0664367722 3.9330442 1103.3555
+208038.0664368765 3.9330442 1103.2963
+208039.0664369809 3.9330835 1103.4147
+208040.0664370852 3.9330835 1103.3949
+208041.0664371895 3.9330835 1103.3555
+208042.0664372938 3.9331229 1103.3555
+208043.0664373981 3.9330442 1103.4147
+208044.0664375024 3.9330049 1103.316
+208045.0664376067 3.9330442 1103.3949
+208046.066437711 3.9331622 1103.316
+208047.0664378153 3.9332016 1103.316
+208048.0664379196 3.9330835 1103.316
+208049.0664380239 3.9331622 1103.4147
+208050.0664381282 3.9332016 1103.3949
+208051.0664382325 3.9332409 1103.3357
+208052.0664383369 3.9333591 1103.3555
+208053.0664384412 3.9332409 1103.4344
+208054.0664385455 3.9332016 1103.4344
+208055.0664386498 3.9332409 1103.3752
+208056.0664387541 3.9332409 1103.2963
+208057.0664388584 3.9332016 1103.3752
+208058.0664389627 3.9332802 1103.316
+208059.066439067 3.9333198 1103.3949
+208060.0664391713 3.9332802 1103.3555
+208061.0664392756 3.9333591 1103.3752
+208062.0664393799 3.9332802 1103.316
+208063.0664394842 3.9332802 1103.3357
+208064.0664395886 3.9333198 1103.3752
+208065.0664396929 3.9333985 1103.316
+208066.0664397972 3.9334378 1103.4344
+208067.0664399015 3.9333591 1103.3357
+208068.0664400058 3.9333591 1103.3357
+208069.0664401101 3.9334378 1103.2963
+208070.0664402144 3.9334378 1103.3357
+208071.0664403187 3.9334378 1103.3357
+208072.066440423 3.9334378 1103.2765
+208073.0664405273 3.9334378 1103.3752
+208074.0664406316 3.9334772 1103.3752
+208075.0664407359 3.9334772 1103.3555
+208076.0664408403 3.9334772 1103.3949
+208077.0664409446 3.9333985 1103.4147
+208078.0664410489 3.9334378 1103.4147
+208079.0664411532 3.9336348 1103.3949
+208080.0664412575 3.9334772 1103.2567
+208081.0664413618 3.9334772 1103.3555
+208082.0664414661 3.9335165 1103.316
+208083.0664415704 3.9335558 1103.3357
+208084.0664416747 3.9335952 1103.316
+208085.066441779 3.9335558 1103.4344
+208086.0664418833 3.9336348 1103.3949
+208087.0664419876 3.9335558 1103.3949
+208088.0664420919 3.9335952 1103.3357
+208089.0664421963 3.9336348 1103.2765
+208090.0664423006 3.9335165 1103.3357
+208091.0664424049 3.9336348 1103.3555
+208092.0664425092 3.9335952 1103.3555
+208093.0664426135 3.9337528 1103.3752
+208094.0664427178 3.9337134 1103.3949
+208095.0664428221 3.9337134 1103.2369
+208096.0664429264 3.9337134 1103.3555
+208097.0664430307 3.9337528 1103.316
+208098.066443135 3.9338315 1103.3752
+208099.0664432393 3.9338315 1103.3752
+208100.0664433436 3.9337528 1103.4344
+208101.066443448 3.9337134 1103.3949
+208102.0664435523 3.9338315 1103.3357
+208103.0664436566 3.9337134 1103.4147
+208104.0664437609 3.9337528 1103.3357
+208105.0664438652 3.9338708 1103.3555
+208106.0664439695 3.9337528 1103.3752
+208107.0664440738 3.9337921 1103.3752
+208108.0664441781 3.9337921 1103.3357
+208109.0664442824 3.9338315 1103.3357
+208110.0664443867 3.9338708 1103.3949
+208111.066444491 3.9337921 1103.316
+208112.0664445953 3.9338708 1103.3949
+208113.0664446997 3.9339497 1103.3555
+208114.066444804 3.9339101 1103.3752
+208115.0664449083 3.9338708 1103.316
+208116.0664450126 3.9339497 1103.3555
+208117.0664451169 3.9338708 1103.2963
+208118.0664452212 3.933989 1103.3357
+208119.0664453255 3.9339497 1103.3555
+208120.0664454298 3.9340284 1103.3357
+208121.0664455341 3.9339497 1103.2765
+208122.0664456384 3.933989 1103.2963
+208123.0664457427 3.9340677 1103.3949
+208124.066445847 3.9339497 1103.3555
+208125.0664459514 3.9340284 1103.3357
+208126.0664460557 3.9340677 1103.2369
+208127.06644616 3.9340284 1103.316
+208128.0664462643 3.9340677 1103.3752
+208129.0664463686 3.9341071 1103.3357
+208130.0664464729 3.933989 1103.3357
+208131.0664465772 3.9341071 1103.316
+208132.0664466815 3.9340677 1103.3555
+208133.0664467858 3.9340677 1103.3357
+208134.0664468901 3.9342251 1103.3752
+208135.0664469944 3.9341071 1103.4344
+208136.0664470987 3.9341464 1103.2765
+208137.066447203 3.934304 1103.3357
+208138.0664473074 3.9341071 1103.3357
+208139.0664474117 3.9341464 1103.3752
+208140.066447516 3.9341857 1103.3555
+208141.0664476203 3.9341857 1103.3555
+208142.0664477246 3.934304 1103.3949
+208143.0664478289 3.9342647 1103.3752
+208144.0664479332 3.9342251 1103.316
+208145.0664480375 3.934304 1103.3357
+208146.0664481418 3.9343433 1103.3357
+208147.0664482461 3.934304 1103.3949
+208148.0664483504 3.934422 1103.3555
+208149.0664484547 3.9343433 1103.316
+208150.0664485591 3.9342647 1103.3555
+208151.0664486634 3.9343827 1103.3949
+208152.0664487677 3.934422 1103.2765
+208153.066448872 3.9342647 1103.316
+208154.0664489763 3.9343433 1103.3949
+208155.0664490806 3.9343433 1103.3357
+208156.0664491849 3.9345007 1103.316
+208157.0664492892 3.9343827 1103.2765
+208158.0664493935 3.934422 1103.2963
+208159.0664494978 3.934304 1103.3949
+208160.0664496021 3.9343433 1103.4147
+208161.0664497064 3.9343827 1103.3555
+208162.0664498108 3.934422 1103.3949
+208163.0664499151 3.934422 1103.3949
+208164.0664500194 3.9345403 1103.3949
+208165.0664501237 3.9343827 1103.3555
+208166.066450228 3.9343827 1103.3555
+208167.0664503323 3.9345796 1103.2567
+208168.0664504366 3.9346189 1103.3357
+208169.0664505409 3.9345007 1103.3555
+208170.0664506452 3.934422 1103.474
+208171.0664507495 3.9345796 1103.3752
+208172.0664508538 3.9345796 1103.3949
+208173.0664509581 3.9345007 1103.3555
+208174.0664510624 3.9345007 1103.3752
+208175.0664511668 3.9346189 1103.3555
+208176.0664512711 3.9346189 1103.3357
+208177.0664513754 3.9346976 1103.3357
+208178.0664514797 3.9346189 1103.3555
+208179.066451584 3.9346583 1103.316
+208180.0664516883 3.9346976 1103.4147
+208181.0664517926 3.934737 1103.3357
+208182.0664518969 3.9345796 1103.3752
+208183.0664520012 3.934737 1103.3752
+208184.0664521055 3.9346976 1103.3752
+208185.0664522098 3.9348156 1103.474
+208186.0664523141 3.9346976 1103.3555
+208187.0664524185 3.9346583 1103.3752
+208188.0664525228 3.9346976 1103.3357
+208189.0664526271 3.9347763 1103.4344
+208190.0664527314 3.9346976 1103.316
+208191.0664528357 3.9347763 1103.3555
+208192.06645294 3.9348552 1103.3357
+208193.0664530443 3.934737 1103.2765
+208194.0664531486 3.934737 1103.3555
+208195.0664532529 3.9348946 1103.3752
+208196.0664533572 3.9348156 1103.316
+208197.0664534615 3.9348552 1103.2963
+208198.0664535658 3.9348156 1103.3357
+208199.0664536702 3.9348552 1103.2963
+208200.0664537745 3.9348946 1103.4938
+208201.0664538788 3.9348552 1103.4542
+208202.0664539831 3.9348946 1103.2963
+208203.0664540874 3.9348946 1103.2963
+208204.0664541917 3.9348156 1103.3555
+208205.066454296 3.9348946 1103.316
+208206.0664544003 3.9351306 1103.4147
+208207.0664545046 3.9349339 1103.3555
+208208.0664546089 3.9349732 1103.3555
+208209.0664547132 3.9349339 1103.3357
+208210.0664548175 3.9349732 1103.3555
+208211.0664549218 3.9350913 1103.4147
+208212.0664550262 3.9348946 1103.316
+208213.0664551305 3.9350126 1103.316
+208214.0664552348 3.9350519 1103.3752
+208215.0664553391 3.9350519 1103.3357
+208216.0664554434 3.9350126 1103.2765
+208217.0664555477 3.9350126 1103.2765
+208218.066455652 3.9349732 1103.3555
+208219.0664557563 3.9350519 1103.3555
+208220.0664558606 3.9350519 1103.3949
+208221.0664559649 3.9351306 1103.316
+208222.0664560692 3.9351306 1103.4147
+208223.0664561735 3.9350913 1103.316
+208224.0664562779 3.9351702 1103.3949
+208225.0664563822 3.9351702 1103.3357
+208226.0664564865 3.9351702 1103.4147
+208227.0664565908 3.9351702 1103.3357
+208228.0664566951 3.9352095 1103.2963
+208229.0664567994 3.9352095 1103.316
+208230.0664569037 3.9352095 1103.316
+208231.066457008 3.9352882 1103.4542
+208232.0664571123 3.9351306 1103.3555
+208233.0664572166 3.9351702 1103.3357
+208234.0664573209 3.9352489 1103.2765
+208235.0664574252 3.9352095 1103.4147
+208236.0664575296 3.9352095 1103.3949
+208237.0664576339 3.9353275 1103.2765
+208238.0664577382 3.9352882 1103.3357
+208239.0664578425 3.9353275 1103.3357
+208240.0664579468 3.9352489 1103.4542
+208241.0664580511 3.9353275 1103.3357
+208242.0664581554 3.9352882 1103.2963
+208243.0664582597 3.9352882 1103.3949
+208244.066458364 3.9353669 1103.3357
+208245.0664584683 3.9354455 1103.4147
+208246.0664585726 3.9352489 1103.3357
+208247.0664586769 3.9353275 1103.3752
+208248.0664587813 3.9353275 1103.3357
+208249.0664588856 3.9352882 1103.2765
+208250.0664589899 3.9354062 1103.3949
+208251.0664590942 3.9353669 1103.3752
+208252.0664591985 3.9353669 1103.3357
+208253.0664593028 3.9354455 1103.2765
+208254.0664594071 3.9354455 1103.3357
+208255.0664595114 3.9354851 1103.4147
+208256.0664596157 3.9355245 1103.4344
+208257.06645972 3.9354851 1103.3357
+208258.0664598243 3.9354851 1103.3752
+208259.0664599286 3.9354851 1103.3949
+208260.0664600329 3.9354455 1103.3949
+208261.0664601373 3.9355245 1103.3555
+208262.0664602416 3.9356031 1103.2567
+208263.0664603459 3.9355638 1103.3555
+208264.0664604502 3.9355638 1103.316
+208265.0664605545 3.9356425 1103.3357
+208266.0664606588 3.9355638 1103.316
+208267.0664607631 3.9357212 1103.3357
+208268.0664608674 3.9356425 1103.316
+208269.0664609717 3.9355638 1103.3555
+208270.066461076 3.9356425 1103.4542
+208271.0664611803 3.9356425 1103.2765
+208272.0664612846 3.9358001 1103.3752
+208273.066461389 3.9356425 1103.2963
+208274.0664614933 3.9356425 1103.3752
+208275.0664615976 3.9357605 1103.2765
+208276.0664617019 3.9357212 1103.3555
+208277.0664618062 3.9357212 1103.3949
+208278.0664619105 3.9358001 1103.2963
+208279.0664620148 3.9357605 1103.3949
+208280.0664621191 3.9356818 1103.3357
+208281.0664622234 3.9357212 1103.3357
+208282.0664623277 3.9358788 1103.3949
+208283.066462432 3.9357212 1103.3752
+208284.0664625363 3.9357212 1103.2765
+208285.0664626407 3.9358001 1103.3949
+208286.066462745 3.9358001 1103.3357
+208287.0664628493 3.9358394 1103.2963
+208288.0664629536 3.9358394 1103.3752
+208289.0664630579 3.9358394 1103.2963
+208290.0664631622 3.9358001 1103.2963
+208291.0664632665 3.9359181 1103.2963
+208292.0664633708 3.9358001 1103.3555
+208293.0664634751 3.9359181 1103.3949
+208294.0664635794 3.9359181 1103.2963
+208295.0664636837 3.9358788 1103.3357
+208296.066463788 3.9359181 1103.3949
+208297.0664638923 3.9359574 1103.316
+208298.0664639967 3.9359574 1103.2963
+208299.066464101 3.9359574 1103.3357
+208300.0664642053 3.9359574 1103.3949
+208301.0664643096 3.9359968 1103.2369
+208302.0664644139 3.9359181 1103.2963
+208303.0664645182 3.9360361 1103.3555
+208304.0664646225 3.9359968 1103.3555
+208305.0664647268 3.9359968 1103.316
+208306.0664648311 3.9360754 1103.316
+208307.0664649354 3.9361544 1103.3752
+208308.0664650397 3.9360361 1103.3555
+208309.066465144 3.9359574 1103.3949
+208310.0664652484 3.936115 1103.3357
+208311.0664653527 3.9360361 1103.3555
+208312.066465457 3.9361544 1103.3357
+208313.0664655613 3.9361544 1103.3357
+208314.0664656656 3.9360754 1103.3357
+208315.0664657699 3.936115 1103.316
+208316.0664658742 3.936115 1103.2963
+208317.0664659785 3.9361937 1103.3949
+208318.0664660828 3.9362724 1103.316
+208319.0664661871 3.936233 1103.2963
+208320.0664662914 3.9361544 1103.316
+208321.0664663957 3.936233 1103.3555
+208322.0664665001 3.9363511 1103.3357
+208323.0664666044 3.9363511 1103.3555
+208324.0664667087 3.9363511 1103.2765
+208325.066466813 3.9362724 1103.3357
+208326.0664669173 3.936233 1103.3357
+208327.0664670216 3.9362724 1103.3357
+208328.0664671259 3.9362724 1103.3555
+208329.0664672302 3.9363117 1103.2765
+208330.0664673345 3.9363906 1103.316
+208331.0664674388 3.9363117 1103.3752
+208332.0664675431 3.9363117 1103.3357
+208333.0664676474 3.9363511 1103.3949
+208334.0664677517 3.9363906 1103.3752
+208335.0664678561 3.9363511 1103.3752
+208336.0664679604 3.9363117 1103.316
+208337.0664680647 3.9363906 1103.3752
+208338.066468169 3.9363511 1103.3555
+208339.0664682733 3.9363906 1103.3752
+208340.0664683776 3.9363511 1103.3357
+208341.0664684819 3.9364693 1103.4542
+208342.0664685862 3.93643 1103.3949
+208343.0664686905 3.9364693 1103.316
+208344.0664687948 3.9363906 1103.3949
+208345.0664688991 3.9364693 1103.3752
+208346.0664690034 3.93643 1103.2963
+208347.0664691078 3.9364693 1103.3752
+208348.0664692121 3.9365873 1103.2963
+208349.0664693164 3.9365087 1103.3357
+208350.0664694207 3.9365087 1103.3752
+208351.066469525 3.9365873 1103.3752
+208352.0664696293 3.9365873 1103.2567
+208353.0664697336 3.9364693 1103.3752
+208354.0664698379 3.9365873 1103.4147
+208355.0664699422 3.9365087 1103.4147
+208356.0664700465 3.9366267 1103.2765
+208357.0664701508 3.9365873 1103.3752
+208358.0664702551 3.936666 1103.3357
+208359.0664703595 3.9365873 1103.3357
+208360.0664704638 3.936666 1103.3752
+208361.0664705681 3.9367056 1103.316
+208362.0664706724 3.936666 1103.2567
+208363.0664707767 3.9366267 1103.3949
+208364.066470881 3.936666 1103.4147
+208365.0664709853 3.9367843 1103.3752
+208366.0664710896 3.9367843 1103.3357
+208367.0664711939 3.9365873 1103.2765
+208368.0664712982 3.9367449 1103.316
+208369.0664714025 3.9367056 1103.2765
+208370.0664715068 3.936666 1103.3357
+208371.0664716112 3.9367056 1103.4147
+208372.0664717155 3.9367449 1103.3752
+208373.0664718198 3.9367843 1103.3357
+208374.0664719241 3.9369416 1103.3555
+208375.0664720284 3.9368629 1103.316
+208376.0664721327 3.9367843 1103.2369
+208377.066472237 3.9367449 1103.3357
+208378.0664723413 3.9368236 1103.3752
+208379.0664724456 3.9367843 1103.3357
+208380.0664725499 3.9368236 1103.3357
+208381.0664726542 3.9369023 1103.3357
+208382.0664727585 3.9368236 1103.2765
+208383.0664728628 3.9368236 1103.316
+208384.0664729672 3.9368629 1103.2963
+208385.0664730715 3.9369023 1103.3949
+208386.0664731758 3.936981 1103.3357
+208387.0664732801 3.9369416 1103.3555
+208388.0664733844 3.936981 1103.3752
+208389.0664734887 3.9370992 1103.3752
+208390.066473593 3.9370599 1103.3752
+208391.0664736973 3.9371386 1103.3555
+208392.0664738016 3.9370205 1103.3752
+208393.0664739059 3.9369023 1103.4147
+208394.0664740102 3.936981 1103.3752
+208395.0664741145 3.9369416 1103.3555
+208396.0664742189 3.9370205 1103.3555
+208397.0664743232 3.9371386 1103.3357
+208398.0664744275 3.9370599 1103.3357
+208399.0664745318 3.9370992 1103.3752
+208400.0664746361 3.9370992 1103.3357
+208401.0664747404 3.9370599 1103.3555
+208402.0664748447 3.9370599 1103.3357
+208403.066474949 3.9370599 1103.3949
+208404.0664750533 3.9370992 1103.2963
+208405.0664751576 3.9372566 1103.3949
+208406.0664752619 3.9371386 1103.3555
+208407.0664753662 3.9371386 1103.3555
+208408.0664754706 3.9371779 1103.3752
+208409.0664755749 3.9371386 1103.4147
+208410.0664756792 3.9371386 1103.2369
+208411.0664757835 3.9371386 1103.3752
+208412.0664758878 3.9371386 1103.3555
+208413.0664759921 3.9372566 1103.4147
+208414.0664760964 3.9372172 1103.3357
+208415.0664762007 3.9372566 1103.316
+208416.066476305 3.9372566 1103.3752
+208417.0664764093 3.9371779 1103.3555
+208418.0664765136 3.9372172 1103.3555
+208419.0664766179 3.9372959 1103.2963
+208420.0664767222 3.9374142 1103.316
+208421.0664768266 3.9372959 1103.4147
+208422.0664769309 3.9373748 1103.3357
+208423.0664770352 3.9374142 1103.3752
+208424.0664771395 3.9373355 1103.3357
+208425.0664772438 3.9374142 1103.3752
+208426.0664773481 3.9374142 1103.3555
+208427.0664774524 3.9374142 1103.2567
+208428.0664775567 3.9374142 1103.3949
+208429.066477661 3.9374142 1103.2765
+208430.0664777653 3.9374535 1103.2567
+208431.0664778696 3.9374142 1103.3555
+208432.0664779739 3.9374535 1103.316
+208433.0664780783 3.9374535 1103.3752
+208434.0664781826 3.9375322 1103.2963
+208435.0664782869 3.9374142 1103.2963
+208436.0664783912 3.9373748 1103.2963
+208437.0664784955 3.9374142 1103.2963
+208438.0664785998 3.9375322 1103.316
+208439.0664787041 3.9374928 1103.316
+208440.0664788084 3.9375322 1103.316
+208441.0664789127 3.9374928 1103.2963
+208442.066479017 3.9375322 1103.3357
+208443.0664791213 3.9375322 1103.3357
+208444.0664792256 3.9375322 1103.3949
+208445.06647933 3.9376109 1103.2963
+208446.0664794343 3.9377291 1103.3555
+208447.0664795386 3.9376504 1103.3357
+208448.0664796429 3.9376109 1103.316
+208449.0664797472 3.9376898 1103.2963
+208450.0664798515 3.9376109 1103.2765
+208451.0664799558 3.9376109 1103.3555
+208452.0664800601 3.9376898 1103.3357
+208453.0664801644 3.9377291 1103.2567
+208454.0664802687 3.9376109 1103.2765
+208455.066480373 3.9376504 1103.3555
+208456.0664804773 3.9377291 1103.3949
+208457.0664805816 3.9376898 1103.4542
+208458.066480686 3.9379258 1103.2963
+208459.0664807903 3.9377685 1103.3949
+208460.0664808946 3.9378078 1103.3555
+208461.0664809989 3.9378078 1103.4344
+208462.0664811032 3.9378865 1103.2963
+208463.0664812075 3.9377685 1103.3357
+208464.0664813118 3.9377685 1103.3555
+208465.0664814161 3.9378078 1103.4542
+208466.0664815204 3.9379258 1103.3949
+208467.0664816247 3.9379258 1103.4344
+208468.066481729 3.9378471 1103.3555
+208469.0664818333 3.9378078 1103.2765
+208470.0664819377 3.9379654 1103.3752
+208471.066482042 3.9378471 1103.2765
+208472.0664821463 3.9378471 1103.3949
+208473.0664822506 3.9378471 1103.3357
+208474.0664823549 3.9378078 1103.1975
+208475.0664824592 3.9379654 1103.3752
+208476.0664825635 3.9378471 1103.3555
+208477.0664826678 3.9379258 1103.3357
+208478.0664827721 3.9378865 1103.3357
+208479.0664828764 3.9379258 1103.3357
+208480.0664829807 3.9380047 1103.3555
+208481.066483085 3.9380047 1103.2963
+208482.0664831894 3.9378865 1103.3357
+208483.0664832937 3.9380047 1103.3555
+208484.066483398 3.9380047 1103.3949
+208485.0664835023 3.9380834 1103.3752
+208486.0664836066 3.9380834 1103.3555
+208487.0664837109 3.9379258 1103.3555
+208488.0664838152 3.9381621 1103.2963
+208489.0664839195 3.9381621 1103.2567
+208490.0664840238 3.9380441 1103.3949
+208491.0664841281 3.9380047 1103.2963
+208492.0664842324 3.9380834 1103.2765
+208493.0664843367 3.9382803 1103.316
+208494.066484441 3.9382014 1103.3949
+208495.0664845454 3.9381621 1103.1975
+208496.0664846497 3.9381227 1103.316
+208497.066484754 3.9381621 1103.4344
+208498.0664848583 3.9382803 1103.4344
+208499.0664849626 3.9382803 1103.3752
+208500.0664850669 3.9382014 1103.3357
+208501.0664851712 3.9382014 1103.3949
+208502.0664852755 3.9382014 1103.4344
+208503.0664853798 3.938359 1103.3949
+208504.0664854841 3.9382014 1103.3357
+208505.0664855884 3.938241 1103.3555
+208506.0664856927 3.938241 1103.3555
+208507.0664857971 3.9383197 1103.3357
+208508.0664859014 3.9382014 1103.3555
+208509.0664860057 3.938241 1103.3949
+208510.06648611 3.938359 1103.4344
+208511.0664862143 3.9383984 1103.3949
+208512.0664863186 3.9384377 1103.4542
+208513.0664864229 3.9383197 1103.4344
+208514.0664865272 3.938241 1103.2963
+208515.0664866315 3.9383197 1103.3752
+208516.0664867358 3.938359 1103.3555
+208517.0664868401 3.938359 1103.3949
+208518.0664869444 3.9384377 1103.3555
+208519.0664870488 3.9383197 1103.3555
+208520.0664871531 3.938359 1103.3357
+208521.0664872574 3.938359 1103.316
+208522.0664873617 3.938477 1103.3752
+208523.066487466 3.9383984 1103.3555
+208524.0664875703 3.9384377 1103.3555
+208525.0664876746 3.9384377 1103.3357
+208526.0664877789 3.938477 1103.316
+208527.0664878832 3.9385164 1103.2963
+208528.0664879875 3.9385164 1103.4147
+208529.0664880918 3.9385164 1103.3949
+208530.0664881961 3.938477 1103.3555
+208531.0664883005 3.938477 1103.2765
+208532.0664884048 3.938556 1103.4344
+208533.0664885091 3.9386346 1103.3357
+208534.0664886134 3.938556 1103.4147
+208535.0664887177 3.9385164 1103.3949
+208536.066488822 3.9385953 1103.3555
+208537.0664889263 3.938477 1103.3949
+208538.0664890306 3.938556 1103.316
+208539.0664891349 3.9386346 1103.316
+208540.0664892392 3.9386346 1103.3752
+208541.0664893435 3.938674 1103.3752
+208542.0664894478 3.9386346 1103.2963
+208543.0664895521 3.938674 1103.2963
+208544.0664896565 3.9385953 1103.2765
+208545.0664897608 3.9386346 1103.316
+208546.0664898651 3.9387133 1103.4147
+208547.0664899694 3.9387133 1103.4147
+208548.0664900737 3.9387527 1103.3752
+208549.066490178 3.938674 1103.3555
+208550.0664902823 3.9387527 1103.4147
+208551.0664903866 3.938674 1103.3555
+208552.0664904909 3.938792 1103.3752
+208553.0664905952 3.9387133 1103.3949
+208554.0664906995 3.9388313 1103.3357
+208555.0664908038 3.9389102 1103.316
+208556.0664909082 3.938674 1103.3555
+208557.0664910125 3.938792 1103.2369
+208558.0664911168 3.9388313 1103.3357
+208559.0664912211 3.9388709 1103.2567
+208560.0664913254 3.9388313 1103.2963
+208561.0664914297 3.9388313 1103.316
+208562.066491534 3.9389102 1103.2963
+208563.0664916383 3.9388709 1103.3752
+208564.0664917426 3.9388709 1103.3357
+208565.0664918469 3.9389102 1103.316
+208566.0664919512 3.9388709 1103.3752
+208567.0664920555 3.9389496 1103.4147
+208568.0664921599 3.9389102 1103.3555
+208569.0664922642 3.9390283 1103.3555
+208570.0664923685 3.9389102 1103.2765
+208571.0664924728 3.9389496 1103.3949
+208572.0664925771 3.9389102 1103.3555
+208573.0664926814 3.9389496 1103.3949
+208574.0664927857 3.9389102 1103.3949
+208575.06649289 3.9389889 1103.3555
+208576.0664929943 3.9390676 1103.2963
+208577.0664930986 3.9390283 1103.4147
+208578.0664932029 3.9391463 1103.316
+208579.0664933072 3.9391069 1103.3752
+208580.0664934115 3.9390676 1103.3357
+208581.0664935159 3.9389889 1103.3555
+208582.0664936202 3.9390676 1103.3949
+208583.0664937245 3.9391069 1103.3357
+208584.0664938288 3.9391859 1103.2567
+208585.0664939331 3.9391859 1103.316
+208586.0664940374 3.9391859 1103.3949
+208587.0664941417 3.9391859 1103.3357
+208588.066494246 3.9391859 1103.3357
+208589.0664943503 3.9391859 1103.3555
+208590.0664944546 3.9390676 1103.316
+208591.0664945589 3.9391069 1103.3752
+208592.0664946632 3.9392252 1103.3555
+208593.0664947676 3.9392252 1103.2369
+208594.0664948719 3.9391463 1103.3555
+208595.0664949762 3.9391859 1103.3752
+208596.0664950805 3.9391859 1103.3949
+208597.0664951848 3.9391859 1103.3752
+208598.0664952891 3.9391069 1103.3752
+208599.0664953934 3.9392252 1103.316
+208600.0664954977 3.9392645 1103.3555
+208601.066495602 3.9393039 1103.2765
+208602.0664957063 3.9393432 1103.2567
+208603.0664958106 3.9393039 1103.316
+208604.0664959149 3.9393039 1103.3752
+208605.0664960193 3.9393432 1103.4147
+208606.0664961236 3.9393432 1103.3752
+208607.0664962279 3.9393826 1103.3752
+208608.0664963322 3.9393039 1103.3555
+208609.0664964365 3.9394612 1103.316
+208610.0664965408 3.9393826 1103.2765
+208611.0664966451 3.9394219 1103.3357
+208612.0664967494 3.9394219 1103.3357
+208613.0664968537 3.9394219 1103.3949
+208614.066496958 3.9394612 1103.2567
+208615.0664970623 3.9394612 1103.2765
+208616.0664971666 3.9395008 1103.4147
+208617.0664972709 3.9395008 1103.3949
+208618.0664973753 3.9394612 1103.3357
+208619.0664974796 3.9395401 1103.3752
+208620.0664975839 3.9394219 1103.3555
+208621.0664976882 3.9394612 1103.3357
+208622.0664977925 3.9395795 1103.3949
+208623.0664978968 3.9395008 1103.3949
+208624.0664980011 3.9395008 1103.3357
+208625.0664981054 3.9395795 1103.3752
+208626.0664982097 3.9395795 1103.3357
+208627.066498314 3.9395008 1103.3357
+208628.0664984183 3.9395795 1103.3555
+208629.0664985226 3.9397368 1103.4147
+208630.066498627 3.9395795 1103.3949
+208631.0664987313 3.9395795 1103.3357
+208632.0664988356 3.9395401 1103.3357
+208633.0664989399 3.9396188 1103.3357
+208634.0664990442 3.9396975 1103.3555
+208635.0664991485 3.9395401 1103.3949
+208636.0664992528 3.9397762 1103.316
+208637.0664993571 3.9396975 1103.3752
+208638.0664994614 3.9396975 1103.3949
+208639.0664995657 3.9397368 1103.4147
+208640.06649967 3.9397762 1103.4344
+208641.0664997743 3.9397762 1103.3555
+208642.0664998787 3.9396975 1103.3555
+208643.066499983 3.9397368 1103.2963
+208644.0665000873 3.9397762 1103.316
+208645.0665001916 3.9397762 1103.4147
+208646.0665002959 3.9396975 1103.2963
+208647.0665004002 3.9396975 1103.3752
+208648.0665005045 3.9397368 1103.3949
+208649.0665006088 3.9398158 1103.316
+208650.0665007131 3.9397762 1103.3555
+208651.0665008174 3.9398158 1103.3357
+208652.0665009217 3.9398158 1103.3357
+208653.066501026 3.9398551 1103.4344
+208654.0665011304 3.9398551 1103.316
+208655.0665012347 3.9398944 1103.4147
+208656.066501339 3.9398944 1103.3949
+208657.0665014433 3.9398551 1103.3555
+208658.0665015476 3.9398158 1103.3555
+208659.0665016519 3.9399731 1103.2765
+208660.0665017562 3.9398551 1103.316
+208661.0665018605 3.9399731 1103.3555
+208662.0665019648 3.9400125 1103.3357
+208663.0665020691 3.9399338 1103.3555
+208664.0665021734 3.9399338 1103.3555
+208665.0665022777 3.9399338 1103.3357
+208666.066502382 3.9400914 1103.316
+208667.0665024864 3.9400125 1103.3949
+208668.0665025907 3.9399731 1103.316
+208669.066502695 3.9399731 1103.2765
+208670.0665027993 3.9399731 1103.3949
+208671.0665029036 3.9400125 1103.316
+208672.0665030079 3.9401307 1103.3949
+208673.0665031122 3.9400125 1103.2765
+208674.0665032165 3.9400125 1103.2963
+208675.0665033208 3.9399731 1103.2172
+208676.0665034251 3.9401307 1103.316
+208677.0665035294 3.9401307 1103.2963
+208678.0665036337 3.9400914 1103.3555
+208679.0665037381 3.94017 1103.3357
+208680.0665038424 3.9401307 1103.3357
+208681.0665039467 3.94017 1103.2567
+208682.066504051 3.94017 1103.2963
+208683.0665041553 3.94017 1103.3752
+208684.0665042596 3.9402881 1103.316
+208685.0665043639 3.94017 1103.4147
+208686.0665044682 3.9402094 1103.3752
+208687.0665045725 3.94017 1103.316
+208688.0665046768 3.9402094 1103.2963
+208689.0665047811 3.9403274 1103.3555
+208690.0665048854 3.9402487 1103.3555
+208691.0665049898 3.9402094 1103.4147
+208692.0665050941 3.9402487 1103.316
+208693.0665051984 3.9403274 1103.4147
+208694.0665053027 3.9402881 1103.3752
+208695.066505407 3.9402094 1103.3752
+208696.0665055113 3.9402094 1103.3555
+208697.0665056156 3.9402487 1103.316
+208698.0665057199 3.9402487 1103.3949
+208699.0665058242 3.9403667 1103.2963
+208700.0665059285 3.9402881 1103.4147
+208701.0665060328 3.9404063 1103.3357
+208702.0665061371 3.9404457 1103.3555
+208703.0665062414 3.9403667 1103.3752
+208704.0665063458 3.9403667 1103.4147
+208705.0665064501 3.9404457 1103.3555
+208706.0665065544 3.9403667 1103.3357
+208707.0665066587 3.9404063 1103.316
+208708.066506763 3.9404457 1103.3752
+208709.0665068673 3.9404457 1103.2963
+208710.0665069716 3.940485 1103.316
+208711.0665070759 3.9405637 1103.316
+208712.0665071802 3.940603 1103.4147
+208713.0665072845 3.9405243 1103.3949
+208714.0665073888 3.940603 1103.3949
+208715.0665074931 3.9406424 1103.4344
+208716.0665075975 3.9405243 1103.3357
+208717.0665077018 3.9405637 1103.4344
+208718.0665078061 3.9405243 1103.2765
+208719.0665079104 3.9405243 1103.316
+208720.0665080147 3.9406424 1103.3555
+208721.066508119 3.940603 1103.3752
+208722.0665082233 3.9405637 1103.3752
+208723.0665083276 3.9405637 1103.3555
+208724.0665084319 3.9406424 1103.2963
+208725.0665085362 3.9406424 1103.3357
+208726.0665086405 3.9405637 1103.316
+208727.0665087448 3.9406424 1103.3555
+208728.0665088492 3.940603 1103.3752
+208729.0665089535 3.9407606 1103.3357
+208730.0665090578 3.9407213 1103.316
+208731.0665091621 3.940603 1103.4147
+208732.0665092664 3.9406424 1103.4344
+208733.0665093707 3.9407606 1103.3752
+208734.066509475 3.9406817 1103.316
+208735.0665095793 3.9408 1103.4344
+208736.0665096836 3.9407213 1103.3357
+208737.0665097879 3.9408393 1103.316
+208738.0665098922 3.9407213 1103.4344
+208739.0665099965 3.9407606 1103.3752
+208740.0665101008 3.9408393 1103.3949
+208741.0665102052 3.9408 1103.3949
+208742.0665103095 3.9407606 1103.3357
+208743.0665104138 3.9408393 1103.3752
+208744.0665105181 3.940918 1103.3949
+208745.0665106224 3.9408786 1103.316
+208746.0665107267 3.9408393 1103.3357
+208747.066510831 3.9407606 1103.2765
+208748.0665109353 3.9407606 1103.3555
+208749.0665110396 3.9408 1103.316
+208750.0665111439 3.9410362 1103.3555
+208751.0665112482 3.9408393 1103.3949
+208752.0665113525 3.9409966 1103.2765
+208753.0665114569 3.9409966 1103.4147
+208754.0665115612 3.9409573 1103.2172
+208755.0665116655 3.9409966 1103.4147
+208756.0665117698 3.940918 1103.3357
+208757.0665118741 3.940918 1103.4147
+208758.0665119784 3.9409573 1103.3752
+208759.0665120827 3.9410756 1103.3555
+208760.066512187 3.9409573 1103.3752
+208761.0665122913 3.9410362 1103.4542
+208762.0665123956 3.9410362 1103.3949
+208763.0665124999 3.9409966 1103.3949
+208764.0665126042 3.9410362 1103.3949
+208765.0665127086 3.9410756 1103.4344
+208766.0665128129 3.9410756 1103.2765
+208767.0665129172 3.9411149 1103.3949
+208768.0665130215 3.9411936 1103.3752
+208769.0665131258 3.9410362 1103.3752
+208770.0665132301 3.9411542 1103.2963
+208771.0665133344 3.9410756 1103.3357
+208772.0665134387 3.9411149 1103.2765
+208773.066513543 3.9409966 1103.4147
+208774.0665136473 3.9411149 1103.3357
+208775.0665137516 3.9411936 1103.4147
+208776.0665138559 3.9412723 1103.3357
+208777.0665139603 3.9411542 1103.4147
+208778.0665140646 3.9411936 1103.2963
+208779.0665141689 3.9411936 1103.2963
+208780.0665142732 3.9412723 1103.3752
+208781.0665143775 3.9411936 1103.316
+208782.0665144818 3.9412329 1103.2765
+208783.0665145861 3.9413905 1103.3752
+208784.0665146904 3.9411936 1103.2963
+208785.0665147947 3.9412329 1103.4344
+208786.066514899 3.9412329 1103.2963
+208787.0665150033 3.9413116 1103.3752
+208788.0665151076 3.9413116 1103.3752
+208789.0665152119 3.9413512 1103.4147
+208790.0665153163 3.9413512 1103.2963
+208791.0665154206 3.9413905 1103.3357
+208792.0665155249 3.9413512 1103.316
+208793.0665156292 3.9413116 1103.3555
+208794.0665157335 3.9414299 1103.316
+208795.0665158378 3.9413512 1103.3752
+208796.0665159421 3.9414692 1103.316
+208797.0665160464 3.9413116 1103.3555
+208798.0665161507 3.9414299 1103.3555
+208799.066516255 3.9414692 1103.3555
+208800.0665163593 3.9413512 1103.3357
+208801.0665164636 3.9414692 1103.2963
+208802.066516568 3.9415085 1103.3357
+208803.0665166723 3.9414692 1103.3357
+208804.0665167766 3.9415085 1103.3555
+208805.0665168809 3.9414299 1103.3949
+208806.0665169852 3.9414299 1103.2963
+208807.0665170895 3.9414692 1103.3357
+208808.0665171938 3.9414692 1103.3357
+208809.0665172981 3.9415085 1103.2963
+208810.0665174024 3.9415479 1103.4344
+208811.0665175067 3.9417055 1103.3555
+208812.066517611 3.9416661 1103.3752
+208813.0665177153 3.9415479 1103.2765
+208814.0665178197 3.9415872 1103.2963
+208815.066517924 3.9415872 1103.3949
+208816.0665180283 3.9415872 1103.3752
+208817.0665181326 3.9415872 1103.3752
+208818.0665182369 3.9415872 1103.3555
+208819.0665183412 3.9416265 1103.2963
+208820.0665184455 3.9417055 1103.4147
+208821.0665185498 3.9416265 1103.3555
+208822.0665186541 3.9417841 1103.3555
+208823.0665187584 3.9417055 1103.2765
+208824.0665188627 3.9416661 1103.4542
+208825.066518967 3.9417055 1103.3949
+208826.0665190713 3.9417055 1103.3555
+208827.0665191757 3.9418628 1103.4147
+208828.06651928 3.9418235 1103.316
+208829.0665193843 3.9417841 1103.3555
+208830.0665194886 3.9418235 1103.3752
+208831.0665195929 3.9417841 1103.316
+208832.0665196972 3.9418235 1103.3357
+208833.0665198015 3.9417841 1103.3555
+208834.0665199058 3.9417841 1103.3752
+208835.0665200101 3.9417841 1103.3357
+208836.0665201144 3.9417841 1103.316
+208837.0665202187 3.9419022 1103.3949
+208838.066520323 3.9419811 1103.3357
+208839.0665204274 3.9419417 1103.3357
+208840.0665205317 3.9419417 1103.3357
+208841.066520636 3.9419022 1103.2963
+208842.0665207403 3.9418235 1103.3555
+208843.0665208446 3.9420204 1103.316
+208844.0665209489 3.9419022 1103.3949
+208845.0665210532 3.9419811 1103.3555
+208846.0665211575 3.9419417 1103.3949
+208847.0665212618 3.9419417 1103.3357
+208848.0665213661 3.9419022 1103.3555
+208849.0665214704 3.9419417 1103.3949
+208850.0665215747 3.9419417 1103.3357
+208851.0665216791 3.9420204 1103.3357
+208852.0665217834 3.9420991 1103.316
+208853.0665218877 3.9420598 1103.316
+208854.066521992 3.9420204 1103.2963
+208855.0665220963 3.9419417 1103.2963
+208856.0665222006 3.9420991 1103.316
+208857.0665223049 3.9421384 1103.3555
+208858.0665224092 3.9420991 1103.3555
+208859.0665225135 3.9420598 1103.474
+208860.0665226178 3.9420991 1103.3555
+208861.0665227221 3.9420991 1103.3949
+208862.0665228264 3.9420991 1103.2765
+208863.0665229307 3.9420991 1103.3949
+208864.0665230351 3.9421384 1103.316
+208865.0665231394 3.9421384 1103.2369
+208866.0665232437 3.9420991 1103.3949
+208867.066523348 3.9422171 1103.3555
+208868.0665234523 3.9421778 1103.2963
+208869.0665235566 3.9422171 1103.316
+208870.0665236609 3.9422171 1103.3357
+208871.0665237652 3.9422567 1103.2963
+208872.0665238695 3.9422567 1103.3357
+208873.0665239738 3.9422567 1103.3752
+208874.0665240781 3.942296 1103.2963
+208875.0665241824 3.9422171 1103.4147
+208876.0665242868 3.942296 1103.474
+208877.0665243911 3.9421778 1103.3555
+208878.0665244954 3.942296 1103.4147
+208879.0665245997 3.9423354 1103.2963
+208880.066524704 3.942296 1103.316
+208881.0665248083 3.942414 1103.3357
+208882.0665249126 3.9423747 1103.3357
+208883.0665250169 3.942296 1103.3357
+208884.0665251212 3.9423354 1103.3555
+208885.0665252255 3.9424534 1103.3357
+208886.0665253298 3.9423747 1103.3555
+208887.0665254341 3.9424927 1103.3949
+208888.0665255385 3.9424534 1103.2963
+208889.0665256428 3.9424534 1103.2567
+208890.0665257471 3.9423354 1103.316
+208891.0665258514 3.942414 1103.3949
+208892.0665259557 3.9425716 1103.3949
+208893.06652606 3.942414 1103.316
+208894.0665261643 3.9424534 1103.3752
+208895.0665262686 3.9425716 1103.2963
+208896.0665263729 3.9425321 1103.4147
+208897.0665264772 3.9425716 1103.2765
+208898.0665265815 3.942296 1103.3555
+208899.0665266858 3.9424927 1103.316
+208900.0665267902 3.9425321 1103.3555
+208901.0665268945 3.9425321 1103.316
+208902.0665269988 3.9425716 1103.316
+208903.0665271031 3.942611 1103.316
+208904.0665272074 3.942611 1103.316
+208905.0665273117 3.942611 1103.3949
+208906.066527416 3.9425716 1103.3555
+208907.0665275203 3.9425716 1103.2765
+208908.0665276246 3.942611 1103.4344
+208909.0665277289 3.9426503 1103.316
+208910.0665278332 3.9426503 1103.316
+208911.0665279375 3.9426503 1103.3555
+208912.0665280418 3.942729 1103.4147
+208913.0665281462 3.9426897 1103.3752
+208914.0665282505 3.9426897 1103.316
+208915.0665283548 3.9427683 1103.3555
+208916.0665284591 3.942729 1103.3357
+208917.0665285634 3.9428077 1103.3357
+208918.0665286677 3.942729 1103.3949
+208919.066528772 3.942611 1103.3949
+208920.0665288763 3.942729 1103.3555
+208921.0665289806 3.942729 1103.3555
+208922.0665290849 3.9427683 1103.3752
+208923.0665291892 3.942847 1103.3357
+208924.0665292935 3.9428077 1103.3752
+208925.0665293979 3.9428077 1103.316
+208926.0665295022 3.942847 1103.3555
+208927.0665296065 3.9427683 1103.3752
+208928.0665297108 3.942847 1103.3555
+208929.0665298151 3.942847 1103.3949
+208930.0665299194 3.9428077 1103.4147
+208931.0665300237 3.9428866 1103.3357
+208932.066530128 3.9427683 1103.316
+208933.0665302323 3.9429259 1103.3357
+208934.0665303366 3.9428866 1103.316
+208935.0665304409 3.9429653 1103.3949
+208936.0665305452 3.9429259 1103.3555
+208937.0665306496 3.9429259 1103.3357
+208938.0665307539 3.9429653 1103.3752
+208939.0665308582 3.9430439 1103.2567
+208940.0665309625 3.9430046 1103.3949
+208941.0665310668 3.9430833 1103.2963
+208942.0665311711 3.9430439 1103.2765
+208943.0665312754 3.9429259 1103.316
+208944.0665313797 3.9430046 1103.3357
+208945.066531484 3.9429653 1103.3752
+208946.0665315883 3.9430046 1103.3555
+208947.0665316926 3.9430439 1103.3555
+208948.0665317969 3.9430046 1103.3357
+208949.0665319012 3.9430439 1103.3752
+208950.0665320056 3.9431226 1103.2963
+208951.0665321099 3.9431226 1103.3949
+208952.0665322142 3.9432015 1103.2765
+208953.0665323185 3.9431226 1103.3357
+208954.0665324228 3.9430833 1103.316
+208955.0665325271 3.9431226 1103.3357
+208956.0665326314 3.9431226 1103.3555
+208957.0665327357 3.9432015 1103.3555
+208958.06653284 3.9431226 1103.2963
+208959.0665329443 3.9432409 1103.3555
+208960.0665330486 3.943162 1103.4147
+208961.0665331529 3.943162 1103.316
+208962.0665332573 3.9432409 1103.3949
+208963.0665333616 3.9432409 1103.3357
+208964.0665334659 3.9432409 1103.316
+208965.0665335702 3.9431226 1103.3555
+208966.0665336745 3.9432015 1103.3555
+208967.0665337788 3.943162 1103.2963
+208968.0665338831 3.9432015 1103.2567
+208969.0665339874 3.9432409 1103.3555
+208970.0665340917 3.9432802 1103.3555
+208971.066534196 3.9433196 1103.3752
+208972.0665343003 3.9432409 1103.3357
+208973.0665344046 3.9433982 1103.2963
+208974.066534509 3.9432802 1103.3752
+208975.0665346133 3.9434376 1103.316
+208976.0665347176 3.9433982 1103.3555
+208977.0665348219 3.9432409 1103.3949
+208978.0665349262 3.9433589 1103.3555
+208979.0665350305 3.9433982 1103.3949
+208980.0665351348 3.9432802 1103.2369
+208981.0665352391 3.9433589 1103.2765
+208982.0665353434 3.9433982 1103.3949
+208983.0665354477 3.9433982 1103.3752
+208984.066535552 3.9434376 1103.3357
+208985.0665356563 3.9434772 1103.2765
+208986.0665357606 3.9433589 1103.3555
+208987.066535865 3.9434772 1103.3752
+208988.0665359693 3.9435165 1103.4542
+208989.0665360736 3.9435165 1103.3949
+208990.0665361779 3.9435165 1103.3949
+208991.0665362822 3.9435165 1103.4147
+208992.0665363865 3.9434772 1103.3357
+208993.0665364908 3.9434376 1103.3752
+208994.0665365951 3.9434772 1103.316
+208995.0665366994 3.9434772 1103.3357
+208996.0665368037 3.9435558 1103.316
+208997.066536908 3.9435952 1103.3357
+208998.0665370123 3.9435558 1103.4344
+208999.0665371167 3.9436738 1103.316
+209000.066537221 3.9436738 1103.3949
+209001.0665373253 3.9435952 1103.316
+209002.0665374296 3.9434772 1103.4147
+209003.0665375339 3.9436345 1103.3752
+209004.0665376382 3.9436738 1103.3555
+209005.0665377425 3.9436738 1103.3357
+209006.0665378468 3.9437525 1103.3555
+209007.0665379511 3.9437921 1103.4147
+209008.0665380554 3.9437132 1103.316
+209009.0665381597 3.9436345 1103.3555
+209010.066538264 3.9437525 1103.3357
+209011.0665383684 3.9437525 1103.4147
+209012.0665384727 3.9436738 1103.3357
+209013.066538577 3.9437132 1103.4147
+209014.0665386813 3.9437132 1103.4542
+209015.0665387856 3.9437525 1103.3357
+209016.0665388899 3.9437525 1103.3357
+209017.0665389942 3.9437921 1103.3555
+209018.0665390985 3.9438708 1103.3555
+209019.0665392028 3.9439101 1103.4147
+209020.0665393071 3.9437921 1103.3357
+209021.0665394114 3.9438708 1103.3752
+209022.0665395157 3.9438314 1103.2765
+209023.06653962 3.9437921 1103.3555
+209024.0665397244 3.9439101 1103.3555
+209025.0665398287 3.9438314 1103.316
+209026.066539933 3.9439101 1103.3357
+209027.0665400373 3.9439101 1103.3357
+209028.0665401416 3.9440281 1103.3555
+209029.0665402459 3.9439101 1103.3555
+209030.0665403502 3.9439888 1103.3555
+209031.0665404545 3.9439888 1103.3555
+209032.0665405588 3.9439101 1103.3752
+209033.0665406631 3.9439495 1103.3949
+209034.0665407674 3.9439888 1103.2765
+209035.0665408717 3.9440281 1103.3752
+209036.0665409761 3.9439888 1103.3357
+209037.0665410804 3.9440281 1103.3949
+209038.0665411847 3.9440675 1103.2963
+209039.066541289 3.9440675 1103.4147
+209040.0665413933 3.9441071 1103.4344
+209041.0665414976 3.9440675 1103.3357
+209042.0665416019 3.9440675 1103.3357
+209043.0665417062 3.9439495 1103.3357
+209044.0665418105 3.9441071 1103.3555
+209045.0665419148 3.9442644 1103.3555
+209046.0665420191 3.9441071 1103.3357
+209047.0665421234 3.9440675 1103.3752
+209048.0665422278 3.9440281 1103.3555
+209049.0665423321 3.9440281 1103.3357
+209050.0665424364 3.9441857 1103.2963
+209051.0665425407 3.9441857 1103.4542
+209052.066542645 3.9443038 1103.316
+209053.0665427493 3.9441071 1103.2963
+209054.0665428536 3.9441464 1103.3555
+209055.0665429579 3.9443038 1103.3752
+209056.0665430622 3.9441464 1103.316
+209057.0665431665 3.9441857 1103.316
+209058.0665432708 3.9443431 1103.3949
+209059.0665433751 3.9442644 1103.3752
+209060.0665434795 3.9442251 1103.3555
+209061.0665435838 3.9442644 1103.3752
+209062.0665436881 3.9442644 1103.3357
+209063.0665437924 3.9443431 1103.3357
+209064.0665438967 3.9443824 1103.3555
+209065.066544001 3.9443431 1103.3752
+209066.0665441053 3.9443431 1103.316
+209067.0665442096 3.9442644 1103.3555
+209068.0665443139 3.9443824 1103.316
+209069.0665444182 3.9443431 1103.316
+209070.0665445225 3.944422 1103.2963
+209071.0665446268 3.9443431 1103.3752
+209072.0665447311 3.944422 1103.316
+209073.0665448355 3.9443824 1103.2765
+209074.0665449398 3.9443431 1103.4147
+209075.0665450441 3.9443038 1103.3357
+209076.0665451484 3.9443824 1103.3555
+209077.0665452527 3.9444613 1103.3555
+209078.066545357 3.9444613 1103.4542
+209079.0665454613 3.944422 1103.3357
+209080.0665455656 3.9445007 1103.2963
+209081.0665456699 3.9444613 1103.4344
+209082.0665457742 3.9445007 1103.3357
+209083.0665458785 3.944422 1103.2765
+209084.0665459828 3.9445007 1103.3555
+209085.0665460872 3.9445794 1103.4147
+209086.0665461915 3.9445794 1103.3752
+209087.0665462958 3.9445794 1103.2963
+209088.0665464001 3.9446187 1103.2369
+209089.0665465044 3.9445007 1103.3357
+209090.0665466087 3.9445794 1103.3555
+209091.066546713 3.9445794 1103.316
+209092.0665468173 3.9445794 1103.3357
+209093.0665469216 3.94454 1103.474
+209094.0665470259 3.9445794 1103.3949
+209095.0665471302 3.9445794 1103.3357
+209096.0665472345 3.9446187 1103.2765
+209097.0665473389 3.9446187 1103.3357
+209098.0665474432 3.9446974 1103.2765
+209099.0665475475 3.9446187 1103.2963
+209100.0665476518 3.9448156 1103.4147
+209101.0665477561 3.944737 1103.1975
+209102.0665478604 3.944737 1103.4147
+209103.0665479647 3.944658 1103.2963
+209104.066548069 3.944855 1103.3752
+209105.0665481733 3.944658 1103.3752
+209106.0665482776 3.944658 1103.3555
+209107.0665483819 3.9446974 1103.3949
+209108.0665484862 3.944737 1103.3949
+209109.0665485905 3.9448156 1103.3949
+209110.0665486949 3.944737 1103.3752
+209111.0665487992 3.9448156 1103.3555
+209112.0665489035 3.9448156 1103.3357
+209113.0665490078 3.9447763 1103.3357
+209114.0665491121 3.944973 1103.3555
+209115.0665492164 3.944855 1103.3949
+209116.0665493207 3.9448943 1103.3752
+209117.066549425 3.944855 1103.3357
+209118.0665495293 3.944855 1103.3949
+209119.0665496336 3.944973 1103.4147
+209120.0665497379 3.9448943 1103.3752
+209121.0665498422 3.9449337 1103.4344
+209122.0665499466 3.944855 1103.2369
+209123.0665500509 3.944855 1103.3949
+209124.0665501552 3.944973 1103.316
+209125.0665502595 3.944973 1103.3357
+209126.0665503638 3.944973 1103.3555
+209127.0665504681 3.9450123 1103.2567
+209128.0665505724 3.944973 1103.3752
+209129.0665506767 3.9450519 1103.4938
+209130.066550781 3.944973 1103.3555
+209131.0665508853 3.9450912 1103.4147
+209132.0665509896 3.944973 1103.3949
+209133.0665510939 3.9451306 1103.2765
+209134.0665511983 3.9450519 1103.3357
+209135.0665513026 3.9450519 1103.2963
+209136.0665514069 3.9450912 1103.3357
+209137.0665515112 3.9451306 1103.4542
+209138.0665516155 3.9450519 1103.3555
+209139.0665517198 3.9450519 1103.3949
+209140.0665518241 3.9451699 1103.3555
+209141.0665519284 3.9450519 1103.3357
+209142.0665520327 3.9451306 1103.3357
+209143.066552137 3.9450519 1103.4542
+209144.0665522413 3.9451699 1103.2765
+209145.0665523456 3.9452093 1103.3555
+209146.0665524499 3.9452093 1103.4344
+209147.0665525543 3.9452093 1103.3752
+209148.0665526586 3.9451306 1103.3555
+209149.0665527629 3.9452093 1103.4147
+209150.0665528672 3.9452093 1103.2963
+209151.0665529715 3.9452093 1103.3555
+209152.0665530758 3.9452093 1103.3357
+209153.0665531801 3.9452093 1103.316
+209154.0665532844 3.9453275 1103.4147
+209155.0665533887 3.9452879 1103.3555
+209156.066553493 3.9452486 1103.316
+209157.0665535973 3.9453275 1103.2765
+209158.0665537016 3.9452093 1103.2963
+209159.066553806 3.9453275 1103.2567
+209160.0665539103 3.9453275 1103.316
+209161.0665540146 3.9452879 1103.3752
+209162.0665541189 3.9453669 1103.3357
+209163.0665542232 3.9453275 1103.3555
+209164.0665543275 3.9454062 1103.3555
+209165.0665544318 3.9453669 1103.3752
+209166.0665545361 3.9453669 1103.2765
+209167.0665546404 3.9454062 1103.3357
+209168.0665547447 3.9454455 1103.316
+209169.066554849 3.9455242 1103.3555
+209170.0665549533 3.9454455 1103.3357
+209171.0665550577 3.9454455 1103.2963
+209172.066555162 3.9455242 1103.3357
+209173.0665552663 3.9453669 1103.2963
+209174.0665553706 3.9454849 1103.4344
+209175.0665554749 3.9455636 1103.3949
+209176.0665555792 3.9455636 1103.3555
+209177.0665556835 3.9456029 1103.2765
+209178.0665557878 3.9455242 1103.3555
+209179.0665558921 3.9455636 1103.4147
+209180.0665559964 3.9456029 1103.316
+209181.0665561007 3.9455242 1103.3357
+209182.066556205 3.9454849 1103.2765
+209183.0665563094 3.9456425 1103.316
+209184.0665564137 3.9455636 1103.3949
+209185.066556518 3.9456029 1103.3555
+209186.0665566223 3.9456818 1103.3752
+209187.0665567266 3.9456818 1103.2567
+209188.0665568309 3.9456818 1103.4542
+209189.0665569352 3.9456029 1103.3949
+209190.0665570395 3.9456818 1103.3949
+209191.0665571438 3.9456425 1103.4344
+209192.0665572481 3.9457605 1103.3752
+209193.0665573524 3.9457211 1103.3555
+209194.0665574567 3.9456818 1103.3555
+209195.066557561 3.9456425 1103.3555
+209196.0665576654 3.9457211 1103.3949
+209197.0665577697 3.9457605 1103.3949
+209198.066557874 3.9458392 1103.2963
+209199.0665579783 3.9458392 1103.3949
+209200.0665580826 3.9457211 1103.3357
+209201.0665581869 3.9458392 1103.4147
+209202.0665582912 3.9458392 1103.4147
+209203.0665583955 3.9457998 1103.2765
+209204.0665584998 3.9457605 1103.2765
+209205.0665586041 3.9457998 1103.3555
+209206.0665587084 3.9457998 1103.3752
+209207.0665588127 3.9458392 1103.3357
+209208.0665589171 3.9459178 1103.3555
+209209.0665590214 3.9459178 1103.3752
+209210.0665591257 3.9459178 1103.3357
+209211.06655923 3.9459574 1103.316
+209212.0665593343 3.9459574 1103.3555
+209213.0665594386 3.9459178 1103.3357
+209214.0665595429 3.9459574 1103.2963
+209215.0665596472 3.9459178 1103.3949
+209216.0665597515 3.9459178 1103.3357
+209217.0665598558 3.9459574 1103.2369
+209218.0665599601 3.9459178 1103.3949
+209219.0665600644 3.9460361 1103.2765
+209220.0665601688 3.9459178 1103.2765
+209221.0665602731 3.9459968 1103.2369
+209222.0665603774 3.9459178 1103.3555
+209223.0665604817 3.9459968 1103.3357
+209224.066560586 3.9460361 1103.3949
+209225.0665606903 3.9460754 1103.2963
+209226.0665607946 3.9459968 1103.3555
+209227.0665608989 3.9461148 1103.4344
+209228.0665610032 3.9459968 1103.2765
+209229.0665611075 3.9461935 1103.3752
+209230.0665612118 3.9460754 1103.3357
+209231.0665613161 3.9462724 1103.3555
+209232.0665614204 3.9462328 1103.3357
+209233.0665615248 3.9461541 1103.4344
+209234.0665616291 3.9462724 1103.3357
+209235.0665617334 3.9461541 1103.3357
+209236.0665618377 3.9461541 1103.2765
+209237.066561942 3.9461935 1103.3357
+209238.0665620463 3.9461935 1103.2567
+209239.0665621506 3.9462328 1103.4147
+209240.0665622549 3.9462724 1103.4147
+209241.0665623592 3.9461935 1103.3357
+209242.0665624635 3.9463117 1103.2963
+209243.0665625678 3.9461541 1103.4147
+209244.0665626721 3.9462724 1103.4542
+209245.0665627765 3.9461541 1103.3357
+209246.0665628808 3.9462328 1103.3555
+209247.0665629851 3.9463511 1103.3949
+209248.0665630894 3.9462328 1103.3357
+209249.0665631937 3.9463117 1103.316
+209250.066563298 3.9463117 1103.3555
+209251.0665634023 3.9462328 1103.4147
+209252.0665635066 3.9463511 1103.3357
+209253.0665636109 3.9463511 1103.2963
+209254.0665637152 3.9463511 1103.2963
+209255.0665638195 3.9463904 1103.316
+209256.0665639238 3.9463904 1103.316
+209257.0665640282 3.9463117 1103.3555
+209258.0665641325 3.9463511 1103.3949
+209259.0665642368 3.9464297 1103.316
+209260.0665643411 3.9465084 1103.3555
+209261.0665644454 3.9464297 1103.316
+209262.0665645497 3.9463511 1103.2765
+209263.066564654 3.9465084 1103.3752
+209264.0665647583 3.9464297 1103.3357
+209265.0665648626 3.9465084 1103.4344
+209266.0665649669 3.9464297 1103.474
+209267.0665650712 3.9465084 1103.4147
+209268.0665651755 3.9465477 1103.2963
+209269.0665652798 3.9466267 1103.3555
+209270.0665653842 3.9465477 1103.316
+209271.0665654885 3.9465477 1103.2765
+209272.0665655928 3.9465477 1103.316
+209273.0665656971 3.9465477 1103.3357
+209274.0665658014 3.9465477 1103.3752
+209275.0665659057 3.9466267 1103.2369
+209276.06656601 3.9466267 1103.3357
+209277.0665661143 3.946666 1103.3555
+209278.0665662186 3.9467053 1103.3555
+209279.0665663229 3.9466267 1103.316
+209280.0665664272 3.946666 1103.3357
+209281.0665665315 3.9466267 1103.2963
+209282.0665666359 3.9466267 1103.3752
+209283.0665667402 3.9467447 1103.3555
+209284.0665668445 3.9467053 1103.3752
+209285.0665669488 3.946666 1103.3555
+209286.0665670531 3.9467053 1103.4147
+209287.0665671574 3.9467053 1103.3555
+209288.0665672617 3.9467053 1103.4344
+209289.066567366 3.9467053 1103.3752
+209290.0665674703 3.9467447 1103.3357
+209291.0665675746 3.9467053 1103.4344
+209292.0665676789 3.946784 1103.3357
+209293.0665677832 3.946784 1103.2765
+209294.0665678876 3.946784 1103.3357
+209295.0665679919 3.9467447 1103.4344
+209296.0665680962 3.9469023 1103.316
+209297.0665682005 3.946784 1103.2765
+209298.0665683048 3.9468234 1103.4147
+209299.0665684091 3.9469023 1103.316
+209300.0665685134 3.9469023 1103.3555
+209301.0665686177 3.9468627 1103.2963
+209302.066568722 3.9468234 1103.4147
+209303.0665688263 3.9468234 1103.3752
+209304.0665689306 3.9468627 1103.3357
+209305.0665690349 3.9469023 1103.3949
+209306.0665691393 3.9469023 1103.2369
+209307.0665692436 3.9468627 1103.2963
+209308.0665693479 3.9468627 1103.2765
+209309.0665694522 3.946981 1103.3949
+209310.0665695565 3.9469023 1103.3752
+209311.0665696608 3.9469023 1103.3949
+209312.0665697651 3.9470596 1103.4938
+209313.0665698694 3.9468627 1103.2765
+209314.0665699737 3.947099 1103.3357
+209315.066570078 3.9470596 1103.4147
+209316.0665701823 3.946981 1103.2963
+209317.0665702866 3.9469416 1103.316
+209318.0665703909 3.9471383 1103.3752
+209319.0665704953 3.947099 1103.3357
+209320.0665705996 3.9470203 1103.3555
+209321.0665707039 3.947099 1103.4147
+209322.0665708082 3.9471383 1103.3555
+209323.0665709125 3.947099 1103.3555
+209324.0665710168 3.9472172 1103.316
+209325.0665711211 3.9470203 1103.3555
+209326.0665712254 3.9472172 1103.4147
+209327.0665713297 3.947099 1103.3555
+209328.066571434 3.9472172 1103.316
+209329.0665715383 3.9472566 1103.3949
+209330.0665716426 3.9471779 1103.316
+209331.066571747 3.9472172 1103.3357
+209332.0665718513 3.9472959 1103.3357
+209333.0665719556 3.9472959 1103.316
+209334.0665720599 3.9472566 1103.3357
+209335.0665721642 3.9473746 1103.2963
+209336.0665722685 3.9471779 1103.3949
+209337.0665723728 3.9472959 1103.3357
+209338.0665724771 3.9472959 1103.3357
+209339.0665725814 3.9472959 1103.3357
+209340.0665726857 3.9472172 1103.3555
+209341.06657279 3.9472959 1103.316
+209342.0665728943 3.9472566 1103.316
+209343.0665729987 3.9472566 1103.4344
+209344.066573103 3.9472959 1103.316
+209345.0665732073 3.9473352 1103.2567
+209346.0665733116 3.9472959 1103.2963
+209347.0665734159 3.9473746 1103.3752
+209348.0665735202 3.9473352 1103.316
+209349.0665736245 3.9473352 1103.316
+209350.0665737288 3.9472959 1103.3357
+209351.0665738331 3.9474139 1103.316
+209352.0665739374 3.9473746 1103.3752
+209353.0665740417 3.9474533 1103.3555
+209354.066574146 3.9474928 1103.3357
+209355.0665742503 3.9474533 1103.2963
+209356.0665743547 3.9474139 1103.3949
+209357.066574459 3.9474139 1103.2765
+209358.0665745633 3.9474928 1103.3752
+209359.0665746676 3.9474139 1103.2963
+209360.0665747719 3.9474928 1103.4344
+209361.0665748762 3.9474928 1103.3752
+209362.0665749805 3.9475715 1103.3752
+209363.0665750848 3.9475322 1103.3555
+209364.0665751891 3.9474928 1103.3357
+209365.0665752934 3.9475322 1103.3555
+209366.0665753977 3.9475322 1103.3555
+209367.066575502 3.9475322 1103.3357
+209368.0665756064 3.9475715 1103.2765
+209369.0665757107 3.9476109 1103.3357
+209370.066575815 3.9477289 1103.2963
+209371.0665759193 3.9476502 1103.2567
+209372.0665760236 3.9476895 1103.2963
+209373.0665761279 3.9476502 1103.4147
+209374.0665762322 3.9476895 1103.3555
+209375.0665763365 3.9476502 1103.3555
+209376.0665764408 3.9476502 1103.316
+209377.0665765451 3.9477682 1103.2765
+209378.0665766494 3.9476502 1103.316
+209379.0665767537 3.9476895 1103.2765
+209380.0665768581 3.9477289 1103.3949
+209381.0665769624 3.9477682 1103.3357
+209382.0665770667 3.9477682 1103.3949
+209383.066577171 3.9478865 1103.3357
+209384.0665772753 3.9477289 1103.2963
+209385.0665773796 3.9477682 1103.2963
+209386.0665774839 3.9478078 1103.4147
+209387.0665775882 3.9478078 1103.316
+209388.0665776925 3.9478865 1103.316
+209389.0665777968 3.9478078 1103.2567
+209390.0665779011 3.9477289 1103.3949
+209391.0665780054 3.9478471 1103.3357
+209392.0665781097 3.9478471 1103.316
+209393.0665782141 3.9478865 1103.4147
+209394.0665783184 3.9477682 1103.2765
+209395.0665784227 3.9480045 1103.2963
+209396.066578527 3.9479258 1103.3555
+209397.0665786313 3.9478865 1103.3357
+209398.0665787356 3.9479258 1103.3357
+209399.0665788399 3.9478865 1103.3357
+209400.0665789442 3.9478471 1103.3949
+209401.0665790485 3.9480045 1103.316
+209402.0665791528 3.9480045 1103.3357
+209403.0665792571 3.9480045 1103.3752
+209404.0665793614 3.9480832 1103.316
+209405.0665794658 3.9480045 1103.3357
+209406.0665795701 3.9480045 1103.3752
+209407.0665796744 3.9480045 1103.3752
+209408.0665797787 3.9480832 1103.4147
+209409.066579883 3.9480045 1103.3555
+209410.0665799873 3.9481227 1103.3752
+209411.0665800916 3.9480438 1103.2963
+209412.0665801959 3.9480832 1103.3555
+209413.0665803002 3.9481227 1103.4147
+209414.0665804045 3.9480832 1103.3752
+209415.0665805088 3.9482408 1103.3357
+209416.0665806131 3.9482014 1103.2963
+209417.0665807175 3.9481621 1103.3555
+209418.0665808218 3.9481227 1103.4147
+209419.0665809261 3.9480438 1103.316
+209420.0665810304 3.9482408 1103.2963
+209421.0665811347 3.9481227 1103.316
+209422.066581239 3.9481227 1103.3357
+209423.0665813433 3.9482408 1103.3949
+209424.0665814476 3.9482801 1103.2765
+209425.0665815519 3.9481621 1103.2963
+209426.0665816562 3.9481621 1103.3949
+209427.0665817605 3.9482408 1103.3357
+209428.0665818648 3.9482801 1103.316
+209429.0665819691 3.9483588 1103.3949
+209430.0665820735 3.9483194 1103.316
+209431.0665821778 3.9482801 1103.2567
+209432.0665822821 3.9483194 1103.2963
+209433.0665823864 3.9483588 1103.3357
+209434.0665824907 3.9483588 1103.4344
+209435.066582595 3.9483194 1103.316
+209436.0665826993 3.9483194 1103.3357
+209437.0665828036 3.9482801 1103.2765
+209438.0665829079 3.9485164 1103.3357
+209439.0665830122 3.9483981 1103.3949
+209440.0665831165 3.9483981 1103.316
+209441.0665832208 3.9483981 1103.316
+209442.0665833252 3.948477 1103.316
+209443.0665834295 3.9484377 1103.2765
+209444.0665835338 3.9484377 1103.3357
+209445.0665836381 3.9483981 1103.3949
+209446.0665837424 3.9485164 1103.3949
+209447.0665838467 3.948477 1103.316
+209448.066583951 3.9485557 1103.2369
+209449.0665840553 3.9485557 1103.3555
+209450.0665841596 3.9485164 1103.3357
+209451.0665842639 3.9485557 1103.316
+209452.0665843682 3.948595 1103.3752
+209453.0665844725 3.9485557 1103.3752
+209454.0665845769 3.9485164 1103.3357
+209455.0665846812 3.9485164 1103.3752
+209456.0665847855 3.948595 1103.3555
+209457.0665848898 3.9485557 1103.3357
+209458.0665849941 3.948595 1103.3752
+209459.0665850984 3.9487131 1103.2765
+209460.0665852027 3.9486344 1103.316
+209461.066585307 3.9485164 1103.3357
+209462.0665854113 3.9486737 1103.3555
+209463.0665855156 3.9486344 1103.316
+209464.0665856199 3.9486737 1103.3357
+209465.0665857242 3.9487131 1103.3752
+209466.0665858286 3.9486344 1103.2765
+209467.0665859329 3.9487131 1103.3949
+209468.0665860372 3.9486737 1103.3752
+209469.0665861415 3.9487526 1103.3555
+209470.0665862458 3.9487131 1103.3555
+209471.0665863501 3.9486737 1103.316
+209472.0665864544 3.948792 1103.2765
+209473.0665865587 3.9488707 1103.3949
+209474.066586663 3.948792 1103.316
+209475.0665867673 3.9487131 1103.2765
+209476.0665868716 3.9488313 1103.3357
+209477.0665869759 3.9487131 1103.3555
+209478.0665870802 3.94891 1103.3949
+209479.0665871846 3.9489887 1103.3357
+209480.0665872889 3.9488707 1103.3357
+209481.0665873932 3.94891 1103.3752
+209482.0665874975 3.9490676 1103.316
+209483.0665876018 3.94891 1103.2765
+209484.0665877061 3.9488313 1103.2963
+209485.0665878104 3.9489887 1103.2963
+209486.0665879147 3.94891 1103.3555
+209487.066588019 3.9489493 1103.3949
+209488.0665881233 3.94891 1103.3555
+209489.0665882276 3.9489887 1103.3949
+209490.0665883319 3.9489887 1103.3752
+209491.0665884363 3.9489493 1103.3357
+209492.0665885406 3.9489493 1103.3555
+209493.0665886449 3.9489493 1103.3752
+209494.0665887492 3.9489887 1103.3949
+209495.0665888535 3.9489887 1103.316
+209496.0665889578 3.9490676 1103.2765
+209497.0665890621 3.9489493 1103.3949
+209498.0665891664 3.9489493 1103.4147
+209499.0665892707 3.9491069 1103.3555
+209500.066589375 3.9491856 1103.3752
+209501.0665894793 3.9490283 1103.3555
+209502.0665895836 3.9490676 1103.3949
+209503.066589688 3.9491856 1103.3357
+209504.0665897923 3.9491463 1103.316
+209505.0665898966 3.9491069 1103.3357
+209506.0665900009 3.9489887 1103.2765
+209507.0665901052 3.9491463 1103.316
+209508.0665902095 3.9491856 1103.2765
+209509.0665903138 3.9491069 1103.3949
+209510.0665904181 3.9492643 1103.3555
+209511.0665905224 3.9492643 1103.3357
+209512.0665906267 3.9490676 1103.2765
+209513.066590731 3.9492249 1103.316
+209514.0665908353 3.9491856 1103.4147
+209515.0665909396 3.9492249 1103.474
+209516.066591044 3.9491856 1103.3555
+209517.0665911483 3.9492643 1103.2567
+209518.0665912526 3.9492249 1103.4147
+209519.0665913569 3.9491463 1103.3357
+209520.0665914612 3.9493036 1103.3752
+209521.0665915655 3.9492643 1103.3949
+209522.0665916698 3.9492643 1103.3949
+209523.0665917741 3.9493036 1103.2765
+209524.0665918784 3.9493825 1103.3357
+209525.0665919827 3.9493432 1103.316
+209526.066592087 3.9493825 1103.2963
+209527.0665921913 3.9493432 1103.3555
+209528.0665922957 3.9494219 1103.3949
+209529.0665924 3.9493825 1103.3752
+209530.0665925043 3.9493432 1103.3949
+209531.0665926086 3.9493825 1103.3752
+209532.0665927129 3.9495006 1103.2963
+209533.0665928172 3.9494612 1103.316
+209534.0665929215 3.9494219 1103.2567
+209535.0665930258 3.9494219 1103.3357
+209536.0665931301 3.9495006 1103.3555
+209537.0665932344 3.9495399 1103.3752
+209538.0665933387 3.9495399 1103.3949
+209539.066593443 3.9494612 1103.3949
+209540.0665935474 3.9495006 1103.2963
+209541.0665936517 3.9493825 1103.1975
+209542.066593756 3.9495399 1103.3357
+209543.0665938603 3.9495006 1103.3752
+209544.0665939646 3.9495399 1103.3357
+209545.0665940689 3.9496186 1103.3949
+209546.0665941732 3.9495792 1103.3357
+209547.0665942775 3.9496975 1103.3752
+209548.0665943818 3.9496186 1103.3357
+209549.0665944861 3.9495399 1103.4147
+209550.0665945904 3.9496582 1103.316
+209551.0665946947 3.9495792 1103.316
+209552.066594799 3.9496975 1103.3357
+209553.0665949034 3.9496582 1103.3949
+209554.0665950077 3.9496582 1103.3949
+209555.066595112 3.9496582 1103.4344
+209556.0665952163 3.9496582 1103.3752
+209557.0665953206 3.9496975 1103.2369
+209558.0665954249 3.9496975 1103.3357
+209559.0665955292 3.9496582 1103.316
+209560.0665956335 3.9496975 1103.2963
+209561.0665957378 3.9496582 1103.2369
+209562.0665958421 3.9497368 1103.3555
+209563.0665959464 3.9497368 1103.3555
+209564.0665960507 3.9498942 1103.3357
+209565.0665961551 3.9498549 1103.3357
+209566.0665962594 3.9498155 1103.3949
+209567.0665963637 3.9498155 1103.3357
+209568.066596468 3.9497762 1103.3357
+209569.0665965723 3.9497368 1103.4147
+209570.0665966766 3.9498549 1103.316
+209571.0665967809 3.9497762 1103.2765
+209572.0665968852 3.9498549 1103.2963
+209573.0665969895 3.9498549 1103.3555
+209574.0665970938 3.9498942 1103.316
+209575.0665971981 3.9498549 1103.2963
+209576.0665973024 3.9497762 1103.3555
+209577.0665974068 3.9497762 1103.2567
+209578.0665975111 3.9498942 1103.2963
+209579.0665976154 3.9499731 1103.3555
+209580.0665977197 3.9498942 1103.2369
+209581.066597824 3.9500124 1103.2963
+209582.0665979283 3.9499731 1103.4147
+209583.0665980326 3.9499335 1103.3357
+209584.0665981369 3.9499731 1103.3555
+209585.0665982412 3.9499731 1103.316
+209586.0665983455 3.9500124 1103.4344
+209587.0665984498 3.9498942 1103.3949
+209588.0665985541 3.9500911 1103.4147
+209589.0665986585 3.9500124 1103.2963
+209590.0665987628 3.9500124 1103.3357
+209591.0665988671 3.9500124 1103.3357
+209592.0665989714 3.9500911 1103.3752
+209593.0665990757 3.9501305 1103.3752
+209594.06659918 3.9500124 1103.4147
+209595.0665992843 3.9502091 1103.2765
+209596.0665993886 3.9501305 1103.316
+209597.0665994929 3.9501698 1103.3949
+209598.0665995972 3.9499731 1103.3555
+209599.0665997015 3.9502091 1103.3752
+209600.0665998058 3.9501305 1103.2963
+209601.0665999101 3.9501698 1103.316
+209602.0666000145 3.9501305 1103.316
+209603.0666001188 3.9502485 1103.316
+209604.0666002231 3.9502881 1103.4147
+209605.0666003274 3.9501698 1103.316
+209606.0666004317 3.9502485 1103.4344
+209607.066600536 3.9502485 1103.3949
+209608.0666006403 3.9502881 1103.3752
+209609.0666007446 3.9503667 1103.3555
+209610.0666008489 3.9502881 1103.4147
+209611.0666009532 3.9502485 1103.4344
+209612.0666010575 3.9502881 1103.2963
+209613.0666011618 3.9503667 1103.2963
+209614.0666012662 3.9503667 1103.316
+209615.0666013705 3.9502485 1103.4344
+209616.0666014748 3.9503274 1103.4542
+209617.0666015791 3.9502091 1103.3949
+209618.0666016834 3.9504848 1103.3949
+209619.0666017877 3.9503667 1103.3555
+209620.066601892 3.9503667 1103.316
+209621.0666019963 3.9504061 1103.4147
+209622.0666021006 3.9503667 1103.3752
+209623.0666022049 3.9504454 1103.3555
+209624.0666023092 3.9502881 1103.3555
+209625.0666024135 3.9504061 1103.3555
+209626.0666025179 3.9504454 1103.3357
+209627.0666026222 3.9504454 1103.2963
+209628.0666027265 3.9505634 1103.316
+209629.0666028308 3.9505634 1103.2963
+209630.0666029351 3.9505241 1103.3555
+209631.0666030394 3.9504848 1103.3752
+209632.0666031437 3.9504848 1103.316
+209633.066603248 3.9504848 1103.3357
+209634.0666033523 3.9505241 1103.316
+209635.0666034566 3.9504454 1103.316
+209636.0666035609 3.950603 1103.2963
+209637.0666036652 3.9505634 1103.2963
+209638.0666037695 3.9505634 1103.2963
+209639.0666038739 3.9505634 1103.3357
+209640.0666039782 3.950603 1103.3555
+209641.0666040825 3.9506423 1103.3555
+209642.0666041868 3.950603 1103.2963
+209643.0666042911 3.9505634 1103.3949
+209644.0666043954 3.9506817 1103.2963
+209645.0666044997 3.9506817 1103.316
+209646.066604604 3.9506423 1103.2765
+209647.0666047083 3.9506423 1103.4147
+209648.0666048126 3.950721 1103.3357
+209649.0666049169 3.9507604 1103.3555
+209650.0666050212 3.9507997 1103.2963
+209651.0666051256 3.9507604 1103.2963
+209652.0666052299 3.9507997 1103.4147
+209653.0666053342 3.9507604 1103.3752
+209654.0666054385 3.9506423 1103.3555
+209655.0666055428 3.9507997 1103.2369
+209656.0666056471 3.9507604 1103.3357
+209657.0666057514 3.9507997 1103.2567
+209658.0666058557 3.9507997 1103.2172
+209659.06660596 3.9507604 1103.2172
+209660.0666060643 3.950839 1103.3357
+209661.0666061686 3.950839 1103.3949
+209662.0666062729 3.9507997 1103.4147
+209663.0666063773 3.950839 1103.2765
+209664.0666064816 3.9507997 1103.2765
+209665.0666065859 3.9507997 1103.3357
+209666.0666066902 3.9507604 1103.3357
+209667.0666067945 3.950839 1103.3357
+209668.0666068988 3.950918 1103.3752
+209669.0666070031 3.9508786 1103.3949
+209670.0666071074 3.9509573 1103.3752
+209671.0666072117 3.9508786 1103.3752
+209672.066607316 3.950918 1103.3752
+209673.0666074203 3.951036 1103.3949
+209674.0666075246 3.9510753 1103.2963
+209675.0666076289 3.9509966 1103.3555
+209676.0666077333 3.950918 1103.2963
+209677.0666078376 3.9509573 1103.3357
+209678.0666079419 3.951036 1103.316
+209679.0666080462 3.9509966 1103.3752
+209680.0666081505 3.9509966 1103.4147
+209681.0666082548 3.9510753 1103.3555
+209682.0666083591 3.951036 1103.3949
+209683.0666084634 3.9511147 1103.3752
+209684.0666085677 3.951036 1103.2765
+209685.066608672 3.9510753 1103.3555
+209686.0666087763 3.951154 1103.3555
+209687.0666088806 3.9511936 1103.4344
+209688.066608985 3.951154 1103.3357
+209689.0666090893 3.9511147 1103.4344
+209690.0666091936 3.951154 1103.4344
+209691.0666092979 3.951154 1103.2369
+209692.0666094022 3.951154 1103.2567
+209693.0666095065 3.951154 1103.3752
+209694.0666096108 3.9512329 1103.3357
+209695.0666097151 3.951154 1103.4147
+209696.0666098194 3.9512329 1103.4344
+209697.0666099237 3.9510753 1103.316
+209698.066610028 3.9512722 1103.3357
+209699.0666101323 3.9513509 1103.3555
+209700.0666102367 3.9512329 1103.3357
+209701.066610341 3.9512329 1103.3949
+209702.0666104453 3.9512329 1103.3752
+209703.0666105496 3.9512722 1103.3555
+209704.0666106539 3.9513509 1103.3357
+209705.0666107582 3.9513116 1103.3555
+209706.0666108625 3.9513116 1103.3357
+209707.0666109668 3.9513509 1103.4147
+209708.0666110711 3.9513116 1103.3555
+209709.0666111754 3.9513903 1103.3555
+209710.0666112797 3.9513903 1103.3357
+209711.066611384 3.9514689 1103.3357
+209712.0666114884 3.9514296 1103.2963
+209713.0666115927 3.9513116 1103.3357
+209714.066611697 3.9514296 1103.3949
+209715.0666118013 3.9514689 1103.2567
+209716.0666119056 3.9514296 1103.3555
+209717.0666120099 3.9514296 1103.3949
+209718.0666121142 3.9514689 1103.3555
+209719.0666122185 3.9514296 1103.4542
+209720.0666123228 3.9515872 1103.4147
+209721.0666124271 3.9515085 1103.4344
+209722.0666125314 3.9515479 1103.3752
+209723.0666126357 3.9516265 1103.3752
+209724.06661274 3.9515085 1103.3555
+209725.0666128444 3.9514689 1103.2963
+209726.0666129487 3.9515085 1103.4344
+209727.066613053 3.9515872 1103.3555
+209728.0666131573 3.9516659 1103.2963
+209729.0666132616 3.9517052 1103.3949
+209730.0666133659 3.9515479 1103.3357
+209731.0666134702 3.9515479 1103.2765
+209732.0666135745 3.9517052 1103.3357
+209733.0666136788 3.9517839 1103.316
+209734.0666137831 3.9516265 1103.3949
+209735.0666138874 3.9516265 1103.3949
+209736.0666139917 3.9517052 1103.3555
+209737.0666140961 3.9516659 1103.3357
+209738.0666142004 3.9517052 1103.3357
+209739.0666143047 3.9516659 1103.3357
+209740.066614409 3.9517052 1103.3357
+209741.0666145133 3.9517839 1103.4147
+209742.0666146176 3.9516659 1103.3949
+209743.0666147219 3.9516265 1103.3949
+209744.0666148262 3.9517839 1103.2963
+209745.0666149305 3.9518235 1103.316
+209746.0666150348 3.9518235 1103.2765
+209747.0666151391 3.9518235 1103.4147
+209748.0666152434 3.9517839 1103.3555
+209749.0666153478 3.9518235 1103.4344
+209750.0666154521 3.9519022 1103.3555
+209751.0666155564 3.9519022 1103.3752
+209752.0666156607 3.9517446 1103.3555
+209753.066615765 3.9517052 1103.3949
+209754.0666158693 3.9518235 1103.3752
+209755.0666159736 3.9519022 1103.3752
+209756.0666160779 3.9517839 1103.316
+209757.0666161822 3.9517839 1103.4542
+209758.0666162865 3.9518628 1103.2963
+209759.0666163908 3.9519808 1103.3357
+209760.0666164951 3.9519022 1103.3949
+209761.0666165994 3.9519415 1103.2765
+209762.0666167038 3.9519022 1103.4147
+209763.0666168081 3.9520595 1103.2963
+209764.0666169124 3.9519415 1103.4147
+209765.0666170167 3.9519022 1103.3949
+209766.066617121 3.9520202 1103.3555
+209767.0666172253 3.9520595 1103.4344
+209768.0666173296 3.9519808 1103.3357
+209769.0666174339 3.9520202 1103.3357
+209770.0666175382 3.9520202 1103.3555
+209771.0666176425 3.9520988 1103.3949
+209772.0666177468 3.9521778 1103.316
+209773.0666178511 3.9520595 1103.3357
+209774.0666179555 3.9520988 1103.3752
+209775.0666180598 3.9520988 1103.3357
+209776.0666181641 3.9521384 1103.3949
+209777.0666182684 3.9521384 1103.4147
+209778.0666183727 3.9520595 1103.3752
+209779.066618477 3.9521384 1103.3752
+209780.0666185813 3.9521384 1103.3555
+209781.0666186856 3.9522171 1103.316
+209782.0666187899 3.9521778 1103.3752
+209783.0666188942 3.9521778 1103.316
+209784.0666189985 3.9521778 1103.3357
+209785.0666191028 3.9521384 1103.3357
+209786.0666192072 3.9521778 1103.2765
+209787.0666193115 3.9522564 1103.3357
+209788.0666194158 3.9522958 1103.2963
+209789.0666195201 3.9521778 1103.3555
+209790.0666196244 3.9522958 1103.316
+209791.0666197287 3.9522564 1103.2567
+209792.066619833 3.9522958 1103.316
+209793.0666199373 3.9523351 1103.4147
+209794.0666200416 3.9523351 1103.474
+209795.0666201459 3.9523351 1103.3555
+209796.0666202502 3.9522564 1103.316
+209797.0666203545 3.952414 1103.2963
+209798.0666204588 3.952414 1103.2765
+209799.0666205632 3.9523745 1103.316
+209800.0666206675 3.9523351 1103.3357
+209801.0666207718 3.9524534 1103.3357
+209802.0666208761 3.9523745 1103.3752
+209803.0666209804 3.9524534 1103.2765
+209804.0666210847 3.9525321 1103.3752
+209805.066621189 3.9525321 1103.3555
+209806.0666212933 3.952414 1103.3555
+209807.0666213976 3.952414 1103.3949
+209808.0666215019 3.952414 1103.3357
+209809.0666216062 3.9525714 1103.4344
+209810.0666217105 3.9524534 1103.3555
+209811.0666218149 3.9525321 1103.3555
+209812.0666219192 3.9524927 1103.2963
+209813.0666220235 3.9526107 1103.3752
+209814.0666221278 3.9526107 1103.3555
+209815.0666222321 3.952414 1103.3357
+209816.0666223364 3.9525321 1103.3555
+209817.0666224407 3.9526107 1103.316
+209818.066622545 3.9525714 1103.4542
+209819.0666226493 3.9524927 1103.3555
+209820.0666227536 3.9525321 1103.2963
+209821.0666228579 3.9525714 1103.2369
+209822.0666229622 3.9526894 1103.3357
+209823.0666230666 3.9526107 1103.3357
+209824.0666231709 3.952729 1103.3357
+209825.0666232752 3.9526894 1103.3949
+209826.0666233795 3.9525321 1103.2567
+209827.0666234838 3.952729 1103.3752
+209828.0666235881 3.9526107 1103.3357
+209829.0666236924 3.952729 1103.3357
+209830.0666237967 3.952729 1103.3949
+209831.066623901 3.9526894 1103.2369
+209832.0666240053 3.9527683 1103.316
+209833.0666241096 3.9526894 1103.2172
+209834.0666242139 3.9527683 1103.3555
+209835.0666243183 3.9528077 1103.3555
+209836.0666244226 3.9527683 1103.3357
+209837.0666245269 3.9528863 1103.3555
+209838.0666246312 3.9528077 1103.3949
+209839.0666247355 3.952847 1103.3555
+209840.0666248398 3.9528863 1103.316
+209841.0666249441 3.952847 1103.2765
+209842.0666250484 3.9527683 1103.3357
+209843.0666251527 3.9528863 1103.3752
+209844.066625257 3.9528077 1103.2963
+209845.0666253613 3.9528863 1103.3752
+209846.0666254656 3.952847 1103.2963
+209847.0666255699 3.9529257 1103.3357
+209848.0666256743 3.9529257 1103.3752
+209849.0666257786 3.952965 1103.3949
+209850.0666258829 3.9528863 1103.3949
+209851.0666259872 3.9529257 1103.4147
+209852.0666260915 3.9528863 1103.3555
+209853.0666261958 3.952965 1103.2963
+209854.0666263001 3.9528863 1103.3357
+209855.0666264044 3.9530044 1103.3752
+209856.0666265087 3.9530439 1103.316
+209857.066626613 3.952965 1103.3949
+209858.0666267173 3.952965 1103.2963
+209859.0666268216 3.952965 1103.4147
+209860.066626926 3.9530439 1103.316
+209861.0666270303 3.952965 1103.3949
+209862.0666271346 3.9530439 1103.316
+209863.0666272389 3.9530439 1103.3555
+209864.0666273432 3.953162 1103.2567
+209865.0666274475 3.9530439 1103.3949
+209866.0666275518 3.9531226 1103.3949
+209867.0666276561 3.953162 1103.3357
+209868.0666277604 3.9530833 1103.3752
+209869.0666278647 3.9530833 1103.3752
+209870.066627969 3.953162 1103.316
+209871.0666280733 3.9530833 1103.316
+209872.0666281777 3.9532013 1103.316
+209873.066628282 3.9531226 1103.3555
+209874.0666283863 3.9530833 1103.3949
+209875.0666284906 3.953162 1103.3949
+209876.0666285949 3.9532406 1103.4938
+209877.0666286992 3.9531226 1103.3752
+209878.0666288035 3.9532406 1103.2369
+209879.0666289078 3.9533193 1103.2567
+209880.0666290121 3.9532406 1103.316
+209881.0666291164 3.9533193 1103.3357
+209882.0666292207 3.9533193 1103.316
+209883.066629325 3.9532406 1103.316
+209884.0666294293 3.9532013 1103.4147
+209885.0666295337 3.9533589 1103.3357
+209886.066629638 3.9533589 1103.3949
+209887.0666297423 3.9533193 1103.2963
+209888.0666298466 3.9533589 1103.316
+209889.0666299509 3.9533193 1103.3752
+209890.0666300552 3.9533982 1103.316
+209891.0666301595 3.9533193 1103.3357
+209892.0666302638 3.9533193 1103.316
+209893.0666303681 3.9533589 1103.316
+209894.0666304724 3.9534376 1103.3357
+209895.0666305767 3.9533982 1103.316
+209896.066630681 3.9534769 1103.4147
+209897.0666307854 3.9535162 1103.3752
+209898.0666308897 3.9534769 1103.3357
+209899.066630994 3.9534769 1103.3752
+209900.0666310983 3.9534376 1103.316
+209901.0666312026 3.9534376 1103.3357
+209902.0666313069 3.9534376 1103.3752
+209903.0666314112 3.9535556 1103.316
+209904.0666315155 3.9535556 1103.3752
+209905.0666316198 3.9535162 1103.3357
+209906.0666317241 3.9535949 1103.3949
+209907.0666318284 3.9535949 1103.2963
+209908.0666319327 3.9535949 1103.316
+209909.0666320371 3.9535949 1103.3555
+209910.0666321414 3.9535949 1103.4344
+209911.0666322457 3.9535556 1103.3555
+209912.06663235 3.9535162 1103.3555
+209913.0666324543 3.9535949 1103.316
+209914.0666325586 3.9536343 1103.3752
+209915.0666326629 3.9536343 1103.3752
+209916.0666327672 3.9536738 1103.3555
+209917.0666328715 3.9536343 1103.3949
+209918.0666329758 3.9536343 1103.3752
+209919.0666330801 3.9535949 1103.2963
+209920.0666331844 3.9537132 1103.2963
+209921.0666332887 3.9537132 1103.3752
+209922.0666333931 3.9537525 1103.3949
+209923.0666334974 3.9537919 1103.3555
+209924.0666336017 3.9536343 1103.3555
+209925.066633706 3.9538312 1103.3752
+209926.0666338103 3.9537132 1103.2963
+209927.0666339146 3.9538312 1103.3357
+209928.0666340189 3.9538312 1103.3949
+209929.0666341232 3.9538705 1103.316
+209930.0666342275 3.9537132 1103.3555
+209931.0666343318 3.9537919 1103.3949
+209932.0666344361 3.9538705 1103.4147
+209933.0666345404 3.9538705 1103.2963
+209934.0666346448 3.9539099 1103.3555
+209935.0666347491 3.9538705 1103.3949
+209936.0666348534 3.9538312 1103.3949
+209937.0666349577 3.9539099 1103.3949
+209938.066635062 3.9539492 1103.3357
+209939.0666351663 3.9539492 1103.3555
+209940.0666352706 3.9539099 1103.3357
+209941.0666353749 3.9539492 1103.3555
+209942.0666354792 3.9539492 1103.4542
+209943.0666355835 3.9541068 1103.3357
+209944.0666356878 3.9539492 1103.3357
+209945.0666357921 3.9540281 1103.3752
+209946.0666358965 3.9540281 1103.2963
+209947.0666360008 3.9540281 1103.3357
+209948.0666361051 3.9539888 1103.316
+209949.0666362094 3.9539888 1103.3555
+209950.0666363137 3.9540675 1103.3357
+209951.066636418 3.9540675 1103.3752
+209952.0666365223 3.9540281 1103.3949
+209953.0666366266 3.9541461 1103.3752
+209954.0666367309 3.9541068 1103.3357
+209955.0666368352 3.9540675 1103.3555
+209956.0666369395 3.9541068 1103.3949
+209957.0666370438 3.9541855 1103.2963
+209958.0666371481 3.9541068 1103.3357
+209959.0666372525 3.9541461 1103.4147
+209960.0666373568 3.9542248 1103.2567
+209961.0666374611 3.9542248 1103.5134
+209962.0666375654 3.9542248 1103.2963
+209963.0666376697 3.9541855 1103.316
+209964.066637774 3.9541461 1103.3752
+209965.0666378783 3.9541855 1103.3357
+209966.0666379826 3.9541855 1103.316
+209967.0666380869 3.9542248 1103.3555
+209968.0666381912 3.9543037 1103.3555
+209969.0666382955 3.9542248 1103.2963
+209970.0666383998 3.9542248 1103.474
+209971.0666385042 3.9543037 1103.3752
+209972.0666386085 3.9542248 1103.3752
+209973.0666387128 3.9543037 1103.3752
+209974.0666388171 3.9541855 1103.2765
+209975.0666389214 3.9542644 1103.3752
+209976.0666390257 3.9543431 1103.316
+209977.06663913 3.9542644 1103.3752
+209978.0666392343 3.9541855 1103.3752
+209979.0666393386 3.9543037 1103.3357
+209980.0666394429 3.9543037 1103.3752
+209981.0666395472 3.9543824 1103.3752
+209982.0666396515 3.9543431 1103.3357
+209983.0666397559 3.9543824 1103.2963
+209984.0666398602 3.9543824 1103.3752
+209985.0666399645 3.9545004 1103.316
+209986.0666400688 3.9544611 1103.4147
+209987.0666401731 3.9544218 1103.3752
+209988.0666402774 3.9543431 1103.3357
+209989.0666403817 3.9545398 1103.2765
+209990.066640486 3.9545004 1103.3752
+209991.0666405903 3.9546187 1103.3555
+209992.0666406946 3.9544218 1103.3752
+209993.0666407989 3.9545004 1103.316
+209994.0666409032 3.9545398 1103.3357
+209995.0666410076 3.9545398 1103.3752
+209996.0666411119 3.9544611 1103.3555
+209997.0666412162 3.9545004 1103.3752
+209998.0666413205 3.9545004 1103.3555
+209999.0666414248 3.9545398 1103.3357
+210000.0666415291 3.9545794 1103.2963
+210001.0666416334 3.9545794 1103.3949
+210002.0666417377 3.9545398 1103.3555
+210003.066641842 3.9546187 1103.3752
+210004.0666419463 3.9545004 1103.3949
+210005.0666420506 3.9545398 1103.2963
+210006.0666421549 3.9546187 1103.2765
+210007.0666422592 3.9545794 1103.3752
+210008.0666423636 3.9547367 1103.316
+210009.0666424679 3.954658 1103.316
+210010.0666425722 3.954658 1103.3752
+210011.0666426765 3.9546974 1103.2369
+210012.0666427808 3.9547367 1103.3555
+210013.0666428851 3.954776 1103.3357
+210014.0666429894 3.9546187 1103.3357
+210015.0666430937 3.954776 1103.3555
+210016.066643198 3.9547367 1103.3949
+210017.0666433023 3.9548943 1103.4147
+210018.0666434066 3.9547367 1103.2567
+210019.0666435109 3.9548943 1103.3357
+210020.0666436153 3.954973 1103.3555
+210021.0666437196 3.9549336 1103.3357
+210022.0666438239 3.9548154 1103.316
+210023.0666439282 3.9548547 1103.3357
+210024.0666440325 3.9548943 1103.316
+210025.0666441368 3.9548943 1103.1975
+210026.0666442411 3.9548547 1103.316
+210027.0666443454 3.9548943 1103.4147
+210028.0666444497 3.954973 1103.3357
+210029.066644554 3.9549336 1103.3357
+210030.0666446583 3.954973 1103.3357
+210031.0666447626 3.9548547 1103.3357
+210032.066644867 3.955091 1103.4344
+210033.0666449713 3.9548943 1103.3949
+210034.0666450756 3.9549336 1103.3752
+210035.0666451799 3.9550517 1103.3555
+210036.0666452842 3.954973 1103.3752
+210037.0666453885 3.9550123 1103.316
+210038.0666454928 3.9550123 1103.2765
+210039.0666455971 3.9550517 1103.3752
+210040.0666457014 3.9550123 1103.3949
+210041.0666458057 3.9550517 1103.3752
+210042.06664591 3.9551697 1103.3555
+210043.0666460143 3.9550123 1103.3949
+210044.0666461186 3.955091 1103.3949
+210045.066646223 3.9550123 1103.474
+210046.0666463273 3.955091 1103.3752
+210047.0666464316 3.9551697 1103.3357
+210048.0666465359 3.955091 1103.2963
+210049.0666466402 3.9550517 1103.3357
+210050.0666467445 3.9552486 1103.3752
+210051.0666468488 3.9551303 1103.3555
+210052.0666469531 3.9552093 1103.3357
+210053.0666470574 3.9552486 1103.3555
+210054.0666471617 3.9551697 1103.4344
+210055.066647266 3.9552093 1103.3555
+210056.0666473703 3.9552093 1103.2765
+210057.0666474747 3.9552486 1103.4147
+210058.066647579 3.9552093 1103.3357
+210059.0666476833 3.9552486 1103.3752
+210060.0666477876 3.9552879 1103.3357
+210061.0666478919 3.9552093 1103.4147
+210062.0666479962 3.9552486 1103.4147
+210063.0666481005 3.9553666 1103.4147
+210064.0666482048 3.9552486 1103.2765
+210065.0666483091 3.9553273 1103.3357
+210066.0666484134 3.9553666 1103.3555
+210067.0666485177 3.9553273 1103.3949
+210068.066648622 3.9554453 1103.2369
+210069.0666487264 3.9554453 1103.3949
+210070.0666488307 3.9553666 1103.3357
+210071.066648935 3.9553666 1103.316
+210072.0666490393 3.9553666 1103.3357
+210073.0666491436 3.9553666 1103.3949
+210074.0666492479 3.955406 1103.3949
+210075.0666493522 3.9553666 1103.3949
+210076.0666494565 3.9555242 1103.2963
+210077.0666495608 3.9554453 1103.3555
+210078.0666496651 3.9554846 1103.3752
+210079.0666497694 3.9554846 1103.4147
+210080.0666498737 3.9554846 1103.3555
+210081.066649978 3.9554846 1103.3949
+210082.0666500824 3.9554846 1103.3357
+210083.0666501867 3.9555635 1103.3555
+210084.066650291 3.9554453 1103.3357
+210085.0666503953 3.9555635 1103.316
+210086.0666504996 3.9555242 1103.4147
+210087.0666506039 3.9555635 1103.3357
+210088.0666507082 3.9555635 1103.3555
+210089.0666508125 3.9555242 1103.3555
+210090.0666509168 3.9556029 1103.3357
+210091.0666510211 3.9555635 1103.3752
+210092.0666511254 3.9556816 1103.4147
+210093.0666512297 3.9556816 1103.3752
+210094.0666513341 3.9556029 1103.316
+210095.0666514384 3.9556422 1103.3555
+210096.0666515427 3.9557209 1103.3555
+210097.066651647 3.9556029 1103.3752
+210098.0666517513 3.9556029 1103.3357
+210099.0666518556 3.9557602 1103.316
+210100.0666519599 3.9557209 1103.316
+210101.0666520642 3.9557996 1103.316
+210102.0666521685 3.9557602 1103.2765
+210103.0666522728 3.9558785 1103.3949
+210104.0666523771 3.9556816 1103.2567
+210105.0666524814 3.9556816 1103.4542
+210106.0666525858 3.9557996 1103.316
+210107.0666526901 3.9557602 1103.2567
+210108.0666527944 3.9557996 1103.2567
+210109.0666528987 3.9558392 1103.316
+210110.066653003 3.9558785 1103.3752
+210111.0666531073 3.9557996 1103.3555
+210112.0666532116 3.9558392 1103.3357
+210113.0666533159 3.9557602 1103.3949
+210114.0666534202 3.9557602 1103.3357
+210115.0666535245 3.9559965 1103.4344
+210116.0666536288 3.9557602 1103.316
+210117.0666537331 3.9557996 1103.3357
+210118.0666538375 3.9559178 1103.2963
+210119.0666539418 3.9558392 1103.2963
+210120.0666540461 3.9558392 1103.3555
+210121.0666541504 3.9559178 1103.316
+210122.0666542547 3.9559178 1103.4147
+210123.066654359 3.9560359 1103.3752
+210124.0666544633 3.9560359 1103.3357
+210125.0666545676 3.9559572 1103.3949
+210126.0666546719 3.9559572 1103.3752
+210127.0666547762 3.9560752 1103.3357
+210128.0666548805 3.9560359 1103.3752
+210129.0666549848 3.9559965 1103.3752
+210130.0666550891 3.9561148 1103.4147
+210131.0666551935 3.9559965 1103.3357
+210132.0666552978 3.9560752 1103.3752
+210133.0666554021 3.9561148 1103.316
+210134.0666555064 3.9560359 1103.2963
+210135.0666556107 3.9560752 1103.4147
+210136.066655715 3.9561541 1103.3555
+210137.0666558193 3.9561934 1103.4344
+210138.0666559236 3.9561934 1103.3555
+210139.0666560279 3.9560752 1103.3357
+210140.0666561322 3.9562328 1103.4147
+210141.0666562365 3.9562721 1103.4147
+210142.0666563408 3.9562721 1103.2963
+210143.0666564452 3.9561148 1103.3555
+210144.0666565495 3.9562328 1103.3752
+210145.0666566538 3.9562328 1103.3555
+210146.0666567581 3.9562721 1103.4147
+210147.0666568624 3.9563115 1103.3357
+210148.0666569667 3.9562721 1103.3752
+210149.066657071 3.9561541 1103.316
+210150.0666571753 3.9561934 1103.2963
+210151.0666572796 3.9562328 1103.3555
+210152.0666573839 3.9561541 1103.2963
+210153.0666574882 3.9563508 1103.3752
+210154.0666575925 3.9562721 1103.3357
+210155.0666576969 3.9562328 1103.2963
+210156.0666578012 3.9563901 1103.4147
+210157.0666579055 3.9563508 1103.316
+210158.0666580098 3.9564297 1103.2765
+210159.0666581141 3.9564297 1103.3357
+210160.0666582184 3.9563508 1103.4147
+210161.0666583227 3.9564297 1103.4147
+210162.066658427 3.9563115 1103.3949
+210163.0666585313 3.9563901 1103.3357
+210164.0666586356 3.9564691 1103.3555
+210165.0666587399 3.9563508 1103.3949
+210166.0666588442 3.9564297 1103.3949
+210167.0666589485 3.9563508 1103.3357
+210168.0666590529 3.9564691 1103.3949
+210169.0666591572 3.9565084 1103.316
+210170.0666592615 3.9565084 1103.4344
+210171.0666593658 3.9565477 1103.3357
+210172.0666594701 3.9565477 1103.2567
+210173.0666595744 3.9565871 1103.4344
+210174.0666596787 3.9564297 1103.3357
+210175.066659783 3.9564691 1103.3555
+210176.0666598873 3.9565477 1103.3357
+210177.0666599916 3.9565477 1103.3357
+210178.0666600959 3.9565477 1103.2369
+210179.0666602002 3.9566264 1103.3949
+210180.0666603046 3.9564691 1103.2963
+210181.0666604089 3.9566264 1103.3752
+210182.0666605132 3.9565477 1103.2567
+210183.0666606175 3.9565871 1103.2369
+210184.0666607218 3.9567447 1103.4344
+210185.0666608261 3.9567051 1103.316
+210186.0666609304 3.956784 1103.2963
+210187.0666610347 3.9567051 1103.3555
+210188.066661139 3.9566658 1103.2963
+210189.0666612433 3.9566264 1103.3357
+210190.0666613476 3.9567051 1103.316
+210191.0666614519 3.9566658 1103.3949
+210192.0666615563 3.9567051 1103.316
+210193.0666616606 3.9568233 1103.2765
+210194.0666617649 3.9566658 1103.3357
+210195.0666618692 3.9567051 1103.3357
+210196.0666619735 3.956784 1103.4147
+210197.0666620778 3.956784 1103.3752
+210198.0666621821 3.956784 1103.316
+210199.0666622864 3.956784 1103.2765
+210200.0666623907 3.956902 1103.3555
+210201.066662495 3.956784 1103.3357
+210202.0666625993 3.956902 1103.316
+210203.0666627036 3.956902 1103.3555
+210204.0666628079 3.956902 1103.316
+210205.0666629123 3.9568627 1103.3357
+210206.0666630166 3.9569414 1103.2765
+210207.0666631209 3.9568627 1103.3555
+210208.0666632252 3.956902 1103.3752
+210209.0666633295 3.9568627 1103.3752
+210210.0666634338 3.9569414 1103.316
+210211.0666635381 3.9569807 1103.2765
+210212.0666636424 3.9570596 1103.3357
+210213.0666637467 3.9569807 1103.3949
+210214.066663851 3.9570596 1103.316
+210215.0666639553 3.9569807 1103.2963
+210216.0666640596 3.9569807 1103.3752
+210217.066664164 3.95702 1103.3752
+210218.0666642683 3.9569414 1103.2963
+210219.0666643726 3.95702 1103.316
+210220.0666644769 3.9571383 1103.3555
+210221.0666645812 3.9570596 1103.3555
+210222.0666646855 3.9570596 1103.316
+210223.0666647898 3.9571776 1103.3752
+210224.0666648941 3.95702 1103.3949
+210225.0666649984 3.9571776 1103.3555
+210226.0666651027 3.957099 1103.3357
+210227.066665207 3.957099 1103.2765
+210228.0666653113 3.9569807 1103.4938
+210229.0666654157 3.9571383 1103.3949
+210230.06666552 3.957217 1103.316
+210231.0666656243 3.957217 1103.3949
+210232.0666657286 3.9571383 1103.2369
+210233.0666658329 3.9570596 1103.3752
+210234.0666659372 3.957217 1103.2765
+210235.0666660415 3.9571776 1103.2765
+210236.0666661458 3.9571383 1103.4542
+210237.0666662501 3.9572957 1103.3357
+210238.0666663544 3.9571776 1103.3752
+210239.0666664587 3.9572563 1103.3949
+210240.066666563 3.957335 1103.3555
+210241.0666666674 3.9572563 1103.3555
+210242.0666667717 3.9572957 1103.4147
+210243.066666876 3.9572563 1103.4344
+210244.0666669803 3.9572563 1103.3752
+210245.0666670846 3.957335 1103.3555
+210246.0666671889 3.9573746 1103.4147
+210247.0666672932 3.9572957 1103.3949
+210248.0666673975 3.9574533 1103.3752
+210249.0666675018 3.9573746 1103.2765
+210250.0666676061 3.9573746 1103.2963
+210251.0666677104 3.9573746 1103.3555
+210252.0666678147 3.9574139 1103.4147
+210253.066667919 3.9573746 1103.3752
+210254.0666680234 3.9574139 1103.2369
+210255.0666681277 3.9574926 1103.316
+210256.066668232 3.9574926 1103.3555
+210257.0666683363 3.9574533 1103.3555
+210258.0666684406 3.9574533 1103.4344
+210259.0666685449 3.9574139 1103.3949
+210260.0666686492 3.9574533 1103.3949
+210261.0666687535 3.9574139 1103.2567
+210262.0666688578 3.9575713 1103.4147
+210263.0666689621 3.9575713 1103.3555
+210264.0666690664 3.9574533 1103.2567
+210265.0666691707 3.9575319 1103.316
+210266.0666692751 3.9575713 1103.3752
+210267.0666693794 3.9576499 1103.316
+210268.0666694837 3.9576106 1103.2765
+210269.066669588 3.9575713 1103.3555
+210270.0666696923 3.9575713 1103.2765
+210271.0666697966 3.9575713 1103.3357
+210272.0666699009 3.9575713 1103.3949
+210273.0666700052 3.9575713 1103.2765
+210274.0666701095 3.9576106 1103.3752
+210275.0666702138 3.9576895 1103.3949
+210276.0666703181 3.9575319 1103.3555
+210277.0666704224 3.9577289 1103.2765
+210278.0666705268 3.9577289 1103.3752
+210279.0666706311 3.9577682 1103.4147
+210280.0666707354 3.9576106 1103.3752
+210281.0666708397 3.9576499 1103.3752
+210282.066670944 3.9577289 1103.2963
+210283.0666710483 3.9576499 1103.3752
+210284.0666711526 3.9578075 1103.4147
+210285.0666712569 3.9578075 1103.3949
+210286.0666713612 3.9577682 1103.3555
+210287.0666714655 3.9579256 1103.3357
+210288.0666715698 3.9578075 1103.2369
+210289.0666716741 3.9578075 1103.2963
+210290.0666717784 3.9578075 1103.2963
+210291.0666718828 3.9578469 1103.3357
+210292.0666719871 3.9578075 1103.3752
+210293.0666720914 3.9578469 1103.3752
+210294.0666721957 3.9577682 1103.316
+210295.0666723 3.9578075 1103.3949
+210296.0666724043 3.9578075 1103.3357
+210297.0666725086 3.9578469 1103.2765
+210298.0666726129 3.9578862 1103.2963
+210299.0666727172 3.9579256 1103.2963
+210300.0666728215 3.9579651 1103.316
+210301.0666729258 3.9579256 1103.2765
+210302.0666730301 3.9579651 1103.3357
+210303.0666731345 3.9579256 1103.2963
+210304.0666732388 3.9579651 1103.4344
+210305.0666733431 3.9580438 1103.3357
+210306.0666734474 3.9579651 1103.4147
+210307.0666735517 3.9580045 1103.316
+210308.066673656 3.9580438 1103.316
+210309.0666737603 3.9579256 1103.3752
+210310.0666738646 3.9579651 1103.3357
+210311.0666739689 3.9580045 1103.4344
+210312.0666740732 3.9580438 1103.3752
+210313.0666741775 3.9580045 1103.2567
+210314.0666742818 3.9580438 1103.3752
+210315.0666743862 3.9580438 1103.3949
+210316.0666744905 3.9581225 1103.2963
+210317.0666745948 3.9582012 1103.3752
+210318.0666746991 3.9580438 1103.3357
+210319.0666748034 3.9581225 1103.3555
+210320.0666749077 3.9580832 1103.4147
+210321.066675012 3.9581618 1103.3555
+210322.0666751163 3.9581618 1103.3752
+210323.0666752206 3.9581618 1103.2963
+210324.0666753249 3.9581618 1103.3752
+210325.0666754292 3.9581225 1103.3949
+210326.0666755335 3.9580832 1103.3357
+210327.0666756378 3.9581618 1103.3555
+210328.0666757422 3.9582012 1103.3555
+210329.0666758465 3.9582012 1103.316
+210330.0666759508 3.9582801 1103.3357
+210331.0666760551 3.9582012 1103.2963
+210332.0666761594 3.9581618 1103.3555
+210333.0666762637 3.9582801 1103.2963
+210334.066676368 3.9582801 1103.2963
+210335.0666764723 3.9583981 1103.474
+210336.0666765766 3.9583194 1103.4147
+210337.0666766809 3.9583981 1103.3555
+210338.0666767852 3.9583194 1103.3752
+210339.0666768895 3.9583981 1103.3555
+210340.0666769939 3.9583588 1103.2765
+210341.0666770982 3.9583588 1103.3357
+210342.0666772025 3.9583588 1103.4147
+210343.0666773068 3.9584374 1103.3555
+210344.0666774111 3.9583194 1103.2963
+210345.0666775154 3.9583981 1103.3752
+210346.0666776197 3.9583194 1103.3752
+210347.066677724 3.9583981 1103.3357
+210348.0666778283 3.9585161 1103.2963
+210349.0666779326 3.9584374 1103.2963
+210350.0666780369 3.9584768 1103.3357
+210351.0666781412 3.9584374 1103.3555
+210352.0666782456 3.9584374 1103.316
+210353.0666783499 3.9585161 1103.3357
+210354.0666784542 3.9585161 1103.316
+210355.0666785585 3.9584374 1103.474
+210356.0666786628 3.9585161 1103.4147
+210357.0666787671 3.9584768 1103.316
+210358.0666788714 3.958595 1103.2765
+210359.0666789757 3.9585555 1103.4147
+210360.06667908 3.958595 1103.2765
+210361.0666791843 3.9584768 1103.3752
+210362.0666792886 3.9584374 1103.3752
+210363.0666793929 3.9586344 1103.3357
+210364.0666794972 3.958595 1103.2963
+210365.0666796016 3.9586344 1103.2963
+210366.0666797059 3.9586737 1103.316
+210367.0666798102 3.9586737 1103.3752
+210368.0666799145 3.9587131 1103.3949
+210369.0666800188 3.9587917 1103.316
+210370.0666801231 3.9587131 1103.2963
+210371.0666802274 3.9586737 1103.2765
+210372.0666803317 3.9586737 1103.2567
+210373.066680436 3.9587524 1103.2963
+210374.0666805403 3.9587524 1103.3752
+210375.0666806446 3.9587524 1103.3949
+210376.0666807489 3.9587524 1103.2765
+210377.0666808533 3.9587524 1103.3752
+210378.0666809576 3.9588311 1103.3357
+210379.0666810619 3.9587524 1103.3752
+210380.0666811662 3.9588311 1103.3555
+210381.0666812705 3.9587917 1103.3357
+210382.0666813748 3.9588704 1103.316
+210383.0666814791 3.9587917 1103.3752
+210384.0666815834 3.9588311 1103.2172
+210385.0666816877 3.9588704 1103.4147
+210386.066681792 3.9588704 1103.2369
+210387.0666818963 3.9588704 1103.4147
+210388.0666820006 3.9589493 1103.3752
+210389.066682105 3.9588311 1103.3357
+210390.0666822093 3.95891 1103.2765
+210391.0666823136 3.9588704 1103.3357
+210392.0666824179 3.95891 1103.3949
+210393.0666825222 3.9589493 1103.3357
+210394.0666826265 3.959028 1103.2765
+210395.0666827308 3.9589887 1103.4542
+210396.0666828351 3.95891 1103.3949
+210397.0666829394 3.9589887 1103.2963
+210398.0666830437 3.9588311 1103.3555
+210399.066683148 3.959028 1103.3949
+210400.0666832523 3.95891 1103.3752
+210401.0666833567 3.959028 1103.2765
+210402.066683461 3.959028 1103.3949
+210403.0666835653 3.9591067 1103.3357
+210404.0666836696 3.959028 1103.3357
+210405.0666837739 3.9591067 1103.316
+210406.0666838782 3.959146 1103.3949
+210407.0666839825 3.9589887 1103.3949
+210408.0666840868 3.959028 1103.3357
+210409.0666841911 3.9589887 1103.3752
+210410.0666842954 3.959146 1103.4147
+210411.0666843997 3.959028 1103.3949
+210412.066684504 3.959028 1103.3752
+210413.0666846083 3.9590673 1103.3555
+210414.0666847127 3.959146 1103.3949
+210415.066684817 3.9591067 1103.316
+210416.0666849213 3.9592249 1103.3555
+210417.0666850256 3.9591854 1103.3949
+210418.0666851299 3.9592249 1103.316
+210419.0666852342 3.9593036 1103.3949
+210420.0666853385 3.9591854 1103.4147
+210421.0666854428 3.9592249 1103.3752
+210422.0666855471 3.9591854 1103.3949
+210423.0666856514 3.9592643 1103.4147
+210424.0666857557 3.9592643 1103.4147
+210425.06668586 3.9593036 1103.316
+210426.0666859644 3.9591854 1103.3752
+210427.0666860687 3.9592643 1103.3555
+210428.066686173 3.9593823 1103.3555
+210429.0666862773 3.9593036 1103.3949
+210430.0666863816 3.9593823 1103.2963
+210431.0666864859 3.9593823 1103.2369
+210432.0666865902 3.9593823 1103.4147
+210433.0666866945 3.9593036 1103.4344
+210434.0666867988 3.959461 1103.2963
+210435.0666869031 3.959461 1103.3357
+210436.0666870074 3.9593036 1103.3949
+210437.0666871117 3.9594216 1103.2963
+210438.0666872161 3.959343 1103.4542
+210439.0666873204 3.959461 1103.3752
+210440.0666874247 3.959461 1103.3555
+210441.066687529 3.959461 1103.3752
+210442.0666876333 3.9595792 1103.3555
+210443.0666877376 3.9595399 1103.4147
+210444.0666878419 3.959461 1103.2963
+210445.0666879462 3.9595399 1103.3752
+210446.0666880505 3.959461 1103.3752
+210447.0666881548 3.9595399 1103.3752
+210448.0666882591 3.959461 1103.3357
+210449.0666883634 3.9595003 1103.3555
+210450.0666884677 3.9596186 1103.4147
+210451.0666885721 3.9594216 1103.3357
+210452.0666886764 3.9595792 1103.3752
+210453.0666887807 3.9596186 1103.3555
+210454.066688885 3.9595792 1103.3357
+210455.0666889893 3.9596186 1103.3752
+210456.0666890936 3.9595399 1103.3752
+210457.0666891979 3.9597366 1103.2567
+210458.0666893022 3.9597366 1103.316
+210459.0666894065 3.9596579 1103.2963
+210460.0666895108 3.9596186 1103.4344
+210461.0666896151 3.9598548 1103.316
+210462.0666897194 3.9597366 1103.3357
+210463.0666898238 3.9597366 1103.3555
+210464.0666899281 3.9596972 1103.4344
+210465.0666900324 3.9596972 1103.3752
+210466.0666901367 3.9597366 1103.3357
+210467.066690241 3.9596972 1103.3555
+210468.0666903453 3.9598155 1103.4147
+210469.0666904496 3.9596579 1103.3949
+210470.0666905539 3.9598155 1103.3949
+210471.0666906582 3.9598548 1103.2963
+210472.0666907625 3.9597366 1103.2963
+210473.0666908668 3.9597759 1103.3357
+210474.0666909711 3.9598942 1103.316
+210475.0666910755 3.9598155 1103.3555
+210476.0666911798 3.9598548 1103.3555
+210477.0666912841 3.9599335 1103.316
+210478.0666913884 3.9598548 1103.3357
+210479.0666914927 3.9599335 1103.2963
+210480.066691597 3.9598942 1103.3555
+210481.0666917013 3.9600122 1103.4147
+210482.0666918056 3.9598942 1103.3949
+210483.0666919099 3.9598155 1103.3949
+210484.0666920142 3.9598942 1103.4344
+210485.0666921185 3.9600515 1103.4147
+210486.0666922228 3.9599335 1103.3949
+210487.0666923271 3.9599729 1103.4542
+210488.0666924315 3.9600515 1103.2567
+210489.0666925358 3.9599729 1103.3555
+210490.0666926401 3.9600515 1103.3752
+210491.0666927444 3.9600122 1103.3752
+210492.0666928487 3.9600515 1103.2765
+210493.066692953 3.9601305 1103.316
+210494.0666930573 3.9600515 1103.316
+210495.0666931616 3.9601305 1103.4147
+210496.0666932659 3.9600909 1103.3357
+210497.0666933702 3.9600515 1103.4147
+210498.0666934745 3.9601305 1103.3357
+210499.0666935788 3.9601305 1103.3752
+210500.0666936832 3.9601698 1103.4147
+210501.0666937875 3.9602485 1103.3752
+210502.0666938918 3.9600909 1103.316
+210503.0666939961 3.9601698 1103.2765
+210504.0666941004 3.9601698 1103.4147
+210505.0666942047 3.9601698 1103.316
+210506.066694309 3.9601698 1103.2765
+210507.0666944133 3.9601305 1103.2963
+210508.0666945176 3.9602091 1103.316
+210509.0666946219 3.9602091 1103.4542
+210510.0666947262 3.9602485 1103.3555
+210511.0666948305 3.9602091 1103.2765
+210512.0666949349 3.9602485 1103.4147
+210513.0666950392 3.9602091 1103.2765
+210514.0666951435 3.9603271 1103.2765
+210515.0666952478 3.9603665 1103.3752
+210516.0666953521 3.9601698 1103.316
+210517.0666954564 3.9602485 1103.3555
+210518.0666955607 3.9603271 1103.1777
+210519.066695665 3.9604058 1103.3555
+210520.0666957693 3.9603271 1103.2963
+210521.0666958736 3.9602878 1103.3949
+210522.0666959779 3.9604454 1103.3752
+210523.0666960822 3.9603665 1103.3357
+210524.0666961866 3.9604058 1103.474
+210525.0666962909 3.9603665 1103.316
+210526.0666963952 3.9604454 1103.3555
+210527.0666964995 3.9604454 1103.3752
+210528.0666966038 3.9605634 1103.316
+210529.0666967081 3.9604847 1103.3555
+210530.0666968124 3.9604847 1103.3357
+210531.0666969167 3.9606028 1103.4344
+210532.066697021 3.9603665 1103.3555
+210533.0666971253 3.9604847 1103.3949
+210534.0666972296 3.9605241 1103.2369
+210535.0666973339 3.9605634 1103.316
+210536.0666974382 3.9604847 1103.3752
+210537.0666975426 3.9605241 1103.3555
+210538.0666976469 3.9604847 1103.3752
+210539.0666977512 3.9606421 1103.3555
+210540.0666978555 3.9605634 1103.3949
+210541.0666979598 3.9604847 1103.3949
+210542.0666980641 3.9605634 1103.3555
+210543.0666981684 3.9605241 1103.4147
+210544.0666982727 3.9606028 1103.2765
+210545.066698377 3.9606028 1103.3357
+210546.0666984813 3.9606814 1103.2172
+210547.0666985856 3.9606421 1103.3357
+210548.0666986899 3.9606421 1103.3752
+210549.0666987943 3.9607208 1103.3752
+210550.0666988986 3.9606421 1103.3357
+210551.0666990029 3.9607208 1103.4147
+210552.0666991072 3.960839 1103.3555
+210553.0666992115 3.9607208 1103.3752
+210554.0666993158 3.9607208 1103.3949
+210555.0666994201 3.9607997 1103.3752
+210556.0666995244 3.9607604 1103.2567
+210557.0666996287 3.9607997 1103.3949
+210558.066699733 3.9607997 1103.2765
+210559.0666998373 3.9607997 1103.2567
+210560.0666999416 3.9607997 1103.3357
+210561.066700046 3.9607997 1103.2963
+210562.0667001503 3.9607997 1103.316
+210563.0667002546 3.9609177 1103.3555
+210564.0667003589 3.9607604 1103.2765
+210565.0667004632 3.9609177 1103.4147
+210566.0667005675 3.9609964 1103.3949
+210567.0667006718 3.960839 1103.3555
+210568.0667007761 3.9608784 1103.316
+210569.0667008804 3.9608784 1103.3357
+210570.0667009847 3.9609177 1103.3752
+210571.066701089 3.9609964 1103.2369
+210572.0667011933 3.9610357 1103.2765
+210573.0667012976 3.9609177 1103.2963
+210574.066701402 3.9609571 1103.3555
+210575.0667015063 3.9610357 1103.3555
+210576.0667016106 3.9609177 1103.4147
+210577.0667017149 3.9610753 1103.4344
+210578.0667018192 3.9610753 1103.3752
+210579.0667019235 3.9610357 1103.2765
+210580.0667020278 3.9609571 1103.3555
+210581.0667021321 3.9609177 1103.3555
+210582.0667022364 3.9610753 1103.2963
+210583.0667023407 3.9611146 1103.2765
+210584.066702445 3.9611146 1103.3949
+210585.0667025493 3.9612327 1103.4147
+210586.0667026537 3.9609964 1103.4147
+210587.066702758 3.961154 1103.3357
+210588.0667028623 3.9611146 1103.3555
+210589.0667029666 3.961154 1103.3555
+210590.0667030709 3.961154 1103.2765
+210591.0667031752 3.9612327 1103.2963
+210592.0667032795 3.9611933 1103.316
+210593.0667033838 3.961272 1103.3357
+210594.0667034881 3.9612327 1103.3949
+210595.0667035924 3.9611933 1103.3555
+210596.0667036967 3.9611146 1103.3752
+210597.066703801 3.9612327 1103.3555
+210598.0667039054 3.9613507 1103.3555
+210599.0667040097 3.9612327 1103.3949
+210600.066704114 3.9612327 1103.3357
+210601.0667042183 3.961272 1103.3555
+210602.0667043226 3.9613113 1103.3949
+210603.0667044269 3.9613113 1103.3357
+210604.0667045312 3.9613113 1103.3357
+210605.0667046355 3.961272 1103.3752
+210606.0667047398 3.9613113 1103.4147
+210607.0667048441 3.961272 1103.3357
+210608.0667049484 3.9613507 1103.316
+210609.0667050527 3.9613903 1103.2963
+210610.066705157 3.961272 1103.2765
+210611.0667052614 3.9614296 1103.3555
+210612.0667053657 3.9614296 1103.3752
+210613.06670547 3.9613507 1103.3555
+210614.0667055743 3.9614296 1103.3357
+210615.0667056786 3.9613507 1103.4147
+210616.0667057829 3.9614689 1103.3555
+210617.0667058872 3.9613903 1103.3752
+210618.0667059915 3.9614296 1103.316
+210619.0667060958 3.9614689 1103.316
+210620.0667062001 3.9615083 1103.3555
+210621.0667063044 3.9616263 1103.3555
+210622.0667064087 3.9614689 1103.3357
+210623.0667065131 3.9615083 1103.316
+210624.0667066174 3.961587 1103.2765
+210625.0667067217 3.9616263 1103.3357
+210626.066706826 3.9616263 1103.3357
+210627.0667069303 3.9616263 1103.3752
+210628.0667070346 3.961587 1103.3949
+210629.0667071389 3.9615476 1103.4542
+210630.0667072432 3.9616659 1103.4542
+210631.0667073475 3.9616263 1103.2963
+210632.0667074518 3.9616263 1103.3555
+210633.0667075561 3.9616263 1103.3555
+210634.0667076604 3.9616263 1103.3357
+210635.0667077648 3.9617052 1103.3357
+210636.0667078691 3.9617052 1103.3555
+210637.0667079734 3.9616659 1103.3555
+210638.0667080777 3.9617052 1103.3752
+210639.066708182 3.9617052 1103.3752
+210640.0667082863 3.9617445 1103.3357
+210641.0667083906 3.9618232 1103.316
+210642.0667084949 3.9617445 1103.3752
+210643.0667085992 3.9617839 1103.3949
+210644.0667087035 3.9618626 1103.2567
+210645.0667088078 3.9617052 1103.3949
+210646.0667089121 3.9617445 1103.316
+210647.0667090165 3.9618232 1103.3949
+210648.0667091208 3.9619412 1103.3752
+210649.0667092251 3.9617839 1103.3357
+210650.0667093294 3.9618232 1103.2963
+210651.0667094337 3.9618232 1103.316
+210652.066709538 3.9617839 1103.3555
+210653.0667096423 3.9618626 1103.3752
+210654.0667097466 3.9618232 1103.3357
+210655.0667098509 3.9618232 1103.3357
+210656.0667099552 3.9618232 1103.4147
+210657.0667100595 3.9619808 1103.3752
+210658.0667101638 3.9619412 1103.3949
+210659.0667102681 3.9619412 1103.3357
+210660.0667103725 3.9619412 1103.2765
+210661.0667104768 3.9619808 1103.3752
+210662.0667105811 3.9620595 1103.3555
+210663.0667106854 3.9619808 1103.4147
+210664.0667107897 3.9620988 1103.3357
+210665.066710894 3.9620595 1103.4542
+210666.0667109983 3.9620595 1103.3752
+210667.0667111026 3.9620595 1103.2963
+210668.0667112069 3.9620202 1103.2963
+210669.0667113112 3.9620988 1103.316
+210670.0667114155 3.9620595 1103.3357
+210671.0667115198 3.9620988 1103.3752
+210672.0667116242 3.9620202 1103.3949
+210673.0667117285 3.9621382 1103.3555
+210674.0667118328 3.9620988 1103.316
+210675.0667119371 3.9620988 1103.3752
+210676.0667120414 3.9621775 1103.3555
+210677.0667121457 3.9620988 1103.4147
+210678.06671225 3.9621382 1103.3752
+210679.0667123543 3.9622169 1103.3949
+210680.0667124586 3.9622562 1103.3949
+210681.0667125629 3.9621382 1103.4147
+210682.0667126672 3.9621775 1103.2963
+210683.0667127715 3.9622169 1103.2963
+210684.0667128759 3.9622169 1103.3555
+210685.0667129802 3.9621775 1103.2765
+210686.0667130845 3.9622169 1103.316
+210687.0667131888 3.9621775 1103.3357
+210688.0667132931 3.9622562 1103.3357
+210689.0667133974 3.9622958 1103.3752
+210690.0667135017 3.9622958 1103.3949
+210691.066713606 3.9623351 1103.3555
+210692.0667137103 3.9622958 1103.2963
+210693.0667138146 3.9622958 1103.3949
+210694.0667139189 3.9623351 1103.3752
+210695.0667140232 3.9622958 1103.3949
+210696.0667141275 3.9622958 1103.3555
+210697.0667142319 3.9623744 1103.3357
+210698.0667143362 3.9623744 1103.316
+210699.0667144405 3.9624138 1103.3357
+210700.0667145448 3.9624925 1103.3357
+210701.0667146491 3.9623744 1103.3357
+210702.0667147534 3.9623744 1103.4147
+210703.0667148577 3.9624531 1103.3752
+210704.066714962 3.9624925 1103.4147
+210705.0667150663 3.9625318 1103.3357
+210706.0667151706 3.9624138 1103.3357
+210707.0667152749 3.9625318 1103.3555
+210708.0667153792 3.9625711 1103.3357
+210709.0667154836 3.9624531 1103.3357
+210710.0667155879 3.9624138 1103.3357
+210711.0667156922 3.9624531 1103.3949
+210712.0667157965 3.9626107 1103.2567
+210713.0667159008 3.9626501 1103.316
+210714.0667160051 3.9625711 1103.3555
+210715.0667161094 3.9624925 1103.3752
+210716.0667162137 3.9625318 1103.4344
+210717.066716318 3.9626107 1103.4542
+210718.0667164223 3.9626894 1103.3752
+210719.0667165266 3.9625711 1103.3555
+210720.0667166309 3.9625711 1103.4147
+210721.0667167353 3.9626107 1103.3357
+210722.0667168396 3.9627287 1103.3752
+210723.0667169439 3.9627287 1103.2765
+210724.0667170482 3.9626501 1103.4542
+210725.0667171525 3.9626501 1103.2963
+210726.0667172568 3.9628074 1103.3555
+210727.0667173611 3.9627287 1103.3357
+210728.0667174654 3.9627681 1103.3949
+210729.0667175697 3.9627681 1103.3357
+210730.066717674 3.9627681 1103.3752
+210731.0667177783 3.9627681 1103.3357
+210732.0667178826 3.9628074 1103.3949
+210733.0667179869 3.9627681 1103.3949
+210734.0667180913 3.9628074 1103.3752
+210735.0667181956 3.9628861 1103.3555
+210736.0667182999 3.9627681 1103.3357
+210737.0667184042 3.9629257 1103.3555
+210738.0667185085 3.9628468 1103.316
+210739.0667186128 3.9628861 1103.2765
+210740.0667187171 3.9628861 1103.3949
+210741.0667188214 3.9628074 1103.3357
+210742.0667189257 3.9629257 1103.3555
+210743.06671903 3.9628468 1103.3752
+210744.0667191343 3.962965 1103.3752
+210745.0667192386 3.962965 1103.3555
+210746.066719343 3.962965 1103.316
+210747.0667194473 3.9629257 1103.2369
+210748.0667195516 3.962965 1103.3357
+210749.0667196559 3.9628861 1103.3752
+210750.0667197602 3.9629257 1103.4344
+210751.0667198645 3.9630437 1103.2765
+210752.0667199688 3.9631224 1103.3752
+210753.0667200731 3.9631224 1103.2172
+210754.0667201774 3.963083 1103.3357
+210755.0667202817 3.9630044 1103.3752
+210756.066720386 3.9630044 1103.3949
+210757.0667204903 3.9630437 1103.2765
+210758.0667205947 3.9630044 1103.2369
+210759.066720699 3.9631617 1103.3949
+210760.0667208033 3.963083 1103.316
+210761.0667209076 3.9631224 1103.2963
+210762.0667210119 3.9631224 1103.316
+210763.0667211162 3.963083 1103.3555
+210764.0667212205 3.9631224 1103.2369
+210765.0667213248 3.9632013 1103.316
+210766.0667214291 3.9631224 1103.4147
+210767.0667215334 3.9631617 1103.2963
+210768.0667216377 3.9632406 1103.2765
+210769.066721742 3.9632406 1103.3357
+210770.0667218464 3.9631617 1103.3752
+210771.0667219507 3.9632013 1103.316
+210772.066722055 3.9631617 1103.2369
+210773.0667221593 3.96328 1103.316
+210774.0667222636 3.9632406 1103.3752
+210775.0667223679 3.96328 1103.316
+210776.0667224722 3.96328 1103.2567
+210777.0667225765 3.9633193 1103.3752
+210778.0667226808 3.963398 1103.316
+210779.0667227851 3.963398 1103.4542
+210780.0667228894 3.9633193 1103.3949
+210781.0667229937 3.963398 1103.316
+210782.066723098 3.9633193 1103.2963
+210783.0667232024 3.9633586 1103.316
+210784.0667233067 3.963398 1103.316
+210785.066723411 3.963398 1103.3949
+210786.0667235153 3.9633586 1103.3752
+210787.0667236196 3.9634767 1103.4542
+210788.0667237239 3.963398 1103.3555
+210789.0667238282 3.9634373 1103.316
+210790.0667239325 3.9634767 1103.3752
+210791.0667240368 3.9635556 1103.4147
+210792.0667241411 3.963398 1103.2765
+210793.0667242454 3.9634373 1103.316
+210794.0667243497 3.9635162 1103.3949
+210795.0667244541 3.9635162 1103.3555
+210796.0667245584 3.9634767 1103.3357
+210797.0667246627 3.9634373 1103.4542
+210798.066724767 3.9634767 1103.4147
+210799.0667248713 3.9635162 1103.3949
+210800.0667249756 3.9635162 1103.2963
+210801.0667250799 3.9636343 1103.316
+210802.0667251842 3.9635949 1103.4147
+210803.0667252885 3.9635949 1103.3752
+210804.0667253928 3.9635949 1103.3357
+210805.0667254971 3.9635949 1103.3555
+210806.0667256014 3.9636736 1103.316
+210807.0667257058 3.9636736 1103.2765
+210808.0667258101 3.9637129 1103.3357
+210809.0667259144 3.9637129 1103.3949
+210810.0667260187 3.9637916 1103.3752
+210811.066726123 3.9636343 1103.2765
+210812.0667262273 3.9637523 1103.3752
+210813.0667263316 3.9637523 1103.3357
+210814.0667264359 3.9637523 1103.2963
+210815.0667265402 3.9635949 1103.2765
+210816.0667266445 3.9636736 1103.4344
+210817.0667267488 3.9637129 1103.3357
+210818.0667268531 3.9636736 1103.2765
+210819.0667269574 3.9637916 1103.3357
+210820.0667270618 3.9638312 1103.2765
+210821.0667271661 3.9638312 1103.2765
+210822.0667272704 3.9638705 1103.3949
+210823.0667273747 3.9638705 1103.3949
+210824.066727479 3.9639099 1103.3555
+210825.0667275833 3.9638312 1103.3949
+210826.0667276876 3.9638312 1103.316
+210827.0667277919 3.9639885 1103.3949
+210828.0667278962 3.9637916 1103.3752
+210829.0667280005 3.9639099 1103.2963
+210830.0667281048 3.9639099 1103.4542
+210831.0667282091 3.9639492 1103.316
+210832.0667283135 3.9639885 1103.3357
+210833.0667284178 3.9639099 1103.3949
+210834.0667285221 3.9639492 1103.316
+210835.0667286264 3.9639099 1103.316
+210836.0667287307 3.9639492 1103.3752
+210837.066728835 3.9640672 1103.3949
+210838.0667289393 3.9639885 1103.3555
+210839.0667290436 3.9639885 1103.3555
+210840.0667291479 3.9639885 1103.3752
+210841.0667292522 3.9640279 1103.2765
+210842.0667293565 3.9639885 1103.3555
+210843.0667294608 3.9640672 1103.3357
+210844.0667295652 3.9641066 1103.2765
+210845.0667296695 3.9641066 1103.2765
+210846.0667297738 3.9641461 1103.3555
+210847.0667298781 3.9640672 1103.3357
+210848.0667299824 3.9640672 1103.2567
+210849.0667300867 3.9641066 1103.316
+210850.066730191 3.9640672 1103.2567
+210851.0667302953 3.9641855 1103.3357
+210852.0667303996 3.9642248 1103.3949
+210853.0667305039 3.9641461 1103.3357
+210854.0667306082 3.9641461 1103.3752
+210855.0667307125 3.9643035 1103.3752
+210856.0667308168 3.9642248 1103.3357
+210857.0667309212 3.9642642 1103.316
+210858.0667310255 3.9642642 1103.3555
+210859.0667311298 3.9643035 1103.2765
+210860.0667312341 3.9643035 1103.2963
+210861.0667313384 3.9643035 1103.2963
+210862.0667314427 3.9642642 1103.3555
+210863.066731547 3.9643035 1103.3357
+210864.0667316513 3.9643428 1103.3555
+210865.0667317556 3.9643035 1103.3357
+210866.0667318599 3.9643822 1103.3752
+210867.0667319642 3.9643428 1103.3949
+210868.0667320685 3.9643428 1103.3752
+210869.0667321729 3.9643822 1103.316
+210870.0667322772 3.9644215 1103.3752
+210871.0667323815 3.9643428 1103.3949
+210872.0667324858 3.9643035 1103.3555
+210873.0667325901 3.9644215 1103.2963
+210874.0667326944 3.9643822 1103.2765
+210875.0667327987 3.9643822 1103.2765
+210876.066732903 3.9645004 1103.4344
+210877.0667330073 3.9644215 1103.2963
+210878.0667331116 3.9645398 1103.2567
+210879.0667332159 3.9644611 1103.3949
+210880.0667333202 3.9645398 1103.3752
+210881.0667334246 3.9644215 1103.3752
+210882.0667335289 3.9644611 1103.3949
+210883.0667336332 3.9645004 1103.316
+210884.0667337375 3.9644611 1103.316
+210885.0667338418 3.9645004 1103.3555
+210886.0667339461 3.9645791 1103.3357
+210887.0667340504 3.9646578 1103.3752
+210888.0667341547 3.9645791 1103.3555
+210889.066734259 3.9646184 1103.3555
+210890.0667343633 3.9646184 1103.316
+210891.0667344676 3.9646578 1103.2765
+210892.0667345719 3.9646578 1103.3555
+210893.0667346762 3.9646184 1103.3949
+210894.0667347806 3.9645791 1103.3357
+210895.0667348849 3.9646578 1103.3752
+210896.0667349892 3.9646971 1103.3357
+210897.0667350935 3.9645791 1103.3555
+210898.0667351978 3.964776 1103.3752
+210899.0667353021 3.9646971 1103.3949
+210900.0667354064 3.9647365 1103.2567
+210901.0667355107 3.9647365 1103.3357
+210902.066735615 3.9646971 1103.3555
+210903.0667357193 3.9648941 1103.3357
+210904.0667358236 3.964776 1103.3752
+210905.0667359279 3.9648547 1103.2567
+210906.0667360323 3.964776 1103.2963
+210907.0667361366 3.9648547 1103.3752
+210908.0667362409 3.9648547 1103.2567
+210909.0667363452 3.9649334 1103.2369
+210910.0667364495 3.9648547 1103.3555
+210911.0667365538 3.9647365 1103.3752
+210912.0667366581 3.9648547 1103.2765
+210913.0667367624 3.9648941 1103.3752
+210914.0667368667 3.9649727 1103.3752
+210915.066736971 3.9649727 1103.2765
+210916.0667370753 3.9649334 1103.3357
+210917.0667371796 3.9649727 1103.3357
+210918.066737284 3.9648547 1103.316
+210919.0667373883 3.9650121 1103.2369
+210920.0667374926 3.9650121 1103.3357
+210921.0667375969 3.9649727 1103.3357
+210922.0667377012 3.9650121 1103.4147
+210923.0667378055 3.9649334 1103.3949
+210924.0667379098 3.9650121 1103.3949
+210925.0667380141 3.9650121 1103.316
+210926.0667381184 3.9650121 1103.316
+210927.0667382227 3.9650517 1103.3555
+210928.066738327 3.9650517 1103.3357
+210929.0667384313 3.9650517 1103.2963
+210930.0667385357 3.9650121 1103.4147
+210931.06673864 3.965091 1103.3357
+210932.0667387443 3.965091 1103.3752
+210933.0667388486 3.9652483 1103.3357
+210934.0667389529 3.965209 1103.4147
+210935.0667390572 3.9651303 1103.3555
+210936.0667391615 3.9651697 1103.2765
+210937.0667392658 3.9652877 1103.316
+210938.0667393701 3.9652483 1103.3555
+210939.0667394744 3.9651697 1103.3949
+210940.0667395787 3.9651697 1103.2369
+210941.066739683 3.9652483 1103.3949
+210942.0667397873 3.9652877 1103.3555
+210943.0667398917 3.965209 1103.3555
+210944.066739996 3.9652483 1103.3949
+210945.0667401003 3.9652483 1103.2963
+210946.0667402046 3.9652483 1103.3949
+210947.0667403089 3.9652483 1103.3752
+210948.0667404132 3.9654059 1103.3555
+210949.0667405175 3.9652483 1103.316
+210950.0667406218 3.9653666 1103.2963
+210951.0667407261 3.965327 1103.316
+210952.0667408304 3.9652877 1103.3949
+210953.0667409347 3.9653666 1103.3752
+210954.066741039 3.9653666 1103.3752
+210955.0667411434 3.9653666 1103.3949
+210956.0667412477 3.9654059 1103.3752
+210957.066741352 3.965327 1103.4147
+210958.0667414563 3.9654846 1103.2765
+210959.0667415606 3.9654059 1103.3555
+210960.0667416649 3.9654059 1103.316
+210961.0667417692 3.965524 1103.316
+210962.0667418735 3.9654453 1103.3949
+210963.0667419778 3.9654059 1103.3949
+210964.0667420821 3.965524 1103.3357
+210965.0667421864 3.9654846 1103.3752
+210966.0667422907 3.9654846 1103.2765
+210967.0667423951 3.965524 1103.4344
+210968.0667424994 3.965524 1103.4542
+210969.0667426037 3.965524 1103.3752
+210970.066742708 3.9654059 1103.4344
+210971.0667428123 3.965524 1103.3752
+210972.0667429166 3.965642 1103.316
+210973.0667430209 3.9656026 1103.4147
+210974.0667431252 3.9655633 1103.4147
+210975.0667432295 3.965642 1103.316
+210976.0667433338 3.965642 1103.3357
+210977.0667434381 3.9656026 1103.3752
+210978.0667435424 3.9655633 1103.316
+210979.0667436467 3.9656816 1103.2765
+210980.0667437511 3.9657209 1103.3357
+210981.0667438554 3.9656026 1103.3949
+210982.0667439597 3.9657209 1103.2963
+210983.066744064 3.965642 1103.3357
+210984.0667441683 3.9657209 1103.4542
+210985.0667442726 3.9656026 1103.2963
+210986.0667443769 3.9657209 1103.3357
+210987.0667444812 3.9657209 1103.4147
+210988.0667445855 3.9658389 1103.3357
+210989.0667446898 3.9657209 1103.3949
+210990.0667447941 3.9657209 1103.4147
+210991.0667448984 3.9657209 1103.3357
+210992.0667450028 3.9658389 1103.3752
+210993.0667451071 3.9658782 1103.474
+210994.0667452114 3.9657996 1103.2765
+210995.0667453157 3.9658782 1103.474
+210996.06674542 3.9658782 1103.3555
+210997.0667455243 3.9659569 1103.3555
+210998.0667456286 3.9659176 1103.2567
+210999.0667457329 3.9659176 1103.3357
+211000.0667458372 3.9658782 1103.316
+211001.0667459415 3.9659176 1103.3357
+211002.0667460458 3.9658389 1103.3752
+211003.0667461501 3.9659569 1103.316
+211004.0667462545 3.9659176 1103.3357
+211005.0667463588 3.9659569 1103.2963
+211006.0667464631 3.9659176 1103.3357
+211007.0667465674 3.9659176 1103.3555
+211008.0667466717 3.9659569 1103.3357
+211009.066746776 3.9659965 1103.2963
+211010.0667468803 3.9658782 1103.3357
+211011.0667469846 3.9660752 1103.3357
+211012.0667470889 3.9659176 1103.3357
+211013.0667471932 3.9659569 1103.3555
+211014.0667472975 3.9660358 1103.3752
+211015.0667474018 3.9660752 1103.316
+211016.0667475061 3.9660752 1103.3555
+211017.0667476105 3.9660752 1103.3357
+211018.0667477148 3.9660358 1103.3949
+211019.0667478191 3.9661539 1103.3357
+211020.0667479234 3.9662325 1103.4147
+211021.0667480277 3.9662325 1103.316
+211022.066748132 3.9661932 1103.4344
+211023.0667482363 3.9661932 1103.3357
+211024.0667483406 3.9661539 1103.4147
+211025.0667484449 3.9661932 1103.2765
+211026.0667485492 3.9662325 1103.4147
+211027.0667486535 3.9662325 1103.3555
+211028.0667487578 3.9663115 1103.3357
+211029.0667488622 3.9661539 1103.316
+211030.0667489665 3.9662325 1103.2963
+211031.0667490708 3.9662325 1103.3949
+211032.0667491751 3.9662325 1103.2963
+211033.0667492794 3.9663115 1103.2963
+211034.0667493837 3.9663115 1103.3357
+211035.066749488 3.9663115 1103.3555
+211036.0667495923 3.9662325 1103.3357
+211037.0667496966 3.9663901 1103.4147
+211038.0667498009 3.9664295 1103.4344
+211039.0667499052 3.9663115 1103.3949
+211040.0667500095 3.9664295 1103.3555
+211041.0667501139 3.9663901 1103.3555
+211042.0667502182 3.9663508 1103.316
+211043.0667503225 3.9664295 1103.316
+211044.0667504268 3.9663508 1103.2567
+211045.0667505311 3.9665082 1103.3752
+211046.0667506354 3.9665082 1103.4344
+211047.0667507397 3.9663901 1103.316
+211048.066750844 3.9664688 1103.4147
+211049.0667509483 3.9664295 1103.3357
+211050.0667510526 3.9664295 1103.4344
+211051.0667511569 3.9664295 1103.3752
+211052.0667512612 3.9664295 1103.3555
+211053.0667513656 3.9665475 1103.3357
+211054.0667514699 3.9665082 1103.3752
+211055.0667515742 3.9665475 1103.3949
+211056.0667516785 3.9666264 1103.316
+211057.0667517828 3.9665082 1103.3752
+211058.0667518871 3.9666657 1103.3752
+211059.0667519914 3.9667444 1103.4542
+211060.0667520957 3.9666264 1103.474
+211061.0667522 3.9666657 1103.316
+211062.0667523043 3.9665868 1103.2765
+211063.0667524086 3.9666264 1103.3752
+211064.0667525129 3.9666264 1103.3555
+211065.0667526172 3.9665868 1103.3752
+211066.0667527216 3.9667051 1103.3357
+211067.0667528259 3.9665868 1103.2369
+211068.0667529302 3.9666657 1103.3357
+211069.0667530345 3.9666657 1103.3752
+211070.0667531388 3.9667051 1103.3357
+211071.0667532431 3.9666657 1103.2963
+211072.0667533474 3.9667444 1103.316
+211073.0667534517 3.9668231 1103.3752
+211074.066753556 3.9667051 1103.3555
+211075.0667536603 3.9667444 1103.2963
+211076.0667537646 3.9668231 1103.2963
+211077.0667538689 3.9668231 1103.2172
+211078.0667539733 3.9669807 1103.2765
+211079.0667540776 3.966902 1103.3357
+211080.0667541819 3.9668231 1103.316
+211081.0667542862 3.9667838 1103.3949
+211082.0667543905 3.9668231 1103.3555
+211083.0667544948 3.9668624 1103.2963
+211084.0667545991 3.9668624 1103.316
+211085.0667547034 3.96702 1103.3752
+211086.0667548077 3.96702 1103.4542
+211087.066754912 3.9669807 1103.2172
+211088.0667550163 3.9668624 1103.3357
+211089.0667551206 3.96702 1103.3752
+211090.066755225 3.9669807 1103.4147
+211091.0667553293 3.9669807 1103.3949
+211092.0667554336 3.966902 1103.3357
+211093.0667555379 3.9669414 1103.2963
+211094.0667556422 3.9670594 1103.3555
+211095.0667557465 3.9670594 1103.2963
+211096.0667558508 3.9669807 1103.3752
+211097.0667559551 3.9670594 1103.2963
+211098.0667560594 3.9670594 1103.316
+211099.0667561637 3.9670594 1103.4344
+211100.066756268 3.9670987 1103.3949
+211101.0667563723 3.9670987 1103.316
+211102.0667564766 3.9671381 1103.2567
+211103.066756581 3.9671381 1103.2369
+211104.0667566853 3.9671774 1103.3555
+211105.0667567896 3.9670987 1103.316
+211106.0667568939 3.9671381 1103.3949
+211107.0667569982 3.9672563 1103.3949
+211108.0667571025 3.967217 1103.3357
+211109.0667572068 3.967217 1103.3357
+211110.0667573111 3.967217 1103.4344
+211111.0667574154 3.9671381 1103.3357
+211112.0667575197 3.9671774 1103.316
+211113.066757624 3.9670987 1103.3752
+211114.0667577283 3.967335 1103.3949
+211115.0667578327 3.9672563 1103.2963
+211116.066757937 3.9672563 1103.316
+211117.0667580413 3.9672956 1103.3357
+211118.0667581456 3.967335 1103.4147
+211119.0667582499 3.967335 1103.3357
+211120.0667583542 3.967335 1103.2963
+211121.0667584585 3.9672563 1103.4542
+211122.0667585628 3.9673743 1103.2567
+211123.0667586671 3.9672956 1103.2963
+211124.0667587714 3.9674137 1103.2963
+211125.0667588757 3.967453 1103.316
+211126.06675898 3.967335 1103.3555
+211127.0667590844 3.9674137 1103.316
+211128.0667591887 3.9674137 1103.3752
+211129.066759293 3.967453 1103.3949
+211130.0667593973 3.967453 1103.3555
+211131.0667595016 3.9674923 1103.3752
+211132.0667596059 3.9674923 1103.3949
+211133.0667597102 3.9676499 1103.3555
+211134.0667598145 3.9674923 1103.3949
+211135.0667599188 3.967453 1103.3949
+211136.0667600231 3.9676106 1103.3949
+211137.0667601274 3.9675319 1103.2567
+211138.0667602317 3.9675713 1103.3752
+211139.066760336 3.9674923 1103.3949
+211140.0667604404 3.9676106 1103.4344
+211141.0667605447 3.9675713 1103.3949
+211142.066760649 3.9676106 1103.4147
+211143.0667607533 3.9675713 1103.2963
+211144.0667608576 3.9675713 1103.3752
+211145.0667609619 3.9676499 1103.3357
+211146.0667610662 3.9676499 1103.3357
+211147.0667611705 3.9677286 1103.3752
+211148.0667612748 3.9676499 1103.3555
+211149.0667613791 3.9676499 1103.4147
+211150.0667614834 3.9676499 1103.3949
+211151.0667615877 3.9676893 1103.2765
+211152.0667616921 3.9677286 1103.2765
+211153.0667617964 3.9676893 1103.3949
+211154.0667619007 3.9676499 1103.3752
+211155.066762005 3.9677286 1103.4147
+211156.0667621093 3.9677286 1103.2765
+211157.0667622136 3.9677286 1103.3357
+211158.0667623179 3.9678073 1103.3555
+211159.0667624222 3.967768 1103.3357
+211160.0667625265 3.9676893 1103.3752
+211161.0667626308 3.9678862 1103.3949
+211162.0667627351 3.967768 1103.2369
+211163.0667628394 3.9678862 1103.2963
+211164.0667629438 3.9678073 1103.3555
+211165.0667630481 3.9678862 1103.2963
+211166.0667631524 3.9678469 1103.2963
+211167.0667632567 3.9678862 1103.3752
+211168.066763361 3.9678073 1103.4147
+211169.0667634653 3.9679255 1103.3357
+211170.0667635696 3.9678073 1103.3752
+211171.0667636739 3.9679255 1103.3949
+211172.0667637782 3.9679255 1103.2963
+211173.0667638825 3.9678862 1103.316
+211174.0667639868 3.9678073 1103.3752
+211175.0667640911 3.9680042 1103.2963
+211176.0667641955 3.9679649 1103.3357
+211177.0667642998 3.9679649 1103.3357
+211178.0667644041 3.9679255 1103.316
+211179.0667645084 3.9680436 1103.3357
+211180.0667646127 3.9680436 1103.2963
+211181.066764717 3.9679255 1103.3555
+211182.0667648213 3.9680829 1103.3357
+211183.0667649256 3.9679255 1103.3752
+211184.0667650299 3.9680042 1103.3752
+211185.0667651342 3.9680829 1103.474
+211186.0667652385 3.9681618 1103.4344
+211187.0667653428 3.9680829 1103.3949
+211188.0667654471 3.9680829 1103.3752
+211189.0667655515 3.9681618 1103.3357
+211190.0667656558 3.9680829 1103.3357
+211191.0667657601 3.9683192 1103.4344
+211192.0667658644 3.9680829 1103.316
+211193.0667659687 3.9681222 1103.3555
+211194.066766073 3.9682012 1103.316
+211195.0667661773 3.9683192 1103.316
+211196.0667662816 3.9682798 1103.3949
+211197.0667663859 3.9682012 1103.3555
+211198.0667664902 3.9682012 1103.3752
+211199.0667665945 3.9683585 1103.3357
+211200.0667666988 3.9683585 1103.316
+211201.0667668032 3.9683192 1103.3357
+211202.0667669075 3.9682798 1103.316
+211203.0667670118 3.9683585 1103.316
+211204.0667671161 3.9683979 1103.316
+211205.0667672204 3.9683192 1103.4344
+211206.0667673247 3.9684372 1103.3555
+211207.066767429 3.9684372 1103.2963
+211208.0667675333 3.9683192 1103.3949
+211209.0667676376 3.9684768 1103.4147
+211210.0667677419 3.9682405 1103.3357
+211211.0667678462 3.9683979 1103.4147
+211212.0667679505 3.9682798 1103.316
+211213.0667680549 3.9684768 1103.3752
+211214.0667681592 3.9683979 1103.316
+211215.0667682635 3.9684372 1103.4147
+211216.0667683678 3.9685555 1103.3357
+211217.0667684721 3.9684372 1103.3555
+211218.0667685764 3.9685555 1103.3752
+211219.0667686807 3.9685161 1103.2765
+211220.066768785 3.9685161 1103.3357
+211221.0667688893 3.9685948 1103.2567
+211222.0667689936 3.9685161 1103.4147
+211223.0667690979 3.9686735 1103.3357
+211224.0667692022 3.9685555 1103.3555
+211225.0667693065 3.9686341 1103.4147
+211226.0667694109 3.9686735 1103.3752
+211227.0667695152 3.9685555 1103.3555
+211228.0667696195 3.9685555 1103.3555
+211229.0667697238 3.9686341 1103.3555
+211230.0667698281 3.9686735 1103.2963
+211231.0667699324 3.9685555 1103.3752
+211232.0667700367 3.9686341 1103.2963
+211233.066770141 3.9686341 1103.3357
+211234.0667702453 3.9686735 1103.3752
+211235.0667703496 3.9686735 1103.3555
+211236.0667704539 3.9687524 1103.4147
+211237.0667705582 3.9687917 1103.3357
+211238.0667706626 3.9686735 1103.3555
+211239.0667707669 3.9687917 1103.2963
+211240.0667708712 3.9687524 1103.3949
+211241.0667709755 3.9687917 1103.3949
+211242.0667710798 3.9687917 1103.3752
+211243.0667711841 3.9686735 1103.2567
+211244.0667712884 3.9688704 1103.316
+211245.0667713927 3.9687128 1103.3357
+211246.066771497 3.9688704 1103.3752
+211247.0667716013 3.9688311 1103.2963
+211248.0667717056 3.9688704 1103.2963
+211249.0667718099 3.9687524 1103.2963
+211250.0667719143 3.9688704 1103.3357
+211251.0667720186 3.9688311 1103.316
+211252.0667721229 3.9689491 1103.2172
+211253.0667722272 3.9688704 1103.3752
+211254.0667723315 3.9689097 1103.3752
+211255.0667724358 3.9688311 1103.3752
+211256.0667725401 3.9689884 1103.2765
+211257.0667726444 3.9689097 1103.3555
+211258.0667727487 3.9689097 1103.4147
+211259.066772853 3.9690278 1103.316
+211260.0667729573 3.9689491 1103.3949
+211261.0667730616 3.9690278 1103.3555
+211262.0667731659 3.9690278 1103.316
+211263.0667732703 3.9690673 1103.3357
+211264.0667733746 3.9689884 1103.2765
+211265.0667734789 3.9690278 1103.4147
+211266.0667735832 3.9690673 1103.2963
+211267.0667736875 3.969146 1103.316
+211268.0667737918 3.9691067 1103.3357
+211269.0667738961 3.9691067 1103.2567
+211270.0667740004 3.9690673 1103.3752
+211271.0667741047 3.9690673 1103.2567
+211272.066774209 3.9691067 1103.2765
+211273.0667743133 3.969146 1103.3357
+211274.0667744176 3.9690673 1103.3357
+211275.066774522 3.9691854 1103.3555
+211276.0667746263 3.969264 1103.4147
+211277.0667747306 3.9691854 1103.316
+211278.0667748349 3.9691854 1103.3752
+211279.0667749392 3.9692247 1103.3357
+211280.0667750435 3.9691067 1103.3949
+211281.0667751478 3.969264 1103.3752
+211282.0667752521 3.969264 1103.3949
+211283.0667753564 3.9693427 1103.316
+211284.0667754607 3.9693427 1103.2172
+211285.066775565 3.969264 1103.2963
+211286.0667756693 3.9693034 1103.3949
+211287.0667757737 3.9693034 1103.3357
+211288.066775878 3.9693823 1103.3555
+211289.0667759823 3.969264 1103.2963
+211290.0667760866 3.9693427 1103.3555
+211291.0667761909 3.969264 1103.3949
+211292.0667762952 3.9693427 1103.3752
+211293.0667763995 3.9694216 1103.3949
+211294.0667765038 3.9694216 1103.3555
+211295.0667766081 3.9695003 1103.3752
+211296.0667767124 3.9693427 1103.3752
+211297.0667768167 3.9693823 1103.4147
+211298.066776921 3.9695003 1103.4147
+211299.0667770253 3.9695396 1103.3555
+211300.0667771297 3.9694216 1103.3357
+211301.066777234 3.9695396 1103.3357
+211302.0667773383 3.9695396 1103.3949
+211303.0667774426 3.9695003 1103.3555
+211304.0667775469 3.9695396 1103.4344
+211305.0667776512 3.969461 1103.4542
+211306.0667777555 3.9695396 1103.3752
+211307.0667778598 3.9695396 1103.2765
+211308.0667779641 3.9696183 1103.3752
+211309.0667780684 3.9696183 1103.316
+211310.0667781727 3.9696183 1103.3555
+211311.066778277 3.969579 1103.316
+211312.0667783814 3.9695396 1103.4344
+211313.0667784857 3.9696577 1103.4147
+211314.06677859 3.9696577 1103.3555
+211315.0667786943 3.9696972 1103.3752
+211316.0667787986 3.9696577 1103.316
+211317.0667789029 3.9696577 1103.3357
+211318.0667790072 3.9696972 1103.3752
+211319.0667791115 3.9696972 1103.316
+211320.0667792158 3.9696972 1103.3357
+211321.0667793201 3.9697366 1103.316
+211322.0667794244 3.9696972 1103.3752
+211323.0667795287 3.9697366 1103.4147
+211324.0667796331 3.9696972 1103.316
+211325.0667797374 3.9697366 1103.3752
+211326.0667798417 3.9698153 1103.3555
+211327.066779946 3.9696972 1103.3357
+211328.0667800503 3.9697759 1103.316
+211329.0667801546 3.9698153 1103.2765
+211330.0667802589 3.9697759 1103.4542
+211331.0667803632 3.9697366 1103.2765
+211332.0667804675 3.9698939 1103.4147
+211333.0667805718 3.9697366 1103.3555
+211334.0667806761 3.9698939 1103.316
+211335.0667807804 3.9697759 1103.2765
+211336.0667808848 3.9698546 1103.2765
+211337.0667809891 3.9698546 1103.316
+211338.0667810934 3.9697759 1103.3357
+211339.0667811977 3.9699333 1103.3752
+211340.066781302 3.9699333 1103.3357
+211341.0667814063 3.9700122 1103.3357
+211342.0667815106 3.9699726 1103.3949
+211343.0667816149 3.9698939 1103.3752
+211344.0667817192 3.9699726 1103.2567
+211345.0667818235 3.9700122 1103.3555
+211346.0667819278 3.9700122 1103.3949
+211347.0667820321 3.9700515 1103.3555
+211348.0667821364 3.9700122 1103.4542
+211349.0667822408 3.9699726 1103.3555
+211350.0667823451 3.9700122 1103.3752
+211351.0667824494 3.9700515 1103.3555
+211352.0667825537 3.9700515 1103.3555
+211353.066782658 3.9701695 1103.3949
+211354.0667827623 3.9700515 1103.316
+211355.0667828666 3.9701302 1103.4147
+211356.0667829709 3.9701695 1103.3949
+211357.0667830752 3.9702876 1103.316
+211358.0667831795 3.9701695 1103.3752
+211359.0667832838 3.9700909 1103.4147
+211360.0667833881 3.9701695 1103.3752
+211361.0667834925 3.9702089 1103.4147
+211362.0667835968 3.9702482 1103.3555
+211363.0667837011 3.9702482 1103.3949
+211364.0667838054 3.9702089 1103.3949
+211365.0667839097 3.9702482 1103.3752
+211366.066784014 3.9702482 1103.316
+211367.0667841183 3.9703271 1103.316
+211368.0667842226 3.9701695 1103.3357
+211369.0667843269 3.9703271 1103.3555
+211370.0667844312 3.9702482 1103.3555
+211371.0667845355 3.9702876 1103.3752
+211372.0667846398 3.9703271 1103.3357
+211373.0667847442 3.9703271 1103.2765
+211374.0667848485 3.9702482 1103.3555
+211375.0667849528 3.9703271 1103.2369
+211376.0667850571 3.9704058 1103.2765
+211377.0667851614 3.9702876 1103.2963
+211378.0667852657 3.9704058 1103.3949
+211379.06678537 3.9703665 1103.316
+211380.0667854743 3.9703271 1103.4147
+211381.0667855786 3.9704058 1103.3752
+211382.0667856829 3.9704845 1103.3357
+211383.0667857872 3.9704452 1103.2963
+211384.0667858915 3.9704845 1103.2963
+211385.0667859958 3.9704452 1103.3752
+211386.0667861002 3.9704452 1103.4147
+211387.0667862045 3.9704845 1103.3752
+211388.0667863088 3.9704845 1103.3555
+211389.0667864131 3.9704845 1103.3555
+211390.0667865174 3.9704845 1103.2765
+211391.0667866217 3.9705238 1103.3752
+211392.066786726 3.9704845 1103.3752
+211393.0667868303 3.9706028 1103.3949
+211394.0667869346 3.9705238 1103.2567
+211395.0667870389 3.9705632 1103.3949
+211396.0667871432 3.9705632 1103.316
+211397.0667872475 3.9704845 1103.316
+211398.0667873519 3.9706028 1103.3555
+211399.0667874562 3.9706421 1103.3555
+211400.0667875605 3.9705238 1103.2369
+211401.0667876648 3.9706421 1103.3752
+211402.0667877691 3.9706814 1103.3357
+211403.0667878734 3.9706028 1103.2765
+211404.0667879777 3.9706028 1103.3949
+211405.066788082 3.9707208 1103.2963
+211406.0667881863 3.9706814 1103.4147
+211407.0667882906 3.9706814 1103.316
+211408.0667883949 3.9707208 1103.316
+211409.0667884992 3.9707994 1103.3357
+211410.0667886036 3.9707601 1103.316
+211411.0667887079 3.9707601 1103.3949
+211412.0667888122 3.9707601 1103.316
+211413.0667889165 3.9707994 1103.2963
+211414.0667890208 3.9708388 1103.316
+211415.0667891251 3.9707994 1103.2963
+211416.0667892294 3.9707994 1103.2963
+211417.0667893337 3.9708781 1103.3357
+211418.066789438 3.9707994 1103.2963
+211419.0667895423 3.9709177 1103.3357
+211420.0667896466 3.9708781 1103.3555
+211421.0667897509 3.9709177 1103.3357
+211422.0667898552 3.9708388 1103.2567
+211423.0667899596 3.9708388 1103.4147
+211424.0667900639 3.970957 1103.3555
+211425.0667901682 3.9709177 1103.3949
+211426.0667902725 3.9708388 1103.3357
+211427.0667903768 3.970957 1103.3555
+211428.0667904811 3.9710357 1103.3357
+211429.0667905854 3.9709177 1103.3357
+211430.0667906897 3.9709964 1103.316
+211431.066790794 3.970957 1103.2765
+211432.0667908983 3.9710751 1103.316
+211433.0667910026 3.9709964 1103.4147
+211434.0667911069 3.9710751 1103.4542
+211435.0667912113 3.9711537 1103.3555
+211436.0667913156 3.9709964 1103.4147
+211437.0667914199 3.9710751 1103.3357
+211438.0667915242 3.9710751 1103.3357
+211439.0667916285 3.9711144 1103.2567
+211440.0667917328 3.9711144 1103.316
+211441.0667918371 3.9710357 1103.3949
+211442.0667919414 3.9711537 1103.3357
+211443.0667920457 3.9711144 1103.3949
+211444.06679215 3.9711537 1103.3555
+211445.0667922543 3.9711931 1103.3357
+211446.0667923586 3.9711144 1103.316
+211447.066792463 3.9711144 1103.4147
+211448.0667925673 3.9711144 1103.4344
+211449.0667926716 3.9712327 1103.2963
+211450.0667927759 3.9711931 1103.4542
+211451.0667928802 3.9713507 1103.316
+211452.0667929845 3.9712327 1103.3949
+211453.0667930888 3.9713113 1103.316
+211454.0667931931 3.971272 1103.4147
+211455.0667932974 3.9713507 1103.3752
+211456.0667934017 3.9713113 1103.3752
+211457.066793506 3.971272 1103.3752
+211458.0667936103 3.9713113 1103.3555
+211459.0667937147 3.971272 1103.3357
+211460.066793819 3.97139 1103.3752
+211461.0667939233 3.97139 1103.2765
+211462.0667940276 3.9714293 1103.3555
+211463.0667941319 3.9714687 1103.4344
+211464.0667942362 3.9714293 1103.2765
+211465.0667943405 3.97139 1103.4147
+211466.0667944448 3.9714293 1103.3752
+211467.0667945491 3.9714293 1103.316
+211468.0667946534 3.97139 1103.316
+211469.0667947577 3.9715476 1103.4147
+211470.066794862 3.971508 1103.3752
+211471.0667949663 3.971508 1103.3555
+211472.0667950707 3.9714687 1103.2765
+211473.066795175 3.97139 1103.3555
+211474.0667952793 3.9715869 1103.2765
+211475.0667953836 3.97139 1103.4147
+211476.0667954879 3.9713113 1103.3555
+211477.0667955922 3.9716263 1103.2567
+211478.0667956965 3.9715476 1103.3357
+211479.0667958008 3.9715476 1103.2567
+211480.0667959051 3.9716656 1103.3357
+211481.0667960094 3.971508 1103.4147
+211482.0667961137 3.9716263 1103.2567
+211483.066796218 3.9715476 1103.2765
+211484.0667963224 3.9716263 1103.2963
+211485.0667964267 3.9717443 1103.4147
+211486.066796531 3.9716263 1103.316
+211487.0667966353 3.9716656 1103.2369
+211488.0667967396 3.9717443 1103.3555
+211489.0667968439 3.9717443 1103.3357
+211490.0667969482 3.971705 1103.316
+211491.0667970525 3.9716263 1103.2963
+211492.0667971568 3.9717443 1103.3949
+211493.0667972611 3.9717443 1103.2963
+211494.0667973654 3.9717443 1103.3949
+211495.0667974697 3.971823 1103.3949
+211496.0667975741 3.9718626 1103.316
+211497.0667976784 3.9716656 1103.2765
+211498.0667977827 3.971705 1103.316
+211499.066797887 3.971823 1103.3752
+211500.0667979913 3.9719019 1103.474
+211501.0667980956 3.971823 1103.4147
+211502.0667981999 3.9719412 1103.4147
+211503.0667983042 3.971823 1103.2963
+211504.0667984085 3.9718626 1103.3949
+211505.0667985128 3.9719412 1103.316
+211506.0667986171 3.9719806 1103.4542
+211507.0667987214 3.9719019 1103.2369
+211508.0667988257 3.9719412 1103.3555
+211509.0667989301 3.9719412 1103.316
+211510.0667990344 3.9720199 1103.3752
+211511.0667991387 3.9719806 1103.3555
+211512.066799243 3.9719806 1103.316
+211513.0667993473 3.9720199 1103.2963
+211514.0667994516 3.9720199 1103.2172
+211515.0667995559 3.9719806 1103.3555
+211516.0667996602 3.9719412 1103.3949
+211517.0667997645 3.9720199 1103.3752
+211518.0667998688 3.9719806 1103.2963
+211519.0667999731 3.9721382 1103.316
+211520.0668000774 3.9720592 1103.3357
+211521.0668001818 3.9721382 1103.2567
+211522.0668002861 3.9721382 1103.2963
+211523.0668003904 3.9721775 1103.3357
+211524.0668004947 3.9720199 1103.2963
+211525.066800599 3.9721382 1103.3949
+211526.0668007033 3.9721382 1103.316
+211527.0668008076 3.9722168 1103.3752
+211528.0668009119 3.9721775 1103.4147
+211529.0668010162 3.9722168 1103.2567
+211530.0668011205 3.9722168 1103.2765
+211531.0668012248 3.9721775 1103.4147
+211532.0668013291 3.9722168 1103.3949
+211533.0668014335 3.9722562 1103.3949
+211534.0668015378 3.9722562 1103.2963
+211535.0668016421 3.9722562 1103.3555
+211536.0668017464 3.9722168 1103.3555
+211537.0668018507 3.9722562 1103.3555
+211538.066801955 3.9722562 1103.3555
+211539.0668020593 3.9721382 1103.3752
+211540.0668021636 3.9722562 1103.3357
+211541.0668022679 3.9722168 1103.3752
+211542.0668023722 3.9723349 1103.3555
+211543.0668024765 3.9723349 1103.3752
+211544.0668025808 3.9723349 1103.4147
+211545.0668026851 3.9722562 1103.3555
+211546.0668027895 3.9724135 1103.2963
+211547.0668028938 3.9723742 1103.4147
+211548.0668029981 3.9724135 1103.3555
+211549.0668031024 3.9724135 1103.3555
+211550.0668032067 3.9724135 1103.316
+211551.066803311 3.9723349 1103.2765
+211552.0668034153 3.9724135 1103.4542
+211553.0668035196 3.9723349 1103.3357
+211554.0668036239 3.9724531 1103.316
+211555.0668037282 3.9724531 1103.4344
+211556.0668038325 3.9724925 1103.316
+211557.0668039368 3.9724135 1103.316
+211558.0668040412 3.9726498 1103.3752
+211559.0668041455 3.9724925 1103.3949
+211560.0668042498 3.9725318 1103.316
+211561.0668043541 3.9724925 1103.2567
+211562.0668044584 3.9725318 1103.3555
+211563.0668045627 3.9726498 1103.316
+211564.066804667 3.9726105 1103.4147
+211565.0668047713 3.9725711 1103.3752
+211566.0668048756 3.9724925 1103.3555
+211567.0668049799 3.9726892 1103.3752
+211568.0668050842 3.9725318 1103.2765
+211569.0668051885 3.9727681 1103.3357
+211570.0668052929 3.9726498 1103.2765
+211571.0668053972 3.9726105 1103.316
+211572.0668055015 3.9727285 1103.316
+211573.0668056058 3.9728467 1103.3555
+211574.0668057101 3.9727285 1103.3555
+211575.0668058144 3.9726892 1103.316
+211576.0668059187 3.9727285 1103.3752
+211577.066806023 3.9726892 1103.3555
+211578.0668061273 3.9728074 1103.3752
+211579.0668062316 3.9728467 1103.3752
+211580.0668063359 3.9728861 1103.3949
+211581.0668064402 3.9728074 1103.2963
+211582.0668065446 3.9727681 1103.3752
+211583.0668066489 3.9728467 1103.3752
+211584.0668067532 3.9728467 1103.3555
+211585.0668068575 3.9728861 1103.3949
+211586.0668069618 3.9728074 1103.3752
+211587.0668070661 3.9728467 1103.316
+211588.0668071704 3.9728467 1103.2369
+211589.0668072747 3.9729254 1103.3357
+211590.066807379 3.9729254 1103.3752
+211591.0668074833 3.9728861 1103.4344
+211592.0668075876 3.9729254 1103.3752
+211593.0668076919 3.9730041 1103.3357
+211594.0668077962 3.9729254 1103.2963
+211595.0668079006 3.9730434 1103.3752
+211596.0668080049 3.9729254 1103.316
+211597.0668081092 3.9729648 1103.3357
+211598.0668082135 3.973083 1103.3357
+211599.0668083178 3.9730041 1103.316
+211600.0668084221 3.9730434 1103.2172
+211601.0668085264 3.973083 1103.4147
+211602.0668086307 3.9730041 1103.2963
+211603.066808735 3.9730434 1103.3555
+211604.0668088393 3.973083 1103.3357
+211605.0668089436 3.973083 1103.3752
+211606.0668090479 3.973083 1103.2963
+211607.0668091523 3.973083 1103.3949
+211608.0668092566 3.9730434 1103.3357
+211609.0668093609 3.9730434 1103.3949
+211610.0668094652 3.9731224 1103.3949
+211611.0668095695 3.9731224 1103.3357
+211612.0668096738 3.9731617 1103.2567
+211613.0668097781 3.9732797 1103.4344
+211614.0668098824 3.973201 1103.4147
+211615.0668099867 3.9731617 1103.3555
+211616.066810091 3.973201 1103.474
+211617.0668101953 3.9732404 1103.316
+211618.0668102996 3.9732797 1103.3555
+211619.066810404 3.973201 1103.3555
+211620.0668105083 3.9732797 1103.2963
+211621.0668106126 3.9732404 1103.2765
+211622.0668107169 3.9733584 1103.3555
+211623.0668108212 3.9732797 1103.2963
+211624.0668109255 3.9733191 1103.3357
+211625.0668110298 3.9733191 1103.316
+211626.0668111341 3.9733584 1103.3752
+211627.0668112384 3.9733584 1103.3357
+211628.0668113427 3.9734373 1103.3752
+211629.066811447 3.9734766 1103.3555
+211630.0668115513 3.9734373 1103.3357
+211631.0668116556 3.973516 1103.3752
+211632.06681176 3.9733584 1103.3752
+211633.0668118643 3.9733191 1103.3357
+211634.0668119686 3.9733584 1103.4147
+211635.0668120729 3.9734373 1103.3949
+211636.0668121772 3.9734766 1103.316
+211637.0668122815 3.9734766 1103.3555
+211638.0668123858 3.9734373 1103.3752
+211639.0668124901 3.9734373 1103.3357
+211640.0668125944 3.9734766 1103.3752
+211641.0668126987 3.973634 1103.3555
+211642.066812803 3.9735553 1103.3555
+211643.0668129073 3.9734766 1103.2963
+211644.0668130117 3.973516 1103.3357
+211645.066813116 3.973634 1103.3357
+211646.0668132203 3.973516 1103.3949
+211647.0668133246 3.973634 1103.3949
+211648.0668134289 3.9735553 1103.316
+211649.0668135332 3.9735553 1103.3752
+211650.0668136375 3.9735553 1103.3357
+211651.0668137418 3.9736733 1103.3949
+211652.0668138461 3.9736733 1103.316
+211653.0668139504 3.973634 1103.2963
+211654.0668140547 3.9737129 1103.3752
+211655.066814159 3.9737129 1103.3752
+211656.0668142634 3.9736733 1103.316
+211657.0668143677 3.9737916 1103.3357
+211658.066814472 3.9737129 1103.3555
+211659.0668145763 3.9737129 1103.3555
+211660.0668146806 3.9737916 1103.3752
+211661.0668147849 3.973634 1103.3357
+211662.0668148892 3.9738309 1103.3357
+211663.0668149935 3.9737129 1103.3357
+211664.0668150978 3.9737129 1103.3357
+211665.0668152021 3.9738703 1103.3949
+211666.0668153064 3.9737916 1103.4147
+211667.0668154107 3.9738703 1103.2963
+211668.066815515 3.9737523 1103.3949
+211669.0668156194 3.9737916 1103.2765
+211670.0668157237 3.9738309 1103.3752
+211671.066815828 3.9738703 1103.2963
+211672.0668159323 3.9739885 1103.3752
+211673.0668160366 3.9739096 1103.3357
+211674.0668161409 3.9739885 1103.316
+211675.0668162452 3.973949 1103.2963
+211676.0668163495 3.9738703 1103.3949
+211677.0668164538 3.9739885 1103.3555
+211678.0668165581 3.973949 1103.2369
+211679.0668166624 3.9739885 1103.3357
+211680.0668167667 3.9740672 1103.3949
+211681.0668168711 3.973949 1103.3949
+211682.0668169754 3.9739885 1103.3555
+211683.0668170797 3.9740672 1103.2369
+211684.066817184 3.9740279 1103.2963
+211685.0668172883 3.9741066 1103.3949
+211686.0668173926 3.9741459 1103.3555
+211687.0668174969 3.9740672 1103.316
+211688.0668176012 3.9740672 1103.3555
+211689.0668177055 3.9741459 1103.3752
+211690.0668178098 3.9740672 1103.3555
+211691.0668179141 3.9741852 1103.3752
+211692.0668180184 3.9741066 1103.3555
+211693.0668181228 3.9741066 1103.4147
+211694.0668182271 3.9741852 1103.3555
+211695.0668183314 3.9741459 1103.3357
+211696.0668184357 3.9741066 1103.4147
+211697.06681854 3.9741852 1103.3357
+211698.0668186443 3.9742246 1103.2963
+211699.0668187486 3.9742246 1103.3357
+211700.0668188529 3.9741852 1103.2765
+211701.0668189572 3.9742246 1103.3752
+211702.0668190615 3.9742246 1103.3555
+211703.0668191658 3.9741852 1103.316
+211704.0668192701 3.9743035 1103.316
+211705.0668193745 3.9742639 1103.3357
+211706.0668194788 3.9742639 1103.3555
+211707.0668195831 3.9744608 1103.3357
+211708.0668196874 3.9743428 1103.4344
+211709.0668197917 3.9743822 1103.3357
+211710.066819896 3.9743035 1103.3555
+211711.0668200003 3.9745002 1103.4147
+211712.0668201046 3.9743035 1103.3752
+211713.0668202089 3.9744215 1103.3357
+211714.0668203132 3.9743428 1103.3357
+211715.0668204175 3.9744215 1103.3949
+211716.0668205218 3.9744215 1103.3752
+211717.0668206261 3.9743822 1103.4147
+211718.0668207305 3.9744608 1103.3752
+211719.0668208348 3.9745002 1103.3357
+211720.0668209391 3.9743822 1103.3555
+211721.0668210434 3.9744215 1103.3357
+211722.0668211477 3.9745002 1103.4147
+211723.066821252 3.9745002 1103.3357
+211724.0668213563 3.9746184 1103.316
+211725.0668214606 3.9744608 1103.4147
+211726.0668215649 3.9746184 1103.2963
+211727.0668216692 3.9745789 1103.3949
+211728.0668217735 3.9746578 1103.3752
+211729.0668218778 3.9746578 1103.2369
+211730.0668219822 3.9747758 1103.2963
+211731.0668220865 3.9746971 1103.3949
+211732.0668221908 3.9746184 1103.3357
+211733.0668222951 3.9745395 1103.3752
+211734.0668223994 3.9746971 1103.3357
+211735.0668225037 3.9746971 1103.3752
+211736.066822608 3.9746184 1103.316
+211737.0668227123 3.9746971 1103.3949
+211738.0668228166 3.9746971 1103.3752
+211739.0668229209 3.9747365 1103.2765
+211740.0668230252 3.9746971 1103.3555
+211741.0668231295 3.9746971 1103.3357
+211742.0668232339 3.9747365 1103.3555
+211743.0668233382 3.9748151 1103.3555
+211744.0668234425 3.9747758 1103.4147
+211745.0668235468 3.9748151 1103.2963
+211746.0668236511 3.9748151 1103.3357
+211747.0668237554 3.9747758 1103.2765
+211748.0668238597 3.9747365 1103.3357
+211749.066823964 3.9748938 1103.2567
+211750.0668240683 3.9746971 1103.3357
+211751.0668241726 3.9748938 1103.3555
+211752.0668242769 3.9748938 1103.316
+211753.0668243812 3.9748545 1103.4344
+211754.0668244855 3.9749727 1103.3752
+211755.0668245899 3.9749334 1103.3555
+211756.0668246942 3.9749334 1103.2963
+211757.0668247985 3.9749727 1103.2765
+211758.0668249028 3.9748938 1103.4147
+211759.0668250071 3.9749334 1103.2765
+211760.0668251114 3.9749727 1103.316
+211761.0668252157 3.9749334 1103.4542
+211762.06682532 3.9749334 1103.3752
+211763.0668254243 3.9750121 1103.316
+211764.0668255286 3.9749727 1103.2172
+211765.0668256329 3.9750907 1103.3357
+211766.0668257372 3.9750907 1103.3357
+211767.0668258416 3.9750121 1103.2963
+211768.0668259459 3.9750514 1103.3357
+211769.0668260502 3.9751301 1103.3949
+211770.0668261545 3.9750121 1103.3555
+211771.0668262588 3.9750907 1103.316
+211772.0668263631 3.9750907 1103.3555
+211773.0668264674 3.9750907 1103.2369
+211774.0668265717 3.9751301 1103.3752
+211775.066826676 3.9751301 1103.4147
+211776.0668267803 3.9752483 1103.3357
+211777.0668268846 3.9752877 1103.3555
+211778.0668269889 3.9752088 1103.3752
+211779.0668270933 3.9751694 1103.316
+211780.0668271976 3.9752483 1103.3752
+211781.0668273019 3.9751694 1103.3752
+211782.0668274062 3.9752088 1103.3555
+211783.0668275105 3.9752483 1103.3555
+211784.0668276148 3.9751694 1103.4344
+211785.0668277191 3.9752877 1103.3555
+211786.0668278234 3.9752877 1103.3555
+211787.0668279277 3.9752483 1103.3752
+211788.066828032 3.9752483 1103.3555
+211789.0668281363 3.975327 1103.316
+211790.0668282406 3.9752877 1103.3949
+211791.0668283449 3.9754057 1103.2963
+211792.0668284493 3.9752877 1103.3752
+211793.0668285536 3.9754057 1103.3555
+211794.0668286579 3.9754844 1103.3949
+211795.0668287622 3.975445 1103.3752
+211796.0668288665 3.9754057 1103.3949
+211797.0668289708 3.9754844 1103.316
+211798.0668290751 3.9753664 1103.3357
+211799.0668291794 3.975445 1103.3357
+211800.0668292837 3.9754057 1103.316
+211801.066829388 3.975445 1103.3555
+211802.0668294923 3.9754844 1103.3555
+211803.0668295966 3.9755237 1103.2567
+211804.066829701 3.975445 1103.2963
+211805.0668298053 3.9756813 1103.4344
+211806.0668299096 3.9755237 1103.3357
+211807.0668300139 3.9754844 1103.3752
+211808.0668301182 3.9754844 1103.2567
+211809.0668302225 3.975642 1103.3949
+211810.0668303268 3.9756026 1103.3555
+211811.0668304311 3.9756813 1103.3357
+211812.0668305354 3.9754844 1103.3555
+211813.0668306397 3.9756813 1103.3357
+211814.066830744 3.9756813 1103.3555
+211815.0668308483 3.9756026 1103.2963
+211816.0668309527 3.9756813 1103.2963
+211817.066831057 3.9756813 1103.3752
+211818.0668311613 3.97576 1103.4344
+211819.0668312656 3.9757206 1103.3752
+211820.0668313699 3.97576 1103.3357
+211821.0668314742 3.9757206 1103.4542
+211822.0668315785 3.9756813 1103.3752
+211823.0668316828 3.9757206 1103.2963
+211824.0668317871 3.9757206 1103.3357
+211825.0668318914 3.9759176 1103.3752
+211826.0668319957 3.9758389 1103.2963
+211827.0668321 3.9758389 1103.2963
+211828.0668322043 3.9756813 1103.316
+211829.0668323087 3.9758782 1103.2963
+211830.066832413 3.9758389 1103.3357
+211831.0668325173 3.9758389 1103.3357
+211832.0668326216 3.9759176 1103.3357
+211833.0668327259 3.9758389 1103.3752
+211834.0668328302 3.9758389 1103.3357
+211835.0668329345 3.9758782 1103.3555
+211836.0668330388 3.9759176 1103.3555
+211837.0668331431 3.9759569 1103.3752
+211838.0668332474 3.9759569 1103.3357
+211839.0668333517 3.9759176 1103.3555
+211840.066833456 3.9759963 1103.316
+211841.0668335604 3.9759963 1103.316
+211842.0668336647 3.9759963 1103.316
+211843.066833769 3.9759963 1103.3555
+211844.0668338733 3.9759569 1103.3752
+211845.0668339776 3.9760749 1103.3357
+211846.0668340819 3.9760749 1103.3357
+211847.0668341862 3.9761143 1103.3555
+211848.0668342905 3.9760356 1103.3949
+211849.0668343948 3.9760749 1103.3555
+211850.0668344991 3.9761539 1103.2963
+211851.0668346034 3.9760749 1103.3555
+211852.0668347077 3.9760356 1103.3949
+211853.0668348121 3.9760749 1103.2963
+211854.0668349164 3.9761143 1103.3555
+211855.0668350207 3.9760749 1103.3949
+211856.066835125 3.9762325 1103.3357
+211857.0668352293 3.9762325 1103.2963
+211858.0668353336 3.9761932 1103.2963
+211859.0668354379 3.9762325 1103.3752
+211860.0668355422 3.9761539 1103.3752
+211861.0668356465 3.9762325 1103.2765
+211862.0668357508 3.9761932 1103.4147
+211863.0668358551 3.9761932 1103.2567
+211864.0668359594 3.9762325 1103.2963
+211865.0668360638 3.9762325 1103.3752
+211866.0668361681 3.9762325 1103.316
+211867.0668362724 3.9763505 1103.3949
+211868.0668363767 3.9762719 1103.3752
+211869.066836481 3.9763505 1103.3752
+211870.0668365853 3.9763505 1103.3357
+211871.0668366896 3.9762719 1103.316
+211872.0668367939 3.9763505 1103.2963
+211873.0668368982 3.9764292 1103.3555
+211874.0668370025 3.9763899 1103.2567
+211875.0668371068 3.9763899 1103.3555
+211876.0668372111 3.9763112 1103.4147
+211877.0668373154 3.9764292 1103.3555
+211878.0668374198 3.9764688 1103.4147
+211879.0668375241 3.9764292 1103.3949
+211880.0668376284 3.9764292 1103.3555
+211881.0668377327 3.9764292 1103.3752
+211882.066837837 3.9765081 1103.3357
+211883.0668379413 3.9764688 1103.3357
+211884.0668380456 3.9765475 1103.4147
+211885.0668381499 3.9765081 1103.3752
+211886.0668382542 3.9765081 1103.3949
+211887.0668383585 3.9765081 1103.3949
+211888.0668384628 3.9765081 1103.3555
+211889.0668385671 3.9765081 1103.3555
+211890.0668386715 3.9765868 1103.316
+211891.0668387758 3.9765868 1103.3752
+211892.0668388801 3.9766655 1103.316
+211893.0668389844 3.9766262 1103.3357
+211894.0668390887 3.9765868 1103.316
+211895.066839193 3.9765868 1103.4147
+211896.0668392973 3.9766655 1103.3752
+211897.0668394016 3.9766262 1103.2765
+211898.0668395059 3.9765475 1103.3555
+211899.0668396102 3.9767048 1103.3949
+211900.0668397145 3.9766655 1103.2963
+211901.0668398188 3.9767442 1103.3555
+211902.0668399232 3.9766262 1103.3949
+211903.0668400275 3.9766262 1103.316
+211904.0668401318 3.9766262 1103.3752
+211905.0668402361 3.9767838 1103.3752
+211906.0668403404 3.9767048 1103.3555
+211907.0668404447 3.9768231 1103.2963
+211908.066840549 3.9767048 1103.3949
+211909.0668406533 3.9767442 1103.3949
+211910.0668407576 3.9767838 1103.3357
+211911.0668408619 3.9767838 1103.2765
+211912.0668409662 3.9768231 1103.3357
+211913.0668410705 3.9768624 1103.3752
+211914.0668411748 3.9769018 1103.316
+211915.0668412792 3.9769411 1103.3949
+211916.0668413835 3.9768624 1103.3752
+211917.0668414878 3.9769804 1103.3752
+211918.0668415921 3.9768231 1103.3752
+211919.0668416964 3.9769018 1103.3752
+211920.0668418007 3.9768231 1103.4147
+211921.066841905 3.9768624 1103.3752
+211922.0668420093 3.9769411 1103.316
+211923.0668421136 3.9769411 1103.3752
+211924.0668422179 3.9769804 1103.2963
+211925.0668423222 3.9769804 1103.3555
+211926.0668424265 3.9770591 1103.3949
+211927.0668425309 3.9769804 1103.3949
+211928.0668426352 3.9770591 1103.3357
+211929.0668427395 3.9769411 1103.2963
+211930.0668428438 3.9770591 1103.3555
+211931.0668429481 3.9770591 1103.3752
+211932.0668430524 3.977138 1103.316
+211933.0668431567 3.9770198 1103.3357
+211934.066843261 3.9770591 1103.316
+211935.0668433653 3.9770987 1103.3555
+211936.0668434696 3.9771774 1103.3949
+211937.0668435739 3.9770987 1103.4147
+211938.0668436782 3.9771774 1103.2963
+211939.0668437826 3.9771774 1103.316
+211940.0668438869 3.9770987 1103.3555
+211941.0668439912 3.9771774 1103.3357
+211942.0668440955 3.9770987 1103.3949
+211943.0668441998 3.9771774 1103.3555
+211944.0668443041 3.9772954 1103.316
+211945.0668444084 3.9772167 1103.3555
+211946.0668445127 3.977138 1103.3357
+211947.066844617 3.9772954 1103.3752
+211948.0668447213 3.9772561 1103.4147
+211949.0668448256 3.9772167 1103.2765
+211950.0668449299 3.9773347 1103.316
+211951.0668450342 3.9773347 1103.3357
+211952.0668451386 3.9774137 1103.3357
+211953.0668452429 3.9772954 1103.4344
+211954.0668453472 3.9773347 1103.2963
+211955.0668454515 3.9773347 1103.3555
+211956.0668455558 3.9773347 1103.3949
+211957.0668456601 3.9773347 1103.4147
+211958.0668457644 3.9773741 1103.3555
+211959.0668458687 3.9772954 1103.2765
+211960.066845973 3.977453 1103.316
+211961.0668460773 3.9774137 1103.2765
+211962.0668461816 3.9774137 1103.2369
+211963.0668462859 3.9774137 1103.3357
+211964.0668463903 3.9774137 1103.2765
+211965.0668464946 3.9774923 1103.2765
+211966.0668465989 3.9774137 1103.316
+211967.0668467032 3.9775317 1103.2963
+211968.0668468075 3.977571 1103.3752
+211969.0668469118 3.977453 1103.3555
+211970.0668470161 3.9774923 1103.3555
+211971.0668471204 3.9776103 1103.2963
+211972.0668472247 3.9775317 1103.3555
+211973.066847329 3.977571 1103.3555
+211974.0668474333 3.9775317 1103.3752
+211975.0668475376 3.9776497 1103.4344
+211976.066847642 3.9775317 1103.4344
+211977.0668477463 3.977571 1103.4147
+211978.0668478506 3.9776893 1103.3752
+211979.0668479549 3.977571 1103.3949
+211980.0668480592 3.977571 1103.3555
+211981.0668481635 3.977571 1103.3357
+211982.0668482678 3.977571 1103.3949
+211983.0668483721 3.977571 1103.316
+211984.0668484764 3.9776103 1103.3357
+211985.0668485807 3.9777286 1103.3357
+211986.066848685 3.9777679 1103.3949
+211987.0668487893 3.9777286 1103.4344
+211988.0668488937 3.9778073 1103.3949
+211989.066848998 3.9777286 1103.4147
+211990.0668491023 3.9777286 1103.3752
+211991.0668492066 3.977886 1103.316
+211992.0668493109 3.9777679 1103.2765
+211993.0668494152 3.9778073 1103.3949
+211994.0668495195 3.9777679 1103.3555
+211995.0668496238 3.9778073 1103.316
+211996.0668497281 3.9778073 1103.3949
+211997.0668498324 3.9777679 1103.316
+211998.0668499367 3.9779646 1103.2963
+211999.066850041 3.9779253 1103.3357
+212000.0668501453 3.9779253 1103.2963
+212001.0668502497 3.9779646 1103.2765
+212002.066850354 3.9779253 1103.3555
+212003.0668504583 3.9779253 1103.3752
+212004.0668505626 3.9780042 1103.3357
+212005.0668506669 3.9778466 1103.3949
+212006.0668507712 3.977886 1103.3555
+212007.0668508755 3.9779646 1103.3949
+212008.0668509798 3.977886 1103.3752
+212009.0668510841 3.9780436 1103.3357
+212010.0668511884 3.9779253 1103.3555
+212011.0668512927 3.9780042 1103.2963
+212012.066851397 3.9780436 1103.3357
+212013.0668515014 3.9780436 1103.3752
+212014.0668516057 3.9781222 1103.3555
+212015.06685171 3.9781222 1103.2765
+212016.0668518143 3.9780436 1103.2963
+212017.0668519186 3.9780829 1103.3357
+212018.0668520229 3.9780436 1103.316
+212019.0668521272 3.9780436 1103.4147
+212020.0668522315 3.9781616 1103.3752
+212021.0668523358 3.9782796 1103.2963
+212022.0668524401 3.9781616 1103.3949
+212023.0668525444 3.9782403 1103.3752
+212024.0668526487 3.9782796 1103.3752
+212025.0668527531 3.9782403 1103.316
+212026.0668528574 3.9780829 1103.3752
+212027.0668529617 3.9781616 1103.3949
+212028.066853066 3.9782009 1103.4542
+212029.0668531703 3.9782009 1103.3949
+212030.0668532746 3.9782796 1103.3555
+212031.0668533789 3.9782009 1103.3555
+212032.0668534832 3.9783192 1103.3357
+212033.0668535875 3.9783978 1103.2567
+212034.0668536918 3.9783978 1103.3949
+212035.0668537961 3.9783978 1103.3752
+212036.0668539004 3.9782796 1103.3752
+212037.0668540047 3.9782403 1103.316
+212038.0668541091 3.9783585 1103.3357
+212039.0668542134 3.9783585 1103.316
+212040.0668543177 3.9783978 1103.3949
+212041.066854422 3.9784372 1103.316
+212042.0668545263 3.9783585 1103.316
+212043.0668546306 3.9783978 1103.3555
+212044.0668547349 3.9783978 1103.316
+212045.0668548392 3.9783585 1103.316
+212046.0668549435 3.9783978 1103.4147
+212047.0668550478 3.9785945 1103.2963
+212048.0668551521 3.9784765 1103.316
+212049.0668552564 3.9785552 1103.3357
+212050.0668553608 3.9784372 1103.3752
+212051.0668554651 3.9785159 1103.316
+212052.0668555694 3.9785552 1103.3555
+212053.0668556737 3.9785945 1103.4147
+212054.066855778 3.9785552 1103.4344
+212055.0668558823 3.9786341 1103.3357
+212056.0668559866 3.9785552 1103.3752
+212057.0668560909 3.9785552 1103.316
+212058.0668561952 3.9786341 1103.2963
+212059.0668562995 3.9786341 1103.2567
+212060.0668564038 3.9786341 1103.3357
+212061.0668565081 3.9785552 1103.2963
+212062.0668566125 3.9786735 1103.3555
+212063.0668567168 3.9785159 1103.3949
+212064.0668568211 3.9786735 1103.3357
+212065.0668569254 3.9786735 1103.3357
+212066.0668570297 3.9786735 1103.3752
+212067.066857134 3.9786735 1103.3949
+212068.0668572383 3.9786735 1103.3357
+212069.0668573426 3.9786341 1103.4938
+212070.0668574469 3.9787128 1103.316
+212071.0668575512 3.9788308 1103.3752
+212072.0668576555 3.9787521 1103.3357
+212073.0668577598 3.9787521 1103.3949
+212074.0668578641 3.9787915 1103.3555
+212075.0668579685 3.9788308 1103.474
+212076.0668580728 3.9787915 1103.2765
+212077.0668581771 3.9788308 1103.316
+212078.0668582814 3.9788702 1103.3949
+212079.0668583857 3.9788702 1103.3949
+212080.06685849 3.9788702 1103.3555
+212081.0668585943 3.9789491 1103.3555
+212082.0668586986 3.9788308 1103.2963
+212083.0668588029 3.9789884 1103.3949
+212084.0668589072 3.9790277 1103.2567
+212085.0668590115 3.9789491 1103.3949
+212086.0668591158 3.9789884 1103.3357
+212087.0668592202 3.9789884 1103.2765
+212088.0668593245 3.9789491 1103.3752
+212089.0668594288 3.9789884 1103.2765
+212090.0668595331 3.9789491 1103.4147
+212091.0668596374 3.9790277 1103.3555
+212092.0668597417 3.9790671 1103.3357
+212093.066859846 3.9789884 1103.2963
+212094.0668599503 3.9789884 1103.2963
+212095.0668600546 3.9791064 1103.3357
+212096.0668601589 3.9791064 1103.2963
+212097.0668602632 3.9790671 1103.2963
+212098.0668603675 3.9790277 1103.3752
+212099.0668604719 3.9790277 1103.3555
+212100.0668605762 3.9791064 1103.3752
+212101.0668606805 3.9790671 1103.2963
+212102.0668607848 3.9791064 1103.2963
+212103.0668608891 3.9791458 1103.3949
+212104.0668609934 3.9791064 1103.474
+212105.0668610977 3.9791458 1103.3357
+212106.066861202 3.979264 1103.3555
+212107.0668613063 3.9792244 1103.3555
+212108.0668614106 3.9792244 1103.3357
+212109.0668615149 3.979264 1103.3555
+212110.0668616192 3.9791851 1103.3357
+212111.0668617236 3.979264 1103.4542
+212112.0668618279 3.9791458 1103.3752
+212113.0668619322 3.9792244 1103.4147
+212114.0668620365 3.979264 1103.2963
+212115.0668621408 3.9793034 1103.3752
+212116.0668622451 3.9793034 1103.2369
+212117.0668623494 3.9793034 1103.316
+212118.0668624537 3.9794214 1103.316
+212119.066862558 3.979382 1103.3949
+212120.0668626623 3.979382 1103.4147
+212121.0668627666 3.9793427 1103.2963
+212122.0668628709 3.979382 1103.3752
+212123.0668629752 3.979382 1103.2963
+212124.0668630796 3.9794607 1103.2963
+212125.0668631839 3.9795001 1103.3357
+212126.0668632882 3.9794214 1103.3357
+212127.0668633925 3.9794214 1103.3555
+212128.0668634968 3.9794607 1103.3949
+212129.0668636011 3.9794214 1103.3555
+212130.0668637054 3.9795396 1103.3949
+212131.0668638097 3.9795396 1103.316
+212132.066863914 3.9794607 1103.3752
+212133.0668640183 3.9794607 1103.2963
+212134.0668641226 3.9796183 1103.4344
+212135.0668642269 3.9795396 1103.3357
+212136.0668643313 3.979579 1103.4344
+212137.0668644356 3.979579 1103.3555
+212138.0668645399 3.9795001 1103.3752
+212139.0668646442 3.9795001 1103.2963
+212140.0668647485 3.9796576 1103.4147
+212141.0668648528 3.979579 1103.3752
+212142.0668649571 3.9795396 1103.3949
+212143.0668650614 3.9797363 1103.3555
+212144.0668651657 3.9796183 1103.2963
+212145.06686527 3.9796183 1103.3752
+212146.0668653743 3.979697 1103.3752
+212147.0668654786 3.9797363 1103.3752
+212148.066865583 3.979697 1103.3949
+212149.0668656873 3.9796576 1103.3752
+212150.0668657916 3.9797757 1103.3357
+212151.0668658959 3.9797757 1103.3555
+212152.0668660002 3.9796576 1103.3949
+212153.0668661045 3.9797757 1103.3555
+212154.0668662088 3.9797757 1103.2963
+212155.0668663131 3.979815 1103.3949
+212156.0668664174 3.9797757 1103.3752
+212157.0668665217 3.979815 1103.3555
+212158.066866626 3.9799333 1103.3357
+212159.0668667303 3.9798939 1103.3949
+212160.0668668346 3.9799333 1103.2963
+212161.066866939 3.9798939 1103.3357
+212162.0668670433 3.9798546 1103.2765
+212163.0668671476 3.9798546 1103.2765
+212164.0668672519 3.9798546 1103.2963
+212165.0668673562 3.9799726 1103.3752
+212166.0668674605 3.9799333 1103.3357
+212167.0668675648 3.9798546 1103.3752
+212168.0668676691 3.9800119 1103.2765
+212169.0668677734 3.9798546 1103.3357
+212170.0668678777 3.9800513 1103.3949
+212171.066867982 3.9800513 1103.4542
+212172.0668680863 3.9800513 1103.3949
+212173.0668681907 3.9800906 1103.3357
+212174.066868295 3.9800513 1103.3357
+212175.0668683993 3.9800119 1103.4147
+212176.0668685036 3.9799333 1103.2567
+212177.0668686079 3.9800119 1103.316
+212178.0668687122 3.9799333 1103.3555
+212179.0668688165 3.9801695 1103.3357
+212180.0668689208 3.9800906 1103.316
+212181.0668690251 3.9801695 1103.3752
+212182.0668691294 3.98013 1103.3752
+212183.0668692337 3.98013 1103.3357
+212184.066869338 3.98013 1103.2963
+212185.0668694424 3.9801695 1103.4938
+212186.0668695467 3.9802089 1103.2963
+212187.066869651 3.9802089 1103.3555
+212188.0668697553 3.9802482 1103.316
+212189.0668698596 3.9802482 1103.2963
+212190.0668699639 3.9802089 1103.3949
+212191.0668700682 3.9802482 1103.2369
+212192.0668701725 3.9802482 1103.3949
+212193.0668702768 3.9802482 1103.3357
+212194.0668703811 3.9802482 1103.4147
+212195.0668704854 3.9804056 1103.3555
+212196.0668705897 3.9804056 1103.3752
+212197.066870694 3.9803269 1103.2765
+212198.0668707984 3.9802876 1103.2567
+212199.0668709027 3.9803269 1103.316
+212200.066871007 3.9804056 1103.3555
+212201.0668711113 3.9803662 1103.3555
+212202.0668712156 3.9804449 1103.2765
+212203.0668713199 3.9804056 1103.3752
+212204.0668714242 3.9804449 1103.3949
+212205.0668715285 3.9804056 1103.2567
+212206.0668716328 3.9804449 1103.3357
+212207.0668717371 3.9804449 1103.3555
+212208.0668718414 3.9805238 1103.3555
+212209.0668719457 3.9804845 1103.3949
+212210.0668720501 3.9804056 1103.3357
+212211.0668721544 3.9805238 1103.3752
+212212.0668722587 3.9804845 1103.3357
+212213.066872363 3.9805238 1103.3555
+212214.0668724673 3.9804845 1103.3555
+212215.0668725716 3.9804845 1103.2963
+212216.0668726759 3.9805238 1103.3949
+212217.0668727802 3.9805632 1103.316
+212218.0668728845 3.9806418 1103.3555
+212219.0668729888 3.9806812 1103.3949
+212220.0668730931 3.9805238 1103.3949
+212221.0668731974 3.9806025 1103.3555
+212222.0668733018 3.9806025 1103.3555
+212223.0668734061 3.9805632 1103.3752
+212224.0668735104 3.9806025 1103.3752
+212225.0668736147 3.9806812 1103.2963
+212226.066873719 3.9806418 1103.316
+212227.0668738233 3.9806418 1103.3752
+212228.0668739276 3.9806418 1103.3949
+212229.0668740319 3.9807994 1103.3752
+212230.0668741362 3.9807205 1103.316
+212231.0668742405 3.9807205 1103.316
+212232.0668743448 3.9807599 1103.3357
+212233.0668744491 3.9807205 1103.2963
+212234.0668745534 3.9807994 1103.3949
+212235.0668746578 3.9807994 1103.3949
+212236.0668747621 3.9806812 1103.3555
+212237.0668748664 3.9807994 1103.2963
+212238.0668749707 3.9808781 1103.316
+212239.066875075 3.9809175 1103.3949
+212240.0668751793 3.9808781 1103.4344
+212241.0668752836 3.9807599 1103.3752
+212242.0668753879 3.9807205 1103.316
+212243.0668754922 3.9809175 1103.3357
+212244.0668755965 3.9808388 1103.3752
+212245.0668757008 3.9809175 1103.3357
+212246.0668758051 3.9807994 1103.316
+212247.0668759095 3.9809568 1103.3752
+212248.0668760138 3.9809568 1103.3555
+212249.0668761181 3.9809175 1103.4344
+212250.0668762224 3.9809568 1103.3357
+212251.0668763267 3.9810355 1103.2765
+212252.066876431 3.9809961 1103.3949
+212253.0668765353 3.9809961 1103.2765
+212254.0668766396 3.9809175 1103.3752
+212255.0668767439 3.9809961 1103.2963
+212256.0668768482 3.981075 1103.3752
+212257.0668769525 3.9811144 1103.3357
+212258.0668770568 3.981075 1103.3357
+212259.0668771612 3.9809961 1103.3357
+212260.0668772655 3.9810355 1103.2963
+212261.0668773698 3.9810355 1103.4147
+212262.0668774741 3.9811931 1103.1975
+212263.0668775784 3.981075 1103.3752
+212264.0668776827 3.9810355 1103.2963
+212265.066877787 3.9811144 1103.4147
+212266.0668778913 3.9811537 1103.3752
+212267.0668779956 3.9811144 1103.316
+212268.0668780999 3.9812324 1103.3752
+212269.0668782042 3.9811537 1103.3949
+212270.0668783085 3.9812717 1103.3752
+212271.0668784129 3.9811537 1103.3357
+212272.0668785172 3.9812324 1103.3949
+212273.0668786215 3.9812324 1103.3949
+212274.0668787258 3.9812324 1103.2765
+212275.0668788301 3.9813111 1103.3752
+212276.0668789344 3.9812324 1103.2963
+212277.0668790387 3.9813111 1103.3357
+212278.066879143 3.9812717 1103.3949
+212279.0668792473 3.9813504 1103.4542
+212280.0668793516 3.9813111 1103.316
+212281.0668794559 3.9812717 1103.2963
+212282.0668795602 3.9812717 1103.3357
+212283.0668796645 3.98139 1103.3949
+212284.0668797689 3.9813504 1103.2963
+212285.0668798732 3.9813504 1103.3555
+212286.0668799775 3.9813111 1103.3752
+212287.0668800818 3.98139 1103.3555
+212288.0668801861 3.9813504 1103.316
+212289.0668802904 3.9814687 1103.4147
+212290.0668803947 3.9814687 1103.2963
+212291.066880499 3.9814687 1103.2567
+212292.0668806033 3.98139 1103.3555
+212293.0668807076 3.9813504 1103.2963
+212294.0668808119 3.9815474 1103.2963
+212295.0668809162 3.981508 1103.316
+212296.0668810206 3.9813111 1103.3752
+212297.0668811249 3.9814687 1103.2765
+212298.0668812292 3.9815474 1103.3752
+212299.0668813335 3.981626 1103.3752
+212300.0668814378 3.9816654 1103.2963
+212301.0668815421 3.981626 1103.3752
+212302.0668816464 3.9815474 1103.2765
+212303.0668817507 3.981705 1103.2567
+212304.066881855 3.981705 1103.3357
+212305.0668819593 3.981705 1103.3555
+212306.0668820636 3.981705 1103.4147
+212307.0668821679 3.9815474 1103.316
+212308.0668822723 3.981626 1103.3752
+212309.0668823766 3.9816654 1103.474
+212310.0668824809 3.981705 1103.2765
+212311.0668825852 3.981705 1103.4344
+212312.0668826895 3.9817443 1103.3949
+212313.0668827938 3.9817443 1103.3949
+212314.0668828981 3.9816654 1103.3949
+212315.0668830024 3.9817443 1103.474
+212316.0668831067 3.981823 1103.3949
+212317.066883211 3.9817443 1103.3357
+212318.0668833153 3.9819016 1103.3555
+212319.0668834196 3.981705 1103.3949
+212320.0668835239 3.9817443 1103.3752
+212321.0668836283 3.981823 1103.3752
+212322.0668837326 3.9817836 1103.4344
+212323.0668838369 3.9817836 1103.3752
+212324.0668839412 3.9818623 1103.316
+212325.0668840455 3.9817443 1103.3555
+212326.0668841498 3.9817836 1103.3357
+212327.0668842541 3.981941 1103.4147
+212328.0668843584 3.981823 1103.4147
+212329.0668844627 3.981941 1103.316
+212330.066884567 3.9819016 1103.316
+212331.0668846713 3.9820592 1103.3752
+212332.0668847756 3.9819016 1103.3555
+212333.06688488 3.981941 1103.2765
+212334.0668849843 3.9819803 1103.3949
+212335.0668850886 3.9819016 1103.3357
+212336.0668851929 3.981823 1103.3752
+212337.0668852972 3.981941 1103.3752
+212338.0668854015 3.9821773 1103.4542
+212339.0668855058 3.9820199 1103.316
+212340.0668856101 3.9820592 1103.316
+212341.0668857144 3.9820592 1103.2765
+212342.0668858187 3.9822166 1103.316
+212343.066885923 3.9821379 1103.3555
+212344.0668860273 3.9821379 1103.2369
+212345.0668861317 3.9821773 1103.3555
+212346.066886236 3.9822953 1103.2567
+212347.0668863403 3.9820986 1103.3555
+212348.0668864446 3.9822166 1103.316
+212349.0668865489 3.9822953 1103.3555
+212350.0668866532 3.9821379 1103.316
+212351.0668867575 3.9822166 1103.3357
+212352.0668868618 3.9822559 1103.3555
+212353.0668869661 3.9821379 1103.316
+212354.0668870704 3.9822953 1103.3357
+212355.0668871747 3.9822559 1103.3555
+212356.066887279 3.9822953 1103.3357
+212357.0668873833 3.9822559 1103.3555
+212358.0668874877 3.9822166 1103.1975
+212359.066887592 3.9822559 1103.3752
+212360.0668876963 3.9822166 1103.3357
+212361.0668878006 3.9822953 1103.3752
+212362.0668879049 3.9823742 1103.3555
+212363.0668880092 3.9822559 1103.3357
+212364.0668881135 3.9823349 1103.3555
+212365.0668882178 3.9824135 1103.3752
+212366.0668883221 3.9823742 1103.3357
+212367.0668884264 3.9822953 1103.4147
+212368.0668885307 3.9823349 1103.4344
+212369.066888635 3.9823742 1103.316
+212370.0668887394 3.9825315 1103.2567
+212371.0668888437 3.9824135 1103.3555
+212372.066888948 3.9824529 1103.3357
+212373.0668890523 3.9824135 1103.3357
+212374.0668891566 3.9824922 1103.3357
+212375.0668892609 3.9824529 1103.3555
+212376.0668893652 3.9824922 1103.3949
+212377.0668894695 3.9825315 1103.3357
+212378.0668895738 3.9825315 1103.3357
+212379.0668896781 3.9824529 1103.2963
+212380.0668897824 3.9824922 1103.3555
+212381.0668898867 3.9826102 1103.3752
+212382.0668899911 3.9825315 1103.474
+212383.0668900954 3.9825315 1103.2963
+212384.0668901997 3.9826102 1103.3555
+212385.066890304 3.9825709 1103.3357
+212386.0668904083 3.9826891 1103.3752
+212387.0668905126 3.9826498 1103.3949
+212388.0668906169 3.9825709 1103.4542
+212389.0668907212 3.9825315 1103.2963
+212390.0668908255 3.9826498 1103.2963
+212391.0668909298 3.9828072 1103.3555
+212392.0668910341 3.9825709 1103.3555
+212393.0668911384 3.9827285 1103.3555
+212394.0668912428 3.9826891 1103.3949
+212395.0668913471 3.9827678 1103.3357
+212396.0668914514 3.9827678 1103.3357
+212397.0668915557 3.9826891 1103.4344
+212398.06689166 3.9828465 1103.3949
+212399.0668917643 3.9828072 1103.3357
+212400.0668918686 3.9827678 1103.3357
+212401.0668919729 3.9828072 1103.4147
+212402.0668920772 3.9827285 1103.2567
+212403.0668921815 3.9827285 1103.4147
+212404.0668922858 3.9827678 1103.2963
+212405.0668923901 3.9828072 1103.316
+212406.0668924944 3.9828858 1103.3357
+212407.0668925988 3.9828072 1103.2963
+212408.0668927031 3.9828072 1103.3949
+212409.0668928074 3.9828465 1103.316
+212410.0668929117 3.9830041 1103.3555
+212411.066893016 3.9830041 1103.4147
+212412.0668931203 3.9829254 1103.4344
+212413.0668932246 3.9829254 1103.3949
+212414.0668933289 3.9829648 1103.2172
+212415.0668934332 3.9830828 1103.2963
+212416.0668935375 3.9830434 1103.2765
+212417.0668936418 3.9829254 1103.4344
+212418.0668937461 3.9829648 1103.3555
+212419.0668938505 3.9830041 1103.2963
+212420.0668939548 3.9830434 1103.2963
+212421.0668940591 3.9830434 1103.2963
+212422.0668941634 3.9830828 1103.3555
+212423.0668942677 3.9830828 1103.2963
+212424.066894372 3.9830434 1103.3752
+212425.0668944763 3.9830434 1103.2369
+212426.0668945806 3.9830041 1103.4938
+212427.0668946849 3.9831221 1103.3949
+212428.0668947892 3.9830828 1103.3949
+212429.0668948935 3.9831614 1103.3752
+212430.0668949978 3.9831614 1103.316
+212431.0668951022 3.9830828 1103.316
+212432.0668952065 3.9832008 1103.2765
+212433.0668953108 3.9831614 1103.3555
+212434.0668954151 3.9831614 1103.3949
+212435.0668955194 3.9831614 1103.3949
+212436.0668956237 3.9832008 1103.3357
+212437.066895728 3.9832008 1103.3949
+212438.0668958323 3.9832404 1103.316
+212439.0668959366 3.983319 1103.2369
+212440.0668960409 3.9832404 1103.3357
+212441.0668961452 3.983319 1103.3357
+212442.0668962495 3.9833584 1103.316
+212443.0668963538 3.9833977 1103.3357
+212444.0668964582 3.983319 1103.4147
+212445.0668965625 3.9833584 1103.3949
+212446.0668966668 3.9833977 1103.2963
+212447.0668967711 3.9832797 1103.3949
+212448.0668968754 3.9833977 1103.3555
+212449.0668969797 3.9833977 1103.4542
+212450.066897084 3.9834764 1103.4344
+212451.0668971883 3.9834371 1103.3357
+212452.0668972926 3.9833584 1103.2765
+212453.0668973969 3.9834764 1103.3752
+212454.0668975012 3.9835553 1103.316
+212455.0668976055 3.9835157 1103.2765
+212456.0668977099 3.9833584 1103.3555
+212457.0668978142 3.9835553 1103.316
+212458.0668979185 3.9833977 1103.3555
+212459.0668980228 3.9835157 1103.3752
+212460.0668981271 3.9834764 1103.3949
+212461.0668982314 3.9834764 1103.3555
+212462.0668983357 3.9835553 1103.3357
+212463.06689844 3.9835157 1103.2963
+212464.0668985443 3.9834764 1103.2963
+212465.0668986486 3.9834764 1103.3357
+212466.0668987529 3.9836733 1103.2765
+212467.0668988572 3.9837127 1103.4147
+212468.0668989616 3.9836733 1103.2963
+212469.0668990659 3.9836733 1103.3555
+212470.0668991702 3.983634 1103.3357
+212471.0668992745 3.9835947 1103.2765
+212472.0668993788 3.9837127 1103.4147
+212473.0668994831 3.9837127 1103.2963
+212474.0668995874 3.9836733 1103.2963
+212475.0668996917 3.9837914 1103.316
+212476.066899796 3.983752 1103.3357
+212477.0668999003 3.9837127 1103.2963
+212478.0669000046 3.9837127 1103.2567
+212479.0669001089 3.983752 1103.316
+212480.0669002132 3.983752 1103.3357
+212481.0669003176 3.9837914 1103.2963
+212482.0669004219 3.9837914 1103.316
+212483.0669005262 3.9838307 1103.2963
+212484.0669006305 3.983752 1103.316
+212485.0669007348 3.9838307 1103.3555
+212486.0669008391 3.9838307 1103.3949
+212487.0669009434 3.9838703 1103.3357
+212488.0669010477 3.9838307 1103.3555
+212489.066901152 3.9838703 1103.4344
+212490.0669012563 3.9839883 1103.3949
+212491.0669013606 3.9838703 1103.3752
+212492.0669014649 3.9839489 1103.3555
+212493.0669015693 3.9838703 1103.2765
+212494.0669016736 3.9839883 1103.2963
+212495.0669017779 3.9839489 1103.3555
+212496.0669018822 3.9839096 1103.3357
+212497.0669019865 3.9839489 1103.3555
+212498.0669020908 3.9840276 1103.4147
+212499.0669021951 3.9840276 1103.3949
+212500.0669022994 3.984067 1103.3949
+212501.0669024037 3.984067 1103.2765
+212502.066902508 3.9839883 1103.3949
+212503.0669026123 3.9841063 1103.3752
+212504.0669027166 3.984067 1103.316
+212505.066902821 3.9840276 1103.316
+212506.0669029253 3.9841456 1103.3555
+212507.0669030296 3.9842246 1103.316
+212508.0669031339 3.9841456 1103.2765
+212509.0669032382 3.9841063 1103.3752
+212510.0669033425 3.984067 1103.3949
+212511.0669034468 3.9841063 1103.3752
+212512.0669035511 3.9842639 1103.3555
+212513.0669036554 3.9842246 1103.3949
+212514.0669037597 3.9842639 1103.3555
+212515.066903864 3.9842246 1103.3357
+212516.0669039683 3.9841456 1103.3555
+212517.0669040727 3.9841456 1103.3357
+212518.066904177 3.9843426 1103.3357
+212519.0669042813 3.9841852 1103.3357
+212520.0669043856 3.9841852 1103.316
+212521.0669044899 3.9845002 1103.3752
+212522.0669045942 3.9843032 1103.4147
+212523.0669046985 3.9843426 1103.3949
+212524.0669048028 3.9842246 1103.3357
+212525.0669049071 3.9843819 1103.2963
+212526.0669050114 3.9843426 1103.3949
+212527.0669051157 3.9844606 1103.3555
+212528.06690522 3.9843819 1103.316
+212529.0669053243 3.9843426 1103.3949
+212530.0669054287 3.9844213 1103.4147
+212531.066905533 3.9843426 1103.316
+212532.0669056373 3.9844213 1103.3555
+212533.0669057416 3.9843426 1103.4147
+212534.0669058459 3.9843426 1103.4147
+212535.0669059502 3.9845002 1103.2765
+212536.0669060545 3.9844606 1103.3949
+212537.0669061588 3.9844213 1103.316
+212538.0669062631 3.9845002 1103.3357
+212539.0669063674 3.9844606 1103.3949
+212540.0669064717 3.9845395 1103.474
+212541.066906576 3.9845788 1103.3752
+212542.0669066804 3.9844606 1103.3555
+212543.0669067847 3.9845395 1103.316
+212544.066906889 3.9845002 1103.3949
+212545.0669069933 3.9845788 1103.3555
+212546.0669070976 3.9846182 1103.3357
+212547.0669072019 3.9846969 1103.316
+212548.0669073062 3.9846182 1103.2963
+212549.0669074105 3.9847362 1103.3555
+212550.0669075148 3.9845395 1103.316
+212551.0669076191 3.9846575 1103.4147
+212552.0669077234 3.9846575 1103.3949
+212553.0669078277 3.9846969 1103.316
+212554.0669079321 3.9847362 1103.3752
+212555.0669080364 3.9848151 1103.4344
+212556.0669081407 3.9846182 1103.3555
+212557.066908245 3.9846969 1103.4344
+212558.0669083493 3.9847758 1103.2765
+212559.0669084536 3.9848151 1103.3752
+212560.0669085579 3.9847758 1103.3949
+212561.0669086622 3.9848151 1103.2963
+212562.0669087665 3.9848151 1103.2963
+212563.0669088708 3.9848938 1103.2963
+212564.0669089751 3.9848151 1103.3752
+212565.0669090794 3.9848545 1103.2963
+212566.0669091837 3.9848938 1103.2963
+212567.0669092881 3.9848545 1103.2963
+212568.0669093924 3.9848151 1103.3752
+212569.0669094967 3.9848938 1103.4147
+212570.066909601 3.9849331 1103.3357
+212571.0669097053 3.9848938 1103.3357
+212572.0669098096 3.9849331 1103.3357
+212573.0669099139 3.9849331 1103.3357
+212574.0669100182 3.9850118 1103.3949
+212575.0669101225 3.9850512 1103.474
+212576.0669102268 3.9848938 1103.2369
+212577.0669103311 3.9850118 1103.3555
+212578.0669104354 3.9849331 1103.2963
+212579.0669105398 3.9850907 1103.3752
+212580.0669106441 3.9850118 1103.3555
+212581.0669107484 3.9850118 1103.316
+212582.0669108527 3.9850512 1103.2963
+212583.066910957 3.9850512 1103.2765
+212584.0669110613 3.9850118 1103.316
+212585.0669111656 3.9851694 1103.3555
+212586.0669112699 3.9850907 1103.3357
+212587.0669113742 3.9851301 1103.3357
+212588.0669114785 3.9850907 1103.3949
+212589.0669115828 3.9851301 1103.3555
+212590.0669116871 3.9851301 1103.3357
+212591.0669117915 3.9851301 1103.3949
+212592.0669118958 3.9851301 1103.4344
+212593.0669120001 3.9852481 1103.3357
+212594.0669121044 3.9852481 1103.316
+212595.0669122087 3.9852087 1103.3555
+212596.066912313 3.9852874 1103.4344
+212597.0669124173 3.9852481 1103.4147
+212598.0669125216 3.9851694 1103.3357
+212599.0669126259 3.9852874 1103.316
+212600.0669127302 3.9852087 1103.3555
+212601.0669128345 3.9852481 1103.316
+212602.0669129388 3.9852481 1103.3555
+212603.0669130431 3.9853268 1103.3555
+212604.0669131475 3.9852874 1103.2567
+212605.0669132518 3.9854057 1103.3949
+212606.0669133561 3.9852874 1103.316
+212607.0669134604 3.9853268 1103.2369
+212608.0669135647 3.9852874 1103.3949
+212609.066913669 3.9853661 1103.2963
+212610.0669137733 3.9853661 1103.316
+212611.0669138776 3.9854057 1103.4147
+212612.0669139819 3.9854057 1103.3752
+212613.0669140862 3.9853661 1103.316
+212614.0669141905 3.9855237 1103.2963
+212615.0669142948 3.9854057 1103.3357
+212616.0669143992 3.9854844 1103.3555
+212617.0669145035 3.985445 1103.3752
+212618.0669146078 3.9855237 1103.4147
+212619.0669147121 3.9854844 1103.3752
+212620.0669148164 3.9856024 1103.316
+212621.0669149207 3.985563 1103.3357
+212622.066915025 3.9854844 1103.3357
+212623.0669151293 3.9854844 1103.3357
+212624.0669152336 3.9856024 1103.2567
+212625.0669153379 3.9855237 1103.3752
+212626.0669154422 3.985563 1103.3555
+212627.0669155465 3.9856417 1103.3752
+212628.0669156509 3.985563 1103.3555
+212629.0669157552 3.9857993 1103.3357
+212630.0669158595 3.9857206 1103.3357
+212631.0669159638 3.9856417 1103.3555
+212632.0669160681 3.9857206 1103.2963
+212633.0669161724 3.98576 1103.3357
+212634.0669162767 3.9857206 1103.4344
+212635.066916381 3.9856811 1103.3555
+212636.0669164853 3.9857206 1103.2369
+212637.0669165896 3.9857206 1103.2765
+212638.0669166939 3.9857206 1103.3949
+212639.0669167982 3.9857206 1103.3555
+212640.0669169026 3.985878 1103.3357
+212641.0669170069 3.9858387 1103.2172
+212642.0669171112 3.9858387 1103.3949
+212643.0669172155 3.9857993 1103.3555
+212644.0669173198 3.9857993 1103.3555
+212645.0669174241 3.9859173 1103.3752
+212646.0669175284 3.985878 1103.2765
+212647.0669176327 3.9857993 1103.3949
+212648.066917737 3.9859173 1103.4344
+212649.0669178413 3.9859173 1103.3357
+212650.0669179456 3.9858387 1103.3357
+212651.0669180499 3.9860749 1103.4147
+212652.0669181542 3.9859567 1103.3357
+212653.0669182586 3.9859567 1103.3555
+212654.0669183629 3.9859567 1103.3752
+212655.0669184672 3.985996 1103.3357
+212656.0669185715 3.9859567 1103.3357
+212657.0669186758 3.9859567 1103.2765
+212658.0669187801 3.9860749 1103.3949
+212659.0669188844 3.9861143 1103.3752
+212660.0669189887 3.9860356 1103.3357
+212661.066919093 3.985996 1103.2765
+212662.0669191973 3.9860356 1103.4147
+212663.0669193016 3.9860749 1103.3949
+212664.0669194059 3.9860356 1103.316
+212665.0669195103 3.9861143 1103.3752
+212666.0669196146 3.9861536 1103.2963
+212667.0669197189 3.9861143 1103.3555
+212668.0669198232 3.9861929 1103.3555
+212669.0669199275 3.9861143 1103.3357
+212670.0669200318 3.9861536 1103.2567
+212671.0669201361 3.9862323 1103.3555
+212672.0669202404 3.9861929 1103.2765
+212673.0669203447 3.9861929 1103.3949
+212674.066920449 3.9862323 1103.4147
+212675.0669205533 3.9862323 1103.316
+212676.0669206576 3.9862323 1103.3357
+212677.066920762 3.986311 1103.3949
+212678.0669208663 3.986311 1103.3357
+212679.0669209706 3.9863505 1103.3357
+212680.0669210749 3.9862716 1103.4147
+212681.0669211792 3.9864292 1103.316
+212682.0669212835 3.9863899 1103.3949
+212683.0669213878 3.9864686 1103.3949
+212684.0669214921 3.986311 1103.3357
+212685.0669215964 3.986311 1103.316
+212686.0669217007 3.9864292 1103.3357
+212687.066921805 3.9863899 1103.4344
+212688.0669219093 3.9863505 1103.2765
+212689.0669220136 3.9864686 1103.3555
+212690.066922118 3.9864292 1103.2765
+212691.0669222223 3.9865079 1103.2963
+212692.0669223266 3.9863505 1103.316
+212693.0669224309 3.9864686 1103.3949
+212694.0669225352 3.9864686 1103.3949
+212695.0669226395 3.9864686 1103.3752
+212696.0669227438 3.9865079 1103.3555
+212697.0669228481 3.9866261 1103.3752
+212698.0669229524 3.9864686 1103.2963
+212699.0669230567 3.9865079 1103.3949
+212700.066923161 3.9864686 1103.3752
+212701.0669232653 3.9865472 1103.3752
+212702.0669233697 3.9865866 1103.3555
+212703.066923474 3.9866261 1103.316
+212704.0669235783 3.9867442 1103.316
+212705.0669236826 3.9865866 1103.3752
+212706.0669237869 3.9867442 1103.2765
+212707.0669238912 3.9865866 1103.2963
+212708.0669239955 3.9866655 1103.3752
+212709.0669240998 3.9867048 1103.2963
+212710.0669242041 3.9867442 1103.3555
+212711.0669243084 3.9867442 1103.3555
+212712.0669244127 3.9867835 1103.4147
+212713.066924517 3.9866655 1103.3555
+212714.0669246214 3.9867442 1103.316
+212715.0669247257 3.9867442 1103.3752
+212716.06692483 3.9867835 1103.4147
+212717.0669249343 3.9868228 1103.3949
+212718.0669250386 3.9868228 1103.3752
+212719.0669251429 3.9868228 1103.4344
+212720.0669252472 3.9869015 1103.2963
+212721.0669253515 3.9867835 1103.316
+212722.0669254558 3.9869411 1103.3357
+212723.0669255601 3.9868622 1103.3357
+212724.0669256644 3.9868228 1103.4147
+212725.0669257687 3.9869015 1103.3752
+212726.066925873 3.9870591 1103.2567
+212727.0669259774 3.9868622 1103.3949
+212728.0669260817 3.9868228 1103.3949
+212729.066926186 3.9869804 1103.2963
+212730.0669262903 3.9868228 1103.3357
+212731.0669263946 3.9869411 1103.3555
+212732.0669264989 3.9870591 1103.3752
+212733.0669266032 3.9869015 1103.3357
+212734.0669267075 3.9870198 1103.2765
+212735.0669268118 3.9870591 1103.3752
+212736.0669269161 3.9870591 1103.316
+212737.0669270204 3.9871378 1103.2963
+212738.0669271247 3.9870591 1103.3555
+212739.0669272291 3.9870198 1103.4147
+212740.0669273334 3.9870198 1103.3949
+212741.0669274377 3.9870591 1103.3357
+212742.066927542 3.9870591 1103.4542
+212743.0669276463 3.9872561 1103.3949
+212744.0669277506 3.9870985 1103.3752
+212745.0669278549 3.9872165 1103.4147
+212746.0669279592 3.9871771 1103.3357
+212747.0669280635 3.9870591 1103.3752
+212748.0669281678 3.9872165 1103.316
+212749.0669282721 3.9871378 1103.3752
+212750.0669283764 3.9872561 1103.3752
+212751.0669284808 3.9872165 1103.2963
+212752.0669285851 3.9871378 1103.2963
+212753.0669286894 3.9872165 1103.3752
+212754.0669287937 3.9873347 1103.2567
+212755.066928898 3.9872561 1103.3752
+212756.0669290023 3.9872165 1103.2567
+212757.0669291066 3.9874527 1103.3752
+212758.0669292109 3.9873741 1103.2963
+212759.0669293152 3.9873347 1103.3555
+212760.0669294195 3.9873741 1103.3752
+212761.0669295238 3.9874527 1103.4344
+212762.0669296281 3.9872954 1103.3555
+212763.0669297324 3.9873347 1103.2765
+212764.0669298368 3.9874134 1103.3555
+212765.0669299411 3.9873741 1103.3555
+212766.0669300454 3.9873347 1103.3949
+212767.0669301497 3.9874527 1103.3555
+212768.066930254 3.9873347 1103.3949
+212769.0669303583 3.9874134 1103.3357
+212770.0669304626 3.987571 1103.3949
+212771.0669305669 3.9874527 1103.4147
+212772.0669306712 3.9875314 1103.2765
+212773.0669307755 3.9874527 1103.3357
+212774.0669308798 3.9874921 1103.3555
+212775.0669309841 3.9874921 1103.316
+212776.0669310885 3.987571 1103.4542
+212777.0669311928 3.9874921 1103.4147
+212778.0669312971 3.9874921 1103.3949
+212779.0669314014 3.987571 1103.3357
+212780.0669315057 3.987571 1103.2963
+212781.06693161 3.9876103 1103.316
+212782.0669317143 3.987689 1103.3949
+212783.0669318186 3.987571 1103.4344
+212784.0669319229 3.9876497 1103.3357
+212785.0669320272 3.9876103 1103.4147
+212786.0669321315 3.9876497 1103.2765
+212787.0669322358 3.9876497 1103.3752
+212788.0669323402 3.987689 1103.3555
+212789.0669324445 3.9876103 1103.316
+212790.0669325488 3.987689 1103.316
+212791.0669326531 3.9878464 1103.2963
+212792.0669327574 3.9877677 1103.3752
+212793.0669328617 3.9877677 1103.3752
+212794.066932966 3.9877284 1103.3555
+212795.0669330703 3.9878464 1103.3555
+212796.0669331746 3.9877677 1103.3555
+212797.0669332789 3.9878464 1103.316
+212798.0669333832 3.987886 1103.2567
+212799.0669334875 3.987807 1103.2567
+212800.0669335919 3.9878464 1103.3752
+212801.0669336962 3.987807 1103.4344
+212802.0669338005 3.9878464 1103.3949
+212803.0669339048 3.9877677 1103.3357
+212804.0669340091 3.9879253 1103.3357
+212805.0669341134 3.987886 1103.3357
+212806.0669342177 3.9879253 1103.4147
+212807.066934322 3.9879253 1103.1975
+212808.0669344263 3.9880826 1103.3555
+212809.0669345306 3.987886 1103.316
+212810.0669346349 3.9880826 1103.3752
+212811.0669347392 3.9879646 1103.3555
+212812.0669348435 3.988004 1103.2963
+212813.0669349479 3.9879646 1103.3949
+212814.0669350522 3.9880433 1103.3555
+212815.0669351565 3.988004 1103.3357
+212816.0669352608 3.9880433 1103.4344
+212817.0669353651 3.9880433 1103.2963
+212818.0669354694 3.9881613 1103.3357
+212819.0669355737 3.9880826 1103.3752
+212820.066935678 3.988122 1103.3555
+212821.0669357823 3.9881613 1103.316
+212822.0669358866 3.9882009 1103.2567
+212823.0669359909 3.9882009 1103.2963
+212824.0669360952 3.9880826 1103.2567
+212825.0669361996 3.9881613 1103.316
+212826.0669363039 3.9882402 1103.3949
+212827.0669364082 3.9880433 1103.3752
+212828.0669365125 3.9882796 1103.3949
+212829.0669366168 3.9883189 1103.316
+212830.0669367211 3.9882402 1103.3357
+212831.0669368254 3.9883189 1103.2963
+212832.0669369297 3.9882796 1103.4344
+212833.066937034 3.9882796 1103.4147
+212834.0669371383 3.9883189 1103.316
+212835.0669372426 3.9882796 1103.3949
+212836.0669373469 3.9883189 1103.316
+212837.0669374513 3.9883583 1103.3555
+212838.0669375556 3.9882796 1103.2963
+212839.0669376599 3.9883189 1103.316
+212840.0669377642 3.9883189 1103.2963
+212841.0669378685 3.9883976 1103.4147
+212842.0669379728 3.9883976 1103.3752
+212843.0669380771 3.9883583 1103.4147
+212844.0669381814 3.9884369 1103.3949
+212845.0669382857 3.9883976 1103.2765
+212846.06693839 3.9884369 1103.3555
+212847.0669384943 3.9882796 1103.4147
+212848.0669385986 3.9885159 1103.2765
+212849.0669387029 3.9885945 1103.3555
+212850.0669388073 3.9885159 1103.3752
+212851.0669389116 3.9885159 1103.3752
+212852.0669390159 3.9885159 1103.4542
+212853.0669391202 3.9885159 1103.3949
+212854.0669392245 3.9885552 1103.3949
+212855.0669393288 3.9885945 1103.316
+212856.0669394331 3.9886339 1103.2765
+212857.0669395374 3.9885552 1103.2765
+212858.0669396417 3.9886339 1103.2369
+212859.066939746 3.9886339 1103.316
+212860.0669398503 3.9886732 1103.2567
+212861.0669399546 3.9886339 1103.3357
+212862.066940059 3.9887125 1103.2765
+212863.0669401633 3.9886732 1103.2765
+212864.0669402676 3.9887519 1103.3949
+212865.0669403719 3.9887519 1103.2963
+212866.0669404762 3.9887125 1103.4344
+212867.0669405805 3.9887915 1103.2963
+212868.0669406848 3.9886339 1103.3752
+212869.0669407891 3.9888701 1103.316
+212870.0669408934 3.9887915 1103.3752
+212871.0669409977 3.9887125 1103.3555
+212872.066941102 3.9887915 1103.2765
+212873.0669412063 3.9887125 1103.4542
+212874.0669413107 3.9888701 1103.3555
+212875.066941415 3.9889095 1103.2765
+212876.0669415193 3.9887915 1103.3949
+212877.0669416236 3.9888308 1103.3555
+212878.0669417279 3.9889488 1103.316
+212879.0669418322 3.9890668 1103.3555
+212880.0669419365 3.9889488 1103.2765
+212881.0669420408 3.9889095 1103.316
+212882.0669421451 3.9889095 1103.316
+212883.0669422494 3.9889095 1103.3555
+212884.0669423537 3.9889095 1103.3752
+212885.066942458 3.9889882 1103.3555
+212886.0669425623 3.9890275 1103.3357
+212887.0669426667 3.9889488 1103.316
+212888.066942771 3.9889488 1103.316
+212889.0669428753 3.9890275 1103.3555
+212890.0669429796 3.9890275 1103.2369
+212891.0669430839 3.9889488 1103.2963
+212892.0669431882 3.9891064 1103.3949
+212893.0669432925 3.9890275 1103.316
+212894.0669433968 3.9891064 1103.4344
+212895.0669435011 3.9891851 1103.316
+212896.0669436054 3.9891851 1103.2567
+212897.0669437097 3.9891064 1103.3555
+212898.066943814 3.9891458 1103.3357
+212899.0669439184 3.9891851 1103.3752
+212900.0669440227 3.9891458 1103.3357
+212901.066944127 3.9891851 1103.2963
+212902.0669442313 3.9893031 1103.3357
+212903.0669443356 3.9891851 1103.3357
+212904.0669444399 3.9892244 1103.316
+212905.0669445442 3.9892244 1103.2963
+212906.0669446485 3.9892244 1103.3752
+212907.0669447528 3.9891851 1103.4344
+212908.0669448571 3.9892244 1103.316
+212909.0669449614 3.9891851 1103.3555
+212910.0669450657 3.9892638 1103.2963
+212911.0669451701 3.9893425 1103.3555
+212912.0669452744 3.9892638 1103.3357
+212913.0669453787 3.9894214 1103.3357
+212914.066945483 3.9893818 1103.3555
+212915.0669455873 3.9893425 1103.4344
+212916.0669456916 3.9895787 1103.4147
+212917.0669457959 3.9893818 1103.4147
+212918.0669459002 3.9893425 1103.3357
+212919.0669460045 3.9894214 1103.3357
+212920.0669461088 3.9894214 1103.3752
+212921.0669462131 3.9894214 1103.3555
+212922.0669463174 3.9893818 1103.3357
+212923.0669464218 3.9894214 1103.2765
+212924.0669465261 3.9893818 1103.3752
+212925.0669466304 3.9895 1103.3949
+212926.0669467347 3.9893818 1103.4147
+212927.066946839 3.9894607 1103.3752
+212928.0669469433 3.9895787 1103.3357
+212929.0669470476 3.9895787 1103.2963
+212930.0669471519 3.9895787 1103.3357
+212931.0669472562 3.9895394 1103.3752
+212932.0669473605 3.9895394 1103.4147
+212933.0669474648 3.9895787 1103.2963
+212934.0669475691 3.9895394 1103.3555
+212935.0669476734 3.9895394 1103.2963
+212936.0669477778 3.9896181 1103.3555
+212937.0669478821 3.9896967 1103.4147
+212938.0669479864 3.9896181 1103.316
+212939.0669480907 3.9895787 1103.3752
+212940.066948195 3.9896181 1103.3357
+212941.0669482993 3.9897757 1103.2765
+212942.0669484036 3.9898543 1103.2963
+212943.0669485079 3.9896181 1103.3752
+212944.0669486122 3.9896574 1103.316
+212945.0669487165 3.9897363 1103.3357
+212946.0669488208 3.9897363 1103.3752
+212947.0669489251 3.9898543 1103.3357
+212948.0669490295 3.989815 1103.3555
+212949.0669491338 3.989815 1103.2765
+212950.0669492381 3.9897363 1103.3555
+212951.0669493424 3.9898937 1103.4147
+212952.0669494467 3.9898937 1103.2963
+212953.066949551 3.9898543 1103.3752
+212954.0669496553 3.9898543 1103.2963
+212955.0669497596 3.9898937 1103.3555
+212956.0669498639 3.9898937 1103.4147
+212957.0669499682 3.9898543 1103.4344
+212958.0669500725 3.9898937 1103.3555
+212959.0669501768 3.9900117 1103.3752
+212960.0669502812 3.989933 1103.3555
+212961.0669503855 3.9898543 1103.2765
+212962.0669504898 3.9899724 1103.3949
+212963.0669505941 3.9899724 1103.3949
+212964.0669506984 3.9900117 1103.2765
+212965.0669508027 3.9900117 1103.316
+212966.066950907 3.9900117 1103.3357
+212967.0669510113 3.9899724 1103.4344
+212968.0669511156 3.9900513 1103.316
+212969.0669512199 3.9900117 1103.4147
+212970.0669513242 3.9900513 1103.316
+212971.0669514285 3.9900117 1103.3752
+212972.0669515328 3.9901299 1103.4147
+212973.0669516372 3.9901299 1103.2172
+212974.0669517415 3.9900513 1103.2963
+212975.0669518458 3.9901299 1103.3752
+212976.0669519501 3.9900906 1103.3357
+212977.0669520544 3.990248 1103.316
+212978.0669521587 3.9900513 1103.3555
+212979.066952263 3.9902086 1103.316
+212980.0669523673 3.9901299 1103.2963
+212981.0669524716 3.990248 1103.3357
+212982.0669525759 3.9902086 1103.3357
+212983.0669526802 3.9903269 1103.3555
+212984.0669527845 3.9902873 1103.4147
+212985.0669528889 3.9903269 1103.4147
+212986.0669529932 3.9902873 1103.3555
+212987.0669530975 3.990248 1103.2963
+212988.0669532018 3.9902873 1103.3752
+212989.0669533061 3.9903269 1103.3949
+212990.0669534104 3.9902873 1103.2963
+212991.0669535147 3.9903269 1103.3752
+212992.066953619 3.9903662 1103.3357
+212993.0669537233 3.9904056 1103.3949
+212994.0669538276 3.9903662 1103.3752
+212995.0669539319 3.9904056 1103.3752
+212996.0669540362 3.9903662 1103.2172
+212997.0669541406 3.9904056 1103.2963
+212998.0669542449 3.9903269 1103.3752
+212999.0669543492 3.9904842 1103.3357
+213000.0669544535 3.9904056 1103.316
+213001.0669545578 3.9904449 1103.3555
+213002.0669546621 3.9904449 1103.3555
+213003.0669547664 3.9904842 1103.3357
+213004.0669548707 3.9905236 1103.3949
+213005.066954975 3.9904449 1103.3357
+213006.0669550793 3.9904842 1103.4147
+213007.0669551836 3.9905236 1103.2963
+213008.0669552879 3.9905236 1103.4147
+213009.0669553922 3.9905629 1103.3555
+213010.0669554966 3.9905629 1103.4147
+213011.0669556009 3.9906023 1103.3555
+213012.0669557052 3.9906023 1103.3555
+213013.0669558095 3.9906812 1103.316
+213014.0669559138 3.9906023 1103.2963
+213015.0669560181 3.9906418 1103.2172
+213016.0669561224 3.9907598 1103.3752
+213017.0669562267 3.9906812 1103.2963
+213018.066956331 3.9906812 1103.3752
+213019.0669564353 3.9907598 1103.3555
+213020.0669565396 3.9906812 1103.316
+213021.0669566439 3.9907205 1103.3357
+213022.0669567483 3.9907992 1103.3752
+213023.0669568526 3.9907992 1103.3752
+213024.0669569569 3.9907992 1103.2765
+213025.0669570612 3.9907992 1103.316
+213026.0669571655 3.9908385 1103.316
+213027.0669572698 3.9908385 1103.2963
+213028.0669573741 3.9908385 1103.2963
+213029.0669574784 3.9908385 1103.3555
+213030.0669575827 3.9908385 1103.3555
+213031.066957687 3.9908779 1103.3357
+213032.0669577913 3.9908385 1103.3357
+213033.0669578956 3.9908385 1103.3752
+213034.066958 3.9908779 1103.3752
+213035.0669581043 3.9909961 1103.3357
+213036.0669582086 3.9909568 1103.2963
+213037.0669583129 3.9910748 1103.3752
+213038.0669584172 3.9909961 1103.4344
+213039.0669585215 3.9909172 1103.2765
+213040.0669586258 3.9909568 1103.3357
+213041.0669587301 3.9910748 1103.3752
+213042.0669588344 3.9910748 1103.2765
+213043.0669589387 3.9909568 1103.2963
+213044.066959043 3.9909961 1103.3357
+213045.0669591473 3.9911141 1103.2765
+213046.0669592517 3.9909961 1103.3555
+213047.066959356 3.9910748 1103.3752
+213048.0669594603 3.9911141 1103.3752
+213049.0669595646 3.9911535 1103.3357
+213050.0669596689 3.9911928 1103.2963
+213051.0669597732 3.9911535 1103.3949
+213052.0669598775 3.9911141 1103.3752
+213053.0669599818 3.9911535 1103.4147
+213054.0669600861 3.9911141 1103.3752
+213055.0669601904 3.9911535 1103.3949
+213056.0669602947 3.9911535 1103.3555
+213057.066960399 3.9911535 1103.3752
+213058.0669605033 3.9912322 1103.316
+213059.0669606077 3.9911535 1103.2963
+213060.066960712 3.9912322 1103.3752
+213061.0669608163 3.9912322 1103.3949
+213062.0669609206 3.9912322 1103.316
+213063.0669610249 3.9913504 1103.3949
+213064.0669611292 3.9913111 1103.3357
+213065.0669612335 3.9913898 1103.3357
+213066.0669613378 3.9913111 1103.3949
+213067.0669614421 3.9915078 1103.4542
+213068.0669615464 3.9913898 1103.3949
+213069.0669616507 3.9914684 1103.3752
+213070.066961755 3.9915078 1103.3752
+213071.0669618594 3.9913111 1103.3949
+213072.0669619637 3.9912717 1103.3555
+213073.066962068 3.9914684 1103.3949
+213074.0669621723 3.9913898 1103.316
+213075.0669622766 3.9914291 1103.4344
+213076.0669623809 3.9914291 1103.2963
+213077.0669624852 3.9914291 1103.3752
+213078.0669625895 3.9915867 1103.3752
+213079.0669626938 3.9915471 1103.3357
+213080.0669627981 3.9915867 1103.3357
+213081.0669629024 3.9915471 1103.2765
+213082.0669630067 3.9915471 1103.3357
+213083.0669631111 3.9915471 1103.3357
+213084.0669632154 3.9915867 1103.3555
+213085.0669633197 3.9915471 1103.2963
+213086.066963424 3.9914684 1103.4147
+213087.0669635283 3.9916654 1103.3357
+213088.0669636326 3.9917047 1103.3357
+213089.0669637369 3.991626 1103.3357
+213090.0669638412 3.9916654 1103.3752
+213091.0669639455 3.9915471 1103.3555
+213092.0669640498 3.991626 1103.2963
+213093.0669641541 3.9916654 1103.3555
+213094.0669642584 3.991744 1103.3357
+213095.0669643627 3.9917047 1103.2765
+213096.0669644671 3.9916654 1103.3357
+213097.0669645714 3.991744 1103.4147
+213098.0669646757 3.991744 1103.3357
+213099.06696478 3.9918227 1103.2765
+213100.0669648843 3.9918623 1103.3752
+213101.0669649886 3.9917834 1103.4147
+213102.0669650929 3.9918227 1103.3357
+213103.0669651972 3.9917834 1103.4344
+213104.0669653015 3.9918227 1103.3752
+213105.0669654058 3.991744 1103.3357
+213106.0669655101 3.9918623 1103.3555
+213107.0669656144 3.9919016 1103.3752
+213108.0669657188 3.9918227 1103.316
+213109.0669658231 3.991744 1103.3555
+213110.0669659274 3.9918227 1103.3752
+213111.0669660317 3.9917834 1103.316
+213112.066966136 3.9918623 1103.3752
+213113.0669662403 3.9919803 1103.3555
+213114.0669663446 3.9920197 1103.4344
+213115.0669664489 3.991941 1103.3555
+213116.0669665532 3.9919803 1103.3949
+213117.0669666575 3.9920197 1103.3555
+213118.0669667618 3.9919016 1103.3752
+213119.0669668661 3.991941 1103.3752
+213120.0669669705 3.9919803 1103.3357
+213121.0669670748 3.9920197 1103.3357
+213122.0669671791 3.991941 1103.2765
+213123.0669672834 3.992059 1103.2963
+213124.0669673877 3.9921772 1103.3949
+213125.066967492 3.9921377 1103.316
+213126.0669675963 3.9920983 1103.2765
+213127.0669677006 3.9921772 1103.2963
+213128.0669678049 3.9922559 1103.3357
+213129.0669679092 3.9921772 1103.316
+213130.0669680135 3.9922166 1103.3357
+213131.0669681178 3.9922166 1103.3752
+213132.0669682221 3.9922166 1103.4147
+213133.0669683265 3.9922166 1103.2963
+213134.0669684308 3.9922166 1103.316
+213135.0669685351 3.9922953 1103.3752
+213136.0669686394 3.9922166 1103.3357
+213137.0669687437 3.9923346 1103.3949
+213138.066968848 3.9922559 1103.3555
+213139.0669689523 3.9922166 1103.316
+213140.0669690566 3.9923739 1103.4147
+213141.0669691609 3.9922953 1103.4147
+213142.0669692652 3.9923346 1103.4147
+213143.0669693695 3.9923346 1103.316
+213144.0669694738 3.9924133 1103.3357
+213145.0669695782 3.9924526 1103.3752
+213146.0669696825 3.9923739 1103.3555
+213147.0669697868 3.9924526 1103.2567
+213148.0669698911 3.9922559 1103.3357
+213149.0669699954 3.9924133 1103.3949
+213150.0669700997 3.9924133 1103.3555
+213151.066970204 3.9924526 1103.3357
+213152.0669703083 3.9924133 1103.3752
+213153.0669704126 3.9924526 1103.2765
+213154.0669705169 3.9924922 1103.2963
+213155.0669706212 3.9924922 1103.3949
+213156.0669707255 3.9925315 1103.474
+213157.0669708299 3.9925315 1103.3555
+213158.0669709342 3.9924922 1103.3949
+213159.0669710385 3.9925315 1103.3555
+213160.0669711428 3.9924922 1103.2963
+213161.0669712471 3.9926102 1103.4147
+213162.0669713514 3.9925709 1103.3357
+213163.0669714557 3.9926102 1103.4344
+213164.06697156 3.9926496 1103.3949
+213165.0669716643 3.9927282 1103.316
+213166.0669717686 3.9926889 1103.4147
+213167.0669718729 3.9926496 1103.3752
+213168.0669719772 3.9927676 1103.2963
+213169.0669720815 3.9926496 1103.3752
+213170.0669721859 3.9926102 1103.3555
+213171.0669722902 3.9926102 1103.2765
+213172.0669723945 3.9927282 1103.3752
+213173.0669724988 3.9926889 1103.2963
+213174.0669726031 3.9928071 1103.4147
+213175.0669727074 3.9927676 1103.3555
+213176.0669728117 3.9927676 1103.3752
+213177.066972916 3.9927676 1103.2963
+213178.0669730203 3.9926889 1103.3752
+213179.0669731246 3.9928071 1103.3555
+213180.0669732289 3.9928071 1103.2369
+213181.0669733332 3.9928071 1103.3949
+213182.0669734376 3.9928465 1103.316
+213183.0669735419 3.9928858 1103.3752
+213184.0669736462 3.9928071 1103.4147
+213185.0669737505 3.9928465 1103.3752
+213186.0669738548 3.9928465 1103.316
+213187.0669739591 3.9928465 1103.3752
+213188.0669740634 3.9928465 1103.3752
+213189.0669741677 3.9929645 1103.3357
+213190.066974272 3.9929252 1103.2963
+213191.0669743763 3.9928465 1103.3555
+213192.0669744806 3.9929645 1103.3752
+213193.0669745849 3.9928858 1103.4344
+213194.0669746893 3.9930825 1103.3357
+213195.0669747936 3.9928858 1103.4147
+213196.0669748979 3.9931221 1103.3555
+213197.0669750022 3.9930038 1103.3357
+213198.0669751065 3.9930432 1103.2963
+213199.0669752108 3.9930432 1103.2963
+213200.0669753151 3.9930825 1103.3949
+213201.0669754194 3.9930432 1103.316
+213202.0669755237 3.9930825 1103.3357
+213203.066975628 3.9932008 1103.3752
+213204.0669757323 3.9930825 1103.3949
+213205.0669758366 3.9930432 1103.3949
+213206.066975941 3.9931221 1103.2765
+213207.0669760453 3.9931614 1103.2963
+213208.0669761496 3.9931614 1103.3949
+213209.0669762539 3.9931221 1103.3555
+213210.0669763582 3.9932008 1103.4344
+213211.0669764625 3.9931614 1103.3555
+213212.0669765668 3.9931614 1103.3555
+213213.0669766711 3.9932008 1103.474
+213214.0669767754 3.9932401 1103.2963
+213215.0669768797 3.9932795 1103.3357
+213216.066976984 3.9931614 1103.3752
+213217.0669770883 3.9932401 1103.3752
+213218.0669771926 3.9932795 1103.3949
+213219.066977297 3.9932795 1103.4344
+213220.0669774013 3.9932401 1103.4147
+213221.0669775056 3.9932795 1103.316
+213222.0669776099 3.9933188 1103.3752
+213223.0669777142 3.9933581 1103.3357
+213224.0669778185 3.9932795 1103.3357
+213225.0669779228 3.9933975 1103.4344
+213226.0669780271 3.9933975 1103.316
+213227.0669781314 3.9934764 1103.2369
+213228.0669782357 3.9934764 1103.3949
+213229.06697834 3.9933975 1103.2963
+213230.0669784443 3.9933581 1103.3752
+213231.0669785487 3.9933975 1103.3555
+213232.066978653 3.9935157 1103.3949
+213233.0669787573 3.9934371 1103.2963
+213234.0669788616 3.9934371 1103.3357
+213235.0669789659 3.9936731 1103.3357
+213236.0669790702 3.9935551 1103.3357
+213237.0669791745 3.9935551 1103.3357
+213238.0669792788 3.9936337 1103.4147
+213239.0669793831 3.9935551 1103.316
+213240.0669794874 3.9935157 1103.2963
+213241.0669795917 3.9935944 1103.3555
+213242.066979696 3.9935551 1103.2963
+213243.0669798004 3.9936337 1103.3949
+213244.0669799047 3.9935944 1103.3752
+213245.066980009 3.9936337 1103.3949
+213246.0669801133 3.9936337 1103.3357
+213247.0669802176 3.9936731 1103.4147
+213248.0669803219 3.9936337 1103.3357
+213249.0669804262 3.9935944 1103.3752
+213250.0669805305 3.993752 1103.3555
+213251.0669806348 3.9937127 1103.2963
+213252.0669807391 3.9936731 1103.3357
+213253.0669808434 3.9936337 1103.316
+213254.0669809477 3.9936731 1103.3752
+213255.066981052 3.9937913 1103.4147
+213256.0669811564 3.9937913 1103.3357
+213257.0669812607 3.9938307 1103.2172
+213258.066981365 3.9937913 1103.3357
+213259.0669814693 3.993752 1103.3949
+213260.0669815736 3.9938307 1103.2963
+213261.0669816779 3.993752 1103.316
+213262.0669817822 3.9938307 1103.316
+213263.0669818865 3.99387 1103.3357
+213264.0669819908 3.9939094 1103.3949
+213265.0669820951 3.99387 1103.2567
+213266.0669821994 3.99387 1103.3357
+213267.0669823037 3.9939487 1103.3949
+213268.0669824081 3.9939094 1103.3752
+213269.0669825124 3.993988 1103.3357
+213270.0669826167 3.9939487 1103.3949
+213271.066982721 3.9939487 1103.4147
+213272.0669828253 3.9940276 1103.1975
+213273.0669829296 3.9939487 1103.3357
+213274.0669830339 3.9941063 1103.3555
+213275.0669831382 3.993988 1103.3357
+213276.0669832425 3.9939094 1103.3949
+213277.0669833468 3.9940276 1103.3949
+213278.0669834511 3.9940276 1103.316
+213279.0669835554 3.993988 1103.2963
+213280.0669836598 3.994067 1103.2567
+213281.0669837641 3.9941063 1103.2765
+213282.0669838684 3.9941063 1103.3555
+213283.0669839727 3.9941063 1103.3752
+213284.066984077 3.9941456 1103.3752
+213285.0669841813 3.994067 1103.2765
+213286.0669842856 3.9941456 1103.3555
+213287.0669843899 3.994185 1103.2963
+213288.0669844942 3.994185 1103.3949
+213289.0669845985 3.994185 1103.3357
+213290.0669847028 3.9942243 1103.3357
+213291.0669848071 3.994303 1103.316
+213292.0669849114 3.994303 1103.2765
+213293.0669850158 3.994185 1103.3555
+213294.0669851201 3.9942636 1103.3357
+213295.0669852244 3.994303 1103.4147
+213296.0669853287 3.994185 1103.3357
+213297.066985433 3.9943426 1103.3357
+213298.0669855373 3.9942243 1103.316
+213299.0669856416 3.9942243 1103.2963
+213300.0669857459 3.994303 1103.3752
+213301.0669858502 3.994303 1103.3555
+213302.0669859545 3.9943426 1103.3752
+213303.0669860588 3.994303 1103.316
+213304.0669861631 3.9943819 1103.2963
+213305.0669862675 3.9943819 1103.4344
+213306.0669863718 3.9943819 1103.3555
+213307.0669864761 3.9944606 1103.316
+213308.0669865804 3.9944212 1103.316
+213309.0669866847 3.9943819 1103.316
+213310.066986789 3.9944606 1103.3949
+213311.0669868933 3.9944212 1103.3357
+213312.0669869976 3.9944606 1103.2963
+213313.0669871019 3.9944999 1103.3357
+213314.0669872062 3.9944999 1103.3752
+213315.0669873105 3.9944606 1103.3357
+213316.0669874148 3.9944999 1103.3949
+213317.0669875192 3.9944999 1103.3949
+213318.0669876235 3.9945786 1103.3752
+213319.0669877278 3.9945393 1103.2765
+213320.0669878321 3.9946575 1103.3357
+213321.0669879364 3.9946179 1103.4344
+213322.0669880407 3.9947755 1103.4147
+213323.066988145 3.9946969 1103.2963
+213324.0669882493 3.9946179 1103.3555
+213325.0669883536 3.9945786 1103.3949
+213326.0669884579 3.9946969 1103.316
+213327.0669885622 3.9946575 1103.4542
+213328.0669886665 3.9947362 1103.316
+213329.0669887709 3.9946575 1103.3752
+213330.0669888752 3.9947755 1103.3555
+213331.0669889795 3.9947362 1103.316
+213332.0669890838 3.9946575 1103.3357
+213333.0669891881 3.9947755 1103.3555
+213334.0669892924 3.9946969 1103.2765
+213335.0669893967 3.9947755 1103.316
+213336.066989501 3.9947362 1103.3357
+213337.0669896053 3.9948149 1103.2765
+213338.0669897096 3.9948936 1103.3357
+213339.0669898139 3.9948542 1103.4147
+213340.0669899182 3.9948542 1103.2765
+213341.0669900225 3.9948149 1103.4344
+213342.0669901269 3.9949329 1103.3357
+213343.0669902312 3.9948149 1103.2963
+213344.0669903355 3.9949329 1103.2963
+213345.0669904398 3.9948936 1103.316
+213346.0669905441 3.9949329 1103.3555
+213347.0669906484 3.9948936 1103.316
+213348.0669907527 3.9949329 1103.3357
+213349.066990857 3.9949725 1103.3357
+213350.0669909613 3.9949725 1103.316
+213351.0669910656 3.9948936 1103.3949
+213352.0669911699 3.9948936 1103.3752
+213353.0669912742 3.9949725 1103.3949
+213354.0669913786 3.9950511 1103.3555
+213355.0669914829 3.9950511 1103.1975
+213356.0669915872 3.9951692 1103.2369
+213357.0669916915 3.9950118 1103.2963
+213358.0669917958 3.9950511 1103.3555
+213359.0669919001 3.9951298 1103.2963
+213360.0669920044 3.9950511 1103.3555
+213361.0669921087 3.9950511 1103.3555
+213362.066992213 3.9950905 1103.3555
+213363.0669923173 3.9951298 1103.3357
+213364.0669924216 3.9950511 1103.3357
+213365.0669925259 3.9952085 1103.3555
+213366.0669926303 3.9953268 1103.4147
+213367.0669927346 3.9950905 1103.4344
+213368.0669928389 3.9952478 1103.3949
+213369.0669929432 3.9952478 1103.2765
+213370.0669930475 3.9953268 1103.3555
+213371.0669931518 3.9953268 1103.3949
+213372.0669932561 3.9952874 1103.4344
+213373.0669933604 3.9952478 1103.3357
+213374.0669934647 3.9953268 1103.3752
+213375.066993569 3.9953661 1103.3555
+213376.0669936733 3.9952478 1103.3357
+213377.0669937776 3.9952478 1103.4147
+213378.0669938819 3.9953661 1103.3949
+213379.0669939863 3.9953268 1103.4344
+213380.0669940906 3.9954448 1103.3949
+213381.0669941949 3.9953661 1103.3357
+213382.0669942992 3.9954054 1103.316
+213383.0669944035 3.9954054 1103.2963
+213384.0669945078 3.9954448 1103.2369
+213385.0669946121 3.9954054 1103.3555
+213386.0669947164 3.9954054 1103.2765
+213387.0669948207 3.9955235 1103.2567
+213388.066994925 3.9954841 1103.3555
+213389.0669950293 3.9954448 1103.316
+213390.0669951336 3.9954841 1103.3555
+213391.066995238 3.9955235 1103.3555
+213392.0669953423 3.9954054 1103.3357
+213393.0669954466 3.9956024 1103.2963
+213394.0669955509 3.9956417 1103.316
+213395.0669956552 3.995563 1103.2172
+213396.0669957595 3.9955235 1103.3752
+213397.0669958638 3.995563 1103.4147
+213398.0669959681 3.995563 1103.2963
+213399.0669960724 3.995681 1103.3357
+213400.0669961767 3.995681 1103.3555
+213401.066996281 3.995563 1103.3949
+213402.0669963853 3.9957204 1103.2963
+213403.0669964897 3.9957204 1103.4147
+213404.066996594 3.9957204 1103.3357
+213405.0669966983 3.9956417 1103.316
+213406.0669968026 3.9956417 1103.2369
+213407.0669969069 3.995681 1103.3752
+213408.0669970112 3.995681 1103.3357
+213409.0669971155 3.9957204 1103.3357
+213410.0669972198 3.995681 1103.3752
+213411.0669973241 3.9957597 1103.3555
+213412.0669974284 3.9957991 1103.474
+213413.0669975327 3.9957991 1103.2567
+213414.066997637 3.9958384 1103.3949
+213415.0669977413 3.9958384 1103.3949
+213416.0669978457 3.9957204 1103.4147
+213417.06699795 3.9959173 1103.3555
+213418.0669980543 3.995878 1103.3357
+213419.0669981586 3.9959173 1103.2963
+213420.0669982629 3.995878 1103.3752
+213421.0669983672 3.9958384 1103.2963
+213422.0669984715 3.995996 1103.316
+213423.0669985758 3.9959567 1103.4147
+213424.0669986801 3.995996 1103.316
+213425.0669987844 3.9959173 1103.3555
+213426.0669988887 3.9959173 1103.3555
+213427.066998993 3.995996 1103.3949
+213428.0669990974 3.9959173 1103.3357
+213429.0669992017 3.9960353 1103.3752
+213430.066999306 3.995996 1103.3752
+213431.0669994103 3.9960747 1103.4147
+213432.0669995146 3.9960353 1103.2963
+213433.0669996189 3.9960353 1103.316
+213434.0669997232 3.9960747 1103.3949
+213435.0669998275 3.9960747 1103.2765
+213436.0669999318 3.9960353 1103.3949
+213437.0670000361 3.996114 1103.2963
+213438.0670001404 3.9961534 1103.3357
+213439.0670002447 3.9961534 1103.3949
+213440.0670003491 3.996114 1103.3357
+213441.0670004534 3.9961929 1103.2369
+213442.0670005577 3.9962323 1103.2963
+213443.067000662 3.9962323 1103.316
+213444.0670007663 3.9961929 1103.3357
+213445.0670008706 3.9961534 1103.3752
+213446.0670009749 3.9961534 1103.3555
+213447.0670010792 3.9962716 1103.3949
+213448.0670011835 3.9962716 1103.4147
+213449.0670012878 3.9963109 1103.316
+213450.0670013921 3.9963109 1103.3555
+213451.0670014964 3.9963109 1103.3555
+213452.0670016008 3.9962716 1103.2567
+213453.0670017051 3.9963503 1103.3949
+213454.0670018094 3.9963896 1103.3752
+213455.0670019137 3.9963503 1103.3555
+213456.067002018 3.9963109 1103.4147
+213457.0670021223 3.9963896 1103.3357
+213458.0670022266 3.9963109 1103.3555
+213459.0670023309 3.9965079 1103.4147
+213460.0670024352 3.9963896 1103.2765
+213461.0670025395 3.996429 1103.3949
+213462.0670026438 3.9963896 1103.3555
+213463.0670027481 3.9965079 1103.3752
+213464.0670028524 3.9964683 1103.3357
+213465.0670029568 3.9964683 1103.316
+213466.0670030611 3.9964683 1103.316
+213467.0670031654 3.9964683 1103.4344
+213468.0670032697 3.9965472 1103.3949
+213469.067003374 3.9965866 1103.3357
+213470.0670034783 3.9965866 1103.316
+213471.0670035826 3.9965079 1103.316
+213472.0670036869 3.9965866 1103.3752
+213473.0670037912 3.9965866 1103.2369
+213474.0670038955 3.9965472 1103.3949
+213475.0670039998 3.9966259 1103.316
+213476.0670041041 3.9966652 1103.474
+213477.0670042085 3.9966652 1103.3949
+213478.0670043128 3.9966652 1103.4147
+213479.0670044171 3.9967439 1103.3555
+213480.0670045214 3.9966652 1103.3752
+213481.0670046257 3.9967833 1103.3949
+213482.06700473 3.9967046 1103.3357
+213483.0670048343 3.9967439 1103.3752
+213484.0670049386 3.9967439 1103.3357
+213485.0670050429 3.9968228 1103.3555
+213486.0670051472 3.9967833 1103.3752
+213487.0670052515 3.9967046 1103.3752
+213488.0670053558 3.9967439 1103.3752
+213489.0670054602 3.9967439 1103.3949
+213490.0670055645 3.9969015 1103.3357
+213491.0670056688 3.9968228 1103.3555
+213492.0670057731 3.9968228 1103.3752
+213493.0670058774 3.9968228 1103.4147
+213494.0670059817 3.9969409 1103.4147
+213495.067006086 3.9968228 1103.2765
+213496.0670061903 3.9969015 1103.4542
+213497.0670062946 3.9969802 1103.2963
+213498.0670063989 3.9969015 1103.3949
+213499.0670065032 3.9969015 1103.3555
+213500.0670066075 3.9968228 1103.316
+213501.0670067118 3.9968622 1103.3357
+213502.0670068162 3.9969802 1103.3357
+213503.0670069205 3.9970195 1103.4344
+213504.0670070248 3.9970589 1103.3555
+213505.0670071291 3.9970195 1103.2765
+213506.0670072334 3.9971771 1103.2963
+213507.0670073377 3.9970982 1103.4344
+213508.067007442 3.9970195 1103.3555
+213509.0670075463 3.9970589 1103.316
+213510.0670076506 3.9970195 1103.3949
+213511.0670077549 3.9970589 1103.2963
+213512.0670078592 3.9970589 1103.3357
+213513.0670079635 3.9970982 1103.3752
+213514.0670080679 3.9970982 1103.3949
+213515.0670081722 3.9971378 1103.3357
+213516.0670082765 3.9971378 1103.3357
+213517.0670083808 3.9971771 1103.3555
+213518.0670084851 3.9971771 1103.3357
+213519.0670085894 3.9972951 1103.3752
+213520.0670086937 3.9972951 1103.2567
+213521.067008798 3.9971378 1103.3949
+213522.0670089023 3.9971771 1103.3752
+213523.0670090066 3.9971771 1103.316
+213524.0670091109 3.9971771 1103.3357
+213525.0670092152 3.9972951 1103.2765
+213526.0670093196 3.9973738 1103.3555
+213527.0670094239 3.9972951 1103.4542
+213528.0670095282 3.9972558 1103.316
+213529.0670096325 3.9972951 1103.316
+213530.0670097368 3.9973345 1103.3357
+213531.0670098411 3.9973345 1103.3752
+213532.0670099454 3.9974134 1103.3555
+213533.0670100497 3.9974527 1103.3752
+213534.067010154 3.9974527 1103.3555
+213535.0670102583 3.9974527 1103.316
+213536.0670103626 3.9974921 1103.2765
+213537.0670104669 3.9974134 1103.2963
+213538.0670105712 3.9975314 1103.3949
+213539.0670106756 3.9974921 1103.3357
+213540.0670107799 3.9976101 1103.3752
+213541.0670108842 3.9975314 1103.3752
+213542.0670109885 3.9974527 1103.3555
+213543.0670110928 3.9976101 1103.3752
+213544.0670111971 3.9975708 1103.3555
+213545.0670113014 3.9975314 1103.3555
+213546.0670114057 3.9976494 1103.3752
+213547.06701151 3.9975708 1103.316
+213548.0670116143 3.9975708 1103.3357
+213549.0670117186 3.9976101 1103.3555
+213550.0670118229 3.9975314 1103.3555
+213551.0670119273 3.9976101 1103.3357
+213552.0670120316 3.9976888 1103.2963
+213553.0670121359 3.9976101 1103.3949
+213554.0670122402 3.9976101 1103.3555
+213555.0670123445 3.9976494 1103.3357
+213556.0670124488 3.9977283 1103.4147
+213557.0670125531 3.9976494 1103.3555
+213558.0670126574 3.9977283 1103.3949
+213559.0670127617 3.9978464 1103.3949
+213560.067012866 3.997807 1103.3555
+213561.0670129703 3.9978857 1103.2963
+213562.0670130746 3.9976888 1103.3949
+213563.067013179 3.9977677 1103.3555
+213564.0670132833 3.9978857 1103.3752
+213565.0670133876 3.9978464 1103.3357
+213566.0670134919 3.9978464 1103.2963
+213567.0670135962 3.9978464 1103.3752
+213568.0670137005 3.997807 1103.4542
+213569.0670138048 3.9978857 1103.2963
+213570.0670139091 3.9978464 1103.2765
+213571.0670140134 3.997925 1103.3949
+213572.0670141177 3.9978464 1103.3555
+213573.067014222 3.9978857 1103.3949
+213574.0670143263 3.9978857 1103.3357
+213575.0670144307 3.997925 1103.4344
+213576.067014535 3.9980433 1103.2963
+213577.0670146393 3.9978857 1103.3752
+213578.0670147436 3.997925 1103.3357
+213579.0670148479 3.9980037 1103.3752
+213580.0670149522 3.9980826 1103.3949
+213581.0670150565 3.9979644 1103.316
+213582.0670151608 3.998122 1103.3555
+213583.0670152651 3.9980826 1103.3555
+213584.0670153694 3.9980433 1103.3555
+213585.0670154737 3.998122 1103.316
+213586.067015578 3.998122 1103.2963
+213587.0670156823 3.998122 1103.3752
+213588.0670157867 3.9980826 1103.2963
+213589.067015891 3.998122 1103.2765
+213590.0670159953 3.998122 1103.2369
+213591.0670160996 3.9981613 1103.3949
+213592.0670162039 3.9982793 1103.316
+213593.0670163082 3.998122 1103.2963
+213594.0670164125 3.9982007 1103.3949
+213595.0670165168 3.9982007 1103.3555
+213596.0670166211 3.9983187 1103.3752
+213597.0670167254 3.9982793 1103.3949
+213598.0670168297 3.99824 1103.2567
+213599.067016934 3.9981613 1103.3357
+213600.0670170384 3.9983187 1103.316
+213601.0670171427 3.9983976 1103.4344
+213602.067017247 3.9983187 1103.316
+213603.0670173513 3.9982793 1103.3357
+213604.0670174556 3.99824 1103.2765
+213605.0670175599 3.9984763 1103.3752
+213606.0670176642 3.9984763 1103.3949
+213607.0670177685 3.9983582 1103.3555
+213608.0670178728 3.9984369 1103.3555
+213609.0670179771 3.9983582 1103.2567
+213610.0670180814 3.9983976 1103.2765
+213611.0670181857 3.9985156 1103.316
+213612.0670182901 3.9984763 1103.3555
+213613.0670183944 3.9983976 1103.316
+213614.0670184987 3.9985156 1103.4147
+213615.067018603 3.9985549 1103.3555
+213616.0670187073 3.9984763 1103.316
+213617.0670188116 3.9984763 1103.2963
+213618.0670189159 3.9985156 1103.3555
+213619.0670190202 3.9984369 1103.3555
+213620.0670191245 3.9985156 1103.3357
+213621.0670192288 3.9985943 1103.3752
+213622.0670193331 3.9985943 1103.3949
+213623.0670194374 3.9986336 1103.3752
+213624.0670195417 3.9985549 1103.3555
+213625.0670196461 3.9985549 1103.4542
+213626.0670197504 3.9986732 1103.3555
+213627.0670198547 3.9987125 1103.2963
+213628.067019959 3.9986732 1103.3357
+213629.0670200633 3.9985549 1103.3357
+213630.0670201676 3.9986336 1103.3357
+213631.0670202719 3.9986336 1103.316
+213632.0670203762 3.9986336 1103.2765
+213633.0670204805 3.9987125 1103.4344
+213634.0670205848 3.9987912 1103.4147
+213635.0670206891 3.9987125 1103.3949
+213636.0670207934 3.9987519 1103.3357
+213637.0670208978 3.9986732 1103.3555
+213638.0670210021 3.9987519 1103.316
+213639.0670211064 3.9988306 1103.3357
+213640.0670212107 3.9987519 1103.3357
+213641.067021315 3.9989486 1103.2765
+213642.0670214193 3.9988699 1103.2963
+213643.0670215236 3.9987519 1103.4147
+213644.0670216279 3.9988306 1103.2765
+213645.0670217322 3.9988699 1103.3752
+213646.0670218365 3.9989092 1103.316
+213647.0670219408 3.9988699 1103.3357
+213648.0670220451 3.9989092 1103.2963
+213649.0670221495 3.9989092 1103.2963
+213650.0670222538 3.9990668 1103.3555
+213651.0670223581 3.9989882 1103.3752
+213652.0670224624 3.9989882 1103.3949
+213653.0670225667 3.9989486 1103.3949
+213654.067022671 3.9989882 1103.2963
+213655.0670227753 3.9990275 1103.3555
+213656.0670228796 3.9989882 1103.3357
+213657.0670229839 3.9990275 1103.3357
+213658.0670230882 3.9989486 1103.2765
+213659.0670231925 3.9990668 1103.3949
+213660.0670232968 3.9991062 1103.3949
+213661.0670234011 3.9991062 1103.3555
+213662.0670235055 3.9990668 1103.2765
+213663.0670236098 3.9991455 1103.2963
+213664.0670237141 3.9991062 1103.3555
+213665.0670238184 3.9991455 1103.316
+213666.0670239227 3.9991455 1103.316
+213667.067024027 3.9992638 1103.3555
+213668.0670241313 3.9991062 1103.316
+213669.0670242356 3.9992242 1103.3357
+213670.0670243399 3.9991062 1103.4147
+213671.0670244442 3.9992242 1103.3752
+213672.0670245485 3.9993031 1103.2765
+213673.0670246528 3.9993031 1103.3555
+213674.0670247572 3.9991848 1103.2765
+213675.0670248615 3.9992638 1103.2567
+213676.0670249658 3.9993424 1103.316
+213677.0670250701 3.9993424 1103.3555
+213678.0670251744 3.9992638 1103.3752
+213679.0670252787 3.9993031 1103.3752
+213680.067025383 3.9993424 1103.316
+213681.0670254873 3.9993818 1103.3752
+213682.0670255916 3.9993031 1103.3752
+213683.0670256959 3.9993424 1103.2963
+213684.0670258002 3.9993818 1103.3555
+213685.0670259045 3.9994605 1103.3752
+213686.0670260089 3.9994605 1103.3357
+213687.0670261132 3.9994998 1103.3555
+213688.0670262175 3.9995391 1103.3357
+213689.0670263218 3.9994605 1103.3555
+213690.0670264261 3.9994605 1103.3949
+213691.0670265304 3.9994211 1103.2963
+213692.0670266347 3.9995391 1103.2963
+213693.067026739 3.9994605 1103.3949
+213694.0670268433 3.9994998 1103.2963
+213695.0670269476 3.9996574 1103.3357
+213696.0670270519 3.9995391 1103.3949
+213697.0670271562 3.9995391 1103.3357
+213698.0670272605 3.9996574 1103.316
+213699.0670273649 3.9995787 1103.3555
+213700.0670274692 3.9994998 1103.3357
+213701.0670275735 3.9996967 1103.3357
+213702.0670276778 3.9996574 1103.316
+213703.0670277821 3.9995391 1103.2963
+213704.0670278864 3.9996574 1103.3752
+213705.0670279907 3.9996967 1103.3555
+213706.067028095 3.9996181 1103.4147
+213707.0670281993 3.9996574 1103.3555
+213708.0670283036 3.9996574 1103.2765
+213709.0670284079 3.9996181 1103.3752
+213710.0670285122 3.9997754 1103.316
+213711.0670286166 3.9998541 1103.316
+213712.0670287209 3.9997361 1103.316
+213713.0670288252 3.9997754 1103.2765
+213714.0670289295 3.9998147 1103.2963
+213715.0670290338 3.9997754 1103.3555
+213716.0670291381 3.9998937 1103.3555
+213717.0670292424 3.9998937 1103.3357
+213718.0670293467 3.9999723 1103.3555
+213719.067029451 3.9998147 1103.3949
+213720.0670295553 3.9998541 1103.4542
+213721.0670296596 3.9998937 1103.3555
+213722.0670297639 3.999933 1103.2765
+213723.0670298683 4.0000901 1103.316
+213724.0670299726 3.999933 1103.316
+213725.0670300769 3.999933 1103.2765
+213726.0670301812 4.0000114 1103.3949
+213727.0670302855 3.9998541 1103.3357
+213728.0670303898 3.9999723 1103.316
+213729.0670304941 3.9999723 1103.316
+213730.0670305984 4.0000114 1103.2963
+213731.0670307027 3.9999723 1103.316
+213732.067030807 4.0000901 1103.3357
+213733.0670309113 3.9999723 1103.3555
+213734.0670310156 3.9999723 1103.3752
+213735.06703112 4.0001297 1103.3949
+213736.0670312243 4.0001688 1103.316
+213737.0670313286 4.0000901 1103.3555
+213738.0670314329 4.000051 1103.316
+213739.0670315372 4.0002084 1103.3555
+213740.0670316415 4.0000901 1103.2567
+213741.0670317458 4.0001688 1103.3357
+213742.0670318501 4.0001297 1103.3752
+213743.0670319544 4.0002084 1103.2963
+213744.0670320587 4.0001297 1103.3357
+213745.067032163 4.0001297 1103.3949
+213746.0670322673 4.0002871 1103.2963
+213747.0670323716 4.0002084 1103.3357
+213748.067032476 4.0003266 1103.3752
+213749.0670325803 4.0003266 1103.3752
+213750.0670326846 4.0003266 1103.2567
+213751.0670327889 4.000248 1103.3752
+213752.0670328932 4.0002871 1103.3555
+213753.0670329975 4.0002871 1103.3752
+213754.0670331018 4.0004053 1103.3555
+213755.0670332061 4.0003657 1103.4344
+213756.0670333104 4.0004053 1103.4344
+213757.0670334147 4.0003657 1103.4147
+213758.067033519 4.0005627 1103.3357
+213759.0670336233 4.0003657 1103.3555
+213760.0670337277 4.0003657 1103.3357
+213761.067033832 4.0004053 1103.2963
+213762.0670339363 4.0003657 1103.2172
+213763.0670340406 4.0004053 1103.316
+213764.0670341449 4.0006022 1103.316
+213765.0670342492 4.000484 1103.3752
+213766.0670343535 4.0004053 1103.3357
+213767.0670344578 4.0004053 1103.3752
+213768.0670345621 4.0005236 1103.4147
+213769.0670346664 4.000484 1103.3949
+213770.0670347707 4.0005236 1103.3949
+213771.067034875 4.0005236 1103.3949
+213772.0670349794 4.0005627 1103.2567
+213773.0670350837 4.0005627 1103.4542
+213774.067035188 4.0006413 1103.3357
+213775.0670352923 4.0006413 1103.4344
+213776.0670353966 4.0006413 1103.316
+213777.0670355009 4.0006809 1103.3357
+213778.0670356052 4.00072 1103.2567
+213779.0670357095 4.0006022 1103.3555
+213780.0670358138 4.0006413 1103.4147
+213781.0670359181 4.0006413 1103.316
+213782.0670360224 4.0006413 1103.3357
+213783.0670361267 4.0007596 1103.316
+213784.067036231 4.0006022 1103.316
+213785.0670363354 4.0006809 1103.3555
+213786.0670364397 4.0007992 1103.316
+213787.067036544 4.00072 1103.2369
+213788.0670366483 4.0008779 1103.3555
+213789.0670367526 4.0008779 1103.2765
+213790.0670368569 4.0008383 1103.3555
+213791.0670369612 4.0007992 1103.3752
+213792.0670370655 4.0008383 1103.3555
+213793.0670371698 4.0007992 1103.3752
+213794.0670372741 4.0009956 1103.3752
+213795.0670373784 4.0008383 1103.2963
+213796.0670374827 4.000917 1103.3555
+213797.0670375871 4.000917 1103.3555
+213798.0670376914 4.0008779 1103.3949
+213799.0670377957 4.0009565 1103.3555
+213800.0670379 4.0008383 1103.2963
+213801.0670380043 4.0009565 1103.3357
+213802.0670381086 4.0009956 1103.316
+213803.0670382129 4.0008779 1103.3555
+213804.0670383172 4.0009565 1103.3949
+213805.0670384215 4.0010743 1103.316
+213806.0670385258 4.0009565 1103.2963
+213807.0670386301 4.000917 1103.3357
+213808.0670387344 4.0010743 1103.3357
+213809.0670388388 4.0011535 1103.4344
+213810.0670389431 4.0009956 1103.3752
+213811.0670390474 4.0011926 1103.3555
+213812.0670391517 4.0011139 1103.4344
+213813.067039256 4.0011926 1103.4542
+213814.0670393603 4.0011535 1103.316
+213815.0670394646 4.0012712 1103.3555
+213816.0670395689 4.0011139 1103.3555
+213817.0670396732 4.0010352 1103.5134
+213818.0670397775 4.0012321 1103.3949
+213819.0670398818 4.0011926 1103.316
+213820.0670399861 4.0011535 1103.3555
+213821.0670400904 4.0010352 1103.4147
+213822.0670401948 4.0011535 1103.3949
+213823.0670402991 4.0013108 1103.2963
+213824.0670404034 4.0013499 1103.316
+213825.0670405077 4.0011926 1103.3752
+213826.067040612 4.0012321 1103.3752
+213827.0670407163 4.0012712 1103.3949
+213828.0670408206 4.0013499 1103.3752
+213829.0670409249 4.0012712 1103.3555
+213830.0670410292 4.0012321 1103.3949
+213831.0670411335 4.0014291 1103.2963
+213832.0670412378 4.0014291 1103.316
+213833.0670413421 4.0013895 1103.2567
+213834.0670414465 4.0014682 1103.3555
+213835.0670415508 4.0014291 1103.3555
+213836.0670416551 4.0013895 1103.4147
+213837.0670417594 4.0015078 1103.316
+213838.0670418637 4.0015469 1103.2369
+213839.067041968 4.0014682 1103.2765
+213840.0670420723 4.0014682 1103.3357
+213841.0670421766 4.0014291 1103.4542
+213842.0670422809 4.0015078 1103.3555
+213843.0670423852 4.0015078 1103.3357
+213844.0670424895 4.0015864 1103.3752
+213845.0670425938 4.0015469 1103.316
+213846.0670426982 4.0015864 1103.3949
+213847.0670428025 4.0015469 1103.4938
+213848.0670429068 4.0015469 1103.3949
+213849.0670430111 4.0015469 1103.3555
+213850.0670431154 4.0015864 1103.2567
+213851.0670432197 4.0016255 1103.4147
+213852.067043324 4.0015864 1103.3949
+213853.0670434283 4.0016255 1103.4344
+213854.0670435326 4.0017042 1103.2963
+213855.0670436369 4.0015864 1103.4344
+213856.0670437412 4.0017042 1103.3555
+213857.0670438455 4.0017834 1103.3357
+213858.0670439499 4.0017438 1103.2765
+213859.0670440542 4.0016651 1103.3357
+213860.0670441585 4.0017834 1103.3555
+213861.0670442628 4.0017834 1103.4147
+213862.0670443671 4.0017042 1103.3357
+213863.0670444714 4.0017834 1103.3949
+213864.0670445757 4.0018225 1103.3357
+213865.06704468 4.001862 1103.2963
+213866.0670447843 4.0018225 1103.3949
+213867.0670448886 4.0018225 1103.2765
+213868.0670449929 4.001862 1103.3357
+213869.0670450972 4.0018225 1103.3752
+213870.0670452015 4.001862 1103.3555
+213871.0670453059 4.0019798 1103.2963
+213872.0670454102 4.0019011 1103.3357
+213873.0670455145 4.0018225 1103.4938
+213874.0670456188 4.0019407 1103.3949
+213875.0670457231 4.0019011 1103.3949
+213876.0670458274 4.0019407 1103.2765
+213877.0670459317 4.002059 1103.5134
+213878.067046036 4.0020194 1103.3555
+213879.0670461403 4.0020194 1103.3357
+213880.0670462446 4.0019798 1103.316
+213881.0670463489 4.002059 1103.4147
+213882.0670464532 4.0020981 1103.2963
+213883.0670465576 4.0020194 1103.3752
+213884.0670466619 4.0021377 1103.4147
+213885.0670467662 4.0020981 1103.2963
+213886.0670468705 4.0022163 1103.2567
+213887.0670469748 4.0020981 1103.3949
+213888.0670470791 4.0020981 1103.3357
+213889.0670471834 4.002059 1103.3357
+213890.0670472877 4.0021377 1103.3949
+213891.067047392 4.0022554 1103.3357
+213892.0670474963 4.002295 1103.3752
+213893.0670476006 4.0022163 1103.3949
+213894.0670477049 4.0020981 1103.3949
+213895.0670478093 4.0022163 1103.3752
+213896.0670479136 4.0022554 1103.4147
+213897.0670480179 4.0021768 1103.316
+213898.0670481222 4.0021768 1103.3949
+213899.0670482265 4.0022554 1103.3555
+213900.0670483308 4.0023341 1103.4147
+213901.0670484351 4.0023341 1103.3752
+213902.0670485394 4.0022163 1103.3357
+213903.0670486437 4.0022554 1103.4542
+213904.067048748 4.0023341 1103.2369
+213905.0670488523 4.0024133 1103.3357
+213906.0670489566 4.0023341 1103.2369
+213907.0670490609 4.0024524 1103.3555
+213908.0670491653 4.0024133 1103.3752
+213909.0670492696 4.0024133 1103.3752
+213910.0670493739 4.0024133 1103.3752
+213911.0670494782 4.0024133 1103.316
+213912.0670495825 4.0024524 1103.2765
+213913.0670496868 4.0023737 1103.316
+213914.0670497911 4.002492 1103.3949
+213915.0670498954 4.002492 1103.316
+213916.0670499997 4.0025311 1103.3555
+213917.067050104 4.0025311 1103.4147
+213918.0670502083 4.0025706 1103.3555
+213919.0670503126 4.0026097 1103.3357
+213920.067050417 4.0024524 1103.3555
+213921.0670505213 4.0026097 1103.3357
+213922.0670506256 4.0026889 1103.4147
+213923.0670507299 4.0026097 1103.3357
+213924.0670508342 4.0026889 1103.316
+213925.0670509385 4.0026097 1103.3949
+213926.0670510428 4.0026493 1103.3555
+213927.0670511471 4.0026889 1103.3949
+213928.0670512514 4.0027676 1103.3949
+213929.0670513557 4.0027676 1103.3555
+213930.06705146 4.0026889 1103.2963
+213931.0670515643 4.0026889 1103.4344
+213932.0670516687 4.0027676 1103.316
+213933.067051773 4.002728 1103.3555
+213934.0670518773 4.0028462 1103.316
+213935.0670519816 4.002728 1103.3357
+213936.0670520859 4.0027676 1103.3752
+213937.0670521902 4.002728 1103.3555
+213938.0670522945 4.0027676 1103.3357
+213939.0670523988 4.0028462 1103.3555
+213940.0670525031 4.0029249 1103.3949
+213941.0670526074 4.002728 1103.3752
+213942.0670527117 4.0028853 1103.3752
+213943.067052816 4.0028853 1103.2963
+213944.0670529203 4.0028462 1103.3357
+213945.0670530247 4.0029645 1103.3555
+213946.067053129 4.0028853 1103.3357
+213947.0670532333 4.0028853 1103.3752
+213948.0670533376 4.0030432 1103.2963
+213949.0670534419 4.0029249 1103.3357
+213950.0670535462 4.0029645 1103.3357
+213951.0670536505 4.0029645 1103.4344
+213952.0670537548 4.0029249 1103.3949
+213953.0670538591 4.0028853 1103.4542
+213954.0670539634 4.0029249 1103.2963
+213955.0670540677 4.0030036 1103.3555
+213956.067054172 4.0029645 1103.2963
+213957.0670542764 4.0030036 1103.3357
+213958.0670543807 4.0031219 1103.3752
+213959.067054485 4.0031219 1103.3357
+213960.0670545893 4.0031219 1103.3555
+213961.0670546936 4.0031219 1103.3752
+213962.0670547979 4.0032005 1103.316
+213963.0670549022 4.0030432 1103.3752
+213964.0670550065 4.0032005 1103.316
+213965.0670551108 4.003161 1103.2963
+213966.0670552151 4.0030823 1103.3555
+213967.0670553194 4.0032005 1103.3752
+213968.0670554237 4.0031219 1103.2963
+213969.0670555281 4.0032005 1103.3555
+213970.0670556324 4.0032005 1103.316
+213971.0670557367 4.0032792 1103.3949
+213972.067055841 4.0032396 1103.2963
+213973.0670559453 4.0033188 1103.3555
+213974.0670560496 4.0032396 1103.4938
+213975.0670561539 4.0033188 1103.2963
+213976.0670562582 4.0032792 1103.2963
+213977.0670563625 4.0033579 1103.316
+213978.0670564668 4.0033188 1103.3357
+213979.0670565711 4.0032396 1103.3752
+213980.0670566754 4.0034366 1103.3555
+213981.0670567798 4.0033579 1103.2963
+213982.0670568841 4.0034366 1103.2963
+213983.0670569884 4.0033975 1103.3357
+213984.0670570927 4.0034761 1103.3357
+213985.067057197 4.0034366 1103.3949
+213986.0670573013 4.0034366 1103.4344
+213987.0670574056 4.0034761 1103.3949
+213988.0670575099 4.0034366 1103.316
+213989.0670576142 4.0035152 1103.3555
+213990.0670577185 4.0033975 1103.3752
+213991.0670578228 4.0035152 1103.2765
+213992.0670579271 4.0035152 1103.3555
+213993.0670580314 4.0035944 1103.2765
+213994.0670581358 4.0034761 1103.3555
+213995.0670582401 4.0035548 1103.3949
+213996.0670583444 4.0036335 1103.2963
+213997.0670584487 4.0036335 1103.2369
+213998.067058553 4.0036335 1103.4147
+213999.0670586573 4.0036335 1103.3357
+214000.0670587616 4.0036335 1103.2963
+214001.0670588659 4.0036335 1103.3555
+214002.0670589702 4.0036731 1103.2765
+214003.0670590745 4.0036731 1103.3752
+214004.0670591788 4.0038695 1103.3357
+214005.0670592831 4.0036731 1103.2765
+214006.0670593875 4.0037122 1103.4147
+214007.0670594918 4.0037122 1103.3555
+214008.0670595961 4.0037909 1103.2963
+214009.0670597004 4.0037518 1103.316
+214010.0670598047 4.0037122 1103.3357
+214011.067059909 4.0037518 1103.2567
+214012.0670600133 4.0037518 1103.316
+214013.0670601176 4.0038695 1103.2765
+214014.0670602219 4.0038304 1103.316
+214015.0670603262 4.0037122 1103.2567
+214016.0670604305 4.0039487 1103.3752
+214017.0670605348 4.0039091 1103.3357
+214018.0670606392 4.0039091 1103.316
+214019.0670607435 4.0039878 1103.3357
+214020.0670608478 4.0039878 1103.316
+214021.0670609521 4.0038695 1103.3357
+214022.0670610564 4.0039091 1103.3949
+214023.0670611607 4.0039487 1103.2567
+214024.067061265 4.0039487 1103.3555
+214025.0670613693 4.0040274 1103.3752
+214026.0670614736 4.0040274 1103.2765
+214027.0670615779 4.0039878 1103.3357
+214028.0670616822 4.0039487 1103.3357
+214029.0670617865 4.0040274 1103.3752
+214030.0670618908 4.0040274 1103.3357
+214031.0670619952 4.0040665 1103.3555
+214032.0670620995 4.0041451 1103.316
+214033.0670622038 4.004106 1103.316
+214034.0670623081 4.0040665 1103.3555
+214035.0670624124 4.0041847 1103.4344
+214036.0670625167 4.0041451 1103.2765
+214037.067062621 4.0042634 1103.3555
+214038.0670627253 4.0041847 1103.3555
+214039.0670628296 4.0041451 1103.3949
+214040.0670629339 4.0041847 1103.2963
+214041.0670630382 4.0041847 1103.3555
+214042.0670631425 4.0042243 1103.316
+214043.0670632469 4.0042243 1103.3949
+214044.0670633512 4.0041847 1103.3949
+214045.0670634555 4.0043421 1103.4147
+214046.0670635598 4.0042634 1103.3555
+214047.0670636641 4.0043421 1103.4147
+214048.0670637684 4.0042243 1103.3949
+214049.0670638727 4.0043817 1103.2963
+214050.067063977 4.0041847 1103.3555
+214051.0670640813 4.0044208 1103.3357
+214052.0670641856 4.0043421 1103.2765
+214053.0670642899 4.004303 1103.4344
+214054.0670643942 4.0043817 1103.316
+214055.0670644986 4.0044208 1103.3949
+214056.0670646029 4.0043817 1103.3357
+214057.0670647072 4.0044603 1103.4147
+214058.0670648115 4.0043421 1103.3555
+214059.0670649158 4.0044603 1103.3752
+214060.0670650201 4.0044208 1103.3949
+214061.0670651244 4.0044999 1103.4344
+214062.0670652287 4.0044999 1103.316
+214063.067065333 4.004539 1103.316
+214064.0670654373 4.0046177 1103.3752
+214065.0670655416 4.0044999 1103.4147
+214066.0670656459 4.0046177 1103.3357
+214067.0670657502 4.0044999 1103.3752
+214068.0670658546 4.0044999 1103.3949
+214069.0670659589 4.0046573 1103.2963
+214070.0670660632 4.0045786 1103.2963
+214071.0670661675 4.0046573 1103.2963
+214072.0670662718 4.0045786 1103.2765
+214073.0670663761 4.0046573 1103.3555
+214074.0670664804 4.0046177 1103.4344
+214075.0670665847 4.0046573 1103.3357
+214076.067066689 4.0046573 1103.316
+214077.0670667933 4.0047359 1103.3555
+214078.0670668976 4.0046177 1103.3949
+214079.0670670019 4.0046573 1103.3357
+214080.0670671063 4.004775 1103.3949
+214081.0670672106 4.0046573 1103.2963
+214082.0670673149 4.004775 1103.4147
+214083.0670674192 4.0048146 1103.3357
+214084.0670675235 4.0048146 1103.4147
+214085.0670676278 4.0048542 1103.4344
+214086.0670677321 4.0048933 1103.2765
+214087.0670678364 4.004775 1103.3752
+214088.0670679407 4.0048933 1103.3752
+214089.067068045 4.0048146 1103.3949
+214090.0670681493 4.0048933 1103.3555
+214091.0670682536 4.0048542 1103.3752
+214092.067068358 4.0049329 1103.4344
+214093.0670684623 4.0048542 1103.316
+214094.0670685666 4.004972 1103.3752
+214095.0670686709 4.004972 1103.3555
+214096.0670687752 4.0049329 1103.2765
+214097.0670688795 4.0048933 1103.316
+214098.0670689838 4.004972 1103.316
+214099.0670690881 4.0050116 1103.3357
+214100.0670691924 4.0050507 1103.3357
+214101.0670692967 4.0050116 1103.3357
+214102.067069401 4.0050902 1103.3357
+214103.0670695053 4.0050902 1103.3949
+214104.0670696096 4.0050116 1103.3357
+214105.067069714 4.0052085 1103.3357
+214106.0670698183 4.0052085 1103.3357
+214107.0670699226 4.0051298 1103.3555
+214108.0670700269 4.0050902 1103.3357
+214109.0670701312 4.0051298 1103.3357
+214110.0670702355 4.0050902 1103.3357
+214111.0670703398 4.0052085 1103.3555
+214112.0670704441 4.0052476 1103.3949
+214113.0670705484 4.0052872 1103.3357
+214114.0670706527 4.0051689 1103.316
+214115.067070757 4.0052872 1103.3555
+214116.0670708613 4.0052476 1103.4147
+214117.0670709657 4.0052872 1103.3555
+214118.06707107 4.0053263 1103.2567
+214119.0670711743 4.0052872 1103.4542
+214120.0670712786 4.0052872 1103.4147
+214121.0670713829 4.0052872 1103.3752
+214122.0670714872 4.0053263 1103.3357
+214123.0670715915 4.0054049 1103.3555
+214124.0670716958 4.0053658 1103.3752
+214125.0670718001 4.0053658 1103.3752
+214126.0670719044 4.0053658 1103.2567
+214127.0670720087 4.0054049 1103.3555
+214128.067072113 4.0054445 1103.316
+214129.0670722174 4.0054445 1103.316
+214130.0670723217 4.0053658 1103.2765
+214131.067072426 4.0055232 1103.2963
+214132.0670725303 4.0054841 1103.2963
+214133.0670726346 4.0055232 1103.3752
+214134.0670727389 4.0055232 1103.3949
+214135.0670728432 4.0055232 1103.2567
+214136.0670729475 4.0055628 1103.4344
+214137.0670730518 4.0054841 1103.3949
+214138.0670731561 4.0056019 1103.4344
+214139.0670732604 4.0056019 1103.3357
+214140.0670733647 4.0056415 1103.316
+214141.0670734691 4.0055628 1103.3752
+214142.0670735734 4.0057597 1103.316
+214143.0670736777 4.0056019 1103.3752
+214144.067073782 4.0056019 1103.3357
+214145.0670738863 4.0056806 1103.3752
+214146.0670739906 4.0056806 1103.2963
+214147.0670740949 4.0056806 1103.3752
+214148.0670741992 4.0056415 1103.2963
+214149.0670743035 4.0057597 1103.2963
+214150.0670744078 4.0057201 1103.2765
+214151.0670745121 4.0057988 1103.3752
+214152.0670746164 4.0057201 1103.3357
+214153.0670747207 4.0057597 1103.3555
+214154.0670748251 4.0057597 1103.2765
+214155.0670749294 4.0057597 1103.316
+214156.0670750337 4.0057988 1103.3357
+214157.067075138 4.0057201 1103.316
+214158.0670752423 4.0059171 1103.4147
+214159.0670753466 4.0058775 1103.2765
+214160.0670754509 4.0057988 1103.3752
+214161.0670755552 4.0059562 1103.3357
+214162.0670756595 4.0059562 1103.3357
+214163.0670757638 4.0060744 1103.3752
+214164.0670758681 4.0059562 1103.316
+214165.0670759724 4.0059562 1103.3357
+214166.0670760768 4.0058384 1103.3752
+214167.0670761811 4.0059958 1103.3357
+214168.0670762854 4.0060349 1103.3357
+214169.0670763897 4.0060349 1103.3357
+214170.067076494 4.0060349 1103.3949
+214171.0670765983 4.0059562 1103.3555
+214172.0670767026 4.0059958 1103.3357
+214173.0670768069 4.0060349 1103.3357
+214174.0670769112 4.006114 1103.316
+214175.0670770155 4.0060744 1103.3949
+214176.0670771198 4.0060349 1103.3555
+214177.0670772241 4.006114 1103.4147
+214178.0670773285 4.0060744 1103.3555
+214179.0670774328 4.006114 1103.3555
+214180.0670775371 4.0061927 1103.2765
+214181.0670776414 4.006114 1103.3949
+214182.0670777457 4.0061927 1103.3752
+214183.06707785 4.0061927 1103.3752
+214184.0670779543 4.0062714 1103.4147
+214185.0670780586 4.0061531 1103.2765
+214186.0670781629 4.0062318 1103.3949
+214187.0670782672 4.0062714 1103.2963
+214188.0670783715 4.00635 1103.3752
+214189.0670784758 4.0061927 1103.316
+214190.0670785801 4.0062714 1103.3357
+214191.0670786845 4.0062714 1103.2963
+214192.0670787888 4.0063896 1103.2765
+214193.0670788931 4.00635 1103.2963
+214194.0670789974 4.0063105 1103.2369
+214195.0670791017 4.00635 1103.316
+214196.067079206 4.0064287 1103.3357
+214197.0670793103 4.0063896 1103.3357
+214198.0670794146 4.0063896 1103.3752
+214199.0670795189 4.0064683 1103.3555
+214200.0670796232 4.0064287 1103.4542
+214201.0670797275 4.0064287 1103.316
+214202.0670798318 4.0065074 1103.316
+214203.0670799362 4.0065074 1103.3357
+214204.0670800405 4.0065861 1103.3752
+214205.0670801448 4.0064287 1103.3752
+214206.0670802491 4.006547 1103.2567
+214207.0670803534 4.0065074 1103.3357
+214208.0670804577 4.0065074 1103.3555
+214209.067080562 4.0066257 1103.3752
+214210.0670806663 4.0065861 1103.3752
+214211.0670807706 4.0066257 1103.316
+214212.0670808749 4.0065861 1103.3752
+214213.0670809792 4.0066257 1103.3555
+214214.0670810835 4.0066257 1103.4344
+214215.0670811879 4.006547 1103.2765
+214216.0670812922 4.0066257 1103.3555
+214217.0670813965 4.0067043 1103.3357
+214218.0670815008 4.0067043 1103.2963
+214219.0670816051 4.006783 1103.3357
+214220.0670817094 4.0067439 1103.3357
+214221.0670818137 4.0067043 1103.3555
+214222.067081918 4.0067439 1103.3357
+214223.0670820223 4.0067439 1103.3357
+214224.0670821266 4.0067043 1103.3752
+214225.0670822309 4.0067439 1103.316
+214226.0670823352 4.0067439 1103.316
+214227.0670824395 4.0068617 1103.316
+214228.0670825439 4.0068226 1103.3555
+214229.0670826482 4.0069404 1103.2765
+214230.0670827525 4.0069404 1103.3949
+214231.0670828568 4.0068226 1103.2567
+214232.0670829611 4.0067439 1103.3357
+214233.0670830654 4.0069013 1103.4147
+214234.0670831697 4.0069404 1103.3949
+214235.067083274 4.0069799 1103.3555
+214236.0670833783 4.0069404 1103.3555
+214237.0670834826 4.0069799 1103.3555
+214238.0670835869 4.0069404 1103.4938
+214239.0670836912 4.0069799 1103.3555
+214240.0670837956 4.0069799 1103.4147
+214241.0670838999 4.0069799 1103.4344
+214242.0670840042 4.0071769 1103.3357
+214243.0670841085 4.0069404 1103.2765
+214244.0670842128 4.0070586 1103.3357
+214245.0670843171 4.0070586 1103.3949
+214246.0670844214 4.0070586 1103.316
+214247.0670845257 4.0071373 1103.2765
+214248.06708463 4.0071769 1103.4147
+214249.0670847343 4.0071373 1103.2963
+214250.0670848386 4.0071769 1103.3752
+214251.0670849429 4.007216 1103.316
+214252.0670850473 4.0072556 1103.316
+214253.0670851516 4.0072951 1103.316
+214254.0670852559 4.007216 1103.3555
+214255.0670853602 4.007216 1103.3949
+214256.0670854645 4.007216 1103.3949
+214257.0670855688 4.007216 1103.316
+214258.0670856731 4.0073342 1103.316
+214259.0670857774 4.0073342 1103.3555
+214260.0670858817 4.0073342 1103.3752
+214261.067085986 4.0073738 1103.3357
+214262.0670860903 4.0073342 1103.3949
+214263.0670861946 4.0074129 1103.3949
+214264.067086299 4.0073738 1103.3752
+214265.0670864033 4.0074525 1103.2567
+214266.0670865076 4.0073342 1103.2963
+214267.0670866119 4.0074525 1103.316
+214268.0670867162 4.0074916 1103.3555
+214269.0670868205 4.0073738 1103.2963
+214270.0670869248 4.0075312 1103.3752
+214271.0670870291 4.0074129 1103.3949
+214272.0670871334 4.0074916 1103.2172
+214273.0670872377 4.0074525 1103.3555
+214274.067087342 4.0075312 1103.316
+214275.0670874463 4.0073738 1103.3949
+214276.0670875506 4.0074525 1103.3752
+214277.067087655 4.0074916 1103.316
+214278.0670877593 4.0075312 1103.2765
+214279.0670878636 4.0076494 1103.4147
+214280.0670879679 4.0076098 1103.316
+214281.0670880722 4.0075703 1103.3555
+214282.0670881765 4.0075312 1103.3357
+214283.0670882808 4.0076494 1103.3357
+214284.0670883851 4.0076885 1103.3949
+214285.0670884894 4.0076494 1103.3555
+214286.0670885937 4.0076494 1103.3357
+214287.067088698 4.0076494 1103.3555
+214288.0670888023 4.0076885 1103.2963
+214289.0670889067 4.0077672 1103.316
+214290.067089011 4.0076885 1103.316
+214291.0670891153 4.0076885 1103.3752
+214292.0670892196 4.0077281 1103.316
+214293.0670893239 4.0077672 1103.3357
+214294.0670894282 4.0077672 1103.2765
+214295.0670895325 4.0078459 1103.4344
+214296.0670896368 4.0077672 1103.316
+214297.0670897411 4.0078459 1103.2765
+214298.0670898454 4.0078068 1103.2765
+214299.0670899497 4.007925 1103.3555
+214300.067090054 4.0077672 1103.3357
+214301.0670901584 4.0078459 1103.2963
+214302.0670902627 4.0079641 1103.2963
+214303.067090367 4.007925 1103.2567
+214304.0670904713 4.0078459 1103.3752
+214305.0670905756 4.007925 1103.3949
+214306.0670906799 4.0079641 1103.3949
+214307.0670907842 4.0080428 1103.3752
+214308.0670908885 4.0080037 1103.3949
+214309.0670909928 4.0080037 1103.3357
+214310.0670910971 4.0081215 1103.2963
+214311.0670912014 4.0079641 1103.3949
+214312.0670913057 4.0080428 1103.3555
+214313.06709141 4.0080037 1103.316
+214314.0670915144 4.0080824 1103.3357
+214315.0670916187 4.0080824 1103.3357
+214316.067091723 4.0080824 1103.3949
+214317.0670918273 4.0081215 1103.3949
+214318.0670919316 4.0080824 1103.3357
+214319.0670920359 4.0081611 1103.3949
+214320.0670921402 4.0081611 1103.3949
+214321.0670922445 4.0081215 1103.316
+214322.0670923488 4.0083184 1103.2963
+214323.0670924531 4.0081215 1103.3949
+214324.0670925574 4.0081215 1103.3752
+214325.0670926617 4.0082793 1103.3357
+214326.0670927661 4.0082793 1103.3357
+214327.0670928704 4.0082397 1103.3357
+214328.0670929747 4.0082397 1103.3555
+214329.067093079 4.0082397 1103.4147
+214330.0670931833 4.0083184 1103.3949
+214331.0670932876 4.008358 1103.316
+214332.0670933919 4.0082793 1103.3555
+214333.0670934962 4.0083184 1103.3949
+214334.0670936005 4.008358 1103.3752
+214335.0670937048 4.0083971 1103.3357
+214336.0670938091 4.008358 1103.316
+214337.0670939134 4.0083971 1103.3949
+214338.0670940178 4.008358 1103.2567
+214339.0670941221 4.0083184 1103.3357
+214340.0670942264 4.0083971 1103.2369
+214341.0670943307 4.0084367 1103.3752
+214342.067094435 4.0084758 1103.3949
+214343.0670945393 4.0084367 1103.3357
+214344.0670946436 4.0085154 1103.3949
+214345.0670947479 4.0085154 1103.3752
+214346.0670948522 4.0085549 1103.3949
+214347.0670949565 4.0085549 1103.316
+214348.0670950608 4.0085549 1103.2963
+214349.0670951651 4.0085549 1103.3752
+214350.0670952694 4.0085549 1103.3949
+214351.0670953738 4.0086336 1103.2765
+214352.0670954781 4.0085549 1103.2369
+214353.0670955824 4.0086336 1103.3752
+214354.0670956867 4.0086727 1103.3752
+214355.067095791 4.0086336 1103.2765
+214356.0670958953 4.008594 1103.4344
+214357.0670959996 4.0086727 1103.3357
+214358.0670961039 4.0086336 1103.316
+214359.0670962082 4.0086727 1103.3357
+214360.0670963125 4.0086727 1103.3357
+214361.0670964168 4.0087514 1103.316
+214362.0670965211 4.0086727 1103.2765
+214363.0670966255 4.0087514 1103.4147
+214364.0670967298 4.0087514 1103.4147
+214365.0670968341 4.0088305 1103.316
+214366.0670969384 4.0087514 1103.2963
+214367.0670970427 4.0087123 1103.2369
+214368.067097147 4.0088305 1103.3357
+214369.0670972513 4.008791 1103.3357
+214370.0670973556 4.0087514 1103.2765
+214371.0670974599 4.0087123 1103.2765
+214372.0670975642 4.0088696 1103.3949
+214373.0670976685 4.0088696 1103.316
+214374.0670977728 4.0089092 1103.3752
+214375.0670978772 4.0089483 1103.3357
+214376.0670979815 4.008791 1103.3357
+214377.0670980858 4.0089879 1103.3357
+214378.0670981901 4.0089092 1103.4147
+214379.0670982944 4.009027 1103.3752
+214380.0670983987 4.0089483 1103.3752
+214381.067098503 4.0089483 1103.2963
+214382.0670986073 4.0090666 1103.2963
+214383.0670987116 4.0089483 1103.3752
+214384.0670988159 4.009027 1103.3357
+214385.0670989202 4.0089483 1103.2963
+214386.0670990245 4.0091057 1103.474
+214387.0670991289 4.009027 1103.4344
+214388.0670992332 4.0091057 1103.4147
+214389.0670993375 4.0091453 1103.3555
+214390.0670994418 4.0091057 1103.3752
+214391.0670995461 4.0091057 1103.3949
+214392.0670996504 4.0092635 1103.4147
+214393.0670997547 4.0092239 1103.3555
+214394.067099859 4.009027 1103.4344
+214395.0670999633 4.0091453 1103.3357
+214396.0671000676 4.0092239 1103.2765
+214397.0671001719 4.0091848 1103.316
+214398.0671002762 4.0091848 1103.2963
+214399.0671003805 4.0091848 1103.3949
+214400.0671004849 4.0093026 1103.316
+214401.0671005892 4.0092635 1103.3555
+214402.0671006935 4.0092635 1103.2963
+214403.0671007978 4.0093813 1103.3357
+214404.0671009021 4.0093422 1103.3555
+214405.0671010064 4.0093813 1103.316
+214406.0671011107 4.0093026 1103.3555
+214407.067101215 4.0093813 1103.3357
+214408.0671013193 4.0093422 1103.3949
+214409.0671014236 4.0093813 1103.2765
+214410.0671015279 4.0093422 1103.3949
+214411.0671016322 4.0093813 1103.4147
+214412.0671017366 4.0094209 1103.3357
+214413.0671018409 4.0096178 1103.4147
+214414.0671019452 4.0094604 1103.3357
+214415.0671020495 4.0094995 1103.3357
+214416.0671021538 4.0093813 1103.4147
+214417.0671022581 4.0095782 1103.3752
+214418.0671023624 4.0095391 1103.2963
+214419.0671024667 4.0094995 1103.2963
+214420.067102571 4.0095391 1103.316
+214421.0671026753 4.0095391 1103.2765
+214422.0671027796 4.0094995 1103.3357
+214423.0671028839 4.0095391 1103.474
+214424.0671029883 4.0095782 1103.3357
+214425.0671030926 4.0096965 1103.3752
+214426.0671031969 4.0096965 1103.3752
+214427.0671033012 4.0096569 1103.3752
+214428.0671034055 4.0096569 1103.3555
+214429.0671035098 4.0097356 1103.316
+214430.0671036141 4.0096965 1103.4344
+214431.0671037184 4.0096569 1103.3357
+214432.0671038227 4.0098538 1103.3357
+214433.067103927 4.0097356 1103.3357
+214434.0671040313 4.0097356 1103.316
+214435.0671041356 4.0097356 1103.4147
+214436.0671042399 4.0098147 1103.4147
+214437.0671043443 4.0097752 1103.3752
+214438.0671044486 4.0098934 1103.3555
+214439.0671045529 4.0098538 1103.2765
+214440.0671046572 4.0098934 1103.3752
+214441.0671047615 4.0099721 1103.3357
+214442.0671048658 4.0098538 1103.2567
+214443.0671049701 4.0100112 1103.3357
+214444.0671050744 4.0099325 1103.2567
+214445.0671051787 4.0098934 1103.3949
+214446.067105283 4.0099721 1103.4147
+214447.0671053873 4.0098538 1103.4147
+214448.0671054916 4.0097752 1103.3949
+214449.067105596 4.0099721 1103.3949
+214450.0671057003 4.0100904 1103.3752
+214451.0671058046 4.0101295 1103.3752
+214452.0671059089 4.0100112 1103.316
+214453.0671060132 4.0100508 1103.2963
+214454.0671061175 4.0100112 1103.316
+214455.0671062218 4.0100508 1103.4344
+214456.0671063261 4.0100508 1103.316
+214457.0671064304 4.0100904 1103.2963
+214458.0671065347 4.0102081 1103.3752
+214459.067106639 4.0100904 1103.3555
+214460.0671067433 4.0100508 1103.2765
+214461.0671068477 4.0101295 1103.3949
+214462.067106952 4.0100904 1103.316
+214463.0671070563 4.0101295 1103.316
+214464.0671071606 4.010169 1103.3555
+214465.0671072649 4.0102081 1103.2369
+214466.0671073692 4.0101295 1103.2567
+214467.0671074735 4.0101295 1103.3357
+214468.0671075778 4.010366 1103.3752
+214469.0671076821 4.010169 1103.316
+214470.0671077864 4.010169 1103.2369
+214471.0671078907 4.0102477 1103.3555
+214472.067107995 4.0103264 1103.3949
+214473.0671080993 4.010366 1103.316
+214474.0671082037 4.0102868 1103.3752
+214475.067108308 4.0103264 1103.4147
+214476.0671084123 4.0104446 1103.3357
+214477.0671085166 4.0103264 1103.2963
+214478.0671086209 4.0104051 1103.2963
+214479.0671087252 4.010366 1103.4344
+214480.0671088295 4.0104446 1103.3357
+214481.0671089338 4.0105233 1103.3357
+214482.0671090381 4.010366 1103.3555
+214483.0671091424 4.0104446 1103.3357
+214484.0671092467 4.0104051 1103.4147
+214485.067109351 4.0104837 1103.2765
+214486.0671094554 4.0104837 1103.2963
+214487.0671095597 4.0104051 1103.2963
+214488.067109664 4.0105233 1103.3752
+214489.0671097683 4.0105233 1103.316
+214490.0671098726 4.0104837 1103.3752
+214491.0671099769 4.0105233 1103.2963
+214492.0671100812 4.0105233 1103.3555
+214493.0671101855 4.0106411 1103.2963
+214494.0671102898 4.0105624 1103.2963
+214495.0671103941 4.0105233 1103.3357
+214496.0671104984 4.010602 1103.2369
+214497.0671106027 4.010602 1103.3752
+214498.0671107071 4.0106807 1103.3949
+214499.0671108114 4.0106807 1103.4344
+214500.0671109157 4.0107203 1103.3555
+214501.06711102 4.0106807 1103.3949
+214502.0671111243 4.010602 1103.3357
+214503.0671112286 4.0107594 1103.3555
+214504.0671113329 4.0107203 1103.3752
+214505.0671114372 4.0107594 1103.3752
+214506.0671115415 4.0107203 1103.3357
+214507.0671116458 4.0107594 1103.2765
+214508.0671117501 4.0107989 1103.3357
+214509.0671118544 4.0107989 1103.3949
+214510.0671119588 4.0107594 1103.4147
+214511.0671120631 4.010838 1103.4344
+214512.0671121674 4.0107594 1103.3752
+214513.0671122717 4.010838 1103.3752
+214514.067112376 4.0109959 1103.3357
+214515.0671124803 4.0109563 1103.2963
+214516.0671125846 4.010838 1103.3949
+214517.0671126889 4.0108776 1103.2765
+214518.0671127932 4.010838 1103.2963
+214519.0671128975 4.0109167 1103.474
+214520.0671130018 4.0109167 1103.3555
+214521.0671131061 4.0108776 1103.2765
+214522.0671132104 4.0109563 1103.3752
+214523.0671133148 4.011035 1103.3949
+214524.0671134191 4.0110745 1103.3949
+214525.0671135234 4.0109959 1103.3555
+214526.0671136277 4.0109959 1103.2765
+214527.067113732 4.0110745 1103.316
+214528.0671138363 4.011035 1103.2963
+214529.0671139406 4.0111136 1103.2765
+214530.0671140449 4.0111136 1103.3555
+214531.0671141492 4.0110745 1103.3357
+214532.0671142535 4.0111923 1103.2765
+214533.0671143578 4.0111532 1103.2963
+214534.0671144621 4.0111923 1103.2963
+214535.0671145665 4.0112319 1103.316
+214536.0671146708 4.0111923 1103.3357
+214537.0671147751 4.011271 1103.3555
+214538.0671148794 4.0110745 1103.2567
+214539.0671149837 4.0112319 1103.2963
+214540.067115088 4.0111532 1103.3752
+214541.0671151923 4.0113106 1103.3752
+214542.0671152966 4.0112319 1103.2765
+214543.0671154009 4.011271 1103.2369
+214544.0671155052 4.0111923 1103.3752
+214545.0671156095 4.0113106 1103.3949
+214546.0671157138 4.011271 1103.3949
+214547.0671158182 4.0113106 1103.4344
+214548.0671159225 4.0113106 1103.3555
+214549.0671160268 4.0113502 1103.3752
+214550.0671161311 4.0113106 1103.4147
+214551.0671162354 4.0113893 1103.3752
+214552.0671163397 4.0113502 1103.3949
+214553.067116444 4.0114679 1103.3949
+214554.0671165483 4.0114288 1103.2963
+214555.0671166526 4.0114679 1103.3949
+214556.0671167569 4.0115466 1103.316
+214557.0671168612 4.0114288 1103.3357
+214558.0671169655 4.0114679 1103.3949
+214559.0671170698 4.0114288 1103.4147
+214560.0671171742 4.0115466 1103.3555
+214561.0671172785 4.0115862 1103.3357
+214562.0671173828 4.0115862 1103.2963
+214563.0671174871 4.0115075 1103.316
+214564.0671175914 4.0115466 1103.3555
+214565.0671176957 4.0115466 1103.2765
+214566.0671178 4.0115862 1103.3949
+214567.0671179043 4.0115862 1103.3555
+214568.0671180086 4.0115862 1103.3357
+214569.0671181129 4.0116649 1103.3555
+214570.0671182172 4.0116649 1103.2765
+214571.0671183215 4.0116258 1103.2963
+214572.0671184259 4.0117435 1103.3949
+214573.0671185302 4.0117044 1103.3949
+214574.0671186345 4.0116649 1103.2567
+214575.0671187388 4.0117044 1103.4147
+214576.0671188431 4.0117831 1103.3555
+214577.0671189474 4.0117044 1103.3949
+214578.0671190517 4.0117435 1103.2567
+214579.067119156 4.0118222 1103.3555
+214580.0671192603 4.0117831 1103.316
+214581.0671193646 4.0117435 1103.3357
+214582.0671194689 4.0119014 1103.316
+214583.0671195732 4.0118222 1103.2963
+214584.0671196776 4.0118618 1103.3555
+214585.0671197819 4.0118618 1103.2765
+214586.0671198862 4.0118618 1103.2963
+214587.0671199905 4.0118618 1103.316
+214588.0671200948 4.0119014 1103.3357
+214589.0671201991 4.0118222 1103.316
+214590.0671203034 4.0119405 1103.474
+214591.0671204077 4.0119801 1103.3752
+214592.067120512 4.0120587 1103.3752
+214593.0671206163 4.0119405 1103.3752
+214594.0671207206 4.0119405 1103.316
+214595.0671208249 4.0119801 1103.316
+214596.0671209292 4.0120587 1103.4147
+214597.0671210336 4.0120587 1103.2567
+214598.0671211379 4.0119801 1103.2765
+214599.0671212422 4.0119801 1103.3357
+214600.0671213465 4.0120978 1103.3357
+214601.0671214508 4.0120978 1103.2567
+214602.0671215551 4.0120978 1103.3357
+214603.0671216594 4.0121374 1103.316
+214604.0671217637 4.0120192 1103.3357
+214605.067121868 4.0120978 1103.4344
+214606.0671219723 4.0121374 1103.2765
+214607.0671220766 4.0122161 1103.3357
+214608.0671221809 4.0122948 1103.3357
+214609.0671222853 4.0121374 1103.316
+214610.0671223896 4.0120587 1103.4542
+214611.0671224939 4.0120978 1103.2765
+214612.0671225982 4.0122161 1103.3555
+214613.0671227025 4.0122557 1103.3555
+214614.0671228068 4.0121765 1103.3357
+214615.0671229111 4.0122948 1103.3555
+214616.0671230154 4.0122948 1103.3949
+214617.0671231197 4.0122161 1103.3357
+214618.067123224 4.0122557 1103.316
+214619.0671233283 4.0122948 1103.3357
+214620.0671234326 4.0123343 1103.3752
+214621.067123537 4.0122948 1103.3555
+214622.0671236413 4.0123343 1103.316
+214623.0671237456 4.0122948 1103.3357
+214624.0671238499 4.0123343 1103.3949
+214625.0671239542 4.0122948 1103.3357
+214626.0671240585 4.0124521 1103.3555
+214627.0671241628 4.0124917 1103.2369
+214628.0671242671 4.0124521 1103.316
+214629.0671243714 4.0124917 1103.3357
+214630.0671244757 4.0124917 1103.3357
+214631.06712458 4.0124917 1103.316
+214632.0671246843 4.0124521 1103.3555
+214633.0671247886 4.0124917 1103.2765
+214634.067124893 4.0124917 1103.2963
+214635.0671249973 4.0125313 1103.3752
+214636.0671251016 4.0125313 1103.3752
+214637.0671252059 4.0124521 1103.3357
+214638.0671253102 4.0126491 1103.3357
+214639.0671254145 4.0125313 1103.3752
+214640.0671255188 4.01261 1103.3949
+214641.0671256231 4.0125313 1103.2765
+214642.0671257274 4.0126886 1103.3752
+214643.0671258317 4.0125704 1103.3949
+214644.067125936 4.0126491 1103.3357
+214645.0671260403 4.0126886 1103.3752
+214646.0671261447 4.0126886 1103.3555
+214647.067126249 4.0127277 1103.3357
+214648.0671263533 4.0126886 1103.3949
+214649.0671264576 4.0126886 1103.3555
+214650.0671265619 4.0128064 1103.3555
+214651.0671266662 4.0128064 1103.2963
+214652.0671267705 4.0127673 1103.3752
+214653.0671268748 4.0127277 1103.3949
+214654.0671269791 4.0128064 1103.3752
+214655.0671270834 4.0128064 1103.316
+214656.0671271877 4.0128064 1103.3949
+214657.067127292 4.0128064 1103.2765
+214658.0671273964 4.0128856 1103.3949
+214659.0671275007 4.012846 1103.3752
+214660.067127605 4.0127673 1103.3949
+214661.0671277093 4.0128856 1103.3357
+214662.0671278136 4.0128856 1103.316
+214663.0671279179 4.0128064 1103.3357
+214664.0671280222 4.012846 1103.316
+214665.0671281265 4.013082 1103.3949
+214666.0671282308 4.0129247 1103.3555
+214667.0671283351 4.0129642 1103.3949
+214668.0671284394 4.0128856 1103.3555
+214669.0671285437 4.0129247 1103.3752
+214670.0671286481 4.0130033 1103.3949
+214671.0671287524 4.0130033 1103.4344
+214672.0671288567 4.0130429 1103.2765
+214673.067128961 4.0130429 1103.3949
+214674.0671290653 4.0130429 1103.316
+214675.0671291696 4.0131612 1103.3555
+214676.0671292739 4.0130429 1103.4542
+214677.0671293782 4.0131612 1103.3555
+214678.0671294825 4.013279 1103.4147
+214679.0671295868 4.0131216 1103.2567
+214680.0671296911 4.0131216 1103.3949
+214681.0671297954 4.0131216 1103.2765
+214682.0671298997 4.0131612 1103.4344
+214683.0671300041 4.0131216 1103.316
+214684.0671301084 4.0131612 1103.2963
+214685.0671302127 4.0132399 1103.316
+214686.067130317 4.0132003 1103.3357
+214687.0671304213 4.0132003 1103.2963
+214688.0671305256 4.0132399 1103.3752
+214689.0671306299 4.0132399 1103.3555
+214690.0671307342 4.013279 1103.3357
+214691.0671308385 4.0133185 1103.2963
+214692.0671309428 4.0133576 1103.3555
+214693.0671310471 4.0133185 1103.2765
+214694.0671311514 4.013279 1103.2567
+214695.0671312558 4.0134368 1103.3357
+214696.0671313601 4.0133576 1103.3357
+214697.0671314644 4.0133972 1103.3555
+214698.0671315687 4.0133972 1103.2963
+214699.067131673 4.0134368 1103.3949
+214700.0671317773 4.0133972 1103.316
+214701.0671318816 4.0133972 1103.4147
+214702.0671319859 4.0133972 1103.3357
+214703.0671320902 4.0135942 1103.2765
+214704.0671321945 4.0134368 1103.3752
+214705.0671322988 4.0135155 1103.3555
+214706.0671324031 4.0134759 1103.3949
+214707.0671325075 4.0134759 1103.3555
+214708.0671326118 4.0135546 1103.3752
+214709.0671327161 4.0135155 1103.2963
+214710.0671328204 4.0135546 1103.2765
+214711.0671329247 4.0136333 1103.316
+214712.067133029 4.0135546 1103.316
+214713.0671331333 4.0136728 1103.3555
+214714.0671332376 4.0135942 1103.3949
+214715.0671333419 4.0136333 1103.3555
+214716.0671334462 4.0137119 1103.3357
+214717.0671335505 4.0137119 1103.3357
+214718.0671336548 4.0136728 1103.316
+214719.0671337591 4.0136728 1103.2567
+214720.0671338635 4.0137911 1103.3555
+214721.0671339678 4.0136333 1103.3752
+214722.0671340721 4.0137515 1103.2963
+214723.0671341764 4.0137911 1103.3555
+214724.0671342807 4.0137911 1103.3357
+214725.067134385 4.0137911 1103.3357
+214726.0671344893 4.0137911 1103.2765
+214727.0671345936 4.0138302 1103.3357
+214728.0671346979 4.0137515 1103.3357
+214729.0671348022 4.0137911 1103.3752
+214730.0671349065 4.0138302 1103.3555
+214731.0671350108 4.0139089 1103.3752
+214732.0671351152 4.0138302 1103.3555
+214733.0671352195 4.0139089 1103.3357
+214734.0671353238 4.0139484 1103.316
+214735.0671354281 4.0140271 1103.2963
+214736.0671355324 4.0138698 1103.3555
+214737.0671356367 4.0139875 1103.3949
+214738.067135741 4.0139089 1103.3752
+214739.0671358453 4.0139875 1103.3555
+214740.0671359496 4.0140271 1103.2963
+214741.0671360539 4.0140667 1103.3357
+214742.0671361582 4.0140271 1103.316
+214743.0671362625 4.0140667 1103.3555
+214744.0671363669 4.0140667 1103.3949
+214745.0671364712 4.0140667 1103.2765
+214746.0671365755 4.0140667 1103.3357
+214747.0671366798 4.0141454 1103.2369
+214748.0671367841 4.0140667 1103.3357
+214749.0671368884 4.0141845 1103.3752
+214750.0671369927 4.0141845 1103.2765
+214751.067137097 4.0140667 1103.2963
+214752.0671372013 4.0142632 1103.316
+214753.0671373056 4.0141845 1103.3949
+214754.0671374099 4.0142632 1103.2963
+214755.0671375142 4.0141454 1103.4344
+214756.0671376185 4.0142632 1103.3555
+214757.0671377229 4.0142241 1103.3357
+214758.0671378272 4.0141454 1103.3357
+214759.0671379315 4.0142632 1103.3357
+214760.0671380358 4.0143027 1103.2963
+214761.0671381401 4.0142241 1103.3357
+214762.0671382444 4.0143418 1103.4147
+214763.0671383487 4.0143814 1103.3555
+214764.067138453 4.0143418 1103.3752
+214765.0671385573 4.0143814 1103.3752
+214766.0671386616 4.0143814 1103.3555
+214767.0671387659 4.0143418 1103.3357
+214768.0671388702 4.0143814 1103.3752
+214769.0671389746 4.0144997 1103.2963
+214770.0671390789 4.0143027 1103.2369
+214771.0671391832 4.0144601 1103.4147
+214772.0671392875 4.0145783 1103.4344
+214773.0671393918 4.0144997 1103.3357
+214774.0671394961 4.0144601 1103.3949
+214775.0671396004 4.014421 1103.3357
+214776.0671397047 4.0145388 1103.3752
+214777.067139809 4.0144601 1103.3949
+214778.0671399133 4.0145783 1103.3949
+214779.0671400176 4.0145388 1103.316
+214780.0671401219 4.0145783 1103.3752
+214781.0671402263 4.0145783 1103.3357
+214782.0671403306 4.0145783 1103.3949
+214783.0671404349 4.0145783 1103.3555
+214784.0671405392 4.0146174 1103.3555
+214785.0671406435 4.0146174 1103.3555
+214786.0671407478 4.0146966 1103.316
+214787.0671408521 4.014657 1103.2567
+214788.0671409564 4.0145783 1103.474
+214789.0671410607 4.0146174 1103.316
+214790.067141165 4.0146174 1103.316
+214791.0671412693 4.0147357 1103.3357
+214792.0671413736 4.0147753 1103.3357
+214793.067141478 4.0147357 1103.2963
+214794.0671415823 4.0148931 1103.3357
+214795.0671416866 4.0148144 1103.3752
+214796.0671417909 4.0147753 1103.4344
+214797.0671418952 4.0147357 1103.316
+214798.0671419995 4.014854 1103.2963
+214799.0671421038 4.0146966 1103.3949
+214800.0671422081 4.014854 1103.3357
+214801.0671423124 4.0148144 1103.2963
+214802.0671424167 4.0147357 1103.2765
+214803.067142521 4.0149717 1103.3949
+214804.0671426253 4.0149326 1103.2369
+214805.0671427296 4.014854 1103.316
+214806.067142834 4.0148931 1103.316
+214807.0671429383 4.0149326 1103.2369
+214808.0671430426 4.0150113 1103.316
+214809.0671431469 4.014854 1103.316
+214810.0671432512 4.0150113 1103.3555
+214811.0671433555 4.0150113 1103.3949
+214812.0671434598 4.0150113 1103.316
+214813.0671435641 4.0149326 1103.3357
+214814.0671436684 4.0150113 1103.2567
+214815.0671437727 4.0149717 1103.3357
+214816.067143877 4.0151687 1103.2765
+214817.0671439813 4.01509 1103.3752
+214818.0671440857 4.0150509 1103.3752
+214819.06714419 4.0151296 1103.316
+214820.0671442943 4.0150509 1103.4147
+214821.0671443986 4.0152473 1103.2963
+214822.0671445029 4.0151687 1103.2963
+214823.0671446072 4.0151296 1103.3357
+214824.0671447115 4.0152082 1103.2765
+214825.0671448158 4.0152869 1103.3949
+214826.0671449201 4.0152473 1103.3555
+214827.0671450244 4.0152082 1103.4147
+214828.0671451287 4.0151687 1103.2963
+214829.067145233 4.0152473 1103.2765
+214830.0671453374 4.0152473 1103.3752
+214831.0671454417 4.0152473 1103.2765
+214832.067145546 4.0153265 1103.3555
+214833.0671456503 4.0152082 1103.3752
+214834.0671457546 4.0153656 1103.3357
+214835.0671458589 4.0152869 1103.3357
+214836.0671459632 4.0153656 1103.2963
+214837.0671460675 4.0154443 1103.3555
+214838.0671461718 4.0153656 1103.3555
+214839.0671462761 4.0154052 1103.3555
+214840.0671463804 4.0153265 1103.3752
+214841.0671464847 4.0153656 1103.4147
+214842.067146589 4.0154052 1103.3752
+214843.0671466934 4.0154839 1103.2963
+214844.0671467977 4.0154443 1103.3555
+214845.067146902 4.0154839 1103.316
+214846.0671470063 4.0154443 1103.3555
+214847.0671471106 4.0156021 1103.2765
+214848.0671472149 4.0154839 1103.2567
+214849.0671473192 4.0155625 1103.3555
+214850.0671474235 4.015523 1103.2765
+214851.0671475278 4.0155625 1103.3357
+214852.0671476321 4.0155625 1103.4344
+214853.0671477364 4.015523 1103.2765
+214854.0671478407 4.0156021 1103.3949
+214855.0671479451 4.0156412 1103.3357
+214856.0671480494 4.0155625 1103.3555
+214857.0671481537 4.0156412 1103.2765
+214858.067148258 4.0157199 1103.2369
+214859.0671483623 4.0156412 1103.4147
+214860.0671484666 4.0156808 1103.316
+214861.0671485709 4.0157595 1103.2567
+214862.0671486752 4.0157199 1103.3752
+214863.0671487795 4.0157199 1103.4147
+214864.0671488838 4.0158381 1103.3357
+214865.0671489881 4.0157199 1103.3357
+214866.0671490924 4.0157595 1103.4344
+214867.0671491968 4.0157199 1103.3555
+214868.0671493011 4.0157595 1103.3357
+214869.0671494054 4.0157595 1103.316
+214870.0671495097 4.0158772 1103.3752
+214871.067149614 4.0158381 1103.3555
+214872.0671497183 4.0158381 1103.316
+214873.0671498226 4.0159955 1103.2963
+214874.0671499269 4.0158381 1103.3555
+214875.0671500312 4.0159168 1103.3949
+214876.0671501355 4.0159564 1103.316
+214877.0671502398 4.0158772 1103.3752
+214878.0671503441 4.0159564 1103.3555
+214879.0671504484 4.0158772 1103.3357
+214880.0671505528 4.0159168 1103.2963
+214881.0671506571 4.0159955 1103.2963
+214882.0671507614 4.0158772 1103.3357
+214883.0671508657 4.0160351 1103.2963
+214884.06715097 4.0160742 1103.2963
+214885.0671510743 4.0160742 1103.3949
+214886.0671511786 4.0161138 1103.4147
+214887.0671512829 4.0159955 1103.2765
+214888.0671513872 4.0161138 1103.2963
+214889.0671514915 4.0161529 1103.316
+214890.0671515958 4.0161529 1103.4344
+214891.0671517001 4.0161924 1103.316
+214892.0671518045 4.0161529 1103.3752
+214893.0671519088 4.0161529 1103.2765
+214894.0671520131 4.0162711 1103.3357
+214895.0671521174 4.016232 1103.3357
+214896.0671522217 4.0161924 1103.3555
+214897.067152326 4.0161924 1103.2963
+214898.0671524303 4.0162711 1103.4147
+214899.0671525346 4.0162711 1103.4147
+214900.0671526389 4.016232 1103.3357
+214901.0671527432 4.0163894 1103.3949
+214902.0671528475 4.0163498 1103.3357
+214903.0671529518 4.0163498 1103.3752
+214904.0671530562 4.0163498 1103.3949
+214905.0671531605 4.0163107 1103.4147
+214906.0671532648 4.016232 1103.2567
+214907.0671533691 4.0163498 1103.3752
+214908.0671534734 4.0163894 1103.4344
+214909.0671535777 4.0164285 1103.3752
+214910.067153682 4.0163894 1103.2765
+214911.0671537863 4.0163894 1103.3357
+214912.0671538906 4.0163894 1103.3555
+214913.0671539949 4.0164285 1103.3357
+214914.0671540992 4.016468 1103.2369
+214915.0671542035 4.016468 1103.3949
+214916.0671543079 4.0165863 1103.4147
+214917.0671544122 4.016468 1103.3357
+214918.0671545165 4.0166254 1103.3357
+214919.0671546208 4.0166254 1103.3949
+214920.0671547251 4.0165863 1103.3357
+214921.0671548294 4.0165467 1103.3752
+214922.0671549337 4.0165467 1103.316
+214923.067155038 4.0166254 1103.4147
+214924.0671551423 4.0165467 1103.2963
+214925.0671552466 4.0167041 1103.3357
+214926.0671553509 4.0166254 1103.3555
+214927.0671554552 4.0167041 1103.316
+214928.0671555595 4.016665 1103.2963
+214929.0671556639 4.0167437 1103.4147
+214930.0671557682 4.0167041 1103.3949
+214931.0671558725 4.0167437 1103.3752
+214932.0671559768 4.0167437 1103.3555
+214933.0671560811 4.0167041 1103.3949
+214934.0671561854 4.0168223 1103.3357
+214935.0671562897 4.0167437 1103.3555
+214936.067156394 4.0168619 1103.4147
+214937.0671564983 4.0168223 1103.3752
+214938.0671566026 4.0168619 1103.2765
+214939.0671567069 4.0168223 1103.3752
+214940.0671568112 4.016901 1103.4147
+214941.0671569156 4.0168619 1103.3555
+214942.0671570199 4.0168619 1103.3949
+214943.0671571242 4.0168619 1103.3949
+214944.0671572285 4.0168619 1103.3555
+214945.0671573328 4.0169406 1103.3752
+214946.0671574371 4.016901 1103.2765
+214947.0671575414 4.0169797 1103.316
+214948.0671576457 4.0170584 1103.4344
+214949.06715775 4.0169406 1103.316
+214950.0671578543 4.0169406 1103.316
+214951.0671579586 4.016901 1103.3752
+214952.0671580629 4.0170584 1103.3357
+214953.0671581673 4.0170979 1103.3949
+214954.0671582716 4.0170584 1103.316
+214955.0671583759 4.0170584 1103.3555
+214956.0671584802 4.0171766 1103.316
+214957.0671585845 4.0171766 1103.3555
+214958.0671586888 4.0170193 1103.2765
+214959.0671587931 4.0171375 1103.316
+214960.0671588974 4.0171375 1103.3752
+214961.0671590017 4.0170979 1103.2963
+214962.067159106 4.0171375 1103.2963
+214963.0671592103 4.0172553 1103.3949
+214964.0671593146 4.0171375 1103.3357
+214965.0671594189 4.0172553 1103.3752
+214966.0671595233 4.0172162 1103.316
+214967.0671596276 4.0172553 1103.2963
+214968.0671597319 4.0172553 1103.4344
+214969.0671598362 4.017334 1103.4344
+214970.0671599405 4.0172553 1103.2963
+214971.0671600448 4.0172553 1103.4147
+214972.0671601491 4.017334 1103.3357
+214973.0671602534 4.0173736 1103.3949
+214974.0671603577 4.0173736 1103.3357
+214975.067160462 4.0172162 1103.3752
+214976.0671605663 4.017334 1103.3752
+214977.0671606706 4.0173736 1103.3555
+214978.067160775 4.0173736 1103.2963
+214979.0671608793 4.017334 1103.3357
+214980.0671609836 4.0174918 1103.3357
+214981.0671610879 4.0174127 1103.3357
+214982.0671611922 4.0173736 1103.3555
+214983.0671612965 4.0174918 1103.316
+214984.0671614008 4.0175309 1103.3357
+214985.0671615051 4.0175309 1103.3949
+214986.0671616094 4.0174918 1103.3357
+214987.0671617137 4.0175705 1103.3357
+214988.067161818 4.0175705 1103.4147
+214989.0671619223 4.0174918 1103.3555
+214990.0671620267 4.0176492 1103.3949
+214991.067162131 4.0176096 1103.2963
+214992.0671622353 4.0174522 1103.3357
+214993.0671623396 4.0176096 1103.3949
+214994.0671624439 4.0176096 1103.3752
+214995.0671625482 4.0176096 1103.3949
+214996.0671626525 4.0176096 1103.3752
+214997.0671627568 4.0176883 1103.3752
+214998.0671628611 4.0177674 1103.4938
+214999.0671629654 4.0176883 1103.3357
+215000.0671630697 4.0176883 1103.3752
+215001.067163174 4.0177674 1103.4344
+215002.0671632783 4.0176883 1103.316
+215003.0671633827 4.0177674 1103.2963
+215004.067163487 4.0176883 1103.2963
+215005.0671635913 4.0177674 1103.4344
+215006.0671636956 4.0178065 1103.3555
+215007.0671637999 4.0177674 1103.2963
+215008.0671639042 4.0178461 1103.4147
+215009.0671640085 4.0178065 1103.2567
+215010.0671641128 4.0178852 1103.3949
+215011.0671642171 4.0178852 1103.3949
+215012.0671643214 4.0178065 1103.3357
+215013.0671644257 4.0178852 1103.3752
+215014.06716453 4.0178852 1103.3555
+215015.0671646344 4.0179639 1103.3555
+215016.0671647387 4.0180426 1103.2765
+215017.067164843 4.0180035 1103.3555
+215018.0671649473 4.0179248 1103.2963
+215019.0671650516 4.0179248 1103.3752
+215020.0671651559 4.0179248 1103.2172
+215021.0671652602 4.0180035 1103.2567
+215022.0671653645 4.0180035 1103.2963
+215023.0671654688 4.0180821 1103.4344
+215024.0671655731 4.0180426 1103.3555
+215025.0671656774 4.0180035 1103.316
+215026.0671657817 4.0180035 1103.3357
+215027.0671658861 4.0180035 1103.3555
+215028.0671659904 4.0180821 1103.3752
+215029.0671660947 4.0182004 1103.2963
+215030.067166199 4.0181217 1103.3357
+215031.0671663033 4.0182004 1103.3752
+215032.0671664076 4.0181608 1103.2963
+215033.0671665119 4.0182791 1103.3949
+215034.0671666162 4.0182791 1103.3949
+215035.0671667205 4.0182791 1103.4344
+215036.0671668248 4.0183578 1103.4147
+215037.0671669291 4.0182791 1103.2963
+215038.0671670334 4.0183182 1103.2765
+215039.0671671378 4.0182004 1103.3357
+215040.0671672421 4.0183578 1103.3357
+215041.0671673464 4.0183182 1103.316
+215042.0671674507 4.0183578 1103.4542
+215043.067167555 4.0183182 1103.3949
+215044.0671676593 4.0183973 1103.2765
+215045.0671677636 4.0183578 1103.4147
+215046.0671678679 4.0184364 1103.3752
+215047.0671679722 4.018476 1103.2369
+215048.0671680765 4.0185151 1103.3752
+215049.0671681808 4.018476 1103.3555
+215050.0671682851 4.0185547 1103.3555
+215051.0671683894 4.0185151 1103.3752
+215052.0671684938 4.0185151 1103.4344
+215053.0671685981 4.0184364 1103.3357
+215054.0671687024 4.018476 1103.316
+215055.0671688067 4.0185547 1103.4344
+215056.067168911 4.018476 1103.316
+215057.0671690153 4.0185547 1103.3555
+215058.0671691196 4.0185547 1103.3555
+215059.0671692239 4.018476 1103.316
+215060.0671693282 4.0186334 1103.4147
+215061.0671694325 4.0186334 1103.316
+215062.0671695368 4.0186334 1103.3357
+215063.0671696411 4.0186725 1103.3357
+215064.0671697455 4.0187516 1103.3949
+215065.0671698498 4.0185938 1103.3752
+215066.0671699541 4.018712 1103.2765
+215067.0671700584 4.0187907 1103.3949
+215068.0671701627 4.0187907 1103.2567
+215069.067170267 4.0187516 1103.3949
+215070.0671703713 4.0188694 1103.2963
+215071.0671704756 4.0187907 1103.3357
+215072.0671705799 4.0187907 1103.316
+215073.0671706842 4.0187907 1103.3357
+215074.0671707885 4.0187516 1103.316
+215075.0671708928 4.0188303 1103.316
+215076.0671709972 4.0188303 1103.3752
+215077.0671711015 4.0188303 1103.316
+215078.0671712058 4.0187907 1103.3555
+215079.0671713101 4.0188694 1103.2963
+215080.0671714144 4.018909 1103.2963
+215081.0671715187 4.0188303 1103.3949
+215082.067171623 4.0188303 1103.3752
+215083.0671717273 4.0189481 1103.3357
+215084.0671718316 4.0189877 1103.3949
+215085.0671719359 4.0190272 1103.3555
+215086.0671720402 4.0189877 1103.2963
+215087.0671721445 4.018909 1103.2963
+215088.0671722488 4.0190272 1103.316
+215089.0671723532 4.0189481 1103.3555
+215090.0671724575 4.0190272 1103.3555
+215091.0671725618 4.0189877 1103.3752
+215092.0671726661 4.0189877 1103.3357
+215093.0671727704 4.0190663 1103.3357
+215094.0671728747 4.019145 1103.3357
+215095.067172979 4.019145 1103.3949
+215096.0671730833 4.0190663 1103.3555
+215097.0671731876 4.0190663 1103.4147
+215098.0671732919 4.0192237 1103.3357
+215099.0671733962 4.0191059 1103.3752
+215100.0671735005 4.0191846 1103.3357
+215101.0671736049 4.0193028 1103.3555
+215102.0671737092 4.0191846 1103.4344
+215103.0671738135 4.019145 1103.3752
+215104.0671739178 4.0193419 1103.3949
+215105.0671740221 4.0193028 1103.3949
+215106.0671741264 4.0193028 1103.2963
+215107.0671742307 4.0193028 1103.3949
+215108.067174335 4.0192633 1103.4147
+215109.0671744393 4.0192633 1103.316
+215110.0671745436 4.0193419 1103.1777
+215111.0671746479 4.0193028 1103.3752
+215112.0671747522 4.0193419 1103.3752
+215113.0671748566 4.0193815 1103.3752
+215114.0671749609 4.0193815 1103.2963
+215115.0671750652 4.0193419 1103.2765
+215116.0671751695 4.0193815 1103.3555
+215117.0671752738 4.0194206 1103.2567
+215118.0671753781 4.0194206 1103.3949
+215119.0671754824 4.0194206 1103.3357
+215120.0671755867 4.0194602 1103.2963
+215121.067175691 4.0195389 1103.2765
+215122.0671757953 4.0195389 1103.474
+215123.0671758996 4.0194602 1103.2963
+215124.0671760039 4.0194206 1103.316
+215125.0671761082 4.0195389 1103.3752
+215126.0671762126 4.0194206 1103.3752
+215127.0671763169 4.0196176 1103.2765
+215128.0671764212 4.0194993 1103.3949
+215129.0671765255 4.0194993 1103.316
+215130.0671766298 4.019578 1103.2765
+215131.0671767341 4.0196962 1103.4147
+215132.0671768384 4.0196571 1103.3752
+215133.0671769427 4.0196176 1103.4344
+215134.067177047 4.0196962 1103.3949
+215135.0671771513 4.0196962 1103.3357
+215136.0671772556 4.0196962 1103.3949
+215137.0671773599 4.0196571 1103.3555
+215138.0671774643 4.0197358 1103.2963
+215139.0671775686 4.0196571 1103.3752
+215140.0671776729 4.0197358 1103.3555
+215141.0671777772 4.0197358 1103.3357
+215142.0671778815 4.0196571 1103.2963
+215143.0671779858 4.0198145 1103.3949
+215144.0671780901 4.0197749 1103.3949
+215145.0671781944 4.0197749 1103.2567
+215146.0671782987 4.0198932 1103.3357
+215147.067178403 4.0198145 1103.3949
+215148.0671785073 4.0198145 1103.2765
+215149.0671786116 4.0198536 1103.316
+215150.067178716 4.0198536 1103.4344
+215151.0671788203 4.0198932 1103.3555
+215152.0671789246 4.0198932 1103.3752
+215153.0671790289 4.0199327 1103.3949
+215154.0671791332 4.0200114 1103.2765
+215155.0671792375 4.0199327 1103.2567
+215156.0671793418 4.0199718 1103.4147
+215157.0671794461 4.0200901 1103.4147
+215158.0671795504 4.0200114 1103.2765
+215159.0671796547 4.0199327 1103.4344
+215160.067179759 4.0199718 1103.3949
+215161.0671798633 4.0200114 1103.3752
+215162.0671799676 4.0200114 1103.2963
+215163.067180072 4.0200901 1103.3949
+215164.0671801763 4.0200901 1103.4147
+215165.0671802806 4.0201292 1103.2963
+215166.0671803849 4.0200901 1103.3949
+215167.0671804892 4.0201688 1103.3357
+215168.0671805935 4.0202079 1103.3752
+215169.0671806978 4.0201688 1103.3555
+215170.0671808021 4.0202079 1103.3752
+215171.0671809064 4.020287 1103.3555
+215172.0671810107 4.0201688 1103.2963
+215173.067181115 4.0202475 1103.2567
+215174.0671812193 4.0201688 1103.4147
+215175.0671813237 4.0202475 1103.3555
+215176.067181428 4.0202475 1103.2963
+215177.0671815323 4.020287 1103.3555
+215178.0671816366 4.0202079 1103.3752
+215179.0671817409 4.0202475 1103.316
+215180.0671818452 4.0203261 1103.3555
+215181.0671819495 4.0202475 1103.3555
+215182.0671820538 4.0204048 1103.3752
+215183.0671821581 4.0203261 1103.3555
+215184.0671822624 4.0203657 1103.3555
+215185.0671823667 4.0204048 1103.3357
+215186.067182471 4.0203657 1103.3555
+215187.0671825754 4.0204444 1103.4147
+215188.0671826797 4.020287 1103.3357
+215189.067182784 4.0205626 1103.316
+215190.0671828883 4.0204444 1103.2963
+215191.0671829926 4.0204444 1103.2765
+215192.0671830969 4.0204835 1103.3752
+215193.0671832012 4.0205231 1103.3752
+215194.0671833055 4.0204835 1103.2963
+215195.0671834098 4.0205626 1103.3555
+215196.0671835141 4.0205626 1103.2963
+215197.0671836184 4.0204444 1103.316
+215198.0671837227 4.0205231 1103.316
+215199.0671838271 4.0206017 1103.316
+215200.0671839314 4.0206017 1103.4344
+215201.0671840357 4.0206017 1103.316
+215202.06718414 4.0206017 1103.2963
+215203.0671842443 4.0206804 1103.2765
+215204.0671843486 4.0206413 1103.3752
+215205.0671844529 4.0206413 1103.2765
+215206.0671845572 4.0206413 1103.3752
+215207.0671846615 4.0207591 1103.3555
+215208.0671847658 4.0207987 1103.3949
+215209.0671848701 4.0206804 1103.3357
+215210.0671849744 4.02072 1103.2963
+215211.0671850787 4.0207591 1103.3752
+215212.0671851831 4.0207987 1103.2963
+215213.0671852874 4.0207591 1103.3752
+215214.0671853917 4.0206413 1103.2963
+215215.067185496 4.0207591 1103.3555
+215216.0671856003 4.0208774 1103.316
+215217.0671857046 4.0209169 1103.3555
+215218.0671858089 4.0208774 1103.2963
+215219.0671859132 4.0207591 1103.4147
+215220.0671860175 4.0209169 1103.3752
+215221.0671861218 4.0207591 1103.3949
+215222.0671862261 4.0210743 1103.2963
+215223.0671863304 4.0209956 1103.3949
+215224.0671864348 4.0209956 1103.3752
+215225.0671865391 4.020956 1103.2765
+215226.0671866434 4.020956 1103.2765
+215227.0671867477 4.0209956 1103.316
+215228.067186852 4.0209956 1103.3752
+215229.0671869563 4.0210743 1103.2963
+215230.0671870606 4.0210347 1103.316
+215231.0671871649 4.0210347 1103.3357
+215232.0671872692 4.0210743 1103.3357
+215233.0671873735 4.0210743 1103.3555
+215234.0671874778 4.021153 1103.2963
+215235.0671875821 4.0210347 1103.3555
+215236.0671876865 4.0210743 1103.3357
+215237.0671877908 4.021153 1103.2963
+215238.0671878951 4.0211134 1103.3555
+215239.0671879994 4.0211134 1103.3357
+215240.0671881037 4.0212317 1103.3555
+215241.067188208 4.0211134 1103.2963
+215242.0671883123 4.0211926 1103.316
+215243.0671884166 4.021153 1103.3555
+215244.0671885209 4.0211134 1103.3555
+215245.0671886252 4.0212712 1103.316
+215246.0671887295 4.0212317 1103.3949
+215247.0671888338 4.0212317 1103.316
+215248.0671889381 4.0213103 1103.4542
+215249.0671890425 4.0213499 1103.4147
+215250.0671891468 4.0212712 1103.4344
+215251.0671892511 4.0214286 1103.316
+215252.0671893554 4.0213499 1103.3357
+215253.0671894597 4.0213499 1103.3752
+215254.067189564 4.0214286 1103.316
+215255.0671896683 4.0214682 1103.3357
+215256.0671897726 4.021389 1103.3752
+215257.0671898769 4.0214682 1103.3357
+215258.0671899812 4.0213499 1103.3752
+215259.0671900855 4.0214682 1103.3949
+215260.0671901898 4.0215073 1103.3752
+215261.0671902942 4.021389 1103.316
+215262.0671903985 4.0214286 1103.316
+215263.0671905028 4.0214682 1103.3555
+215264.0671906071 4.021389 1103.3949
+215265.0671907114 4.0214286 1103.3949
+215266.0671908157 4.0215859 1103.3555
+215267.06719092 4.0216255 1103.3357
+215268.0671910243 4.0215468 1103.4147
+215269.0671911286 4.0216255 1103.3357
+215270.0671912329 4.0215859 1103.316
+215271.0671913372 4.0216255 1103.3555
+215272.0671914415 4.0216255 1103.316
+215273.0671915459 4.0217042 1103.3949
+215274.0671916502 4.0215859 1103.3555
+215275.0671917545 4.0215468 1103.3949
+215276.0671918588 4.0217829 1103.2963
+215277.0671919631 4.0217433 1103.2963
+215278.0671920674 4.0216255 1103.3357
+215279.0671921717 4.0217042 1103.3555
+215280.067192276 4.0218225 1103.3752
+215281.0671923803 4.0216646 1103.4147
+215282.0671924846 4.0219011 1103.3555
+215283.0671925889 4.0218616 1103.4147
+215284.0671926932 4.0218616 1103.4147
+215285.0671927975 4.0217829 1103.316
+215286.0671929019 4.0217829 1103.4147
+215287.0671930062 4.0219011 1103.3752
+215288.0671931105 4.0219011 1103.3949
+215289.0671932148 4.0218225 1103.3357
+215290.0671933191 4.0219798 1103.3357
+215291.0671934234 4.0219402 1103.3949
+215292.0671935277 4.0218616 1103.316
+215293.067193632 4.0219402 1103.4147
+215294.0671937363 4.0219402 1103.2765
+215295.0671938406 4.0219402 1103.2765
+215296.0671939449 4.0219402 1103.4542
+215297.0671940492 4.0219798 1103.3555
+215298.0671941536 4.0220189 1103.3555
+215299.0671942579 4.0221372 1103.3555
+215300.0671943622 4.0220189 1103.4344
+215301.0671944665 4.0220981 1103.4147
+215302.0671945708 4.0221372 1103.3555
+215303.0671946751 4.0220981 1103.2963
+215304.0671947794 4.0220981 1103.316
+215305.0671948837 4.0221372 1103.316
+215306.067194988 4.0221372 1103.3357
+215307.0671950923 4.0221372 1103.4147
+215308.0671951966 4.0222158 1103.3949
+215309.0671953009 4.0221372 1103.3357
+215310.0671954053 4.0222158 1103.3555
+215311.0671955096 4.0220981 1103.4344
+215312.0671956139 4.0221767 1103.3949
+215313.0671957182 4.0221372 1103.316
+215314.0671958225 4.0222158 1103.2567
+215315.0671959268 4.0222158 1103.3949
+215316.0671960311 4.0222554 1103.3555
+215317.0671961354 4.0223341 1103.2765
+215318.0671962397 4.0222945 1103.3555
+215319.067196344 4.0223341 1103.3752
+215320.0671964483 4.0222554 1103.3555
+215321.0671965526 4.0222945 1103.3752
+215322.067196657 4.0224915 1103.3949
+215323.0671967613 4.0223737 1103.3555
+215324.0671968656 4.0223341 1103.4147
+215325.0671969699 4.0224524 1103.2369
+215326.0671970742 4.0223737 1103.4147
+215327.0671971785 4.0224915 1103.316
+215328.0671972828 4.022531 1103.2369
+215329.0671973871 4.0224915 1103.2963
+215330.0671974914 4.0224915 1103.3357
+215331.0671975957 4.0223341 1103.3949
+215332.0671977 4.0224524 1103.2963
+215333.0671978043 4.022531 1103.3949
+215334.0671979086 4.0224524 1103.3357
+215335.067198013 4.0224915 1103.316
+215336.0671981173 4.0224915 1103.3949
+215337.0671982216 4.022531 1103.3752
+215338.0671983259 4.0226884 1103.4147
+215339.0671984302 4.022531 1103.316
+215340.0671985345 4.0226488 1103.3357
+215341.0671986388 4.0226097 1103.2963
+215342.0671987431 4.0226097 1103.2172
+215343.0671988474 4.0225701 1103.3555
+215344.0671989517 4.0226884 1103.2963
+215345.067199056 4.022728 1103.3555
+215346.0671991603 4.0226488 1103.3357
+215347.0671992647 4.0225701 1103.3752
+215348.067199369 4.022728 1103.3555
+215349.0671994733 4.022728 1103.3752
+215350.0671995776 4.0226488 1103.3752
+215351.0671996819 4.0226488 1103.3357
+215352.0671997862 4.0226884 1103.3555
+215353.0671998905 4.022728 1103.3752
+215354.0671999948 4.0227671 1103.316
+215355.0672000991 4.0227671 1103.3357
+215356.0672002034 4.0228066 1103.316
+215357.0672003077 4.0228066 1103.3555
+215358.067200412 4.0228457 1103.3555
+215359.0672005164 4.0229244 1103.3752
+215360.0672006207 4.0227671 1103.3357
+215361.067200725 4.0228853 1103.316
+215362.0672008293 4.0228853 1103.3949
+215363.0672009336 4.0229244 1103.316
+215364.0672010379 4.0228853 1103.4344
+215365.0672011422 4.022964 1103.3949
+215366.0672012465 4.0230036 1103.3357
+215367.0672013508 4.0230036 1103.4147
+215368.0672014551 4.0230036 1103.3752
+215369.0672015594 4.0231214 1103.2963
+215370.0672016637 4.022964 1103.2963
+215371.067201768 4.0230823 1103.4147
+215372.0672018724 4.0230823 1103.4938
+215373.0672019767 4.0230036 1103.3949
+215374.067202081 4.0231609 1103.4344
+215375.0672021853 4.0231609 1103.316
+215376.0672022896 4.0231609 1103.4147
+215377.0672023939 4.0232 1103.316
+215378.0672024982 4.0232 1103.3555
+215379.0672026025 4.0230823 1103.2963
+215380.0672027068 4.0232396 1103.2765
+215381.0672028111 4.0232 1103.3555
+215382.0672029154 4.0232396 1103.2765
+215383.0672030197 4.0231609 1103.3555
+215384.0672031241 4.0231609 1103.316
+215385.0672032284 4.0232396 1103.2567
+215386.0672033327 4.0232396 1103.3357
+215387.067203437 4.0232 1103.3752
+215388.0672035413 4.0232787 1103.3949
+215389.0672036456 4.0232787 1103.3555
+215390.0672037499 4.0233183 1103.2963
+215391.0672038542 4.023397 1103.3555
+215392.0672039585 4.0233183 1103.2765
+215393.0672040628 4.0232396 1103.3949
+215394.0672041671 4.0233579 1103.3752
+215395.0672042714 4.023397 1103.2963
+215396.0672043758 4.0233579 1103.3555
+215397.0672044801 4.0232787 1103.3752
+215398.0672045844 4.0234756 1103.3949
+215399.0672046887 4.023397 1103.316
+215400.067204793 4.0234756 1103.3555
+215401.0672048973 4.0233183 1103.3555
+215402.0672050016 4.0235543 1103.3357
+215403.0672051059 4.0235152 1103.3752
+215404.0672052102 4.0234365 1103.3949
+215405.0672053145 4.0236726 1103.3555
+215406.0672054188 4.0235152 1103.3357
+215407.0672055231 4.0235543 1103.316
+215408.0672056274 4.0236335 1103.3949
+215409.0672057318 4.0236335 1103.316
+215410.0672058361 4.0235939 1103.3949
+215411.0672059404 4.0237122 1103.316
+215412.0672060447 4.0235543 1103.3949
+215413.067206149 4.0236335 1103.2963
+215414.0672062533 4.0236335 1103.3752
+215415.0672063576 4.0236335 1103.316
+215416.0672064619 4.0237908 1103.2369
+215417.0672065662 4.0236335 1103.3555
+215418.0672066705 4.0236726 1103.4147
+215419.0672067748 4.0238695 1103.316
+215420.0672068791 4.0237122 1103.3357
+215421.0672069835 4.0236726 1103.2963
+215422.0672070878 4.0238695 1103.4147
+215423.0672071921 4.0237513 1103.3949
+215424.0672072964 4.0238299 1103.474
+215425.0672074007 4.0238695 1103.316
+215426.067207505 4.0237908 1103.1975
+215427.0672076093 4.0237513 1103.2963
+215428.0672077136 4.0237908 1103.3752
+215429.0672078179 4.0238695 1103.3357
+215430.0672079222 4.0238695 1103.316
+215431.0672080265 4.0238695 1103.3555
+215432.0672081308 4.0238695 1103.3949
+215433.0672082352 4.0239878 1103.2765
+215434.0672083395 4.0239086 1103.3752
+215435.0672084438 4.0240269 1103.2765
+215436.0672085481 4.0239878 1103.316
+215437.0672086524 4.0239482 1103.4344
+215438.0672087567 4.0239482 1103.3752
+215439.067208861 4.0239878 1103.3357
+215440.0672089653 4.0240269 1103.3949
+215441.0672090696 4.0239878 1103.3752
+215442.0672091739 4.0241055 1103.2567
+215443.0672092782 4.0240664 1103.3555
+215444.0672093825 4.0241055 1103.4147
+215445.0672094869 4.0240269 1103.3555
+215446.0672095912 4.0241842 1103.3949
+215447.0672096955 4.0241055 1103.3752
+215448.0672097998 4.0241451 1103.3555
+215449.0672099041 4.0241451 1103.2963
+215450.0672100084 4.0242238 1103.3555
+215451.0672101127 4.0241451 1103.3555
+215452.067210217 4.0242634 1103.316
+215453.0672103213 4.0242238 1103.2765
+215454.0672104256 4.0242238 1103.2963
+215455.0672105299 4.0242238 1103.3555
+215456.0672106342 4.0242634 1103.3752
+215457.0672107385 4.0241842 1103.3555
+215458.0672108429 4.0243025 1103.316
+215459.0672109472 4.0243025 1103.4147
+215460.0672110515 4.0243812 1103.2765
+215461.0672111558 4.0243812 1103.4147
+215462.0672112601 4.0244207 1103.3949
+215463.0672113644 4.0243812 1103.3949
+215464.0672114687 4.0242634 1103.3949
+215465.067211573 4.0244207 1103.3752
+215466.0672116773 4.0243421 1103.2567
+215467.0672117816 4.0243812 1103.3752
+215468.0672118859 4.024539 1103.3752
+215469.0672119902 4.0244994 1103.3357
+215470.0672120946 4.0243812 1103.3357
+215471.0672121989 4.0244207 1103.3357
+215472.0672123032 4.0244598 1103.316
+215473.0672124075 4.0244207 1103.3357
+215474.0672125118 4.0244994 1103.2963
+215475.0672126161 4.0244994 1103.3752
+215476.0672127204 4.0244994 1103.3949
+215477.0672128247 4.024539 1103.3357
+215478.067212929 4.0246177 1103.3357
+215479.0672130333 4.0245781 1103.2765
+215480.0672131376 4.0246177 1103.3555
+215481.0672132419 4.0246177 1103.3752
+215482.0672133463 4.0246568 1103.2567
+215483.0672134506 4.024539 1103.3752
+215484.0672135549 4.0246568 1103.3357
+215485.0672136592 4.0246177 1103.3357
+215486.0672137635 4.0246568 1103.316
+215487.0672138678 4.024775 1103.3752
+215488.0672139721 4.024775 1103.316
+215489.0672140764 4.0247355 1103.3949
+215490.0672141807 4.0246964 1103.2765
+215491.067214285 4.0246964 1103.4344
+215492.0672143893 4.024775 1103.3555
+215493.0672144936 4.0248933 1103.3949
+215494.0672145979 4.0247355 1103.3949
+215495.0672147023 4.0248141 1103.316
+215496.0672148066 4.0248537 1103.2963
+215497.0672149109 4.0248537 1103.3357
+215498.0672150152 4.0248141 1103.316
+215499.0672151195 4.024972 1103.2765
+215500.0672152238 4.0249324 1103.3949
+215501.0672153281 4.0250111 1103.4344
+215502.0672154324 4.0248933 1103.3949
+215503.0672155367 4.0249324 1103.3949
+215504.067215641 4.024972 1103.4147
+215505.0672157453 4.024972 1103.2963
+215506.0672158496 4.024972 1103.3357
+215507.067215954 4.0250111 1103.4147
+215508.0672160583 4.0250111 1103.2963
+215509.0672161626 4.024972 1103.3555
+215510.0672162669 4.0250506 1103.316
+215511.0672163712 4.0250111 1103.3555
+215512.0672164755 4.0250506 1103.316
+215513.0672165798 4.0250111 1103.3555
+215514.0672166841 4.0251689 1103.4147
+215515.0672167884 4.0250111 1103.4147
+215516.0672168927 4.0250897 1103.4147
+215517.067216997 4.0250897 1103.3555
+215518.0672171013 4.0251689 1103.3949
+215519.0672172057 4.0251689 1103.3555
+215520.06721731 4.025208 1103.3555
+215521.0672174143 4.0250897 1103.3555
+215522.0672175186 4.025208 1103.4147
+215523.0672176229 4.0251689 1103.316
+215524.0672177272 4.0252867 1103.4344
+215525.0672178315 4.025208 1103.2963
+215526.0672179358 4.025208 1103.3949
+215527.0672180401 4.0252476 1103.3752
+215528.0672181444 4.025208 1103.2963
+215529.0672182487 4.0252867 1103.316
+215530.067218353 4.0253263 1103.3357
+215531.0672184573 4.0254049 1103.3752
+215532.0672185617 4.0254049 1103.3949
+215533.067218666 4.0253654 1103.3752
+215534.0672187703 4.0252867 1103.4147
+215535.0672188746 4.0254049 1103.316
+215536.0672189789 4.0254049 1103.474
+215537.0672190832 4.025444 1103.3555
+215538.0672191875 4.0254049 1103.4147
+215539.0672192918 4.025444 1103.3949
+215540.0672193961 4.0254049 1103.3357
+215541.0672195004 4.0253654 1103.2765
+215542.0672196047 4.0254836 1103.3949
+215543.067219709 4.0255232 1103.3357
+215544.0672198134 4.0254836 1103.5134
+215545.0672199177 4.0256019 1103.2963
+215546.067220022 4.0254836 1103.3555
+215547.0672201263 4.0255623 1103.4344
+215548.0672202306 4.025641 1103.4147
+215549.0672203349 4.0255623 1103.2765
+215550.0672204392 4.0255623 1103.4542
+215551.0672205435 4.0256805 1103.316
+215552.0672206478 4.0255623 1103.3555
+215553.0672207521 4.025641 1103.4542
+215554.0672208564 4.0256805 1103.4344
+215555.0672209607 4.0257196 1103.4542
+215556.0672210651 4.0257988 1103.3949
+215557.0672211694 4.0256805 1103.3752
+215558.0672212737 4.0257196 1103.4147
+215559.067221378 4.0256805 1103.3752
+215560.0672214823 4.0257196 1103.3752
+215561.0672215866 4.0257592 1103.3949
+215562.0672216909 4.0259166 1103.3949
+215563.0672217952 4.0257196 1103.3555
+215564.0672218995 4.0257988 1103.2963
+215565.0672220038 4.0257988 1103.316
+215566.0672221081 4.0258379 1103.4344
+215567.0672222124 4.0258775 1103.3555
+215568.0672223167 4.0257988 1103.2963
+215569.0672224211 4.0259166 1103.2765
+215570.0672225254 4.0258775 1103.3949
+215571.0672226297 4.0258775 1103.316
+215572.067222734 4.0259166 1103.3555
+215573.0672228383 4.0258775 1103.3555
+215574.0672229426 4.0258775 1103.3357
+215575.0672230469 4.0259166 1103.3357
+215576.0672231512 4.0260744 1103.3555
+215577.0672232555 4.0260348 1103.2567
+215578.0672233598 4.0260744 1103.316
+215579.0672234641 4.0259953 1103.3949
+215580.0672235684 4.0259562 1103.316
+215581.0672236728 4.0260744 1103.3555
+215582.0672237771 4.0259953 1103.3752
+215583.0672238814 4.0261135 1103.3555
+215584.0672239857 4.0261135 1103.3357
+215585.06722409 4.0261135 1103.3357
+215586.0672241943 4.0262318 1103.3752
+215587.0672242986 4.0260744 1103.4147
+215588.0672244029 4.0261531 1103.3752
+215589.0672245072 4.0261922 1103.3949
+215590.0672246115 4.0261531 1103.4147
+215591.0672247158 4.0261531 1103.316
+215592.0672248201 4.0262709 1103.3357
+215593.0672249245 4.0261135 1103.3752
+215594.0672250288 4.0262318 1103.3949
+215595.0672251331 4.0262709 1103.2963
+215596.0672252374 4.0262709 1103.3949
+215597.0672253417 4.0262318 1103.3752
+215598.067225446 4.0262709 1103.4344
+215599.0672255503 4.0262709 1103.3555
+215600.0672256546 4.0262709 1103.4344
+215601.0672257589 4.0263891 1103.4344
+215602.0672258632 4.0263891 1103.3357
+215603.0672259675 4.0263891 1103.3949
+215604.0672260718 4.0263891 1103.3555
+215605.0672261762 4.0264287 1103.4147
+215606.0672262805 4.0263891 1103.4147
+215607.0672263848 4.0263891 1103.3357
+215608.0672264891 4.0264678 1103.316
+215609.0672265934 4.0266252 1103.2963
+215610.0672266977 4.0264678 1103.2765
+215611.067226802 4.0264287 1103.3752
+215612.0672269063 4.0265861 1103.3752
+215613.0672270106 4.0265465 1103.3357
+215614.0672271149 4.0265074 1103.2963
+215615.0672272192 4.0265465 1103.3555
+215616.0672273235 4.0265861 1103.3357
+215617.0672274278 4.0265465 1103.3357
+215618.0672275322 4.0265861 1103.3752
+215619.0672276365 4.0267434 1103.3357
+215620.0672277408 4.0266252 1103.3752
+215621.0672278451 4.0265074 1103.316
+215622.0672279494 4.0265465 1103.2963
+215623.0672280537 4.0266647 1103.2963
+215624.067228158 4.0267043 1103.3752
+215625.0672282623 4.0266252 1103.316
+215626.0672283666 4.0266252 1103.3752
+215627.0672284709 4.0267043 1103.3357
+215628.0672285752 4.0267043 1103.4344
+215629.0672286795 4.0267043 1103.3752
+215630.0672287839 4.0267434 1103.3752
+215631.0672288882 4.0268221 1103.474
+215632.0672289925 4.0268221 1103.3752
+215633.0672290968 4.0269008 1103.3949
+215634.0672292011 4.0268617 1103.474
+215635.0672293054 4.0269008 1103.3949
+215636.0672294097 4.026783 1103.3357
+215637.067229514 4.0268617 1103.3555
+215638.0672296183 4.0269008 1103.3555
+215639.0672297226 4.0268617 1103.3949
+215640.0672298269 4.0269008 1103.316
+215641.0672299312 4.0269008 1103.3357
+215642.0672300356 4.0269794 1103.4147
+215643.0672301399 4.0269794 1103.2963
+215644.0672302442 4.0269403 1103.2567
+215645.0672303485 4.0271373 1103.3555
+215646.0672304528 4.027019 1103.3949
+215647.0672305571 4.0270977 1103.3357
+215648.0672306614 4.0270977 1103.2765
+215649.0672307657 4.0270977 1103.3555
+215650.06723087 4.0270977 1103.3555
+215651.0672309743 4.0270586 1103.2963
+215652.0672310786 4.0270977 1103.2963
+215653.0672311829 4.027019 1103.4542
+215654.0672312872 4.0271373 1103.474
+215655.0672313916 4.027019 1103.4542
+215656.0672314959 4.027216 1103.3752
+215657.0672316002 4.0271373 1103.3555
+215658.0672317045 4.0271373 1103.3357
+215659.0672318088 4.0271764 1103.3949
+215660.0672319131 4.0271764 1103.3752
+215661.0672320174 4.027216 1103.316
+215662.0672321217 4.0271764 1103.4344
+215663.067232226 4.0272946 1103.2963
+215664.0672323303 4.0271764 1103.3357
+215665.0672324346 4.0272551 1103.316
+215666.0672325389 4.0273342 1103.3752
+215667.0672326433 4.0272551 1103.316
+215668.0672327476 4.0272551 1103.3555
+215669.0672328519 4.0272551 1103.2963
+215670.0672329562 4.0273342 1103.3949
+215671.0672330605 4.0273342 1103.4344
+215672.0672331648 4.0272946 1103.316
+215673.0672332691 4.0273733 1103.4344
+215674.0672333734 4.0273733 1103.3555
+215675.0672334777 4.0273342 1103.4147
+215676.067233582 4.0273342 1103.3357
+215677.0672336863 4.0273342 1103.3949
+215678.0672337906 4.027452 1103.3555
+215679.067233895 4.027452 1103.3357
+215680.0672339993 4.0274916 1103.3752
+215681.0672341036 4.027452 1103.3949
+215682.0672342079 4.0276093 1103.3949
+215683.0672343122 4.0274916 1103.3357
+215684.0672344165 4.0275702 1103.4147
+215685.0672345208 4.0276885 1103.3555
+215686.0672346251 4.0276093 1103.2963
+215687.0672347294 4.0274916 1103.2765
+215688.0672348337 4.0276489 1103.2765
+215689.067234938 4.0275702 1103.3357
+215690.0672350423 4.0276489 1103.3949
+215691.0672351466 4.0276489 1103.3357
+215692.067235251 4.0276093 1103.3555
+215693.0672353553 4.0276489 1103.316
+215694.0672354596 4.0276489 1103.474
+215695.0672355639 4.0276885 1103.316
+215696.0672356682 4.0276885 1103.316
+215697.0672357725 4.0277672 1103.3555
+215698.0672358768 4.0276885 1103.3555
+215699.0672359811 4.0276885 1103.3752
+215700.0672360854 4.0277276 1103.4542
+215701.0672361897 4.0277672 1103.2963
+215702.067236294 4.0278063 1103.3357
+215703.0672363983 4.0277672 1103.3357
+215704.0672365027 4.027885 1103.3357
+215705.067236607 4.0278459 1103.3949
+215706.0672367113 4.0277672 1103.3555
+215707.0672368156 4.0278459 1103.3752
+215708.0672369199 4.0279245 1103.3752
+215709.0672370242 4.027885 1103.3949
+215710.0672371285 4.027885 1103.3555
+215711.0672372328 4.0280428 1103.2963
+215712.0672373371 4.0280032 1103.316
+215713.0672374414 4.027885 1103.316
+215714.0672375457 4.0279245 1103.3949
+215715.06723765 4.0280032 1103.3752
+215716.0672377544 4.0280032 1103.3949
+215717.0672378587 4.0280819 1103.2963
+215718.067237963 4.0280819 1103.2567
+215719.0672380673 4.0280032 1103.4147
+215720.0672381716 4.0280032 1103.4147
+215721.0672382759 4.0279641 1103.3949
+215722.0672383802 4.0280428 1103.3357
+215723.0672384845 4.0280819 1103.2765
+215724.0672385888 4.0280428 1103.2567
+215725.0672386931 4.0280032 1103.4147
+215726.0672387974 4.0281606 1103.4542
+215727.0672389017 4.0281215 1103.2963
+215728.0672390061 4.0281606 1103.3752
+215729.0672391104 4.0281606 1103.3752
+215730.0672392147 4.0282397 1103.3949
+215731.067239319 4.0281606 1103.3555
+215732.0672394233 4.0281606 1103.316
+215733.0672395276 4.0282788 1103.3949
+215734.0672396319 4.0281606 1103.3752
+215735.0672397362 4.0282397 1103.3752
+215736.0672398405 4.0282001 1103.4542
+215737.0672399448 4.0283184 1103.316
+215738.0672400491 4.0283575 1103.3357
+215739.0672401534 4.0283971 1103.316
+215740.0672402577 4.0282788 1103.3555
+215741.0672403621 4.0283575 1103.3357
+215742.0672404664 4.0283575 1103.474
+215743.0672405707 4.0283184 1103.4147
+215744.067240675 4.0283971 1103.4147
+215745.0672407793 4.0284362 1103.4344
+215746.0672408836 4.0283971 1103.3357
+215747.0672409879 4.0283971 1103.3752
+215748.0672410922 4.0283575 1103.3949
+215749.0672411965 4.0284758 1103.3357
+215750.0672413008 4.0285544 1103.4147
+215751.0672414051 4.0284362 1103.2963
+215752.0672415094 4.0285149 1103.2765
+215753.0672416138 4.0284758 1103.316
+215754.0672417181 4.028594 1103.3752
+215755.0672418224 4.0285149 1103.2963
+215756.0672419267 4.028594 1103.316
+215757.067242031 4.0285149 1103.2963
+215758.0672421353 4.0285544 1103.3752
+215759.0672422396 4.028594 1103.4542
+215760.0672423439 4.0287118 1103.2963
+215761.0672424482 4.0286331 1103.3357
+215762.0672425525 4.028594 1103.474
+215763.0672426568 4.0286331 1103.3555
+215764.0672427611 4.0287118 1103.316
+215765.0672428655 4.0286727 1103.3949
+215766.0672429698 4.0287514 1103.3752
+215767.0672430741 4.0287118 1103.2963
+215768.0672431784 4.0287905 1103.3357
+215769.0672432827 4.0287118 1103.4344
+215770.067243387 4.0287514 1103.316
+215771.0672434913 4.0287905 1103.3357
+215772.0672435956 4.0287118 1103.4344
+215773.0672436999 4.0287514 1103.3752
+215774.0672438042 4.0288301 1103.3949
+215775.0672439085 4.0288696 1103.3357
+215776.0672440128 4.0287905 1103.2963
+215777.0672441171 4.0287905 1103.3752
+215778.0672442215 4.0288696 1103.3357
+215779.0672443258 4.0289087 1103.316
+215780.0672444301 4.0289087 1103.3357
+215781.0672445344 4.0289087 1103.3949
+215782.0672446387 4.0288696 1103.2963
+215783.067244743 4.0289874 1103.4344
+215784.0672448473 4.0289483 1103.3949
+215785.0672449516 4.0289483 1103.4344
+215786.0672450559 4.029027 1103.4147
+215787.0672451602 4.029027 1103.4147
+215788.0672452645 4.0289874 1103.3752
+215789.0672453688 4.029027 1103.2765
+215790.0672454732 4.0290661 1103.316
+215791.0672455775 4.0289874 1103.3555
+215792.0672456818 4.0290661 1103.4147
+215793.0672457861 4.0291448 1103.3357
+215794.0672458904 4.0291448 1103.316
+215795.0672459947 4.0291057 1103.2765
+215796.067246099 4.0291057 1103.3357
+215797.0672462033 4.0291057 1103.3357
+215798.0672463076 4.0291843 1103.2963
+215799.0672464119 4.0290661 1103.3555
+215800.0672465162 4.0291843 1103.474
+215801.0672466205 4.0291843 1103.2963
+215802.0672467249 4.029263 1103.3357
+215803.0672468292 4.0291843 1103.316
+215804.0672469335 4.0292239 1103.3949
+215805.0672470378 4.029263 1103.3752
+215806.0672471421 4.0291448 1103.3949
+215807.0672472464 4.029263 1103.2963
+215808.0672473507 4.0293026 1103.3555
+215809.067247455 4.029263 1103.3949
+215810.0672475593 4.0293026 1103.2765
+215811.0672476636 4.029263 1103.4147
+215812.0672477679 4.0293026 1103.3949
+215813.0672478722 4.0293026 1103.316
+215814.0672479765 4.0292239 1103.4344
+215815.0672480809 4.0294204 1103.3555
+215816.0672481852 4.0293813 1103.3949
+215817.0672482895 4.0293813 1103.3949
+215818.0672483938 4.02946 1103.3752
+215819.0672484981 4.0295386 1103.4147
+215820.0672486024 4.02946 1103.3555
+215821.0672487067 4.0294995 1103.3555
+215822.067248811 4.0295386 1103.316
+215823.0672489153 4.02946 1103.316
+215824.0672490196 4.0295782 1103.2963
+215825.0672491239 4.0295386 1103.3949
+215826.0672492282 4.0295782 1103.2369
+215827.0672493326 4.0295386 1103.3555
+215828.0672494369 4.0296569 1103.316
+215829.0672495412 4.0295782 1103.4147
+215830.0672496455 4.0296173 1103.3949
+215831.0672497498 4.0296173 1103.316
+215832.0672498541 4.0296569 1103.3357
+215833.0672499584 4.029696 1103.3752
+215834.0672500627 4.0297356 1103.3555
+215835.067250167 4.0296173 1103.3949
+215836.0672502713 4.029696 1103.3555
+215837.0672503756 4.0298142 1103.4147
+215838.0672504799 4.0297356 1103.3357
+215839.0672505843 4.0297751 1103.2963
+215840.0672506886 4.0298929 1103.3752
+215841.0672507929 4.0297356 1103.3555
+215842.0672508972 4.0298929 1103.316
+215843.0672510015 4.0297751 1103.3949
+215844.0672511058 4.0298538 1103.3357
+215845.0672512101 4.0298538 1103.3357
+215846.0672513144 4.0298929 1103.474
+215847.0672514187 4.0298929 1103.3357
+215848.067251523 4.0298538 1103.3949
+215849.0672516273 4.0298929 1103.474
+215850.0672517316 4.0298929 1103.4542
+215851.067251836 4.0298538 1103.3949
+215852.0672519403 4.0299716 1103.316
+215853.0672520446 4.0299716 1103.3949
+215854.0672521489 4.0299325 1103.316
+215855.0672522532 4.0300112 1103.3752
+215856.0672523575 4.0300899 1103.3752
+215857.0672524618 4.0300503 1103.2963
+215858.0672525661 4.0300899 1103.3752
+215859.0672526704 4.0300503 1103.3949
+215860.0672527747 4.0300503 1103.4147
+215861.067252879 4.0300899 1103.4344
+215862.0672529833 4.0300503 1103.3949
+215863.0672530876 4.0299716 1103.3555
+215864.067253192 4.0302081 1103.3752
+215865.0672532963 4.0301685 1103.3949
+215866.0672534006 4.0300899 1103.4147
+215867.0672535049 4.0300899 1103.3357
+215868.0672536092 4.0300899 1103.2765
+215869.0672537135 4.0302081 1103.316
+215870.0672538178 4.0301685 1103.316
+215871.0672539221 4.0302472 1103.3357
+215872.0672540264 4.0302081 1103.3555
+215873.0672541307 4.0302472 1103.3949
+215874.067254235 4.0302472 1103.3752
+215875.0672543393 4.0302472 1103.2765
+215876.0672544437 4.0302472 1103.2765
+215877.067254548 4.0302868 1103.316
+215878.0672546523 4.0303655 1103.3357
+215879.0672547566 4.0302472 1103.316
+215880.0672548609 4.030405 1103.2963
+215881.0672549652 4.0303655 1103.316
+215882.0672550695 4.0303259 1103.3752
+215883.0672551738 4.0303655 1103.3949
+215884.0672552781 4.0303655 1103.316
+215885.0672553824 4.0303655 1103.3555
+215886.0672554867 4.030405 1103.3357
+215887.067255591 4.0304837 1103.316
+215888.0672556954 4.030405 1103.3752
+215889.0672557997 4.030405 1103.316
+215890.067255904 4.0304837 1103.3555
+215891.0672560083 4.0305228 1103.2963
+215892.0672561126 4.0305228 1103.2765
+215893.0672562169 4.0305624 1103.2765
+215894.0672563212 4.0305228 1103.3949
+215895.0672564255 4.0306015 1103.3357
+215896.0672565298 4.0307198 1103.316
+215897.0672566341 4.0305624 1103.3752
+215898.0672567384 4.0306411 1103.3555
+215899.0672568427 4.0307198 1103.3555
+215900.067256947 4.0306411 1103.3555
+215901.0672570514 4.0306411 1103.4344
+215902.0672571557 4.0306802 1103.3555
+215903.06725726 4.0306802 1103.3357
+215904.0672573643 4.0306802 1103.3357
+215905.0672574686 4.0307593 1103.3752
+215906.0672575729 4.0307198 1103.3752
+215907.0672576772 4.0307198 1103.3357
+215908.0672577815 4.0307984 1103.3357
+215909.0672578858 4.0307984 1103.3752
+215910.0672579901 4.030838 1103.3357
+215911.0672580944 4.0308771 1103.3752
+215912.0672581987 4.0307198 1103.3555
+215913.0672583031 4.0307198 1103.316
+215914.0672584074 4.030838 1103.3357
+215915.0672585117 4.030838 1103.3555
+215916.067258616 4.0309167 1103.3555
+215917.0672587203 4.0309167 1103.316
+215918.0672588246 4.0308771 1103.3555
+215919.0672589289 4.030838 1103.4542
+215920.0672590332 4.0309558 1103.3949
+215921.0672591375 4.0309167 1103.2567
+215922.0672592418 4.0308771 1103.3949
+215923.0672593461 4.0310349 1103.316
+215924.0672594504 4.0309954 1103.3357
+215925.0672595548 4.0309954 1103.3357
+215926.0672596591 4.0311527 1103.3555
+215927.0672597634 4.0309954 1103.316
+215928.0672598677 4.0309954 1103.3752
+215929.067259972 4.0311136 1103.4147
+215930.0672600763 4.0311136 1103.316
+215931.0672601806 4.0310349 1103.4147
+215932.0672602849 4.031074 1103.4147
+215933.0672603892 4.0311527 1103.3752
+215934.0672604935 4.0311923 1103.3949
+215935.0672605978 4.0311136 1103.3555
+215936.0672607021 4.0311136 1103.3357
+215937.0672608064 4.0311136 1103.3949
+215938.0672609108 4.0311923 1103.3949
+215939.0672610151 4.0313106 1103.3357
+215940.0672611194 4.0311923 1103.3555
+215941.0672612237 4.0311527 1103.3752
+215942.067261328 4.0311923 1103.3555
+215943.0672614323 4.0311923 1103.3752
+215944.0672615366 4.0311923 1103.3357
+215945.0672616409 4.0313497 1103.3752
+215946.0672617452 4.0313892 1103.3555
+215947.0672618495 4.0312314 1103.3752
+215948.0672619538 4.0313106 1103.4344
+215949.0672620581 4.0313106 1103.4542
+215950.0672621625 4.0313892 1103.3949
+215951.0672622668 4.0313892 1103.3949
+215952.0672623711 4.031507 1103.3357
+215953.0672624754 4.0314283 1103.316
+215954.0672625797 4.0314679 1103.4542
+215955.067262684 4.0313497 1103.3949
+215956.0672627883 4.0314283 1103.3357
+215957.0672628926 4.0313892 1103.316
+215958.0672629969 4.0313892 1103.3752
+215959.0672631012 4.031507 1103.3949
+215960.0672632055 4.0314283 1103.2963
+215961.0672633098 4.0314283 1103.3357
+215962.0672634142 4.0314679 1103.3949
+215963.0672635185 4.0315857 1103.3752
+215964.0672636228 4.0316648 1103.3752
+215965.0672637271 4.0315857 1103.3752
+215966.0672638314 4.031507 1103.4147
+215967.0672639357 4.0315466 1103.2963
+215968.06726404 4.031507 1103.3555
+215969.0672641443 4.0315466 1103.2963
+215970.0672642486 4.0316253 1103.3949
+215971.0672643529 4.0317826 1103.4147
+215972.0672644572 4.0316253 1103.3949
+215973.0672645615 4.0317435 1103.3752
+215974.0672646659 4.0316253 1103.3555
+215975.0672647702 4.0317039 1103.3357
+215976.0672648745 4.0316648 1103.3555
+215977.0672649788 4.0316253 1103.3752
+215978.0672650831 4.0317826 1103.3555
+215979.0672651874 4.0317435 1103.3357
+215980.0672652917 4.0317435 1103.2963
+215981.067265396 4.0317826 1103.3752
+215982.0672655003 4.0318222 1103.3949
+215983.0672656046 4.0317826 1103.4938
+215984.0672657089 4.0319009 1103.3752
+215985.0672658132 4.0318222 1103.4344
+215986.0672659175 4.0318222 1103.2963
+215987.0672660219 4.0318613 1103.316
+215988.0672661262 4.0319009 1103.3949
+215989.0672662305 4.0319009 1103.3752
+215990.0672663348 4.0319009 1103.2963
+215991.0672664391 4.0319405 1103.2963
+215992.0672665434 4.0319796 1103.2963
+215993.0672666477 4.0319796 1103.4344
+215994.067266752 4.0319009 1103.3752
+215995.0672668563 4.0320978 1103.3357
+215996.0672669606 4.0320582 1103.4344
+215997.0672670649 4.0320191 1103.3752
+215998.0672671692 4.0320582 1103.3752
+215999.0672672736 4.0320191 1103.3357
+216000.0672673779 4.0320978 1103.4147
+216001.0672674822 4.0320978 1103.3752
+216002.0672675865 4.0320582 1103.3555
+216003.0672676908 4.0320191 1103.3357
+216004.0672677951 4.0321765 1103.3752
+216005.0672678994 4.0321369 1103.3752
+216006.0672680037 4.0322156 1103.3357
+216007.067268108 4.0321765 1103.3949
+216008.0672682123 4.0321765 1103.316
+216009.0672683166 4.0322552 1103.2765
+216010.0672684209 4.0321765 1103.3555
+216011.0672685253 4.0322156 1103.2765
+216012.0672686296 4.0322552 1103.3357
+216013.0672687339 4.0323339 1103.3949
+216014.0672688382 4.0321765 1103.3949
+216015.0672689425 4.0323339 1103.2567
+216016.0672690468 4.0322552 1103.2963
+216017.0672691511 4.0323339 1103.3357
+216018.0672692554 4.0323734 1103.3949
+216019.0672693597 4.0322552 1103.316
+216020.067269464 4.0323734 1103.3357
+216021.0672695683 4.0323339 1103.3555
+216022.0672696726 4.0323734 1103.3555
+216023.0672697769 4.0323339 1103.3555
+216024.0672698813 4.0324125 1103.3949
+216025.0672699856 4.0324521 1103.316
+216026.0672700899 4.0323734 1103.3949
+216027.0672701942 4.0324912 1103.3949
+216028.0672702985 4.0325308 1103.3555
+216029.0672704028 4.0325704 1103.3949
+216030.0672705071 4.0324125 1103.316
+216031.0672706114 4.0324125 1103.316
+216032.0672707157 4.0325308 1103.316
+216033.06727082 4.0325308 1103.3357
+216034.0672709243 4.0324912 1103.3949
+216035.0672710286 4.0325704 1103.3555
+216036.067271133 4.0325308 1103.2765
+216037.0672712373 4.0325704 1103.3357
+216038.0672713416 4.0326095 1103.3555
+216039.0672714459 4.0325308 1103.3752
+216040.0672715502 4.0326881 1103.3555
+216041.0672716545 4.0326095 1103.316
+216042.0672717588 4.032649 1103.4542
+216043.0672718631 4.032649 1103.3357
+216044.0672719674 4.0326881 1103.2963
+216045.0672720717 4.0327668 1103.3555
+216046.067272176 4.0327277 1103.3752
+216047.0672722803 4.0327277 1103.316
+216048.0672723847 4.0327668 1103.4938
+216049.067272489 4.0328064 1103.3357
+216050.0672725933 4.0326881 1103.316
+216051.0672726976 4.0328455 1103.3555
+216052.0672728019 4.0329247 1103.4147
+216053.0672729062 4.0328064 1103.316
+216054.0672730105 4.0328455 1103.3949
+216055.0672731148 4.0328455 1103.2963
+216056.0672732191 4.0328455 1103.4344
+216057.0672733234 4.0328851 1103.3949
+216058.0672734277 4.0328851 1103.2963
+216059.067273532 4.0328455 1103.3752
+216060.0672736363 4.0328851 1103.4147
+216061.0672737407 4.0328455 1103.3949
+216062.067273845 4.0330424 1103.3752
+216063.0672739493 4.0330033 1103.3357
+216064.0672740536 4.0329247 1103.3357
+216065.0672741579 4.0330424 1103.2765
+216066.0672742622 4.0330424 1103.2963
+216067.0672743665 4.033082 1103.3949
+216068.0672744708 4.0329638 1103.4147
+216069.0672745751 4.0331211 1103.3357
+216070.0672746794 4.0331607 1103.3752
+216071.0672747837 4.0330424 1103.2172
+216072.067274888 4.0331211 1103.3555
+216073.0672749924 4.0331607 1103.2963
+216074.0672750967 4.0331607 1103.3555
+216075.067275201 4.0332003 1103.3752
+216076.0672753053 4.0331211 1103.316
+216077.0672754096 4.0331607 1103.4147
+216078.0672755139 4.0332394 1103.4147
+216079.0672756182 4.0332003 1103.316
+216080.0672757225 4.0332394 1103.3357
+216081.0672758268 4.0332003 1103.316
+216082.0672759311 4.0332789 1103.3752
+216083.0672760354 4.033318 1103.4344
+216084.0672761397 4.0332394 1103.2963
+216085.0672762441 4.033318 1103.3949
+216086.0672763484 4.033318 1103.3752
+216087.0672764527 4.033318 1103.316
+216088.067276557 4.0333576 1103.4344
+216089.0672766613 4.0333576 1103.3752
+216090.0672767656 4.0333967 1103.4147
+216091.0672768699 4.0334363 1103.3357
+216092.0672769742 4.033318 1103.3357
+216093.0672770785 4.0334363 1103.2963
+216094.0672771828 4.0333576 1103.3555
+216095.0672772871 4.0334759 1103.4542
+216096.0672773914 4.0335546 1103.3949
+216097.0672774957 4.033515 1103.3357
+216098.0672776001 4.0335546 1103.3949
+216099.0672777044 4.033515 1103.3752
+216100.0672778087 4.033515 1103.3555
+216101.067277913 4.0335937 1103.2963
+216102.0672780173 4.0335937 1103.4344
+216103.0672781216 4.033515 1103.3555
+216104.0672782259 4.0336332 1103.3357
+216105.0672783302 4.033515 1103.316
+216106.0672784345 4.0335937 1103.3949
+216107.0672785388 4.0336332 1103.3949
+216108.0672786431 4.0335546 1103.3949
+216109.0672787474 4.0337119 1103.3357
+216110.0672788518 4.0336723 1103.3357
+216111.0672789561 4.0337119 1103.3752
+216112.0672790604 4.033751 1103.3752
+216113.0672791647 4.0336723 1103.3555
+216114.067279269 4.0336723 1103.316
+216115.0672793733 4.0337119 1103.3357
+216116.0672794776 4.033751 1103.316
+216117.0672795819 4.033751 1103.316
+216118.0672796862 4.0338302 1103.3752
+216119.0672797905 4.0337906 1103.3949
+216120.0672798948 4.033751 1103.3949
+216121.0672799991 4.0338302 1103.3949
+216122.0672801035 4.0338302 1103.4147
+216123.0672802078 4.0337906 1103.3752
+216124.0672803121 4.0337906 1103.3752
+216125.0672804164 4.0338693 1103.3357
+216126.0672805207 4.0337906 1103.3357
+216127.067280625 4.0339479 1103.3357
+216128.0672807293 4.0339875 1103.2963
+216129.0672808336 4.0339875 1103.3949
+216130.0672809379 4.0340266 1103.4344
+216131.0672810422 4.0339088 1103.2567
+216132.0672811465 4.0339479 1103.3752
+216133.0672812508 4.0341058 1103.3357
+216134.0672813552 4.0340266 1103.3555
+216135.0672814595 4.0339875 1103.3752
+216136.0672815638 4.0340662 1103.3752
+216137.0672816681 4.0340662 1103.3752
+216138.0672817724 4.0340662 1103.3949
+216139.0672818767 4.0340266 1103.3752
+216140.067281981 4.0341058 1103.3752
+216141.0672820853 4.0341449 1103.3555
+216142.0672821896 4.0341449 1103.316
+216143.0672822939 4.0341845 1103.3752
+216144.0672823982 4.0341449 1103.4344
+216145.0672825025 4.0342236 1103.3949
+216146.0672826068 4.0341845 1103.4147
+216147.0672827112 4.0341449 1103.3949
+216148.0672828155 4.0342236 1103.3752
+216149.0672829198 4.0343022 1103.3357
+216150.0672830241 4.0341845 1103.3752
+216151.0672831284 4.0343418 1103.2963
+216152.0672832327 4.0342236 1103.316
+216153.067283337 4.0343022 1103.4344
+216154.0672834413 4.0343418 1103.3752
+216155.0672835456 4.0343418 1103.316
+216156.0672836499 4.0344205 1103.3555
+216157.0672837542 4.0342236 1103.2963
+216158.0672838585 4.0343418 1103.2963
+216159.0672839629 4.0343418 1103.3752
+216160.0672840672 4.0343809 1103.4542
+216161.0672841715 4.0344601 1103.3555
+216162.0672842758 4.0344601 1103.3357
+216163.0672843801 4.0343022 1103.3752
+216164.0672844844 4.0344205 1103.2765
+216165.0672845887 4.0344992 1103.4147
+216166.067284693 4.0344992 1103.3752
+216167.0672847973 4.0344992 1103.2765
+216168.0672849016 4.0344601 1103.3555
+216169.0672850059 4.0346174 1103.3555
+216170.0672851102 4.0345387 1103.316
+216171.0672852146 4.0345387 1103.3752
+216172.0672853189 4.0345387 1103.3752
+216173.0672854232 4.0345778 1103.4542
+216174.0672855275 4.0344992 1103.3555
+216175.0672856318 4.0345387 1103.3752
+216176.0672857361 4.0346174 1103.3752
+216177.0672858404 4.0346174 1103.4344
+216178.0672859447 4.0347748 1103.2765
+216179.067286049 4.0345778 1103.3357
+216180.0672861533 4.0346961 1103.2963
+216181.0672862576 4.0347748 1103.4542
+216182.0672863619 4.0346565 1103.316
+216183.0672864662 4.0347357 1103.3555
+216184.0672865706 4.0347357 1103.3949
+216185.0672866749 4.0348144 1103.2567
+216186.0672867792 4.0348535 1103.3949
+216187.0672868835 4.0347748 1103.3555
+216188.0672869878 4.034893 1103.3357
+216189.0672870921 4.0348144 1103.3555
+216190.0672871964 4.034893 1103.3555
+216191.0672873007 4.0347748 1103.3949
+216192.067287405 4.034893 1103.3752
+216193.0672875093 4.034893 1103.3752
+216194.0672876136 4.034893 1103.4344
+216195.0672877179 4.0350113 1103.316
+216196.0672878223 4.0349321 1103.4147
+216197.0672879266 4.0349321 1103.3752
+216198.0672880309 4.0349321 1103.3357
+216199.0672881352 4.0350113 1103.4344
+216200.0672882395 4.0350113 1103.316
+216201.0672883438 4.0350113 1103.2963
+216202.0672884481 4.0349717 1103.3752
+216203.0672885524 4.03509 1103.316
+216204.0672886567 4.03509 1103.316
+216205.067288761 4.0351686 1103.3555
+216206.0672888653 4.0351291 1103.3357
+216207.0672889696 4.03509 1103.3949
+216208.067289074 4.0351291 1103.2963
+216209.0672891783 4.0352077 1103.3949
+216210.0672892826 4.0352077 1103.2369
+216211.0672893869 4.0351686 1103.3949
+216212.0672894912 4.03509 1103.316
+216213.0672895955 4.0351686 1103.3555
+216214.0672896998 4.0351686 1103.3949
+216215.0672898041 4.0351686 1103.3752
+216216.0672899084 4.0351291 1103.2567
+216217.0672900127 4.0352473 1103.316
+216218.067290117 4.0351686 1103.316
+216219.0672902213 4.0351686 1103.3555
+216220.0672903256 4.0352864 1103.4344
+216221.06729043 4.0353656 1103.3555
+216222.0672905343 4.035326 1103.3949
+216223.0672906386 4.0352864 1103.2765
+216224.0672907429 4.035326 1103.3357
+216225.0672908472 4.0354047 1103.3949
+216226.0672909515 4.035326 1103.3949
+216227.0672910558 4.0352864 1103.3357
+216228.0672911601 4.0352864 1103.3555
+216229.0672912644 4.0353656 1103.316
+216230.0672913687 4.0354443 1103.4542
+216231.067291473 4.0354834 1103.4344
+216232.0672915773 4.0353656 1103.2963
+216233.0672916817 4.0354443 1103.3357
+216234.067291786 4.0355229 1103.4542
+216235.0672918903 4.0355229 1103.3357
+216236.0672919946 4.0355229 1103.4147
+216237.0672920989 4.035562 1103.3752
+216238.0672922032 4.0354834 1103.3555
+216239.0672923075 4.0355229 1103.3555
+216240.0672924118 4.0357199 1103.2963
+216241.0672925161 4.035562 1103.3949
+216242.0672926204 4.0356412 1103.3752
+216243.0672927247 4.0356803 1103.4344
+216244.067292829 4.0356803 1103.3555
+216245.0672929334 4.0356803 1103.2765
+216246.0672930377 4.0356803 1103.316
+216247.067293142 4.0356412 1103.3752
+216248.0672932463 4.0356412 1103.3555
+216249.0672933506 4.0356412 1103.4147
+216250.0672934549 4.0357199 1103.2765
+216251.0672935592 4.0356803 1103.4542
+216252.0672936635 4.035759 1103.3949
+216253.0672937678 4.035759 1103.3752
+216254.0672938721 4.0358377 1103.3949
+216255.0672939764 4.0358377 1103.3555
+216256.0672940807 4.0358772 1103.3752
+216257.0672941851 4.0357985 1103.3555
+216258.0672942894 4.035759 1103.3752
+216259.0672943937 4.0359559 1103.3555
+216260.067294498 4.0357985 1103.3357
+216261.0672946023 4.0358377 1103.3949
+216262.0672947066 4.0359163 1103.316
+216263.0672948109 4.0358377 1103.2963
+216264.0672949152 4.0359163 1103.4344
+216265.0672950195 4.0359163 1103.3752
+216266.0672951238 4.0359559 1103.3752
+216267.0672952281 4.0359559 1103.3555
+216268.0672953324 4.0359559 1103.3752
+216269.0672954367 4.0359559 1103.3357
+216270.0672955411 4.0359559 1103.3357
+216271.0672956454 4.0360346 1103.3752
+216272.0672957497 4.0359955 1103.3555
+216273.067295854 4.0361133 1103.4542
+216274.0672959583 4.0359955 1103.2765
+216275.0672960626 4.0360346 1103.4147
+216276.0672961669 4.0360346 1103.4344
+216277.0672962712 4.0361133 1103.3555
+216278.0672963755 4.0361133 1103.316
+216279.0672964798 4.0361919 1103.2963
+216280.0672965841 4.0361528 1103.316
+216281.0672966884 4.0360742 1103.3752
+216282.0672967928 4.0361919 1103.4344
+216283.0672968971 4.0361528 1103.4147
+216284.0672970014 4.0362315 1103.4147
+216285.0672971057 4.0361919 1103.3752
+216286.06729721 4.0362315 1103.316
+216287.0672973143 4.0361133 1103.2567
+216288.0672974186 4.0362711 1103.3357
+216289.0672975229 4.0362711 1103.3357
+216290.0672976272 4.0363102 1103.3752
+216291.0672977315 4.0363498 1103.4938
+216292.0672978358 4.0363889 1103.3357
+216293.0672979401 4.0363102 1103.3949
+216294.0672980445 4.0363889 1103.3752
+216295.0672981488 4.0363102 1103.3752
+216296.0672982531 4.0364285 1103.3555
+216297.0672983574 4.0363889 1103.3357
+216298.0672984617 4.0364285 1103.316
+216299.067298566 4.0364285 1103.3949
+216300.0672986703 4.0363889 1103.316
+216301.0672987746 4.0364676 1103.3357
+216302.0672988789 4.0364676 1103.3949
+216303.0672989832 4.0364676 1103.2567
+216304.0672990875 4.0364676 1103.4147
+216305.0672991918 4.0365462 1103.3555
+216306.0672992961 4.0364676 1103.3752
+216307.0672994005 4.0364285 1103.3555
+216308.0672995048 4.0365071 1103.316
+216309.0672996091 4.0365858 1103.4147
+216310.0672997134 4.0367432 1103.474
+216311.0672998177 4.0365858 1103.3357
+216312.067299922 4.0365858 1103.316
+216313.0673000263 4.0366254 1103.3555
+216314.0673001306 4.0366254 1103.3555
+216315.0673002349 4.0367041 1103.3752
+216316.0673003392 4.0367827 1103.4147
+216317.0673004435 4.0367041 1103.3555
+216318.0673005478 4.0366254 1103.3357
+216319.0673006522 4.0366645 1103.4147
+216320.0673007565 4.0367827 1103.2765
+216321.0673008608 4.0368218 1103.3555
+216322.0673009651 4.0368218 1103.3752
+216323.0673010694 4.0367432 1103.3752
+216324.0673011737 4.0367827 1103.3949
+216325.067301278 4.0368614 1103.3752
+216326.0673013823 4.0368218 1103.2963
+216327.0673014866 4.0368218 1103.3357
+216328.0673015909 4.0368614 1103.3555
+216329.0673016952 4.0369401 1103.3555
+216330.0673017995 4.0368218 1103.2765
+216331.0673019039 4.0368614 1103.2963
+216332.0673020082 4.0368218 1103.3752
+216333.0673021125 4.0368614 1103.3357
+216334.0673022168 4.0369797 1103.2963
+216335.0673023211 4.0369401 1103.316
+216336.0673024254 4.0370188 1103.3752
+216337.0673025297 4.0369401 1103.3357
+216338.067302634 4.0369401 1103.3752
+216339.0673027383 4.0370975 1103.3555
+216340.0673028426 4.0370584 1103.316
+216341.0673029469 4.0369797 1103.316
+216342.0673030512 4.0370188 1103.3949
+216343.0673031555 4.0370975 1103.2765
+216344.0673032599 4.0370975 1103.3555
+216345.0673033642 4.037137 1103.3949
+216346.0673034685 4.0371766 1103.2765
+216347.0673035728 4.0372157 1103.3949
+216348.0673036771 4.0371766 1103.2963
+216349.0673037814 4.0370975 1103.3949
+216350.0673038857 4.0372157 1103.2567
+216351.06730399 4.0370975 1103.3752
+216352.0673040943 4.0372157 1103.4147
+216353.0673041986 4.0372553 1103.3555
+216354.0673043029 4.0372157 1103.3555
+216355.0673044072 4.0372553 1103.4147
+216356.0673045116 4.0371766 1103.2765
+216357.0673046159 4.0372944 1103.4344
+216358.0673047202 4.0372944 1103.316
+216359.0673048245 4.0372944 1103.4542
+216360.0673049288 4.0372944 1103.3752
+216361.0673050331 4.037334 1103.4344
+216362.0673051374 4.037334 1103.3949
+216363.0673052417 4.0373731 1103.3357
+216364.067305346 4.037334 1103.3752
+216365.0673054503 4.0374517 1103.3555
+216366.0673055546 4.0374126 1103.3357
+216367.0673056589 4.0375309 1103.3949
+216368.0673057633 4.0374913 1103.3555
+216369.0673058676 4.0375309 1103.3949
+216370.0673059719 4.0374517 1103.3555
+216371.0673060762 4.0374517 1103.316
+216372.0673061805 4.0374913 1103.2567
+216373.0673062848 4.0375309 1103.316
+216374.0673063891 4.0374913 1103.2963
+216375.0673064934 4.0375309 1103.4542
+216376.0673065977 4.0376096 1103.3555
+216377.067306702 4.0376096 1103.3357
+216378.0673068063 4.0374913 1103.3357
+216379.0673069106 4.0376096 1103.3357
+216380.067307015 4.0376487 1103.3357
+216381.0673071193 4.0376487 1103.3555
+216382.0673072236 4.0376487 1103.4344
+216383.0673073279 4.0376883 1103.3752
+216384.0673074322 4.0376487 1103.2963
+216385.0673075365 4.0376883 1103.3555
+216386.0673076408 4.0377274 1103.316
+216387.0673077451 4.0376883 1103.3949
+216388.0673078494 4.0377669 1103.4344
+216389.0673079537 4.0376883 1103.316
+216390.067308058 4.0377669 1103.4344
+216391.0673081623 4.0377669 1103.3555
+216392.0673082666 4.0378456 1103.4344
+216393.067308371 4.0377669 1103.3949
+216394.0673084753 4.0378456 1103.3752
+216395.0673085796 4.0378065 1103.4344
+216396.0673086839 4.0377669 1103.3949
+216397.0673087882 4.0379243 1103.3949
+216398.0673088925 4.0379243 1103.3752
+216399.0673089968 4.0378852 1103.3752
+216400.0673091011 4.0377274 1103.3949
+216401.0673092054 4.0379243 1103.3555
+216402.0673093097 4.0379639 1103.3357
+216403.067309414 4.038003 1103.3555
+216404.0673095183 4.0380816 1103.4542
+216405.0673096227 4.0379639 1103.2765
+216406.067309727 4.0380425 1103.3555
+216407.0673098313 4.0380425 1103.3949
+216408.0673099356 4.0379243 1103.3555
+216409.0673100399 4.038003 1103.3357
+216410.0673101442 4.0380425 1103.4344
+216411.0673102485 4.0379243 1103.316
+216412.0673103528 4.0381212 1103.3752
+216413.0673104571 4.0381999 1103.4542
+216414.0673105614 4.0382395 1103.3357
+216415.0673106657 4.0381212 1103.2963
+216416.06731077 4.0382395 1103.4542
+216417.0673108744 4.0380816 1103.3949
+216418.0673109787 4.0381212 1103.2567
+216419.067311083 4.0382395 1103.2765
+216420.0673111873 4.0381608 1103.3949
+216421.0673112916 4.0381999 1103.4147
+216422.0673113959 4.0381999 1103.3357
+216423.0673115002 4.0381999 1103.3752
+216424.0673116045 4.0382395 1103.3949
+216425.0673117088 4.0382786 1103.3949
+216426.0673118131 4.0382395 1103.4147
+216427.0673119174 4.0382786 1103.4147
+216428.0673120217 4.0382395 1103.3752
+216429.067312126 4.0382395 1103.3949
+216430.0673122304 4.0382786 1103.2963
+216431.0673123347 4.0383182 1103.3357
+216432.067312439 4.0383968 1103.3752
+216433.0673125433 4.0384364 1103.3949
+216434.0673126476 4.0383573 1103.4147
+216435.0673127519 4.0383968 1103.3555
+216436.0673128562 4.0383968 1103.3949
+216437.0673129605 4.0385151 1103.316
+216438.0673130648 4.0383968 1103.3555
+216439.0673131691 4.0384755 1103.3555
+216440.0673132734 4.0383968 1103.3752
+216441.0673133777 4.0384755 1103.2963
+216442.0673134821 4.0385542 1103.3949
+216443.0673135864 4.0384755 1103.3357
+216444.0673136907 4.0385151 1103.3752
+216445.067313795 4.0385151 1103.3357
+216446.0673138993 4.0386329 1103.316
+216447.0673140036 4.0386329 1103.2369
+216448.0673141079 4.0386329 1103.3949
+216449.0673142122 4.0385151 1103.3357
+216450.0673143165 4.0385542 1103.316
+216451.0673144208 4.0386329 1103.2765
+216452.0673145251 4.0386724 1103.4147
+216453.0673146294 4.038712 1103.2963
+216454.0673147338 4.038712 1103.4147
+216455.0673148381 4.038712 1103.3357
+216456.0673149424 4.0386724 1103.3357
+216457.0673150467 4.038712 1103.3555
+216458.067315151 4.0386329 1103.4344
+216459.0673152553 4.0387511 1103.3949
+216460.0673153596 4.0387511 1103.3357
+216461.0673154639 4.0387511 1103.4147
+216462.0673155682 4.0388298 1103.3357
+216463.0673156725 4.0387907 1103.2567
+216464.0673157768 4.0387511 1103.3949
+216465.0673158811 4.0389085 1103.2369
+216466.0673159854 4.0388694 1103.4147
+216467.0673160898 4.0388298 1103.4147
+216468.0673161941 4.0389481 1103.3752
+216469.0673162984 4.0388694 1103.316
+216470.0673164027 4.0389085 1103.4147
+216471.067316507 4.0389085 1103.3752
+216472.0673166113 4.0389481 1103.3752
+216473.0673167156 4.0389085 1103.2963
+216474.0673168199 4.0389481 1103.3357
+216475.0673169242 4.0390267 1103.4147
+216476.0673170285 4.0389872 1103.3555
+216477.0673171328 4.0389481 1103.3555
+216478.0673172371 4.0390663 1103.3752
+216479.0673173415 4.0390267 1103.2963
+216480.0673174458 4.0389481 1103.3555
+216481.0673175501 4.039145 1103.316
+216482.0673176544 4.0390663 1103.316
+216483.0673177587 4.0389872 1103.3555
+216484.067317863 4.0391054 1103.3949
+216485.0673179673 4.039145 1103.3357
+216486.0673180716 4.039145 1103.3949
+216487.0673181759 4.0390267 1103.2963
+216488.0673182802 4.0392237 1103.4344
+216489.0673183845 4.0392237 1103.3949
+216490.0673184888 4.039145 1103.4542
+216491.0673185932 4.0392237 1103.3949
+216492.0673186975 4.0391054 1103.3752
+216493.0673188018 4.0391841 1103.3752
+216494.0673189061 4.0392237 1103.3555
+216495.0673190104 4.0392237 1103.3357
+216496.0673191147 4.0393419 1103.2369
+216497.067319219 4.0392628 1103.474
+216498.0673193233 4.0393023 1103.3357
+216499.0673194276 4.0393023 1103.2963
+216500.0673195319 4.0393023 1103.2963
+216501.0673196362 4.0394206 1103.3752
+216502.0673197405 4.039381 1103.3555
+216503.0673198448 4.039381 1103.3752
+216504.0673199492 4.0394993 1103.3555
+216505.0673200535 4.0392628 1103.3555
+216506.0673201578 4.0394206 1103.4542
+216507.0673202621 4.039381 1103.316
+216508.0673203664 4.0394206 1103.2765
+216509.0673204707 4.0394597 1103.3752
+216510.067320575 4.0395384 1103.3949
+216511.0673206793 4.0395384 1103.3357
+216512.0673207836 4.0394597 1103.3752
+216513.0673208879 4.0394993 1103.2369
+216514.0673209922 4.0394597 1103.3357
+216515.0673210965 4.0396171 1103.3949
+216516.0673212009 4.039578 1103.4147
+216517.0673213052 4.039578 1103.3752
+216518.0673214095 4.0395384 1103.3357
+216519.0673215138 4.0396566 1103.3555
+216520.0673216181 4.0396171 1103.2963
+216521.0673217224 4.039578 1103.2765
+216522.0673218267 4.0397353 1103.316
+216523.067321931 4.0396566 1103.316
+216524.0673220353 4.0396962 1103.2963
+216525.0673221396 4.0396171 1103.2765
+216526.0673222439 4.0397749 1103.316
+216527.0673223482 4.0396962 1103.3555
+216528.0673224526 4.039814 1103.316
+216529.0673225569 4.0397749 1103.3555
+216530.0673226612 4.039814 1103.3752
+216531.0673227655 4.0397749 1103.3357
+216532.0673228698 4.039814 1103.4344
+216533.0673229741 4.0398927 1103.4344
+216534.0673230784 4.0398927 1103.3357
+216535.0673231827 4.0397749 1103.4147
+216536.067323287 4.0397353 1103.3357
+216537.0673233913 4.0398927 1103.3357
+216538.0673234956 4.0398536 1103.316
+216539.0673235999 4.0399718 1103.4147
+216540.0673237043 4.0398927 1103.3752
+216541.0673238086 4.0399323 1103.316
+216542.0673239129 4.0399718 1103.3752
+216543.0673240172 4.0400109 1103.3752
+216544.0673241215 4.0399718 1103.4147
+216545.0673242258 4.0400109 1103.3357
+216546.0673243301 4.0400109 1103.316
+216547.0673244344 4.0400505 1103.3752
+216548.0673245387 4.0400505 1103.3555
+216549.067324643 4.0400505 1103.3949
+216550.0673247473 4.0400505 1103.4542
+216551.0673248516 4.0400505 1103.3752
+216552.0673249559 4.0399718 1103.2963
+216553.0673250603 4.0400896 1103.3752
+216554.0673251646 4.0401292 1103.3949
+216555.0673252689 4.0401683 1103.4147
+216556.0673253732 4.0401292 1103.3357
+216557.0673254775 4.0400896 1103.474
+216558.0673255818 4.0402474 1103.2369
+216559.0673256861 4.0401292 1103.3357
+216560.0673257904 4.0401292 1103.316
+216561.0673258947 4.0402865 1103.3555
+216562.067325999 4.0401292 1103.3357
+216563.0673261033 4.0403261 1103.3752
+216564.0673262076 4.0402079 1103.3555
+216565.067326312 4.0401683 1103.316
+216566.0673264163 4.0402079 1103.4147
+216567.0673265206 4.0403261 1103.2963
+216568.0673266249 4.0403261 1103.3752
+216569.0673267292 4.0402865 1103.3357
+216570.0673268335 4.0403652 1103.316
+216571.0673269378 4.0403652 1103.3357
+216572.0673270421 4.0404048 1103.3752
+216573.0673271464 4.0402865 1103.316
+216574.0673272507 4.0404835 1103.3555
+216575.067327355 4.0404048 1103.3555
+216576.0673274593 4.0404439 1103.3357
+216577.0673275637 4.0404439 1103.3555
+216578.067327668 4.0405622 1103.3949
+216579.0673277723 4.0404835 1103.3555
+216580.0673278766 4.0404835 1103.2963
+216581.0673279809 4.0404835 1103.316
+216582.0673280852 4.0405622 1103.4344
+216583.0673281895 4.0404439 1103.316
+216584.0673282938 4.0405226 1103.316
+216585.0673283981 4.0405622 1103.3357
+216586.0673285024 4.0406408 1103.3357
+216587.0673286067 4.0406408 1103.3357
+216588.067328711 4.0406408 1103.2567
+216589.0673288153 4.0405226 1103.3555
+216590.0673289197 4.0406408 1103.3357
+216591.067329024 4.0406017 1103.3555
+216592.0673291283 4.0406804 1103.316
+216593.0673292326 4.0406408 1103.2765
+216594.0673293369 4.0406804 1103.3357
+216595.0673294412 4.0407591 1103.316
+216596.0673295455 4.0407195 1103.3949
+216597.0673296498 4.0407195 1103.3752
+216598.0673297541 4.0406408 1103.316
+216599.0673298584 4.0407982 1103.2963
+216600.0673299627 4.0407982 1103.3555
+216601.067330067 4.0408773 1103.316
+216602.0673301714 4.0407591 1103.3357
+216603.0673302757 4.0407982 1103.2369
+216604.06733038 4.0408773 1103.4147
+216605.0673304843 4.0409164 1103.3357
+216606.0673305886 4.0409164 1103.4344
+216607.0673306929 4.0407982 1103.3357
+216608.0673307972 4.0409164 1103.3949
+216609.0673309015 4.0407591 1103.3357
+216610.0673310058 4.0409164 1103.3752
+216611.0673311101 4.0409951 1103.3752
+216612.0673312144 4.040956 1103.3555
+216613.0673313187 4.0410347 1103.316
+216614.0673314231 4.0409951 1103.3555
+216615.0673315274 4.0411134 1103.3752
+216616.0673316317 4.0409951 1103.4542
+216617.067331736 4.0409951 1103.3555
+216618.0673318403 4.0410347 1103.3752
+216619.0673319446 4.0411525 1103.3555
+216620.0673320489 4.0409951 1103.316
+216621.0673321532 4.0410738 1103.3949
+216622.0673322575 4.0411134 1103.3949
+216623.0673323618 4.0410738 1103.4344
+216624.0673324661 4.0411921 1103.3555
+216625.0673325704 4.0410738 1103.3555
+216626.0673326747 4.0411134 1103.3752
+216627.0673327791 4.0411921 1103.3752
+216628.0673328834 4.0411525 1103.316
+216629.0673329877 4.0412707 1103.3752
+216630.067333092 4.0411525 1103.2369
+216631.0673331963 4.0412316 1103.3752
+216632.0673333006 4.0412707 1103.4147
+216633.0673334049 4.0412316 1103.3555
+216634.0673335092 4.0411921 1103.4344
+216635.0673336135 4.0412316 1103.3949
+216636.0673337178 4.0413494 1103.4147
+216637.0673338221 4.0412316 1103.4542
+216638.0673339264 4.0413103 1103.3555
+216639.0673340308 4.041389 1103.4542
+216640.0673341351 4.0413103 1103.316
+216641.0673342394 4.0414281 1103.4147
+216642.0673343437 4.041389 1103.3949
+216643.067334448 4.0414281 1103.2963
+216644.0673345523 4.0414281 1103.316
+216645.0673346566 4.0413494 1103.3555
+216646.0673347609 4.0415072 1103.3752
+216647.0673348652 4.0415072 1103.3752
+216648.0673349695 4.0414281 1103.4147
+216649.0673350738 4.0414281 1103.3555
+216650.0673351781 4.0415072 1103.316
+216651.0673352825 4.0414677 1103.2765
+216652.0673353868 4.0415463 1103.4147
+216653.0673354911 4.0415072 1103.3752
+216654.0673355954 4.0415859 1103.2963
+216655.0673356997 4.0415463 1103.3752
+216656.067335804 4.041625 1103.3752
+216657.0673359083 4.0415859 1103.4344
+216658.0673360126 4.041625 1103.3357
+216659.0673361169 4.0416646 1103.4344
+216660.0673362212 4.041625 1103.3949
+216661.0673363255 4.041625 1103.3752
+216662.0673364298 4.041625 1103.3555
+216663.0673365342 4.041625 1103.316
+216664.0673366385 4.0417037 1103.2765
+216665.0673367428 4.0417824 1103.3752
+216666.0673368471 4.0417433 1103.2765
+216667.0673369514 4.0417433 1103.3752
+216668.0673370557 4.041625 1103.3752
+216669.06733716 4.041822 1103.3357
+216670.0673372643 4.0417037 1103.3357
+216671.0673373686 4.0418615 1103.2765
+216672.0673374729 4.0417824 1103.3555
+216673.0673375772 4.041822 1103.3357
+216674.0673376815 4.041822 1103.3949
+216675.0673377858 4.041822 1103.2963
+216676.0673378902 4.0418615 1103.3752
+216677.0673379945 4.0419006 1103.4344
+216678.0673380988 4.0419006 1103.3357
+216679.0673382031 4.0418615 1103.3555
+216680.0673383074 4.0418615 1103.3949
+216681.0673384117 4.0420189 1103.3357
+216682.067338516 4.0419006 1103.3949
+216683.0673386203 4.0419793 1103.3752
+216684.0673387246 4.0419793 1103.3357
+216685.0673388289 4.0418615 1103.4147
+216686.0673389332 4.0419793 1103.3555
+216687.0673390375 4.0420189 1103.3949
+216688.0673391419 4.0420976 1103.3555
+216689.0673392462 4.0420976 1103.3357
+216690.0673393505 4.042058 1103.3752
+216691.0673394548 4.042058 1103.3555
+216692.0673395591 4.042058 1103.3752
+216693.0673396634 4.0422158 1103.3949
+216694.0673397677 4.0420976 1103.3949
+216695.067339872 4.0421762 1103.3752
+216696.0673399763 4.0421371 1103.3555
+216697.0673400806 4.0422158 1103.3752
+216698.0673401849 4.0422158 1103.3555
+216699.0673402892 4.0421762 1103.3555
+216700.0673403936 4.0422945 1103.4147
+216701.0673404979 4.0422158 1103.2765
+216702.0673406022 4.0422549 1103.5332
+216703.0673407065 4.0422549 1103.4344
+216704.0673408108 4.0422158 1103.4344
+216705.0673409151 4.0423336 1103.3555
+216706.0673410194 4.0423336 1103.3949
+216707.0673411237 4.0422549 1103.4147
+216708.067341228 4.0423732 1103.3949
+216709.0673413323 4.0423336 1103.3752
+216710.0673414366 4.0424128 1103.3555
+216711.0673415409 4.0423732 1103.4147
+216712.0673416452 4.0423336 1103.3357
+216713.0673417496 4.0423732 1103.4147
+216714.0673418539 4.0425305 1103.4147
+216715.0673419582 4.0424128 1103.2963
+216716.0673420625 4.0424128 1103.3357
+216717.0673421668 4.0424519 1103.3949
+216718.0673422711 4.0424519 1103.3357
+216719.0673423754 4.0425305 1103.3752
+216720.0673424797 4.0423732 1103.4542
+216721.067342584 4.0425305 1103.4147
+216722.0673426883 4.0426488 1103.4147
+216723.0673427926 4.0425305 1103.3555
+216724.0673428969 4.0424914 1103.2765
+216725.0673430013 4.0425701 1103.2567
+216726.0673431056 4.0425701 1103.3752
+216727.0673432099 4.0426092 1103.3357
+216728.0673433142 4.0426092 1103.3752
+216729.0673434185 4.0426488 1103.3949
+216730.0673435228 4.042767 1103.3752
+216731.0673436271 4.0426092 1103.3357
+216732.0673437314 4.0427275 1103.4344
+216733.0673438357 4.0427275 1103.3752
+216734.06734394 4.0427275 1103.3357
+216735.0673440443 4.0426879 1103.4147
+216736.0673441486 4.0428457 1103.4344
+216737.067344253 4.042767 1103.3555
+216738.0673443573 4.0427275 1103.3357
+216739.0673444616 4.0428848 1103.3949
+216740.0673445659 4.042767 1103.3752
+216741.0673446702 4.0428061 1103.3949
+216742.0673447745 4.042767 1103.316
+216743.0673448788 4.0428457 1103.2567
+216744.0673449831 4.0428061 1103.3752
+216745.0673450874 4.0429244 1103.3752
+216746.0673451917 4.0428848 1103.4542
+216747.067345296 4.0429244 1103.316
+216748.0673454003 4.0429244 1103.3357
+216749.0673455046 4.0429635 1103.4147
+216750.067345609 4.0429244 1103.3357
+216751.0673457133 4.0430427 1103.316
+216752.0673458176 4.0428457 1103.2963
+216753.0673459219 4.0430031 1103.3555
+216754.0673460262 4.0430031 1103.3555
+216755.0673461305 4.0431604 1103.4147
+216756.0673462348 4.0430427 1103.4344
+216757.0673463391 4.0431213 1103.316
+216758.0673464434 4.0430031 1103.2963
+216759.0673465477 4.0431213 1103.2963
+216760.067346652 4.0429635 1103.3555
+216761.0673467563 4.0430818 1103.3752
+216762.0673468607 4.0432391 1103.3357
+216763.067346965 4.0432 1103.316
+216764.0673470693 4.0431213 1103.3357
+216765.0673471736 4.0432391 1103.3949
+216766.0673472779 4.0432 1103.3949
+216767.0673473822 4.0432391 1103.3752
+216768.0673474865 4.0432391 1103.4147
+216769.0673475908 4.0432391 1103.3357
+216770.0673476951 4.0432 1103.3752
+216771.0673477994 4.0432391 1103.4147
+216772.0673479037 4.0432787 1103.316
+216773.067348008 4.0432787 1103.3357
+216774.0673481124 4.0433574 1103.2963
+216775.0673482167 4.0431604 1103.3949
+216776.067348321 4.0433969 1103.316
+216777.0673484253 4.0433574 1103.3752
+216778.0673485296 4.0433969 1103.3752
+216779.0673486339 4.0433574 1103.4344
+216780.0673487382 4.0433969 1103.316
+216781.0673488425 4.0432787 1103.3555
+216782.0673489468 4.0433969 1103.2369
+216783.0673490511 4.0434361 1103.3949
+216784.0673491554 4.0434756 1103.3752
+216785.0673492597 4.0433969 1103.4147
+216786.0673493641 4.0435543 1103.3752
+216787.0673494684 4.0435934 1103.316
+216788.0673495727 4.0435934 1103.2963
+216789.067349677 4.0435543 1103.3752
+216790.0673497813 4.0435543 1103.316
+216791.0673498856 4.0434361 1103.3555
+216792.0673499899 4.0435934 1103.3357
+216793.0673500942 4.0435934 1103.4344
+216794.0673501985 4.0435934 1103.316
+216795.0673503028 4.043633 1103.3555
+216796.0673504071 4.043633 1103.3357
+216797.0673505114 4.0436726 1103.3555
+216798.0673506157 4.0435147 1103.316
+216799.0673507201 4.043633 1103.3555
+216800.0673508244 4.0436726 1103.3555
+216801.0673509287 4.0437903 1103.4938
+216802.067351033 4.0436726 1103.3752
+216803.0673511373 4.0437512 1103.3752
+216804.0673512416 4.0437903 1103.2963
+216805.0673513459 4.0437512 1103.2567
+216806.0673514502 4.0438299 1103.3949
+216807.0673515545 4.0438299 1103.3357
+216808.0673516588 4.0437903 1103.3555
+216809.0673517631 4.0437512 1103.3357
+216810.0673518674 4.0438299 1103.2765
+216811.0673519718 4.0439086 1103.4542
+216812.0673520761 4.0437117 1103.4147
+216813.0673521804 4.0438299 1103.316
+216814.0673522847 4.0439086 1103.3357
+216815.067352389 4.043869 1103.3752
+216816.0673524933 4.043869 1103.3752
+216817.0673525976 4.043869 1103.3357
+216818.0673527019 4.0439482 1103.3357
+216819.0673528062 4.0439482 1103.3949
+216820.0673529105 4.0439873 1103.3752
+216821.0673530148 4.044066 1103.4147
+216822.0673531191 4.0439086 1103.2963
+216823.0673532235 4.044066 1103.3555
+216824.0673533278 4.0441055 1103.3949
+216825.0673534321 4.044066 1103.3752
+216826.0673535364 4.0439873 1103.2963
+216827.0673536407 4.0439873 1103.3357
+216828.067353745 4.0441055 1103.3752
+216829.0673538493 4.0441055 1103.3949
+216830.0673539536 4.0439873 1103.3357
+216831.0673540579 4.0441446 1103.3357
+216832.0673541622 4.0441446 1103.3752
+216833.0673542665 4.0441842 1103.3555
+216834.0673543708 4.0441842 1103.3357
+216835.0673544751 4.0441842 1103.3949
+216836.0673545795 4.0441055 1103.2765
+216837.0673546838 4.0443025 1103.3752
+216838.0673547881 4.0441842 1103.3555
+216839.0673548924 4.0441446 1103.3752
+216840.0673549967 4.0443025 1103.2963
+216841.067355101 4.0443811 1103.2963
+216842.0673552053 4.0443416 1103.2567
+216843.0673553096 4.0443416 1103.3555
+216844.0673554139 4.0443416 1103.2963
+216845.0673555182 4.0443025 1103.3357
+216846.0673556225 4.0442629 1103.3752
+216847.0673557268 4.0444202 1103.4147
+216848.0673558312 4.0444202 1103.3555
+216849.0673559355 4.0443811 1103.3357
+216850.0673560398 4.0443811 1103.3752
+216851.0673561441 4.0444202 1103.3555
+216852.0673562484 4.0443416 1103.316
+216853.0673563527 4.0444598 1103.3949
+216854.067356457 4.0443416 1103.3949
+216855.0673565613 4.0444598 1103.3949
+216856.0673566656 4.0445385 1103.3357
+216857.0673567699 4.0444598 1103.316
+216858.0673568742 4.0445385 1103.4147
+216859.0673569785 4.0446172 1103.3949
+216860.0673570829 4.0446172 1103.474
+216861.0673571872 4.0446172 1103.316
+216862.0673572915 4.0446172 1103.3357
+216863.0673573958 4.0445781 1103.3752
+216864.0673575001 4.0446959 1103.3752
+216865.0673576044 4.0446172 1103.4147
+216866.0673577087 4.0446172 1103.3357
+216867.067357813 4.0446568 1103.316
+216868.0673579173 4.0446568 1103.316
+216869.0673580216 4.0446172 1103.316
+216870.0673581259 4.0446959 1103.3752
+216871.0673582302 4.0446959 1103.474
+216872.0673583345 4.0447745 1103.316
+216873.0673584389 4.0448141 1103.3949
+216874.0673585432 4.0448141 1103.2963
+216875.0673586475 4.0447745 1103.4147
+216876.0673587518 4.0448928 1103.3752
+216877.0673588561 4.0448141 1103.3752
+216878.0673589604 4.0448141 1103.3357
+216879.0673590647 4.0447745 1103.316
+216880.067359169 4.0448141 1103.3752
+216881.0673592733 4.0448532 1103.316
+216882.0673593776 4.0448928 1103.3357
+216883.0673594819 4.0448532 1103.4147
+216884.0673595862 4.0448928 1103.3555
+216885.0673596906 4.0449715 1103.3949
+216886.0673597949 4.0449715 1103.3555
+216887.0673598992 4.0450501 1103.3949
+216888.0673600035 4.0449324 1103.3949
+216889.0673601078 4.0449715 1103.3555
+216890.0673602121 4.045011 1103.3752
+216891.0673603164 4.0449715 1103.2765
+216892.0673604207 4.0449715 1103.3555
+216893.067360525 4.0449715 1103.3555
+216894.0673606293 4.0450897 1103.3555
+216895.0673607336 4.0451288 1103.474
+216896.0673608379 4.0451288 1103.4938
+216897.0673609423 4.0451684 1103.3752
+216898.0673610466 4.0451684 1103.2172
+216899.0673611509 4.0450501 1103.3357
+216900.0673612552 4.0451288 1103.2567
+216901.0673613595 4.0451684 1103.474
+216902.0673614638 4.0450501 1103.3752
+216903.0673615681 4.0450897 1103.4344
+216904.0673616724 4.0451684 1103.474
+216905.0673617767 4.0451684 1103.316
+216906.067361881 4.0451684 1103.3752
+216907.0673619853 4.0451684 1103.3555
+216908.0673620896 4.045208 1103.3949
+216909.067362194 4.0452867 1103.3949
+216910.0673622983 4.0452867 1103.316
+216911.0673624026 4.0452867 1103.316
+216912.0673625069 4.0452867 1103.2567
+216913.0673626112 4.0453258 1103.3357
+216914.0673627155 4.0452867 1103.3555
+216915.0673628198 4.0453258 1103.4147
+216916.0673629241 4.0453653 1103.3949
+216917.0673630284 4.0453653 1103.316
+216918.0673631327 4.0455623 1103.3949
+216919.067363237 4.045444 1103.4542
+216920.0673633413 4.0455623 1103.3555
+216921.0673634456 4.0455227 1103.3949
+216922.06736355 4.045444 1103.2963
+216923.0673636543 4.0454831 1103.3752
+216924.0673637586 4.0455623 1103.4344
+216925.0673638629 4.045444 1103.3949
+216926.0673639672 4.0455227 1103.3357
+216927.0673640715 4.0455623 1103.3949
+216928.0673641758 4.0456409 1103.2765
+216929.0673642801 4.0456409 1103.3949
+216930.0673643844 4.0456409 1103.3949
+216931.0673644887 4.0454831 1103.2567
+216932.067364593 4.0456409 1103.3357
+216933.0673646973 4.0455623 1103.316
+216934.0673648017 4.0456409 1103.4542
+216935.067364906 4.04568 1103.2963
+216936.0673650103 4.0456409 1103.2963
+216937.0673651146 4.0457196 1103.3752
+216938.0673652189 4.04568 1103.3949
+216939.0673653232 4.0457196 1103.3752
+216940.0673654275 4.0456409 1103.3949
+216941.0673655318 4.0457196 1103.316
+216942.0673656361 4.0456409 1103.2963
+216943.0673657404 4.0457983 1103.3949
+216944.0673658447 4.0457983 1103.3555
+216945.067365949 4.045877 1103.316
+216946.0673660534 4.0457983 1103.3752
+216947.0673661577 4.045877 1103.4147
+216948.067366262 4.045877 1103.4344
+216949.0673663663 4.0457587 1103.3555
+216950.0673664706 4.0458379 1103.3357
+216951.0673665749 4.045877 1103.3949
+216952.0673666792 4.045877 1103.2963
+216953.0673667835 4.0459166 1103.2963
+216954.0673668878 4.0459557 1103.474
+216955.0673669921 4.0459557 1103.316
+216956.0673670964 4.0458379 1103.3752
+216957.0673672007 4.0459952 1103.3949
+216958.067367305 4.0459952 1103.4344
+216959.0673674094 4.0460343 1103.3949
+216960.0673675137 4.0460343 1103.4147
+216961.067367618 4.0459952 1103.316
+216962.0673677223 4.0460343 1103.3357
+216963.0673678266 4.0461135 1103.2963
+216964.0673679309 4.0461135 1103.3752
+216965.0673680352 4.0461526 1103.3752
+216966.0673681395 4.0460739 1103.4147
+216967.0673682438 4.0460739 1103.4147
+216968.0673683481 4.0461526 1103.4147
+216969.0673684524 4.0461135 1103.3752
+216970.0673685567 4.0461526 1103.3357
+216971.0673686611 4.0461922 1103.2963
+216972.0673687654 4.0461526 1103.3357
+216973.0673688697 4.0462313 1103.4147
+216974.067368974 4.0462313 1103.4147
+216975.0673690783 4.0461922 1103.2963
+216976.0673691826 4.0463099 1103.3949
+216977.0673692869 4.0463099 1103.316
+216978.0673693912 4.0463495 1103.4542
+216979.0673694955 4.0462708 1103.3752
+216980.0673695998 4.0463886 1103.4147
+216981.0673697041 4.0463099 1103.3949
+216982.0673698084 4.0463495 1103.4147
+216983.0673699128 4.0463099 1103.3949
+216984.0673700171 4.0463099 1103.4147
+216985.0673701214 4.0463886 1103.3555
+216986.0673702257 4.0464678 1103.316
+216987.06737033 4.0464282 1103.3357
+216988.0673704343 4.0463099 1103.316
+216989.0673705386 4.0465069 1103.3752
+216990.0673706429 4.0464282 1103.3752
+216991.0673707472 4.0465069 1103.3949
+216992.0673708515 4.0464678 1103.3357
+216993.0673709558 4.0464678 1103.3752
+216994.0673710601 4.0464282 1103.4344
+216995.0673711644 4.0464678 1103.3752
+216996.0673712688 4.0465069 1103.3555
+216997.0673713731 4.0465069 1103.3555
+216998.0673714774 4.0464678 1103.3949
+216999.0673715817 4.0466642 1103.3752
+217000.067371686 4.0465856 1103.4344
+217001.0673717903 4.0466251 1103.2765
+217002.0673718946 4.0465465 1103.3555
+217003.0673719989 4.0466251 1103.4542
+217004.0673721032 4.0466642 1103.4147
+217005.0673722075 4.0465465 1103.3555
+217006.0673723118 4.0467038 1103.2963
+217007.0673724161 4.0467434 1103.4344
+217008.0673725205 4.0467038 1103.4344
+217009.0673726248 4.0467434 1103.3555
+217010.0673727291 4.0467825 1103.4344
+217011.0673728334 4.0468221 1103.3555
+217012.0673729377 4.0468221 1103.3949
+217013.067373042 4.0467434 1103.2963
+217014.0673731463 4.0467825 1103.3357
+217015.0673732506 4.0468612 1103.4938
+217016.0673733549 4.0468612 1103.4344
+217017.0673734592 4.0468221 1103.4147
+217018.0673735635 4.0468221 1103.3949
+217019.0673736678 4.0469794 1103.4542
+217020.0673737722 4.0468612 1103.4147
+217021.0673738765 4.0468221 1103.316
+217022.0673739808 4.0468221 1103.3357
+217023.0673740851 4.0470185 1103.3357
+217024.0673741894 4.0469398 1103.3555
+217025.0673742937 4.0469398 1103.3752
+217026.067374398 4.0468612 1103.3555
+217027.0673745023 4.0470185 1103.3357
+217028.0673746066 4.0469794 1103.316
+217029.0673747109 4.0471368 1103.4344
+217030.0673748152 4.0470581 1103.3752
+217031.0673749195 4.0470185 1103.3555
+217032.0673750238 4.0469794 1103.316
+217033.0673751282 4.0470977 1103.3555
+217034.0673752325 4.0470581 1103.2963
+217035.0673753368 4.0471368 1103.3555
+217036.0673754411 4.0470977 1103.316
+217037.0673755454 4.0470977 1103.4147
+217038.0673756497 4.0471368 1103.316
+217039.067375754 4.0470977 1103.2765
+217040.0673758583 4.0471368 1103.3555
+217041.0673759626 4.0470977 1103.3752
+217042.0673760669 4.0472155 1103.316
+217043.0673761712 4.0472155 1103.316
+217044.0673762755 4.0471764 1103.316
+217045.0673763799 4.0472941 1103.3752
+217046.0673764842 4.047255 1103.4344
+217047.0673765885 4.0472941 1103.3752
+217048.0673766928 4.047255 1103.3555
+217049.0673767971 4.0473337 1103.316
+217050.0673769014 4.0473733 1103.3949
+217051.0673770057 4.0472941 1103.4147
+217052.06737711 4.0472941 1103.316
+217053.0673772143 4.0472941 1103.3357
+217054.0673773186 4.0473337 1103.3357
+217055.0673774229 4.047452 1103.3357
+217056.0673775272 4.0474124 1103.3949
+217057.0673776316 4.0474911 1103.3357
+217058.0673777359 4.047452 1103.3949
+217059.0673778402 4.0474911 1103.2963
+217060.0673779445 4.0474911 1103.4344
+217061.0673780488 4.0474911 1103.3555
+217062.0673781531 4.047452 1103.4147
+217063.0673782574 4.0474124 1103.3752
+217064.0673783617 4.0473733 1103.316
+217065.067378466 4.0475307 1103.3949
+217066.0673785703 4.0475307 1103.3357
+217067.0673786746 4.0475307 1103.2765
+217068.0673787789 4.0476093 1103.4344
+217069.0673788833 4.0476489 1103.316
+217070.0673789876 4.047452 1103.2963
+217071.0673790919 4.0475698 1103.316
+217072.0673791962 4.0476093 1103.3555
+217073.0673793005 4.047688 1103.3949
+217074.0673794048 4.0477276 1103.3357
+217075.0673795091 4.0476489 1103.3357
+217076.0673796134 4.0475307 1103.2963
+217077.0673797177 4.047688 1103.3752
+217078.067379822 4.0477276 1103.316
+217079.0673799263 4.047688 1103.3949
+217080.0673800306 4.0477667 1103.4147
+217081.0673801349 4.0477276 1103.2963
+217082.0673802393 4.0478063 1103.3357
+217083.0673803436 4.0478063 1103.3357
+217084.0673804479 4.0478454 1103.3555
+217085.0673805522 4.0477276 1103.2963
+217086.0673806565 4.0477276 1103.3949
+217087.0673807608 4.0478063 1103.3949
+217088.0673808651 4.047688 1103.3555
+217089.0673809694 4.0478849 1103.3949
+217090.0673810737 4.047924 1103.3752
+217091.067381178 4.0480819 1103.3357
+217092.0673812823 4.0478063 1103.3949
+217093.0673813866 4.0478849 1103.3949
+217094.067381491 4.0478849 1103.3949
+217095.0673815953 4.0480423 1103.3949
+217096.0673816996 4.0479636 1103.3752
+217097.0673818039 4.0480032 1103.4147
+217098.0673819082 4.0479636 1103.2963
+217099.0673820125 4.0480032 1103.3357
+217100.0673821168 4.0480423 1103.3949
+217101.0673822211 4.0480423 1103.3949
+217102.0673823254 4.0480423 1103.3357
+217103.0673824297 4.0480423 1103.3949
+217104.067382534 4.0480423 1103.3555
+217105.0673826383 4.0480819 1103.3752
+217106.0673827427 4.0481606 1103.3949
+217107.067382847 4.0481606 1103.4147
+217108.0673829513 4.048121 1103.3357
+217109.0673830556 4.048121 1103.3357
+217110.0673831599 4.0481606 1103.3357
+217111.0673832642 4.0482392 1103.3357
+217112.0673833685 4.0480819 1103.3555
+217113.0673834728 4.0481997 1103.3555
+217114.0673835771 4.0481997 1103.3752
+217115.0673836814 4.0482788 1103.3357
+217116.0673837857 4.0482788 1103.3555
+217117.06738389 4.0482392 1103.2963
+217118.0673839943 4.0481997 1103.3752
+217119.0673840987 4.0481997 1103.4147
+217120.067384203 4.0483179 1103.4542
+217121.0673843073 4.0483575 1103.3752
+217122.0673844116 4.0483966 1103.3555
+217123.0673845159 4.0483575 1103.316
+217124.0673846202 4.0483966 1103.4344
+217125.0673847245 4.0483966 1103.3555
+217126.0673848288 4.0484753 1103.3752
+217127.0673849331 4.0484753 1103.3357
+217128.0673850374 4.0484753 1103.2765
+217129.0673851417 4.0484753 1103.3752
+217130.067385246 4.0483575 1103.4147
+217131.0673853504 4.0485539 1103.3555
+217132.0673854547 4.0484362 1103.3555
+217133.067385559 4.0485148 1103.2963
+217134.0673856633 4.0485539 1103.3949
+217135.0673857676 4.0486331 1103.4344
+217136.0673858719 4.0485539 1103.3555
+217137.0673859762 4.0485539 1103.3357
+217138.0673860805 4.0485935 1103.3357
+217139.0673861848 4.0484753 1103.3357
+217140.0673862891 4.0485148 1103.3357
+217141.0673863934 4.0485148 1103.3357
+217142.0673864977 4.0485539 1103.2765
+217143.0673866021 4.0486331 1103.3357
+217144.0673867064 4.0486722 1103.3949
+217145.0673868107 4.0487118 1103.3752
+217146.067386915 4.0486331 1103.4344
+217147.0673870193 4.0487118 1103.3555
+217148.0673871236 4.0487509 1103.3555
+217149.0673872279 4.0487509 1103.3357
+217150.0673873322 4.0487118 1103.3357
+217151.0673874365 4.0486722 1103.316
+217152.0673875408 4.0487905 1103.316
+217153.0673876451 4.0487118 1103.4542
+217154.0673877494 4.0488691 1103.3555
+217155.0673878537 4.0489087 1103.2567
+217156.0673879581 4.0488691 1103.3357
+217157.0673880624 4.0488296 1103.316
+217158.0673881667 4.0488691 1103.3752
+217159.067388271 4.0488296 1103.2765
+217160.0673883753 4.0489087 1103.2963
+217161.0673884796 4.0489478 1103.3357
+217162.0673885839 4.0489087 1103.3752
+217163.0673886882 4.0489478 1103.3752
+217164.0673887925 4.0488691 1103.3555
+217165.0673888968 4.0491052 1103.3357
+217166.0673890011 4.0489874 1103.3555
+217167.0673891054 4.0489478 1103.3949
+217168.0673892098 4.0490661 1103.3752
+217169.0673893141 4.0490265 1103.3752
+217170.0673894184 4.0489874 1103.3555
+217171.0673895227 4.0489874 1103.4542
+217172.067389627 4.0490661 1103.2963
+217173.0673897313 4.0491447 1103.3555
+217174.0673898356 4.0491052 1103.3555
+217175.0673899399 4.0490661 1103.3949
+217176.0673900442 4.0491052 1103.3949
+217177.0673901485 4.0491843 1103.3949
+217178.0673902528 4.0490661 1103.316
+217179.0673903571 4.0491447 1103.316
+217180.0673904615 4.0491052 1103.3555
+217181.0673905658 4.0491052 1103.3357
+217182.0673906701 4.049263 1103.4542
+217183.0673907744 4.0491843 1103.3949
+217184.0673908787 4.049263 1103.3752
+217185.067390983 4.0492234 1103.474
+217186.0673910873 4.0492234 1103.4344
+217187.0673911916 4.0492234 1103.3949
+217188.0673912959 4.0493021 1103.3752
+217189.0673914002 4.0493021 1103.2765
+217190.0673915045 4.0493021 1103.474
+217191.0673916088 4.0493808 1103.4344
+217192.0673917132 4.0493417 1103.3357
+217193.0673918175 4.049263 1103.2567
+217194.0673919218 4.0494595 1103.2963
+217195.0673920261 4.0493808 1103.3357
+217196.0673921304 4.0493417 1103.3949
+217197.0673922347 4.049499 1103.4147
+217198.067392339 4.0494204 1103.3555
+217199.0673924433 4.0494204 1103.4344
+217200.0673925476 4.0494595 1103.316
+217201.0673926519 4.0494204 1103.316
+217202.0673927562 4.0494595 1103.3752
+217203.0673928605 4.049499 1103.3752
+217204.0673929648 4.049499 1103.3357
+217205.0673930692 4.0494595 1103.3752
+217206.0673931735 4.0495386 1103.4542
+217207.0673932778 4.0495386 1103.3949
+217208.0673933821 4.0495777 1103.3752
+217209.0673934864 4.0495777 1103.3949
+217210.0673935907 4.0495777 1103.3555
+217211.067393695 4.049499 1103.2765
+217212.0673937993 4.0496173 1103.3949
+217213.0673939036 4.0495777 1103.316
+217214.0673940079 4.0496564 1103.316
+217215.0673941122 4.0496564 1103.3949
+217216.0673942165 4.049696 1103.2765
+217217.0673943209 4.0497746 1103.3949
+217218.0673944252 4.049696 1103.3357
+217219.0673945295 4.0497351 1103.3357
+217220.0673946338 4.0496564 1103.316
+217221.0673947381 4.0497746 1103.3949
+217222.0673948424 4.049696 1103.2963
+217223.0673949467 4.0498533 1103.3555
+217224.067395051 4.0497351 1103.2765
+217225.0673951553 4.0498533 1103.3752
+217226.0673952596 4.0497746 1103.316
+217227.0673953639 4.0497746 1103.3949
+217228.0673954682 4.049932 1103.2963
+217229.0673955726 4.0497351 1103.4344
+217230.0673956769 4.0498929 1103.4344
+217231.0673957812 4.0499716 1103.3357
+217232.0673958855 4.0498929 1103.3555
+217233.0673959898 4.0498929 1103.3949
+217234.0673960941 4.0498929 1103.3752
+217235.0673961984 4.0499716 1103.316
+217236.0673963027 4.049932 1103.4542
+217237.067396407 4.0500107 1103.4147
+217238.0673965113 4.0500503 1103.3555
+217239.0673966156 4.0499716 1103.3752
+217240.0673967199 4.0500894 1103.2963
+217241.0673968242 4.0501289 1103.3752
+217242.0673969286 4.0500107 1103.4938
+217243.0673970329 4.0500503 1103.4344
+217244.0673971372 4.0501289 1103.3357
+217245.0673972415 4.0500894 1103.2765
+217246.0673973458 4.0500894 1103.3357
+217247.0673974501 4.0500894 1103.2765
+217248.0673975544 4.0500894 1103.2963
+217249.0673976587 4.0501685 1103.3357
+217250.067397763 4.0501685 1103.3949
+217251.0673978673 4.0501685 1103.3752
+217252.0673979716 4.0502472 1103.4147
+217253.0673980759 4.0502076 1103.3752
+217254.0673981803 4.0502076 1103.2765
+217255.0673982846 4.0502076 1103.2765
+217256.0673983889 4.0501289 1103.3752
+217257.0673984932 4.0502076 1103.4147
+217258.0673985975 4.0502472 1103.3752
+217259.0673987018 4.0504441 1103.4147
+217260.0673988061 4.0502863 1103.3555
+217261.0673989104 4.0502863 1103.4344
+217262.0673990147 4.0502472 1103.3357
+217263.067399119 4.050365 1103.2963
+217264.0673992233 4.050365 1103.3949
+217265.0673993276 4.050365 1103.2765
+217266.067399432 4.0502863 1103.4147
+217267.0673995363 4.050365 1103.3949
+217268.0673996406 4.0504045 1103.3752
+217269.0673997449 4.0504045 1103.3752
+217270.0673998492 4.0504441 1103.3357
+217271.0673999535 4.0505228 1103.3555
+217272.0674000578 4.0504832 1103.3357
+217273.0674001621 4.0505619 1103.3752
+217274.0674002664 4.0504832 1103.3555
+217275.0674003707 4.0504832 1103.3555
+217276.067400475 4.0505228 1103.3555
+217277.0674005793 4.0505228 1103.2963
+217278.0674006836 4.0504832 1103.316
+217279.067400788 4.0506015 1103.2369
+217280.0674008923 4.0505228 1103.3949
+217281.0674009966 4.0506406 1103.316
+217282.0674011009 4.0506015 1103.316
+217283.0674012052 4.0506406 1103.4344
+217284.0674013095 4.0505619 1103.3752
+217285.0674014138 4.0507193 1103.3949
+217286.0674015181 4.0507193 1103.2963
+217287.0674016224 4.0506406 1103.2963
+217288.0674017267 4.0507588 1103.3357
+217289.067401831 4.0507588 1103.3555
+217290.0674019353 4.0507193 1103.3949
+217291.0674020397 4.0507193 1103.2963
+217292.067402144 4.0507588 1103.3752
+217293.0674022483 4.0507193 1103.3752
+217294.0674023526 4.0507984 1103.3555
+217295.0674024569 4.0507984 1103.1777
+217296.0674025612 4.0508771 1103.3357
+217297.0674026655 4.0506802 1103.3949
+217298.0674027698 4.0507984 1103.3555
+217299.0674028741 4.0509162 1103.3949
+217300.0674029784 4.0507588 1103.3752
+217301.0674030827 4.0507984 1103.3357
+217302.067403187 4.0509558 1103.316
+217303.0674032914 4.0509949 1103.3752
+217304.0674033957 4.0508771 1103.3949
+217305.0674035 4.0509558 1103.4542
+217306.0674036043 4.0509558 1103.4147
+217307.0674037086 4.0509558 1103.3752
+217308.0674038129 4.0509949 1103.3555
+217309.0674039172 4.0509162 1103.316
+217310.0674040215 4.0510345 1103.3357
+217311.0674041258 4.0509949 1103.316
+217312.0674042301 4.051074 1103.3752
+217313.0674043344 4.0510345 1103.4147
+217314.0674044387 4.051074 1103.3357
+217315.0674045431 4.0510345 1103.3949
+217316.0674046474 4.0510345 1103.3752
+217317.0674047517 4.0511527 1103.4938
+217318.067404856 4.0511918 1103.2567
+217319.0674049603 4.051074 1103.3949
+217320.0674050646 4.0511527 1103.3555
+217321.0674051689 4.0512314 1103.3357
+217322.0674052732 4.0512314 1103.3752
+217323.0674053775 4.0511918 1103.2963
+217324.0674054818 4.0511527 1103.3555
+217325.0674055861 4.0512314 1103.4147
+217326.0674056904 4.0512705 1103.2369
+217327.0674057947 4.0512705 1103.4344
+217328.0674058991 4.0512314 1103.3555
+217329.0674060034 4.0512314 1103.3357
+217330.0674061077 4.0513887 1103.4344
+217331.067406212 4.0512314 1103.2963
+217332.0674063163 4.0513496 1103.4344
+217333.0674064206 4.0513887 1103.3752
+217334.0674065249 4.0513496 1103.316
+217335.0674066292 4.0512705 1103.3555
+217336.0674067335 4.0514674 1103.4344
+217337.0674068378 4.0514283 1103.3357
+217338.0674069421 4.0513887 1103.3949
+217339.0674070464 4.0514283 1103.316
+217340.0674071508 4.0514283 1103.3357
+217341.0674072551 4.0514283 1103.3949
+217342.0674073594 4.051507 1103.3555
+217343.0674074637 4.0514674 1103.3555
+217344.067407568 4.0514674 1103.3949
+217345.0674076723 4.051507 1103.3357
+217346.0674077766 4.051507 1103.3357
+217347.0674078809 4.051507 1103.4147
+217348.0674079852 4.0515857 1103.3555
+217349.0674080895 4.0514674 1103.316
+217350.0674081938 4.0515857 1103.3357
+217351.0674082981 4.0515461 1103.316
+217352.0674084025 4.0516644 1103.3357
+217353.0674085068 4.0515857 1103.4542
+217354.0674086111 4.0516644 1103.3949
+217355.0674087154 4.0516248 1103.3357
+217356.0674088197 4.0516644 1103.4542
+217357.067408924 4.0516644 1103.3949
+217358.0674090283 4.0517039 1103.316
+217359.0674091326 4.0517039 1103.3752
+217360.0674092369 4.0517039 1103.3555
+217361.0674093412 4.0517039 1103.3357
+217362.0674094455 4.0517039 1103.316
+217363.0674095498 4.051743 1103.3555
+217364.0674096541 4.0517826 1103.3949
+217365.0674097585 4.051743 1103.3357
+217366.0674098628 4.051743 1103.2963
+217367.0674099671 4.0518217 1103.3752
+217368.0674100714 4.0518613 1103.4147
+217369.0674101757 4.0518613 1103.3752
+217370.06741028 4.0518217 1103.4147
+217371.0674103843 4.0519004 1103.3752
+217372.0674104886 4.0519004 1103.3949
+217373.0674105929 4.0518613 1103.316
+217374.0674106972 4.0518613 1103.474
+217375.0674108015 4.0518613 1103.2765
+217376.0674109058 4.05194 1103.316
+217377.0674110102 4.0519795 1103.3555
+217378.0674111145 4.0520582 1103.316
+217379.0674112188 4.0520186 1103.3555
+217380.0674113231 4.0519795 1103.2963
+217381.0674114274 4.0520582 1103.3357
+217382.0674115317 4.05194 1103.3949
+217383.067411636 4.05194 1103.3555
+217384.0674117403 4.0520582 1103.2963
+217385.0674118446 4.0521369 1103.3357
+217386.0674119489 4.0520186 1103.4147
+217387.0674120532 4.0520973 1103.3752
+217388.0674121575 4.0520582 1103.3949
+217389.0674122619 4.0521369 1103.3949
+217390.0674123662 4.0521369 1103.3949
+217391.0674124705 4.052176 1103.316
+217392.0674125748 4.0520582 1103.3949
+217393.0674126791 4.0521369 1103.3555
+217394.0674127834 4.052176 1103.316
+217395.0674128877 4.0521369 1103.2963
+217396.067412992 4.052176 1103.2963
+217397.0674130963 4.0522547 1103.4344
+217398.0674132006 4.0522156 1103.3555
+217399.0674133049 4.0523729 1103.3357
+217400.0674134092 4.0522156 1103.3357
+217401.0674135135 4.0523338 1103.3949
+217402.0674136179 4.0524125 1103.3555
+217403.0674137222 4.0524912 1103.4147
+217404.0674138265 4.0522156 1103.474
+217405.0674139308 4.0522547 1103.3949
+217406.0674140351 4.0524125 1103.3555
+217407.0674141394 4.0523729 1103.3555
+217408.0674142437 4.0524516 1103.316
+217409.067414348 4.0524125 1103.3949
+217410.0674144523 4.0524125 1103.2963
+217411.0674145566 4.0524516 1103.3357
+217412.0674146609 4.0524516 1103.3949
+217413.0674147652 4.0524516 1103.3752
+217414.0674148696 4.0525303 1103.3555
+217415.0674149739 4.0524912 1103.316
+217416.0674150782 4.0525303 1103.3555
+217417.0674151825 4.0525699 1103.3357
+217418.0674152868 4.0526881 1103.3357
+217419.0674153911 4.0524516 1103.4147
+217420.0674154954 4.0525699 1103.3949
+217421.0674155997 4.0525699 1103.4147
+217422.067415704 4.0526881 1103.3949
+217423.0674158083 4.0524912 1103.3949
+217424.0674159126 4.0526485 1103.3949
+217425.0674160169 4.0526485 1103.3752
+217426.0674161213 4.0526485 1103.3555
+217427.0674162256 4.0525699 1103.4344
+217428.0674163299 4.0525699 1103.4542
+217429.0674164342 4.0526881 1103.2369
+217430.0674165385 4.0526881 1103.4344
+217431.0674166428 4.0528455 1103.4147
+217432.0674167471 4.0527272 1103.4147
+217433.0674168514 4.0527272 1103.3555
+217434.0674169557 4.0527668 1103.3949
+217435.06741706 4.0527272 1103.3555
+217436.0674171643 4.0528059 1103.2963
+217437.0674172686 4.0528059 1103.316
+217438.0674173729 4.0527668 1103.3752
+217439.0674174773 4.0528059 1103.3752
+217440.0674175816 4.0529637 1103.3555
+217441.0674176859 4.0530028 1103.4344
+217442.0674177902 4.0529242 1103.316
+217443.0674178945 4.0529242 1103.4147
+217444.0674179988 4.0528059 1103.316
+217445.0674181031 4.0530028 1103.4344
+217446.0674182074 4.0529637 1103.3357
+217447.0674183117 4.0529242 1103.316
+217448.067418416 4.0530028 1103.3555
+217449.0674185203 4.0529242 1103.2567
+217450.0674186246 4.0528851 1103.316
+217451.067418729 4.0530815 1103.3357
+217452.0674188333 4.0530028 1103.3949
+217453.0674189376 4.0530424 1103.3949
+217454.0674190419 4.0530028 1103.2765
+217455.0674191462 4.0530815 1103.3357
+217456.0674192505 4.0530815 1103.3357
+217457.0674193548 4.0530028 1103.2963
+217458.0674194591 4.0530424 1103.2172
+217459.0674195634 4.0531211 1103.3357
+217460.0674196677 4.0531211 1103.3752
+217461.067419772 4.0531602 1103.3752
+217462.0674198763 4.0531998 1103.3555
+217463.0674199807 4.0531211 1103.3357
+217464.067420085 4.0531211 1103.3357
+217465.0674201893 4.0533571 1103.3752
+217466.0674202936 4.053318 1103.4344
+217467.0674203979 4.0531602 1103.4344
+217468.0674205022 4.053318 1103.3555
+217469.0674206065 4.0532393 1103.3752
+217470.0674207108 4.0532784 1103.316
+217471.0674208151 4.0533571 1103.3357
+217472.0674209194 4.0533571 1103.3357
+217473.0674210237 4.0533571 1103.4344
+217474.067421128 4.0533571 1103.3555
+217475.0674212324 4.0533571 1103.3949
+217476.0674213367 4.053318 1103.3357
+217477.067421441 4.053318 1103.3555
+217478.0674215453 4.0533967 1103.3357
+217479.0674216496 4.0534358 1103.316
+217480.0674217539 4.0534754 1103.3357
+217481.0674218582 4.0532784 1103.3357
+217482.0674219625 4.0533967 1103.4542
+217483.0674220668 4.0536723 1103.3949
+217484.0674221711 4.053515 1103.3949
+217485.0674222754 4.0533571 1103.4147
+217486.0674223797 4.0534754 1103.3752
+217487.067422484 4.0535541 1103.3949
+217488.0674225884 4.0535936 1103.3752
+217489.0674226927 4.0535936 1103.3357
+217490.067422797 4.0534754 1103.3949
+217491.0674229013 4.0535936 1103.3949
+217492.0674230056 4.0535936 1103.3555
+217493.0674231099 4.0536327 1103.4344
+217494.0674232142 4.0535936 1103.474
+217495.0674233185 4.0535541 1103.3357
+217496.0674234228 4.0534754 1103.3555
+217497.0674235271 4.0536723 1103.3357
+217498.0674236314 4.0536327 1103.3752
+217499.0674237357 4.0537114 1103.2963
+217500.0674238401 4.0537114 1103.3949
+217501.0674239444 4.053751 1103.316
+217502.0674240487 4.0537114 1103.2567
+217503.067424153 4.0537901 1103.3949
+217504.0674242573 4.053751 1103.3555
+217505.0674243616 4.0537114 1103.2963
+217506.0674244659 4.0537114 1103.3555
+217507.0674245702 4.053751 1103.4147
+217508.0674246745 4.053751 1103.3949
+217509.0674247788 4.0537901 1103.3949
+217510.0674248831 4.0537901 1103.2765
+217511.0674249874 4.0537901 1103.3555
+217512.0674250918 4.0538692 1103.4147
+217513.0674251961 4.053751 1103.2963
+217514.0674253004 4.0539479 1103.3357
+217515.0674254047 4.0539083 1103.3555
+217516.067425509 4.0539479 1103.2963
+217517.0674256133 4.0538692 1103.3357
+217518.0674257176 4.0539479 1103.2963
+217519.0674258219 4.0539083 1103.3555
+217520.0674259262 4.0539479 1103.4344
+217521.0674260305 4.053987 1103.3555
+217522.0674261348 4.0540266 1103.3555
+217523.0674262391 4.0540657 1103.3357
+217524.0674263434 4.053987 1103.3555
+217525.0674264478 4.0540266 1103.3949
+217526.0674265521 4.053987 1103.3357
+217527.0674266564 4.0541053 1103.4147
+217528.0674267607 4.054184 1103.3555
+217529.067426865 4.0540657 1103.4147
+217530.0674269693 4.054184 1103.3949
+217531.0674270736 4.0541449 1103.316
+217532.0674271779 4.0540657 1103.3555
+217533.0674272822 4.0541053 1103.3357
+217534.0674273865 4.0540657 1103.4147
+217535.0674274908 4.0541053 1103.3949
+217536.0674275951 4.0542626 1103.3357
+217537.0674276995 4.0542235 1103.316
+217538.0674278038 4.0543022 1103.3752
+217539.0674279081 4.0543022 1103.3555
+217540.0674280124 4.0543022 1103.3752
+217541.0674281167 4.054184 1103.3752
+217542.067428221 4.0543022 1103.316
+217543.0674283253 4.0542626 1103.3357
+217544.0674284296 4.0543022 1103.3555
+217545.0674285339 4.0543022 1103.3555
+217546.0674286382 4.0543022 1103.3752
+217547.0674287425 4.0543413 1103.3949
+217548.0674288468 4.0543413 1103.2963
+217549.0674289512 4.05442 1103.4147
+217550.0674290555 4.05442 1103.3357
+217551.0674291598 4.05442 1103.4147
+217552.0674292641 4.0543809 1103.3357
+217553.0674293684 4.05442 1103.3555
+217554.0674294727 4.0544596 1103.3555
+217555.067429577 4.0543809 1103.3357
+217556.0674296813 4.0544596 1103.316
+217557.0674297856 4.0544991 1103.3555
+217558.0674298899 4.0544991 1103.3357
+217559.0674299942 4.0543809 1103.3357
+217560.0674300985 4.0545778 1103.4147
+217561.0674302028 4.0545382 1103.316
+217562.0674303072 4.0544596 1103.316
+217563.0674304115 4.0544991 1103.3752
+217564.0674305158 4.0545382 1103.3357
+217565.0674306201 4.0547748 1103.3357
+217566.0674307244 4.0546169 1103.3357
+217567.0674308287 4.0546169 1103.3357
+217568.067430933 4.0546169 1103.3752
+217569.0674310373 4.0546169 1103.3949
+217570.0674311416 4.0546565 1103.4147
+217571.0674312459 4.0548139 1103.2963
+217572.0674313502 4.0547352 1103.4542
+217573.0674314545 4.0547352 1103.3555
+217574.0674315589 4.0546956 1103.316
+217575.0674316632 4.0547352 1103.3555
+217576.0674317675 4.0547352 1103.4147
+217577.0674318718 4.0546956 1103.4147
+217578.0674319761 4.0548139 1103.3357
+217579.0674320804 4.0548534 1103.3949
+217580.0674321847 4.0548534 1103.3357
+217581.067432289 4.0548139 1103.2963
+217582.0674323933 4.0547748 1103.3357
+217583.0674324976 4.0548925 1103.2963
+217584.0674326019 4.0550108 1103.4147
+217585.0674327062 4.0549321 1103.3357
+217586.0674328106 4.0549321 1103.4147
+217587.0674329149 4.0548534 1103.3752
+217588.0674330192 4.0549321 1103.316
+217589.0674331235 4.0549321 1103.2765
+217590.0674332278 4.0550108 1103.2567
+217591.0674333321 4.0550504 1103.3949
+217592.0674334364 4.0549712 1103.3949
+217593.0674335407 4.0549712 1103.3555
+217594.067433645 4.0549321 1103.2765
+217595.0674337493 4.0550504 1103.4344
+217596.0674338536 4.0549712 1103.3752
+217597.0674339579 4.0550108 1103.2963
+217598.0674340623 4.0550108 1103.3555
+217599.0674341666 4.0550895 1103.2567
+217600.0674342709 4.0550504 1103.3555
+217601.0674343752 4.0550504 1103.3949
+217602.0674344795 4.0550504 1103.3949
+217603.0674345838 4.0552077 1103.2172
+217604.0674346881 4.0551682 1103.4147
+217605.0674347924 4.0552077 1103.316
+217606.0674348967 4.0551682 1103.3752
+217607.067435001 4.0552077 1103.3555
+217608.0674351053 4.0553255 1103.3555
+217609.0674352096 4.0553255 1103.3949
+217610.0674353139 4.0552077 1103.3752
+217611.0674354183 4.0552468 1103.4344
+217612.0674355226 4.0552864 1103.2765
+217613.0674356269 4.0552468 1103.3949
+217614.0674357312 4.0553651 1103.2963
+217615.0674358355 4.0552864 1103.3357
+217616.0674359398 4.0552864 1103.2963
+217617.0674360441 4.0552864 1103.3357
+217618.0674361484 4.0552864 1103.3555
+217619.0674362527 4.0553651 1103.3752
+217620.067436357 4.0554438 1103.3555
+217621.0674364613 4.0554833 1103.3752
+217622.0674365656 4.0553651 1103.3555
+217623.06743667 4.0555224 1103.4147
+217624.0674367743 4.0555224 1103.2765
+217625.0674368786 4.0554833 1103.2963
+217626.0674369829 4.0555224 1103.3949
+217627.0674370872 4.0554047 1103.474
+217628.0674371915 4.0554833 1103.3555
+217629.0674372958 4.055562 1103.2963
+217630.0674374001 4.0554833 1103.2567
+217631.0674375044 4.0555224 1103.3357
+217632.0674376087 4.0556407 1103.3357
+217633.067437713 4.0556011 1103.2963
+217634.0674378173 4.0554833 1103.3752
+217635.0674379217 4.0555224 1103.3752
+217636.067438026 4.0556407 1103.4147
+217637.0674381303 4.0556407 1103.2765
+217638.0674382346 4.0556407 1103.3555
+217639.0674383389 4.0556803 1103.3357
+217640.0674384432 4.0556803 1103.2963
+217641.0674385475 4.0557194 1103.4147
+217642.0674386518 4.055562 1103.3555
+217643.0674387561 4.055759 1103.4147
+217644.0674388604 4.0557194 1103.4147
+217645.0674389647 4.0556803 1103.3949
+217646.067439069 4.0558376 1103.3357
+217647.0674391733 4.055759 1103.3357
+217648.0674392777 4.055759 1103.4147
+217649.067439382 4.0557194 1103.316
+217650.0674394863 4.0558767 1103.3752
+217651.0674395906 4.0558376 1103.4147
+217652.0674396949 4.0558376 1103.4147
+217653.0674397992 4.0558376 1103.316
+217654.0674399035 4.0558376 1103.3752
+217655.0674400078 4.055759 1103.3949
+217656.0674401121 4.0559163 1103.3752
+217657.0674402164 4.0559554 1103.4147
+217658.0674403207 4.0559554 1103.316
+217659.067440425 4.0559554 1103.2963
+217660.0674405294 4.0559163 1103.3752
+217661.0674406337 4.0559163 1103.3357
+217662.067440738 4.0559163 1103.4344
+217663.0674408423 4.0559163 1103.3555
+217664.0674409466 4.0559163 1103.474
+217665.0674410509 4.055995 1103.3949
+217666.0674411552 4.055995 1103.2963
+217667.0674412595 4.055995 1103.316
+217668.0674413638 4.0560737 1103.2963
+217669.0674414681 4.0560737 1103.3752
+217670.0674415724 4.0560737 1103.4147
+217671.0674416767 4.0561132 1103.3949
+217672.0674417811 4.0560737 1103.2765
+217673.0674418854 4.0561919 1103.4344
+217674.0674419897 4.0561919 1103.316
+217675.067442094 4.0561523 1103.3357
+217676.0674421983 4.056231 1103.316
+217677.0674423026 4.0561919 1103.3357
+217678.0674424069 4.0561132 1103.2369
+217679.0674425112 4.0562706 1103.3949
+217680.0674426155 4.0561919 1103.3949
+217681.0674427198 4.0561523 1103.2765
+217682.0674428241 4.0563493 1103.4147
+217683.0674429284 4.0561919 1103.3752
+217684.0674430327 4.0562706 1103.4147
+217685.0674431371 4.0561919 1103.3949
+217686.0674432414 4.056231 1103.3357
+217687.0674433457 4.0563102 1103.316
+217688.06744345 4.0563102 1103.316
+217689.0674435543 4.0563889 1103.316
+217690.0674436586 4.0563493 1103.4147
+217691.0674437629 4.0563889 1103.316
+217692.0674438672 4.0565066 1103.3752
+217693.0674439715 4.0563889 1103.4147
+217694.0674440758 4.0563493 1103.2765
+217695.0674441801 4.056428 1103.3357
+217696.0674442844 4.056428 1103.4147
+217697.0674443888 4.056428 1103.3949
+217698.0674444931 4.0563889 1103.3357
+217699.0674445974 4.0565858 1103.1975
+217700.0674447017 4.0565462 1103.3357
+217701.067444806 4.0565066 1103.3949
+217702.0674449103 4.0564675 1103.316
+217703.0674450146 4.0565066 1103.3357
+217704.0674451189 4.0565066 1103.3555
+217705.0674452232 4.0565858 1103.4147
+217706.0674453275 4.0565858 1103.3949
+217707.0674454318 4.0566249 1103.3949
+217708.0674455361 4.0565858 1103.316
+217709.0674456405 4.0565066 1103.3949
+217710.0674457448 4.0566249 1103.316
+217711.0674458491 4.0566645 1103.2765
+217712.0674459534 4.0566249 1103.3949
+217713.0674460577 4.0565462 1103.2963
+217714.067446162 4.0567036 1103.4344
+217715.0674462663 4.0567431 1103.316
+217716.0674463706 4.0567036 1103.3949
+217717.0674464749 4.0566645 1103.3357
+217718.0674465792 4.0567036 1103.4344
+217719.0674466835 4.0567036 1103.3555
+217720.0674467878 4.0567822 1103.4147
+217721.0674468922 4.0568218 1103.3357
+217722.0674469965 4.0567822 1103.3357
+217723.0674471008 4.0568218 1103.4147
+217724.0674472051 4.0568218 1103.316
+217725.0674473094 4.0567822 1103.4344
+217726.0674474137 4.0568218 1103.2963
+217727.067447518 4.0569401 1103.3555
+217728.0674476223 4.0568609 1103.3555
+217729.0674477266 4.0569401 1103.3949
+217730.0674478309 4.0569792 1103.316
+217731.0674479352 4.0568609 1103.3949
+217732.0674480395 4.0569401 1103.3357
+217733.0674481438 4.0570188 1103.3357
+217734.0674482482 4.0569005 1103.3555
+217735.0674483525 4.0569792 1103.2963
+217736.0674484568 4.0569792 1103.3949
+217737.0674485611 4.0569401 1103.3357
+217738.0674486654 4.0570974 1103.2765
+217739.0674487697 4.0571761 1103.3752
+217740.067448874 4.0569792 1103.2765
+217741.0674489783 4.0571761 1103.3949
+217742.0674490826 4.0570974 1103.3357
+217743.0674491869 4.0570974 1103.2172
+217744.0674492912 4.0570974 1103.3357
+217745.0674493955 4.0570579 1103.3949
+217746.0674494999 4.0572548 1103.3752
+217747.0674496042 4.0571761 1103.4147
+217748.0674497085 4.0571365 1103.3357
+217749.0674498128 4.0571365 1103.4542
+217750.0674499171 4.0571761 1103.3752
+217751.0674500214 4.0571761 1103.3949
+217752.0674501257 4.0572548 1103.3357
+217753.06745023 4.0573335 1103.3752
+217754.0674503343 4.0572157 1103.474
+217755.0674504386 4.0572157 1103.3752
+217756.0674505429 4.0572157 1103.3357
+217757.0674506472 4.0574121 1103.3555
+217758.0674507516 4.0571761 1103.3752
+217759.0674508559 4.057373 1103.3949
+217760.0674509602 4.0574121 1103.3752
+217761.0674510645 4.0574121 1103.4147
+217762.0674511688 4.057373 1103.3555
+217763.0674512731 4.0573335 1103.316
+217764.0674513774 4.0574121 1103.3752
+217765.0674514817 4.0572944 1103.316
+217766.067451586 4.057373 1103.3357
+217767.0674516903 4.0575304 1103.3949
+217768.0674517946 4.05757 1103.3752
+217769.0674518989 4.0574121 1103.3949
+217770.0674520032 4.0575304 1103.3752
+217771.0674521076 4.0574908 1103.3357
+217772.0674522119 4.0575304 1103.3949
+217773.0674523162 4.057373 1103.316
+217774.0674524205 4.0576487 1103.3555
+217775.0674525248 4.0576091 1103.4542
+217776.0674526291 4.0576091 1103.2963
+217777.0674527334 4.05757 1103.4344
+217778.0674528377 4.0575304 1103.316
+217779.067452942 4.0577273 1103.3357
+217780.0674530463 4.0576878 1103.3949
+217781.0674531506 4.0576487 1103.3752
+217782.0674532549 4.0576878 1103.3752
+217783.0674533593 4.0576487 1103.3752
+217784.0674534636 4.0576878 1103.4344
+217785.0674535679 4.0577664 1103.2765
+217786.0674536722 4.0576091 1103.3357
+217787.0674537765 4.0576878 1103.2963
+217788.0674538808 4.057806 1103.3949
+217789.0674539851 4.0577664 1103.316
+217790.0674540894 4.0577273 1103.2963
+217791.0674541937 4.057806 1103.4344
+217792.067454298 4.0578847 1103.3357
+217793.0674544023 4.0579243 1103.3949
+217794.0674545066 4.0578456 1103.3555
+217795.067454611 4.0578847 1103.3555
+217796.0674547153 4.0579243 1103.3357
+217797.0674548196 4.0578456 1103.3949
+217798.0674549239 4.057806 1103.3555
+217799.0674550282 4.0578456 1103.4147
+217800.0674551325 4.0579243 1103.2963
+217801.0674552368 4.0579243 1103.3357
+217802.0674553411 4.0580029 1103.3752
+217803.0674554454 4.0580029 1103.3357
+217804.0674555497 4.0578847 1103.3949
+217805.067455654 4.0580029 1103.2765
+217806.0674557583 4.0579634 1103.3752
+217807.0674558626 4.058042 1103.3752
+217808.067455967 4.0580816 1103.4147
+217809.0674560713 4.0580816 1103.2765
+217810.0674561756 4.0580029 1103.3357
+217811.0674562799 4.0580816 1103.2963
+217812.0674563842 4.0580816 1103.2963
+217813.0674564885 4.058042 1103.2765
+217814.0674565928 4.0580816 1103.4542
+217815.0674566971 4.0581603 1103.3949
+217816.0674568014 4.0581603 1103.316
+217817.0674569057 4.0581999 1103.2567
+217818.06745701 4.0581999 1103.3949
+217819.0674571143 4.0581999 1103.3555
+217820.0674572187 4.0581212 1103.3949
+217821.067457323 4.0581212 1103.3357
+217822.0674574273 4.0582786 1103.316
+217823.0674575316 4.0581999 1103.3357
+217824.0674576359 4.0583177 1103.316
+217825.0674577402 4.0583177 1103.3555
+217826.0674578445 4.0583177 1103.3752
+217827.0674579488 4.058239 1103.3949
+217828.0674580531 4.0582786 1103.4147
+217829.0674581574 4.058239 1103.316
+217830.0674582617 4.0584755 1103.3555
+217831.067458366 4.058239 1103.4542
+217832.0674584704 4.0582786 1103.3752
+217833.0674585747 4.0583572 1103.3949
+217834.067458679 4.0583963 1103.3752
+217835.0674587833 4.0584359 1103.2963
+217836.0674588876 4.0584755 1103.3752
+217837.0674589919 4.0583572 1103.3555
+217838.0674590962 4.0584755 1103.316
+217839.0674592005 4.0584359 1103.2963
+217840.0674593048 4.0584755 1103.3555
+217841.0674594091 4.0583963 1103.3357
+217842.0674595134 4.0584755 1103.3949
+217843.0674596177 4.0585542 1103.3752
+217844.0674597221 4.0585146 1103.2963
+217845.0674598264 4.0585542 1103.3555
+217846.0674599307 4.058672 1103.3357
+217847.067460035 4.0585146 1103.2765
+217848.0674601393 4.0586329 1103.3752
+217849.0674602436 4.0585542 1103.4344
+217850.0674603479 4.0585542 1103.3949
+217851.0674604522 4.0585933 1103.3357
+217852.0674605565 4.0585542 1103.316
+217853.0674606608 4.0587902 1103.3555
+217854.0674607651 4.0587902 1103.3752
+217855.0674608694 4.058672 1103.316
+217856.0674609737 4.0587115 1103.316
+217857.0674610781 4.0586329 1103.3752
+217858.0674611824 4.058672 1103.3752
+217859.0674612867 4.058672 1103.4344
+217860.067461391 4.0587902 1103.3949
+217861.0674614953 4.0587115 1103.3949
+217862.0674615996 4.0587902 1103.2963
+217863.0674617039 4.0588298 1103.3949
+217864.0674618082 4.0587902 1103.3949
+217865.0674619125 4.0587115 1103.3949
+217866.0674620168 4.0588298 1103.4147
+217867.0674621211 4.0588689 1103.3357
+217868.0674622254 4.0588689 1103.3949
+217869.0674623298 4.0588689 1103.316
+217870.0674624341 4.0589085 1103.3555
+217871.0674625384 4.0590262 1103.2765
+217872.0674626427 4.0588689 1103.3357
+217873.067462747 4.0589085 1103.3357
+217874.0674628513 4.0590262 1103.4147
+217875.0674629556 4.0589476 1103.3555
+217876.0674630599 4.0589476 1103.4344
+217877.0674631642 4.0589476 1103.3949
+217878.0674632685 4.0589871 1103.3752
+217879.0674633728 4.0589476 1103.3555
+217880.0674634771 4.0590262 1103.4344
+217881.0674635815 4.0590658 1103.2567
+217882.0674636858 4.0590658 1103.3555
+217883.0674637901 4.0591445 1103.3752
+217884.0674638944 4.0591054 1103.3357
+217885.0674639987 4.0589871 1103.316
+217886.067464103 4.0591445 1103.316
+217887.0674642073 4.0591445 1103.3357
+217888.0674643116 4.0591445 1103.3752
+217889.0674644159 4.0591841 1103.316
+217890.0674645202 4.0592232 1103.4147
+217891.0674646245 4.0591445 1103.4344
+217892.0674647288 4.0593019 1103.3357
+217893.0674648331 4.0592232 1103.4344
+217894.0674649375 4.0592232 1103.3752
+217895.0674650418 4.0592628 1103.4147
+217896.0674651461 4.0592232 1103.3949
+217897.0674652504 4.0593019 1103.4147
+217898.0674653547 4.0593414 1103.316
+217899.067465459 4.0593019 1103.3357
+217900.0674655633 4.0593019 1103.3949
+217901.0674656676 4.0594201 1103.3949
+217902.0674657719 4.059381 1103.4147
+217903.0674658762 4.059381 1103.2963
+217904.0674659805 4.0593019 1103.3555
+217905.0674660848 4.059381 1103.3949
+217906.0674661892 4.059381 1103.4344
+217907.0674662935 4.0594201 1103.3357
+217908.0674663978 4.0594201 1103.3555
+217909.0674665021 4.0594201 1103.3949
+217910.0674666064 4.0594597 1103.4147
+217911.0674667107 4.0594988 1103.3752
+217912.067466815 4.0594597 1103.3949
+217913.0674669193 4.0594201 1103.4147
+217914.0674670236 4.0594597 1103.3752
+217915.0674671279 4.0594988 1103.3555
+217916.0674672322 4.0595384 1103.3555
+217917.0674673365 4.0594988 1103.3555
+217918.0674674409 4.059617 1103.2963
+217919.0674675452 4.0595775 1103.3555
+217920.0674676495 4.059617 1103.3357
+217921.0674677538 4.0594988 1103.3555
+217922.0674678581 4.0594988 1103.4344
+217923.0674679624 4.059617 1103.316
+217924.0674680667 4.0596957 1103.3752
+217925.067468171 4.0597744 1103.3752
+217926.0674682753 4.0596561 1103.3357
+217927.0674683796 4.0596561 1103.3949
+217928.0674684839 4.059617 1103.3357
+217929.0674685882 4.0596561 1103.4344
+217930.0674686925 4.0597353 1103.3357
+217931.0674687969 4.0596957 1103.3555
+217932.0674689012 4.0598531 1103.3752
+217933.0674690055 4.0597744 1103.3752
+217934.0674691098 4.0597744 1103.3752
+217935.0674692141 4.0597744 1103.3555
+217936.0674693184 4.0598531 1103.4147
+217937.0674694227 4.0596957 1103.3949
+217938.067469527 4.0598927 1103.3752
+217939.0674696313 4.0599318 1103.3357
+217940.0674697356 4.0598531 1103.4542
+217941.0674698399 4.0599318 1103.2963
+217942.0674699442 4.0598531 1103.3555
+217943.0674700486 4.0598927 1103.3555
+217944.0674701529 4.0599713 1103.3752
+217945.0674702572 4.06005 1103.3752
+217946.0674703615 4.0599318 1103.3357
+217947.0674704658 4.0598531 1103.3555
+217948.0674705701 4.0599318 1103.316
+217949.0674706744 4.0599713 1103.3555
+217950.0674707787 4.0598927 1103.3357
+217951.067470883 4.0600896 1103.2172
+217952.0674709873 4.0599318 1103.3357
+217953.0674710916 4.0599713 1103.3949
+217954.0674711959 4.0601287 1103.4147
+217955.0674713003 4.06005 1103.3555
+217956.0674714046 4.0600896 1103.3555
+217957.0674715089 4.0601287 1103.3752
+217958.0674716132 4.06005 1103.3357
+217959.0674717175 4.06005 1103.3752
+217960.0674718218 4.0600896 1103.3752
+217961.0674719261 4.0601287 1103.316
+217962.0674720304 4.0601287 1103.2963
+217963.0674721347 4.0601683 1103.3752
+217964.067472239 4.0601683 1103.3357
+217965.0674723433 4.0600896 1103.4147
+217966.0674724476 4.0600109 1103.4344
+217967.0674725519 4.0602074 1103.4147
+217968.0674726563 4.0601683 1103.4147
+217969.0674727606 4.0602865 1103.4147
+217970.0674728649 4.0602469 1103.3949
+217971.0674729692 4.0602865 1103.3555
+217972.0674730735 4.0602865 1103.3555
+217973.0674731778 4.0602469 1103.3949
+217974.0674732821 4.0603652 1103.2963
+217975.0674733864 4.0602865 1103.3949
+217976.0674734907 4.0604043 1103.316
+217977.067473595 4.0603652 1103.4542
+217978.0674736993 4.060483 1103.3949
+217979.0674738036 4.0604439 1103.3752
+217980.067473908 4.0604439 1103.316
+217981.0674740123 4.0604439 1103.3555
+217982.0674741166 4.0603652 1103.4147
+217983.0674742209 4.0605226 1103.3357
+217984.0674743252 4.060483 1103.316
+217985.0674744295 4.0604043 1103.3357
+217986.0674745338 4.060483 1103.316
+217987.0674746381 4.060483 1103.2567
+217988.0674747424 4.0605226 1103.3357
+217989.0674748467 4.0605226 1103.4147
+217990.067474951 4.0605226 1103.4344
+217991.0674750553 4.0606799 1103.3555
+217992.0674751597 4.0605617 1103.3752
+217993.067475264 4.0605617 1103.3752
+217994.0674753683 4.0605226 1103.4542
+217995.0674754726 4.0606408 1103.3357
+217996.0674755769 4.0605617 1103.316
+217997.0674756812 4.0606012 1103.3555
+217998.0674757855 4.0606799 1103.3949
+217999.0674758898 4.0606408 1103.3555
+218000.0674759941 4.0606799 1103.4542
+218001.0674760984 4.0606799 1103.3357
+218002.0674762027 4.0607982 1103.3357
+218003.067476307 4.0607982 1103.3357
+218004.0674764114 4.0607195 1103.2567
+218005.0674765157 4.0608373 1103.3555
+218006.06747662 4.0606799 1103.3752
+218007.0674767243 4.0607586 1103.3752
+218008.0674768286 4.0607195 1103.3555
+218009.0674769329 4.0608768 1103.3752
+218010.0674770372 4.0608768 1103.3357
+218011.0674771415 4.0608768 1103.3752
+218012.0674772458 4.0608768 1103.3752
+218013.0674773501 4.0608373 1103.3555
+218014.0674774544 4.0608768 1103.3357
+218015.0674775587 4.0608768 1103.3555
+218016.067477663 4.0608768 1103.3949
+218017.0674777674 4.0609555 1103.3555
+218018.0674778717 4.0609164 1103.3752
+218019.067477976 4.0609164 1103.4147
+218020.0674780803 4.0608768 1103.3555
+218021.0674781846 4.0609951 1103.3357
+218022.0674782889 4.0610342 1103.3357
+218023.0674783932 4.0610342 1103.4147
+218024.0674784975 4.0610738 1103.4344
+218025.0674786018 4.0610342 1103.3555
+218026.0674787061 4.0610738 1103.2963
+218027.0674788104 4.0610342 1103.316
+218028.0674789147 4.0610738 1103.3555
+218029.0674790191 4.0610738 1103.3555
+218030.0674791234 4.0611916 1103.316
+218031.0674792277 4.0612311 1103.4147
+218032.067479332 4.0611129 1103.3555
+218033.0674794363 4.0611916 1103.3949
+218034.0674795406 4.0611916 1103.3555
+218035.0674796449 4.0611916 1103.3357
+218036.0674797492 4.0611525 1103.3555
+218037.0674798535 4.0612311 1103.3752
+218038.0674799578 4.0612311 1103.3357
+218039.0674800621 4.0611916 1103.4542
+218040.0674801664 4.0612311 1103.3555
+218041.0674802708 4.0613098 1103.3555
+218042.0674803751 4.0611916 1103.3357
+218043.0674804794 4.0612311 1103.3555
+218044.0674805837 4.0613494 1103.2963
+218045.067480688 4.0613098 1103.3752
+218046.0674807923 4.0614281 1103.3357
+218047.0674808966 4.0613885 1103.2963
+218048.0674810009 4.0613494 1103.3555
+218049.0674811052 4.0613098 1103.3555
+218050.0674812095 4.0614672 1103.3555
+218051.0674813138 4.0613885 1103.4147
+218052.0674814181 4.0614672 1103.4147
+218053.0674815224 4.0614672 1103.3752
+218054.0674816268 4.0614281 1103.2963
+218055.0674817311 4.0615067 1103.4147
+218056.0674818354 4.0615067 1103.3357
+218057.0674819397 4.0615067 1103.3949
+218058.067482044 4.0615067 1103.3949
+218059.0674821483 4.0615463 1103.4147
+218060.0674822526 4.0614672 1103.4344
+218061.0674823569 4.0614672 1103.3949
+218062.0674824612 4.0615463 1103.2963
+218063.0674825655 4.0615463 1103.2765
+218064.0674826698 4.0615463 1103.3357
+218065.0674827741 4.061625 1103.3752
+218066.0674828785 4.0616641 1103.4344
+218067.0674829828 4.0615854 1103.3752
+218068.0674830871 4.0615854 1103.3752
+218069.0674831914 4.0615854 1103.3555
+218070.0674832957 4.0616641 1103.3555
+218071.0674834 4.0617428 1103.316
+218072.0674835043 4.0617428 1103.2765
+218073.0674836086 4.061625 1103.2963
+218074.0674837129 4.0617037 1103.3949
+218075.0674838172 4.0618219 1103.4344
+218076.0674839215 4.0617428 1103.3357
+218077.0674840258 4.0618219 1103.3555
+218078.0674841302 4.0618219 1103.3949
+218079.0674842345 4.0617428 1103.3555
+218080.0674843388 4.0617428 1103.3357
+218081.0674844431 4.0617824 1103.3357
+218082.0674845474 4.0617037 1103.3949
+218083.0674846517 4.061861 1103.3752
+218084.067484756 4.0618219 1103.316
+218085.0674848603 4.0618219 1103.3752
+218086.0674849646 4.061861 1103.4344
+218087.0674850689 4.0619397 1103.2963
+218088.0674851732 4.061861 1103.3752
+218089.0674852775 4.061861 1103.3357
+218090.0674853818 4.0619006 1103.3357
+218091.0674854862 4.0619397 1103.2963
+218092.0674855905 4.0619793 1103.3357
+218093.0674856948 4.0620184 1103.3357
+218094.0674857991 4.0620184 1103.3752
+218095.0674859034 4.0620184 1103.3752
+218096.0674860077 4.062058 1103.3949
+218097.067486112 4.0620184 1103.3555
+218098.0674862163 4.062058 1103.3555
+218099.0674863206 4.0620184 1103.3555
+218100.0674864249 4.062058 1103.3752
+218101.0674865292 4.0619006 1103.3949
+218102.0674866335 4.0620184 1103.2963
+218103.0674867379 4.0620184 1103.2963
+218104.0674868422 4.0622549 1103.2963
+218105.0674869465 4.0621367 1103.316
+218106.0674870508 4.062058 1103.3357
+218107.0674871551 4.0620971 1103.316
+218108.0674872594 4.0621762 1103.2963
+218109.0674873637 4.0622153 1103.3949
+218110.067487468 4.0622549 1103.3357
+218111.0674875723 4.0622549 1103.3555
+218112.0674876766 4.0621762 1103.4147
+218113.0674877809 4.0622153 1103.3752
+218114.0674878852 4.0623336 1103.3949
+218115.0674879896 4.062294 1103.3752
+218116.0674880939 4.0622549 1103.4147
+218117.0674881982 4.062294 1103.3555
+218118.0674883025 4.0624123 1103.3752
+218119.0674884068 4.0623727 1103.3752
+218120.0674885111 4.0623336 1103.3949
+218121.0674886154 4.0624123 1103.3752
+218122.0674887197 4.0623727 1103.4147
+218123.067488824 4.0623727 1103.2765
+218124.0674889283 4.0623336 1103.3555
+218125.0674890326 4.0623336 1103.474
+218126.0674891369 4.0624123 1103.4147
+218127.0674892413 4.0624123 1103.3949
+218128.0674893456 4.0624123 1103.3357
+218129.0674894499 4.0625305 1103.316
+218130.0674895542 4.0624909 1103.4344
+218131.0674896585 4.0624123 1103.3752
+218132.0674897628 4.0625305 1103.316
+218133.0674898671 4.0624909 1103.3555
+218134.0674899714 4.0624909 1103.3752
+218135.0674900757 4.0626092 1103.4542
+218136.06749018 4.0625305 1103.316
+218137.0674902843 4.0625305 1103.2765
+218138.0674903886 4.0626483 1103.3357
+218139.0674904929 4.0624909 1103.3555
+218140.0674905973 4.0626879 1103.3357
+218141.0674907016 4.0624909 1103.2765
+218142.0674908059 4.0626483 1103.316
+218143.0674909102 4.0626879 1103.3555
+218144.0674910145 4.0626092 1103.316
+218145.0674911188 4.0626483 1103.2963
+218146.0674912231 4.062727 1103.3555
+218147.0674913274 4.0627666 1103.3752
+218148.0674914317 4.0626879 1103.2963
+218149.067491536 4.0627666 1103.3752
+218150.0674916403 4.0626483 1103.3555
+218151.0674917446 4.0628452 1103.3357
+218152.067491849 4.062727 1103.3752
+218153.0674919533 4.0627666 1103.4344
+218154.0674920576 4.0628061 1103.3357
+218155.0674921619 4.0628848 1103.3357
+218156.0674922662 4.0628061 1103.4147
+218157.0674923705 4.0627666 1103.3555
+218158.0674924748 4.0628061 1103.316
+218159.0674925791 4.0628848 1103.4147
+218160.0674926834 4.0629635 1103.3752
+218161.0674927877 4.0628848 1103.2963
+218162.067492892 4.0629239 1103.4542
+218163.0674929963 4.0628848 1103.2369
+218164.0674931007 4.0628452 1103.3949
+218165.067493205 4.0629239 1103.316
+218166.0674933093 4.0629239 1103.3949
+218167.0674934136 4.0628848 1103.3555
+218168.0674935179 4.0630026 1103.3555
+218169.0674936222 4.0629635 1103.2567
+218170.0674937265 4.0629239 1103.4147
+218171.0674938308 4.0630817 1103.4147
+218172.0674939351 4.0630422 1103.3357
+218173.0674940394 4.0630422 1103.3752
+218174.0674941437 4.0631604 1103.3949
+218175.067494248 4.0631208 1103.3555
+218176.0674943523 4.0630422 1103.4147
+218177.0674944567 4.0630817 1103.3949
+218178.067494561 4.0630422 1103.3949
+218179.0674946653 4.0630817 1103.3752
+218180.0674947696 4.0630817 1103.3949
+218181.0674948739 4.0630817 1103.4147
+218182.0674949782 4.0632391 1103.3752
+218183.0674950825 4.0632782 1103.3752
+218184.0674951868 4.0631995 1103.3555
+218185.0674952911 4.0631995 1103.2567
+218186.0674953954 4.0631604 1103.3949
+218187.0674954997 4.0632782 1103.3752
+218188.067495604 4.0631995 1103.2963
+218189.0674957084 4.0633569 1103.4344
+218190.0674958127 4.0632391 1103.3752
+218191.067495917 4.0633965 1103.2963
+218192.0674960213 4.0633569 1103.3949
+218193.0674961256 4.0632391 1103.2963
+218194.0674962299 4.0632391 1103.3949
+218195.0674963342 4.0633569 1103.3555
+218196.0674964385 4.0634751 1103.316
+218197.0674965428 4.063436 1103.4542
+218198.0674966471 4.0633965 1103.4147
+218199.0674967514 4.0633178 1103.316
+218200.0674968557 4.0633569 1103.2963
+218201.0674969601 4.0635147 1103.3555
+218202.0674970644 4.0635147 1103.316
+218203.0674971687 4.063436 1103.2963
+218204.067497273 4.0634751 1103.2963
+218205.0674973773 4.0633569 1103.3752
+218206.0674974816 4.0634751 1103.4147
+218207.0674975859 4.0635147 1103.3555
+218208.0674976902 4.0635934 1103.3752
+218209.0674977945 4.0635538 1103.316
+218210.0674978988 4.0635147 1103.3949
+218211.0674980031 4.0635934 1103.2963
+218212.0674981074 4.0635934 1103.4147
+218213.0674982117 4.0635538 1103.4147
+218214.0674983161 4.0635538 1103.2765
+218215.0674984204 4.0636721 1103.316
+218216.0674985247 4.0637116 1103.3949
+218217.067498629 4.0636721 1103.2369
+218218.0674987333 4.0635934 1103.3555
+218219.0674988376 4.0636325 1103.316
+218220.0674989419 4.0637903 1103.3357
+218221.0674990462 4.0637116 1103.3555
+218222.0674991505 4.0637116 1103.316
+218223.0674992548 4.0637116 1103.2963
+218224.0674993591 4.0637507 1103.2963
+218225.0674994634 4.0637507 1103.4344
+218226.0674995678 4.0637507 1103.3555
+218227.0674996721 4.063869 1103.3555
+218228.0674997764 4.0637116 1103.3555
+218229.0674998807 4.0637507 1103.3752
+218230.067499985 4.0637903 1103.3555
+218231.0675000893 4.0637507 1103.3555
+218232.0675001936 4.0637903 1103.3357
+218233.0675002979 4.0639477 1103.2765
+218234.0675004022 4.063869 1103.4147
+218235.0675005065 4.0638294 1103.4147
+218236.0675006108 4.063869 1103.3555
+218237.0675007151 4.0640659 1103.3555
+218238.0675008195 4.0639873 1103.316
+218239.0675009238 4.063869 1103.3752
+218240.0675010281 4.0639081 1103.4344
+218241.0675011324 4.0639081 1103.3357
+218242.0675012367 4.0640659 1103.3555
+218243.067501341 4.0640659 1103.3357
+218244.0675014453 4.0639873 1103.3752
+218245.0675015496 4.0639873 1103.316
+218246.0675016539 4.0640264 1103.4147
+218247.0675017582 4.0639873 1103.316
+218248.0675018625 4.064105 1103.3949
+218249.0675019668 4.0640659 1103.3949
+218250.0675020712 4.064105 1103.4542
+218251.0675021755 4.0641446 1103.316
+218252.0675022798 4.0640659 1103.3752
+218253.0675023841 4.0640659 1103.3555
+218254.0675024884 4.0640659 1103.316
+218255.0675025927 4.0642624 1103.3752
+218256.067502697 4.0642624 1103.3357
+218257.0675028013 4.0642233 1103.4344
+218258.0675029056 4.064105 1103.4147
+218259.0675030099 4.0642233 1103.3752
+218260.0675031142 4.0642233 1103.3752
+218261.0675032185 4.0642233 1103.3555
+218262.0675033228 4.0642233 1103.3752
+218263.0675034272 4.0642233 1103.3555
+218264.0675035315 4.0643415 1103.3357
+218265.0675036358 4.0642233 1103.4147
+218266.0675037401 4.064302 1103.3949
+218267.0675038444 4.0643806 1103.4542
+218268.0675039487 4.0643415 1103.3555
+218269.067504053 4.0643806 1103.2567
+218270.0675041573 4.0643415 1103.3357
+218271.0675042616 4.0644202 1103.3555
+218272.0675043659 4.064302 1103.3949
+218273.0675044702 4.0644593 1103.4147
+218274.0675045745 4.0644593 1103.3949
+218275.0675046789 4.0643806 1103.3357
+218276.0675047832 4.0643806 1103.3555
+218277.0675048875 4.064538 1103.3949
+218278.0675049918 4.0644593 1103.3752
+218279.0675050961 4.0644989 1103.3949
+218280.0675052004 4.0644989 1103.3752
+218281.0675053047 4.0644202 1103.2765
+218282.067505409 4.0644989 1103.3949
+218283.0675055133 4.064538 1103.4542
+218284.0675056176 4.0646172 1103.3357
+218285.0675057219 4.0646172 1103.3949
+218286.0675058262 4.0644593 1103.3357
+218287.0675059306 4.0645776 1103.3949
+218288.0675060349 4.0646172 1103.3357
+218289.0675061392 4.0645776 1103.2963
+218290.0675062435 4.0646958 1103.4542
+218291.0675063478 4.0646563 1103.3555
+218292.0675064521 4.0646563 1103.4147
+218293.0675065564 4.0646172 1103.316
+218294.0675066607 4.0646563 1103.2963
+218295.067506765 4.0646958 1103.3949
+218296.0675068693 4.0645776 1103.3555
+218297.0675069736 4.0646563 1103.2963
+218298.0675070779 4.0647745 1103.474
+218299.0675071822 4.0646563 1103.3357
+218300.0675072866 4.0647349 1103.3555
+218301.0675073909 4.0646172 1103.2963
+218302.0675074952 4.0646958 1103.474
+218303.0675075995 4.0647745 1103.2369
+218304.0675077038 4.0648532 1103.316
+218305.0675078081 4.0647745 1103.3949
+218306.0675079124 4.0648532 1103.3752
+218307.0675080167 4.0647349 1103.3555
+218308.067508121 4.0648532 1103.4344
+218309.0675082253 4.0649319 1103.2963
+218310.0675083296 4.0648532 1103.3752
+218311.0675084339 4.0649714 1103.2963
+218312.0675085383 4.0649319 1103.2963
+218313.0675086426 4.0649714 1103.3555
+218314.0675087469 4.0648923 1103.3555
+218315.0675088512 4.0649319 1103.316
+218316.0675089555 4.0649714 1103.2765
+218317.0675090598 4.0650105 1103.3555
+218318.0675091641 4.0650501 1103.2567
+218319.0675092684 4.0650501 1103.4147
+218320.0675093727 4.0649714 1103.2963
+218321.067509477 4.0651679 1103.3555
+218322.0675095813 4.0651288 1103.4147
+218323.0675096856 4.0649319 1103.474
+218324.06750979 4.0650501 1103.4542
+218325.0675098943 4.0650501 1103.316
+218326.0675099986 4.0652075 1103.3752
+218327.0675101029 4.0651288 1103.3752
+218328.0675102072 4.0650892 1103.3752
+218329.0675103115 4.0651679 1103.3555
+218330.0675104158 4.0651288 1103.3357
+218331.0675105201 4.0652075 1103.3357
+218332.0675106244 4.0651288 1103.3357
+218333.0675107287 4.0652075 1103.4344
+218334.067510833 4.0652862 1103.3357
+218335.0675109373 4.0652862 1103.4147
+218336.0675110416 4.0651679 1103.3555
+218337.067511146 4.0653648 1103.316
+218338.0675112503 4.0652862 1103.4147
+218339.0675113546 4.0653257 1103.2765
+218340.0675114589 4.0653257 1103.3555
+218341.0675115632 4.0652471 1103.3357
+218342.0675116675 4.0654044 1103.3949
+218343.0675117718 4.0653648 1103.3555
+218344.0675118761 4.0654044 1103.4147
+218345.0675119804 4.0653257 1103.316
+218346.0675120847 4.0654435 1103.3555
+218347.067512189 4.0654044 1103.316
+218348.0675122933 4.0654435 1103.316
+218349.0675123977 4.0654435 1103.4147
+218350.067512502 4.0654435 1103.3752
+218351.0675126063 4.0654044 1103.3752
+218352.0675127106 4.0655618 1103.3357
+218353.0675128149 4.0654831 1103.3949
+218354.0675129192 4.0654831 1103.3752
+218355.0675130235 4.0655227 1103.316
+218356.0675131278 4.0654831 1103.3949
+218357.0675132321 4.0654831 1103.3357
+218358.0675133364 4.0654435 1103.2963
+218359.0675134407 4.0655618 1103.3949
+218360.067513545 4.0655227 1103.3357
+218361.0675136494 4.0655227 1103.3357
+218362.0675137537 4.0656404 1103.3555
+218363.067513858 4.0655227 1103.4542
+218364.0675139623 4.0656013 1103.4147
+218365.0675140666 4.0656404 1103.3555
+218366.0675141709 4.0656013 1103.3357
+218367.0675142752 4.06568 1103.2567
+218368.0675143795 4.06568 1103.3752
+218369.0675144838 4.0657587 1103.2963
+218370.0675145881 4.0657587 1103.3752
+218371.0675146924 4.0657191 1103.3752
+218372.0675147967 4.0657587 1103.3357
+218373.067514901 4.0657191 1103.3949
+218374.0675150054 4.0657191 1103.2765
+218375.0675151097 4.0657978 1103.3357
+218376.067515214 4.0657587 1103.3752
+218377.0675153183 4.0658374 1103.3357
+218378.0675154226 4.0657587 1103.2765
+218379.0675155269 4.0657587 1103.316
+218380.0675156312 4.0657587 1103.3752
+218381.0675157355 4.0657978 1103.3357
+218382.0675158398 4.0657978 1103.474
+218383.0675159441 4.065877 1103.3555
+218384.0675160484 4.065877 1103.3357
+218385.0675161527 4.0659161 1103.3949
+218386.0675162571 4.065877 1103.316
+218387.0675163614 4.065877 1103.3752
+218388.0675164657 4.0659161 1103.3949
+218389.06751657 4.0659947 1103.3357
+218390.0675166743 4.0658374 1103.3752
+218391.0675167786 4.0659947 1103.3752
+218392.0675168829 4.0660343 1103.316
+218393.0675169872 4.0659556 1103.2963
+218394.0675170915 4.0659947 1103.316
+218395.0675171958 4.0660343 1103.316
+218396.0675173001 4.0659947 1103.2765
+218397.0675174044 4.066113 1103.3949
+218398.0675175088 4.0660734 1103.2963
+218399.0675176131 4.066113 1103.3752
+218400.0675177174 4.0660734 1103.3949
+218401.0675178217 4.0661526 1103.3555
+218402.067517926 4.0661526 1103.3949
+218403.0675180303 4.0662313 1103.3555
+218404.0675181346 4.0660734 1103.4542
+218405.0675182389 4.066113 1103.3357
+218406.0675183432 4.0661526 1103.3357
+218407.0675184475 4.0662704 1103.3949
+218408.0675185518 4.0662704 1103.3752
+218409.0675186561 4.0661917 1103.2567
+218410.0675187605 4.0663099 1103.3949
+218411.0675188648 4.0662313 1103.2963
+218412.0675189691 4.0663099 1103.316
+218413.0675190734 4.0663099 1103.3357
+218414.0675191777 4.0661917 1103.316
+218415.067519282 4.0663099 1103.3357
+218416.0675193863 4.0662704 1103.3555
+218417.0675194906 4.0663099 1103.4542
+218418.0675195949 4.0663886 1103.474
+218419.0675196992 4.066349 1103.3357
+218420.0675198035 4.0664277 1103.3752
+218421.0675199078 4.0663886 1103.3752
+218422.0675200121 4.0664277 1103.2765
+218423.0675201165 4.0664277 1103.3752
+218424.0675202208 4.0664673 1103.4147
+218425.0675203251 4.0663886 1103.3357
+218426.0675204294 4.0665069 1103.4147
+218427.0675205337 4.0665069 1103.3752
+218428.067520638 4.0665069 1103.2963
+218429.0675207423 4.0663886 1103.3752
+218430.0675208466 4.0664277 1103.3949
+218431.0675209509 4.0664673 1103.4147
+218432.0675210552 4.0664277 1103.2963
+218433.0675211595 4.0664673 1103.2369
+218434.0675212638 4.066546 1103.316
+218435.0675213682 4.0665855 1103.3752
+218436.0675214725 4.0666642 1103.3949
+218437.0675215768 4.0664673 1103.3357
+218438.0675216811 4.0665069 1103.3752
+218439.0675217854 4.0666246 1103.3949
+218440.0675218897 4.0666246 1103.2963
+218441.067521994 4.0666642 1103.3555
+218442.0675220983 4.0666246 1103.3752
+218443.0675222026 4.0666642 1103.3949
+218444.0675223069 4.0667825 1103.4344
+218445.0675224112 4.0667033 1103.3555
+218446.0675225155 4.0667033 1103.3555
+218447.0675226199 4.0666642 1103.3752
+218448.0675227242 4.0669398 1103.4147
+218449.0675228285 4.0667033 1103.3555
+218450.0675229328 4.0667429 1103.3949
+218451.0675230371 4.0667429 1103.3752
+218452.0675231414 4.0668612 1103.3357
+218453.0675232457 4.0669003 1103.3949
+218454.06752335 4.0669398 1103.3752
+218455.0675234543 4.0667825 1103.4147
+218456.0675235586 4.0667825 1103.3555
+218457.0675236629 4.0668612 1103.4542
+218458.0675237672 4.0669398 1103.3949
+218459.0675238715 4.0667429 1103.3555
+218460.0675239759 4.0669003 1103.3555
+218461.0675240802 4.0668612 1103.3949
+218462.0675241845 4.0668216 1103.3357
+218463.0675242888 4.0669003 1103.4344
+218464.0675243931 4.0669003 1103.316
+218465.0675244974 4.0669789 1103.3752
+218466.0675246017 4.0669789 1103.3752
+218467.067524706 4.0669398 1103.2963
+218468.0675248103 4.0669789 1103.3752
+218469.0675249146 4.0669789 1103.3949
+218470.0675250189 4.0670185 1103.3949
+218471.0675251232 4.0671368 1103.4542
+218472.0675252276 4.0670185 1103.3357
+218473.0675253319 4.0669398 1103.3555
+218474.0675254362 4.0669398 1103.3555
+218475.0675255405 4.0671368 1103.3555
+218476.0675256448 4.0671368 1103.3752
+218477.0675257491 4.0670972 1103.3357
+218478.0675258534 4.0670576 1103.2963
+218479.0675259577 4.0671368 1103.3752
+218480.067526062 4.0672154 1103.3357
+218481.0675261663 4.0671368 1103.3752
+218482.0675262706 4.0672545 1103.316
+218483.0675263749 4.0672941 1103.3555
+218484.0675264793 4.0671759 1103.4147
+218485.0675265836 4.0672154 1103.3357
+218486.0675266879 4.0673332 1103.3949
+218487.0675267922 4.0672545 1103.3949
+218488.0675268965 4.0672941 1103.316
+218489.0675270008 4.0672941 1103.3555
+218490.0675271051 4.0673728 1103.3357
+218491.0675272094 4.0672941 1103.3752
+218492.0675273137 4.0674124 1103.2567
+218493.067527418 4.0672545 1103.2765
+218494.0675275223 4.0672545 1103.3752
+218495.0675276266 4.0673332 1103.3752
+218496.0675277309 4.0672941 1103.316
+218497.0675278353 4.0673728 1103.3949
+218498.0675279396 4.0674911 1103.3555
+218499.0675280439 4.0674124 1103.4147
+218500.0675281482 4.0674124 1103.3752
+218501.0675282525 4.0673728 1103.3555
+218502.0675283568 4.0674911 1103.2765
+218503.0675284611 4.0674911 1103.3357
+218504.0675285654 4.0673728 1103.4542
+218505.0675286697 4.0674515 1103.3949
+218506.067528774 4.0674911 1103.2765
+218507.0675288783 4.0674911 1103.2963
+218508.0675289826 4.0674911 1103.4344
+218509.067529087 4.0674911 1103.3752
+218510.0675291913 4.0675697 1103.2765
+218511.0675292956 4.0675697 1103.2567
+218512.0675293999 4.0676484 1103.3357
+218513.0675295042 4.0675697 1103.3752
+218514.0675296085 4.0676484 1103.474
+218515.0675297128 4.0676088 1103.3949
+218516.0675298171 4.0676484 1103.316
+218517.0675299214 4.0675697 1103.2369
+218518.0675300257 4.0676088 1103.2963
+218519.06753013 4.067688 1103.2567
+218520.0675302343 4.0678058 1103.3555
+218521.0675303387 4.0677271 1103.3949
+218522.067530443 4.0676484 1103.3357
+218523.0675305473 4.0677271 1103.3555
+218524.0675306516 4.0677271 1103.3357
+218525.0675307559 4.0677667 1103.3949
+218526.0675308602 4.0677667 1103.3949
+218527.0675309645 4.0678058 1103.2963
+218528.0675310688 4.0678844 1103.4147
+218529.0675311731 4.0678844 1103.3752
+218530.0675312774 4.0679631 1103.3357
+218531.0675313817 4.0678844 1103.3949
+218532.067531486 4.0678453 1103.3555
+218533.0675315904 4.0678058 1103.3752
+218534.0675316947 4.067924 1103.316
+218535.067531799 4.0678453 1103.3555
+218536.0675319033 4.0678844 1103.3752
+218537.0675320076 4.0678453 1103.4147
+218538.0675321119 4.067924 1103.3752
+218539.0675322162 4.0680423 1103.4344
+218540.0675323205 4.0679631 1103.3949
+218541.0675324248 4.0680027 1103.3555
+218542.0675325291 4.0680027 1103.3357
+218543.0675326334 4.0680423 1103.3752
+218544.0675327377 4.067924 1103.3752
+218545.067532842 4.0680027 1103.4344
+218546.0675329464 4.0678453 1103.3949
+218547.0675330507 4.0680423 1103.4147
+218548.067533155 4.068121 1103.2765
+218549.0675332593 4.0680423 1103.4344
+218550.0675333636 4.0681601 1103.316
+218551.0675334679 4.068121 1103.3949
+218552.0675335722 4.0681996 1103.3357
+218553.0675336765 4.0680814 1103.316
+218554.0675337808 4.068121 1103.2963
+218555.0675338851 4.0682387 1103.2963
+218556.0675339894 4.0681996 1103.3949
+218557.0675340937 4.068357 1103.2963
+218558.0675341981 4.0681996 1103.3752
+218559.0675343024 4.0682783 1103.4147
+218560.0675344067 4.0681601 1103.3357
+218561.067534511 4.0681996 1103.4344
+218562.0675346153 4.0682387 1103.2963
+218563.0675347196 4.068357 1103.3555
+218564.0675348239 4.0684357 1103.3555
+218565.0675349282 4.0682387 1103.3357
+218566.0675350325 4.0683179 1103.316
+218567.0675351368 4.0682783 1103.4147
+218568.0675352411 4.0683179 1103.2963
+218569.0675353454 4.0683966 1103.3752
+218570.0675354498 4.0684357 1103.3357
+218571.0675355541 4.0684357 1103.316
+218572.0675356584 4.0684752 1103.316
+218573.0675357627 4.0684357 1103.3949
+218574.067535867 4.0683966 1103.316
+218575.0675359713 4.0684357 1103.3752
+218576.0675360756 4.0684357 1103.3752
+218577.0675361799 4.0684357 1103.474
+218578.0675362842 4.0685143 1103.3357
+218579.0675363885 4.0684752 1103.316
+218580.0675364928 4.0684357 1103.3752
+218581.0675365971 4.068593 1103.2172
+218582.0675367014 4.0685143 1103.4344
+218583.0675368058 4.068593 1103.316
+218584.0675369101 4.0684752 1103.2567
+218585.0675370144 4.0685539 1103.3949
+218586.0675371187 4.0685539 1103.2963
+218587.067537223 4.0685143 1103.3752
+218588.0675373273 4.068593 1103.3555
+218589.0675374316 4.0686326 1103.3357
+218590.0675375359 4.0686326 1103.4147
+218591.0675376402 4.0686326 1103.3752
+218592.0675377445 4.068593 1103.316
+218593.0675378488 4.0687113 1103.316
+218594.0675379531 4.0687113 1103.316
+218595.0675380575 4.0686722 1103.2567
+218596.0675381618 4.06879 1103.3949
+218597.0675382661 4.0687113 1103.3555
+218598.0675383704 4.0687113 1103.3555
+218599.0675384747 4.0686722 1103.3555
+218600.067538579 4.0687113 1103.2963
+218601.0675386833 4.06879 1103.3357
+218602.0675387876 4.0687509 1103.3752
+218603.0675388919 4.0687113 1103.3555
+218604.0675389962 4.0687509 1103.2963
+218605.0675391005 4.0687509 1103.3752
+218606.0675392048 4.0689082 1103.3949
+218607.0675393092 4.0687509 1103.3555
+218608.0675394135 4.06879 1103.3752
+218609.0675395178 4.0688686 1103.3555
+218610.0675396221 4.0689478 1103.2765
+218611.0675397264 4.0688686 1103.2765
+218612.0675398307 4.0688295 1103.3949
+218613.067539935 4.0689082 1103.3752
+218614.0675400393 4.0690265 1103.3752
+218615.0675401436 4.0688295 1103.2567
+218616.0675402479 4.0690656 1103.316
+218617.0675403522 4.0690265 1103.3357
+218618.0675404565 4.0690265 1103.3555
+218619.0675405608 4.0690656 1103.316
+218620.0675406652 4.0690656 1103.4344
+218621.0675407695 4.0690265 1103.3752
+218622.0675408738 4.0689478 1103.4344
+218623.0675409781 4.0690265 1103.5134
+218624.0675410824 4.0690656 1103.2963
+218625.0675411867 4.0690656 1103.316
+218626.067541291 4.0691442 1103.3752
+218627.0675413953 4.0690656 1103.3949
+218628.0675414996 4.0691051 1103.3555
+218629.0675416039 4.0691051 1103.4147
+218630.0675417082 4.0691442 1103.2765
+218631.0675418125 4.0691051 1103.316
+218632.0675419169 4.0691051 1103.3752
+218633.0675420212 4.0691838 1103.3555
+218634.0675421255 4.0691051 1103.3752
+218635.0675422298 4.0691838 1103.2963
+218636.0675423341 4.0691838 1103.3752
+218637.0675424384 4.0692234 1103.3949
+218638.0675425427 4.0693021 1103.4147
+218639.067542647 4.0691838 1103.3752
+218640.0675427513 4.0691442 1103.3555
+218641.0675428556 4.0693021 1103.3752
+218642.0675429599 4.0692234 1103.3555
+218643.0675430642 4.0693412 1103.4344
+218644.0675431686 4.0693412 1103.4147
+218645.0675432729 4.0693021 1103.3752
+218646.0675433772 4.0693412 1103.3555
+218647.0675434815 4.0693412 1103.2963
+218648.0675435858 4.0694199 1103.316
+218649.0675436901 4.0694594 1103.4344
+218650.0675437944 4.0694594 1103.3949
+218651.0675438987 4.0694594 1103.4344
+218652.067544003 4.0693412 1103.4147
+218653.0675441073 4.0693808 1103.3752
+218654.0675442116 4.0694594 1103.3555
+218655.0675443159 4.0694985 1103.2765
+218656.0675444203 4.0693808 1103.3555
+218657.0675445246 4.0694985 1103.3752
+218658.0675446289 4.0695381 1103.4147
+218659.0675447332 4.0695381 1103.2765
+218660.0675448375 4.0693808 1103.3752
+218661.0675449418 4.0694594 1103.3555
+218662.0675450461 4.0694985 1103.3752
+218663.0675451504 4.0695381 1103.3357
+218664.0675452547 4.0694985 1103.316
+218665.067545359 4.0695777 1103.4147
+218666.0675454633 4.0695381 1103.3357
+218667.0675455676 4.0696168 1103.3555
+218668.0675456719 4.0696168 1103.3949
+218669.0675457763 4.0696955 1103.4344
+218670.0675458806 4.0696955 1103.4344
+218671.0675459849 4.0696168 1103.3752
+218672.0675460892 4.0697351 1103.3555
+218673.0675461935 4.0696168 1103.3752
+218674.0675462978 4.0696955 1103.316
+218675.0675464021 4.0698137 1103.316
+218676.0675465064 4.0697351 1103.3555
+218677.0675466107 4.0697351 1103.3357
+218678.067546715 4.0697742 1103.3555
+218679.0675468193 4.0698137 1103.3357
+218680.0675469236 4.0697351 1103.316
+218681.067547028 4.0697742 1103.3949
+218682.0675471323 4.0697742 1103.3357
+218683.0675472366 4.0696955 1103.3555
+218684.0675473409 4.0698137 1103.3752
+218685.0675474452 4.0697742 1103.3949
+218686.0675475495 4.0698533 1103.316
+218687.0675476538 4.0698924 1103.3752
+218688.0675477581 4.0698533 1103.316
+218689.0675478624 4.0698137 1103.3949
+218690.0675479667 4.069932 1103.2765
+218691.067548071 4.069932 1103.474
+218692.0675481753 4.0698533 1103.3555
+218693.0675482797 4.069932 1103.3357
+218694.067548384 4.0698924 1103.3949
+218695.0675484883 4.069932 1103.3357
+218696.0675485926 4.0700107 1103.3752
+218697.0675486969 4.0700107 1103.316
+218698.0675488012 4.0700498 1103.316
+218699.0675489055 4.0699711 1103.3555
+218700.0675490098 4.0700893 1103.4542
+218701.0675491141 4.0700498 1103.3949
+218702.0675492184 4.0699711 1103.4542
+218703.0675493227 4.0700107 1103.3752
+218704.067549427 4.0700498 1103.474
+218705.0675495313 4.0702467 1103.4147
+218706.0675496357 4.0700893 1103.316
+218707.06754974 4.0700893 1103.3555
+218708.0675498443 4.0702076 1103.4147
+218709.0675499486 4.0700893 1103.3752
+218710.0675500529 4.0700893 1103.316
+218711.0675501572 4.0702076 1103.3752
+218712.0675502615 4.0702076 1103.4147
+218713.0675503658 4.0702863 1103.3949
+218714.0675504701 4.0702076 1103.3752
+218715.0675505744 4.0702467 1103.4147
+218716.0675506787 4.0702076 1103.3357
+218717.067550783 4.0702076 1103.3357
+218718.0675508874 4.070168 1103.316
+218719.0675509917 4.070365 1103.3949
+218720.067551096 4.0703254 1103.3752
+218721.0675512003 4.070365 1103.4147
+218722.0675513046 4.0704041 1103.316
+218723.0675514089 4.0702467 1103.3752
+218724.0675515132 4.0702863 1103.4344
+218725.0675516175 4.070365 1103.3555
+218726.0675517218 4.0702863 1103.3555
+218727.0675518261 4.0703254 1103.316
+218728.0675519304 4.070365 1103.3949
+218729.0675520347 4.0704832 1103.3555
+218730.0675521391 4.0702863 1103.3357
+218731.0675522434 4.0704436 1103.2963
+218732.0675523477 4.0705223 1103.3949
+218733.067552452 4.0705223 1103.3949
+218734.0675525563 4.0704832 1103.3752
+218735.0675526606 4.0704832 1103.4147
+218736.0675527649 4.0704436 1103.2567
+218737.0675528692 4.0705619 1103.4542
+218738.0675529735 4.0705223 1103.4344
+218739.0675530778 4.0704436 1103.3357
+218740.0675531821 4.070601 1103.3752
+218741.0675532864 4.0705223 1103.3555
+218742.0675533907 4.070601 1103.316
+218743.0675534951 4.0706406 1103.3752
+218744.0675535994 4.070601 1103.3752
+218745.0675537037 4.070601 1103.3555
+218746.067553808 4.0705619 1103.3949
+218747.0675539123 4.0706797 1103.3752
+218748.0675540166 4.0706406 1103.3752
+218749.0675541209 4.0706406 1103.316
+218750.0675542252 4.070601 1103.3357
+218751.0675543295 4.0706797 1103.316
+218752.0675544338 4.0707192 1103.3555
+218753.0675545381 4.0706797 1103.3752
+218754.0675546424 4.0707588 1103.3555
+218755.0675547468 4.0708375 1103.3357
+218756.0675548511 4.0707192 1103.4344
+218757.0675549554 4.0707588 1103.316
+218758.0675550597 4.0707979 1103.3555
+218759.067555164 4.0707979 1103.3357
+218760.0675552683 4.0707979 1103.3752
+218761.0675553726 4.0708766 1103.3949
+218762.0675554769 4.0708375 1103.3357
+218763.0675555812 4.0707979 1103.3555
+218764.0675556855 4.0709162 1103.2963
+218765.0675557898 4.0707588 1103.3752
+218766.0675558941 4.0708375 1103.3555
+218767.0675559985 4.0708766 1103.3752
+218768.0675561028 4.0709553 1103.3752
+218769.0675562071 4.0709553 1103.3949
+218770.0675563114 4.0708766 1103.5134
+218771.0675564157 4.0709553 1103.4344
+218772.06755652 4.0709949 1103.3949
+218773.0675566243 4.0709162 1103.2765
+218774.0675567286 4.071034 1103.3752
+218775.0675568329 4.0709949 1103.2765
+218776.0675569372 4.0711131 1103.3752
+218777.0675570415 4.0709949 1103.3752
+218778.0675571458 4.071034 1103.4147
+218779.0675572502 4.0710735 1103.2567
+218780.0675573545 4.0710735 1103.2567
+218781.0675574588 4.0710735 1103.3555
+218782.0675575631 4.0711918 1103.3752
+218783.0675576674 4.0710735 1103.2963
+218784.0675577717 4.0711522 1103.3357
+218785.067557876 4.0711131 1103.4542
+218786.0675579803 4.0711522 1103.2963
+218787.0675580846 4.0711522 1103.3357
+218788.0675581889 4.0711918 1103.3949
+218789.0675582932 4.0711522 1103.3357
+218790.0675583975 4.0711522 1103.3357
+218791.0675585018 4.0711131 1103.3357
+218792.0675586062 4.0711918 1103.3555
+218793.0675587105 4.0711522 1103.2765
+218794.0675588148 4.0712309 1103.316
+218795.0675589191 4.0712705 1103.3752
+218796.0675590234 4.0711918 1103.4344
+218797.0675591277 4.0712705 1103.3555
+218798.067559232 4.0711918 1103.4147
+218799.0675593363 4.0712705 1103.3357
+218800.0675594406 4.0713096 1103.3357
+218801.0675595449 4.0714278 1103.4147
+218802.0675596492 4.0713491 1103.4542
+218803.0675597535 4.0713491 1103.3752
+218804.0675598579 4.0713887 1103.3949
+218805.0675599622 4.0713887 1103.3752
+218806.0675600665 4.0713491 1103.3752
+218807.0675601708 4.0715065 1103.3357
+218808.0675602751 4.0714674 1103.3357
+218809.0675603794 4.0714674 1103.3949
+218810.0675604837 4.0715065 1103.316
+218811.067560588 4.0714674 1103.2567
+218812.0675606923 4.0715065 1103.4344
+218813.0675607966 4.0715065 1103.2963
+218814.0675609009 4.0715461 1103.4147
+218815.0675610052 4.0715065 1103.3555
+218816.0675611096 4.0715461 1103.3357
+218817.0675612139 4.0715461 1103.3357
+218818.0675613182 4.0715461 1103.3949
+218819.0675614225 4.0716248 1103.3752
+218820.0675615268 4.0715852 1103.3752
+218821.0675616311 4.0716639 1103.3555
+218822.0675617354 4.0716248 1103.2963
+218823.0675618397 4.0716248 1103.3949
+218824.067561944 4.0714674 1103.4147
+218825.0675620483 4.0716248 1103.3555
+218826.0675621526 4.0716248 1103.2765
+218827.0675622569 4.071743 1103.3949
+218828.0675623612 4.0716639 1103.3949
+218829.0675624656 4.071743 1103.2963
+218830.0675625699 4.0718217 1103.3752
+218831.0675626742 4.0717034 1103.4147
+218832.0675627785 4.071743 1103.3555
+218833.0675628828 4.071743 1103.4542
+218834.0675629871 4.0718608 1103.2963
+218835.0675630914 4.0718217 1103.4344
+218836.0675631957 4.0717034 1103.2963
+218837.0675633 4.0718608 1103.3357
+218838.0675634043 4.071743 1103.316
+218839.0675635086 4.0717821 1103.3752
+218840.0675636129 4.0718608 1103.3555
+218841.0675637173 4.0718217 1103.4147
+218842.0675638216 4.0718217 1103.3752
+218843.0675639259 4.0718608 1103.2963
+218844.0675640302 4.0719004 1103.3555
+218845.0675641345 4.0719395 1103.3357
+218846.0675642388 4.0719004 1103.2369
+218847.0675643431 4.0719004 1103.3752
+218848.0675644474 4.0719395 1103.3357
+218849.0675645517 4.0719004 1103.3752
+218850.067564656 4.071979 1103.3752
+218851.0675647603 4.0720186 1103.3949
+218852.0675648646 4.0719395 1103.316
+218853.067564969 4.0720577 1103.3357
+218854.0675650733 4.0720186 1103.3555
+218855.0675651776 4.0720186 1103.2765
+218856.0675652819 4.0720577 1103.3752
+218857.0675653862 4.071979 1103.2567
+218858.0675654905 4.0720973 1103.3357
+218859.0675655948 4.0720186 1103.316
+218860.0675656991 4.072176 1103.316
+218861.0675658034 4.0720973 1103.3949
+218862.0675659077 4.0722547 1103.3949
+218863.067566012 4.0721364 1103.316
+218864.0675661163 4.072176 1103.2567
+218865.0675662206 4.0722151 1103.3555
+218866.067566325 4.0722547 1103.4542
+218867.0675664293 4.072176 1103.316
+218868.0675665336 4.0722151 1103.316
+218869.0675666379 4.0722938 1103.3949
+218870.0675667422 4.072176 1103.3555
+218871.0675668465 4.0722938 1103.3949
+218872.0675669508 4.0722547 1103.2765
+218873.0675670551 4.0723333 1103.4147
+218874.0675671594 4.0723729 1103.3555
+218875.0675672637 4.0722547 1103.3949
+218876.067567368 4.0723333 1103.3357
+218877.0675674723 4.072412 1103.4344
+218878.0675675767 4.0722547 1103.4147
+218879.067567681 4.0723333 1103.3752
+218880.0675677853 4.0722938 1103.3949
+218881.0675678896 4.0723333 1103.3752
+218882.0675679939 4.072412 1103.3949
+218883.0675680982 4.0722938 1103.2765
+218884.0675682025 4.0723729 1103.3357
+218885.0675683068 4.0723333 1103.2765
+218886.0675684111 4.0723729 1103.474
+218887.0675685154 4.0724516 1103.3949
+218888.0675686197 4.0725303 1103.4147
+218889.067568724 4.0724516 1103.3555
+218890.0675688284 4.0723729 1103.3555
+218891.0675689327 4.0724907 1103.3949
+218892.067569037 4.0725694 1103.2765
+218893.0675691413 4.0725303 1103.2963
+218894.0675692456 4.0724907 1103.3949
+218895.0675693499 4.0724516 1103.316
+218896.0675694542 4.0725694 1103.2765
+218897.0675695585 4.0726089 1103.316
+218898.0675696628 4.0725694 1103.2963
+218899.0675697671 4.0725694 1103.2765
+218900.0675698714 4.0725303 1103.3555
+218901.0675699757 4.0727663 1103.3752
+218902.06757008 4.0726089 1103.2765
+218903.0675701844 4.0726485 1103.3752
+218904.0675702887 4.0726485 1103.3357
+218905.067570393 4.0727272 1103.3357
+218906.0675704973 4.0727272 1103.3555
+218907.0675706016 4.0728059 1103.2963
+218908.0675707059 4.0728059 1103.3555
+218909.0675708102 4.0728059 1103.2963
+218910.0675709145 4.0727663 1103.3752
+218911.0675710188 4.0727272 1103.316
+218912.0675711231 4.0727663 1103.4147
+218913.0675712274 4.0728059 1103.3752
+218914.0675713317 4.0727272 1103.3752
+218915.0675714361 4.0728059 1103.3357
+218916.0675715404 4.072845 1103.3555
+218917.0675716447 4.072845 1103.3949
+218918.067571749 4.0727663 1103.3752
+218919.0675718533 4.0728846 1103.4344
+218920.0675719576 4.0729241 1103.3555
+218921.0675720619 4.072845 1103.4147
+218922.0675721662 4.0729632 1103.3949
+218923.0675722705 4.0728846 1103.3555
+218924.0675723748 4.0729632 1103.3752
+218925.0675724791 4.0728846 1103.4542
+218926.0675725834 4.0730028 1103.3555
+218927.0675726878 4.0729241 1103.474
+218928.0675727921 4.0729632 1103.3357
+218929.0675728964 4.0729241 1103.316
+218930.0675730007 4.0731206 1103.3949
+218931.067573105 4.0730419 1103.3555
+218932.0675732093 4.0729632 1103.4344
+218933.0675733136 4.0730419 1103.3357
+218934.0675734179 4.0730419 1103.3555
+218935.0675735222 4.0730028 1103.4147
+218936.0675736265 4.0731993 1103.316
+218937.0675737308 4.0730419 1103.3555
+218938.0675738351 4.0731206 1103.3357
+218939.0675739395 4.0730815 1103.3357
+218940.0675740438 4.0729632 1103.3555
+218941.0675741481 4.0731993 1103.2963
+218942.0675742524 4.0731602 1103.3949
+218943.0675743567 4.0731602 1103.2963
+218944.067574461 4.0732784 1103.3555
+218945.0675745653 4.0730419 1103.3555
+218946.0675746696 4.0732784 1103.4344
+218947.0675747739 4.0731602 1103.3752
+218948.0675748782 4.0732388 1103.474
+218949.0675749825 4.0731993 1103.3555
+218950.0675750868 4.0732784 1103.2963
+218951.0675751911 4.0733175 1103.3949
+218952.0675752955 4.0732784 1103.3357
+218953.0675753998 4.0732388 1103.3357
+218954.0675755041 4.0733175 1103.3555
+218955.0675756084 4.0732784 1103.316
+218956.0675757127 4.0733571 1103.3357
+218957.067575817 4.0733962 1103.2963
+218958.0675759213 4.0733962 1103.3555
+218959.0675760256 4.0733571 1103.3752
+218960.0675761299 4.0733571 1103.316
+218961.0675762342 4.0733571 1103.3357
+218962.0675763385 4.0733571 1103.3555
+218963.0675764428 4.0733571 1103.3555
+218964.0675765472 4.0734358 1103.316
+218965.0675766515 4.0734749 1103.3752
+218966.0675767558 4.0735145 1103.4147
+218967.0675768601 4.0734749 1103.4542
+218968.0675769644 4.0735145 1103.4147
+218969.0675770687 4.0735145 1103.3752
+218970.067577173 4.073554 1103.3357
+218971.0675772773 4.0734749 1103.3357
+218972.0675773816 4.0734749 1103.3752
+218973.0675774859 4.0734749 1103.4147
+218974.0675775902 4.0735931 1103.3949
+218975.0675776945 4.073554 1103.3752
+218976.0675777989 4.0735145 1103.316
+218977.0675779032 4.0736718 1103.4147
+218978.0675780075 4.0736327 1103.3357
+218979.0675781118 4.0736718 1103.2963
+218980.0675782161 4.0735931 1103.3949
+218981.0675783204 4.0736327 1103.4542
+218982.0675784247 4.0737505 1103.4344
+218983.067578529 4.0737114 1103.3949
+218984.0675786333 4.0737505 1103.3357
+218985.0675787376 4.0737114 1103.4147
+218986.0675788419 4.0737114 1103.3357
+218987.0675789462 4.0737114 1103.3555
+218988.0675790505 4.0736327 1103.4147
+218989.0675791549 4.0737505 1103.3357
+218990.0675792592 4.0737114 1103.4147
+218991.0675793635 4.0737114 1103.3752
+218992.0675794678 4.0738292 1103.3357
+218993.0675795721 4.0737114 1103.316
+218994.0675796764 4.0739083 1103.3752
+218995.0675797807 4.0737114 1103.2963
+218996.067579885 4.0738292 1103.316
+218997.0675799893 4.0738292 1103.4542
+218998.0675800936 4.0738292 1103.3752
+218999.0675801979 4.0739474 1103.3357
+219000.0675803022 4.0737505 1103.3357
+219001.0675804066 4.0738688 1103.3357
+219002.0675805109 4.0739083 1103.3949
+219003.0675806152 4.0739474 1103.4344
+219004.0675807195 4.0739083 1103.3752
+219005.0675808238 4.0738292 1103.3949
+219006.0675809281 4.073987 1103.3949
+219007.0675810324 4.0739474 1103.3752
+219008.0675811367 4.0739474 1103.3752
+219009.067581241 4.073987 1103.3357
+219010.0675813453 4.0741048 1103.3752
+219011.0675814496 4.073987 1103.3357
+219012.0675815539 4.0740657 1103.2963
+219013.0675816583 4.0740657 1103.4147
+219014.0675817626 4.0740657 1103.474
+219015.0675818669 4.0741048 1103.3357
+219016.0675819712 4.0741048 1103.3752
+219017.0675820755 4.0741048 1103.3949
+219018.0675821798 4.0741444 1103.4147
+219019.0675822841 4.074223 1103.316
+219020.0675823884 4.0741048 1103.4147
+219021.0675824927 4.0740657 1103.3555
+219022.067582597 4.0741048 1103.3357
+219023.0675827013 4.0741444 1103.3949
+219024.0675828056 4.074223 1103.316
+219025.0675829099 4.0741839 1103.3949
+219026.0675830143 4.074223 1103.3949
+219027.0675831186 4.074223 1103.3949
+219028.0675832229 4.074223 1103.4344
+219029.0675833272 4.0743413 1103.3752
+219030.0675834315 4.0743413 1103.3357
+219031.0675835358 4.0743413 1103.2963
+219032.0675836401 4.0742626 1103.3752
+219033.0675837444 4.0743017 1103.3357
+219034.0675838487 4.0742626 1103.3357
+219035.067583953 4.0742626 1103.3555
+219036.0675840573 4.0743017 1103.4147
+219037.0675841616 4.0743804 1103.4147
+219038.067584266 4.0743804 1103.3555
+219039.0675843703 4.0743413 1103.3752
+219040.0675844746 4.0743413 1103.4344
+219041.0675845789 4.07442 1103.316
+219042.0675846832 4.07442 1103.3752
+219043.0675847875 4.0743804 1103.4344
+219044.0675848918 4.0743804 1103.2765
+219045.0675849961 4.0744596 1103.3752
+219046.0675851004 4.07442 1103.2765
+219047.0675852047 4.0744987 1103.3949
+219048.067585309 4.0745773 1103.3949
+219049.0675854133 4.0744596 1103.3949
+219050.0675855177 4.0744596 1103.3555
+219051.067585622 4.0745382 1103.3357
+219052.0675857263 4.0744987 1103.4344
+219053.0675858306 4.0744596 1103.3949
+219054.0675859349 4.07442 1103.3555
+219055.0675860392 4.0745773 1103.3949
+219056.0675861435 4.0746956 1103.4147
+219057.0675862478 4.0745773 1103.2963
+219058.0675863521 4.074656 1103.3555
+219059.0675864564 4.0746169 1103.3949
+219060.0675865607 4.074656 1103.4344
+219061.067586665 4.0746169 1103.4542
+219062.0675867694 4.0746956 1103.4344
+219063.0675868737 4.074656 1103.4542
+219064.067586978 4.074656 1103.4542
+219065.0675870823 4.0745382 1103.3555
+219066.0675871866 4.0747347 1103.3752
+219067.0675872909 4.0747347 1103.2963
+219068.0675873952 4.0747743 1103.3752
+219069.0675874995 4.0747347 1103.3949
+219070.0675876038 4.0747743 1103.3949
+219071.0675877081 4.0747743 1103.3949
+219072.0675878124 4.0747347 1103.3752
+219073.0675879167 4.0748138 1103.3752
+219074.067588021 4.0748138 1103.316
+219075.0675881254 4.0747743 1103.3949
+219076.0675882297 4.0748138 1103.3357
+219077.067588334 4.0747743 1103.3555
+219078.0675884383 4.0748925 1103.3357
+219079.0675885426 4.0748925 1103.3752
+219080.0675886469 4.0749316 1103.3555
+219081.0675887512 4.0748529 1103.3555
+219082.0675888555 4.0748925 1103.3357
+219083.0675889598 4.0748925 1103.3357
+219084.0675890641 4.0748925 1103.4344
+219085.0675891684 4.0749712 1103.3555
+219086.0675892727 4.0750103 1103.4147
+219087.0675893771 4.0749712 1103.3555
+219088.0675894814 4.0749712 1103.3357
+219089.0675895857 4.0749712 1103.3752
+219090.06758969 4.0750103 1103.2963
+219091.0675897943 4.0750499 1103.3949
+219092.0675898986 4.0750499 1103.4344
+219093.0675900029 4.0750895 1103.3949
+219094.0675901072 4.0750499 1103.3555
+219095.0675902115 4.0749712 1103.3949
+219096.0675903158 4.0750499 1103.3555
+219097.0675904201 4.0750103 1103.474
+219098.0675905244 4.0750895 1103.3357
+219099.0675906288 4.0751681 1103.3949
+219100.0675907331 4.0751286 1103.3357
+219101.0675908374 4.0751681 1103.3949
+219102.0675909417 4.0751286 1103.3949
+219103.067591046 4.0751681 1103.3949
+219104.0675911503 4.0752072 1103.4542
+219105.0675912546 4.0752859 1103.3752
+219106.0675913589 4.0752468 1103.4344
+219107.0675914632 4.0751681 1103.3357
+219108.0675915675 4.0752468 1103.4147
+219109.0675916718 4.0752859 1103.316
+219110.0675917761 4.0752072 1103.3357
+219111.0675918804 4.0752859 1103.3949
+219112.0675919848 4.0753255 1103.316
+219113.0675920891 4.0753255 1103.3752
+219114.0675921934 4.0753255 1103.3357
+219115.0675922977 4.0754437 1103.3357
+219116.067592402 4.0753255 1103.3357
+219117.0675925063 4.0753255 1103.3555
+219118.0675926106 4.0754437 1103.3752
+219119.0675927149 4.0754042 1103.2963
+219120.0675928192 4.0752859 1103.3357
+219121.0675929235 4.0753646 1103.2963
+219122.0675930278 4.0754042 1103.4147
+219123.0675931321 4.0754437 1103.2963
+219124.0675932365 4.0754828 1103.316
+219125.0675933408 4.0754437 1103.3555
+219126.0675934451 4.0753646 1103.316
+219127.0675935494 4.0755615 1103.3555
+219128.0675936537 4.0754042 1103.2963
+219129.067593758 4.0754828 1103.4542
+219130.0675938623 4.0754042 1103.3949
+219131.0675939666 4.0755615 1103.4344
+219132.0675940709 4.0756798 1103.3752
+219133.0675941752 4.0754828 1103.3752
+219134.0675942795 4.0756011 1103.3752
+219135.0675943838 4.0755615 1103.2963
+219136.0675944882 4.0756402 1103.3752
+219137.0675945925 4.0755224 1103.2963
+219138.0675946968 4.0756011 1103.316
+219139.0675948011 4.0756402 1103.3949
+219140.0675949054 4.0756011 1103.2765
+219141.0675950097 4.0756798 1103.3752
+219142.067595114 4.0755224 1103.316
+219143.0675952183 4.0756402 1103.3752
+219144.0675953226 4.0756011 1103.4344
+219145.0675954269 4.0757585 1103.3357
+219146.0675955312 4.0757585 1103.2765
+219147.0675956355 4.0757194 1103.3949
+219148.0675957398 4.0757585 1103.2765
+219149.0675958442 4.075798 1103.3555
+219150.0675959485 4.075798 1103.2567
+219151.0675960528 4.0758767 1103.3752
+219152.0675961571 4.0757585 1103.3752
+219153.0675962614 4.0758371 1103.316
+219154.0675963657 4.0758767 1103.3752
+219155.06759647 4.0758371 1103.2765
+219156.0675965743 4.0757585 1103.3752
+219157.0675966786 4.0758371 1103.3357
+219158.0675967829 4.075798 1103.3357
+219159.0675968872 4.0757585 1103.2765
+219160.0675969915 4.0758371 1103.316
+219161.0675970959 4.0759554 1103.3555
+219162.0675972002 4.0759158 1103.3357
+219163.0675973045 4.075798 1103.316
+219164.0675974088 4.0758767 1103.2963
+219165.0675975131 4.075798 1103.4147
+219166.0675976174 4.0760341 1103.4147
+219167.0675977217 4.0759554 1103.3949
+219168.067597826 4.0759554 1103.4542
+219169.0675979303 4.0760341 1103.316
+219170.0675980346 4.0759945 1103.3357
+219171.0675981389 4.0759554 1103.3555
+219172.0675982432 4.0759554 1103.3949
+219173.0675983476 4.0760341 1103.3357
+219174.0675984519 4.0760736 1103.2963
+219175.0675985562 4.0760341 1103.4344
+219176.0675986605 4.0759554 1103.316
+219177.0675987648 4.0759945 1103.3357
+219178.0675988691 4.0760341 1103.316
+219179.0675989734 4.0760736 1103.3949
+219180.0675990777 4.0760736 1103.3555
+219181.067599182 4.0761127 1103.2369
+219182.0675992863 4.0761523 1103.3555
+219183.0675993906 4.0761523 1103.3752
+219184.0675994949 4.0760736 1103.3357
+219185.0675995993 4.0761914 1103.3949
+219186.0675997036 4.0761523 1103.3949
+219187.0675998079 4.076231 1103.3752
+219188.0675999122 4.0761127 1103.4147
+219189.0676000165 4.076231 1103.3357
+219190.0676001208 4.0761914 1103.3357
+219191.0676002251 4.076231 1103.3949
+219192.0676003294 4.0761523 1103.3357
+219193.0676004337 4.0762701 1103.2765
+219194.067600538 4.0761914 1103.2765
+219195.0676006423 4.0763097 1103.3357
+219196.0676007466 4.076231 1103.3949
+219197.0676008509 4.0762701 1103.3555
+219198.0676009553 4.0763097 1103.3555
+219199.0676010596 4.0763884 1103.4344
+219200.0676011639 4.076231 1103.3752
+219201.0676012682 4.0763884 1103.3949
+219202.0676013725 4.0763097 1103.3357
+219203.0676014768 4.0764279 1103.3357
+219204.0676015811 4.0765457 1103.316
+219205.0676016854 4.0765066 1103.2963
+219206.0676017897 4.0763884 1103.3357
+219207.067601894 4.0763884 1103.2765
+219208.0676019983 4.076467 1103.2963
+219209.0676021026 4.076467 1103.2765
+219210.067602207 4.0765457 1103.3555
+219211.0676023113 4.0763884 1103.316
+219212.0676024156 4.0765457 1103.3555
+219213.0676025199 4.0765066 1103.4147
+219214.0676026242 4.076467 1103.4147
+219215.0676027285 4.0765066 1103.3357
+219216.0676028328 4.0765066 1103.3949
+219217.0676029371 4.0765457 1103.3357
+219218.0676030414 4.0765853 1103.4344
+219219.0676031457 4.0766249 1103.2963
+219220.06760325 4.0766249 1103.3555
+219221.0676033543 4.0765853 1103.3357
+219222.0676034587 4.076664 1103.3949
+219223.067603563 4.0765853 1103.2567
+219224.0676036673 4.076664 1103.4938
+219225.0676037716 4.0767035 1103.2963
+219226.0676038759 4.0765853 1103.3752
+219227.0676039802 4.0767426 1103.3752
+219228.0676040845 4.0767035 1103.2369
+219229.0676041888 4.0765853 1103.3752
+219230.0676042931 4.0767035 1103.3357
+219231.0676043974 4.0767035 1103.3555
+219232.0676045017 4.0767035 1103.4147
+219233.067604606 4.0767035 1103.2963
+219234.0676047103 4.0767426 1103.3752
+219235.0676048147 4.0767822 1103.3949
+219236.067604919 4.0768213 1103.316
+219237.0676050233 4.0767822 1103.3949
+219238.0676051276 4.0767822 1103.3555
+219239.0676052319 4.0769 1103.4147
+219240.0676053362 4.0769 1103.316
+219241.0676054405 4.0769396 1103.316
+219242.0676055448 4.0768213 1103.4344
+219243.0676056491 4.0768609 1103.316
+219244.0676057534 4.0768213 1103.3949
+219245.0676058577 4.0768609 1103.4147
+219246.067605962 4.0769792 1103.3555
+219247.0676060664 4.0768213 1103.3357
+219248.0676061707 4.0768609 1103.3752
+219249.067606275 4.0768609 1103.3357
+219250.0676063793 4.0770578 1103.3949
+219251.0676064836 4.0769396 1103.4147
+219252.0676065879 4.0769792 1103.2963
+219253.0676066922 4.0770183 1103.3949
+219254.0676067965 4.0769792 1103.3555
+219255.0676069008 4.0769 1103.3752
+219256.0676070051 4.0770183 1103.4344
+219257.0676071094 4.0769792 1103.3752
+219258.0676072137 4.0770183 1103.316
+219259.0676073181 4.0770578 1103.3555
+219260.0676074224 4.0770183 1103.2765
+219261.0676075267 4.0770969 1103.3949
+219262.067607631 4.0770578 1103.316
+219263.0676077353 4.0771756 1103.3357
+219264.0676078396 4.0770969 1103.2963
+219265.0676079439 4.0771365 1103.4147
+219266.0676080482 4.0771365 1103.3357
+219267.0676081525 4.0770969 1103.3949
+219268.0676082568 4.0771365 1103.2765
+219269.0676083611 4.0771365 1103.3357
+219270.0676084654 4.0772548 1103.3752
+219271.0676085697 4.0772939 1103.3752
+219272.0676086741 4.0771756 1103.2963
+219273.0676087784 4.0771365 1103.3752
+219274.0676088827 4.0772548 1103.3555
+219275.067608987 4.0772548 1103.3555
+219276.0676090913 4.0772152 1103.316
+219277.0676091956 4.0772548 1103.316
+219278.0676092999 4.0774121 1103.3949
+219279.0676094042 4.0771756 1103.3357
+219280.0676095085 4.0773335 1103.3752
+219281.0676096128 4.0773726 1103.3357
+219282.0676097171 4.0772548 1103.3949
+219283.0676098214 4.0773726 1103.3357
+219284.0676099258 4.0773726 1103.3555
+219285.0676100301 4.0774512 1103.3357
+219286.0676101344 4.0773335 1103.2567
+219287.0676102387 4.0774121 1103.2765
+219288.067610343 4.0773726 1103.316
+219289.0676104473 4.0774121 1103.3752
+219290.0676105516 4.0773335 1103.4147
+219291.0676106559 4.0774908 1103.4147
+219292.0676107602 4.0774121 1103.3555
+219293.0676108645 4.0774512 1103.3752
+219294.0676109688 4.0774512 1103.316
+219295.0676110731 4.0774512 1103.3555
+219296.0676111775 4.0774908 1103.316
+219297.0676112818 4.0774908 1103.3555
+219298.0676113861 4.0774908 1103.2369
+219299.0676114904 4.0774908 1103.3555
+219300.0676115947 4.0776091 1103.3949
+219301.067611699 4.0776482 1103.316
+219302.0676118033 4.0776091 1103.3357
+219303.0676119076 4.0775695 1103.4344
+219304.0676120119 4.0775695 1103.3949
+219305.0676121162 4.0776482 1103.316
+219306.0676122205 4.0776091 1103.3752
+219307.0676123248 4.0776877 1103.3357
+219308.0676124291 4.0776482 1103.3555
+219309.0676125335 4.0777664 1103.2765
+219310.0676126378 4.0776877 1103.4147
+219311.0676127421 4.0776877 1103.2963
+219312.0676128464 4.0776877 1103.3949
+219313.0676129507 4.0777664 1103.3357
+219314.067613055 4.0777664 1103.2963
+219315.0676131593 4.0777268 1103.316
+219316.0676132636 4.0776482 1103.316
+219317.0676133679 4.0778055 1103.3752
+219318.0676134722 4.0778055 1103.3357
+219319.0676135765 4.0776482 1103.2963
+219320.0676136808 4.0777664 1103.316
+219321.0676137852 4.0778055 1103.3949
+219322.0676138895 4.0778055 1103.2963
+219323.0676139938 4.0778055 1103.3555
+219324.0676140981 4.0778451 1103.4147
+219325.0676142024 4.0778847 1103.3752
+219326.0676143067 4.0778847 1103.3555
+219327.067614411 4.0777268 1103.2765
+219328.0676145153 4.0779634 1103.3752
+219329.0676146196 4.0778847 1103.3949
+219330.0676147239 4.0779634 1103.4344
+219331.0676148282 4.0778451 1103.3555
+219332.0676149325 4.0779634 1103.3752
+219333.0676150369 4.0778847 1103.2765
+219334.0676151412 4.0779238 1103.3357
+219335.0676152455 4.0780025 1103.2567
+219336.0676153498 4.078042 1103.2765
+219337.0676154541 4.0780025 1103.2765
+219338.0676155584 4.0780025 1103.2765
+219339.0676156627 4.0780811 1103.2567
+219340.067615767 4.078042 1103.3357
+219341.0676158713 4.0779238 1103.3357
+219342.0676159756 4.078042 1103.316
+219343.0676160799 4.0781207 1103.3357
+219344.0676161842 4.078042 1103.3357
+219345.0676162886 4.0781207 1103.3949
+219346.0676163929 4.0781207 1103.3752
+219347.0676164972 4.0781207 1103.316
+219348.0676166015 4.0781207 1103.3555
+219349.0676167058 4.0781207 1103.3949
+219350.0676168101 4.0781207 1103.2567
+219351.0676169144 4.0781207 1103.4344
+219352.0676170187 4.0781603 1103.3357
+219353.067617123 4.0781207 1103.3555
+219354.0676172273 4.078239 1103.3555
+219355.0676173316 4.0781603 1103.3555
+219356.0676174359 4.0781207 1103.2567
+219357.0676175402 4.078239 1103.3752
+219358.0676176446 4.078239 1103.316
+219359.0676177489 4.0781603 1103.316
+219360.0676178532 4.0783176 1103.3357
+219361.0676179575 4.0781603 1103.3555
+219362.0676180618 4.078239 1103.3555
+219363.0676181661 4.0783567 1103.3949
+219364.0676182704 4.0782781 1103.2963
+219365.0676183747 4.0784354 1103.4344
+219366.067618479 4.0783567 1103.3752
+219367.0676185833 4.0783567 1103.316
+219368.0676186876 4.0783567 1103.3357
+219369.0676187919 4.0783567 1103.3357
+219370.0676188963 4.0783176 1103.3752
+219371.0676190006 4.0783567 1103.3357
+219372.0676191049 4.0783567 1103.316
+219373.0676192092 4.0784354 1103.3555
+219374.0676193135 4.0783567 1103.4147
+219375.0676194178 4.0783963 1103.3555
+219376.0676195221 4.0784354 1103.3357
+219377.0676196264 4.0785146 1103.3357
+219378.0676197307 4.078475 1103.3555
+219379.067619835 4.078475 1103.3555
+219380.0676199393 4.0785933 1103.3949
+219381.0676200436 4.0785537 1103.3949
+219382.067620148 4.0785933 1103.3752
+219383.0676202523 4.078475 1103.3949
+219384.0676203566 4.0785146 1103.316
+219385.0676204609 4.0785537 1103.3949
+219386.0676205652 4.0785537 1103.4542
+219387.0676206695 4.0786719 1103.3357
+219388.0676207738 4.0785933 1103.316
+219389.0676208781 4.0785146 1103.3752
+219390.0676209824 4.0786324 1103.4147
+219391.0676210867 4.078711 1103.316
+219392.067621191 4.0785933 1103.316
+219393.0676212953 4.0786324 1103.4344
+219394.0676213996 4.0786719 1103.4147
+219395.067621504 4.078711 1103.3949
+219396.0676216083 4.078711 1103.3555
+219397.0676217126 4.0787902 1103.3949
+219398.0676218169 4.0787902 1103.3555
+219399.0676219212 4.0786324 1103.474
+219400.0676220255 4.0787506 1103.4542
+219401.0676221298 4.078711 1103.3555
+219402.0676222341 4.0786719 1103.3357
+219403.0676223384 4.0787902 1103.316
+219404.0676224427 4.0788293 1103.2963
+219405.067622547 4.0788293 1103.3752
+219406.0676226513 4.0788689 1103.2369
+219407.0676227557 4.0788689 1103.3357
+219408.06762286 4.0788293 1103.2963
+219409.0676229643 4.0788293 1103.3357
+219410.0676230686 4.0787902 1103.3949
+219411.0676231729 4.078908 1103.3357
+219412.0676232772 4.0789475 1103.3752
+219413.0676233815 4.078908 1103.316
+219414.0676234858 4.0788689 1103.2963
+219415.0676235901 4.0788689 1103.316
+219416.0676236944 4.0790262 1103.3752
+219417.0676237987 4.0789866 1103.316
+219418.067623903 4.0790262 1103.3357
+219419.0676240074 4.0790262 1103.2963
+219420.0676241117 4.0790262 1103.3752
+219421.067624216 4.0788293 1103.4542
+219422.0676243203 4.0789866 1103.3949
+219423.0676244246 4.0791445 1103.3949
+219424.0676245289 4.0789866 1103.2963
+219425.0676246332 4.0790653 1103.3357
+219426.0676247375 4.0790653 1103.3357
+219427.0676248418 4.0790653 1103.3357
+219428.0676249461 4.0790653 1103.3357
+219429.0676250504 4.0791049 1103.3752
+219430.0676251547 4.0791836 1103.3949
+219431.067625259 4.0791836 1103.3949
+219432.0676253634 4.0791445 1103.316
+219433.0676254677 4.0791445 1103.3949
+219434.067625572 4.0792232 1103.3752
+219435.0676256763 4.0791049 1103.2963
+219436.0676257806 4.0792232 1103.2963
+219437.0676258849 4.0791836 1103.3949
+219438.0676259892 4.0791445 1103.4147
+219439.0676260935 4.0791836 1103.3357
+219440.0676261978 4.0793018 1103.3752
+219441.0676263021 4.0791445 1103.3357
+219442.0676264064 4.0792623 1103.474
+219443.0676265107 4.0792232 1103.4147
+219444.0676266151 4.0792232 1103.4147
+219445.0676267194 4.0792232 1103.316
+219446.0676268237 4.0793805 1103.3357
+219447.067626928 4.0793018 1103.316
+219448.0676270323 4.0793018 1103.3752
+219449.0676271366 4.0793018 1103.4344
+219450.0676272409 4.0794201 1103.3357
+219451.0676273452 4.0793018 1103.4147
+219452.0676274495 4.0794201 1103.3752
+219453.0676275538 4.0793409 1103.3555
+219454.0676276581 4.0794201 1103.4147
+219455.0676277624 4.0793805 1103.3555
+219456.0676278668 4.0794201 1103.316
+219457.0676279711 4.0794988 1103.3357
+219458.0676280754 4.0794592 1103.3555
+219459.0676281797 4.0794201 1103.3357
+219460.067628284 4.0794988 1103.3555
+219461.0676283883 4.0795379 1103.3555
+219462.0676284926 4.0794201 1103.3357
+219463.0676285969 4.0794988 1103.3949
+219464.0676287012 4.0795379 1103.3555
+219465.0676288055 4.0794592 1103.2567
+219466.0676289098 4.0794592 1103.3357
+219467.0676290141 4.0795774 1103.3357
+219468.0676291185 4.0794988 1103.316
+219469.0676292228 4.0794988 1103.2765
+219470.0676293271 4.0795774 1103.3949
+219471.0676294314 4.0795379 1103.316
+219472.0676295357 4.0796165 1103.3752
+219473.06762964 4.0796165 1103.3949
+219474.0676297443 4.0795774 1103.3949
+219475.0676298486 4.0795774 1103.3949
+219476.0676299529 4.0795774 1103.2963
+219477.0676300572 4.0796561 1103.2765
+219478.0676301615 4.0797348 1103.3357
+219479.0676302658 4.0796957 1103.3752
+219480.0676303701 4.0796957 1103.2963
+219481.0676304745 4.0797348 1103.4147
+219482.0676305788 4.0796165 1103.3949
+219483.0676306831 4.0796561 1103.2963
+219484.0676307874 4.0796561 1103.3357
+219485.0676308917 4.0798135 1103.2963
+219486.067630996 4.0797348 1103.3357
+219487.0676311003 4.0797744 1103.3357
+219488.0676312046 4.0797348 1103.3752
+219489.0676313089 4.0797348 1103.3752
+219490.0676314132 4.0797744 1103.4344
+219491.0676315175 4.0798922 1103.3357
+219492.0676316218 4.0798531 1103.2567
+219493.0676317262 4.0798531 1103.3357
+219494.0676318305 4.0798135 1103.2369
+219495.0676319348 4.0798531 1103.3949
+219496.0676320391 4.0798531 1103.3752
+219497.0676321434 4.0798531 1103.3555
+219498.0676322477 4.0799317 1103.316
+219499.067632352 4.0799708 1103.4147
+219500.0676324563 4.0798922 1103.4542
+219501.0676325606 4.0799317 1103.3555
+219502.0676326649 4.0800104 1103.3949
+219503.0676327692 4.0800104 1103.2765
+219504.0676328735 4.08005 1103.4147
+219505.0676329779 4.0800104 1103.3752
+219506.0676330822 4.0799317 1103.3555
+219507.0676331865 4.0799708 1103.4147
+219508.0676332908 4.0799708 1103.3555
+219509.0676333951 4.0799708 1103.2963
+219510.0676334994 4.0800104 1103.3752
+219511.0676336037 4.0801287 1103.4344
+219512.067633708 4.0800891 1103.3555
+219513.0676338123 4.0800891 1103.3555
+219514.0676339166 4.08005 1103.3555
+219515.0676340209 4.0801678 1103.3949
+219516.0676341252 4.0800891 1103.3357
+219517.0676342295 4.0801287 1103.2369
+219518.0676343339 4.0802073 1103.2963
+219519.0676344382 4.0800891 1103.3949
+219520.0676345425 4.0802464 1103.3357
+219521.0676346468 4.0801287 1103.316
+219522.0676347511 4.0801678 1103.3752
+219523.0676348554 4.080286 1103.3752
+219524.0676349597 4.0800891 1103.3949
+219525.067635064 4.080286 1103.3949
+219526.0676351683 4.0802464 1103.3949
+219527.0676352726 4.0803647 1103.3555
+219528.0676353769 4.0803647 1103.3555
+219529.0676354812 4.0803647 1103.4147
+219530.0676355856 4.0802464 1103.3752
+219531.0676356899 4.0802464 1103.2963
+219532.0676357942 4.0802464 1103.2963
+219533.0676358985 4.080286 1103.2765
+219534.0676360028 4.0803256 1103.3555
+219535.0676361071 4.0803256 1103.3752
+219536.0676362114 4.0805221 1103.4542
+219537.0676363157 4.0803647 1103.3752
+219538.06763642 4.0804043 1103.316
+219539.0676365243 4.0804043 1103.316
+219540.0676366286 4.0804434 1103.3555
+219541.0676367329 4.0804434 1103.316
+219542.0676368373 4.0804434 1103.3949
+219543.0676369416 4.080483 1103.3555
+219544.0676370459 4.0804434 1103.3357
+219545.0676371502 4.080483 1103.3357
+219546.0676372545 4.0805221 1103.2765
+219547.0676373588 4.080483 1103.3357
+219548.0676374631 4.0804434 1103.3752
+219549.0676375674 4.0805221 1103.3555
+219550.0676376717 4.0804434 1103.2963
+219551.067637776 4.0805616 1103.4147
+219552.0676378803 4.0805221 1103.3555
+219553.0676379846 4.0805616 1103.3752
+219554.0676380889 4.0805616 1103.4147
+219555.0676381933 4.0806403 1103.3357
+219556.0676382976 4.0806007 1103.3555
+219557.0676384019 4.0806007 1103.3357
+219558.0676385062 4.0806799 1103.3752
+219559.0676386105 4.0805221 1103.3949
+219560.0676387148 4.0806007 1103.2963
+219561.0676388191 4.080719 1103.3949
+219562.0676389234 4.0805221 1103.2963
+219563.0676390277 4.080719 1103.316
+219564.067639132 4.0806799 1103.2963
+219565.0676392363 4.0806403 1103.3555
+219566.0676393406 4.0808372 1103.316
+219567.067639445 4.080719 1103.4147
+219568.0676395493 4.080719 1103.3949
+219569.0676396536 4.0808372 1103.3555
+219570.0676397579 4.0807586 1103.3555
+219571.0676398622 4.0806799 1103.3949
+219572.0676399665 4.080719 1103.3555
+219573.0676400708 4.080719 1103.2369
+219574.0676401751 4.0807977 1103.3752
+219575.0676402794 4.0808372 1103.3555
+219576.0676403837 4.080719 1103.3752
+219577.067640488 4.0808764 1103.3752
+219578.0676405923 4.0808764 1103.3357
+219579.0676406967 4.0808764 1103.3555
+219580.067640801 4.0808764 1103.3555
+219581.0676409053 4.0808764 1103.3357
+219582.0676410096 4.0808372 1103.2963
+219583.0676411139 4.0809555 1103.316
+219584.0676412182 4.0808764 1103.3752
+219585.0676413225 4.0809159 1103.3357
+219586.0676414268 4.0809946 1103.3949
+219587.0676415311 4.0809946 1103.316
+219588.0676416354 4.0810342 1103.2765
+219589.0676417397 4.0809555 1103.316
+219590.067641844 4.0809159 1103.316
+219591.0676419484 4.0809946 1103.3752
+219592.0676420527 4.0809946 1103.2567
+219593.067642157 4.0809159 1103.3752
+219594.0676422613 4.0810733 1103.3949
+219595.0676423656 4.0810342 1103.4344
+219596.0676424699 4.0810342 1103.3555
+219597.0676425742 4.0811129 1103.3555
+219598.0676426785 4.0809946 1103.4147
+219599.0676427828 4.0810733 1103.2765
+219600.0676428871 4.0811129 1103.2963
+219601.0676429914 4.0810342 1103.2963
+219602.0676430957 4.0810733 1103.3949
+219603.0676432 4.0811915 1103.3555
+219604.0676433044 4.081152 1103.3752
+219605.0676434087 4.0811915 1103.4147
+219606.067643513 4.081152 1103.4147
+219607.0676436173 4.081152 1103.3752
+219608.0676437216 4.0812306 1103.3555
+219609.0676438259 4.0813489 1103.3752
+219610.0676439302 4.0812702 1103.2963
+219611.0676440345 4.0812702 1103.3949
+219612.0676441388 4.0813489 1103.316
+219613.0676442431 4.0813098 1103.3357
+219614.0676443474 4.0813098 1103.316
+219615.0676444517 4.0813098 1103.3752
+219616.0676445561 4.0813098 1103.2963
+219617.0676446604 4.0813885 1103.4542
+219618.0676447647 4.0812702 1103.4147
+219619.067644869 4.0813489 1103.3555
+219620.0676449733 4.0812306 1103.316
+219621.0676450776 4.0813885 1103.316
+219622.0676451819 4.0813098 1103.2963
+219623.0676452862 4.0813098 1103.3949
+219624.0676453905 4.0813489 1103.4147
+219625.0676454948 4.0814276 1103.2765
+219626.0676455991 4.0813885 1103.3555
+219627.0676457034 4.0813885 1103.3752
+219628.0676458078 4.0813885 1103.3949
+219629.0676459121 4.0815458 1103.3555
+219630.0676460164 4.0815458 1103.4344
+219631.0676461207 4.0815458 1103.3357
+219632.067646225 4.0814672 1103.3949
+219633.0676463293 4.0815063 1103.4147
+219634.0676464336 4.0815458 1103.3752
+219635.0676465379 4.0815458 1103.3752
+219636.0676466422 4.0815458 1103.3555
+219637.0676467465 4.0815063 1103.316
+219638.0676468508 4.0814276 1103.2963
+219639.0676469551 4.0815854 1103.2765
+219640.0676470594 4.0815458 1103.3752
+219641.0676471638 4.0815854 1103.316
+219642.0676472681 4.0815458 1103.316
+219643.0676473724 4.0815854 1103.316
+219644.0676474767 4.0815854 1103.3357
+219645.067647581 4.0816245 1103.3752
+219646.0676476853 4.0816641 1103.3357
+219647.0676477896 4.0817428 1103.3357
+219648.0676478939 4.0816245 1103.3752
+219649.0676479982 4.0815458 1103.3752
+219650.0676481025 4.0816245 1103.3555
+219651.0676482068 4.0816641 1103.2567
+219652.0676483111 4.0816245 1103.2963
+219653.0676484155 4.0817428 1103.3752
+219654.0676485198 4.0817819 1103.3555
+219655.0676486241 4.0818214 1103.2963
+219656.0676487284 4.0817428 1103.2963
+219657.0676488327 4.0817032 1103.316
+219658.067648937 4.0817032 1103.3357
+219659.0676490413 4.081861 1103.3555
+219660.0676491456 4.0817819 1103.3752
+219661.0676492499 4.0818214 1103.2963
+219662.0676493542 4.081861 1103.2963
+219663.0676494585 4.081861 1103.2765
+219664.0676495628 4.0817819 1103.2765
+219665.0676496672 4.0818214 1103.3357
+219666.0676497715 4.0819788 1103.3752
+219667.0676498758 4.0819397 1103.3357
+219668.0676499801 4.081861 1103.2963
+219669.0676500844 4.0819397 1103.3357
+219670.0676501887 4.0819001 1103.3752
+219671.067650293 4.0819397 1103.2765
+219672.0676503973 4.0819397 1103.3752
+219673.0676505016 4.0819397 1103.3357
+219674.0676506059 4.0820184 1103.3752
+219675.0676507102 4.0819397 1103.3357
+219676.0676508145 4.0820971 1103.316
+219677.0676509188 4.0819788 1103.3752
+219678.0676510232 4.0820971 1103.2963
+219679.0676511275 4.0819397 1103.3555
+219680.0676512318 4.0821362 1103.3357
+219681.0676513361 4.0820575 1103.2963
+219682.0676514404 4.0820575 1103.2765
+219683.0676515447 4.0820575 1103.3752
+219684.067651649 4.0820575 1103.3555
+219685.0676517533 4.0821362 1103.316
+219686.0676518576 4.0820184 1103.4344
+219687.0676519619 4.0821757 1103.4344
+219688.0676520662 4.0820971 1103.3752
+219689.0676521705 4.0820971 1103.2567
+219690.0676522749 4.0821362 1103.2963
+219691.0676523792 4.0820971 1103.2567
+219692.0676524835 4.0821362 1103.3949
+219693.0676525878 4.0821362 1103.3949
+219694.0676526921 4.0821757 1103.316
+219695.0676527964 4.0823331 1103.3555
+219696.0676529007 4.0822153 1103.4344
+219697.067653005 4.0821757 1103.3555
+219698.0676531093 4.0821362 1103.3752
+219699.0676532136 4.0822153 1103.3357
+219700.0676533179 4.0823727 1103.3555
+219701.0676534222 4.082294 1103.2963
+219702.0676535266 4.082294 1103.2963
+219703.0676536309 4.0822153 1103.316
+219704.0676537352 4.0823331 1103.316
+219705.0676538395 4.082294 1103.316
+219706.0676539438 4.0823727 1103.3949
+219707.0676540481 4.082294 1103.3752
+219708.0676541524 4.0824118 1103.3949
+219709.0676542567 4.0824118 1103.2963
+219710.067654361 4.0824513 1103.2963
+219711.0676544653 4.0824513 1103.3555
+219712.0676545696 4.08253 1103.2765
+219713.0676546739 4.0823727 1103.3752
+219714.0676547783 4.0823727 1103.4344
+219715.0676548826 4.0823331 1103.3949
+219716.0676549869 4.0823727 1103.316
+219717.0676550912 4.0824513 1103.3555
+219718.0676551955 4.0824513 1103.3949
+219719.0676552998 4.0824909 1103.3949
+219720.0676554041 4.0825696 1103.3752
+219721.0676555084 4.0824513 1103.3752
+219722.0676556127 4.0824909 1103.4147
+219723.067655717 4.0824909 1103.3555
+219724.0676558213 4.0824909 1103.3752
+219725.0676559256 4.0824513 1103.4344
+219726.0676560299 4.0826087 1103.3357
+219727.0676561343 4.08253 1103.4147
+219728.0676562386 4.08253 1103.2963
+219729.0676563429 4.08253 1103.3357
+219730.0676564472 4.0826483 1103.2765
+219731.0676565515 4.0826087 1103.316
+219732.0676566558 4.08253 1103.3357
+219733.0676567601 4.0826483 1103.3949
+219734.0676568644 4.0826483 1103.2765
+219735.0676569687 4.0826483 1103.4147
+219736.067657073 4.0826874 1103.2567
+219737.0676571773 4.0826483 1103.3555
+219738.0676572816 4.0826874 1103.474
+219739.067657386 4.082727 1103.4147
+219740.0676574903 4.0826874 1103.2963
+219741.0676575946 4.0827661 1103.2963
+219742.0676576989 4.0827661 1103.2963
+219743.0676578032 4.0828452 1103.3357
+219744.0676579075 4.0826874 1103.3555
+219745.0676580118 4.0828452 1103.3555
+219746.0676581161 4.0828056 1103.3949
+219747.0676582204 4.0828056 1103.3949
+219748.0676583247 4.0828056 1103.3752
+219749.067658429 4.0827661 1103.3357
+219750.0676585333 4.0828452 1103.3357
+219751.0676586377 4.0828843 1103.4147
+219752.067658742 4.0828056 1103.3752
+219753.0676588463 4.0828452 1103.3949
+219754.0676589506 4.082727 1103.3555
+219755.0676590549 4.0828843 1103.3949
+219756.0676591592 4.0828843 1103.3555
+219757.0676592635 4.0828843 1103.3752
+219758.0676593678 4.0828843 1103.3752
+219759.0676594721 4.0830026 1103.2963
+219760.0676595764 4.0828843 1103.3949
+219761.0676596807 4.082963 1103.316
+219762.067659785 4.0828843 1103.2567
+219763.0676598893 4.0830417 1103.316
+219764.0676599937 4.0830026 1103.3752
+219765.067660098 4.0830417 1103.4147
+219766.0676602023 4.0830417 1103.3949
+219767.0676603066 4.082963 1103.2963
+219768.0676604109 4.0830417 1103.3752
+219769.0676605152 4.0830026 1103.474
+219770.0676606195 4.0830812 1103.3949
+219771.0676607238 4.0830812 1103.2963
+219772.0676608281 4.0830812 1103.4147
+219773.0676609324 4.0830417 1103.3949
+219774.0676610367 4.0831208 1103.4147
+219775.067661141 4.082963 1103.3555
+219776.0676612454 4.0831208 1103.3949
+219777.0676613497 4.0830812 1103.316
+219778.067661454 4.0831995 1103.4344
+219779.0676615583 4.0831599 1103.3357
+219780.0676616626 4.0832386 1103.2963
+219781.0676617669 4.0833173 1103.2369
+219782.0676618712 4.0831208 1103.2963
+219783.0676619755 4.0832386 1103.3752
+219784.0676620798 4.0831995 1103.3555
+219785.0676621841 4.0831208 1103.2765
+219786.0676622884 4.0832386 1103.4147
+219787.0676623927 4.0832782 1103.316
+219788.0676624971 4.0832782 1103.3752
+219789.0676626014 4.0832782 1103.4542
+219790.0676627057 4.0832782 1103.2765
+219791.06766281 4.0833569 1103.4147
+219792.0676629143 4.0832782 1103.4344
+219793.0676630186 4.0832782 1103.3357
+219794.0676631229 4.0834355 1103.316
+219795.0676632272 4.0833569 1103.3949
+219796.0676633315 4.0833569 1103.316
+219797.0676634358 4.0833569 1103.316
+219798.0676635401 4.0835142 1103.316
+219799.0676636444 4.0833173 1103.3357
+219800.0676637487 4.0834355 1103.2963
+219801.0676638531 4.0834751 1103.3752
+219802.0676639574 4.0834751 1103.3357
+219803.0676640617 4.0833964 1103.3357
+219804.067664166 4.0834355 1103.3357
+219805.0676642703 4.0834355 1103.316
+219806.0676643746 4.0834751 1103.3752
+219807.0676644789 4.0833964 1103.316
+219808.0676645832 4.0834751 1103.3555
+219809.0676646875 4.0835142 1103.3752
+219810.0676647918 4.0834355 1103.2765
+219811.0676648961 4.0834355 1103.3949
+219812.0676650004 4.0835142 1103.4344
+219813.0676651048 4.0835142 1103.3949
+219814.0676652091 4.0835142 1103.3357
+219815.0676653134 4.0835142 1103.4147
+219816.0676654177 4.0836325 1103.4147
+219817.067665522 4.0835538 1103.2369
+219818.0676656263 4.0834751 1103.3949
+219819.0676657306 4.0836716 1103.3752
+219820.0676658349 4.0836325 1103.316
+219821.0676659392 4.0835929 1103.3555
+219822.0676660435 4.0835929 1103.3357
+219823.0676661478 4.0836716 1103.2963
+219824.0676662521 4.0835929 1103.2765
+219825.0676663565 4.0837111 1103.2369
+219826.0676664608 4.0835929 1103.316
+219827.0676665651 4.0837111 1103.316
+219828.0676666694 4.0837111 1103.316
+219829.0676667737 4.0837507 1103.3949
+219830.067666878 4.0837507 1103.3949
+219831.0676669823 4.0838294 1103.316
+219832.0676670866 4.0837507 1103.3357
+219833.0676671909 4.0837111 1103.3357
+219834.0676672952 4.0837898 1103.2963
+219835.0676673995 4.0836716 1103.2963
+219836.0676675038 4.0837111 1103.3555
+219837.0676676081 4.0839081 1103.316
+219838.0676677125 4.0837111 1103.2963
+219839.0676678168 4.0837898 1103.3949
+219840.0676679211 4.0837898 1103.3752
+219841.0676680254 4.0838294 1103.3555
+219842.0676681297 4.0839081 1103.3357
+219843.067668234 4.0838685 1103.316
+219844.0676683383 4.0839081 1103.3752
+219845.0676684426 4.0839081 1103.316
+219846.0676685469 4.0839868 1103.2765
+219847.0676686512 4.0839081 1103.2765
+219848.0676687555 4.0839081 1103.3357
+219849.0676688598 4.0839472 1103.3752
+219850.0676689642 4.0839472 1103.3357
+219851.0676690685 4.0838685 1103.3949
+219852.0676691728 4.0839868 1103.3555
+219853.0676692771 4.0840263 1103.3949
+219854.0676693814 4.0839868 1103.4147
+219855.0676694857 4.0840263 1103.3555
+219856.06766959 4.0840654 1103.316
+219857.0676696943 4.0841441 1103.3555
+219858.0676697986 4.084105 1103.3555
+219859.0676699029 4.0841441 1103.4147
+219860.0676700072 4.0840263 1103.316
+219861.0676701115 4.084105 1103.3949
+219862.0676702159 4.0842228 1103.3555
+219863.0676703202 4.084105 1103.4147
+219864.0676704245 4.0841441 1103.3555
+219865.0676705288 4.0841441 1103.3357
+219866.0676706331 4.0841441 1103.3555
+219867.0676707374 4.0841441 1103.3357
+219868.0676708417 4.0841837 1103.3949
+219869.067670946 4.0842624 1103.3555
+219870.0676710503 4.0841441 1103.3949
+219871.0676711546 4.0841837 1103.3357
+219872.0676712589 4.0841441 1103.3752
+219873.0676713632 4.0841441 1103.3357
+219874.0676714676 4.0841837 1103.316
+219875.0676715719 4.084341 1103.3949
+219876.0676716762 4.0842624 1103.3555
+219877.0676717805 4.0842624 1103.3357
+219878.0676718848 4.0842624 1103.2765
+219879.0676719891 4.0842228 1103.316
+219880.0676720934 4.0842624 1103.2765
+219881.0676721977 4.0842624 1103.3357
+219882.067672302 4.0843015 1103.3752
+219883.0676724063 4.0843015 1103.3357
+219884.0676725106 4.0842624 1103.3357
+219885.0676726149 4.0843806 1103.3357
+219886.0676727192 4.084341 1103.3555
+219887.0676728236 4.0843015 1103.4147
+219888.0676729279 4.0844984 1103.4147
+219889.0676730322 4.0843806 1103.4344
+219890.0676731365 4.0844197 1103.3752
+219891.0676732408 4.084538 1103.3949
+219892.0676733451 4.0844984 1103.3555
+219893.0676734494 4.0844593 1103.3752
+219894.0676735537 4.0844593 1103.2963
+219895.067673658 4.0844593 1103.2963
+219896.0676737623 4.0843806 1103.4344
+219897.0676738666 4.084538 1103.3555
+219898.0676739709 4.0844984 1103.3752
+219899.0676740753 4.0844197 1103.2963
+219900.0676741796 4.0844984 1103.3357
+219901.0676742839 4.0844593 1103.3555
+219902.0676743882 4.0845771 1103.2369
+219903.0676744925 4.084538 1103.3949
+219904.0676745968 4.084538 1103.3357
+219905.0676747011 4.0845771 1103.3555
+219906.0676748054 4.0846167 1103.3555
+219907.0676749097 4.084538 1103.4147
+219908.067675014 4.0846167 1103.3949
+219909.0676751183 4.0846167 1103.2765
+219910.0676752226 4.0846562 1103.2963
+219911.067675327 4.0845771 1103.3752
+219912.0676754313 4.0845771 1103.3752
+219913.0676755356 4.0846953 1103.3949
+219914.0676756399 4.0846562 1103.3752
+219915.0676757442 4.0846953 1103.4344
+219916.0676758485 4.0846953 1103.4542
+219917.0676759528 4.0846167 1103.2765
+219918.0676760571 4.0847349 1103.3555
+219919.0676761614 4.0846562 1103.4344
+219920.0676762657 4.0847349 1103.3357
+219921.06767637 4.0848136 1103.3555
+219922.0676764743 4.0848136 1103.3357
+219923.0676765786 4.0847349 1103.3949
+219924.067676683 4.0847349 1103.3752
+219925.0676767873 4.084774 1103.3357
+219926.0676768916 4.084774 1103.3949
+219927.0676769959 4.084774 1103.4147
+219928.0676771002 4.0847349 1103.316
+219929.0676772045 4.0848136 1103.3752
+219930.0676773088 4.0848923 1103.3357
+219931.0676774131 4.0848136 1103.3752
+219932.0676775174 4.0848923 1103.316
+219933.0676776217 4.0848136 1103.3752
+219934.067677726 4.0850105 1103.3357
+219935.0676778303 4.084971 1103.3949
+219936.0676779347 4.0848923 1103.3555
+219937.067678039 4.0848136 1103.316
+219938.0676781433 4.0848923 1103.316
+219939.0676782476 4.084971 1103.4344
+219940.0676783519 4.0849314 1103.316
+219941.0676784562 4.084971 1103.3555
+219942.0676785605 4.0850105 1103.316
+219943.0676786648 4.0850105 1103.4147
+219944.0676787691 4.0849314 1103.3949
+219945.0676788734 4.0848923 1103.3555
+219946.0676789777 4.0850496 1103.3357
+219947.067679082 4.0850496 1103.316
+219948.0676791864 4.084971 1103.3949
+219949.0676792907 4.0850496 1103.3555
+219950.067679395 4.0851283 1103.3357
+219951.0676794993 4.0850105 1103.3752
+219952.0676796036 4.085207 1103.4147
+219953.0676797079 4.0851283 1103.3949
+219954.0676798122 4.0850496 1103.2963
+219955.0676799165 4.0851283 1103.3949
+219956.0676800208 4.0851283 1103.3949
+219957.0676801251 4.0850496 1103.3555
+219958.0676802294 4.0851283 1103.4147
+219959.0676803337 4.085207 1103.3752
+219960.067680438 4.085207 1103.3752
+219961.0676805424 4.0851679 1103.3555
+219962.0676806467 4.0850892 1103.4147
+219963.067680751 4.085207 1103.3555
+219964.0676808553 4.0853252 1103.3555
+219965.0676809596 4.0852466 1103.3555
+219966.0676810639 4.0851283 1103.316
+219967.0676811682 4.0852466 1103.3752
+219968.0676812725 4.085207 1103.3357
+219969.0676813768 4.0853252 1103.316
+219970.0676814811 4.0852861 1103.2765
+219971.0676815854 4.0853648 1103.3752
+219972.0676816897 4.0854039 1103.316
+219973.0676817941 4.0853648 1103.3357
+219974.0676818984 4.0854039 1103.3752
+219975.0676820027 4.0852861 1103.316
+219976.067682107 4.0852861 1103.3555
+219977.0676822113 4.0853648 1103.3752
+219978.0676823156 4.0853252 1103.3357
+219979.0676824199 4.0854435 1103.316
+219980.0676825242 4.0852861 1103.3949
+219981.0676826285 4.0854039 1103.3555
+219982.0676827328 4.0854039 1103.3949
+219983.0676828371 4.0853648 1103.4344
+219984.0676829414 4.0855618 1103.3357
+219985.0676830458 4.0854039 1103.3357
+219986.0676831501 4.0854826 1103.3949
+219987.0676832544 4.0854826 1103.3752
+219988.0676833587 4.0854826 1103.3555
+219989.067683463 4.0855618 1103.3357
+219990.0676835673 4.0854826 1103.3949
+219991.0676836716 4.0855222 1103.316
+219992.0676837759 4.0855222 1103.3555
+219993.0676838802 4.0855222 1103.3752
+219994.0676839845 4.0856009 1103.3949
+219995.0676840888 4.0855618 1103.2765
+219996.0676841931 4.0856404 1103.4147
+219997.0676842975 4.0856009 1103.4344
+219998.0676844018 4.0855618 1103.316
+219999.0676845061 4.0856795 1103.3555
+220000.0676846104 4.0856404 1103.3752
+220001.0676847147 4.0856795 1103.316
+220002.067684819 4.0856009 1103.3752
+220003.0676849233 4.0856404 1103.3752
+220004.0676850276 4.0856795 1103.3555
+220005.0676851319 4.0856404 1103.2963
+220006.0676852362 4.0856404 1103.316
+220007.0676853405 4.0856009 1103.4344
+220008.0676854448 4.0857582 1103.3752
+220009.0676855491 4.0857978 1103.3949
+220010.0676856535 4.0857191 1103.3949
+220011.0676857578 4.0857582 1103.4147
+220012.0676858621 4.0857978 1103.4147
+220013.0676859664 4.0857582 1103.3357
+220014.0676860707 4.0858369 1103.3357
+220015.067686175 4.0857191 1103.2963
+220016.0676862793 4.0857582 1103.3555
+220017.0676863836 4.0857582 1103.316
+220018.0676864879 4.0857582 1103.3949
+220019.0676865922 4.085916 1103.3752
+220020.0676866965 4.0858765 1103.3555
+220021.0676868008 4.0858765 1103.3357
+220022.0676869052 4.0857582 1103.316
+220023.0676870095 4.0860338 1103.3949
+220024.0676871138 4.0858369 1103.3555
+220025.0676872181 4.0857978 1103.4344
+220026.0676873224 4.085916 1103.3752
+220027.0676874267 4.0858369 1103.3357
+220028.067687531 4.0859551 1103.3949
+220029.0676876353 4.0858369 1103.3949
+220030.0676877396 4.0858765 1103.3752
+220031.0676878439 4.0860338 1103.4344
+220032.0676879482 4.0860734 1103.316
+220033.0676880525 4.0860734 1103.3949
+220034.0676881569 4.0860338 1103.3752
+220035.0676882612 4.085916 1103.316
+220036.0676883655 4.0859947 1103.3752
+220037.0676884698 4.0859947 1103.3555
+220038.0676885741 4.0860338 1103.3555
+220039.0676886784 4.0860338 1103.3357
+220040.0676887827 4.0860734 1103.3357
+220041.067688887 4.0861125 1103.4344
+220042.0676889913 4.0859947 1103.3949
+220043.0676890956 4.0860734 1103.3555
+220044.0676891999 4.0860734 1103.3357
+220045.0676893042 4.0861917 1103.3752
+220046.0676894085 4.0862308 1103.2963
+220047.0676895129 4.0861125 1103.2963
+220048.0676896172 4.0861125 1103.4147
+220049.0676897215 4.0861917 1103.2765
+220050.0676898258 4.0860734 1103.4147
+220051.0676899301 4.0861917 1103.4147
+220052.0676900344 4.0861917 1103.2963
+220053.0676901387 4.0862703 1103.3752
+220054.067690243 4.0861917 1103.316
+220055.0676903473 4.0861125 1103.4147
+220056.0676904516 4.0862703 1103.316
+220057.0676905559 4.0861917 1103.3752
+220058.0676906602 4.0862703 1103.4147
+220059.0676907646 4.0862703 1103.3555
+220060.0676908689 4.0863094 1103.2567
+220061.0676909732 4.0862308 1103.3555
+220062.0676910775 4.0863094 1103.3949
+220063.0676911818 4.0862703 1103.3949
+220064.0676912861 4.0863094 1103.3555
+220065.0676913904 4.0863094 1103.4344
+220066.0676914947 4.0862703 1103.2963
+220067.067691599 4.0863881 1103.3357
+220068.0676917033 4.0863881 1103.316
+220069.0676918076 4.0862308 1103.2963
+220070.0676919119 4.0862703 1103.3357
+220071.0676920163 4.0863881 1103.3949
+220072.0676921206 4.0864668 1103.4344
+220073.0676922249 4.0863881 1103.3555
+220074.0676923292 4.0864277 1103.316
+220075.0676924335 4.0865459 1103.3357
+220076.0676925378 4.0863881 1103.3949
+220077.0676926421 4.0865459 1103.3752
+220078.0676927464 4.0865064 1103.3752
+220079.0676928507 4.0865064 1103.3949
+220080.067692955 4.0865064 1103.3357
+220081.0676930593 4.0866246 1103.3752
+220082.0676931636 4.0865064 1103.3357
+220083.0676932679 4.0865459 1103.3357
+220084.0676933723 4.0865459 1103.3555
+220085.0676934766 4.0865459 1103.4344
+220086.0676935809 4.0865064 1103.316
+220087.0676936852 4.0866246 1103.4344
+220088.0676937895 4.0865459 1103.3555
+220089.0676938938 4.0866246 1103.3555
+220090.0676939981 4.086585 1103.3949
+220091.0676941024 4.086585 1103.4344
+220092.0676942067 4.0866246 1103.3555
+220093.067694311 4.0866246 1103.316
+220094.0676944153 4.0866246 1103.3752
+220095.0676945196 4.0866637 1103.3555
+220096.067694624 4.0866246 1103.2963
+220097.0676947283 4.0866637 1103.4938
+220098.0676948326 4.0866637 1103.3752
+220099.0676949369 4.0866637 1103.2765
+220100.0676950412 4.0866637 1103.2765
+220101.0676951455 4.0867424 1103.3357
+220102.0676952498 4.0868216 1103.316
+220103.0676953541 4.086782 1103.316
+220104.0676954584 4.0867033 1103.3555
+220105.0676955627 4.0867424 1103.2963
+220106.067695667 4.0867033 1103.2963
+220107.0676957713 4.0867033 1103.3555
+220108.0676958757 4.0868607 1103.3357
+220109.06769598 4.0867424 1103.3949
+220110.0676960843 4.0868216 1103.2963
+220111.0676961886 4.0868607 1103.4147
+220112.0676962929 4.0868216 1103.3752
+220113.0676963972 4.0868607 1103.3752
+220114.0676965015 4.0869002 1103.316
+220115.0676966058 4.0868216 1103.3752
+220116.0676967101 4.086782 1103.2765
+220117.0676968144 4.0868216 1103.3357
+220118.0676969187 4.0869002 1103.3555
+220119.067697023 4.0868607 1103.3949
+220120.0676971274 4.0869002 1103.3752
+220121.0676972317 4.0869393 1103.3752
+220122.067697336 4.0869002 1103.2963
+220123.0676974403 4.0870576 1103.3752
+220124.0676975446 4.0869789 1103.3949
+220125.0676976489 4.0868216 1103.3555
+220126.0676977532 4.087018 1103.316
+220127.0676978575 4.0869789 1103.316
+220128.0676979618 4.087018 1103.3555
+220129.0676980661 4.0869789 1103.4147
+220130.0676981704 4.0869789 1103.2963
+220131.0676982747 4.0870576 1103.316
+220132.067698379 4.0870972 1103.4147
+220133.0676984834 4.087018 1103.3949
+220134.0676985877 4.0869789 1103.2963
+220135.067698692 4.0870576 1103.3357
+220136.0676987963 4.0870576 1103.316
+220137.0676989006 4.0870576 1103.2963
+220138.0676990049 4.0870576 1103.3357
+220139.0676991092 4.0871363 1103.316
+220140.0676992135 4.0870972 1103.4344
+220141.0676993178 4.0871363 1103.474
+220142.0676994221 4.0870972 1103.3752
+220143.0676995264 4.0871363 1103.3949
+220144.0676996307 4.0872936 1103.316
+220145.0676997351 4.0872149 1103.2963
+220146.0676998394 4.0870972 1103.3949
+220147.0676999437 4.0871363 1103.316
+220148.067700048 4.0871758 1103.2963
+220149.0677001523 4.0870972 1103.4147
+220150.0677002566 4.0872149 1103.316
+220151.0677003609 4.0872545 1103.3752
+220152.0677004652 4.0872545 1103.3555
+220153.0677005695 4.0872936 1103.3555
+220154.0677006738 4.0872936 1103.2765
+220155.0677007781 4.0872149 1103.2765
+220156.0677008824 4.0874119 1103.3949
+220157.0677009868 4.0872936 1103.2963
+220158.0677010911 4.0873723 1103.3357
+220159.0677011954 4.0873723 1103.2963
+220160.0677012997 4.0873332 1103.3555
+220161.067701404 4.0872936 1103.2963
+220162.0677015083 4.0873723 1103.2765
+220163.0677016126 4.0874119 1103.3555
+220164.0677017169 4.0873723 1103.4147
+220165.0677018212 4.0872545 1103.3357
+220166.0677019255 4.0874515 1103.4344
+220167.0677020298 4.0874515 1103.4344
+220168.0677021341 4.0874906 1103.316
+220169.0677022384 4.0874906 1103.4147
+220170.0677023428 4.0874515 1103.3949
+220171.0677024471 4.0873723 1103.3752
+220172.0677025514 4.0874515 1103.3949
+220173.0677026557 4.0875301 1103.3555
+220174.06770276 4.0874515 1103.3752
+220175.0677028643 4.0874906 1103.316
+220176.0677029686 4.0876088 1103.3357
+220177.0677030729 4.0874515 1103.3357
+220178.0677031772 4.0875301 1103.316
+220179.0677032815 4.0874906 1103.3555
+220180.0677033858 4.0875692 1103.3949
+220181.0677034901 4.0876088 1103.2963
+220182.0677035945 4.0874906 1103.316
+220183.0677036988 4.0875692 1103.3752
+220184.0677038031 4.0876088 1103.4344
+220185.0677039074 4.0876875 1103.3949
+220186.0677040117 4.0875692 1103.2963
+220187.067704116 4.0876479 1103.3555
+220188.0677042203 4.0876875 1103.3357
+220189.0677043246 4.0876088 1103.4147
+220190.0677044289 4.0876875 1103.3357
+220191.0677045332 4.0877271 1103.3357
+220192.0677046375 4.0876875 1103.3555
+220193.0677047418 4.0876875 1103.2567
+220194.0677048462 4.0876875 1103.3949
+220195.0677049505 4.0877271 1103.4344
+220196.0677050548 4.0876479 1103.3555
+220197.0677051591 4.0878057 1103.3752
+220198.0677052634 4.0877662 1103.4344
+220199.0677053677 4.0876875 1103.3555
+220200.067705472 4.0877662 1103.3949
+220201.0677055763 4.0878057 1103.3752
+220202.0677056806 4.0878844 1103.2963
+220203.0677057849 4.0878057 1103.4938
+220204.0677058892 4.0877662 1103.474
+220205.0677059935 4.0878057 1103.2567
+220206.0677060978 4.0878448 1103.3555
+220207.0677062022 4.0877662 1103.3752
+220208.0677063065 4.0878448 1103.4542
+220209.0677064108 4.0879631 1103.4344
+220210.0677065151 4.0877662 1103.3949
+220211.0677066194 4.0878448 1103.3752
+220212.0677067237 4.0878844 1103.4344
+220213.067706828 4.0878844 1103.3752
+220214.0677069323 4.0878844 1103.2765
+220215.0677070366 4.0879235 1103.4147
+220216.0677071409 4.0878844 1103.316
+220217.0677072452 4.0879235 1103.316
+220218.0677073495 4.0879631 1103.2765
+220219.0677074539 4.0879631 1103.3555
+220220.0677075582 4.0879631 1103.3555
+220221.0677076625 4.0880022 1103.3357
+220222.0677077668 4.0880022 1103.3752
+220223.0677078711 4.0880022 1103.3752
+220224.0677079754 4.0879235 1103.3555
+220225.0677080797 4.0880418 1103.316
+220226.067708184 4.0881205 1103.4147
+220227.0677082883 4.0880814 1103.3752
+220228.0677083926 4.0880022 1103.2567
+220229.0677084969 4.08816 1103.2567
+220230.0677086012 4.0880814 1103.3949
+220231.0677087056 4.0880418 1103.3752
+220232.0677088099 4.0880418 1103.3949
+220233.0677089142 4.0880022 1103.3555
+220234.0677090185 4.0881991 1103.2963
+220235.0677091228 4.0881205 1103.2369
+220236.0677092271 4.0880814 1103.3752
+220237.0677093314 4.08816 1103.3357
+220238.0677094357 4.0882387 1103.3357
+220239.06770954 4.0881205 1103.3949
+220240.0677096443 4.0881991 1103.3949
+220241.0677097486 4.0881991 1103.3555
+220242.0677098529 4.0883174 1103.4542
+220243.0677099572 4.0882778 1103.4542
+220244.0677100616 4.0881991 1103.3555
+220245.0677101659 4.088357 1103.3555
+220246.0677102702 4.0882387 1103.3555
+220247.0677103745 4.0882778 1103.3555
+220248.0677104788 4.0882778 1103.316
+220249.0677105831 4.0882778 1103.3357
+220250.0677106874 4.0882778 1103.3949
+220251.0677107917 4.0882387 1103.3752
+220252.067710896 4.0882778 1103.3752
+220253.0677110003 4.088357 1103.3555
+220254.0677111046 4.0883174 1103.3752
+220255.0677112089 4.0882778 1103.3752
+220256.0677113133 4.0883961 1103.3555
+220257.0677114176 4.0884748 1103.2765
+220258.0677115219 4.0883961 1103.2765
+220259.0677116262 4.0883174 1103.3949
+220260.0677117305 4.0883961 1103.4542
+220261.0677118348 4.0885143 1103.3752
+220262.0677119391 4.0882778 1103.3752
+220263.0677120434 4.0884356 1103.3357
+220264.0677121477 4.0883961 1103.3949
+220265.067712252 4.0884748 1103.3555
+220266.0677123563 4.0883961 1103.4344
+220267.0677124606 4.0884356 1103.3555
+220268.067712565 4.0884356 1103.2963
+220269.0677126693 4.0884356 1103.4147
+220270.0677127736 4.0885143 1103.4147
+220271.0677128779 4.0885534 1103.3555
+220272.0677129822 4.0885143 1103.3555
+220273.0677130865 4.0885143 1103.316
+220274.0677131908 4.0884748 1103.2567
+220275.0677132951 4.0885143 1103.3752
+220276.0677133994 4.0886326 1103.2963
+220277.0677135037 4.0885534 1103.3357
+220278.067713608 4.088593 1103.2963
+220279.0677137123 4.0886326 1103.3555
+220280.0677138167 4.088593 1103.3752
+220281.067713921 4.088593 1103.4344
+220282.0677140253 4.0885534 1103.3555
+220283.0677141296 4.0886717 1103.4147
+220284.0677142339 4.0887113 1103.3752
+220285.0677143382 4.0886717 1103.4147
+220286.0677144425 4.0886326 1103.3752
+220287.0677145468 4.0886717 1103.4542
+220288.0677146511 4.0886717 1103.2963
+220289.0677147554 4.0887504 1103.3949
+220290.0677148597 4.0886717 1103.3357
+220291.067714964 4.0887504 1103.3357
+220292.0677150683 4.0887113 1103.4344
+220293.0677151727 4.0887113 1103.3949
+220294.067715277 4.0887113 1103.3555
+220295.0677153813 4.0887113 1103.2765
+220296.0677154856 4.0887504 1103.3555
+220297.0677155899 4.0887899 1103.3949
+220298.0677156942 4.0887899 1103.3357
+220299.0677157985 4.0887504 1103.3357
+220300.0677159028 4.0887504 1103.3752
+220301.0677160071 4.0887899 1103.4147
+220302.0677161114 4.0889077 1103.316
+220303.0677162157 4.0889077 1103.3555
+220304.06771632 4.088829 1103.316
+220305.0677164244 4.0889473 1103.3555
+220306.0677165287 4.0888686 1103.3752
+220307.067716633 4.0888686 1103.2963
+220308.0677167373 4.0888686 1103.316
+220309.0677168416 4.0889077 1103.2963
+220310.0677169459 4.0889473 1103.3357
+220311.0677170502 4.0889077 1103.316
+220312.0677171545 4.0889473 1103.3555
+220313.0677172588 4.089026 1103.2963
+220314.0677173631 4.089026 1103.3752
+220315.0677174674 4.0889869 1103.3949
+220316.0677175717 4.0888686 1103.3752
+220317.0677176761 4.0889473 1103.4147
+220318.0677177804 4.0889869 1103.3555
+220319.0677178847 4.089026 1103.316
+220320.067717989 4.0889473 1103.4542
+220321.0677180933 4.0891442 1103.316
+220322.0677181976 4.0889869 1103.3357
+220323.0677183019 4.089026 1103.3752
+220324.0677184062 4.0889869 1103.3357
+220325.0677185105 4.0891833 1103.3752
+220326.0677186148 4.089026 1103.2963
+220327.0677187191 4.0891833 1103.316
+220328.0677188234 4.0891442 1103.3357
+220329.0677189277 4.089026 1103.2369
+220330.0677190321 4.0890656 1103.4344
+220331.0677191364 4.0891442 1103.316
+220332.0677192407 4.0891442 1103.3949
+220333.067719345 4.089026 1103.3357
+220334.0677194493 4.0892229 1103.4147
+220335.0677195536 4.0891833 1103.3752
+220336.0677196579 4.0891833 1103.3949
+220337.0677197622 4.0892625 1103.3555
+220338.0677198665 4.0892229 1103.3555
+220339.0677199708 4.0892625 1103.3752
+220340.0677200751 4.0891833 1103.4147
+220341.0677201794 4.0893412 1103.3752
+220342.0677202838 4.0891047 1103.4344
+220343.0677203881 4.0893016 1103.3555
+220344.0677204924 4.0892229 1103.3752
+220345.0677205967 4.0893016 1103.3752
+220346.067720701 4.0892625 1103.4147
+220347.0677208053 4.0893016 1103.4147
+220348.0677209096 4.0892229 1103.3555
+220349.0677210139 4.0892625 1103.3555
+220350.0677211182 4.0893803 1103.2963
+220351.0677212225 4.0892229 1103.3949
+220352.0677213268 4.0893803 1103.3555
+220353.0677214311 4.0893016 1103.2963
+220354.0677215355 4.0894589 1103.4147
+220355.0677216398 4.0894198 1103.3357
+220356.0677217441 4.0894589 1103.2765
+220357.0677218484 4.0893803 1103.3752
+220358.0677219527 4.0894198 1103.4344
+220359.067722057 4.0894198 1103.3555
+220360.0677221613 4.0894589 1103.3752
+220361.0677222656 4.0894589 1103.316
+220362.0677223699 4.0894198 1103.3949
+220363.0677224742 4.0894589 1103.3555
+220364.0677225785 4.0894589 1103.316
+220365.0677226828 4.0894589 1103.3357
+220366.0677227871 4.0894589 1103.2567
+220367.0677228915 4.0895376 1103.3555
+220368.0677229958 4.0894198 1103.3949
+220369.0677231001 4.0894589 1103.316
+220370.0677232044 4.0895376 1103.3752
+220371.0677233087 4.0896168 1103.3357
+220372.067723413 4.0895772 1103.3949
+220373.0677235173 4.0895376 1103.3555
+220374.0677236216 4.0894589 1103.3357
+220375.0677237259 4.0895772 1103.4147
+220376.0677238302 4.0895772 1103.316
+220377.0677239345 4.0896168 1103.4147
+220378.0677240388 4.0895376 1103.2963
+220379.0677241432 4.0895376 1103.2172
+220380.0677242475 4.0895376 1103.3752
+220381.0677243518 4.0896559 1103.3357
+220382.0677244561 4.0896168 1103.3949
+220383.0677245604 4.0897741 1103.4147
+220384.0677246647 4.0896559 1103.2963
+220385.067724769 4.0896559 1103.2963
+220386.0677248733 4.0897741 1103.2963
+220387.0677249776 4.0896168 1103.3357
+220388.0677250819 4.0896955 1103.3555
+220389.0677251862 4.0896955 1103.3752
+220390.0677252905 4.0897741 1103.4147
+220391.0677253949 4.0896955 1103.3752
+220392.0677254992 4.0897741 1103.4542
+220393.0677256035 4.0898132 1103.3357
+220394.0677257078 4.0897741 1103.3357
+220395.0677258121 4.0897741 1103.3949
+220396.0677259164 4.0898132 1103.3555
+220397.0677260207 4.0898924 1103.3357
+220398.067726125 4.0898132 1103.3555
+220399.0677262293 4.0898132 1103.2172
+220400.0677263336 4.0899315 1103.3949
+220401.0677264379 4.0898924 1103.4147
+220402.0677265422 4.0897346 1103.3357
+220403.0677266466 4.0898132 1103.316
+220404.0677267509 4.0899315 1103.2963
+220405.0677268552 4.0898528 1103.3949
+220406.0677269595 4.0898924 1103.3357
+220407.0677270638 4.0898528 1103.316
+220408.0677271681 4.0900102 1103.4344
+220409.0677272724 4.0898528 1103.3555
+220410.0677273767 4.0898924 1103.3752
+220411.067727481 4.0899315 1103.3752
+220412.0677275853 4.0898924 1103.316
+220413.0677276896 4.0898924 1103.3752
+220414.0677277939 4.0899315 1103.3357
+220415.0677278982 4.0899315 1103.3357
+220416.0677280026 4.0900102 1103.3357
+220417.0677281069 4.0900888 1103.316
+220418.0677282112 4.0900102 1103.3555
+220419.0677283155 4.0899711 1103.3752
+220420.0677284198 4.0899711 1103.3752
+220421.0677285241 4.0901284 1103.2963
+220422.0677286284 4.0899711 1103.3357
+220423.0677287327 4.0900497 1103.3752
+220424.067728837 4.0899711 1103.3357
+220425.0677289413 4.0900888 1103.3752
+220426.0677290456 4.0901675 1103.3752
+220427.0677291499 4.0901675 1103.2963
+220428.0677292543 4.0902071 1103.316
+220429.0677293586 4.0900888 1103.3357
+220430.0677294629 4.0900888 1103.3357
+220431.0677295672 4.0900497 1103.3555
+220432.0677296715 4.0901675 1103.3752
+220433.0677297758 4.0901284 1103.3752
+220434.0677298801 4.0901675 1103.3555
+220435.0677299844 4.0901284 1103.316
+220436.0677300887 4.0901675 1103.3752
+220437.067730193 4.0902071 1103.2963
+220438.0677302973 4.0901675 1103.3357
+220439.0677304016 4.0902467 1103.3357
+220440.067730506 4.0903645 1103.3752
+220441.0677306103 4.0901675 1103.2963
+220442.0677307146 4.0902467 1103.3555
+220443.0677308189 4.0902467 1103.3357
+220444.0677309232 4.0902467 1103.3752
+220445.0677310275 4.0903645 1103.316
+220446.0677311318 4.0902858 1103.2963
+220447.0677312361 4.0902858 1103.3949
+220448.0677313404 4.0902858 1103.316
+220449.0677314447 4.0903254 1103.316
+220450.067731549 4.0902858 1103.316
+220451.0677316533 4.0903254 1103.3357
+220452.0677317576 4.090404 1103.3949
+220453.067731862 4.0903254 1103.3555
+220454.0677319663 4.0902858 1103.3752
+220455.0677320706 4.0904827 1103.4147
+220456.0677321749 4.0904431 1103.316
+220457.0677322792 4.090404 1103.3357
+220458.0677323835 4.0904431 1103.3752
+220459.0677324878 4.0903254 1103.4147
+220460.0677325921 4.0904431 1103.3555
+220461.0677326964 4.090404 1103.3949
+220462.0677328007 4.0903645 1103.474
+220463.067732905 4.0903645 1103.316
+220464.0677330093 4.0904431 1103.3555
+220465.0677331137 4.0905223 1103.3357
+220466.067733218 4.090601 1103.3357
+220467.0677333223 4.0905223 1103.3555
+220468.0677334266 4.0905223 1103.1975
+220469.0677335309 4.0905614 1103.3555
+220470.0677336352 4.0905614 1103.4147
+220471.0677337395 4.0906401 1103.316
+220472.0677338438 4.090601 1103.3752
+220473.0677339481 4.0905614 1103.3752
+220474.0677340524 4.0905223 1103.3752
+220475.0677341567 4.090601 1103.4147
+220476.067734261 4.0905223 1103.3949
+220477.0677343654 4.090601 1103.3949
+220478.0677344697 4.0907187 1103.3357
+220479.067734574 4.0906401 1103.3555
+220480.0677346783 4.0906401 1103.3752
+220481.0677347826 4.0906796 1103.2963
+220482.0677348869 4.0906796 1103.4344
+220483.0677349912 4.0907187 1103.3357
+220484.0677350955 4.0907187 1103.3949
+220485.0677351998 4.0906796 1103.3949
+220486.0677353041 4.0907187 1103.3949
+220487.0677354084 4.0907583 1103.3357
+220488.0677355127 4.0906796 1103.316
+220489.067735617 4.0907979 1103.4344
+220490.0677357214 4.0906796 1103.3752
+220491.0677358257 4.0907187 1103.3555
+220492.06773593 4.0907583 1103.2765
+220493.0677360343 4.0907187 1103.3357
+220494.0677361386 4.0906401 1103.316
+220495.0677362429 4.090837 1103.3555
+220496.0677363472 4.090837 1103.2369
+220497.0677364515 4.090837 1103.3555
+220498.0677365558 4.0907583 1103.3949
+220499.0677366601 4.0907583 1103.4147
+220500.0677367644 4.0907979 1103.3949
+220501.0677368687 4.0908766 1103.3555
+220502.0677369731 4.090837 1103.3752
+220503.0677370774 4.090837 1103.4147
+220504.0677371817 4.0907583 1103.316
+220505.067737286 4.0909157 1103.3752
+220506.0677373903 4.090837 1103.2765
+220507.0677374946 4.0908766 1103.2567
+220508.0677375989 4.0908766 1103.3357
+220509.0677377032 4.0909944 1103.3752
+220510.0677378075 4.0909944 1103.3949
+220511.0677379118 4.0909553 1103.316
+220512.0677380161 4.0909553 1103.4542
+220513.0677381204 4.0909553 1103.3752
+220514.0677382248 4.0909553 1103.3357
+220515.0677383291 4.0910339 1103.2765
+220516.0677384334 4.0909944 1103.3555
+220517.0677385377 4.091073 1103.3949
+220518.067738642 4.0909157 1103.2765
+220519.0677387463 4.0909157 1103.4344
+220520.0677388506 4.0909944 1103.316
+220521.0677389549 4.0910339 1103.4147
+220522.0677390592 4.0909553 1103.2765
+220523.0677391635 4.0911126 1103.3752
+220524.0677392678 4.091073 1103.316
+220525.0677393721 4.0910339 1103.3752
+220526.0677394765 4.0910339 1103.4147
+220527.0677395808 4.0911522 1103.3949
+220528.0677396851 4.0909944 1103.3949
+220529.0677397894 4.0911913 1103.2765
+220530.0677398937 4.0911913 1103.3555
+220531.067739998 4.0911126 1103.3357
+220532.0677401023 4.0910339 1103.3555
+220533.0677402066 4.0911126 1103.4147
+220534.0677403109 4.0911522 1103.2567
+220535.0677404152 4.0912309 1103.2567
+220536.0677405195 4.0911913 1103.4147
+220537.0677406238 4.0911522 1103.3752
+220538.0677407281 4.0913095 1103.3752
+220539.0677408325 4.0911913 1103.3752
+220540.0677409368 4.09127 1103.316
+220541.0677410411 4.0911913 1103.3555
+220542.0677411454 4.0911913 1103.316
+220543.0677412497 4.0913095 1103.3357
+220544.067741354 4.0913882 1103.3752
+220545.0677414583 4.0913095 1103.3357
+220546.0677415626 4.0913095 1103.3752
+220547.0677416669 4.09127 1103.3357
+220548.0677417712 4.0912309 1103.3357
+220549.0677418755 4.09127 1103.3752
+220550.0677419798 4.0913486 1103.2567
+220551.0677420842 4.0913095 1103.3357
+220552.0677421885 4.0913486 1103.2963
+220553.0677422928 4.0913486 1103.4147
+220554.0677423971 4.0914669 1103.3555
+220555.0677425014 4.0913882 1103.3357
+220556.0677426057 4.0913095 1103.2963
+220557.06774271 4.09127 1103.4147
+220558.0677428143 4.0913486 1103.3357
+220559.0677429186 4.0913882 1103.2765
+220560.0677430229 4.0913882 1103.3949
+220561.0677431272 4.0914669 1103.4344
+220562.0677432315 4.0914278 1103.3752
+220563.0677433359 4.0914669 1103.3752
+220564.0677434402 4.0914669 1103.316
+220565.0677435445 4.0914278 1103.3555
+220566.0677436488 4.0915065 1103.3357
+220567.0677437531 4.0913882 1103.2963
+220568.0677438574 4.0914278 1103.3357
+220569.0677439617 4.0915852 1103.3752
+220570.067744066 4.0915456 1103.3555
+220571.0677441703 4.0914278 1103.3555
+220572.0677442746 4.0914669 1103.3752
+220573.0677443789 4.0914669 1103.3949
+220574.0677444832 4.0915852 1103.3555
+220575.0677445875 4.0915456 1103.2963
+220576.0677446919 4.0915456 1103.3752
+220577.0677447962 4.0915852 1103.4344
+220578.0677449005 4.0916243 1103.3555
+220579.0677450048 4.0915456 1103.4344
+220580.0677451091 4.0916243 1103.3357
+220581.0677452134 4.0916638 1103.3949
+220582.0677453177 4.0916243 1103.316
+220583.067745422 4.0916243 1103.3555
+220584.0677455263 4.0916638 1103.3752
+220585.0677456306 4.0916243 1103.4147
+220586.0677457349 4.0917821 1103.3949
+220587.0677458392 4.0917029 1103.3555
+220588.0677459436 4.0916243 1103.3555
+220589.0677460479 4.0917029 1103.4542
+220590.0677461522 4.0917029 1103.3357
+220591.0677462565 4.0916638 1103.3357
+220592.0677463608 4.0917821 1103.3555
+220593.0677464651 4.0918212 1103.3752
+220594.0677465694 4.0917425 1103.4344
+220595.0677466737 4.0917821 1103.3357
+220596.067746778 4.0918212 1103.3752
+220597.0677468823 4.0917425 1103.2963
+220598.0677469866 4.0917821 1103.2567
+220599.0677470909 4.0917425 1103.3357
+220600.0677471953 4.0918212 1103.3752
+220601.0677472996 4.0918212 1103.3949
+220602.0677474039 4.0918212 1103.316
+220603.0677475082 4.0917425 1103.316
+220604.0677476125 4.0918212 1103.316
+220605.0677477168 4.0918608 1103.3949
+220606.0677478211 4.0919394 1103.2765
+220607.0677479254 4.0918608 1103.316
+220608.0677480297 4.0918212 1103.4344
+220609.067748134 4.0919394 1103.3357
+220610.0677482383 4.0918608 1103.4147
+220611.0677483426 4.0919394 1103.316
+220612.0677484469 4.0918608 1103.3752
+220613.0677485513 4.0919785 1103.4147
+220614.0677486556 4.0919394 1103.3357
+220615.0677487599 4.0919785 1103.316
+220616.0677488642 4.0919394 1103.2963
+220617.0677489685 4.0920181 1103.3949
+220618.0677490728 4.0918999 1103.3752
+220619.0677491771 4.0920181 1103.316
+220620.0677492814 4.0919785 1103.3555
+220621.0677493857 4.0919785 1103.3357
+220622.06774949 4.0919785 1103.2963
+220623.0677495943 4.0920577 1103.316
+220624.0677496986 4.0919394 1103.3752
+220625.067749803 4.0919394 1103.2963
+220626.0677499073 4.0920577 1103.4542
+220627.0677500116 4.0921755 1103.3555
+220628.0677501159 4.0919785 1103.2963
+220629.0677502202 4.0921364 1103.3949
+220630.0677503245 4.0920577 1103.3357
+220631.0677504288 4.0920577 1103.3752
+220632.0677505331 4.0920181 1103.3949
+220633.0677506374 4.0920577 1103.2963
+220634.0677507417 4.0920181 1103.2963
+220635.067750846 4.0920968 1103.3949
+220636.0677509503 4.0920968 1103.3752
+220637.0677510547 4.0920577 1103.3555
+220638.067751159 4.0921755 1103.3555
+220639.0677512633 4.0921755 1103.4344
+220640.0677513676 4.0921364 1103.3357
+220641.0677514719 4.0922542 1103.3555
+220642.0677515762 4.0922151 1103.3357
+220643.0677516805 4.0922937 1103.4344
+220644.0677517848 4.0922542 1103.4147
+220645.0677518891 4.0922151 1103.2765
+220646.0677519934 4.0922151 1103.316
+220647.0677520977 4.0922542 1103.3555
+220648.067752202 4.0921755 1103.4147
+220649.0677523064 4.0922151 1103.2963
+220650.0677524107 4.0923333 1103.3752
+220651.067752515 4.0923724 1103.3555
+220652.0677526193 4.0923724 1103.3555
+220653.0677527236 4.0922542 1103.3555
+220654.0677528279 4.092412 1103.4344
+220655.0677529322 4.0923333 1103.3357
+220656.0677530365 4.0922937 1103.2963
+220657.0677531408 4.0922937 1103.316
+220658.0677532451 4.0923724 1103.2963
+220659.0677533494 4.0923333 1103.3752
+220660.0677534537 4.0923724 1103.3949
+220661.067753558 4.0923333 1103.2765
+220662.0677536624 4.092412 1103.2963
+220663.0677537667 4.0923724 1103.4147
+220664.067753871 4.0923724 1103.4542
+220665.0677539753 4.092412 1103.3752
+220666.0677540796 4.0924907 1103.3752
+220667.0677541839 4.0924907 1103.3752
+220668.0677542882 4.0925298 1103.2765
+220669.0677543925 4.0924511 1103.3555
+220670.0677544968 4.092412 1103.2963
+220671.0677546011 4.0924511 1103.3357
+220672.0677547054 4.0924511 1103.4147
+220673.0677548097 4.0924511 1103.3752
+220674.0677549141 4.0925694 1103.4344
+220675.0677550184 4.0925694 1103.316
+220676.0677551227 4.0926085 1103.2765
+220677.067755227 4.0925298 1103.316
+220678.0677553313 4.0925298 1103.3357
+220679.0677554356 4.0926085 1103.2765
+220680.0677555399 4.0925694 1103.3752
+220681.0677556442 4.0925694 1103.3555
+220682.0677557485 4.092648 1103.316
+220683.0677558528 4.092648 1103.4147
+220684.0677559571 4.092648 1103.3357
+220685.0677560614 4.0926085 1103.2963
+220686.0677561658 4.0925694 1103.3357
+220687.0677562701 4.0925694 1103.2963
+220688.0677563744 4.092648 1103.4344
+220689.0677564787 4.0927267 1103.3752
+220690.067756583 4.092648 1103.3555
+220691.0677566873 4.0926876 1103.3357
+220692.0677567916 4.0926876 1103.3357
+220693.0677568959 4.0927267 1103.3357
+220694.0677570002 4.0927267 1103.2963
+220695.0677571045 4.0926876 1103.3357
+220696.0677572088 4.0927267 1103.4147
+220697.0677573131 4.0927663 1103.2765
+220698.0677574174 4.0927267 1103.316
+220699.0677575218 4.0926085 1103.4542
+220700.0677576261 4.0927663 1103.3357
+220701.0677577304 4.0927267 1103.3752
+220702.0677578347 4.092845 1103.316
+220703.067757939 4.0927267 1103.3357
+220704.0677580433 4.0928841 1103.2963
+220705.0677581476 4.092845 1103.3752
+220706.0677582519 4.0928054 1103.3949
+220707.0677583562 4.0929236 1103.2765
+220708.0677584605 4.0927267 1103.3949
+220709.0677585648 4.092845 1103.316
+220710.0677586691 4.0928054 1103.3357
+220711.0677587735 4.0928054 1103.4147
+220712.0677588778 4.0928841 1103.316
+220713.0677589821 4.0929236 1103.3752
+220714.0677590864 4.0928841 1103.3555
+220715.0677591907 4.0928054 1103.2765
+220716.067759295 4.092845 1103.3357
+220717.0677593993 4.0929236 1103.3949
+220718.0677595036 4.0930023 1103.3949
+220719.0677596079 4.0929236 1103.3949
+220720.0677597122 4.092845 1103.2567
+220721.0677598165 4.0929632 1103.316
+220722.0677599208 4.0929632 1103.3357
+220723.0677600252 4.0930023 1103.3752
+220724.0677601295 4.0930023 1103.4542
+220725.0677602338 4.0930419 1103.3752
+220726.0677603381 4.092845 1103.3555
+220727.0677604424 4.0930023 1103.3555
+220728.0677605467 4.0929236 1103.3357
+220729.067760651 4.093081 1103.3357
+220730.0677607553 4.093081 1103.4344
+220731.0677608596 4.0930419 1103.3555
+220732.0677609639 4.0929632 1103.2567
+220733.0677610682 4.0931597 1103.3949
+220734.0677611725 4.0931206 1103.2963
+220735.0677612768 4.0931597 1103.4147
+220736.0677613812 4.0931993 1103.3949
+220737.0677614855 4.093081 1103.316
+220738.0677615898 4.0931597 1103.4542
+220739.0677616941 4.093081 1103.3357
+220740.0677617984 4.0932779 1103.3752
+220741.0677619027 4.0931206 1103.3949
+220742.067762007 4.0931597 1103.316
+220743.0677621113 4.0930419 1103.2765
+220744.0677622156 4.0932779 1103.3357
+220745.0677623199 4.0931206 1103.3555
+220746.0677624242 4.0932384 1103.316
+220747.0677625285 4.0931993 1103.3555
+220748.0677626329 4.0931597 1103.316
+220749.0677627372 4.0932384 1103.316
+220750.0677628415 4.0931206 1103.2963
+220751.0677629458 4.0931993 1103.3949
+220752.0677630501 4.0933175 1103.3357
+220753.0677631544 4.0933175 1103.4542
+220754.0677632587 4.0931993 1103.3949
+220755.067763363 4.0932779 1103.3357
+220756.0677634673 4.0933566 1103.3752
+220757.0677635716 4.0933175 1103.4344
+220758.0677636759 4.0933175 1103.3949
+220759.0677637802 4.0933566 1103.316
+220760.0677638846 4.0932779 1103.3949
+220761.0677639889 4.0934749 1103.3357
+220762.0677640932 4.0933962 1103.2963
+220763.0677641975 4.0931993 1103.4344
+220764.0677643018 4.0933566 1103.3555
+220765.0677644061 4.0933962 1103.316
+220766.0677645104 4.0933175 1103.2765
+220767.0677646147 4.0933962 1103.2765
+220768.067764719 4.0933962 1103.3949
+220769.0677648233 4.0933566 1103.316
+220770.0677649276 4.0934353 1103.3949
+220771.0677650319 4.0933175 1103.3949
+220772.0677651362 4.0934749 1103.2567
+220773.0677652406 4.0934749 1103.2567
+220774.0677653449 4.0933962 1103.316
+220775.0677654492 4.0934749 1103.3949
+220776.0677655535 4.0933962 1103.4344
+220777.0677656578 4.0935535 1103.3949
+220778.0677657621 4.0934749 1103.3357
+220779.0677658664 4.0934749 1103.4542
+220780.0677659707 4.0934749 1103.3752
+220781.067766075 4.093514 1103.3555
+220782.0677661793 4.0935931 1103.3949
+220783.0677662836 4.0935931 1103.3752
+220784.0677663879 4.0935931 1103.2963
+220785.0677664923 4.093514 1103.3357
+220786.0677665966 4.0934749 1103.3949
+220787.0677667009 4.0935931 1103.3752
+220788.0677668052 4.0935931 1103.316
+220789.0677669095 4.0935535 1103.3555
+220790.0677670138 4.0935535 1103.4344
+220791.0677671181 4.093514 1103.3752
+220792.0677672224 4.0936322 1103.316
+220793.0677673267 4.0935931 1103.2765
+220794.067767431 4.0935535 1103.2567
+220795.0677675353 4.0936322 1103.3555
+220796.0677676396 4.0936718 1103.4147
+220797.067767744 4.0935535 1103.2369
+220798.0677678483 4.0935931 1103.316
+220799.0677679526 4.0936322 1103.3752
+220800.0677680569 4.0937896 1103.2963
+220801.0677681612 4.0937109 1103.316
+220802.0677682655 4.0938292 1103.3752
+220803.0677683698 4.0936718 1103.3357
+220804.0677684741 4.0937896 1103.4147
+220805.0677685784 4.0936718 1103.4147
+220806.0677686827 4.0937109 1103.3555
+220807.067768787 4.0938292 1103.4147
+220808.0677688913 4.0936718 1103.4344
+220809.0677689957 4.0937505 1103.316
+220810.0677691 4.0937896 1103.4344
+220811.0677692043 4.0937505 1103.3752
+220812.0677693086 4.0937505 1103.3949
+220813.0677694129 4.0937896 1103.2963
+220814.0677695172 4.0939078 1103.3357
+220815.0677696215 4.0938292 1103.316
+220816.0677697258 4.0937896 1103.3357
+220817.0677698301 4.0939078 1103.3752
+220818.0677699344 4.0938683 1103.3949
+220819.0677700387 4.0938292 1103.2963
+220820.067770143 4.0938292 1103.3555
+220821.0677702473 4.0938683 1103.3752
+220822.0677703517 4.0939474 1103.4147
+220823.067770456 4.0937896 1103.3949
+220824.0677705603 4.0938292 1103.3555
+220825.0677706646 4.0938292 1103.3949
+220826.0677707689 4.0938683 1103.474
+220827.0677708732 4.0939078 1103.3357
+220828.0677709775 4.0939078 1103.316
+220829.0677710818 4.0937896 1103.4147
+220830.0677711861 4.0939865 1103.3357
+220831.0677712904 4.0939078 1103.316
+220832.0677713947 4.0939474 1103.2765
+220833.067771499 4.0940261 1103.2963
+220834.0677716034 4.0939865 1103.3357
+220835.0677717077 4.0940652 1103.3555
+220836.067771812 4.0940652 1103.316
+220837.0677719163 4.0939865 1103.3357
+220838.0677720206 4.0941048 1103.4344
+220839.0677721249 4.0940652 1103.316
+220840.0677722292 4.0940652 1103.3752
+220841.0677723335 4.0940261 1103.3752
+220842.0677724378 4.0941439 1103.316
+220843.0677725421 4.0939865 1103.4147
+220844.0677726464 4.0941048 1103.3752
+220845.0677727507 4.0941439 1103.3752
+220846.0677728551 4.0940652 1103.3949
+220847.0677729594 4.0940652 1103.2963
+220848.0677730637 4.0941048 1103.2963
+220849.067773168 4.0941048 1103.3949
+220850.0677732723 4.0941439 1103.3949
+220851.0677733766 4.0941048 1103.4344
+220852.0677734809 4.0941048 1103.3357
+220853.0677735852 4.0943017 1103.3555
+220854.0677736895 4.0941439 1103.4147
+220855.0677737938 4.094223 1103.4147
+220856.0677738981 4.0942621 1103.4344
+220857.0677740024 4.094223 1103.3555
+220858.0677741067 4.0942621 1103.3555
+220859.0677742111 4.0941834 1103.3555
+220860.0677743154 4.0941439 1103.3949
+220861.0677744197 4.0943017 1103.316
+220862.067774524 4.0941834 1103.3555
+220863.0677746283 4.0941834 1103.3555
+220864.0677747326 4.0943408 1103.3949
+220865.0677748369 4.0943017 1103.3555
+220866.0677749412 4.0944195 1103.4344
+220867.0677750455 4.0942621 1103.3949
+220868.0677751498 4.094223 1103.2963
+220869.0677752541 4.0943408 1103.4147
+220870.0677753584 4.0943804 1103.3752
+220871.0677754628 4.0943017 1103.3949
+220872.0677755671 4.0943408 1103.3752
+220873.0677756714 4.0944195 1103.316
+220874.0677757757 4.0943017 1103.4147
+220875.06777588 4.0944195 1103.3752
+220876.0677759843 4.0943408 1103.3555
+220877.0677760886 4.0944986 1103.3752
+220878.0677761929 4.0943408 1103.3555
+220879.0677762972 4.0943408 1103.3949
+220880.0677764015 4.0944986 1103.316
+220881.0677765058 4.0943408 1103.3555
+220882.0677766101 4.0944591 1103.2765
+220883.0677767145 4.0944591 1103.3357
+220884.0677768188 4.0944591 1103.316
+220885.0677769231 4.0944195 1103.3752
+220886.0677770274 4.0944986 1103.2963
+220887.0677771317 4.0944591 1103.3949
+220888.067777236 4.0944591 1103.3949
+220889.0677773403 4.0944591 1103.3949
+220890.0677774446 4.0945773 1103.3555
+220891.0677775489 4.0944591 1103.3752
+220892.0677776532 4.0944591 1103.3949
+220893.0677777575 4.0945377 1103.3555
+220894.0677778618 4.0945377 1103.3949
+220895.0677779661 4.0944986 1103.3752
+220896.0677780705 4.0945377 1103.3752
+220897.0677781748 4.0944986 1103.3949
+220898.0677782791 4.0945377 1103.316
+220899.0677783834 4.094656 1103.2963
+220900.0677784877 4.0945773 1103.3752
+220901.067778592 4.0945773 1103.3357
+220902.0677786963 4.0944986 1103.3949
+220903.0677788006 4.0947347 1103.3949
+220904.0677789049 4.094656 1103.3555
+220905.0677790092 4.0945377 1103.3949
+220906.0677791135 4.0946164 1103.3949
+220907.0677792178 4.0946164 1103.3555
+220908.0677793222 4.094656 1103.316
+220909.0677794265 4.0946164 1103.3752
+220910.0677795308 4.0946164 1103.4147
+220911.0677796351 4.0945773 1103.4542
+220912.0677797394 4.094656 1103.3357
+220913.0677798437 4.0947347 1103.3752
+220914.067779948 4.0946951 1103.3949
+220915.0677800523 4.0947347 1103.3949
+220916.0677801566 4.0947347 1103.3555
+220917.0677802609 4.0948133 1103.4542
+220918.0677803652 4.0948133 1103.4344
+220919.0677804695 4.0947347 1103.2963
+220920.0677805739 4.094656 1103.3555
+220921.0677806782 4.0947738 1103.3555
+220922.0677807825 4.0947347 1103.2963
+220923.0677808868 4.0948529 1103.4344
+220924.0677809911 4.0949316 1103.3357
+220925.0677810954 4.0947738 1103.3357
+220926.0677811997 4.0948529 1103.3752
+220927.067781304 4.0947738 1103.3555
+220928.0677814083 4.094892 1103.3752
+220929.0677815126 4.094892 1103.3752
+220930.0677816169 4.0948529 1103.3357
+220931.0677817212 4.0948529 1103.3357
+220932.0677818256 4.0949316 1103.3357
+220933.0677819299 4.0948529 1103.3752
+220934.0677820342 4.094892 1103.4344
+220935.0677821385 4.0949707 1103.3752
+220936.0677822428 4.0949316 1103.474
+220937.0677823471 4.0948133 1103.3752
+220938.0677824514 4.0950103 1103.4147
+220939.0677825557 4.0949316 1103.3555
+220940.06778266 4.0950494 1103.4147
+220941.0677827643 4.0950103 1103.4147
+220942.0677828686 4.094892 1103.3752
+220943.0677829729 4.0949707 1103.316
+220944.0677830772 4.0949316 1103.3357
+220945.0677831816 4.095089 1103.3357
+220946.0677832859 4.0950103 1103.3555
+220947.0677833902 4.0950103 1103.3357
+220948.0677834945 4.095089 1103.3555
+220949.0677835988 4.0951676 1103.4147
+220950.0677837031 4.0951285 1103.3752
+220951.0677838074 4.0950494 1103.4147
+220952.0677839117 4.0950103 1103.2963
+220953.067784016 4.0950494 1103.3949
+220954.0677841203 4.0950494 1103.3357
+220955.0677842246 4.095089 1103.3357
+220956.0677843289 4.095089 1103.4147
+220957.0677844333 4.095089 1103.4344
+220958.0677845376 4.0950494 1103.3752
+220959.0677846419 4.0950103 1103.3357
+220960.0677847462 4.0951676 1103.3357
+220961.0677848505 4.0952072 1103.2369
+220962.0677849548 4.0951676 1103.3555
+220963.0677850591 4.0951676 1103.2963
+220964.0677851634 4.095089 1103.4542
+220965.0677852677 4.095089 1103.3752
+220966.067785372 4.0952859 1103.3752
+220967.0677854763 4.0951676 1103.4542
+220968.0677855806 4.0951285 1103.4542
+220969.067785685 4.095325 1103.3555
+220970.0677857893 4.0951676 1103.2567
+220971.0677858936 4.0952072 1103.316
+220972.0677859979 4.0952463 1103.3949
+220973.0677861022 4.0952463 1103.3752
+220974.0677862065 4.0952859 1103.4147
+220975.0677863108 4.0952463 1103.4344
+220976.0677864151 4.0952463 1103.3949
+220977.0677865194 4.0953646 1103.3357
+220978.0677866237 4.0952072 1103.3949
+220979.067786728 4.0952859 1103.3357
+220980.0677868323 4.095325 1103.3949
+220981.0677869366 4.0954037 1103.3949
+220982.067787041 4.095325 1103.3752
+220983.0677871453 4.0953646 1103.3949
+220984.0677872496 4.095325 1103.3357
+220985.0677873539 4.0953646 1103.3752
+220986.0677874582 4.0952859 1103.3555
+220987.0677875625 4.0953646 1103.3357
+220988.0677876668 4.0954037 1103.3752
+220989.0677877711 4.0954037 1103.3752
+220990.0677878754 4.0954432 1103.3949
+220991.0677879797 4.0952859 1103.3949
+220992.067788084 4.0954037 1103.3555
+220993.0677881883 4.095325 1103.3752
+220994.0677882927 4.0954432 1103.3357
+220995.067788397 4.0952859 1103.316
+220996.0677885013 4.0954037 1103.3752
+220997.0677886056 4.0954432 1103.316
+220998.0677887099 4.0955615 1103.3357
+220999.0677888142 4.0955219 1103.3555
+221000.0677889185 4.0954432 1103.2765
+221001.0677890228 4.0954828 1103.3357
+221002.0677891271 4.0954828 1103.3752
+221003.0677892314 4.0955219 1103.3555
+221004.0677893357 4.0955219 1103.316
+221005.06778944 4.0955219 1103.3752
+221006.0677895444 4.0955615 1103.2963
+221007.0677896487 4.0955615 1103.2963
+221008.067789753 4.0955219 1103.4147
+221009.0677898573 4.0955615 1103.3357
+221010.0677899616 4.0955615 1103.3949
+221011.0677900659 4.0956006 1103.3752
+221012.0677901702 4.0956006 1103.4344
+221013.0677902745 4.0955615 1103.2963
+221014.0677903788 4.0956402 1103.3555
+221015.0677904831 4.0956793 1103.4147
+221016.0677905874 4.0956006 1103.4147
+221017.0677906917 4.0956402 1103.3949
+221018.067790796 4.0956402 1103.3752
+221019.0677909004 4.0957189 1103.3555
+221020.0677910047 4.0955219 1103.2963
+221021.067791109 4.0956402 1103.5134
+221022.0677912133 4.0956402 1103.316
+221023.0677913176 4.0956006 1103.3555
+221024.0677914219 4.0957189 1103.4147
+221025.0677915262 4.0957584 1103.4147
+221026.0677916305 4.0957189 1103.2963
+221027.0677917348 4.0956793 1103.3949
+221028.0677918391 4.0957584 1103.3752
+221029.0677919434 4.0957584 1103.2963
+221030.0677920477 4.0957584 1103.3555
+221031.0677921521 4.0957975 1103.2765
+221032.0677922564 4.0958371 1103.3357
+221033.0677923607 4.0957189 1103.3949
+221034.067792465 4.0957189 1103.3357
+221035.0677925693 4.0959158 1103.3949
+221036.0677926736 4.0957189 1103.316
+221037.0677927779 4.0957584 1103.4542
+221038.0677928822 4.0957975 1103.3752
+221039.0677929865 4.0957189 1103.3949
+221040.0677930908 4.0958371 1103.3949
+221041.0677931951 4.0957975 1103.316
+221042.0677932994 4.0958762 1103.4147
+221043.0677934038 4.0959158 1103.3949
+221044.0677935081 4.0958762 1103.2765
+221045.0677936124 4.0958371 1103.3752
+221046.0677937167 4.0958762 1103.316
+221047.067793821 4.0957584 1103.2963
+221048.0677939253 4.0958371 1103.3555
+221049.0677940296 4.0959549 1103.3949
+221050.0677941339 4.0959549 1103.3555
+221051.0677942382 4.0959549 1103.4344
+221052.0677943425 4.096034 1103.3357
+221053.0677944468 4.0959549 1103.3555
+221054.0677945511 4.0959945 1103.3357
+221055.0677946555 4.0959945 1103.2765
+221056.0677947598 4.0959945 1103.316
+221057.0677948641 4.096034 1103.2172
+221058.0677949684 4.096034 1103.3949
+221059.0677950727 4.0959549 1103.2963
+221060.067795177 4.096034 1103.3555
+221061.0677952813 4.0959549 1103.3949
+221062.0677953856 4.0959945 1103.3752
+221063.0677954899 4.0961127 1103.3752
+221064.0677955942 4.0960732 1103.3555
+221065.0677956985 4.0959549 1103.3752
+221066.0677958028 4.0960732 1103.2963
+221067.0677959071 4.0961518 1103.3949
+221068.0677960115 4.0960732 1103.2765
+221069.0677961158 4.0960732 1103.3357
+221070.0677962201 4.0960732 1103.3555
+221071.0677963244 4.0961518 1103.316
+221072.0677964287 4.0961518 1103.3949
+221073.067796533 4.0961518 1103.3357
+221074.0677966373 4.096034 1103.316
+221075.0677967416 4.0962305 1103.316
+221076.0677968459 4.0960732 1103.3357
+221077.0677969502 4.0961127 1103.3949
+221078.0677970545 4.0961518 1103.4938
+221079.0677971588 4.0961914 1103.3357
+221080.0677972632 4.0962305 1103.3357
+221081.0677973675 4.0961518 1103.4147
+221082.0677974718 4.0962305 1103.3752
+221083.0677975761 4.0962305 1103.4147
+221084.0677976804 4.0963883 1103.2369
+221085.0677977847 4.0961914 1103.3752
+221086.067797889 4.0963488 1103.3752
+221087.0677979933 4.0963488 1103.316
+221088.0677980976 4.0962305 1103.3357
+221089.0677982019 4.0961914 1103.3949
+221090.0677983062 4.0963092 1103.3357
+221091.0677984105 4.0962701 1103.3752
+221092.0677985149 4.0962305 1103.4344
+221093.0677986192 4.0963488 1103.2567
+221094.0677987235 4.0963488 1103.2963
+221095.0677988278 4.0962305 1103.3949
+221096.0677989321 4.0962701 1103.2963
+221097.0677990364 4.0963488 1103.2963
+221098.0677991407 4.0963883 1103.3555
+221099.067799245 4.0963092 1103.3357
+221100.0677993493 4.0964274 1103.2963
+221101.0677994536 4.096467 1103.316
+221102.0677995579 4.0963092 1103.3752
+221103.0677996622 4.0963883 1103.3752
+221104.0677997665 4.0963488 1103.316
+221105.0677998709 4.0964274 1103.316
+221106.0677999752 4.0963488 1103.3949
+221107.0678000795 4.096467 1103.4147
+221108.0678001838 4.0964274 1103.3949
+221109.0678002881 4.0963092 1103.3752
+221110.0678003924 4.0965061 1103.2963
+221111.0678004967 4.0965061 1103.3949
+221112.067800601 4.0965061 1103.4344
+221113.0678007053 4.0964274 1103.4147
+221114.0678008096 4.0965061 1103.3752
+221115.0678009139 4.0965061 1103.3949
+221116.0678010182 4.0965457 1103.4344
+221117.0678011226 4.0964274 1103.3949
+221118.0678012269 4.096467 1103.4344
+221119.0678013312 4.0965061 1103.3949
+221120.0678014355 4.0965848 1103.316
+221121.0678015398 4.096467 1103.2963
+221122.0678016441 4.0966244 1103.3752
+221123.0678017484 4.0965457 1103.3752
+221124.0678018527 4.096467 1103.4147
+221125.067801957 4.0966244 1103.2963
+221126.0678020613 4.0965457 1103.3949
+221127.0678021656 4.0966244 1103.2765
+221128.0678022699 4.0965848 1103.3555
+221129.0678023743 4.0965848 1103.3555
+221130.0678024786 4.0965457 1103.3949
+221131.0678025829 4.096664 1103.3752
+221132.0678026872 4.0966244 1103.3555
+221133.0678027915 4.0966244 1103.2963
+221134.0678028958 4.0967031 1103.316
+221135.0678030001 4.096664 1103.3357
+221136.0678031044 4.0967031 1103.3752
+221137.0678032087 4.0967817 1103.3555
+221138.067803313 4.0967426 1103.3752
+221139.0678034173 4.0967031 1103.3357
+221140.0678035216 4.0967031 1103.3555
+221141.0678036259 4.096664 1103.316
+221142.0678037303 4.0967426 1103.3555
+221143.0678038346 4.0968213 1103.2369
+221144.0678039389 4.0967031 1103.4147
+221145.0678040432 4.0968213 1103.3555
+221146.0678041475 4.0968213 1103.2765
+221147.0678042518 4.0967426 1103.2567
+221148.0678043561 4.0969 1103.3752
+221149.0678044604 4.0968213 1103.3357
+221150.0678045647 4.0967817 1103.4344
+221151.067804669 4.0968604 1103.4147
+221152.0678047733 4.0968604 1103.3949
+221153.0678048776 4.0967426 1103.3555
+221154.067804982 4.0968604 1103.2567
+221155.0678050863 4.0967817 1103.4147
+221156.0678051906 4.0967817 1103.316
+221157.0678052949 4.0968213 1103.2765
+221158.0678053992 4.0968604 1103.3357
+221159.0678055035 4.0969391 1103.3949
+221160.0678056078 4.0967817 1103.3949
+221161.0678057121 4.0968604 1103.316
+221162.0678058164 4.0967817 1103.2765
+221163.0678059207 4.0969391 1103.4147
+221164.067806025 4.0968604 1103.3949
+221165.0678061293 4.0969 1103.3949
+221166.0678062337 4.0969 1103.3555
+221167.067806338 4.0968213 1103.3357
+221168.0678064423 4.0969391 1103.3949
+221169.0678065466 4.0970182 1103.316
+221170.0678066509 4.0969787 1103.4344
+221171.0678067552 4.0970182 1103.3949
+221172.0678068595 4.0969 1103.316
+221173.0678069638 4.0970573 1103.4147
+221174.0678070681 4.0969391 1103.3949
+221175.0678071724 4.0970573 1103.2963
+221176.0678072767 4.0970182 1103.4344
+221177.067807381 4.0969 1103.3752
+221178.0678074853 4.0970182 1103.3357
+221179.0678075897 4.0970182 1103.2963
+221180.067807694 4.0970573 1103.3357
+221181.0678077983 4.0970573 1103.316
+221182.0678079026 4.0969787 1103.4147
+221183.0678080069 4.0970969 1103.3949
+221184.0678081112 4.0970969 1103.3555
+221185.0678082155 4.097136 1103.3357
+221186.0678083198 4.0971756 1103.3752
+221187.0678084241 4.097136 1103.3752
+221188.0678085284 4.097136 1103.3555
+221189.0678086327 4.0972147 1103.3555
+221190.067808737 4.0970969 1103.3357
+221191.0678088414 4.0971756 1103.3752
+221192.0678089457 4.097136 1103.3357
+221193.06780905 4.0971756 1103.3752
+221194.0678091543 4.0971756 1103.3555
+221195.0678092586 4.0971756 1103.316
+221196.0678093629 4.0972543 1103.316
+221197.0678094672 4.097136 1103.3357
+221198.0678095715 4.0971756 1103.3357
+221199.0678096758 4.0971756 1103.4147
+221200.0678097801 4.097136 1103.316
+221201.0678098844 4.0970969 1103.316
+221202.0678099887 4.0972543 1103.3555
+221203.0678100931 4.0972939 1103.3555
+221204.0678101974 4.0972939 1103.3555
+221205.0678103017 4.0971756 1103.3949
+221206.067810406 4.0972543 1103.2765
+221207.0678105103 4.0972939 1103.3949
+221208.0678106146 4.097333 1103.316
+221209.0678107189 4.0972939 1103.2567
+221210.0678108232 4.0972147 1103.2963
+221211.0678109275 4.097333 1103.316
+221212.0678110318 4.0972147 1103.2567
+221213.0678111361 4.0973725 1103.3357
+221214.0678112404 4.0972939 1103.2963
+221215.0678113448 4.0974512 1103.3555
+221216.0678114491 4.0972939 1103.3357
+221217.0678115534 4.0973725 1103.3752
+221218.0678116577 4.0972939 1103.3949
+221219.067811762 4.0974512 1103.3357
+221220.0678118663 4.0973725 1103.3949
+221221.0678119706 4.0974512 1103.3949
+221222.0678120749 4.0974512 1103.4147
+221223.0678121792 4.0974116 1103.316
+221224.0678122835 4.0974512 1103.3357
+221225.0678123878 4.0974903 1103.3357
+221226.0678124921 4.0974116 1103.3357
+221227.0678125964 4.0974903 1103.3752
+221228.0678127008 4.0974116 1103.3555
+221229.0678128051 4.0974903 1103.4147
+221230.0678129094 4.0974903 1103.3555
+221231.0678130137 4.0975299 1103.3752
+221232.067813118 4.0974512 1103.2765
+221233.0678132223 4.0974116 1103.4542
+221234.0678133266 4.0974116 1103.4147
+221235.0678134309 4.0975299 1103.3752
+221236.0678135352 4.0975299 1103.4147
+221237.0678136395 4.0976481 1103.4147
+221238.0678137438 4.0974903 1103.316
+221239.0678138481 4.0974903 1103.3555
+221240.0678139525 4.0975299 1103.3555
+221241.0678140568 4.0975299 1103.4147
+221242.0678141611 4.0976481 1103.316
+221243.0678142654 4.0976086 1103.4147
+221244.0678143697 4.0976086 1103.316
+221245.067814474 4.0976481 1103.3752
+221246.0678145783 4.0975695 1103.3949
+221247.0678146826 4.0975299 1103.4542
+221248.0678147869 4.0974903 1103.3752
+221249.0678148912 4.0975695 1103.3752
+221250.0678149955 4.0976481 1103.4344
+221251.0678150998 4.0976481 1103.2369
+221252.0678152042 4.0975695 1103.4147
+221253.0678153085 4.0976481 1103.4147
+221254.0678154128 4.0976481 1103.3357
+221255.0678155171 4.0976481 1103.3555
+221256.0678156214 4.0976481 1103.316
+221257.0678157257 4.0977268 1103.3555
+221258.06781583 4.0977268 1103.3752
+221259.0678159343 4.0978055 1103.3555
+221260.0678160386 4.0976481 1103.316
+221261.0678161429 4.0977268 1103.3949
+221262.0678162472 4.0978055 1103.3752
+221263.0678163515 4.0977268 1103.3752
+221264.0678164558 4.0976872 1103.3752
+221265.0678165602 4.0978055 1103.4147
+221266.0678166645 4.0977659 1103.2765
+221267.0678167688 4.0977659 1103.3752
+221268.0678168731 4.0978055 1103.3357
+221269.0678169774 4.0977659 1103.3357
+221270.0678170817 4.0978055 1103.316
+221271.067817186 4.0978055 1103.3949
+221272.0678172903 4.0978055 1103.316
+221273.0678173946 4.0979238 1103.3357
+221274.0678174989 4.0978842 1103.3752
+221275.0678176032 4.0978446 1103.3752
+221276.0678177075 4.0977659 1103.3752
+221277.0678178119 4.0978842 1103.3949
+221278.0678179162 4.0979238 1103.3357
+221279.0678180205 4.0978446 1103.316
+221280.0678181248 4.0978055 1103.3949
+221281.0678182291 4.0978446 1103.3949
+221282.0678183334 4.0978842 1103.3555
+221283.0678184377 4.0978446 1103.3949
+221284.067818542 4.0979629 1103.3555
+221285.0678186463 4.0979238 1103.4542
+221286.0678187506 4.0978842 1103.3949
+221287.0678188549 4.0979629 1103.2963
+221288.0678189592 4.0979238 1103.3555
+221289.0678190636 4.0980415 1103.316
+221290.0678191679 4.0979629 1103.3555
+221291.0678192722 4.0979238 1103.4344
+221292.0678193765 4.0979629 1103.4147
+221293.0678194808 4.0979629 1103.3555
+221294.0678195851 4.0980024 1103.3555
+221295.0678196894 4.0980024 1103.3752
+221296.0678197937 4.0980415 1103.3752
+221297.067819898 4.0980024 1103.3357
+221298.0678200023 4.0980415 1103.4147
+221299.0678201066 4.0980415 1103.3555
+221300.0678202109 4.0980024 1103.3752
+221301.0678203152 4.0979629 1103.3752
+221302.0678204196 4.0980811 1103.3555
+221303.0678205239 4.0981202 1103.3555
+221304.0678206282 4.0980024 1103.3357
+221305.0678207325 4.0980811 1103.4147
+221306.0678208368 4.0980415 1103.4147
+221307.0678209411 4.0980024 1103.2963
+221308.0678210454 4.0981598 1103.3752
+221309.0678211497 4.0981202 1103.4344
+221310.067821254 4.0981202 1103.3752
+221311.0678213583 4.0981202 1103.3949
+221312.0678214626 4.0981598 1103.3949
+221313.0678215669 4.0983171 1103.316
+221314.0678216713 4.0981994 1103.2765
+221315.0678217756 4.0981598 1103.316
+221316.0678218799 4.0981598 1103.2567
+221317.0678219842 4.0981994 1103.3949
+221318.0678220885 4.098278 1103.316
+221319.0678221928 4.0982385 1103.3357
+221320.0678222971 4.0981202 1103.3555
+221321.0678224014 4.0981598 1103.3752
+221322.0678225057 4.0981994 1103.3555
+221323.06782261 4.098278 1103.474
+221324.0678227143 4.0982385 1103.3949
+221325.0678228186 4.0982385 1103.3752
+221326.067822923 4.098278 1103.3752
+221327.0678230273 4.098278 1103.316
+221328.0678231316 4.098278 1103.2765
+221329.0678232359 4.0980811 1103.3555
+221330.0678233402 4.0981598 1103.3555
+221331.0678234445 4.0983171 1103.3555
+221332.0678235488 4.098278 1103.2963
+221333.0678236531 4.0983567 1103.2567
+221334.0678237574 4.098278 1103.316
+221335.0678238617 4.0983171 1103.316
+221336.067823966 4.0983567 1103.316
+221337.0678240703 4.098278 1103.3357
+221338.0678241747 4.098278 1103.2567
+221339.067824279 4.098278 1103.4344
+221340.0678243833 4.0983958 1103.4147
+221341.0678244876 4.0983958 1103.3555
+221342.0678245919 4.0983567 1103.3555
+221343.0678246962 4.0983567 1103.3357
+221344.0678248005 4.0983567 1103.3752
+221345.0678249048 4.0983958 1103.316
+221346.0678250091 4.0985928 1103.4147
+221347.0678251134 4.0983958 1103.4344
+221348.0678252177 4.0985141 1103.3555
+221349.067825322 4.0984745 1103.3357
+221350.0678254263 4.0984354 1103.3752
+221351.0678255307 4.0985141 1103.3357
+221352.067825635 4.0985141 1103.3555
+221353.0678257393 4.0984354 1103.3752
+221354.0678258436 4.0984745 1103.3949
+221355.0678259479 4.0984354 1103.4147
+221356.0678260522 4.0984354 1103.4147
+221357.0678261565 4.0985537 1103.316
+221358.0678262608 4.0983171 1103.3555
+221359.0678263651 4.0985141 1103.316
+221360.0678264694 4.0985537 1103.3357
+221361.0678265737 4.0985537 1103.3357
+221362.067826678 4.098711 1103.3555
+221363.0678267824 4.0986323 1103.2963
+221364.0678268867 4.0985141 1103.3555
+221365.067826991 4.0985537 1103.3752
+221366.0678270953 4.0985928 1103.4344
+221367.0678271996 4.0986323 1103.3555
+221368.0678273039 4.0986323 1103.3752
+221369.0678274082 4.0985928 1103.3752
+221370.0678275125 4.0986714 1103.4147
+221371.0678276168 4.0986323 1103.4147
+221372.0678277211 4.0986323 1103.4542
+221373.0678278254 4.0985928 1103.2765
+221374.0678279297 4.0985928 1103.3555
+221375.0678280341 4.0985928 1103.316
+221376.0678281384 4.0986323 1103.3357
+221377.0678282427 4.0985537 1103.3555
+221378.067828347 4.0986323 1103.316
+221379.0678284513 4.0986323 1103.3555
+221380.0678285556 4.098711 1103.3949
+221381.0678286599 4.0987501 1103.3949
+221382.0678287642 4.098711 1103.4344
+221383.0678288685 4.0986323 1103.3555
+221384.0678289728 4.0987501 1103.316
+221385.0678290771 4.098711 1103.3357
+221386.0678291814 4.0986323 1103.3752
+221387.0678292857 4.098711 1103.3949
+221388.0678293901 4.0988293 1103.3949
+221389.0678294944 4.098711 1103.2963
+221390.0678295987 4.0987501 1103.3752
+221391.067829703 4.0987501 1103.4147
+221392.0678298073 4.0988684 1103.3752
+221393.0678299116 4.098947 1103.3357
+221394.0678300159 4.0988684 1103.3752
+221395.0678301202 4.0988293 1103.3752
+221396.0678302245 4.0987501 1103.3555
+221397.0678303288 4.0987897 1103.316
+221398.0678304331 4.0988293 1103.3752
+221399.0678305374 4.0987897 1103.316
+221400.0678306418 4.0987897 1103.4147
+221401.0678307461 4.0988293 1103.3949
+221402.0678308504 4.0989079 1103.4938
+221403.0678309547 4.0987897 1103.4542
+221404.067831059 4.0989079 1103.2963
+221405.0678311633 4.0988684 1103.3752
+221406.0678312676 4.0989079 1103.2567
+221407.0678313719 4.0989079 1103.3357
+221408.0678314762 4.0988293 1103.316
+221409.0678315805 4.0988293 1103.3555
+221410.0678316848 4.0990257 1103.3752
+221411.0678317891 4.0988684 1103.3555
+221412.0678318935 4.0989866 1103.2765
+221413.0678319978 4.0989866 1103.316
+221414.0678321021 4.0988293 1103.3555
+221415.0678322064 4.0989866 1103.3357
+221416.0678323107 4.098947 1103.316
+221417.067832415 4.0989866 1103.4344
+221418.0678325193 4.098947 1103.3555
+221419.0678326236 4.0989866 1103.316
+221420.0678327279 4.0988684 1103.2765
+221421.0678328322 4.0990653 1103.3555
+221422.0678329365 4.098947 1103.4147
+221423.0678330408 4.0989079 1103.316
+221424.0678331451 4.098947 1103.4344
+221425.0678332495 4.0991836 1103.316
+221426.0678333538 4.0991044 1103.316
+221427.0678334581 4.0990653 1103.3555
+221428.0678335624 4.0990653 1103.316
+221429.0678336667 4.0990257 1103.3357
+221430.067833771 4.0990257 1103.3357
+221431.0678338753 4.098947 1103.3752
+221432.0678339796 4.0990653 1103.2567
+221433.0678340839 4.0990653 1103.316
+221434.0678341882 4.099144 1103.316
+221435.0678342925 4.0991044 1103.316
+221436.0678343968 4.0991044 1103.3555
+221437.0678345012 4.099144 1103.3357
+221438.0678346055 4.099144 1103.3357
+221439.0678347098 4.0991044 1103.4542
+221440.0678348141 4.0991044 1103.3555
+221441.0678349184 4.0991044 1103.3357
+221442.0678350227 4.0991836 1103.4344
+221443.067835127 4.0991044 1103.3357
+221444.0678352313 4.099144 1103.474
+221445.0678353356 4.0992622 1103.316
+221446.0678354399 4.099144 1103.2172
+221447.0678355442 4.0990653 1103.3949
+221448.0678356485 4.0992622 1103.3357
+221449.0678357529 4.099144 1103.3555
+221450.0678358572 4.0992622 1103.3357
+221451.0678359615 4.0992227 1103.3949
+221452.0678360658 4.0991836 1103.4344
+221453.0678361701 4.0991836 1103.3555
+221454.0678362744 4.0992227 1103.3357
+221455.0678363787 4.0992227 1103.3555
+221456.067836483 4.0992622 1103.316
+221457.0678365873 4.0992622 1103.3555
+221458.0678366916 4.0992227 1103.316
+221459.0678367959 4.0992227 1103.3555
+221460.0678369002 4.0993013 1103.3949
+221461.0678370046 4.0993013 1103.3357
+221462.0678371089 4.0993409 1103.2765
+221463.0678372132 4.0993013 1103.3555
+221464.0678373175 4.0993013 1103.3949
+221465.0678374218 4.0993409 1103.3555
+221466.0678375261 4.0993013 1103.4147
+221467.0678376304 4.09938 1103.3949
+221468.0678377347 4.09938 1103.3555
+221469.067837839 4.09938 1103.2963
+221470.0678379433 4.09938 1103.4344
+221471.0678380476 4.09938 1103.316
+221472.0678381519 4.09938 1103.2963
+221473.0678382562 4.0993013 1103.2963
+221474.0678383606 4.09938 1103.3357
+221475.0678384649 4.0994196 1103.3752
+221476.0678385692 4.0993013 1103.3555
+221477.0678386735 4.0995378 1103.4542
+221478.0678387778 4.0993409 1103.316
+221479.0678388821 4.0994592 1103.3357
+221480.0678389864 4.0993409 1103.3357
+221481.0678390907 4.0994592 1103.3949
+221482.067839195 4.0994196 1103.2963
+221483.0678392993 4.0994592 1103.4147
+221484.0678394036 4.0994983 1103.3357
+221485.0678395079 4.0995378 1103.3357
+221486.0678396123 4.0994983 1103.2963
+221487.0678397166 4.0994592 1103.2765
+221488.0678398209 4.0994592 1103.4147
+221489.0678399252 4.0994196 1103.3555
+221490.0678400295 4.0994983 1103.3949
+221491.0678401338 4.0995378 1103.2567
+221492.0678402381 4.0995378 1103.2963
+221493.0678403424 4.099577 1103.3357
+221494.0678404467 4.099577 1103.2567
+221495.067840551 4.099577 1103.3555
+221496.0678406553 4.0996165 1103.4147
+221497.0678407596 4.0995378 1103.3949
+221498.067840864 4.0994983 1103.3357
+221499.0678409683 4.099577 1103.316
+221500.0678410726 4.0996165 1103.3752
+221501.0678411769 4.0996165 1103.3752
+221502.0678412812 4.0994983 1103.316
+221503.0678413855 4.099577 1103.3949
+221504.0678414898 4.0996952 1103.3357
+221505.0678415941 4.0996556 1103.3752
+221506.0678416984 4.099577 1103.3555
+221507.0678418027 4.0996556 1103.2567
+221508.067841907 4.099577 1103.2963
+221509.0678420113 4.0996556 1103.3555
+221510.0678421156 4.0996952 1103.3752
+221511.06784222 4.0996952 1103.316
+221512.0678423243 4.0996556 1103.4147
+221513.0678424286 4.0996952 1103.3752
+221514.0678425329 4.0996952 1103.3357
+221515.0678426372 4.0996952 1103.3555
+221516.0678427415 4.0996556 1103.4344
+221517.0678428458 4.0996556 1103.2963
+221518.0678429501 4.0998135 1103.2963
+221519.0678430544 4.0997348 1103.4344
+221520.0678431587 4.0997348 1103.4147
+221521.067843263 4.0996556 1103.316
+221522.0678433673 4.0997739 1103.3555
+221523.0678434717 4.0997348 1103.3752
+221524.067843576 4.0996952 1103.2765
+221525.0678436803 4.0998135 1103.3949
+221526.0678437846 4.0998135 1103.316
+221527.0678438889 4.0997739 1103.3949
+221528.0678439932 4.0997739 1103.3752
+221529.0678440975 4.0998526 1103.316
+221530.0678442018 4.0998135 1103.3357
+221531.0678443061 4.0998921 1103.4344
+221532.0678444104 4.0998135 1103.4542
+221533.0678445147 4.0998526 1103.3357
+221534.067844619 4.0998135 1103.3555
+221535.0678447234 4.0998526 1103.3357
+221536.0678448277 4.0998526 1103.2963
+221537.067844932 4.0998526 1103.3949
+221538.0678450363 4.0998921 1103.3357
+221539.0678451406 4.0998921 1103.3357
+221540.0678452449 4.0998921 1103.3949
+221541.0678453492 4.0998921 1103.316
+221542.0678454535 4.0998526 1103.2765
+221543.0678455578 4.0999312 1103.2963
+221544.0678456621 4.0999312 1103.3357
+221545.0678457664 4.0999708 1103.2963
+221546.0678458707 4.0999312 1103.3949
+221547.067845975 4.1001282 1103.316
+221548.0678460794 4.0998921 1103.2765
+221549.0678461837 4.0999708 1103.316
+221550.067846288 4.0999312 1103.3357
+221551.0678463923 4.0999312 1103.4344
+221552.0678464966 4.1000495 1103.2369
+221553.0678466009 4.1000099 1103.3357
+221554.0678467052 4.0999312 1103.3555
+221555.0678468095 4.1000495 1103.3752
+221556.0678469138 4.1000495 1103.316
+221557.0678470181 4.0999708 1103.3357
+221558.0678471224 4.0999708 1103.3555
+221559.0678472267 4.1000099 1103.3357
+221560.0678473311 4.1001678 1103.3752
+221561.0678474354 4.1000891 1103.3555
+221562.0678475397 4.1000099 1103.4344
+221563.067847644 4.1001678 1103.4147
+221564.0678477483 4.1000099 1103.3752
+221565.0678478526 4.1001282 1103.3555
+221566.0678479569 4.1000099 1103.3752
+221567.0678480612 4.1000495 1103.3949
+221568.0678481655 4.1000495 1103.2963
+221569.0678482698 4.1000891 1103.3555
+221570.0678483741 4.1001282 1103.3752
+221571.0678484784 4.1000891 1103.2369
+221572.0678485828 4.1001282 1103.316
+221573.0678486871 4.1002464 1103.4147
+221574.0678487914 4.1001678 1103.474
+221575.0678488957 4.1000891 1103.3752
+221576.067849 4.1001282 1103.3752
+221577.0678491043 4.1001678 1103.4147
+221578.0678492086 4.1001678 1103.3357
+221579.0678493129 4.1002464 1103.3949
+221580.0678494172 4.1002069 1103.3949
+221581.0678495215 4.1002069 1103.474
+221582.0678496258 4.1002069 1103.316
+221583.0678497301 4.1001678 1103.3949
+221584.0678498345 4.1002464 1103.3949
+221585.0678499388 4.1001678 1103.3357
+221586.0678500431 4.1001282 1103.2765
+221587.0678501474 4.1002069 1103.2369
+221588.0678502517 4.1001678 1103.3357
+221589.067850356 4.1002069 1103.3555
+221590.0678504603 4.1002464 1103.3752
+221591.0678505646 4.1002464 1103.3555
+221592.0678506689 4.1002855 1103.3357
+221593.0678507732 4.1002464 1103.4938
+221594.0678508775 4.1003251 1103.2963
+221595.0678509818 4.1002855 1103.2567
+221596.0678510861 4.1003251 1103.4147
+221597.0678511905 4.1003647 1103.3357
+221598.0678512948 4.1003251 1103.3752
+221599.0678513991 4.1003251 1103.3555
+221600.0678515034 4.1003647 1103.3357
+221601.0678516077 4.1003251 1103.2567
+221602.067851712 4.1004038 1103.3357
+221603.0678518163 4.1003647 1103.3357
+221604.0678519206 4.1002464 1103.3357
+221605.0678520249 4.1003647 1103.316
+221606.0678521292 4.1004434 1103.3555
+221607.0678522335 4.1003647 1103.4344
+221608.0678523378 4.1003251 1103.3357
+221609.0678524422 4.1003647 1103.3949
+221610.0678525465 4.1004038 1103.2963
+221611.0678526508 4.1004038 1103.3949
+221612.0678527551 4.1003647 1103.316
+221613.0678528594 4.1004434 1103.3555
+221614.0678529637 4.1004038 1103.3949
+221615.067853068 4.1004038 1103.2567
+221616.0678531723 4.1004038 1103.316
+221617.0678532766 4.1004825 1103.3555
+221618.0678533809 4.1004434 1103.3949
+221619.0678534852 4.100522 1103.3555
+221620.0678535895 4.100522 1103.2765
+221621.0678536939 4.1004825 1103.2963
+221622.0678537982 4.1005611 1103.2369
+221623.0678539025 4.1004434 1103.316
+221624.0678540068 4.1005611 1103.2765
+221625.0678541111 4.1004434 1103.3949
+221626.0678542154 4.100522 1103.2567
+221627.0678543197 4.100522 1103.316
+221628.067854424 4.1004434 1103.4147
+221629.0678545283 4.1006007 1103.316
+221630.0678546326 4.1005611 1103.3555
+221631.0678547369 4.1006007 1103.4542
+221632.0678548412 4.100522 1103.4147
+221633.0678549455 4.1005611 1103.3555
+221634.0678550499 4.1005611 1103.3949
+221635.0678551542 4.1006398 1103.4147
+221636.0678552585 4.1006007 1103.2963
+221637.0678553628 4.1006794 1103.2963
+221638.0678554671 4.1006007 1103.3555
+221639.0678555714 4.1005611 1103.4147
+221640.0678556757 4.1006398 1103.4344
+221641.06785578 4.1006794 1103.3752
+221642.0678558843 4.1006007 1103.316
+221643.0678559886 4.1006007 1103.3357
+221644.0678560929 4.100719 1103.316
+221645.0678561972 4.1006007 1103.316
+221646.0678563016 4.1006794 1103.4147
+221647.0678564059 4.100719 1103.4147
+221648.0678565102 4.1006794 1103.3357
+221649.0678566145 4.1006398 1103.316
+221650.0678567188 4.1006794 1103.3555
+221651.0678568231 4.1007581 1103.3555
+221652.0678569274 4.1007977 1103.3949
+221653.0678570317 4.100719 1103.3752
+221654.067857136 4.1006794 1103.4344
+221655.0678572403 4.1007977 1103.3555
+221656.0678573446 4.1006794 1103.3949
+221657.0678574489 4.1007581 1103.316
+221658.0678575533 4.100719 1103.4344
+221659.0678576576 4.1007581 1103.2963
+221660.0678577619 4.100719 1103.316
+221661.0678578662 4.1007581 1103.3555
+221662.0678579705 4.1006794 1103.4147
+221663.0678580748 4.1007581 1103.4147
+221664.0678581791 4.100955 1103.3555
+221665.0678582834 4.1007581 1103.316
+221666.0678583877 4.1008368 1103.3555
+221667.067858492 4.1008368 1103.2963
+221668.0678585963 4.1008368 1103.3555
+221669.0678587006 4.1007977 1103.3752
+221670.0678588049 4.1008368 1103.3555
+221671.0678589093 4.1008368 1103.3357
+221672.0678590136 4.1008763 1103.316
+221673.0678591179 4.1007977 1103.3752
+221674.0678592222 4.1008763 1103.3555
+221675.0678593265 4.1008763 1103.3555
+221676.0678594308 4.1007581 1103.2963
+221677.0678595351 4.1008763 1103.316
+221678.0678596394 4.1009154 1103.3949
+221679.0678597437 4.1008763 1103.4147
+221680.067859848 4.100955 1103.316
+221681.0678599523 4.1008763 1103.3357
+221682.0678600566 4.1009154 1103.3555
+221683.067860161 4.1009154 1103.4542
+221684.0678602653 4.1009946 1103.4542
+221685.0678603696 4.1010337 1103.2765
+221686.0678604739 4.1010337 1103.4147
+221687.0678605782 4.1008763 1103.316
+221688.0678606825 4.1011124 1103.2963
+221689.0678607868 4.100955 1103.4147
+221690.0678608911 4.1008763 1103.3949
+221691.0678609954 4.1009946 1103.3752
+221692.0678610997 4.100955 1103.3752
+221693.067861204 4.1010337 1103.316
+221694.0678613083 4.1009946 1103.3752
+221695.0678614127 4.1009946 1103.2567
+221696.067861517 4.1011519 1103.3357
+221697.0678616213 4.1010733 1103.3949
+221698.0678617256 4.1011519 1103.3949
+221699.0678618299 4.1010337 1103.4147
+221700.0678619342 4.1010337 1103.4344
+221701.0678620385 4.1011124 1103.4147
+221702.0678621428 4.1011124 1103.2765
+221703.0678622471 4.101191 1103.3752
+221704.0678623514 4.1010337 1103.3357
+221705.0678624557 4.1011124 1103.3357
+221706.06786256 4.101191 1103.4147
+221707.0678626643 4.1011124 1103.3949
+221708.0678627687 4.1010733 1103.3555
+221709.067862873 4.1012306 1103.3555
+221710.0678629773 4.1011519 1103.3949
+221711.0678630816 4.1011124 1103.474
+221712.0678631859 4.1012306 1103.3752
+221713.0678632902 4.1012306 1103.3949
+221714.0678633945 4.101191 1103.3357
+221715.0678634988 4.101191 1103.3949
+221716.0678636031 4.1012702 1103.4147
+221717.0678637074 4.101191 1103.4147
+221718.0678638117 4.1012306 1103.3555
+221719.067863916 4.101191 1103.4344
+221720.0678640204 4.1012306 1103.4344
+221721.0678641247 4.101191 1103.3555
+221722.067864229 4.1012306 1103.2963
+221723.0678643333 4.101191 1103.4344
+221724.0678644376 4.1012306 1103.4344
+221725.0678645419 4.1012306 1103.316
+221726.0678646462 4.1012306 1103.3357
+221727.0678647505 4.1013489 1103.3752
+221728.0678648548 4.1014276 1103.3949
+221729.0678649591 4.101388 1103.3949
+221730.0678650634 4.1013489 1103.4147
+221731.0678651677 4.1012306 1103.316
+221732.0678652721 4.1012702 1103.316
+221733.0678653764 4.1013489 1103.316
+221734.0678654807 4.101388 1103.4147
+221735.067865585 4.1012306 1103.3357
+221736.0678656893 4.101388 1103.3752
+221737.0678657936 4.1012702 1103.3357
+221738.0678658979 4.1013489 1103.4542
+221739.0678660022 4.1014276 1103.3752
+221740.0678661065 4.101388 1103.4147
+221741.0678662108 4.1014276 1103.3752
+221742.0678663151 4.1012306 1103.3555
+221743.0678664194 4.101388 1103.3555
+221744.0678665238 4.1013489 1103.4542
+221745.0678666281 4.1014667 1103.2765
+221746.0678667324 4.1013489 1103.2567
+221747.0678668367 4.101388 1103.3949
+221748.067866941 4.1014276 1103.3555
+221749.0678670453 4.1014276 1103.316
+221750.0678671496 4.1015062 1103.3752
+221751.0678672539 4.1014667 1103.3357
+221752.0678673582 4.1014667 1103.4147
+221753.0678674625 4.1015453 1103.3752
+221754.0678675668 4.1014667 1103.2963
+221755.0678676711 4.1015062 1103.4147
+221756.0678677754 4.1015062 1103.3555
+221757.0678678798 4.1015849 1103.3555
+221758.0678679841 4.1015062 1103.3357
+221759.0678680884 4.1015062 1103.3357
+221760.0678681927 4.1015062 1103.3357
+221761.067868297 4.1015453 1103.2963
+221762.0678684013 4.1014667 1103.316
+221763.0678685056 4.1015849 1103.2567
+221764.0678686099 4.1015062 1103.3949
+221765.0678687142 4.1015062 1103.3949
+221766.0678688185 4.1015849 1103.3357
+221767.0678689228 4.1015062 1103.4147
+221768.0678690271 4.1014667 1103.3357
+221769.0678691315 4.1015062 1103.3949
+221770.0678692358 4.1015849 1103.3555
+221771.0678693401 4.1015849 1103.2963
+221772.0678694444 4.1015453 1103.3752
+221773.0678695487 4.1016245 1103.2765
+221774.067869653 4.1015849 1103.4344
+221775.0678697573 4.1015453 1103.3752
+221776.0678698616 4.1017818 1103.316
+221777.0678699659 4.1016636 1103.316
+221778.0678700702 4.1016245 1103.3752
+221779.0678701745 4.1016636 1103.3949
+221780.0678702788 4.1016636 1103.3752
+221781.0678703832 4.1016245 1103.4344
+221782.0678704875 4.1017032 1103.4147
+221783.0678705918 4.1016636 1103.3357
+221784.0678706961 4.1016245 1103.2765
+221785.0678708004 4.1015849 1103.4344
+221786.0678709047 4.1017423 1103.3555
+221787.067871009 4.1017032 1103.2963
+221788.0678711133 4.1016636 1103.3752
+221789.0678712176 4.1016245 1103.2567
+221790.0678713219 4.1016636 1103.316
+221791.0678714262 4.1017818 1103.3752
+221792.0678715305 4.1016636 1103.316
+221793.0678716348 4.1016245 1103.3752
+221794.0678717392 4.1016636 1103.3555
+221795.0678718435 4.1017423 1103.3949
+221796.0678719478 4.1016636 1103.2963
+221797.0678720521 4.1017818 1103.3555
+221798.0678721564 4.1017423 1103.3357
+221799.0678722607 4.1017818 1103.2567
+221800.067872365 4.1017423 1103.316
+221801.0678724693 4.1018209 1103.316
+221802.0678725736 4.1018209 1103.316
+221803.0678726779 4.1017818 1103.4147
+221804.0678727822 4.1019392 1103.3555
+221805.0678728865 4.1017818 1103.2765
+221806.0678729909 4.1018209 1103.3555
+221807.0678730952 4.1017423 1103.3752
+221808.0678731995 4.1018605 1103.3949
+221809.0678733038 4.1018605 1103.2765
+221810.0678734081 4.1019001 1103.3555
+221811.0678735124 4.1018209 1103.3555
+221812.0678736167 4.1018209 1103.2765
+221813.067873721 4.1018605 1103.3555
+221814.0678738253 4.1018209 1103.3949
+221815.0678739296 4.1018209 1103.2765
+221816.0678740339 4.1019001 1103.3357
+221817.0678741382 4.1019788 1103.3555
+221818.0678742426 4.1019001 1103.4147
+221819.0678743469 4.1019001 1103.3555
+221820.0678744512 4.1019001 1103.3949
+221821.0678745555 4.1019788 1103.3357
+221822.0678746598 4.1019001 1103.2765
+221823.0678747641 4.1019392 1103.3357
+221824.0678748684 4.1019392 1103.3949
+221825.0678749727 4.1019788 1103.3752
+221826.067875077 4.1019788 1103.4542
+221827.0678751813 4.1019788 1103.3752
+221828.0678752856 4.1018605 1103.3752
+221829.0678753899 4.1019001 1103.3752
+221830.0678754942 4.1020179 1103.3555
+221831.0678755986 4.1019788 1103.3949
+221832.0678757029 4.1019392 1103.3752
+221833.0678758072 4.1020179 1103.4344
+221834.0678759115 4.1019392 1103.3949
+221835.0678760158 4.1020179 1103.3949
+221836.0678761201 4.1019788 1103.316
+221837.0678762244 4.1020179 1103.3555
+221838.0678763287 4.1020179 1103.4542
+221839.067876433 4.1020575 1103.3752
+221840.0678765373 4.1020179 1103.2963
+221841.0678766416 4.1020575 1103.2963
+221842.0678767459 4.1020575 1103.3752
+221843.0678768503 4.1019392 1103.3357
+221844.0678769546 4.1020179 1103.316
+221845.0678770589 4.1020575 1103.3555
+221846.0678771632 4.1020179 1103.3357
+221847.0678772675 4.1020575 1103.4344
+221848.0678773718 4.1020575 1103.4344
+221849.0678774761 4.1020179 1103.3555
+221850.0678775804 4.1020966 1103.3752
+221851.0678776847 4.1021361 1103.4542
+221852.067877789 4.1021752 1103.3949
+221853.0678778933 4.1020966 1103.3555
+221854.0678779976 4.1021361 1103.4344
+221855.067878102 4.1022544 1103.3949
+221856.0678782063 4.1021361 1103.4147
+221857.0678783106 4.1021361 1103.316
+221858.0678784149 4.1022148 1103.4542
+221859.0678785192 4.1021752 1103.2963
+221860.0678786235 4.1021752 1103.4938
+221861.0678787278 4.1022544 1103.2963
+221862.0678788321 4.1022544 1103.3949
+221863.0678789364 4.1021361 1103.4147
+221864.0678790407 4.1022148 1103.4147
+221865.067879145 4.1022935 1103.3357
+221866.0678792493 4.1022544 1103.3357
+221867.0678793537 4.1022148 1103.4147
+221868.067879458 4.1022148 1103.3949
+221869.0678795623 4.1022544 1103.4147
+221870.0678796666 4.1022544 1103.4147
+221871.0678797709 4.1023331 1103.4147
+221872.0678798752 4.1022544 1103.3357
+221873.0678799795 4.1023331 1103.3357
+221874.0678800838 4.1022148 1103.3555
+221875.0678801881 4.1022544 1103.4542
+221876.0678802924 4.1023331 1103.3949
+221877.0678803967 4.1023722 1103.3752
+221878.067880501 4.1022544 1103.4542
+221879.0678806053 4.1022935 1103.3949
+221880.0678807097 4.1023722 1103.4147
+221881.067880814 4.1023331 1103.3555
+221882.0678809183 4.1022148 1103.3752
+221883.0678810226 4.1023722 1103.4147
+221884.0678811269 4.1022935 1103.316
+221885.0678812312 4.1022935 1103.474
+221886.0678813355 4.1023331 1103.3555
+221887.0678814398 4.1024117 1103.4147
+221888.0678815441 4.1022935 1103.2963
+221889.0678816484 4.1023722 1103.3949
+221890.0678817527 4.1024117 1103.4344
+221891.067881857 4.1023722 1103.316
+221892.0678819614 4.1023722 1103.4344
+221893.0678820657 4.1023331 1103.4344
+221894.06788217 4.1024117 1103.3357
+221895.0678822743 4.1024508 1103.316
+221896.0678823786 4.1024117 1103.3949
+221897.0678824829 4.1024117 1103.4147
+221898.0678825872 4.1024117 1103.4147
+221899.0678826915 4.1024508 1103.4542
+221900.0678827958 4.1024117 1103.2765
+221901.0678829001 4.1024117 1103.3555
+221902.0678830044 4.1023722 1103.3357
+221903.0678831087 4.1024904 1103.3949
+221904.0678832131 4.1024508 1103.3949
+221905.0678833174 4.1024904 1103.2963
+221906.0678834217 4.10253 1103.316
+221907.067883526 4.1024904 1103.3949
+221908.0678836303 4.1024508 1103.3752
+221909.0678837346 4.1025691 1103.2963
+221910.0678838389 4.1024508 1103.3555
+221911.0678839432 4.1026478 1103.3357
+221912.0678840475 4.1024904 1103.3752
+221913.0678841518 4.1026087 1103.4147
+221914.0678842561 4.10253 1103.316
+221915.0678843604 4.1024904 1103.4147
+221916.0678844647 4.10253 1103.3357
+221917.0678845691 4.1025691 1103.3949
+221918.0678846734 4.1025691 1103.3752
+221919.0678847777 4.10253 1103.4344
+221920.067884882 4.1025691 1103.4147
+221921.0678849863 4.1026478 1103.4147
+221922.0678850906 4.1026478 1103.3357
+221923.0678851949 4.1026087 1103.3752
+221924.0678852992 4.10253 1103.4542
+221925.0678854035 4.1026478 1103.3949
+221926.0678855078 4.1025691 1103.3752
+221927.0678856121 4.1026478 1103.3949
+221928.0678857164 4.1026087 1103.3752
+221929.0678858208 4.1025691 1103.3555
+221930.0678859251 4.1026087 1103.3949
+221931.0678860294 4.1025691 1103.4147
+221932.0678861337 4.1027265 1103.4344
+221933.067886238 4.1026874 1103.4542
+221934.0678863423 4.1027265 1103.474
+221935.0678864466 4.102766 1103.4344
+221936.0678865509 4.1028051 1103.3555
+221937.0678866552 4.1025691 1103.3949
+221938.0678867595 4.1026478 1103.3752
+221939.0678868638 4.1026874 1103.3752
+221940.0678869681 4.1026874 1103.3949
+221941.0678870725 4.1027265 1103.3752
+221942.0678871768 4.1026087 1103.3752
+221943.0678872811 4.102766 1103.3949
+221944.0678873854 4.102766 1103.3752
+221945.0678874897 4.102766 1103.4147
+221946.067887594 4.1027265 1103.3357
+221947.0678876983 4.1027265 1103.3555
+221948.0678878026 4.1028051 1103.4542
+221949.0678879069 4.1027265 1103.4344
+221950.0678880112 4.1027265 1103.3357
+221951.0678881155 4.1028843 1103.3555
+221952.0678882198 4.1028447 1103.3357
+221953.0678883241 4.1028051 1103.4344
+221954.0678884285 4.1026478 1103.3357
+221955.0678885328 4.1028447 1103.3357
+221956.0678886371 4.1028051 1103.3752
+221957.0678887414 4.1028051 1103.3555
+221958.0678888457 4.1028051 1103.2963
+221959.06788895 4.1028447 1103.316
+221960.0678890543 4.1027265 1103.3752
+221961.0678891586 4.1028051 1103.3949
+221962.0678892629 4.102766 1103.3555
+221963.0678893672 4.1027265 1103.4938
+221964.0678894715 4.1028447 1103.4542
+221965.0678895758 4.102963 1103.2765
+221966.0678896802 4.1028843 1103.3357
+221967.0678897845 4.1028843 1103.316
+221968.0678898888 4.1028843 1103.3555
+221969.0678899931 4.1030021 1103.3949
+221970.0678900974 4.1028447 1103.3949
+221971.0678902017 4.1030021 1103.2963
+221972.067890306 4.1029234 1103.3555
+221973.0678904103 4.1028447 1103.3555
+221974.0678905146 4.1029234 1103.3949
+221975.0678906189 4.102963 1103.4147
+221976.0678907232 4.1028447 1103.3752
+221977.0678908275 4.102963 1103.3555
+221978.0678909319 4.102963 1103.4147
+221979.0678910362 4.1029234 1103.3949
+221980.0678911405 4.1028447 1103.3357
+221981.0678912448 4.102963 1103.3555
+221982.0678913491 4.1028447 1103.3555
+221983.0678914534 4.1029234 1103.3555
+221984.0678915577 4.102963 1103.3357
+221985.067891662 4.102963 1103.4344
+221986.0678917663 4.1029234 1103.3752
+221987.0678918706 4.1029234 1103.316
+221988.0678919749 4.1030416 1103.4147
+221989.0678920792 4.1031203 1103.3357
+221990.0678921836 4.1031203 1103.4147
+221991.0678922879 4.1030416 1103.4344
+221992.0678923922 4.1030807 1103.3752
+221993.0678924965 4.1030416 1103.3555
+221994.0678926008 4.1031203 1103.474
+221995.0678927051 4.1030807 1103.3555
+221996.0678928094 4.1030416 1103.4147
+221997.0678929137 4.1030416 1103.3949
+221998.067893018 4.1030416 1103.4147
+221999.0678931223 4.1030807 1103.3949
+222000.0678932266 4.1031599 1103.2963
+222001.0678933309 4.1031599 1103.3555
+222002.0678934352 4.1031599 1103.3949
+222003.0678935396 4.1030807 1103.4542
+222004.0678936439 4.1031203 1103.3949
+222005.0678937482 4.1031599 1103.4147
+222006.0678938525 4.1031599 1103.3555
+222007.0678939568 4.1031599 1103.3949
+222008.0678940611 4.1032386 1103.3949
+222009.0678941654 4.1031599 1103.4344
+222010.0678942697 4.1031599 1103.4344
+222011.067894374 4.1031599 1103.3752
+222012.0678944783 4.103199 1103.2963
+222013.0678945826 4.1032386 1103.3752
+222014.0678946869 4.1031203 1103.4542
+222015.0678947913 4.1031599 1103.3949
+222016.0678948956 4.103199 1103.4344
+222017.0678949999 4.1031599 1103.3949
+222018.0678951042 4.1031599 1103.3752
+222019.0678952085 4.103199 1103.4147
+222020.0678953128 4.1032386 1103.3357
+222021.0678954171 4.1031203 1103.3949
+222022.0678955214 4.1032386 1103.316
+222023.0678956257 4.1032386 1103.4344
+222024.06789573 4.103199 1103.3357
+222025.0678958343 4.1031203 1103.3752
+222026.0678959386 4.1032386 1103.4147
+222027.067896043 4.1032386 1103.3949
+222028.0678961473 4.1032386 1103.4147
+222029.0678962516 4.1033173 1103.2765
+222030.0678963559 4.1033173 1103.2765
+222031.0678964602 4.1032777 1103.3752
+222032.0678965645 4.1032386 1103.3555
+222033.0678966688 4.1032777 1103.2963
+222034.0678967731 4.103199 1103.3949
+222035.0678968774 4.1032386 1103.3752
+222036.0678969817 4.1032386 1103.316
+222037.067897086 4.103199 1103.4147
+222038.0678971903 4.1033564 1103.3752
+222039.0678972946 4.1033173 1103.316
+222040.067897399 4.1033173 1103.3949
+222041.0678975033 4.1032777 1103.3357
+222042.0678976076 4.1033959 1103.4147
+222043.0678977119 4.1032777 1103.3357
+222044.0678978162 4.1033564 1103.3949
+222045.0678979205 4.1032386 1103.4542
+222046.0678980248 4.1033564 1103.4344
+222047.0678981291 4.1033564 1103.3949
+222048.0678982334 4.1033959 1103.553
+222049.0678983377 4.1034355 1103.3752
+222050.067898442 4.1034746 1103.4147
+222051.0678985463 4.1033564 1103.4344
+222052.0678986507 4.1033959 1103.3555
+222053.067898755 4.1033959 1103.3752
+222054.0678988593 4.1033564 1103.3752
+222055.0678989636 4.1034355 1103.3752
+222056.0678990679 4.1034355 1103.3949
+222057.0678991722 4.1034746 1103.3949
+222058.0678992765 4.1034355 1103.4542
+222059.0678993808 4.1033564 1103.3949
+222060.0678994851 4.1033564 1103.4938
+222061.0678995894 4.1035929 1103.4147
+222062.0678996937 4.103632 1103.3752
+222063.067899798 4.1034746 1103.4147
+222064.0678999024 4.1034746 1103.4344
+222065.0679000067 4.1035533 1103.3357
+222066.067900111 4.1034746 1103.4344
+222067.0679002153 4.1034746 1103.3752
+222068.0679003196 4.1035533 1103.3949
+222069.0679004239 4.1034746 1103.4147
+222070.0679005282 4.1035533 1103.4344
+222071.0679006325 4.1034746 1103.2765
+222072.0679007368 4.1034355 1103.3949
+222073.0679008411 4.1034746 1103.3949
+222074.0679009454 4.1035533 1103.3555
+222075.0679010497 4.1035929 1103.3555
+222076.067901154 4.1035533 1103.3752
+222077.0679012584 4.1035929 1103.3555
+222078.0679013627 4.1035533 1103.2963
+222079.067901467 4.1036716 1103.3949
+222080.0679015713 4.103632 1103.3555
+222081.0679016756 4.1034355 1103.4147
+222082.0679017799 4.1035533 1103.3949
+222083.0679018842 4.103632 1103.3752
+222084.0679019885 4.103632 1103.316
+222085.0679020928 4.1035929 1103.3357
+222086.0679021971 4.1036716 1103.3555
+222087.0679023014 4.103632 1103.3752
+222088.0679024057 4.1035929 1103.4542
+222089.0679025101 4.1035533 1103.3752
+222090.0679026144 4.103632 1103.3555
+222091.0679027187 4.103632 1103.4147
+222092.067902823 4.103632 1103.4147
+222093.0679029273 4.1035929 1103.3949
+222094.0679030316 4.1035929 1103.3752
+222095.0679031359 4.1036716 1103.3752
+222096.0679032402 4.1036716 1103.3357
+222097.0679033445 4.1037898 1103.3555
+222098.0679034488 4.1037107 1103.2963
+222099.0679035531 4.1037107 1103.4147
+222100.0679036574 4.1037107 1103.3555
+222101.0679037618 4.1037502 1103.3752
+222102.0679038661 4.1037502 1103.3949
+222103.0679039704 4.1037107 1103.3752
+222104.0679040747 4.1037107 1103.3357
+222105.067904179 4.1037107 1103.3357
+222106.0679042833 4.1036716 1103.3357
+222107.0679043876 4.1038289 1103.3357
+222108.0679044919 4.1037502 1103.4147
+222109.0679045962 4.1038289 1103.4147
+222110.0679047005 4.1038289 1103.3949
+222111.0679048048 4.1037107 1103.3752
+222112.0679049091 4.1038685 1103.316
+222113.0679050134 4.1038289 1103.4344
+222114.0679051178 4.1038289 1103.3949
+222115.0679052221 4.1038685 1103.3949
+222116.0679053264 4.1038289 1103.4147
+222117.0679054307 4.1037107 1103.5134
+222118.067905535 4.1038289 1103.3752
+222119.0679056393 4.1038289 1103.4344
+222120.0679057436 4.1037502 1103.4147
+222121.0679058479 4.1038685 1103.4147
+222122.0679059522 4.1037898 1103.3752
+222123.0679060565 4.1038685 1103.3949
+222124.0679061608 4.1037898 1103.4344
+222125.0679062651 4.1039472 1103.3752
+222126.0679063695 4.1039076 1103.3357
+222127.0679064738 4.1037898 1103.3555
+222128.0679065781 4.1037898 1103.3357
+222129.0679066824 4.1039863 1103.3555
+222130.0679067867 4.1040258 1103.3949
+222131.067906891 4.1039076 1103.3752
+222132.0679069953 4.1039076 1103.3949
+222133.0679070996 4.1038685 1103.474
+222134.0679072039 4.1039076 1103.2963
+222135.0679073082 4.1038289 1103.4147
+222136.0679074125 4.1039472 1103.4344
+222137.0679075168 4.1039472 1103.3752
+222138.0679076212 4.1039076 1103.3949
+222139.0679077255 4.1039076 1103.3357
+222140.0679078298 4.1039076 1103.3752
+222141.0679079341 4.1039863 1103.4147
+222142.0679080384 4.1038685 1103.3357
+222143.0679081427 4.1039863 1103.3555
+222144.067908247 4.1040654 1103.3949
+222145.0679083513 4.1039863 1103.4147
+222146.0679084556 4.1039472 1103.4344
+222147.0679085599 4.1039472 1103.3357
+222148.0679086642 4.1039863 1103.3357
+222149.0679087685 4.1040258 1103.3555
+222150.0679088729 4.1040258 1103.4147
+222151.0679089772 4.1041441 1103.4344
+222152.0679090815 4.1040654 1103.4147
+222153.0679091858 4.1040258 1103.4147
+222154.0679092901 4.1040258 1103.3752
+222155.0679093944 4.1041045 1103.3357
+222156.0679094987 4.1040654 1103.4147
+222157.067909603 4.1040654 1103.3752
+222158.0679097073 4.1041045 1103.3949
+222159.0679098116 4.1041045 1103.4344
+222160.0679099159 4.1040258 1103.3752
+222161.0679100202 4.1040654 1103.3949
+222162.0679101245 4.1041441 1103.2963
+222163.0679102289 4.1041441 1103.3357
+222164.0679103332 4.1041832 1103.3357
+222165.0679104375 4.1041832 1103.3357
+222166.0679105418 4.1041045 1103.3555
+222167.0679106461 4.1041832 1103.3752
+222168.0679107504 4.1042228 1103.3752
+222169.0679108547 4.1041832 1103.3752
+222170.067910959 4.1041441 1103.3357
+222171.0679110633 4.1042228 1103.3752
+222172.0679111676 4.1041832 1103.3752
+222173.0679112719 4.1041441 1103.3949
+222174.0679113762 4.1041832 1103.3555
+222175.0679114806 4.1042228 1103.4344
+222176.0679115849 4.1042619 1103.3752
+222177.0679116892 4.1041441 1103.4147
+222178.0679117935 4.1041045 1103.4542
+222179.0679118978 4.1042228 1103.316
+222180.0679120021 4.1042228 1103.3949
+222181.0679121064 4.1043015 1103.3949
+222182.0679122107 4.1042228 1103.4542
+222183.067912315 4.1042619 1103.4147
+222184.0679124193 4.1042228 1103.4147
+222185.0679125236 4.1042228 1103.3949
+222186.0679126279 4.1043015 1103.3555
+222187.0679127323 4.1042619 1103.4344
+222188.0679128366 4.1042228 1103.3949
+222189.0679129409 4.1043015 1103.4147
+222190.0679130452 4.1042619 1103.316
+222191.0679131495 4.1043015 1103.3555
+222192.0679132538 4.1043015 1103.3949
+222193.0679133581 4.1043015 1103.3357
+222194.0679134624 4.1043801 1103.3752
+222195.0679135667 4.1042619 1103.4542
+222196.067913671 4.1042228 1103.4147
+222197.0679137753 4.1043801 1103.474
+222198.0679138796 4.1043406 1103.3555
+222199.0679139839 4.1043801 1103.3555
+222200.0679140883 4.1043406 1103.4542
+222201.0679141926 4.1043801 1103.316
+222202.0679142969 4.1044197 1103.3555
+222203.0679144012 4.1043801 1103.4147
+222204.0679145055 4.1043801 1103.3357
+222205.0679146098 4.1044984 1103.3752
+222206.0679147141 4.1043015 1103.3949
+222207.0679148184 4.1043406 1103.3357
+222208.0679149227 4.1044984 1103.3555
+222209.067915027 4.1043801 1103.3357
+222210.0679151313 4.1043015 1103.3555
+222211.0679152356 4.1043406 1103.4147
+222212.06791534 4.1043801 1103.3357
+222213.0679154443 4.1044197 1103.3752
+222214.0679155486 4.1044588 1103.3949
+222215.0679156529 4.1044197 1103.3357
+222216.0679157572 4.1045375 1103.4542
+222217.0679158615 4.1044197 1103.3752
+222218.0679159658 4.1044588 1103.3555
+222219.0679160701 4.1043406 1103.3752
+222220.0679161744 4.1045771 1103.3949
+222221.0679162787 4.1044984 1103.3949
+222222.067916383 4.1044197 1103.4344
+222223.0679164873 4.1043801 1103.3752
+222224.0679165917 4.1045771 1103.3752
+222225.067916696 4.1045375 1103.3357
+222226.0679168003 4.1045771 1103.3555
+222227.0679169046 4.1045375 1103.4147
+222228.0679170089 4.1044588 1103.3949
+222229.0679171132 4.1045375 1103.4938
+222230.0679172175 4.1045375 1103.3555
+222231.0679173218 4.1045375 1103.3752
+222232.0679174261 4.1044588 1103.316
+222233.0679175304 4.1045771 1103.3752
+222234.0679176347 4.1045375 1103.3752
+222235.067917739 4.1045771 1103.3752
+222236.0679178433 4.1046162 1103.3555
+222237.0679179477 4.1045771 1103.3357
+222238.067918052 4.1046557 1103.3752
+222239.0679181563 4.1045375 1103.2963
+222240.0679182606 4.1046557 1103.3555
+222241.0679183649 4.1045771 1103.3949
+222242.0679184692 4.1046953 1103.3949
+222243.0679185735 4.1045375 1103.3357
+222244.0679186778 4.1044984 1103.3752
+222245.0679187821 4.1046162 1103.3949
+222246.0679188864 4.1046953 1103.2963
+222247.0679189907 4.1046557 1103.4147
+222248.067919095 4.1045771 1103.3949
+222249.0679191994 4.1046557 1103.3555
+222250.0679193037 4.104774 1103.3949
+222251.067919408 4.1046953 1103.4542
+222252.0679195123 4.1046162 1103.3357
+222253.0679196166 4.1046557 1103.316
+222254.0679197209 4.1047344 1103.4147
+222255.0679198252 4.1046953 1103.316
+222256.0679199295 4.1046953 1103.3555
+222257.0679200338 4.1046953 1103.3752
+222258.0679201381 4.1047344 1103.3555
+222259.0679202424 4.104774 1103.3555
+222260.0679203467 4.1048527 1103.3555
+222261.0679204511 4.1046953 1103.3555
+222262.0679205554 4.1047344 1103.3949
+222263.0679206597 4.1047344 1103.3752
+222264.067920764 4.1047344 1103.3949
+222265.0679208683 4.1047344 1103.3752
+222266.0679209726 4.1048918 1103.3949
+222267.0679210769 4.104774 1103.3752
+222268.0679211812 4.1048918 1103.3752
+222269.0679212855 4.104774 1103.3752
+222270.0679213898 4.1048527 1103.3949
+222271.0679214941 4.1048131 1103.3752
+222272.0679215984 4.1048131 1103.3752
+222273.0679217028 4.1048131 1103.3752
+222274.0679218071 4.1048918 1103.3752
+222275.0679219114 4.1048131 1103.3949
+222276.0679220157 4.1048131 1103.4938
+222277.06792212 4.1047344 1103.3752
+222278.0679222243 4.1049314 1103.316
+222279.0679223286 4.1048131 1103.2765
+222280.0679224329 4.1048527 1103.4542
+222281.0679225372 4.1047344 1103.3752
+222282.0679226415 4.1048527 1103.4542
+222283.0679227458 4.1049314 1103.3752
+222284.0679228501 4.104774 1103.3752
+222285.0679229544 4.1049709 1103.4542
+222286.0679230588 4.1048918 1103.3752
+222287.0679231631 4.1049314 1103.4542
+222288.0679232674 4.1048527 1103.3555
+222289.0679233717 4.1049314 1103.316
+222290.067923476 4.1048527 1103.3949
+222291.0679235803 4.1048918 1103.4147
+222292.0679236846 4.1049314 1103.4147
+222293.0679237889 4.1049709 1103.3752
+222294.0679238932 4.1049314 1103.3357
+222295.0679239975 4.1049709 1103.4344
+222296.0679241018 4.1049314 1103.4344
+222297.0679242061 4.10501 1103.4344
+222298.0679243105 4.1049709 1103.316
+222299.0679244148 4.1048918 1103.3555
+222300.0679245191 4.1050496 1103.3357
+222301.0679246234 4.1051283 1103.3752
+222302.0679247277 4.1049314 1103.3949
+222303.067924832 4.1049709 1103.316
+222304.0679249363 4.10501 1103.4147
+222305.0679250406 4.10501 1103.3555
+222306.0679251449 4.1050496 1103.3752
+222307.0679252492 4.10501 1103.316
+222308.0679253535 4.1049709 1103.474
+222309.0679254578 4.1050496 1103.3752
+222310.0679255622 4.1050887 1103.3555
+222311.0679256665 4.1050887 1103.4344
+222312.0679257708 4.1051283 1103.3752
+222313.0679258751 4.1050887 1103.3949
+222314.0679259794 4.1050496 1103.4344
+222315.0679260837 4.1050887 1103.3949
+222316.067926188 4.1050887 1103.3555
+222317.0679262923 4.1051283 1103.2963
+222318.0679263966 4.1050887 1103.3752
+222319.0679265009 4.1050887 1103.316
+222320.0679266052 4.1050887 1103.3357
+222321.0679267095 4.1051283 1103.316
+222322.0679268138 4.1050887 1103.3555
+222323.0679269182 4.1051283 1103.3752
+222324.0679270225 4.1051674 1103.3752
+222325.0679271268 4.1052461 1103.474
+222326.0679272311 4.1051283 1103.4147
+222327.0679273354 4.1050887 1103.4542
+222328.0679274397 4.1051674 1103.4344
+222329.067927544 4.1050887 1103.3949
+222330.0679276483 4.1050887 1103.4147
+222331.0679277526 4.105207 1103.316
+222332.0679278569 4.1051283 1103.2963
+222333.0679279612 4.1051674 1103.3357
+222334.0679280655 4.1051674 1103.3555
+222335.0679281699 4.105207 1103.2963
+222336.0679282742 4.1053252 1103.3752
+222337.0679283785 4.1052856 1103.3555
+222338.0679284828 4.1051674 1103.316
+222339.0679285871 4.1053252 1103.4147
+222340.0679286914 4.105207 1103.3752
+222341.0679287957 4.105207 1103.3949
+222342.0679289 4.105207 1103.4147
+222343.0679290043 4.1053643 1103.3555
+222344.0679291086 4.1053643 1103.3555
+222345.0679292129 4.1052461 1103.3752
+222346.0679293172 4.1052856 1103.4147
+222347.0679294216 4.1053252 1103.2765
+222348.0679295259 4.1052856 1103.3555
+222349.0679296302 4.1053252 1103.4147
+222350.0679297345 4.1053252 1103.4147
+222351.0679298388 4.1052461 1103.3752
+222352.0679299431 4.1053252 1103.2765
+222353.0679300474 4.1053643 1103.2765
+222354.0679301517 4.1052461 1103.3949
+222355.067930256 4.1054039 1103.3949
+222356.0679303603 4.1053252 1103.4542
+222357.0679304646 4.1053252 1103.3752
+222358.0679305689 4.1053643 1103.4147
+222359.0679306732 4.1052856 1103.3357
+222360.0679307776 4.1053643 1103.3752
+222361.0679308819 4.1053643 1103.4542
+222362.0679309862 4.1054039 1103.4147
+222363.0679310905 4.1054039 1103.3357
+222364.0679311948 4.1053643 1103.4147
+222365.0679312991 4.1054039 1103.4147
+222366.0679314034 4.1053252 1103.316
+222367.0679315077 4.1053643 1103.3357
+222368.067931612 4.1054826 1103.4147
+222369.0679317163 4.1054039 1103.3949
+222370.0679318206 4.1052856 1103.4542
+222371.0679319249 4.1054039 1103.4344
+222372.0679320293 4.1053643 1103.3357
+222373.0679321336 4.1055217 1103.3752
+222374.0679322379 4.1054826 1103.2963
+222375.0679323422 4.1054826 1103.4344
+222376.0679324465 4.1055217 1103.3752
+222377.0679325508 4.1055613 1103.3555
+222378.0679326551 4.1054039 1103.3357
+222379.0679327594 4.1055217 1103.3752
+222380.0679328637 4.1055613 1103.3949
+222381.067932968 4.1055613 1103.3555
+222382.0679330723 4.1054826 1103.3752
+222383.0679331766 4.105443 1103.3357
+222384.067933281 4.1055217 1103.3752
+222385.0679333853 4.1054826 1103.4344
+222386.0679334896 4.1054826 1103.2765
+222387.0679335939 4.1056399 1103.3357
+222388.0679336982 4.1055217 1103.3752
+222389.0679338025 4.1055217 1103.316
+222390.0679339068 4.1056008 1103.4542
+222391.0679340111 4.1054826 1103.3357
+222392.0679341154 4.1054826 1103.4344
+222393.0679342197 4.1055217 1103.3555
+222394.067934324 4.1055613 1103.474
+222395.0679344283 4.1056399 1103.3949
+222396.0679345327 4.1056008 1103.3949
+222397.067934637 4.1055217 1103.3357
+222398.0679347413 4.1055613 1103.474
+222399.0679348456 4.1056008 1103.4344
+222400.0679349499 4.1055613 1103.3949
+222401.0679350542 4.1057186 1103.3555
+222402.0679351585 4.1056008 1103.2765
+222403.0679352628 4.1056008 1103.4147
+222404.0679353671 4.1055613 1103.3752
+222405.0679354714 4.1056399 1103.4542
+222406.0679355757 4.1056795 1103.316
+222407.06793568 4.1057186 1103.474
+222408.0679357843 4.1056795 1103.316
+222409.0679358887 4.1057186 1103.3357
+222410.067935993 4.1057186 1103.474
+222411.0679360973 4.1056399 1103.3949
+222412.0679362016 4.1056795 1103.4344
+222413.0679363059 4.1057582 1103.2963
+222414.0679364102 4.1056795 1103.4147
+222415.0679365145 4.1056399 1103.3357
+222416.0679366188 4.1057186 1103.3949
+222417.0679367231 4.1056795 1103.4147
+222418.0679368274 4.1056795 1103.3949
+222419.0679369317 4.1057582 1103.2963
+222420.067937036 4.1057973 1103.3752
+222421.0679371404 4.1056399 1103.3357
+222422.0679372447 4.1057973 1103.3752
+222423.067937349 4.1057582 1103.3752
+222424.0679374533 4.1058369 1103.3949
+222425.0679375576 4.105876 1103.3752
+222426.0679376619 4.1056795 1103.3555
+222427.0679377662 4.1057186 1103.3752
+222428.0679378705 4.1057973 1103.3555
+222429.0679379748 4.1058369 1103.3949
+222430.0679380791 4.1056795 1103.3949
+222431.0679381834 4.1059155 1103.3555
+222432.0679382877 4.1058369 1103.3752
+222433.0679383921 4.105876 1103.3357
+222434.0679384964 4.1058369 1103.4542
+222435.0679386007 4.1057973 1103.3949
+222436.067938705 4.105876 1103.3555
+222437.0679388093 4.1058369 1103.4938
+222438.0679389136 4.1059155 1103.316
+222439.0679390179 4.1059551 1103.316
+222440.0679391222 4.105876 1103.3752
+222441.0679392265 4.105876 1103.2765
+222442.0679393308 4.1057973 1103.3949
+222443.0679394351 4.1059155 1103.4147
+222444.0679395394 4.105876 1103.4344
+222445.0679396437 4.105876 1103.5134
+222446.0679397481 4.1059155 1103.2765
+222447.0679398524 4.1059551 1103.3555
+222448.0679399567 4.1058369 1103.3555
+222449.067940061 4.105876 1103.4147
+222450.0679401653 4.1059551 1103.4147
+222451.0679402696 4.1058369 1103.2963
+222452.0679403739 4.1059551 1103.3357
+222453.0679404782 4.1059551 1103.4542
+222454.0679405825 4.1059155 1103.3555
+222455.0679406868 4.105876 1103.3752
+222456.0679407911 4.1059551 1103.4147
+222457.0679408954 4.1059551 1103.3555
+222458.0679409998 4.1060338 1103.3555
+222459.0679411041 4.1060338 1103.3357
+222460.0679412084 4.105876 1103.3752
+222461.0679413127 4.1060729 1103.316
+222462.067941417 4.1059551 1103.3949
+222463.0679415213 4.1059942 1103.3752
+222464.0679416256 4.1059942 1103.3752
+222465.0679417299 4.1059942 1103.3555
+222466.0679418342 4.1060338 1103.3357
+222467.0679419385 4.1060338 1103.4147
+222468.0679420428 4.1060338 1103.2567
+222469.0679421471 4.1060338 1103.3357
+222470.0679422515 4.1060338 1103.3949
+222471.0679423558 4.1061125 1103.3752
+222472.0679424601 4.1060729 1103.4147
+222473.0679425644 4.1061125 1103.3555
+222474.0679426687 4.1060729 1103.3949
+222475.067942773 4.1060729 1103.316
+222476.0679428773 4.1061516 1103.316
+222477.0679429816 4.1061516 1103.4344
+222478.0679430859 4.1060729 1103.3949
+222479.0679431902 4.1061125 1103.3357
+222480.0679432945 4.1060729 1103.3752
+222481.0679433988 4.1061516 1103.4344
+222482.0679435031 4.1061516 1103.3357
+222483.0679436075 4.1061912 1103.3555
+222484.0679437118 4.1061125 1103.3949
+222485.0679438161 4.1061125 1103.3949
+222486.0679439204 4.1061912 1103.474
+222487.0679440247 4.1061516 1103.3555
+222488.067944129 4.1061516 1103.3357
+222489.0679442333 4.1061516 1103.2963
+222490.0679443376 4.1061125 1103.4344
+222491.0679444419 4.1061516 1103.3949
+222492.0679445462 4.1062307 1103.4542
+222493.0679446505 4.1060729 1103.3752
+222494.0679447548 4.1061516 1103.4147
+222495.0679448592 4.1062307 1103.3555
+222496.0679449635 4.1061912 1103.4147
+222497.0679450678 4.1061912 1103.3752
+222498.0679451721 4.1061912 1103.316
+222499.0679452764 4.1061912 1103.4542
+222500.0679453807 4.1061516 1103.3949
+222501.067945485 4.1061912 1103.316
+222502.0679455893 4.1061912 1103.3949
+222503.0679456936 4.1063485 1103.2963
+222504.0679457979 4.1061912 1103.2765
+222505.0679459022 4.1063485 1103.4147
+222506.0679460065 4.1063094 1103.3752
+222507.0679461109 4.1063485 1103.3752
+222508.0679462152 4.1062307 1103.3752
+222509.0679463195 4.1062698 1103.3752
+222510.0679464238 4.1062698 1103.3357
+222511.0679465281 4.1062698 1103.3555
+222512.0679466324 4.1063881 1103.3949
+222513.0679467367 4.1062698 1103.3357
+222514.067946841 4.1062698 1103.3555
+222515.0679469453 4.1063094 1103.3357
+222516.0679470496 4.1063485 1103.4147
+222517.0679471539 4.1064668 1103.316
+222518.0679472582 4.1063094 1103.3555
+222519.0679473626 4.1063881 1103.3357
+222520.0679474669 4.1063881 1103.4344
+222521.0679475712 4.1063881 1103.4147
+222522.0679476755 4.1063485 1103.4147
+222523.0679477798 4.1063485 1103.3752
+222524.0679478841 4.1063485 1103.3555
+222525.0679479884 4.1064272 1103.474
+222526.0679480927 4.1063094 1103.4147
+222527.067948197 4.1063485 1103.3555
+222528.0679483013 4.1063881 1103.3555
+222529.0679484056 4.1064668 1103.3555
+222530.0679485099 4.1063485 1103.3357
+222531.0679486142 4.1063881 1103.3752
+222532.0679487186 4.1064272 1103.3555
+222533.0679488229 4.1065063 1103.3357
+222534.0679489272 4.1065063 1103.4147
+222535.0679490315 4.1064668 1103.3949
+222536.0679491358 4.1064272 1103.3555
+222537.0679492401 4.1063485 1103.316
+222538.0679493444 4.1064272 1103.3752
+222539.0679494487 4.1063881 1103.4542
+222540.067949553 4.1065454 1103.3949
+222541.0679496573 4.1064272 1103.3949
+222542.0679497616 4.1065454 1103.2765
+222543.0679498659 4.1065063 1103.4147
+222544.0679499703 4.1064668 1103.2765
+222545.0679500746 4.1064668 1103.4147
+222546.0679501789 4.1065454 1103.316
+222547.0679502832 4.1066241 1103.316
+222548.0679503875 4.1065454 1103.316
+222549.0679504918 4.106585 1103.3555
+222550.0679505961 4.1065454 1103.3357
+222551.0679507004 4.1065454 1103.3949
+222552.0679508047 4.106585 1103.3752
+222553.067950909 4.1065454 1103.4147
+222554.0679510133 4.106585 1103.3949
+222555.0679511176 4.1064668 1103.4344
+222556.067951222 4.1065454 1103.316
+222557.0679513263 4.106585 1103.4344
+222558.0679514306 4.1065454 1103.4147
+222559.0679515349 4.1066637 1103.3555
+222560.0679516392 4.1066637 1103.3555
+222561.0679517435 4.1067424 1103.3752
+222562.0679518478 4.1066637 1103.3949
+222563.0679519521 4.1066241 1103.4147
+222564.0679520564 4.1066637 1103.3555
+222565.0679521607 4.1067028 1103.3555
+222566.067952265 4.1067424 1103.4344
+222567.0679523693 4.1065454 1103.3357
+222568.0679524736 4.1067028 1103.3752
+222569.067952578 4.1066241 1103.316
+222570.0679526823 4.1066241 1103.3555
+222571.0679527866 4.1066637 1103.4344
+222572.0679528909 4.1067028 1103.3949
+222573.0679529952 4.1067028 1103.316
+222574.0679530995 4.1066637 1103.4147
+222575.0679532038 4.1066241 1103.4542
+222576.0679533081 4.1067815 1103.3555
+222577.0679534124 4.1067815 1103.3752
+222578.0679535167 4.1067424 1103.4147
+222579.067953621 4.1066637 1103.3357
+222580.0679537253 4.1067424 1103.4344
+222581.0679538297 4.1066637 1103.2765
+222582.067953934 4.1067424 1103.3949
+222583.0679540383 4.1067424 1103.3357
+222584.0679541426 4.1066241 1103.3752
+222585.0679542469 4.1067028 1103.3555
+222586.0679543512 4.1067424 1103.3949
+222587.0679544555 4.1067424 1103.3949
+222588.0679545598 4.1067424 1103.3555
+222589.0679546641 4.1067028 1103.4147
+222590.0679547684 4.1067424 1103.4147
+222591.0679548727 4.1068606 1103.4344
+222592.067954977 4.1067815 1103.316
+222593.0679550814 4.1068211 1103.3357
+222594.0679551857 4.1067028 1103.4344
+222595.06795529 4.1067815 1103.2963
+222596.0679553943 4.1067424 1103.3555
+222597.0679554986 4.1067815 1103.4344
+222598.0679556029 4.1068606 1103.3555
+222599.0679557072 4.1069393 1103.3752
+222600.0679558115 4.1068211 1103.4344
+222601.0679559158 4.1068997 1103.2963
+222602.0679560201 4.1068211 1103.3752
+222603.0679561244 4.1068211 1103.4147
+222604.0679562287 4.1068211 1103.3752
+222605.067956333 4.1068997 1103.3357
+222606.0679564374 4.1068606 1103.3949
+222607.0679565417 4.1067815 1103.2567
+222608.067956646 4.1068211 1103.316
+222609.0679567503 4.1068211 1103.3949
+222610.0679568546 4.1068606 1103.3949
+222611.0679569589 4.1067815 1103.3949
+222612.0679570632 4.1068997 1103.3949
+222613.0679571675 4.1068997 1103.3357
+222614.0679572718 4.1068997 1103.3752
+222615.0679573761 4.1068606 1103.4344
+222616.0679574804 4.1069784 1103.3357
+222617.0679575847 4.1068606 1103.4938
+222618.0679576891 4.1068606 1103.3555
+222619.0679577934 4.1069393 1103.3752
+222620.0679578977 4.1069393 1103.4542
+222621.067958002 4.1069393 1103.3949
+222622.0679581063 4.1069393 1103.3357
+222623.0679582106 4.1069393 1103.4147
+222624.0679583149 4.1070571 1103.3949
+222625.0679584192 4.1069784 1103.3357
+222626.0679585235 4.107018 1103.316
+222627.0679586278 4.1069784 1103.474
+222628.0679587321 4.1069393 1103.3752
+222629.0679588364 4.1070571 1103.3949
+222630.0679589408 4.1069784 1103.3357
+222631.0679590451 4.1068997 1103.2963
+222632.0679591494 4.1069784 1103.3752
+222633.0679592537 4.1070571 1103.4147
+222634.067959358 4.107018 1103.4344
+222635.0679594623 4.1070571 1103.3357
+222636.0679595666 4.1070571 1103.3555
+222637.0679596709 4.1070967 1103.2963
+222638.0679597752 4.1070571 1103.3752
+222639.0679598795 4.1070571 1103.4147
+222640.0679599838 4.107018 1103.3752
+222641.0679600881 4.1070571 1103.3752
+222642.0679601924 4.107018 1103.3752
+222643.0679602968 4.1071362 1103.2963
+222644.0679604011 4.1070967 1103.3555
+222645.0679605054 4.1071362 1103.474
+222646.0679606097 4.1070967 1103.4344
+222647.067960714 4.1070967 1103.4344
+222648.0679608183 4.1071362 1103.3555
+222649.0679609226 4.1071754 1103.3752
+222650.0679610269 4.1072149 1103.3555
+222651.0679611312 4.1069784 1103.3949
+222652.0679612355 4.1071754 1103.3555
+222653.0679613398 4.1070571 1103.4938
+222654.0679614441 4.1071362 1103.4344
+222655.0679615485 4.1070967 1103.4147
+222656.0679616528 4.1072149 1103.3949
+222657.0679617571 4.1072149 1103.3949
+222658.0679618614 4.1072149 1103.4344
+222659.0679619657 4.1070571 1103.2963
+222660.06796207 4.1072149 1103.3752
+222661.0679621743 4.1071362 1103.4147
+222662.0679622786 4.1071754 1103.3752
+222663.0679623829 4.1071754 1103.316
+222664.0679624872 4.1072936 1103.4542
+222665.0679625915 4.1071754 1103.3555
+222666.0679626958 4.1071362 1103.3949
+222667.0679628002 4.1071754 1103.4147
+222668.0679629045 4.1072936 1103.4147
+222669.0679630088 4.107254 1103.3555
+222670.0679631131 4.1072149 1103.2963
+222671.0679632174 4.1071362 1103.2963
+222672.0679633217 4.107254 1103.2369
+222673.067963426 4.1072149 1103.316
+222674.0679635303 4.1073327 1103.4344
+222675.0679636346 4.1072149 1103.3555
+222676.0679637389 4.107254 1103.3555
+222677.0679638432 4.1071754 1103.4344
+222678.0679639475 4.1073327 1103.3752
+222679.0679640519 4.1072149 1103.316
+222680.0679641562 4.1072149 1103.4147
+222681.0679642605 4.1072936 1103.4344
+222682.0679643648 4.107254 1103.3752
+222683.0679644691 4.1072936 1103.2765
+222684.0679645734 4.1073723 1103.3555
+222685.0679646777 4.1073327 1103.3357
+222686.067964782 4.1072936 1103.4147
+222687.0679648863 4.1073723 1103.4147
+222688.0679649906 4.1073723 1103.4147
+222689.0679650949 4.1073327 1103.3555
+222690.0679651992 4.1074114 1103.3949
+222691.0679653035 4.1073723 1103.3949
+222692.0679654079 4.1074114 1103.3949
+222693.0679655122 4.1074114 1103.4147
+222694.0679656165 4.107254 1103.3357
+222695.0679657208 4.1073723 1103.3555
+222696.0679658251 4.1073723 1103.3555
+222697.0679659294 4.1073723 1103.3949
+222698.0679660337 4.1073327 1103.3555
+222699.067966138 4.107451 1103.4938
+222700.0679662423 4.1074905 1103.316
+222701.0679663466 4.1074114 1103.4344
+222702.0679664509 4.1074114 1103.316
+222703.0679665552 4.1075296 1103.3752
+222704.0679666596 4.107451 1103.3752
+222705.0679667639 4.107451 1103.316
+222706.0679668682 4.107451 1103.3949
+222707.0679669725 4.1075692 1103.316
+222708.0679670768 4.1074905 1103.3949
+222709.0679671811 4.1075296 1103.474
+222710.0679672854 4.1074905 1103.2963
+222711.0679673897 4.1074114 1103.4344
+222712.067967494 4.107451 1103.4344
+222713.0679675983 4.1074905 1103.3555
+222714.0679677026 4.1073723 1103.3949
+222715.0679678069 4.1074905 1103.3752
+222716.0679679113 4.1075296 1103.3357
+222717.0679680156 4.107451 1103.316
+222718.0679681199 4.107451 1103.4147
+222719.0679682242 4.1076083 1103.4147
+222720.0679683285 4.1074905 1103.3949
+222721.0679684328 4.1076479 1103.3357
+222722.0679685371 4.1076083 1103.4147
+222723.0679686414 4.1074905 1103.3555
+222724.0679687457 4.1075692 1103.4344
+222725.06796885 4.1076479 1103.3949
+222726.0679689543 4.107451 1103.316
+222727.0679690586 4.1074905 1103.3752
+222728.0679691629 4.1075692 1103.3555
+222729.0679692673 4.107687 1103.4542
+222730.0679693716 4.1075692 1103.4147
+222731.0679694759 4.1076083 1103.2963
+222732.0679695802 4.1075692 1103.3752
+222733.0679696845 4.1076083 1103.3357
+222734.0679697888 4.107687 1103.3949
+222735.0679698931 4.1075296 1103.2963
+222736.0679699974 4.107687 1103.4147
+222737.0679701017 4.1077662 1103.4344
+222738.067970206 4.107687 1103.3752
+222739.0679703103 4.107687 1103.3949
+222740.0679704146 4.1077662 1103.3752
+222741.067970519 4.1076479 1103.3357
+222742.0679706233 4.1076479 1103.4147
+222743.0679707276 4.1076479 1103.4147
+222744.0679708319 4.1076479 1103.3752
+222745.0679709362 4.1076479 1103.2963
+222746.0679710405 4.1076083 1103.3752
+222747.0679711448 4.1077266 1103.4147
+222748.0679712491 4.107687 1103.3949
+222749.0679713534 4.107687 1103.3949
+222750.0679714577 4.107687 1103.4542
+222751.067971562 4.107687 1103.3752
+222752.0679716663 4.1076479 1103.3752
+222753.0679717707 4.1077662 1103.4147
+222754.067971875 4.107687 1103.3555
+222755.0679719793 4.1076479 1103.316
+222756.0679720836 4.107687 1103.3555
+222757.0679721879 4.1077662 1103.3357
+222758.0679722922 4.107687 1103.3752
+222759.0679723965 4.1077662 1103.3357
+222760.0679725008 4.107687 1103.3752
+222761.0679726051 4.1077266 1103.3357
+222762.0679727094 4.1077266 1103.3752
+222763.0679728137 4.1077662 1103.4147
+222764.067972918 4.1077662 1103.2369
+222765.0679730223 4.1078448 1103.3752
+222766.0679731267 4.1077662 1103.4344
+222767.067973231 4.1077662 1103.3357
+222768.0679733353 4.1077266 1103.4542
+222769.0679734396 4.1078053 1103.4344
+222770.0679735439 4.1078053 1103.3752
+222771.0679736482 4.1078448 1103.3752
+222772.0679737525 4.1078448 1103.2963
+222773.0679738568 4.1078839 1103.4344
+222774.0679739611 4.1078448 1103.4344
+222775.0679740654 4.1077662 1103.2369
+222776.0679741697 4.1078448 1103.4542
+222777.067974274 4.1078053 1103.3555
+222778.0679743784 4.1078053 1103.3555
+222779.0679744827 4.1077662 1103.4147
+222780.067974587 4.1077662 1103.4147
+222781.0679746913 4.1080413 1103.3555
+222782.0679747956 4.1078839 1103.3555
+222783.0679748999 4.1078839 1103.4147
+222784.0679750042 4.1078839 1103.2963
+222785.0679751085 4.1078053 1103.3949
+222786.0679752128 4.1078448 1103.4147
+222787.0679753171 4.1080413 1103.3949
+222788.0679754214 4.1079235 1103.4344
+222789.0679755257 4.1080022 1103.4344
+222790.0679756301 4.1079235 1103.3949
+222791.0679757344 4.1079626 1103.4147
+222792.0679758387 4.1079626 1103.3357
+222793.067975943 4.1079235 1103.3357
+222794.0679760473 4.1079626 1103.3555
+222795.0679761516 4.1079235 1103.2963
+222796.0679762559 4.1079235 1103.3752
+222797.0679763602 4.1079235 1103.4542
+222798.0679764645 4.1079235 1103.316
+222799.0679765688 4.1081204 1103.3752
+222800.0679766731 4.1079626 1103.3949
+222801.0679767774 4.1081595 1103.2963
+222802.0679768818 4.1080022 1103.4542
+222803.0679769861 4.1080022 1103.4344
+222804.0679770904 4.1080809 1103.2963
+222805.0679771947 4.1080809 1103.3949
+222806.067977299 4.1080022 1103.4542
+222807.0679774033 4.1080413 1103.3752
+222808.0679775076 4.1080413 1103.3752
+222809.0679776119 4.1080413 1103.3949
+222810.0679777162 4.1081204 1103.3752
+222811.0679778205 4.1080809 1103.3555
+222812.0679779248 4.1079626 1103.3357
+222813.0679780291 4.1080413 1103.4147
+222814.0679781334 4.1080022 1103.2765
+222815.0679782378 4.1080413 1103.4147
+222816.0679783421 4.1081595 1103.4147
+222817.0679784464 4.1080413 1103.4344
+222818.0679785507 4.1080809 1103.3949
+222819.067978655 4.1080809 1103.4147
+222820.0679787593 4.1081204 1103.3752
+222821.0679788636 4.1081204 1103.3949
+222822.0679789679 4.1080022 1103.3949
+222823.0679790722 4.1080809 1103.316
+222824.0679791765 4.1081204 1103.316
+222825.0679792808 4.1081204 1103.4938
+222826.0679793851 4.1082382 1103.4147
+222827.0679794895 4.1081595 1103.4147
+222828.0679795938 4.1081204 1103.4147
+222829.0679796981 4.1080809 1103.3949
+222830.0679798024 4.1082382 1103.4147
+222831.0679799067 4.1081595 1103.3555
+222832.067980011 4.1081991 1103.3949
+222833.0679801153 4.1081204 1103.3949
+222834.0679802196 4.1081991 1103.316
+222835.0679803239 4.1081991 1103.4147
+222836.0679804282 4.1082778 1103.3555
+222837.0679805325 4.1081595 1103.3752
+222838.0679806368 4.1081204 1103.3752
+222839.0679807412 4.1080809 1103.3555
+222840.0679808455 4.1082778 1103.3357
+222841.0679809498 4.1083169 1103.4344
+222842.0679810541 4.1081204 1103.3752
+222843.0679811584 4.1081991 1103.3357
+222844.0679812627 4.1081595 1103.4147
+222845.067981367 4.1081991 1103.3752
+222846.0679814713 4.1082778 1103.316
+222847.0679815756 4.1082382 1103.4542
+222848.0679816799 4.1082778 1103.4344
+222849.0679817842 4.1081991 1103.3357
+222850.0679818885 4.1082778 1103.3555
+222851.0679819928 4.1082382 1103.316
+222852.0679820972 4.1082382 1103.3752
+222853.0679822015 4.1081991 1103.3949
+222854.0679823058 4.1082778 1103.3555
+222855.0679824101 4.1083169 1103.3555
+222856.0679825144 4.1081991 1103.3752
+222857.0679826187 4.1083169 1103.4147
+222858.067982723 4.1083565 1103.3949
+222859.0679828273 4.1083961 1103.3752
+222860.0679829316 4.1083565 1103.3357
+222861.0679830359 4.1083961 1103.4147
+222862.0679831402 4.1082778 1103.3949
+222863.0679832445 4.1083565 1103.3357
+222864.0679833489 4.1083565 1103.3357
+222865.0679834532 4.1083169 1103.4147
+222866.0679835575 4.1082778 1103.3752
+222867.0679836618 4.1081991 1103.4147
+222868.0679837661 4.1083961 1103.3752
+222869.0679838704 4.1084747 1103.3357
+222870.0679839747 4.1083565 1103.3949
+222871.067984079 4.1083961 1103.3752
+222872.0679841833 4.1084352 1103.3555
+222873.0679842876 4.1083961 1103.2963
+222874.0679843919 4.1084747 1103.4147
+222875.0679844962 4.1084352 1103.3949
+222876.0679846006 4.1083961 1103.4147
+222877.0679847049 4.1083565 1103.4344
+222878.0679848092 4.1083565 1103.3752
+222879.0679849135 4.1084747 1103.3357
+222880.0679850178 4.1084747 1103.3949
+222881.0679851221 4.1084747 1103.4344
+222882.0679852264 4.1084352 1103.2765
+222883.0679853307 4.1084352 1103.4147
+222884.067985435 4.1084352 1103.4147
+222885.0679855393 4.1084747 1103.3555
+222886.0679856436 4.1084352 1103.4542
+222887.0679857479 4.1084352 1103.3949
+222888.0679858522 4.1083961 1103.3357
+222889.0679859566 4.1085138 1103.4344
+222890.0679860609 4.1083961 1103.474
+222891.0679861652 4.1084352 1103.3752
+222892.0679862695 4.1085534 1103.3357
+222893.0679863738 4.1084747 1103.3357
+222894.0679864781 4.1085138 1103.2963
+222895.0679865824 4.1084747 1103.3357
+222896.0679866867 4.1084352 1103.3949
+222897.067986791 4.1085138 1103.3752
+222898.0679868953 4.1084747 1103.4542
+222899.0679869996 4.1085925 1103.3555
+222900.0679871039 4.1085138 1103.3555
+222901.0679872083 4.1085534 1103.3949
+222902.0679873126 4.1085534 1103.316
+222903.0679874169 4.1086321 1103.3555
+222904.0679875212 4.1086717 1103.3357
+222905.0679876255 4.1086321 1103.3752
+222906.0679877298 4.1085534 1103.3752
+222907.0679878341 4.1085138 1103.316
+222908.0679879384 4.1086717 1103.3752
+222909.0679880427 4.1085925 1103.3752
+222910.067988147 4.1086321 1103.3752
+222911.0679882513 4.1085925 1103.3752
+222912.0679883556 4.1085925 1103.3949
+222913.06798846 4.1086321 1103.4147
+222914.0679885643 4.1085925 1103.3949
+222915.0679886686 4.1086321 1103.4344
+222916.0679887729 4.1087108 1103.3357
+222917.0679888772 4.1085925 1103.3357
+222918.0679889815 4.1086717 1103.3555
+222919.0679890858 4.1085925 1103.3555
+222920.0679891901 4.1086717 1103.3949
+222921.0679892944 4.1085925 1103.4938
+222922.0679893987 4.1085534 1103.316
+222923.067989503 4.1086717 1103.3752
+222924.0679896073 4.1087503 1103.3555
+222925.0679897117 4.1086717 1103.3752
+222926.067989816 4.1085925 1103.4344
+222927.0679899203 4.1086717 1103.2963
+222928.0679900246 4.1086717 1103.3555
+222929.0679901289 4.1087108 1103.4344
+222930.0679902332 4.1087894 1103.3949
+222931.0679903375 4.1087108 1103.3357
+222932.0679904418 4.1086717 1103.3752
+222933.0679905461 4.1087108 1103.3555
+222934.0679906504 4.1087503 1103.3752
+222935.0679907547 4.108829 1103.3752
+222936.067990859 4.1086717 1103.4344
+222937.0679909633 4.1086717 1103.3949
+222938.0679910677 4.1087503 1103.3949
+222939.067991172 4.1087503 1103.4147
+222940.0679912763 4.1087894 1103.3357
+222941.0679913806 4.1087503 1103.3752
+222942.0679914849 4.1087894 1103.2765
+222943.0679915892 4.1086717 1103.4344
+222944.0679916935 4.1086717 1103.4147
+222945.0679917978 4.1087108 1103.3357
+222946.0679919021 4.1087108 1103.3555
+222947.0679920064 4.1088681 1103.4147
+222948.0679921107 4.1087894 1103.4542
+222949.067992215 4.1087503 1103.3949
+222950.0679923194 4.1087894 1103.4344
+222951.0679924237 4.1087894 1103.3555
+222952.067992528 4.108829 1103.4147
+222953.0679926323 4.1087894 1103.474
+222954.0679927366 4.1088681 1103.3752
+222955.0679928409 4.1089077 1103.3555
+222956.0679929452 4.108829 1103.2765
+222957.0679930495 4.108829 1103.3949
+222958.0679931538 4.1087894 1103.316
+222959.0679932581 4.108829 1103.3752
+222960.0679933624 4.1088681 1103.3949
+222961.0679934667 4.1089077 1103.3555
+222962.0679935711 4.1089077 1103.3555
+222963.0679936754 4.1089077 1103.4147
+222964.0679937797 4.1088681 1103.316
+222965.067993884 4.1087894 1103.3357
+222966.0679939883 4.1089864 1103.3752
+222967.0679940926 4.108829 1103.3357
+222968.0679941969 4.1089077 1103.3949
+222969.0679943012 4.108829 1103.3752
+222970.0679944055 4.1089864 1103.3555
+222971.0679945098 4.1089864 1103.4344
+222972.0679946141 4.1089864 1103.2963
+222973.0679947184 4.1090651 1103.3555
+222974.0679948227 4.109026 1103.316
+222975.0679949271 4.1089077 1103.3949
+222976.0679950314 4.1089864 1103.4344
+222977.0679951357 4.1090651 1103.3555
+222978.06799524 4.108829 1103.3949
+222979.0679953443 4.109026 1103.316
+222980.0679954486 4.1089468 1103.3949
+222981.0679955529 4.1089864 1103.3555
+222982.0679956572 4.1090651 1103.3949
+222983.0679957615 4.1089864 1103.4147
+222984.0679958658 4.1089468 1103.4344
+222985.0679959701 4.1089864 1103.3357
+222986.0679960744 4.1089864 1103.3555
+222987.0679961788 4.1089468 1103.3949
+222988.0679962831 4.1089468 1103.3752
+222989.0679963874 4.109026 1103.2963
+222990.0679964917 4.1090651 1103.3949
+222991.067996596 4.1090651 1103.3752
+222992.0679967003 4.1089077 1103.3357
+222993.0679968046 4.1091437 1103.3752
+222994.0679969089 4.1090651 1103.474
+222995.0679970132 4.1091437 1103.3752
+222996.0679971175 4.1090651 1103.2765
+222997.0679972218 4.1091046 1103.3555
+222998.0679973261 4.1091437 1103.2963
+222999.0679974305 4.1091046 1103.4147
+223000.0679975348 4.1090651 1103.2963
+223001.0679976391 4.1090651 1103.4938
+223002.0679977434 4.1091046 1103.4344
+223003.0679978477 4.1090651 1103.3555
+223004.067997952 4.109026 1103.4344
+223005.0679980563 4.1091437 1103.3949
+223006.0679981606 4.1089864 1103.4344
+223007.0679982649 4.1091437 1103.316
+223008.0679983692 4.1091833 1103.3949
+223009.0679984735 4.1090651 1103.3555
+223010.0679985778 4.1091833 1103.3555
+223011.0679986821 4.1093016 1103.3752
+223012.0679987865 4.1092224 1103.3752
+223013.0679988908 4.1092224 1103.3357
+223014.0679989951 4.1091833 1103.3949
+223015.0679990994 4.1091833 1103.316
+223016.0679992037 4.1091833 1103.4344
+223017.067999308 4.1092224 1103.3357
+223018.0679994123 4.1091437 1103.2369
+223019.0679995166 4.1091833 1103.2963
+223020.0679996209 4.1092224 1103.3752
+223021.0679997252 4.1091833 1103.3752
+223022.0679998295 4.1093016 1103.3949
+223023.0679999338 4.1091833 1103.3555
+223024.0680000382 4.1091437 1103.2963
+223025.0680001425 4.1093407 1103.3752
+223026.0680002468 4.1093016 1103.3752
+223027.0680003511 4.109262 1103.4147
+223028.0680004554 4.1091437 1103.3555
+223029.0680005597 4.109262 1103.4147
+223030.068000664 4.1093016 1103.2963
+223031.0680007683 4.1092224 1103.3949
+223032.0680008726 4.109262 1103.3949
+223033.0680009769 4.109262 1103.2963
+223034.0680010812 4.1092224 1103.316
+223035.0680011855 4.1093407 1103.4344
+223036.0680012899 4.109262 1103.3949
+223037.0680013942 4.109262 1103.2963
+223038.0680014985 4.109262 1103.3357
+223039.0680016028 4.1093016 1103.2963
+223040.0680017071 4.1093016 1103.4147
+223041.0680018114 4.1093407 1103.2963
+223042.0680019157 4.1093407 1103.3949
+223043.06800202 4.1093016 1103.2567
+223044.0680021243 4.1093407 1103.3555
+223045.0680022286 4.1093802 1103.3949
+223046.0680023329 4.1094193 1103.3357
+223047.0680024372 4.1093016 1103.316
+223048.0680025416 4.1093802 1103.3752
+223049.0680026459 4.1093016 1103.2567
+223050.0680027502 4.1093802 1103.3555
+223051.0680028545 4.1093802 1103.3949
+223052.0680029588 4.1093802 1103.3752
+223053.0680030631 4.1093802 1103.3555
+223054.0680031674 4.1094193 1103.2963
+223055.0680032717 4.1094589 1103.3949
+223056.068003376 4.1093016 1103.474
+223057.0680034803 4.1093802 1103.316
+223058.0680035846 4.1094589 1103.4542
+223059.0680036889 4.1094193 1103.3555
+223060.0680037932 4.1094589 1103.3949
+223061.0680038976 4.109498 1103.3949
+223062.0680040019 4.1093802 1103.4147
+223063.0680041062 4.1093802 1103.3555
+223064.0680042105 4.109498 1103.3949
+223065.0680043148 4.1094589 1103.3949
+223066.0680044191 4.1094193 1103.3949
+223067.0680045234 4.109498 1103.3357
+223068.0680046277 4.1094589 1103.4147
+223069.068004732 4.1095767 1103.3949
+223070.0680048363 4.1095767 1103.3752
+223071.0680049406 4.1096163 1103.4147
+223072.0680050449 4.109498 1103.3752
+223073.0680051493 4.1094589 1103.3949
+223074.0680052536 4.1095376 1103.316
+223075.0680053579 4.1094589 1103.3357
+223076.0680054622 4.1095376 1103.2963
+223077.0680055665 4.1094589 1103.3555
+223078.0680056708 4.1095376 1103.3555
+223079.0680057751 4.109498 1103.4344
+223080.0680058794 4.1095376 1103.4147
+223081.0680059837 4.109498 1103.4147
+223082.068006088 4.1094193 1103.3752
+223083.0680061923 4.1095376 1103.3949
+223084.0680062966 4.1095376 1103.474
+223085.068006401 4.1095376 1103.316
+223086.0680065053 4.109498 1103.4147
+223087.0680066096 4.1095376 1103.4147
+223088.0680067139 4.1095376 1103.4542
+223089.0680068182 4.1096163 1103.3555
+223090.0680069225 4.1095767 1103.4344
+223091.0680070268 4.1095376 1103.4147
+223092.0680071311 4.109498 1103.4542
+223093.0680072354 4.1095767 1103.3555
+223094.0680073397 4.1096163 1103.4147
+223095.068007444 4.1096163 1103.4147
+223096.0680075483 4.1096163 1103.3555
+223097.0680076526 4.1096559 1103.3357
+223098.068007757 4.1095376 1103.2963
+223099.0680078613 4.1096163 1103.2963
+223100.0680079656 4.1096163 1103.4147
+223101.0680080699 4.1097345 1103.3357
+223102.0680081742 4.1096559 1103.3555
+223103.0680082785 4.109695 1103.4344
+223104.0680083828 4.109695 1103.4147
+223105.0680084871 4.1095767 1103.2765
+223106.0680085914 4.109695 1103.3357
+223107.0680086957 4.1096559 1103.3555
+223108.0680088 4.1096559 1103.474
+223109.0680089043 4.1095376 1103.3357
+223110.0680090087 4.1096163 1103.3555
+223111.068009113 4.109695 1103.3752
+223112.0680092173 4.109695 1103.3555
+223113.0680093216 4.1096559 1103.3949
+223114.0680094259 4.1096163 1103.4147
+223115.0680095302 4.1097345 1103.3752
+223116.0680096345 4.1097736 1103.3555
+223117.0680097388 4.1097345 1103.3949
+223118.0680098431 4.1096559 1103.3949
+223119.0680099474 4.1098132 1103.3752
+223120.0680100517 4.1097345 1103.3949
+223121.068010156 4.1097736 1103.3949
+223122.0680102604 4.1097345 1103.4542
+223123.0680103647 4.1098132 1103.3357
+223124.068010469 4.1097345 1103.4542
+223125.0680105733 4.1097736 1103.3752
+223126.0680106776 4.1098132 1103.316
+223127.0680107819 4.1098132 1103.3949
+223128.0680108862 4.1097345 1103.3949
+223129.0680109905 4.1098132 1103.316
+223130.0680110948 4.109695 1103.4344
+223131.0680111991 4.1098523 1103.3752
+223132.0680113034 4.1098523 1103.316
+223133.0680114077 4.1097345 1103.2765
+223134.068011512 4.1097345 1103.4344
+223135.0680116164 4.1097736 1103.3949
+223136.0680117207 4.1098523 1103.316
+223137.068011825 4.1097736 1103.3555
+223138.0680119293 4.1098919 1103.3752
+223139.0680120336 4.1097736 1103.316
+223140.0680121379 4.1098132 1103.316
+223141.0680122422 4.1098523 1103.3357
+223142.0680123465 4.1099706 1103.3949
+223143.0680124508 4.1098919 1103.4542
+223144.0680125551 4.1098919 1103.4542
+223145.0680126594 4.1098523 1103.3555
+223146.0680127637 4.1098523 1103.316
+223147.0680128681 4.1099706 1103.4938
+223148.0680129724 4.1099315 1103.3752
+223149.0680130767 4.1098919 1103.3752
+223150.068013181 4.1099315 1103.3949
+223151.0680132853 4.1098523 1103.3555
+223152.0680133896 4.1099315 1103.3949
+223153.0680134939 4.1099315 1103.3555
+223154.0680135982 4.1098523 1103.3555
+223155.0680137025 4.1098523 1103.3949
+223156.0680138068 4.1099315 1103.3555
+223157.0680139111 4.1099315 1103.4147
+223158.0680140154 4.1098523 1103.474
+223159.0680141198 4.1099706 1103.4147
+223160.0680142241 4.1099315 1103.316
+223161.0680143284 4.1100492 1103.3555
+223162.0680144327 4.1099706 1103.316
+223163.068014537 4.1099706 1103.3752
+223164.0680146413 4.1099706 1103.3752
+223165.0680147456 4.1100101 1103.4938
+223166.0680148499 4.1099315 1103.4344
+223167.0680149542 4.1099706 1103.3555
+223168.0680150585 4.1100101 1103.3752
+223169.0680151628 4.1098919 1103.4147
+223170.0680152671 4.1100888 1103.316
+223171.0680153714 4.1100101 1103.4344
+223172.0680154758 4.1100888 1103.3949
+223173.0680155801 4.1099706 1103.3357
+223174.0680156844 4.1100492 1103.2963
+223175.0680157887 4.1098919 1103.3752
+223176.068015893 4.1100492 1103.3555
+223177.0680159973 4.1100492 1103.474
+223178.0680161016 4.1100888 1103.4147
+223179.0680162059 4.1101279 1103.3752
+223180.0680163102 4.1100492 1103.3949
+223181.0680164145 4.1100492 1103.3752
+223182.0680165188 4.1099706 1103.3357
+223183.0680166231 4.1100101 1103.316
+223184.0680167275 4.1100101 1103.3949
+223185.0680168318 4.1100101 1103.4147
+223186.0680169361 4.1101279 1103.3752
+223187.0680170404 4.1100888 1103.3555
+223188.0680171447 4.1101279 1103.3357
+223189.068017249 4.1101675 1103.3949
+223190.0680173533 4.1100492 1103.3949
+223191.0680174576 4.1101279 1103.3752
+223192.0680175619 4.1101675 1103.3357
+223193.0680176662 4.1100888 1103.3357
+223194.0680177705 4.1100888 1103.4147
+223195.0680178748 4.1101279 1103.4147
+223196.0680179792 4.1102071 1103.3555
+223197.0680180835 4.1102071 1103.474
+223198.0680181878 4.1100101 1103.4147
+223199.0680182921 4.1101279 1103.3949
+223200.0680183964 4.1101675 1103.3555
+223201.0680185007 4.1100888 1103.4344
+223202.068018605 4.1102462 1103.3555
+223203.0680187093 4.1101675 1103.2765
+223204.0680188136 4.1102858 1103.4147
+223205.0680189179 4.1102071 1103.3949
+223206.0680190222 4.1102071 1103.3555
+223207.0680191265 4.1102071 1103.3555
+223208.0680192309 4.1102071 1103.4147
+223209.0680193352 4.1102071 1103.3555
+223210.0680194395 4.1102462 1103.4344
+223211.0680195438 4.1102858 1103.3752
+223212.0680196481 4.1101675 1103.3752
+223213.0680197524 4.1102858 1103.4542
+223214.0680198567 4.1101675 1103.3752
+223215.068019961 4.1101279 1103.474
+223216.0680200653 4.1102071 1103.3555
+223217.0680201696 4.1102071 1103.3949
+223218.0680202739 4.1103249 1103.3752
+223219.0680203782 4.1102462 1103.4147
+223220.0680204825 4.1102462 1103.4938
+223221.0680205869 4.1102071 1103.3555
+223222.0680206912 4.1102858 1103.3949
+223223.0680207955 4.1103249 1103.3555
+223224.0680208998 4.1102462 1103.4344
+223225.0680210041 4.1102462 1103.4344
+223226.0680211084 4.1102071 1103.3752
+223227.0680212127 4.1101675 1103.3752
+223228.068021317 4.1102462 1103.474
+223229.0680214213 4.1102462 1103.4344
+223230.0680215256 4.1102462 1103.3357
+223231.0680216299 4.1102462 1103.3357
+223232.0680217342 4.1104035 1103.2963
+223233.0680218386 4.1103644 1103.2963
+223234.0680219429 4.1103249 1103.3949
+223235.0680220472 4.1103644 1103.2963
+223236.0680221515 4.1102462 1103.316
+223237.0680222558 4.1103644 1103.3752
+223238.0680223601 4.1103644 1103.4147
+223239.0680224644 4.1102858 1103.4147
+223240.0680225687 4.1102858 1103.4344
+223241.068022673 4.1103644 1103.3357
+223242.0680227773 4.1102858 1103.4147
+223243.0680228816 4.1104431 1103.4542
+223244.0680229859 4.1103249 1103.4147
+223245.0680230903 4.1103644 1103.3555
+223246.0680231946 4.1104822 1103.4344
+223247.0680232989 4.1103249 1103.4344
+223248.0680234032 4.1104431 1103.3752
+223249.0680235075 4.1103644 1103.474
+223250.0680236118 4.1103644 1103.3555
+223251.0680237161 4.1104035 1103.3752
+223252.0680238204 4.1104035 1103.4344
+223253.0680239247 4.1103644 1103.4147
+223254.068024029 4.1104035 1103.3555
+223255.0680241333 4.1103644 1103.3555
+223256.0680242376 4.1104431 1103.3949
+223257.0680243419 4.1103644 1103.4344
+223258.0680244463 4.1104431 1103.4542
+223259.0680245506 4.1104035 1103.4147
+223260.0680246549 4.1103249 1103.2963
+223261.0680247592 4.1104431 1103.3752
+223262.0680248635 4.1104822 1103.4344
+223263.0680249678 4.1105218 1103.3949
+223264.0680250721 4.1104431 1103.3949
+223265.0680251764 4.1104822 1103.3752
+223266.0680252807 4.1105218 1103.4344
+223267.068025385 4.1105218 1103.4147
+223268.0680254893 4.1105614 1103.4147
+223269.0680255936 4.1104431 1103.4344
+223270.068025698 4.1104431 1103.3555
+223271.0680258023 4.1104822 1103.3357
+223272.0680259066 4.1104822 1103.3555
+223273.0680260109 4.1105614 1103.3752
+223274.0680261152 4.1105218 1103.474
+223275.0680262195 4.1104035 1103.4344
+223276.0680263238 4.1103644 1103.3752
+223277.0680264281 4.1106005 1103.4147
+223278.0680265324 4.1104431 1103.4147
+223279.0680266367 4.1105614 1103.3949
+223280.068026741 4.1104822 1103.4147
+223281.0680268453 4.1105614 1103.4542
+223282.0680269497 4.1105218 1103.4147
+223283.068027054 4.1105614 1103.3752
+223284.0680271583 4.1105218 1103.3949
+223285.0680272626 4.1104822 1103.4147
+223286.0680273669 4.1106005 1103.3949
+223287.0680274712 4.1106005 1103.3949
+223288.0680275755 4.1105614 1103.3752
+223289.0680276798 4.1105614 1103.3555
+223290.0680277841 4.1105614 1103.3949
+223291.0680278884 4.11064 1103.3949
+223292.0680279927 4.1106005 1103.2567
+223293.068028097 4.11064 1103.316
+223294.0680282013 4.1104822 1103.4147
+223295.0680283057 4.1106005 1103.3752
+223296.06802841 4.11064 1103.3555
+223297.0680285143 4.1106005 1103.3357
+223298.0680286186 4.1106005 1103.3949
+223299.0680287229 4.1106791 1103.3752
+223300.0680288272 4.1106791 1103.3752
+223301.0680289315 4.1105614 1103.3357
+223302.0680290358 4.1107187 1103.4147
+223303.0680291401 4.1106791 1103.3752
+223304.0680292444 4.1107187 1103.3752
+223305.0680293487 4.1107187 1103.3357
+223306.068029453 4.1105614 1103.3357
+223307.0680295574 4.1106791 1103.3357
+223308.0680296617 4.11064 1103.3752
+223309.068029766 4.11064 1103.3949
+223310.0680298703 4.1105614 1103.3555
+223311.0680299746 4.1106005 1103.3752
+223312.0680300789 4.1105614 1103.3555
+223313.0680301832 4.1107187 1103.3357
+223314.0680302875 4.1106791 1103.4542
+223315.0680303918 4.1108761 1103.3949
+223316.0680304961 4.11064 1103.4344
+223317.0680306004 4.1107578 1103.4344
+223318.0680307047 4.1106791 1103.4147
+223319.0680308091 4.1107187 1103.3357
+223320.0680309134 4.1107974 1103.4147
+223321.0680310177 4.1107578 1103.4938
+223322.068031122 4.1107187 1103.3555
+223323.0680312263 4.1106791 1103.5134
+223324.0680313306 4.1107187 1103.3555
+223325.0680314349 4.1107578 1103.3357
+223326.0680315392 4.1108761 1103.3752
+223327.0680316435 4.1107974 1103.316
+223328.0680317478 4.1107578 1103.316
+223329.0680318521 4.1107974 1103.3949
+223330.0680319564 4.1107578 1103.3555
+223331.0680320608 4.1107578 1103.3752
+223332.0680321651 4.1108761 1103.3949
+223333.0680322694 4.1109943 1103.3555
+223334.0680323737 4.1107974 1103.3752
+223335.068032478 4.1108761 1103.3949
+223336.0680325823 4.1107578 1103.3555
+223337.0680326866 4.1107974 1103.3357
+223338.0680327909 4.1107578 1103.3949
+223339.0680328952 4.1108761 1103.3949
+223340.0680329995 4.110837 1103.2963
+223341.0680331038 4.1107974 1103.3555
+223342.0680332081 4.110837 1103.3555
+223343.0680333124 4.110837 1103.3752
+223344.0680334168 4.1108761 1103.3752
+223345.0680335211 4.1107578 1103.316
+223346.0680336254 4.1107974 1103.3357
+223347.0680337297 4.1109943 1103.2765
+223348.068033834 4.1109548 1103.4344
+223349.0680339383 4.1109157 1103.3949
+223350.0680340426 4.110837 1103.3555
+223351.0680341469 4.1109157 1103.3357
+223352.0680342512 4.1109157 1103.2567
+223353.0680343555 4.1109943 1103.316
+223354.0680344598 4.1109157 1103.316
+223355.0680345641 4.1109157 1103.3949
+223356.0680346685 4.110837 1103.3949
+223357.0680347728 4.1108761 1103.3949
+223358.0680348771 4.1109548 1103.3555
+223359.0680349814 4.1110334 1103.3949
+223360.0680350857 4.1108761 1103.4147
+223361.06803519 4.1109157 1103.4147
+223362.0680352943 4.1109157 1103.3752
+223363.0680353986 4.1109157 1103.3949
+223364.0680355029 4.1109548 1103.3357
+223365.0680356072 4.1109943 1103.4147
+223366.0680357115 4.1109943 1103.3752
+223367.0680358158 4.1109157 1103.3752
+223368.0680359202 4.1109943 1103.316
+223369.0680360245 4.1108761 1103.4147
+223370.0680361288 4.1109943 1103.316
+223371.0680362331 4.1109943 1103.316
+223372.0680363374 4.1109548 1103.3555
+223373.0680364417 4.1109548 1103.3949
+223374.068036546 4.1109943 1103.3752
+223375.0680366503 4.1109548 1103.3357
+223376.0680367546 4.1109943 1103.316
+223377.0680368589 4.111073 1103.3357
+223378.0680369632 4.1109943 1103.3555
+223379.0680370675 4.1111121 1103.3949
+223380.0680371718 4.111073 1103.3752
+223381.0680372762 4.1109943 1103.3555
+223382.0680373805 4.1109548 1103.4344
+223383.0680374848 4.1110334 1103.3949
+223384.0680375891 4.1111121 1103.3357
+223385.0680376934 4.111073 1103.316
+223386.0680377977 4.111073 1103.4344
+223387.068037902 4.1111913 1103.3357
+223388.0680380063 4.11127 1103.4344
+223389.0680381106 4.111073 1103.3357
+223390.0680382149 4.1111121 1103.4147
+223391.0680383192 4.1111121 1103.3357
+223392.0680384235 4.111073 1103.4542
+223393.0680385279 4.111073 1103.4344
+223394.0680386322 4.1111517 1103.4542
+223395.0680387365 4.1111121 1103.3752
+223396.0680388408 4.1111517 1103.3752
+223397.0680389451 4.1111121 1103.3752
+223398.0680390494 4.1111121 1103.3752
+223399.0680391537 4.1111121 1103.474
+223400.068039258 4.1111517 1103.3949
+223401.0680393623 4.1110334 1103.3555
+223402.0680394666 4.1111913 1103.3357
+223403.0680395709 4.1112304 1103.3357
+223404.0680396752 4.1111913 1103.4147
+223405.0680397796 4.1112304 1103.3752
+223406.0680398839 4.1111913 1103.2765
+223407.0680399882 4.1109943 1103.3949
+223408.0680400925 4.1111517 1103.3752
+223409.0680401968 4.111073 1103.4344
+223410.0680403011 4.1111913 1103.3357
+223411.0680404054 4.1112304 1103.316
+223412.0680405097 4.1111517 1103.4344
+223413.068040614 4.11127 1103.4147
+223414.0680407183 4.1112304 1103.3949
+223415.0680408226 4.11127 1103.2963
+223416.0680409269 4.1112304 1103.3357
+223417.0680410312 4.1111913 1103.4344
+223418.0680411356 4.11127 1103.4542
+223419.0680412399 4.1113091 1103.3555
+223420.0680413442 4.1112304 1103.3752
+223421.0680414485 4.11127 1103.2765
+223422.0680415528 4.1113091 1103.4344
+223423.0680416571 4.1113091 1103.3357
+223424.0680417614 4.11127 1103.3752
+223425.0680418657 4.1113091 1103.3752
+223426.06804197 4.1113091 1103.4344
+223427.0680420743 4.1113091 1103.3752
+223428.0680421786 4.1112304 1103.3357
+223429.0680422829 4.1112304 1103.2963
+223430.0680423873 4.1113091 1103.3752
+223431.0680424916 4.1113877 1103.3555
+223432.0680425959 4.1113486 1103.3555
+223433.0680427002 4.11127 1103.3357
+223434.0680428045 4.11127 1103.3949
+223435.0680429088 4.1113877 1103.4344
+223436.0680430131 4.1113091 1103.3555
+223437.0680431174 4.1113486 1103.3555
+223438.0680432217 4.1113091 1103.2963
+223439.068043326 4.1113486 1103.3555
+223440.0680434303 4.1113091 1103.316
+223441.0680435346 4.1113486 1103.2765
+223442.068043639 4.1113877 1103.3949
+223443.0680437433 4.1113486 1103.4147
+223444.0680438476 4.1113486 1103.3752
+223445.0680439519 4.111506 1103.3752
+223446.0680440562 4.11127 1103.2963
+223447.0680441605 4.1114669 1103.3949
+223448.0680442648 4.1113877 1103.3752
+223449.0680443691 4.1114273 1103.3949
+223450.0680444734 4.1113877 1103.3949
+223451.0680445777 4.1113877 1103.3752
+223452.068044682 4.1115847 1103.3357
+223453.0680447863 4.1113877 1103.316
+223454.0680448907 4.1114669 1103.316
+223455.068044995 4.1114273 1103.3555
+223456.0680450993 4.1115847 1103.3357
+223457.0680452036 4.1114273 1103.3357
+223458.0680453079 4.1114669 1103.3357
+223459.0680454122 4.1113877 1103.3357
+223460.0680455165 4.1114669 1103.3949
+223461.0680456208 4.1115847 1103.3949
+223462.0680457251 4.1114273 1103.3752
+223463.0680458294 4.1114669 1103.4147
+223464.0680459337 4.1114669 1103.4344
+223465.068046038 4.1114669 1103.3752
+223466.0680461423 4.1114669 1103.316
+223467.0680462467 4.111506 1103.3752
+223468.068046351 4.1114669 1103.4147
+223469.0680464553 4.1115456 1103.2567
+223470.0680465596 4.1114669 1103.3357
+223471.0680466639 4.1114669 1103.4147
+223472.0680467682 4.1115847 1103.3357
+223473.0680468725 4.111506 1103.3357
+223474.0680469768 4.111506 1103.3949
+223475.0680470811 4.1116633 1103.3752
+223476.0680471854 4.1115456 1103.4147
+223477.0680472897 4.1115847 1103.4147
+223478.068047394 4.1116242 1103.2765
+223479.0680474984 4.1115847 1103.3357
+223480.0680476027 4.1115847 1103.4147
+223481.068047707 4.1114669 1103.3752
+223482.0680478113 4.1115847 1103.3357
+223483.0680479156 4.1116633 1103.4938
+223484.0680480199 4.1115456 1103.3752
+223485.0680481242 4.1115456 1103.2567
+223486.0680482285 4.1116633 1103.3752
+223487.0680483328 4.1116242 1103.3752
+223488.0680484371 4.1116633 1103.2765
+223489.0680485414 4.1115847 1103.3357
+223490.0680486457 4.1116242 1103.4147
+223491.0680487501 4.1117029 1103.3752
+223492.0680488544 4.1115456 1103.3555
+223493.0680489587 4.1116242 1103.3357
+223494.068049063 4.1116633 1103.2369
+223495.0680491673 4.1115456 1103.2369
+223496.0680492716 4.111506 1103.3949
+223497.0680493759 4.1116633 1103.3949
+223498.0680494802 4.111742 1103.4147
+223499.0680495845 4.1117029 1103.3357
+223500.0680496888 4.1116633 1103.3555
+223501.0680497931 4.111742 1103.2963
+223502.0680498974 4.1116633 1103.3357
+223503.0680500017 4.1117029 1103.4147
+223504.0680501061 4.1117029 1103.3555
+223505.0680502104 4.1117029 1103.3555
+223506.0680503147 4.1116242 1103.3752
+223507.068050419 4.1117816 1103.4938
+223508.0680505233 4.1116633 1103.3357
+223509.0680506276 4.111742 1103.4344
+223510.0680507319 4.111742 1103.4147
+223511.0680508362 4.111742 1103.3752
+223512.0680509405 4.111742 1103.4344
+223513.0680510448 4.111742 1103.3752
+223514.0680511491 4.1116633 1103.3752
+223515.0680512534 4.1117029 1103.3357
+223516.0680513578 4.1116633 1103.316
+223517.0680514621 4.111742 1103.4147
+223518.0680515664 4.1117029 1103.3752
+223519.0680516707 4.1118212 1103.316
+223520.068051775 4.1117029 1103.3555
+223521.0680518793 4.1118603 1103.316
+223522.0680519836 4.1118603 1103.3949
+223523.0680520879 4.1117029 1103.4542
+223524.0680521922 4.1117029 1103.3752
+223525.0680522965 4.1117029 1103.3357
+223526.0680524008 4.1118212 1103.2963
+223527.0680525051 4.1118999 1103.3555
+223528.0680526095 4.1118212 1103.3555
+223529.0680527138 4.111742 1103.4147
+223530.0680528181 4.1118999 1103.4542
+223531.0680529224 4.1118212 1103.3555
+223532.0680530267 4.1118212 1103.3752
+223533.068053131 4.1117816 1103.316
+223534.0680532353 4.111742 1103.3752
+223535.0680533396 4.1118999 1103.4542
+223536.0680534439 4.1118999 1103.3357
+223537.0680535482 4.1118603 1103.3357
+223538.0680536525 4.1118212 1103.3752
+223539.0680537568 4.111939 1103.3357
+223540.0680538611 4.1118603 1103.4147
+223541.0680539655 4.1118999 1103.474
+223542.0680540698 4.111939 1103.3555
+223543.0680541741 4.1120176 1103.316
+223544.0680542784 4.1119785 1103.3752
+223545.0680543827 4.1118999 1103.4147
+223546.068054487 4.1118999 1103.4344
+223547.0680545913 4.1118999 1103.3949
+223548.0680546956 4.1118999 1103.4938
+223549.0680547999 4.111939 1103.4542
+223550.0680549042 4.1119785 1103.4344
+223551.0680550085 4.1118999 1103.2567
+223552.0680551128 4.1120176 1103.3752
+223553.0680552172 4.1118999 1103.3357
+223554.0680553215 4.1120176 1103.4344
+223555.0680554258 4.1120176 1103.3555
+223556.0680555301 4.1119785 1103.5332
+223557.0680556344 4.1118999 1103.3555
+223558.0680557387 4.1118603 1103.3752
+223559.068055843 4.1120176 1103.3949
+223560.0680559473 4.1119785 1103.3752
+223561.0680560516 4.111939 1103.3752
+223562.0680561559 4.1120968 1103.3949
+223563.0680562602 4.1118999 1103.3357
+223564.0680563645 4.1120572 1103.3949
+223565.0680564689 4.1120176 1103.3752
+223566.0680565732 4.1120176 1103.3555
+223567.0680566775 4.1120176 1103.3555
+223568.0680567818 4.1119785 1103.2567
+223569.0680568861 4.1119785 1103.3752
+223570.0680569904 4.1121359 1103.4542
+223571.0680570947 4.1120572 1103.4344
+223572.068057199 4.1119785 1103.4147
+223573.0680573033 4.1120176 1103.3949
+223574.0680574076 4.1120968 1103.3357
+223575.0680575119 4.1120572 1103.3752
+223576.0680576162 4.111939 1103.2963
+223577.0680577205 4.1120968 1103.4344
+223578.0680578249 4.111939 1103.316
+223579.0680579292 4.1120572 1103.3949
+223580.0680580335 4.1120968 1103.4344
+223581.0680581378 4.1120968 1103.3752
+223582.0680582421 4.1121359 1103.2765
+223583.0680583464 4.1121359 1103.316
+223584.0680584507 4.1120176 1103.4344
+223585.068058555 4.1121755 1103.3555
+223586.0680586593 4.1120968 1103.3949
+223587.0680587636 4.1119785 1103.3555
+223588.0680588679 4.1120572 1103.3357
+223589.0680589722 4.1120968 1103.4542
+223590.0680590766 4.1122146 1103.2567
+223591.0680591809 4.1120572 1103.3555
+223592.0680592852 4.1121755 1103.4344
+223593.0680593895 4.1122146 1103.3949
+223594.0680594938 4.1121359 1103.3555
+223595.0680595981 4.1122541 1103.2765
+223596.0680597024 4.1122541 1103.4147
+223597.0680598067 4.1122932 1103.2963
+223598.068059911 4.1122932 1103.3752
+223599.0680600153 4.1121755 1103.3357
+223600.0680601196 4.1122541 1103.316
+223601.0680602239 4.1121755 1103.3752
+223602.0680603283 4.1122541 1103.4938
+223603.0680604326 4.1122541 1103.2765
+223604.0680605369 4.1121359 1103.474
+223605.0680606412 4.1121755 1103.4147
+223606.0680607455 4.1122541 1103.4147
+223607.0680608498 4.1122146 1103.3949
+223608.0680609541 4.1121359 1103.3949
+223609.0680610584 4.1122541 1103.3949
+223610.0680611627 4.1123328 1103.4147
+223611.068061267 4.1121755 1103.3949
+223612.0680613713 4.1122932 1103.3357
+223613.0680614756 4.1122146 1103.3357
+223614.06806158 4.1123328 1103.3949
+223615.0680616843 4.1123328 1103.3555
+223616.0680617886 4.1122932 1103.3357
+223617.0680618929 4.1122146 1103.3752
+223618.0680619972 4.1123724 1103.3357
+223619.0680621015 4.1122932 1103.3949
+223620.0680622058 4.1122541 1103.3752
+223621.0680623101 4.1122146 1103.3357
+223622.0680624144 4.1123724 1103.3949
+223623.0680625187 4.1123328 1103.3949
+223624.068062623 4.1123724 1103.3555
+223625.0680627273 4.1123328 1103.4147
+223626.0680628316 4.1122932 1103.3357
+223627.068062936 4.1124511 1103.4344
+223628.0680630403 4.1122146 1103.3555
+223629.0680631446 4.1122932 1103.2963
+223630.0680632489 4.1123328 1103.3949
+223631.0680633532 4.1123724 1103.2963
+223632.0680634575 4.1122932 1103.3555
+223633.0680635618 4.1123724 1103.4147
+223634.0680636661 4.1124115 1103.3357
+223635.0680637704 4.1123328 1103.3949
+223636.0680638747 4.1123328 1103.474
+223637.068063979 4.1122932 1103.4344
+223638.0680640833 4.1124115 1103.4147
+223639.0680641877 4.1123328 1103.3357
+223640.068064292 4.1124115 1103.3949
+223641.0680643963 4.1124902 1103.3555
+223642.0680645006 4.1123328 1103.3752
+223643.0680646049 4.1123328 1103.3949
+223644.0680647092 4.1123328 1103.3949
+223645.0680648135 4.1123724 1103.3357
+223646.0680649178 4.1124511 1103.3949
+223647.0680650221 4.1123724 1103.3555
+223648.0680651264 4.1123724 1103.2963
+223649.0680652307 4.1125298 1103.3555
+223650.068065335 4.1124511 1103.316
+223651.0680654394 4.1124902 1103.316
+223652.0680655437 4.1124902 1103.4147
+223653.068065648 4.1124115 1103.3357
+223654.0680657523 4.1124511 1103.3752
+223655.0680658566 4.1124115 1103.4344
+223656.0680659609 4.1124511 1103.4344
+223657.0680660652 4.1124115 1103.3752
+223658.0680661695 4.1124902 1103.2963
+223659.0680662738 4.1124902 1103.316
+223660.0680663781 4.1124511 1103.2765
+223661.0680664824 4.1124902 1103.3752
+223662.0680665867 4.1125298 1103.4147
+223663.068066691 4.1126084 1103.2963
+223664.0680667954 4.1125689 1103.4344
+223665.0680668997 4.1125689 1103.3752
+223666.068067004 4.1125298 1103.3752
+223667.0680671083 4.1125298 1103.3357
+223668.0680672126 4.1125298 1103.3949
+223669.0680673169 4.1126084 1103.316
+223670.0680674212 4.1126871 1103.3555
+223671.0680675255 4.1126084 1103.3752
+223672.0680676298 4.1125689 1103.4147
+223673.0680677341 4.1126084 1103.3949
+223674.0680678384 4.1125298 1103.3357
+223675.0680679427 4.1125298 1103.3555
+223676.0680680471 4.1126084 1103.316
+223677.0680681514 4.1126871 1103.3555
+223678.0680682557 4.1124902 1103.3752
+223679.06806836 4.1125689 1103.4344
+223680.0680684643 4.1125689 1103.3555
+223681.0680685686 4.1125689 1103.3555
+223682.0680686729 4.1126475 1103.4147
+223683.0680687772 4.1126084 1103.4147
+223684.0680688815 4.1126084 1103.3949
+223685.0680689858 4.1126475 1103.4147
+223686.0680690901 4.1127267 1103.3949
+223687.0680691944 4.1125689 1103.3752
+223688.0680692988 4.1126475 1103.3752
+223689.0680694031 4.1126475 1103.3555
+223690.0680695074 4.1126871 1103.3555
+223691.0680696117 4.1126871 1103.3357
+223692.068069716 4.1127267 1103.474
+223693.0680698203 4.1127658 1103.3357
+223694.0680699246 4.1126871 1103.2963
+223695.0680700289 4.1127267 1103.3752
+223696.0680701332 4.1126475 1103.3357
+223697.0680702375 4.1126871 1103.3752
+223698.0680703418 4.1125689 1103.3555
+223699.0680704461 4.1128445 1103.3555
+223700.0680705504 4.1127658 1103.4344
+223701.0680706548 4.1128054 1103.3357
+223702.0680707591 4.1126871 1103.3555
+223703.0680708634 4.1127658 1103.3357
+223704.0680709677 4.1126084 1103.3949
+223705.068071072 4.1127267 1103.3949
+223706.0680711763 4.1127658 1103.4147
+223707.0680712806 4.1127267 1103.3357
+223708.0680713849 4.1128054 1103.4147
+223709.0680714892 4.1127658 1103.3949
+223710.0680715935 4.1128054 1103.3555
+223711.0680716978 4.1127658 1103.3752
+223712.0680718021 4.1128445 1103.3357
+223713.0680719065 4.1128445 1103.3752
+223714.0680720108 4.1128054 1103.4147
+223715.0680721151 4.1128445 1103.3752
+223716.0680722194 4.1128054 1103.474
+223717.0680723237 4.1128054 1103.4344
+223718.068072428 4.1126871 1103.4344
+223719.0680725323 4.1128445 1103.4147
+223720.0680726366 4.1128054 1103.3949
+223721.0680727409 4.1128445 1103.4344
+223722.0680728452 4.1128445 1103.3949
+223723.0680729495 4.1127658 1103.3752
+223724.0680730538 4.1128445 1103.3357
+223725.0680731582 4.1128445 1103.4344
+223726.0680732625 4.1128445 1103.3357
+223727.0680733668 4.1127658 1103.3949
+223728.0680734711 4.1129627 1103.3949
+223729.0680735754 4.1129231 1103.316
+223730.0680736797 4.112884 1103.3357
+223731.068073784 4.1128445 1103.3752
+223732.0680738883 4.1128054 1103.2963
+223733.0680739926 4.1129231 1103.3555
+223734.0680740969 4.1129627 1103.3752
+223735.0680742012 4.1129627 1103.3949
+223736.0680743055 4.1129627 1103.4344
+223737.0680744099 4.1129627 1103.3752
+223738.0680745142 4.1128445 1103.4542
+223739.0680746185 4.1128054 1103.3555
+223740.0680747228 4.1130023 1103.4344
+223741.0680748271 4.1129627 1103.3752
+223742.0680749314 4.1129231 1103.4344
+223743.0680750357 4.112884 1103.474
+223744.06807514 4.112884 1103.3357
+223745.0680752443 4.1129627 1103.3949
+223746.0680753486 4.112884 1103.3949
+223747.0680754529 4.1129231 1103.2567
+223748.0680755572 4.1128445 1103.316
+223749.0680756615 4.112884 1103.4147
+223750.0680757659 4.1129231 1103.3752
+223751.0680758702 4.1130023 1103.4147
+223752.0680759745 4.1128445 1103.3357
+223753.0680760788 4.1130023 1103.4344
+223754.0680761831 4.1130023 1103.3555
+223755.0680762874 4.1130023 1103.316
+223756.0680763917 4.1129627 1103.4542
+223757.068076496 4.1130023 1103.3555
+223758.0680766003 4.1130023 1103.3949
+223759.0680767046 4.1130414 1103.3555
+223760.0680768089 4.1130023 1103.3357
+223761.0680769132 4.113081 1103.3357
+223762.0680770176 4.1130414 1103.3357
+223763.0680771219 4.113081 1103.3357
+223764.0680772262 4.1131597 1103.3752
+223765.0680773305 4.1130414 1103.3752
+223766.0680774348 4.113081 1103.3949
+223767.0680775391 4.1131201 1103.316
+223768.0680776434 4.1131597 1103.4147
+223769.0680777477 4.113081 1103.3357
+223770.068077852 4.113081 1103.3752
+223771.0680779563 4.1130414 1103.316
+223772.0680780606 4.113081 1103.3949
+223773.0680781649 4.1131597 1103.3357
+223774.0680782693 4.1131988 1103.3357
+223775.0680783736 4.113081 1103.3752
+223776.0680784779 4.1130414 1103.3555
+223777.0680785822 4.113081 1103.3752
+223778.0680786865 4.1131201 1103.3357
+223779.0680787908 4.113081 1103.316
+223780.0680788951 4.113081 1103.316
+223781.0680789994 4.1131988 1103.4147
+223782.0680791037 4.1131597 1103.3555
+223783.068079208 4.1131201 1103.2765
+223784.0680793123 4.1131201 1103.3949
+223785.0680794166 4.1131201 1103.3752
+223786.0680795209 4.1132774 1103.3752
+223787.0680796253 4.1131988 1103.3357
+223788.0680797296 4.1132383 1103.3357
+223789.0680798339 4.1131597 1103.3752
+223790.0680799382 4.113317 1103.3949
+223791.0680800425 4.1131988 1103.3949
+223792.0680801468 4.1131988 1103.3949
+223793.0680802511 4.1131201 1103.3555
+223794.0680803554 4.1133566 1103.3752
+223795.0680804597 4.1132774 1103.4542
+223796.068080564 4.1131597 1103.4344
+223797.0680806683 4.1132383 1103.3357
+223798.0680807726 4.1132774 1103.4542
+223799.068080877 4.1132383 1103.4542
+223800.0680809813 4.1132383 1103.316
+223801.0680810856 4.1131597 1103.3357
+223802.0680811899 4.1132774 1103.4344
+223803.0680812942 4.1131988 1103.3949
+223804.0680813985 4.113317 1103.5332
+223805.0680815028 4.1132774 1103.3555
+223806.0680816071 4.1131597 1103.2765
+223807.0680817114 4.113317 1103.3949
+223808.0680818157 4.113317 1103.3555
+223809.06808192 4.1132383 1103.316
+223810.0680820243 4.1132774 1103.3752
+223811.0680821287 4.113317 1103.3949
+223812.068082233 4.1132383 1103.2963
+223813.0680823373 4.1132774 1103.3949
+223814.0680824416 4.113317 1103.3752
+223815.0680825459 4.113317 1103.3949
+223816.0680826502 4.1133957 1103.3555
+223817.0680827545 4.113317 1103.3949
+223818.0680828588 4.1132774 1103.2963
+223819.0680829631 4.1132774 1103.4147
+223820.0680830674 4.1132774 1103.4344
+223821.0680831717 4.1133957 1103.3949
+223822.068083276 4.1134353 1103.3357
+223823.0680833803 4.1134353 1103.3949
+223824.0680834847 4.1133957 1103.3555
+223825.068083589 4.113317 1103.474
+223826.0680836933 4.1134353 1103.3949
+223827.0680837976 4.1133957 1103.3949
+223828.0680839019 4.1133566 1103.3949
+223829.0680840062 4.1135139 1103.4344
+223830.0680841105 4.1133566 1103.316
+223831.0680842148 4.1134353 1103.4147
+223832.0680843191 4.1133566 1103.2765
+223833.0680844234 4.1134353 1103.2567
+223834.0680845277 4.1134353 1103.3752
+223835.068084632 4.1133566 1103.2963
+223836.0680847364 4.1133957 1103.3752
+223837.0680848407 4.1133957 1103.3752
+223838.068084945 4.1133566 1103.3752
+223839.0680850493 4.1133957 1103.316
+223840.0680851536 4.1135926 1103.3752
+223841.0680852579 4.1134744 1103.4147
+223842.0680853622 4.1134353 1103.3752
+223843.0680854665 4.1135139 1103.474
+223844.0680855708 4.113553 1103.316
+223845.0680856751 4.1134744 1103.3357
+223846.0680857794 4.1135139 1103.3555
+223847.0680858837 4.1134353 1103.3949
+223848.0680859881 4.1134353 1103.3949
+223849.0680860924 4.1133957 1103.3752
+223850.0680861967 4.1135139 1103.3949
+223851.068086301 4.113553 1103.3555
+223852.0680864053 4.113553 1103.3555
+223853.0680865096 4.113553 1103.3555
+223854.0680866139 4.1134353 1103.3357
+223855.0680867182 4.113553 1103.2963
+223856.0680868225 4.1135926 1103.3555
+223857.0680869268 4.1135139 1103.2765
+223858.0680870311 4.1135926 1103.3357
+223859.0680871354 4.1136322 1103.3949
+223860.0680872398 4.1136322 1103.4147
+223861.0680873441 4.1135926 1103.4147
+223862.0680874484 4.1136322 1103.3555
+223863.0680875527 4.1135926 1103.4147
+223864.068087657 4.1135926 1103.3555
+223865.0680877613 4.1136322 1103.3357
+223866.0680878656 4.1135926 1103.3555
+223867.0680879699 4.1136713 1103.4147
+223868.0680880742 4.1135926 1103.2567
+223869.0680881785 4.1136713 1103.3357
+223870.0680882828 4.1135926 1103.3555
+223871.0680883871 4.1135926 1103.4147
+223872.0680884914 4.1135926 1103.3357
+223873.0680885958 4.1136713 1103.3949
+223874.0680887001 4.1136322 1103.316
+223875.0680888044 4.1136322 1103.3357
+223876.0680889087 4.1135926 1103.316
+223877.068089013 4.1136713 1103.4147
+223878.0680891173 4.1137109 1103.4147
+223879.0680892216 4.1137109 1103.3949
+223880.0680893259 4.1136713 1103.3752
+223881.0680894302 4.1136713 1103.3752
+223882.0680895345 4.1136713 1103.3949
+223883.0680896388 4.1137109 1103.3752
+223884.0680897431 4.1136322 1103.3555
+223885.0680898475 4.1136322 1103.316
+223886.0680899518 4.1136713 1103.4147
+223887.0680900561 4.11375 1103.4938
+223888.0680901604 4.1137109 1103.3949
+223889.0680902647 4.1137109 1103.2765
+223890.068090369 4.1137109 1103.4147
+223891.0680904733 4.1136322 1103.4147
+223892.0680905776 4.11375 1103.3752
+223893.0680906819 4.1137896 1103.3752
+223894.0680907862 4.1137896 1103.4344
+223895.0680908905 4.1138287 1103.3357
+223896.0680909948 4.1137109 1103.3949
+223897.0680910992 4.11375 1103.3357
+223898.0680912035 4.1137896 1103.3555
+223899.0680913078 4.1137896 1103.4344
+223900.0680914121 4.11375 1103.3949
+223901.0680915164 4.11375 1103.2963
+223902.0680916207 4.1137109 1103.5134
+223903.068091725 4.1138287 1103.3752
+223904.0680918293 4.1138287 1103.2963
+223905.0680919336 4.1137109 1103.3949
+223906.0680920379 4.1138682 1103.3949
+223907.0680921422 4.11375 1103.3752
+223908.0680922465 4.11375 1103.4147
+223909.0680923508 4.1138287 1103.4542
+223910.0680924552 4.1138287 1103.4147
+223911.0680925595 4.1138287 1103.3949
+223912.0680926638 4.1138287 1103.4344
+223913.0680927681 4.1138287 1103.3949
+223914.0680928724 4.1138682 1103.3949
+223915.0680929767 4.1138682 1103.2369
+223916.068093081 4.1137896 1103.3752
+223917.0680931853 4.1138287 1103.3949
+223918.0680932896 4.11375 1103.4147
+223919.0680933939 4.1138682 1103.2963
+223920.0680934982 4.1138287 1103.2963
+223921.0680936025 4.1139078 1103.3555
+223922.0680937069 4.1137896 1103.4147
+223923.0680938112 4.1139078 1103.3949
+223924.0680939155 4.1137896 1103.3555
+223925.0680940198 4.1139078 1103.316
+223926.0680941241 4.1138682 1103.4344
+223927.0680942284 4.1139469 1103.2963
+223928.0680943327 4.1138287 1103.3949
+223929.068094437 4.1139469 1103.3555
+223930.0680945413 4.1138287 1103.316
+223931.0680946456 4.1138682 1103.3357
+223932.0680947499 4.1138682 1103.2765
+223933.0680948542 4.1140652 1103.4344
+223934.0680949586 4.1139865 1103.3949
+223935.0680950629 4.1140256 1103.3555
+223936.0680951672 4.1138682 1103.3752
+223937.0680952715 4.1139469 1103.4147
+223938.0680953758 4.1138682 1103.2765
+223939.0680954801 4.1139865 1103.2963
+223940.0680955844 4.1139469 1103.3949
+223941.0680956887 4.1139469 1103.3555
+223942.068095793 4.1139469 1103.3949
+223943.0680958973 4.1138682 1103.3752
+223944.0680960016 4.1141438 1103.3752
+223945.0680961059 4.1139469 1103.3752
+223946.0680962102 4.1139469 1103.4147
+223947.0680963146 4.1141438 1103.3752
+223948.0680964189 4.1139469 1103.3752
+223949.0680965232 4.1141043 1103.3555
+223950.0680966275 4.1140256 1103.3555
+223951.0680967318 4.1140652 1103.3357
+223952.0680968361 4.1140256 1103.3555
+223953.0680969404 4.1140652 1103.3752
+223954.0680970447 4.1141043 1103.316
+223955.068097149 4.1139865 1103.4938
+223956.0680972533 4.1141438 1103.316
+223957.0680973576 4.1141438 1103.316
+223958.0680974619 4.1140256 1103.3555
+223959.0680975663 4.1140652 1103.4147
+223960.0680976706 4.1140256 1103.3357
+223961.0680977749 4.1140652 1103.4938
+223962.0680978792 4.1140652 1103.4147
+223963.0680979835 4.1141829 1103.3357
+223964.0680980878 4.1140652 1103.4147
+223965.0680981921 4.1142225 1103.316
+223966.0680982964 4.1140652 1103.474
+223967.0680984007 4.1140652 1103.3357
+223968.068098505 4.1141043 1103.3752
+223969.0680986093 4.1141043 1103.3752
+223970.0680987136 4.1140652 1103.3949
+223971.068098818 4.1141438 1103.4147
+223972.0680989223 4.1141438 1103.3752
+223973.0680990266 4.1140652 1103.3555
+223974.0680991309 4.1141438 1103.3555
+223975.0680992352 4.1141438 1103.3555
+223976.0680993395 4.1141829 1103.3752
+223977.0680994438 4.1142621 1103.4344
+223978.0680995481 4.1140256 1103.4147
+223979.0680996524 4.1142621 1103.3949
+223980.0680997567 4.1142621 1103.3357
+223981.068099861 4.1142225 1103.316
+223982.0680999653 4.1141829 1103.3949
+223983.0681000697 4.1142225 1103.3752
+223984.068100174 4.1142225 1103.4344
+223985.0681002783 4.1142225 1103.3752
+223986.0681003826 4.1141438 1103.3357
+223987.0681004869 4.1141043 1103.4344
+223988.0681005912 4.1141829 1103.3949
+223989.0681006955 4.1143012 1103.3752
+223990.0681007998 4.1142621 1103.316
+223991.0681009041 4.1140652 1103.3949
+223992.0681010084 4.1143012 1103.3357
+223993.0681011127 4.1142225 1103.3949
+223994.068101217 4.1142621 1103.4147
+223995.0681013213 4.1141829 1103.3555
+223996.0681014257 4.1143012 1103.3949
+223997.06810153 4.1142621 1103.316
+223998.0681016343 4.1142621 1103.3949
+223999.0681017386 4.1143012 1103.474
+224000.0681018429 4.1142621 1103.4147
+224001.0681019472 4.1143012 1103.3752
+224002.0681020515 4.1142621 1103.3555
+224003.0681021558 4.1142225 1103.3949
+224004.0681022601 4.1142621 1103.3949
+224005.0681023644 4.1144195 1103.3949
+224006.0681024687 4.1143012 1103.316
+224007.068102573 4.1143799 1103.316
+224008.0681026774 4.1143408 1103.3555
+224009.0681027817 4.1143012 1103.4147
+224010.068102886 4.1143408 1103.3752
+224011.0681029903 4.1142621 1103.3752
+224012.0681030946 4.1142621 1103.3949
+224013.0681031989 4.1143799 1103.3752
+224014.0681033032 4.1143799 1103.4542
+224015.0681034075 4.1143799 1103.2765
+224016.0681035118 4.1144195 1103.3357
+224017.0681036161 4.1143408 1103.4542
+224018.0681037204 4.1144586 1103.4542
+224019.0681038247 4.1144586 1103.4147
+224020.0681039291 4.1144195 1103.3752
+224021.0681040334 4.1144195 1103.316
+224022.0681041377 4.1143799 1103.4147
+224023.068104242 4.1143799 1103.2963
+224024.0681043463 4.1143799 1103.3555
+224025.0681044506 4.1145377 1103.4147
+224026.0681045549 4.1144981 1103.3949
+224027.0681046592 4.1144195 1103.3752
+224028.0681047635 4.1144586 1103.3555
+224029.0681048678 4.1143799 1103.4542
+224030.0681049721 4.1144195 1103.3555
+224031.0681050764 4.1144586 1103.4147
+224032.0681051807 4.1143408 1103.4542
+224033.0681052851 4.1144195 1103.3555
+224034.0681053894 4.1144981 1103.4344
+224035.0681054937 4.1145768 1103.4147
+224036.068105598 4.1144195 1103.3949
+224037.0681057023 4.1144981 1103.4542
+224038.0681058066 4.1144981 1103.474
+224039.0681059109 4.1144195 1103.2963
+224040.0681060152 4.1144981 1103.3357
+224041.0681061195 4.1145768 1103.4344
+224042.0681062238 4.1145768 1103.316
+224043.0681063281 4.1145377 1103.2765
+224044.0681064324 4.1144586 1103.4147
+224045.0681065368 4.1145377 1103.3555
+224046.0681066411 4.1145377 1103.3752
+224047.0681067454 4.1145768 1103.4344
+224048.0681068497 4.1144586 1103.3555
+224049.068106954 4.1145768 1103.3949
+224050.0681070583 4.1146164 1103.3949
+224051.0681071626 4.1145377 1103.3357
+224052.0681072669 4.1145768 1103.3357
+224053.0681073712 4.1145377 1103.3949
+224054.0681074755 4.1146164 1103.3752
+224055.0681075798 4.1144981 1103.3949
+224056.0681076841 4.1146951 1103.316
+224057.0681077885 4.1146555 1103.3752
+224058.0681078928 4.1146555 1103.3555
+224059.0681079971 4.1146164 1103.3752
+224060.0681081014 4.1146164 1103.3752
+224061.0681082057 4.1146555 1103.3555
+224062.06810831 4.1146555 1103.3357
+224063.0681084143 4.1146951 1103.4344
+224064.0681085186 4.1146164 1103.4147
+224065.0681086229 4.1147738 1103.3949
+224066.0681087272 4.1146555 1103.4147
+224067.0681088315 4.1146555 1103.3555
+224068.0681089358 4.1147738 1103.3949
+224069.0681090401 4.1146555 1103.3357
+224070.0681091445 4.1146951 1103.4147
+224071.0681092488 4.1146555 1103.4147
+224072.0681093531 4.1146951 1103.3555
+224073.0681094574 4.1147738 1103.3752
+224074.0681095617 4.1146164 1103.2567
+224075.068109666 4.1147342 1103.4147
+224076.0681097703 4.1148129 1103.3949
+224077.0681098746 4.1147738 1103.3357
+224078.0681099789 4.1146951 1103.3949
+224079.0681100832 4.1146951 1103.4344
+224080.0681101875 4.1146555 1103.3752
+224081.0681102918 4.1147738 1103.4344
+224082.0681103962 4.1147342 1103.3357
+224083.0681105005 4.1147342 1103.4344
+224084.0681106048 4.1148524 1103.3949
+224085.0681107091 4.1146951 1103.3949
+224086.0681108134 4.1147738 1103.3949
+224087.0681109177 4.1147342 1103.2963
+224088.068111022 4.1148129 1103.2765
+224089.0681111263 4.1147738 1103.3752
+224090.0681112306 4.1148524 1103.3357
+224091.0681113349 4.1147738 1103.3555
+224092.0681114392 4.1147342 1103.3949
+224093.0681115435 4.1148129 1103.3949
+224094.0681116479 4.1147738 1103.316
+224095.0681117522 4.1147342 1103.3555
+224096.0681118565 4.1147738 1103.4344
+224097.0681119608 4.1148524 1103.3555
+224098.0681120651 4.1148524 1103.3555
+224099.0681121694 4.1148524 1103.3555
+224100.0681122737 4.114892 1103.4147
+224101.068112378 4.1148129 1103.3555
+224102.0681124823 4.1149707 1103.4147
+224103.0681125866 4.1149311 1103.4147
+224104.0681126909 4.1148524 1103.3555
+224105.0681127952 4.1148129 1103.3949
+224106.0681128995 4.1147738 1103.3555
+224107.0681130039 4.1149311 1103.2765
+224108.0681131082 4.1148524 1103.3357
+224109.0681132125 4.1149311 1103.4344
+224110.0681133168 4.1148524 1103.2963
+224111.0681134211 4.1148524 1103.3357
+224112.0681135254 4.1149311 1103.2567
+224113.0681136297 4.1148524 1103.3752
+224114.068113734 4.114892 1103.3949
+224115.0681138383 4.1148524 1103.2963
+224116.0681139426 4.1148129 1103.2963
+224117.0681140469 4.1149707 1103.3555
+224118.0681141512 4.1149311 1103.2765
+224119.0681142556 4.1150494 1103.3752
+224120.0681143599 4.1149311 1103.3555
+224121.0681144642 4.1150885 1103.3949
+224122.0681145685 4.1149311 1103.3949
+224123.0681146728 4.1150098 1103.4542
+224124.0681147771 4.114892 1103.3357
+224125.0681148814 4.1150098 1103.4147
+224126.0681149857 4.1150098 1103.4147
+224127.06811509 4.1150098 1103.3752
+224128.0681151943 4.1150098 1103.4344
+224129.0681152986 4.1150885 1103.2963
+224130.0681154029 4.1150098 1103.4938
+224131.0681155073 4.1150098 1103.4147
+224132.0681156116 4.1149707 1103.3555
+224133.0681157159 4.1150098 1103.3949
+224134.0681158202 4.1150494 1103.3752
+224135.0681159245 4.1150098 1103.3555
+224136.0681160288 4.1150494 1103.3949
+224137.0681161331 4.1150494 1103.3357
+224138.0681162374 4.1150098 1103.4147
+224139.0681163417 4.1150098 1103.4542
+224140.068116446 4.1150494 1103.3357
+224141.0681165503 4.1150098 1103.3555
+224142.0681166546 4.1150494 1103.316
+224143.068116759 4.1150098 1103.316
+224144.0681168633 4.1150494 1103.3949
+224145.0681169676 4.1150494 1103.3752
+224146.0681170719 4.1151676 1103.4344
+224147.0681171762 4.115128 1103.3752
+224148.0681172805 4.1150098 1103.3555
+224149.0681173848 4.1151676 1103.3752
+224150.0681174891 4.1152067 1103.3949
+224151.0681175934 4.115128 1103.3555
+224152.0681176977 4.115128 1103.3949
+224153.068117802 4.1152067 1103.2963
+224154.0681179063 4.1150885 1103.4542
+224155.0681180106 4.1152067 1103.2765
+224156.068118115 4.1151676 1103.316
+224157.0681182193 4.1151676 1103.3357
+224158.0681183236 4.1150494 1103.3555
+224159.0681184279 4.1151676 1103.3752
+224160.0681185322 4.1151676 1103.3357
+224161.0681186365 4.115128 1103.3752
+224162.0681187408 4.115128 1103.3752
+224163.0681188451 4.1151676 1103.3752
+224164.0681189494 4.1151676 1103.316
+224165.0681190537 4.1152067 1103.3949
+224166.068119158 4.1152067 1103.316
+224167.0681192623 4.115128 1103.316
+224168.0681193667 4.1152854 1103.3555
+224169.068119471 4.1152067 1103.3752
+224170.0681195753 4.1152463 1103.3949
+224171.0681196796 4.1152854 1103.3752
+224172.0681197839 4.1152463 1103.3752
+224173.0681198882 4.115325 1103.2765
+224174.0681199925 4.1152854 1103.3555
+224175.0681200968 4.1152463 1103.3555
+224176.0681202011 4.115325 1103.4542
+224177.0681203054 4.115325 1103.3555
+224178.0681204097 4.115325 1103.4542
+224179.068120514 4.1153641 1103.3949
+224180.0681206184 4.1152067 1103.3357
+224181.0681207227 4.1152854 1103.3949
+224182.068120827 4.115325 1103.3949
+224183.0681209313 4.1152854 1103.3555
+224184.0681210356 4.1153641 1103.4542
+224185.0681211399 4.1152067 1103.3357
+224186.0681212442 4.1152463 1103.3752
+224187.0681213485 4.1152854 1103.3357
+224188.0681214528 4.115325 1103.3752
+224189.0681215571 4.115325 1103.3752
+224190.0681216614 4.1152854 1103.474
+224191.0681217657 4.1152463 1103.3752
+224192.06812187 4.115325 1103.3949
+224193.0681219744 4.1153641 1103.3752
+224194.0681220787 4.115325 1103.4344
+224195.068122183 4.1153641 1103.3555
+224196.0681222873 4.1153641 1103.4147
+224197.0681223916 4.1153641 1103.3752
+224198.0681224959 4.1154037 1103.3555
+224199.0681226002 4.115325 1103.3752
+224200.0681227045 4.115325 1103.2765
+224201.0681228088 4.1153641 1103.3357
+224202.0681229131 4.115325 1103.3752
+224203.0681230174 4.1154037 1103.2765
+224204.0681231217 4.1154428 1103.3555
+224205.0681232261 4.115325 1103.3752
+224206.0681233304 4.1154823 1103.3949
+224207.0681234347 4.1154037 1103.3357
+224208.068123539 4.1154037 1103.3949
+224209.0681236433 4.1154428 1103.3949
+224210.0681237476 4.1154823 1103.4147
+224211.0681238519 4.1154037 1103.3357
+224212.0681239562 4.1155219 1103.3949
+224213.0681240605 4.1154823 1103.3555
+224214.0681241648 4.1154428 1103.3949
+224215.0681242691 4.1154823 1103.3357
+224216.0681243734 4.1154428 1103.3949
+224217.0681244778 4.1154428 1103.4344
+224218.0681245821 4.1155219 1103.3752
+224219.0681246864 4.1154428 1103.3949
+224220.0681247907 4.1154428 1103.316
+224221.068124895 4.1154823 1103.3357
+224222.0681249993 4.1154823 1103.3752
+224223.0681251036 4.1154823 1103.4344
+224224.0681252079 4.1154037 1103.3949
+224225.0681253122 4.1154037 1103.3752
+224226.0681254165 4.1156006 1103.474
+224227.0681255208 4.1154823 1103.4147
+224228.0681256251 4.1155219 1103.3555
+224229.0681257294 4.1155219 1103.4147
+224230.0681258338 4.1154823 1103.4344
+224231.0681259381 4.1155219 1103.3949
+224232.0681260424 4.115561 1103.3357
+224233.0681261467 4.1155219 1103.4344
+224234.068126251 4.1154823 1103.2963
+224235.0681263553 4.1156397 1103.3555
+224236.0681264596 4.1156006 1103.3357
+224237.0681265639 4.1156793 1103.3949
+224238.0681266682 4.1156006 1103.4344
+224239.0681267725 4.115561 1103.3949
+224240.0681268768 4.1155219 1103.3752
+224241.0681269811 4.115561 1103.4147
+224242.0681270855 4.1156793 1103.3752
+224243.0681271898 4.1157184 1103.3949
+224244.0681272941 4.1156006 1103.3555
+224245.0681273984 4.1156006 1103.316
+224246.0681275027 4.1156006 1103.4147
+224247.068127607 4.1156397 1103.4344
+224248.0681277113 4.1156006 1103.3555
+224249.0681278156 4.1156793 1103.3949
+224250.0681279199 4.1156793 1103.3752
+224251.0681280242 4.1156397 1103.3752
+224252.0681281285 4.1157184 1103.3949
+224253.0681282328 4.1156793 1103.4147
+224254.0681283372 4.1156793 1103.316
+224255.0681284415 4.1156793 1103.3555
+224256.0681285458 4.1157579 1103.3949
+224257.0681286501 4.1156397 1103.4344
+224258.0681287544 4.1157579 1103.3949
+224259.0681288587 4.1157975 1103.3949
+224260.068128963 4.1156793 1103.4938
+224261.0681290673 4.1157579 1103.316
+224262.0681291716 4.1157184 1103.2963
+224263.0681292759 4.1157184 1103.4147
+224264.0681293802 4.1157579 1103.2765
+224265.0681294845 4.1157579 1103.3949
+224266.0681295889 4.1157579 1103.3555
+224267.0681296932 4.1157975 1103.4147
+224268.0681297975 4.1157975 1103.3555
+224269.0681299018 4.1157184 1103.3357
+224270.0681300061 4.1157184 1103.3555
+224271.0681301104 4.1157975 1103.3357
+224272.0681302147 4.1157975 1103.3752
+224273.068130319 4.1158366 1103.3752
+224274.0681304233 4.1158762 1103.3555
+224275.0681305276 4.1157975 1103.316
+224276.0681306319 4.1158366 1103.3949
+224277.0681307362 4.1158366 1103.3949
+224278.0681308405 4.1157975 1103.3949
+224279.0681309449 4.1157975 1103.3752
+224280.0681310492 4.1157579 1103.2567
+224281.0681311535 4.1157975 1103.2963
+224282.0681312578 4.1157975 1103.4147
+224283.0681313621 4.1157184 1103.3949
+224284.0681314664 4.1158366 1103.3357
+224285.0681315707 4.1158366 1103.3357
+224286.068131675 4.1159153 1103.3357
+224287.0681317793 4.1158366 1103.4147
+224288.0681318836 4.1158762 1103.3949
+224289.0681319879 4.1157975 1103.3752
+224290.0681320922 4.1157579 1103.2963
+224291.0681321966 4.1158762 1103.3949
+224292.0681323009 4.1158366 1103.3752
+224293.0681324052 4.1158762 1103.3357
+224294.0681325095 4.1158762 1103.4147
+224295.0681326138 4.1159549 1103.3752
+224296.0681327181 4.1159153 1103.2963
+224297.0681328224 4.1158366 1103.3357
+224298.0681329267 4.1159153 1103.3949
+224299.068133031 4.115994 1103.4542
+224300.0681331353 4.1158762 1103.3752
+224301.0681332396 4.115994 1103.4344
+224302.0681333439 4.1159549 1103.4147
+224303.0681334483 4.115994 1103.4344
+224304.0681335526 4.115994 1103.3752
+224305.0681336569 4.1159153 1103.3949
+224306.0681337612 4.1159153 1103.316
+224307.0681338655 4.1161122 1103.3752
+224308.0681339698 4.1159153 1103.3555
+224309.0681340741 4.115994 1103.3949
+224310.0681341784 4.1159549 1103.3949
+224311.0681342827 4.1160336 1103.4344
+224312.068134387 4.1159153 1103.4542
+224313.0681344913 4.1160731 1103.3949
+224314.0681345956 4.1160336 1103.4147
+224315.0681346999 4.1159549 1103.3555
+224316.0681348043 4.1160336 1103.3752
+224317.0681349086 4.1160731 1103.316
+224318.0681350129 4.1160336 1103.3357
+224319.0681351172 4.115994 1103.2963
+224320.0681352215 4.115994 1103.3555
+224321.0681353258 4.115994 1103.4147
+224322.0681354301 4.115994 1103.3555
+224323.0681355344 4.1160336 1103.4344
+224324.0681356387 4.115994 1103.3752
+224325.068135743 4.1160731 1103.3752
+224326.0681358473 4.1161518 1103.316
+224327.0681359516 4.1160336 1103.3949
+224328.068136056 4.1160336 1103.4344
+224329.0681361603 4.1161122 1103.316
+224330.0681362646 4.115994 1103.2369
+224331.0681363689 4.1160731 1103.2963
+224332.0681364732 4.1161518 1103.3752
+224333.0681365775 4.1162305 1103.3949
+224334.0681366818 4.1161518 1103.3949
+224335.0681367861 4.1160336 1103.3357
+224336.0681368904 4.1161122 1103.3949
+224337.0681369947 4.1160731 1103.4147
+224338.068137099 4.1161122 1103.3357
+224339.0681372033 4.1162305 1103.4147
+224340.0681373077 4.1161518 1103.4147
+224341.068137412 4.1161518 1103.3555
+224342.0681375163 4.1161518 1103.4542
+224343.0681376206 4.1160731 1103.3752
+224344.0681377249 4.1161909 1103.3752
+224345.0681378292 4.1162305 1103.3357
+224346.0681379335 4.1162696 1103.3357
+224347.0681380378 4.1161518 1103.3752
+224348.0681381421 4.1162305 1103.3949
+224349.0681382464 4.1161518 1103.3752
+224350.0681383507 4.1161909 1103.4344
+224351.068138455 4.1161909 1103.3752
+224352.0681385593 4.1161909 1103.2765
+224353.0681386637 4.1161518 1103.3555
+224354.068138768 4.1162305 1103.316
+224355.0681388723 4.1161909 1103.4147
+224356.0681389766 4.1162696 1103.3949
+224357.0681390809 4.1162696 1103.3555
+224358.0681391852 4.1163092 1103.3949
+224359.0681392895 4.1162696 1103.3752
+224360.0681393938 4.1162696 1103.3949
+224361.0681394981 4.1163092 1103.3949
+224362.0681396024 4.1163092 1103.3555
+224363.0681397067 4.1162696 1103.4344
+224364.068139811 4.1161909 1103.3357
+224365.0681399154 4.1162696 1103.3555
+224366.0681400197 4.1162696 1103.3555
+224367.068140124 4.1162305 1103.3752
+224368.0681402283 4.1162305 1103.3555
+224369.0681403326 4.1163483 1103.474
+224370.0681404369 4.1162696 1103.316
+224371.0681405412 4.1163878 1103.3949
+224372.0681406455 4.1163878 1103.3752
+224373.0681407498 4.1163878 1103.474
+224374.0681408541 4.1164274 1103.4344
+224375.0681409584 4.1163483 1103.2963
+224376.0681410627 4.1163878 1103.3555
+224377.0681411671 4.1164274 1103.3949
+224378.0681412714 4.1163092 1103.4542
+224379.0681413757 4.1163483 1103.3949
+224380.06814148 4.1163878 1103.316
+224381.0681415843 4.1164665 1103.3357
+224382.0681416886 4.1163092 1103.316
+224383.0681417929 4.1163092 1103.3949
+224384.0681418972 4.1165061 1103.3555
+224385.0681420015 4.1164274 1103.3752
+224386.0681421058 4.1164274 1103.4147
+224387.0681422101 4.1164274 1103.3752
+224388.0681423144 4.1163483 1103.3555
+224389.0681424188 4.1163878 1103.474
+224390.0681425231 4.1165061 1103.3357
+224391.0681426274 4.1164274 1103.3555
+224392.0681427317 4.1165061 1103.3752
+224393.068142836 4.1163483 1103.3752
+224394.0681429403 4.1163878 1103.3949
+224395.0681430446 4.1164274 1103.3949
+224396.0681431489 4.1163878 1103.3949
+224397.0681432532 4.1165061 1103.4147
+224398.0681433575 4.1163483 1103.3357
+224399.0681434618 4.1164665 1103.3357
+224400.0681435661 4.1165061 1103.316
+224401.0681436704 4.1164665 1103.3555
+224402.0681437748 4.1165061 1103.3752
+224403.0681438791 4.1165452 1103.3949
+224404.0681439834 4.1164274 1103.3949
+224405.0681440877 4.1165061 1103.3555
+224406.068144192 4.1165061 1103.4542
+224407.0681442963 4.1165061 1103.3949
+224408.0681444006 4.1165452 1103.474
+224409.0681445049 4.1165061 1103.3949
+224410.0681446092 4.1165848 1103.3752
+224411.0681447135 4.1165061 1103.3949
+224412.0681448178 4.1166239 1103.3555
+224413.0681449221 4.1165061 1103.3357
+224414.0681450265 4.1165452 1103.316
+224415.0681451308 4.1166635 1103.3357
+224416.0681452351 4.1165061 1103.3357
+224417.0681453394 4.1165848 1103.4147
+224418.0681454437 4.1165452 1103.3752
+224419.068145548 4.1165452 1103.4147
+224420.0681456523 4.1165848 1103.474
+224421.0681457566 4.1166635 1103.3949
+224422.0681458609 4.1166239 1103.3555
+224423.0681459652 4.1165848 1103.4147
+224424.0681460695 4.1166239 1103.3949
+224425.0681461738 4.1165452 1103.4147
+224426.0681462782 4.1166635 1103.3555
+224427.0681463825 4.1165848 1103.2963
+224428.0681464868 4.1166635 1103.3949
+224429.0681465911 4.116703 1103.3949
+224430.0681466954 4.1166239 1103.2765
+224431.0681467997 4.1167421 1103.316
+224432.068146904 4.1166635 1103.4344
+224433.0681470083 4.116703 1103.3555
+224434.0681471126 4.116703 1103.3949
+224435.0681472169 4.1167421 1103.316
+224436.0681473212 4.116703 1103.4344
+224437.0681474255 4.116703 1103.3949
+224438.0681475298 4.116703 1103.3357
+224439.0681476342 4.1168208 1103.3752
+224440.0681477385 4.1167421 1103.3752
+224441.0681478428 4.1167817 1103.3949
+224442.0681479471 4.1167421 1103.2765
+224443.0681480514 4.1168208 1103.4344
+224444.0681481557 4.1168604 1103.3357
+224445.06814826 4.1166635 1103.2567
+224446.0681483643 4.1166239 1103.3752
+224447.0681484686 4.116703 1103.3555
+224448.0681485729 4.1167817 1103.4542
+224449.0681486772 4.1166635 1103.3752
+224450.0681487815 4.1167817 1103.3949
+224451.0681488859 4.1167421 1103.316
+224452.0681489902 4.1167421 1103.3752
+224453.0681490945 4.1167817 1103.3752
+224454.0681491988 4.1167817 1103.4147
+224455.0681493031 4.1168604 1103.3555
+224456.0681494074 4.1168208 1103.3555
+224457.0681495117 4.1168208 1103.4147
+224458.068149616 4.1168208 1103.3555
+224459.0681497203 4.1167421 1103.316
+224460.0681498246 4.1167421 1103.3752
+224461.0681499289 4.1169782 1103.316
+224462.0681500332 4.1167817 1103.4147
+224463.0681501376 4.1168208 1103.3357
+224464.0681502419 4.1167817 1103.3752
+224465.0681503462 4.1168604 1103.316
+224466.0681504505 4.1168604 1103.4147
+224467.0681505548 4.1168995 1103.474
+224468.0681506591 4.1168604 1103.316
+224469.0681507634 4.1168604 1103.3752
+224470.0681508677 4.1168995 1103.3357
+224471.068150972 4.1167817 1103.3949
+224472.0681510763 4.1168208 1103.316
+224473.0681511806 4.1168995 1103.3949
+224474.0681512849 4.1168995 1103.3949
+224475.0681513892 4.1169391 1103.2765
+224476.0681514936 4.1168995 1103.3752
+224477.0681515979 4.1168995 1103.316
+224478.0681517022 4.1169391 1103.3949
+224479.0681518065 4.1168604 1103.3949
+224480.0681519108 4.1169391 1103.4147
+224481.0681520151 4.1168604 1103.316
+224482.0681521194 4.1168604 1103.3752
+224483.0681522237 4.1169391 1103.474
+224484.068152328 4.1169782 1103.4147
+224485.0681524323 4.1169391 1103.3949
+224486.0681525366 4.1169391 1103.3949
+224487.0681526409 4.1169391 1103.3357
+224488.0681527453 4.1169391 1103.3752
+224489.0681528496 4.1169391 1103.3555
+224490.0681529539 4.1168995 1103.4344
+224491.0681530582 4.1170177 1103.3949
+224492.0681531625 4.1170573 1103.3752
+224493.0681532668 4.1170177 1103.474
+224494.0681533711 4.1170964 1103.3752
+224495.0681534754 4.1169782 1103.4147
+224496.0681535797 4.1169391 1103.3752
+224497.068153684 4.1169782 1103.4542
+224498.0681537883 4.1170177 1103.3752
+224499.0681538926 4.117136 1103.3752
+224500.068153997 4.1170964 1103.3357
+224501.0681541013 4.1170177 1103.4147
+224502.0681542056 4.1170573 1103.3357
+224503.0681543099 4.1170573 1103.4147
+224504.0681544142 4.1170573 1103.3949
+224505.0681545185 4.1170964 1103.3555
+224506.0681546228 4.1169782 1103.3949
+224507.0681547271 4.1171751 1103.4147
+224508.0681548314 4.117136 1103.3555
+224509.0681549357 4.1170573 1103.3752
+224510.06815504 4.117136 1103.4147
+224511.0681551443 4.117136 1103.316
+224512.0681552486 4.117136 1103.3949
+224513.068155353 4.117136 1103.3752
+224514.0681554573 4.1170573 1103.3949
+224515.0681555616 4.1170573 1103.3949
+224516.0681556659 4.1171751 1103.4542
+224517.0681557702 4.1172147 1103.4938
+224518.0681558745 4.117136 1103.3949
+224519.0681559788 4.117136 1103.3357
+224520.0681560831 4.1172147 1103.4542
+224521.0681561874 4.1172147 1103.4147
+224522.0681562917 4.1171751 1103.3357
+224523.068156396 4.1172147 1103.3949
+224524.0681565003 4.1171751 1103.4542
+224525.0681566047 4.117136 1103.3555
+224526.068156709 4.1172147 1103.3357
+224527.0681568133 4.117136 1103.3357
+224528.0681569176 4.1171751 1103.3949
+224529.0681570219 4.1172538 1103.3949
+224530.0681571262 4.1172538 1103.3357
+224531.0681572305 4.117136 1103.2963
+224532.0681573348 4.1172538 1103.3752
+224533.0681574391 4.1171751 1103.2963
+224534.0681575434 4.1172147 1103.3555
+224535.0681576477 4.1172538 1103.3949
+224536.068157752 4.117372 1103.3555
+224537.0681578564 4.1172538 1103.316
+224538.0681579607 4.1173329 1103.3949
+224539.068158065 4.1173329 1103.4147
+224540.0681581693 4.1172934 1103.3357
+224541.0681582736 4.1172934 1103.3555
+224542.0681583779 4.1172147 1103.4147
+224543.0681584822 4.117372 1103.4344
+224544.0681585865 4.1172934 1103.3357
+224545.0681586908 4.1174116 1103.3752
+224546.0681587951 4.1173329 1103.3357
+224547.0681588994 4.1172538 1103.3752
+224548.0681590037 4.117372 1103.3555
+224549.0681591081 4.1172538 1103.3949
+224550.0681592124 4.1174507 1103.3357
+224551.0681593167 4.117372 1103.4147
+224552.068159421 4.1172934 1103.316
+224553.0681595253 4.1172934 1103.4147
+224554.0681596296 4.117372 1103.3949
+224555.0681597339 4.117372 1103.3752
+224556.0681598382 4.1172934 1103.3949
+224557.0681599425 4.1174116 1103.3752
+224558.0681600468 4.1175294 1103.2963
+224559.0681601511 4.1174116 1103.4344
+224560.0681602554 4.1173329 1103.3949
+224561.0681603597 4.117372 1103.2765
+224562.0681604641 4.1174116 1103.2765
+224563.0681605684 4.117372 1103.4938
+224564.0681606727 4.117372 1103.3357
+224565.068160777 4.117372 1103.3949
+224566.0681608813 4.1174116 1103.4542
+224567.0681609856 4.1174507 1103.3555
+224568.0681610899 4.1174507 1103.316
+224569.0681611942 4.117372 1103.3949
+224570.0681612985 4.117372 1103.3949
+224571.0681614028 4.1174116 1103.4542
+224572.0681615071 4.1174507 1103.3357
+224573.0681616114 4.1175294 1103.316
+224574.0681617158 4.1175294 1103.3949
+224575.0681618201 4.1175294 1103.3357
+224576.0681619244 4.1174903 1103.3555
+224577.0681620287 4.1174507 1103.3357
+224578.068162133 4.1174903 1103.3949
+224579.0681622373 4.1174903 1103.3555
+224580.0681623416 4.117569 1103.3357
+224581.0681624459 4.1175294 1103.3752
+224582.0681625502 4.1174903 1103.3555
+224583.0681626545 4.1174903 1103.3752
+224584.0681627588 4.117569 1103.3555
+224585.0681628631 4.1175294 1103.4147
+224586.0681629675 4.1174903 1103.3555
+224587.0681630718 4.117569 1103.474
+224588.0681631761 4.1175294 1103.2963
+224589.0681632804 4.1176085 1103.3949
+224590.0681633847 4.1175294 1103.3555
+224591.068163489 4.117569 1103.4147
+224592.0681635933 4.1176476 1103.3752
+224593.0681636976 4.1175294 1103.4344
+224594.0681638019 4.117569 1103.3949
+224595.0681639062 4.117569 1103.3555
+224596.0681640105 4.1175294 1103.3752
+224597.0681641148 4.1176085 1103.4344
+224598.0681642191 4.1176476 1103.3949
+224599.0681643235 4.1176085 1103.3949
+224600.0681644278 4.1175294 1103.3555
+224601.0681645321 4.1176085 1103.3949
+224602.0681646364 4.1177263 1103.3357
+224603.0681647407 4.1176872 1103.3949
+224604.068164845 4.1175294 1103.3555
+224605.0681649493 4.117805 1103.3752
+224606.0681650536 4.1176085 1103.3555
+224607.0681651579 4.1177263 1103.3357
+224608.0681652622 4.1175294 1103.3555
+224609.0681653665 4.1176872 1103.4147
+224610.0681654708 4.1176085 1103.4147
+224611.0681655752 4.1176085 1103.3949
+224612.0681656795 4.1177263 1103.3357
+224613.0681657838 4.1176872 1103.3949
+224614.0681658881 4.1177659 1103.3555
+224615.0681659924 4.1177263 1103.3555
+224616.0681660967 4.1177659 1103.3949
+224617.068166201 4.1176085 1103.3949
+224618.0681663053 4.1176085 1103.3752
+224619.0681664096 4.1177263 1103.4344
+224620.0681665139 4.117805 1103.3949
+224621.0681666182 4.1176476 1103.316
+224622.0681667225 4.117805 1103.474
+224623.0681668269 4.117805 1103.3752
+224624.0681669312 4.1177263 1103.2963
+224625.0681670355 4.1176872 1103.2963
+224626.0681671398 4.1176872 1103.3555
+224627.0681672441 4.1177659 1103.2963
+224628.0681673484 4.117805 1103.4542
+224629.0681674527 4.1177659 1103.2963
+224630.068167557 4.1177659 1103.3949
+224631.0681676613 4.1177263 1103.3752
+224632.0681677656 4.1179233 1103.3357
+224633.0681678699 4.1177659 1103.3752
+224634.0681679742 4.1178446 1103.3752
+224635.0681680785 4.117805 1103.4344
+224636.0681681829 4.1177659 1103.4344
+224637.0681682872 4.117805 1103.3357
+224638.0681683915 4.117805 1103.3949
+224639.0681684958 4.1179233 1103.3752
+224640.0681686001 4.117805 1103.4344
+224641.0681687044 4.1179233 1103.4147
+224642.0681688087 4.1178446 1103.3752
+224643.068168913 4.1178446 1103.3752
+224644.0681690173 4.1178837 1103.3357
+224645.0681691216 4.1178837 1103.3555
+224646.0681692259 4.1177659 1103.316
+224647.0681693302 4.1180019 1103.3752
+224648.0681694346 4.1179233 1103.3949
+224649.0681695389 4.1180019 1103.3555
+224650.0681696432 4.1178837 1103.3357
+224651.0681697475 4.117805 1103.3357
+224652.0681698518 4.1180019 1103.3752
+224653.0681699561 4.1180415 1103.3752
+224654.0681700604 4.1179628 1103.3555
+224655.0681701647 4.1179233 1103.3555
+224656.068170269 4.1179628 1103.4147
+224657.0681703733 4.1179233 1103.3555
+224658.0681704776 4.1179628 1103.4147
+224659.0681705819 4.1178837 1103.3555
+224660.0681706863 4.1179628 1103.3949
+224661.0681707906 4.1180019 1103.3555
+224662.0681708949 4.1180415 1103.3555
+224663.0681709992 4.1180019 1103.3555
+224664.0681711035 4.1180019 1103.4147
+224665.0681712078 4.1178837 1103.3752
+224666.0681713121 4.1180019 1103.3357
+224667.0681714164 4.1179628 1103.4542
+224668.0681715207 4.1180806 1103.3949
+224669.068171625 4.1180019 1103.4344
+224670.0681717293 4.1179233 1103.4938
+224671.0681718336 4.1180806 1103.4147
+224672.068171938 4.1180019 1103.316
+224673.0681720423 4.1180415 1103.4147
+224674.0681721466 4.1180806 1103.3949
+224675.0681722509 4.1180415 1103.316
+224676.0681723552 4.1180019 1103.2963
+224677.0681724595 4.1180415 1103.474
+224678.0681725638 4.1180415 1103.3555
+224679.0681726681 4.1180415 1103.3752
+224680.0681727724 4.1180019 1103.4344
+224681.0681728767 4.1181202 1103.3555
+224682.068172981 4.1181593 1103.3357
+224683.0681730853 4.1181202 1103.3949
+224684.0681731896 4.1181989 1103.3555
+224685.068173294 4.1180806 1103.4147
+224686.0681733983 4.1181593 1103.4147
+224687.0681735026 4.1181593 1103.2963
+224688.0681736069 4.1181202 1103.3555
+224689.0681737112 4.1181989 1103.4147
+224690.0681738155 4.1181202 1103.2963
+224691.0681739198 4.1181202 1103.4542
+224692.0681740241 4.1181202 1103.3357
+224693.0681741284 4.1181202 1103.3949
+224694.0681742327 4.1180806 1103.3752
+224695.068174337 4.1182384 1103.3357
+224696.0681744413 4.1182775 1103.4542
+224697.0681745457 4.1182384 1103.3357
+224698.06817465 4.1182775 1103.3555
+224699.0681747543 4.1182775 1103.4344
+224700.0681748586 4.1181593 1103.3357
+224701.0681749629 4.1181989 1103.3357
+224702.0681750672 4.1181989 1103.3949
+224703.0681751715 4.1182384 1103.3949
+224704.0681752758 4.1181989 1103.316
+224705.0681753801 4.1180806 1103.474
+224706.0681754844 4.1181989 1103.3949
+224707.0681755887 4.1182384 1103.3752
+224708.068175693 4.1181989 1103.4147
+224709.0681757974 4.1183562 1103.3555
+224710.0681759017 4.1182775 1103.3752
+224711.068176006 4.1182775 1103.4344
+224712.0681761103 4.1182775 1103.474
+224713.0681762146 4.1183171 1103.474
+224714.0681763189 4.1181989 1103.3949
+224715.0681764232 4.1183562 1103.2765
+224716.0681765275 4.1183171 1103.3555
+224717.0681766318 4.1183562 1103.3752
+224718.0681767361 4.1183171 1103.4147
+224719.0681768404 4.1182775 1103.3752
+224720.0681769447 4.1182384 1103.4344
+224721.068177049 4.1183958 1103.4147
+224722.0681771534 4.1182775 1103.316
+224723.0681772577 4.1182384 1103.3949
+224724.068177362 4.1181989 1103.3949
+224725.0681774663 4.1183958 1103.316
+224726.0681775706 4.1183958 1103.4147
+224727.0681776749 4.1184349 1103.3555
+224728.0681777792 4.1183562 1103.4344
+224729.0681778835 4.1183171 1103.3357
+224730.0681779878 4.1183171 1103.3949
+224731.0681780921 4.1183562 1103.2963
+224732.0681781964 4.1183958 1103.3357
+224733.0681783007 4.1183171 1103.3752
+224734.0681784051 4.1183562 1103.3752
+224735.0681785094 4.1183958 1103.3555
+224736.0681786137 4.1183958 1103.3555
+224737.068178718 4.1184745 1103.4542
+224738.0681788223 4.1184349 1103.3555
+224739.0681789266 4.1183562 1103.3949
+224740.0681790309 4.1185927 1103.474
+224741.0681791352 4.1184349 1103.2765
+224742.0681792395 4.1183958 1103.2963
+224743.0681793438 4.1184745 1103.3949
+224744.0681794481 4.1184745 1103.3949
+224745.0681795524 4.1183958 1103.3752
+224746.0681796568 4.1184349 1103.4147
+224747.0681797611 4.1184349 1103.3555
+224748.0681798654 4.1184745 1103.3555
+224749.0681799697 4.1184745 1103.3357
+224750.068180074 4.1184745 1103.3357
+224751.0681801783 4.1185136 1103.4147
+224752.0681802826 4.1184349 1103.4542
+224753.0681803869 4.1185136 1103.3555
+224754.0681804912 4.1185136 1103.3949
+224755.0681805955 4.1185136 1103.316
+224756.0681806998 4.1185927 1103.3752
+224757.0681808041 4.1185136 1103.5134
+224758.0681809084 4.1185136 1103.316
+224759.0681810128 4.1185136 1103.3752
+224760.0681811171 4.1185136 1103.2963
+224761.0681812214 4.1185136 1103.316
+224762.0681813257 4.1186318 1103.5726
+224763.06818143 4.1184745 1103.316
+224764.0681815343 4.1185136 1103.4344
+224765.0681816386 4.1185927 1103.3949
+224766.0681817429 4.1186714 1103.316
+224767.0681818472 4.1185532 1103.2765
+224768.0681819515 4.1185532 1103.3752
+224769.0681820558 4.1185927 1103.4344
+224770.0681821601 4.1186714 1103.3949
+224771.0681822645 4.1185927 1103.4542
+224772.0681823688 4.1187105 1103.316
+224773.0681824731 4.1186714 1103.4147
+224774.0681825774 4.1186714 1103.2567
+224775.0681826817 4.1185927 1103.2963
+224776.068182786 4.1186714 1103.474
+224777.0681828903 4.1186714 1103.3555
+224778.0681829946 4.1185927 1103.2567
+224779.0681830989 4.1186318 1103.3357
+224780.0681832032 4.1186318 1103.3357
+224781.0681833075 4.1185927 1103.3949
+224782.0681834118 4.1187105 1103.316
+224783.0681835162 4.1187501 1103.3949
+224784.0681836205 4.1187105 1103.4542
+224785.0681837248 4.1186714 1103.4344
+224786.0681838291 4.1186714 1103.4542
+224787.0681839334 4.1187501 1103.3752
+224788.0681840377 4.1188684 1103.2963
+224789.068184142 4.1187501 1103.316
+224790.0681842463 4.1187105 1103.2963
+224791.0681843506 4.1186318 1103.316
+224792.0681844549 4.1187501 1103.3949
+224793.0681845592 4.1187892 1103.4344
+224794.0681846635 4.1187892 1103.3949
+224795.0681847679 4.1187105 1103.3949
+224796.0681848722 4.1186714 1103.3555
+224797.0681849765 4.1187105 1103.3752
+224798.0681850808 4.1187501 1103.3555
+224799.0681851851 4.1187892 1103.3752
+224800.0681852894 4.1188288 1103.3555
+224801.0681853937 4.1188288 1103.2765
+224802.068185498 4.1189075 1103.3555
+224803.0681856023 4.1187501 1103.4344
+224804.0681857066 4.1187892 1103.3555
+224805.0681858109 4.1187501 1103.3752
+224806.0681859152 4.1187892 1103.3949
+224807.0681860195 4.1187892 1103.3357
+224808.0681861239 4.1187105 1103.4147
+224809.0681862282 4.1187892 1103.316
+224810.0681863325 4.1188684 1103.4147
+224811.0681864368 4.1189861 1103.4344
+224812.0681865411 4.1189075 1103.316
+224813.0681866454 4.1187892 1103.4147
+224814.0681867497 4.1188288 1103.3555
+224815.068186854 4.1188288 1103.3752
+224816.0681869583 4.1188684 1103.316
+224817.0681870626 4.1189861 1103.3357
+224818.0681871669 4.1189075 1103.474
+224819.0681872712 4.1189861 1103.3949
+224820.0681873756 4.1189861 1103.4147
+224821.0681874799 4.1189861 1103.3949
+224822.0681875842 4.1189075 1103.3357
+224823.0681876885 4.1190257 1103.3752
+224824.0681877928 4.1189075 1103.3357
+224825.0681878971 4.118947 1103.316
+224826.0681880014 4.118947 1103.3555
+224827.0681881057 4.118947 1103.5134
+224828.06818821 4.1189075 1103.4938
+224829.0681883143 4.1188288 1103.4147
+224830.0681884186 4.1189861 1103.3555
+224831.0681885229 4.1189075 1103.4147
+224832.0681886273 4.1189861 1103.3752
+224833.0681887316 4.1190648 1103.3949
+224834.0681888359 4.118947 1103.3949
+224835.0681889402 4.1188684 1103.4344
+224836.0681890445 4.1190257 1103.4344
+224837.0681891488 4.118947 1103.3949
+224838.0681892531 4.1190648 1103.4147
+224839.0681893574 4.1189861 1103.3949
+224840.0681894617 4.118947 1103.316
+224841.068189566 4.1190257 1103.3949
+224842.0681896703 4.1190648 1103.3555
+224843.0681897746 4.1190257 1103.3949
+224844.0681898789 4.1191044 1103.3752
+224845.0681899833 4.1190257 1103.4344
+224846.0681900876 4.1188684 1103.474
+224847.0681901919 4.1189861 1103.4938
+224848.0681902962 4.1191044 1103.3752
+224849.0681904005 4.1190648 1103.3949
+224850.0681905048 4.1191044 1103.4938
+224851.0681906091 4.119144 1103.3555
+224852.0681907134 4.1190648 1103.3555
+224853.0681908177 4.1191044 1103.3752
+224854.068190922 4.1191044 1103.3949
+224855.0681910263 4.1191044 1103.2963
+224856.0681911306 4.1191044 1103.2765
+224857.068191235 4.1191044 1103.3752
+224858.0681913393 4.1191044 1103.3357
+224859.0681914436 4.119144 1103.3555
+224860.0681915479 4.1192226 1103.3752
+224861.0681916522 4.119144 1103.3555
+224862.0681917565 4.1191831 1103.3949
+224863.0681918608 4.119144 1103.3949
+224864.0681919651 4.119144 1103.4542
+224865.0681920694 4.1192617 1103.3949
+224866.0681921737 4.1192226 1103.4147
+224867.068192278 4.1191831 1103.3949
+224868.0681923823 4.1191831 1103.4344
+224869.0681924867 4.1191831 1103.3357
+224870.068192591 4.1192617 1103.4938
+224871.0681926953 4.1191044 1103.3357
+224872.0681927996 4.1192617 1103.3949
+224873.0681929039 4.1193013 1103.3357
+224874.0681930082 4.1192617 1103.316
+224875.0681931125 4.1193013 1103.3357
+224876.0681932168 4.1193404 1103.3555
+224877.0681933211 4.1192226 1103.3752
+224878.0681934254 4.119144 1103.3949
+224879.0681935297 4.1192226 1103.4344
+224880.068193634 4.1192617 1103.3357
+224881.0681937383 4.1194191 1103.3555
+224882.0681938427 4.1192617 1103.316
+224883.068193947 4.119144 1103.4344
+224884.0681940513 4.1192617 1103.3357
+224885.0681941556 4.11938 1103.3555
+224886.0681942599 4.1192617 1103.4147
+224887.0681943642 4.1192226 1103.316
+224888.0681944685 4.1193013 1103.3949
+224889.0681945728 4.1193404 1103.2963
+224890.0681946771 4.1193404 1103.4344
+224891.0681947814 4.11938 1103.3752
+224892.0681948857 4.1193013 1103.4147
+224893.06819499 4.11938 1103.3949
+224894.0681950944 4.1192226 1103.3555
+224895.0681951987 4.1193013 1103.4147
+224896.068195303 4.1193404 1103.3949
+224897.0681954073 4.1193404 1103.4344
+224898.0681955116 4.1193013 1103.4542
+224899.0681956159 4.1193404 1103.4147
+224900.0681957202 4.1193013 1103.3949
+224901.0681958245 4.1193404 1103.4147
+224902.0681959288 4.11938 1103.4147
+224903.0681960331 4.1193404 1103.2963
+224904.0681961374 4.1194983 1103.3949
+224905.0681962417 4.1194191 1103.4938
+224906.0681963461 4.11938 1103.316
+224907.0681964504 4.11938 1103.316
+224908.0681965547 4.11938 1103.4147
+224909.068196659 4.11938 1103.3357
+224910.0681967633 4.11938 1103.3752
+224911.0681968676 4.1194191 1103.4344
+224912.0681969719 4.1194191 1103.316
+224913.0681970762 4.1194191 1103.2963
+224914.0681971805 4.11938 1103.3752
+224915.0681972848 4.1194587 1103.4344
+224916.0681973891 4.1194191 1103.3949
+224917.0681974934 4.1194983 1103.4542
+224918.0681975978 4.1194983 1103.2369
+224919.0681977021 4.1194983 1103.3555
+224920.0681978064 4.1194587 1103.3752
+224921.0681979107 4.1194983 1103.3752
+224922.068198015 4.1195769 1103.2963
+224923.0681981193 4.1194983 1103.553
+224924.0681982236 4.1194587 1103.4147
+224925.0681983279 4.11938 1103.4344
+224926.0681984322 4.1195769 1103.4542
+224927.0681985365 4.1195769 1103.3555
+224928.0681986408 4.1194983 1103.4147
+224929.0681987451 4.1195769 1103.4147
+224930.0681988494 4.1195769 1103.3555
+224931.0681989538 4.1195374 1103.3357
+224932.0681990581 4.1195769 1103.3555
+224933.0681991624 4.1195374 1103.2963
+224934.0681992667 4.1196556 1103.3949
+224935.068199371 4.119616 1103.3555
+224936.0681994753 4.1195769 1103.316
+224937.0681995796 4.1195374 1103.3949
+224938.0681996839 4.1196556 1103.3555
+224939.0681997882 4.1196556 1103.4147
+224940.0681998925 4.1195374 1103.4344
+224941.0681999968 4.1195374 1103.3555
+224942.0682001011 4.1196556 1103.3949
+224943.0682002055 4.119616 1103.4147
+224944.0682003098 4.1196556 1103.3949
+224945.0682004141 4.1196556 1103.4938
+224946.0682005184 4.1196556 1103.2963
+224947.0682006227 4.1196556 1103.3752
+224948.068200727 4.119616 1103.2963
+224949.0682008313 4.1196947 1103.4147
+224950.0682009356 4.1197343 1103.3357
+224951.0682010399 4.1195769 1103.3555
+224952.0682011442 4.1196556 1103.3949
+224953.0682012485 4.1196556 1103.3949
+224954.0682013528 4.1196947 1103.3555
+224955.0682014572 4.119616 1103.3555
+224956.0682015615 4.1196556 1103.3949
+224957.0682016658 4.1197343 1103.3357
+224958.0682017701 4.1196947 1103.4344
+224959.0682018744 4.1196947 1103.316
+224960.0682019787 4.119813 1103.474
+224961.068202083 4.1196556 1103.316
+224962.0682021873 4.1197739 1103.316
+224963.0682022916 4.1196947 1103.474
+224964.0682023959 4.1197343 1103.4542
+224965.0682025002 4.1196947 1103.3949
+224966.0682026045 4.1197343 1103.3555
+224967.0682027088 4.1197343 1103.3949
+224968.0682028132 4.1196947 1103.2963
+224969.0682029175 4.1198525 1103.3555
+224970.0682030218 4.1196947 1103.4147
+224971.0682031261 4.1197739 1103.3949
+224972.0682032304 4.119813 1103.3949
+224973.0682033347 4.119813 1103.3555
+224974.068203439 4.1198525 1103.4147
+224975.0682035433 4.1197739 1103.3752
+224976.0682036476 4.119813 1103.3357
+224977.0682037519 4.1197343 1103.4147
+224978.0682038562 4.1198525 1103.4542
+224979.0682039605 4.1197739 1103.3949
+224980.0682040649 4.1197343 1103.4344
+224981.0682041692 4.1198916 1103.4344
+224982.0682042735 4.1198525 1103.316
+224983.0682043778 4.1198916 1103.316
+224984.0682044821 4.1198916 1103.5332
+224985.0682045864 4.1198525 1103.2963
+224986.0682046907 4.1197739 1103.316
+224987.068204795 4.119813 1103.474
+224988.0682048993 4.1199312 1103.4147
+224989.0682050036 4.1199312 1103.3949
+224990.0682051079 4.1198916 1103.3555
+224991.0682052122 4.1199312 1103.3949
+224992.0682053166 4.1199703 1103.316
+224993.0682054209 4.1199312 1103.3752
+224994.0682055252 4.1197343 1103.4147
+224995.0682056295 4.1198525 1103.4147
+224996.0682057338 4.1198916 1103.3949
+224997.0682058381 4.1199312 1103.4147
+224998.0682059424 4.1198525 1103.3357
+224999.0682060467 4.1200099 1103.3357
+225000.068206151 4.1199703 1103.4542
+225001.0682062553 4.1199312 1103.3949
+225002.0682063596 4.1199703 1103.3555
+225003.0682064639 4.1200886 1103.3752
+225004.0682065682 4.1199312 1103.3949
+225005.0682066726 4.1199703 1103.3555
+225006.0682067769 4.1200099 1103.3949
+225007.0682068812 4.1199703 1103.3949
+225008.0682069855 4.1199703 1103.3949
+225009.0682070898 4.1199703 1103.3949
+225010.0682071941 4.1199703 1103.3555
+225011.0682072984 4.1199312 1103.4542
+225012.0682074027 4.1199703 1103.4542
+225013.068207507 4.1199312 1103.4147
+225014.0682076113 4.120049 1103.2567
+225015.0682077156 4.1200886 1103.3357
+225016.0682078199 4.120049 1103.3555
+225017.0682079243 4.1199312 1103.3752
+225018.0682080286 4.120049 1103.3555
+225019.0682081329 4.120049 1103.316
+225020.0682082372 4.1200886 1103.4147
+225021.0682083415 4.120049 1103.3949
+225022.0682084458 4.1201282 1103.4344
+225023.0682085501 4.1200099 1103.3555
+225024.0682086544 4.1200099 1103.4147
+225025.0682087587 4.1200886 1103.2963
+225026.068208863 4.1200886 1103.3555
+225027.0682089673 4.1201673 1103.3949
+225028.0682090716 4.1201673 1103.4542
+225029.068209176 4.1202459 1103.3752
+225030.0682092803 4.1201282 1103.3949
+225031.0682093846 4.1200886 1103.3752
+225032.0682094889 4.1200099 1103.2963
+225033.0682095932 4.120049 1103.4147
+225034.0682096975 4.1201673 1103.4542
+225035.0682098018 4.1202068 1103.4147
+225036.0682099061 4.1201673 1103.316
+225037.0682100104 4.1200886 1103.3555
+225038.0682101147 4.1201673 1103.2963
+225039.068210219 4.1202068 1103.2963
+225040.0682103233 4.1201673 1103.2765
+225041.0682104276 4.1201282 1103.3555
+225042.068210532 4.1201673 1103.2765
+225043.0682106363 4.1202855 1103.3949
+225044.0682107406 4.1201282 1103.3555
+225045.0682108449 4.1202459 1103.3752
+225046.0682109492 4.1201673 1103.4542
+225047.0682110535 4.1202068 1103.3555
+225048.0682111578 4.1202068 1103.3555
+225049.0682112621 4.1201673 1103.3357
+225050.0682113664 4.1202855 1103.4344
+225051.0682114707 4.1202068 1103.4147
+225052.068211575 4.1201673 1103.3752
+225053.0682116793 4.1201282 1103.4147
+225054.0682117837 4.1203642 1103.3949
+225055.068211888 4.1203642 1103.3949
+225056.0682119923 4.1202855 1103.3949
+225057.0682120966 4.1203246 1103.4147
+225058.0682122009 4.1203246 1103.4147
+225059.0682123052 4.1201673 1103.3357
+225060.0682124095 4.1202855 1103.3357
+225061.0682125138 4.1202459 1103.3357
+225062.0682126181 4.1203246 1103.3949
+225063.0682127224 4.1203642 1103.3949
+225064.0682128267 4.1203246 1103.3555
+225065.068212931 4.1203246 1103.4147
+225066.0682130354 4.1203246 1103.316
+225067.0682131397 4.1203246 1103.3752
+225068.068213244 4.1202459 1103.3949
+225069.0682133483 4.1203246 1103.3949
+225070.0682134526 4.1202855 1103.3949
+225071.0682135569 4.1203642 1103.3752
+225072.0682136612 4.1202855 1103.3949
+225073.0682137655 4.1204038 1103.4938
+225074.0682138698 4.1204038 1103.3555
+225075.0682139741 4.1204429 1103.3357
+225076.0682140784 4.1203246 1103.3555
+225077.0682141827 4.1204429 1103.4542
+225078.0682142871 4.1203642 1103.3555
+225079.0682143914 4.1203642 1103.3555
+225080.0682144957 4.1204038 1103.3752
+225081.0682146 4.1205215 1103.3949
+225082.0682147043 4.1204824 1103.4344
+225083.0682148086 4.1203642 1103.3949
+225084.0682149129 4.1204038 1103.4344
+225085.0682150172 4.1204429 1103.3555
+225086.0682151215 4.1205215 1103.3949
+225087.0682152258 4.1204038 1103.3357
+225088.0682153301 4.1205215 1103.3357
+225089.0682154344 4.1204824 1103.316
+225090.0682155387 4.1204429 1103.3949
+225091.0682156431 4.1204038 1103.316
+225092.0682157474 4.1204824 1103.3752
+225093.0682158517 4.1205215 1103.3752
+225094.068215956 4.1204038 1103.2765
+225095.0682160603 4.1205215 1103.4147
+225096.0682161646 4.1205611 1103.3949
+225097.0682162689 4.1205215 1103.3752
+225098.0682163732 4.1204824 1103.2963
+225099.0682164775 4.1204429 1103.3357
+225100.0682165818 4.1205611 1103.3949
+225101.0682166861 4.1206002 1103.3555
+225102.0682167904 4.1204824 1103.3752
+225103.0682168948 4.1205215 1103.4147
+225104.0682169991 4.1205215 1103.4344
+225105.0682171034 4.1205611 1103.3752
+225106.0682172077 4.1205215 1103.3949
+225107.068217312 4.1205611 1103.3752
+225108.0682174163 4.1205611 1103.4542
+225109.0682175206 4.1206398 1103.3555
+225110.0682176249 4.1206002 1103.3555
+225111.0682177292 4.1206002 1103.4344
+225112.0682178335 4.1205215 1103.316
+225113.0682179378 4.1206789 1103.3949
+225114.0682180421 4.1204824 1103.3752
+225115.0682181465 4.1206398 1103.2963
+225116.0682182508 4.1206002 1103.3555
+225117.0682183551 4.1206002 1103.4344
+225118.0682184594 4.1206002 1103.3949
+225119.0682185637 4.1206398 1103.3555
+225120.068218668 4.1206398 1103.3752
+225121.0682187723 4.1206398 1103.2765
+225122.0682188766 4.1206398 1103.3555
+225123.0682189809 4.1207185 1103.2963
+225124.0682190852 4.1206789 1103.2963
+225125.0682191895 4.1206789 1103.3752
+225126.0682192938 4.1207581 1103.3752
+225127.0682193981 4.1206398 1103.316
+225128.0682195025 4.1206789 1103.4344
+225129.0682196068 4.1207581 1103.316
+225130.0682197111 4.1206789 1103.316
+225131.0682198154 4.1206398 1103.3949
+225132.0682199197 4.1206789 1103.3949
+225133.068220024 4.1207185 1103.4344
+225134.0682201283 4.1207185 1103.3949
+225135.0682202326 4.1207185 1103.3357
+225136.0682203369 4.1206789 1103.3752
+225137.0682204412 4.1208367 1103.316
+225138.0682205455 4.1206002 1103.3555
+225139.0682206498 4.1207581 1103.3357
+225140.0682207542 4.1208758 1103.4147
+225141.0682208585 4.1208367 1103.3949
+225142.0682209628 4.1208367 1103.4344
+225143.0682210671 4.1207581 1103.4147
+225144.0682211714 4.1208367 1103.3949
+225145.0682212757 4.1207972 1103.316
+225146.06822138 4.1207185 1103.4147
+225147.0682214843 4.1208367 1103.4542
+225148.0682215886 4.1207972 1103.3752
+225149.0682216929 4.1208758 1103.4147
+225150.0682217972 4.1208758 1103.4344
+225151.0682219015 4.1207972 1103.3949
+225152.0682220059 4.1208367 1103.3555
+225153.0682221102 4.1208367 1103.3752
+225154.0682222145 4.1207972 1103.3949
+225155.0682223188 4.1208367 1103.3949
+225156.0682224231 4.1209154 1103.3357
+225157.0682225274 4.1209545 1103.3949
+225158.0682226317 4.1209154 1103.3555
+225159.068222736 4.1207581 1103.3752
+225160.0682228403 4.1209545 1103.3752
+225161.0682229446 4.1208367 1103.3949
+225162.0682230489 4.1209154 1103.3555
+225163.0682231532 4.1208758 1103.3357
+225164.0682232575 4.1209545 1103.3949
+225165.0682233619 4.1207972 1103.3949
+225166.0682234662 4.1209154 1103.2567
+225167.0682235705 4.1209545 1103.316
+225168.0682236748 4.1209545 1103.3752
+225169.0682237791 4.1209154 1103.2963
+225170.0682238834 4.1209154 1103.4147
+225171.0682239877 4.1209545 1103.3357
+225172.068224092 4.1209154 1103.3949
+225173.0682241963 4.1209154 1103.3357
+225174.0682243006 4.1210728 1103.3357
+225175.0682244049 4.1209154 1103.3555
+225176.0682245092 4.1209545 1103.4147
+225177.0682246136 4.1210728 1103.474
+225178.0682247179 4.1210337 1103.3949
+225179.0682248222 4.1210337 1103.3555
+225180.0682249265 4.1210728 1103.2963
+225181.0682250308 4.1210337 1103.3357
+225182.0682251351 4.1210337 1103.3555
+225183.0682252394 4.1210337 1103.316
+225184.0682253437 4.1210337 1103.4542
+225185.068225448 4.1209941 1103.3949
+225186.0682255523 4.1209941 1103.316
+225187.0682256566 4.1210337 1103.3357
+225188.0682257609 4.1210728 1103.5134
+225189.0682258653 4.1209941 1103.3555
+225190.0682259696 4.1210337 1103.2765
+225191.0682260739 4.1211123 1103.316
+225192.0682261782 4.1211514 1103.3949
+225193.0682262825 4.1211123 1103.3752
+225194.0682263868 4.1209941 1103.4147
+225195.0682264911 4.1210337 1103.3949
+225196.0682265954 4.1211514 1103.3752
+225197.0682266997 4.1211514 1103.4542
+225198.068226804 4.1211514 1103.3752
+225199.0682269083 4.1211123 1103.3949
+225200.0682270126 4.1211514 1103.3949
+225201.068227117 4.1212697 1103.3949
+225202.0682272213 4.1211514 1103.3357
+225203.0682273256 4.1210337 1103.4147
+225204.0682274299 4.121191 1103.3752
+225205.0682275342 4.121191 1103.3357
+225206.0682276385 4.121191 1103.3357
+225207.0682277428 4.121191 1103.3752
+225208.0682278471 4.1212301 1103.3357
+225209.0682279514 4.1211514 1103.3752
+225210.0682280557 4.1211123 1103.3949
+225211.06822816 4.121191 1103.4147
+225212.0682282643 4.1212301 1103.4147
+225213.0682283686 4.1211514 1103.3357
+225214.068228473 4.1211514 1103.3949
+225215.0682285773 4.1212697 1103.3357
+225216.0682286816 4.1211123 1103.3949
+225217.0682287859 4.1212301 1103.3949
+225218.0682288902 4.121191 1103.3752
+225219.0682289945 4.1212697 1103.4542
+225220.0682290988 4.1212697 1103.3949
+225221.0682292031 4.121191 1103.4344
+225222.0682293074 4.1213484 1103.3555
+225223.0682294117 4.1212301 1103.4147
+225224.068229516 4.1212301 1103.4147
+225225.0682296203 4.1213093 1103.3752
+225226.0682297247 4.1212697 1103.3357
+225227.068229829 4.1213093 1103.3752
+225228.0682299333 4.1212697 1103.3357
+225229.0682300376 4.1212697 1103.474
+225230.0682301419 4.1211514 1103.3555
+225231.0682302462 4.1212301 1103.3555
+225232.0682303505 4.1213484 1103.3555
+225233.0682304548 4.1213484 1103.3357
+225234.0682305591 4.1213093 1103.316
+225235.0682306634 4.1212697 1103.4344
+225236.0682307677 4.121388 1103.316
+225237.068230872 4.1213484 1103.3752
+225238.0682309764 4.1213484 1103.3949
+225239.0682310807 4.121388 1103.3555
+225240.068231185 4.121388 1103.3555
+225241.0682312893 4.121388 1103.3752
+225242.0682313936 4.121388 1103.3752
+225243.0682314979 4.121388 1103.3949
+225244.0682316022 4.1212697 1103.3752
+225245.0682317065 4.1213484 1103.4344
+225246.0682318108 4.121388 1103.3752
+225247.0682319151 4.1213484 1103.3357
+225248.0682320194 4.1214271 1103.3357
+225249.0682321237 4.1213484 1103.3357
+225250.068232228 4.121388 1103.474
+225251.0682323324 4.1214666 1103.2567
+225252.0682324367 4.1214271 1103.4147
+225253.068232541 4.1213484 1103.3949
+225254.0682326453 4.1214271 1103.3555
+225255.0682327496 4.1215057 1103.3752
+225256.0682328539 4.1214666 1103.3949
+225257.0682329582 4.121388 1103.3555
+225258.0682330625 4.1214666 1103.4147
+225259.0682331668 4.1215453 1103.3949
+225260.0682332711 4.1215057 1103.3555
+225261.0682333754 4.1215057 1103.4938
+225262.0682334797 4.1215057 1103.3357
+225263.0682335841 4.1215057 1103.3949
+225264.0682336884 4.1214666 1103.3752
+225265.0682337927 4.1214666 1103.3752
+225266.068233897 4.1214666 1103.4542
+225267.0682340013 4.1215844 1103.3949
+225268.0682341056 4.1215453 1103.316
+225269.0682342099 4.1215453 1103.4147
+225270.0682343142 4.121388 1103.3752
+225271.0682344185 4.1215057 1103.3949
+225272.0682345228 4.121624 1103.3949
+225273.0682346271 4.121624 1103.2765
+225274.0682347314 4.1215844 1103.3555
+225275.0682348358 4.1215453 1103.316
+225276.0682349401 4.1215844 1103.3752
+225277.0682350444 4.1215057 1103.4542
+225278.0682351487 4.1215844 1103.3555
+225279.068235253 4.121624 1103.3752
+225280.0682353573 4.1215057 1103.5134
+225281.0682354616 4.1215844 1103.316
+225282.0682355659 4.121624 1103.3752
+225283.0682356702 4.121624 1103.4147
+225284.0682357745 4.121624 1103.4147
+225285.0682358788 4.1216636 1103.3752
+225286.0682359831 4.121624 1103.316
+225287.0682360874 4.1215844 1103.3555
+225288.0682361918 4.121624 1103.3949
+225289.0682362961 4.1215453 1103.3555
+225290.0682364004 4.1217027 1103.3555
+225291.0682365047 4.1217027 1103.4147
+225292.068236609 4.121624 1103.316
+225293.0682367133 4.1217027 1103.316
+225294.0682368176 4.1216636 1103.3555
+225295.0682369219 4.1217027 1103.4147
+225296.0682370262 4.1217027 1103.4147
+225297.0682371305 4.1217422 1103.3752
+225298.0682372348 4.121624 1103.3555
+225299.0682373391 4.1216636 1103.3949
+225300.0682374435 4.1217813 1103.3357
+225301.0682375478 4.121624 1103.4147
+225302.0682376521 4.1217027 1103.3555
+225303.0682377564 4.1216636 1103.3752
+225304.0682378607 4.1217027 1103.2963
+225305.068237965 4.1217027 1103.3357
+225306.0682380693 4.1217422 1103.3357
+225307.0682381736 4.1217422 1103.316
+225308.0682382779 4.1218209 1103.3555
+225309.0682383822 4.1217422 1103.3555
+225310.0682384865 4.1217027 1103.2765
+225311.0682385908 4.1218209 1103.3357
+225312.0682386952 4.1218209 1103.316
+225313.0682387995 4.1217813 1103.3357
+225314.0682389038 4.1218996 1103.3555
+225315.0682390081 4.1218209 1103.3949
+225316.0682391124 4.1218209 1103.316
+225317.0682392167 4.1217813 1103.2765
+225318.068239321 4.1218209 1103.4147
+225319.0682394253 4.1217813 1103.3555
+225320.0682395296 4.1218209 1103.3949
+225321.0682396339 4.1217813 1103.3949
+225322.0682397382 4.1217422 1103.3752
+225323.0682398425 4.1218996 1103.4344
+225324.0682399469 4.1219392 1103.4344
+225325.0682400512 4.12186 1103.3357
+225326.0682401555 4.12186 1103.3357
+225327.0682402598 4.1219392 1103.3357
+225328.0682403641 4.1218996 1103.3555
+225329.0682404684 4.1219392 1103.3357
+225330.0682405727 4.1219783 1103.316
+225331.068240677 4.1218209 1103.3555
+225332.0682407813 4.1218996 1103.3949
+225333.0682408856 4.1219392 1103.316
+225334.0682409899 4.1219783 1103.4147
+225335.0682410942 4.1219392 1103.3752
+225336.0682411985 4.1218996 1103.4344
+225337.0682413029 4.1218209 1103.316
+225338.0682414072 4.1220179 1103.4147
+225339.0682415115 4.1218996 1103.316
+225340.0682416158 4.1219392 1103.3949
+225341.0682417201 4.1219783 1103.4147
+225342.0682418244 4.1219783 1103.3752
+225343.0682419287 4.1218996 1103.4147
+225344.068242033 4.1219783 1103.3752
+225345.0682421373 4.1219392 1103.3555
+225346.0682422416 4.1219392 1103.3949
+225347.0682423459 4.1219783 1103.4542
+225348.0682424502 4.122057 1103.3555
+225349.0682425546 4.1220179 1103.4344
+225350.0682426589 4.1220179 1103.3752
+225351.0682427632 4.1219392 1103.3357
+225352.0682428675 4.1220179 1103.3949
+225353.0682429718 4.1220179 1103.3555
+225354.0682430761 4.1219783 1103.3752
+225355.0682431804 4.122057 1103.3949
+225356.0682432847 4.1220965 1103.3949
+225357.068243389 4.122057 1103.4147
+225358.0682434933 4.1219783 1103.316
+225359.0682435976 4.1221356 1103.316
+225360.0682437019 4.1221356 1103.316
+225361.0682438063 4.122057 1103.4147
+225362.0682439106 4.1220179 1103.3949
+225363.0682440149 4.1220179 1103.3555
+225364.0682441192 4.1219392 1103.3949
+225365.0682442235 4.1221752 1103.3949
+225366.0682443278 4.1221356 1103.3555
+225367.0682444321 4.1221752 1103.3752
+225368.0682445364 4.1220965 1103.3949
+225369.0682446407 4.1221752 1103.3949
+225370.068244745 4.1221356 1103.3555
+225371.0682448493 4.122057 1103.3555
+225372.0682449536 4.1220179 1103.3752
+225373.0682450579 4.1221356 1103.3357
+225374.0682451623 4.1221752 1103.3752
+225375.0682452666 4.1221356 1103.3752
+225376.0682453709 4.1221752 1103.4147
+225377.0682454752 4.1222143 1103.3949
+225378.0682455795 4.1221356 1103.474
+225379.0682456838 4.1222539 1103.4344
+225380.0682457881 4.1222143 1103.3752
+225381.0682458924 4.1222539 1103.2765
+225382.0682459967 4.1222539 1103.3357
+225383.068246101 4.1222539 1103.3555
+225384.0682462053 4.1222143 1103.3752
+225385.0682463096 4.1222143 1103.3949
+225386.068246414 4.1222143 1103.4344
+225387.0682465183 4.1222143 1103.3752
+225388.0682466226 4.1222539 1103.3752
+225389.0682467269 4.1222143 1103.3752
+225390.0682468312 4.1222935 1103.4344
+225391.0682469355 4.1222935 1103.4147
+225392.0682470398 4.1222935 1103.3357
+225393.0682471441 4.1223326 1103.3752
+225394.0682472484 4.1222935 1103.316
+225395.0682473527 4.1222539 1103.3555
+225396.068247457 4.1222935 1103.4344
+225397.0682475613 4.1224113 1103.3949
+225398.0682476657 4.1222539 1103.3555
+225399.06824777 4.1222935 1103.474
+225400.0682478743 4.1223722 1103.2765
+225401.0682479786 4.1224113 1103.3949
+225402.0682480829 4.1224113 1103.3949
+225403.0682481872 4.1223326 1103.3555
+225404.0682482915 4.1224113 1103.3555
+225405.0682483958 4.1224113 1103.3949
+225406.0682485001 4.1223326 1103.3752
+225407.0682486044 4.1224113 1103.3752
+225408.0682487087 4.1224113 1103.316
+225409.068248813 4.1223722 1103.3752
+225410.0682489173 4.1224113 1103.3752
+225411.0682490217 4.1224113 1103.3357
+225412.068249126 4.1224113 1103.3357
+225413.0682492303 4.1224508 1103.4344
+225414.0682493346 4.1225295 1103.4344
+225415.0682494389 4.1224508 1103.3752
+225416.0682495432 4.1224899 1103.3357
+225417.0682496475 4.1223722 1103.3752
+225418.0682497518 4.1223326 1103.3357
+225419.0682498561 4.1224113 1103.3752
+225420.0682499604 4.1224113 1103.3357
+225421.0682500647 4.1224113 1103.316
+225422.068250169 4.1224508 1103.3357
+225423.0682502734 4.1223722 1103.2963
+225424.0682503777 4.1225295 1103.3357
+225425.068250482 4.1224899 1103.4938
+225426.0682505863 4.1223326 1103.3752
+225427.0682506906 4.1224899 1103.3752
+225428.0682507949 4.1224899 1103.3752
+225429.0682508992 4.1225691 1103.3357
+225430.0682510035 4.1224899 1103.316
+225431.0682511078 4.1225295 1103.4147
+225432.0682512121 4.1225691 1103.3555
+225433.0682513164 4.1223722 1103.2765
+225434.0682514207 4.1225691 1103.4344
+225435.0682515251 4.1225691 1103.3357
+225436.0682516294 4.1225691 1103.3752
+225437.0682517337 4.1224899 1103.2765
+225438.068251838 4.1225691 1103.2567
+225439.0682519423 4.1225295 1103.3949
+225440.0682520466 4.1225691 1103.3752
+225441.0682521509 4.1225691 1103.316
+225442.0682522552 4.1225691 1103.316
+225443.0682523595 4.1226478 1103.3752
+225444.0682524638 4.1226478 1103.3555
+225445.0682525681 4.1225691 1103.3357
+225446.0682526724 4.1225691 1103.3555
+225447.0682527767 4.1226869 1103.3555
+225448.0682528811 4.1226478 1103.3357
+225449.0682529854 4.1227264 1103.4147
+225450.0682530897 4.1225295 1103.2567
+225451.068253194 4.1226478 1103.3949
+225452.0682532983 4.1226478 1103.316
+225453.0682534026 4.1226082 1103.2172
+225454.0682535069 4.1226478 1103.316
+225455.0682536112 4.1226869 1103.3949
+225456.0682537155 4.1226082 1103.3752
+225457.0682538198 4.1226082 1103.3357
+225458.0682539241 4.1226478 1103.3752
+225459.0682540284 4.1228051 1103.3357
+225460.0682541328 4.1226478 1103.3357
+225461.0682542371 4.1226478 1103.4147
+225462.0682543414 4.1227655 1103.3949
+225463.0682544457 4.1226478 1103.3357
+225464.06825455 4.1226478 1103.3949
+225465.0682546543 4.1226869 1103.3752
+225466.0682547586 4.1226478 1103.316
+225467.0682548629 4.1227655 1103.3949
+225468.0682549672 4.1228051 1103.2963
+225469.0682550715 4.1227264 1103.3357
+225470.0682551758 4.1227264 1103.2963
+225471.0682552801 4.1227655 1103.3752
+225472.0682553845 4.1228051 1103.3752
+225473.0682554888 4.1226478 1103.3752
+225474.0682555931 4.1227655 1103.3357
+225475.0682556974 4.1227655 1103.4344
+225476.0682558017 4.1228447 1103.3357
+225477.068255906 4.1227655 1103.2765
+225478.0682560103 4.1227655 1103.316
+225479.0682561146 4.1228051 1103.3555
+225480.0682562189 4.1228051 1103.3752
+225481.0682563232 4.1228051 1103.3555
+225482.0682564275 4.1228838 1103.3752
+225483.0682565318 4.1228051 1103.3752
+225484.0682566362 4.1228051 1103.3752
+225485.0682567405 4.1229234 1103.3949
+225486.0682568448 4.1227655 1103.2963
+225487.0682569491 4.1228447 1103.3949
+225488.0682570534 4.1227655 1103.3752
+225489.0682571577 4.1229625 1103.3949
+225490.068257262 4.1228051 1103.3752
+225491.0682573663 4.1228447 1103.3357
+225492.0682574706 4.1228838 1103.3752
+225493.0682575749 4.1228051 1103.316
+225494.0682576792 4.1228838 1103.3752
+225495.0682577835 4.1229234 1103.316
+225496.0682578878 4.1228447 1103.3357
+225497.0682579922 4.1228838 1103.3752
+225498.0682580965 4.1228447 1103.3357
+225499.0682582008 4.1230021 1103.316
+225500.0682583051 4.1228051 1103.2765
+225501.0682584094 4.1229625 1103.2567
+225502.0682585137 4.1230021 1103.3949
+225503.068258618 4.1229234 1103.3555
+225504.0682587223 4.1228447 1103.3357
+225505.0682588266 4.1229234 1103.3752
+225506.0682589309 4.1229625 1103.3555
+225507.0682590352 4.1229625 1103.3357
+225508.0682591395 4.1229625 1103.2765
+225509.0682592439 4.1229234 1103.3752
+225510.0682593482 4.1230021 1103.3357
+225511.0682594525 4.1230807 1103.3752
+225512.0682595568 4.1230021 1103.3949
+225513.0682596611 4.1230021 1103.3752
+225514.0682597654 4.1229234 1103.3555
+225515.0682598697 4.1229625 1103.3752
+225516.068259974 4.1230412 1103.3555
+225517.0682600783 4.1231198 1103.3555
+225518.0682601826 4.1230807 1103.3357
+225519.0682602869 4.1231198 1103.3357
+225520.0682603912 4.123199 1103.3752
+225521.0682604956 4.1230412 1103.4147
+225522.0682605999 4.1230412 1103.3949
+225523.0682607042 4.1231198 1103.3555
+225524.0682608085 4.1231198 1103.316
+225525.0682609128 4.1230807 1103.4344
+225526.0682610171 4.1230807 1103.3752
+225527.0682611214 4.1231594 1103.4344
+225528.0682612257 4.1231198 1103.3752
+225529.06826133 4.1230807 1103.3555
+225530.0682614343 4.1230807 1103.4147
+225531.0682615386 4.1230807 1103.3357
+225532.0682616429 4.1230807 1103.3357
+225533.0682617472 4.1231594 1103.3357
+225534.0682618516 4.1231594 1103.3752
+225535.0682619559 4.123199 1103.4147
+225536.0682620602 4.1232381 1103.3949
+225537.0682621645 4.123199 1103.474
+225538.0682622688 4.123199 1103.316
+225539.0682623731 4.1232381 1103.2567
+225540.0682624774 4.1231594 1103.3357
+225541.0682625817 4.123199 1103.4542
+225542.068262686 4.1233168 1103.3752
+225543.0682627903 4.1232381 1103.3752
+225544.0682628946 4.1231594 1103.4147
+225545.0682629989 4.1232381 1103.3555
+225546.0682631033 4.1232777 1103.4147
+225547.0682632076 4.1232381 1103.4542
+225548.0682633119 4.1233168 1103.3555
+225549.0682634162 4.1232777 1103.3555
+225550.0682635205 4.1233168 1103.3752
+225551.0682636248 4.1231594 1103.3357
+225552.0682637291 4.1233168 1103.316
+225553.0682638334 4.1232777 1103.3357
+225554.0682639377 4.1233563 1103.3752
+225555.068264042 4.1232777 1103.4344
+225556.0682641463 4.1233954 1103.3949
+225557.0682642506 4.1233563 1103.3555
+225558.068264355 4.1233168 1103.3555
+225559.0682644593 4.1232777 1103.316
+225560.0682645636 4.1233563 1103.3357
+225561.0682646679 4.1233168 1103.316
+225562.0682647722 4.1232777 1103.316
+225563.0682648765 4.1233168 1103.3555
+225564.0682649808 4.1233563 1103.316
+225565.0682650851 4.1233168 1103.3555
+225566.0682651894 4.123435 1103.4147
+225567.0682652937 4.1233954 1103.3949
+225568.068265398 4.1233168 1103.3555
+225569.0682655023 4.1233954 1103.4147
+225570.0682656066 4.1234746 1103.3357
+225571.068265711 4.1233563 1103.3752
+225572.0682658153 4.1234746 1103.4542
+225573.0682659196 4.123435 1103.3357
+225574.0682660239 4.123435 1103.3357
+225575.0682661282 4.123435 1103.3357
+225576.0682662325 4.1234746 1103.316
+225577.0682663368 4.123435 1103.3555
+225578.0682664411 4.123435 1103.3357
+225579.0682665454 4.123435 1103.3357
+225580.0682666497 4.1233563 1103.3357
+225581.068266754 4.1235533 1103.316
+225582.0682668583 4.1233563 1103.3357
+225583.0682669627 4.1235137 1103.3752
+225584.068267067 4.1235137 1103.2963
+225585.0682671713 4.1234746 1103.3949
+225586.0682672756 4.1235137 1103.3752
+225587.0682673799 4.1235533 1103.3357
+225588.0682674842 4.123435 1103.3752
+225589.0682675885 4.1235533 1103.2963
+225590.0682676928 4.123632 1103.2765
+225591.0682677971 4.1235137 1103.2765
+225592.0682679014 4.1235137 1103.2765
+225593.0682680057 4.1235924 1103.4542
+225594.06826811 4.1234746 1103.316
+225595.0682682144 4.1235533 1103.3949
+225596.0682683187 4.123632 1103.3357
+225597.068268423 4.1235533 1103.4344
+225598.0682685273 4.123632 1103.3357
+225599.0682686316 4.1235533 1103.3555
+225600.0682687359 4.1235924 1103.3752
+225601.0682688402 4.1235533 1103.3357
+225602.0682689445 4.1235924 1103.3555
+225603.0682690488 4.1235924 1103.3949
+225604.0682691531 4.1235924 1103.4542
+225605.0682692574 4.1235924 1103.3555
+225606.0682693617 4.123632 1103.3555
+225607.0682694661 4.1235924 1103.2963
+225608.0682695704 4.123632 1103.4147
+225609.0682696747 4.123632 1103.4147
+225610.068269779 4.1237106 1103.316
+225611.0682698833 4.1235924 1103.3357
+225612.0682699876 4.123632 1103.4147
+225613.0682700919 4.1236711 1103.4344
+225614.0682701962 4.1236711 1103.3357
+225615.0682703005 4.1237497 1103.316
+225616.0682704048 4.123632 1103.3752
+225617.0682705091 4.1236711 1103.3555
+225618.0682706134 4.1237106 1103.3949
+225619.0682707177 4.1236711 1103.3555
+225620.0682708221 4.1237106 1103.3357
+225621.0682709264 4.1237893 1103.316
+225622.0682710307 4.123632 1103.316
+225623.068271135 4.1236711 1103.2567
+225624.0682712393 4.1238289 1103.3949
+225625.0682713436 4.1238289 1103.4147
+225626.0682714479 4.1237893 1103.3555
+225627.0682715522 4.1236711 1103.3752
+225628.0682716565 4.123868 1103.3555
+225629.0682717608 4.123868 1103.2963
+225630.0682718651 4.1237106 1103.2963
+225631.0682719694 4.1237497 1103.4147
+225632.0682720738 4.1237497 1103.2765
+225633.0682721781 4.1238289 1103.3555
+225634.0682722824 4.1238289 1103.316
+225635.0682723867 4.123868 1103.316
+225636.068272491 4.1237893 1103.316
+225637.0682725953 4.1237497 1103.3357
+225638.0682726996 4.1237497 1103.2963
+225639.0682728039 4.1237893 1103.3752
+225640.0682729082 4.1237497 1103.3949
+225641.0682730125 4.123868 1103.316
+225642.0682731168 4.1238289 1103.316
+225643.0682732211 4.1237497 1103.3555
+225644.0682733255 4.123868 1103.3357
+225645.0682734298 4.1239076 1103.3357
+225646.0682735341 4.1239076 1103.3357
+225647.0682736384 4.1237893 1103.316
+225648.0682737427 4.1239076 1103.3752
+225649.068273847 4.1238289 1103.3555
+225650.0682739513 4.1239076 1103.3949
+225651.0682740556 4.1239076 1103.3752
+225652.0682741599 4.1239862 1103.3357
+225653.0682742642 4.1238289 1103.316
+225654.0682743685 4.1239862 1103.3555
+225655.0682744728 4.1239467 1103.4147
+225656.0682745771 4.1239076 1103.316
+225657.0682746815 4.1239467 1103.3555
+225658.0682747858 4.123868 1103.2765
+225659.0682748901 4.1239076 1103.4542
+225660.0682749944 4.1239467 1103.3949
+225661.0682750987 4.1239467 1103.3555
+225662.068275203 4.1239467 1103.3555
+225663.0682753073 4.1240253 1103.3949
+225664.0682754116 4.1240253 1103.3357
+225665.0682755159 4.1240253 1103.4147
+225666.0682756202 4.1240253 1103.3357
+225667.0682757245 4.1240649 1103.3949
+225668.0682758288 4.1241045 1103.3555
+225669.0682759332 4.1239862 1103.316
+225670.0682760375 4.1239862 1103.3555
+225671.0682761418 4.1239076 1103.3555
+225672.0682762461 4.1240253 1103.3555
+225673.0682763504 4.1239862 1103.3752
+225674.0682764547 4.1241045 1103.3752
+225675.068276559 4.1240649 1103.3357
+225676.0682766633 4.1239862 1103.3949
+225677.0682767676 4.1239862 1103.3752
+225678.0682768719 4.1239862 1103.2765
+225679.0682769762 4.1240253 1103.3949
+225680.0682770805 4.1241436 1103.3357
+225681.0682771849 4.1240253 1103.3357
+225682.0682772892 4.1240253 1103.316
+225683.0682773935 4.1240649 1103.2765
+225684.0682774978 4.1240649 1103.3555
+225685.0682776021 4.1241045 1103.2567
+225686.0682777064 4.1242223 1103.2567
+225687.0682778107 4.1240649 1103.2963
+225688.068277915 4.1242223 1103.3555
+225689.0682780193 4.1241045 1103.3357
+225690.0682781236 4.1241436 1103.3357
+225691.0682782279 4.1242619 1103.2765
+225692.0682783322 4.1241045 1103.3949
+225693.0682784365 4.1242223 1103.3752
+225694.0682785409 4.1242223 1103.2963
+225695.0682786452 4.1241832 1103.3949
+225696.0682787495 4.1240649 1103.4147
+225697.0682788538 4.1241045 1103.3752
+225698.0682789581 4.1241436 1103.3357
+225699.0682790624 4.1241832 1103.3357
+225700.0682791667 4.1242619 1103.3357
+225701.068279271 4.1242223 1103.4344
+225702.0682793753 4.1242223 1103.4542
+225703.0682794796 4.124301 1103.3357
+225704.0682795839 4.1242619 1103.3555
+225705.0682796882 4.1242619 1103.3752
+225706.0682797926 4.1242619 1103.2567
+225707.0682798969 4.1242619 1103.316
+225708.0682800012 4.1242223 1103.316
+225709.0682801055 4.124301 1103.3555
+225710.0682802098 4.1242619 1103.3357
+225711.0682803141 4.124301 1103.316
+225712.0682804184 4.1242619 1103.3555
+225713.0682805227 4.1243405 1103.3357
+225714.068280627 4.1242223 1103.3357
+225715.0682807313 4.1244588 1103.3752
+225716.0682808356 4.124301 1103.3752
+225717.0682809399 4.1243796 1103.2963
+225718.0682810443 4.1243796 1103.3357
+225719.0682811486 4.1243405 1103.3752
+225720.0682812529 4.124301 1103.3357
+225721.0682813572 4.124301 1103.4344
+225722.0682814615 4.1243796 1103.2369
+225723.0682815658 4.1244192 1103.2963
+225724.0682816701 4.1243405 1103.3357
+225725.0682817744 4.1243796 1103.3357
+225726.0682818787 4.1244979 1103.4147
+225727.068281983 4.1244588 1103.3357
+225728.0682820873 4.1244192 1103.3555
+225729.0682821916 4.1243405 1103.3357
+225730.068282296 4.1244588 1103.4147
+225731.0682824003 4.1244192 1103.316
+225732.0682825046 4.1244192 1103.2963
+225733.0682826089 4.1243405 1103.3949
+225734.0682827132 4.1244192 1103.2567
+225735.0682828175 4.1243405 1103.3752
+225736.0682829218 4.1244192 1103.3357
+225737.0682830261 4.1244588 1103.2963
+225738.0682831304 4.1244588 1103.3357
+225739.0682832347 4.1244979 1103.3357
+225740.068283339 4.1245375 1103.4344
+225741.0682834433 4.1244192 1103.3357
+225742.0682835476 4.1244588 1103.316
+225743.068283652 4.1244192 1103.4344
+225744.0682837563 4.1244192 1103.3949
+225745.0682838606 4.1244979 1103.3752
+225746.0682839649 4.1245375 1103.474
+225747.0682840692 4.1244588 1103.3752
+225748.0682841735 4.1245766 1103.3555
+225749.0682842778 4.1245375 1103.3949
+225750.0682843821 4.1243796 1103.3555
+225751.0682844864 4.1245766 1103.3949
+225752.0682845907 4.1245766 1103.2963
+225753.068284695 4.1245375 1103.3555
+225754.0682847993 4.1245375 1103.3357
+225755.0682849037 4.1245375 1103.3752
+225756.068285008 4.1246161 1103.3357
+225757.0682851123 4.1244979 1103.316
+225758.0682852166 4.1244979 1103.316
+225759.0682853209 4.1245375 1103.3357
+225760.0682854252 4.1245766 1103.3752
+225761.0682855295 4.1245766 1103.4344
+225762.0682856338 4.1246161 1103.3949
+225763.0682857381 4.1246948 1103.4147
+225764.0682858424 4.1246161 1103.3555
+225765.0682859467 4.1245766 1103.3752
+225766.068286051 4.1246552 1103.2567
+225767.0682861554 4.1245766 1103.3752
+225768.0682862597 4.1246948 1103.3357
+225769.068286364 4.1246161 1103.4344
+225770.0682864683 4.1245766 1103.3949
+225771.0682865726 4.1246948 1103.2963
+225772.0682866769 4.1246161 1103.3357
+225773.0682867812 4.1246161 1103.3555
+225774.0682868855 4.1246948 1103.3752
+225775.0682869898 4.1246948 1103.2963
+225776.0682870941 4.1247735 1103.3555
+225777.0682871984 4.1247735 1103.3949
+225778.0682873027 4.1247735 1103.3357
+225779.068287407 4.1246948 1103.3949
+225780.0682875114 4.1247344 1103.3949
+225781.0682876157 4.1247344 1103.3752
+225782.06828772 4.1246948 1103.2963
+225783.0682878243 4.1248131 1103.3752
+225784.0682879286 4.1246948 1103.3357
+225785.0682880329 4.1248131 1103.3357
+225786.0682881372 4.1247344 1103.3949
+225787.0682882415 4.1247735 1103.2567
+225788.0682883458 4.1248522 1103.3752
+225789.0682884501 4.1247735 1103.3357
+225790.0682885544 4.1248918 1103.3357
+225791.0682886587 4.1248131 1103.3555
+225792.0682887631 4.1247735 1103.4147
+225793.0682888674 4.1246948 1103.3949
+225794.0682889717 4.1248522 1103.3949
+225795.068289076 4.1248918 1103.316
+225796.0682891803 4.1248918 1103.2963
+225797.0682892846 4.1248918 1103.3357
+225798.0682893889 4.1248522 1103.3357
+225799.0682894932 4.1248918 1103.3357
+225800.0682895975 4.1248131 1103.3752
+225801.0682897018 4.1248522 1103.316
+225802.0682898061 4.1248131 1103.316
+225803.0682899104 4.1248918 1103.3752
+225804.0682900148 4.1248918 1103.3752
+225805.0682901191 4.1247735 1103.3949
+225806.0682902234 4.1247735 1103.4542
+225807.0682903277 4.1248131 1103.3752
+225808.068290432 4.1248918 1103.3752
+225809.0682905363 4.1249309 1103.3949
+225810.0682906406 4.1249309 1103.3752
+225811.0682907449 4.1248918 1103.2765
+225812.0682908492 4.1249309 1103.3555
+225813.0682909535 4.12501 1103.4344
+225814.0682910578 4.1248918 1103.2765
+225815.0682911621 4.1249704 1103.316
+225816.0682912664 4.1248918 1103.3949
+225817.0682913708 4.12501 1103.2765
+225818.0682914751 4.1249704 1103.3752
+225819.0682915794 4.1250491 1103.3357
+225820.0682916837 4.1249704 1103.316
+225821.068291788 4.1249704 1103.3752
+225822.0682918923 4.12501 1103.316
+225823.0682919966 4.1250491 1103.3752
+225824.0682921009 4.1250491 1103.3949
+225825.0682922052 4.12501 1103.4147
+225826.0682923095 4.1250887 1103.4344
+225827.0682924138 4.1250491 1103.2765
+225828.0682925181 4.1249704 1103.4147
+225829.0682926225 4.1251278 1103.3752
+225830.0682927268 4.1249704 1103.3555
+225831.0682928311 4.1251278 1103.4147
+225832.0682929354 4.1251278 1103.2963
+225833.0682930397 4.1250887 1103.4542
+225834.068293144 4.1250887 1103.3357
+225835.0682932483 4.1250887 1103.3949
+225836.0682933526 4.12501 1103.3752
+225837.0682934569 4.1251278 1103.1975
+225838.0682935612 4.1250887 1103.3555
+225839.0682936655 4.125246 1103.3949
+225840.0682937698 4.1251278 1103.4147
+225841.0682938742 4.1250887 1103.3555
+225842.0682939785 4.1252065 1103.3555
+225843.0682940828 4.1252065 1103.3949
+225844.0682941871 4.1252065 1103.3752
+225845.0682942914 4.125246 1103.3752
+225846.0682943957 4.1251674 1103.3555
+225847.0682945 4.1252065 1103.4344
+225848.0682946043 4.125246 1103.316
+225849.0682947086 4.1251674 1103.3357
+225850.0682948129 4.1251674 1103.2765
+225851.0682949172 4.1251674 1103.316
+225852.0682950215 4.1251674 1103.3555
+225853.0682951259 4.1252065 1103.3752
+225854.0682952302 4.125246 1103.3555
+225855.0682953345 4.1253247 1103.3555
+225856.0682954388 4.125246 1103.3752
+225857.0682955431 4.1252065 1103.3752
+225858.0682956474 4.1252851 1103.3555
+225859.0682957517 4.125246 1103.3949
+225860.068295856 4.1252851 1103.2765
+225861.0682959603 4.125246 1103.316
+225862.0682960646 4.1253247 1103.2963
+225863.0682961689 4.1252851 1103.3555
+225864.0682962732 4.125246 1103.3357
+225865.0682963775 4.1253247 1103.4542
+225866.0682964819 4.1253247 1103.3949
+225867.0682965862 4.125246 1103.3555
+225868.0682966905 4.1252851 1103.316
+225869.0682967948 4.1253643 1103.3357
+225870.0682968991 4.1252851 1103.3357
+225871.0682970034 4.1253643 1103.3949
+225872.0682971077 4.1252851 1103.3555
+225873.068297212 4.125443 1103.2765
+225874.0682973163 4.1252851 1103.3752
+225875.0682974206 4.1253643 1103.3752
+225876.0682975249 4.1253643 1103.3555
+225877.0682976292 4.125443 1103.3949
+225878.0682977336 4.1253247 1103.2765
+225879.0682978379 4.1253643 1103.3555
+225880.0682979422 4.125443 1103.4147
+225881.0682980465 4.1253643 1103.3555
+225882.0682981508 4.1253247 1103.316
+225883.0682982551 4.1254821 1103.3357
+225884.0682983594 4.1253643 1103.3357
+225885.0682984637 4.1253643 1103.3752
+225886.068298568 4.125443 1103.3555
+225887.0682986723 4.125443 1103.3357
+225888.0682987766 4.1254821 1103.3752
+225889.0682988809 4.1254034 1103.3555
+225890.0682989853 4.1255608 1103.3752
+225891.0682990896 4.125443 1103.4344
+225892.0682991939 4.1254821 1103.4147
+225893.0682992982 4.125443 1103.3949
+225894.0682994025 4.125443 1103.2765
+225895.0682995068 4.1254821 1103.3949
+225896.0682996111 4.1255217 1103.316
+225897.0682997154 4.1255608 1103.3555
+225898.0682998197 4.1255217 1103.3555
+225899.068299924 4.1256003 1103.3949
+225900.0683000283 4.1254821 1103.3949
+225901.0683001326 4.125679 1103.3357
+225902.0683002369 4.1254821 1103.4147
+225903.0683003413 4.1255217 1103.5134
+225904.0683004456 4.1255608 1103.316
+225905.0683005499 4.1256003 1103.316
+225906.0683006542 4.1254821 1103.3357
+225907.0683007585 4.1256399 1103.3949
+225908.0683008628 4.125443 1103.3357
+225909.0683009671 4.1256003 1103.3357
+225910.0683010714 4.1256399 1103.3555
+225911.0683011757 4.1256003 1103.4147
+225912.06830128 4.125679 1103.2963
+225913.0683013843 4.1256399 1103.3357
+225914.0683014886 4.1256399 1103.3555
+225915.068301593 4.125679 1103.4147
+225916.0683016973 4.1255608 1103.316
+225917.0683018016 4.125679 1103.2963
+225918.0683019059 4.1255217 1103.3357
+225919.0683020102 4.1255608 1103.2963
+225920.0683021145 4.1257577 1103.3357
+225921.0683022188 4.1255217 1103.3555
+225922.0683023231 4.1256003 1103.3949
+225923.0683024274 4.125679 1103.316
+225924.0683025317 4.1256399 1103.3357
+225925.068302636 4.1256399 1103.3752
+225926.0683027403 4.1256399 1103.3752
+225927.0683028447 4.1257186 1103.3949
+225928.068302949 4.1257186 1103.4344
+225929.0683030533 4.1257186 1103.316
+225930.0683031576 4.1257186 1103.2765
+225931.0683032619 4.1257973 1103.4147
+225932.0683033662 4.1257186 1103.3949
+225933.0683034705 4.1257577 1103.3555
+225934.0683035748 4.1257577 1103.3752
+225935.0683036791 4.1257186 1103.3357
+225936.0683037834 4.1257973 1103.3752
+225937.0683038877 4.1257186 1103.3949
+225938.068303992 4.1257973 1103.3752
+225939.0683040963 4.1257973 1103.4147
+225940.0683042007 4.1259151 1103.3752
+225941.068304305 4.1257577 1103.316
+225942.0683044093 4.1257973 1103.3357
+225943.0683045136 4.1258364 1103.3949
+225944.0683046179 4.1257577 1103.2963
+225945.0683047222 4.1258759 1103.4147
+225946.0683048265 4.1257577 1103.316
+225947.0683049308 4.1257973 1103.3357
+225948.0683050351 4.1257973 1103.3357
+225949.0683051394 4.1259151 1103.4344
+225950.0683052437 4.1257973 1103.316
+225951.068305348 4.1258759 1103.4147
+225952.0683054524 4.1258759 1103.3555
+225953.0683055567 4.1258759 1103.316
+225954.068305661 4.1259546 1103.3949
+225955.0683057653 4.1259942 1103.3555
+225956.0683058696 4.1260333 1103.3752
+225957.0683059739 4.1259151 1103.3949
+225958.0683060782 4.1259151 1103.2963
+225959.0683061825 4.1259942 1103.3555
+225960.0683062868 4.1259151 1103.316
+225961.0683063911 4.1259942 1103.4147
+225962.0683064954 4.1258759 1103.316
+225963.0683065997 4.1259942 1103.3752
+225964.0683067041 4.1259151 1103.3357
+225965.0683068084 4.1259546 1103.3357
+225966.0683069127 4.1260729 1103.3555
+225967.068307017 4.1259942 1103.2765
+225968.0683071213 4.1260333 1103.3555
+225969.0683072256 4.1260729 1103.3752
+225970.0683073299 4.1260333 1103.3752
+225971.0683074342 4.1260333 1103.3357
+225972.0683075385 4.126112 1103.4542
+225973.0683076428 4.1260333 1103.4344
+225974.0683077471 4.1259942 1103.3555
+225975.0683078514 4.1259546 1103.4147
+225976.0683079557 4.1259546 1103.4147
+225977.0683080601 4.1260729 1103.3752
+225978.0683081644 4.1260729 1103.3752
+225979.0683082687 4.1260729 1103.316
+225980.068308373 4.1260729 1103.3949
+225981.0683084773 4.126112 1103.3357
+225982.0683085816 4.1259546 1103.3752
+225983.0683086859 4.126112 1103.3357
+225984.0683087902 4.126112 1103.3357
+225985.0683088945 4.1260729 1103.3357
+225986.0683089988 4.1260333 1103.2963
+225987.0683091031 4.1261516 1103.3357
+225988.0683092074 4.126112 1103.3949
+225989.0683093118 4.1261907 1103.3752
+225990.0683094161 4.126112 1103.3752
+225991.0683095204 4.126112 1103.2963
+225992.0683096247 4.1261516 1103.2369
+225993.068309729 4.1261907 1103.3949
+225994.0683098333 4.126112 1103.3555
+225995.0683099376 4.1260729 1103.3357
+225996.0683100419 4.126112 1103.3949
+225997.0683101462 4.1262302 1103.3555
+225998.0683102505 4.126112 1103.2765
+225999.0683103548 4.1261907 1103.3555
+226000.0683104591 4.1261516 1103.3357
+226001.0683105635 4.1262698 1103.4542
+226002.0683106678 4.1263089 1103.3357
+226003.0683107721 4.1262698 1103.3357
+226004.0683108764 4.1262698 1103.3357
+226005.0683109807 4.1263089 1103.3752
+226006.068311085 4.1263089 1103.3357
+226007.0683111893 4.1261907 1103.2963
+226008.0683112936 4.1262302 1103.3357
+226009.0683113979 4.1262698 1103.3949
+226010.0683115022 4.1262698 1103.4147
+226011.0683116065 4.1263089 1103.2963
+226012.0683117108 4.1262302 1103.316
+226013.0683118152 4.1263485 1103.3555
+226014.0683119195 4.1263089 1103.3555
+226015.0683120238 4.1262302 1103.316
+226016.0683121281 4.1262698 1103.3752
+226017.0683122324 4.1262698 1103.3555
+226018.0683123367 4.1262302 1103.3555
+226019.068312441 4.1263876 1103.2369
+226020.0683125453 4.1262302 1103.316
+226021.0683126496 4.1264663 1103.4147
+226022.0683127539 4.1263876 1103.4542
+226023.0683128582 4.1263485 1103.3752
+226024.0683129625 4.1263485 1103.3357
+226025.0683130668 4.1264663 1103.316
+226026.0683131712 4.1263485 1103.3357
+226027.0683132755 4.1263876 1103.2963
+226028.0683133798 4.1264272 1103.4542
+226029.0683134841 4.1263876 1103.3752
+226030.0683135884 4.1263876 1103.3752
+226031.0683136927 4.1265454 1103.3752
+226032.068313797 4.1264272 1103.2963
+226033.0683139013 4.1264272 1103.3949
+226034.0683140056 4.1265845 1103.3555
+226035.0683141099 4.1264272 1103.3357
+226036.0683142142 4.1265059 1103.3752
+226037.0683143185 4.1265454 1103.3357
+226038.0683144229 4.1264272 1103.4147
+226039.0683145272 4.1264272 1103.3555
+226040.0683146315 4.1264663 1103.3555
+226041.0683147358 4.1264663 1103.3949
+226042.0683148401 4.1265059 1103.3357
+226043.0683149444 4.1264663 1103.316
+226044.0683150487 4.1265845 1103.3555
+226045.068315153 4.1265059 1103.316
+226046.0683152573 4.1265059 1103.3555
+226047.0683153616 4.1265845 1103.3752
+226048.0683154659 4.1265454 1103.3949
+226049.0683155702 4.1266241 1103.316
+226050.0683156746 4.1266632 1103.2369
+226051.0683157789 4.1265845 1103.3357
+226052.0683158832 4.1265454 1103.4344
+226053.0683159875 4.1265454 1103.2567
+226054.0683160918 4.1265454 1103.3949
+226055.0683161961 4.1265845 1103.3752
+226056.0683163004 4.1266632 1103.2765
+226057.0683164047 4.1266241 1103.3752
+226058.068316509 4.1265845 1103.2765
+226059.0683166133 4.1266241 1103.3555
+226060.0683167176 4.1266632 1103.3357
+226061.0683168219 4.1266632 1103.3949
+226062.0683169262 4.1266632 1103.3752
+226063.0683170306 4.1266632 1103.3949
+226064.0683171349 4.1266241 1103.2963
+226065.0683172392 4.1266632 1103.316
+226066.0683173435 4.1267815 1103.3357
+226067.0683174478 4.1267028 1103.3555
+226068.0683175521 4.1267815 1103.4147
+226069.0683176564 4.1266241 1103.2963
+226070.0683177607 4.1267028 1103.3752
+226071.068317865 4.1267815 1103.2765
+226072.0683179693 4.1267815 1103.3357
+226073.0683180736 4.1267028 1103.3949
+226074.0683181779 4.1267815 1103.3357
+226075.0683182823 4.1268206 1103.4147
+226076.0683183866 4.1267419 1103.2963
+226077.0683184909 4.1267419 1103.3949
+226078.0683185952 4.1267419 1103.3752
+226079.0683186995 4.1267419 1103.3555
+226080.0683188038 4.1267028 1103.316
+226081.0683189081 4.1267028 1103.3357
+226082.0683190124 4.1267419 1103.3555
+226083.0683191167 4.1267815 1103.2963
+226084.068319221 4.1268206 1103.3752
+226085.0683193253 4.1268206 1103.3752
+226086.0683194296 4.1268206 1103.3752
+226087.068319534 4.1267419 1103.3752
+226088.0683196383 4.1268601 1103.3555
+226089.0683197426 4.1268206 1103.3555
+226090.0683198469 4.1267815 1103.4147
+226091.0683199512 4.1267815 1103.3357
+226092.0683200555 4.1269388 1103.3555
+226093.0683201598 4.1268601 1103.474
+226094.0683202641 4.1268997 1103.2765
+226095.0683203684 4.1268601 1103.2963
+226096.0683204727 4.1268601 1103.316
+226097.068320577 4.1267815 1103.3357
+226098.0683206813 4.1268997 1103.3357
+226099.0683207856 4.1267815 1103.2567
+226100.06832089 4.1268997 1103.4542
+226101.0683209943 4.1268997 1103.3752
+226102.0683210986 4.1269388 1103.4147
+226103.0683212029 4.1268601 1103.3949
+226104.0683213072 4.1268206 1103.3752
+226105.0683214115 4.1270175 1103.3949
+226106.0683215158 4.1270571 1103.3752
+226107.0683216201 4.1269784 1103.4542
+226108.0683217244 4.1270175 1103.3357
+226109.0683218287 4.1270175 1103.3357
+226110.068321933 4.1270962 1103.3752
+226111.0683220373 4.1270571 1103.3555
+226112.0683221417 4.1270175 1103.3555
+226113.068322246 4.1269388 1103.3949
+226114.0683223503 4.1270175 1103.3752
+226115.0683224546 4.1269784 1103.316
+226116.0683225589 4.1269388 1103.4147
+226117.0683226632 4.1269388 1103.2963
+226118.0683227675 4.1270175 1103.4147
+226119.0683228718 4.1270175 1103.316
+226120.0683229761 4.1271753 1103.3752
+226121.0683230804 4.1270571 1103.316
+226122.0683231847 4.1270571 1103.2765
+226123.068323289 4.1271753 1103.3555
+226124.0683233934 4.1270962 1103.2963
+226125.0683234977 4.1271753 1103.4344
+226126.068323602 4.1270571 1103.3949
+226127.0683237063 4.1271358 1103.3357
+226128.0683238106 4.1270962 1103.2963
+226129.0683239149 4.1270962 1103.3357
+226130.0683240192 4.1271358 1103.3752
+226131.0683241235 4.1271358 1103.3357
+226132.0683242278 4.1272144 1103.2963
+226133.0683243321 4.1271358 1103.3555
+226134.0683244364 4.1272144 1103.3555
+226135.0683245407 4.1271358 1103.2765
+226136.0683246451 4.1271358 1103.316
+226137.0683247494 4.1271753 1103.4344
+226138.0683248537 4.1271753 1103.2963
+226139.068324958 4.1270571 1103.3949
+226140.0683250623 4.1272144 1103.3555
+226141.0683251666 4.1272144 1103.3555
+226142.0683252709 4.1272931 1103.316
+226143.0683253752 4.1272144 1103.3357
+226144.0683254795 4.1272144 1103.2567
+226145.0683255838 4.127254 1103.2963
+226146.0683256881 4.1272144 1103.3949
+226147.0683257924 4.127254 1103.3555
+226148.0683258967 4.1272144 1103.3949
+226149.0683260011 4.1270962 1103.3357
+226150.0683261054 4.127254 1103.2369
+226151.0683262097 4.127254 1103.316
+226152.068326314 4.127254 1103.3949
+226153.0683264183 4.1273327 1103.3357
+226154.0683265226 4.1273327 1103.3949
+226155.0683266269 4.1273718 1103.3752
+226156.0683267312 4.1272931 1103.4147
+226157.0683268355 4.1272931 1103.3752
+226158.0683269398 4.1273327 1103.2963
+226159.0683270441 4.127254 1103.316
+226160.0683271484 4.1273718 1103.2963
+226161.0683272528 4.1273718 1103.3357
+226162.0683273571 4.1273718 1103.4147
+226163.0683274614 4.1272931 1103.2765
+226164.0683275657 4.1273327 1103.316
+226165.06832767 4.1273327 1103.4147
+226166.0683277743 4.1273327 1103.3752
+226167.0683278786 4.1273718 1103.4344
+226168.0683279829 4.1273718 1103.3752
+226169.0683280872 4.12749 1103.3357
+226170.0683281915 4.1274114 1103.3357
+226171.0683282958 4.1273327 1103.316
+226172.0683284001 4.1273327 1103.3555
+226173.0683285045 4.1273718 1103.3555
+226174.0683286088 4.12749 1103.3555
+226175.0683287131 4.1274114 1103.4147
+226176.0683288174 4.1275687 1103.3357
+226177.0683289217 4.1274114 1103.4344
+226178.068329026 4.1275687 1103.3949
+226179.0683291303 4.1274114 1103.3555
+226180.0683292346 4.1274505 1103.3555
+226181.0683293389 4.1275687 1103.4147
+226182.0683294432 4.1275296 1103.4542
+226183.0683295475 4.1275296 1103.3555
+226184.0683296518 4.1274505 1103.316
+226185.0683297561 4.12749 1103.3949
+226186.0683298605 4.1274505 1103.3752
+226187.0683299648 4.1274505 1103.316
+226188.0683300691 4.1275296 1103.4344
+226189.0683301734 4.1275296 1103.2963
+226190.0683302777 4.1274505 1103.2765
+226191.068330382 4.12749 1103.2765
+226192.0683304863 4.12749 1103.2765
+226193.0683305906 4.1275687 1103.3752
+226194.0683306949 4.12749 1103.2963
+226195.0683307992 4.1275687 1103.2567
+226196.0683309035 4.1275296 1103.2963
+226197.0683310078 4.1275296 1103.2765
+226198.0683311122 4.1276474 1103.3949
+226199.0683312165 4.1276083 1103.3752
+226200.0683313208 4.1275687 1103.2963
+226201.0683314251 4.127687 1103.3555
+226202.0683315294 4.1276083 1103.3357
+226203.0683316337 4.1276083 1103.3752
+226204.068331738 4.1276083 1103.3555
+226205.0683318423 4.127687 1103.316
+226206.0683319466 4.1276083 1103.3752
+226207.0683320509 4.1276083 1103.3555
+226208.0683321552 4.1275687 1103.3555
+226209.0683322595 4.1277261 1103.2765
+226210.0683323639 4.1276474 1103.4147
+226211.0683324682 4.1276474 1103.3357
+226212.0683325725 4.1277261 1103.4147
+226213.0683326768 4.127687 1103.316
+226214.0683327811 4.1277261 1103.4344
+226215.0683328854 4.1276474 1103.3752
+226216.0683329897 4.1277261 1103.2963
+226217.068333094 4.1277657 1103.316
+226218.0683331983 4.127687 1103.3357
+226219.0683333026 4.1276083 1103.3752
+226220.0683334069 4.1277261 1103.3555
+226221.0683335112 4.1277261 1103.2963
+226222.0683336155 4.1277657 1103.4147
+226223.0683337199 4.1278052 1103.2963
+226224.0683338242 4.1277657 1103.3752
+226225.0683339285 4.1277657 1103.3357
+226226.0683340328 4.1278052 1103.3357
+226227.0683341371 4.1277261 1103.3357
+226228.0683342414 4.1278052 1103.3555
+226229.0683343457 4.1278052 1103.4147
+226230.06833445 4.1278052 1103.4542
+226231.0683345543 4.1278839 1103.4147
+226232.0683346586 4.1277657 1103.2963
+226233.0683347629 4.1278052 1103.316
+226234.0683348672 4.1278443 1103.2963
+226235.0683349716 4.1277657 1103.316
+226236.0683350759 4.1277657 1103.4147
+226237.0683351802 4.127923 1103.3555
+226238.0683352845 4.1278839 1103.4147
+226239.0683353888 4.1278443 1103.3357
+226240.0683354931 4.127923 1103.3357
+226241.0683355974 4.1278839 1103.3357
+226242.0683357017 4.1278839 1103.2765
+226243.068335806 4.1278839 1103.3752
+226244.0683359103 4.1278839 1103.3752
+226245.0683360146 4.1278839 1103.3555
+226246.0683361189 4.127923 1103.3752
+226247.0683362233 4.1278839 1103.3949
+226248.0683363276 4.1278443 1103.3752
+226249.0683364319 4.1278839 1103.3357
+226250.0683365362 4.1278443 1103.3555
+226251.0683366405 4.1278839 1103.2963
+226252.0683367448 4.1280017 1103.3752
+226253.0683368491 4.1280017 1103.2567
+226254.0683369534 4.1279626 1103.3357
+226255.0683370577 4.1280017 1103.4147
+226256.068337162 4.127923 1103.3555
+226257.0683372663 4.1279626 1103.2963
+226258.0683373706 4.127923 1103.3357
+226259.068337475 4.1280808 1103.3949
+226260.0683375793 4.1280017 1103.474
+226261.0683376836 4.1281199 1103.3752
+226262.0683377879 4.1279626 1103.3752
+226263.0683378922 4.1279626 1103.3555
+226264.0683379965 4.1281199 1103.3752
+226265.0683381008 4.1280413 1103.4147
+226266.0683382051 4.1280808 1103.3555
+226267.0683383094 4.1280413 1103.4344
+226268.0683384137 4.1280808 1103.3357
+226269.068338518 4.1280017 1103.4147
+226270.0683386223 4.1280413 1103.3949
+226271.0683387266 4.1280808 1103.3752
+226272.068338831 4.1281199 1103.2963
+226273.0683389353 4.1281199 1103.3357
+226274.0683390396 4.1281595 1103.3752
+226275.0683391439 4.1281199 1103.4147
+226276.0683392482 4.1280808 1103.316
+226277.0683393525 4.1280413 1103.3357
+226278.0683394568 4.1280808 1103.316
+226279.0683395611 4.1280808 1103.2963
+226280.0683396654 4.1281199 1103.3357
+226281.0683397697 4.1281595 1103.3752
+226282.068339874 4.1282773 1103.3357
+226283.0683399783 4.1281986 1103.3357
+226284.0683400827 4.1281986 1103.3357
+226285.068340187 4.1282382 1103.316
+226286.0683402913 4.1281199 1103.4147
+226287.0683403956 4.1281595 1103.2963
+226288.0683404999 4.1283169 1103.4147
+226289.0683406042 4.1281986 1103.316
+226290.0683407085 4.1283169 1103.3752
+226291.0683408128 4.1282773 1103.4147
+226292.0683409171 4.1282382 1103.3555
+226293.0683410214 4.1282382 1103.3555
+226294.0683411257 4.1281986 1103.3357
+226295.06834123 4.1282382 1103.3949
+226296.0683413344 4.1282773 1103.4147
+226297.0683414387 4.1283169 1103.3357
+226298.068341543 4.1283169 1103.3357
+226299.0683416473 4.1282773 1103.3752
+226300.0683417516 4.1282382 1103.3949
+226301.0683418559 4.1283956 1103.2369
+226302.0683419602 4.128356 1103.3949
+226303.0683420645 4.1283956 1103.2765
+226304.0683421688 4.128356 1103.3555
+226305.0683422731 4.1283169 1103.3555
+226306.0683423774 4.1283956 1103.316
+226307.0683424817 4.1283956 1103.3752
+226308.068342586 4.1282773 1103.3949
+226309.0683426904 4.128356 1103.3357
+226310.0683427947 4.1282773 1103.4147
+226311.068342899 4.128356 1103.2963
+226312.0683430033 4.1283169 1103.3357
+226313.0683431076 4.1283956 1103.316
+226314.0683432119 4.1283169 1103.3949
+226315.0683433162 4.1284742 1103.3752
+226316.0683434205 4.1284742 1103.3752
+226317.0683435248 4.1283956 1103.3949
+226318.0683436291 4.1284742 1103.2963
+226319.0683437334 4.1284742 1103.3752
+226320.0683438377 4.1283956 1103.316
+226321.0683439421 4.1283956 1103.3752
+226322.0683440464 4.1283956 1103.3752
+226323.0683441507 4.1283956 1103.3357
+226324.068344255 4.1284742 1103.316
+226325.0683443593 4.1284351 1103.2765
+226326.0683444636 4.1285138 1103.4147
+226327.0683445679 4.1284742 1103.316
+226328.0683446722 4.1284742 1103.3555
+226329.0683447765 4.1283956 1103.4542
+226330.0683448808 4.1285529 1103.316
+226331.0683449851 4.1285529 1103.3949
+226332.0683450894 4.1284742 1103.3357
+226333.0683451938 4.1285138 1103.316
+226334.0683452981 4.1285925 1103.2963
+226335.0683454024 4.1285925 1103.4344
+226336.0683455067 4.1285529 1103.2963
+226337.068345611 4.1285925 1103.316
+226338.0683457153 4.1286316 1103.3949
+226339.0683458196 4.1284742 1103.3949
+226340.0683459239 4.1286316 1103.2765
+226341.0683460282 4.1285138 1103.2765
+226342.0683461325 4.1284742 1103.3752
+226343.0683462368 4.1285529 1103.3357
+226344.0683463411 4.1286316 1103.2369
+226345.0683464454 4.1286316 1103.3555
+226346.0683465498 4.1286316 1103.3555
+226347.0683466541 4.1286316 1103.3555
+226348.0683467584 4.1286712 1103.2369
+226349.0683468627 4.1286712 1103.3555
+226350.068346967 4.1285925 1103.3949
+226351.0683470713 4.1287498 1103.3357
+226352.0683471756 4.1285925 1103.3752
+226353.0683472799 4.1287498 1103.3357
+226354.0683473842 4.1287107 1103.3752
+226355.0683474885 4.1287107 1103.4147
+226356.0683475928 4.1286712 1103.3949
+226357.0683476971 4.1287894 1103.3357
+226358.0683478015 4.1286712 1103.2963
+226359.0683479058 4.1287107 1103.3949
+226360.0683480101 4.1287894 1103.2963
+226361.0683481144 4.1287498 1103.316
+226362.0683482187 4.1287498 1103.3555
+226363.068348323 4.1287107 1103.3357
+226364.0683484273 4.1286316 1103.2567
+226365.0683485316 4.1287498 1103.3752
+226366.0683486359 4.1286712 1103.3357
+226367.0683487402 4.1287107 1103.2963
+226368.0683488445 4.1288285 1103.4344
+226369.0683489488 4.1287498 1103.316
+226370.0683490532 4.1287894 1103.3357
+226371.0683491575 4.1288681 1103.3357
+226372.0683492618 4.1289072 1103.474
+226373.0683493661 4.1288681 1103.316
+226374.0683494704 4.1288681 1103.3949
+226375.0683495747 4.1290255 1103.4147
+226376.068349679 4.1288285 1103.3752
+226377.0683497833 4.1289468 1103.2765
+226378.0683498876 4.1288681 1103.3357
+226379.0683499919 4.1287894 1103.3357
+226380.0683500962 4.1289072 1103.316
+226381.0683502005 4.1288681 1103.316
+226382.0683503048 4.1288285 1103.3357
+226383.0683504092 4.129065 1103.3357
+226384.0683505135 4.1288681 1103.3555
+226385.0683506178 4.1288681 1103.3555
+226386.0683507221 4.1289468 1103.3357
+226387.0683508264 4.1288681 1103.4344
+226388.0683509307 4.1289468 1103.2963
+226389.068351035 4.1289859 1103.2567
+226390.0683511393 4.129065 1103.3357
+226391.0683512436 4.1289859 1103.3949
+226392.0683513479 4.1290255 1103.3752
+226393.0683514522 4.1289468 1103.3357
+226394.0683515565 4.1288681 1103.2963
+226395.0683516609 4.129065 1103.3752
+226396.0683517652 4.1289859 1103.316
+226397.0683518695 4.1289468 1103.3555
+226398.0683519738 4.1289468 1103.4542
+226399.0683520781 4.1291041 1103.316
+226400.0683521824 4.129065 1103.4147
+226401.0683522867 4.1291437 1103.3357
+226402.068352391 4.1291041 1103.3949
+226403.0683524953 4.1290255 1103.316
+226404.0683525996 4.129065 1103.3752
+226405.0683527039 4.129065 1103.3752
+226406.0683528082 4.1291041 1103.3357
+226407.0683529126 4.1291828 1103.4147
+226408.0683530169 4.1291437 1103.3555
+226409.0683531212 4.1291437 1103.3357
+226410.0683532255 4.129065 1103.3949
+226411.0683533298 4.1292615 1103.3752
+226412.0683534341 4.1291828 1103.3949
+226413.0683535384 4.1291437 1103.3357
+226414.0683536427 4.1292615 1103.3555
+226415.068353747 4.1291437 1103.3357
+226416.0683538513 4.1291828 1103.2963
+226417.0683539556 4.1292615 1103.3555
+226418.0683540599 4.1291437 1103.3752
+226419.0683541643 4.1291828 1103.2963
+226420.0683542686 4.1291437 1103.3949
+226421.0683543729 4.1293406 1103.3357
+226422.0683544772 4.1291828 1103.4542
+226423.0683545815 4.1291828 1103.316
+226424.0683546858 4.1291828 1103.3357
+226425.0683547901 4.1291828 1103.2963
+226426.0683548944 4.1291437 1103.3949
+226427.0683549987 4.1293011 1103.3949
+226428.068355103 4.1293797 1103.3949
+226429.0683552073 4.1292615 1103.3357
+226430.0683553116 4.1292615 1103.3949
+226431.0683554159 4.1293011 1103.4147
+226432.0683555203 4.1294193 1103.2369
+226433.0683556246 4.1292615 1103.3555
+226434.0683557289 4.1293797 1103.3949
+226435.0683558332 4.1293011 1103.2567
+226436.0683559375 4.1293797 1103.3357
+226437.0683560418 4.1293011 1103.3357
+226438.0683561461 4.1292224 1103.3555
+226439.0683562504 4.1292224 1103.3555
+226440.0683563547 4.1293406 1103.3949
+226441.068356459 4.1292224 1103.4147
+226442.0683565633 4.1293011 1103.3555
+226443.0683566676 4.1293406 1103.3752
+226444.068356772 4.1294193 1103.3752
+226445.0683568763 4.1293406 1103.4542
+226446.0683569806 4.1294193 1103.3357
+226447.0683570849 4.1294193 1103.2765
+226448.0683571892 4.1293797 1103.3555
+226449.0683572935 4.1294193 1103.4344
+226450.0683573978 4.1293797 1103.2765
+226451.0683575021 4.1293406 1103.2963
+226452.0683576064 4.1293797 1103.2963
+226453.0683577107 4.1295371 1103.3555
+226454.068357815 4.1294584 1103.316
+226455.0683579193 4.1295767 1103.3357
+226456.0683580237 4.1294193 1103.4542
+226457.068358128 4.1295371 1103.3752
+226458.0683582323 4.129498 1103.316
+226459.0683583366 4.129498 1103.3949
+226460.0683584409 4.1295371 1103.4147
+226461.0683585452 4.1294193 1103.3752
+226462.0683586495 4.129498 1103.3949
+226463.0683587538 4.1295767 1103.3752
+226464.0683588581 4.1294584 1103.3357
+226465.0683589624 4.1295371 1103.3555
+226466.0683590667 4.1294193 1103.4542
+226467.068359171 4.1295767 1103.4147
+226468.0683592753 4.1294193 1103.316
+226469.0683593797 4.1295767 1103.3949
+226470.068359484 4.1295767 1103.4147
+226471.0683595883 4.1296554 1103.3949
+226472.0683596926 4.1295767 1103.4344
+226473.0683597969 4.1295767 1103.2765
+226474.0683599012 4.1296554 1103.3555
+226475.0683600055 4.1295371 1103.3357
+226476.0683601098 4.1296158 1103.3752
+226477.0683602141 4.1295767 1103.4147
+226478.0683603184 4.1295371 1103.3357
+226479.0683604227 4.1296554 1103.4344
+226480.068360527 4.1296158 1103.3357
+226481.0683606314 4.1296554 1103.4344
+226482.0683607357 4.1296949 1103.3949
+226483.06836084 4.1296554 1103.3357
+226484.0683609443 4.1296554 1103.2765
+226485.0683610486 4.1296158 1103.3357
+226486.0683611529 4.129734 1103.3752
+226487.0683612572 4.1296158 1103.2765
+226488.0683613615 4.1296949 1103.3357
+226489.0683614658 4.1296554 1103.2369
+226490.0683615701 4.1296949 1103.2765
+226491.0683616744 4.129734 1103.4147
+226492.0683617787 4.129734 1103.316
+226493.0683618831 4.1297736 1103.3555
+226494.0683619874 4.129734 1103.3555
+226495.0683620917 4.1297736 1103.3752
+226496.068362196 4.129734 1103.4344
+226497.0683623003 4.1297736 1103.3357
+226498.0683624046 4.129734 1103.3357
+226499.0683625089 4.1297736 1103.3555
+226500.0683626132 4.1298127 1103.3555
+226501.0683627175 4.1298914 1103.3357
+226502.0683628218 4.1297736 1103.316
+226503.0683629261 4.129931 1103.3357
+226504.0683630304 4.1298127 1103.3357
+226505.0683631347 4.1298914 1103.3555
+226506.0683632391 4.1298523 1103.316
+226507.0683633434 4.1298914 1103.4147
+226508.0683634477 4.1298127 1103.3357
+226509.068363552 4.1298914 1103.3555
+226510.0683636563 4.1298523 1103.3949
+226511.0683637606 4.1298523 1103.3357
+226512.0683638649 4.1298523 1103.316
+226513.0683639692 4.1298127 1103.4147
+226514.0683640735 4.1299706 1103.4147
+226515.0683641778 4.129931 1103.3949
+226516.0683642821 4.1298914 1103.2963
+226517.0683643864 4.1300097 1103.316
+226518.0683644908 4.129931 1103.2765
+226519.0683645951 4.129931 1103.4542
+226520.0683646994 4.129931 1103.3949
+226521.0683648037 4.1298914 1103.2765
+226522.068364908 4.1300492 1103.3555
+226523.0683650123 4.1298914 1103.316
+226524.0683651166 4.1300492 1103.2567
+226525.0683652209 4.1300097 1103.3357
+226526.0683653252 4.1299706 1103.3949
+226527.0683654295 4.1300097 1103.3752
+226528.0683655338 4.1300097 1103.4147
+226529.0683656381 4.1298914 1103.3555
+226530.0683657425 4.1300883 1103.2963
+226531.0683658468 4.1300097 1103.316
+226532.0683659511 4.1300883 1103.4147
+226533.0683660554 4.1300883 1103.2765
+226534.0683661597 4.129931 1103.3752
+226535.068366264 4.1300492 1103.3752
+226536.0683663683 4.1300492 1103.3555
+226537.0683664726 4.1300492 1103.3555
+226538.0683665769 4.1300883 1103.4344
+226539.0683666812 4.1300883 1103.4147
+226540.0683667855 4.1300492 1103.4147
+226541.0683668898 4.1300492 1103.3555
+226542.0683669942 4.1300097 1103.4147
+226543.0683670985 4.130167 1103.4344
+226544.0683672028 4.1300492 1103.3555
+226545.0683673071 4.130167 1103.316
+226546.0683674114 4.130167 1103.3555
+226547.0683675157 4.1301279 1103.3357
+226548.06836762 4.1300492 1103.3555
+226549.0683677243 4.130167 1103.4147
+226550.0683678286 4.1301279 1103.3357
+226551.0683679329 4.1302066 1103.3357
+226552.0683680372 4.1302462 1103.3357
+226553.0683681415 4.130167 1103.2765
+226554.0683682458 4.1302066 1103.2765
+226555.0683683502 4.1303248 1103.3752
+226556.0683684545 4.1302066 1103.3752
+226557.0683685588 4.1302066 1103.4147
+226558.0683686631 4.1302853 1103.3949
+226559.0683687674 4.1302066 1103.3357
+226560.0683688717 4.1302462 1103.3555
+226561.068368976 4.1302462 1103.3949
+226562.0683690803 4.1303248 1103.3949
+226563.0683691846 4.1302462 1103.4344
+226564.0683692889 4.1302462 1103.3357
+226565.0683693932 4.1302462 1103.4147
+226566.0683694975 4.1303248 1103.4147
+226567.0683696019 4.1303248 1103.3357
+226568.0683697062 4.1302853 1103.4147
+226569.0683698105 4.1303248 1103.2765
+226570.0683699148 4.1303639 1103.4344
+226571.0683700191 4.1302853 1103.2963
+226572.0683701234 4.1302462 1103.3949
+226573.0683702277 4.1304035 1103.3357
+226574.068370332 4.1303248 1103.2765
+226575.0683704363 4.1303248 1103.3357
+226576.0683705406 4.1303248 1103.3357
+226577.0683706449 4.1304035 1103.3357
+226578.0683707492 4.1303248 1103.3555
+226579.0683708536 4.1304035 1103.3555
+226580.0683709579 4.1304426 1103.3752
+226581.0683710622 4.1304035 1103.3357
+226582.0683711665 4.1304822 1103.2963
+226583.0683712708 4.1304426 1103.3949
+226584.0683713751 4.1305213 1103.3555
+226585.0683714794 4.1304426 1103.3357
+226586.0683715837 4.1303639 1103.4147
+226587.068371688 4.1304426 1103.3357
+226588.0683717923 4.1305213 1103.3555
+226589.0683718966 4.1304035 1103.2963
+226590.0683720009 4.1304035 1103.2765
+226591.0683721052 4.1304426 1103.3752
+226592.0683722096 4.1305213 1103.3357
+226593.0683723139 4.1306005 1103.3752
+226594.0683724182 4.1304822 1103.4344
+226595.0683725225 4.1304426 1103.3752
+226596.0683726268 4.1305213 1103.2963
+226597.0683727311 4.1305213 1103.3752
+226598.0683728354 4.1306005 1103.3357
+226599.0683729397 4.1304822 1103.2369
+226600.068373044 4.1304426 1103.4147
+226601.0683731483 4.1304822 1103.3555
+226602.0683732526 4.1306396 1103.4542
+226603.0683733569 4.1305609 1103.3555
+226604.0683734613 4.1304822 1103.2765
+226605.0683735656 4.1305609 1103.3949
+226606.0683736699 4.1306005 1103.2963
+226607.0683737742 4.1305213 1103.2963
+226608.0683738785 4.1306396 1103.2765
+226609.0683739828 4.1305213 1103.3949
+226610.0683740871 4.1306396 1103.4542
+226611.0683741914 4.1305609 1103.2765
+226612.0683742957 4.1307578 1103.3949
+226613.0683744 4.1306791 1103.3555
+226614.0683745043 4.1307182 1103.3752
+226615.0683746086 4.1307182 1103.4147
+226616.068374713 4.1306005 1103.3949
+226617.0683748173 4.1306791 1103.2963
+226618.0683749216 4.1306396 1103.316
+226619.0683750259 4.1307578 1103.316
+226620.0683751302 4.1306791 1103.3752
+226621.0683752345 4.1306791 1103.4344
+226622.0683753388 4.1307182 1103.3752
+226623.0683754431 4.1306791 1103.316
+226624.0683755474 4.1307969 1103.3555
+226625.0683756517 4.1307578 1103.2765
+226626.068375756 4.1307578 1103.2765
+226627.0683758603 4.1306791 1103.2369
+226628.0683759646 4.1307578 1103.3357
+226629.068376069 4.1307969 1103.3357
+226630.0683761733 4.1307182 1103.3752
+226631.0683762776 4.1307969 1103.3949
+226632.0683763819 4.1307182 1103.4147
+226633.0683764862 4.1307578 1103.2765
+226634.0683765905 4.1307578 1103.316
+226635.0683766948 4.1308365 1103.3357
+226636.0683767991 4.1307969 1103.4147
+226637.0683769034 4.1308365 1103.2963
+226638.0683770077 4.1307969 1103.316
+226639.068377112 4.1309152 1103.3555
+226640.0683772163 4.1307578 1103.316
+226641.0683773207 4.1308761 1103.4147
+226642.068377425 4.1307969 1103.3949
+226643.0683775293 4.1309547 1103.3949
+226644.0683776336 4.1309547 1103.3555
+226645.0683777379 4.1309152 1103.2567
+226646.0683778422 4.1309152 1103.3357
+226647.0683779465 4.1307969 1103.316
+226648.0683780508 4.1309152 1103.3357
+226649.0683781551 4.1309152 1103.3752
+226650.0683782594 4.1309938 1103.3357
+226651.0683783637 4.1309152 1103.3752
+226652.068378468 4.1309152 1103.3555
+226653.0683785724 4.1309152 1103.3752
+226654.0683786767 4.1310334 1103.2963
+226655.068378781 4.1309547 1103.316
+226656.0683788853 4.1310334 1103.3949
+226657.0683789896 4.1309938 1103.3949
+226658.0683790939 4.1310334 1103.2765
+226659.0683791982 4.1310725 1103.3949
+226660.0683793025 4.1309938 1103.3752
+226661.0683794068 4.1309938 1103.3357
+226662.0683795111 4.1309938 1103.3752
+226663.0683796154 4.1310334 1103.4344
+226664.0683797197 4.1311512 1103.3752
+226665.0683798241 4.1309547 1103.3357
+226666.0683799284 4.1311121 1103.3555
+226667.0683800327 4.1309152 1103.3752
+226668.068380137 4.1311512 1103.3752
+226669.0683802413 4.1310725 1103.316
+226670.0683803456 4.1311512 1103.3555
+226671.0683804499 4.1311121 1103.316
+226672.0683805542 4.1311908 1103.3752
+226673.0683806585 4.1311908 1103.3752
+226674.0683807628 4.1311908 1103.3555
+226675.0683808671 4.1311121 1103.2963
+226676.0683809714 4.1311512 1103.3357
+226677.0683810757 4.1311908 1103.3357
+226678.0683811801 4.1312304 1103.316
+226679.0683812844 4.1311908 1103.4344
+226680.0683813887 4.1312304 1103.3357
+226681.068381493 4.1311908 1103.3555
+226682.0683815973 4.1311512 1103.3357
+226683.0683817016 4.1311908 1103.3357
+226684.0683818059 4.1311908 1103.316
+226685.0683819102 4.1312304 1103.3555
+226686.0683820145 4.1312695 1103.3357
+226687.0683821188 4.131309 1103.4147
+226688.0683822231 4.1312304 1103.316
+226689.0683823274 4.1311121 1103.3949
+226690.0683824318 4.1312304 1103.4542
+226691.0683825361 4.131309 1103.3949
+226692.0683826404 4.1313481 1103.316
+226693.0683827447 4.131309 1103.3949
+226694.068382849 4.131309 1103.3752
+226695.0683829533 4.1311512 1103.3357
+226696.0683830576 4.1312304 1103.3752
+226697.0683831619 4.1313481 1103.3357
+226698.0683832662 4.1313481 1103.3555
+226699.0683833705 4.131309 1103.3949
+226700.0683834748 4.1313481 1103.3949
+226701.0683835791 4.1313877 1103.2963
+226702.0683836835 4.1313481 1103.316
+226703.0683837878 4.131309 1103.2765
+226704.0683838921 4.1313481 1103.3357
+226705.0683839964 4.131309 1103.2567
+226706.0683841007 4.1312695 1103.3752
+226707.068384205 4.1314268 1103.2765
+226708.0683843093 4.1313877 1103.2567
+226709.0683844136 4.1314268 1103.4147
+226710.0683845179 4.1313877 1103.3357
+226711.0683846222 4.1314664 1103.3357
+226712.0683847265 4.1314664 1103.3357
+226713.0683848308 4.131309 1103.3949
+226714.0683849351 4.131506 1103.2765
+226715.0683850395 4.1313877 1103.316
+226716.0683851438 4.1313877 1103.2963
+226717.0683852481 4.1314268 1103.3949
+226718.0683853524 4.131506 1103.3555
+226719.0683854567 4.131506 1103.3555
+226720.068385561 4.131506 1103.3752
+226721.0683856653 4.131506 1103.316
+226722.0683857696 4.1315451 1103.3555
+226723.0683858739 4.1315846 1103.3555
+226724.0683859782 4.1314664 1103.2765
+226725.0683860825 4.1314268 1103.4147
+226726.0683861868 4.1315451 1103.3555
+226727.0683862912 4.1315451 1103.4147
+226728.0683863955 4.1315846 1103.3752
+226729.0683864998 4.1314664 1103.3949
+226730.0683866041 4.1314664 1103.3949
+226731.0683867084 4.1314664 1103.3357
+226732.0683868127 4.1315451 1103.3357
+226733.068386917 4.1314664 1103.3555
+226734.0683870213 4.1316237 1103.3752
+226735.0683871256 4.131506 1103.3752
+226736.0683872299 4.1316237 1103.553
+226737.0683873342 4.1316633 1103.316
+226738.0683874385 4.1316237 1103.4344
+226739.0683875429 4.1316633 1103.4147
+226740.0683876472 4.131506 1103.3555
+226741.0683877515 4.1315451 1103.3357
+226742.0683878558 4.1315846 1103.3752
+226743.0683879601 4.1315451 1103.4147
+226744.0683880644 4.1317024 1103.3949
+226745.0683881687 4.1317024 1103.4147
+226746.068388273 4.1317024 1103.4344
+226747.0683883773 4.1317024 1103.2963
+226748.0683884816 4.1317024 1103.4542
+226749.0683885859 4.1316237 1103.3949
+226750.0683886902 4.131742 1103.3949
+226751.0683887945 4.1316633 1103.3752
+226752.0683888989 4.131742 1103.3555
+226753.0683890032 4.131742 1103.4344
+226754.0683891075 4.1317024 1103.3949
+226755.0683892118 4.1318603 1103.3752
+226756.0683893161 4.131742 1103.3555
+226757.0683894204 4.131742 1103.3752
+226758.0683895247 4.1319389 1103.3357
+226759.068389629 4.1317024 1103.3949
+226760.0683897333 4.1317816 1103.3949
+226761.0683898376 4.131742 1103.316
+226762.0683899419 4.1317816 1103.3752
+226763.0683900462 4.1317816 1103.2963
+226764.0683901506 4.131742 1103.3357
+226765.0683902549 4.1318603 1103.3752
+226766.0683903592 4.1318603 1103.3949
+226767.0683904635 4.1317816 1103.3357
+226768.0683905678 4.131978 1103.316
+226769.0683906721 4.1318603 1103.4147
+226770.0683907764 4.131742 1103.3357
+226771.0683908807 4.1318207 1103.4542
+226772.068390985 4.1318994 1103.4147
+226773.0683910893 4.1319389 1103.3949
+226774.0683911936 4.1319389 1103.3752
+226775.0683912979 4.1318994 1103.3752
+226776.0683914023 4.1318603 1103.3357
+226777.0683915066 4.1318994 1103.3949
+226778.0683916109 4.131978 1103.3949
+226779.0683917152 4.1318603 1103.4147
+226780.0683918195 4.131978 1103.3949
+226781.0683919238 4.1319389 1103.2963
+226782.0683920281 4.1319389 1103.4147
+226783.0683921324 4.1319389 1103.3555
+226784.0683922367 4.1319389 1103.3949
+226785.068392341 4.131978 1103.3949
+226786.0683924453 4.1319389 1103.4344
+226787.0683925496 4.1320963 1103.4147
+226788.068392654 4.131978 1103.3555
+226789.0683927583 4.1319389 1103.4344
+226790.0683928626 4.131978 1103.3357
+226791.0683929669 4.131978 1103.5134
+226792.0683930712 4.1320567 1103.3949
+226793.0683931755 4.131978 1103.2765
+226794.0683932798 4.1320176 1103.3752
+226795.0683933841 4.1320567 1103.3752
+226796.0683934884 4.1320567 1103.3357
+226797.0683935927 4.1320567 1103.4344
+226798.068393697 4.1320176 1103.4147
+226799.0683938013 4.1320567 1103.4147
+226800.0683939056 4.1320567 1103.2963
+226801.06839401 4.1321359 1103.4147
+226802.0683941143 4.1320963 1103.4147
+226803.0683942186 4.1320963 1103.4542
+226804.0683943229 4.131978 1103.3752
+226805.0683944272 4.1320963 1103.474
+226806.0683945315 4.1321359 1103.3357
+226807.0683946358 4.1321359 1103.4147
+226808.0683947401 4.1320963 1103.3752
+226809.0683948444 4.1320963 1103.3357
+226810.0683949487 4.1322536 1103.3555
+226811.068395053 4.132175 1103.4344
+226812.0683951573 4.1321359 1103.3752
+226813.0683952617 4.1322536 1103.474
+226814.068395366 4.1320567 1103.4147
+226815.0683954703 4.132175 1103.3357
+226816.0683955746 4.1322145 1103.2765
+226817.0683956789 4.1322145 1103.4938
+226818.0683957832 4.1323323 1103.4344
+226819.0683958875 4.1322536 1103.3357
+226820.0683959918 4.132175 1103.474
+226821.0683960961 4.1322536 1103.4344
+226822.0683962004 4.1322145 1103.3357
+226823.0683963047 4.1322536 1103.316
+226824.068396409 4.1322536 1103.4938
+226825.0683965134 4.1324115 1103.3555
+226826.0683966177 4.1322932 1103.4147
+226827.068396722 4.1322145 1103.3949
+226828.0683968263 4.1323323 1103.3949
+226829.0683969306 4.1322932 1103.3752
+226830.0683970349 4.1322536 1103.3555
+226831.0683971392 4.1323323 1103.2765
+226832.0683972435 4.1322932 1103.3949
+226833.0683973478 4.1322932 1103.3555
+226834.0683974521 4.1323719 1103.4344
+226835.0683975564 4.1324115 1103.3555
+226836.0683976607 4.1324115 1103.3555
+226837.068397765 4.1323719 1103.3752
+226838.0683978694 4.1324115 1103.316
+226839.0683979737 4.1324115 1103.3357
+226840.068398078 4.1323719 1103.3555
+226841.0683981823 4.1323323 1103.4542
+226842.0683982866 4.1324902 1103.4147
+226843.0683983909 4.1323719 1103.4147
+226844.0683984952 4.1324115 1103.3357
+226845.0683985995 4.1324115 1103.3357
+226846.0683987038 4.1324506 1103.3752
+226847.0683988081 4.1324902 1103.4147
+226848.0683989124 4.1324506 1103.4147
+226849.0683990167 4.1324506 1103.3555
+226850.0683991211 4.1324115 1103.3357
+226851.0683992254 4.1325688 1103.4344
+226852.0683993297 4.1324506 1103.4147
+226853.068399434 4.1325688 1103.3949
+226854.0683995383 4.1325688 1103.3555
+226855.0683996426 4.1324902 1103.3752
+226856.0683997469 4.1324506 1103.4344
+226857.0683998512 4.1326079 1103.3949
+226858.0683999555 4.1326079 1103.3949
+226859.0684000598 4.1325688 1103.4344
+226860.0684001641 4.1326475 1103.3752
+226861.0684002684 4.1326079 1103.316
+226862.0684003728 4.1326475 1103.4147
+226863.0684004771 4.1326079 1103.4542
+226864.0684005814 4.1325688 1103.3949
+226865.0684006857 4.1325688 1103.2765
+226866.06840079 4.1326079 1103.3752
+226867.0684008943 4.1326475 1103.3752
+226868.0684009986 4.1327658 1103.3555
+226869.0684011029 4.1326079 1103.474
+226870.0684012072 4.1326866 1103.3555
+226871.0684013115 4.1327262 1103.4147
+226872.0684014158 4.1326475 1103.3752
+226873.0684015201 4.1326475 1103.4147
+226874.0684016244 4.1326079 1103.4542
+226875.0684017288 4.1326475 1103.3752
+226876.0684018331 4.1327658 1103.4147
+226877.0684019374 4.1327262 1103.4344
+226878.0684020417 4.1328444 1103.4147
+226879.068402146 4.1327658 1103.3752
+226880.0684022503 4.1327658 1103.3949
+226881.0684023546 4.1327658 1103.3555
+226882.0684024589 4.1327262 1103.474
+226883.0684025632 4.1327262 1103.4147
+226884.0684026675 4.1328049 1103.4147
+226885.0684027718 4.1328049 1103.4344
+226886.0684028761 4.1327658 1103.316
+226887.0684029805 4.1327658 1103.3949
+226888.0684030848 4.1328835 1103.4147
+226889.0684031891 4.1328444 1103.3752
+226890.0684032934 4.1328835 1103.3949
+226891.0684033977 4.1328835 1103.3949
+226892.068403502 4.1327262 1103.3752
+226893.0684036063 4.1328444 1103.3752
+226894.0684037106 4.1328444 1103.4938
+226895.0684038149 4.1329231 1103.3752
+226896.0684039192 4.1327658 1103.4542
+226897.0684040235 4.1328444 1103.3555
+226898.0684041278 4.1329231 1103.3357
+226899.0684042322 4.1327658 1103.3949
+226900.0684043365 4.1328444 1103.3555
+226901.0684044408 4.1328835 1103.4147
+226902.0684045451 4.1328835 1103.4344
+226903.0684046494 4.1328835 1103.316
+226904.0684047537 4.1329622 1103.4344
+226905.068404858 4.1328835 1103.3949
+226906.0684049623 4.1330414 1103.3949
+226907.0684050666 4.1328835 1103.3949
+226908.0684051709 4.1330414 1103.3555
+226909.0684052752 4.1329231 1103.3357
+226910.0684053795 4.1330018 1103.4147
+226911.0684054838 4.1329231 1103.4344
+226912.0684055882 4.1330018 1103.3752
+226913.0684056925 4.1330805 1103.474
+226914.0684057968 4.1330414 1103.4147
+226915.0684059011 4.1330018 1103.316
+226916.0684060054 4.1330414 1103.4147
+226917.0684061097 4.1330805 1103.4542
+226918.068406214 4.1330805 1103.4147
+226919.0684063183 4.1330018 1103.3752
+226920.0684064226 4.1330414 1103.4542
+226921.0684065269 4.1330805 1103.3949
+226922.0684066312 4.1330805 1103.2963
+226923.0684067355 4.1330414 1103.4344
+226924.0684068399 4.1331201 1103.4147
+226925.0684069442 4.1330805 1103.3555
+226926.0684070485 4.1330805 1103.3949
+226927.0684071528 4.1330805 1103.3949
+226928.0684072571 4.1330414 1103.3357
+226929.0684073614 4.1332378 1103.3752
+226930.0684074657 4.1331987 1103.3949
+226931.06840757 4.1330805 1103.3357
+226932.0684076743 4.1331201 1103.3357
+226933.0684077786 4.1331592 1103.3949
+226934.0684078829 4.1331592 1103.3949
+226935.0684079872 4.1331201 1103.4344
+226936.0684080916 4.1331201 1103.3752
+226937.0684081959 4.1331987 1103.3752
+226938.0684083002 4.1332378 1103.3357
+226939.0684084045 4.1332378 1103.3752
+226940.0684085088 4.1332378 1103.3949
+226941.0684086131 4.1333165 1103.4147
+226942.0684087174 4.1331592 1103.4147
+226943.0684088217 4.1332378 1103.3752
+226944.068408926 4.1332774 1103.4147
+226945.0684090303 4.1334348 1103.4344
+226946.0684091346 4.1331987 1103.3752
+226947.0684092389 4.1333165 1103.3949
+226948.0684093433 4.1333957 1103.4542
+226949.0684094476 4.1332774 1103.4542
+226950.0684095519 4.1334348 1103.4147
+226951.0684096562 4.1332774 1103.3949
+226952.0684097605 4.1334348 1103.3555
+226953.0684098648 4.1334348 1103.4344
+226954.0684099691 4.1333561 1103.3357
+226955.0684100734 4.1333165 1103.3949
+226956.0684101777 4.1333561 1103.316
+226957.068410282 4.1333957 1103.3752
+226958.0684103863 4.1333165 1103.3949
+226959.0684104906 4.1334743 1103.4542
+226960.0684105949 4.1333957 1103.4938
+226961.0684106993 4.1333957 1103.3752
+226962.0684108036 4.1334348 1103.3357
+226963.0684109079 4.1333957 1103.3752
+226964.0684110122 4.1333957 1103.316
+226965.0684111165 4.1334348 1103.3949
+226966.0684112208 4.1333957 1103.4344
+226967.0684113251 4.1334348 1103.3357
+226968.0684114294 4.133553 1103.4344
+226969.0684115337 4.1334743 1103.3357
+226970.068411638 4.133553 1103.2963
+226971.0684117423 4.133553 1103.2567
+226972.0684118466 4.1335135 1103.3949
+226973.068411951 4.1334743 1103.4344
+226974.0684120553 4.1334348 1103.3555
+226975.0684121596 4.1335135 1103.3555
+226976.0684122639 4.1335921 1103.3949
+226977.0684123682 4.133553 1103.3555
+226978.0684124725 4.133553 1103.3555
+226979.0684125768 4.133553 1103.3949
+226980.0684126811 4.1335921 1103.4542
+226981.0684127854 4.1336713 1103.4344
+226982.0684128897 4.1335135 1103.4147
+226983.068412994 4.1336317 1103.3752
+226984.0684130983 4.1333957 1103.4147
+226985.0684132027 4.1336713 1103.3752
+226986.068413307 4.1336713 1103.4147
+226987.0684134113 4.1336713 1103.474
+226988.0684135156 4.1336317 1103.4147
+226989.0684136199 4.1337104 1103.4344
+226990.0684137242 4.1336317 1103.316
+226991.0684138285 4.1335921 1103.3949
+226992.0684139328 4.13375 1103.3949
+226993.0684140371 4.1337104 1103.3949
+226994.0684141414 4.1336713 1103.3555
+226995.0684142457 4.13375 1103.3949
+226996.06841435 4.1337104 1103.3357
+226997.0684144543 4.13375 1103.3555
+226998.0684145587 4.1337104 1103.3949
+226999.068414663 4.1336317 1103.3357
+227000.0684147673 4.1337891 1103.4147
+227001.0684148716 4.1336713 1103.4147
+227002.0684149759 4.13375 1103.3752
+227003.0684150802 4.1337104 1103.4344
+227004.0684151845 4.13375 1103.4344
+227005.0684152888 4.1338286 1103.3752
+227006.0684153931 4.1337891 1103.4147
+227007.0684154974 4.1338286 1103.4147
+227008.0684156017 4.1337891 1103.3949
+227009.068415706 4.1338286 1103.3949
+227010.0684158104 4.1337891 1103.3949
+227011.0684159147 4.1337104 1103.3555
+227012.068416019 4.1338677 1103.3357
+227013.0684161233 4.1337891 1103.3752
+227014.0684162276 4.1339073 1103.3555
+227015.0684163319 4.1338677 1103.3949
+227016.0684164362 4.1337891 1103.3752
+227017.0684165405 4.1338286 1103.3555
+227018.0684166448 4.1339073 1103.4147
+227019.0684167491 4.1339469 1103.3555
+227020.0684168534 4.1339073 1103.3357
+227021.0684169577 4.1338677 1103.4542
+227022.0684170621 4.1338286 1103.3555
+227023.0684171664 4.1338677 1103.3752
+227024.0684172707 4.1339073 1103.3752
+227025.068417375 4.133986 1103.4344
+227026.0684174793 4.133986 1103.3752
+227027.0684175836 4.133986 1103.3752
+227028.0684176879 4.1339073 1103.3555
+227029.0684177922 4.1341043 1103.3555
+227030.0684178965 4.1340256 1103.4542
+227031.0684180008 4.133986 1103.3555
+227032.0684181051 4.1339073 1103.3752
+227033.0684182094 4.1340256 1103.3949
+227034.0684183137 4.1340647 1103.316
+227035.0684184181 4.1340256 1103.5134
+227036.0684185224 4.133986 1103.474
+227037.0684186267 4.133986 1103.4147
+227038.068418731 4.1340256 1103.3555
+227039.0684188353 4.1340647 1103.3752
+227040.0684189396 4.1341434 1103.4147
+227041.0684190439 4.1340256 1103.3752
+227042.0684191482 4.1340647 1103.3357
+227043.0684192525 4.1341434 1103.3949
+227044.0684193568 4.133986 1103.3949
+227045.0684194611 4.134222 1103.3949
+227046.0684195654 4.1340647 1103.3752
+227047.0684196698 4.1341434 1103.3555
+227048.0684197741 4.1341434 1103.2963
+227049.0684198784 4.1340647 1103.3357
+227050.0684199827 4.1341434 1103.4344
+227051.068420087 4.1341829 1103.3752
+227052.0684201913 4.1341829 1103.3949
+227053.0684202956 4.1341829 1103.4542
+227054.0684203999 4.1341434 1103.4938
+227055.0684205042 4.1342616 1103.3357
+227056.0684206085 4.1341434 1103.3357
+227057.0684207128 4.134222 1103.4542
+227058.0684208171 4.1343012 1103.4344
+227059.0684209215 4.134222 1103.3752
+227060.0684210258 4.134222 1103.3357
+227061.0684211301 4.134222 1103.4344
+227062.0684212344 4.1342616 1103.3949
+227063.0684213387 4.1343799 1103.4147
+227064.068421443 4.1342616 1103.3752
+227065.0684215473 4.1342616 1103.3357
+227066.0684216516 4.1344585 1103.3752
+227067.0684217559 4.1342616 1103.3949
+227068.0684218602 4.1343403 1103.4344
+227069.0684219645 4.1343403 1103.474
+227070.0684220688 4.1343403 1103.3752
+227071.0684221732 4.1343403 1103.2963
+227072.0684222775 4.134222 1103.4147
+227073.0684223818 4.134419 1103.4344
+227074.0684224861 4.134419 1103.3555
+227075.0684225904 4.1343799 1103.3357
+227076.0684226947 4.134419 1103.4147
+227077.068422799 4.1343403 1103.3949
+227078.0684229033 4.1343403 1103.4542
+227079.0684230076 4.134419 1103.3752
+227080.0684231119 4.1343012 1103.4147
+227081.0684232162 4.1344976 1103.4147
+227082.0684233205 4.134419 1103.3949
+227083.0684234248 4.1343403 1103.4344
+227084.0684235292 4.1345372 1103.3752
+227085.0684236335 4.1344585 1103.3555
+227086.0684237378 4.134419 1103.4344
+227087.0684238421 4.1345768 1103.3752
+227088.0684239464 4.1345768 1103.3357
+227089.0684240507 4.1344976 1103.3752
+227090.068424155 4.1345372 1103.4344
+227091.0684242593 4.1344976 1103.4344
+227092.0684243636 4.1344976 1103.5134
+227093.0684244679 4.1345372 1103.4938
+227094.0684245722 4.1345372 1103.474
+227095.0684246765 4.1344585 1103.3555
+227096.0684247809 4.1345768 1103.3949
+227097.0684248852 4.1345372 1103.3752
+227098.0684249895 4.1345768 1103.4147
+227099.0684250938 4.1344976 1103.4542
+227100.0684251981 4.1345768 1103.3949
+227101.0684253024 4.1345768 1103.4344
+227102.0684254067 4.1345768 1103.3949
+227103.068425511 4.1345768 1103.474
+227104.0684256153 4.1346159 1103.3357
+227105.0684257196 4.1345768 1103.474
+227106.0684258239 4.1347342 1103.4147
+227107.0684259282 4.1346555 1103.3752
+227108.0684260326 4.1347342 1103.3949
+227109.0684261369 4.1346159 1103.3752
+227110.0684262412 4.1347733 1103.3949
+227111.0684263455 4.1347342 1103.3752
+227112.0684264498 4.1346946 1103.4344
+227113.0684265541 4.1346946 1103.3555
+227114.0684266584 4.1346946 1103.3752
+227115.0684267627 4.1346946 1103.3752
+227116.068426867 4.1347733 1103.4344
+227117.0684269713 4.1346946 1103.3949
+227118.0684270756 4.1347342 1103.4147
+227119.0684271799 4.1347342 1103.3555
+227120.0684272842 4.1346946 1103.3752
+227121.0684273886 4.1348128 1103.3949
+227122.0684274929 4.1348519 1103.3555
+227123.0684275972 4.1348128 1103.4147
+227124.0684277015 4.1347733 1103.3949
+227125.0684278058 4.1348519 1103.2963
+227126.0684279101 4.1347733 1103.4344
+227127.0684280144 4.1348128 1103.4147
+227128.0684281187 4.1347733 1103.3357
+227129.068428223 4.1348519 1103.316
+227130.0684283273 4.1348519 1103.3949
+227131.0684284316 4.1348128 1103.4344
+227132.0684285359 4.1347733 1103.3949
+227133.0684286403 4.1349311 1103.3752
+227134.0684287446 4.1348915 1103.4542
+227135.0684288489 4.1348915 1103.4147
+227136.0684289532 4.1349311 1103.3949
+227137.0684290575 4.1348915 1103.4542
+227138.0684291618 4.1349311 1103.3555
+227139.0684292661 4.1349311 1103.3555
+227140.0684293704 4.1348915 1103.3357
+227141.0684294747 4.1349311 1103.4344
+227142.068429579 4.1350098 1103.3949
+227143.0684296833 4.1349311 1103.3949
+227144.0684297876 4.1349702 1103.474
+227145.068429892 4.1350098 1103.3949
+227146.0684299963 4.1350489 1103.5134
+227147.0684301006 4.1350884 1103.3752
+227148.0684302049 4.1350098 1103.4542
+227149.0684303092 4.1349311 1103.3949
+227150.0684304135 4.1350489 1103.3357
+227151.0684305178 4.1350884 1103.3949
+227152.0684306221 4.1349702 1103.3949
+227153.0684307264 4.1351275 1103.4344
+227154.0684308307 4.1350489 1103.3357
+227155.068430935 4.1350489 1103.3555
+227156.0684310393 4.1350489 1103.3752
+227157.0684311436 4.1350884 1103.3949
+227158.068431248 4.1350884 1103.3949
+227159.0684313523 4.1350884 1103.3949
+227160.0684314566 4.1351275 1103.3752
+227161.0684315609 4.1350884 1103.3949
+227162.0684316652 4.1351275 1103.2765
+227163.0684317695 4.1349702 1103.3555
+227164.0684318738 4.1350884 1103.316
+227165.0684319781 4.1352067 1103.316
+227166.0684320824 4.1350884 1103.4147
+227167.0684321867 4.1352067 1103.3949
+227168.068432291 4.1352458 1103.4147
+227169.0684323953 4.1352067 1103.3555
+227170.0684324997 4.1352067 1103.4344
+227171.068432604 4.1352067 1103.4147
+227172.0684327083 4.1352458 1103.3949
+227173.0684328126 4.1353245 1103.3752
+227174.0684329169 4.1353641 1103.3949
+227175.0684330212 4.1352067 1103.316
+227176.0684331255 4.1353245 1103.2963
+227177.0684332298 4.1352458 1103.3949
+227178.0684333341 4.1352067 1103.3752
+227179.0684334384 4.1352067 1103.316
+227180.0684335427 4.1353245 1103.4344
+227181.068433647 4.1352458 1103.3949
+227182.0684337514 4.1352458 1103.4147
+227183.0684338557 4.1353245 1103.4147
+227184.06843396 4.1354032 1103.3357
+227185.0684340643 4.1354032 1103.474
+227186.0684341686 4.1353245 1103.3357
+227187.0684342729 4.1354032 1103.3949
+227188.0684343772 4.1352854 1103.3555
+227189.0684344815 4.1354032 1103.3949
+227190.0684345858 4.1354427 1103.3555
+227191.0684346901 4.1354427 1103.474
+227192.0684347944 4.1354032 1103.316
+227193.0684348987 4.1354032 1103.4147
+227194.0684350031 4.1354823 1103.4344
+227195.0684351074 4.1354427 1103.3555
+227196.0684352117 4.1354823 1103.3949
+227197.068435316 4.1354032 1103.4147
+227198.0684354203 4.1354427 1103.4344
+227199.0684355246 4.1354823 1103.4147
+227200.0684356289 4.1354823 1103.3949
+227201.0684357332 4.1354823 1103.3357
+227202.0684358375 4.1355214 1103.3555
+227203.0684359418 4.1355214 1103.4147
+227204.0684360461 4.1355214 1103.3357
+227205.0684361504 4.1354823 1103.3949
+227206.0684362547 4.135561 1103.3555
+227207.0684363591 4.1354823 1103.316
+227208.0684364634 4.1356397 1103.4344
+227209.0684365677 4.1356397 1103.4344
+227210.068436672 4.1356001 1103.3752
+227211.0684367763 4.1356788 1103.4147
+227212.0684368806 4.1356001 1103.4147
+227213.0684369849 4.1354823 1103.3752
+227214.0684370892 4.1355214 1103.4344
+227215.0684371935 4.1356397 1103.3555
+227216.0684372978 4.1356788 1103.4147
+227217.0684374021 4.1357183 1103.3752
+227218.0684375064 4.1357183 1103.3357
+227219.0684376108 4.1357574 1103.4147
+227220.0684377151 4.1356397 1103.3752
+227221.0684378194 4.1356788 1103.316
+227222.0684379237 4.1357183 1103.4344
+227223.068438028 4.1357183 1103.4147
+227224.0684381323 4.1357183 1103.4938
+227225.0684382366 4.1357183 1103.474
+227226.0684383409 4.1357183 1103.3949
+227227.0684384452 4.1357183 1103.316
+227228.0684385495 4.1356397 1103.3949
+227229.0684386538 4.1359153 1103.3752
+227230.0684387581 4.1357574 1103.4147
+227231.0684388625 4.1358757 1103.3752
+227232.0684389668 4.1357183 1103.3949
+227233.0684390711 4.1357183 1103.316
+227234.0684391754 4.1359153 1103.316
+227235.0684392797 4.1358366 1103.2963
+227236.068439384 4.135797 1103.4344
+227237.0684394883 4.1358366 1103.4344
+227238.0684395926 4.1357574 1103.3555
+227239.0684396969 4.1357574 1103.4938
+227240.0684398012 4.1358757 1103.3555
+227241.0684399055 4.1358757 1103.4147
+227242.0684400098 4.1358757 1103.474
+227243.0684401141 4.1358757 1103.3949
+227244.0684402185 4.135797 1103.3752
+227245.0684403228 4.1358366 1103.3752
+227246.0684404271 4.1358366 1103.4344
+227247.0684405314 4.1359544 1103.3949
+227248.0684406357 4.1358757 1103.4542
+227249.06844074 4.1359153 1103.3752
+227250.0684408443 4.135797 1103.3752
+227251.0684409486 4.1360331 1103.2567
+227252.0684410529 4.1359544 1103.4938
+227253.0684411572 4.1359153 1103.4147
+227254.0684412615 4.1359544 1103.4147
+227255.0684413658 4.1360331 1103.316
+227256.0684414702 4.1360331 1103.3357
+227257.0684415745 4.135994 1103.3949
+227258.0684416788 4.135994 1103.3555
+227259.0684417831 4.1360331 1103.316
+227260.0684418874 4.1359544 1103.3555
+227261.0684419917 4.1360331 1103.4147
+227262.068442096 4.135994 1103.3949
+227263.0684422003 4.1360331 1103.3555
+227264.0684423046 4.1360331 1103.3357
+227265.0684424089 4.1360331 1103.3357
+227266.0684425132 4.1360726 1103.316
+227267.0684426175 4.1360331 1103.3357
+227268.0684427219 4.1360726 1103.4344
+227269.0684428262 4.1361513 1103.4147
+227270.0684429305 4.1361122 1103.3752
+227271.0684430348 4.1361122 1103.3555
+227272.0684431391 4.1360331 1103.3555
+227273.0684432434 4.1360726 1103.3752
+227274.0684433477 4.135994 1103.2765
+227275.068443452 4.1361122 1103.4147
+227276.0684435563 4.1361122 1103.3357
+227277.0684436606 4.1361909 1103.3357
+227278.0684437649 4.1361513 1103.3357
+227279.0684438692 4.1361909 1103.316
+227280.0684439735 4.13623 1103.3357
+227281.0684440779 4.1361513 1103.3752
+227282.0684441822 4.1361513 1103.3949
+227283.0684442865 4.1361909 1103.4344
+227284.0684443908 4.1362696 1103.3949
+227285.0684444951 4.1361909 1103.3752
+227286.0684445994 4.1361513 1103.4147
+227287.0684447037 4.1363087 1103.3555
+227288.068444808 4.1361909 1103.3949
+227289.0684449123 4.1363087 1103.3555
+227290.0684450166 4.1361909 1103.3555
+227291.0684451209 4.1363482 1103.3752
+227292.0684452252 4.13623 1103.3555
+227293.0684453296 4.1363482 1103.3555
+227294.0684454339 4.1363087 1103.3752
+227295.0684455382 4.1363087 1103.3752
+227296.0684456425 4.1363087 1103.3949
+227297.0684457468 4.1364665 1103.4542
+227298.0684458511 4.1362696 1103.3752
+227299.0684459554 4.1363087 1103.3752
+227300.0684460597 4.1363873 1103.4147
+227301.068446164 4.1363873 1103.4938
+227302.0684462683 4.1364665 1103.3752
+227303.0684463726 4.1364269 1103.2963
+227304.0684464769 4.1364665 1103.4147
+227305.0684465813 4.1364269 1103.3752
+227306.0684466856 4.1364665 1103.474
+227307.0684467899 4.1363873 1103.3949
+227308.0684468942 4.1363873 1103.474
+227309.0684469985 4.1365056 1103.3555
+227310.0684471028 4.1364665 1103.3752
+227311.0684472071 4.1364665 1103.4344
+227312.0684473114 4.1364269 1103.4147
+227313.0684474157 4.1364665 1103.4344
+227314.06844752 4.1364665 1103.4147
+227315.0684476243 4.1364269 1103.4542
+227316.0684477286 4.1365452 1103.3555
+227317.0684478329 4.1365452 1103.4344
+227318.0684479373 4.1365056 1103.3949
+227319.0684480416 4.1364665 1103.3555
+227320.0684481459 4.1365056 1103.3949
+227321.0684482502 4.1365843 1103.3949
+227322.0684483545 4.1365843 1103.3752
+227323.0684484588 4.1366239 1103.3555
+227324.0684485631 4.1365056 1103.316
+227325.0684486674 4.1366239 1103.2963
+227326.0684487717 4.1365843 1103.3752
+227327.068448876 4.1366239 1103.316
+227328.0684489803 4.1365843 1103.3555
+227329.0684490846 4.1366239 1103.4344
+227330.068449189 4.1367025 1103.3555
+227331.0684492933 4.1366239 1103.4344
+227332.0684493976 4.1366239 1103.3555
+227333.0684495019 4.1367025 1103.3752
+227334.0684496062 4.1365452 1103.4147
+227335.0684497105 4.1366239 1103.316
+227336.0684498148 4.136663 1103.3357
+227337.0684499191 4.1368208 1103.3752
+227338.0684500234 4.1365056 1103.4147
+227339.0684501277 4.1367421 1103.4147
+227340.068450232 4.1367025 1103.316
+227341.0684503363 4.1367812 1103.3949
+227342.0684504407 4.1368208 1103.4542
+227343.068450545 4.1367812 1103.2963
+227344.0684506493 4.1367812 1103.3752
+227345.0684507536 4.1367812 1103.3357
+227346.0684508579 4.1368599 1103.3752
+227347.0684509622 4.1368208 1103.3949
+227348.0684510665 4.1367025 1103.3752
+227349.0684511708 4.1368208 1103.3752
+227350.0684512751 4.1367812 1103.3752
+227351.0684513794 4.1367812 1103.3752
+227352.0684514837 4.1368599 1103.4147
+227353.068451588 4.1369386 1103.4344
+227354.0684516924 4.1368599 1103.3752
+227355.0684517967 4.1368208 1103.3752
+227356.068451901 4.1370177 1103.3949
+227357.0684520053 4.1368995 1103.4344
+227358.0684521096 4.1369386 1103.3357
+227359.0684522139 4.1369781 1103.3752
+227360.0684523182 4.1368995 1103.3949
+227361.0684524225 4.1370177 1103.3752
+227362.0684525268 4.1369386 1103.474
+227363.0684526311 4.1369386 1103.3949
+227364.0684527354 4.1369781 1103.3949
+227365.0684528397 4.1369386 1103.3949
+227366.068452944 4.1369781 1103.3949
+227367.0684530484 4.1369386 1103.4542
+227368.0684531527 4.1369781 1103.3752
+227369.068453257 4.1370964 1103.4542
+227370.0684533613 4.1369386 1103.316
+227371.0684534656 4.1369781 1103.4344
+227372.0684535699 4.1370568 1103.3555
+227373.0684536742 4.1370177 1103.3357
+227374.0684537785 4.1370568 1103.3949
+227375.0684538828 4.1370177 1103.3357
+227376.0684539871 4.1370964 1103.2963
+227377.0684540914 4.1371751 1103.2567
+227378.0684541957 4.1371355 1103.3555
+227379.0684543001 4.1371751 1103.316
+227380.0684544044 4.1371751 1103.3949
+227381.0684545087 4.1370964 1103.316
+227382.068454613 4.1370964 1103.3752
+227383.0684547173 4.1372538 1103.4542
+227384.0684548216 4.1371751 1103.316
+227385.0684549259 4.1371751 1103.3752
+227386.0684550302 4.1371751 1103.4147
+227387.0684551345 4.1372538 1103.3555
+227388.0684552388 4.1371355 1103.316
+227389.0684553431 4.1371751 1103.3752
+227390.0684554474 4.1373324 1103.3949
+227391.0684555518 4.1370964 1103.3949
+227392.0684556561 4.1372142 1103.4344
+227393.0684557604 4.1372142 1103.316
+227394.0684558647 4.1372538 1103.4147
+227395.068455969 4.1370964 1103.3949
+227396.0684560733 4.1371751 1103.3949
+227397.0684561776 4.1372929 1103.3949
+227398.0684562819 4.1372929 1103.2765
+227399.0684563862 4.1372929 1103.3949
+227400.0684564905 4.1372929 1103.3752
+227401.0684565948 4.137372 1103.3949
+227402.0684566991 4.1374111 1103.4344
+227403.0684568034 4.1372929 1103.3752
+227404.0684569078 4.1374111 1103.3949
+227405.0684570121 4.1374507 1103.3949
+227406.0684571164 4.1374507 1103.4147
+227407.0684572207 4.137372 1103.3555
+227408.068457325 4.1374111 1103.3357
+227409.0684574293 4.1374111 1103.3949
+227410.0684575336 4.1374898 1103.3357
+227411.0684576379 4.1374507 1103.3752
+227412.0684577422 4.1373324 1103.316
+227413.0684578465 4.137372 1103.3949
+227414.0684579508 4.1374507 1103.316
+227415.0684580551 4.1374507 1103.474
+227416.0684581595 4.1374898 1103.4938
+227417.0684582638 4.1374898 1103.3949
+227418.0684583681 4.1376081 1103.3752
+227419.0684584724 4.1374507 1103.4147
+227420.0684585767 4.1376081 1103.4542
+227421.068458681 4.1375294 1103.316
+227422.0684587853 4.1375685 1103.316
+227423.0684588896 4.1374898 1103.3357
+227424.0684589939 4.1376081 1103.4542
+227425.0684590982 4.1375685 1103.3752
+227426.0684592025 4.1376081 1103.3949
+227427.0684593068 4.1375685 1103.3949
+227428.0684594112 4.1375294 1103.5134
+227429.0684595155 4.1375685 1103.3555
+227430.0684596198 4.1375685 1103.474
+227431.0684597241 4.1376867 1103.3752
+227432.0684598284 4.1376081 1103.4542
+227433.0684599327 4.1376476 1103.4344
+227434.068460037 4.1376867 1103.3949
+227435.0684601413 4.1376476 1103.3357
+227436.0684602456 4.1376867 1103.3752
+227437.0684603499 4.1376476 1103.3752
+227438.0684604542 4.137805 1103.3949
+227439.0684605585 4.1376867 1103.4147
+227440.0684606628 4.1376081 1103.3949
+227441.0684607672 4.1377654 1103.4147
+227442.0684608715 4.1377263 1103.3357
+227443.0684609758 4.1375685 1103.4542
+227444.0684610801 4.1377263 1103.4147
+227445.0684611844 4.1377654 1103.2963
+227446.0684612887 4.1377654 1103.4344
+227447.068461393 4.137805 1103.3752
+227448.0684614973 4.1377263 1103.3357
+227449.0684616016 4.137805 1103.3555
+227450.0684617059 4.1378441 1103.4542
+227451.0684618102 4.137805 1103.3357
+227452.0684619145 4.1377654 1103.3555
+227453.0684620189 4.1378441 1103.4147
+227454.0684621232 4.1378837 1103.4542
+227455.0684622275 4.137805 1103.3555
+227456.0684623318 4.1378441 1103.3949
+227457.0684624361 4.1378441 1103.4344
+227458.0684625404 4.1378837 1103.3949
+227459.0684626447 4.1378837 1103.3357
+227460.068462749 4.1378441 1103.4938
+227461.0684628533 4.1378837 1103.3357
+227462.0684629576 4.1378837 1103.3357
+227463.0684630619 4.1378837 1103.4344
+227464.0684631662 4.138041 1103.4147
+227465.0684632706 4.1379623 1103.4147
+227466.0684633749 4.1379623 1103.4344
+227467.0684634792 4.1379623 1103.5134
+227468.0684635835 4.1380019 1103.3357
+227469.0684636878 4.138041 1103.4147
+227470.0684637921 4.1379623 1103.3357
+227471.0684638964 4.1380019 1103.4147
+227472.0684640007 4.1380019 1103.4344
+227473.068464105 4.138041 1103.3752
+227474.0684642093 4.1381197 1103.4542
+227475.0684643136 4.1379623 1103.4147
+227476.0684644179 4.1381197 1103.3357
+227477.0684645223 4.1381593 1103.3555
+227478.0684646266 4.1380806 1103.3555
+227479.0684647309 4.1381984 1103.3752
+227480.0684648352 4.138041 1103.3752
+227481.0684649395 4.1381593 1103.3752
+227482.0684650438 4.1381197 1103.3949
+227483.0684651481 4.1380806 1103.3949
+227484.0684652524 4.1381984 1103.4147
+227485.0684653567 4.1381593 1103.3752
+227486.068465461 4.1380806 1103.4542
+227487.0684655653 4.1381593 1103.3555
+227488.0684656696 4.138238 1103.3949
+227489.0684657739 4.138238 1103.316
+227490.0684658783 4.1381984 1103.2567
+227491.0684659826 4.138238 1103.474
+227492.0684660869 4.1381593 1103.3949
+227493.0684661912 4.138238 1103.3357
+227494.0684662955 4.1381593 1103.3555
+227495.0684663998 4.138238 1103.3949
+227496.0684665041 4.1383166 1103.2765
+227497.0684666084 4.1383562 1103.3949
+227498.0684667127 4.1383166 1103.4147
+227499.068466817 4.1383166 1103.4147
+227500.0684669213 4.1381984 1103.3357
+227501.0684670256 4.138238 1103.4542
+227502.06846713 4.1381984 1103.3555
+227503.0684672343 4.1383562 1103.3555
+227504.0684673386 4.1383562 1103.5134
+227505.0684674429 4.1383562 1103.4344
+227506.0684675472 4.1383562 1103.4147
+227507.0684676515 4.1382775 1103.3949
+227508.0684677558 4.1382775 1103.3752
+227509.0684678601 4.1383562 1103.4938
+227510.0684679644 4.1383562 1103.3752
+227511.0684680687 4.1384349 1103.4147
+227512.068468173 4.1383562 1103.3357
+227513.0684682773 4.1383953 1103.3555
+227514.0684683817 4.1383953 1103.3752
+227515.068468486 4.1383166 1103.3357
+227516.0684685903 4.1384349 1103.3555
+227517.0684686946 4.1383562 1103.3949
+227518.0684687989 4.1385922 1103.3949
+227519.0684689032 4.1384349 1103.2963
+227520.0684690075 4.1383166 1103.4147
+227521.0684691118 4.138474 1103.4147
+227522.0684692161 4.138474 1103.3752
+227523.0684693204 4.138474 1103.4344
+227524.0684694247 4.1384349 1103.4147
+227525.068469529 4.1385922 1103.3949
+227526.0684696333 4.1385527 1103.3949
+227527.0684697377 4.1385136 1103.4344
+227528.068469842 4.1385136 1103.3752
+227529.0684699463 4.1385922 1103.3555
+227530.0684700506 4.1386318 1103.3752
+227531.0684701549 4.1386318 1103.3752
+227532.0684702592 4.1386709 1103.3555
+227533.0684703635 4.1386318 1103.3752
+227534.0684704678 4.1387105 1103.3949
+227535.0684705721 4.1386318 1103.3949
+227536.0684706764 4.1386318 1103.3357
+227537.0684707807 4.1385922 1103.3949
+227538.068470885 4.1386709 1103.3949
+227539.0684709894 4.1386318 1103.3949
+227540.0684710937 4.1386318 1103.3949
+227541.068471198 4.1386709 1103.4147
+227542.0684713023 4.1386709 1103.4938
+227543.0684714066 4.1387105 1103.316
+227544.0684715109 4.1386709 1103.316
+227545.0684716152 4.1386709 1103.3949
+227546.0684717195 4.1387105 1103.4147
+227547.0684718238 4.1387496 1103.3752
+227548.0684719281 4.1387496 1103.3949
+227549.0684720324 4.1388283 1103.316
+227550.0684721367 4.1387496 1103.4542
+227551.0684722411 4.1387496 1103.4542
+227552.0684723454 4.1389465 1103.474
+227553.0684724497 4.1388283 1103.3357
+227554.068472554 4.1388283 1103.4542
+227555.0684726583 4.1388283 1103.3752
+227556.0684727626 4.1387892 1103.3752
+227557.0684728669 4.1387496 1103.4147
+227558.0684729712 4.1387892 1103.2963
+227559.0684730755 4.1388679 1103.3357
+227560.0684731798 4.1388679 1103.3949
+227561.0684732841 4.1389465 1103.4938
+227562.0684733884 4.1389074 1103.2963
+227563.0684734927 4.1388679 1103.3357
+227564.0684735971 4.1388679 1103.3357
+227565.0684737014 4.1389861 1103.4542
+227566.0684738057 4.1389861 1103.4344
+227567.06847391 4.1388679 1103.3555
+227568.0684740143 4.1388679 1103.316
+227569.0684741186 4.1389861 1103.3752
+227570.0684742229 4.1389861 1103.4344
+227571.0684743272 4.1389465 1103.3555
+227572.0684744315 4.1389465 1103.3357
+227573.0684745358 4.1390648 1103.4344
+227574.0684746401 4.1389074 1103.3949
+227575.0684747444 4.1389861 1103.3752
+227576.0684748488 4.1389861 1103.3555
+227577.0684749531 4.1391039 1103.3555
+227578.0684750574 4.1391039 1103.3555
+227579.0684751617 4.1389465 1103.2567
+227580.068475266 4.1390648 1103.4147
+227581.0684753703 4.1390252 1103.474
+227582.0684754746 4.1391039 1103.3555
+227583.0684755789 4.1391435 1103.3949
+227584.0684756832 4.1390648 1103.3949
+227585.0684757875 4.1390648 1103.4147
+227586.0684758918 4.1391435 1103.4147
+227587.0684759961 4.1390252 1103.4147
+227588.0684761005 4.1390648 1103.3949
+227589.0684762048 4.139183 1103.3949
+227590.0684763091 4.139183 1103.316
+227591.0684764134 4.1392221 1103.3949
+227592.0684765177 4.1391039 1103.3752
+227593.068476622 4.1392617 1103.3752
+227594.0684767263 4.1391435 1103.4938
+227595.0684768306 4.1392617 1103.3357
+227596.0684769349 4.1392221 1103.3555
+227597.0684770392 4.1392221 1103.4344
+227598.0684771435 4.139183 1103.3555
+227599.0684772478 4.1391039 1103.5332
+227600.0684773522 4.139183 1103.3752
+227601.0684774565 4.1392617 1103.4344
+227602.0684775608 4.1393404 1103.3752
+227603.0684776651 4.1392617 1103.474
+227604.0684777694 4.1393008 1103.3555
+227605.0684778737 4.1392617 1103.3555
+227606.068477978 4.1392221 1103.3949
+227607.0684780823 4.1392221 1103.4147
+227608.0684781866 4.1393404 1103.316
+227609.0684782909 4.1393008 1103.4938
+227610.0684783952 4.1393008 1103.3949
+227611.0684784995 4.1393795 1103.4344
+227612.0684786038 4.1393795 1103.4147
+227613.0684787082 4.1393404 1103.2963
+227614.0684788125 4.1393795 1103.3949
+227615.0684789168 4.1394978 1103.3949
+227616.0684790211 4.1394191 1103.3949
+227617.0684791254 4.1393795 1103.3949
+227618.0684792297 4.1394191 1103.3357
+227619.068479334 4.1393795 1103.4147
+227620.0684794383 4.1394978 1103.3555
+227621.0684795426 4.1393795 1103.3949
+227622.0684796469 4.1394582 1103.4344
+227623.0684797512 4.1395373 1103.3752
+227624.0684798555 4.1394191 1103.3752
+227625.0684799599 4.1394582 1103.3949
+227626.0684800642 4.1394978 1103.3949
+227627.0684801685 4.1395764 1103.3555
+227628.0684802728 4.1395373 1103.3949
+227629.0684803771 4.1394582 1103.3752
+227630.0684804814 4.1395373 1103.3949
+227631.0684805857 4.1394978 1103.3752
+227632.06848069 4.1395373 1103.3949
+227633.0684807943 4.1395373 1103.3752
+227634.0684808986 4.139616 1103.3752
+227635.0684810029 4.139616 1103.4542
+227636.0684811072 4.1395373 1103.4147
+227637.0684812116 4.1396551 1103.3949
+227638.0684813159 4.139616 1103.3555
+227639.0684814202 4.139616 1103.3555
+227640.0684815245 4.1397338 1103.3949
+227641.0684816288 4.1395764 1103.3752
+227642.0684817331 4.139616 1103.3752
+227643.0684818374 4.1396551 1103.3949
+227644.0684819417 4.139616 1103.3555
+227645.068482046 4.1397338 1103.316
+227646.0684821503 4.1397338 1103.3752
+227647.0684822546 4.1396551 1103.3949
+227648.0684823589 4.1396947 1103.3555
+227649.0684824632 4.1398129 1103.3555
+227650.0684825676 4.1397734 1103.3949
+227651.0684826719 4.1397338 1103.316
+227652.0684827762 4.1397734 1103.3752
+227653.0684828805 4.1398129 1103.3752
+227654.0684829848 4.1398129 1103.4147
+227655.0684830891 4.139852 1103.4344
+227656.0684831934 4.139852 1103.3357
+227657.0684832977 4.1397734 1103.316
+227658.068483402 4.1397734 1103.4344
+227659.0684835063 4.139852 1103.4147
+227660.0684836106 4.139852 1103.3949
+227661.0684837149 4.1399307 1103.4344
+227662.0684838193 4.1398129 1103.3752
+227663.0684839236 4.1398129 1103.4147
+227664.0684840279 4.139852 1103.3752
+227665.0684841322 4.1399703 1103.4147
+227666.0684842365 4.1398916 1103.4147
+227667.0684843408 4.139852 1103.4542
+227668.0684844451 4.139852 1103.4147
+227669.0684845494 4.1398916 1103.3752
+227670.0684846537 4.1399307 1103.4542
+227671.068484758 4.1399307 1103.4147
+227672.0684848623 4.1400094 1103.3752
+227673.0684849666 4.140049 1103.3357
+227674.068485071 4.1399703 1103.3752
+227675.0684851753 4.1399703 1103.2963
+227676.0684852796 4.140049 1103.3752
+227677.0684853839 4.1400094 1103.4344
+227678.0684854882 4.1399703 1103.3752
+227679.0684855925 4.140049 1103.3357
+227680.0684856968 4.1400094 1103.3949
+227681.0684858011 4.140049 1103.4542
+227682.0684859054 4.140049 1103.3949
+227683.0684860097 4.1401672 1103.4344
+227684.068486114 4.1401672 1103.3752
+227685.0684862183 4.1399703 1103.3949
+227686.0684863226 4.1400881 1103.3555
+227687.068486427 4.1401672 1103.3357
+227688.0684865313 4.1401672 1103.4344
+227689.0684866356 4.140049 1103.3357
+227690.0684867399 4.1401672 1103.4344
+227691.0684868442 4.1401277 1103.4147
+227692.0684869485 4.1401277 1103.3555
+227693.0684870528 4.1401672 1103.3949
+227694.0684871571 4.1401672 1103.3555
+227695.0684872614 4.1402063 1103.4147
+227696.0684873657 4.1402459 1103.3357
+227697.06848747 4.1402459 1103.3357
+227698.0684875743 4.1402459 1103.3555
+227699.0684876787 4.1402063 1103.4147
+227700.068487783 4.1402063 1103.3949
+227701.0684878873 4.1402063 1103.3949
+227702.0684879916 4.1402459 1103.3752
+227703.0684880959 4.140285 1103.3357
+227704.0684882002 4.1402459 1103.316
+227705.0684883045 4.140285 1103.3555
+227706.0684884088 4.1402459 1103.3949
+227707.0684885131 4.1403246 1103.4344
+227708.0684886174 4.1404033 1103.4147
+227709.0684887217 4.1404033 1103.4147
+227710.068488826 4.140285 1103.4147
+227711.0684889304 4.1403246 1103.3752
+227712.0684890347 4.1403246 1103.3752
+227713.068489139 4.1403637 1103.3752
+227714.0684892433 4.1403246 1103.3357
+227715.0684893476 4.1403637 1103.3555
+227716.0684894519 4.1404033 1103.3357
+227717.0684895562 4.1404428 1103.4344
+227718.0684896605 4.1403637 1103.4147
+227719.0684897648 4.1404033 1103.3752
+227720.0684898691 4.1405215 1103.474
+227721.0684899734 4.1404428 1103.2963
+227722.0684900777 4.1404428 1103.3752
+227723.0684901821 4.1404033 1103.3752
+227724.0684902864 4.1404033 1103.3555
+227725.0684903907 4.1405606 1103.3752
+227726.068490495 4.1404033 1103.4147
+227727.0684905993 4.1405606 1103.316
+227728.0684907036 4.1404033 1103.4344
+227729.0684908079 4.1405215 1103.3949
+227730.0684909122 4.1405215 1103.3752
+227731.0684910165 4.1405215 1103.4147
+227732.0684911208 4.1406002 1103.4344
+227733.0684912251 4.1404819 1103.4147
+227734.0684913294 4.1406393 1103.3555
+227735.0684914337 4.1406002 1103.3555
+227736.0684915381 4.1406002 1103.3555
+227737.0684916424 4.1406393 1103.4147
+227738.0684917467 4.1406002 1103.4344
+227739.068491851 4.1405606 1103.3949
+227740.0684919553 4.1406393 1103.4147
+227741.0684920596 4.1406393 1103.3949
+227742.0684921639 4.1406393 1103.4344
+227743.0684922682 4.1406393 1103.3357
+227744.0684923725 4.1406789 1103.316
+227745.0684924768 4.1407185 1103.3357
+227746.0684925811 4.1407185 1103.3949
+227747.0684926854 4.1407971 1103.3949
+227748.0684927898 4.1407185 1103.474
+227749.0684928941 4.1406393 1103.4344
+227750.0684929984 4.1407576 1103.4147
+227751.0684931027 4.1407971 1103.316
+227752.068493207 4.1407971 1103.3949
+227753.0684933113 4.1407971 1103.3949
+227754.0684934156 4.1407185 1103.4344
+227755.0684935199 4.1407971 1103.4344
+227756.0684936242 4.1408758 1103.3752
+227757.0684937285 4.1407971 1103.3357
+227758.0684938328 4.1409149 1103.316
+227759.0684939371 4.1407971 1103.2765
+227760.0684940415 4.1407971 1103.3752
+227761.0684941458 4.1408362 1103.2963
+227762.0684942501 4.1409149 1103.3752
+227763.0684943544 4.1408758 1103.4344
+227764.0684944587 4.1409149 1103.316
+227765.068494563 4.1409545 1103.3949
+227766.0684946673 4.1409936 1103.316
+227767.0684947716 4.1409149 1103.3949
+227768.0684948759 4.1409149 1103.4147
+227769.0684949802 4.1410728 1103.3949
+227770.0684950845 4.1409936 1103.3949
+227771.0684951888 4.1408758 1103.4147
+227772.0684952931 4.1409545 1103.3949
+227773.0684953975 4.1410728 1103.3752
+227774.0684955018 4.1411119 1103.3752
+227775.0684956061 4.1410332 1103.3949
+227776.0684957104 4.1411119 1103.3949
+227777.0684958147 4.1411119 1103.4344
+227778.068495919 4.1409936 1103.474
+227779.0684960233 4.1410728 1103.3752
+227780.0684961276 4.1409936 1103.4344
+227781.0684962319 4.1410332 1103.3555
+227782.0684963362 4.1411119 1103.3949
+227783.0684964405 4.1411119 1103.3555
+227784.0684965448 4.1411514 1103.4542
+227785.0684966492 4.1411514 1103.4147
+227786.0684967535 4.1411905 1103.316
+227787.0684968578 4.1411119 1103.2765
+227788.0684969621 4.1411514 1103.3752
+227789.0684970664 4.1412692 1103.474
+227790.0684971707 4.1412301 1103.4147
+227791.068497275 4.1411119 1103.3752
+227792.0684973793 4.1411514 1103.3752
+227793.0684974836 4.1412301 1103.3949
+227794.0684975879 4.1412692 1103.3357
+227795.0684976922 4.1413088 1103.316
+227796.0684977965 4.1412301 1103.3555
+227797.0684979009 4.1412301 1103.3357
+227798.0684980052 4.1412301 1103.4147
+227799.0684981095 4.1413484 1103.3357
+227800.0684982138 4.141427 1103.3949
+227801.0684983181 4.1412301 1103.3555
+227802.0684984224 4.1413088 1103.3949
+227803.0684985267 4.1413484 1103.3949
+227804.068498631 4.1414661 1103.2963
+227805.0684987353 4.1413088 1103.3357
+227806.0684988396 4.141427 1103.3555
+227807.0684989439 4.1413875 1103.4344
+227808.0684990482 4.1413484 1103.3752
+227809.0684991525 4.141427 1103.5332
+227810.0684992569 4.1413875 1103.4344
+227811.0684993612 4.141427 1103.3949
+227812.0684994655 4.141427 1103.4147
+227813.0684995698 4.1413875 1103.3752
+227814.0684996741 4.1415448 1103.4147
+227815.0684997784 4.1415057 1103.3949
+227816.0684998827 4.1414661 1103.3555
+227817.068499987 4.1414661 1103.3752
+227818.0685000913 4.1414661 1103.3949
+227819.0685001956 4.1415844 1103.4542
+227820.0685002999 4.1414661 1103.3555
+227821.0685004042 4.1415057 1103.474
+227822.0685005086 4.141427 1103.316
+227823.0685006129 4.1415057 1103.3357
+227824.0685007172 4.1415057 1103.316
+227825.0685008215 4.1415448 1103.4147
+227826.0685009258 4.1416631 1103.3555
+227827.0685010301 4.1416235 1103.4147
+227828.0685011344 4.1416235 1103.3752
+227829.0685012387 4.1416235 1103.3357
+227830.068501343 4.1415448 1103.3752
+227831.0685014473 4.1416235 1103.3555
+227832.0685015516 4.1417027 1103.3949
+227833.0685016559 4.1416235 1103.4147
+227834.0685017603 4.1417418 1103.4938
+227835.0685018646 4.1416235 1103.2963
+227836.0685019689 4.1417813 1103.316
+227837.0685020732 4.1417813 1103.3949
+227838.0685021775 4.1417027 1103.3949
+227839.0685022818 4.1417027 1103.3949
+227840.0685023861 4.1417027 1103.4344
+227841.0685024904 4.1416631 1103.3752
+227842.0685025947 4.1417027 1103.316
+227843.068502699 4.1416631 1103.474
+227844.0685028033 4.1417027 1103.3555
+227845.0685029076 4.1417418 1103.3555
+227846.0685030119 4.1417418 1103.4147
+227847.0685031163 4.1417418 1103.3357
+227848.0685032206 4.1417418 1103.3949
+227849.0685033249 4.1418204 1103.3555
+227850.0685034292 4.1418204 1103.3752
+227851.0685035335 4.1418991 1103.3555
+227852.0685036378 4.1418991 1103.316
+227853.0685037421 4.1418204 1103.3752
+227854.0685038464 4.1418204 1103.4344
+227855.0685039507 4.1418991 1103.4147
+227856.068504055 4.1419783 1103.474
+227857.0685041593 4.1419387 1103.4344
+227858.0685042636 4.1418991 1103.3555
+227859.068504368 4.1419783 1103.4344
+227860.0685044723 4.1419783 1103.3357
+227861.0685045766 4.1418204 1103.3357
+227862.0685046809 4.14186 1103.4147
+227863.0685047852 4.1419387 1103.4147
+227864.0685048895 4.1419387 1103.3555
+227865.0685049938 4.1420174 1103.3752
+227866.0685050981 4.1420569 1103.4542
+227867.0685052024 4.1420174 1103.3752
+227868.0685053067 4.1420174 1103.3752
+227869.068505411 4.1420174 1103.3752
+227870.0685055153 4.142096 1103.3949
+227871.0685056197 4.1419783 1103.3949
+227872.068505724 4.1419783 1103.3752
+227873.0685058283 4.1420174 1103.4147
+227874.0685059326 4.142096 1103.474
+227875.0685060369 4.142096 1103.3949
+227876.0685061412 4.1420569 1103.2369
+227877.0685062455 4.142096 1103.3357
+227878.0685063498 4.1421356 1103.3555
+227879.0685064541 4.1420174 1103.4344
+227880.0685065584 4.1421356 1103.3949
+227881.0685066627 4.1422143 1103.4147
+227882.068506767 4.1422143 1103.3752
+227883.0685068714 4.1421356 1103.3555
+227884.0685069757 4.1422143 1103.3752
+227885.06850708 4.1422534 1103.4938
+227886.0685071843 4.1421747 1103.3555
+227887.0685072886 4.1421356 1103.4344
+227888.0685073929 4.1422534 1103.4542
+227889.0685074972 4.1422534 1103.3949
+227890.0685076015 4.1422534 1103.4344
+227891.0685077058 4.1421356 1103.3357
+227892.0685078101 4.142293 1103.4147
+227893.0685079144 4.1423326 1103.3555
+227894.0685080187 4.1422143 1103.5134
+227895.068508123 4.1423717 1103.474
+227896.0685082274 4.1423717 1103.4147
+227897.0685083317 4.1424503 1103.4542
+227898.068508436 4.142293 1103.4938
+227899.0685085403 4.1423717 1103.4344
+227900.0685086446 4.1423326 1103.3949
+227901.0685087489 4.1423326 1103.3357
+227902.0685088532 4.1424112 1103.3555
+227903.0685089575 4.1424503 1103.3357
+227904.0685090618 4.1423717 1103.2567
+227905.0685091661 4.1424899 1103.2963
+227906.0685092704 4.1424112 1103.3752
+227907.0685093747 4.1424112 1103.4147
+227908.0685094791 4.1424112 1103.3357
+227909.0685095834 4.1424899 1103.3555
+227910.0685096877 4.142529 1103.3752
+227911.068509792 4.1424899 1103.4344
+227912.0685098963 4.1424899 1103.3949
+227913.0685100006 4.1424899 1103.3752
+227914.0685101049 4.1426082 1103.4147
+227915.0685102092 4.1425686 1103.3357
+227916.0685103135 4.1425686 1103.3752
+227917.0685104178 4.1426082 1103.316
+227918.0685105221 4.1425686 1103.474
+227919.0685106264 4.142529 1103.4147
+227920.0685107308 4.1426473 1103.3357
+227921.0685108351 4.1426082 1103.4938
+227922.0685109394 4.1426868 1103.3949
+227923.0685110437 4.1426473 1103.4344
+227924.068511148 4.142529 1103.316
+227925.0685112523 4.1426473 1103.2765
+227926.0685113566 4.1426082 1103.316
+227927.0685114609 4.1426473 1103.3752
+227928.0685115652 4.1426473 1103.4344
+227929.0685116695 4.1426868 1103.4147
+227930.0685117738 4.1426082 1103.3949
+227931.0685118781 4.1427259 1103.3555
+227932.0685119824 4.1427655 1103.3949
+227933.0685120868 4.1426868 1103.3752
+227934.0685121911 4.1428442 1103.3555
+227935.0685122954 4.1427655 1103.4147
+227936.0685123997 4.1427259 1103.4147
+227937.068512504 4.1428442 1103.4344
+227938.0685126083 4.1427655 1103.3752
+227939.0685127126 4.1427259 1103.3949
+227940.0685128169 4.1428046 1103.4147
+227941.0685129212 4.1427655 1103.474
+227942.0685130255 4.1428442 1103.3357
+227943.0685131298 4.1428442 1103.3357
+227944.0685132341 4.1428838 1103.4147
+227945.0685133385 4.1428046 1103.4147
+227946.0685134428 4.1428838 1103.3949
+227947.0685135471 4.1430016 1103.3949
+227948.0685136514 4.1429229 1103.4147
+227949.0685137557 4.1429229 1103.4344
+227950.06851386 4.1428838 1103.2765
+227951.0685139643 4.1429229 1103.4147
+227952.0685140686 4.1428838 1103.3357
+227953.0685141729 4.1429229 1103.3949
+227954.0685142772 4.1429229 1103.3555
+227955.0685143815 4.1429229 1103.3357
+227956.0685144858 4.1429625 1103.3555
+227957.0685145902 4.1429625 1103.3555
+227958.0685146945 4.1431198 1103.3357
+227959.0685147988 4.1430016 1103.4147
+227960.0685149031 4.1430016 1103.4147
+227961.0685150074 4.1430016 1103.4938
+227962.0685151117 4.1429625 1103.3949
+227963.068515216 4.1430016 1103.3357
+227964.0685153203 4.1430802 1103.316
+227965.0685154246 4.1431589 1103.4344
+227966.0685155289 4.1430802 1103.3555
+227967.0685156332 4.1431198 1103.3949
+227968.0685157375 4.1431198 1103.3752
+227969.0685158418 4.1432381 1103.2963
+227970.0685159462 4.1431589 1103.316
+227971.0685160505 4.1431985 1103.3555
+227972.0685161548 4.1432381 1103.3555
+227973.0685162591 4.1431589 1103.474
+227974.0685163634 4.1431589 1103.316
+227975.0685164677 4.1431589 1103.4147
+227976.068516572 4.1432772 1103.4147
+227977.0685166763 4.1431985 1103.3357
+227978.0685167806 4.1431985 1103.3752
+227979.0685168849 4.1431985 1103.4147
+227980.0685169892 4.1433167 1103.3555
+227981.0685170935 4.1432381 1103.3752
+227982.0685171979 4.1433558 1103.474
+227983.0685173022 4.1433167 1103.4542
+227984.0685174065 4.1432381 1103.4344
+227985.0685175108 4.1432772 1103.3555
+227986.0685176151 4.1434345 1103.3357
+227987.0685177194 4.1431985 1103.3949
+227988.0685178237 4.1433558 1103.316
+227989.068517928 4.1433954 1103.4147
+227990.0685180323 4.1433558 1103.4344
+227991.0685181366 4.1434741 1103.4542
+227992.0685182409 4.1433558 1103.474
+227993.0685183452 4.1433558 1103.4147
+227994.0685184496 4.1433954 1103.474
+227995.0685185539 4.1435137 1103.3357
+227996.0685186582 4.1433954 1103.474
+227997.0685187625 4.1434345 1103.316
+227998.0685188668 4.1434345 1103.4542
+227999.0685189711 4.1433954 1103.4542
+228000.0685190754 4.1434345 1103.4147
+228001.0685191797 4.1434741 1103.4344
+228002.068519284 4.1434345 1103.474
+228003.0685193883 4.1434345 1103.3555
+228004.0685194926 4.1435137 1103.316
+228005.0685195969 4.1435137 1103.3949
+228006.0685197013 4.1435137 1103.474
+228007.0685198056 4.1435924 1103.474
+228008.0685199099 4.1436315 1103.3357
+228009.0685200142 4.1435924 1103.4938
+228010.0685201185 4.1434741 1103.3949
+228011.0685202228 4.1436315 1103.3752
+228012.0685203271 4.1435924 1103.3357
+228013.0685204314 4.1435137 1103.3752
+228014.0685205357 4.1436315 1103.3949
+228015.06852064 4.143671 1103.4542
+228016.0685207443 4.143671 1103.4147
+228017.0685208486 4.1435137 1103.4147
+228018.0685209529 4.1435924 1103.4938
+228019.0685210573 4.143671 1103.3949
+228020.0685211616 4.143671 1103.3752
+228021.0685212659 4.1438284 1103.3752
+228022.0685213702 4.1437101 1103.4344
+228023.0685214745 4.1437888 1103.4542
+228024.0685215788 4.1437497 1103.5134
+228025.0685216831 4.1437497 1103.4147
+228026.0685217874 4.1437888 1103.4147
+228027.0685218917 4.1437101 1103.4147
+228028.068521996 4.1438284 1103.3555
+228029.0685221003 4.1437101 1103.4938
+228030.0685222046 4.1438284 1103.3357
+228031.068522309 4.1438284 1103.4147
+228032.0685224133 4.1438284 1103.3752
+228033.0685225176 4.143868 1103.4147
+228034.0685226219 4.143868 1103.3752
+228035.0685227262 4.143868 1103.4147
+228036.0685228305 4.1439466 1103.4542
+228037.0685229348 4.1439466 1103.4147
+228038.0685230391 4.1439071 1103.4147
+228039.0685231434 4.1437888 1103.3949
+228040.0685232477 4.143868 1103.3357
+228041.068523352 4.143868 1103.3949
+228042.0685234563 4.1440253 1103.3949
+228043.0685235607 4.1439071 1103.3555
+228044.068523665 4.1439466 1103.4542
+228045.0685237693 4.144104 1103.3949
+228046.0685238736 4.1439857 1103.474
+228047.0685239779 4.1439857 1103.3752
+228048.0685240822 4.1439466 1103.4344
+228049.0685241865 4.1440253 1103.316
+228050.0685242908 4.1439857 1103.3949
+228051.0685243951 4.1439857 1103.3555
+228052.0685244994 4.1440253 1103.3752
+228053.0685246037 4.1441436 1103.4147
+228054.068524708 4.1440253 1103.3949
+228055.0685248123 4.1440644 1103.3555
+228056.0685249167 4.144104 1103.2567
+228057.068525021 4.144104 1103.4147
+228058.0685251253 4.1441436 1103.3555
+228059.0685252296 4.1441827 1103.3949
+228060.0685253339 4.1441436 1103.4344
+228061.0685254382 4.1440644 1103.3357
+228062.0685255425 4.1441827 1103.4147
+228063.0685256468 4.1442614 1103.3555
+228064.0685257511 4.1441436 1103.4542
+228065.0685258554 4.1441436 1103.3357
+228066.0685259597 4.1442614 1103.3752
+228067.068526064 4.1443009 1103.316
+228068.0685261684 4.1442223 1103.3357
+228069.0685262727 4.1443796 1103.3555
+228070.068526377 4.1443009 1103.3357
+228071.0685264813 4.1442614 1103.3555
+228072.0685265856 4.1443796 1103.3357
+228073.0685266899 4.14434 1103.4542
+228074.0685267942 4.1442614 1103.4344
+228075.0685268985 4.1443009 1103.4147
+228076.0685270028 4.1442614 1103.3752
+228077.0685271071 4.14434 1103.3752
+228078.0685272114 4.14434 1103.3752
+228079.0685273157 4.1443796 1103.3752
+228080.0685274201 4.1443796 1103.3949
+228081.0685275244 4.1444192 1103.474
+228082.0685276287 4.1443796 1103.316
+228083.068527733 4.14434 1103.3555
+228084.0685278373 4.14434 1103.3555
+228085.0685279416 4.1444192 1103.3555
+228086.0685280459 4.1444583 1103.3949
+228087.0685281502 4.1444192 1103.3949
+228088.0685282545 4.1444192 1103.474
+228089.0685283588 4.144537 1103.3357
+228090.0685284631 4.144537 1103.3949
+228091.0685285674 4.1444979 1103.4344
+228092.0685286717 4.1443796 1103.3752
+228093.0685287761 4.1444192 1103.3555
+228094.0685288804 4.1444979 1103.4344
+228095.0685289847 4.144537 1103.3357
+228096.068529089 4.1444979 1103.3555
+228097.0685291933 4.1445765 1103.4344
+228098.0685292976 4.1444979 1103.3752
+228099.0685294019 4.1444979 1103.3949
+228100.0685295062 4.144537 1103.4147
+228101.0685296105 4.1446552 1103.4147
+228102.0685297148 4.1446943 1103.316
+228103.0685298191 4.1446943 1103.4542
+228104.0685299234 4.1446552 1103.4344
+228105.0685300278 4.1445765 1103.3357
+228106.0685301321 4.1446943 1103.3555
+228107.0685302364 4.1446157 1103.4344
+228108.0685303407 4.1446943 1103.3555
+228109.068530445 4.1446943 1103.316
+228110.0685305493 4.1447339 1103.4344
+228111.0685306536 4.1446552 1103.4938
+228112.0685307579 4.1447339 1103.4542
+228113.0685308622 4.1448522 1103.3949
+228114.0685309665 4.1447735 1103.3949
+228115.0685310708 4.1448126 1103.2963
+228116.0685311751 4.1447339 1103.3555
+228117.0685312795 4.1447339 1103.3555
+228118.0685313838 4.1447735 1103.2963
+228119.0685314881 4.1447339 1103.4344
+228120.0685315924 4.1448522 1103.4344
+228121.0685316967 4.1447735 1103.4344
+228122.068531801 4.1448522 1103.316
+228123.0685319053 4.1448522 1103.4147
+228124.0685320096 4.1448522 1103.4344
+228125.0685321139 4.1448126 1103.474
+228126.0685322182 4.1448126 1103.4542
+228127.0685323225 4.1448913 1103.2963
+228128.0685324268 4.1449308 1103.3555
+228129.0685325312 4.1449699 1103.3752
+228130.0685326355 4.1448913 1103.3949
+228131.0685327398 4.1448913 1103.4147
+228132.0685328441 4.1449308 1103.3555
+228133.0685329484 4.1449699 1103.3949
+228134.0685330527 4.1450882 1103.4147
+228135.068533157 4.1450491 1103.3752
+228136.0685332613 4.1450882 1103.4542
+228137.0685333656 4.1450491 1103.3357
+228138.0685334699 4.1449699 1103.4344
+228139.0685335742 4.1449699 1103.3752
+228140.0685336785 4.1449699 1103.3949
+228141.0685337828 4.1450095 1103.4344
+228142.0685338872 4.1450491 1103.2963
+228143.0685339915 4.1450882 1103.3949
+228144.0685340958 4.1450491 1103.3752
+228145.0685342001 4.1451669 1103.3752
+228146.0685343044 4.1452065 1103.3949
+228147.0685344087 4.1451278 1103.3357
+228148.068534513 4.1451278 1103.3555
+228149.0685346173 4.1451278 1103.4147
+228150.0685347216 4.1450095 1103.3357
+228151.0685348259 4.1452456 1103.4344
+228152.0685349302 4.1451669 1103.3752
+228153.0685350345 4.1452065 1103.4542
+228154.0685351389 4.1451669 1103.474
+228155.0685352432 4.1452851 1103.3949
+228156.0685353475 4.1453242 1103.3555
+228157.0685354518 4.1452456 1103.316
+228158.0685355561 4.1452851 1103.4344
+228159.0685356604 4.1451278 1103.3555
+228160.0685357647 4.1453242 1103.3949
+228161.068535869 4.1452851 1103.4344
+228162.0685359733 4.1452456 1103.3752
+228163.0685360776 4.1452456 1103.4147
+228164.0685361819 4.1452851 1103.4542
+228165.0685362862 4.1454034 1103.4147
+228166.0685363906 4.1454034 1103.3949
+228167.0685364949 4.1453638 1103.3752
+228168.0685365992 4.1453242 1103.3752
+228169.0685367035 4.1453638 1103.3357
+228170.0685368078 4.1454425 1103.3752
+228171.0685369121 4.1453242 1103.4147
+228172.0685370164 4.1454034 1103.4344
+228173.0685371207 4.1454034 1103.3357
+228174.068537225 4.1454034 1103.4147
+228175.0685373293 4.1454821 1103.3555
+228176.0685374336 4.1455212 1103.316
+228177.0685375379 4.1454425 1103.3752
+228178.0685376422 4.1454821 1103.316
+228179.0685377466 4.1454821 1103.4147
+228180.0685378509 4.1455212 1103.4542
+228181.0685379552 4.1455212 1103.474
+228182.0685380595 4.1454821 1103.3949
+228183.0685381638 4.1455212 1103.4147
+228184.0685382681 4.1455607 1103.3357
+228185.0685383724 4.1455607 1103.3752
+228186.0685384767 4.1455212 1103.3555
+228187.068538581 4.1455998 1103.4147
+228188.0685386853 4.1455607 1103.3752
+228189.0685387896 4.1455607 1103.3949
+228190.0685388939 4.1455607 1103.4344
+228191.0685389983 4.1456394 1103.3357
+228192.0685391026 4.1456394 1103.3949
+228193.0685392069 4.145679 1103.3949
+228194.0685393112 4.1455998 1103.4542
+228195.0685394155 4.1457577 1103.3555
+228196.0685395198 4.1458364 1103.3555
+228197.0685396241 4.145679 1103.3555
+228198.0685397284 4.1457181 1103.3752
+228199.0685398327 4.145679 1103.4344
+228200.068539937 4.1456394 1103.3949
+228201.0685400413 4.1458364 1103.4147
+228202.0685401456 4.1457577 1103.4344
+228203.06854025 4.1457577 1103.3949
+228204.0685403543 4.1458364 1103.3949
+228205.0685404586 4.1457181 1103.3357
+228206.0685405629 4.1457968 1103.3949
+228207.0685406672 4.145915 1103.3555
+228208.0685407715 4.1458755 1103.3555
+228209.0685408758 4.1458755 1103.3752
+228210.0685409801 4.145915 1103.4344
+228211.0685410844 4.1458364 1103.4147
+228212.0685411887 4.1458364 1103.2963
+228213.068541293 4.1458755 1103.3357
+228214.0685413973 4.1459546 1103.4147
+228215.0685415016 4.1458755 1103.3752
+228216.068541606 4.145915 1103.3752
+228217.0685417103 4.1459546 1103.3555
+228218.0685418146 4.1460333 1103.4147
+228219.0685419189 4.1459937 1103.3949
+228220.0685420232 4.1459546 1103.4344
+228221.0685421275 4.1460333 1103.3752
+228222.0685422318 4.1460724 1103.3752
+228223.0685423361 4.1460724 1103.4542
+228224.0685424404 4.1459546 1103.3949
+228225.0685425447 4.1459937 1103.3752
+228226.068542649 4.1460724 1103.3752
+228227.0685427533 4.146112 1103.3752
+228228.0685428577 4.1461511 1103.3752
+228229.068542962 4.1460333 1103.3555
+228230.0685430663 4.1461906 1103.3752
+228231.0685431706 4.1460724 1103.3752
+228232.0685432749 4.146112 1103.4344
+228233.0685433792 4.1462297 1103.3357
+228234.0685434835 4.146112 1103.3555
+228235.0685435878 4.1461906 1103.4147
+228236.0685436921 4.1461906 1103.4147
+228237.0685437964 4.1461511 1103.3555
+228238.0685439007 4.146112 1103.3949
+228239.068544005 4.1461511 1103.3752
+228240.0685441094 4.1462297 1103.3357
+228241.0685442137 4.1461511 1103.4147
+228242.068544318 4.1462693 1103.4938
+228243.0685444223 4.1461906 1103.3949
+228244.0685445266 4.1461511 1103.3752
+228245.0685446309 4.146348 1103.2963
+228246.0685447352 4.1463089 1103.3357
+228247.0685448395 4.146348 1103.3752
+228248.0685449438 4.1463089 1103.3752
+228249.0685450481 4.1463089 1103.4542
+228250.0685451524 4.1463876 1103.3752
+228251.0685452567 4.1463089 1103.3555
+228252.068545361 4.1463089 1103.4147
+228253.0685454654 4.1463089 1103.4542
+228254.0685455697 4.1463876 1103.4147
+228255.068545674 4.1464663 1103.4147
+228256.0685457783 4.1465054 1103.474
+228257.0685458826 4.146348 1103.4147
+228258.0685459869 4.1464267 1103.3949
+228259.0685460912 4.1466236 1103.4147
+228260.0685461955 4.1465845 1103.3949
+228261.0685462998 4.1465449 1103.4147
+228262.0685464041 4.1464663 1103.3357
+228263.0685465084 4.1465054 1103.3357
+228264.0685466127 4.1465054 1103.4344
+228265.0685467171 4.1465449 1103.3752
+228266.0685468214 4.1464267 1103.4147
+228267.0685469257 4.1465845 1103.3752
+228268.06854703 4.1466236 1103.3949
+228269.0685471343 4.1466632 1103.3949
+228270.0685472386 4.1465845 1103.3555
+228271.0685473429 4.1465449 1103.3555
+228272.0685474472 4.1465449 1103.3555
+228273.0685475515 4.1465449 1103.316
+228274.0685476558 4.1466632 1103.4344
+228275.0685477601 4.1466632 1103.4147
+228276.0685478644 4.1465845 1103.4344
+228277.0685479688 4.1466236 1103.316
+228278.0685480731 4.1467419 1103.4938
+228279.0685481774 4.1467023 1103.3949
+228280.0685482817 4.1466632 1103.4147
+228281.068548386 4.1468205 1103.3357
+228282.0685484903 4.1467023 1103.4542
+228283.0685485946 4.1466632 1103.3752
+228284.0685486989 4.146781 1103.4147
+228285.0685488032 4.1467023 1103.3752
+228286.0685489075 4.146781 1103.4147
+228287.0685490118 4.1468205 1103.3752
+228288.0685491161 4.1468205 1103.3949
+228289.0685492205 4.1468596 1103.2963
+228290.0685493248 4.1468205 1103.3949
+228291.0685494291 4.1468596 1103.3555
+228292.0685495334 4.1467419 1103.3357
+228293.0685496377 4.1469388 1103.3752
+228294.068549742 4.1468596 1103.4147
+228295.0685498463 4.1468205 1103.4344
+228296.0685499506 4.1468992 1103.3949
+228297.0685500549 4.1469388 1103.3555
+228298.0685501592 4.1469779 1103.4147
+228299.0685502635 4.1469388 1103.3949
+228300.0685503678 4.1470175 1103.3949
+228301.0685504721 4.1470175 1103.3357
+228302.0685505765 4.1469779 1103.3357
+228303.0685506808 4.1470175 1103.2963
+228304.0685507851 4.1470175 1103.4147
+228305.0685508894 4.1470962 1103.3357
+228306.0685509937 4.1470175 1103.4147
+228307.068551098 4.1470175 1103.4542
+228308.0685512023 4.1469388 1103.3949
+228309.0685513066 4.1470566 1103.3949
+228310.0685514109 4.1470566 1103.4542
+228311.0685515152 4.1470175 1103.3357
+228312.0685516195 4.1470566 1103.4542
+228313.0685517238 4.1470566 1103.4147
+228314.0685518282 4.1472144 1103.3752
+228315.0685519325 4.1471353 1103.4147
+228316.0685520368 4.1471748 1103.3752
+228317.0685521411 4.1472535 1103.3949
+228318.0685522454 4.1470566 1103.4938
+228319.0685523497 4.1470566 1103.2765
+228320.068552454 4.1472144 1103.3949
+228321.0685525583 4.1471353 1103.3555
+228322.0685526626 4.1471748 1103.3357
+228323.0685527669 4.1471353 1103.4542
+228324.0685528712 4.1472931 1103.3752
+228325.0685529755 4.1472535 1103.4344
+228326.0685530799 4.1473322 1103.4344
+228327.0685531842 4.1472931 1103.3752
+228328.0685532885 4.1473718 1103.3949
+228329.0685533928 4.1472931 1103.3357
+228330.0685534971 4.1473322 1103.4938
+228331.0685536014 4.1474109 1103.316
+228332.0685537057 4.1473718 1103.474
+228333.06855381 4.1473322 1103.4344
+228334.0685539143 4.1474109 1103.3949
+228335.0685540186 4.1473718 1103.3752
+228336.0685541229 4.1473718 1103.3752
+228337.0685542272 4.1473718 1103.3357
+228338.0685543315 4.1474109 1103.3357
+228339.0685544359 4.1473322 1103.3357
+228340.0685545402 4.1474109 1103.3357
+228341.0685546445 4.1473718 1103.4344
+228342.0685547488 4.1474895 1103.474
+228343.0685548531 4.1475291 1103.4542
+228344.0685549574 4.1474504 1103.316
+228345.0685550617 4.1474504 1103.3949
+228346.068555166 4.1475687 1103.3949
+228347.0685552703 4.1474109 1103.4147
+228348.0685553746 4.1474895 1103.2963
+228349.0685554789 4.1476078 1103.3752
+228350.0685555832 4.1475687 1103.3357
+228351.0685556876 4.1474895 1103.3949
+228352.0685557919 4.1476078 1103.4542
+228353.0685558962 4.1475291 1103.316
+228354.0685560005 4.1476078 1103.4542
+228355.0685561048 4.1476078 1103.4147
+228356.0685562091 4.1477261 1103.3752
+228357.0685563134 4.1477261 1103.3752
+228358.0685564177 4.1476474 1103.474
+228359.068556522 4.1476078 1103.3357
+228360.0685566263 4.1477261 1103.5332
+228361.0685567306 4.1476865 1103.3949
+228362.0685568349 4.1477652 1103.474
+228363.0685569393 4.1477261 1103.3949
+228364.0685570436 4.1478047 1103.3752
+228365.0685571479 4.1477652 1103.3555
+228366.0685572522 4.1477652 1103.316
+228367.0685573565 4.1477261 1103.3752
+228368.0685574608 4.1478047 1103.3949
+228369.0685575651 4.1477261 1103.4147
+228370.0685576694 4.1477261 1103.3752
+228371.0685577737 4.147923 1103.4344
+228372.068557878 4.147923 1103.3949
+228373.0685579823 4.1478443 1103.4147
+228374.0685580866 4.1477652 1103.4542
+228375.0685581909 4.1478443 1103.3357
+228376.0685582953 4.1478834 1103.3949
+228377.0685583996 4.1478834 1103.3752
+228378.0685585039 4.1479621 1103.4344
+228379.0685586082 4.147923 1103.3752
+228380.0685587125 4.1480017 1103.4344
+228381.0685588168 4.147923 1103.3555
+228382.0685589211 4.1479621 1103.4344
+228383.0685590254 4.1479621 1103.3949
+228384.0685591297 4.1480017 1103.3949
+228385.068559234 4.1480017 1103.3752
+228386.0685593383 4.1481199 1103.3752
+228387.0685594426 4.1481199 1103.4542
+228388.068559547 4.1481199 1103.2963
+228389.0685596513 4.1480803 1103.3752
+228390.0685597556 4.1481199 1103.3949
+228391.0685598599 4.1481199 1103.3555
+228392.0685599642 4.1480017 1103.2963
+228393.0685600685 4.1481986 1103.4542
+228394.0685601728 4.148159 1103.316
+228395.0685602771 4.1480803 1103.4542
+228396.0685603814 4.1482377 1103.4344
+228397.0685604857 4.1482377 1103.4344
+228398.06856059 4.1482377 1103.4542
+228399.0685606943 4.148159 1103.4147
+228400.0685607987 4.1482773 1103.4542
+228401.068560903 4.1481199 1103.3555
+228402.0685610073 4.1482377 1103.2963
+228403.0685611116 4.1481986 1103.316
+228404.0685612159 4.1481986 1103.3949
+228405.0685613202 4.1482773 1103.4542
+228406.0685614245 4.1483951 1103.3752
+228407.0685615288 4.1482773 1103.3949
+228408.0685616331 4.1482773 1103.474
+228409.0685617374 4.1483951 1103.4344
+228410.0685618417 4.148356 1103.4147
+228411.068561946 4.1482773 1103.3752
+228412.0685620504 4.148356 1103.4344
+228413.0685621547 4.148356 1103.4147
+228414.068562259 4.148356 1103.474
+228415.0685623633 4.1483951 1103.3555
+228416.0685624676 4.148356 1103.3752
+228417.0685625719 4.1484346 1103.4147
+228418.0685626762 4.1485133 1103.4147
+228419.0685627805 4.1483951 1103.3357
+228420.0685628848 4.1485529 1103.3752
+228421.0685629891 4.1484742 1103.4542
+228422.0685630934 4.1485529 1103.316
+228423.0685631977 4.1484346 1103.3357
+228424.068563302 4.1484742 1103.4542
+228425.0685634064 4.148592 1103.3555
+228426.0685635107 4.1485529 1103.3357
+228427.068563615 4.148592 1103.3949
+228428.0685637193 4.1487103 1103.2765
+228429.0685638236 4.148592 1103.3357
+228430.0685639279 4.148592 1103.3949
+228431.0685640322 4.1485529 1103.4147
+228432.0685641365 4.148592 1103.4542
+228433.0685642408 4.1486316 1103.3949
+228434.0685643451 4.1486707 1103.3357
+228435.0685644494 4.1486316 1103.3752
+228436.0685645537 4.1486316 1103.3949
+228437.0685646581 4.1486316 1103.3949
+228438.0685647624 4.1488285 1103.3752
+228439.0685648667 4.1487498 1103.4344
+228440.068564971 4.1487498 1103.3752
+228441.0685650753 4.1487889 1103.3949
+228442.0685651796 4.1487498 1103.3357
+228443.0685652839 4.1488285 1103.3949
+228444.0685653882 4.1487103 1103.3949
+228445.0685654925 4.1487498 1103.4147
+228446.0685655968 4.1487889 1103.3357
+228447.0685657011 4.1489072 1103.316
+228448.0685658054 4.1488285 1103.4344
+228449.0685659098 4.1487498 1103.4344
+228450.0685660141 4.1488676 1103.3752
+228451.0685661184 4.1488285 1103.4344
+228452.0685662227 4.1488285 1103.3555
+228453.068566327 4.1488676 1103.3555
+228454.0685664313 4.1488676 1103.4542
+228455.0685665356 4.1489463 1103.2963
+228456.0685666399 4.1489072 1103.3357
+228457.0685667442 4.1489072 1103.4344
+228458.0685668485 4.1489072 1103.3357
+228459.0685669528 4.1490645 1103.3752
+228460.0685670571 4.1489072 1103.4344
+228461.0685671614 4.1489463 1103.3555
+228462.0685672658 4.1489859 1103.3949
+228463.0685673701 4.1489463 1103.4147
+228464.0685674744 4.149025 1103.3357
+228465.0685675787 4.149025 1103.3752
+228466.068567683 4.1490645 1103.4344
+228467.0685677873 4.1490645 1103.3357
+228468.0685678916 4.1490645 1103.4344
+228469.0685679959 4.1490645 1103.3949
+228470.0685681002 4.1491041 1103.4344
+228471.0685682045 4.1491041 1103.3752
+228472.0685683088 4.1491432 1103.4147
+228473.0685684131 4.1492219 1103.3555
+228474.0685685175 4.1490645 1103.316
+228475.0685686218 4.1492615 1103.4147
+228476.0685687261 4.1490645 1103.3357
+228477.0685688304 4.1492219 1103.3949
+228478.0685689347 4.1492615 1103.4542
+228479.068569039 4.1491041 1103.3752
+228480.0685691433 4.1492615 1103.4938
+228481.0685692476 4.1493402 1103.4147
+228482.0685693519 4.1492615 1103.3949
+228483.0685694562 4.1493006 1103.4344
+228484.0685695605 4.1493402 1103.4344
+228485.0685696648 4.1491828 1103.4344
+228486.0685697692 4.1492219 1103.3555
+228487.0685698735 4.1492615 1103.4147
+228488.0685699778 4.1492615 1103.3949
+228489.0685700821 4.1493006 1103.4542
+228490.0685701864 4.1493006 1103.3949
+228491.0685702907 4.1493006 1103.4147
+228492.068570395 4.1494584 1103.2963
+228493.0685704993 4.1493402 1103.4344
+228494.0685706036 4.1494188 1103.3555
+228495.0685707079 4.1493797 1103.3555
+228496.0685708122 4.1493797 1103.3752
+228497.0685709165 4.1494584 1103.4344
+228498.0685710208 4.1494188 1103.3752
+228499.0685711252 4.1493402 1103.3555
+228500.0685712295 4.1493797 1103.3949
+228501.0685713338 4.1496553 1103.3949
+228502.0685714381 4.1494584 1103.3949
+228503.0685715424 4.1494584 1103.4542
+228504.0685716467 4.1495762 1103.3752
+228505.068571751 4.1494975 1103.3752
+228506.0685718553 4.1494975 1103.3949
+228507.0685719596 4.1495371 1103.3555
+228508.0685720639 4.1494975 1103.3752
+228509.0685721682 4.1495371 1103.3949
+228510.0685722725 4.1494584 1103.3949
+228511.0685723769 4.1495762 1103.4147
+228512.0685724812 4.1496944 1103.4147
+228513.0685725855 4.1496553 1103.2765
+228514.0685726898 4.1496944 1103.4147
+228515.0685727941 4.149734 1103.4147
+228516.0685728984 4.1496553 1103.2963
+228517.0685730027 4.1496944 1103.474
+228518.068573107 4.149734 1103.316
+228519.0685732113 4.149734 1103.316
+228520.0685733156 4.1498914 1103.3555
+228521.0685734199 4.149734 1103.4344
+228522.0685735242 4.1498127 1103.3357
+228523.0685736286 4.149734 1103.4147
+228524.0685737329 4.1498127 1103.3752
+228525.0685738372 4.1497731 1103.4147
+228526.0685739415 4.1497731 1103.4542
+228527.0685740458 4.1499305 1103.3752
+228528.0685741501 4.1497731 1103.3555
+228529.0685742544 4.1498127 1103.4938
+228530.0685743587 4.1498518 1103.2963
+228531.068574463 4.1497731 1103.2963
+228532.0685745673 4.1498127 1103.2765
+228533.0685746716 4.1498518 1103.3357
+228534.0685747759 4.1498518 1103.3555
+228535.0685748803 4.1498518 1103.4147
+228536.0685749846 4.1498127 1103.4147
+228537.0685750889 4.1499701 1103.3752
+228538.0685751932 4.1499701 1103.316
+228539.0685752975 4.1499305 1103.3357
+228540.0685754018 4.1498914 1103.3949
+228541.0685755061 4.1498914 1103.3949
+228542.0685756104 4.1499701 1103.4147
+228543.0685757147 4.1500487 1103.3752
+228544.068575819 4.1500883 1103.3949
+228545.0685759233 4.1500883 1103.3555
+228546.0685760276 4.1500883 1103.3357
+228547.0685761319 4.1501274 1103.3357
+228548.0685762363 4.1500096 1103.3949
+228549.0685763406 4.1500487 1103.3752
+228550.0685764449 4.1500883 1103.3949
+228551.0685765492 4.1502061 1103.316
+228552.0685766535 4.1501274 1103.4344
+228553.0685767578 4.1501274 1103.3752
+228554.0685768621 4.150167 1103.3949
+228555.0685769664 4.1502457 1103.316
+228556.0685770707 4.1502061 1103.316
+228557.068577175 4.1500883 1103.3949
+228558.0685772793 4.150167 1103.4344
+228559.0685773836 4.1501274 1103.3555
+228560.068577488 4.1502457 1103.3357
+228561.0685775923 4.150167 1103.3949
+228562.0685776966 4.150167 1103.3555
+228563.0685778009 4.1502852 1103.3555
+228564.0685779052 4.1502061 1103.3949
+228565.0685780095 4.1503243 1103.316
+228566.0685781138 4.1503243 1103.4147
+228567.0685782181 4.1502852 1103.316
+228568.0685783224 4.1503639 1103.3555
+228569.0685784267 4.1503639 1103.3949
+228570.068578531 4.1503639 1103.4344
+228571.0685786353 4.1504817 1103.3357
+228572.0685787397 4.1504817 1103.3949
+228573.068578844 4.1503639 1103.3752
+228574.0685789483 4.150403 1103.4344
+228575.0685790526 4.150403 1103.3752
+228576.0685791569 4.1504426 1103.316
+228577.0685792612 4.1504817 1103.3555
+228578.0685793655 4.1505213 1103.4344
+228579.0685794698 4.1505213 1103.3949
+228580.0685795741 4.1504817 1103.4147
+228581.0685796784 4.1505213 1103.3949
+228582.0685797827 4.1505604 1103.474
+228583.068579887 4.1504426 1103.3949
+228584.0685799913 4.1506 1103.4344
+228585.0685800957 4.1505604 1103.4542
+228586.0685802 4.1504817 1103.3949
+228587.0685803043 4.1506395 1103.3357
+228588.0685804086 4.1506395 1103.3357
+228589.0685805129 4.1507573 1103.4542
+228590.0685806172 4.1507182 1103.3752
+228591.0685807215 4.1506786 1103.4542
+228592.0685808258 4.1506786 1103.316
+228593.0685809301 4.1506 1103.4147
+228594.0685810344 4.1507182 1103.474
+228595.0685811387 4.1507573 1103.4542
+228596.068581243 4.1507182 1103.3555
+228597.0685813474 4.1507182 1103.3949
+228598.0685814517 4.1507182 1103.4344
+228599.068581556 4.1506786 1103.3752
+228600.0685816603 4.1507182 1103.3949
+228601.0685817646 4.1508756 1103.3555
+228602.0685818689 4.150836 1103.4542
+228603.0685819732 4.1508756 1103.3949
+228604.0685820775 4.1507969 1103.3555
+228605.0685821818 4.1507969 1103.4344
+228606.0685822861 4.1507182 1103.3555
+228607.0685823904 4.1507969 1103.3357
+228608.0685824947 4.1508756 1103.2963
+228609.0685825991 4.1509151 1103.3555
+228610.0685827034 4.1509151 1103.4344
+228611.0685828077 4.1508756 1103.4147
+228612.068582912 4.1509938 1103.4344
+228613.0685830163 4.1509938 1103.2963
+228614.0685831206 4.1508756 1103.4344
+228615.0685832249 4.1509151 1103.3357
+228616.0685833292 4.1508756 1103.3752
+228617.0685834335 4.1509938 1103.4147
+228618.0685835378 4.1509938 1103.4147
+228619.0685836421 4.1509542 1103.4542
+228620.0685837464 4.1510725 1103.3555
+228621.0685838507 4.1510329 1103.3357
+228622.0685839551 4.1509938 1103.3752
+228623.0685840594 4.1510329 1103.3357
+228624.0685841637 4.1510725 1103.3357
+228625.068584268 4.1511116 1103.4147
+228626.0685843723 4.1511116 1103.3949
+228627.0685844766 4.1511116 1103.316
+228628.0685845809 4.1511903 1103.3949
+228629.0685846852 4.1511116 1103.4542
+228630.0685847895 4.1511512 1103.316
+228631.0685848938 4.1512299 1103.4542
+228632.0685849981 4.1511903 1103.474
+228633.0685851024 4.1511903 1103.3555
+228634.0685852068 4.1512694 1103.4147
+228635.0685853111 4.1512299 1103.4344
+228636.0685854154 4.1512299 1103.3752
+228637.0685855197 4.1512694 1103.3555
+228638.068585624 4.1512694 1103.3555
+228639.0685857283 4.1512694 1103.3752
+228640.0685858326 4.1513085 1103.4344
+228641.0685859369 4.1513085 1103.3555
+228642.0685860412 4.1513085 1103.3949
+228643.0685861455 4.1513872 1103.4344
+228644.0685862498 4.1513481 1103.4344
+228645.0685863541 4.1513872 1103.3555
+228646.0685864585 4.1513872 1103.2963
+228647.0685865628 4.1514659 1103.3949
+228648.0685866671 4.1513481 1103.3949
+228649.0685867714 4.1513872 1103.4344
+228650.0685868757 4.1514659 1103.3555
+228651.06858698 4.1515055 1103.4344
+228652.0685870843 4.151545 1103.4344
+228653.0685871886 4.151545 1103.3357
+228654.0685872929 4.1514659 1103.316
+228655.0685873972 4.151545 1103.3555
+228656.0685875015 4.151545 1103.4147
+228657.0685876058 4.1515055 1103.3752
+228658.0685877102 4.1514659 1103.316
+228659.0685878145 4.1515841 1103.3949
+228660.0685879188 4.1516628 1103.4542
+228661.0685880231 4.1516237 1103.3555
+228662.0685881274 4.1515841 1103.3949
+228663.0685882317 4.1516237 1103.3357
+228664.068588336 4.151545 1103.3949
+228665.0685884403 4.1517415 1103.3357
+228666.0685885446 4.1516237 1103.4344
+228667.0685886489 4.1516237 1103.3357
+228668.0685887532 4.1517811 1103.3752
+228669.0685888575 4.1518207 1103.3357
+228670.0685889618 4.1517024 1103.4938
+228671.0685890662 4.1516628 1103.3357
+228672.0685891705 4.1517415 1103.3555
+228673.0685892748 4.1518207 1103.2567
+228674.0685893791 4.1517415 1103.3357
+228675.0685894834 4.1517811 1103.4344
+228676.0685895877 4.1518207 1103.3949
+228677.068589692 4.1517811 1103.4147
+228678.0685897963 4.1518993 1103.3555
+228679.0685899006 4.1517811 1103.3555
+228680.0685900049 4.1518993 1103.3752
+228681.0685901092 4.1519384 1103.3949
+228682.0685902135 4.1518993 1103.3357
+228683.0685903179 4.1518993 1103.4344
+228684.0685904222 4.151978 1103.4344
+228685.0685905265 4.1520171 1103.3555
+228686.0685906308 4.1519384 1103.3949
+228687.0685907351 4.1518598 1103.2765
+228688.0685908394 4.1519384 1103.3555
+228689.0685909437 4.1519384 1103.3949
+228690.068591048 4.1518598 1103.3752
+228691.0685911523 4.1520958 1103.3949
+228692.0685912566 4.151978 1103.4147
+228693.0685913609 4.1520567 1103.3752
+228694.0685914652 4.1520958 1103.3555
+228695.0685915696 4.151978 1103.3949
+228696.0685916739 4.1520567 1103.3555
+228697.0685917782 4.1520171 1103.316
+228698.0685918825 4.1520171 1103.3357
+228699.0685919868 4.1521749 1103.4938
+228700.0685920911 4.1521354 1103.4147
+228701.0685921954 4.1521354 1103.3555
+228702.0685922997 4.1521749 1103.4147
+228703.068592404 4.1520567 1103.4344
+228704.0685925083 4.1522141 1103.2963
+228705.0685926126 4.1522141 1103.2963
+228706.0685927169 4.1522141 1103.3949
+228707.0685928212 4.1522141 1103.4344
+228708.0685929256 4.1521354 1103.3752
+228709.0685930299 4.1522927 1103.3555
+228710.0685931342 4.1522536 1103.3949
+228711.0685932385 4.1522927 1103.3949
+228712.0685933428 4.1523323 1103.3949
+228713.0685934471 4.1522927 1103.4147
+228714.0685935514 4.1523323 1103.3949
+228715.0685936557 4.1522927 1103.3752
+228716.06859376 4.1523323 1103.3555
+228717.0685938643 4.1522927 1103.3949
+228718.0685939686 4.152411 1103.3949
+228719.0685940729 4.1524897 1103.3949
+228720.0685941773 4.1523714 1103.3555
+228721.0685942816 4.152411 1103.4147
+228722.0685943859 4.152411 1103.4344
+228723.0685944902 4.1523714 1103.3555
+228724.0685945945 4.1524506 1103.3555
+228725.0685946988 4.152411 1103.3752
+228726.0685948031 4.1526079 1103.3949
+228727.0685949074 4.1525292 1103.3555
+228728.0685950117 4.1526079 1103.3555
+228729.068595116 4.1525683 1103.4344
+228730.0685952203 4.1525292 1103.4147
+228731.0685953246 4.1526079 1103.2963
+228732.068595429 4.1525292 1103.316
+228733.0685955333 4.152647 1103.474
+228734.0685956376 4.1525292 1103.316
+228735.0685957419 4.1525683 1103.4147
+228736.0685958462 4.1526079 1103.3752
+228737.0685959505 4.1527257 1103.3752
+228738.0685960548 4.1526866 1103.3357
+228739.0685961591 4.152647 1103.3357
+228740.0685962634 4.1526079 1103.3357
+228741.0685963677 4.1526079 1103.474
+228742.068596472 4.1527257 1103.3752
+228743.0685965763 4.1525683 1103.3555
+228744.0685966806 4.1526866 1103.3752
+228745.068596785 4.1527257 1103.3752
+228746.0685968893 4.1528835 1103.3555
+228747.0685969936 4.1528835 1103.4344
+228748.0685970979 4.1527653 1103.4147
+228749.0685972022 4.1528049 1103.316
+228750.0685973065 4.1528835 1103.3555
+228751.0685974108 4.1529226 1103.3949
+228752.0685975151 4.152844 1103.3949
+228753.0685976194 4.1528049 1103.4344
+228754.0685977237 4.1529226 1103.3752
+228755.068597828 4.1529226 1103.3357
+228756.0685979323 4.1528835 1103.4147
+228757.0685980367 4.1530013 1103.316
+228758.068598141 4.1530013 1103.5332
+228759.0685982453 4.1529622 1103.3357
+228760.0685983496 4.1529226 1103.3555
+228761.0685984539 4.1530409 1103.3949
+228762.0685985582 4.1530013 1103.4542
+228763.0685986625 4.1530013 1103.3752
+228764.0685987668 4.1529622 1103.4344
+228765.0685988711 4.1529622 1103.3949
+228766.0685989754 4.1529622 1103.2765
+228767.0685990797 4.1531196 1103.3357
+228768.068599184 4.1530013 1103.4542
+228769.0685992884 4.1530409 1103.4147
+228770.0685993927 4.1531591 1103.4147
+228771.068599497 4.1530805 1103.3555
+228772.0685996013 4.1531196 1103.4147
+228773.0685997056 4.1531196 1103.4147
+228774.0685998099 4.1531591 1103.4542
+228775.0685999142 4.1531982 1103.3752
+228776.0686000185 4.1532378 1103.316
+228777.0686001228 4.1532378 1103.3555
+228778.0686002271 4.1531982 1103.3555
+228779.0686003314 4.1532378 1103.5134
+228780.0686004357 4.1531982 1103.4344
+228781.06860054 4.1532378 1103.3752
+228782.0686006444 4.1532378 1103.3752
+228783.0686007487 4.1531982 1103.3357
+228784.068600853 4.1532769 1103.4344
+228785.0686009573 4.1533952 1103.3949
+228786.0686010616 4.1533165 1103.3752
+228787.0686011659 4.1533165 1103.3357
+228788.0686012702 4.1534348 1103.3752
+228789.0686013745 4.1532769 1103.3949
+228790.0686014788 4.1534739 1103.3949
+228791.0686015831 4.1533952 1103.4147
+228792.0686016874 4.1533165 1103.3949
+228793.0686017917 4.1534739 1103.4147
+228794.0686018961 4.1534348 1103.3555
+228795.0686020004 4.1535134 1103.3949
+228796.0686021047 4.1534739 1103.3752
+228797.068602209 4.1533952 1103.4344
+228798.0686023133 4.1535134 1103.4147
+228799.0686024176 4.1535921 1103.3949
+228800.0686025219 4.1535525 1103.4344
+228801.0686026262 4.1535134 1103.3555
+228802.0686027305 4.1534348 1103.3752
+228803.0686028348 4.1534739 1103.3949
+228804.0686029391 4.1535525 1103.3752
+228805.0686030434 4.1537104 1103.3357
+228806.0686031478 4.1535921 1103.3752
+228807.0686032521 4.1536312 1103.3555
+228808.0686033564 4.1537104 1103.316
+228809.0686034607 4.1536708 1103.3555
+228810.068603565 4.1536312 1103.3555
+228811.0686036693 4.1535525 1103.2765
+228812.0686037736 4.1535921 1103.4344
+228813.0686038779 4.1537104 1103.3752
+228814.0686039822 4.153789 1103.3752
+228815.0686040865 4.1536312 1103.4344
+228816.0686041908 4.1537104 1103.3555
+228817.0686042951 4.153789 1103.3357
+228818.0686043995 4.1537495 1103.4344
+228819.0686045038 4.153789 1103.2963
+228820.0686046081 4.1538677 1103.4147
+228821.0686047124 4.1537495 1103.3949
+228822.0686048167 4.1538281 1103.316
+228823.068604921 4.1538677 1103.4542
+228824.0686050253 4.1539068 1103.4344
+228825.0686051296 4.1538281 1103.4344
+228826.0686052339 4.1538281 1103.4344
+228827.0686053382 4.1538677 1103.316
+228828.0686054425 4.1540251 1103.316
+228829.0686055468 4.1539068 1103.4542
+228830.0686056511 4.1540251 1103.3752
+228831.0686057555 4.1538677 1103.3752
+228832.0686058598 4.1539464 1103.2963
+228833.0686059641 4.1539464 1103.3555
+228834.0686060684 4.1539464 1103.4147
+228835.0686061727 4.1540647 1103.4147
+228836.068606277 4.1541038 1103.3949
+228837.0686063813 4.1540647 1103.4542
+228838.0686064856 4.1541433 1103.4147
+228839.0686065899 4.1541433 1103.4344
+228840.0686066942 4.1541433 1103.3949
+228841.0686067985 4.1540647 1103.3752
+228842.0686069028 4.154222 1103.3752
+228843.0686070072 4.1541038 1103.3555
+228844.0686071115 4.1541824 1103.3949
+228845.0686072158 4.1541433 1103.3555
+228846.0686073201 4.1541824 1103.3752
+228847.0686074244 4.154222 1103.3555
+228848.0686075287 4.1541433 1103.4542
+228849.068607633 4.154222 1103.474
+228850.0686077373 4.1541433 1103.4938
+228851.0686078416 4.1541824 1103.3357
+228852.0686079459 4.154222 1103.3949
+228853.0686080502 4.1543007 1103.3555
+228854.0686081545 4.154222 1103.4147
+228855.0686082589 4.1542611 1103.3555
+228856.0686083632 4.1543794 1103.4147
+228857.0686084675 4.1543007 1103.4147
+228858.0686085718 4.1544189 1103.4542
+228859.0686086761 4.1543403 1103.3949
+228860.0686087804 4.1544189 1103.4147
+228861.0686088847 4.1543794 1103.4344
+228862.068608989 4.1544189 1103.3555
+228863.0686090933 4.1543794 1103.4542
+228864.0686091976 4.1544189 1103.2963
+228865.0686093019 4.1544976 1103.3555
+228866.0686094062 4.154458 1103.3752
+228867.0686095105 4.154458 1103.3949
+228868.0686096149 4.154458 1103.4542
+228869.0686097192 4.1544189 1103.4542
+228870.0686098235 4.154458 1103.3357
+228871.0686099278 4.1545367 1103.3752
+228872.0686100321 4.154458 1103.4938
+228873.0686101364 4.1545763 1103.3555
+228874.0686102407 4.1546159 1103.3357
+228875.068610345 4.1546159 1103.3949
+228876.0686104493 4.1546946 1103.3949
+228877.0686105536 4.1545763 1103.4147
+228878.0686106579 4.1546159 1103.4147
+228879.0686107622 4.1546159 1103.3752
+228880.0686108666 4.154655 1103.3949
+228881.0686109709 4.1548123 1103.316
+228882.0686110752 4.154655 1103.2567
+228883.0686111795 4.1546946 1103.4344
+228884.0686112838 4.1546159 1103.4147
+228885.0686113881 4.1547732 1103.3555
+228886.0686114924 4.1548123 1103.4147
+228887.0686115967 4.1546946 1103.4938
+228888.068611701 4.1547732 1103.3555
+228889.0686118053 4.1548915 1103.3357
+228890.0686119096 4.1547732 1103.3357
+228891.0686120139 4.1548519 1103.4147
+228892.0686121183 4.1548915 1103.4147
+228893.0686122226 4.1548123 1103.3357
+228894.0686123269 4.1548915 1103.3752
+228895.0686124312 4.1548123 1103.3357
+228896.0686125355 4.1547337 1103.316
+228897.0686126398 4.1549306 1103.474
+228898.0686127441 4.1549306 1103.3949
+228899.0686128484 4.1549702 1103.3555
+228900.0686129527 4.1550093 1103.4147
+228901.068613057 4.1549306 1103.3752
+228902.0686131613 4.1549702 1103.3949
+228903.0686132656 4.1550879 1103.4542
+228904.0686133699 4.1549306 1103.4147
+228905.0686134743 4.1550093 1103.3949
+228906.0686135786 4.1550488 1103.3752
+228907.0686136829 4.1550879 1103.4147
+228908.0686137872 4.1550879 1103.3949
+228909.0686138915 4.1550879 1103.316
+228910.0686139958 4.1551275 1103.3752
+228911.0686141001 4.1551275 1103.5134
+228912.0686142044 4.1551275 1103.4147
+228913.0686143087 4.1551275 1103.3555
+228914.068614413 4.1552062 1103.3949
+228915.0686145173 4.1551275 1103.3949
+228916.0686146216 4.1552849 1103.3949
+228917.068614726 4.1551275 1103.3752
+228918.0686148303 4.1551666 1103.4542
+228919.0686149346 4.1552458 1103.3555
+228920.0686150389 4.1553245 1103.474
+228921.0686151432 4.1552458 1103.3949
+228922.0686152475 4.1552062 1103.3357
+228923.0686153518 4.1552849 1103.4147
+228924.0686154561 4.1552062 1103.3949
+228925.0686155604 4.1553636 1103.2765
+228926.0686156647 4.1553245 1103.474
+228927.068615769 4.1553636 1103.3357
+228928.0686158733 4.1552849 1103.3949
+228929.0686159777 4.1553636 1103.4344
+228930.068616082 4.1554422 1103.474
+228931.0686161863 4.1553636 1103.3752
+228932.0686162906 4.1553245 1103.4344
+228933.0686163949 4.1552849 1103.3949
+228934.0686164992 4.1554031 1103.3357
+228935.0686166035 4.1554818 1103.3752
+228936.0686167078 4.1554422 1103.3555
+228937.0686168121 4.1554031 1103.4147
+228938.0686169164 4.1554422 1103.3357
+228939.0686170207 4.1555214 1103.3357
+228940.068617125 4.1554422 1103.4147
+228941.0686172294 4.1555605 1103.3752
+228942.0686173337 4.1556001 1103.3752
+228943.068617438 4.1555214 1103.3555
+228944.0686175423 4.1556001 1103.3949
+228945.0686176466 4.1556787 1103.4542
+228946.0686177509 4.1556392 1103.3949
+228947.0686178552 4.1556787 1103.4147
+228948.0686179595 4.1556392 1103.3949
+228949.0686180638 4.1557178 1103.3752
+228950.0686181681 4.1557574 1103.4938
+228951.0686182724 4.1556001 1103.3949
+228952.0686183767 4.1557178 1103.3949
+228953.068618481 4.1557574 1103.4147
+228954.0686185854 4.1557178 1103.3752
+228955.0686186897 4.1559148 1103.3949
+228956.068618794 4.1557574 1103.4147
+228957.0686188983 4.1557574 1103.3555
+228958.0686190026 4.1557574 1103.3752
+228959.0686191069 4.1558361 1103.3357
+228960.0686192112 4.1558361 1103.3752
+228961.0686193155 4.1559544 1103.4542
+228962.0686194198 4.1559148 1103.2369
+228963.0686195241 4.1559544 1103.3555
+228964.0686196284 4.1559148 1103.3357
+228965.0686197327 4.1558757 1103.4147
+228966.0686198371 4.1559544 1103.4344
+228967.0686199414 4.156033 1103.4344
+228968.0686200457 4.1559148 1103.3949
+228969.06862015 4.1559935 1103.4344
+228970.0686202543 4.156033 1103.4344
+228971.0686203586 4.1559544 1103.4147
+228972.0686204629 4.1559935 1103.3949
+228973.0686205672 4.1560721 1103.3555
+228974.0686206715 4.1560721 1103.3949
+228975.0686207758 4.1559935 1103.3555
+228976.0686208801 4.1560721 1103.474
+228977.0686209844 4.1561117 1103.3752
+228978.0686210888 4.1560721 1103.4147
+228979.0686211931 4.1561117 1103.4344
+228980.0686212974 4.15623 1103.3752
+228981.0686214017 4.1561513 1103.4147
+228982.068621506 4.1561904 1103.3555
+228983.0686216103 4.1561513 1103.3555
+228984.0686217146 4.15623 1103.3752
+228985.0686218189 4.1561117 1103.316
+228986.0686219232 4.1561904 1103.4344
+228987.0686220275 4.1562691 1103.3752
+228988.0686221318 4.1562691 1103.4147
+228989.0686222361 4.15623 1103.4147
+228990.0686223404 4.1562691 1103.4147
+228991.0686224448 4.1562691 1103.3752
+228992.0686225491 4.1563087 1103.3357
+228993.0686226534 4.1563478 1103.3555
+228994.0686227577 4.1562691 1103.2369
+228995.068622862 4.1563873 1103.3357
+228996.0686229663 4.1563873 1103.3752
+228997.0686230706 4.1564264 1103.3357
+228998.0686231749 4.1564264 1103.4542
+228999.0686232792 4.1565056 1103.3555
+229000.0686233835 4.1564264 1103.3752
+229001.0686234878 4.1564264 1103.3357
+229002.0686235921 4.1565056 1103.3949
+229003.0686236965 4.1565056 1103.3555
+229004.0686238008 4.1565447 1103.3555
+229005.0686239051 4.1565843 1103.3949
+229006.0686240094 4.1565447 1103.3555
+229007.0686241137 4.1566234 1103.3555
+229008.068624218 4.156466 1103.4344
+229009.0686243223 4.1565447 1103.4344
+229010.0686244266 4.1565843 1103.3357
+229011.0686245309 4.1565056 1103.4147
+229012.0686246352 4.1566234 1103.3555
+229013.0686247395 4.1565447 1103.4938
+229014.0686248438 4.1567416 1103.3949
+229015.0686249482 4.156702 1103.316
+229016.0686250525 4.156702 1103.4542
+229017.0686251568 4.1567416 1103.3949
+229018.0686252611 4.156702 1103.4147
+229019.0686253654 4.1567416 1103.3555
+229020.0686254697 4.1567812 1103.3357
+229021.068625574 4.1567812 1103.4542
+229022.0686256783 4.1567416 1103.2765
+229023.0686257826 4.1568203 1103.3357
+229024.0686258869 4.156899 1103.3555
+229025.0686259912 4.1568203 1103.4344
+229026.0686260955 4.1567416 1103.4542
+229027.0686261998 4.156899 1103.3949
+229028.0686263042 4.156899 1103.316
+229029.0686264085 4.1568599 1103.4147
+229030.0686265128 4.156899 1103.3949
+229031.0686266171 4.1570568 1103.3752
+229032.0686267214 4.1568599 1103.316
+229033.0686268257 4.1570172 1103.4542
+229034.06862693 4.1568599 1103.3357
+229035.0686270343 4.1569777 1103.4147
+229036.0686271386 4.1570172 1103.3555
+229037.0686272429 4.1569777 1103.4542
+229038.0686273472 4.1570568 1103.4147
+229039.0686274515 4.1570568 1103.3949
+229040.0686275559 4.1569386 1103.316
+229041.0686276602 4.1570959 1103.4147
+229042.0686277645 4.1571355 1103.4147
+229043.0686278688 4.1570959 1103.4344
+229044.0686279731 4.1571746 1103.3357
+229045.0686280774 4.1570568 1103.3949
+229046.0686281817 4.1571355 1103.4147
+229047.068628286 4.1570959 1103.3752
+229048.0686283903 4.1570959 1103.4147
+229049.0686284946 4.1572928 1103.2567
+229050.0686285989 4.1571746 1103.3949
+229051.0686287032 4.1571355 1103.2963
+229052.0686288076 4.1572142 1103.4542
+229053.0686289119 4.1572533 1103.3949
+229054.0686290162 4.1572533 1103.3357
+229055.0686291205 4.1572928 1103.3949
+229056.0686292248 4.1573319 1103.3949
+229057.0686293291 4.1573319 1103.3357
+229058.0686294334 4.1573715 1103.3949
+229059.0686295377 4.1573319 1103.474
+229060.068629642 4.1573319 1103.4344
+229061.0686297463 4.1573319 1103.3752
+229062.0686298506 4.1574898 1103.3752
+229063.0686299549 4.1573715 1103.4344
+229064.0686300593 4.1574502 1103.3949
+229065.0686301636 4.1575289 1103.474
+229066.0686302679 4.1574502 1103.4344
+229067.0686303722 4.1575289 1103.316
+229068.0686304765 4.1575289 1103.2963
+229069.0686305808 4.1574898 1103.2963
+229070.0686306851 4.1575685 1103.3949
+229071.0686307894 4.1574898 1103.4542
+229072.0686308937 4.1575685 1103.3555
+229073.068630998 4.1574898 1103.3555
+229074.0686311023 4.1574502 1103.4147
+229075.0686312066 4.1575289 1103.3949
+229076.0686313109 4.1576471 1103.3752
+229077.0686314153 4.1575685 1103.3949
+229078.0686315196 4.1577258 1103.3357
+229079.0686316239 4.1576867 1103.4542
+229080.0686317282 4.1576076 1103.4344
+229081.0686318325 4.1576471 1103.4147
+229082.0686319368 4.1577258 1103.3752
+229083.0686320411 4.1577654 1103.3555
+229084.0686321454 4.1577258 1103.4147
+229085.0686322497 4.1576867 1103.3357
+229086.068632354 4.1578045 1103.3752
+229087.0686324583 4.1577654 1103.4344
+229088.0686325626 4.1576867 1103.316
+229089.068632667 4.1577258 1103.3555
+229090.0686327713 4.1576867 1103.3949
+229091.0686328756 4.1578045 1103.3752
+229092.0686329799 4.1579227 1103.4147
+229093.0686330842 4.1579227 1103.316
+229094.0686331885 4.1580014 1103.4344
+229095.0686332928 4.1579227 1103.3949
+229096.0686333971 4.1578045 1103.3949
+229097.0686335014 4.1578832 1103.3949
+229098.0686336057 4.1580801 1103.3357
+229099.06863371 4.1581197 1103.3752
+229100.0686338143 4.1580014 1103.3752
+229101.0686339187 4.1580014 1103.4542
+229102.068634023 4.1579618 1103.3357
+229103.0686341273 4.1579618 1103.3555
+229104.0686342316 4.1581197 1103.3357
+229105.0686343359 4.158041 1103.4344
+229106.0686344402 4.1580801 1103.3555
+229107.0686345445 4.158041 1103.3555
+229108.0686346488 4.1581197 1103.3555
+229109.0686347531 4.1581197 1103.316
+229110.0686348574 4.1582375 1103.316
+229111.0686349617 4.1580801 1103.3752
+229112.068635066 4.1581197 1103.2963
+229113.0686351703 4.1581197 1103.316
+229114.0686352747 4.1581197 1103.4542
+229115.068635379 4.1581588 1103.316
+229116.0686354833 4.1582375 1103.3752
+229117.0686355876 4.1582375 1103.3555
+229118.0686356919 4.1582375 1103.3949
+229119.0686357962 4.1582375 1103.3752
+229120.0686359005 4.1583166 1103.4344
+229121.0686360048 4.1583166 1103.3555
+229122.0686361091 4.1584344 1103.474
+229123.0686362134 4.1583557 1103.4542
+229124.0686363177 4.1583953 1103.4542
+229125.068636422 4.158474 1103.4147
+229126.0686365264 4.1583953 1103.4542
+229127.0686366307 4.1583166 1103.4147
+229128.068636735 4.1583953 1103.3555
+229129.0686368393 4.1584344 1103.4542
+229130.0686369436 4.1584344 1103.4147
+229131.0686370479 4.1583953 1103.3752
+229132.0686371522 4.1584344 1103.3752
+229133.0686372565 4.1585131 1103.3949
+229134.0686373608 4.1585922 1103.4147
+229135.0686374651 4.1585131 1103.2963
+229136.0686375694 4.1585922 1103.3949
+229137.0686376737 4.1585526 1103.3357
+229138.0686377781 4.1585131 1103.4542
+229139.0686378824 4.1586313 1103.3949
+229140.0686379867 4.1585526 1103.4542
+229141.068638091 4.158474 1103.3752
+229142.0686381953 4.1586709 1103.2963
+229143.0686382996 4.1585922 1103.3752
+229144.0686384039 4.1586709 1103.4147
+229145.0686385082 4.1586709 1103.3555
+229146.0686386125 4.1586709 1103.3752
+229147.0686387168 4.15871 1103.3555
+229148.0686388211 4.1587496 1103.3752
+229149.0686389254 4.1587496 1103.4344
+229150.0686390297 4.1588283 1103.4147
+229151.0686391341 4.15871 1103.4542
+229152.0686392384 4.1587496 1103.3949
+229153.0686393427 4.1587887 1103.4147
+229154.068639447 4.1587887 1103.316
+229155.0686395513 4.1587496 1103.4147
+229156.0686396556 4.1588674 1103.3949
+229157.0686397599 4.1588283 1103.4147
+229158.0686398642 4.1589069 1103.3357
+229159.0686399685 4.1589069 1103.4147
+229160.0686400728 4.1589069 1103.4344
+229161.0686401771 4.1589465 1103.474
+229162.0686402814 4.1589069 1103.4344
+229163.0686403858 4.1589069 1103.3949
+229164.0686404901 4.1589856 1103.2765
+229165.0686405944 4.1589856 1103.4147
+229166.0686406987 4.1589465 1103.4147
+229167.068640803 4.1590252 1103.4147
+229168.0686409073 4.1590252 1103.3752
+229169.0686410116 4.1590252 1103.4344
+229170.0686411159 4.1589856 1103.4344
+229171.0686412202 4.1591039 1103.3752
+229172.0686413245 4.1591039 1103.3949
+229173.0686414288 4.1590643 1103.4147
+229174.0686415331 4.159143 1103.2963
+229175.0686416375 4.1591039 1103.3555
+229176.0686417418 4.1591825 1103.3555
+229177.0686418461 4.1592221 1103.3752
+229178.0686419504 4.1592221 1103.316
+229179.0686420547 4.1592612 1103.474
+229180.068642159 4.1593399 1103.3752
+229181.0686422633 4.1592221 1103.3752
+229182.0686423676 4.1592221 1103.4147
+229183.0686424719 4.1592612 1103.3555
+229184.0686425762 4.1593008 1103.3752
+229185.0686426805 4.1593795 1103.3555
+229186.0686427848 4.1592221 1103.3357
+229187.0686428891 4.1593399 1103.3357
+229188.0686429935 4.1592612 1103.3752
+229189.0686430978 4.1594582 1103.3357
+229190.0686432021 4.1593795 1103.4147
+229191.0686433064 4.1594186 1103.3752
+229192.0686434107 4.1594186 1103.3949
+229193.068643515 4.1593795 1103.3752
+229194.0686436193 4.1594186 1103.3752
+229195.0686437236 4.1594186 1103.4542
+229196.0686438279 4.1594582 1103.3555
+229197.0686439322 4.1594186 1103.4344
+229198.0686440365 4.1595368 1103.4147
+229199.0686441408 4.1594973 1103.316
+229200.0686442452 4.1594973 1103.3752
+229201.0686443495 4.1595368 1103.3949
+229202.0686444538 4.1595764 1103.316
+229203.0686445581 4.1596155 1103.3357
+229204.0686446624 4.1595368 1103.3752
+229205.0686447667 4.1596155 1103.4147
+229206.068644871 4.1595764 1103.3752
+229207.0686449753 4.1596551 1103.2765
+229208.0686450796 4.1596551 1103.2963
+229209.0686451839 4.1595764 1103.3555
+229210.0686452882 4.1597729 1103.3357
+229211.0686453925 4.1597338 1103.3752
+229212.0686454969 4.1598125 1103.316
+229213.0686456012 4.1597338 1103.3949
+229214.0686457055 4.1598125 1103.2567
+229215.0686458098 4.1598125 1103.3752
+229216.0686459141 4.1598125 1103.4938
+229217.0686460184 4.1597729 1103.3555
+229218.0686461227 4.1597729 1103.2963
+229219.068646227 4.1597729 1103.4147
+229220.0686463313 4.1598125 1103.4147
+229221.0686464356 4.1599698 1103.3555
+229222.0686465399 4.1599307 1103.3949
+229223.0686466442 4.1599698 1103.3752
+229224.0686467486 4.1598911 1103.3752
+229225.0686468529 4.1599307 1103.3949
+229226.0686469572 4.1600485 1103.4344
+229227.0686470615 4.1601272 1103.4344
+229228.0686471658 4.1600485 1103.4542
+229229.0686472701 4.1599307 1103.316
+229230.0686473744 4.1599698 1103.4344
+229231.0686474787 4.1600485 1103.3555
+229232.068647583 4.1601667 1103.3949
+229233.0686476873 4.1600094 1103.3949
+229234.0686477916 4.1600881 1103.3555
+229235.0686478959 4.1601667 1103.3357
+229236.0686480002 4.1600881 1103.4147
+229237.0686481046 4.1601667 1103.3949
+229238.0686482089 4.1600881 1103.3752
+229239.0686483132 4.1602063 1103.3752
+229240.0686484175 4.1601667 1103.3949
+229241.0686485218 4.1600881 1103.3949
+229242.0686486261 4.1602454 1103.3949
+229243.0686487304 4.1600881 1103.3752
+229244.0686488347 4.1603241 1103.4344
+229245.068648939 4.1603241 1103.3357
+229246.0686490433 4.1603241 1103.4344
+229247.0686491476 4.1603241 1103.3555
+229248.0686492519 4.1603241 1103.4344
+229249.0686493563 4.1602454 1103.4344
+229250.0686494606 4.1604028 1103.4147
+229251.0686495649 4.1603637 1103.3357
+229252.0686496692 4.1603637 1103.3949
+229253.0686497735 4.1604028 1103.316
+229254.0686498778 4.1604819 1103.3357
+229255.0686499821 4.1603637 1103.3949
+229256.0686500864 4.1605606 1103.3752
+229257.0686501907 4.1604028 1103.4344
+229258.068650295 4.160521 1103.2567
+229259.0686503993 4.1605606 1103.3555
+229260.0686505036 4.160521 1103.4344
+229261.068650608 4.1604424 1103.3555
+229262.0686507123 4.1605606 1103.4147
+229263.0686508166 4.1606393 1103.4147
+229264.0686509209 4.1606393 1103.3949
+229265.0686510252 4.1606393 1103.3949
+229266.0686511295 4.1605606 1103.3949
+229267.0686512338 4.1605997 1103.4147
+229268.0686513381 4.1605997 1103.3949
+229269.0686514424 4.1606784 1103.3555
+229270.0686515467 4.1606784 1103.4344
+229271.068651651 4.1606393 1103.3949
+229272.0686517553 4.1607575 1103.3949
+229273.0686518596 4.1606393 1103.3752
+229274.068651964 4.1607575 1103.3949
+229275.0686520683 4.1608362 1103.3949
+229276.0686521726 4.1607966 1103.4147
+229277.0686522769 4.1607966 1103.316
+229278.0686523812 4.1607575 1103.4542
+229279.0686524855 4.1608362 1103.3949
+229280.0686525898 4.1607966 1103.3357
+229281.0686526941 4.1608362 1103.3357
+229282.0686527984 4.1608753 1103.4147
+229283.0686529027 4.1608753 1103.3949
+229284.068653007 4.160954 1103.3357
+229285.0686531113 4.1608362 1103.4344
+229286.0686532157 4.1610327 1103.3752
+229287.06865332 4.1609149 1103.4147
+229288.0686534243 4.1609149 1103.4344
+229289.0686535286 4.1611118 1103.3949
+229290.0686536329 4.1609936 1103.3752
+229291.0686537372 4.1610327 1103.316
+229292.0686538415 4.1610723 1103.474
+229293.0686539458 4.1610327 1103.3555
+229294.0686540501 4.1611509 1103.3357
+229295.0686541544 4.1609936 1103.316
+229296.0686542587 4.1611118 1103.3949
+229297.068654363 4.1611118 1103.2963
+229298.0686544674 4.1611905 1103.3949
+229299.0686545717 4.1611509 1103.3555
+229300.068654676 4.1611118 1103.3357
+229301.0686547803 4.1611509 1103.3357
+229302.0686548846 4.1612692 1103.474
+229303.0686549889 4.1612692 1103.2765
+229304.0686550932 4.1613083 1103.3752
+229305.0686551975 4.1612296 1103.3555
+229306.0686553018 4.1612296 1103.3555
+229307.0686554061 4.1612296 1103.3752
+229308.0686555104 4.1612692 1103.4147
+229309.0686556147 4.1613083 1103.4147
+229310.068655719 4.1613083 1103.4147
+229311.0686558234 4.1613083 1103.3357
+229312.0686559277 4.1613479 1103.4147
+229313.068656032 4.1613874 1103.4147
+229314.0686561363 4.1613479 1103.3357
+229315.0686562406 4.1614265 1103.3949
+229316.0686563449 4.1613874 1103.3555
+229317.0686564492 4.1614265 1103.316
+229318.0686565535 4.1615052 1103.3752
+229319.0686566578 4.1615052 1103.3949
+229320.0686567621 4.1615839 1103.316
+229321.0686568664 4.1614661 1103.474
+229322.0686569707 4.1614265 1103.4344
+229323.0686570751 4.1614661 1103.3555
+229324.0686571794 4.1615448 1103.316
+229325.0686572837 4.1616626 1103.3555
+229326.068657388 4.1615839 1103.3555
+229327.0686574923 4.1617022 1103.3949
+229328.0686575966 4.1616626 1103.3752
+229329.0686577009 4.1616626 1103.4344
+229330.0686578052 4.1617808 1103.3555
+229331.0686579095 4.1616626 1103.3949
+229332.0686580138 4.1617417 1103.4344
+229333.0686581181 4.1617022 1103.3555
+229334.0686582224 4.1617417 1103.4542
+229335.0686583268 4.1616626 1103.2963
+229336.0686584311 4.1617417 1103.3752
+229337.0686585354 4.1617022 1103.3752
+229338.0686586397 4.1618204 1103.3949
+229339.068658744 4.1617808 1103.474
+229340.0686588483 4.1617808 1103.3949
+229341.0686589526 4.1619382 1103.4147
+229342.0686590569 4.1618204 1103.2963
+229343.0686591612 4.1618991 1103.3555
+229344.0686592655 4.1619778 1103.3357
+229345.0686593698 4.1618595 1103.3752
+229346.0686594741 4.1620564 1103.3555
+229347.0686595785 4.1618595 1103.474
+229348.0686596828 4.1619778 1103.4147
+229349.0686597871 4.1619778 1103.4147
+229350.0686598914 4.1620564 1103.4344
+229351.0686599957 4.162096 1103.4542
+229352.0686601 4.1620173 1103.3752
+229353.0686602043 4.1620564 1103.4147
+229354.0686603086 4.1620173 1103.3949
+229355.0686604129 4.1621351 1103.3357
+229356.0686605172 4.1620564 1103.4344
+229357.0686606215 4.1621351 1103.4542
+229358.0686607258 4.1621351 1103.3949
+229359.0686608301 4.1621747 1103.5332
+229360.0686609345 4.1622534 1103.3949
+229361.0686610388 4.1622138 1103.3949
+229362.0686611431 4.1622138 1103.3752
+229363.0686612474 4.162293 1103.4542
+229364.0686613517 4.1624503 1103.2765
+229365.068661456 4.1622534 1103.3949
+229366.0686615603 4.1622534 1103.4147
+229367.0686616646 4.1623321 1103.3949
+229368.0686617689 4.1624107 1103.4147
+229369.0686618732 4.1623321 1103.4542
+229370.0686619775 4.1624107 1103.4147
+229371.0686620818 4.1623716 1103.4542
+229372.0686621862 4.1623716 1103.316
+229373.0686622905 4.1624503 1103.2963
+229374.0686623948 4.1626077 1103.3357
+229375.0686624991 4.1624503 1103.4344
+229376.0686626034 4.1624503 1103.3555
+229377.0686627077 4.1625681 1103.3949
+229378.068662812 4.1625681 1103.3949
+229379.0686629163 4.1624894 1103.4938
+229380.0686630206 4.162529 1103.4147
+229381.0686631249 4.1625681 1103.3357
+229382.0686632292 4.1626863 1103.4147
+229383.0686633335 4.1626863 1103.474
+229384.0686634379 4.1627259 1103.4147
+229385.0686635422 4.1625681 1103.3357
+229386.0686636465 4.162529 1103.4344
+229387.0686637508 4.1627259 1103.4147
+229388.0686638551 4.1626863 1103.4147
+229389.0686639594 4.1626863 1103.4344
+229390.0686640637 4.1626472 1103.3949
+229391.068664168 4.162765 1103.3949
+229392.0686642723 4.1627259 1103.474
+229393.0686643766 4.1628437 1103.3555
+229394.0686644809 4.162765 1103.2765
+229395.0686645852 4.162765 1103.316
+229396.0686646895 4.1628437 1103.4147
+229397.0686647939 4.1628437 1103.3949
+229398.0686648982 4.162765 1103.3949
+229399.0686650025 4.162765 1103.3357
+229400.0686651068 4.1629229 1103.3555
+229401.0686652111 4.1628437 1103.3949
+229402.0686653154 4.1628833 1103.3357
+229403.0686654197 4.1629229 1103.3949
+229404.068665524 4.1628833 1103.4542
+229405.0686656283 4.1629229 1103.3752
+229406.0686657326 4.1629229 1103.3357
+229407.0686658369 4.1630406 1103.4542
+229408.0686659412 4.1630406 1103.3949
+229409.0686660456 4.1630015 1103.3949
+229410.0686661499 4.162962 1103.316
+229411.0686662542 4.1630802 1103.3949
+229412.0686663585 4.1630802 1103.4344
+229413.0686664628 4.1631193 1103.3555
+229414.0686665671 4.1631589 1103.4147
+229415.0686666714 4.1632376 1103.3357
+229416.0686667757 4.1631193 1103.4147
+229417.06866688 4.163198 1103.3949
+229418.0686669843 4.1632771 1103.3752
+229419.0686670886 4.1632376 1103.3949
+229420.0686671929 4.1631589 1103.2963
+229421.0686672973 4.1632771 1103.3357
+229422.0686674016 4.1632771 1103.4344
+229423.0686675059 4.1633162 1103.2765
+229424.0686676102 4.1634345 1103.4147
+229425.0686677145 4.1632771 1103.2567
+229426.0686678188 4.1632771 1103.3357
+229427.0686679231 4.1634736 1103.3752
+229428.0686680274 4.1633949 1103.4147
+229429.0686681317 4.1633949 1103.3555
+229430.068668236 4.1633949 1103.316
+229431.0686683403 4.1634736 1103.3949
+229432.0686684446 4.1634736 1103.3949
+229433.0686685489 4.1635528 1103.3752
+229434.0686686533 4.1635132 1103.3555
+229435.0686687576 4.1634736 1103.316
+229436.0686688619 4.1635528 1103.3949
+229437.0686689662 4.1635132 1103.4147
+229438.0686690705 4.1634736 1103.3752
+229439.0686691748 4.1635528 1103.4147
+229440.0686692791 4.1635919 1103.3949
+229441.0686693834 4.1635919 1103.3555
+229442.0686694877 4.1637888 1103.3555
+229443.068669592 4.1635919 1103.4147
+229444.0686696963 4.1636314 1103.4147
+229445.0686698006 4.1635919 1103.3357
+229446.068669905 4.1637101 1103.2567
+229447.0686700093 4.1636705 1103.4344
+229448.0686701136 4.1637101 1103.3555
+229449.0686702179 4.1638279 1103.3555
+229450.0686703222 4.1637101 1103.3949
+229451.0686704265 4.1637888 1103.3949
+229452.0686705308 4.1637888 1103.3752
+229453.0686706351 4.1637492 1103.4147
+229454.0686707394 4.1638279 1103.2567
+229455.0686708437 4.1638279 1103.3949
+229456.068670948 4.1639071 1103.3949
+229457.0686710523 4.1638279 1103.4344
+229458.0686711567 4.1639462 1103.4147
+229459.068671261 4.1639071 1103.474
+229460.0686713653 4.1639071 1103.3752
+229461.0686714696 4.1638279 1103.316
+229462.0686715739 4.1639462 1103.3949
+229463.0686716782 4.1639071 1103.4344
+229464.0686717825 4.1639071 1103.4147
+229465.0686718868 4.1640248 1103.3949
+229466.0686719911 4.1639857 1103.2567
+229467.0686720954 4.1640248 1103.4938
+229468.0686721997 4.1641431 1103.4147
+229469.068672304 4.1641035 1103.4542
+229470.0686724084 4.1640644 1103.4147
+229471.0686725127 4.1641827 1103.3752
+229472.068672617 4.1642218 1103.3555
+229473.0686727213 4.1642218 1103.4344
+229474.0686728256 4.1641827 1103.3752
+229475.0686729299 4.1642218 1103.4542
+229476.0686730342 4.1643004 1103.4147
+229477.0686731385 4.1642218 1103.4147
+229478.0686732428 4.1642613 1103.3949
+229479.0686733471 4.1642218 1103.3555
+229480.0686734514 4.1642218 1103.4344
+229481.0686735557 4.1643004 1103.4938
+229482.06867366 4.1642613 1103.3555
+229483.0686737644 4.1644583 1103.3555
+229484.0686738687 4.1644187 1103.4147
+229485.068673973 4.1643004 1103.5134
+229486.0686740773 4.16434 1103.3555
+229487.0686741816 4.1643791 1103.3949
+229488.0686742859 4.1644187 1103.316
+229489.0686743902 4.1644974 1103.3949
+229490.0686744945 4.1644974 1103.3357
+229491.0686745988 4.1644583 1103.3949
+229492.0686747031 4.1646156 1103.3752
+229493.0686748074 4.164537 1103.3949
+229494.0686749117 4.1646943 1103.316
+229495.0686750161 4.164537 1103.3949
+229496.0686751204 4.1645761 1103.4147
+229497.0686752247 4.1646547 1103.3357
+229498.068675329 4.164537 1103.316
+229499.0686754333 4.1645761 1103.3949
+229500.0686755376 4.1646943 1103.3555
+229501.0686756419 4.1647334 1103.4147
+229502.0686757462 4.1646943 1103.4542
+229503.0686758505 4.1646547 1103.5134
+229504.0686759548 4.1646547 1103.474
+229505.0686760591 4.1647334 1103.3752
+229506.0686761634 4.1647334 1103.3949
+229507.0686762678 4.164773 1103.4344
+229508.0686763721 4.1646943 1103.3949
+229509.0686764764 4.164773 1103.4147
+229510.0686765807 4.1648517 1103.4147
+229511.068676685 4.1648517 1103.3949
+229512.0686767893 4.1648517 1103.3752
+229513.0686768936 4.1648517 1103.3949
+229514.0686769979 4.1648912 1103.3949
+229515.0686771022 4.1648126 1103.4147
+229516.0686772065 4.1649303 1103.3752
+229517.0686773108 4.1648912 1103.4344
+229518.0686774151 4.165009 1103.3949
+229519.0686775194 4.1650486 1103.3752
+229520.0686776238 4.1650486 1103.4147
+229521.0686777281 4.165009 1103.4344
+229522.0686778324 4.1649303 1103.3357
+229523.0686779367 4.165009 1103.3357
+229524.068678041 4.1650882 1103.3752
+229525.0686781453 4.1651669 1103.3949
+229526.0686782496 4.1650882 1103.3949
+229527.0686783539 4.165206 1103.3752
+229528.0686784582 4.1651669 1103.4147
+229529.0686785625 4.1651669 1103.4542
+229530.0686786668 4.1651669 1103.474
+229531.0686787711 4.1652455 1103.3949
+229532.0686788755 4.1652455 1103.4344
+229533.0686789798 4.1651273 1103.4542
+229534.0686790841 4.1652455 1103.316
+229535.0686791884 4.1652846 1103.3357
+229536.0686792927 4.1653242 1103.2963
+229537.068679397 4.1653242 1103.3949
+229538.0686795013 4.1652455 1103.3357
+229539.0686796056 4.1653242 1103.4542
+229540.0686797099 4.1654425 1103.316
+229541.0686798142 4.1654425 1103.4147
+229542.0686799185 4.1654425 1103.3949
+229543.0686800228 4.1653633 1103.3752
+229544.0686801272 4.1655998 1103.4147
+229545.0686802315 4.1654029 1103.4542
+229546.0686803358 4.1654816 1103.3555
+229547.0686804401 4.1654816 1103.4542
+229548.0686805444 4.1654425 1103.3752
+229549.0686806487 4.1655211 1103.3949
+229550.068680753 4.1654816 1103.3357
+229551.0686808573 4.1655602 1103.4147
+229552.0686809616 4.1655998 1103.3949
+229553.0686810659 4.1655211 1103.3357
+229554.0686811702 4.1655998 1103.474
+229555.0686812745 4.1655998 1103.3949
+229556.0686813788 4.1656785 1103.474
+229557.0686814832 4.1657181 1103.4147
+229558.0686815875 4.1656389 1103.4344
+229559.0686816918 4.1657572 1103.4344
+229560.0686817961 4.1657181 1103.474
+229561.0686819004 4.1657572 1103.3949
+229562.0686820047 4.1657181 1103.3357
+229563.068682109 4.1657572 1103.3357
+229564.0686822133 4.1658359 1103.3357
+229565.0686823176 4.1657181 1103.316
+229566.0686824219 4.1658754 1103.4344
+229567.0686825262 4.1659145 1103.3752
+229568.0686826305 4.1658359 1103.316
+229569.0686827349 4.1657968 1103.2963
+229570.0686828392 4.1659937 1103.3949
+229571.0686829435 4.1659541 1103.3752
+229572.0686830478 4.1659937 1103.2963
+229573.0686831521 4.1659937 1103.3949
+229574.0686832564 4.1659541 1103.2963
+229575.0686833607 4.1659541 1103.4147
+229576.068683465 4.1659145 1103.3357
+229577.0686835693 4.1659937 1103.3949
+229578.0686836736 4.1659937 1103.3357
+229579.0686837779 4.1660724 1103.3357
+229580.0686838822 4.1660724 1103.3752
+229581.0686839866 4.166151 1103.3949
+229582.0686840909 4.166151 1103.3357
+229583.0686841952 4.1662297 1103.316
+229584.0686842995 4.1661115 1103.3555
+229585.0686844038 4.1661901 1103.316
+229586.0686845081 4.1661901 1103.4147
+229587.0686846124 4.1661901 1103.4147
+229588.0686847167 4.166151 1103.3752
+229589.068684821 4.1662688 1103.4344
+229590.0686849253 4.1663084 1103.4542
+229591.0686850296 4.1662688 1103.4147
+229592.0686851339 4.1663871 1103.3949
+229593.0686852383 4.1664658 1103.4344
+229594.0686853426 4.166348 1103.2765
+229595.0686854469 4.1664267 1103.4147
+229596.0686855512 4.1662688 1103.4147
+229597.0686856555 4.1664267 1103.3357
+229598.0686857598 4.1664267 1103.3555
+229599.0686858641 4.1664267 1103.4542
+229600.0686859684 4.1664658 1103.3357
+229601.0686860727 4.1665053 1103.4147
+229602.068686177 4.1665053 1103.4147
+229603.0686862813 4.1665444 1103.3949
+229604.0686863856 4.1665053 1103.3752
+229605.0686864899 4.1665444 1103.4147
+229606.0686865943 4.166584 1103.3752
+229607.0686866986 4.1665053 1103.3949
+229608.0686868029 4.166584 1103.3752
+229609.0686869072 4.1666236 1103.3752
+229610.0686870115 4.1666236 1103.3949
+229611.0686871158 4.1667023 1103.4147
+229612.0686872201 4.166584 1103.4542
+229613.0686873244 4.1667809 1103.3752
+229614.0686874287 4.1666627 1103.3949
+229615.068687533 4.1666627 1103.3357
+229616.0686876373 4.1667809 1103.4147
+229617.0686877416 4.1668596 1103.3949
+229618.068687846 4.16682 1103.4542
+229619.0686879503 4.1667023 1103.3949
+229620.0686880546 4.16682 1103.3752
+229621.0686881589 4.16682 1103.3555
+229622.0686882632 4.1668596 1103.4542
+229623.0686883675 4.1668596 1103.3949
+229624.0686884718 4.1668596 1103.3949
+229625.0686885761 4.1668596 1103.3357
+229626.0686886804 4.1668987 1103.4344
+229627.0686887847 4.1668596 1103.4147
+229628.068688889 4.1669779 1103.4147
+229629.0686889933 4.1670566 1103.4542
+229630.0686890977 4.1671352 1103.3949
+229631.068689202 4.1668987 1103.2963
+229632.0686893063 4.167017 1103.3949
+229633.0686894106 4.1670566 1103.4147
+229634.0686895149 4.1670957 1103.3555
+229635.0686896192 4.1671352 1103.4344
+229636.0686897235 4.1671743 1103.3752
+229637.0686898278 4.1670566 1103.3555
+229638.0686899321 4.1671743 1103.4344
+229639.0686900364 4.1671352 1103.3555
+229640.0686901407 4.1672139 1103.4542
+229641.068690245 4.1672139 1103.3949
+229642.0686903493 4.1672535 1103.3949
+229643.0686904537 4.1672535 1103.316
+229644.068690558 4.1672535 1103.4147
+229645.0686906623 4.1673322 1103.3357
+229646.0686907666 4.1672535 1103.4147
+229647.0686908709 4.1672926 1103.4147
+229648.0686909752 4.1672926 1103.3357
+229649.0686910795 4.1672926 1103.3357
+229650.0686911838 4.1673713 1103.3949
+229651.0686912881 4.1673713 1103.3555
+229652.0686913924 4.16745 1103.3949
+229653.0686914967 4.1674109 1103.3752
+229654.068691601 4.1674109 1103.4147
+229655.0686917054 4.16745 1103.4542
+229656.0686918097 4.1674895 1103.3752
+229657.068691914 4.1674109 1103.316
+229658.0686920183 4.1674895 1103.3357
+229659.0686921226 4.16745 1103.3752
+229660.0686922269 4.1676078 1103.3555
+229661.0686923312 4.1675682 1103.4344
+229662.0686924355 4.1676078 1103.3555
+229663.0686925398 4.1676469 1103.3752
+229664.0686926441 4.1676469 1103.4344
+229665.0686927484 4.1675291 1103.3949
+229666.0686928527 4.1676865 1103.3949
+229667.0686929571 4.1676865 1103.3752
+229668.0686930614 4.1676865 1103.474
+229669.0686931657 4.1677651 1103.3949
+229670.06869327 4.1676469 1103.3752
+229671.0686933743 4.1677651 1103.3949
+229672.0686934786 4.1677651 1103.3555
+229673.0686935829 4.1678834 1103.3357
+229674.0686936872 4.1677256 1103.4147
+229675.0686937915 4.1678042 1103.4344
+229676.0686938958 4.1678438 1103.3555
+229677.0686940001 4.1678042 1103.3555
+229678.0686941044 4.1678834 1103.4147
+229679.0686942087 4.1679621 1103.3949
+229680.0686943131 4.1679621 1103.3555
+229681.0686944174 4.1679621 1103.3752
+229682.0686945217 4.1680408 1103.3752
+229683.068694626 4.1679621 1103.4344
+229684.0686947303 4.1679621 1103.3752
+229685.0686948346 4.1680408 1103.3752
+229686.0686949389 4.1681194 1103.3752
+229687.0686950432 4.1680799 1103.3949
+229688.0686951475 4.1681194 1103.3357
+229689.0686952518 4.168159 1103.316
+229690.0686953561 4.1681981 1103.4147
+229691.0686954604 4.1680012 1103.4344
+229692.0686955648 4.1682377 1103.4344
+229693.0686956691 4.1681981 1103.316
+229694.0686957734 4.1682768 1103.3752
+229695.0686958777 4.168159 1103.3949
+229696.068695982 4.1681981 1103.3555
+229697.0686960863 4.1682768 1103.4147
+229698.0686961906 4.1683555 1103.3555
+229699.0686962949 4.1683555 1103.2963
+229700.0686963992 4.1682768 1103.3357
+229701.0686965035 4.1683164 1103.3555
+229702.0686966078 4.1683555 1103.4147
+229703.0686967121 4.1683164 1103.3752
+229704.0686968165 4.1683555 1103.3949
+229705.0686969208 4.168395 1103.3752
+229706.0686970251 4.168395 1103.316
+229707.0686971294 4.168395 1103.3949
+229708.0686972337 4.168395 1103.3555
+229709.068697338 4.1684737 1103.4147
+229710.0686974423 4.1685524 1103.3357
+229711.0686975466 4.1685133 1103.3949
+229712.0686976509 4.1684737 1103.4542
+229713.0686977552 4.168592 1103.4344
+229714.0686978595 4.1686707 1103.3752
+229715.0686979638 4.168592 1103.3555
+229716.0686980681 4.1687098 1103.3949
+229717.0686981725 4.1687098 1103.4344
+229718.0686982768 4.1686311 1103.474
+229719.0686983811 4.1686707 1103.474
+229720.0686984854 4.1687098 1103.3357
+229721.0686985897 4.1687493 1103.316
+229722.068698694 4.1687098 1103.3949
+229723.0686987983 4.1687493 1103.3949
+229724.0686989026 4.1687493 1103.4542
+229725.0686990069 4.168828 1103.4147
+229726.0686991112 4.1687889 1103.4147
+229727.0686992155 4.168828 1103.4344
+229728.0686993198 4.168828 1103.3949
+229729.0686994242 4.1688676 1103.3949
+229730.0686995285 4.1688676 1103.3357
+229731.0686996328 4.1689463 1103.3752
+229732.0686997371 4.1688676 1103.3752
+229733.0686998414 4.1689067 1103.4542
+229734.0686999457 4.1688676 1103.4147
+229735.06870005 4.1690249 1103.4542
+229736.0687001543 4.1689854 1103.2963
+229737.0687002586 4.1690249 1103.3949
+229738.0687003629 4.1690249 1103.3949
+229739.0687004672 4.1690249 1103.4542
+229740.0687005715 4.1691036 1103.3752
+229741.0687006759 4.1692219 1103.4344
+229742.0687007802 4.1689854 1103.3949
+229743.0687008845 4.1691036 1103.4147
+229744.0687009888 4.1692219 1103.4147
+229745.0687010931 4.1691823 1103.4344
+229746.0687011974 4.1692219 1103.3357
+229747.0687013017 4.169261 1103.3357
+229748.068701406 4.1691823 1103.3752
+229749.0687015103 4.1692219 1103.2765
+229750.0687016146 4.169261 1103.3752
+229751.0687017189 4.1693397 1103.4344
+229752.0687018232 4.1694188 1103.4147
+229753.0687019276 4.169261 1103.3555
+229754.0687020319 4.1693397 1103.4147
+229755.0687021362 4.169261 1103.3357
+229756.0687022405 4.1693397 1103.3752
+229757.0687023448 4.1694188 1103.316
+229758.0687024491 4.1694579 1103.3357
+229759.0687025534 4.1694188 1103.3949
+229760.0687026577 4.1694975 1103.3752
+229761.068702762 4.1693792 1103.3555
+229762.0687028663 4.1694579 1103.4147
+229763.0687029706 4.1694188 1103.3752
+229764.0687030749 4.1695366 1103.3752
+229765.0687031792 4.1696153 1103.4147
+229766.0687032836 4.1695366 1103.4344
+229767.0687033879 4.1695366 1103.3555
+229768.0687034922 4.1696548 1103.3752
+229769.0687035965 4.1695762 1103.3949
+229770.0687037008 4.1695762 1103.4147
+229771.0687038051 4.1696944 1103.4147
+229772.0687039094 4.1696548 1103.3752
+229773.0687040137 4.1696944 1103.3752
+229774.068704118 4.1697335 1103.2765
+229775.0687042223 4.1696944 1103.3752
+229776.0687043266 4.1696548 1103.2765
+229777.0687044309 4.1696944 1103.3949
+229778.0687045353 4.1697335 1103.3949
+229779.0687046396 4.1697731 1103.4542
+229780.0687047439 4.1697731 1103.3752
+229781.0687048482 4.1698122 1103.3555
+229782.0687049525 4.1699305 1103.474
+229783.0687050568 4.1698518 1103.4542
+229784.0687051611 4.1699696 1103.474
+229785.0687052654 4.1698518 1103.3555
+229786.0687053697 4.1698909 1103.3949
+229787.068705474 4.1700091 1103.3555
+229788.0687055783 4.1698122 1103.3949
+229789.0687056826 4.1700878 1103.3949
+229790.068705787 4.1700878 1103.3357
+229791.0687058913 4.1700487 1103.4147
+229792.0687059956 4.1698909 1103.3949
+229793.0687060999 4.1700878 1103.3555
+229794.0687062042 4.1700878 1103.3752
+229795.0687063085 4.1700878 1103.3752
+229796.0687064128 4.1700878 1103.3949
+229797.0687065171 4.1701274 1103.4147
+229798.0687066214 4.1702452 1103.3555
+229799.0687067257 4.1701665 1103.3752
+229800.06870683 4.1703243 1103.3949
+229801.0687069343 4.1702061 1103.3752
+229802.0687070386 4.1701665 1103.4147
+229803.068707143 4.1701665 1103.3357
+229804.0687072473 4.1702452 1103.4147
+229805.0687073516 4.1702061 1103.3357
+229806.0687074559 4.1703243 1103.3949
+229807.0687075602 4.1703634 1103.3949
+229808.0687076645 4.1702847 1103.4938
+229809.0687077688 4.1702847 1103.3555
+229810.0687078731 4.1703634 1103.3949
+229811.0687079774 4.170403 1103.3357
+229812.0687080817 4.1704817 1103.4344
+229813.068708186 4.1704421 1103.3357
+229814.0687082903 4.1703634 1103.3752
+229815.0687083947 4.1705604 1103.3949
+229816.068708499 4.170403 1103.4147
+229817.0687086033 4.1705604 1103.3555
+229818.0687087076 4.1705208 1103.3752
+229819.0687088119 4.1705604 1103.3752
+229820.0687089162 4.1705995 1103.3555
+229821.0687090205 4.1705208 1103.3752
+229822.0687091248 4.1706786 1103.4542
+229823.0687092291 4.1707573 1103.4542
+229824.0687093334 4.170639 1103.3357
+229825.0687094377 4.1707177 1103.3752
+229826.068709542 4.1707177 1103.3555
+229827.0687096464 4.1707573 1103.2963
+229828.0687097507 4.1706786 1103.3555
+229829.068709855 4.170836 1103.3555
+229830.0687099593 4.1707964 1103.4147
+229831.0687100636 4.1707573 1103.4344
+229832.0687101679 4.1707964 1103.3752
+229833.0687102722 4.1707964 1103.316
+229834.0687103765 4.1709146 1103.3555
+229835.0687104808 4.1708751 1103.4147
+229836.0687105851 4.1707964 1103.4938
+229837.0687106894 4.1709146 1103.3555
+229838.0687107937 4.1709542 1103.4344
+229839.068710898 4.1710329 1103.4344
+229840.0687110024 4.1709542 1103.3357
+229841.0687111067 4.1709933 1103.4147
+229842.068711211 4.1709933 1103.3949
+229843.0687113153 4.1710329 1103.3752
+229844.0687114196 4.1709542 1103.4344
+229845.0687115239 4.1711116 1103.3949
+229846.0687116282 4.1711507 1103.3357
+229847.0687117325 4.1711116 1103.3357
+229848.0687118368 4.1711116 1103.2963
+229849.0687119411 4.1711116 1103.4542
+229850.0687120454 4.1711507 1103.2963
+229851.0687121497 4.1711507 1103.3949
+229852.0687122541 4.1712689 1103.3949
+229853.0687123584 4.1711903 1103.4344
+229854.0687124627 4.1711903 1103.2963
+229855.068712567 4.1712689 1103.316
+229856.0687126713 4.1713085 1103.3555
+229857.0687127756 4.1713085 1103.3752
+229858.0687128799 4.1713085 1103.3949
+229859.0687129842 4.1713476 1103.5332
+229860.0687130885 4.1713476 1103.4147
+229861.0687131928 4.1713872 1103.3555
+229862.0687132971 4.1713872 1103.4344
+229863.0687134014 4.1715446 1103.3357
+229864.0687135058 4.1714263 1103.4147
+229865.0687136101 4.1715841 1103.3752
+229866.0687137144 4.1714263 1103.3555
+229867.0687138187 4.171505 1103.4147
+229868.068713923 4.1714659 1103.3555
+229869.0687140273 4.1714659 1103.3949
+229870.0687141316 4.1714659 1103.5134
+229871.0687142359 4.1715446 1103.4344
+229872.0687143402 4.1715446 1103.3555
+229873.0687144445 4.1715841 1103.3357
+229874.0687145488 4.1716232 1103.4344
+229875.0687146531 4.1716232 1103.4147
+229876.0687147575 4.1716628 1103.3949
+229877.0687148618 4.1716628 1103.4344
+229878.0687149661 4.1718202 1103.4344
+229879.0687150704 4.1717415 1103.4938
+229880.0687151747 4.1717415 1103.3555
+229881.068715279 4.1717806 1103.3949
+229882.0687153833 4.1718202 1103.4147
+229883.0687154876 4.1717415 1103.4147
+229884.0687155919 4.1718597 1103.316
+229885.0687156962 4.1718597 1103.4147
+229886.0687158005 4.1719384 1103.3752
+229887.0687159048 4.1718988 1103.3357
+229888.0687160091 4.1719384 1103.3752
+229889.0687161135 4.1719775 1103.2963
+229890.0687162178 4.1719384 1103.3752
+229891.0687163221 4.1719384 1103.4147
+229892.0687164264 4.1719775 1103.3949
+229893.0687165307 4.1720958 1103.3555
+229894.068716635 4.1720958 1103.3752
+229895.0687167393 4.1719775 1103.316
+229896.0687168436 4.1720958 1103.3357
+229897.0687169479 4.1720171 1103.3555
+229898.0687170522 4.172214 1103.4542
+229899.0687171565 4.1720562 1103.4344
+229900.0687172608 4.1721745 1103.3949
+229901.0687173652 4.1721349 1103.3752
+229902.0687174695 4.1722531 1103.4344
+229903.0687175738 4.1723318 1103.4344
+229904.0687176781 4.1722927 1103.4344
+229905.0687177824 4.1722531 1103.4147
+229906.0687178867 4.1722927 1103.3555
+229907.068717991 4.1723318 1103.3949
+229908.0687180953 4.1723714 1103.3752
+229909.0687181996 4.1723714 1103.3357
+229910.0687183039 4.1724105 1103.3949
+229911.0687184082 4.1723714 1103.4147
+229912.0687185125 4.1724501 1103.4344
+229913.0687186169 4.1724501 1103.3752
+229914.0687187212 4.1725287 1103.3555
+229915.0687188255 4.1725287 1103.4147
+229916.0687189298 4.1725683 1103.4542
+229917.0687190341 4.1724501 1103.3555
+229918.0687191384 4.1724501 1103.3752
+229919.0687192427 4.1725287 1103.3752
+229920.068719347 4.1725683 1103.4344
+229921.0687194513 4.1725683 1103.3949
+229922.0687195556 4.1726861 1103.3357
+229923.0687196599 4.172647 1103.316
+229924.0687197642 4.1726861 1103.3752
+229925.0687198685 4.1725287 1103.3555
+229926.0687199729 4.172647 1103.3555
+229927.0687200772 4.172647 1103.3555
+229928.0687201815 4.1727257 1103.3357
+229929.0687202858 4.1726074 1103.4147
+229930.0687203901 4.1726861 1103.3357
+229931.0687204944 4.1727648 1103.4147
+229932.0687205987 4.1727648 1103.4147
+229933.068720703 4.1727648 1103.3752
+229934.0687208073 4.1728439 1103.3949
+229935.0687209116 4.1729226 1103.4147
+229936.0687210159 4.172883 1103.3555
+229937.0687211202 4.1729617 1103.4147
+229938.0687212246 4.1730404 1103.3949
+229939.0687213289 4.1729226 1103.4344
+229940.0687214332 4.172883 1103.3555
+229941.0687215375 4.1729226 1103.4344
+229942.0687216418 4.1730404 1103.474
+229943.0687217461 4.1731195 1103.3357
+229944.0687218504 4.1730013 1103.3555
+229945.0687219547 4.17308 1103.4147
+229946.068722059 4.1731195 1103.3752
+229947.0687221633 4.1731586 1103.4147
+229948.0687222676 4.1731195 1103.3555
+229949.0687223719 4.1731195 1103.3949
+229950.0687224763 4.1731586 1103.3752
+229951.0687225806 4.1731982 1103.474
+229952.0687226849 4.1732373 1103.2963
+229953.0687227892 4.1731586 1103.4147
+229954.0687228935 4.1732769 1103.4542
+229955.0687229978 4.1731982 1103.4147
+229956.0687231021 4.173316 1103.4542
+229957.0687232064 4.1732373 1103.2963
+229958.0687233107 4.1733556 1103.4542
+229959.068723415 4.1733952 1103.3752
+229960.0687235193 4.1732769 1103.4542
+229961.0687236236 4.1734343 1103.4147
+229962.0687237279 4.1733952 1103.4147
+229963.0687238323 4.1734343 1103.3949
+229964.0687239366 4.1734343 1103.3949
+229965.0687240409 4.1735129 1103.316
+229966.0687241452 4.1735129 1103.316
+229967.0687242495 4.1733952 1103.3555
+229968.0687243538 4.1735525 1103.316
+229969.0687244581 4.1735525 1103.4147
+229970.0687245624 4.1735525 1103.316
+229971.0687246667 4.1736312 1103.3752
+229972.068724771 4.1736312 1103.4344
+229973.0687248753 4.1736312 1103.3555
+229974.0687249796 4.1735916 1103.316
+229975.068725084 4.1737099 1103.474
+229976.0687251883 4.1736312 1103.3752
+229977.0687252926 4.1737494 1103.3949
+229978.0687253969 4.1737494 1103.4344
+229979.0687255012 4.1736703 1103.3752
+229980.0687256055 4.1737494 1103.4147
+229981.0687257098 4.1737494 1103.3555
+229982.0687258141 4.1737885 1103.3752
+229983.0687259184 4.1737494 1103.4344
+229984.0687260227 4.1738281 1103.3555
+229985.068726127 4.1738281 1103.3752
+229986.0687262313 4.1739459 1103.3357
+229987.0687263357 4.1739459 1103.3949
+229988.06872644 4.1739855 1103.3555
+229989.0687265443 4.1740251 1103.3949
+229990.0687266486 4.1739855 1103.3357
+229991.0687267529 4.1740642 1103.3949
+229992.0687268572 4.1740251 1103.474
+229993.0687269615 4.1741037 1103.3555
+229994.0687270658 4.1739459 1103.4542
+229995.0687271701 4.1740251 1103.4542
+229996.0687272744 4.1741037 1103.3752
+229997.0687273787 4.1742215 1103.4542
+229998.068727483 4.1741824 1103.3752
+229999.0687275874 4.1741824 1103.4344
+230000.0687276917 4.1742215 1103.4147
+230001.068727796 4.1741037 1103.3555
+230002.0687279003 4.1742215 1103.3949
+230003.0687280046 4.1742215 1103.3752
+230004.0687281089 4.1742611 1103.4344
+230005.0687282132 4.1742215 1103.3752
+230006.0687283175 4.1742215 1103.3555
+230007.0687284218 4.1743002 1103.474
+230008.0687285261 4.1743398 1103.3949
+230009.0687286304 4.1743002 1103.3357
+230010.0687287347 4.174458 1103.3555
+230011.068728839 4.1743398 1103.3752
+230012.0687289434 4.174458 1103.4344
+230013.0687290477 4.1744971 1103.2963
+230014.068729152 4.1744184 1103.3949
+230015.0687292563 4.1745367 1103.3949
+230016.0687293606 4.1744971 1103.3752
+230017.0687294649 4.1744971 1103.3357
+230018.0687295692 4.1746154 1103.3752
+230019.0687296735 4.1745367 1103.3752
+230020.0687297778 4.1746154 1103.3555
+230021.0687298821 4.1746154 1103.3357
+230022.0687299864 4.1745758 1103.3752
+230023.0687300907 4.1747336 1103.4147
+230024.0687301951 4.174655 1103.3949
+230025.0687302994 4.1746941 1103.4344
+230026.0687304037 4.1747727 1103.3555
+230027.068730508 4.1747336 1103.4344
+230028.0687306123 4.1747336 1103.4542
+230029.0687307166 4.1747727 1103.3357
+230030.0687308209 4.174891 1103.2963
+230031.0687309252 4.1748514 1103.3357
+230032.0687310295 4.1748514 1103.5134
+230033.0687311338 4.1748123 1103.3357
+230034.0687312381 4.1749306 1103.3949
+230035.0687313424 4.1749697 1103.3555
+230036.0687314468 4.1750484 1103.4344
+230037.0687315511 4.1749697 1103.3949
+230038.0687316554 4.1750093 1103.316
+230039.0687317597 4.174891 1103.474
+230040.068731864 4.1750484 1103.3949
+230041.0687319683 4.175127 1103.3555
+230042.0687320726 4.175127 1103.316
+230043.0687321769 4.1750879 1103.4147
+230044.0687322812 4.1750093 1103.4542
+230045.0687323855 4.175127 1103.3752
+230046.0687324898 4.175127 1103.4147
+230047.0687325941 4.1751666 1103.4542
+230048.0687326984 4.1752453 1103.3752
+230049.0687328028 4.1751666 1103.2963
+230050.0687329071 4.1753635 1103.316
+230051.0687330114 4.1752453 1103.4147
+230052.0687331157 4.1753635 1103.3752
+230053.06873322 4.1753635 1103.2963
+230054.0687333243 4.1752849 1103.3555
+230055.0687334286 4.1753635 1103.3357
+230056.0687335329 4.1752849 1103.2963
+230057.0687336372 4.1754422 1103.4147
+230058.0687337415 4.1753635 1103.4542
+230059.0687338458 4.1754813 1103.3555
+230060.0687339501 4.1754813 1103.3752
+230061.0687340545 4.1754813 1103.4147
+230062.0687341588 4.1755605 1103.4147
+230063.0687342631 4.1755605 1103.3555
+230064.0687343674 4.1754422 1103.3752
+230065.0687344717 4.1755996 1103.3949
+230066.068734576 4.1754422 1103.3555
+230067.0687346803 4.1755605 1103.4147
+230068.0687347846 4.1756783 1103.3357
+230069.0687348889 4.1755605 1103.316
+230070.0687349932 4.1756783 1103.2963
+230071.0687350975 4.1756783 1103.4147
+230072.0687352018 4.1757965 1103.3752
+230073.0687353062 4.1756783 1103.3357
+230074.0687354105 4.1756783 1103.4147
+230075.0687355148 4.1757965 1103.4344
+230076.0687356191 4.1756783 1103.3752
+230077.0687357234 4.1757569 1103.4344
+230078.0687358277 4.1759539 1103.4147
+230079.068735932 4.1759148 1103.3949
+230080.0687360363 4.1759539 1103.4147
+230081.0687361406 4.1759148 1103.3752
+230082.0687362449 4.1758356 1103.3357
+230083.0687363492 4.1760325 1103.474
+230084.0687364535 4.1758752 1103.3752
+230085.0687365578 4.1759934 1103.4344
+230086.0687366622 4.1759539 1103.316
+230087.0687367665 4.1759934 1103.3949
+230088.0687368708 4.1760325 1103.3555
+230089.0687369751 4.1760325 1103.3357
+230090.0687370794 4.1759539 1103.4147
+230091.0687371837 4.1760721 1103.4147
+230092.068737288 4.1761508 1103.3949
+230093.0687373923 4.1761904 1103.3555
+230094.0687374966 4.1762295 1103.4938
+230095.0687376009 4.1761508 1103.3357
+230096.0687377052 4.1762295 1103.3949
+230097.0687378095 4.1761904 1103.4542
+230098.0687379139 4.1761508 1103.4147
+230099.0687380182 4.1762691 1103.5134
+230100.0687381225 4.1762691 1103.3357
+230101.0687382268 4.1763082 1103.3752
+230102.0687383311 4.1764264 1103.3555
+230103.0687384354 4.1761904 1103.3357
+230104.0687385397 4.1762691 1103.3555
+230105.068738644 4.1764264 1103.3752
+230106.0687387483 4.1763868 1103.3752
+230107.0687388526 4.176466 1103.316
+230108.0687389569 4.1764264 1103.3949
+230109.0687390612 4.1764264 1103.4147
+230110.0687391656 4.1765447 1103.3752
+230111.0687392699 4.1765838 1103.2567
+230112.0687393742 4.1765051 1103.4147
+230113.0687394785 4.1764264 1103.3949
+230114.0687395828 4.176702 1103.3752
+230115.0687396871 4.1765838 1103.3555
+230116.0687397914 4.1766233 1103.4938
+230117.0687398957 4.176702 1103.3752
+230118.06874 4.1766624 1103.4147
+230119.0687401043 4.1765447 1103.4542
+230120.0687402086 4.1767411 1103.316
+230121.0687403129 4.1766624 1103.4542
+230122.0687404173 4.1767807 1103.4344
+230123.0687405216 4.1768594 1103.3752
+230124.0687406259 4.176899 1103.316
+230125.0687407302 4.1768203 1103.4344
+230126.0687408345 4.176899 1103.4344
+230127.0687409388 4.1768203 1103.3949
+230128.0687410431 4.1768594 1103.2963
+230129.0687411474 4.176899 1103.3949
+230130.0687412517 4.176899 1103.2369
+230131.068741356 4.1769776 1103.3752
+230132.0687414603 4.176899 1103.4147
+230133.0687415646 4.1769381 1103.3555
+230134.0687416689 4.1770167 1103.3555
+230135.0687417733 4.1770563 1103.3949
+230136.0687418776 4.1770959 1103.3555
+230137.0687419819 4.1769776 1103.4147
+230138.0687420862 4.1770563 1103.3949
+230139.0687421905 4.177135 1103.3357
+230140.0687422948 4.177135 1103.3357
+230141.0687423991 4.1772137 1103.4147
+230142.0687425034 4.1772137 1103.3752
+230143.0687426077 4.177135 1103.3555
+230144.068742712 4.1773319 1103.3752
+230145.0687428163 4.1772137 1103.474
+230146.0687429206 4.1773319 1103.3752
+230147.068743025 4.1772923 1103.3752
+230148.0687431293 4.1772923 1103.3949
+230149.0687432336 4.1772923 1103.4147
+230150.0687433379 4.177371 1103.3949
+230151.0687434422 4.1774106 1103.3555
+230152.0687435465 4.1774893 1103.316
+230153.0687436508 4.1774106 1103.4542
+230154.0687437551 4.1774502 1103.3357
+230155.0687438594 4.1774502 1103.316
+230156.0687439637 4.1774502 1103.3357
+230157.068744068 4.1774893 1103.3949
+230158.0687441723 4.177568 1103.3555
+230159.0687442767 4.177568 1103.3949
+230160.068744381 4.1776075 1103.3357
+230161.0687444853 4.1776466 1103.3949
+230162.0687445896 4.1776075 1103.3555
+230163.0687446939 4.1776466 1103.3555
+230164.0687447982 4.1776466 1103.3752
+230165.0687449025 4.1776466 1103.4542
+230166.0687450068 4.1777649 1103.3949
+230167.0687451111 4.1778045 1103.316
+230168.0687452154 4.1776466 1103.4938
+230169.0687453197 4.1778436 1103.3555
+230170.068745424 4.1778831 1103.4147
+230171.0687455283 4.1778436 1103.316
+230172.0687456327 4.1778045 1103.3555
+230173.068745737 4.1779222 1103.3752
+230174.0687458413 4.1777649 1103.3752
+230175.0687459456 4.1779222 1103.3752
+230176.0687460499 4.1778831 1103.3949
+230177.0687461542 4.1778831 1103.3949
+230178.0687462585 4.1778436 1103.3752
+230179.0687463628 4.1779222 1103.4938
+230180.0687464671 4.1780009 1103.474
+230181.0687465714 4.1780009 1103.4344
+230182.0687466757 4.1780801 1103.3357
+230183.06874678 4.1780405 1103.316
+230184.0687468844 4.1781979 1103.4147
+230185.0687469887 4.1781979 1103.4344
+230186.068747093 4.1782374 1103.3357
+230187.0687471973 4.1782374 1103.316
+230188.0687473016 4.1781979 1103.3949
+230189.0687474059 4.1782374 1103.3555
+230190.0687475102 4.1783161 1103.3555
+230191.0687476145 4.1783161 1103.3555
+230192.0687477188 4.1781979 1103.4542
+230193.0687478231 4.1783161 1103.3949
+230194.0687479274 4.1783161 1103.3555
+230195.0687480317 4.1783557 1103.4147
+230196.0687481361 4.1783161 1103.4542
+230197.0687482404 4.1783948 1103.3949
+230198.0687483447 4.1784735 1103.3555
+230199.068748449 4.1783948 1103.4344
+230200.0687485533 4.1785917 1103.3752
+230201.0687486576 4.1783948 1103.3752
+230202.0687487619 4.1785522 1103.3357
+230203.0687488662 4.1785522 1103.3949
+230204.0687489705 4.1786313 1103.3949
+230205.0687490748 4.1785522 1103.3949
+230206.0687491791 4.1785917 1103.3752
+230207.0687492834 4.1785917 1103.4147
+230208.0687493877 4.1786313 1103.4147
+230209.0687494921 4.17871 1103.4542
+230210.0687495964 4.1786704 1103.3357
+230211.0687497007 4.1787491 1103.3949
+230212.068749805 4.1787491 1103.3949
+230213.0687499093 4.1787491 1103.3949
+230214.0687500136 4.1786704 1103.4147
+230215.0687501179 4.1785917 1103.316
+230216.0687502222 4.1787887 1103.3949
+230217.0687503265 4.17871 1103.3949
+230218.0687504308 4.178946 1103.3357
+230219.0687505351 4.1788673 1103.3357
+230220.0687506394 4.1788673 1103.4344
+230221.0687507438 4.1789064 1103.4344
+230222.0687508481 4.1789064 1103.4147
+230223.0687509524 4.1789856 1103.3752
+230224.0687510567 4.1789856 1103.3949
+230225.068751161 4.178946 1103.3357
+230226.0687512653 4.1790247 1103.2963
+230227.0687513696 4.1789064 1103.3752
+230228.0687514739 4.1791034 1103.3357
+230229.0687515782 4.1790643 1103.3555
+230230.0687516825 4.1791821 1103.2963
+230231.0687517868 4.1792612 1103.4147
+230232.0687518911 4.1791821 1103.3555
+230233.0687519955 4.1791821 1103.3949
+230234.0687520998 4.1791034 1103.3555
+230235.0687522041 4.1791821 1103.3357
+230236.0687523084 4.1791821 1103.3949
+230237.0687524127 4.1793003 1103.3752
+230238.068752517 4.1793003 1103.4147
+230239.0687526213 4.1793399 1103.3357
+230240.0687527256 4.1793399 1103.2963
+230241.0687528299 4.1793399 1103.4344
+230242.0687529342 4.1794186 1103.5134
+230243.0687530385 4.1794577 1103.3752
+230244.0687531428 4.1793399 1103.4344
+230245.0687532471 4.1794186 1103.4147
+230246.0687533515 4.1794577 1103.4344
+230247.0687534558 4.1795363 1103.3555
+230248.0687535601 4.1795363 1103.3752
+230249.0687536644 4.1796155 1103.4542
+230250.0687537687 4.1794972 1103.5332
+230251.068753873 4.1794972 1103.4344
+230252.0687539773 4.1796546 1103.4344
+230253.0687540816 4.1795759 1103.4147
+230254.0687541859 4.1796546 1103.3752
+230255.0687542902 4.1797333 1103.4542
+230256.0687543945 4.1797333 1103.4344
+230257.0687544988 4.1796546 1103.3752
+230258.0687546032 4.1796546 1103.2963
+230259.0687547075 4.1797333 1103.3949
+230260.0687548118 4.1798515 1103.5134
+230261.0687549161 4.1798515 1103.4344
+230262.0687550204 4.1799302 1103.4147
+230263.0687551247 4.1798515 1103.4344
+230264.068755229 4.179812 1103.4147
+230265.0687553333 4.1799302 1103.3752
+230266.0687554376 4.1798515 1103.4542
+230267.0687555419 4.1798911 1103.4147
+230268.0687556462 4.1800089 1103.3949
+230269.0687557505 4.1800485 1103.4344
+230270.0687558549 4.1800089 1103.4542
+230271.0687559592 4.1800089 1103.4542
+230272.0687560635 4.1800089 1103.4344
+230273.0687561678 4.1801271 1103.4938
+230274.0687562721 4.1800485 1103.4344
+230275.0687563764 4.1801271 1103.3949
+230276.0687564807 4.1801271 1103.3949
+230277.068756585 4.1802058 1103.4542
+230278.0687566893 4.1802845 1103.4344
+230279.0687567936 4.1802845 1103.3357
+230280.0687568979 4.1802058 1103.4938
+230281.0687570022 4.1802845 1103.3752
+230282.0687571066 4.1802845 1103.3752
+230283.0687572109 4.1803241 1103.4542
+230284.0687573152 4.1803632 1103.5332
+230285.0687574195 4.1803632 1103.3357
+230286.0687575238 4.1803632 1103.4147
+230287.0687576281 4.1803241 1103.4147
+230288.0687577324 4.1804028 1103.4542
+230289.0687578367 4.180521 1103.3949
+230290.068757941 4.1804419 1103.4344
+230291.0687580453 4.1804814 1103.4344
+230292.0687581496 4.1805601 1103.3949
+230293.0687582539 4.1805601 1103.5332
+230294.0687583582 4.1805601 1103.4147
+230295.0687584626 4.1804814 1103.4542
+230296.0687585669 4.1805601 1103.3949
+230297.0687586712 4.1805601 1103.3752
+230298.0687587755 4.1806388 1103.3555
+230299.0687588798 4.1807175 1103.4344
+230300.0687589841 4.180757 1103.474
+230301.0687590884 4.180757 1103.474
+230302.0687591927 4.180757 1103.4344
+230303.068759297 4.1807175 1103.4344
+230304.0687594013 4.1808753 1103.4542
+230305.0687595056 4.1806784 1103.3555
+230306.0687596099 4.1808357 1103.3752
+230307.0687597143 4.1808357 1103.3949
+230308.0687598186 4.1808753 1103.4938
+230309.0687599229 4.180954 1103.3949
+230310.0687600272 4.1808753 1103.4542
+230311.0687601315 4.1808753 1103.4938
+230312.0687602358 4.1808753 1103.474
+230313.0687603401 4.1810718 1103.4147
+230314.0687604444 4.1809931 1103.4344
+230315.0687605487 4.1810718 1103.3752
+230316.068760653 4.1812296 1103.316
+230317.0687607573 4.1810718 1103.3555
+230318.0687608616 4.1810718 1103.3752
+230319.068760966 4.1811113 1103.4147
+230320.0687610703 4.18119 1103.3357
+230321.0687611746 4.1811113 1103.3752
+230322.0687612789 4.18119 1103.4938
+230323.0687613832 4.18119 1103.3752
+230324.0687614875 4.18119 1103.4147
+230325.0687615918 4.1812296 1103.474
+230326.0687616961 4.1813083 1103.3949
+230327.0687618004 4.1812687 1103.3949
+230328.0687619047 4.1813083 1103.3357
+230329.068762009 4.1813474 1103.4344
+230330.0687621133 4.1812687 1103.4542
+230331.0687622176 4.1814265 1103.316
+230332.068762322 4.1814656 1103.4147
+230333.0687624263 4.1814265 1103.4542
+230334.0687625306 4.1814656 1103.474
+230335.0687626349 4.1814656 1103.3949
+230336.0687627392 4.1815443 1103.3949
+230337.0687628435 4.1815443 1103.316
+230338.0687629478 4.1815443 1103.4147
+230339.0687630521 4.1815052 1103.3555
+230340.0687631564 4.1815443 1103.3752
+230341.0687632607 4.1817412 1103.3357
+230342.068763365 4.1817017 1103.3555
+230343.0687634693 4.181623 1103.3949
+230344.0687635737 4.1817017 1103.3949
+230345.068763678 4.1817017 1103.3555
+230346.0687637823 4.1817808 1103.3949
+230347.0687638866 4.1817017 1103.316
+230348.0687639909 4.1818199 1103.4147
+230349.0687640952 4.1818199 1103.4344
+230350.0687641995 4.1818595 1103.3555
+230351.0687643038 4.1818199 1103.3555
+230352.0687644081 4.1818199 1103.4147
+230353.0687645124 4.1819382 1103.4147
+230354.0687646167 4.1819382 1103.3555
+230355.068764721 4.1819773 1103.3949
+230356.0687648254 4.1819773 1103.3949
+230357.0687649297 4.1820564 1103.3752
+230358.068765034 4.1820168 1103.3949
+230359.0687651383 4.1820955 1103.3555
+230360.0687652426 4.1820955 1103.3555
+230361.0687653469 4.1820955 1103.3752
+230362.0687654512 4.1820564 1103.3752
+230363.0687655555 4.1821351 1103.316
+230364.0687656598 4.1821351 1103.316
+230365.0687657641 4.1822138 1103.4542
+230366.0687658684 4.182332 1103.3555
+230367.0687659727 4.1822529 1103.3949
+230368.068766077 4.182332 1103.3555
+230369.0687661814 4.182332 1103.3357
+230370.0687662857 4.1824107 1103.3949
+230371.06876639 4.1822138 1103.3555
+230372.0687664943 4.1823711 1103.3752
+230373.0687665986 4.1822925 1103.3949
+230374.0687667029 4.1823711 1103.4542
+230375.0687668072 4.182332 1103.3949
+230376.0687669115 4.1823711 1103.4147
+230377.0687670158 4.1824894 1103.3752
+230378.0687671201 4.1824894 1103.3555
+230379.0687672244 4.1825681 1103.3357
+230380.0687673287 4.1825681 1103.3752
+230381.0687674331 4.1824894 1103.3752
+230382.0687675374 4.1826072 1103.3555
+230383.0687676417 4.1825681 1103.2963
+230384.068767746 4.1825285 1103.4344
+230385.0687678503 4.1826468 1103.4147
+230386.0687679546 4.1827254 1103.4147
+230387.0687680589 4.1826863 1103.4147
+230388.0687681632 4.1827254 1103.3949
+230389.0687682675 4.1827254 1103.4542
+230390.0687683718 4.1826863 1103.4147
+230391.0687684761 4.1828041 1103.4147
+230392.0687685804 4.1828828 1103.3357
+230393.0687686848 4.1828828 1103.4542
+230394.0687687891 4.1828041 1103.3949
+230395.0687688934 4.1828041 1103.3357
+230396.0687689977 4.1829224 1103.3357
+230397.068769102 4.1828828 1103.3357
+230398.0687692063 4.1829224 1103.3752
+230399.0687693106 4.183001 1103.5332
+230400.0687694149 4.1830406 1103.4344
+230401.0687695192 4.183001 1103.4147
+230402.0687696235 4.1830406 1103.3949
+230403.0687697278 4.1830797 1103.3752
+230404.0687698321 4.1830797 1103.4344
+230405.0687699365 4.1830797 1103.4542
+230406.0687700408 4.183198 1103.3555
+230407.0687701451 4.183198 1103.4542
+230408.0687702494 4.1832371 1103.3752
+230409.0687703537 4.1832371 1103.3357
+230410.068770458 4.1832767 1103.4147
+230411.0687705623 4.1832371 1103.4344
+230412.0687706666 4.1832767 1103.4147
+230413.0687707709 4.1832767 1103.2369
+230414.0687708752 4.1831584 1103.4147
+230415.0687709795 4.1833162 1103.3555
+230416.0687710838 4.1833949 1103.4147
+230417.0687711881 4.1833162 1103.316
+230418.0687712925 4.1833949 1103.4542
+230419.0687713968 4.1833949 1103.3752
+230420.0687715011 4.1833949 1103.3949
+230421.0687716054 4.183434 1103.4147
+230422.0687717097 4.1834736 1103.4147
+230423.068771814 4.1835918 1103.3555
+230424.0687719183 4.1835918 1103.4147
+230425.0687720226 4.1835127 1103.3357
+230426.0687721269 4.1835918 1103.3357
+230427.0687722312 4.1836309 1103.3555
+230428.0687723355 4.1837492 1103.3949
+230429.0687724398 4.1836309 1103.3555
+230430.0687725442 4.1836705 1103.4147
+230431.0687726485 4.1836705 1103.3949
+230432.0687727528 4.1837096 1103.316
+230433.0687728571 4.1837883 1103.3357
+230434.0687729614 4.1838279 1103.4344
+230435.0687730657 4.1837883 1103.4147
+230436.06877317 4.1837883 1103.3357
+230437.0687732743 4.1838675 1103.3949
+230438.0687733786 4.1838279 1103.3555
+230439.0687734829 4.1839461 1103.4344
+230440.0687735872 4.1839066 1103.3555
+230441.0687736915 4.1839461 1103.3949
+230442.0687737959 4.1839461 1103.4344
+230443.0687739002 4.1840248 1103.3949
+230444.0687740045 4.1838675 1103.4147
+230445.0687741088 4.1840248 1103.474
+230446.0687742131 4.1840248 1103.4147
+230447.0687743174 4.1840639 1103.4147
+230448.0687744217 4.1841035 1103.4147
+230449.068774526 4.1841426 1103.4147
+230450.0687746303 4.1841822 1103.316
+230451.0687747346 4.1841426 1103.3555
+230452.0687748389 4.1841426 1103.474
+230453.0687749432 4.1843004 1103.3949
+230454.0687750475 4.1843004 1103.3555
+230455.0687751519 4.1843791 1103.3752
+230456.0687752562 4.1842608 1103.3949
+230457.0687753605 4.1843395 1103.3357
+230458.0687754648 4.1843791 1103.3555
+230459.0687755691 4.1842608 1103.4147
+230460.0687756734 4.1843395 1103.4147
+230461.0687757777 4.1844974 1103.3949
+230462.068775882 4.1844578 1103.2963
+230463.0687759863 4.1844578 1103.5332
+230464.0687760906 4.1844974 1103.4147
+230465.0687761949 4.1845365 1103.3752
+230466.0687762992 4.1844578 1103.3949
+230467.0687764036 4.1846151 1103.3752
+230468.0687765079 4.1846151 1103.316
+230469.0687766122 4.1846547 1103.4147
+230470.0687767165 4.1846151 1103.4147
+230471.0687768208 4.1846938 1103.4542
+230472.0687769251 4.1847334 1103.316
+230473.0687770294 4.1846938 1103.316
+230474.0687771337 4.1846547 1103.4147
+230475.068777238 4.1848121 1103.4147
+230476.0687773423 4.1846547 1103.4147
+230477.0687774466 4.1848516 1103.3949
+230478.0687775509 4.1848121 1103.3555
+230479.0687776553 4.1848907 1103.4344
+230480.0687777596 4.1848516 1103.316
+230481.0687778639 4.1848121 1103.3949
+230482.0687779682 4.1848516 1103.3949
+230483.0687780725 4.1849303 1103.3949
+230484.0687781768 4.1849694 1103.3357
+230485.0687782811 4.1849694 1103.474
+230486.0687783854 4.1850481 1103.474
+230487.0687784897 4.1850877 1103.3752
+230488.068778594 4.1851273 1103.3752
+230489.0687786983 4.1850877 1103.3949
+230490.0687788026 4.1851273 1103.3752
+230491.0687789069 4.1850877 1103.3555
+230492.0687790113 4.1851664 1103.3357
+230493.0687791156 4.1852059 1103.3555
+230494.0687792199 4.185245 1103.4344
+230495.0687793242 4.185245 1103.3752
+230496.0687794285 4.1853237 1103.4344
+230497.0687795328 4.1853237 1103.4147
+230498.0687796371 4.1852846 1103.3357
+230499.0687797414 4.1853633 1103.2567
+230500.0687798457 4.1853633 1103.4344
+230501.06877995 4.1854029 1103.2567
+230502.0687800543 4.185442 1103.3949
+230503.0687801586 4.1854815 1103.3752
+230504.068780263 4.185442 1103.3555
+230505.0687803673 4.185442 1103.4147
+230506.0687804716 4.1855602 1103.3555
+230507.0687805759 4.1855206 1103.3752
+230508.0687806802 4.1855602 1103.2963
+230509.0687807845 4.1855602 1103.3949
+230510.0687808888 4.185678 1103.3555
+230511.0687809931 4.1857176 1103.316
+230512.0687810974 4.1856389 1103.4147
+230513.0687812017 4.1856389 1103.3949
+230514.068781306 4.1855602 1103.4147
+230515.0687814103 4.185678 1103.3752
+230516.0687815147 4.1857963 1103.3949
+230517.068781619 4.1857176 1103.3357
+230518.0687817233 4.1857572 1103.3752
+230519.0687818276 4.1857963 1103.3752
+230520.0687819319 4.1857572 1103.4542
+230521.0687820362 4.1858358 1103.316
+230522.0687821405 4.1858749 1103.3949
+230523.0687822448 4.1860328 1103.4147
+230524.0687823491 4.1859536 1103.3949
+230525.0687824534 4.1859145 1103.3752
+230526.0687825577 4.1859536 1103.3357
+230527.068782662 4.1860328 1103.4147
+230528.0687827664 4.1860328 1103.316
+230529.0687828707 4.1860719 1103.3555
+230530.068782975 4.1860328 1103.4344
+230531.0687830793 4.1861115 1103.4344
+230532.0687831836 4.1862292 1103.3949
+230533.0687832879 4.1861506 1103.3357
+230534.0687833922 4.1861115 1103.4147
+230535.0687834965 4.1862688 1103.3357
+230536.0687836008 4.1861901 1103.4147
+230537.0687837051 4.1861901 1103.3752
+230538.0687838094 4.1862688 1103.3752
+230539.0687839137 4.1863475 1103.3357
+230540.068784018 4.1862292 1103.4147
+230541.0687841224 4.1863475 1103.3752
+230542.0687842267 4.1863871 1103.3949
+230543.068784331 4.1864262 1103.3357
+230544.0687844353 4.1863871 1103.3357
+230545.0687845396 4.1864657 1103.4344
+230546.0687846439 4.1865048 1103.3949
+230547.0687847482 4.1865048 1103.316
+230548.0687848525 4.1865048 1103.3357
+230549.0687849568 4.1865048 1103.316
+230550.0687850611 4.1865835 1103.316
+230551.0687851654 4.1866231 1103.4938
+230552.0687852697 4.1866231 1103.3949
+230553.0687853741 4.1866627 1103.3752
+230554.0687854784 4.1867414 1103.474
+230555.0687855827 4.1865835 1103.2963
+230556.068785687 4.1867414 1103.2963
+230557.0687857913 4.1867805 1103.4147
+230558.0687858956 4.1867805 1103.3357
+230559.0687859999 4.18682 1103.3949
+230560.0687861042 4.1868987 1103.4147
+230561.0687862085 4.1868987 1103.3752
+230562.0687863128 4.18682 1103.3555
+230563.0687864171 4.1868987 1103.3357
+230564.0687865214 4.1868591 1103.3555
+230565.0687866258 4.1868591 1103.3949
+230566.0687867301 4.1869774 1103.3555
+230567.0687868344 4.1870561 1103.4147
+230568.0687869387 4.187017 1103.3752
+230569.068787043 4.1869774 1103.3949
+230570.0687871473 4.1870561 1103.4147
+230571.0687872516 4.1869774 1103.3949
+230572.0687873559 4.1871347 1103.3752
+230573.0687874602 4.1871347 1103.4344
+230574.0687875645 4.1871743 1103.4147
+230575.0687876688 4.1871743 1103.4147
+230576.0687877731 4.1871347 1103.3357
+230577.0687878774 4.1872134 1103.3357
+230578.0687879818 4.187253 1103.3752
+230579.0687880861 4.1872134 1103.3752
+230580.0687881904 4.1872926 1103.3555
+230581.0687882947 4.1873713 1103.4147
+230582.068788399 4.1874104 1103.3949
+230583.0687885033 4.187489 1103.316
+230584.0687886076 4.1872926 1103.3949
+230585.0687887119 4.187489 1103.4344
+230586.0687888162 4.187489 1103.4344
+230587.0687889205 4.1873713 1103.4147
+230588.0687890248 4.1874104 1103.3949
+230589.0687891291 4.187489 1103.3752
+230590.0687892335 4.1876469 1103.3555
+230591.0687893378 4.1875682 1103.3949
+230592.0687894421 4.1876469 1103.2963
+230593.0687895464 4.1876469 1103.3949
+230594.0687896507 4.187686 1103.3357
+230595.068789755 4.187686 1103.3555
+230596.0687898593 4.187686 1103.4344
+230597.0687899636 4.1878042 1103.4344
+230598.0687900679 4.1878042 1103.3555
+230599.0687901722 4.1878042 1103.3949
+230600.0687902765 4.1878829 1103.3555
+230601.0687903808 4.1878829 1103.4344
+230602.0687904852 4.1878042 1103.2963
+230603.0687905895 4.1878829 1103.2963
+230604.0687906938 4.1878433 1103.3555
+230605.0687907981 4.1878433 1103.4147
+230606.0687909024 4.1879225 1103.4147
+230607.0687910067 4.1879616 1103.2765
+230608.068791111 4.1880403 1103.4147
+230609.0687912153 4.1880798 1103.4147
+230610.0687913196 4.1881189 1103.4147
+230611.0687914239 4.1880403 1103.3555
+230612.0687915282 4.1881189 1103.3555
+230613.0687916325 4.1881981 1103.3949
+230614.0687917368 4.1881189 1103.3949
+230615.0687918412 4.1881585 1103.4344
+230616.0687919455 4.1882372 1103.4344
+230617.0687920498 4.1882372 1103.3357
+230618.0687921541 4.1881189 1103.3357
+230619.0687922584 4.1882768 1103.3555
+230620.0687923627 4.1884341 1103.3752
+230621.068792467 4.1883945 1103.4147
+230622.0687925713 4.1883554 1103.3555
+230623.0687926756 4.1883554 1103.3949
+230624.0687927799 4.1883554 1103.316
+230625.0687928842 4.1883554 1103.3555
+230626.0687929885 4.1883945 1103.316
+230627.0687930929 4.1885128 1103.4147
+230628.0687931972 4.1883945 1103.3357
+230629.0687933015 4.1885128 1103.4147
+230630.0687934058 4.1885524 1103.3752
+230631.0687935101 4.1885915 1103.3752
+230632.0687936144 4.1885915 1103.4542
+230633.0687937187 4.1886311 1103.2765
+230634.068793823 4.1885915 1103.316
+230635.0687939273 4.1886702 1103.3357
+230636.0687940316 4.1887884 1103.316
+230637.0687941359 4.1887488 1103.4344
+230638.0687942402 4.1887488 1103.474
+230639.0687943446 4.1887488 1103.4344
+230640.0687944489 4.188828 1103.3357
+230641.0687945532 4.188828 1103.3357
+230642.0687946575 4.188828 1103.3555
+230643.0687947618 4.1889067 1103.3752
+230644.0687948661 4.1889067 1103.3752
+230645.0687949704 4.1888671 1103.4542
+230646.0687950747 4.1889458 1103.3949
+230647.068795179 4.1889853 1103.3752
+230648.0687952833 4.1889853 1103.3752
+230649.0687953876 4.1890244 1103.3752
+230650.0687954919 4.189064 1103.3555
+230651.0687955962 4.1891427 1103.4344
+230652.0687957006 4.1891036 1103.3752
+230653.0687958049 4.1891036 1103.4147
+230654.0687959092 4.1891036 1103.4542
+230655.0687960135 4.1891823 1103.3555
+230656.0687961178 4.189261 1103.4344
+230657.0687962221 4.189261 1103.3555
+230658.0687963264 4.1891427 1103.3752
+230659.0687964307 4.1894183 1103.4147
+230660.068796535 4.1893001 1103.3949
+230661.0687966393 4.1894183 1103.316
+230662.0687967436 4.1893787 1103.2765
+230663.0687968479 4.1894183 1103.316
+230664.0687969523 4.189497 1103.3949
+230665.0687970566 4.189497 1103.4344
+230666.0687971609 4.1893787 1103.3357
+230667.0687972652 4.1894183 1103.474
+230668.0687973695 4.1895366 1103.3357
+230669.0687974738 4.1896152 1103.4938
+230670.0687975781 4.1895757 1103.3949
+230671.0687976824 4.1894183 1103.4344
+230672.0687977867 4.1895757 1103.474
+230673.068797891 4.1896939 1103.3949
+230674.0687979953 4.1896544 1103.3949
+230675.0687980996 4.1896544 1103.3752
+230676.068798204 4.1897726 1103.3752
+230677.0687983083 4.1897335 1103.2963
+230678.0687984126 4.1897726 1103.3949
+230679.0687985169 4.1897726 1103.4344
+230680.0687986212 4.1898122 1103.474
+230681.0687987255 4.1897335 1103.3752
+230682.0687988298 4.1898909 1103.3752
+230683.0687989341 4.1898909 1103.2963
+230684.0687990384 4.1898909 1103.3752
+230685.0687991427 4.1898909 1103.3357
+230686.068799247 4.1900878 1103.4542
+230687.0687993513 4.1900086 1103.474
+230688.0687994557 4.1900482 1103.3949
+230689.06879956 4.1900086 1103.2963
+230690.0687996643 4.1900482 1103.4938
+230691.0687997686 4.1901269 1103.4344
+230692.0687998729 4.1902056 1103.3357
+230693.0687999772 4.1901269 1103.3752
+230694.0688000815 4.1902056 1103.3752
+230695.0688001858 4.1902452 1103.4147
+230696.0688002901 4.1902056 1103.474
+230697.0688003944 4.1901269 1103.4344
+230698.0688004987 4.1903238 1103.474
+230699.068800603 4.1901665 1103.3752
+230700.0688007073 4.1902452 1103.5332
+230701.0688008117 4.1902843 1103.5134
+230702.068800916 4.1903238 1103.3949
+230703.0688010203 4.1902843 1103.316
+230704.0688011246 4.1904421 1103.4147
+230705.0688012289 4.1904812 1103.3949
+230706.0688013332 4.1904812 1103.3949
+230707.0688014375 4.1904812 1103.3357
+230708.0688015418 4.1905208 1103.3752
+230709.0688016461 4.1904421 1103.316
+230710.0688017504 4.1905599 1103.3949
+230711.0688018547 4.1905208 1103.3949
+230712.068801959 4.1906385 1103.3752
+230713.0688020634 4.1905994 1103.3752
+230714.0688021677 4.1906781 1103.3555
+230715.068802272 4.1907964 1103.3555
+230716.0688023763 4.1906781 1103.4344
+230717.0688024806 4.1907177 1103.3357
+230718.0688025849 4.1907177 1103.4147
+230719.0688026892 4.1907964 1103.3555
+230720.0688027935 4.1908355 1103.3555
+230721.0688028978 4.1908751 1103.4542
+230722.0688030021 4.1907964 1103.3949
+230723.0688031064 4.1909142 1103.3949
+230724.0688032107 4.1909537 1103.474
+230725.0688033151 4.1908751 1103.4147
+230726.0688034194 4.191072 1103.4147
+230727.0688035237 4.1910324 1103.4147
+230728.068803628 4.1910324 1103.3949
+230729.0688037323 4.1911111 1103.3752
+230730.0688038366 4.1909933 1103.5134
+230731.0688039409 4.1910324 1103.3555
+230732.0688040452 4.1911898 1103.3555
+230733.0688041495 4.1911507 1103.3949
+230734.0688042538 4.1911111 1103.4147
+230735.0688043581 4.1911898 1103.3752
+230736.0688044624 4.1911898 1103.4344
+230737.0688045667 4.1912293 1103.3949
+230738.0688046711 4.1912293 1103.4147
+230739.0688047754 4.191308 1103.316
+230740.0688048797 4.1913476 1103.3949
+230741.068804984 4.191308 1103.3555
+230742.0688050883 4.1913476 1103.3949
+230743.0688051926 4.1914654 1103.3752
+230744.0688052969 4.1914654 1103.3357
+230745.0688054012 4.191505 1103.3752
+230746.0688055055 4.1914654 1103.3555
+230747.0688056098 4.1914654 1103.4147
+230748.0688057141 4.191505 1103.4542
+230749.0688058184 4.1915836 1103.3949
+230750.0688059228 4.1915836 1103.3949
+230751.0688060271 4.1915836 1103.3752
+230752.0688061314 4.1915836 1103.474
+230753.0688062357 4.1916623 1103.3357
+230754.06880634 4.1916232 1103.4344
+230755.0688064443 4.1916623 1103.3357
+230756.0688065486 4.1917806 1103.4147
+230757.0688066529 4.1917019 1103.3949
+230758.0688067572 4.1918592 1103.3949
+230759.0688068615 4.1918988 1103.3357
+230760.0688069658 4.1917806 1103.3555
+230761.0688070701 4.1919775 1103.4147
+230762.0688071745 4.1919379 1103.3357
+230763.0688072788 4.1919775 1103.4344
+230764.0688073831 4.1919379 1103.3555
+230765.0688074874 4.1919775 1103.4344
+230766.0688075917 4.1920166 1103.4344
+230767.068807696 4.1919775 1103.3949
+230768.0688078003 4.1920166 1103.316
+230769.0688079046 4.1920562 1103.4938
+230770.0688080089 4.1920166 1103.3555
+230771.0688081132 4.1920562 1103.4344
+230772.0688082175 4.1922135 1103.4344
+230773.0688083218 4.1922135 1103.3752
+230774.0688084261 4.192174 1103.4344
+230775.0688085305 4.1922531 1103.316
+230776.0688086348 4.1922922 1103.3357
+230777.0688087391 4.1922531 1103.3949
+230778.0688088434 4.1923318 1103.3555
+230779.0688089477 4.1922922 1103.3949
+230780.068809052 4.1922135 1103.4147
+230781.0688091563 4.1923318 1103.316
+230782.0688092606 4.1924105 1103.474
+230783.0688093649 4.1923318 1103.474
+230784.0688094692 4.1924496 1103.3555
+230785.0688095735 4.1924105 1103.3357
+230786.0688096778 4.1925287 1103.4938
+230787.0688097822 4.1925678 1103.3555
+230788.0688098865 4.1925678 1103.3949
+230789.0688099908 4.1927252 1103.3949
+230790.0688100951 4.1926074 1103.4147
+230791.0688101994 4.1926861 1103.2963
+230792.0688103037 4.1925678 1103.5134
+230793.068810408 4.1926465 1103.4344
+230794.0688105123 4.1926465 1103.4147
+230795.0688106166 4.1927648 1103.4344
+230796.0688107209 4.1927648 1103.4147
+230797.0688108252 4.192883 1103.4542
+230798.0688109295 4.1928043 1103.3752
+230799.0688110339 4.192883 1103.3949
+230800.0688111382 4.1928434 1103.3357
+230801.0688112425 4.1929617 1103.3752
+230802.0688113468 4.1929617 1103.4344
+230803.0688114511 4.1930008 1103.3752
+230804.0688115554 4.1930008 1103.474
+230805.0688116597 4.1930795 1103.4147
+230806.068811764 4.193119 1103.3555
+230807.0688118683 4.1930795 1103.474
+230808.0688119726 4.1930795 1103.3555
+230809.0688120769 4.1930404 1103.3752
+230810.0688121812 4.1930795 1103.4542
+230811.0688122856 4.193119 1103.3949
+230812.0688123899 4.1932764 1103.3752
+230813.0688124942 4.1932764 1103.3949
+230814.0688125985 4.1932373 1103.3752
+230815.0688127028 4.1932764 1103.4147
+230816.0688128071 4.1932764 1103.3949
+230817.0688129114 4.1933947 1103.3949
+230818.0688130157 4.193316 1103.316
+230819.06881312 4.1933947 1103.3555
+230820.0688132243 4.1934733 1103.3357
+230821.0688133286 4.1933551 1103.3752
+230822.0688134329 4.1935129 1103.3357
+230823.0688135372 4.193552 1103.3949
+230824.0688136416 4.1936307 1103.4542
+230825.0688137459 4.193552 1103.3555
+230826.0688138502 4.1936703 1103.4147
+230827.0688139545 4.1936307 1103.3357
+230828.0688140588 4.1936307 1103.3555
+230829.0688141631 4.1935916 1103.3949
+230830.0688142674 4.1936703 1103.3357
+230831.0688143717 4.1937094 1103.4147
+230832.068814476 4.1937885 1103.3949
+230833.0688145803 4.1937885 1103.4147
+230834.0688146846 4.1936703 1103.3949
+230835.0688147889 4.1938672 1103.3357
+230836.0688148933 4.1938276 1103.3949
+230837.0688149976 4.1939063 1103.3357
+230838.0688151019 4.1938672 1103.4147
+230839.0688152062 4.1939459 1103.3555
+230840.0688153105 4.193985 1103.3357
+230841.0688154148 4.1940246 1103.3752
+230842.0688155191 4.1940246 1103.4344
+230843.0688156234 4.1941428 1103.3555
+230844.0688157277 4.1941428 1103.3752
+230845.068815832 4.1940641 1103.3555
+230846.0688159363 4.1941428 1103.3555
+230847.0688160406 4.1942215 1103.4344
+230848.068816145 4.1942215 1103.3357
+230849.0688162493 4.1942215 1103.2963
+230850.0688163536 4.1942606 1103.3752
+230851.0688164579 4.1942215 1103.4147
+230852.0688165622 4.1942606 1103.474
+230853.0688166665 4.1943002 1103.4147
+230854.0688167708 4.1943789 1103.474
+230855.0688168751 4.1944184 1103.3949
+230856.0688169794 4.1943789 1103.4147
+230857.0688170837 4.1944575 1103.474
+230858.068817188 4.1944575 1103.3752
+230859.0688172923 4.1946149 1103.2963
+230860.0688173966 4.1945362 1103.4147
+230861.068817501 4.1945362 1103.4938
+230862.0688176053 4.1945362 1103.316
+230863.0688177096 4.1946149 1103.3555
+230864.0688178139 4.1945758 1103.3357
+230865.0688179182 4.1947727 1103.4542
+230866.0688180225 4.1946545 1103.3949
+230867.0688181268 4.194694 1103.4147
+230868.0688182311 4.1948118 1103.474
+230869.0688183354 4.1947331 1103.4147
+230870.0688184397 4.1948118 1103.3555
+230871.068818544 4.1947727 1103.3357
+230872.0688186483 4.1948118 1103.4147
+230873.0688187527 4.1950483 1103.3949
+230874.068818857 4.1948905 1103.3949
+230875.0688189613 4.1949697 1103.3357
+230876.0688190656 4.1949697 1103.3752
+230877.0688191699 4.1949301 1103.3752
+230878.0688192742 4.1949301 1103.3555
+230879.0688193785 4.1949697 1103.3752
+230880.0688194828 4.1950874 1103.3949
+230881.0688195871 4.1950874 1103.4542
+230882.0688196914 4.1952057 1103.2963
+230883.0688197957 4.195127 1103.3949
+230884.0688199 4.195127 1103.4542
+230885.0688200044 4.1951661 1103.4542
+230886.0688201087 4.195127 1103.316
+230887.068820213 4.1952844 1103.3357
+230888.0688203173 4.1953239 1103.4344
+230889.0688204216 4.1951661 1103.4147
+230890.0688205259 4.1952844 1103.474
+230891.0688206302 4.1953239 1103.3555
+230892.0688207345 4.195363 1103.3555
+230893.0688208388 4.1954813 1103.4147
+230894.0688209431 4.1954813 1103.3752
+230895.0688210474 4.19556 1103.474
+230896.0688211517 4.1954417 1103.3555
+230897.068821256 4.1954813 1103.3357
+230898.0688213604 4.1955204 1103.3752
+230899.0688214647 4.1957173 1103.4344
+230900.068821569 4.1956387 1103.3555
+230901.0688216733 4.19556 1103.3357
+230902.0688217776 4.1957173 1103.3949
+230903.0688218819 4.1957173 1103.3949
+230904.0688219862 4.1956782 1103.3555
+230905.0688220905 4.195796 1103.474
+230906.0688221948 4.1958356 1103.2765
+230907.0688222991 4.195796 1103.4344
+230908.0688224034 4.1958747 1103.3949
+230909.0688225077 4.1958356 1103.4344
+230910.0688226121 4.1959143 1103.3752
+230911.0688227164 4.1958747 1103.4147
+230912.0688228207 4.1958747 1103.3949
+230913.068822925 4.1959538 1103.3949
+230914.0688230293 4.1959538 1103.3555
+230915.0688231336 4.1960325 1103.316
+230916.0688232379 4.1960716 1103.316
+230917.0688233422 4.1960716 1103.3357
+230918.0688234465 4.1961112 1103.3357
+230919.0688235508 4.1961503 1103.3752
+230920.0688236551 4.1961899 1103.3752
+230921.0688237594 4.1961899 1103.4542
+230922.0688238638 4.1961899 1103.3949
+230923.0688239681 4.1962295 1103.4344
+230924.0688240724 4.1963081 1103.3357
+230925.0688241767 4.1963081 1103.3357
+230926.068824281 4.1962686 1103.3555
+230927.0688243853 4.1963868 1103.3752
+230928.0688244896 4.1963472 1103.4147
+230929.0688245939 4.1964259 1103.4344
+230930.0688246982 4.1964655 1103.3752
+230931.0688248025 4.1963472 1103.474
+230932.0688249068 4.1964655 1103.316
+230933.0688250111 4.1964655 1103.3949
+230934.0688251155 4.1965442 1103.4344
+230935.0688252198 4.1965442 1103.3752
+230936.0688253241 4.1964655 1103.4542
+230937.0688254284 4.1966228 1103.3949
+230938.0688255327 4.1965442 1103.3752
+230939.068825637 4.1967411 1103.3357
+230940.0688257413 4.1967015 1103.3949
+230941.0688258456 4.1967015 1103.3555
+230942.0688259499 4.1967802 1103.3357
+230943.0688260542 4.1967802 1103.4147
+230944.0688261585 4.1967802 1103.3555
+230945.0688262628 4.1968594 1103.316
+230946.0688263671 4.196938 1103.4344
+230947.0688264715 4.196938 1103.5134
+230948.0688265758 4.1970167 1103.2765
+230949.0688266801 4.1968985 1103.4147
+230950.0688267844 4.1970167 1103.4344
+230951.0688268887 4.1969771 1103.3357
+230952.068826993 4.1970954 1103.4147
+230953.0688270973 4.1969771 1103.474
+230954.0688272016 4.1970954 1103.316
+230955.0688273059 4.1972528 1103.3752
+230956.0688274102 4.1970954 1103.316
+230957.0688275145 4.1971741 1103.4542
+230958.0688276188 4.1971741 1103.474
+230959.0688277232 4.1971741 1103.3555
+230960.0688278275 4.1972923 1103.3357
+230961.0688279318 4.1972136 1103.2963
+230962.0688280361 4.197371 1103.3949
+230963.0688281404 4.197371 1103.316
+230964.0688282447 4.1973314 1103.3752
+230965.068828349 4.1974497 1103.3752
+230966.0688284533 4.1974497 1103.474
+230967.0688285576 4.1974497 1103.4147
+230968.0688286619 4.1975284 1103.4147
+230969.0688287662 4.1976466 1103.2963
+230970.0688288705 4.1974893 1103.3357
+230971.0688289749 4.1974497 1103.4147
+230972.0688290792 4.197607 1103.316
+230973.0688291835 4.197607 1103.3555
+230974.0688292878 4.1976857 1103.3357
+230975.0688293921 4.1977253 1103.2963
+230976.0688294964 4.1977649 1103.3752
+230977.0688296007 4.197804 1103.3357
+230978.068829705 4.1977649 1103.3555
+230979.0688298093 4.1978827 1103.3555
+230980.0688299136 4.1978436 1103.3949
+230981.0688300179 4.1978827 1103.4938
+230982.0688301222 4.1978827 1103.2369
+230983.0688302265 4.1979613 1103.3752
+230984.0688303309 4.1979222 1103.3949
+230985.0688304352 4.1979222 1103.4147
+230986.0688305395 4.1981192 1103.4344
+230987.0688306438 4.1980009 1103.4344
+230988.0688307481 4.1980405 1103.2765
+230989.0688308524 4.1981583 1103.3949
+230990.0688309567 4.1982369 1103.4938
+230991.068831061 4.1980796 1103.3752
+230992.0688311653 4.1981192 1103.4344
+230993.0688312696 4.1982369 1103.3752
+230994.0688313739 4.1982765 1103.3949
+230995.0688314782 4.1982369 1103.4542
+230996.0688315826 4.1983156 1103.3752
+230997.0688316869 4.1981978 1103.4344
+230998.0688317912 4.1983552 1103.3752
+230999.0688318955 4.1983552 1103.3555
+231000.0688319998 4.1984735 1103.4147
+231001.0688321041 4.1985126 1103.3949
+231002.0688322084 4.1983948 1103.474
+231003.0688323127 4.1984339 1103.3752
+231004.068832417 4.1985126 1103.4344
+231005.0688325213 4.1985521 1103.5134
+231006.0688326256 4.1983948 1103.3752
+231007.0688327299 4.1984735 1103.3752
+231008.0688328343 4.1987095 1103.474
+231009.0688329386 4.1987491 1103.316
+231010.0688330429 4.1986308 1103.3752
+231011.0688331472 4.1987882 1103.4344
+231012.0688332515 4.1986704 1103.3949
+231013.0688333558 4.1987882 1103.316
+231014.0688334601 4.1987882 1103.3555
+231015.0688335644 4.1989064 1103.3949
+231016.0688336687 4.1987095 1103.3357
+231017.068833773 4.1988668 1103.474
+231018.0688338773 4.1988668 1103.5134
+231019.0688339816 4.1989064 1103.4344
+231020.0688340859 4.1990247 1103.3949
+231021.0688341903 4.1989851 1103.3357
+231022.0688342946 4.1990247 1103.4542
+231023.0688343989 4.1990638 1103.4147
+231024.0688345032 4.1990247 1103.4147
+231025.0688346075 4.1990247 1103.3752
+231026.0688347118 4.1991425 1103.3357
+231027.0688348161 4.1990638 1103.316
+231028.0688349204 4.199182 1103.3752
+231029.0688350247 4.1991425 1103.3357
+231030.068835129 4.1993003 1103.3949
+231031.0688352333 4.1994181 1103.4147
+231032.0688353376 4.1992607 1103.3949
+231033.068835442 4.199379 1103.3357
+231034.0688355463 4.1993003 1103.3949
+231035.0688356506 4.1993003 1103.4147
+231036.0688357549 4.1994181 1103.3357
+231037.0688358592 4.1994967 1103.3357
+231038.0688359635 4.1994967 1103.3752
+231039.0688360678 4.1994576 1103.3949
+231040.0688361721 4.1995754 1103.4344
+231041.0688362764 4.1994576 1103.3357
+231042.0688363807 4.1995363 1103.3752
+231043.068836485 4.1995754 1103.3752
+231044.0688365893 4.1995754 1103.3752
+231045.0688366937 4.1995754 1103.3752
+231046.068836798 4.199615 1103.4344
+231047.0688369023 4.1997333 1103.3949
+231048.0688370066 4.199615 1103.2963
+231049.0688371109 4.1996937 1103.3949
+231050.0688372152 4.1998906 1103.4147
+231051.0688373195 4.199851 1103.3357
+231052.0688374238 4.199851 1103.4147
+231053.0688375281 4.199851 1103.3555
+231054.0688376324 4.1998906 1103.4542
+231055.0688377367 4.1999693 1103.3752
+231055.8608378193 4.2001266 1103.3752
+231055.8628378194 4.2000089 1103.3949
+231055.9028378238 4.1865835 0.0
+231056.9028379282 4.1859932 0.0
+231057.9028380325 4.1857176 0.0
+231058.9028381368 4.185678 0.0
+231059.9028382411 4.185442 0.0
+231060.9028383454 4.1853633 0.0
+231061.9028384497 4.1852059 0.0
+231062.902838554 4.1850481 0.0
+231063.9028386583 4.1849694 0.0
+231064.9028387626 4.1848907 0.0
+231065.9028388669 4.1847334 0.0
+231066.9028389712 4.1846547 0.0
+231067.9028390755 4.1846547 0.0
+231068.9028391798 4.1844974 0.0
+231069.9028392842 4.1843004 0.0
+231070.9028393885 4.1843395 0.0
+231071.9028394928 4.1843395 0.0
+231072.9028395971 4.1841822 0.0
+231073.9028397014 4.1841035 0.0
+231074.9028398057 4.1841035 0.0
+231075.90283991 4.1839461 0.0
+231076.9028400143 4.1839066 0.0
+231077.9028401186 4.1838279 0.0
+231078.9028402229 4.1837883 0.0
+231079.9028403272 4.1837096 0.0
+231080.9028404315 4.1837096 0.0
+231081.9028405359 4.1837096 0.0
+231082.9028406402 4.1835918 0.0
+231083.9028407445 4.1835523 0.0
+231084.9028408488 4.1835127 0.0
+231085.9028409531 4.1833949 0.0
+231086.9028410574 4.1833162 0.0
+231087.9028411617 4.1832767 0.0
+231088.902841266 4.183198 0.0
+231089.9028413703 4.1832767 0.0
+231090.9028414746 4.1831193 0.0
+231091.9028415789 4.1831193 0.0
+231092.9028416832 4.1831193 0.0
+231093.9028417876 4.1829619 0.0
+231094.9028418919 4.183001 0.0
+231095.9028419962 4.1829224 0.0
+231096.9028421005 4.1829224 0.0
+231097.9028422048 4.1828828 0.0
+231098.9028423091 4.1829224 0.0
+231099.9028424134 4.1827254 0.0
+231100.9028425177 4.1827254 0.0
+231101.902842622 4.182765 0.0
+231102.9028427263 4.1826468 0.0
+231103.9028428306 4.1825285 0.0
+231104.9028429349 4.1825681 0.0
+231105.9028430393 4.1824894 0.0
+231106.9028431436 4.1825681 0.0
+231107.9028432479 4.1825285 0.0
+231108.9028433522 4.1824894 0.0
+231109.9028434565 4.1824894 0.0
+231110.9028435608 4.1824498 0.0
+231111.9028436651 4.1823711 0.0
+231112.9028437694 4.1823711 0.0
+231113.9028438737 4.1822925 0.0
+231114.902843978 4.1822925 0.0
+231115.9028440823 4.1822925 0.0
+231116.9028441866 4.1822138 0.0
+231117.9028442909 4.1821742 0.0
+231118.9028443953 4.1820955 0.0
+231119.9028444996 4.1821351 0.0
+231120.9028446039 4.1820168 0.0
+231121.9028447082 4.1819773 0.0
+231122.9028448125 4.1820168 0.0
+231123.9028449168 4.1820564 0.0
+231124.9028450211 4.1819773 0.0
+231125.9028451254 4.1818595 0.0
+231126.9028452297 4.1819773 0.0
+231127.902845334 4.1819382 0.0
+231128.9028454383 4.1818199 0.0
+231129.9028455426 4.1817412 0.0
+231130.902845647 4.1818986 0.0
+231131.9028457513 4.1818199 0.0
+231132.9028458556 4.1818595 0.0
+231133.9028459599 4.1817412 0.0
+231134.9028460642 4.1817017 0.0
+231135.9028461685 4.1815839 0.0
+231136.9028462728 4.1815443 0.0
+231137.9028463771 4.1816626 0.0
+231138.9028464814 4.1815443 0.0
+231139.9028465857 4.1815052 0.0
+231140.90284669 4.1814656 0.0
+231141.9028467943 4.1815443 0.0
+231142.9028468987 4.1814656 0.0
+231143.902847003 4.1814656 0.0
+231144.9028471073 4.1815052 0.0
+231145.9028472116 4.1813474 0.0
+231146.9028473159 4.1814656 0.0
+231147.9028474202 4.1813474 0.0
+231148.9028475245 4.1813869 0.0
+231149.9028476288 4.1813869 0.0
+231150.9028477331 4.1813474 0.0
+231151.9028478374 4.1813083 0.0
+231152.9028479417 4.18119 0.0
+231153.902848046 4.1813083 0.0
+231154.9028481503 4.1812687 0.0
+231155.9028482547 4.1813083 0.0
+231156.902848359 4.1811509 0.0
+231157.9028484633 4.18119 0.0
+231158.9028485676 4.18119 0.0
+231159.9028486719 4.1810327 0.0
+231160.9028487762 4.1811113 0.0
+231161.9028488805 4.1811113 0.0
+231162.9028489848 4.1811509 0.0
+231163.9028490891 4.1810718 0.0
+231164.9028491934 4.1810327 0.0
+231165.9028492977 4.1810718 0.0
+231166.902849402 4.1809931 0.0
+231167.9028495064 4.180954 0.0
+231168.9028496107 4.1809144 0.0
+231169.902849715 4.180954 0.0
+231170.9028498193 4.1809144 0.0
+231171.9028499236 4.180954 0.0
+231172.9028500279 4.1807966 0.0
+231173.9028501322 4.180954 0.0
+231174.9028502365 4.1809144 0.0
+231175.9028503408 4.1808753 0.0
+231176.9028504451 4.1808753 0.0
+231177.9028505494 4.1808357 0.0
+231178.9028506537 4.1807966 0.0
+231179.9028507581 4.1807175 0.0
+231180.9028508624 4.180757 0.0
+231181.9028509667 4.1806784 0.0
+231182.902851071 4.1806784 0.0
+231183.9028511753 4.1806388 0.0
+231184.9028512796 4.1807175 0.0
+231185.9028513839 4.1805601 0.0
+231186.9028514882 4.1806784 0.0
+231187.9028515925 4.1806784 0.0
+231188.9028516968 4.1806388 0.0
+231189.9028518011 4.1805601 0.0
+231190.9028519054 4.1806388 0.0
+231191.9028520097 4.1806388 0.0
+231192.9028521141 4.1805601 0.0
+231193.9028522184 4.180521 0.0
+231194.9028523227 4.1804814 0.0
+231195.902852427 4.1804814 0.0
+231196.9028525313 4.1804814 0.0
+231197.9028526356 4.1804814 0.0
+231198.9028527399 4.1803632 0.0
+231199.9028528442 4.1804814 0.0
+231200.9028529485 4.1804814 0.0
+231201.9028530528 4.1804419 0.0
+231202.9028531571 4.1804028 0.0
+231203.9028532614 4.1804028 0.0
+231204.9028533658 4.1804419 0.0
+231205.9028534701 4.1804419 0.0
+231206.9028535744 4.1803632 0.0
+231207.9028536787 4.1802845 0.0
+231208.902853783 4.1802845 0.0
+231208.924853785 4.1802845 0.0
+231209.0288537962 4.094892 -7353.3706
+231210.0288539005 4.0876479 -7354.7485
+231211.0288540048 4.0861521 -7353.9609
+231212.0288541091 4.0848527 -7354.1577
+231213.0288542134 4.0836325 -7355.3384
+231214.0288543177 4.0825696 -7354.3545
+231215.028854422 4.0816641 -7354.5513
+231216.0288545263 4.0808372 -7354.5513
+231217.0288546307 4.0798922 -7353.9609
+231218.028854735 4.0790262 -7354.3545
+231219.0288548393 4.0782781 -7354.9453
+231220.0288549436 4.0775695 -7354.1577
+231221.0288550479 4.0768213 -7354.3545
+231222.0288551522 4.0761914 -7354.1577
+231223.0288552565 4.0754437 -7354.3545
+231224.0288553608 4.0747743 -7355.3384
+231225.0288554651 4.0741048 -7354.1577
+231226.0288555694 4.073554 -7354.5513
+231227.0288556737 4.0730028 -7354.1577
+231228.028855778 4.072412 -7354.5513
+231229.0288558824 4.0718608 -7354.3545
+231230.0288559867 4.0713096 -7354.5513
+231231.028856091 4.0707588 -7353.9609
+231232.0288561953 4.0702863 -7354.3545
+231233.0288562996 4.0698137 -7353.9609
+231234.0288564039 4.0691838 -7354.5513
+231235.0288565082 4.0686326 -7353.9609
+231236.0288566125 4.0682387 -7354.3545
+231237.0288567168 4.0677667 -7354.1577
+231238.0288568211 4.0673728 -7354.1577
+231239.0288569254 4.0668216 -7353.9609
+231240.0288570297 4.0663886 -7353.5669
+231241.0288571341 4.0659161 -7354.3545
+231242.0288572384 4.0656404 -7353.9609
+231243.0288573427 4.0650105 -7353.3706
+231244.028857447 4.0646563 -7354.3545
+231245.0288575513 4.0643415 -7354.5513
+231246.0288576556 4.0637903 -7354.1577
+231247.0288577599 4.0634751 -7353.5669
+231248.0288578642 4.0631208 -7355.1421
+231249.0288579685 4.062727 -7353.5669
+231250.0288580728 4.0623727 -7353.9609
+231251.0288581771 4.0619793 -7354.5513
+231252.0288582814 4.0615854 -7353.9609
+231253.0288583857 4.0612707 -7355.1421
+231254.0288584901 4.0608373 -7354.9453
+231255.0288585944 4.0605226 -7353.7646
+231256.0288586987 4.0601683 -7353.9609
+231257.028858803 4.0597353 -7354.7485
+231258.0288589073 4.0594597 -7353.9609
+231259.0288590116 4.0591445 -7354.3545
+231260.0288591159 4.0589085 -7354.7485
+231261.0288592202 4.0584359 -7355.1421
+231262.0288593245 4.0582786 -7353.9609
+231263.0288594288 4.057806 -7353.5669
+231264.0288595331 4.0575304 -7353.9609
+231265.0288596374 4.0570974 -7354.1577
+231266.0288597418 4.0568218 -7354.3545
+231267.0288598461 4.0565462 -7354.3545
+231268.0288599504 4.056231 -7354.1577
+231269.0288600547 4.0559163 -7353.5669
+231270.028860159 4.055759 -7354.5513
+231271.0288602633 4.0554047 -7354.1577
+231272.0288603676 4.0550108 -7354.5513
+231273.0288604719 4.0547748 -7354.3545
+231274.0288605762 4.0544596 -7354.1577
+231275.0288606805 4.0541449 -7354.7485
+231276.0288607848 4.0538692 -7353.7646
+231277.0288608891 4.0535936 -7354.7485
+231278.0288609935 4.0533571 -7354.7485
+231279.0288610978 4.0530028 -7354.9453
+231280.0288612021 4.0527668 -7353.9609
+231281.0288613064 4.0525303 -7354.1577
+231282.0288614107 4.0522156 -7354.3545
+231283.028861515 4.0519795 -7354.1577
+231284.0288616193 4.0515857 -7353.9609
+231285.0288617236 4.0514674 -7353.7646
+231286.0288618279 4.0512314 -7354.3545
+231287.0288619322 4.0509162 -7353.7646
+231288.0288620365 4.0506406 -7354.5513
+231289.0288621408 4.0504045 -7354.9453
+231290.0288622451 4.0502472 -7354.5513
+231291.0288623495 4.0498533 -7354.5513
+231292.0288624538 4.0496564 -7354.1577
+231293.0288625581 4.0494204 -7354.1577
+231294.0288626624 4.0491052 -7354.1577
+231295.0288627667 4.0488691 -7354.3545
+231296.028862871 4.0487118 -7354.3545
+231297.0288629753 4.0483179 -7353.7646
+231298.0288630796 4.0481606 -7355.1421
+231299.0288631839 4.047924 -7354.3545
+231300.0288632882 4.047688 -7353.9609
+231301.0288633925 4.0474124 -7354.3545
+231302.0288634968 4.047255 -7354.3545
+231303.0288636012 4.0469007 -7354.1577
+231304.0288637055 4.0468612 -7353.7646
+231305.0288638098 4.0467434 -7354.7485
+231306.0288639141 4.0463099 -7354.1577
+231307.0288640184 4.0461922 -7353.9609
+231308.0288641227 4.0460343 -7354.1577
+231309.028864227 4.0457983 -7354.3545
+231310.0288643313 4.0455227 -7354.5513
+231311.0288644356 4.0452867 -7354.1577
+231312.0288645399 4.0450501 -7354.9453
+231313.0288646442 4.0448928 -7354.1577
+231314.0288647485 4.0446568 -7354.1577
+231315.0288648529 4.0444202 -7355.1421
+231316.0288649572 4.0443416 -7353.3706
+231317.0288650615 4.0440269 -7354.1577
+231318.0288651658 4.043869 -7354.3545
+231319.0288652701 4.0435934 -7354.1577
+231320.0288653744 4.0434361 -7353.7646
+231321.0288654787 4.0431604 -7353.3706
+231322.028865583 4.0430427 -7354.1577
+231323.0288656873 4.0428457 -7354.3545
+231324.0288657916 4.0426879 -7354.7485
+231325.0288658959 4.0423336 -7354.3545
+231326.0288660002 4.0421371 -7353.3706
+231327.0288661045 4.042058 -7354.3545
+231328.0288662089 4.041822 -7354.7485
+231329.0288663132 4.041625 -7354.3545
+231330.0288664175 4.0414281 -7354.1577
+231331.0288665218 4.0412707 -7354.1577
+231332.0288666261 4.0411525 -7354.5513
+231333.0288667304 4.0410347 -7352.9771
+231334.0288668347 4.0407982 -7354.5513
+231335.028866939 4.0405226 -7353.5669
+231336.0288670433 4.0403652 -7354.9453
+231337.0288671476 4.0402079 -7354.7485
+231338.0288672519 4.0400109 -7353.7646
+231339.0288673562 4.0398927 -7354.1577
+231340.0288674606 4.0396566 -7354.5513
+231341.0288675649 4.0394597 -7354.3545
+231342.0288676692 4.0393023 -7354.5513
+231343.0288677735 4.0391841 -7353.3706
+231344.0288678778 4.0391054 -7354.9453
+231345.0288679821 4.0387907 -7354.3545
+231346.0288680864 4.0385938 -7354.3545
+231347.0288681907 4.0384755 -7354.5513
+231348.028868295 4.0382395 -7354.1577
+231349.0288683993 4.0380425 -7353.7646
+231350.0288685036 4.0379639 -7355.1421
+231351.0288686079 4.0377274 -7354.9453
+231352.0288687123 4.0376096 -7354.1577
+231353.0288688166 4.0374126 -7354.1577
+231354.0288689209 4.037334 -7354.9453
+231355.0288690252 4.037137 -7354.1577
+231356.0288691295 4.0369401 -7354.3545
+231357.0288692338 4.0367432 -7353.5669
+231358.0288693381 4.0366645 -7354.1577
+231359.0288694424 4.0364285 -7354.5513
+231360.0288695467 4.0363102 -7354.5513
+231361.028869651 4.0361528 -7354.3545
+231362.0288697553 4.0360346 -7353.9609
+231363.0288698596 4.035759 -7354.5513
+231364.028869964 4.0356412 -7354.1577
+231365.0288700683 4.0353656 -7353.7646
+231366.0288701726 4.0354047 -7353.3706
+231367.0288702769 4.0351291 -7355.5352
+231368.0288703812 4.0349321 -7353.9609
+231369.0288704855 4.0347748 -7353.7646
+231370.0288705898 4.0346565 -7353.3706
+231371.0288706941 4.0345778 -7354.3545
+231372.0288707984 4.0343809 -7354.5513
+231373.0288709027 4.0341845 -7354.1577
+231374.028871007 4.0340662 -7354.1577
+231375.0288711113 4.0337906 -7353.7646
+231376.0288712156 4.0337119 -7355.1421
+231377.02887132 4.033515 -7353.9609
+231378.0288714243 4.0333967 -7354.5513
+231379.0288715286 4.033318 -7354.1577
+231380.0288716329 4.0331607 -7353.5669
+231381.0288717372 4.0330033 -7354.3545
+231382.0288718415 4.0329247 -7355.3384
+231383.0288719458 4.0326881 -7354.9453
+231384.0288720501 4.0325704 -7354.5513
+231385.0288721544 4.0323734 -7353.9609
+231386.0288722587 4.0322156 -7354.3545
+231387.028872363 4.0322156 -7354.5513
+231388.0288724673 4.0319405 -7354.1577
+231389.0288725717 4.0318613 -7353.7646
+231390.028872676 4.0317039 -7354.1577
+231391.0288727803 4.031507 -7354.5513
+231392.0288728846 4.0313892 -7353.7646
+231393.0288729889 4.031271 -7353.9609
+231394.0288730932 4.0311136 -7354.5513
+231395.0288731975 4.0309954 -7354.1577
+231396.0288733018 4.0309167 -7354.1577
+231397.0288734061 4.0306802 -7354.5513
+231398.0288735104 4.0306802 -7354.7485
+231399.0288736147 4.0305624 -7354.3545
+231400.028873719 4.0302472 -7354.7485
+231401.0288738234 4.0301685 -7354.3545
+231402.0288739277 4.0299716 -7354.7485
+231403.028874032 4.0298142 -7354.5513
+231404.0288741363 4.0295782 -7354.1577
+231405.0288742406 4.02946 -7353.9609
+231406.0288743449 4.0293813 -7353.9609
+231407.0288744492 4.0292239 -7353.9609
+231408.0288745535 4.0290661 -7353.7646
+231409.0288746578 4.0289483 -7354.9453
+231410.0288747621 4.0287905 -7354.3545
+231411.0288748664 4.0285544 -7353.9609
+231412.0288749707 4.0284758 -7353.9609
+231413.028875075 4.0283575 -7354.1577
+231414.0288751794 4.0282001 -7353.3706
+231415.0288752837 4.0281215 -7354.5513
+231416.028875388 4.0280428 -7354.1577
+231417.0288754923 4.0278459 -7353.7646
+231418.0288755966 4.0277276 -7353.7646
+231419.0288757009 4.0274916 -7355.1421
+231420.0288758052 4.0274129 -7353.5669
+231421.0288759095 4.0273342 -7354.5513
+231422.0288760138 4.027216 -7354.3545
+231423.0288761181 4.0270586 -7353.9609
+231424.0288762224 4.0269008 -7354.1577
+231425.0288763267 4.026783 -7353.7646
+231426.0288764311 4.0265861 -7354.5513
+231427.0288765354 4.0265074 -7354.1577
+231428.0288766397 4.0264678 -7354.3545
+231429.028876744 4.0262709 -7353.7646
+231430.0288768483 4.0262318 -7354.3545
+231431.0288769526 4.0260744 -7354.1577
+231432.0288770569 4.0258775 -7354.5513
+231433.0288771612 4.0258379 -7354.1577
+231434.0288772655 4.0256805 -7353.3706
+231435.0288773698 4.0255623 -7354.1577
+231436.0288774741 4.025444 -7354.1577
+231437.0288775784 4.0253654 -7353.7646
+231438.0288776828 4.0252476 -7354.5513
+231439.0288777871 4.0251689 -7354.5513
+231440.0288778914 4.0250506 -7354.7485
+231441.0288779957 4.0250111 -7354.5513
+231442.0288781 4.0247355 -7354.3545
+231443.0288782043 4.0246177 -7354.1577
+231444.0288783086 4.0244598 -7354.1577
+231445.0288784129 4.0243812 -7354.7485
+231446.0288785172 4.0243025 -7354.1577
+231447.0288786215 4.0242238 -7354.1577
+231448.0288787258 4.0239878 -7354.7485
+231449.0288788301 4.0239878 -7354.5513
+231450.0288789344 4.0238299 -7354.3545
+231451.0288790388 4.0237122 -7354.7485
+231452.0288791431 4.0235939 -7353.3706
+231453.0288792474 4.0233183 -7353.9609
+231454.0288793517 4.0233183 -7354.1577
+231455.028879456 4.0231214 -7354.3545
+231456.0288795603 4.0230427 -7354.7485
+231457.0288796646 4.0228853 -7354.3545
+231458.0288797689 4.0227671 -7353.7646
+231459.0288798732 4.0227671 -7354.3545
+231460.0288799775 4.0226097 -7354.1577
+231461.0288800818 4.022531 -7353.7646
+231462.0288801861 4.0224128 -7354.5513
+231463.0288802905 4.0223341 -7354.3545
+231464.0288803948 4.0222158 -7354.3545
+231465.0288804991 4.0222158 -7353.7646
+231466.0288806034 4.0220189 -7353.7646
+231467.0288807077 4.0219011 -7354.9453
+231468.028880812 4.0219402 -7353.9609
+231469.0288809163 4.0217042 -7354.9453
+231470.0288810206 4.0215468 -7354.5513
+231471.0288811249 4.0215468 -7354.3545
+231472.0288812292 4.0212712 -7354.9453
+231473.0288813335 4.0213499 -7353.7646
+231474.0288814378 4.021153 -7354.3545
+231475.0288815422 4.0211134 -7354.9453
+231476.0288816465 4.0209956 -7354.5513
+231477.0288817508 4.0208383 -7354.5513
+231478.0288818551 4.0207591 -7354.3545
+231479.0288819594 4.0206413 -7353.7646
+231480.0288820637 4.0205626 -7354.5513
+231481.028882168 4.0204444 -7354.3545
+231482.0288822723 4.0203657 -7354.5513
+231483.0288823766 4.020287 -7354.3545
+231484.0288824809 4.0201292 -7355.1421
+231485.0288825852 4.0200901 -7353.7646
+231486.0288826895 4.0199718 -7354.3545
+231487.0288827938 4.0198536 -7353.7646
+231488.0288828982 4.0198932 -7354.3545
+231489.0288830025 4.0196571 -7353.7646
+231490.0288831068 4.0195389 -7354.1577
+231491.0288832111 4.0194993 -7354.5513
+231492.0288833154 4.0193028 -7353.9609
+231493.0288834197 4.0192633 -7353.9609
+231494.028883524 4.0192237 -7354.5513
+231495.0288836283 4.0189877 -7353.5669
+231496.0288837326 4.0189481 -7354.5513
+231497.0288838369 4.018909 -7354.1577
+231498.0288839412 4.0187516 -7354.5513
+231499.0288840455 4.0186725 -7354.5513
+231500.0288841499 4.0186334 -7353.3706
+231501.0288842542 4.0185151 -7353.9609
+231502.0288843585 4.0182791 -7353.9609
+231503.0288844628 4.0182791 -7354.3545
+231504.0288845671 4.0182395 -7353.5669
+231505.0288846714 4.0179639 -7354.3545
+231506.0288847757 4.0179639 -7354.3545
+231507.02888488 4.0178461 -7354.1577
+231508.0288849843 4.0177279 -7354.5513
+231509.0288850886 4.0176492 -7354.5513
+231510.0288851929 4.0176096 -7354.5513
+231511.0288852972 4.0174918 -7354.7485
+231512.0288854016 4.017334 -7354.1577
+231513.0288855059 4.0171766 -7354.1577
+231514.0288856102 4.0171375 -7354.9453
+231515.0288857145 4.0170193 -7354.5513
+231516.0288858188 4.016901 -7354.5513
+231517.0288859231 4.016901 -7354.1577
+231518.0288860274 4.0167437 -7354.1577
+231519.0288861317 4.016665 -7354.1577
+231520.028886236 4.0165467 -7353.9609
+231521.0288863403 4.0164285 -7354.3545
+231522.0288864446 4.0163107 -7354.1577
+231523.0288865489 4.0161529 -7354.5513
+231524.0288866533 4.0160351 -7354.1577
+231525.0288867576 4.0159955 -7353.9609
+231526.0288868619 4.0159168 -7354.3545
+231527.0288869662 4.0157595 -7354.1577
+231528.0288870705 4.0156808 -7353.9609
+231529.0288871748 4.0156808 -7354.1577
+231530.0288872791 4.015523 -7354.5513
+231531.0288873834 4.0154443 -7353.1738
+231532.0288874877 4.0154052 -7354.7485
+231533.028887592 4.0153265 -7353.9609
+231534.0288876963 4.01509 -7354.1577
+231535.0288878006 4.01509 -7353.7646
+231536.0288879049 4.0150113 -7354.1577
+231537.0288880093 4.0148931 -7354.9453
+231538.0288881136 4.0147753 -7354.5513
+231539.0288882179 4.0148144 -7354.9453
+231540.0288883222 4.0146966 -7354.3545
+231541.0288884265 4.0146174 -7354.7485
+231542.0288885308 4.0145388 -7354.5513
+231543.0288886351 4.0143418 -7353.9609
+231544.0288887394 4.0142241 -7353.1738
+231545.0288888437 4.0141845 -7354.7485
+231546.028888948 4.0140667 -7354.3545
+231547.0288890523 4.0140667 -7354.3545
+231548.0288891566 4.0139875 -7354.5513
+231549.028889261 4.0139089 -7353.9609
+231550.0288893653 4.0137119 -7354.7485
+231551.0288894696 4.0137515 -7354.5513
+231552.0288895739 4.0136728 -7355.1421
+231553.0288896782 4.0136333 -7354.1577
+231554.0288897825 4.0135155 -7354.5513
+231555.0288898868 4.0133576 -7353.9609
+231556.0288899911 4.0132399 -7354.5513
+231557.0288900954 4.0131612 -7354.7485
+231558.0288901997 4.0132003 -7354.5513
+231559.028890304 4.013082 -7354.3545
+231560.0288904083 4.013082 -7354.1577
+231561.0288905127 4.0129247 -7354.1577
+231562.028890617 4.012846 -7354.5513
+231563.0288907213 4.0128064 -7353.9609
+231564.0288908256 4.0126491 -7354.7485
+231565.0288909299 4.01261 -7354.3545
+231566.0288910342 4.0124917 -7353.9609
+231567.0288911385 4.0123734 -7354.5513
+231568.0288912428 4.0123343 -7354.3545
+231569.0288913471 4.0122948 -7354.7485
+231570.0288914514 4.0120978 -7354.7485
+231571.0288915557 4.0120978 -7354.3545
+231572.02889166 4.0119014 -7354.5513
+231573.0288917643 4.0119014 -7354.7485
+231574.0288918687 4.0118618 -7354.3545
+231575.028891973 4.0116258 -7355.1421
+231576.0288920773 4.0115862 -7354.7485
+231577.0288921816 4.0115862 -7354.5513
+231578.0288922859 4.0114679 -7354.5513
+231579.0288923902 4.0113893 -7354.5513
+231580.0288924945 4.0113502 -7354.5513
+231581.0288925988 4.0112319 -7354.3545
+231582.0288927031 4.0110745 -7353.9609
+231583.0288928074 4.011035 -7354.3545
+231584.0288929117 4.0109563 -7354.5513
+231585.028893016 4.010838 -7354.1577
+231586.0288931204 4.0107989 -7354.5513
+231587.0288932247 4.0106411 -7354.5513
+231588.028893329 4.0107203 -7355.1421
+231589.0288934333 4.0105233 -7354.3545
+231590.0288935376 4.0104446 -7354.3545
+231591.0288936419 4.0103264 -7354.5513
+231592.0288937462 4.010366 -7353.7646
+231593.0288938505 4.0102081 -7354.3545
+231594.0288939548 4.0100904 -7354.3545
+231595.0288940591 4.0100508 -7353.5669
+231596.0288941634 4.0099325 -7355.1421
+231597.0288942677 4.0098538 -7354.3545
+231598.0288943721 4.0096569 -7354.3545
+231599.0288944764 4.0097356 -7353.5669
+231600.0288945807 4.0096569 -7353.7646
+231601.028894685 4.0096178 -7354.3545
+231602.0288947893 4.0094209 -7354.3545
+231603.0288948936 4.0094209 -7354.3545
+231604.0288949979 4.0093422 -7355.1421
+231605.0288951022 4.0093026 -7353.7646
+231606.0288952065 4.0091848 -7353.7646
+231607.0288953108 4.0091453 -7353.9609
+231608.0288954151 4.009027 -7354.5513
+231609.0288955194 4.0088696 -7354.3545
+231610.0288956237 4.0088696 -7353.7646
+231611.0288957281 4.0089092 -7354.1577
+231612.0288958324 4.0087514 -7354.9453
+231613.0288959367 4.008791 -7355.5352
+231614.028896041 4.0086727 -7353.5669
+231615.0288961453 4.0085154 -7354.3545
+231616.0288962496 4.0084758 -7354.7485
+231617.0288963539 4.0083971 -7354.1577
+231618.0288964582 4.0083971 -7354.1577
+231619.0288965625 4.0082397 -7354.1577
+231620.0288966668 4.0081215 -7353.3706
+231621.0288967711 4.0081611 -7354.5513
+231622.0288968754 4.0080428 -7353.9609
+231623.0288969798 4.0079641 -7353.7646
+231624.0288970841 4.0078855 -7354.9453
+231625.0288971884 4.0078068 -7354.1577
+231626.0288972927 4.0077672 -7353.7646
+231627.028897397 4.0077672 -7354.9453
+231628.0288975013 4.0075703 -7353.7646
+231629.0288976056 4.0076098 -7353.3706
+231630.0288977099 4.0074129 -7354.3545
+231631.0288978142 4.0072556 -7353.7646
+231632.0288979185 4.0073738 -7354.3545
+231633.0288980228 4.0071769 -7354.3545
+231634.0288981271 4.0071373 -7354.5513
+231635.0288982315 4.0070195 -7354.7485
+231636.0288983358 4.0070586 -7353.7646
+231637.0288984401 4.0068617 -7354.5513
+231638.0288985444 4.0068617 -7354.9453
+231639.0288986487 4.0066652 -7354.1577
+231640.028898753 4.0066652 -7354.7485
+231641.0288988573 4.0065861 -7355.1421
+231642.0288989616 4.0064683 -7353.5669
+231643.0288990659 4.0065074 -7354.5513
+231644.0288991702 4.0061531 -7353.5669
+231645.0288992745 4.0062318 -7354.5513
+231646.0288993788 4.0061927 -7355.1421
+231647.0288994832 4.0061531 -7353.7646
+231648.0288995875 4.0059562 -7354.1577
+231649.0288996918 4.0059562 -7354.3545
+231650.0288997961 4.0059958 -7354.1577
+231651.0288999004 4.0057201 -7354.1577
+231652.0289000047 4.0057597 -7353.3706
+231653.028900109 4.0056415 -7354.5513
+231654.0289002133 4.0055628 -7354.1577
+231655.0289003176 4.0055628 -7354.7485
+231656.0289004219 4.0054445 -7354.1577
+231657.0289005262 4.0053658 -7354.5513
+231658.0289006305 4.0053263 -7353.9609
+231659.0289007348 4.0052476 -7354.3545
+231660.0289008392 4.0052476 -7353.5669
+231661.0289009435 4.0051298 -7354.3545
+231662.0289010478 4.0051298 -7354.3545
+231663.0289011521 4.0050902 -7354.5513
+231664.0289012564 4.0050116 -7354.1577
+231665.0289013607 4.0048933 -7354.1577
+231666.028901465 4.0047359 -7354.9453
+231667.0289015693 4.0047359 -7353.9609
+231668.0289016736 4.0046964 -7354.5513
+231669.0289017779 4.0046177 -7353.7646
+231670.0289018822 4.004539 -7353.9609
+231671.0289019865 4.0044999 -7353.3706
+231672.0289020909 4.0044208 -7354.5513
+231673.0289021952 4.0043421 -7355.1421
+231674.0289022995 4.0041847 -7354.7485
+231675.0289024038 4.0042634 -7354.5513
+231676.0289025081 4.004106 -7353.1738
+231677.0289026124 4.0039487 -7354.1577
+231678.0289027167 4.0039091 -7353.9609
+231679.028902821 4.0038304 -7354.5513
+231680.0289029253 4.0036335 -7354.3545
+231681.0289030296 4.0036731 -7354.5513
+231682.0289031339 4.0035548 -7354.9453
+231683.0289032382 4.0035944 -7354.1577
+231684.0289033426 4.0034761 -7354.5513
+231685.0289034469 4.0034761 -7354.5513
+231686.0289035512 4.0034366 -7354.1577
+231687.0289036555 4.0032792 -7354.3545
+231688.0289037598 4.0033188 -7354.5513
+231689.0289038641 4.0032396 -7354.5513
+231690.0289039684 4.0032396 -7353.5669
+231691.0289040727 4.003161 -7354.3545
+231692.028904177 4.0030823 -7354.5513
+231693.0289042813 4.0031219 -7354.3545
+231694.0289043856 4.0029645 -7353.9609
+231695.0289044899 4.0028853 -7353.7646
+231696.0289045942 4.0027676 -7354.1577
+231697.0289046986 4.0028462 -7354.1577
+231698.0289048029 4.0027676 -7354.1577
+231699.0289049072 4.0025706 -7354.1577
+231700.0289050115 4.0025706 -7353.9609
+231701.0289051158 4.0025311 -7354.7485
+231702.0289052201 4.0025706 -7354.1577
+231703.0289053244 4.0023737 -7354.1577
+231704.0289054287 4.0022554 -7355.1421
+231705.028905533 4.0022554 -7353.7646
+231706.0289056373 4.0022554 -7354.5513
+231707.0289057416 4.002059 -7354.5513
+231708.0289058459 4.0020194 -7354.7485
+231709.0289059503 4.0019407 -7354.5513
+231710.0289060546 4.0019798 -7354.7485
+231711.0289061589 4.0018225 -7354.3545
+231712.0289062632 4.0018225 -7354.1577
+231713.0289063675 4.0015864 -7353.9609
+231714.0289064718 4.0016651 -7353.9609
+231715.0289065761 4.0015469 -7354.9453
+231716.0289066804 4.0013895 -7355.1421
+231717.0289067847 4.0013499 -7354.9453
+231718.028906889 4.0013895 -7354.3545
+231719.0289069933 4.0013108 -7354.3545
+231720.0289070976 4.0011926 -7354.5513
+231721.028907202 4.0011139 -7354.7485
+231722.0289073063 4.0010352 -7354.1577
+231723.0289074106 4.0009565 -7355.1421
+231724.0289075149 4.0009956 -7354.3545
+231725.0289076192 4.0008779 -7354.9453
+231726.0289077235 4.0007596 -7354.1577
+231727.0289078278 4.0007992 -7354.1577
+231728.0289079321 4.0007992 -7354.1577
+231729.0289080364 4.0006022 -7354.3545
+231730.0289081407 4.0006022 -7354.3545
+231731.028908245 4.0005627 -7354.1577
+231732.0289083493 4.000484 -7354.7485
+231733.0289084536 4.0004053 -7354.1577
+231734.028908558 4.0002871 -7353.9609
+231735.0289086623 4.0003266 -7354.7485
+231736.0289087666 4.000248 -7354.5513
+231737.0289088709 4.0001688 -7355.1421
+231738.0289089752 4.0000114 -7354.7485
+231739.0289090795 4.0000114 -7354.3545
+231740.0289091838 3.9998937 -7354.1577
+231741.0289092881 3.9998541 -7353.9609
+231742.0289093924 3.9998541 -7353.9609
+231743.0289094967 3.9997754 -7353.9609
+231744.028909601 3.9997361 -7353.9609
+231745.0289097053 3.9997361 -7354.9453
+231746.0289098097 3.9996574 -7354.3545
+231747.028909914 3.9996574 -7353.9609
+231748.0289100183 3.9996181 -7354.3545
+231749.0289101226 3.9995391 -7353.9609
+231750.0289102269 3.9994998 -7353.9609
+231751.0289103312 3.9994211 -7354.1577
+231752.0289104355 3.9993818 -7354.1577
+231753.0289105398 3.9993031 -7354.7485
+231754.0289106441 3.9991848 -7354.5513
+231755.0289107484 3.9991848 -7353.5669
+231756.0289108527 3.9991848 -7354.9453
+231757.028910957 3.9990275 -7354.7485
+231758.0289110614 3.9989486 -7354.1577
+231759.0289111657 3.9989882 -7353.7646
+231760.02891127 3.9989882 -7354.1577
+231761.0289113743 3.9987912 -7353.7646
+231762.0289114786 3.9987912 -7354.5513
+231763.0289115829 3.9987125 -7354.1577
+231764.0289116872 3.9986732 -7354.1577
+231765.0289117915 3.9985156 -7353.9609
+231766.0289118958 3.9983976 -7353.5669
+231767.0289120001 3.9984763 -7354.1577
+231768.0289121044 3.9983187 -7354.5513
+231769.0289122087 3.9982007 -7354.1577
+231770.0289123131 3.9982007 -7354.7485
+231771.0289124174 3.998122 -7353.9609
+231772.0289125217 3.9981613 -7354.3545
+231773.028912626 3.9980037 -7353.7646
+231774.0289127303 3.9979644 -7353.7646
+231775.0289128346 3.997925 -7353.5669
+231776.0289129389 3.997807 -7353.3706
+231777.0289130432 3.9976494 -7353.7646
+231778.0289131475 3.9977677 -7354.5513
+231779.0289132518 3.9975708 -7354.9453
+231780.0289133561 3.9975708 -7352.7803
+231781.0289134604 3.9974921 -7354.3545
+231782.0289135647 3.9973738 -7354.7485
+231783.0289136691 3.9974134 -7353.7646
+231784.0289137734 3.9973345 -7353.7646
+231785.0289138777 3.9971771 -7354.3545
+231786.028913982 3.9971771 -7354.3545
+231787.0289140863 3.9971378 -7353.7646
+231788.0289141906 3.9970589 -7354.3545
+231789.0289142949 3.9970195 -7353.5669
+231790.0289143992 3.9968622 -7353.9609
+231791.0289145035 3.9969409 -7354.5513
+231792.0289146078 3.9968228 -7354.3545
+231793.0289147121 3.9967046 -7354.9453
+231794.0289148164 3.9966652 -7354.1577
+231795.0289149208 3.9966652 -7354.1577
+231796.0289150251 3.9965079 -7354.1577
+231797.0289151294 3.9965079 -7354.7485
+231798.0289152337 3.996429 -7353.7646
+231799.028915338 3.9963503 -7353.9609
+231800.0289154423 3.9963896 -7354.5513
+231801.0289155466 3.9962716 -7354.1577
+231802.0289156509 3.9961929 -7354.5513
+231803.0289157552 3.996114 -7353.5669
+231804.0289158595 3.996114 -7354.3545
+231805.0289159638 3.996114 -7354.3545
+231806.0289160681 3.9960353 -7354.1577
+231807.0289161725 3.995996 -7354.1577
+231808.0289162768 3.9959173 -7354.3545
+231809.0289163811 3.9957991 -7354.5513
+231810.0289164854 3.9957991 -7354.3545
+231811.0289165897 3.9957204 -7353.3706
+231812.028916694 3.995681 -7354.7485
+231813.0289167983 3.995563 -7353.9609
+231814.0289169026 3.995563 -7354.7485
+231815.0289170069 3.9955235 -7354.7485
+231816.0289171112 3.9954054 -7354.5513
+231817.0289172155 3.9953661 -7354.5513
+231818.0289173198 3.9954054 -7354.3545
+231819.0289174241 3.9952478 -7354.1577
+231820.0289175285 3.9951692 -7354.7485
+231821.0289176328 3.9952478 -7354.1577
+231822.0289177371 3.9949725 -7354.5513
+231823.0289178414 3.9949725 -7353.7646
+231824.0289179457 3.9949329 -7354.1577
+231825.02891805 3.9948149 -7354.7485
+231826.0289181543 3.9947755 -7354.5513
+231827.0289182586 3.9947362 -7353.9609
+231828.0289183629 3.9947362 -7354.3545
+231829.0289184672 3.9945786 -7354.1577
+231830.0289185715 3.9944999 -7354.7485
+231831.0289186758 3.9944212 -7353.7646
+231832.0289187802 3.9943819 -7353.7646
+231833.0289188845 3.9943426 -7354.3545
+231834.0289189888 3.994303 -7354.5513
+231835.0289190931 3.9942243 -7354.3545
+231836.0289191974 3.9942243 -7353.7646
+231837.0289193017 3.994185 -7353.9609
+231838.028919406 3.9940276 -7354.9453
+231839.0289195103 3.9939487 -7354.5513
+231840.0289196146 3.9941063 -7353.7646
+231841.0289197189 3.9939094 -7354.3545
+231842.0289198232 3.9937913 -7354.1577
+231843.0289199275 3.9937913 -7353.7646
+231844.0289200319 3.9937127 -7354.5513
+231845.0289201362 3.9936337 -7354.7485
+231846.0289202405 3.9935944 -7353.3706
+231847.0289203448 3.9935157 -7354.3545
+231848.0289204491 3.9935157 -7355.5352
+231849.0289205534 3.9933581 -7353.9609
+231850.0289206577 3.9933188 -7354.3545
+231851.028920762 3.9932401 -7353.7646
+231852.0289208663 3.9931614 -7354.9453
+231853.0289209706 3.9932008 -7354.9453
+231854.0289210749 3.9931221 -7353.1738
+231855.0289211792 3.9930432 -7354.5513
+231856.0289212835 3.9930432 -7354.3545
+231857.0289213879 3.9930038 -7354.7485
+231858.0289214922 3.9929645 -7354.1577
+231859.0289215965 3.9928465 -7353.9609
+231860.0289217008 3.9928465 -7354.1577
+231861.0289218051 3.9927676 -7353.7646
+231862.0289219094 3.9927282 -7354.3545
+231863.0289220137 3.9925315 -7354.5513
+231864.028922118 3.9926102 -7353.5669
+231865.0289222223 3.9926102 -7353.7646
+231866.0289223266 3.9926496 -7354.3545
+231867.0289224309 3.9924526 -7354.3545
+231868.0289225352 3.9925709 -7353.7646
+231869.0289226396 3.9924526 -7354.9453
+231870.0289227439 3.9922166 -7354.3545
+231871.0289228482 3.9924133 -7354.1577
+231872.0289229525 3.9922953 -7353.7646
+231873.0289230568 3.9922559 -7355.1421
+231874.0289231611 3.9921772 -7354.9453
+231875.0289232654 3.9921377 -7354.3545
+231876.0289233697 3.9921377 -7354.3545
+231877.028923474 3.992059 -7354.5513
+231878.0289235783 3.991941 -7353.9609
+231879.0289236826 3.991941 -7353.5669
+231880.0289237869 3.991941 -7354.1577
+231881.0289238913 3.9918227 -7354.9453
+231882.0289239956 3.9917834 -7354.5513
+231883.0289240999 3.9917047 -7354.3545
+231884.0289242042 3.9917834 -7353.7646
+231885.0289243085 3.9915867 -7354.5513
+231886.0289244128 3.9915867 -7354.3545
+231887.0289245171 3.9914684 -7354.3545
+231888.0289246214 3.9915867 -7354.3545
+231889.0289247257 3.9915078 -7353.9609
+231890.02892483 3.9913898 -7354.3545
+231891.0289249343 3.9914291 -7354.3545
+231892.0289250386 3.9913898 -7353.9609
+231893.0289251429 3.9913898 -7355.1421
+231894.0289252473 3.9912322 -7354.5513
+231895.0289253516 3.9912322 -7353.3706
+231896.0289254559 3.9911928 -7354.3545
+231897.0289255602 3.9911141 -7354.3545
+231898.0289256645 3.9909961 -7354.1577
+231899.0289257688 3.9909568 -7354.3545
+231900.0289258731 3.9909568 -7354.1577
+231901.0289259774 3.9909961 -7353.7646
+231902.0289260817 3.9907992 -7353.9609
+231903.028926186 3.9907992 -7354.9453
+231904.0289262903 3.9907598 -7354.3545
+231905.0289263946 3.9906812 -7353.9609
+231906.028926499 3.9906812 -7354.3545
+231907.0289266033 3.9906023 -7352.7803
+231908.0289267076 3.9904056 -7354.3545
+231909.0289268119 3.9904056 -7354.7485
+231910.0289269162 3.9904056 -7354.5513
+231911.0289270205 3.990248 -7354.7485
+231912.0289271248 3.9902086 -7353.1738
+231913.0289272291 3.9902086 -7353.9609
+231914.0289273334 3.9900117 -7354.1577
+231915.0289274377 3.9900117 -7353.7646
+231916.028927542 3.9899724 -7354.1577
+231917.0289276463 3.989933 -7354.3545
+231918.0289277507 3.9898937 -7354.5513
+231919.028927855 3.9897363 -7353.9609
+231920.0289279593 3.9897757 -7353.5669
+231921.0289280636 3.9897757 -7354.3545
+231922.0289281679 3.9896967 -7354.3545
+231923.0289282722 3.9896574 -7354.1577
+231924.0289283765 3.9895787 -7354.3545
+231925.0289284808 3.9895787 -7353.5669
+231926.0289285851 3.9895 -7354.3545
+231927.0289286894 3.9895 -7354.5513
+231928.0289287937 3.9894214 -7354.7485
+231929.028928898 3.9893818 -7354.3545
+231930.0289290024 3.9893818 -7355.1421
+231931.0289291067 3.9893425 -7354.5513
+231932.028929211 3.9893031 -7354.3545
+231933.0289293153 3.9892638 -7354.5513
+231934.0289294196 3.9892638 -7354.1577
+231935.0289295239 3.9891458 -7353.9609
+231936.0289296282 3.9890275 -7354.3545
+231937.0289297325 3.9889882 -7353.9609
+231938.0289298368 3.9889488 -7354.1577
+231939.0289299411 3.9889095 -7354.3545
+231940.0289300454 3.9888701 -7353.9609
+231941.0289301497 3.9887915 -7354.1577
+231942.028930254 3.9888308 -7355.1421
+231943.0289303584 3.9887915 -7354.5513
+231944.0289304627 3.9887125 -7354.5513
+231945.028930567 3.9886732 -7354.5513
+231946.0289306713 3.9886732 -7353.9609
+231947.0289307756 3.9885552 -7353.5669
+231948.0289308799 3.9884765 -7354.3545
+231949.0289309842 3.9883976 -7353.5669
+231950.0289310885 3.9885159 -7354.1577
+231951.0289311928 3.9883976 -7355.1421
+231952.0289312971 3.9883583 -7353.9609
+231953.0289314014 3.9883189 -7354.3545
+231954.0289315057 3.9882402 -7353.9609
+231955.0289316101 3.9881613 -7354.3545
+231956.0289317144 3.9882009 -7354.7485
+231957.0289318187 3.9880826 -7354.1577
+231958.028931923 3.9880433 -7353.3706
+231959.0289320273 3.9878464 -7354.5513
+231960.0289321316 3.9878464 -7354.1577
+231961.0289322359 3.9877677 -7353.9609
+231962.0289323402 3.9878464 -7354.1577
+231963.0289324445 3.987689 -7354.9453
+231964.0289325488 3.9876497 -7353.5669
+231965.0289326531 3.987571 -7354.1577
+231966.0289327574 3.9875314 -7354.3545
+231967.0289328618 3.9874921 -7353.5669
+231968.0289329661 3.9874527 -7354.5513
+231969.0289330704 3.9874527 -7354.5513
+231970.0289331747 3.9873741 -7354.3545
+231971.028933279 3.9872561 -7353.7646
+231972.0289333833 3.9872954 -7354.7485
+231973.0289334876 3.9872954 -7354.3545
+231974.0289335919 3.9872165 -7354.1577
+231975.0289336962 3.9872165 -7354.9453
+231976.0289338005 3.9870985 -7354.5513
+231977.0289339048 3.9870591 -7354.7485
+231978.0289340091 3.9870985 -7353.9609
+231979.0289341134 3.9870591 -7354.9453
+231980.0289342178 3.9869015 -7353.7646
+231981.0289343221 3.9868622 -7354.7485
+231982.0289344264 3.9867048 -7353.7646
+231983.0289345307 3.9867835 -7354.1577
+231984.028934635 3.9868228 -7354.1577
+231985.0289347393 3.9867442 -7354.5513
+231986.0289348436 3.9866261 -7353.9609
+231987.0289349479 3.9866261 -7354.9453
+231988.0289350522 3.9864686 -7353.7646
+231989.0289351565 3.9864292 -7354.1577
+231990.0289352608 3.9864292 -7354.7485
+231991.0289353651 3.9861929 -7354.1577
+231992.0289354695 3.9862716 -7355.1421
+231993.0289355738 3.9862323 -7354.5513
+231994.0289356781 3.9861929 -7354.3545
+231995.0289357824 3.9860356 -7354.5513
+231996.0289358867 3.9861143 -7354.1577
+231997.028935991 3.9860356 -7353.9609
+231998.0289360953 3.985996 -7353.9609
+231999.0289361996 3.985996 -7353.3706
+232000.0289363039 3.9858387 -7354.7485
+232001.0289364082 3.985878 -7353.9609
+232002.0289365125 3.9859173 -7354.3545
+232003.0289366168 3.9858387 -7355.1421
+232004.0289367212 3.9857206 -7354.1577
+232005.0289368255 3.98576 -7354.1577
+232006.0289369298 3.9856024 -7354.5513
+232007.0289370341 3.9856024 -7354.1577
+232008.0289371384 3.9856811 -7353.5669
+232009.0289372427 3.985563 -7353.7646
+232010.028937347 3.9853661 -7355.1421
+232011.0289374513 3.985445 -7354.5513
+232012.0289375556 3.9852874 -7353.7646
+232013.0289376599 3.9853661 -7353.3706
+232014.0289377642 3.9852874 -7354.1577
+232015.0289378685 3.9851694 -7353.9609
+232016.0289379728 3.9851301 -7353.7646
+232017.0289380772 3.9851694 -7354.3545
+232018.0289381815 3.9850512 -7353.7646
+232019.0289382858 3.9850118 -7354.3545
+232020.0289383901 3.9850512 -7354.5513
+232021.0289384944 3.9848545 -7354.3545
+232022.0289385987 3.9847758 -7354.3545
+232023.028938703 3.9847758 -7353.3706
+232024.0289388073 3.9846575 -7353.9609
+232025.0289389116 3.9847362 -7354.1577
+232026.0289390159 3.9845788 -7354.3545
+232027.0289391202 3.9845395 -7354.7485
+232028.0289392245 3.9845002 -7354.3545
+232029.0289393289 3.9844606 -7354.3545
+232030.0289394332 3.9845002 -7354.1577
+232031.0289395375 3.9842639 -7353.9609
+232032.0289396418 3.9842639 -7354.3545
+232033.0289397461 3.9842246 -7354.5513
+232034.0289398504 3.9843032 -7353.9609
+232035.0289399547 3.984067 -7354.1577
+232036.028940059 3.9841456 -7354.3545
+232037.0289401633 3.9839096 -7354.1577
+232038.0289402676 3.9839096 -7354.1577
+232039.0289403719 3.9837914 -7353.7646
+232040.0289404762 3.9838703 -7354.1577
+232041.0289405806 3.983752 -7353.9609
+232042.0289406849 3.983752 -7353.3706
+232043.0289407892 3.9836733 -7354.3545
+232044.0289408935 3.983634 -7353.7646
+232045.0289409978 3.9835157 -7354.9453
+232046.0289411021 3.9835947 -7353.9609
+232047.0289412064 3.9834371 -7354.7485
+232048.0289413107 3.9835157 -7354.3545
+232049.028941415 3.983319 -7354.5513
+232050.0289415193 3.9832797 -7355.1421
+232051.0289416236 3.9831614 -7354.7485
+232052.0289417279 3.9832404 -7354.9453
+232053.0289418323 3.9831614 -7354.3545
+232054.0289419366 3.9831221 -7354.1577
+232055.0289420409 3.9831221 -7354.5513
+232056.0289421452 3.9830041 -7353.9609
+232057.0289422495 3.9830828 -7352.9771
+232058.0289423538 3.9828858 -7354.3545
+232059.0289424581 3.9827678 -7354.1577
+232060.0289425624 3.9828072 -7355.1421
+232061.0289426667 3.9828465 -7354.9453
+232062.028942771 3.9828072 -7354.7485
+232063.0289428753 3.9826102 -7354.3545
+232064.0289429796 3.9826102 -7353.9609
+232065.0289430839 3.9825709 -7353.3706
+232066.0289431883 3.9825709 -7353.5669
+232067.0289432926 3.9824135 -7354.1577
+232068.0289433969 3.9823349 -7353.3706
+232069.0289435012 3.9823742 -7354.5513
+232070.0289436055 3.9822953 -7353.9609
+232071.0289437098 3.9821773 -7353.9609
+232072.0289438141 3.9820592 -7353.7646
+232073.0289439184 3.9820986 -7354.3545
+232074.0289440227 3.9820592 -7354.3545
+232075.028944127 3.9820199 -7354.7485
+232076.0289442313 3.9819803 -7354.1577
+232077.0289443356 3.9820199 -7354.5513
+232078.02894444 3.9818623 -7353.3706
+232079.0289445443 3.9819016 -7354.3545
+232080.0289446486 3.981823 -7354.3545
+232081.0289447529 3.981705 -7354.1577
+232082.0289448572 3.9816654 -7353.5669
+232083.0289449615 3.981508 -7354.3545
+232084.0289450658 3.981626 -7354.5513
+232085.0289451701 3.9813111 -7354.3545
+232086.0289452744 3.9814687 -7353.7646
+232087.0289453787 3.9812717 -7353.7646
+232088.028945483 3.9811931 -7353.9609
+232089.0289455873 3.9812324 -7354.3545
+232090.0289456917 3.9811537 -7354.5513
+232091.028945796 3.9811144 -7353.7646
+232092.0289459003 3.9809568 -7353.9609
+232093.0289460046 3.9809175 -7353.9609
+232094.0289461089 3.9809175 -7353.5669
+232095.0289462132 3.9808781 -7354.5513
+232096.0289463175 3.9807205 -7354.9453
+232097.0289464218 3.9806812 -7354.5513
+232098.0289465261 3.9806418 -7355.1421
+232099.0289466304 3.9806418 -7354.5513
+232100.0289467347 3.9805632 -7354.3545
+232101.028946839 3.9804845 -7354.3545
+232102.0289469433 3.9805632 -7353.9609
+232103.0289470477 3.9802089 -7354.7485
+232104.028947152 3.9804449 -7354.1577
+232105.0289472563 3.9804056 -7353.7646
+232106.0289473606 3.9802876 -7353.9609
+232107.0289474649 3.9802089 -7354.7485
+232108.0289475692 3.9803269 -7354.1577
+232109.0289476735 3.9801695 -7354.7485
+232110.0289477778 3.9799726 -7353.9609
+232111.0289478821 3.9800513 -7353.3706
+232112.0289479864 3.9798939 -7354.5513
+232113.0289480907 3.9798939 -7354.3545
+232114.028948195 3.9797757 -7354.3545
+232115.0289482994 3.9797363 -7354.3545
+232116.0289484037 3.9797363 -7354.5513
+232117.028948508 3.9797363 -7354.3545
+232118.0289486123 3.9796183 -7353.9609
+232119.0289487166 3.9795396 -7354.1577
+232120.0289488209 3.9795396 -7354.3545
+232121.0289489252 3.9794214 -7354.1577
+232122.0289490295 3.979382 -7354.1577
+232123.0289491338 3.979382 -7353.5669
+232124.0289492381 3.9793034 -7354.7485
+232125.0289493424 3.9792244 -7353.9609
+232126.0289494467 3.9792244 -7353.9609
+232127.0289495511 3.9792244 -7354.3545
+232128.0289496554 3.9791064 -7354.5513
+232129.0289497597 3.9790277 -7354.3545
+232130.028949864 3.9790671 -7354.7485
+232131.0289499683 3.9790277 -7353.7646
+232132.0289500726 3.9789095 -7354.1577
+232133.0289501769 3.9788308 -7353.7646
+232134.0289502812 3.9788308 -7354.1577
+232135.0289503855 3.9787915 -7354.1577
+232136.0289504898 3.9787521 -7353.5669
+232137.0289505941 3.9787128 -7353.9609
+232138.0289506984 3.9786735 -7354.7485
+232139.0289508027 3.9785945 -7353.7646
+232140.0289509071 3.9784765 -7354.3545
+232141.0289510114 3.9785159 -7354.7485
+232142.0289511157 3.9784765 -7353.5669
+232143.02895122 3.9784372 -7354.9453
+232144.0289513243 3.9782796 -7354.9453
+232145.0289514286 3.9783978 -7354.7485
+232146.0289515329 3.9782009 -7354.9453
+232147.0289516372 3.9783192 -7353.7646
+232148.0289517415 3.9781616 -7354.3545
+232149.0289518458 3.9782796 -7354.1577
+232150.0289519501 3.9780829 -7354.3545
+232151.0289520544 3.9781222 -7354.5513
+232152.0289521588 3.9779253 -7354.3545
+232153.0289522631 3.9779646 -7354.1577
+232154.0289523674 3.9778466 -7354.3545
+232155.0289524717 3.977886 -7354.1577
+232156.028952576 3.9777679 -7353.7646
+232157.0289526803 3.9777679 -7354.9453
+232158.0289527846 3.9776497 -7354.5513
+232159.0289528889 3.9776497 -7354.5513
+232160.0289529932 3.9776497 -7353.5669
+232161.0289530975 3.977571 -7353.7646
+232162.0289532018 3.9774923 -7354.3545
+232163.0289533061 3.977571 -7355.1421
+232164.0289534105 3.9773741 -7355.1421
+232165.0289535148 3.9774137 -7353.9609
+232166.0289536191 3.9772954 -7354.1577
+232167.0289537234 3.9772167 -7354.7485
+232168.0289538277 3.9772954 -7354.5513
+232169.028953932 3.9772167 -7354.7485
+232170.0289540363 3.9772561 -7354.5513
+232171.0289541406 3.9770198 -7353.7646
+232172.0289542449 3.9770198 -7354.9453
+232173.0289543492 3.9769411 -7354.1577
+232174.0289544535 3.9769804 -7354.1577
+232175.0289545578 3.9768231 -7354.3545
+232176.0289546622 3.9768624 -7354.1577
+232177.0289547665 3.9768624 -7354.5513
+232178.0289548708 3.9766655 -7354.1577
+232179.0289549751 3.9767048 -7354.7485
+232180.0289550794 3.9766262 -7354.1577
+232181.0289551837 3.9764688 -7353.9609
+232182.028955288 3.9765868 -7354.1577
+232183.0289553923 3.9765081 -7354.9453
+232184.0289554966 3.9764688 -7353.9609
+232185.0289556009 3.9764688 -7354.3545
+232186.0289557052 3.9762719 -7354.3545
+232187.0289558095 3.9762325 -7354.3545
+232188.0289559138 3.9762325 -7353.5669
+232189.0289560182 3.9762325 -7354.5513
+232190.0289561225 3.9763112 -7354.1577
+232191.0289562268 3.9761143 -7354.1577
+232192.0289563311 3.9760749 -7354.1577
+232193.0289564354 3.9759569 -7354.7485
+232194.0289565397 3.9759176 -7354.3545
+232195.028956644 3.9759176 -7354.3545
+232196.0289567483 3.97576 -7354.5513
+232197.0289568526 3.9756813 -7354.3545
+232198.0289569569 3.97576 -7354.3545
+232199.0289570612 3.9756026 -7353.5669
+232200.0289571655 3.9755633 -7353.7646
+232201.0289572699 3.9755237 -7353.3706
+232202.0289573742 3.9754844 -7354.5513
+232203.0289574785 3.975445 -7354.3545
+232204.0289575828 3.975327 -7353.9609
+232205.0289576871 3.9752483 -7354.3545
+232206.0289577914 3.9752483 -7353.9609
+232207.0289578957 3.9752483 -7354.3545
+232208.028958 3.9751301 -7353.7646
+232209.0289581043 3.9750121 -7354.1577
+232210.0289582086 3.9750121 -7353.7646
+232211.0289583129 3.9751301 -7354.1577
+232212.0289584172 3.9749727 -7353.7646
+232213.0289585216 3.9748938 -7353.9609
+232214.0289586259 3.9748545 -7353.7646
+232215.0289587302 3.9747758 -7354.9453
+232216.0289588345 3.9746971 -7353.3706
+232217.0289589388 3.9746971 -7354.3545
+232218.0289590431 3.9746184 -7354.3545
+232219.0289591474 3.9746184 -7354.9453
+232220.0289592517 3.9746184 -7353.5669
+232221.028959356 3.9745002 -7353.5669
+232222.0289594603 3.9745395 -7354.3545
+232223.0289595646 3.9743822 -7354.3545
+232224.0289596689 3.9743428 -7353.9609
+232225.0289597732 3.9742639 -7354.1577
+232226.0289598776 3.9742639 -7353.7646
+232227.0289599819 3.9742246 -7353.7646
+232228.0289600862 3.9741459 -7354.7485
+232229.0289601905 3.9739885 -7353.9609
+232230.0289602948 3.9740279 -7353.5669
+232231.0289603991 3.973949 -7353.9609
+232232.0289605034 3.9738309 -7353.9609
+232233.0289606077 3.9737916 -7354.3545
+232234.028960712 3.9738309 -7354.3545
+232235.0289608163 3.9737916 -7354.3545
+232236.0289609206 3.9737129 -7354.9453
+232237.0289610249 3.973634 -7353.9609
+232238.0289611293 3.973634 -7354.1577
+232239.0289612336 3.9735553 -7354.3545
+232240.0289613379 3.9734766 -7354.9453
+232241.0289614422 3.9734373 -7353.7646
+232242.0289615465 3.9733191 -7354.3545
+232243.0289616508 3.9732797 -7354.3545
+232244.0289617551 3.9732797 -7354.3545
+232245.0289618594 3.973201 -7354.1577
+232246.0289619637 3.9731617 -7354.7485
+232247.028962068 3.9730434 -7354.7485
+232248.0289621723 3.9730041 -7353.9609
+232249.0289622766 3.9729648 -7355.1421
+232250.028962381 3.9729648 -7354.7485
+232251.0289624853 3.9729254 -7353.9609
+232252.0289625896 3.9728467 -7354.5513
+232253.0289626939 3.9728074 -7354.5513
+232254.0289627982 3.9726892 -7354.1577
+232255.0289629025 3.9726498 -7354.5513
+232256.0289630068 3.9726498 -7354.3545
+232257.0289631111 3.9726105 -7354.3545
+232258.0289632154 3.9725318 -7354.3545
+232259.0289633197 3.9724531 -7354.3545
+232260.028963424 3.9724135 -7354.3545
+232261.0289635283 3.9723349 -7354.1577
+232262.0289636326 3.9722955 -7354.3545
+232263.028963737 3.9722168 -7354.9453
+232264.0289638413 3.9722168 -7353.9609
+232265.0289639456 3.9720592 -7354.7485
+232266.0289640499 3.9721382 -7354.5513
+232267.0289641542 3.9720199 -7353.5669
+232268.0289642585 3.9719806 -7353.9609
+232269.0289643628 3.9719412 -7354.7485
+232270.0289644671 3.9718626 -7354.7485
+232271.0289645714 3.971823 -7353.9609
+232272.0289646757 3.9718626 -7354.7485
+232273.02896478 3.9717836 -7353.9609
+232274.0289648843 3.9717836 -7354.5513
+232275.0289649887 3.9716656 -7354.5513
+232276.028965093 3.9715869 -7353.9609
+232277.0289651973 3.9715476 -7354.3545
+232278.0289653016 3.9714293 -7353.5669
+232279.0289654059 3.9713507 -7354.5513
+232280.0289655102 3.9713507 -7353.9609
+232281.0289656145 3.9712327 -7355.3384
+232282.0289657188 3.9711537 -7354.1577
+232283.0289658231 3.9711144 -7353.5669
+232284.0289659274 3.9710751 -7354.3545
+232285.0289660317 3.9710357 -7354.5513
+232286.028966136 3.970957 -7354.3545
+232287.0289662404 3.9708388 -7353.9609
+232288.0289663447 3.9707994 -7354.1577
+232289.028966449 3.9708388 -7354.1577
+232290.0289665533 3.9706814 -7354.3545
+232291.0289666576 3.9705238 -7354.5513
+232292.0289667619 3.9705632 -7354.3545
+232293.0289668662 3.9703665 -7354.1577
+232294.0289669705 3.9703665 -7353.9609
+232295.0289670748 3.9704845 -7354.5513
+232296.0289671791 3.9702482 -7354.3545
+232297.0289672834 3.9702482 -7354.3545
+232298.0289673877 3.9702876 -7354.9453
+232299.0289674921 3.9701695 -7355.3384
+232300.0289675964 3.9700515 -7353.9609
+232301.0289677007 3.9700909 -7353.7646
+232302.028967805 3.9700122 -7354.5513
+232303.0289679093 3.9699333 -7354.1577
+232304.0289680136 3.9698939 -7354.3545
+232305.0289681179 3.9697759 -7353.7646
+232306.0289682222 3.9697366 -7353.9609
+232307.0289683265 3.9697366 -7354.1577
+232308.0289684308 3.9695396 -7354.1577
+232309.0289685351 3.9696577 -7354.5513
+232310.0289686394 3.9694216 -7354.1577
+232311.0289687437 3.969461 -7354.9453
+232312.0289688481 3.9693823 -7354.7485
+232313.0289689524 3.9693823 -7354.5513
+232314.0289690567 3.9693823 -7353.7646
+232315.028969161 3.9693034 -7354.1577
+232316.0289692653 3.969146 -7354.5513
+232317.0289693696 3.9691854 -7354.5513
+232318.0289694739 3.9690673 -7354.3545
+232319.0289695782 3.9689884 -7354.1577
+232320.0289696825 3.9690673 -7354.3545
+232321.0289697868 3.9689097 -7354.7485
+232322.0289698911 3.9689097 -7354.1577
+232323.0289699954 3.9688311 -7354.3545
+232324.0289700998 3.9688311 -7354.1577
+232325.0289702041 3.9687524 -7354.1577
+232326.0289703084 3.9686735 -7354.5513
+232327.0289704127 3.9687128 -7354.3545
+232328.028970517 3.9685161 -7354.1577
+232329.0289706213 3.9685948 -7354.7485
+232330.0289707256 3.9685555 -7353.9609
+232331.0289708299 3.9684768 -7354.1577
+232332.0289709342 3.9684372 -7353.5669
+232333.0289710385 3.9683979 -7354.3545
+232334.0289711428 3.9682798 -7354.1577
+232335.0289712471 3.9682405 -7354.3545
+232336.0289713515 3.9681222 -7353.9609
+232337.0289714558 3.9680829 -7354.5513
+232338.0289715601 3.9681222 -7354.5513
+232339.0289716644 3.9680042 -7354.3545
+232340.0289717687 3.9680042 -7354.9453
+232341.028971873 3.9678469 -7354.9453
+232342.0289719773 3.9679255 -7354.5513
+232343.0289720816 3.9678073 -7354.5513
+232344.0289721859 3.967768 -7354.3545
+232345.0289722902 3.9677286 -7354.5513
+232346.0289723945 3.9676893 -7354.9453
+232347.0289724988 3.9676499 -7353.7646
+232348.0289726031 3.9675319 -7355.1421
+232349.0289727075 3.9676106 -7354.3545
+232350.0289728118 3.9675319 -7354.1577
+232351.0289729161 3.9674137 -7354.3545
+232352.0289730204 3.9674137 -7354.5513
+232353.0289731247 3.967335 -7354.1577
+232354.028973229 3.967217 -7353.7646
+232355.0289733333 3.9671774 -7354.1577
+232356.0289734376 3.9671381 -7354.1577
+232357.0289735419 3.9671381 -7354.5513
+232358.0289736462 3.9670594 -7354.3545
+232359.0289737505 3.9670987 -7354.3545
+232360.0289738548 3.966902 -7354.3545
+232361.0289739592 3.966902 -7353.5669
+232362.0289740635 3.9667838 -7355.1421
+232363.0289741678 3.9667838 -7353.9609
+232364.0289742721 3.9667444 -7354.3545
+232365.0289743764 3.9666657 -7354.3545
+232366.0289744807 3.9667051 -7354.7485
+232367.028974585 3.9665868 -7354.7485
+232368.0289746893 3.9665475 -7354.1577
+232369.0289747936 3.9665082 -7354.3545
+232370.0289748979 3.9664295 -7354.3545
+232371.0289750022 3.9662325 -7353.9609
+232372.0289751065 3.9662719 -7354.7485
+232373.0289752109 3.9661145 -7353.9609
+232374.0289753152 3.9661145 -7354.3545
+232375.0289754195 3.9660752 -7354.7485
+232376.0289755238 3.9659965 -7354.7485
+232377.0289756281 3.9659569 -7354.3545
+232378.0289757324 3.9659569 -7354.7485
+232379.0289758367 3.9658389 -7354.1577
+232380.028975941 3.9657602 -7354.5513
+232381.0289760453 3.9656816 -7354.1577
+232382.0289761496 3.9657602 -7354.3545
+232383.0289762539 3.9656026 -7353.9609
+232384.0289763582 3.9656026 -7353.5669
+232385.0289764625 3.9656026 -7354.3545
+232386.0289765669 3.965642 -7354.3545
+232387.0289766712 3.9654846 -7353.7646
+232388.0289767755 3.9652877 -7354.5513
+232389.0289768798 3.9654453 -7354.5513
+232390.0289769841 3.965209 -7354.9453
+232391.0289770884 3.965209 -7354.3545
+232392.0289771927 3.9652877 -7354.7485
+232393.028977297 3.965091 -7353.9609
+232394.0289774013 3.9650517 -7353.5669
+232395.0289775056 3.9650121 -7354.1577
+232396.0289776099 3.9649727 -7353.7646
+232397.0289777142 3.9649334 -7354.3545
+232398.0289778186 3.9649727 -7353.9609
+232399.0289779229 3.9648154 -7353.7646
+232400.0289780272 3.9648154 -7354.5513
+232401.0289781315 3.9646578 -7354.3545
+232402.0289782358 3.9646184 -7355.5352
+232403.0289783401 3.9645791 -7353.9609
+232404.0289784444 3.9645791 -7354.5513
+232405.0289785487 3.9645004 -7354.1577
+232406.028978653 3.9645398 -7355.5352
+232407.0289787573 3.9644611 -7354.7485
+232408.0289788616 3.9644215 -7353.7646
+232409.0289789659 3.9643822 -7355.1421
+232410.0289790703 3.9642248 -7354.5513
+232411.0289791746 3.9642642 -7354.3545
+232412.0289792789 3.9641461 -7353.3706
+232413.0289793832 3.9641066 -7355.1421
+232414.0289794875 3.9641066 -7354.7485
+232415.0289795918 3.9639885 -7353.9609
+232416.0289796961 3.9639099 -7354.3545
+232417.0289798004 3.9637916 -7354.3545
+232418.0289799047 3.9637523 -7354.1577
+232419.028980009 3.9636343 -7354.7485
+232420.0289801133 3.9635556 -7353.5669
+232421.0289802176 3.9636343 -7354.1577
+232422.0289803219 3.9634767 -7354.7485
+232423.0289804263 3.9633586 -7354.9453
+232424.0289805306 3.963398 -7354.3545
+232425.0289806349 3.96328 -7354.9453
+232426.0289807392 3.9631617 -7353.9609
+232427.0289808435 3.9631617 -7354.1577
+232428.0289809478 3.9632013 -7354.3545
+232429.0289810521 3.9630044 -7354.5513
+232430.0289811564 3.9628861 -7354.9453
+232431.0289812607 3.962965 -7354.3545
+232432.028981365 3.9628468 -7354.3545
+232433.0289814693 3.9627287 -7353.9609
+232434.0289815736 3.9627681 -7353.9609
+232435.028981678 3.9626501 -7354.3545
+232436.0289817823 3.9626501 -7354.5513
+232437.0289818866 3.9626107 -7354.5513
+232438.0289819909 3.9624531 -7354.5513
+232439.0289820952 3.9623744 -7353.9609
+232440.0289821995 3.9622958 -7354.1577
+232441.0289823038 3.9623351 -7353.9609
+232442.0289824081 3.9622169 -7354.1577
+232443.0289825124 3.9621775 -7354.3545
+232444.0289826167 3.9621382 -7354.3545
+232445.028982721 3.9620595 -7353.3706
+232446.0289828253 3.9619808 -7354.5513
+232447.0289829297 3.9618626 -7354.5513
+232448.028983034 3.9619019 -7354.7485
+232449.0289831383 3.9617052 -7353.9609
+232450.0289832426 3.9616263 -7353.9609
+232451.0289833469 3.9616263 -7354.7485
+232452.0289834512 3.9616263 -7354.3545
+232453.0289835555 3.9615083 -7355.5352
+232454.0289836598 3.9614296 -7354.5513
+232455.0289837641 3.9613903 -7354.1577
+232456.0289838684 3.9614296 -7354.5513
+232457.0289839727 3.961272 -7353.9609
+232458.028984077 3.961272 -7355.3384
+232459.0289841814 3.9610357 -7354.3545
+232460.0289842857 3.9609964 -7353.3706
+232461.02898439 3.9609177 -7354.3545
+232462.0289844943 3.9609964 -7354.5513
+232463.0289845986 3.9609177 -7353.7646
+232464.0289847029 3.9607997 -7353.9609
+232465.0289848072 3.9607604 -7354.5513
+232466.0289849115 3.9607208 -7354.5513
+232467.0289850158 3.9606028 -7353.9609
+232468.0289851201 3.9605634 -7354.1577
+232469.0289852244 3.9604847 -7353.7646
+232470.0289853287 3.9604847 -7353.7646
+232471.028985433 3.9604058 -7353.9609
+232472.0289855374 3.9603271 -7353.5669
+232473.0289856417 3.9602878 -7354.5513
+232474.028985746 3.9601698 -7354.5513
+232475.0289858503 3.9601698 -7354.5513
+232476.0289859546 3.9600909 -7354.3545
+232477.0289860589 3.9600515 -7354.3545
+232478.0289861632 3.9599729 -7353.9609
+232479.0289862675 3.9598155 -7353.9609
+232480.0289863718 3.9598548 -7354.7485
+232481.0289864761 3.9598155 -7354.7485
+232482.0289865804 3.9596579 -7353.7646
+232483.0289866847 3.9596972 -7354.3545
+232484.0289867891 3.9596579 -7354.1577
+232485.0289868934 3.9596579 -7354.3545
+232486.0289869977 3.9594216 -7353.3706
+232487.028987102 3.9593036 -7354.7485
+232488.0289872063 3.9594216 -7354.1577
+232489.0289873106 3.9592643 -7354.3545
+232490.0289874149 3.9592249 -7353.7646
+232491.0289875192 3.9592249 -7353.7646
+232492.0289876235 3.9591067 -7355.3384
+232493.0289877278 3.959028 -7353.7646
+232494.0289878321 3.9589493 -7355.1421
+232495.0289879364 3.9588311 -7354.9453
+232496.0289880408 3.9587917 -7354.3545
+232497.0289881451 3.9587131 -7354.3545
+232498.0289882494 3.9587524 -7353.9609
+232499.0289883537 3.9586344 -7354.1577
+232500.028988458 3.9585555 -7354.3545
+232501.0289885623 3.9585161 -7354.1577
+232502.0289886666 3.9584374 -7354.5513
+232503.0289887709 3.9584374 -7354.5513
+232504.0289888752 3.9582801 -7354.5513
+232505.0289889795 3.9582405 -7355.3384
+232506.0289890838 3.9582012 -7354.3545
+232507.0289891881 3.9580045 -7354.5513
+232508.0289892924 3.9580045 -7353.3706
+232509.0289893968 3.9579651 -7354.1577
+232510.0289895011 3.9579651 -7353.7646
+232511.0289896054 3.9577289 -7354.5513
+232512.0289897097 3.9576499 -7353.9609
+232513.028989814 3.9576895 -7354.5513
+232514.0289899183 3.9576895 -7353.7646
+232515.0289900226 3.9575319 -7353.7646
+232516.0289901269 3.9574926 -7353.5669
+232517.0289902312 3.9575319 -7354.1577
+232518.0289903355 3.9574139 -7354.3545
+232519.0289904398 3.9573746 -7354.1577
+232520.0289905441 3.9571776 -7354.9453
+232521.0289906485 3.957217 -7354.1577
+232522.0289907528 3.9571383 -7353.9609
+232523.0289908571 3.957099 -7353.9609
+232524.0289909614 3.95702 -7353.9609
+232525.0289910657 3.9569414 -7354.1577
+232526.02899117 3.9568627 -7354.1577
+232527.0289912743 3.956784 -7354.5513
+232528.0289913786 3.9567051 -7354.5513
+232529.0289914829 3.9567447 -7353.9609
+232530.0289915872 3.9565084 -7354.1577
+232531.0289916915 3.9566264 -7353.1738
+232532.0289917958 3.9564297 -7353.9609
+232533.0289919002 3.9563901 -7354.3545
+232534.0289920045 3.9563901 -7354.3545
+232535.0289921088 3.9562721 -7353.7646
+232536.0289922131 3.9560752 -7354.3545
+232537.0289923174 3.9560752 -7354.3545
+232538.0289924217 3.9559965 -7353.5669
+232539.028992526 3.9559572 -7354.3545
+232540.0289926303 3.9558785 -7354.1577
+232541.0289927346 3.9557602 -7353.3706
+232542.0289928389 3.9557209 -7354.7485
+232543.0289929432 3.9556422 -7354.7485
+232544.0289930475 3.9556029 -7354.5513
+232545.0289931518 3.9555242 -7354.7485
+232546.0289932562 3.9553666 -7354.5513
+232547.0289933605 3.9554453 -7353.9609
+232548.0289934648 3.9552879 -7353.3706
+232549.0289935691 3.9552093 -7354.5513
+232550.0289936734 3.955091 -7354.5513
+232551.0289937777 3.9551697 -7354.3545
+232552.028993882 3.954973 -7353.1738
+232553.0289939863 3.9550123 -7354.1577
+232554.0289940906 3.9548154 -7354.5513
+232555.0289941949 3.954776 -7354.9453
+232556.0289942992 3.954776 -7354.1577
+232557.0289944035 3.954658 -7354.9453
+232558.0289945079 3.9546187 -7354.9453
+232559.0289946122 3.9545794 -7355.1421
+232560.0289947165 3.9545004 -7354.1577
+232561.0289948208 3.9544218 -7354.9453
+232562.0289949251 3.9543037 -7354.1577
+232563.0289950294 3.9542644 -7354.3545
+232564.0289951337 3.9542248 -7354.1577
+232565.028995238 3.9541461 -7354.3545
+232566.0289953423 3.9540675 -7353.7646
+232567.0289954466 3.9540281 -7353.9609
+232568.0289955509 3.9539099 -7354.5513
+232569.0289956552 3.9538705 -7353.9609
+232570.0289957596 3.9538705 -7354.1577
+232571.0289958639 3.9537919 -7354.3545
+232572.0289959682 3.9535949 -7354.7485
+232573.0289960725 3.9536343 -7354.5513
+232574.0289961768 3.9535162 -7354.5513
+232575.0289962811 3.9535556 -7353.7646
+232576.0289963854 3.9534376 -7354.7485
+232577.0289964897 3.9533589 -7354.1577
+232578.028996594 3.95328 -7353.5669
+232579.0289966983 3.9531226 -7354.5513
+232580.0289968026 3.953162 -7354.7485
+232581.0289969069 3.9531226 -7354.5513
+232582.0289970113 3.9530044 -7354.7485
+232583.0289971156 3.9529257 -7353.7646
+232584.0289972199 3.9529257 -7353.7646
+232585.0289973242 3.9528863 -7353.7646
+232586.0289974285 3.9528077 -7355.3384
+232587.0289975328 3.9527683 -7353.5669
+232588.0289976371 3.952729 -7354.3545
+232589.0289977414 3.9525714 -7353.5669
+232590.0289978457 3.9526107 -7354.5513
+232591.02899795 3.9524927 -7354.5513
+232592.0289980543 3.952414 -7354.7485
+232593.0289981586 3.9523351 -7353.9609
+232594.0289982629 3.9521778 -7354.1577
+232595.0289983673 3.9521778 -7354.3545
+232596.0289984716 3.9520988 -7354.3545
+232597.0289985759 3.9520202 -7354.1577
+232598.0289986802 3.9519808 -7355.1421
+232599.0289987845 3.9519415 -7354.9453
+232600.0289988888 3.9518235 -7354.1577
+232601.0289989931 3.9516659 -7354.5513
+232602.0289990974 3.9516265 -7354.5513
+232603.0289992017 3.9515872 -7353.7646
+232604.028999306 3.9515872 -7354.7485
+232605.0289994103 3.9515085 -7354.3545
+232606.0289995146 3.9513903 -7353.9609
+232607.028999619 3.9512722 -7353.9609
+232608.0289997233 3.951154 -7355.3384
+232609.0289998276 3.9511936 -7354.7485
+232610.0289999319 3.9511147 -7353.7646
+232611.0290000362 3.9510753 -7354.9453
+232612.0290001405 3.9509573 -7354.1577
+232613.0290002448 3.9509573 -7354.1577
+232614.0290003491 3.950839 -7354.3545
+232615.0290004534 3.9508786 -7354.5513
+232616.0290005577 3.9506423 -7353.5669
+232617.029000662 3.9506423 -7354.3545
+232618.0290007663 3.9505634 -7354.3545
+232619.0290008707 3.9504848 -7353.3706
+232620.029000975 3.9504848 -7354.1577
+232621.0290010793 3.9503667 -7354.1577
+232622.0290011836 3.9503667 -7354.1577
+232623.0290012879 3.9502091 -7355.1421
+232624.0290013922 3.9501305 -7354.1577
+232625.0290014965 3.9501698 -7354.7485
+232626.0290016008 3.9500518 -7354.3545
+232627.0290017051 3.9500518 -7353.9609
+232628.0290018094 3.9499731 -7354.9453
+232629.0290019137 3.9498942 -7354.3545
+232630.029002018 3.9498155 -7354.3545
+232631.0290021223 3.9497762 -7354.5513
+232632.0290022267 3.9496975 -7354.1577
+232633.029002331 3.9495399 -7354.3545
+232634.0290024353 3.9495399 -7354.5513
+232635.0290025396 3.9495399 -7354.5513
+232636.0290026439 3.9495006 -7354.3545
+232637.0290027482 3.9493825 -7353.9609
+232638.0290028525 3.9492643 -7354.1577
+232639.0290029568 3.9491069 -7354.3545
+232640.0290030611 3.9491463 -7354.1577
+232641.0290031654 3.9489887 -7353.9609
+232642.0290032697 3.9490283 -7354.3545
+232643.029003374 3.9488313 -7354.9453
+232644.0290034784 3.9489887 -7354.7485
+232645.0290035827 3.948792 -7354.7485
+232646.029003687 3.9487526 -7354.3545
+232647.0290037913 3.9485164 -7354.5513
+232648.0290038956 3.9485164 -7354.3545
+232649.0290039999 3.9484377 -7354.3545
+232650.0290041042 3.948477 -7354.1577
+232651.0290042085 3.9483588 -7354.3545
+232652.0290043128 3.9482408 -7353.7646
+232653.0290044171 3.9482014 -7354.5513
+232654.0290045214 3.9482801 -7354.5513
+232655.0290046257 3.9480832 -7354.9453
+232656.0290047301 3.9480045 -7354.1577
+232657.0290048344 3.9480438 -7354.9453
+232658.0290049387 3.9477682 -7353.7646
+232659.029005043 3.9479258 -7354.3545
+232660.0290051473 3.9477289 -7354.3545
+232661.0290052516 3.9477289 -7354.5513
+232662.0290053559 3.9476502 -7354.3545
+232663.0290054602 3.9475322 -7354.7485
+232664.0290055645 3.9474928 -7354.3545
+232665.0290056688 3.9475322 -7355.1421
+232666.0290057731 3.9472959 -7354.1577
+232667.0290058774 3.9473352 -7353.7646
+232668.0290059817 3.9471779 -7354.5513
+232669.0290060861 3.9470596 -7354.1577
+232670.0290061904 3.9468627 -7354.3545
+232671.0290062947 3.9470203 -7354.5513
+232672.029006399 3.946784 -7354.1577
+232673.0290065033 3.9467447 -7354.9453
+232674.0290066076 3.946666 -7354.3545
+232675.0290067119 3.9465084 -7355.3384
+232676.0290068162 3.9465477 -7353.5669
+232677.0290069205 3.9465084 -7355.1421
+232678.0290070248 3.9463511 -7354.5513
+232679.0290071291 3.9462724 -7354.1577
+232680.0290072334 3.9461935 -7354.7485
+232681.0290073378 3.9461148 -7354.7485
+232682.0290074421 3.9460361 -7355.1421
+232683.0290075464 3.9459968 -7353.3706
+232684.0290076507 3.9459178 -7353.7646
+232685.029007755 3.9458785 -7354.5513
+232686.0290078593 3.9457605 -7354.1577
+232687.0290079636 3.9456425 -7354.3545
+232688.0290080679 3.9456029 -7354.1577
+232689.0290081722 3.9453669 -7354.9453
+232690.0290082765 3.9454849 -7354.3545
+232691.0290083808 3.9452879 -7354.5513
+232692.0290084851 3.9452093 -7354.5513
+232693.0290085895 3.9451699 -7353.3706
+232694.0290086938 3.9451306 -7354.9453
+232695.0290087981 3.9450123 -7354.9453
+232696.0290089024 3.9449337 -7354.3545
+232697.0290090067 3.944855 -7354.9453
+232698.029009111 3.9448156 -7353.3706
+232699.0290092153 3.944658 -7354.3545
+232700.0290093196 3.9445794 -7354.3545
+232701.0290094239 3.944422 -7354.1577
+232702.0290095282 3.9443824 -7354.9453
+232703.0290096325 3.9443824 -7355.3384
+232704.0290097368 3.9443431 -7353.7646
+232705.0290098412 3.9442251 -7354.5513
+232706.0290099455 3.9443038 -7355.3384
+232707.0290100498 3.9439888 -7353.1738
+232708.0290101541 3.9440281 -7354.5513
+232709.0290102584 3.9439101 -7354.7485
+232710.0290103627 3.9438708 -7354.3545
+232711.029010467 3.9437525 -7353.5669
+232712.0290105713 3.9436738 -7354.3545
+232713.0290106756 3.9437132 -7354.1577
+232714.0290107799 3.9435558 -7354.1577
+232715.0290108842 3.9433589 -7354.3545
+232716.0290109885 3.9433982 -7354.7485
+232717.0290110928 3.9433196 -7354.9453
+232718.0290111972 3.9433982 -7353.7646
+232719.0290113015 3.9432015 -7354.5513
+232720.0290114058 3.9430833 -7354.5513
+232721.0290115101 3.9430833 -7354.1577
+232722.0290116144 3.9429653 -7354.5513
+232723.0290117187 3.9428866 -7354.1577
+232724.029011823 3.9429259 -7355.1421
+232725.0290119273 3.9428077 -7353.9609
+232726.0290120316 3.942729 -7353.7646
+232727.0290121359 3.9426897 -7353.1738
+232728.0290122402 3.942611 -7354.3545
+232729.0290123445 3.9423747 -7353.9609
+232730.0290124489 3.942296 -7354.3545
+232731.0290125532 3.9423354 -7353.9609
+232732.0290126575 3.9421778 -7353.9609
+232733.0290127618 3.9420598 -7354.3545
+232734.0290128661 3.9419811 -7354.3545
+232735.0290129704 3.9420204 -7354.5513
+232736.0290130747 3.9418628 -7355.1421
+232737.029013179 3.9418235 -7354.3545
+232738.0290132833 3.9417055 -7353.9609
+232739.0290133876 3.9415872 -7354.7485
+232740.0290134919 3.9416265 -7354.5513
+232741.0290135962 3.9414692 -7354.5513
+232742.0290137006 3.9414692 -7355.1421
+232743.0290138049 3.9413116 -7353.7646
+232744.0290139092 3.9412723 -7354.5513
+232745.0290140135 3.9411936 -7354.1577
+232746.0290141178 3.9410756 -7354.3545
+232747.0290142221 3.9411149 -7355.1421
+232748.0290143264 3.9409573 -7354.3545
+232749.0290144307 3.9409966 -7353.9609
+232750.029014535 3.940918 -7354.5513
+232751.0290146393 3.9407213 -7354.5513
+232752.0290147436 3.9407213 -7353.9609
+232753.0290148479 3.9406424 -7353.5669
+232754.0290149522 3.9405637 -7353.5669
+232755.0290150566 3.940485 -7353.9609
+232756.0290151609 3.9403667 -7353.9609
+232757.0290152652 3.9402487 -7354.7485
+232758.0290153695 3.94017 -7354.3545
+232759.0290154738 3.9401307 -7354.5513
+232760.0290155781 3.9400518 -7353.7646
+232761.0290156824 3.9399338 -7353.5669
+232762.0290157867 3.9398944 -7354.3545
+232763.029015891 3.9397368 -7354.9453
+232764.0290159953 3.9396582 -7354.5513
+232765.0290160996 3.9395401 -7355.3384
+232766.0290162039 3.9394612 -7354.1577
+232767.0290163083 3.9393826 -7353.9609
+232768.0290164126 3.9393039 -7354.5513
+232769.0290165169 3.9392252 -7354.3545
+232770.0290166212 3.9391069 -7353.7646
+232771.0290167255 3.9390283 -7354.3545
+232772.0290168298 3.9389496 -7354.1577
+232773.0290169341 3.9390676 -7354.5513
+232774.0290170384 3.9388709 -7354.7485
+232775.0290171427 3.9388313 -7354.7485
+232776.029017247 3.938674 -7354.7485
+232777.0290173513 3.938674 -7355.1421
+232778.0290174556 3.9385953 -7354.5513
+232779.02901756 3.9383984 -7353.7646
+232780.0290176643 3.9384377 -7354.7485
+232781.0290177686 3.938359 -7355.3384
+232782.0290178729 3.938241 -7354.9453
+232783.0290179772 3.9381621 -7353.9609
+232784.0290180815 3.9379654 -7354.1577
+232785.0290181858 3.9380441 -7353.9609
+232786.0290182901 3.9380047 -7354.1577
+232787.0290183944 3.9379654 -7354.3545
+232788.0290184987 3.9378471 -7354.3545
+232789.029018603 3.9375715 -7354.7485
+232790.0290187073 3.9376898 -7353.7646
+232791.0290188116 3.9375715 -7353.9609
+232792.029018916 3.9373748 -7354.9453
+232793.0290190203 3.9372959 -7354.3545
+232794.0290191246 3.9372566 -7354.7485
+232795.0290192289 3.9371779 -7354.3545
+232796.0290193332 3.936981 -7354.5513
+232797.0290194375 3.9369023 -7354.5513
+232798.0290195418 3.9370599 -7354.9453
+232799.0290196461 3.9369023 -7354.5513
+232800.0290197504 3.9367056 -7353.7646
+232801.0290198547 3.9366267 -7354.7485
+232802.029019959 3.936548 -7353.7646
+232803.0290200633 3.93643 -7354.7485
+232804.0290201677 3.9363906 -7354.3545
+232805.029020272 3.9363511 -7354.7485
+232806.0290203763 3.9362724 -7354.1577
+232807.0290204806 3.936233 -7354.3545
+232808.0290205849 3.9359181 -7354.1577
+232809.0290206892 3.9360361 -7353.5669
+232810.0290207935 3.9358788 -7353.9609
+232811.0290208978 3.9358394 -7353.9609
+232812.0290210021 3.9357212 -7353.5669
+232813.0290211064 3.9356031 -7355.1421
+232814.0290212107 3.9355245 -7354.1577
+232815.029021315 3.9353275 -7354.1577
+232816.0290214194 3.9352882 -7354.9453
+232817.0290215237 3.9352095 -7354.1577
+232818.029021628 3.9352095 -7353.5669
+232819.0290217323 3.9350519 -7354.9453
+232820.0290218366 3.9350126 -7354.9453
+232821.0290219409 3.9348946 -7353.5669
+232822.0290220452 3.9348946 -7353.7646
+232823.0290221495 3.9346976 -7354.5513
+232824.0290222538 3.9346976 -7353.7646
+232825.0290223581 3.9346189 -7353.3706
+232826.0290224624 3.9344614 -7354.1577
+232827.0290225667 3.9343433 -7354.7485
+232828.029022671 3.9343827 -7354.1577
+232829.0290227754 3.9342251 -7354.1577
+232830.0290228797 3.9340677 -7353.1738
+232831.029022984 3.9340677 -7355.1421
+232832.0290230883 3.9341071 -7354.5513
+232833.0290231926 3.9339497 -7354.5513
+232834.0290232969 3.9338315 -7354.1577
+232835.0290234012 3.9337528 -7354.1577
+232836.0290235055 3.9336348 -7354.3545
+232837.0290236098 3.9336348 -7353.7646
+232838.0290237141 3.9335558 -7354.1577
+232839.0290238184 3.9333985 -7355.1421
+232840.0290239227 3.9333591 -7354.5513
+232841.0290240271 3.9332802 -7354.3545
+232842.0290241314 3.9332016 -7354.3545
+232843.0290242357 3.9330442 -7354.5513
+232844.02902434 3.9329259 -7354.1577
+232845.0290244443 3.9327686 -7355.3384
+232846.0290245486 3.9328079 -7354.1577
+232847.0290246529 3.9326503 -7354.1577
+232848.0290247572 3.9325716 -7353.7646
+232849.0290248615 3.9325323 -7354.5513
+232850.0290249658 3.9324143 -7354.1577
+232851.0290250701 3.9324143 -7355.5352
+232852.0290251744 3.9321387 -7354.5513
+232853.0290252788 3.9322174 -7353.9609
+232854.0290253831 3.9320598 -7355.1421
+232855.0290254874 3.9319024 -7354.3545
+232856.0290255917 3.9318631 -7353.1738
+232857.029025696 3.9316661 -7355.1421
+232858.0290258003 3.9316661 -7353.9609
+232859.0290259046 3.9315875 -7354.5513
+232860.0290260089 3.9315088 -7354.1577
+232861.0290261132 3.9313512 -7354.7485
+232862.0290262175 3.9312332 -7354.3545
+232863.0290263218 3.9312332 -7354.1577
+232864.0290264261 3.9310362 -7354.9453
+232865.0290265305 3.9311149 -7354.3545
+232866.0290266348 3.9309969 -7354.1577
+232867.0290267391 3.9306819 -7354.3545
+232868.0290268434 3.9306819 -7355.1421
+232869.0290269477 3.930485 -7354.5513
+232870.029027052 3.9303277 -7353.9609
+232871.0290271563 3.9303277 -7353.7646
+232872.0290272606 3.9303277 -7353.7646
+232873.0290273649 3.9301307 -7352.9771
+232874.0290274692 3.9300127 -7353.9609
+232875.0290275735 3.9300127 -7354.1577
+232876.0290276778 3.929934 -7354.7485
+232877.0290277821 3.9298158 -7354.3545
+232878.0290278865 3.9297371 -7354.9453
+232879.0290279908 3.9295402 -7354.9453
+232880.0290280951 3.9295008 -7354.3545
+232881.0290281994 3.9294221 -7353.7646
+232882.0290283037 3.9292645 -7354.1577
+232883.029028408 3.9292645 -7353.9609
+232884.0290285123 3.9291072 -7355.1421
+232885.0290286166 3.9291072 -7355.1421
+232886.0290287209 3.9289889 -7353.9609
+232887.0290288252 3.9289103 -7354.3545
+232888.0290289295 3.9287922 -7354.3545
+232889.0290290338 3.9287136 -7354.9453
+232890.0290291382 3.928556 -7354.3545
+232891.0290292425 3.9284773 -7353.7646
+232892.0290293468 3.9283986 -7354.3545
+232893.0290294511 3.9282017 -7353.9609
+232894.0290295554 3.9282804 -7354.1577
+232895.0290296597 3.9281623 -7353.9609
+232896.029029764 3.9280441 -7354.7485
+232897.0290298683 3.9280441 -7355.1421
+232898.0290299726 3.9278474 -7354.3545
+232899.0290300769 3.9277291 -7354.7485
+232900.0290301812 3.9276505 -7353.3706
+232901.0290302855 3.9276111 -7354.5513
+232902.0290303899 3.9276505 -7354.3545
+232903.0290304942 3.9274142 -7354.5513
+232904.0290305985 3.9272962 -7354.7485
+232905.0290307028 3.9273355 -7354.9453
+232906.0290308071 3.9270992 -7354.5513
+232907.0290309114 3.9270205 -7353.9609
+232908.0290310157 3.9269025 -7354.5513
+232909.02903112 3.9269025 -7353.7646
+232910.0290312243 3.9267056 -7354.1577
+232911.0290313286 3.9267449 -7354.3545
+232912.0290314329 3.9265876 -7354.3545
+232913.0290315372 3.92643 -7354.1577
+232914.0290316415 3.9263906 -7353.9609
+232915.0290317459 3.9263513 -7354.9453
+232916.0290318502 3.9261937 -7353.5669
+232917.0290319545 3.926115 -7354.1577
+232918.0290320588 3.925997 -7354.1577
+232919.0290321631 3.9259577 -7354.7485
+232920.0290322674 3.9258394 -7354.7485
+232921.0290323717 3.9257607 -7354.1577
+232922.029032476 3.9257214 -7354.1577
+232923.0290325803 3.9256034 -7353.9609
+232924.0290326846 3.9254851 -7354.3545
+232925.0290327889 3.9254065 -7354.1577
+232926.0290328932 3.9253671 -7353.9609
+232927.0290329976 3.9251308 -7354.1577
+232928.0290331019 3.9251308 -7353.7646
+232929.0290332062 3.9250915 -7354.3545
+232930.0290333105 3.9249339 -7354.1577
+232931.0290334148 3.9247766 -7353.9609
+232932.0290335191 3.9246979 -7354.3545
+232933.0290336234 3.9246979 -7353.9609
+232934.0290337277 3.9245796 -7354.1577
+232935.029033832 3.9244616 -7354.7485
+232936.0290339363 3.9244223 -7353.9609
+232937.0290340406 3.9243829 -7354.1577
+232938.0290341449 3.924186 -7355.1421
+232939.0290342493 3.9241467 -7354.5513
+232940.0290343536 3.9240284 -7354.5513
+232941.0290344579 3.923871 -7354.3545
+232942.0290345622 3.923871 -7354.5513
+232943.0290346665 3.9237134 -7354.3545
+232944.0290347708 3.9235954 -7354.3545
+232945.0290348751 3.9234774 -7354.9453
+232946.0290349794 3.9234378 -7353.9609
+232947.0290350837 3.9234378 -7354.5513
+232948.029035188 3.9232411 -7354.1577
+232949.0290352923 3.9232411 -7354.5513
+232950.0290353966 3.9230049 -7354.1577
+232951.0290355009 3.9230049 -7354.3545
+232952.0290356053 3.9228475 -7354.1577
+232953.0290357096 3.9226899 -7353.1738
+232954.0290358139 3.9226506 -7354.1577
+232955.0290359182 3.9225719 -7354.1577
+232956.0290360225 3.9224536 -7354.3545
+232957.0290361268 3.922375 -7354.5513
+232958.0290362311 3.9222963 -7354.1577
+232959.0290363354 3.9222569 -7354.3545
+232960.0290364397 3.9219813 -7353.7646
+232961.029036544 3.9219024 -7354.7485
+232962.0290366483 3.9217844 -7354.3545
+232963.0290367526 3.9217057 -7353.9609
+232964.029036857 3.9216664 -7354.7485
+232965.0290369613 3.9216664 -7354.5513
+232966.0290370656 3.9215481 -7354.5513
+232967.0290371699 3.9213908 -7353.7646
+232968.0290372742 3.9213121 -7353.7646
+232969.0290373785 3.9212332 -7354.1577
+232970.0290374828 3.9210758 -7354.5513
+232971.0290375871 3.9210365 -7354.3545
+232972.0290376914 3.9208789 -7354.3545
+232973.0290377957 3.9208002 -7354.1577
+232974.0290379 3.9207215 -7353.9609
+232975.0290380043 3.9206426 -7354.1577
+232976.0290381087 3.9205246 -7355.3384
+232977.029038213 3.9205246 -7354.3545
+232978.0290383173 3.9202883 -7354.1577
+232979.0290384216 3.9202096 -7354.1577
+232980.0290385259 3.9200521 -7353.7646
+232981.0290386302 3.920131 -7355.5352
+232982.0290387345 3.9198947 -7354.3545
+232983.0290388388 3.919816 -7353.7646
+232984.0290389431 3.9198947 -7353.7646
+232985.0290390474 3.9197371 -7353.5669
+232986.0290391517 3.9196978 -7354.5513
+232987.029039256 3.9196191 -7353.7646
+232988.0290393604 3.9194221 -7354.3545
+232989.0290394647 3.9193435 -7354.3545
+232990.029039569 3.9192255 -7353.3706
+232991.0290396733 3.9191072 -7354.5513
+232992.0290397776 3.9190285 -7353.9609
+232993.0290398819 3.9189498 -7353.7646
+232994.0290399862 3.9187922 -7354.1577
+232995.0290400905 3.9187136 -7353.9609
+232996.0290401948 3.9185562 -7353.5669
+232997.0290402991 3.9185169 -7353.9609
+232998.0290404034 3.9183199 -7353.9609
+232999.0290405077 3.9183593 -7354.9453
+233000.029040612 3.9182017 -7354.3545
+233001.0290407164 3.9180837 -7354.3545
+233002.0290408207 3.9180837 -7354.3545
+233003.029040925 3.9179263 -7353.9609
+233004.0290410293 3.9177687 -7354.1577
+233005.0290411336 3.9177294 -7353.5669
+233006.0290412379 3.9176114 -7354.3545
+233007.0290413422 3.9174931 -7354.9453
+233008.0290414465 3.9173751 -7353.9609
+233009.0290415508 3.9173357 -7354.5513
+233010.0290416551 3.9172175 -7354.7485
+233011.0290417594 3.9171388 -7354.7485
+233012.0290418637 3.9170601 -7354.7485
+233013.0290419681 3.9169025 -7354.5513
+233014.0290420724 3.9169025 -7353.5669
+233015.0290421767 3.9166665 -7354.3545
+233016.029042281 3.9166269 -7353.5669
+233017.0290423853 3.9165876 -7354.7485
+233018.0290424896 3.9164696 -7354.3545
+233019.0290425939 3.9163513 -7354.9453
+233020.0290426982 3.9163909 -7353.7646
+233021.0290428025 3.9163513 -7353.9609
+233022.0290429068 3.9161153 -7353.7646
+233023.0290430111 3.915997 -7353.9609
+233024.0290431154 3.9160364 -7354.3545
+233025.0290432198 3.9158003 -7354.3545
+233026.0290433241 3.915761 -7354.1577
+233027.0290434284 3.9156821 -7354.7485
+233028.0290435327 3.9156034 -7353.9609
+233029.029043637 3.9154065 -7354.5513
+233030.0290437413 3.9152884 -7354.3545
+233031.0290438456 3.9152884 -7353.7646
+233032.0290439499 3.9151311 -7354.1577
+233033.0290440542 3.9150915 -7354.3545
+233034.0290441585 3.9149735 -7354.3545
+233035.0290442628 3.9149342 -7354.7485
+233036.0290443671 3.9147372 -7354.7485
+233037.0290444714 3.9146585 -7354.5513
+233038.0290445758 3.9145799 -7353.5669
+233039.0290446801 3.9145405 -7354.7485
+233040.0290447844 3.9143436 -7353.9609
+233041.0290448887 3.9143043 -7354.5513
+233042.029044993 3.9141073 -7354.7485
+233043.0290450973 3.914186 -7353.9609
+233044.0290452016 3.914068 -7354.5513
+233045.0290453059 3.913871 -7353.7646
+233046.0290454102 3.9137924 -7354.1577
+233047.0290455145 3.913635 -7353.9609
+233048.0290456188 3.913635 -7353.5669
+233049.0290457231 3.9135168 -7353.7646
+233050.0290458275 3.9133594 -7354.3545
+233051.0290459318 3.9133201 -7354.1577
+233052.0290460361 3.9130838 -7354.1577
+233053.0290461404 3.9132018 -7353.5669
+233054.0290462447 3.9130445 -7354.3545
+233055.029046349 3.9128869 -7355.1421
+233056.0290464533 3.9127295 -7354.1577
+233057.0290465576 3.9126902 -7353.5669
+233058.0290466619 3.9126902 -7353.9609
+233059.0290467662 3.9125326 -7353.3706
+233060.0290468705 3.9123752 -7353.9609
+233061.0290469748 3.912257 -7354.7485
+233062.0290470792 3.9122176 -7353.9609
+233063.0290471835 3.9120603 -7354.5513
+233064.0290472878 3.911942 -7353.9609
+233065.0290473921 3.911824 -7354.5513
+233066.0290474964 3.9117846 -7354.7485
+233067.0290476007 3.9117846 -7354.1577
+233068.029047705 3.911509 -7354.7485
+233069.0290478093 3.9114304 -7353.9609
+233070.0290479136 3.9114304 -7354.3545
+233071.0290480179 3.9112728 -7354.5513
+233072.0290481222 3.9111152 -7354.1577
+233073.0290482265 3.9111152 -7354.3545
+233074.0290483308 3.9109185 -7354.1577
+233075.0290484352 3.9109185 -7354.7485
+233076.0290485395 3.9107215 -7354.7485
+233077.0290486438 3.9106429 -7354.1577
+233078.0290487481 3.9106429 -7354.7485
+233079.0290488524 3.9104459 -7354.5513
+233080.0290489567 3.9104459 -7354.3545
+233081.029049061 3.9102886 -7353.9609
+233082.0290491653 3.9102099 -7353.5669
+233083.0290492696 3.9100523 -7354.9453
+233084.0290493739 3.9099343 -7354.9453
+233085.0290494782 3.9098949 -7354.5513
+233086.0290495825 3.9098554 -7354.3545
+233087.0290496869 3.9095404 -7354.3545
+233088.0290497912 3.90958 -7353.5669
+233089.0290498955 3.9095011 -7354.1577
+233090.0290499998 3.9093831 -7353.7646
+233091.0290501041 3.9092255 -7354.7485
+233092.0290502084 3.9091468 -7353.5669
+233093.0290503127 3.9090288 -7354.3545
+233094.029050417 3.9089499 -7354.1577
+233095.0290505213 3.9087925 -7354.7485
+233096.0290506256 3.9087925 -7354.5513
+233097.0290507299 3.9086745 -7354.1577
+233098.0290508342 3.9085562 -7354.3545
+233099.0290509386 3.9084775 -7354.3545
+233100.0290510429 3.9083595 -7354.5513
+233101.0290511472 3.9083595 -7353.7646
+233102.0290512515 3.9081233 -7354.5513
+233103.0290513558 3.9080446 -7353.9609
+233104.0290514601 3.9078083 -7353.5669
+233105.0290515644 3.9078083 -7354.3545
+233106.0290516687 3.90769 -7353.7646
+233107.029051773 3.907572 -7354.5513
+233108.0290518773 3.907454 -7354.7485
+233109.0290519816 3.9073751 -7354.3545
+233110.0290520859 3.9072964 -7353.5669
+233111.0290521903 3.9071784 -7354.7485
+233112.0290522946 3.9071391 -7354.1577
+233113.0290523989 3.9070995 -7354.7485
+233114.0290525032 3.9068635 -7354.1577
+233115.0290526075 3.9068241 -7354.5513
+233116.0290527118 3.9066665 -7354.5513
+233117.0290528161 3.9066272 -7354.3545
+233118.0290529204 3.9065092 -7354.1577
+233119.0290530247 3.9063516 -7354.1577
+233120.029053129 3.9061546 -7353.9609
+233121.0290532333 3.9061153 -7354.3545
+233122.0290533376 3.9060366 -7354.5513
+233123.0290534419 3.9059973 -7354.3545
+233124.0290535463 3.9059579 -7354.3545
+233125.0290536506 3.9058397 -7354.5513
+233126.0290537549 3.9056036 -7354.3545
+233127.0290538592 3.905643 -7354.7485
+233128.0290539635 3.9054461 -7353.9609
+233129.0290540678 3.9053674 -7354.7485
+233130.0290541721 3.9051704 -7355.1421
+233131.0290542764 3.9051311 -7354.5513
+233132.0290543807 3.9050524 -7354.3545
+233133.029054485 3.9048555 -7354.5513
+233134.0290545893 3.9047768 -7353.5669
+233135.0290546936 3.9047375 -7354.5513
+233136.029054798 3.9045012 -7355.3384
+233137.0290549023 3.9045405 -7354.1577
+233138.0290550066 3.9043832 -7353.7646
+233139.0290551109 3.9043043 -7354.3545
+233140.0290552152 3.9041469 -7354.3545
+233141.0290553195 3.9040682 -7354.9453
+233142.0290554238 3.90395 -7354.3545
+233143.0290555281 3.903832 -7354.7485
+233144.0290556324 3.9038713 -7354.5513
+233145.0290557367 3.9037137 -7354.7485
+233146.029055841 3.9035563 -7354.5513
+233147.0290559453 3.9035563 -7354.5513
+233148.0290560497 3.9033594 -7354.3545
+233149.029056154 3.9033594 -7353.9609
+233150.0290562583 3.9031234 -7353.3706
+233151.0290563626 3.9031627 -7354.7485
+233152.0290564669 3.9030051 -7354.3545
+233153.0290565712 3.9028478 -7354.5513
+233154.0290566755 3.9027295 -7355.3384
+233155.0290567798 3.9027295 -7354.1577
+233156.0290568841 3.9026115 -7354.3545
+233157.0290569884 3.9024146 -7354.1577
+233158.0290570927 3.9023359 -7354.1577
+233159.029057197 3.9022179 -7353.9609
+233160.0290573013 3.9021783 -7353.7646
+233161.0290574057 3.9020209 -7354.7485
+233162.02905751 3.9019816 -7354.5513
+233163.0290576143 3.9018633 -7353.9609
+233164.0290577186 3.9016666 -7354.3545
+233165.0290578229 3.901588 -7354.5513
+233166.0290579272 3.9014304 -7354.3545
+233167.0290580315 3.9014304 -7354.5513
+233168.0290581358 3.901273 -7353.7646
+233169.0290582401 3.9013517 -7354.5513
+233170.0290583444 3.9011941 -7354.3545
+233171.0290584487 3.9010367 -7354.7485
+233172.029058553 3.9009185 -7354.3545
+233173.0290586574 3.9008791 -7354.3545
+233174.0290587617 3.9008398 -7353.9609
+233175.029058866 3.9006035 -7354.5513
+233176.0290589703 3.9004855 -7353.9609
+233177.0290590746 3.9004068 -7354.1577
+233178.0290591789 3.9003279 -7353.7646
+233179.0290592832 3.9002099 -7354.3545
+233180.0290593875 3.9000919 -7354.5513
+233181.0290594918 3.900013 -7353.7646
+233182.0290595961 3.899895 -7353.9609
+233183.0290597004 3.8998556 -7354.1577
+233184.0290598047 3.89958 -7354.1577
+233185.0290599091 3.89958 -7354.5513
+233186.0290600134 3.89958 -7354.3545
+233187.0290601177 3.8995013 -7354.9453
+233188.029060222 3.8992257 -7353.9609
+233189.0290603263 3.8991077 -7354.1577
+233190.0290604306 3.8990288 -7353.9609
+233191.0290605349 3.8990288 -7354.1577
+233192.0290606392 3.8988714 -7354.3545
+233193.0290607435 3.8987532 -7353.9609
+233194.0290608478 3.8986745 -7354.5513
+233195.0290609521 3.8986351 -7354.3545
+233196.0290610564 3.8985171 -7354.9453
+233197.0290611607 3.8983202 -7353.9609
+233198.0290612651 3.8983202 -7354.7485
+233199.0290613694 3.8983202 -7353.9609
+233200.0290614737 3.8980839 -7354.5513
+233201.029061578 3.8979659 -7354.1577
+233202.0290616823 3.8978477 -7353.5669
+233203.0290617866 3.8977296 -7353.9609
+233204.0290618909 3.8976116 -7354.5513
+233205.0290619952 3.8975723 -7353.9609
+233206.0290620995 3.8975327 -7354.3545
+233207.0290622038 3.897454 -7354.3545
+233208.0290623081 3.8972573 -7354.3545
+233209.0290624124 3.8971391 -7354.1577
+233210.0290625168 3.8970604 -7353.3706
+233211.0290626211 3.8970211 -7354.3545
+233212.0290627254 3.8969424 -7354.3545
+233213.0290628297 3.8967848 -7354.3545
+233214.029062934 3.8966668 -7354.3545
+233215.0290630383 3.8965092 -7353.7646
+233216.0290631426 3.8965092 -7353.9609
+233217.0290632469 3.8964698 -7354.1577
+233218.0290633512 3.8961942 -7354.9453
+233219.0290634555 3.8961942 -7354.7485
+233220.0290635598 3.8961155 -7354.5513
+233221.0290636641 3.8959186 -7354.5513
+233222.0290637685 3.8958793 -7354.3545
+233223.0290638728 3.8957219 -7354.1577
+233224.0290639771 3.895643 -7354.1577
+233225.0290640814 3.895525 -7354.7485
+233226.0290641857 3.895407 -7355.1421
+233227.02906429 3.8953674 -7354.3545
+233228.0290643943 3.8952494 -7354.5513
+233229.0290644986 3.8950524 -7354.7485
+233230.0290646029 3.8950524 -7353.7646
+233231.0290647072 3.8948557 -7354.5513
+233232.0290648115 3.8948557 -7354.9453
+233233.0290649158 3.8947375 -7354.3545
+233234.0290650202 3.8946981 -7354.1577
+233235.0290651245 3.8944619 -7354.7485
+233236.0290652288 3.8945014 -7353.5669
+233237.0290653331 3.8943439 -7353.7646
+233238.0290654374 3.8941469 -7353.9609
+233239.0290655417 3.8939896 -7354.3545
+233240.029065646 3.8941076 -7354.5513
+233241.0290657503 3.893832 -7354.5513
+233242.0290658546 3.8937926 -7353.5669
+233243.0290659589 3.8936746 -7354.5513
+233244.0290660632 3.8936353 -7354.5513
+233245.0290661675 3.893517 -7353.3706
+233246.0290662718 3.8934777 -7354.3545
+233247.0290663762 3.893399 -7353.7646
+233248.0290664805 3.893281 -7353.9609
+233249.0290665848 3.893084 -7354.1577
+233250.0290666891 3.892966 -7354.5513
+233251.0290667934 3.8928871 -7354.1577
+233252.0290668977 3.8927691 -7354.3545
+233253.029067002 3.8926904 -7353.9609
+233254.0290671063 3.8925722 -7353.9609
+233255.0290672106 3.8924541 -7354.1577
+233256.0290673149 3.8924148 -7354.1577
+233257.0290674192 3.8921785 -7354.9453
+233258.0290675235 3.8922966 -7354.1577
+233259.0290676279 3.8920999 -7354.9453
+233260.0290677322 3.8920212 -7353.5669
+233261.0290678365 3.8919423 -7354.5513
+233262.0290679408 3.8917849 -7353.9609
+233263.0290680451 3.8917062 -7354.3545
+233264.0290681494 3.8915093 -7353.9609
+233265.0290682537 3.891391 -7353.7646
+233266.029068358 3.891391 -7353.9609
+233267.0290684623 3.891273 -7354.1577
+233268.0290685666 3.891155 -7354.5513
+233269.0290686709 3.8909974 -7354.5513
+233270.0290687752 3.8909974 -7354.3545
+233271.0290688796 3.8908794 -7354.5513
+233272.0290689839 3.8907218 -7354.3545
+233273.0290690882 3.8907218 -7354.1577
+233274.0290691925 3.8906038 -7354.3545
+233275.0290692968 3.8904462 -7354.3545
+233276.0290694011 3.8903282 -7354.3545
+233277.0290695054 3.8902495 -7354.3545
+233278.0290696097 3.8900526 -7354.3545
+233279.029069714 3.8900526 -7354.9453
+233280.0290698183 3.8900132 -7354.1577
+233281.0290699226 3.8897769 -7354.5513
+233282.0290700269 3.8897769 -7354.9453
+233283.0290701312 3.8897376 -7353.3706
+233284.0290702356 3.889462 -7354.5513
+233285.0290703399 3.889462 -7354.3545
+233286.0290704442 3.8893833 -7353.9609
+233287.0290705485 3.8892653 -7354.7485
+233288.0290706528 3.8891077 -7354.9453
+233289.0290707571 3.8891077 -7354.3545
+233290.0290708614 3.8890684 -7354.5513
+233291.0290709657 3.8887928 -7354.3545
+233292.02907107 3.8888321 -7353.9609
+233293.0290711743 3.8885958 -7353.9609
+233294.0290712786 3.8885565 -7354.5513
+233295.0290713829 3.8885171 -7354.1577
+233296.0290714873 3.8882809 -7354.1577
+233297.0290715916 3.8883204 -7354.5513
+233298.0290716959 3.8882809 -7354.3545
+233299.0290718002 3.8880448 -7354.3545
+233300.0290719045 3.8879266 -7354.1577
+233301.0290720088 3.8877692 -7354.7485
+233302.0290721131 3.8878086 -7353.7646
+233303.0290722174 3.8876903 -7355.5352
+233304.0290723217 3.8875723 -7354.5513
+233305.029072426 3.8874936 -7354.3545
+233306.0290725303 3.8872573 -7353.3706
+233307.0290726346 3.887218 -7355.1421
+233308.029072739 3.887218 -7354.3545
+233309.0290728433 3.8870604 -7354.9453
+233310.0290729476 3.8869424 -7354.3545
+233311.0290730519 3.8868637 -7353.7646
+233312.0290731562 3.886785 -7354.7485
+233313.0290732605 3.8866668 -7354.3545
+233314.0290733648 3.8865881 -7354.3545
+233315.0290734691 3.8864701 -7354.3545
+233316.0290735734 3.8863125 -7354.5513
+233317.0290736777 3.8863125 -7353.9609
+233318.029073782 3.8861551 -7354.3545
+233319.0290738863 3.8861156 -7354.5513
+233320.0290739906 3.8860369 -7354.5513
+233321.029074095 3.8859189 -7354.3545
+233322.0290741993 3.8858006 -7354.5513
+233323.0290743036 3.8856432 -7353.9609
+233324.0290744079 3.8856432 -7354.1577
+233325.0290745122 3.8854856 -7353.9609
+233326.0290746165 3.8853676 -7354.1577
+233327.0290747208 3.8852496 -7354.5513
+233328.0290748251 3.885092 -7354.1577
+233329.0290749294 3.8850527 -7353.9609
+233330.0290750337 3.8850133 -7354.7485
+233331.029075138 3.8848164 -7353.9609
+233332.0290752423 3.8847771 -7353.9609
+233333.0290753467 3.8846984 -7354.3545
+233334.029075451 3.8844621 -7354.5513
+233335.0290755553 3.8844228 -7353.7646
+233336.0290756596 3.8844228 -7353.7646
+233337.0290757639 3.8842652 -7354.9453
+233338.0290758682 3.8840685 -7353.9609
+233339.0290759725 3.8840292 -7354.3545
+233340.0290760768 3.8838322 -7354.1577
+233341.0290761811 3.8837142 -7354.1577
+233342.0290762854 3.8836746 -7354.5513
+233343.0290763897 3.8837142 -7354.1577
+233344.029076494 3.8835566 -7354.5513
+233345.0290765984 3.8833992 -7354.5513
+233346.0290767027 3.883281 -7353.7646
+233347.029076807 3.8832023 -7354.3545
+233348.0290769113 3.8831236 -7354.3545
+233349.0290770156 3.8828874 -7354.1577
+233350.0290771199 3.8828874 -7354.1577
+233351.0290772242 3.8828874 -7354.1577
+233352.0290773285 3.8827693 -7354.7485
+233353.0290774328 3.8826118 -7354.5513
+233354.0290775371 3.8825331 -7354.5513
+233355.0290776414 3.8824542 -7354.1577
+233356.0290777457 3.8823361 -7354.3545
+233357.02907785 3.8822181 -7353.7646
+233358.0290779544 3.8822575 -7354.3545
+233359.0290780587 3.8820605 -7354.1577
+233360.029078163 3.8819818 -7354.3545
+233361.0290782673 3.8818243 -7354.9453
+233362.0290783716 3.8817456 -7354.5513
+233363.0290784759 3.8817062 -7353.7646
+233364.0290785802 3.8815882 -7354.7485
+233365.0290786845 3.8814306 -7353.3706
+233366.0290787888 3.8814306 -7354.1577
+233367.0290788931 3.8813519 -7354.5513
+233368.0290789974 3.8812733 -7353.5669
+233369.0290791017 3.881155 -7354.3545
+233370.0290792061 3.881037 -7354.1577
+233371.0290793104 3.8809977 -7354.7485
+233372.0290794147 3.8808401 -7354.7485
+233373.029079519 3.8808401 -7354.3545
+233374.0290796233 3.8806434 -7354.5513
+233375.0290797276 3.8806434 -7353.7646
+233376.0290798319 3.8804464 -7353.9609
+233377.0290799362 3.8804071 -7354.3545
+233378.0290800405 3.8802102 -7354.1577
+233379.0290801448 3.8800921 -7354.3545
+233380.0290802491 3.8800921 -7354.1577
+233381.0290803534 3.8800135 -7354.5513
+233382.0290804578 3.8799739 -7354.1577
+233383.0290805621 3.8798165 -7353.5669
+233384.0290806664 3.8797379 -7354.1577
+233385.0290807707 3.8796196 -7354.3545
+233386.029080875 3.8795409 -7354.3545
+233387.0290809793 3.8794229 -7354.3545
+233388.0290810836 3.8793046 -7354.7485
+233389.0290811879 3.8791473 -7355.1421
+233390.0290812922 3.879108 -7354.9453
+233391.0290813965 3.8789897 -7354.1577
+233392.0290815008 3.8789504 -7354.9453
+233393.0290816051 3.8787534 -7353.3706
+233394.0290817095 3.8787534 -7353.9609
+233395.0290818138 3.8785961 -7354.5513
+233396.0290819181 3.8784781 -7355.1421
+233397.0290820224 3.8783991 -7354.1577
+233398.0290821267 3.8782418 -7354.7485
+233399.029082231 3.8782024 -7354.1577
+233400.0290823353 3.8780448 -7353.9609
+233401.0290824396 3.8780448 -7354.1577
+233402.0290825439 3.8778875 -7355.1421
+233403.0290826482 3.8777299 -7354.3545
+233404.0290827525 3.8777299 -7353.5669
+233405.0290828568 3.8775332 -7355.3384
+233406.0290829611 3.8773756 -7354.5513
+233407.0290830655 3.8774543 -7353.7646
+233408.0290831698 3.8772576 -7353.7646
+233409.0290832741 3.8772182 -7353.3706
+233410.0290833784 3.8771 -7354.3545
+233411.0290834827 3.8769031 -7354.7485
+233412.029083587 3.8767457 -7353.7646
+233413.0290836913 3.876667 -7353.9609
+233414.0290837956 3.8765881 -7354.1577
+233415.0290838999 3.8765094 -7354.3545
+233416.0290840042 3.8763521 -7354.3545
+233417.0290841085 3.8762732 -7353.9609
+233418.0290842128 3.8761945 -7353.9609
+233419.0290843172 3.8761551 -7354.1577
+233420.0290844215 3.8760371 -7354.5513
+233421.0290845258 3.8758795 -7353.5669
+233422.0290846301 3.8757615 -7353.7646
+233423.0290847344 3.8755252 -7354.1577
+233424.0290848387 3.8755252 -7354.3545
+233425.029084943 3.8754466 -7354.1577
+233426.0290850473 3.8753679 -7353.5669
+233427.0290851516 3.8752496 -7353.9609
+233428.0290852559 3.8751316 -7353.9609
+233429.0290853602 3.8750134 -7354.5513
+233430.0290854645 3.8748953 -7354.1577
+233431.0290855689 3.8748167 -7353.9609
+233432.0290856732 3.8747377 -7354.7485
+233433.0290857775 3.8746197 -7353.9609
+233434.0290858818 3.8745017 -7354.5513
+233435.0290859861 3.874541 -7353.9609
+233436.0290860904 3.8741868 -7353.9609
+233437.0290861947 3.8743048 -7353.9609
+233438.029086299 3.8739898 -7354.3545
+233439.0290864033 3.8740292 -7354.5513
+233440.0290865076 3.8738718 -7354.5513
+233441.0290866119 3.8737142 -7354.9453
+233442.0290867162 3.8736749 -7353.9609
+233443.0290868205 3.8736355 -7354.7485
+233444.0290869249 3.8735962 -7353.9609
+233445.0290870292 3.8734386 -7354.9453
+233446.0290871335 3.8733599 -7354.3545
+233447.0290872378 3.8732023 -7354.1577
+233448.0290873421 3.8731236 -7355.1421
+233449.0290874464 3.872927 -7353.5669
+233450.0290875507 3.8727694 -7353.9609
+233451.029087655 3.87273 -7354.3545
+233452.0290877593 3.872612 -7353.1738
+233453.0290878636 3.8724937 -7354.3545
+233454.0290879679 3.8723757 -7355.3384
+233455.0290880722 3.8723364 -7354.1577
+233456.0290881766 3.8721788 -7353.9609
+233457.0290882809 3.8720214 -7353.9609
+233458.0290883852 3.8719425 -7353.9609
+233459.0290884895 3.8719821 -7354.7485
+233460.0290885938 3.8717458 -7353.9609
+233461.0290886981 3.8717458 -7354.9453
+233462.0290888024 3.8715489 -7354.5513
+233463.0290889067 3.871352 -7354.3545
+233464.029089011 3.8711946 -7354.5513
+233465.0290891153 3.8711946 -7354.7485
+233466.0290892196 3.8711553 -7354.3545
+233467.0290893239 3.8710766 -7354.5513
+233468.0290894283 3.8709977 -7353.7646
+233469.0290895326 3.870919 -7354.7485
+233470.0290896369 3.8706827 -7353.9609
+233471.0290897412 3.8705254 -7354.9453
+233472.0290898455 3.8705254 -7353.7646
+233473.0290899498 3.8703678 -7354.7485
+233474.0290900541 3.8702104 -7354.1577
+233475.0290901584 3.8701317 -7354.5513
+233476.0290902627 3.8700135 -7354.1577
+233477.029090367 3.8698165 -7354.9453
+233478.0290904713 3.8698955 -7354.5513
+233479.0290905756 3.8697379 -7354.3545
+233480.0290906799 3.8695412 -7354.5513
+233481.0290907843 3.8694229 -7354.5513
+233482.0290908886 3.8693836 -7354.3545
+233483.0290909929 3.8692656 -7354.7485
+233484.0290910972 3.8691866 -7353.9609
+233485.0290912015 3.8690293 -7353.5669
+233486.0290913058 3.8691473 -7353.7646
+233487.0290914101 3.8689506 -7353.9609
+233488.0290915144 3.8688323 -7353.7646
+233489.0290916187 3.8686357 -7354.1577
+233490.029091723 3.868675 -7354.1577
+233491.0290918273 3.8684387 -7354.5513
+233492.0290919316 3.86836 -7354.3545
+233493.029092036 3.8681631 -7354.9453
+233494.0290921403 3.8681238 -7355.1421
+233495.0290922446 3.8680844 -7353.3706
+233496.0290923489 3.8678088 -7353.9609
+233497.0290924532 3.8678482 -7354.5513
+233498.0290925575 3.8677695 -7354.5513
+233499.0290926618 3.8676119 -7353.5669
+233500.0290927661 3.8674545 -7353.7646
+233501.0290928704 3.8674545 -7354.7485
+233502.0290929747 3.8672969 -7354.7485
+233503.029093079 3.8671789 -7354.3545
+233504.0290931833 3.8671396 -7354.1577
+233505.0290932877 3.8670213 -7353.9609
+233506.029093392 3.8671002 -7354.5513
+233507.0290934963 3.8667853 -7353.9609
+233508.0290936006 3.8667853 -7354.3545
+233509.0290937049 3.8666277 -7353.9609
+233510.0290938092 3.8665097 -7354.7485
+233511.0290939135 3.866431 -7354.7485
+233512.0290940178 3.8663521 -7354.5513
+233513.0290941221 3.8662341 -7354.1577
+233514.0290942264 3.8661158 -7354.1577
+233515.0290943307 3.8661158 -7354.3545
+233516.029094435 3.8658404 -7354.3545
+233517.0290945394 3.8658404 -7354.5513
+233518.0290946437 3.8657615 -7354.3545
+233519.029094748 3.8655648 -7354.1577
+233520.0290948523 3.8655648 -7354.5513
+233521.0290949566 3.8654072 -7353.3706
+233522.0290950609 3.8653286 -7354.3545
+233523.0290951652 3.8651316 -7353.5669
+233524.0290952695 3.8652105 -7354.3545
+233525.0290953738 3.8649349 -7354.5513
+233526.0290954781 3.8649349 -7354.3545
+233527.0290955824 3.8647773 -7354.5513
+233528.0290956867 3.8647773 -7354.1577
+233529.029095791 3.86462 -7354.1577
+233530.0290958954 3.8645411 -7354.3545
+233531.0290959997 3.864423 -7354.5513
+233532.029096104 3.8642261 -7353.9609
+233533.0290962083 3.8641474 -7354.9453
+233534.0290963126 3.8640687 -7353.9609
+233535.0290964169 3.8639901 -7354.1577
+233536.0290965212 3.8639112 -7354.7485
+233537.0290966255 3.8638718 -7354.5513
+233538.0290967298 3.8636751 -7354.5513
+233539.0290968341 3.8635569 -7354.7485
+233540.0290969384 3.8634388 -7354.3545
+233541.0290970427 3.8632813 -7353.7646
+233542.0290971471 3.8632026 -7353.9609
+233543.0290972514 3.8632419 -7354.3545
+233544.0290973557 3.8631239 -7354.3545
+233545.02909746 3.8630056 -7354.5513
+233546.0290975643 3.8628876 -7354.1577
+233547.0290976686 3.8628483 -7353.3706
+233548.0290977729 3.8628483 -7354.9453
+233549.0290978772 3.862612 -7353.7646
+233550.0290979815 3.8624547 -7354.1577
+233551.0290980858 3.8624151 -7354.7485
+233552.0290981901 3.8622971 -7353.9609
+233553.0290982944 3.8622971 -7354.5513
+233554.0290983988 3.8621397 -7354.5513
+233555.0290985031 3.8621001 -7354.1577
+233556.0290986074 3.8619428 -7354.7485
+233557.0290987117 3.8618641 -7354.3545
+233558.029098816 3.8617065 -7354.5513
+233559.0290989203 3.8615491 -7355.1421
+233560.0290990246 3.8614702 -7354.1577
+233561.0290991289 3.8613522 -7353.9609
+233562.0290992332 3.8612735 -7354.7485
+233563.0290993375 3.8612342 -7354.5513
+233564.0290994418 3.8610766 -7354.7485
+233565.0290995461 3.8609979 -7354.3545
+233566.0290996504 3.8609979 -7354.3545
+233567.0290997548 3.8607616 -7354.9453
+233568.0290998591 3.860683 -7353.5669
+233569.0290999634 3.8606043 -7354.3545
+233570.0291000677 3.8604467 -7354.9453
+233571.029100172 3.860368 -7354.9453
+233572.0291002763 3.8602893 -7354.3545
+233573.0291003806 3.8602104 -7354.3545
+233574.0291004849 3.8600137 -7354.1577
+233575.0291005892 3.8599744 -7354.1577
+233576.0291006935 3.8599348 -7354.5513
+233577.0291007978 3.8597381 -7354.9453
+233578.0291009021 3.8596594 -7354.5513
+233579.0291010065 3.8594625 -7354.5513
+233580.0291011108 3.8593838 -7353.7646
+233581.0291012151 3.8593445 -7354.5513
+233582.0291013194 3.8591869 -7353.5669
+233583.0291014237 3.8589506 -7354.1577
+233584.029101528 3.8589506 -7354.1577
+233585.0291016323 3.8588719 -7354.3545
+233586.0291017366 3.8587143 -7353.9609
+233587.0291018409 3.8587143 -7355.1421
+233588.0291019452 3.858557 -7355.1421
+233589.0291020495 3.858439 -7354.3545
+233590.0291021538 3.8582814 -7354.5513
+233591.0291022582 3.8581634 -7354.1577
+233592.0291023625 3.8580844 -7354.1577
+233593.0291024668 3.8580058 -7355.1421
+233594.0291025711 3.8578484 -7353.5669
+233595.0291026754 3.8577302 -7353.9609
+233596.0291027797 3.8576121 -7354.3545
+233597.029102884 3.8574545 -7354.1577
+233598.0291029883 3.8574941 -7354.5513
+233599.0291030926 3.8573365 -7353.9609
+233600.0291031969 3.8572578 -7354.5513
+233601.0291033012 3.8572185 -7354.3545
+233602.0291034055 3.8569822 -7353.9609
+233603.0291035098 3.8569036 -7354.1577
+233604.0291036142 3.8568246 -7354.1577
+233605.0291037185 3.856746 -7355.1421
+233606.0291038228 3.8566279 -7354.7485
+233607.0291039271 3.856549 -7354.3545
+233608.0291040314 3.856431 -7354.1577
+233609.0291041357 3.8562737 -7354.7485
+233610.02910424 3.856313 -7354.5513
+233611.0291043443 3.8561161 -7353.7646
+233612.0291044486 3.855998 -7354.1577
+233613.0291045529 3.855998 -7354.1577
+233614.0291046572 3.8559191 -7353.9609
+233615.0291047615 3.8557224 -7355.3384
+233616.0291048659 3.8555648 -7354.5513
+233617.0291049702 3.8556042 -7353.7646
+233618.0291050745 3.8553286 -7354.1577
+233619.0291051788 3.8553286 -7354.1577
+233620.0291052831 3.8552499 -7354.5513
+233621.0291053874 3.8552499 -7354.3545
+233622.0291054917 3.8551319 -7355.1421
+233623.029105596 3.8549743 -7354.1577
+233624.0291057003 3.8548956 -7354.5513
+233625.0291058046 3.8547776 -7354.3545
+233626.0291059089 3.8546987 -7353.5669
+233627.0291060132 3.8545413 -7354.5513
+233628.0291061176 3.854502 -7354.3545
+233629.0291062219 3.8543444 -7355.1421
+233630.0291063262 3.8542657 -7354.5513
+233631.0291064305 3.854187 -7354.3545
+233632.0291065348 3.854187 -7353.7646
+233633.0291066391 3.8539507 -7353.9609
+233634.0291067434 3.8539114 -7354.7485
+233635.0291068477 3.8538327 -7353.1738
+233636.029106952 3.8536751 -7354.5513
+233637.0291070563 3.8535178 -7354.3545
+233638.0291071606 3.8533602 -7354.5513
+233639.0291072649 3.8533995 -7354.5513
+233640.0291073693 3.8532028 -7353.9609
+233641.0291074736 3.8530846 -7354.1577
+233642.0291075779 3.8530846 -7354.5513
+233643.0291076822 3.8530059 -7354.5513
+233644.0291077865 3.852809 -7353.9609
+233645.0291078908 3.8527303 -7354.5513
+233646.0291079951 3.8525729 -7354.3545
+233647.0291080994 3.8525729 -7354.9453
+233648.0291082037 3.8524547 -7354.1577
+233649.029108308 3.852258 -7354.7485
+233650.0291084123 3.852258 -7353.7646
+233651.0291085166 3.8521397 -7354.5513
+233652.0291086209 3.8519824 -7354.1577
+233653.0291087253 3.8518248 -7354.7485
+233654.0291088296 3.8517854 -7354.3545
+233655.0291089339 3.8516278 -7354.3545
+233656.0291090382 3.8515885 -7354.3545
+233657.0291091425 3.8514311 -7354.1577
+233658.0291092468 3.8514311 -7354.1577
+233659.0291093511 3.8512735 -7354.5513
+233660.0291094554 3.8511949 -7354.3545
+233661.0291095597 3.8510768 -7354.3545
+233662.029109664 3.8509192 -7354.7485
+233663.0291097683 3.8508406 -7353.9609
+233664.0291098726 3.8507619 -7354.9453
+233665.029109977 3.8506436 -7354.3545
+233666.0291100813 3.8506043 -7353.9609
+233667.0291101856 3.8504076 -7354.3545
+233668.0291102899 3.850368 -7354.1577
+233669.0291103942 3.8503287 -7354.7485
+233670.0291104985 3.8501713 -7354.3545
+233671.0291106028 3.8501713 -7354.5513
+233672.0291107071 3.8499351 -7353.5669
+233673.0291108114 3.8498957 -7353.5669
+233674.0291109157 3.8497775 -7353.9609
+233675.02911102 3.8496201 -7353.7646
+233676.0291111243 3.8495808 -7353.7646
+233677.0291112287 3.8496594 -7353.9609
+233678.029111333 3.8493838 -7353.9609
+233679.0291114373 3.8492658 -7354.1577
+233680.0291115416 3.8491476 -7353.9609
+233681.0291116459 3.8491476 -7353.9609
+233682.0291117502 3.8489115 -7353.9609
+233683.0291118545 3.8488722 -7353.7646
+233684.0291119588 3.8488326 -7354.3545
+233685.0291120631 3.8487539 -7353.7646
+233686.0291121674 3.8485177 -7353.9609
+233687.0291122717 3.848439 -7354.3545
+233688.029112376 3.8483603 -7354.1577
+233689.0291124803 3.848242 -7354.3545
+233690.0291125847 3.8482027 -7354.5513
+233691.029112689 3.8479667 -7353.9609
+233692.0291127933 3.8478878 -7354.3545
+233693.0291128976 3.8478091 -7354.1577
+233694.0291130019 3.8477304 -7354.5513
+233695.0291131062 3.8476517 -7354.3545
+233696.0291132105 3.8474154 -7353.9609
+233697.0291133148 3.8473761 -7354.5513
+233698.0291134191 3.8472972 -7354.1577
+233699.0291135234 3.8470612 -7354.3545
+233700.0291136277 3.8471005 -7354.1577
+233701.029113732 3.8469036 -7354.1577
+233702.0291138364 3.8467855 -7354.5513
+233703.0291139407 3.8466673 -7354.7485
+233704.029114045 3.8465493 -7354.1577
+233705.0291141493 3.8465886 -7354.1577
+233706.0291142536 3.8464706 -7354.7485
+233707.0291143579 3.846313 -7354.3545
+233708.0291144622 3.8461556 -7354.5513
+233709.0291145665 3.846195 -7353.5669
+233710.0291146708 3.8460767 -7354.7485
+233711.0291147751 3.84588 -7355.1421
+233712.0291148794 3.8458407 -7354.9453
+233713.0291149837 3.8457224 -7354.5513
+233714.0291150881 3.8456044 -7354.5513
+233715.0291151924 3.8455651 -7353.9609
+233716.0291152967 3.8454075 -7354.5513
+233717.029115401 3.8453681 -7354.5513
+233718.0291155053 3.8452895 -7354.7485
+233719.0291156096 3.8451715 -7354.9453
+233720.0291157139 3.8451319 -7354.7485
+233721.0291158182 3.8448958 -7353.5669
+233722.0291159225 3.8450139 -7354.1577
+233723.0291160268 3.8447382 -7355.1421
+233724.0291161311 3.8447776 -7353.5669
+233725.0291162354 3.8445809 -7354.1577
+233726.0291163397 3.8444626 -7354.3545
+233727.0291164441 3.8444626 -7353.5669
+233728.0291165484 3.844384 -7355.5352
+233729.0291166527 3.844187 -7353.5669
+233730.029116757 3.8441083 -7354.1577
+233731.0291168613 3.8440297 -7353.7646
+233732.0291169656 3.8438721 -7354.9453
+233733.0291170699 3.8438721 -7353.9609
+233734.0291171742 3.8438327 -7355.1421
+233735.0291172785 3.843636 -7355.1421
+233736.0291173828 3.8435571 -7353.9609
+233737.0291174871 3.8434391 -7354.1577
+233738.0291175914 3.8433604 -7354.5513
+233739.0291176958 3.8433211 -7354.5513
+233740.0291178001 3.8432028 -7353.5669
+233741.0291179044 3.8430059 -7354.3545
+233742.0291180087 3.8429272 -7354.5513
+233743.029118113 3.8428485 -7354.1577
+233744.0291182173 3.8428092 -7354.3545
+233745.0291183216 3.8425729 -7354.3545
+233746.0291184259 3.8426123 -7353.7646
+233747.0291185302 3.8424942 -7354.7485
+233748.0291186345 3.8423367 -7353.9609
+233749.0291187388 3.8423367 -7355.1421
+233750.0291188431 3.84214 -7354.5513
+233751.0291189475 3.8420217 -7353.9609
+233752.0291190518 3.8419824 -7354.1577
+233753.0291191561 3.8417857 -7354.5513
+233754.0291192604 3.8417068 -7354.1577
+233755.0291193647 3.8416674 -7353.7646
+233756.029119469 3.8415494 -7353.7646
+233757.0291195733 3.8415101 -7353.7646
+233758.0291196776 3.8413131 -7353.7646
+233759.0291197819 3.8412738 -7354.1577
+233760.0291198862 3.8411162 -7354.1577
+233761.0291199905 3.8410375 -7354.3545
+233762.0291200948 3.8409195 -7354.3545
+233763.0291201991 3.8408802 -7354.3545
+233764.0291203035 3.8407226 -7353.5669
+233765.0291204078 3.8405256 -7354.7485
+233766.0291205121 3.8404469 -7353.9609
+233767.0291206164 3.8403683 -7354.1577
+233768.0291207207 3.8403683 -7354.7485
+233769.029120825 3.840132 -7354.7485
+233770.0291209293 3.8400533 -7354.1577
+233771.0291210336 3.8399746 -7354.7485
+233772.0291211379 3.8399353 -7354.5513
+233773.0291212422 3.839817 -7354.1577
+233774.0291213465 3.839699 -7354.9453
+233775.0291214508 3.8395808 -7354.9453
+233776.0291215552 3.8394628 -7354.7485
+233777.0291216595 3.8394234 -7354.7485
+233778.0291217638 3.8393447 -7354.1577
+233779.0291218681 3.8392265 -7354.1577
+233780.0291219724 3.8389902 -7354.1577
+233781.0291220767 3.8390691 -7354.7485
+233782.029122181 3.8388329 -7353.9609
+233783.0291222853 3.8387542 -7354.3545
+233784.0291223896 3.8386753 -7354.1577
+233785.0291224939 3.8385179 -7354.7485
+233786.0291225982 3.8384786 -7354.3545
+233787.0291227025 3.838321 -7354.5513
+233788.0291228069 3.8382816 -7354.3545
+233789.0291229112 3.8381636 -7354.7485
+233790.0291230155 3.8380849 -7354.5513
+233791.0291231198 3.8379273 -7354.1577
+233792.0291232241 3.8378093 -7354.5513
+233793.0291233284 3.8376911 -7354.5513
+233794.0291234327 3.8376517 -7354.1577
+233795.029123537 3.8375337 -7354.9453
+233796.0291236413 3.8374155 -7354.5513
+233797.0291237456 3.8372581 -7353.9609
+233798.0291238499 3.8371398 -7354.5513
+233799.0291239542 3.8369431 -7354.3545
+233800.0291240586 3.8369038 -7354.1577
+233801.0291241629 3.8367856 -7354.1577
+233802.0291242672 3.8366282 -7353.7646
+233803.0291243715 3.8365889 -7354.5513
+233804.0291244758 3.8365495 -7353.7646
+233805.0291245801 3.8364313 -7354.3545
+233806.0291246844 3.8362739 -7354.3545
+233807.0291247887 3.836195 -7353.9609
+233808.029124893 3.836077 -7353.5669
+233809.0291249973 3.835959 -7353.7646
+233810.0291251016 3.8359194 -7354.3545
+233811.0291252059 3.8358407 -7353.5669
+233812.0291253102 3.8356044 -7353.7646
+233813.0291254146 3.8356044 -7353.7646
+233814.0291255189 3.8354471 -7354.9453
+233815.0291256232 3.8353291 -7354.5513
+233816.0291257275 3.8352108 -7354.1577
+233817.0291258318 3.8350928 -7354.5513
+233818.0291259361 3.8349745 -7355.1421
+233819.0291260404 3.8349352 -7354.1577
+233820.0291261447 3.8348172 -7355.1421
+233821.029126249 3.8348172 -7353.9609
+233822.0291263533 3.8346596 -7354.7485
+233823.0291264576 3.8345022 -7354.3545
+233824.0291265619 3.8344235 -7353.5669
+233825.0291266663 3.8343842 -7355.1421
+233826.0291267706 3.8342266 -7354.1577
+233827.0291268749 3.8341479 -7354.7485
+233828.0291269792 3.8340297 -7354.7485
+233829.0291270835 3.833951 -7354.5513
+233830.0291271878 3.8338723 -7353.3706
+233831.0291272921 3.833833 -7353.9609
+233832.0291273964 3.8336754 -7353.9609
+233833.0291275007 3.8335574 -7354.5513
+233834.029127605 3.8334391 -7354.5513
+233835.0291277093 3.8332818 -7355.3384
+233836.0291278136 3.8332424 -7354.3545
+233837.029127918 3.8331242 -7354.1577
+233838.0291280223 3.8330061 -7353.9609
+233839.0291281266 3.8329275 -7353.7646
+233840.0291282309 3.8329275 -7354.3545
+233841.0291283352 3.8328092 -7354.7485
+233842.0291284395 3.8326912 -7354.1577
+233843.0291285438 3.8325732 -7353.9609
+233844.0291286481 3.8324943 -7353.7646
+233845.0291287524 3.8324156 -7354.9453
+233846.0291288567 3.8322186 -7354.3545
+233847.029128961 3.8322186 -7354.7485
+233848.0291290653 3.83214 -7355.1421
+233849.0291291696 3.832022 -7354.3545
+233850.029129274 3.8319433 -7353.3706
+233851.0291293783 3.831825 -7353.9609
+233852.0291294826 3.8317857 -7353.1738
+233853.0291295869 3.8316677 -7354.1577
+233854.0291296912 3.8315494 -7354.3545
+233855.0291297955 3.8315101 -7354.1577
+233856.0291298998 3.8314314 -7354.3545
+233857.0291300041 3.8313134 -7354.1577
+233858.0291301084 3.8312345 -7354.5513
+233859.0291302127 3.8311164 -7354.7485
+233860.029130317 3.8309984 -7354.7485
+233861.0291304213 3.8309195 -7354.1577
+233862.0291305257 3.8307621 -7354.5513
+233863.02913063 3.8306835 -7354.1577
+233864.0291307343 3.8306046 -7354.7485
+233865.0291308386 3.8305652 -7354.5513
+233866.0291309429 3.8304865 -7354.1577
+233867.0291310472 3.8304472 -7354.3545
+233868.0291311515 3.8302503 -7353.9609
+233869.0291312558 3.8300533 -7354.5513
+233870.0291313601 3.8299353 -7353.9609
+233871.0291314644 3.8298566 -7354.9453
+233872.0291315687 3.8298173 -7354.3545
+233873.029131673 3.8296204 -7353.7646
+233874.0291317774 3.8297384 -7354.7485
+233875.0291318817 3.8295023 -7353.5669
+233876.029131986 3.8294234 -7354.5513
+233877.0291320903 3.8293054 -7353.9609
+233878.0291321946 3.8292661 -7354.7485
+233879.0291322989 3.8291481 -7353.9609
+233880.0291324032 3.8290691 -7354.1577
+233881.0291325075 3.8289118 -7354.1577
+233882.0291326118 3.8288724 -7354.1577
+233883.0291327161 3.8288724 -7353.7646
+233884.0291328204 3.8286755 -7353.9609
+233885.0291329247 3.8284786 -7354.1577
+233886.029133029 3.8284786 -7354.5513
+233887.0291331334 3.8282819 -7354.7485
+233888.0291332377 3.8282819 -7354.5513
+233889.029133342 3.8280849 -7354.1577
+233890.0291334463 3.8280456 -7354.5513
+233891.0291335506 3.827888 -7354.5513
+233892.0291336549 3.8278487 -7353.7646
+233893.0291337592 3.82777 -7355.1421
+233894.0291338635 3.8276913 -7354.3545
+233895.0291339678 3.8276126 -7354.1577
+233896.0291340721 3.8275337 -7354.7485
+233897.0291341764 3.827337 -7353.3706
+233898.0291342807 3.8271794 -7353.9609
+233899.0291343851 3.8272188 -7353.7646
+233900.0291344894 3.8272581 -7354.1577
+233901.0291345937 3.8269432 -7354.5513
+233902.029134698 3.8270614 -7354.9453
+233903.0291348023 3.8269038 -7354.5513
+233904.0291349066 3.8267465 -7354.1577
+233905.0291350109 3.8266282 -7354.7485
+233906.0291351152 3.8265102 -7353.9609
+233907.0291352195 3.8264709 -7355.9292
+233908.0291353238 3.8263922 -7354.3545
+233909.0291354281 3.8263526 -7354.3545
+233910.0291355324 3.8261952 -7354.5513
+233911.0291356368 3.8260772 -7354.1577
+233912.0291357411 3.8260376 -7353.7646
+233913.0291358454 3.8259196 -7353.9609
+233914.0291359497 3.8257623 -7354.7485
+233915.029136054 3.8257227 -7354.5513
+233916.0291361583 3.8256047 -7354.7485
+233917.0291362626 3.825526 -7354.3545
+233918.0291363669 3.8254077 -7353.9609
+233919.0291364712 3.8253291 -7354.5513
+233920.0291365755 3.8252504 -7353.9609
+233921.0291366798 3.8251717 -7354.3545
+233922.0291367841 3.8249748 -7354.9453
+233923.0291368885 3.8249354 -7353.7646
+233924.0291369928 3.8247778 -7354.5513
+233925.0291370971 3.8247778 -7354.5513
+233926.0291372014 3.8246205 -7354.1577
+233927.0291373057 3.8245022 -7354.5513
+233928.02913741 3.8244236 -7354.5513
+233929.0291375143 3.8243449 -7353.9609
+233930.0291376186 3.8242269 -7354.3545
+233931.0291377229 3.8242662 -7354.7485
+233932.0291378272 3.8240693 -7354.3545
+233933.0291379315 3.8239512 -7354.7485
+233934.0291380358 3.823833 -7354.7485
+233935.0291381401 3.8237936 -7354.1577
+233936.0291382445 3.8236363 -7354.7485
+233937.0291383488 3.8236756 -7354.3545
+233938.0291384531 3.823518 -7354.1577
+233939.0291385574 3.823518 -7354.7485
+233940.0291386617 3.8233213 -7354.1577
+233941.029138766 3.8232031 -7353.3706
+233942.0291388703 3.8231637 -7354.5513
+233943.0291389746 3.8229668 -7353.5669
+233944.0291390789 3.8228095 -7353.7646
+233945.0291391832 3.8228095 -7354.1577
+233946.0291392875 3.8226519 -7354.5513
+233947.0291393918 3.8225732 -7354.3545
+233948.0291394962 3.8225732 -7354.1577
+233949.0291396005 3.8223765 -7354.1577
+233950.0291397048 3.8222582 -7354.3545
+233951.0291398091 3.8222582 -7354.9453
+233952.0291399134 3.822022 -7354.5513
+233953.0291400177 3.8220615 -7354.1577
+233954.029140122 3.8219433 -7354.5513
+233955.0291402263 3.8218646 -7354.9453
+233956.0291403306 3.8216677 -7354.3545
+233957.0291404349 3.821707 -7354.7485
+233958.0291405392 3.8215103 -7354.7485
+233959.0291406435 3.8213921 -7354.3545
+233960.0291407479 3.821274 -7354.1577
+233961.0291408522 3.8211954 -7354.1577
+233962.0291409565 3.8210378 -7354.1577
+233963.0291410608 3.8210378 -7354.7485
+233964.0291411651 3.8208015 -7355.1421
+233965.0291412694 3.8208411 -7353.5669
+233966.0291413737 3.8206441 -7353.9609
+233967.029141478 3.8206835 -7353.7646
+233968.0291415823 3.8204472 -7354.5513
+233969.0291416866 3.8204472 -7354.1577
+233970.0291417909 3.8202899 -7353.5669
+233971.0291418952 3.8202112 -7354.9453
+233972.0291419995 3.8201716 -7354.9453
+233973.0291421039 3.8199356 -7354.1577
+233974.0291422082 3.8198173 -7354.1577
+233975.0291423125 3.8198173 -7353.7646
+233976.0291424168 3.8198962 -7354.5513
+233977.0291425211 3.819581 -7354.5513
+233978.0291426254 3.8195417 -7354.5513
+233979.0291427297 3.819463 -7353.9609
+233980.029142834 3.819345 -7354.3545
+233981.0291429383 3.819345 -7353.7646
+233982.0291430426 3.8191087 -7354.3545
+233983.0291431469 3.8189511 -7353.7646
+233984.0291432512 3.8189907 -7354.5513
+233985.0291433556 3.8188331 -7353.5669
+233986.0291434599 3.8186758 -7354.5513
+233987.0291435642 3.8186362 -7354.7485
+233988.0291436685 3.8186362 -7353.9609
+233989.0291437728 3.8184788 -7354.5513
+233990.0291438771 3.8184395 -7353.7646
+233991.0291439814 3.8182032 -7354.1577
+233992.0291440857 3.8181639 -7353.5669
+233993.02914419 3.8181245 -7353.7646
+233994.0291442943 3.8180063 -7353.7646
+233995.0291443986 3.8178489 -7353.5669
+233996.0291445029 3.8178096 -7354.3545
+233997.0291446073 3.817652 -7354.7485
+233998.0291447116 3.8175733 -7354.9453
+233999.0291448159 3.8174946 -7353.9609
+234000.0291449202 3.8172584 -7354.3545
+234001.0291450245 3.8172584 -7354.5513
+234002.0291451288 3.8172584 -7354.7485
+234003.0291452331 3.817219 -7353.9609
+234004.0291453374 3.8169434 -7354.1577
+234005.0291454417 3.8168254 -7354.1577
+234006.029145546 3.8167858 -7353.9609
+234007.0291456503 3.8165891 -7353.1738
+234008.0291457546 3.8165498 -7354.1577
+234009.0291458589 3.8165498 -7354.1577
+234010.0291459633 3.8163528 -7355.3384
+234011.0291460676 3.8162742 -7354.1577
+234012.0291461719 3.8162742 -7353.9609
+234013.0291462762 3.8160772 -7354.1577
+234014.0291463805 3.8158016 -7354.1577
+234015.0291464848 3.8159592 -7354.9453
+234016.0291465891 3.8157623 -7354.3545
+234017.0291466934 3.8156443 -7353.9609
+234018.0291467977 3.8156049 -7353.7646
+234019.029146902 3.815526 -7354.7485
+234020.0291470063 3.815408 -7353.9609
+234021.0291471106 3.8152504 -7354.3545
+234022.029147215 3.8151717 -7354.7485
+234023.0291473193 3.814975 -7354.5513
+234024.0291474236 3.814975 -7353.9609
+234025.0291475279 3.8149354 -7354.1577
+234026.0291476322 3.8148174 -7354.3545
+234027.0291477365 3.8146601 -7353.9609
+234028.0291478408 3.8145812 -7354.1577
+234029.0291479451 3.8144238 -7354.1577
+234030.0291480494 3.8143845 -7354.5513
+234031.0291481537 3.8143055 -7353.9609
+234032.029148258 3.8142662 -7354.1577
+234033.0291483623 3.8141088 -7354.7485
+234034.0291484667 3.8140299 -7353.9609
+234035.029148571 3.8139906 -7354.5513
+234036.0291486753 3.8137939 -7353.9609
+234037.0291487796 3.8138332 -7354.7485
+234038.0291488839 3.813597 -7354.9453
+234039.0291489882 3.8135576 -7353.5669
+234040.0291490925 3.8135183 -7354.3545
+234041.0291491968 3.8133607 -7353.9609
+234042.0291493011 3.8132033 -7354.1577
+234043.0291494054 3.813164 -7353.9609
+234044.0291495097 3.8130851 -7353.9609
+234045.029149614 3.8129671 -7354.1577
+234046.0291497184 3.8127701 -7353.5669
+234047.0291498227 3.8127701 -7354.1577
+234048.029149927 3.8124945 -7354.1577
+234049.0291500313 3.8125734 -7353.9609
+234050.0291501356 3.8124158 -7354.1577
+234051.0291502399 3.8122978 -7354.7485
+234052.0291503442 3.8123372 -7354.1577
+234053.0291504485 3.8120615 -7354.1577
+234054.0291505528 3.8121009 -7353.7646
+234055.0291506571 3.8119435 -7354.1577
+234056.0291507614 3.8119435 -7354.9453
+234057.0291508657 3.8117859 -7354.1577
+234058.02915097 3.8117466 -7354.5513
+234059.0291510744 3.811471 -7354.3545
+234060.0291511787 3.811471 -7354.5513
+234061.029151283 3.8112743 -7354.1577
+234062.0291513873 3.8111954 -7354.9453
+234063.0291514916 3.8111954 -7354.5513
+234064.0291515959 3.8111167 -7354.9453
+234065.0291517002 3.8109987 -7353.7646
+234066.0291518045 3.8108411 -7354.5513
+234067.0291519088 3.8107231 -7353.9609
+234068.0291520131 3.8106837 -7354.3545
+234069.0291521174 3.8104868 -7354.5513
+234070.0291522217 3.8104475 -7354.7485
+234071.0291523261 3.8103292 -7354.1577
+234072.0291524304 3.8102899 -7354.5513
+234073.0291525347 3.8101325 -7354.1577
+234074.029152639 3.8099356 -7354.3545
+234075.0291527433 3.8099356 -7354.3545
+234076.0291528476 3.8098176 -7354.7485
+234077.0291529519 3.8098176 -7353.5669
+234078.0291530562 3.8096206 -7354.3545
+234079.0291531605 3.8096206 -7354.1577
+234080.0291532648 3.8094633 -7354.9453
+234081.0291533691 3.8094239 -7353.7646
+234082.0291534734 3.8092663 -7354.1577
+234083.0291535778 3.8093057 -7354.1577
+234084.0291536821 3.8090694 -7354.7485
+234085.0291537864 3.8089907 -7354.3545
+234086.0291538907 3.808912 -7354.3545
+234087.029153995 3.8088334 -7354.3545
+234088.0291540993 3.8087151 -7354.5513
+234089.0291542036 3.8086364 -7354.5513
+234090.0291543079 3.8084788 -7353.5669
+234091.0291544122 3.8084788 -7353.5669
+234092.0291545165 3.8084002 -7353.9609
+234093.0291546208 3.8082821 -7354.3545
+234094.0291547251 3.8081639 -7354.3545
+234095.0291548294 3.8080065 -7354.3545
+234096.0291549338 3.8080459 -7353.7646
+234097.0291550381 3.8078096 -7354.9453
+234098.0291551424 3.8077309 -7354.5513
+234099.0291552467 3.8078096 -7354.9453
+234100.029155351 3.8075736 -7355.1421
+234101.0291554553 3.8074946 -7353.9609
+234102.0291555596 3.807534 -7353.7646
+234103.0291556639 3.8074553 -7353.3706
+234104.0291557682 3.8072584 -7353.5669
+234105.0291558725 3.807219 -7353.3706
+234106.0291559768 3.807219 -7354.3545
+234107.0291560811 3.806983 -7354.5513
+234108.0291561855 3.806983 -7353.3706
+234109.0291562898 3.8068254 -7354.3545
+234110.0291563941 3.806668 -7354.5513
+234111.0291564984 3.8065891 -7354.3545
+234112.0291566027 3.8065891 -7353.9609
+234113.029156707 3.8063924 -7354.5513
+234114.0291568113 3.8063531 -7354.7485
+234115.0291569156 3.8062348 -7354.9453
+234116.0291570199 3.8061562 -7354.5513
+234117.0291571242 3.8060775 -7353.9609
+234118.0291572285 3.8059199 -7353.7646
+234119.0291573328 3.8058805 -7353.5669
+234120.0291574372 3.8059199 -7353.7646
+234121.0291575415 3.8057232 -7353.1738
+234122.0291576458 3.8056049 -7355.1421
+234123.0291577501 3.8054869 -7353.7646
+234124.0291578544 3.805408 -7354.3545
+234125.0291579587 3.8053687 -7353.3706
+234126.029158063 3.8051326 -7354.5513
+234127.0291581673 3.8051326 -7354.7485
+234128.0291582716 3.8050144 -7354.7485
+234129.0291583759 3.8050144 -7353.5669
+234130.0291584802 3.8047781 -7354.3545
+234131.0291585845 3.8047781 -7354.7485
+234132.0291586888 3.8046207 -7354.5513
+234133.0291587932 3.8045814 -7354.5513
+234134.0291588975 3.8044238 -7354.1577
+234135.0291590018 3.8043845 -7354.5513
+234136.0291591061 3.8043845 -7354.3545
+234137.0291592104 3.8042271 -7354.1577
+234138.0291593147 3.8041482 -7354.5513
+234139.029159419 3.8039122 -7354.3545
+234140.0291595233 3.8039515 -7354.3545
+234141.0291596276 3.8039122 -7354.7485
+234142.0291597319 3.8039122 -7354.5513
+234143.0291598362 3.8036759 -7354.7485
+234144.0291599405 3.8035183 -7354.3545
+234145.0291600449 3.8035183 -7354.5513
+234146.0291601492 3.8033609 -7353.7646
+234147.0291602535 3.8033609 -7353.3706
+234148.0291603578 3.8032033 -7354.5513
+234149.0291604621 3.8030853 -7353.7646
+234150.0291605664 3.8031247 -7354.3545
+234151.0291606707 3.8029673 -7354.3545
+234152.029160775 3.8028491 -7354.7485
+234153.0291608793 3.8026917 -7353.7646
+234154.0291609836 3.8026524 -7354.3545
+234155.0291610879 3.8025734 -7353.9609
+234156.0291611922 3.8024554 -7354.3545
+234157.0291612966 3.8022585 -7354.5513
+234158.0291614009 3.8022192 -7353.9609
+234159.0291615052 3.8022585 -7354.9453
+234160.0291616095 3.8020225 -7353.7646
+234161.0291617138 3.8020225 -7354.5513
+234162.0291618181 3.8019042 -7353.9609
+234163.0291619224 3.8017862 -7354.3545
+234164.0291620267 3.8017468 -7353.9609
+234165.029162131 3.8015499 -7354.3545
+234166.0291622353 3.8015106 -7353.9609
+234167.0291623396 3.8014319 -7354.3545
+234168.0291624439 3.801353 -7354.3545
+234169.0291625483 3.8012743 -7353.5669
+234170.0291626526 3.8011169 -7354.9453
+234171.0291627569 3.8009593 -7354.3545
+234172.0291628612 3.8009593 -7354.5513
+234173.0291629655 3.8008413 -7354.3545
+234174.0291630698 3.8007231 -7354.9453
+234175.0291631741 3.8006051 -7354.3545
+234176.0291632784 3.8005657 -7354.3545
+234177.0291633827 3.8005264 -7354.3545
+234178.029163487 3.8004081 -7354.1577
+234179.0291635913 3.8003294 -7354.1577
+234180.0291636956 3.8002508 -7354.7485
+234181.0291637999 3.8000932 -7353.9609
+234182.0291639043 3.8000145 -7354.3545
+234183.0291640086 3.7998569 -7353.9609
+234184.0291641129 3.7998176 -7354.9453
+234185.0291642172 3.7998176 -7355.3384
+234186.0291643215 3.7996209 -7354.1577
+234187.0291644258 3.799542 -7355.1421
+234188.0291645301 3.799542 -7354.5513
+234189.0291646344 3.7993846 -7354.5513
+234190.0291647387 3.7993059 -7354.5513
+234191.029164843 3.7991877 -7354.1577
+234192.0291649473 3.7991877 -7354.9453
+234193.0291650516 3.7990303 -7353.9609
+234194.029165156 3.798991 -7353.7646
+234195.0291652603 3.7987547 -7355.1421
+234196.0291653646 3.7987547 -7354.1577
+234197.0291654689 3.7987154 -7354.1577
+234198.0291655732 3.7985184 -7353.7646
+234199.0291656775 3.7984791 -7353.9609
+234200.0291657818 3.7983217 -7354.3545
+234201.0291658861 3.7983217 -7355.1421
+234202.0291659904 3.7981248 -7353.7646
+234203.0291660947 3.7980855 -7354.1577
+234204.029166199 3.7979672 -7354.7485
+234205.0291663033 3.7978492 -7354.7485
+234206.0291664077 3.7977312 -7354.3545
+234207.029166512 3.7976916 -7354.3545
+234208.0291666163 3.7976522 -7353.9609
+234209.0291667206 3.7974949 -7354.1577
+234210.0291668249 3.7974949 -7354.1577
+234211.0291669292 3.7973766 -7354.7485
+234212.0291670335 3.7972586 -7354.1577
+234213.0291671378 3.7971799 -7354.1577
+234214.0291672421 3.7970223 -7353.7646
+234215.0291673464 3.796865 -7353.5669
+234216.0291674507 3.7969437 -7354.1577
+234217.029167555 3.7968256 -7354.1577
+234218.0291676593 3.7966681 -7353.7646
+234219.0291677637 3.79655 -7354.5513
+234220.029167868 3.7965107 -7354.3545
+234221.0291679723 3.7964711 -7354.3545
+234222.0291680766 3.7962744 -7354.5513
+234223.0291681809 3.7962351 -7354.5513
+234224.0291682852 3.7961168 -7353.7646
+234225.0291683895 3.7961562 -7354.1577
+234226.0291684938 3.7960382 -7354.5513
+234227.0291685981 3.7958019 -7354.3545
+234228.0291687024 3.7957625 -7353.9609
+234229.0291688067 3.7956052 -7354.5513
+234230.029168911 3.7957232 -7353.7646
+234231.0291690154 3.7954082 -7354.7485
+234232.0291691197 3.7953689 -7354.5513
+234233.029169224 3.7952509 -7354.3545
+234234.0291693283 3.7951326 -7355.1421
+234235.0291694326 3.795054 -7354.5513
+234236.0291695369 3.7950146 -7354.1577
+234237.0291696412 3.7949359 -7353.9609
+234238.0291697455 3.7946603 -7354.1577
+234239.0291698498 3.7946997 -7354.3545
+234240.0291699541 3.7946603 -7355.1421
+234241.0291700584 3.7945814 -7354.9453
+234242.0291701627 3.7944634 -7355.3384
+234243.0291702671 3.7943454 -7354.9453
+234244.0291703714 3.7941878 -7353.5669
+234245.0291704757 3.7941091 -7353.3706
+234246.02917058 3.7940698 -7354.9453
+234247.0291706843 3.7939909 -7353.1738
+234248.0291707886 3.7938335 -7354.3545
+234249.0291708929 3.7938335 -7353.1738
+234250.0291709972 3.7937155 -7354.3545
+234251.0291711015 3.7935972 -7354.3545
+234252.0291712058 3.7935185 -7353.9609
+234253.0291713101 3.7933216 -7354.1577
+234254.0291714144 3.7932823 -7354.5513
+234255.0291715187 3.7932429 -7354.1577
+234256.0291716231 3.7931249 -7354.9453
+234257.0291717274 3.7931249 -7353.9609
+234258.0291718317 3.7930067 -7353.7646
+234259.029171936 3.7930067 -7355.1421
+234260.0291720403 3.7928493 -7353.7646
+234261.0291721446 3.792731 -7353.9609
+234262.0291722489 3.7926524 -7354.5513
+234263.0291723532 3.7925344 -7354.3545
+234264.0291724575 3.7923768 -7353.9609
+234265.0291725618 3.7923768 -7354.5513
+234266.0291726661 3.7923374 -7353.9609
+234267.0291727704 3.7921405 -7353.5669
+234268.0291728748 3.7921011 -7353.9609
+234269.0291729791 3.7919831 -7353.5669
+234270.0291730834 3.7919044 -7354.1577
+234271.0291731877 3.7918255 -7354.3545
+234272.029173292 3.7916682 -7354.1577
+234273.0291733963 3.7916288 -7354.3545
+234274.0291735006 3.7914319 -7354.1577
+234275.0291736049 3.7914712 -7354.3545
+234276.0291737092 3.7913532 -7354.1577
+234277.0291738135 3.7910776 -7354.7485
+234278.0291739178 3.7911563 -7354.1577
+234279.0291740221 3.7909989 -7354.3545
+234280.0291741265 3.7909596 -7353.9609
+234281.0291742308 3.7908807 -7354.1577
+234282.0291743351 3.7907627 -7353.5669
+234283.0291744394 3.7907233 -7353.3706
+234284.0291745437 3.7905657 -7354.9453
+234285.029174648 3.7904871 -7354.3545
+234286.0291747523 3.790369 -7355.1421
+234287.0291748566 3.7903297 -7354.3545
+234288.0291749609 3.7902508 -7353.7646
+234289.0291750652 3.7900934 -7354.1577
+234290.0291751695 3.7900147 -7354.3545
+234291.0291752738 3.7899358 -7353.9609
+234292.0291753781 3.7898178 -7354.3545
+234293.0291754825 3.7897785 -7353.5669
+234294.0291755868 3.7897785 -7354.1577
+234295.0291756911 3.7896602 -7353.5669
+234296.0291757954 3.7894242 -7354.5513
+234297.0291758997 3.7894242 -7354.5513
+234298.029176004 3.7893059 -7355.3384
+234299.0291761083 3.7891092 -7354.5513
+234300.0291762126 3.7892666 -7354.7485
+234301.0291763169 3.7891486 -7355.1421
+234302.0291764212 3.7890303 -7354.3545
+234303.0291765255 3.7889123 -7353.9609
+234304.0291766298 3.7887943 -7353.7646
+234305.0291767342 3.788873 -7354.7485
+234306.0291768385 3.788558 -7354.3545
+234307.0291769428 3.7885187 -7354.3545
+234308.0291770471 3.7884793 -7354.5513
+234309.0291771514 3.7884398 -7354.5513
+234310.0291772557 3.7884004 -7354.1577
+234311.02917736 3.7882824 -7354.7485
+234312.0291774643 3.7881248 -7354.1577
+234313.0291775686 3.7880461 -7354.3545
+234314.0291776729 3.7879281 -7354.5513
+234315.0291777772 3.7878888 -7353.7646
+234316.0291778815 3.7878098 -7353.9609
+234317.0291779859 3.7877312 -7354.5513
+234318.0291780902 3.7876525 -7353.5669
+234319.0291781945 3.7875342 -7353.9609
+234320.0291782988 3.7875342 -7354.7485
+234321.0291784031 3.7874162 -7353.9609
+234322.0291785074 3.7872589 -7355.3384
+234323.0291786117 3.7871799 -7354.9453
+234324.029178716 3.7869833 -7353.9609
+234325.0291788203 3.7870619 -7354.3545
+234326.0291789246 3.7869439 -7354.1577
+234327.0291790289 3.786865 -7354.5513
+234328.0291791332 3.7867863 -7354.7485
+234329.0291792376 3.7865894 -7353.9609
+234330.0291793419 3.7865107 -7354.7485
+234331.0291794462 3.7865107 -7354.3545
+234332.0291795505 3.786432 -7353.7646
+234333.0291796548 3.7862351 -7354.5513
+234334.0291797591 3.7861958 -7354.3545
+234335.0291798634 3.7859991 -7353.9609
+234336.0291799677 3.7859991 -7354.3545
+234337.029180072 3.7858808 -7354.3545
+234338.0291801763 3.7858808 -7354.5513
+234339.0291802806 3.7857234 -7354.5513
+234340.0291803849 3.7856839 -7354.3545
+234341.0291804892 3.7856052 -7354.3545
+234342.0291805936 3.7853689 -7354.7485
+234343.0291806979 3.7853296 -7354.3545
+234344.0291808022 3.7851722 -7354.5513
+234345.0291809065 3.7852509 -7355.1421
+234346.0291810108 3.7851722 -7353.9609
+234347.0291811151 3.784936 -7354.9453
+234348.0291812194 3.784936 -7354.1577
+234349.0291813237 3.7849753 -7354.1577
+234350.029181428 3.784739 -7353.7646
+234351.0291815323 3.784621 -7354.3545
+234352.0291816366 3.784503 -7355.1421
+234353.0291817409 3.784503 -7353.7646
+234354.0291818453 3.784306 -7353.5669
+234355.0291819496 3.784306 -7354.1577
+234356.0291820539 3.7842274 -7354.1577
+234357.0291821582 3.7841487 -7354.7485
+234358.0291822625 3.7841091 -7354.3545
+234359.0291823668 3.7839124 -7353.9609
+234360.0291824711 3.7838731 -7354.5513
+234361.0291825754 3.7837548 -7352.9771
+234362.0291826797 3.7837155 -7353.9609
+234363.029182784 3.7835975 -7354.1577
+234364.0291828883 3.7834792 -7354.1577
+234365.0291829926 3.7836368 -7354.5513
+234366.029183097 3.7833612 -7354.1577
+234367.0291832013 3.7833219 -7354.1577
+234368.0291833056 3.7832432 -7353.9609
+234369.0291834099 3.7830462 -7353.5669
+234370.0291835142 3.7830856 -7353.7646
+234371.0291836185 3.7828887 -7354.3545
+234372.0291837228 3.7829282 -7353.9609
+234373.0291838271 3.78281 -7354.3545
+234374.0291839314 3.782692 -7354.3545
+234375.0291840357 3.7826526 -7353.7646
+234376.02918414 3.7825344 -7354.7485
+234377.0291842443 3.7824557 -7354.1577
+234378.0291843486 3.782377 -7353.7646
+234379.029184453 3.7822587 -7354.5513
+234380.0291845573 3.7822194 -7354.1577
+234381.0291846616 3.7821407 -7354.1577
+234382.0291847659 3.7819438 -7353.7646
+234383.0291848702 3.7819831 -7354.5513
+234384.0291849745 3.7819045 -7354.5513
+234385.0291850788 3.7818258 -7354.7485
+234386.0291851831 3.7816288 -7354.1577
+234387.0291852874 3.7817078 -7354.3545
+234388.0291853917 3.7815502 -7354.7485
+234389.029185496 3.7814715 -7354.3545
+234390.0291856003 3.7813532 -7353.9609
+234391.0291857047 3.7811565 -7354.7485
+234392.029185809 3.7811959 -7354.5513
+234393.0291859133 3.7810383 -7353.9609
+234394.0291860176 3.7809203 -7354.5513
+234395.0291861219 3.7809596 -7354.5513
+234396.0291862262 3.7808416 -7354.3545
+234397.0291863305 3.7807629 -7353.9609
+234398.0291864348 3.7806053 -7353.9609
+234399.0291865391 3.7804873 -7353.7646
+234400.0291866434 3.7804873 -7354.5513
+234401.0291867477 3.7804084 -7354.3545
+234402.029186852 3.7802904 -7354.9453
+234403.0291869564 3.7801723 -7354.3545
+234404.0291870607 3.7800934 -7353.9609
+234405.029187165 3.7800148 -7353.9609
+234406.0291872693 3.7799361 -7354.5513
+234407.0291873736 3.7797391 -7354.1577
+234408.0291874779 3.7797785 -7354.5513
+234409.0291875822 3.7796211 -7354.1577
+234410.0291876865 3.7795818 -7354.7485
+234411.0291877908 3.7795029 -7354.3545
+234412.0291878951 3.7793849 -7353.9609
+234413.0291879994 3.7793062 -7354.3545
+234414.0291881037 3.7791879 -7353.5669
+234415.029188208 3.7791879 -7355.1421
+234416.0291883124 3.7790699 -7354.5513
+234417.0291884167 3.7789519 -7353.9609
+234418.029188521 3.7787943 -7353.9609
+234419.0291886253 3.7788336 -7354.3545
+234420.0291887296 3.7787156 -7354.3545
+234421.0291888339 3.7786369 -7354.5513
+234422.0291889382 3.778558 -7354.1577
+234423.0291890425 3.77844 -7354.3545
+234424.0291891468 3.7783613 -7354.7485
+234425.0291892511 3.7782824 -7353.9609
+234426.0291893554 3.7782037 -7354.5513
+234427.0291894597 3.778125 -7354.1577
+234428.0291895641 3.778007 -7354.7485
+234429.0291896684 3.7778494 -7354.9453
+234430.0291897727 3.7778888 -7353.7646
+234431.029189877 3.7777314 -7354.1577
+234432.0291899813 3.7776132 -7354.1577
+234433.0291900856 3.7776132 -7354.5513
+234434.0291901899 3.7775738 -7355.1421
+234435.0291902942 3.7774165 -7354.5513
+234436.0291903985 3.7773771 -7354.1577
+234437.0291905028 3.7772195 -7354.3545
+234438.0291906071 3.7771015 -7354.7485
+234439.0291907114 3.7770226 -7354.3545
+234440.0291908158 3.7769439 -7354.3545
+234441.0291909201 3.7769046 -7354.3545
+234442.0291910244 3.7767866 -7354.5513
+234443.0291911287 3.776629 -7354.7485
+234444.029191233 3.776629 -7353.5669
+234445.0291913373 3.776511 -7354.7485
+234446.0291914416 3.776432 -7354.7485
+234447.0291915459 3.7763927 -7354.1577
+234448.0291916502 3.776196 -7353.5669
+234449.0291917545 3.7761567 -7353.9609
+234450.0291918588 3.7760384 -7353.9609
+234451.0291919631 3.7759204 -7354.5513
+234452.0291920675 3.7758811 -7353.9609
+234453.0291921718 3.7758021 -7354.3545
+234454.0291922761 3.7756841 -7355.1421
+234455.0291923804 3.7756448 -7354.7485
+234456.0291924847 3.7755661 -7353.5669
+234457.029192589 3.7754478 -7354.3545
+234458.0291926933 3.7754478 -7354.5513
+234459.0291927976 3.7753298 -7355.3384
+234460.0291929019 3.7752512 -7354.7485
+234461.0291930062 3.7750936 -7354.3545
+234462.0291931105 3.7750149 -7353.3706
+234463.0291932148 3.7749362 -7354.3545
+234464.0291933191 3.7748573 -7353.9609
+234465.0291934235 3.7748179 -7353.7646
+234466.0291935278 3.7745817 -7354.3545
+234467.0291936321 3.7746212 -7354.1577
+234468.0291937364 3.7745423 -7354.5513
+234469.0291938407 3.7744637 -7354.3545
+234470.029193945 3.774385 -7354.9453
+234471.0291940493 3.7743063 -7354.9453
+234472.0291941536 3.7741487 -7353.9609
+234473.0291942579 3.7741094 -7354.5513
+234474.0291943622 3.7740307 -7353.7646
+234475.0291944665 3.7738338 -7354.3545
+234476.0291945708 3.7737551 -7354.5513
+234477.0291946752 3.7737944 -7353.7646
+234478.0291947795 3.7736368 -7354.1577
+234479.0291948838 3.7735581 -7354.5513
+234480.0291949881 3.7734401 -7354.3545
+234481.0291950924 3.7734401 -7353.7646
+234482.0291951967 3.7732432 -7354.3545
+234483.029195301 3.7731645 -7353.9609
+234484.0291954053 3.7731252 -7354.1577
+234485.0291955096 3.7730069 -7353.5669
+234486.0291956139 3.7730069 -7354.1577
+234487.0291957182 3.7728889 -7353.5669
+234488.0291958225 3.7728496 -7355.5352
+234489.0291959269 3.772692 -7354.1577
+234490.0291960312 3.7726133 -7354.7485
+234491.0291961355 3.7725739 -7354.3545
+234492.0291962398 3.772377 -7354.1577
+234493.0291963441 3.7723377 -7353.9609
+234494.0291964484 3.7722983 -7354.1577
+234495.0291965527 3.7721014 -7353.5669
+234496.029196657 3.7720621 -7354.1577
+234497.0291967613 3.7719834 -7354.5513
+234498.0291968656 3.7718654 -7354.5513
+234499.0291969699 3.7717865 -7353.7646
+234500.0291970742 3.7716684 -7354.5513
+234501.0291971785 3.7716684 -7354.1577
+234502.0291972829 3.7715111 -7354.5513
+234503.0291973872 3.7715111 -7354.1577
+234504.0291974915 3.7714322 -7354.3545
+234505.0291975958 3.7713141 -7354.1577
+234506.0291977001 3.7711959 -7354.1577
+234507.0291978044 3.7711172 -7354.5513
+234508.0291979087 3.7711172 -7354.1577
+234509.029198013 3.7709992 -7354.5513
+234510.0291981173 3.7708023 -7353.9609
+234511.0291982216 3.7708416 -7354.7485
+234512.0291983259 3.7706449 -7354.3545
+234513.0291984302 3.7706842 -7355.1421
+234514.0291985346 3.7706056 -7354.9453
+234515.0291986389 3.770448 -7353.3706
+234516.0291987432 3.7704086 -7354.9453
+234517.0291988475 3.77033 -7354.3545
+234518.0291989518 3.7702906 -7354.1577
+234519.0291990561 3.7702117 -7353.9609
+234520.0291991604 3.7700937 -7353.7646
+234521.0291992647 3.7699361 -7354.3545
+234522.029199369 3.7698574 -7354.7485
+234523.0291994733 3.7697787 -7353.3706
+234524.0291995776 3.7697394 -7354.3545
+234525.0291996819 3.7696607 -7354.3545
+234526.0291997863 3.7694244 -7354.1577
+234527.0291998906 3.7694638 -7354.3545
+234528.0291999949 3.7693455 -7355.3384
+234529.0292000992 3.7694638 -7353.5669
+234530.0292002035 3.7692668 -7354.5513
+234531.0292003078 3.7690701 -7354.1577
+234532.0292004121 3.7691095 -7354.3545
+234533.0292005164 3.7689519 -7354.3545
+234534.0292006207 3.7687945 -7353.9609
+234535.029200725 3.7687945 -7354.3545
+234536.0292008293 3.7687156 -7354.1577
+234537.0292009336 3.7686369 -7353.7646
+234538.0292010379 3.7685189 -7353.3706
+234539.0292011423 3.7685189 -7353.9609
+234540.0292012466 3.7684007 -7353.9609
+234541.0292013509 3.7682433 -7353.7646
+234542.0292014552 3.768204 -7353.5669
+234543.0292015595 3.7681253 -7353.9609
+234544.0292016638 3.7679677 -7354.5513
+234545.0292017681 3.7679677 -7354.9453
+234546.0292018724 3.7677708 -7355.1421
+234547.0292019767 3.7676921 -7353.5669
+234548.029202081 3.7675741 -7354.7485
+234549.0292021853 3.7675347 -7354.5513
+234550.0292022896 3.7674558 -7354.1577
+234551.029202394 3.7673378 -7353.3706
+234552.0292024983 3.7672985 -7354.5513
+234553.0292026026 3.7671015 -7354.5513
+234554.0292027069 3.7669835 -7354.1577
+234555.0292028112 3.7670228 -7353.1738
+234556.0292029155 3.7668653 -7354.5513
+234557.0292030198 3.7667866 -7354.7485
+234558.0292031241 3.7667472 -7353.3706
+234559.0292032284 3.7666686 -7353.5669
+234560.0292033327 3.7665899 -7354.3545
+234561.029203437 3.7664716 -7353.3706
+234562.0292035413 3.7664323 -7354.3545
+234563.0292036457 3.7663143 -7354.1577
+234564.02920375 3.7662354 -7354.3545
+234565.0292038543 3.7662749 -7353.9609
+234566.0292039586 3.7660387 -7353.1738
+234567.0292040629 3.766078 -7354.3545
+234568.0292041672 3.7659204 -7353.5669
+234569.0292042715 3.765763 -7355.1421
+234570.0292043758 3.765763 -7353.7646
+234571.0292044801 3.7656448 -7354.7485
+234572.0292045844 3.7655268 -7354.5513
+234573.0292046887 3.7655268 -7354.3545
+234574.029204793 3.7652905 -7354.5513
+234575.0292048974 3.7652512 -7354.1577
+234576.0292050017 3.7652118 -7354.5513
+234577.029205106 3.7651331 -7353.9609
+234578.0292052103 3.7650545 -7354.1577
+234579.0292053146 3.7649755 -7353.9609
+234580.0292054189 3.7649362 -7354.1577
+234581.0292055232 3.7648182 -7353.7646
+234582.0292056275 3.7647395 -7355.5352
+234583.0292057318 3.7646606 -7353.9609
+234584.0292058361 3.7646213 -7354.1577
+234585.0292059404 3.7645426 -7354.3545
+234586.0292060447 3.7644639 -7354.9453
+234587.029206149 3.764385 -7353.7646
+234588.0292062534 3.764267 -7354.5513
+234589.0292063577 3.764149 -7354.5513
+234590.029206462 3.76407 -7354.3545
+234591.0292065663 3.7640307 -7354.7485
+234592.0292066706 3.7640307 -7355.1421
+234593.0292067749 3.763952 -7354.3545
+234594.0292068792 3.7637944 -7354.3545
+234595.0292069835 3.7637157 -7354.1577
+234596.0292070878 3.7635977 -7354.1577
+234597.0292071921 3.763519 -7353.3706
+234598.0292072964 3.7634795 -7353.7646
+234599.0292074007 3.7634401 -7354.9453
+234600.0292075051 3.7634008 -7354.5513
+234601.0292076094 3.7632828 -7353.7646
+234602.0292077137 3.7631645 -7354.3545
+234603.029207818 3.7631252 -7353.7646
+234604.0292079223 3.7630858 -7353.9609
+234605.0292080266 3.7628891 -7354.7485
+234606.0292081309 3.7628496 -7354.1577
+234607.0292082352 3.7628891 -7354.5513
+234608.0292083395 3.7627709 -7354.5513
+234609.0292084438 3.7625742 -7353.5669
+234610.0292085481 3.7626135 -7354.1577
+234611.0292086524 3.7624559 -7353.5669
+234612.0292087568 3.7622986 -7354.1577
+234613.0292088611 3.7622197 -7353.5669
+234614.0292089654 3.762259 -7354.1577
+234615.0292090697 3.7621017 -7354.5513
+234616.029209174 3.7620623 -7354.7485
+234617.0292092783 3.7619441 -7354.1577
+234618.0292093826 3.7619836 -7354.1577
+234619.0292094869 3.7616687 -7353.7646
+234620.0292095912 3.761708 -7353.9609
+234621.0292096955 3.7616291 -7354.9453
+234622.0292097998 3.7616291 -7354.9453
+234623.0292099041 3.7614324 -7354.5513
+234624.0292100084 3.7613537 -7354.3545
+234625.0292101128 3.7613537 -7354.1577
+234626.0292102171 3.7612355 -7353.7646
+234627.0292103214 3.7609992 -7354.9453
+234628.0292104257 3.7611175 -7354.3545
+234629.02921053 3.7609599 -7354.7485
+234630.0292106343 3.7608418 -7353.9609
+234631.0292107386 3.7608025 -7353.9609
+234632.0292108429 3.7607238 -7353.7646
+234633.0292109472 3.7606843 -7354.3545
+234634.0292110515 3.7605269 -7354.7485
+234635.0292111558 3.7605662 -7354.9453
+234636.0292112601 3.7604086 -7354.5513
+234637.0292113645 3.7602906 -7354.3545
+234638.0292114688 3.7602513 -7354.3545
+234639.0292115731 3.7600937 -7355.1421
+234640.0292116774 3.7599757 -7354.3545
+234641.0292117817 3.7599363 -7354.7485
+234642.029211886 3.7599363 -7353.5669
+234643.0292119903 3.7597394 -7354.5513
+234644.0292120946 3.7596607 -7354.3545
+234645.0292121989 3.7596214 -7354.7485
+234646.0292123032 3.759582 -7353.9609
+234647.0292124075 3.7595034 -7354.5513
+234648.0292125118 3.7593064 -7354.9453
+234649.0292126162 3.7592278 -7354.3545
+234650.0292127205 3.7591488 -7353.9609
+234651.0292128248 3.7589521 -7354.5513
+234652.0292129291 3.7590702 -7354.3545
+234653.0292130334 3.7589128 -7354.3545
+234654.0292131377 3.7588339 -7353.9609
+234655.029213242 3.7586765 -7354.7485
+234656.0292133463 3.7587552 -7353.9609
+234657.0292134506 3.7585583 -7354.5513
+234658.0292135549 3.7584009 -7354.9453
+234659.0292136592 3.7584796 -7354.7485
+234660.0292137635 3.7583616 -7354.9453
+234661.0292138678 3.7581646 -7354.7485
+234662.0292139722 3.7581253 -7353.5669
+234663.0292140765 3.7580466 -7353.9609
+234664.0292141808 3.7579284 -7354.9453
+234665.0292142851 3.7578104 -7355.1421
+234666.0292143894 3.757889 -7354.1577
+234667.0292144937 3.7576923 -7354.7485
+234668.029214598 3.7576134 -7354.1577
+234669.0292147023 3.7576134 -7353.9609
+234670.0292148066 3.7575741 -7354.7485
+234671.0292149109 3.7574561 -7353.3706
+234672.0292150152 3.7572985 -7353.9609
+234673.0292151195 3.757338 -7354.3545
+234674.0292152239 3.7572591 -7354.3545
+234675.0292153282 3.7569835 -7354.5513
+234676.0292154325 3.7570624 -7354.7485
+234677.0292155368 3.7569048 -7354.5513
+234678.0292156411 3.7568262 -7353.9609
+234679.0292157454 3.7566292 -7353.5669
+234680.0292158497 3.7566686 -7354.1577
+234681.029215954 3.7566292 -7353.7646
+234682.0292160583 3.7565506 -7354.7485
+234683.0292161626 3.7564325 -7354.1577
+234684.0292162669 3.7562749 -7354.5513
+234685.0292163712 3.7563143 -7354.3545
+234686.0292164756 3.7561569 -7354.3545
+234687.0292165799 3.7561176 -7354.3545
+234688.0292166842 3.75596 -7354.5513
+234689.0292167885 3.7559206 -7354.1577
+234690.0292168928 3.7558813 -7354.3545
+234691.0292169971 3.7557237 -7354.5513
+234692.0292171014 3.7556844 -7354.1577
+234693.0292172057 3.7556844 -7354.3545
+234694.02921731 3.755527 -7354.1577
+234695.0292174143 3.7555664 -7354.3545
+234696.0292175186 3.7554088 -7355.3384
+234697.0292176229 3.7552907 -7354.5513
+234698.0292177272 3.7551332 -7352.9771
+234699.0292178316 3.7551725 -7353.9609
+234700.0292179359 3.7550545 -7354.5513
+234701.0292180402 3.7549758 -7353.9609
+234702.0292181445 3.7547789 -7354.3545
+234703.0292182488 3.7547789 -7354.1577
+234704.0292183531 3.7547395 -7353.9609
+234705.0292184574 3.7545822 -7354.3545
+234706.0292185617 3.7545033 -7355.3384
+234707.029218666 3.7544639 -7354.3545
+234708.0292187703 3.7545033 -7354.3545
+234709.0292188746 3.7542276 -7353.9609
+234710.0292189789 3.7541883 -7354.1577
+234711.0292190833 3.7541096 -7354.5513
+234712.0292191876 3.7539523 -7354.3545
+234713.0292192919 3.7539523 -7353.9609
+234714.0292193962 3.7538733 -7353.9609
+234715.0292195005 3.7537947 -7354.3545
+234716.0292196048 3.7537553 -7354.3545
+234717.0292197091 3.7536373 -7353.9609
+234718.0292198134 3.7534404 -7354.5513
+234719.0292199177 3.7533221 -7354.1577
+234720.029220022 3.7533221 -7354.3545
+234721.0292201263 3.7532434 -7354.7485
+234722.0292202306 3.7532041 -7354.1577
+234723.029220335 3.7530468 -7353.5669
+234724.0292204393 3.7529678 -7354.1577
+234725.0292205436 3.7529285 -7355.1421
+234726.0292206479 3.7528105 -7353.9609
+234727.0292207522 3.7526135 -7354.3545
+234728.0292208565 3.7526135 -7354.5513
+234729.0292209608 3.7525742 -7354.3545
+234730.0292210651 3.7524955 -7354.3545
+234731.0292211694 3.7524562 -7354.5513
+234732.0292212737 3.7523773 -7353.7646
+234733.029221378 3.7522593 -7354.5513
+234734.0292214823 3.7521806 -7353.7646
+234735.0292215867 3.7521019 -7354.5513
+234736.029221691 3.7518656 -7354.5513
+234737.0292217953 3.7519836 -7354.1577
+234738.0292218996 3.751905 -7354.5513
+234739.0292220039 3.7517474 -7354.7485
+234740.0292221082 3.7516687 -7354.3545
+234741.0292222125 3.7516294 -7354.3545
+234742.0292223168 3.7515113 -7353.9609
+234743.0292224211 3.7513931 -7353.9609
+234744.0292225254 3.7513144 -7354.9453
+234745.0292226297 3.7512357 -7355.1421
+234746.029222734 3.7510781 -7354.7485
+234747.0292228383 3.7510781 -7354.3545
+234748.0292229427 3.7509601 -7354.3545
+234749.029223047 3.7508814 -7353.9609
+234750.0292231513 3.7509208 -7354.7485
+234751.0292232556 3.7507632 -7354.5513
+234752.0292233599 3.7507238 -7353.9609
+234753.0292234642 3.7506452 -7355.1421
+234754.0292235685 3.7504876 -7353.7646
+234755.0292236728 3.7503695 -7354.5513
+234756.0292237771 3.7502515 -7353.7646
+234757.0292238814 3.7502909 -7354.7485
+234758.0292239857 3.7501726 -7354.3545
+234759.02922409 3.7501333 -7354.9453
+234760.0292241944 3.7500546 -7353.7646
+234761.0292242987 3.7499759 -7353.3706
+234762.029224403 3.7498577 -7353.9609
+234763.0292245073 3.7497396 -7353.7646
+234764.0292246116 3.7497003 -7354.7485
+234765.0292247159 3.7496214 -7353.7646
+234766.0292248202 3.7495427 -7354.1577
+234767.0292249245 3.7494247 -7354.5513
+234768.0292250288 3.7493854 -7354.7485
+234769.0292251331 3.7492278 -7354.3545
+234770.0292252374 3.7491884 -7354.5513
+234771.0292253417 3.7490704 -7355.1421
+234772.0292254461 3.7490704 -7353.5669
+234773.0292255504 3.7488341 -7353.7646
+234774.0292256547 3.7488341 -7354.7485
+234775.029225759 3.7486372 -7354.3545
+234776.0292258633 3.7487161 -7353.5669
+234777.0292259676 3.7485979 -7354.1577
+234778.0292260719 3.7485192 -7353.9609
+234779.0292261762 3.7485585 -7353.7646
+234780.0292262805 3.7482829 -7354.5513
+234781.0292263848 3.7482829 -7354.7485
+234782.0292264891 3.7481256 -7353.9609
+234783.0292265934 3.7481256 -7354.1577
+234784.0292266977 3.7479286 -7354.5513
+234785.0292268021 3.7478499 -7354.3545
+234786.0292269064 3.7478106 -7353.9609
+234787.0292270107 3.7477317 -7354.1577
+234788.029227115 3.747653 -7354.3545
+234789.0292272193 3.7474561 -7354.5513
+234790.0292273236 3.7474957 -7353.9609
+234791.0292274279 3.7473381 -7353.7646
+234792.0292275322 3.7473381 -7353.9609
+234793.0292276365 3.7472987 -7353.9609
+234794.0292277408 3.74722 -7354.3545
+234795.0292278451 3.7470624 -7354.3545
+234796.0292279494 3.7469838 -7354.5513
+234797.0292280538 3.7469838 -7354.3545
+234798.0292281581 3.7469051 -7354.7485
+234799.0292282624 3.7467475 -7355.1421
+234800.0292283667 3.7467475 -7354.3545
+234801.029228471 3.7465508 -7353.3706
+234802.0292285753 3.7465901 -7353.9609
+234803.0292286796 3.7463539 -7354.5513
+234804.0292287839 3.7463539 -7354.5513
+234805.0292288882 3.7461963 -7354.7485
+234806.0292289925 3.7462356 -7353.5669
+234807.0292290968 3.7461569 -7354.5513
+234808.0292292011 3.7460389 -7353.9609
+234809.0292293055 3.7460389 -7353.7646
+234810.0292294098 3.7458813 -7353.5669
+234811.0292295141 3.7457633 -7354.7485
+234812.0292296184 3.7456453 -7354.7485
+234813.0292297227 3.7456057 -7353.9609
+234814.029229827 3.7454484 -7354.5513
+234815.0292299313 3.7453303 -7353.7646
+234816.0292300356 3.7453697 -7354.5513
+234817.0292301399 3.7452908 -7354.1577
+234818.0292302442 3.7451727 -7354.5513
+234819.0292303485 3.7451727 -7353.7646
+234820.0292304528 3.7449365 -7354.3545
+234821.0292305571 3.7448971 -7354.5513
+234822.0292306615 3.7448578 -7354.1577
+234823.0292307658 3.7448578 -7354.1577
+234824.0292308701 3.7446215 -7354.7485
+234825.0292309744 3.7445428 -7354.5513
+234826.0292310787 3.7445035 -7353.5669
+234827.029231183 3.7443459 -7353.7646
+234828.0292312873 3.7443459 -7354.5513
+234829.0292313916 3.7443066 -7354.1577
+234830.0292314959 3.7441492 -7353.9609
+234831.0292316002 3.7440703 -7354.1577
+234832.0292317045 3.7439916 -7353.5669
+234833.0292318088 3.7440703 -7354.3545
+234834.0292319132 3.7439129 -7354.3545
+234835.0292320175 3.7437949 -7353.1738
+234836.0292321218 3.7436373 -7353.5669
+234837.0292322261 3.7435586 -7354.3545
+234838.0292323304 3.7435586 -7354.1577
+234839.0292324347 3.7433617 -7354.5513
+234840.029232539 3.7434011 -7353.5669
+234841.0292326433 3.7432044 -7353.7646
+234842.0292327476 3.7430861 -7354.3545
+234843.0292328519 3.7430074 -7354.9453
+234844.0292329562 3.7430468 -7354.5513
+234845.0292330605 3.7429287 -7353.9609
+234846.0292331649 3.7427318 -7353.9609
+234847.0292332692 3.7426531 -7354.9453
+234848.0292333735 3.7427711 -7353.5669
+234849.0292334778 3.7425745 -7353.7646
+234850.0292335821 3.7424562 -7354.7485
+234851.0292336864 3.7424169 -7354.1577
+234852.0292337907 3.7423382 -7353.3706
+234853.029233895 3.7421019 -7353.7646
+234854.0292339993 3.7421806 -7353.9609
+234855.0292341036 3.7420626 -7354.7485
+234856.0292342079 3.7419839 -7354.3545
+234857.0292343122 3.741905 -7353.3706
+234858.0292344166 3.7418263 -7354.7485
+234859.0292345209 3.7417083 -7354.3545
+234860.0292346252 3.74159 -7354.3545
+234861.0292347295 3.74159 -7354.3545
+234862.0292348338 3.7414327 -7353.9609
+234863.0292349381 3.7414327 -7355.3384
+234864.0292350424 3.7413146 -7354.5513
+234865.0292351467 3.7411177 -7354.5513
+234866.029235251 3.7411177 -7354.9453
+234867.0292353553 3.741039 -7354.3545
+234868.0292354596 3.7409208 -7353.5669
+234869.0292355639 3.7407634 -7353.9609
+234870.0292356682 3.7407634 -7354.1577
+234871.0292357726 3.7407634 -7353.9609
+234872.0292358769 3.7404485 -7354.5513
+234873.0292359812 3.7405665 -7353.7646
+234874.0292360855 3.7403696 -7353.9609
+234875.0292361898 3.7402515 -7353.7646
+234876.0292362941 3.7402909 -7354.1577
+234877.0292363984 3.7401335 -7353.9609
+234878.0292365027 3.7399759 -7353.7646
+234879.029236607 3.7399366 -7354.3545
+234880.0292367113 3.7398579 -7354.1577
+234881.0292368156 3.7397792 -7354.3545
+234882.0292369199 3.7397003 -7354.5513
+234883.0292370243 3.739543 -7354.7485
+234884.0292371286 3.7395823 -7354.1577
+234885.0292372329 3.7395036 -7353.3706
+234886.0292373372 3.7394247 -7353.9609
+234887.0292374415 3.7392673 -7354.5513
+234888.0292375458 3.7391887 -7353.7646
+234889.0292376501 3.7391098 -7354.1577
+234890.0292377544 3.7389524 -7354.1577
+234891.0292378587 3.7388341 -7354.3545
+234892.029237963 3.7388737 -7353.1738
+234893.0292380673 3.7387555 -7354.9453
+234894.0292381716 3.7386768 -7353.5669
+234895.029238276 3.7385588 -7354.5513
+234896.0292383803 3.7385588 -7354.3545
+234897.0292384846 3.7383225 -7354.3545
+234898.0292385889 3.7383618 -7354.7485
+234899.0292386932 3.7381649 -7354.7485
+234900.0292387975 3.7381649 -7354.7485
+234901.0292389018 3.7380469 -7353.5669
+234902.0292390061 3.7380469 -7354.3545
+234903.0292391104 3.73785 -7353.7646
+234904.0292392147 3.7377713 -7354.1577
+234905.029239319 3.7377319 -7353.5669
+234906.0292394233 3.7376533 -7354.1577
+234907.0292395276 3.7375743 -7353.9609
+234908.029239632 3.7376139 -7354.1577
+234909.0292397363 3.7373776 -7353.7646
+234910.0292398406 3.7371807 -7354.3545
+234911.0292399449 3.7373383 -7353.9609
+234912.0292400492 3.73722 -7354.7485
+234913.0292401535 3.7370627 -7354.3545
+234914.0292402578 3.7369838 -7355.1421
+234915.0292403621 3.7368658 -7354.1577
+234916.0292404664 3.7367871 -7353.9609
+234917.0292405707 3.7366295 -7354.3545
+234918.029240675 3.7365901 -7354.3545
+234919.0292407793 3.7365901 -7354.3545
+234920.0292408837 3.7364328 -7354.3545
+234921.029240988 3.7363935 -7353.7646
+234922.0292410923 3.7363145 -7354.7485
+234923.0292411966 3.7361965 -7354.1577
+234924.0292413009 3.7360389 -7354.1577
+234925.0292414052 3.7360389 -7353.7646
+234926.0292415095 3.7359996 -7353.3706
+234927.0292416138 3.7359602 -7354.3545
+234928.0292417181 3.7358422 -7353.9609
+234929.0292418224 3.7358422 -7354.1577
+234930.0292419267 3.7356453 -7354.9453
+234931.029242031 3.7355666 -7353.9609
+234932.0292421354 3.7354879 -7354.1577
+234933.0292422397 3.7354484 -7354.3545
+234934.029242344 3.735291 -7354.5513
+234935.0292424483 3.735173 -7353.9609
+234936.0292425526 3.7350941 -7353.9609
+234937.0292426569 3.7350154 -7354.7485
+234938.0292427612 3.7350154 -7353.9609
+234939.0292428655 3.734858 -7354.7485
+234940.0292429698 3.7347791 -7354.5513
+234941.0292430741 3.7347791 -7353.9609
+234942.0292431784 3.7347398 -7354.1577
+234943.0292432827 3.7346611 -7354.3545
+234944.029243387 3.7343855 -7354.3545
+234945.0292434914 3.7343068 -7353.5669
+234946.0292435957 3.7343462 -7354.7485
+234947.0292437 3.7341886 -7354.3545
+234948.0292438043 3.7341492 -7354.1577
+234949.0292439086 3.7340312 -7353.7646
+234950.0292440129 3.7339132 -7354.3545
+234951.0292441172 3.7338343 -7354.3545
+234952.0292442215 3.7337556 -7354.1577
+234953.0292443258 3.7336769 -7353.9609
+234954.0292444301 3.7335193 -7354.3545
+234955.0292445344 3.7335587 -7354.7485
+234956.0292446387 3.7334013 -7354.3545
+234957.0292447431 3.733362 -7353.5669
+234958.0292448474 3.7333226 -7353.9609
+234959.0292449517 3.7332044 -7354.1577
+234960.029245056 3.7330863 -7354.3545
+234961.0292451603 3.7330863 -7354.3545
+234962.0292452646 3.7329288 -7353.9609
+234963.0292453689 3.7329288 -7353.7646
+234964.0292454732 3.7327321 -7354.3545
+234965.0292455775 3.7325745 -7354.5513
+234966.0292456818 3.7325745 -7353.9609
+234967.0292457861 3.7323382 -7354.5513
+234968.0292458904 3.7324958 -7354.3545
+234969.0292459948 3.7322989 -7354.5513
+234970.0292460991 3.7321808 -7354.9453
+234971.0292462034 3.7321022 -7353.3706
+234972.0292463077 3.7320628 -7353.9609
+234973.029246412 3.7319839 -7353.9609
+234974.0292465163 3.7318659 -7353.7646
+234975.0292466206 3.7317083 -7353.9609
+234976.0292467249 3.7316689 -7354.5513
+234977.0292468292 3.7316296 -7353.7646
+234978.0292469335 3.7315116 -7353.9609
+234979.0292470378 3.7315509 -7353.9609
+234980.0292471421 3.7313933 -7354.3545
+234981.0292472465 3.7311966 -7354.5513
+234982.0292473508 3.7311966 -7353.9609
+234983.0292474551 3.7311177 -7354.1577
+234984.0292475594 3.7309604 -7354.7485
+234985.0292476637 3.7309604 -7354.1577
+234986.029247768 3.7308028 -7353.9609
+234987.0292478723 3.7307634 -7353.1738
+234988.0292479766 3.7306848 -7354.7485
+234989.0292480809 3.7305667 -7354.5513
+234990.0292481852 3.7305667 -7354.1577
+234991.0292482895 3.7303698 -7354.5513
+234992.0292483938 3.7304091 -7353.9609
+234993.0292484981 3.7302518 -7354.3545
+234994.0292486025 3.7302122 -7354.5513
+234995.0292487068 3.7301729 -7353.9609
+234996.0292488111 3.7299762 -7354.5513
+234997.0292489154 3.7298579 -7353.5669
+234998.0292490197 3.7298579 -7353.9609
+234999.029249124 3.7297399 -7354.5513
+235000.0292492283 3.7296219 -7353.5669
+235001.0292493326 3.7297399 -7353.5669
+235002.0292494369 3.7293856 -7354.1577
+235003.0292495412 3.7293069 -7354.9453
+235004.0292496455 3.729425 -7354.1577
+235005.0292497498 3.7293463 -7353.9609
+235006.0292498542 3.729228 -7354.3545
+235007.0292499585 3.7290313 -7353.1738
+235008.0292500628 3.7289524 -7355.3384
+235009.0292501671 3.7289524 -7354.1577
+235010.0292502714 3.7288344 -7353.1738
+235011.0292503757 3.7287557 -7354.5513
+235012.02925048 3.7285981 -7353.9609
+235013.0292505843 3.7285588 -7354.7485
+235014.0292506886 3.7284801 -7354.3545
+235015.0292507929 3.7283225 -7354.1577
+235016.0292508972 3.7283225 -7354.5513
+235017.0292510015 3.7282045 -7354.5513
+235018.0292511059 3.7280865 -7353.9609
+235019.0292512102 3.7280865 -7354.9453
+235020.0292513145 3.7279289 -7354.7485
+235021.0292514188 3.7278109 -7354.3545
+235022.0292515231 3.7277715 -7354.3545
+235023.0292516274 3.7275746 -7353.9609
+235024.0292517317 3.7275746 -7354.1577
+235025.029251836 3.727417 -7354.3545
+235026.0292519403 3.727417 -7353.9609
+235027.0292520446 3.7273383 -7354.5513
+235028.0292521489 3.7272596 -7353.9609
+235029.0292522532 3.7271416 -7354.5513
+235030.0292523575 3.727102 -7354.5513
+235031.0292524619 3.7269447 -7354.1577
+235032.0292525662 3.726866 -7353.7646
+235033.0292526705 3.7269447 -7355.1421
+235034.0292527748 3.7266691 -7354.7485
+235035.0292528791 3.7266297 -7354.3545
+235036.0292529834 3.7265115 -7354.1577
+235037.0292530877 3.7265115 -7354.1577
+235038.029253192 3.7263148 -7354.7485
+235039.0292532963 3.7262361 -7353.5669
+235040.0292534006 3.7261572 -7354.9453
+235041.0292535049 3.7261572 -7353.9609
+235042.0292536092 3.7260785 -7354.7485
+235043.0292537136 3.7259998 -7354.1577
+235044.0292538179 3.7258816 -7354.7485
+235045.0292539222 3.7258029 -7354.5513
+235046.0292540265 3.7257636 -7353.9609
+235047.0292541308 3.7256455 -7353.7646
+235048.0292542351 3.7255666 -7353.9609
+235049.0292543394 3.7254879 -7354.1577
+235050.0292544437 3.7253699 -7354.3545
+235051.029254548 3.7252517 -7353.7646
+235052.0292546523 3.7252123 -7354.1577
+235053.0292547566 3.725055 -7354.1577
+235054.0292548609 3.7249763 -7354.7485
+235055.0292549653 3.7248974 -7353.7646
+235056.0292550696 3.724858 -7354.5513
+235057.0292551739 3.7247794 -7354.5513
+235058.0292552782 3.7247007 -7354.3545
+235059.0292553825 3.7245431 -7353.7646
+235060.0292554868 3.7244251 -7353.9609
+235061.0292555911 3.7245038 -7354.7485
+235062.0292556954 3.7243462 -7353.5669
+235063.0292557997 3.7241888 -7354.1577
+235064.029255904 3.7240708 -7354.9453
+235065.0292560083 3.7241101 -7354.3545
+235066.0292561126 3.7239132 -7353.3706
+235067.0292562169 3.7238739 -7354.3545
+235068.0292563213 3.7237952 -7353.7646
+235069.0292564256 3.7237558 -7354.5513
+235070.0292565299 3.7235982 -7354.1577
+235071.0292566342 3.7234802 -7354.7485
+235072.0292567385 3.723362 -7354.1577
+235073.0292568428 3.723362 -7355.1421
+235074.0292569471 3.7232833 -7354.5513
+235075.0292570514 3.7231259 -7354.1577
+235076.0292571557 3.7231259 -7353.9609
+235077.02925726 3.7228107 -7354.1577
+235078.0292573643 3.7227714 -7354.5513
+235079.0292574686 3.7227714 -7354.3545
+235080.029257573 3.7227321 -7354.9453
+235081.0292576773 3.7225747 -7353.7646
+235082.0292577816 3.7224565 -7354.5513
+235083.0292578859 3.7222991 -7353.7646
+235084.0292579902 3.7222991 -7354.1577
+235085.0292580945 3.7221808 -7354.3545
+235086.0292581988 3.7220628 -7353.5669
+235087.0292583031 3.7220235 -7354.5513
+235088.0292584074 3.7219448 -7353.9609
+235089.0292585117 3.7218659 -7353.9609
+235090.029258616 3.7217085 -7354.3545
+235091.0292587203 3.7216299 -7354.5513
+235092.0292588247 3.7217085 -7353.9609
+235093.029258929 3.7213936 -7354.5513
+235094.0292590333 3.7213149 -7354.1577
+235095.0292591376 3.7211967 -7353.9609
+235096.0292592419 3.721118 -7353.7646
+235097.0292593462 3.7210786 -7354.7485
+235098.0292594505 3.7209604 -7354.1577
+235099.0292595548 3.720921 -7353.7646
+235100.0292596591 3.720803 -7354.5513
+235101.0292597634 3.720803 -7354.5513
+235102.0292598677 3.7205274 -7353.9609
+235103.029259972 3.7204881 -7353.5669
+235104.0292600764 3.7204094 -7354.1577
+235105.0292601807 3.7202518 -7353.9609
+235106.029260285 3.7200944 -7354.5513
+235107.0292603893 3.7201731 -7354.3545
+235108.0292604936 3.7200155 -7354.3545
+235109.0292605979 3.7199368 -7355.1421
+235110.0292607022 3.7197795 -7354.3545
+235111.0292608065 3.7196612 -7354.1577
+235112.0292609108 3.7196219 -7353.5669
+235113.0292610151 3.7195432 -7354.3545
+235114.0292611194 3.7195432 -7353.7646
+235115.0292612237 3.719425 -7353.9609
+235116.029261328 3.7192283 -7354.3545
+235117.0292614324 3.7192676 -7354.1577
+235118.0292615367 3.7190707 -7354.3545
+235119.029261641 3.7190707 -7354.1577
+235120.0292617453 3.7189133 -7354.1577
+235121.0292618496 3.7187951 -7354.5513
+235122.0292619539 3.7187951 -7354.1577
+235123.0292620582 3.718559 -7353.7646
+235124.0292621625 3.7185984 -7354.3545
+235125.0292622668 3.7184014 -7354.3545
+235126.0292623711 3.7184408 -7354.1577
+235127.0292624754 3.7182441 -7353.5669
+235128.0292625797 3.7181652 -7355.1421
+235129.0292626841 3.7180865 -7354.1577
+235130.0292627884 3.7180078 -7355.1421
+235131.0292628927 3.7178898 -7353.9609
+235132.029262997 3.7178109 -7354.3545
+235133.0292631013 3.7177715 -7354.1577
+235134.0292632056 3.7176142 -7354.1577
+235135.0292633099 3.7174566 -7354.1577
+235136.0292634142 3.7174172 -7353.9609
+235137.0292635185 3.7173386 -7353.9609
+235138.0292636228 3.717181 -7354.5513
+235139.0292637271 3.717181 -7354.9453
+235140.0292638314 3.7170236 -7354.1577
+235141.0292639358 3.7169843 -7354.7485
+235142.0292640401 3.7170236 -7353.7646
+235143.0292641444 3.7168267 -7353.9609
+235144.0292642487 3.716748 -7354.3545
+235145.029264353 3.7166693 -7354.1577
+235146.0292644573 3.7165904 -7354.3545
+235147.0292645616 3.7165511 -7354.7485
+235148.0292646659 3.7163937 -7354.3545
+235149.0292647702 3.7162361 -7354.1577
+235150.0292648745 3.7162361 -7353.9609
+235151.0292649788 3.7161574 -7353.7646
+235152.0292650831 3.7159998 -7354.5513
+235153.0292651874 3.7158031 -7355.1421
+235154.0292652918 3.7158031 -7353.5669
+235155.0292653961 3.7158031 -7354.1577
+235156.0292655004 3.7155669 -7354.5513
+235157.0292656047 3.7155275 -7354.7485
+235158.029265709 3.7154093 -7354.1577
+235159.0292658133 3.7153699 -7355.1421
+235160.0292659176 3.7152519 -7354.3545
+235161.0292660219 3.7152519 -7353.7646
+235162.0292661262 3.7150943 -7353.9609
+235163.0292662305 3.7150156 -7353.7646
+235164.0292663348 3.7148976 -7354.3545
+235165.0292664391 3.7147007 -7353.7646
+235166.0292665435 3.7147007 -7354.3545
+235167.0292666478 3.7145827 -7354.9453
+235168.0292667521 3.7145433 -7354.7485
+235169.0292668564 3.7144251 -7354.3545
+235170.0292669607 3.7143071 -7354.5513
+235171.029267065 3.7141891 -7354.1577
+235172.0292671693 3.7141495 -7354.1577
+235173.0292672736 3.7140708 -7353.7646
+235174.0292673779 3.7139528 -7354.7485
+235175.0292674822 3.7138345 -7354.5513
+235176.0292675865 3.7137558 -7354.3545
+235177.0292676908 3.7136772 -7354.1577
+235178.0292677952 3.7135196 -7353.9609
+235179.0292678995 3.7135196 -7354.5513
+235180.0292680038 3.7133622 -7354.1577
+235181.0292681081 3.7133622 -7353.5669
+235182.0292682124 3.7132835 -7354.1577
+235183.0292683167 3.713244 -7354.5513
+235184.029268421 3.7130866 -7354.3545
+235185.0292685253 3.7129686 -7354.9453
+235186.0292686296 3.7128503 -7353.9609
+235187.0292687339 3.7128897 -7353.9609
+235188.0292688382 3.7126536 -7354.3545
+235189.0292689425 3.7126536 -7354.3545
+235190.0292690468 3.712496 -7353.9609
+235191.0292691512 3.712378 -7354.1577
+235192.0292692555 3.712378 -7354.1577
+235193.0292693598 3.7122204 -7353.9609
+235194.0292694641 3.7122204 -7354.7485
+235195.0292695684 3.7120235 -7353.5669
+235196.0292696727 3.7119448 -7353.5669
+235197.029269777 3.7119448 -7354.5513
+235198.0292698813 3.7118661 -7353.5669
+235199.0292699856 3.7117085 -7354.3545
+235200.0292700899 3.7116299 -7354.3545
+235201.0292701942 3.7114725 -7354.1577
+235202.0292702985 3.7114725 -7354.3545
+235203.0292704029 3.7112756 -7354.1577
+235204.0292705072 3.7112362 -7355.1421
+235205.0292706115 3.7112362 -7353.7646
+235206.0292707158 3.7110393 -7354.5513
+235207.0292708201 3.7110393 -7354.3545
+235208.0292709244 3.7108426 -7353.9609
+235209.0292710287 3.7108426 -7354.5513
+235210.029271133 3.7107637 -7354.3545
+235211.0292712373 3.7107637 -7354.3545
+235212.0292713416 3.710685 -7353.9609
+235213.0292714459 3.7105277 -7353.1738
+235214.0292715502 3.7103701 -7354.5513
+235215.0292716546 3.710252 -7354.1577
+235216.0292717589 3.7102127 -7353.5669
+235217.0292718632 3.7101731 -7353.3706
+235218.0292719675 3.7098188 -7353.7646
+235219.0292720718 3.7097795 -7354.7485
+235220.0292721761 3.7098978 -7354.3545
+235221.0292722804 3.7097402 -7354.9453
+235222.0292723847 3.7097795 -7354.7485
+235223.029272489 3.7096221 -7354.1577
+235224.0292725933 3.7095039 -7354.5513
+235225.0292726976 3.7094252 -7354.5513
+235226.0292728019 3.7092679 -7353.7646
+235227.0292729062 3.7091889 -7354.7485
+235228.0292730106 3.7091103 -7354.1577
+235229.0292731149 3.7090316 -7354.1577
+235230.0292732192 3.7088346 -7354.7485
+235231.0292733235 3.708756 -7354.3545
+235232.0292734278 3.7086773 -7353.5669
+235233.0292735321 3.7085984 -7354.3545
+235234.0292736364 3.708441 -7353.9609
+235235.0292737407 3.7085984 -7353.5669
+235236.029273845 3.7082834 -7354.5513
+235237.0292739493 3.7083228 -7354.3545
+235238.0292740536 3.7080867 -7353.7646
+235239.0292741579 3.7080078 -7354.3545
+235240.0292742623 3.7079291 -7354.9453
+235241.0292743666 3.7079291 -7354.5513
+235242.0292744709 3.7077718 -7353.7646
+235243.0292745752 3.7076929 -7354.5513
+235244.0292746795 3.7076929 -7354.7485
+235245.0292747838 3.7075748 -7354.1577
+235246.0292748881 3.7073779 -7354.7485
+235247.0292749924 3.7072992 -7354.1577
+235248.0292750967 3.7073386 -7355.3384
+235249.029275201 3.7071419 -7353.7646
+235250.0292753053 3.707063 -7353.5669
+235251.0292754096 3.7070236 -7353.1738
+235252.029275514 3.7068663 -7355.1421
+235253.0292756183 3.7067873 -7353.9609
+235254.0292757226 3.7066693 -7354.5513
+235255.0292758269 3.7066693 -7353.3706
+235256.0292759312 3.706512 -7354.7485
+235257.0292760355 3.7063544 -7354.3545
+235258.0292761398 3.7063937 -7354.1577
+235259.0292762441 3.7062757 -7353.5669
+235260.0292763484 3.7061574 -7353.5669
+235261.0292764527 3.7060788 -7353.7646
+235262.029276557 3.7059608 -7354.3545
+235263.0292766613 3.7058821 -7354.7485
+235264.0292767657 3.7058425 -7354.5513
+235265.02927687 3.7057245 -7354.3545
+235266.0292769743 3.7057245 -7354.3545
+235267.0292770786 3.7054489 -7353.9609
+235268.0292771829 3.7054489 -7354.3545
+235269.0292772872 3.7053308 -7354.1577
+235270.0292773915 3.7052522 -7354.1577
+235271.0292774958 3.7050946 -7353.9609
+235272.0292776001 3.7050552 -7354.7485
+235273.0292777044 3.7050159 -7354.1577
+235274.0292778087 3.7049766 -7354.9453
+235275.029277913 3.7047009 -7354.1577
+235276.0292780173 3.7046616 -7354.1577
+235277.0292781217 3.7045827 -7354.3545
+235278.029278226 3.7045434 -7354.3545
+235279.0292783303 3.7044647 -7354.3545
+235280.0292784346 3.7043467 -7354.1577
+235281.0292785389 3.7042677 -7353.7646
+235282.0292786432 3.704071 -7354.9453
+235283.0292787475 3.7040317 -7354.5513
+235284.0292788518 3.7039528 -7353.9609
+235285.0292789561 3.7038348 -7354.3545
+235286.0292790604 3.7037954 -7353.7646
+235287.0292791647 3.7036378 -7354.1577
+235288.029279269 3.7035198 -7353.5669
+235289.0292793734 3.7035198 -7354.3545
+235290.0292794777 3.7034018 -7353.9609
+235291.029279582 3.7032835 -7354.9453
+235292.0292796863 3.7032049 -7354.7485
+235293.0292797906 3.7030473 -7354.3545
+235294.0292798949 3.7028506 -7354.5513
+235295.0292799992 3.7029293 -7354.5513
+235296.0292801035 3.7028112 -7354.3545
+235297.0292802078 3.7027717 -7354.3545
+235298.0292803121 3.7026143 -7353.7646
+235299.0292804164 3.7026143 -7354.1577
+235300.0292805207 3.7025356 -7354.7485
+235301.0292806251 3.702378 -7355.1421
+235302.0292807294 3.7022994 -7354.1577
+235303.0292808337 3.7021418 -7353.9609
+235304.029280938 3.7021813 -7354.1577
+235305.0292810423 3.7019844 -7354.5513
+235306.0292811466 3.7019057 -7354.3545
+235307.0292812509 3.7019057 -7354.9453
+235308.0292813552 3.7018268 -7354.3545
+235309.0292814595 3.7015908 -7354.9453
+235310.0292815638 3.7016301 -7354.3545
+235311.0292816681 3.7014725 -7354.1577
+235312.0292817724 3.7013152 -7354.3545
+235313.0292818767 3.7012758 -7354.7485
+235314.0292819811 3.7010789 -7354.1577
+235315.0292820854 3.7011576 -7353.7646
+235316.0292821897 3.7009609 -7353.9609
+235317.029282294 3.7009213 -7355.1421
+235318.0292823983 3.7008033 -7354.7485
+235319.0292825026 3.7006853 -7353.7646
+235320.0292826069 3.7006853 -7354.1577
+235321.0292827112 3.700567 -7354.7485
+235322.0292828155 3.7003703 -7354.7485
+235323.0292829198 3.7004097 -7353.7646
+235324.0292830241 3.7002127 -7353.9609
+235325.0292831284 3.7002521 -7353.7646
+235326.0292832328 3.700134 -7354.5513
+235327.0292833371 3.6999764 -7354.3545
+235328.0292834414 3.6999764 -7354.1577
+235329.0292835457 3.6998191 -7354.3545
+235330.02928365 3.6997404 -7354.1577
+235331.0292837543 3.6997008 -7354.3545
+235332.0292838586 3.6996222 -7354.5513
+235333.0292839629 3.6995435 -7354.7485
+235334.0292840672 3.6994648 -7353.9609
+235335.0292841715 3.6993465 -7354.7485
+235336.0292842758 3.6991892 -7354.1577
+235337.0292843801 3.6991892 -7353.9609
+235338.0292844845 3.6990316 -7354.5513
+235339.0292845888 3.6990316 -7354.5513
+235340.0292846931 3.6989529 -7354.1577
+235341.0292847974 3.6988349 -7354.5513
+235342.0292849017 3.6987956 -7354.5513
+235343.029285006 3.698756 -7354.9453
+235344.0292851103 3.6986773 -7354.3545
+235345.0292852146 3.6985199 -7353.5669
+235346.0292853189 3.6984017 -7354.5513
+235347.0292854232 3.698323 -7354.3545
+235348.0292855275 3.698205 -7354.5513
+235349.0292856318 3.6981261 -7354.5513
+235350.0292857361 3.6981261 -7354.5513
+235351.0292858405 3.6980867 -7354.7485
+235352.0292859448 3.6979687 -7354.3545
+235353.0292860491 3.69789 -7354.9453
+235354.0292861534 3.6978111 -7355.1421
+235355.0292862577 3.6975751 -7354.5513
+235356.029286362 3.6976144 -7353.9609
+235357.0292864663 3.6974568 -7355.1421
+235358.0292865706 3.6974568 -7354.3545
+235359.0292866749 3.6972995 -7354.7485
+235360.0292867792 3.6972601 -7354.3545
+235361.0292868835 3.6971812 -7354.9453
+235362.0292869878 3.6970239 -7353.3706
+235363.0292870922 3.6970239 -7355.1421
+235364.0292871965 3.6969452 -7354.9453
+235365.0292873008 3.6968269 -7354.3545
+235366.0292874051 3.6967089 -7354.1577
+235367.0292875094 3.6965907 -7354.5513
+235368.0292876137 3.6965513 -7353.9609
+235369.029287718 3.6964726 -7354.7485
+235370.0292878223 3.696394 -7354.5513
+235371.0292879266 3.6963153 -7354.3545
+235372.0292880309 3.6961577 -7353.7646
+235373.0292881352 3.696197 -7354.1577
+235374.0292882395 3.6960397 -7353.9609
+235375.0292883439 3.6958821 -7353.7646
+235376.0292884482 3.6958427 -7353.7646
+235377.0292885525 3.6957641 -7354.1577
+235378.0292886568 3.6956065 -7354.5513
+235379.0292887611 3.6956065 -7354.1577
+235380.0292888654 3.6954885 -7353.5669
+235381.0292889697 3.6954885 -7353.5669
+235382.029289074 3.6951735 -7354.3545
+235383.0292891783 3.6952128 -7354.5513
+235384.0292892826 3.6952128 -7354.7485
+235385.0292893869 3.6950948 -7354.5513
+235386.0292894912 3.6949372 -7354.1577
+235387.0292895956 3.6948979 -7353.9609
+235388.0292896999 3.6948586 -7354.5513
+235389.0292898042 3.694701 -7354.5513
+235390.0292899085 3.6946223 -7354.3545
+235391.0292900128 3.6945436 -7354.9453
+235392.0292901171 3.6944649 -7355.3384
+235393.0292902214 3.6943073 -7353.7646
+235394.0292903257 3.694268 -7353.9609
+235395.02929043 3.6941893 -7353.5669
+235396.0292905343 3.6941104 -7354.5513
+235397.0292906386 3.6940317 -7354.9453
+235398.0292907429 3.6939137 -7355.1421
+235399.0292908472 3.6939137 -7354.5513
+235400.0292909516 3.6937561 -7354.5513
+235401.0292910559 3.6936774 -7354.5513
+235402.0292911602 3.6935987 -7354.1577
+235403.0292912645 3.6934412 -7354.7485
+235404.0292913688 3.6934805 -7353.7646
+235405.0292914731 3.6933231 -7354.1577
+235406.0292915774 3.6932445 -7354.3545
+235407.0292916817 3.6931655 -7354.1577
+235408.029291786 3.6931262 -7354.5513
+235409.0292918903 3.6928506 -7354.3545
+235410.0292919946 3.6928899 -7354.3545
+235411.0292920989 3.6928113 -7354.7485
+235412.0292922033 3.6926146 -7353.9609
+235413.0292923076 3.6926539 -7354.1577
+235414.0292924119 3.6924963 -7353.3706
+235415.0292925162 3.6922994 -7354.9453
+235416.0292926205 3.6922994 -7354.5513
+235417.0292927248 3.6922207 -7354.1577
+235418.0292928291 3.692142 -7353.1738
+235419.0292929334 3.6920633 -7354.5513
+235420.0292930377 3.6919451 -7353.3706
+235421.029293142 3.6918664 -7354.5513
+235422.0292932463 3.6917484 -7354.1577
+235423.0292933506 3.6916301 -7354.3545
+235424.029293455 3.691709 -7354.3545
+235425.0292935593 3.6916301 -7354.5513
+235426.0292936636 3.6914334 -7354.3545
+235427.0292937679 3.6913941 -7354.9453
+235428.0292938722 3.6911972 -7354.5513
+235429.0292939765 3.6911578 -7352.7803
+235430.0292940808 3.6910396 -7354.3545
+235431.0292941851 3.6909215 -7353.3706
+235432.0292942894 3.6908822 -7354.5513
+235433.0292943937 3.6908822 -7354.3545
+235434.029294498 3.6908035 -7354.5513
+235435.0292946023 3.6906853 -7354.1577
+235436.0292947066 3.6905279 -7354.5513
+235437.029294811 3.6903703 -7354.1577
+235438.0292949153 3.690331 -7354.7485
+235439.0292950196 3.690213 -7354.3545
+235440.0292951239 3.690213 -7354.5513
+235441.0292952282 3.6901736 -7354.9453
+235442.0292953325 3.6900947 -7354.5513
+235443.0292954368 3.689898 -7353.7646
+235444.0292955411 3.6898587 -7354.5513
+235445.0292956454 3.6898191 -7353.5669
+235446.0292957497 3.6895437 -7353.9609
+235447.029295854 3.6895831 -7354.9453
+235448.0292959583 3.6894255 -7355.1421
+235449.0292960627 3.6893468 -7353.9609
+235450.029296167 3.6891892 -7354.5513
+235451.0292962713 3.6893468 -7353.7646
+235452.0292963756 3.6890712 -7354.1577
+235453.0292964799 3.6890318 -7354.3545
+235454.0292965842 3.6890318 -7353.9609
+235455.0292966885 3.6889136 -7354.3545
+235456.0292967928 3.6887956 -7353.7646
+235457.0292968971 3.6886775 -7354.1577
+235458.0292970014 3.6886382 -7354.3545
+235459.0292971057 3.68852 -7354.1577
+235460.02929721 3.6884019 -7354.5513
+235461.0292973144 3.6884413 -7353.9609
+235462.0292974187 3.6882837 -7353.9609
+235463.029297523 3.6880476 -7354.1577
+235464.0292976273 3.6880476 -7354.7485
+235465.0292977316 3.6879687 -7354.5513
+235466.0292978359 3.6878901 -7354.3545
+235467.0292979402 3.6877327 -7354.1577
+235468.0292980445 3.6876538 -7354.3545
+235469.0292981488 3.6874571 -7354.1577
+235470.0292982531 3.6874964 -7354.5513
+235471.0292983574 3.6873784 -7354.1577
+235472.0292984617 3.6873388 -7354.3545
+235473.029298566 3.6871421 -7353.9609
+235474.0292986704 3.6871421 -7354.3545
+235475.0292987747 3.6869845 -7354.1577
+235476.029298879 3.6869059 -7353.1738
+235477.0292989833 3.6868272 -7354.3545
+235478.0292990876 3.6866696 -7353.9609
+235479.0292991919 3.6866302 -7353.5669
+235480.0292992962 3.6865909 -7354.7485
+235481.0292994005 3.686276 -7354.1577
+235482.0292995048 3.6863546 -7354.7485
+235483.0292996091 3.6861579 -7353.9609
+235484.0292997134 3.6861184 -7354.1577
+235485.0292998177 3.6860397 -7354.1577
+235486.0292999221 3.6858823 -7353.9609
+235487.0293000264 3.6858823 -7354.5513
+235488.0293001307 3.6858034 -7354.3545
+235489.029300235 3.6856854 -7354.5513
+235490.0293003393 3.6855674 -7354.5513
+235491.0293004436 3.6854491 -7354.7485
+235492.0293005479 3.6854098 -7353.3706
+235493.0293006522 3.6852918 -7354.7485
+235494.0293007565 3.6852524 -7354.1577
+235495.0293008608 3.6851342 -7354.5513
+235496.0293009651 3.6849768 -7353.9609
+235497.0293010694 3.6848586 -7354.1577
+235498.0293011738 3.6848192 -7353.7646
+235499.0293012781 3.6846619 -7353.9609
+235500.0293013824 3.6845829 -7355.1421
+235501.0293014867 3.6844649 -7354.3545
+235502.029301591 3.6845043 -7353.9609
+235503.0293016953 3.6843076 -7353.7646
+235504.0293017996 3.6843076 -7354.1577
+235505.0293019039 3.68415 -7354.9453
+235506.0293020082 3.684032 -7353.3706
+235507.0293021125 3.6839137 -7354.5513
+235508.0293022168 3.6838744 -7354.3545
+235509.0293023211 3.6837564 -7353.9609
+235510.0293024255 3.6835988 -7354.1577
+235511.0293025298 3.6834807 -7354.5513
+235512.0293026341 3.6834414 -7354.7485
+235513.0293027384 3.6832051 -7353.1738
+235514.0293028427 3.6832838 -7353.1738
+235515.029302947 3.6831264 -7354.3545
+235516.0293030513 3.6830871 -7353.9609
+235517.0293031556 3.6830082 -7354.9453
+235518.0293032599 3.6828902 -7354.1577
+235519.0293033642 3.6828902 -7354.3545
+235520.0293034685 3.6826932 -7354.3545
+235521.0293035728 3.6826146 -7354.1577
+235522.0293036771 3.6826146 -7353.7646
+235523.0293037815 3.6824572 -7354.5513
+235524.0293038858 3.6822603 -7353.9609
+235525.0293039901 3.6822603 -7354.1577
+235526.0293040944 3.6821027 -7354.3545
+235527.0293041987 3.682024 -7354.3545
+235528.029304303 3.681906 -7354.3545
+235529.0293044073 3.6818666 -7354.5513
+235530.0293045116 3.6818271 -7354.3545
+235531.0293046159 3.6816304 -7354.1577
+235532.0293047202 3.6816304 -7354.7485
+235533.0293048245 3.6814334 -7353.5669
+235534.0293049288 3.6813941 -7354.1577
+235535.0293050332 3.6813154 -7354.1577
+235536.0293051375 3.6811578 -7354.1577
+235537.0293052418 3.6810791 -7355.1421
+235538.0293053461 3.6810005 -7354.5513
+235539.0293054504 3.6808822 -7352.9771
+235540.0293055547 3.6807642 -7354.5513
+235541.029305659 3.6807642 -7354.3545
+235542.0293057633 3.6806855 -7354.3545
+235543.0293058676 3.6805279 -7354.3545
+235544.0293059719 3.6804099 -7354.5513
+235545.0293060762 3.6804099 -7354.5513
+235546.0293061805 3.6803312 -7354.5513
+235547.0293062849 3.680095 -7355.3384
+235548.0293063892 3.6800556 -7354.1577
+235549.0293064935 3.6799767 -7353.1738
+235550.0293065978 3.6798193 -7354.5513
+235551.0293067021 3.67978 -7354.9453
+235552.0293068064 3.6797013 -7354.3545
+235553.0293069107 3.6795831 -7353.7646
+235554.029307015 3.6795044 -7354.7485
+235555.0293071193 3.6793864 -7353.5669
+235556.0293072236 3.6794257 -7354.9453
+235557.0293073279 3.6792288 -7354.3545
+235558.0293074322 3.6791501 -7354.1577
+235559.0293075365 3.6789925 -7354.5513
+235560.0293076409 3.6789925 -7353.5669
+235561.0293077452 3.6789138 -7354.9453
+235562.0293078495 3.6787958 -7354.3545
+235563.0293079538 3.6786382 -7353.7646
+235564.0293080581 3.6785202 -7354.3545
+235565.0293081624 3.6784019 -7353.9609
+235566.0293082667 3.6783626 -7354.3545
+235567.029308371 3.6782446 -7353.7646
+235568.0293084753 3.6781659 -7355.1421
+235569.0293085796 3.6780477 -7354.3545
+235570.0293086839 3.6778903 -7353.9609
+235571.0293087882 3.677851 -7354.1577
+235572.0293088926 3.6776934 -7355.3384
+235573.0293089969 3.6776934 -7353.9609
+235574.0293091012 3.6775753 -7353.7646
+235575.0293092055 3.677536 -7354.1577
+235576.0293093098 3.6773391 -7354.1577
+235577.0293094141 3.6772604 -7354.5513
+235578.0293095184 3.6772604 -7354.5513
+235579.0293096227 3.6769848 -7354.5513
+235580.029309727 3.6769848 -7354.1577
+235581.0293098313 3.6769454 -7354.3545
+235582.0293099356 3.6767485 -7354.3545
+235583.0293100399 3.6766698 -7354.1577
+235584.0293101443 3.6765122 -7355.1421
+235585.0293102486 3.6764336 -7353.3706
+235586.0293103529 3.6764336 -7353.7646
+235587.0293104572 3.6762366 -7353.9609
+235588.0293105615 3.676158 -7354.3545
+235589.0293106658 3.6760793 -7353.7646
+235590.0293107701 3.675961 -7353.9609
+235591.0293108744 3.6760006 -7354.3545
+235592.0293109787 3.675843 -7353.5669
+235593.029311083 3.6756856 -7355.3384
+235594.0293111873 3.6755674 -7353.7646
+235595.0293112916 3.6754887 -7353.7646
+235596.0293113959 3.6754887 -7354.3545
+235597.0293115003 3.6752918 -7354.1577
+235598.0293116046 3.6750951 -7353.9609
+235599.0293117089 3.6750951 -7354.5513
+235600.0293118132 3.6749768 -7354.1577
+235601.0293119175 3.6748981 -7354.5513
+235602.0293120218 3.6748981 -7353.9609
+235603.0293121261 3.6746225 -7353.5669
+235604.0293122304 3.6746225 -7355.1421
+235605.0293123347 3.6745045 -7354.7485
+235606.029312439 3.6744256 -7354.1577
+235607.0293125433 3.6742682 -7353.9609
+235608.0293126476 3.6742289 -7354.5513
+235609.029312752 3.674032 -7354.1577
+235610.0293128563 3.6741107 -7353.7646
+235611.0293129606 3.673914 -7353.9609
+235612.0293130649 3.6737564 -7353.9609
+235613.0293131692 3.673717 -7354.5513
+235614.0293132735 3.6735597 -7354.9453
+235615.0293133778 3.673599 -7354.1577
+235616.0293134821 3.6734021 -7354.1577
+235617.0293135864 3.6734021 -7354.9453
+235618.0293136907 3.6731658 -7353.7646
+235619.029313795 3.6730478 -7353.9609
+235620.0293138993 3.6730478 -7354.3545
+235621.0293140037 3.6728902 -7354.1577
+235622.029314108 3.6727722 -7354.5513
+235623.0293142123 3.6727328 -7354.5513
+235624.0293143166 3.6726148 -7354.5513
+235625.0293144209 3.6725752 -7354.9453
+235626.0293145252 3.6724179 -7353.9609
+235627.0293146295 3.6723392 -7353.7646
+235628.0293147338 3.6722603 -7354.3545
+235629.0293148381 3.6721816 -7353.1738
+235630.0293149424 3.6721816 -7354.3545
+235631.0293150467 3.6719849 -7353.7646
+235632.029315151 3.6718667 -7353.9609
+235633.0293152554 3.6717486 -7353.9609
+235634.0293153597 3.67167 -7354.3545
+235635.029315464 3.6715124 -7354.3545
+235636.0293155683 3.6714337 -7354.1577
+235637.0293156726 3.6713943 -7353.9609
+235638.0293157769 3.6712761 -7354.1577
+235639.0293158812 3.6712368 -7353.7646
+235640.0293159855 3.6711187 -7354.7485
+235641.0293160898 3.6708431 -7353.5669
+235642.0293161941 3.6709218 -7355.1421
+235643.0293162984 3.6707249 -7354.7485
+235644.0293164027 3.6707644 -7354.3545
+235645.029316507 3.6706462 -7353.9609
+235646.0293166114 3.6704888 -7353.9609
+235647.0293167157 3.6704495 -7354.1577
+235648.02931682 3.6702526 -7354.5513
+235649.0293169243 3.6701739 -7354.7485
+235650.0293170286 3.6701345 -7354.1577
+235651.0293171329 3.6699376 -7353.5669
+235652.0293172372 3.6698589 -7354.1577
+235653.0293173415 3.6698196 -7353.7646
+235654.0293174458 3.6697407 -7354.3545
+235655.0293175501 3.669544 -7354.3545
+235656.0293176544 3.6695046 -7354.5513
+235657.0293177587 3.6694651 -7354.5513
+235658.0293178631 3.669229 -7354.5513
+235659.0293179674 3.669229 -7354.5513
+235660.0293180717 3.6691501 -7354.1577
+235661.029318176 3.6690714 -7354.5513
+235662.0293182803 3.6689534 -7354.3545
+235663.0293183846 3.6688745 -7353.9609
+235664.0293184889 3.6686778 -7353.5669
+235665.0293185932 3.6685991 -7354.3545
+235666.0293186975 3.6685202 -7354.3545
+235667.0293188018 3.6684415 -7354.5513
+235668.0293189061 3.6682446 -7354.3545
+235669.0293190104 3.6683235 -7354.1577
+235670.0293191148 3.6681266 -7353.7646
+235671.0293192191 3.6680479 -7353.3706
+235672.0293193234 3.6679296 -7354.5513
+235673.0293194277 3.6678903 -7354.1577
+235674.029319532 3.6676936 -7354.3545
+235675.0293196363 3.6676147 -7353.5669
+235676.0293197406 3.6674573 -7354.1577
+235677.0293198449 3.6673391 -7354.5513
+235678.0293199492 3.6673391 -7354.7485
+235679.0293200535 3.6672211 -7354.1577
+235680.0293201578 3.6671424 -7354.7485
+235681.0293202621 3.6670637 -7354.9453
+235682.0293203664 3.6669455 -7354.9453
+235683.0293204708 3.6668274 -7354.1577
+235684.0293205751 3.6667092 -7353.5669
+235685.0293206794 3.6666305 -7354.3545
+235686.0293207837 3.6666305 -7353.7646
+235687.029320888 3.6665518 -7354.5513
+235688.0293209923 3.6663942 -7354.7485
+235689.0293210966 3.6661975 -7353.9609
+235690.0293212009 3.6661189 -7354.5513
+235691.0293213052 3.6659613 -7354.9453
+235692.0293214095 3.6660399 -7354.3545
+235693.0293215138 3.6658826 -7354.5513
+235694.0293216181 3.6657643 -7354.5513
+235695.0293217225 3.665725 -7354.7485
+235696.0293218268 3.6656463 -7353.9609
+235697.0293219311 3.6654887 -7353.9609
+235698.0293220354 3.665292 -7354.1577
+235699.0293221397 3.6652527 -7354.9453
+235700.029322244 3.6652133 -7354.5513
+235701.0293223483 3.6650558 -7353.9609
+235702.0293224526 3.6650558 -7354.9453
+235703.0293225569 3.6649771 -7355.1421
+235704.0293226612 3.6648195 -7354.5513
+235705.0293227655 3.6647408 -7354.1577
+235706.0293228698 3.6646228 -7354.3545
+235707.0293229742 3.6645834 -7354.3545
+235708.0293230785 3.6643078 -7353.7646
+235709.0293231828 3.6642685 -7353.7646
+235710.0293232871 3.6641502 -7353.9609
+235711.0293233914 3.6641109 -7354.5513
+235712.0293234957 3.6639535 -7353.9609
+235713.0293236 3.6637959 -7354.1577
+235714.0293237043 3.6638353 -7354.3545
+235715.0293238086 3.6636384 -7354.5513
+235716.0293239129 3.6636779 -7354.9453
+235717.0293240172 3.6634417 -7354.1577
+235718.0293241215 3.663481 -7355.1421
+235719.0293242258 3.6633234 -7354.3545
+235720.0293243302 3.6632054 -7353.7646
+235721.0293244345 3.6632054 -7354.3545
+235722.0293245388 3.663048 -7354.1577
+235723.0293246431 3.6628904 -7354.1577
+235724.0293247474 3.6627724 -7353.9609
+235725.0293248517 3.6628511 -7353.9609
+235726.029324956 3.6626935 -7354.5513
+235727.0293250603 3.6625361 -7353.7646
+235728.0293251646 3.6625361 -7354.3545
+235729.0293252689 3.6623785 -7354.7485
+235730.0293253732 3.6623392 -7354.7485
+235731.0293254775 3.6621819 -7354.3545
+235732.0293255819 3.6620243 -7353.7646
+235733.0293256862 3.6620243 -7354.1577
+235734.0293257905 3.6618669 -7354.7485
+235735.0293258948 3.6618669 -7353.7646
+235736.0293259991 3.6615913 -7353.9609
+235737.0293261034 3.6615126 -7354.9453
+235738.0293262077 3.6615126 -7353.5669
+235739.029326312 3.6615126 -7353.9609
+235740.0293264163 3.6613944 -7354.3545
+235741.0293265206 3.6612763 -7354.3545
+235742.0293266249 3.6611187 -7354.5513
+235743.0293267292 3.6610007 -7354.3545
+235744.0293268336 3.6609614 -7354.3545
+235745.0293269379 3.6608431 -7353.9609
+235746.0293270422 3.6608431 -7354.1577
+235747.0293271465 3.6606464 -7354.1577
+235748.0293272508 3.6606071 -7354.5513
+235749.0293273551 3.6604888 -7354.3545
+235750.0293274594 3.6603315 -7354.5513
+235751.0293275637 3.6602921 -7354.1577
+235752.029327668 3.6601346 -7354.1577
+235753.0293277723 3.6600559 -7354.3545
+235754.0293278766 3.6599376 -7354.1577
+235755.0293279809 3.6598589 -7353.7646
+235756.0293280852 3.6597409 -7353.9609
+235757.0293281896 3.6597409 -7354.3545
+235758.0293282939 3.6595833 -7354.1577
+235759.0293283982 3.6595047 -7354.5513
+235760.0293285025 3.6593473 -7353.9609
+235761.0293286068 3.6592684 -7355.3384
+235762.0293287111 3.659229 -7354.5513
+235763.0293288154 3.659111 -7354.1577
+235764.0293289197 3.6589928 -7354.1577
+235765.029329024 3.6588354 -7353.9609
+235766.0293291283 3.6587961 -7354.9453
+235767.0293292326 3.6587174 -7354.9453
+235768.0293293369 3.6585598 -7354.5513
+235769.0293294413 3.6584811 -7355.3384
+235770.0293295456 3.6584418 -7354.9453
+235771.0293296499 3.6583629 -7354.7485
+235772.0293297542 3.6581662 -7353.9609
+235773.0293298585 3.6581662 -7354.7485
+235774.0293299628 3.6579692 -7354.3545
+235775.0293300671 3.6578906 -7353.5669
+235776.0293301714 3.6578119 -7354.1577
+235777.0293302757 3.6576543 -7353.9609
+235778.02933038 3.6574969 -7353.9609
+235779.0293304843 3.6575363 -7354.7485
+235780.0293305886 3.657418 -7354.1577
+235781.029330693 3.6573 -7354.7485
+235782.0293307973 3.6572213 -7353.9609
+235783.0293309016 3.6570637 -7353.5669
+235784.0293310059 3.6569457 -7355.1421
+235785.0293311102 3.656867 -7354.1577
+235786.0293312145 3.6568274 -7354.5513
+235787.0293313188 3.6566701 -7354.3545
+235788.0293314231 3.6566308 -7354.5513
+235789.0293315274 3.6565125 -7354.3545
+235790.0293316317 3.6563551 -7354.1577
+235791.029331736 3.6563158 -7354.3545
+235792.0293318403 3.6562369 -7353.5669
+235793.0293319447 3.6560402 -7353.9609
+235794.029332049 3.6559615 -7354.5513
+235795.0293321533 3.6559615 -7354.3545
+235796.0293322576 3.6557252 -7354.1577
+235797.0293323619 3.6556859 -7353.9609
+235798.0293324662 3.655607 -7354.1577
+235799.0293325705 3.6555283 -7353.9609
+235800.0293326748 3.655292 -7354.1577
+235801.0293327791 3.655292 -7353.9609
+235802.0293328834 3.6550953 -7354.3545
+235803.0293329877 3.655056 -7353.5669
+235804.029333092 3.655056 -7354.1577
+235805.0293331963 3.6547804 -7353.7646
+235806.0293333007 3.6547804 -7354.1577
+235807.029333405 3.6545835 -7353.9609
+235808.0293335093 3.6545048 -7354.1577
+235809.0293336136 3.6543865 -7354.7485
+235810.0293337179 3.6542685 -7353.5669
+235811.0293338222 3.6541111 -7354.5513
+235812.0293339265 3.6541111 -7354.1577
+235813.0293340308 3.6539142 -7353.5669
+235814.0293341351 3.6539142 -7354.1577
+235815.0293342394 3.6537962 -7354.7485
+235816.0293343437 3.6535599 -7353.5669
+235817.029334448 3.6535599 -7354.7485
+235818.0293345524 3.6534812 -7354.1577
+235819.0293346567 3.653363 -7354.3545
+235820.029334761 3.653245 -7354.5513
+235821.0293348653 3.6531661 -7354.1577
+235822.0293349696 3.653048 -7354.3545
+235823.0293350739 3.6529694 -7353.9609
+235824.0293351782 3.6527331 -7353.9609
+235825.0293352825 3.6526544 -7354.7485
+235826.0293353868 3.6526544 -7354.3545
+235827.0293354911 3.6525362 -7353.9609
+235828.0293355954 3.6522608 -7355.1421
+235829.0293356997 3.6523001 -7353.9609
+235830.0293358041 3.6521425 -7354.1577
+235831.0293359084 3.6520638 -7355.1421
+235832.0293360127 3.6519063 -7353.9609
+235833.029336117 3.6518276 -7354.9453
+235834.0293362213 3.6517882 -7354.7485
+235835.0293363256 3.6517489 -7354.3545
+235836.0293364299 3.6515126 -7353.3706
+235837.0293365342 3.6513553 -7354.5513
+235838.0293366385 3.6513553 -7353.9609
+235839.0293367428 3.651237 -7353.9609
+235840.0293368471 3.6511977 -7354.7485
+235841.0293369514 3.6510797 -7354.5513
+235842.0293370557 3.6510797 -7354.3545
+235843.0293371601 3.650804 -7353.9609
+235844.0293372644 3.650804 -7354.5513
+235845.0293373687 3.6507647 -7354.1577
+235846.029337473 3.6505678 -7353.9609
+235847.0293375773 3.6505284 -7354.3545
+235848.0293376816 3.6504891 -7354.5513
+235849.0293377859 3.6503315 -7354.5513
+235850.0293378902 3.6502922 -7354.5513
+235851.0293379945 3.6501741 -7354.3545
+235852.0293380988 3.6500165 -7353.7646
+235853.0293382031 3.6499772 -7354.3545
+235854.0293383074 3.6498199 -7354.1577
+235855.0293384118 3.6498592 -7355.1421
+235856.0293385161 3.6495836 -7354.3545
+235857.0293386204 3.6494653 -7354.9453
+235858.0293387247 3.6493866 -7354.9453
+235859.029338829 3.6492686 -7354.1577
+235860.0293389333 3.649111 -7354.7485
+235861.0293390376 3.649111 -7353.5669
+235862.0293391419 3.648875 -7354.3545
+235863.0293392462 3.648875 -7354.7485
+235864.0293393505 3.6486781 -7355.3384
+235865.0293394548 3.6485994 -7353.9609
+235866.0293395591 3.6484811 -7354.5513
+235867.0293396635 3.6483238 -7354.5513
+235868.0293397678 3.6482844 -7354.5513
+235869.0293398721 3.6482451 -7354.3545
+235870.0293399764 3.6480482 -7354.1577
+235871.0293400807 3.6480482 -7354.3545
+235872.029340185 3.6478512 -7354.5513
+235873.0293402893 3.6477332 -7354.1577
+235874.0293403936 3.6476545 -7355.1421
+235875.0293404979 3.6475756 -7354.5513
+235876.0293406022 3.6473789 -7354.1577
+235877.0293407065 3.6472607 -7354.1577
+235878.0293408108 3.647182 -7354.3545
+235879.0293409151 3.647064 -7353.9609
+235880.0293410195 3.6469064 -7354.9453
+235881.0293411238 3.6468277 -7355.3384
+235882.0293412281 3.6466701 -7354.7485
+235883.0293413324 3.6465914 -7354.3545
+235884.0293414367 3.6465914 -7354.1577
+235885.029341541 3.6463552 -7353.9609
+235886.0293416453 3.6462765 -7354.5513
+235887.0293417496 3.6461191 -7354.3545
+235888.0293418539 3.6460009 -7354.5513
+235889.0293419582 3.6460798 -7353.9609
+235890.0293420625 3.6457646 -7355.5352
+235891.0293421668 3.6457253 -7354.3545
+235892.0293422712 3.6455679 -7354.5513
+235893.0293423755 3.6455286 -7354.3545
+235894.0293424798 3.6453316 -7354.7485
+235895.0293425841 3.6452923 -7353.3706
+235896.0293426884 3.6451347 -7353.9609
+235897.0293427927 3.6450167 -7353.7646
+235898.029342897 3.6450167 -7354.1577
+235899.0293430013 3.6448987 -7353.9609
+235900.0293431056 3.644623 -7355.1421
+235901.0293432099 3.6446624 -7354.1577
+235902.0293433142 3.6444654 -7354.1577
+235903.0293434185 3.6443474 -7353.5669
+235904.0293435229 3.6442294 -7354.3545
+235905.0293436272 3.6442294 -7354.3545
+235906.0293437315 3.6440718 -7353.5669
+235907.0293438355 3.6439538 -7354.3545
+235908.0293439399 3.6438749 -7354.1577
+235909.0293440442 3.6437569 -7354.1577
+235910.0293441485 3.6437569 -7354.1577
+235911.0293442528 3.6435206 -7353.9609
+235912.0293443571 3.6434813 -7354.7485
+235913.0293444614 3.6432843 -7354.1577
+235914.0293445657 3.6432843 -7353.9609
+235915.02934467 3.6430876 -7353.9609
+235916.0293447743 3.6430483 -7353.9609
+235917.0293448786 3.6428514 -7354.5513
+235918.0293449829 3.64293 -7354.1577
+235919.0293450872 3.6427727 -7353.9609
+235920.0293451916 3.6425757 -7354.7485
+235921.0293452959 3.6424971 -7353.9609
+235922.0293454002 3.6424184 -7354.7485
+235923.0293455045 3.6423788 -7353.5669
+235924.0293456088 3.6422215 -7353.3706
+235925.0293457131 3.6421034 -7353.5669
+235926.0293458174 3.6419852 -7353.7646
+235927.0293459217 3.6418278 -7354.3545
+235928.029346026 3.6417096 -7354.1577
+235929.0293461303 3.6416702 -7354.5513
+235930.0293462346 3.6415915 -7354.7485
+235931.0293463389 3.6415129 -7353.9609
+235932.0293464432 3.6413553 -7354.1577
+235933.0293465476 3.6411979 -7354.1577
+235934.0293466519 3.6411586 -7354.1577
+235935.0293467562 3.641001 -7353.7646
+235936.0293468605 3.6409616 -7353.3706
+235937.0293469648 3.6407254 -7354.5513
+235938.0293470691 3.6406074 -7353.7646
+235939.0293471734 3.6404498 -7353.7646
+235940.0293472777 3.6404891 -7353.7646
+235941.029347382 3.6402924 -7354.3545
+235942.0293474863 3.6402135 -7354.1577
+235943.0293475906 3.6400561 -7354.1577
+235944.0293476949 3.6400168 -7354.3545
+235945.0293477993 3.6400168 -7353.9609
+235946.0293479036 3.6398592 -7353.1738
+235947.0293480079 3.6397412 -7354.1577
+235948.0293481122 3.6395836 -7354.1577
+235949.0293482165 3.6393869 -7353.5669
+235950.0293483208 3.6392686 -7354.9453
+235951.0293484251 3.6391506 -7354.1577
+235952.0293485294 3.63919 -7353.7646
+235953.0293486337 3.6389933 -7353.3706
+235954.029348738 3.6389143 -7354.1577
+235955.0293488423 3.6387963 -7354.5513
+235956.0293489466 3.6387963 -7354.3545
+235957.029349051 3.6385207 -7353.9609
+235958.0293491553 3.6384027 -7353.5669
+235959.0293492596 3.6383238 -7353.9609
+235960.0293493639 3.6380877 -7354.7485
+235961.0293494682 3.6382451 -7354.5513
+235962.0293495725 3.6380482 -7353.9609
+235963.0293496768 3.6378515 -7354.1577
+235964.0293497811 3.6378121 -7354.3545
+235965.0293498854 3.6376939 -7355.1421
+235966.0293499897 3.6376152 -7354.1577
+235967.029350094 3.6374578 -7353.9609
+235968.0293501983 3.6374972 -7354.1577
+235969.0293503026 3.6373396 -7354.1577
+235970.029350407 3.6372216 -7354.5513
+235971.0293505113 3.6369853 -7354.7485
+235972.0293506156 3.6369853 -7354.1577
+235973.0293507199 3.6367884 -7354.5513
+235974.0293508242 3.6368277 -7354.3545
+235975.0293509285 3.6366704 -7354.5513
+235976.0293510328 3.6363947 -7353.7646
+235977.0293511371 3.6364734 -7354.1577
+235978.0293512414 3.6364341 -7354.3545
+235979.0293513457 3.6361191 -7353.7646
+235980.02935145 3.6360404 -7353.7646
+235981.0293515543 3.6360011 -7354.3545
+235982.0293516587 3.6359224 -7353.7646
+235983.029351763 3.6357255 -7354.7485
+235984.0293518673 3.6356075 -7354.3545
+235985.0293519716 3.6354499 -7354.7485
+235986.0293520759 3.6353712 -7354.5513
+235987.0293521802 3.635253 -7353.7646
+235988.0293522845 3.6351349 -7353.5669
+235989.0293523888 3.6350563 -7354.1577
+235990.0293524931 3.6350169 -7354.1577
+235991.0293525974 3.63482 -7353.9609
+235992.0293527017 3.63482 -7354.3545
+235993.029352806 3.6346231 -7354.1577
+235994.0293529104 3.6345444 -7353.7646
+235995.0293530147 3.6343081 -7354.3545
+235996.029353119 3.6343081 -7354.9453
+235997.0293532233 3.6341114 -7354.5513
+235998.0293533276 3.6339931 -7354.7485
+235999.0293534319 3.6340325 -7353.9609
+236000.0293535362 3.6338751 -7353.9609
+236001.0293536405 3.6337571 -7354.7485
+236002.0293537448 3.6335208 -7354.3545
+236003.0293538491 3.6334026 -7354.3545
+236004.0293539534 3.6332452 -7354.3545
+236005.0293540577 3.6333239 -7355.1421
+236006.029354162 3.633127 -7354.3545
+236007.0293542664 3.6330483 -7354.5513
+236008.0293543707 3.632694 -7353.9609
+236009.029354475 3.632694 -7354.3545
+236010.0293545793 3.6326153 -7353.5669
+236011.0293546836 3.632576 -7353.9609
+236012.0293547879 3.6323791 -7354.7485
+236013.0293548922 3.6323397 -7354.3545
+236014.0293549965 3.6321821 -7353.9609
+236015.0293551008 3.6321034 -7354.1577
+236016.0293552051 3.6319461 -7354.1577
+236017.0293553094 3.6318672 -7353.7646
+236018.0293554137 3.6319067 -7355.1421
+236019.0293555181 3.6317492 -7353.7646
+236020.0293556224 3.6316311 -7354.3545
+236021.0293557267 3.6314735 -7353.9609
+236022.029355831 3.6315129 -7354.3545
+236023.0293559353 3.6312766 -7354.3545
+236024.0293560396 3.6311979 -7354.3545
+236025.0293561439 3.6311193 -7354.3545
+236026.0293562482 3.6309617 -7354.3545
+236027.0293563525 3.630883 -7354.9453
+236028.0293564568 3.630765 -7355.1421
+236029.0293565611 3.630568 -7354.7485
+236030.0293566654 3.6305287 -7354.9453
+236031.0293567698 3.6304107 -7353.5669
+236032.0293568741 3.6302924 -7353.9609
+236033.0293569784 3.6300957 -7354.3545
+236034.0293570827 3.6300564 -7355.3384
+236035.029357187 3.6299775 -7354.5513
+236036.0293572913 3.6298594 -7355.3384
+236037.0293573956 3.6297412 -7354.1577
+236038.0293574999 3.6296232 -7354.5513
+236039.0293576042 3.6294658 -7354.1577
+236040.0293577085 3.6294262 -7354.9453
+236041.0293578128 3.6291902 -7354.5513
+236042.0293579171 3.6291902 -7354.1577
+236043.0293580214 3.6289539 -7354.5513
+236044.0293581258 3.629072 -7352.9771
+236045.0293582301 3.6288359 -7353.7646
+236046.0293583344 3.6287177 -7353.9609
+236047.0293584387 3.6286783 -7353.7646
+236048.029358543 3.6285996 -7354.7485
+236049.0293586473 3.628442 -7354.3545
+236050.0293587516 3.628324 -7354.1577
+236051.0293588559 3.6281271 -7354.1577
+236052.0293589602 3.6280878 -7354.7485
+236053.0293590645 3.6279304 -7353.9609
+236054.0293591688 3.6279304 -7354.3545
+236055.0293592731 3.6278515 -7353.5669
+236056.0293593775 3.6278121 -7354.1577
+236057.0293594818 3.6276548 -7355.3384
+236058.0293595861 3.6274972 -7354.7485
+236059.0293596904 3.6273792 -7353.9609
+236060.0293597947 3.6272609 -7354.1577
+236061.029359899 3.6272216 -7353.7646
+236062.0293600033 3.6269855 -7354.3545
+236063.0293601076 3.626946 -7353.9609
+236064.0293602119 3.626828 -7354.5513
+236065.0293603162 3.6267099 -7355.1421
+236066.0293604205 3.6266706 -7354.5513
+236067.0293605248 3.626513 -7354.3545
+236068.0293606292 3.6264737 -7353.9609
+236069.0293607335 3.6263556 -7353.9609
+236070.0293608378 3.6262374 -7354.1577
+236071.0293609421 3.6260405 -7354.5513
+236072.0293610464 3.6258831 -7353.9609
+236073.0293611507 3.6258044 -7354.7485
+236074.029361255 3.6255682 -7354.1577
+236075.0293613593 3.6256075 -7354.1577
+236076.0293614636 3.6254106 -7354.3545
+236077.0293615679 3.6253319 -7354.1577
+236078.0293616722 3.6251745 -7354.3545
+236079.0293617765 3.6251745 -7354.5513
+236080.0293618809 3.6250563 -7353.9609
+236081.0293619852 3.6249382 -7354.3545
+236082.0293620895 3.6248596 -7354.5513
+236083.0293621938 3.6248596 -7354.1577
+236084.0293622981 3.6246626 -7354.3545
+236085.0293624024 3.6245446 -7353.7646
+236086.0293625067 3.6244657 -7353.5669
+236087.029362611 3.6243477 -7353.9609
+236088.0293627153 3.6241901 -7354.1577
+236089.0293628196 3.6241114 -7354.3545
+236090.0293629239 3.6240327 -7354.3545
+236091.0293630282 3.6239541 -7353.9609
+236092.0293631325 3.6237965 -7354.3545
+236093.0293632369 3.6236391 -7354.7485
+236094.0293633412 3.6235602 -7354.1577
+236095.0293634455 3.6235209 -7353.7646
+236096.0293635498 3.6234028 -7354.9453
+236097.0293636541 3.6232059 -7354.5513
+236098.0293637584 3.6231272 -7353.9609
+236099.0293638627 3.6230092 -7354.5513
+236100.029363967 3.6230092 -7354.1577
+236101.0293640713 3.6228909 -7354.5513
+236102.0293641756 3.6228123 -7354.3545
+236103.0293642799 3.6228123 -7353.3706
+236104.0293643842 3.6226943 -7355.5352
+236105.0293644886 3.6225367 -7354.1577
+236106.0293645929 3.6223793 -7354.1577
+236107.0293646972 3.6223397 -7354.9453
+236108.0293648015 3.6221824 -7354.9453
+236109.0293649058 3.6221824 -7354.3545
+236110.0293650101 3.6219854 -7354.1577
+236111.0293651144 3.6218674 -7353.9609
+236112.0293652187 3.6217098 -7354.1577
+236113.029365323 3.6217494 -7354.7485
+236114.0293654273 3.6217494 -7355.1421
+236115.0293655316 3.6214738 -7353.7646
+236116.0293656359 3.6213162 -7353.9609
+236117.0293657403 3.6211588 -7354.3545
+236118.0293658446 3.6212375 -7353.9609
+236119.0293659489 3.6210799 -7354.3545
+236120.0293660532 3.6209226 -7355.3384
+236121.0293661575 3.6208832 -7353.9609
+236122.0293662618 3.6208439 -7354.3545
+236123.0293663661 3.620765 -7354.3545
+236124.0293664704 3.6205683 -7354.7485
+236125.0293665747 3.6204894 -7353.7646
+236126.029366679 3.6205289 -7354.1577
+236127.0293667833 3.620332 -7354.5513
+236128.0293668876 3.620214 -7354.7485
+236129.0293669919 3.6201744 -7354.1577
+236130.0293670963 3.6200957 -7353.3706
+236131.0293672006 3.6199777 -7354.9453
+236132.0293673049 3.6198595 -7353.7646
+236133.0293674092 3.6197021 -7354.1577
+236134.0293675135 3.6197021 -7353.9609
+236135.0293676178 3.6194658 -7354.7485
+236136.0293677221 3.6194265 -7354.7485
+236137.0293678264 3.6193085 -7354.7485
+236138.0293679307 3.6191902 -7354.3545
+236139.029368035 3.6190722 -7354.1577
+236140.0293681393 3.6190329 -7353.3706
+236141.0293682436 3.6189146 -7354.1577
+236142.029368348 3.6187572 -7352.9771
+236143.0293684523 3.618639 -7355.1421
+236144.0293685566 3.6186786 -7355.1421
+236145.0293686609 3.6185603 -7354.9453
+236146.0293687652 3.618403 -7353.9609
+236147.0293688695 3.6182847 -7354.3545
+236148.0293689738 3.6181667 -7354.5513
+236149.0293690781 3.6181667 -7353.5669
+236150.0293691824 3.6180091 -7354.1577
+236151.0293692867 3.6178124 -7354.3545
+236152.029369391 3.6177337 -7354.5513
+236153.0293694953 3.6175761 -7354.5513
+236154.0293695997 3.6175761 -7353.5669
+236155.029369704 3.6174188 -7354.3545
+236156.0293698083 3.6173792 -7354.7485
+236157.0293699126 3.6171825 -7353.3706
+236158.0293700169 3.6171036 -7354.3545
+236159.0293701212 3.6170249 -7353.7646
+236160.0293702255 3.6169462 -7354.3545
+236161.0293703298 3.6168675 -7353.5669
+236162.0293704341 3.6167886 -7354.5513
+236163.0293705384 3.6166706 -7354.1577
+236164.0293706427 3.6165919 -7354.1577
+236165.029370747 3.6165133 -7353.9609
+236166.0293708513 3.6164737 -7354.3545
+236167.0293709557 3.616277 -7353.9609
+236168.02937106 3.616277 -7354.1577
+236169.0293711643 3.61608 -7353.5669
+236170.0293712686 3.6158834 -7354.3545
+236171.0293713729 3.615962 -7354.3545
+236172.0293714772 3.6158044 -7354.3545
+236173.0293715815 3.6156077 -7353.5669
+236174.0293716858 3.6155288 -7354.5513
+236175.0293717901 3.6155288 -7354.5513
+236176.0293718944 3.6153715 -7353.9609
+236177.0293719987 3.6153321 -7354.3545
+236178.029372103 3.6152532 -7354.1577
+236179.0293722074 3.6151352 -7353.9609
+236180.0293723117 3.6150565 -7354.1577
+236181.029372416 3.6148596 -7353.7646
+236182.0293725203 3.6148989 -7353.5669
+236183.0293726246 3.6148202 -7354.7485
+236184.0293727289 3.6146629 -7354.1577
+236185.0293728332 3.614466 -7354.3545
+236186.0293729375 3.6145053 -7353.7646
+236187.0293730418 3.6143479 -7353.7646
+236188.0293731461 3.6142297 -7354.1577
+236189.0293732504 3.6141117 -7354.3545
+236190.0293733547 3.614033 -7353.7646
+236191.0293734591 3.614033 -7354.3545
+236192.0293735634 3.6139147 -7354.9453
+236193.0293736677 3.6137178 -7354.9453
+236194.029373772 3.6136391 -7354.3545
+236195.0293738763 3.6135998 -7354.5513
+236196.0293739806 3.6134028 -7354.1577
+236197.0293740849 3.6133242 -7354.5513
+236198.0293741892 3.6131668 -7353.9609
+236199.0293742935 3.6130879 -7354.5513
+236200.0293743978 3.6130092 -7354.1577
+236201.0293745021 3.6129699 -7353.9609
+236202.0293746064 3.6128519 -7354.3545
+236203.0293747108 3.6127336 -7353.9609
+236204.0293748151 3.6126943 -7354.5513
+236205.0293749194 3.6126549 -7354.1577
+236206.0293750237 3.6124976 -7354.3545
+236207.029375128 3.6122613 -7354.3545
+236208.0293752323 3.612222 -7354.5513
+236209.0293753366 3.612143 -7354.7485
+236210.0293754409 3.6120644 -7354.5513
+236211.0293755452 3.6118674 -7353.9609
+236212.0293756495 3.6116707 -7353.5669
+236213.0293757538 3.6115921 -7354.3545
+236214.0293758581 3.6113164 -7354.1577
+236215.0293759624 3.6113558 -7354.9453
+236216.0293760668 3.6113558 -7354.1577
+236217.0293761711 3.6111195 -7354.9453
+236218.0293762754 3.6110015 -7354.3545
+236219.0293763797 3.6110015 -7353.7646
+236220.029376484 3.6108439 -7353.9609
+236221.0293765883 3.6106865 -7354.5513
+236222.0293766926 3.6104896 -7354.1577
+236223.0293767969 3.6104503 -7354.1577
+236224.0293769012 3.6103716 -7353.7646
+236225.0293770055 3.6102533 -7354.3545
+236226.0293771098 3.6101747 -7354.1577
+236227.0293772141 3.6100566 -7354.1577
+236228.0293773185 3.6099777 -7353.7646
+236229.0293774228 3.6098597 -7354.7485
+236230.0293775271 3.6097021 -7354.1577
+236231.0293776314 3.6095448 -7354.9453
+236232.0293777357 3.6095448 -7354.1577
+236233.02937784 3.6093872 -7353.5669
+236234.0293779443 3.6094267 -7354.3545
+236235.0293780486 3.6092298 -7354.1577
+236236.0293781529 3.6091118 -7354.7485
+236237.0293782572 3.6089149 -7354.3545
+236238.0293783615 3.6089149 -7353.9609
+236239.0293784658 3.6087179 -7355.1421
+236240.0293785702 3.6085999 -7354.3545
+236241.0293786745 3.6085212 -7353.5669
+236242.0293787788 3.608403 -7354.3545
+236243.0293788831 3.6083636 -7354.5513
+236244.0293789874 3.6081667 -7353.9609
+236245.0293790917 3.6080093 -7354.3545
+236246.029379196 3.6079307 -7353.3706
+236247.0293793003 3.6077731 -7354.1577
+236248.0293794046 3.607655 -7354.9453
+236249.0293795089 3.6076157 -7354.1577
+236250.0293796132 3.6074975 -7354.5513
+236251.0293797175 3.6073794 -7355.1421
+236252.0293798218 3.6071825 -7354.5513
+236253.0293799262 3.6072218 -7354.3545
+236254.0293800305 3.6068282 -7354.1577
+236255.0293801348 3.6069069 -7354.1577
+236256.0293802391 3.6067889 -7353.9609
+236257.0293803434 3.6066315 -7354.7485
+236258.0293804477 3.6066315 -7353.9609
+236259.029380552 3.6064739 -7353.3706
+236260.0293806563 3.6063952 -7354.3545
+236261.0293807606 3.6061983 -7354.1577
+236262.0293808649 3.6061983 -7354.1577
+236263.0293809692 3.606041 -7354.1577
+236264.0293810735 3.6060014 -7353.5669
+236265.0293811779 3.6059227 -7354.3545
+236266.0293812822 3.6057653 -7354.5513
+236267.0293813865 3.6056077 -7355.1421
+236268.0293814908 3.6055291 -7354.3545
+236269.0293815951 3.6054897 -7354.1577
+236270.0293816994 3.6052928 -7354.3545
+236271.0293818037 3.6052141 -7355.1421
+236272.029381908 3.6050172 -7354.5513
+236273.0293820123 3.6050172 -7354.5513
+236274.0293821166 3.6048205 -7353.7646
+236275.0293822209 3.6048205 -7353.7646
+236276.0293823252 3.6047416 -7354.1577
+236277.0293824296 3.6046629 -7354.7485
+236278.0293825339 3.6045842 -7353.9609
+236279.0293826382 3.6043873 -7354.7485
+236280.0293827425 3.6042299 -7353.7646
+236281.0293828468 3.6042299 -7354.5513
+236282.0293829511 3.604033 -7353.9609
+236283.0293830554 3.6040723 -7354.5513
+236284.0293831597 3.6037967 -7353.9609
+236285.029383264 3.6036787 -7353.7646
+236286.0293833683 3.6036787 -7354.7485
+236287.0293834726 3.6036 -7354.7485
+236288.0293835769 3.6034424 -7354.5513
+236289.0293836812 3.6033244 -7354.3545
+236290.0293837856 3.6032062 -7354.3545
+236291.0293838899 3.6031668 -7354.1577
+236292.0293839942 3.6030488 -7354.9453
+236293.0293840985 3.6028912 -7354.7485
+236294.0293842028 3.6026552 -7353.7646
+236295.0293843071 3.6026552 -7354.3545
+236296.0293844114 3.6025763 -7354.3545
+236297.0293845157 3.6023796 -7354.1577
+236298.02938462 3.6023402 -7354.7485
+236299.0293847243 3.6022613 -7355.1421
+236300.0293848286 3.6019857 -7354.9453
+236301.0293849329 3.6019464 -7354.5513
+236302.0293850373 3.6018677 -7353.9609
+236303.0293851416 3.601789 -7353.7646
+236304.0293852459 3.6018283 -7354.3545
+236305.0293853502 3.6016314 -7354.9453
+236306.0293854545 3.6015527 -7355.3384
+236307.0293855588 3.6014347 -7354.1577
+236308.0293856631 3.6013165 -7353.3706
+236309.0293857674 3.6013558 -7354.3545
+236310.0293858717 3.6011591 -7353.5669
+236311.029385976 3.6010802 -7354.5513
+236312.0293860803 3.6009228 -7354.3545
+236313.0293861846 3.6007652 -7354.3545
+236314.029386289 3.6007259 -7354.1577
+236315.0293863933 3.6004899 -7355.3384
+236316.0293864976 3.6003716 -7354.3545
+236317.0293866019 3.6002929 -7353.7646
+236318.0293867062 3.6002536 -7353.9609
+236319.0293868105 3.6001353 -7354.5513
+236320.0293869148 3.5998993 -7354.7485
+236321.0293870191 3.5999386 -7354.3545
+236322.0293871234 3.59986 -7354.1577
+236323.0293872277 3.5997417 -7354.5513
+236324.029387332 3.5997024 -7353.5669
+236325.0293874363 3.5995843 -7354.3545
+236326.0293875407 3.599545 -7354.1577
+236327.029387645 3.5994267 -7354.5513
+236328.0293877493 3.5993087 -7354.3545
+236329.0293878536 3.5991511 -7354.5513
+236330.0293879579 3.5991118 -7354.7485
+236331.0293880622 3.5990331 -7354.3545
+236332.0293881665 3.5989149 -7354.7485
+236333.0293882708 3.5988362 -7354.1577
+236334.0293883751 3.5987575 -7355.3384
+236335.0293884794 3.5986788 -7353.7646
+236336.0293885837 3.5984032 -7353.3706
+236337.029388688 3.5984819 -7355.1421
+236338.0293887923 3.5983639 -7354.7485
+236339.0293888967 3.598285 -7354.7485
+236340.029389001 3.5982063 -7354.3545
+236341.0293891053 3.5981276 -7354.1577
+236342.0293892096 3.5980883 -7355.3384
+236343.0293893139 3.5978913 -7354.3545
+236344.0293894182 3.59797 -7353.3706
+236345.0293895225 3.597852 -7353.7646
+236346.0293896268 3.5978127 -7354.5513
+236347.0293897311 3.597734 -7354.3545
+236348.0293898354 3.5975764 -7354.7485
+236349.0293899397 3.5976157 -7355.3384
+236350.029390044 3.5974977 -7354.1577
+236351.0293901484 3.5973401 -7354.5513
+236352.0293902527 3.5973008 -7354.1577
+236353.029390357 3.5973401 -7353.7646
+236354.0293904613 3.5972614 -7353.7646
+236355.0293905656 3.5970645 -7354.5513
+236356.0293906699 3.5969858 -7353.9609
+236357.0293907742 3.5968678 -7354.1577
+236358.0293908785 3.5967891 -7353.7646
+236359.0293909828 3.5967495 -7354.1577
+236360.0293910871 3.5965922 -7353.7646
+236361.0293911914 3.5965135 -7355.3384
+236362.0293912957 3.5964346 -7353.9609
+236363.0293914001 3.5962772 -7353.7646
+236364.0293915044 3.5962379 -7354.3545
+236365.0293916087 3.5960803 -7354.7485
+236366.029391713 3.5960016 -7354.1577
+236367.0293918173 3.5958836 -7354.3545
+236368.0293919216 3.5958047 -7355.3384
+236369.0293920259 3.595608 -7354.7485
+236370.0293921302 3.5955687 -7354.1577
+236371.0293922345 3.5954504 -7354.1577
+236372.0293923388 3.5954504 -7354.1577
+236373.0293924431 3.5952141 -7354.3545
+236374.0293925474 3.5950961 -7353.7646
+236375.0293926517 3.5950174 -7354.3545
+236376.0293927561 3.5949388 -7354.3545
+236377.0293928604 3.5948992 -7353.9609
+236378.0293929647 3.5947812 -7354.3545
+236379.029393069 3.5947418 -7354.5513
+236380.0293931733 3.5947025 -7353.7646
+236381.0293932776 3.5945449 -7355.7324
+236382.0293933819 3.5944662 -7354.3545
+236383.0293934862 3.5943089 -7354.5513
+236384.0293935905 3.5942299 -7354.1577
+236385.0293936948 3.5941906 -7354.5513
+236386.0293937991 3.5941119 -7354.3545
+236387.0293939034 3.5940332 -7353.5669
+236388.0293940078 3.5939937 -7354.3545
+236389.0293941121 3.5938756 -7353.9609
+236390.0293942164 3.5938363 -7353.9609
+236391.0293943207 3.593797 -7354.3545
+236392.029394425 3.5936787 -7353.9609
+236393.0293945293 3.5936 -7354.1577
+236394.0293946336 3.5933244 -7354.3545
+236395.0293947379 3.5932851 -7353.9609
+236396.0293948422 3.5932457 -7354.5513
+236397.0293949465 3.5930488 -7353.5669
+236398.0293950508 3.5929701 -7354.1577
+236399.0293951551 3.5928128 -7353.5669
+236400.0293952595 3.5928128 -7354.1577
+236401.0293953638 3.5925765 -7354.5513
+236402.0293954681 3.5925765 -7354.3545
+236403.0293955724 3.5925372 -7354.7485
+236404.0293956767 3.5922222 -7354.9453
+236405.029395781 3.5922616 -7354.5513
+236406.0293958853 3.5922616 -7353.9609
+236407.0293959896 3.5920646 -7353.9609
+236408.0293960939 3.5920646 -7353.9609
+236409.0293961982 3.5918679 -7354.3545
+236410.0293963025 3.591789 -7353.5669
+236411.0293964068 3.591789 -7354.7485
+236412.0293965111 3.591671 -7354.5513
+236413.0293966155 3.5916317 -7354.1577
+236414.0293967198 3.591356 -7354.3545
+236415.0293968241 3.5914741 -7353.7646
+236416.0293969284 3.5912774 -7354.1577
+236417.0293970327 3.5911984 -7354.5513
+236418.029397137 3.5910411 -7354.5513
+236419.0293972413 3.5909624 -7354.9453
+236420.0293973456 3.5908048 -7354.1577
+236421.0293974499 3.5907655 -7354.1577
+236422.0293975542 3.5904112 -7354.3545
+236423.0293976585 3.5904505 -7353.9609
+236424.0293977628 3.5902536 -7354.3545
+236425.0293978672 3.5901356 -7354.1577
+236426.0293979715 3.5900176 -7354.5513
+236427.0293980758 3.5899386 -7354.7485
+236428.0293981801 3.5898206 -7354.7485
+236429.0293982844 3.5898206 -7353.5669
+236430.0293983887 3.5897026 -7353.9609
+236431.029398493 3.589545 -7354.1577
+236432.0293985973 3.5895057 -7354.3545
+236433.0293987016 3.5895057 -7353.9609
+236434.0293988059 3.5893087 -7354.5513
+236435.0293989102 3.5891907 -7353.3706
+236436.0293990145 3.5890331 -7354.3545
+236437.0293991189 3.5889938 -7353.7646
+236438.0293992232 3.5888758 -7353.9609
+236439.0293993275 3.5887182 -7354.1577
+236440.0293994318 3.5886002 -7354.1577
+236441.0293995361 3.5886002 -7353.5669
+236442.0293996404 3.5883639 -7354.3545
+236443.0293997447 3.5882459 -7353.9609
+236444.029399849 3.5882459 -7354.1577
+236445.0293999533 3.5881276 -7354.7485
+236446.0294000576 3.5880096 -7353.7646
+236447.0294001619 3.5879703 -7354.5513
+236448.0294002662 3.5879703 -7354.7485
+236449.0294003705 3.5876946 -7354.1577
+236450.0294004749 3.5876946 -7353.3706
+236451.0294005792 3.5875766 -7354.1577
+236452.0294006835 3.5873797 -7354.9453
+236453.0294007878 3.587301 -7353.7646
+236454.0294008921 3.5871434 -7354.5513
+236455.0294009964 3.5871041 -7354.9453
+236456.0294011007 3.5870254 -7354.5513
+236457.029401205 3.5869861 -7354.3545
+236458.0294013093 3.5867891 -7354.7485
+236459.0294014136 3.5866711 -7354.5513
+236460.0294015179 3.5865922 -7353.5669
+236461.0294016222 3.5864348 -7354.3545
+236462.0294017266 3.5863168 -7354.1577
+236463.0294018309 3.5863168 -7354.5513
+236464.0294019352 3.5860806 -7353.3706
+236465.0294020395 3.5860019 -7355.1421
+236466.0294021438 3.585923 -7354.5513
+236467.0294022481 3.5858836 -7354.1577
+236468.0294023524 3.585608 -7354.3545
+236469.0294024567 3.5855687 -7354.7485
+236470.029402561 3.5854506 -7354.3545
+236471.0294026653 3.5854113 -7354.1577
+236472.0294027696 3.5852537 -7353.9609
+236473.0294028739 3.5852144 -7354.3545
+236474.0294029783 3.5850174 -7354.1577
+236475.0294030826 3.5849781 -7353.3706
+236476.0294031869 3.5848207 -7353.9609
+236477.0294032912 3.5847025 -7354.9453
+236478.0294033955 3.5845845 -7355.3384
+236479.0294034998 3.5844269 -7353.9609
+236480.0294036041 3.5844269 -7354.3545
+236481.0294037084 3.5843482 -7354.5513
+236482.0294038127 3.5842695 -7354.1577
+236483.029403917 3.5841515 -7354.3545
+236484.0294040213 3.5840726 -7354.3545
+236485.0294041256 3.5839152 -7355.1421
+236486.02940423 3.5838759 -7354.1577
+236487.0294043343 3.5838366 -7354.1577
+236488.0294044386 3.583679 -7354.3545
+236489.0294045429 3.5836396 -7354.1577
+236490.0294046472 3.5834427 -7353.9609
+236491.0294047515 3.583482 -7353.9609
+236492.0294048558 3.583482 -7354.9453
+236493.0294049601 3.583246 -7354.9453
+236494.0294050644 3.5831671 -7353.5669
+236495.0294051687 3.5831277 -7355.1421
+236496.029405273 3.5830491 -7354.1577
+236497.0294053773 3.5828915 -7353.3706
+236498.0294054816 3.5826948 -7354.3545
+236499.029405586 3.5827341 -7353.5669
+236500.0294056903 3.5826554 -7354.5513
+236501.0294057946 3.5824192 -7353.9609
+236502.0294058989 3.5822616 -7354.3545
+236503.0294060032 3.5822616 -7353.3706
+236504.0294061075 3.5821435 -7354.9453
+236505.0294062118 3.5819466 -7354.5513
+236506.0294063161 3.5818679 -7354.1577
+236507.0294064204 3.5817106 -7354.1577
+236508.0294065247 3.5816712 -7354.1577
+236509.029406629 3.5815136 -7354.7485
+236510.0294067333 3.581435 -7354.7485
+236511.0294068377 3.581356 -7353.9609
+236512.029406942 3.5811594 -7354.9453
+236513.0294070463 3.5811594 -7353.9609
+236514.0294071506 3.5809231 -7354.3545
+236515.0294072549 3.5809624 -7354.1577
+236516.0294073592 3.5808444 -7354.3545
+236517.0294074635 3.5807261 -7354.3545
+236518.0294075678 3.5806081 -7354.5513
+236519.0294076721 3.5805688 -7354.3545
+236520.0294077764 3.5805295 -7353.3706
+236521.0294078807 3.5804901 -7354.3545
+236522.029407985 3.5803325 -7354.7485
+236523.0294080894 3.5803325 -7354.1577
+236524.0294081937 3.5803719 -7354.5513
+236525.029408298 3.5800569 -7354.7485
+236526.0294084023 3.5799782 -7354.7485
+236527.0294085066 3.5798602 -7355.1421
+236528.0294086109 3.5797026 -7354.3545
+236529.0294087152 3.579742 -7354.1577
+236530.0294088195 3.5796239 -7354.1577
+236531.0294089238 3.5795453 -7354.9453
+236532.0294090281 3.5795057 -7354.5513
+236533.0294091324 3.5793877 -7353.3706
+236534.0294092367 3.579309 -7354.5513
+236535.029409341 3.5791514 -7354.1577
+236536.0294094454 3.578994 -7354.5513
+236537.0294095497 3.5789547 -7354.3545
+236538.029409654 3.5790334 -7354.9453
+236539.0294097583 3.5787971 -7354.5513
+236540.0294098626 3.5787184 -7353.9609
+236541.0294099669 3.5786791 -7353.7646
+236542.0294100712 3.5786004 -7354.3545
+236543.0294101755 3.5785215 -7354.9453
+236544.0294102798 3.5784035 -7353.9609
+236545.0294103841 3.5782855 -7353.7646
+236546.0294104884 3.5781279 -7353.9609
+236547.0294105927 3.5781279 -7353.7646
+236548.0294106971 3.5780885 -7354.3545
+236549.0294108014 3.5779705 -7353.5669
+236550.0294109057 3.5779705 -7353.7646
+236551.02941101 3.5778129 -7354.9453
+236552.0294111143 3.577616 -7354.1577
+236553.0294112186 3.5775373 -7353.7646
+236554.0294113229 3.577498 -7354.5513
+236555.0294114272 3.5773404 -7355.3384
+236556.0294115315 3.5772223 -7354.9453
+236557.0294116358 3.5771043 -7354.7485
+236558.0294117401 3.577065 -7354.7485
+236559.0294118444 3.5769074 -7354.1577
+236560.0294119488 3.5769074 -7353.7646
+236561.0294120531 3.5767105 -7354.3545
+236562.0294121574 3.5766711 -7354.3545
+236563.0294122617 3.5766711 -7353.7646
+236564.029412366 3.5765138 -7353.7646
+236565.0294124703 3.5764744 -7354.5513
+236566.0294125746 3.5762382 -7353.9609
+236567.0294126789 3.5762382 -7354.1577
+236568.0294127832 3.5761988 -7354.7485
+236569.0294128875 3.5760412 -7354.3545
+236570.0294129918 3.5760412 -7355.1421
+236571.0294130961 3.5759625 -7353.5669
+236572.0294132004 3.5757656 -7354.1577
+236573.0294133048 3.5757656 -7353.3706
+236574.0294134091 3.5756083 -7354.1577
+236575.0294135134 3.5755296 -7354.3545
+236576.0294136177 3.5755296 -7355.1421
+236577.029413722 3.5754507 -7354.3545
+236578.0294138263 3.5752933 -7354.9453
+236579.0294139306 3.5751357 -7354.3545
+236580.0294140349 3.5750964 -7354.5513
+236581.0294141392 3.5750177 -7353.9609
+236582.0294142435 3.574939 -7354.3545
+236583.0294143478 3.5748601 -7353.9609
+236584.0294144521 3.5747027 -7354.1577
+236585.0294145565 3.5746634 -7353.7646
+236586.0294146608 3.5745058 -7354.5513
+236587.0294147651 3.5743484 -7353.5669
+236588.0294148694 3.5743091 -7354.1577
+236589.0294149737 3.5741515 -7354.7485
+236590.029415078 3.5740728 -7354.1577
+236591.0294151823 3.5740728 -7354.3545
+236592.0294152866 3.5739546 -7354.3545
+236593.0294153909 3.5737579 -7355.3384
+236594.0294154952 3.5737185 -7354.9453
+236595.0294155995 3.573561 -7353.9609
+236596.0294157038 3.5736396 -7354.1577
+236597.0294158082 3.5735216 -7354.7485
+236598.0294159125 3.5733643 -7353.7646
+236599.0294160168 3.573246 -7354.3545
+236600.0294161211 3.5732067 -7354.9453
+236601.0294162254 3.5730886 -7354.1577
+236602.0294163297 3.5729704 -7354.1577
+236603.029416434 3.5728524 -7354.7485
+236604.0294165383 3.572813 -7354.7485
+236605.0294166426 3.5726554 -7353.7646
+236606.0294167469 3.5725768 -7354.5513
+236607.0294168512 3.5723798 -7353.9609
+236608.0294169555 3.5723798 -7354.1577
+236609.0294170599 3.5723011 -7354.5513
+236610.0294171642 3.5722225 -7353.5669
+236611.0294172685 3.5721042 -7354.3545
+236612.0294173728 3.5719862 -7354.1577
+236613.0294174771 3.5718682 -7352.7803
+236614.0294175814 3.5718682 -7354.1577
+236615.0294176857 3.5717106 -7354.3545
+236616.02941779 3.5715926 -7354.7485
+236617.0294178943 3.5714743 -7354.3545
+236618.0294179986 3.5713956 -7354.7485
+236619.0294181029 3.5712776 -7353.9609
+236620.0294182072 3.5710807 -7354.3545
+236621.0294183115 3.5710807 -7354.3545
+236622.0294184159 3.5709233 -7354.5513
+236623.0294185202 3.5708444 -7353.9609
+236624.0294186245 3.5707264 -7354.5513
+236625.0294187288 3.5706871 -7354.5513
+236626.0294188331 3.5705688 -7354.1577
+236627.0294189374 3.5704901 -7354.5513
+236628.0294190417 3.5704901 -7354.3545
+236629.029419146 3.5702934 -7354.5513
+236630.0294192503 3.5702934 -7354.5513
+236631.0294193546 3.5700572 -7354.3545
+236632.0294194589 3.5700572 -7354.3545
+236633.0294195632 3.5699389 -7354.3545
+236634.0294196676 3.5697815 -7353.9609
+236635.0294197719 3.5698209 -7354.5513
+236636.0294198762 3.5695846 -7354.3545
+236637.0294199805 3.5695453 -7353.9609
+236638.0294200848 3.5693486 -7354.1577
+236639.0294201891 3.5694273 -7355.3384
+236640.0294202934 3.5691123 -7354.1577
+236641.0294203977 3.569073 -7355.1421
+236642.029420502 3.5689547 -7354.3545
+236643.0294206063 3.568876 -7354.5513
+236644.0294207106 3.5688367 -7353.5669
+236645.0294208149 3.5687973 -7354.3545
+236646.0294209193 3.5685611 -7354.1577
+236647.0294210236 3.5685611 -7354.5513
+236648.0294211279 3.5684431 -7353.3706
+236649.0294212322 3.5683641 -7354.3545
+236650.0294213365 3.5683248 -7353.9609
+236651.0294214408 3.5681281 -7353.9609
+236652.0294215451 3.5680492 -7353.9609
+236653.0294216494 3.5679312 -7354.5513
+236654.0294217537 3.5680492 -7354.3545
+236655.029421858 3.5677342 -7354.1577
+236656.0294219623 3.5676556 -7353.7646
+236657.0294220666 3.5675375 -7353.5669
+236658.0294221709 3.56738 -7353.7646
+236659.0294222753 3.5673013 -7354.1577
+236660.0294223796 3.5672619 -7354.5513
+236661.0294224839 3.5671043 -7353.3706
+236662.0294225882 3.5670257 -7354.3545
+236663.0294226925 3.5669076 -7354.1577
+236664.0294227968 3.5667894 -7353.9609
+236665.0294229011 3.5668287 -7354.5513
+236666.0294230054 3.5666714 -7354.5513
+236667.0294231097 3.5665138 -7354.9453
+236668.029423214 3.5664744 -7353.5669
+236669.0294233183 3.5663564 -7354.7485
+236670.0294234226 3.5661595 -7354.7485
+236671.029423527 3.5661988 -7354.3545
+236672.0294236313 3.5661201 -7354.7485
+236673.0294237356 3.5660021 -7354.1577
+236674.0294238399 3.5658445 -7354.1577
+236675.0294239442 3.5656872 -7353.5669
+236676.0294240485 3.5656083 -7353.3706
+236677.0294241528 3.5656083 -7353.9609
+236678.0294242571 3.5654902 -7353.7646
+236679.0294243614 3.5654509 -7354.3545
+236680.0294244657 3.5652933 -7353.5669
+236681.02942457 3.5652146 -7354.9453
+236682.0294246743 3.5650573 -7353.9609
+236683.0294247787 3.5648997 -7354.7485
+236684.029424883 3.5648603 -7354.3545
+236685.0294249873 3.5646634 -7353.9609
+236686.0294250916 3.5646241 -7354.1577
+236687.0294251959 3.5646241 -7353.5669
+236688.0294253002 3.5644667 -7354.1577
+236689.0294254045 3.5643485 -7353.7646
+236690.0294255088 3.5641518 -7354.9453
+236691.0294256131 3.5641911 -7354.5513
+236692.0294257174 3.5640728 -7354.7485
+236693.0294258217 3.5639155 -7354.1577
+236694.029425926 3.5636792 -7354.3545
+236695.0294260303 3.5637186 -7354.3545
+236696.0294261347 3.5636005 -7354.5513
+236697.029426239 3.5634429 -7354.7485
+236698.0294263433 3.5633249 -7354.5513
+236699.0294264476 3.5632856 -7354.7485
+236700.0294265519 3.5631673 -7355.1421
+236701.0294266562 3.5630887 -7354.1577
+236702.0294267605 3.5629706 -7353.5669
+236703.0294268648 3.562892 -7354.3545
+236704.0294269691 3.5628524 -7353.5669
+236705.0294270734 3.5626557 -7354.1577
+236706.0294271777 3.5626163 -7353.9609
+236707.029427282 3.5625374 -7354.7485
+236708.0294273864 3.5624588 -7354.1577
+236709.0294274907 3.5622621 -7354.1577
+236710.029427595 3.5622225 -7354.3545
+236711.0294276993 3.5621045 -7354.7485
+236712.0294278036 3.5620258 -7354.9453
+236713.0294279079 3.5619471 -7353.5669
+236714.0294280122 3.5617502 -7354.3545
+236715.0294281165 3.5617895 -7354.5513
+236716.0294282208 3.5615532 -7355.1421
+236717.0294283251 3.5614746 -7353.9609
+236718.0294284294 3.5614746 -7354.5513
+236719.0294285337 3.561317 -7354.7485
+236720.0294286381 3.5611596 -7353.7646
+236721.0294287424 3.5611596 -7354.3545
+236722.0294288467 3.5610809 -7354.9453
+236723.029428951 3.560884 -7354.7485
+236724.0294290553 3.560766 -7354.5513
+236725.0294291596 3.5607266 -7354.3545
+236726.0294292639 3.5606084 -7355.3384
+236727.0294293682 3.560569 -7353.7646
+236728.0294294725 3.5604117 -7353.9609
+236729.0294295768 3.5603721 -7354.3545
+236730.0294296811 3.5602541 -7354.5513
+236731.0294297854 3.5600178 -7353.1738
+236732.0294298898 3.5600178 -7353.7646
+236733.0294299941 3.5598211 -7353.9609
+236734.0294300984 3.5597422 -7354.7485
+236735.0294302027 3.5596635 -7354.7485
+236736.029430307 3.5595455 -7354.9453
+236737.0294304113 3.5592699 -7354.7485
+236738.0294305156 3.5592306 -7354.7485
+236739.0294306199 3.559073 -7354.7485
+236740.0294307242 3.5591123 -7354.5513
+236741.0294308285 3.5588763 -7354.5513
+236742.0294309328 3.558758 -7354.7485
+236743.0294310371 3.55864 -7354.1577
+236744.0294311414 3.5585217 -7354.3545
+236745.0294312458 3.5584431 -7353.9609
+236746.0294313501 3.5583251 -7354.9453
+236747.0294314544 3.5581281 -7354.5513
+236748.0294315587 3.5582068 -7354.7485
+236749.029431663 3.5580494 -7354.7485
+236750.0294317673 3.5578525 -7354.3545
+236751.0294318716 3.5578132 -7354.3545
+236752.0294319759 3.5576952 -7353.9609
+236753.0294320802 3.5574982 -7353.5669
+236754.0294321845 3.5573802 -7353.7646
+236755.0294322888 3.5572619 -7354.3545
+236756.0294323931 3.5573409 -7354.5513
+236757.0294324975 3.5571833 -7354.5513
+236758.0294326018 3.5570652 -7354.3545
+236759.0294327061 3.5570259 -7353.7646
+236760.0294328104 3.556947 -7354.9453
+236761.0294329147 3.5567503 -7354.9453
+236762.029433019 3.556632 -7354.5513
+236763.0294331233 3.5566714 -7353.5669
+236764.0294332276 3.5564353 -7355.1421
+236765.0294333319 3.5563564 -7354.1577
+236766.0294334362 3.5562384 -7354.1577
+236767.0294335405 3.5562384 -7354.9453
+236768.0294336448 3.5560415 -7353.9609
+236769.0294337492 3.5558841 -7354.1577
+236770.0294338535 3.5559235 -7354.3545
+236771.0294339578 3.5556872 -7354.7485
+236772.0294340621 3.5556479 -7353.7646
+236773.0294341664 3.5555298 -7354.5513
+236774.0294342707 3.5554905 -7354.3545
+236775.029434375 3.5554116 -7354.5513
+236776.0294344793 3.5552936 -7355.1421
+236777.0294345836 3.5552149 -7354.5513
+236778.0294346879 3.5550966 -7354.1577
+236779.0294347922 3.5550179 -7354.3545
+236780.0294348965 3.5548606 -7353.9609
+236781.0294350008 3.5548999 -7354.1577
+236782.0294351052 3.5547817 -7354.3545
+236783.0294352095 3.5546637 -7354.5513
+236784.0294353138 3.554585 -7354.1577
+236785.0294354181 3.5545061 -7354.3545
+236786.0294355224 3.5543094 -7354.1577
+236787.0294356267 3.5542305 -7354.5513
+236788.029435731 3.55427 -7353.9609
+236789.0294358353 3.5539944 -7355.3384
+236790.0294359396 3.5538762 -7354.1577
+236791.0294360439 3.5538762 -7353.9609
+236792.0294361482 3.5537188 -7354.5513
+236793.0294362525 3.5536005 -7353.9609
+236794.0294363569 3.5535219 -7354.1577
+236795.0294364612 3.5533645 -7353.9609
+236796.0294365655 3.5533252 -7354.3545
+236797.0294366698 3.5532856 -7353.9609
+236798.0294367741 3.5531282 -7354.5513
+236799.0294368784 3.5530889 -7354.3545
+236800.0294369827 3.5529313 -7353.9609
+236801.029437087 3.5527346 -7354.3545
+236802.0294371913 3.552695 -7353.9609
+236803.0294372956 3.5526164 -7354.3545
+236804.0294373999 3.5524983 -7354.7485
+236805.0294375042 3.5523014 -7354.3545
+236806.0294376086 3.5523014 -7354.5513
+236807.0294377129 3.5522227 -7355.3384
+236808.0294378172 3.5521834 -7355.1421
+236809.0294379215 3.5519471 -7354.5513
+236810.0294380258 3.5518291 -7353.3706
+236811.0294381301 3.5517502 -7353.9609
+236812.0294382344 3.5516322 -7354.3545
+236813.0294383387 3.5516715 -7354.5513
+236814.029438443 3.5514748 -7354.5513
+236815.0294385473 3.5513959 -7354.7485
+236816.0294386516 3.5513566 -7354.3545
+236817.0294387559 3.5511992 -7354.1577
+236818.0294388602 3.5511599 -7354.1577
+236819.0294389646 3.5510416 -7353.7646
+236820.0294390689 3.5509629 -7354.9453
+236821.0294391732 3.550766 -7354.3545
+236822.0294392775 3.5508447 -7354.3545
+236823.0294393818 3.5506873 -7354.3545
+236824.0294394861 3.5505297 -7353.9609
+236825.0294395904 3.5504904 -7354.9453
+236826.0294396947 3.550333 -7354.1577
+236827.029439799 3.5502148 -7354.5513
+236828.0294399033 3.5501754 -7354.7485
+236829.0294400076 3.5501361 -7354.5513
+236830.0294401119 3.5499394 -7353.7646
+236831.0294402163 3.5498605 -7353.9609
+236832.0294403206 3.5497425 -7353.3706
+236833.0294404249 3.5495849 -7354.7485
+236834.0294405292 3.5495455 -7355.1421
+236835.0294406335 3.5493882 -7353.9609
+236836.0294407378 3.5493095 -7353.9609
+236837.0294408421 3.5492306 -7354.1577
+236838.0294409464 3.5491126 -7354.9453
+236839.0294410507 3.5490732 -7354.9453
+236840.029441155 3.5489943 -7354.5513
+236841.0294412593 3.5488763 -7355.1421
+236842.0294413636 3.5486794 -7354.3545
+236843.029441468 3.5485613 -7354.5513
+236844.0294415723 3.5486007 -7354.7485
+236845.0294416766 3.548404 -7353.7646
+236846.0294417809 3.548404 -7354.9453
+236847.0294418852 3.5482464 -7354.5513
+236848.0294419895 3.548089 -7354.3545
+236849.0294420938 3.5480494 -7353.7646
+236850.0294421981 3.5479708 -7355.3384
+236851.0294423024 3.5479314 -7354.1577
+236852.0294424067 3.5479314 -7355.1421
+236853.029442511 3.5478528 -7354.9453
+236854.0294426153 3.5476165 -7355.1421
+236855.0294427197 3.5476165 -7355.1421
+236856.029442824 3.5475378 -7354.3545
+236857.0294429283 3.5474589 -7353.7646
+236858.0294430326 3.5473409 -7354.5513
+236859.0294431369 3.5471046 -7354.5513
+236860.0294432412 3.5472622 -7354.3545
+236861.0294433455 3.5470653 -7354.1577
+236862.0294434498 3.5469866 -7354.3545
+236863.0294435541 3.5468686 -7353.9609
+236864.0294436584 3.546829 -7355.1421
+236865.0294437627 3.546711 -7353.7646
+236866.029443867 3.546514 -7354.7485
+236867.0294439713 3.5464747 -7354.1577
+236868.0294440757 3.5464747 -7353.7646
+236869.02944418 3.5463567 -7354.7485
+236870.0294442843 3.5463173 -7353.7646
+236871.0294443886 3.5462387 -7355.1421
+236872.0294444929 3.5461991 -7354.7485
+236873.0294445972 3.5460417 -7355.1421
+236874.0294447015 3.5460024 -7354.3545
+236875.0294448058 3.5460024 -7354.3545
+236876.0294449101 3.5458448 -7354.7485
+236877.0294450144 3.5458841 -7354.7485
+236878.0294451187 3.5455298 -7354.3545
+236879.029445223 3.5454905 -7354.7485
+236880.0294453274 3.5454512 -7354.5513
+236881.0294454317 3.5453725 -7355.1421
+236882.029445536 3.5452149 -7354.3545
+236883.0294456403 3.5452542 -7354.7485
+236884.0294457446 3.5451362 -7354.1577
+236885.0294458489 3.5450182 -7354.7485
+236886.0294459532 3.5448606 -7354.7485
+236887.0294460575 3.5448213 -7355.1421
+236888.0294461618 3.5446637 -7354.7485
+236889.0294462661 3.5447032 -7354.3545
+236890.0294463704 3.544585 -7354.5513
+236891.0294464747 3.5444276 -7355.3384
+236892.0294465791 3.5445063 -7354.9453
+236893.0294466834 3.5444276 -7353.9609
+236894.0294467877 3.5442307 -7354.1577
+236895.029446892 3.544152 -7355.1421
+236896.0294469963 3.5441127 -7354.3545
+236897.0294471006 3.5439944 -7354.1577
+236898.0294472049 3.5439551 -7354.7485
+236899.0294473092 3.5437977 -7354.5513
+236900.0294474135 3.5437582 -7354.3545
+236901.0294475178 3.5436795 -7354.9453
+236902.0294476221 3.5435615 -7354.3545
+236903.0294477264 3.5434039 -7354.5513
+236904.0294478307 3.5432858 -7354.1577
+236905.0294479351 3.5432465 -7354.7485
+236906.0294480394 3.5431678 -7354.3545
+236907.0294481437 3.5430496 -7355.3384
+236908.029448248 3.5430102 -7354.3545
+236909.0294483523 3.5428922 -7354.3545
+236910.0294484566 3.5428133 -7354.1577
+236911.0294485609 3.5426953 -7354.3545
+236912.0294486652 3.5425773 -7354.5513
+236913.0294487695 3.5424197 -7354.7485
+236914.0294488738 3.542341 -7354.7485
+236915.0294489781 3.542223 -7354.5513
+236916.0294490824 3.542223 -7354.9453
+236917.0294491868 3.5420654 -7354.3545
+236918.0294492911 3.5421047 -7354.3545
+236919.0294493954 3.5419078 -7354.5513
+236920.0294494997 3.5418684 -7353.9609
+236921.029449604 3.5418291 -7354.5513
+236922.0294497083 3.5416718 -7354.1577
+236923.0294498126 3.5417504 -7354.7485
+236924.0294499169 3.5415928 -7354.5513
+236925.0294500212 3.5414748 -7354.7485
+236926.0294501255 3.5413568 -7354.3545
+236927.0294502298 3.5413961 -7354.5513
+236928.0294503341 3.5412385 -7354.1577
+236929.0294504385 3.5411599 -7354.3545
+236930.0294505428 3.5411599 -7353.7646
+236931.0294506471 3.5410812 -7355.1421
+236932.0294507514 3.5410025 -7355.1421
+236933.0294508557 3.5409236 -7354.9453
+236934.02945096 3.5410025 -7353.9609
+236935.0294510643 3.5408449 -7354.7485
+236936.0294511686 3.5408449 -7354.5513
+236937.0294512729 3.5407662 -7354.1577
+236938.0294513772 3.5407269 -7354.5513
+236939.0294514815 3.5406086 -7354.5513
+236940.0294515858 3.5404906 -7354.9453
+236941.0294516901 3.5404906 -7354.1577
+236942.0294517945 3.540333 -7354.3545
+236943.0294518988 3.5402544 -7354.3545
+236944.0294520031 3.540215 -7354.9453
+236945.0294521074 3.5401363 -7354.1577
+236946.0294522117 3.5400574 -7354.1577
+236947.029452316 3.5398607 -7354.7485
+236948.0294524203 3.539782 -7354.1577
+236949.0294525246 3.5398214 -7354.7485
+236950.0294526289 3.539782 -7354.7485
+236951.0294527332 3.5396638 -7354.3545
+236952.0294528375 3.5395458 -7354.9453
+236953.0294529418 3.5394275 -7355.3384
+236954.0294530462 3.5393488 -7354.5513
+236955.0294531505 3.5393095 -7354.1577
+236956.0294532548 3.5391915 -7353.7646
+236957.0294533591 3.5390732 -7355.1421
+236958.0294534634 3.5389946 -7354.1577
+236959.0294535677 3.5388765 -7354.5513
+236960.029453672 3.5387583 -7354.1577
+236961.0294537763 3.5386796 -7354.5513
+236962.0294538806 3.5386009 -7355.3384
+236963.0294539849 3.5386009 -7354.3545
+236964.0294540892 3.5383253 -7353.9609
+236965.0294541935 3.5382071 -7354.1577
+236966.0294542979 3.5382071 -7354.1577
+236967.0294544022 3.5380104 -7354.3545
+236968.0294545065 3.537971 -7354.1577
+236969.0294546108 3.5379317 -7354.9453
+236970.0294547151 3.5377741 -7354.3545
+236971.0294548194 3.5377347 -7354.3545
+236972.0294549237 3.5376167 -7355.1421
+236973.029455028 3.5374591 -7355.3384
+236974.0294551323 3.5374591 -7354.3545
+236975.0294552366 3.5372622 -7354.5513
+236976.0294553409 3.5373018 -7354.5513
+236977.0294554452 3.5371835 -7354.5513
+236978.0294555495 3.5371442 -7354.7485
+236979.0294556539 3.5370262 -7354.1577
+236980.0294557582 3.5369079 -7354.1577
+236981.0294558625 3.5367899 -7354.3545
+236982.0294559668 3.5367506 -7354.3545
+236983.0294560711 3.5366716 -7354.5513
+236984.0294561754 3.5365143 -7353.3706
+236985.0294562797 3.5365536 -7354.3545
+236986.029456384 3.5363173 -7353.9609
+236987.0294564883 3.5361993 -7354.9453
+236988.0294565926 3.53616 -7354.7485
+236989.0294566969 3.5360417 -7354.1577
+236990.0294568012 3.5360417 -7353.9609
+236991.0294569056 3.5359631 -7354.1577
+236992.0294570099 3.5359237 -7355.1421
+236993.0294571142 3.535845 -7353.9609
+236994.0294572185 3.5356874 -7354.1577
+236995.0294573228 3.5355301 -7353.1738
+236996.0294574271 3.5354908 -7354.1577
+236997.0294575314 3.5354514 -7354.3545
+236998.0294576357 3.5353725 -7353.5669
+236999.02945774 3.5353725 -7354.9453
+237000.0294578443 3.5352151 -7355.5352
+237001.0294579486 3.5350575 -7354.1577
+237002.0294580529 3.5349395 -7354.5513
+237003.0294581573 3.5348608 -7353.7646
+237004.0294582616 3.5347426 -7354.1577
+237005.0294583659 3.5347033 -7353.9609
+237006.0294584702 3.534467 -7354.1577
+237007.0294585745 3.5345459 -7353.9609
+237008.0294586788 3.534349 -7355.1421
+237009.0294587831 3.5342703 -7354.7485
+237010.0294588874 3.5341914 -7354.3545
+237011.0294589917 3.5339947 -7354.1577
+237012.029459096 3.534034 -7354.1577
+237013.0294592003 3.5338764 -7353.9609
+237014.0294593046 3.5337191 -7353.7646
+237015.029459409 3.5336797 -7354.5513
+237016.0294595133 3.5336797 -7353.7646
+237017.0294596176 3.533601 -7353.7646
+237018.0294597219 3.5334041 -7355.1421
+237019.0294598262 3.5333254 -7354.5513
+237020.0294599305 3.5332861 -7353.5669
+237021.0294600348 3.5332861 -7353.9609
+237022.0294601391 3.5332861 -7353.5669
+237023.0294602434 3.5331285 -7354.5513
+237024.0294603477 3.5330498 -7354.3545
+237025.029460452 3.5330105 -7355.3384
+237026.0294605563 3.5329709 -7354.1577
+237027.0294606606 3.5327742 -7354.3545
+237028.029460765 3.5326955 -7354.5513
+237029.0294608693 3.532656 -7354.3545
+237030.0294609736 3.532656 -7354.3545
+237031.0294610779 3.5324986 -7354.5513
+237032.0294611822 3.5325773 -7354.1577
+237033.0294612865 3.5324199 -7354.3545
+237034.0294613908 3.5323806 -7353.9609
+237035.0294614951 3.5323017 -7354.3545
+237036.0294615994 3.5321836 -7354.5513
+237037.0294617037 3.532105 -7354.5513
+237038.029461808 3.5320656 -7354.7485
+237039.0294619123 3.5319867 -7354.7485
+237040.0294620167 3.531908 -7354.5513
+237041.029462121 3.531908 -7354.5513
+237042.0294622253 3.53179 -7354.1577
+237043.0294623296 3.5317111 -7353.7646
+237044.0294624339 3.5316718 -7354.5513
+237045.0294625382 3.5315537 -7354.1577
+237046.0294626425 3.5313962 -7354.3545
+237047.0294627468 3.5313568 -7354.9453
+237048.0294628511 3.5313568 -7354.3545
+237049.0294629554 3.5312781 -7353.3706
+237050.0294630597 3.5310812 -7354.1577
+237051.029463164 3.5310419 -7353.7646
+237052.0294632684 3.5310419 -7353.9609
+237053.0294633727 3.5310025 -7353.7646
+237054.029463477 3.5307269 -7354.1577
+237055.0294635813 3.5306876 -7354.3545
+237056.0294636856 3.5305696 -7355.3384
+237057.0294637899 3.5306089 -7354.7485
+237058.0294638942 3.5305302 -7354.7485
+237059.0294639985 3.530412 -7354.7485
+237060.0294641028 3.5303333 -7354.3545
+237061.0294642071 3.5302153 -7354.3545
+237062.0294643114 3.529979 -7354.3545
+237063.0294644157 3.529979 -7354.9453
+237064.02946452 3.5299003 -7354.3545
+237065.0294646244 3.5298607 -7354.1577
+237066.0294647287 3.529664 -7354.1577
+237067.029464833 3.5295854 -7354.5513
+237068.0294649373 3.5294278 -7354.3545
+237069.0294650416 3.5292702 -7353.9609
+237070.0294651459 3.5292702 -7354.1577
+237071.0294652502 3.5291915 -7353.7646
+237072.0294653545 3.5290735 -7355.1421
+237073.0294654588 3.5288372 -7354.3545
+237074.0294655631 3.5289159 -7354.5513
+237075.0294656674 3.5287979 -7354.3545
+237076.0294657717 3.5286403 -7354.1577
+237077.0294658761 3.5285616 -7354.7485
+237078.0294659804 3.5284829 -7354.3545
+237079.0294660847 3.528286 -7354.3545
+237080.029466189 3.5282466 -7354.1577
+237081.0294662933 3.528168 -7354.9453
+237082.0294663976 3.5280499 -7354.5513
+237083.0294665019 3.5279317 -7354.7485
+237084.0294666062 3.5277743 -7354.1577
+237085.0294667105 3.5276954 -7354.7485
+237086.0294668148 3.5276954 -7354.1577
+237087.0294669191 3.5275774 -7355.3384
+237088.0294670234 3.5274594 -7354.1577
+237089.0294671278 3.5273018 -7354.7485
+237090.0294672321 3.5273411 -7354.3545
+237091.0294673364 3.5271838 -7354.9453
+237092.0294674407 3.5270655 -7354.1577
+237093.029467545 3.5269868 -7354.7485
+237094.0294676493 3.5268295 -7354.1577
+237095.0294677536 3.5269082 -7353.5669
+237096.0294678579 3.5266719 -7354.3545
+237097.0294679622 3.5266719 -7355.1421
+237098.0294680665 3.5266719 -7354.5513
+237099.0294681708 3.526475 -7354.1577
+237100.0294682751 3.526475 -7354.7485
+237101.0294683794 3.5264356 -7353.7646
+237102.0294684838 3.5262783 -7353.9609
+237103.0294685881 3.5262389 -7353.9609
+237104.0294686924 3.5262389 -7354.1577
+237105.0294687967 3.52616 -7354.5513
+237106.029468901 3.526042 -7355.1421
+237107.0294690053 3.5260026 -7353.7646
+237108.0294691096 3.5258451 -7354.1577
+237109.0294692139 3.5257664 -7355.9292
+237110.0294693182 3.5256484 -7354.9453
+237111.0294694225 3.525609 -7354.1577
+237112.0294695268 3.5254908 -7354.1577
+237113.0294696311 3.5254121 -7354.3545
+237114.0294697355 3.5253727 -7354.1577
+237115.0294698398 3.5253727 -7355.1421
+237116.0294699441 3.5250971 -7355.1421
+237117.0294700484 3.5250185 -7354.5513
+237118.0294701527 3.5250185 -7354.1577
+237119.029470257 3.5247822 -7353.7646
+237120.0294703613 3.5249002 -7354.3545
+237121.0294704656 3.5247428 -7353.3706
+237122.0294705699 3.5246642 -7354.3545
+237123.0294706742 3.5246642 -7354.7485
+237124.0294707785 3.5245852 -7354.3545
+237125.0294708828 3.5244279 -7354.3545
+237126.0294709872 3.5243492 -7353.9609
+237127.0294710915 3.5241129 -7353.9609
+237128.0294711958 3.524231 -7354.5513
+237129.0294713001 3.524034 -7353.9609
+237130.0294714044 3.5239947 -7354.3545
+237131.0294715087 3.5239947 -7354.1577
+237132.029471613 3.523916 -7354.1577
+237133.0294717173 3.5237586 -7354.1577
+237134.0294718216 3.5237586 -7353.9609
+237135.0294719259 3.523483 -7354.3545
+237136.0294720302 3.5236797 -7353.9609
+237137.0294721345 3.5234437 -7354.9453
+237138.0294722389 3.5234041 -7354.7485
+237139.0294723432 3.5232468 -7354.1577
+237140.0294724475 3.5231287 -7353.7646
+237141.0294725518 3.5230892 -7354.3545
+237142.0294726561 3.5229318 -7354.5513
+237143.0294727604 3.5229318 -7353.9609
+237144.0294728647 3.5228531 -7353.9609
+237145.029472969 3.5227742 -7353.7646
+237146.0294730733 3.5226169 -7355.5352
+237147.0294731776 3.5225775 -7353.7646
+237148.0294732819 3.5224988 -7354.9453
+237149.0294733862 3.5223806 -7354.3545
+237150.0294734905 3.5223019 -7354.3545
+237151.0294735949 3.522105 -7354.5513
+237152.0294736992 3.5221837 -7354.7485
+237153.0294738035 3.5220263 -7354.5513
+237154.0294739078 3.521987 -7353.9609
+237155.0294740121 3.5219476 -7354.1577
+237156.0294741164 3.5218687 -7354.3545
+237157.0294742207 3.5219083 -7353.7646
+237158.029474325 3.52179 -7354.1577
+237159.0294744293 3.521672 -7354.7485
+237160.0294745336 3.5215144 -7354.1577
+237161.0294746379 3.5215538 -7353.7646
+237162.0294747422 3.5214751 -7354.7485
+237163.0294748466 3.5213571 -7354.1577
+237164.0294749509 3.5213177 -7354.1577
+237165.0294750552 3.5212388 -7353.7646
+237166.0294751595 3.5211601 -7354.1577
+237167.0294752638 3.5211208 -7354.3545
+237168.0294753681 3.5211601 -7354.1577
+237169.0294754724 3.5208845 -7354.5513
+237170.0294755767 3.5208452 -7353.9609
+237171.029475681 3.5208452 -7354.7485
+237172.0294757853 3.5206485 -7354.3545
+237173.0294758896 3.5207665 -7354.3545
+237174.0294759939 3.5205696 -7354.7485
+237175.0294760983 3.5204909 -7354.3545
+237176.0294762026 3.5205302 -7353.9609
+237177.0294763069 3.5204122 -7354.7485
+237178.0294764112 3.5203729 -7354.5513
+237179.0294765155 3.5202546 -7355.1421
+237180.0294766198 3.5201759 -7354.7485
+237181.0294767241 3.5200579 -7354.9453
+237182.0294768284 3.519979 -7353.5669
+237183.0294769327 3.5199397 -7353.9609
+237184.029477037 3.5197034 -7354.5513
+237185.0294771413 3.519743 -7354.1577
+237186.0294772456 3.5197034 -7354.7485
+237187.0294773499 3.519546 -7354.1577
+237188.0294774543 3.5194674 -7354.1577
+237189.0294775586 3.519428 -7355.3384
+237190.0294776629 3.5193098 -7354.3545
+237191.0294777672 3.5191917 -7354.9453
+237192.0294778715 3.5192704 -7353.7646
+237193.0294779758 3.5191524 -7353.9609
+237194.0294780801 3.5189555 -7354.7485
+237195.0294781844 3.5189161 -7354.1577
+237196.0294782887 3.5187585 -7354.3545
+237197.029478393 3.5186799 -7353.9609
+237198.0294784973 3.5186012 -7354.3545
+237199.0294786016 3.5185225 -7354.1577
+237200.029478706 3.5183649 -7353.7646
+237201.0294788103 3.5182469 -7354.3545
+237202.0294789146 3.518168 -7353.9609
+237203.0294790189 3.5179713 -7354.9453
+237204.0294791232 3.5179713 -7353.7646
+237205.0294792275 3.5179319 -7354.3545
+237206.0294793318 3.5178137 -7354.5513
+237207.0294794361 3.5176957 -7355.1421
+237208.0294795404 3.5176563 -7354.5513
+237209.0294796447 3.5174594 -7354.1577
+237210.029479749 3.5174201 -7354.5513
+237211.0294798533 3.5172627 -7355.1421
+237212.0294799577 3.517302 -7353.7646
+237213.029480062 3.5171444 -7353.7646
+237214.0294801663 3.5170264 -7354.5513
+237215.0294802706 3.5169475 -7354.5513
+237216.0294803749 3.5169082 -7354.3545
+237217.0294804792 3.5167508 -7354.3545
+237218.0294805835 3.5166326 -7354.1577
+237219.0294806878 3.5164359 -7354.7485
+237220.0294807921 3.5165145 -7354.7485
+237221.0294808964 3.5162783 -7354.5513
+237222.0294810007 3.5162783 -7354.3545
+237223.029481105 3.5160422 -7355.3384
+237224.0294812093 3.5160422 -7354.3545
+237225.0294813137 3.5158846 -7354.3545
+237226.029481418 3.5158453 -7353.7646
+237227.0294815223 3.5157666 -7354.3545
+237228.0294816266 3.5156484 -7353.9609
+237229.0294817309 3.5154517 -7355.3384
+237230.0294818352 3.515491 -7354.1577
+237231.0294819395 3.5153728 -7354.7485
+237232.0294820438 3.5152547 -7354.3545
+237233.0294821481 3.5151367 -7354.1577
+237234.0294822524 3.5150578 -7354.1577
+237235.0294823567 3.5149791 -7355.1421
+237236.029482461 3.5148611 -7354.5513
+237237.0294825654 3.5148611 -7354.1577
+237238.0294826697 3.5148611 -7354.9453
+237239.029482774 3.5147429 -7354.1577
+237240.0294828783 3.5147035 -7354.5513
+237241.0294829826 3.5147035 -7354.9453
+237242.0294830869 3.5145068 -7354.5513
+237243.0294831912 3.5144279 -7355.1421
+237244.0294832955 3.5144672 -7353.7646
+237245.0294833998 3.5143099 -7354.3545
+237246.0294835041 3.5142312 -7354.3545
+237247.0294836084 3.5143099 -7354.1577
+237248.0294837127 3.5141523 -7354.3545
+237249.0294838171 3.5141129 -7354.7485
+237250.0294839214 3.5140736 -7354.3545
+237251.0294840257 3.5139556 -7353.7646
+237252.02948413 3.5139949 -7353.7646
+237253.0294842343 3.513798 -7353.9609
+237254.0294843386 3.5139163 -7354.1577
+237255.0294844429 3.5137587 -7354.7485
+237256.0294845472 3.5137587 -7354.5513
+237257.0294846515 3.5136406 -7354.3545
+237258.0294847558 3.51368 -7353.7646
+237259.0294848601 3.513483 -7354.5513
+237260.0294849644 3.513365 -7354.7485
+237261.0294850688 3.5133257 -7354.7485
+237262.0294851731 3.5132864 -7354.3545
+237263.0294852774 3.5130894 -7354.3545
+237264.0294853817 3.5131681 -7354.5513
+237265.029485486 3.5129714 -7354.1577
+237266.0294855903 3.5128925 -7353.9609
+237267.0294856946 3.5127745 -7354.7485
+237268.0294857989 3.5126169 -7354.9453
+237269.0294859032 3.5126169 -7353.9609
+237270.0294860075 3.5124989 -7354.1577
+237271.0294861118 3.5124989 -7354.1577
+237272.0294862161 3.5123415 -7354.1577
+237273.0294863204 3.5123019 -7354.5513
+237274.0294864248 3.5122232 -7354.5513
+237275.0294865291 3.5122626 -7354.1577
+237276.0294866334 3.5120265 -7354.1577
+237277.0294867377 3.5119476 -7354.5513
+237278.029486842 3.5119083 -7354.7485
+237279.0294869463 3.5119083 -7353.7646
+237280.0294870506 3.5117903 -7354.3545
+237281.0294871549 3.5117116 -7353.5669
+237282.0294872592 3.5117116 -7354.5513
+237283.0294873635 3.511554 -7354.5513
+237284.0294874678 3.5115147 -7354.1577
+237285.0294875721 3.5112391 -7354.1577
+237286.0294876765 3.5112391 -7354.3545
+237287.0294877808 3.5111997 -7353.9609
+237288.0294878851 3.5111604 -7353.3706
+237289.0294879894 3.5110421 -7353.9609
+237290.0294880937 3.5110028 -7354.1577
+237291.029488198 3.5109241 -7354.5513
+237292.0294883023 3.5108061 -7354.3545
+237293.0294884066 3.5106485 -7353.5669
+237294.0294885109 3.5104911 -7353.9609
+237295.0294886152 3.5105698 -7354.1577
+237296.0294887195 3.5103729 -7353.7646
+237297.0294888238 3.5102549 -7354.1577
+237298.0294889282 3.5102549 -7353.7646
+237299.0294890325 3.5100973 -7354.1577
+237300.0294891368 3.5100973 -7354.7485
+237301.0294892411 3.5099006 -7353.7646
+237302.0294893454 3.5097823 -7353.1738
+237303.0294894497 3.5097036 -7354.9453
+237304.029489554 3.5094674 -7354.3545
+237305.0294896583 3.5094674 -7354.5513
+237306.0294897626 3.50931 -7354.3545
+237307.0294898669 3.50931 -7354.1577
+237308.0294899712 3.5089557 -7354.3545
+237309.0294900755 3.5089951 -7353.9609
+237310.0294901798 3.5089557 -7353.7646
+237311.0294902842 3.5087981 -7354.7485
+237312.0294903885 3.5087588 -7353.1738
+237313.0294904928 3.5085618 -7354.1577
+237314.0294905971 3.5085618 -7354.3545
+237315.0294907014 3.5084832 -7354.5513
+237316.0294908057 3.5083652 -7354.5513
+237317.02949091 3.5082862 -7354.3545
+237318.0294910143 3.5081682 -7354.3545
+237319.0294911186 3.5080502 -7354.7485
+237320.0294912229 3.5079713 -7354.3545
+237321.0294913272 3.5079319 -7353.7646
+237322.0294914315 3.5078139 -7354.9453
+237323.0294915359 3.5076957 -7354.7485
+237324.0294916402 3.507499 -7353.7646
+237325.0294917445 3.5075383 -7354.7485
+237326.0294918488 3.5073414 -7354.5513
+237327.0294919531 3.507184 -7354.1577
+237328.0294920574 3.5071447 -7353.3706
+237329.0294921617 3.5071447 -7354.3545
+237330.029492266 3.5070264 -7354.7485
+237331.0294923703 3.5069478 -7354.1577
+237332.0294924746 3.5067904 -7353.5669
+237333.0294925789 3.5067508 -7352.7803
+237334.0294926832 3.5067115 -7354.1577
+237335.0294927876 3.5066721 -7354.1577
+237336.0294928919 3.5065541 -7354.3545
+237337.0294929962 3.5064754 -7354.7485
+237338.0294931005 3.5063572 -7354.5513
+237339.0294932048 3.5063179 -7353.9609
+237340.0294933091 3.5062785 -7354.9453
+237341.0294934134 3.5061603 -7355.1421
+237342.0294935177 3.5061603 -7354.1577
+237343.029493622 3.5060029 -7353.9609
+237344.0294937263 3.5060422 -7353.7646
+237345.0294938306 3.5058849 -7353.7646
+237346.0294939349 3.5059636 -7354.9453
+237347.0294940392 3.5059636 -7354.7485
+237348.0294941436 3.505806 -7353.5669
+237349.0294942479 3.505806 -7354.5513
+237350.0294943522 3.5056486 -7353.9609
+237351.0294944565 3.5056093 -7355.3384
+237352.0294945608 3.5055304 -7354.9453
+237353.0294946651 3.5052943 -7354.5513
+237354.0294947694 3.505373 -7353.5669
+237355.0294948737 3.5053337 -7354.3545
+237356.029494978 3.5051761 -7354.5513
+237357.0294950823 3.5052154 -7354.3545
+237358.0294951866 3.5049794 -7354.1577
+237359.0294952909 3.50494 -7354.3545
+237360.0294953953 3.5048611 -7354.1577
+237361.0294954996 3.5047038 -7354.3545
+237362.0294956039 3.5047038 -7354.1577
+237363.0294957082 3.5046251 -7354.3545
+237364.0294958125 3.5045462 -7353.7646
+237365.0294959168 3.5043888 -7354.5513
+237366.0294960211 3.5043888 -7353.9609
+237367.0294961254 3.5043099 -7354.5513
+237368.0294962297 3.5041132 -7353.1738
+237369.029496334 3.5041132 -7353.7646
+237370.0294964383 3.5039163 -7353.9609
+237371.0294965426 3.5039163 -7355.1421
+237372.029496647 3.5037982 -7354.3545
+237373.0294967513 3.5038376 -7354.5513
+237374.0294968556 3.5037982 -7353.3706
+237375.0294969599 3.5036407 -7354.3545
+237376.0294970642 3.5036013 -7354.3545
+237377.0294971685 3.5035226 -7354.5513
+237378.0294972728 3.5035226 -7353.7646
+237379.0294973771 3.5034833 -7354.5513
+237380.0294974814 3.5034046 -7354.9453
+237381.0294975857 3.503365 -7354.7485
+237382.02949769 3.5033257 -7354.3545
+237383.0294977943 3.5032864 -7353.9609
+237384.0294978986 3.503129 -7354.3545
+237385.029498003 3.503129 -7354.5513
+237386.0294981073 3.5030107 -7354.9453
+237387.0294982116 3.5028927 -7354.5513
+237388.0294983159 3.5027351 -7354.1577
+237389.0294984202 3.5026958 -7354.3545
+237390.0294985245 3.5027351 -7353.1738
+237391.0294986288 3.5024595 -7353.9609
+237392.0294987331 3.5023808 -7354.5513
+237393.0294988374 3.5023415 -7355.3384
+237394.0294989417 3.5021842 -7355.3384
+237395.029499046 3.5021052 -7353.9609
+237396.0294991503 3.5021446 -7354.5513
+237397.0294992547 3.5019085 -7354.3545
+237398.029499359 3.5017903 -7354.3545
+237399.0294994633 3.5017903 -7354.3545
+237400.0294995676 3.5015936 -7353.7646
+237401.0294996719 3.5015543 -7354.3545
+237402.0294997762 3.501436 -7354.5513
+237403.0294998805 3.5013967 -7353.9609
+237404.0294999848 3.501318 -7354.7485
+237405.0295000891 3.5012393 -7354.3545
+237406.0295001934 3.5011997 -7354.3545
+237407.0295002977 3.501003 -7354.1577
+237408.029500402 3.5009637 -7355.1421
+237409.0295005064 3.5010424 -7353.7646
+237410.0295006107 3.5008061 -7354.5513
+237411.029500715 3.5007668 -7353.9609
+237412.0295008193 3.5006487 -7354.1577
+237413.0295009236 3.5004911 -7353.5669
+237414.0295010279 3.5005305 -7353.9609
+237415.0295011322 3.5004518 -7354.5513
+237416.0295012365 3.5003731 -7354.7485
+237417.0295013408 3.5002942 -7354.3545
+237418.0295014451 3.5003338 -7353.9609
+237419.0295015494 3.5000975 -7353.7646
+237420.0295016537 3.5000582 -7354.1577
+237421.0295017581 3.5000582 -7354.5513
+237422.0295018624 3.5000188 -7354.1577
+237423.0295019667 3.4998219 -7354.1577
+237424.029502071 3.4998219 -7353.5669
+237425.0295021753 3.4996643 -7354.3545
+237426.0295022796 3.4996643 -7354.5513
+237427.0295023839 3.4995856 -7354.7485
+237428.0295024882 3.4996643 -7354.5513
+237429.0295025925 3.499507 -7354.5513
+237430.0295026968 3.499507 -7353.9609
+237431.0295028011 3.4993494 -7354.3545
+237432.0295029054 3.4993494 -7354.3545
+237433.0295030097 3.4992707 -7353.9609
+237434.0295031141 3.4992313 -7354.1577
+237435.0295032184 3.4991527 -7354.1577
+237436.0295033227 3.4990344 -7354.1577
+237437.029503427 3.4989164 -7354.5513
+237438.0295035313 3.4989951 -7354.5513
+237439.0295036356 3.4989557 -7354.5513
+237440.0295037399 3.4987984 -7354.3545
+237441.0295038442 3.498877 -7354.1577
+237442.0295039485 3.4986801 -7354.3545
+237443.0295040528 3.4985228 -7354.3545
+237444.0295041571 3.4984834 -7353.5669
+237445.0295042614 3.4984045 -7354.3545
+237446.0295043658 3.4984834 -7355.1421
+237447.0295044701 3.4982471 -7354.5513
+237448.0295045744 3.4982078 -7354.7485
+237449.0295046787 3.4980109 -7354.3545
+237450.029504783 3.4979715 -7354.1577
+237451.0295048873 3.4979715 -7354.9453
+237452.0295049916 3.4978535 -7354.7485
+237453.0295050959 3.4978139 -7353.9609
+237454.0295052002 3.4976959 -7353.7646
+237455.0295053045 3.4976172 -7354.3545
+237456.0295054088 3.4974597 -7354.7485
+237457.0295055131 3.497499 -7354.9453
+237458.0295056175 3.497381 -7354.1577
+237459.0295057218 3.4971447 -7353.1738
+237460.0295058261 3.4972234 -7354.3545
+237461.0295059304 3.4970267 -7354.7485
+237462.0295060347 3.4969873 -7354.1577
+237463.029506139 3.4969084 -7354.5513
+237464.0295062433 3.4967904 -7354.9453
+237465.0295063476 3.4966724 -7354.9453
+237466.0295064519 3.4967117 -7353.7646
+237467.0295065562 3.4965148 -7353.9609
+237468.0295066605 3.4965148 -7353.9609
+237469.0295067648 3.4963574 -7353.7646
+237470.0295068691 3.4962392 -7355.3384
+237471.0295069735 3.4962785 -7354.1577
+237472.0295070778 3.4961212 -7354.5513
+237473.0295071821 3.4960818 -7354.7485
+237474.0295072864 3.4960425 -7355.1421
+237475.0295073907 3.4959636 -7354.1577
+237476.029507495 3.4958062 -7354.5513
+237477.0295075993 3.4956882 -7355.1421
+237478.0295077036 3.4956486 -7354.7485
+237479.0295078079 3.4956093 -7354.1577
+237480.0295079122 3.4955306 -7354.7485
+237481.0295080165 3.4954913 -7354.9453
+237482.0295081208 3.4953337 -7354.1577
+237483.0295082252 3.495373 -7354.3545
+237484.0295083295 3.495255 -7354.9453
+237485.0295084338 3.4951763 -7353.5669
+237486.0295085381 3.4950976 -7353.9609
+237487.0295086424 3.4949794 -7355.5352
+237488.0295087467 3.4947827 -7354.5513
+237489.029508851 3.4947827 -7355.5352
+237490.0295089553 3.4946251 -7354.7485
+237491.0295090596 3.4946251 -7354.1577
+237492.0295091639 3.4945858 -7354.7485
+237493.0295092682 3.4944282 -7353.7646
+237494.0295093725 3.4942315 -7354.7485
+237495.0295094769 3.4942315 -7353.3706
+237496.0295095812 3.4941132 -7353.3706
+237497.0295096855 3.4941132 -7354.1577
+237498.0295097898 3.4941132 -7354.9453
+237499.0295098941 3.4939952 -7354.3545
+237500.0295099984 3.4938378 -7353.9609
+237501.0295101027 3.4938772 -7354.3545
+237502.029510207 3.4936802 -7354.1577
+237503.0295103113 3.4936802 -7354.1577
+237504.0295104156 3.4936802 -7354.3545
+237505.0295105199 3.4935226 -7354.7485
+237506.0295106242 3.4934833 -7354.5513
+237507.0295107285 3.4934046 -7353.9609
+237508.0295108329 3.4932473 -7354.7485
+237509.0295109372 3.4932077 -7354.1577
+237510.0295110415 3.493129 -7354.7485
+237511.0295111458 3.4930503 -7354.3545
+237512.0295112501 3.4929323 -7354.3545
+237513.0295113544 3.4929323 -7354.1577
+237514.0295114587 3.4928141 -7354.7485
+237515.029511563 3.4926567 -7353.7646
+237516.0295116673 3.4926567 -7353.9609
+237517.0295117716 3.4925778 -7354.7485
+237518.0295118759 3.4924991 -7354.7485
+237519.0295119802 3.4923418 -7354.7485
+237520.0295120846 3.4923024 -7353.5669
+237521.0295121889 3.4921842 -7354.9453
+237522.0295122932 3.4922235 -7354.1577
+237523.0295123975 3.4921055 -7354.9453
+237524.0295125018 3.4921055 -7354.9453
+237525.0295126061 3.4919479 -7354.5513
+237526.0295127104 3.4919479 -7353.9609
+237527.0295128147 3.4916723 -7354.9453
+237528.029512919 3.4917512 -7354.3545
+237529.0295130233 3.4916329 -7354.3545
+237530.0295131276 3.4915543 -7354.3545
+237531.0295132319 3.4915543 -7353.5669
+237532.0295133363 3.4913969 -7355.1421
+237533.0295134406 3.4912786 -7354.1577
+237534.0295135449 3.4912393 -7354.5513
+237535.0295136492 3.491082 -7353.9609
+237536.0295137535 3.4912 -7354.7485
+237537.0295138578 3.4911213 -7353.5669
+237538.0295139621 3.491003 -7354.7485
+237539.0295140664 3.490885 -7354.7485
+237540.0295141707 3.4909244 -7354.1577
+237541.029514275 3.4908457 -7354.3545
+237542.0295143793 3.490767 -7354.5513
+237543.0295144836 3.4907274 -7353.9609
+237544.029514588 3.4905307 -7355.1421
+237545.0295146923 3.4905701 -7354.9453
+237546.0295147966 3.4904521 -7355.1421
+237547.0295149009 3.4905307 -7355.1421
+237548.0295150052 3.4902551 -7353.9609
+237549.0295151095 3.4902551 -7354.3545
+237550.0295152138 3.4902551 -7354.1577
+237551.0295153181 3.4900975 -7354.1577
+237552.0295154224 3.4900582 -7354.9453
+237553.0295155267 3.4900582 -7354.1577
+237554.029515631 3.4900188 -7354.7485
+237555.0295157353 3.4898615 -7354.3545
+237556.0295158396 3.4898615 -7353.9609
+237557.029515944 3.4898219 -7355.5352
+237558.0295160483 3.4896252 -7354.7485
+237559.0295161526 3.4896252 -7354.5513
+237560.0295162569 3.4895465 -7354.5513
+237561.0295163612 3.4894283 -7353.7646
+237562.0295164655 3.4893889 -7354.3545
+237563.0295165698 3.4892709 -7354.1577
+237564.0295166741 3.4891527 -7354.3545
+237565.0295167784 3.4891133 -7355.3384
+237566.0295168827 3.488956 -7354.9453
+237567.029516987 3.4889166 -7355.3384
+237568.0295170913 3.4887984 -7354.1577
+237569.0295171957 3.4888377 -7354.1577
+237570.0295173 3.4886804 -7355.3384
+237571.0295174043 3.4886804 -7354.5513
+237572.0295175086 3.4885621 -7354.3545
+237573.0295176129 3.4884048 -7354.3545
+237574.0295177172 3.4883654 -7354.3545
+237575.0295178215 3.4882865 -7354.3545
+237576.0295179258 3.4881685 -7355.1421
+237577.0295180301 3.4881685 -7354.1577
+237578.0295181344 3.4879322 -7353.5669
+237579.0295182387 3.4878535 -7355.1421
+237580.029518343 3.4878142 -7354.5513
+237581.0295184474 3.4876566 -7354.5513
+237582.0295185517 3.4876566 -7353.9609
+237583.029518656 3.4876962 -7354.9453
+237584.0295187603 3.4874992 -7353.3706
+237585.0295188646 3.4874992 -7354.3545
+237586.0295189689 3.4874599 -7353.9609
+237587.0295190732 3.4873023 -7354.5513
+237588.0295191775 3.4872236 -7354.5513
+237589.0295192818 3.4871843 -7354.7485
+237590.0295193861 3.4871056 -7354.7485
+237591.0295194904 3.4870663 -7354.3545
+237592.0295195947 3.4870663 -7354.5513
+237593.029519699 3.486948 -7354.7485
+237594.0295198034 3.4867117 -7354.9453
+237595.0295199077 3.4867117 -7354.3545
+237596.029520012 3.4864757 -7354.5513
+237597.0295201163 3.4864757 -7354.3545
+237598.0295202206 3.4864361 -7354.1577
+237599.0295203249 3.4862394 -7354.7485
+237600.0295204292 3.4860818 -7354.1577
+237601.0295205335 3.4859638 -7354.1577
+237602.0295206378 3.4858851 -7354.5513
+237603.0295207421 3.4857669 -7354.7485
+237604.0295208464 3.4856489 -7354.3545
+237605.0295209507 3.4856095 -7354.1577
+237606.0295210551 3.4854913 -7353.5669
+237607.0295211594 3.4853339 -7354.1577
+237608.0295212637 3.4852159 -7354.7485
+237609.029521368 3.4850976 -7354.1577
+237610.0295214723 3.4849796 -7354.3545
+237611.0295215766 3.4849796 -7354.5513
+237612.0295216809 3.484822 -7355.1421
+237613.0295217852 3.484822 -7354.3545
+237614.0295218895 3.484704 -7354.1577
+237615.0295219938 3.4846253 -7354.3545
+237616.0295220981 3.4845071 -7354.1577
+237617.0295222024 3.4844284 -7354.9453
+237618.0295223068 3.4843497 -7354.3545
+237619.0295224111 3.4841528 -7354.1577
+237620.0295225154 3.4841135 -7353.9609
+237621.0295226197 3.4841921 -7354.7485
+237622.029522724 3.4839559 -7354.3545
+237623.0295228283 3.4839165 -7354.3545
+237624.0295229326 3.4838378 -7354.3545
+237625.0295230369 3.4836805 -7354.3545
+237626.0295231412 3.4836805 -7355.3384
+237627.0295232455 3.4834049 -7354.7485
+237628.0295233498 3.4834049 -7354.5513
+237629.0295234541 3.483326 -7354.5513
+237630.0295235584 3.483326 -7354.9453
+237631.0295236628 3.4831686 -7353.7646
+237632.0295237671 3.4831686 -7354.7485
+237633.0295238714 3.4829717 -7354.5513
+237634.0295239757 3.4829717 -7355.1421
+237635.02952408 3.4828143 -7354.7485
+237636.0295241843 3.4826961 -7354.5513
+237637.0295242886 3.4826567 -7353.9609
+237638.0295243929 3.4826174 -7354.1577
+237639.0295244972 3.4824994 -7354.3545
+237640.0295246015 3.4824204 -7354.5513
+237641.0295247058 3.4822631 -7355.3384
+237642.0295248101 3.4822631 -7354.5513
+237643.0295249145 3.4822631 -7353.9609
+237644.0295250188 3.4822631 -7353.7646
+237645.0295251231 3.4819875 -7354.3545
+237646.0295252274 3.4819481 -7354.7485
+237647.0295253317 3.4818695 -7353.5669
+237648.029525436 3.4816725 -7354.1577
+237649.0295255403 3.4815152 -7354.5513
+237650.0295256446 3.4814756 -7354.3545
+237651.0295257489 3.4812396 -7354.1577
+237652.0295258532 3.4812396 -7354.3545
+237653.0295259575 3.4812396 -7354.1577
+237654.0295260618 3.4811213 -7353.9609
+237655.0295261662 3.481082 -7354.5513
+237656.0295262705 3.4809246 -7354.9453
+237657.0295263748 3.480885 -7354.3545
+237658.0295264791 3.4809639 -7354.1577
+237659.0295265834 3.4807277 -7354.3545
+237660.0295266877 3.4807277 -7353.7646
+237661.029526792 3.480649 -7354.1577
+237662.0295268963 3.4805307 -7354.3545
+237663.0295270006 3.4804521 -7355.1421
+237664.0295271049 3.4804914 -7354.9453
+237665.0295272092 3.4803734 -7354.5513
+237666.0295273135 3.480334 -7354.7485
+237667.0295274179 3.4802158 -7354.7485
+237668.0295275222 3.4800978 -7354.1577
+237669.0295276265 3.4800191 -7353.9609
+237670.0295277308 3.4799402 -7354.3545
+237671.0295278351 3.4799798 -7353.7646
+237672.0295279394 3.4798615 -7355.1421
+237673.0295280437 3.4798615 -7355.1421
+237674.029528148 3.4797828 -7354.5513
+237675.0295282523 3.4796252 -7353.7646
+237676.0295283566 3.4795465 -7354.3545
+237677.0295284609 3.4795072 -7354.3545
+237678.0295285652 3.4795859 -7354.3545
+237679.0295286695 3.4794679 -7354.5513
+237680.0295287739 3.4794285 -7354.7485
+237681.0295288782 3.4792709 -7354.9453
+237682.0295289825 3.4794285 -7354.5513
+237683.0295290868 3.4792709 -7354.7485
+237684.0295291911 3.4792316 -7354.5513
+237685.0295292954 3.4791136 -7354.7485
+237686.0295293997 3.4790742 -7354.5513
+237687.029529504 3.4789953 -7354.3545
+237688.0295296083 3.4789166 -7354.3545
+237689.0295297126 3.4787986 -7354.5513
+237690.0295298169 3.4786804 -7354.3545
+237691.0295299212 3.4786017 -7354.5513
+237692.0295300256 3.4786804 -7353.5669
+237693.0295301299 3.4786017 -7355.1421
+237694.0295302342 3.4784443 -7354.3545
+237695.0295303385 3.4784048 -7354.7485
+237696.0295304428 3.4782867 -7354.5513
+237697.0295305471 3.4782081 -7354.7485
+237698.0295306514 3.4781294 -7354.5513
+237699.0295307557 3.4779718 -7354.5513
+237700.02953086 3.4779325 -7355.5352
+237701.0295309643 3.4778931 -7354.1577
+237702.0295310686 3.4778538 -7354.9453
+237703.0295311729 3.4777355 -7354.3545
+237704.0295312773 3.4775388 -7354.3545
+237705.0295313816 3.4774992 -7355.7324
+237706.0295314859 3.4773812 -7354.5513
+237707.0295315902 3.4773812 -7354.5513
+237708.0295316945 3.4772632 -7354.3545
+237709.0295317988 3.477145 -7354.5513
+237710.0295319031 3.4770269 -7354.3545
+237711.0295320074 3.4769483 -7354.5513
+237712.0295321117 3.4767907 -7355.3384
+237713.029532216 3.476712 -7354.1577
+237714.0295323203 3.4766726 -7354.1577
+237715.0295324246 3.4765544 -7354.5513
+237716.0295325289 3.4763577 -7354.3545
+237717.0295326333 3.4763577 -7354.5513
+237718.0295327376 3.4763577 -7354.3545
+237719.0295328419 3.4761214 -7354.5513
+237720.0295329462 3.4761214 -7354.7485
+237721.0295330505 3.4760427 -7354.1577
+237722.0295331548 3.4759245 -7353.9609
+237723.0295332591 3.4757671 -7354.5513
+237724.0295333634 3.4758458 -7354.3545
+237725.0295334677 3.4757278 -7354.3545
+237726.029533572 3.4755309 -7354.9453
+237727.0295336763 3.4755702 -7354.9453
+237728.0295337806 3.4755309 -7354.1577
+237729.029533885 3.4754522 -7353.7646
+237730.0295339893 3.4752946 -7354.5513
+237731.0295340936 3.4751766 -7354.5513
+237732.0295341979 3.4752159 -7353.9609
+237733.0295343022 3.4751766 -7354.9453
+237734.0295344065 3.475019 -7354.1577
+237735.0295345108 3.4749796 -7354.5513
+237736.0295346151 3.474901 -7353.5669
+237737.0295347194 3.4748223 -7354.9453
+237738.0295348237 3.4749796 -7354.9453
+237739.029534928 3.4747829 -7354.9453
+237740.0295350323 3.4746647 -7354.9453
+237741.0295351367 3.474468 -7353.7646
+237742.029535241 3.4744287 -7354.7485
+237743.0295353453 3.4742711 -7354.1577
+237744.0295354496 3.4742317 -7354.5513
+237745.0295355539 3.4742317 -7354.9453
+237746.0295356582 3.4740348 -7354.3545
+237747.0295357625 3.4739954 -7354.5513
+237748.0295358668 3.4739168 -7354.7485
+237749.0295359711 3.4737198 -7353.9609
+237750.0295360754 3.4737985 -7354.5513
+237751.0295361797 3.4736018 -7354.5513
+237752.029536284 3.4735231 -7354.3545
+237753.0295363883 3.4735231 -7354.3545
+237754.0295364927 3.4734836 -7354.1577
+237755.029536597 3.4733262 -7354.3545
+237756.0295367013 3.4733262 -7353.9609
+237757.0295368056 3.4733655 -7354.3545
+237758.0295369099 3.4732869 -7354.3545
+237759.0295370142 3.4732475 -7353.7646
+237760.0295371185 3.4730506 -7354.7485
+237761.0295372228 3.4730113 -7354.3545
+237762.0295373271 3.4729719 -7354.1577
+237763.0295374314 3.4729326 -7353.7646
+237764.0295375357 3.4728537 -7354.5513
+237765.02953764 3.472775 -7354.1577
+237766.0295377444 3.4726176 -7354.7485
+237767.0295378487 3.4726963 -7353.5669
+237768.029537953 3.4726176 -7353.9609
+237769.0295380573 3.472657 -7354.7485
+237770.0295381616 3.4725387 -7354.3545
+237771.0295382659 3.472342 -7353.7646
+237772.0295383702 3.4724994 -7353.3706
+237773.0295384745 3.4722633 -7354.1577
+237774.0295385788 3.4723027 -7354.3545
+237775.0295386831 3.4722238 -7354.5513
+237776.0295387874 3.4721057 -7353.9609
+237777.0295388917 3.4721057 -7354.5513
+237778.0295389961 3.4719877 -7354.9453
+237779.0295391004 3.4718695 -7353.9609
+237780.0295392047 3.4718695 -7353.9609
+237781.029539309 3.4717515 -7354.9453
+237782.0295394133 3.4716728 -7354.3545
+237783.0295395176 3.4715545 -7355.3384
+237784.0295396219 3.4715545 -7354.3545
+237785.0295397262 3.4713972 -7354.3545
+237786.0295398305 3.4713182 -7353.7646
+237787.0295399348 3.4713182 -7355.5352
+237788.0295400391 3.4712396 -7353.7646
+237789.0295401434 3.4712002 -7353.9609
+237790.0295402478 3.4710033 -7354.3545
+237791.0295403521 3.470964 -7354.5513
+237792.0295404564 3.470964 -7353.5669
+237793.0295405607 3.4707279 -7354.3545
+237794.029540665 3.4707279 -7354.1577
+237795.0295407693 3.4707279 -7354.3545
+237796.0295408736 3.470649 -7354.1577
+237797.0295409779 3.470649 -7354.3545
+237798.0295410822 3.4704916 -7353.7646
+237799.0295411865 3.4704523 -7354.1577
+237800.0295412908 3.4703734 -7354.5513
+237801.0295413951 3.4703734 -7354.3545
+237802.0295414994 3.4700978 -7354.3545
+237803.0295416038 3.4700584 -7354.3545
+237804.0295417081 3.4700191 -7353.5669
+237805.0295418124 3.4698617 -7354.9453
+237806.0295419167 3.4698224 -7354.3545
+237807.029542021 3.4697042 -7355.3384
+237808.0295421253 3.4695075 -7354.3545
+237809.0295422296 3.4693892 -7354.3545
+237810.0295423339 3.4693499 -7354.5513
+237811.0295424382 3.4692712 -7354.5513
+237812.0295425425 3.4691529 -7354.9453
+237813.0295426468 3.4690349 -7354.7485
+237814.0295427511 3.4689562 -7354.1577
+237815.0295428555 3.468838 -7354.5513
+237816.0295429598 3.4687593 -7354.3545
+237817.0295430641 3.4686806 -7354.1577
+237818.0295431684 3.4686413 -7354.3545
+237819.0295432727 3.4686019 -7353.7646
+237820.029543377 3.4684837 -7353.5669
+237821.0295434813 3.4684443 -7354.5513
+237822.0295435856 3.4685624 -7354.3545
+237823.0295436899 3.4683657 -7354.7485
+237824.0295437942 3.4683263 -7354.5513
+237825.0295438985 3.4683263 -7354.1577
+237826.0295440028 3.4681294 -7353.9609
+237827.0295441072 3.4680901 -7354.1577
+237828.0295442115 3.4680507 -7354.7485
+237829.0295443158 3.4679325 -7354.5513
+237830.0295444201 3.4679325 -7354.5513
+237831.0295445244 3.4677358 -7354.9453
+237832.0295446287 3.4677358 -7354.1577
+237833.029544733 3.4674995 -7354.1577
+237834.0295448373 3.4674995 -7354.9453
+237835.0295449416 3.4674208 -7354.9453
+237836.0295450459 3.4673026 -7353.9609
+237837.0295451502 3.4672239 -7354.1577
+237838.0295452545 3.4671845 -7353.7646
+237839.0295453588 3.4671059 -7355.3384
+237840.0295454632 3.4669483 -7354.3545
+237841.0295455675 3.4668303 -7354.9453
+237842.0295456718 3.4667909 -7354.3545
+237843.0295457761 3.466712 -7355.7324
+237844.0295458804 3.466594 -7354.5513
+237845.0295459847 3.4665546 -7354.5513
+237846.029546089 3.4665546 -7354.1577
+237847.0295461933 3.466397 -7354.3545
+237848.0295462976 3.466397 -7353.9609
+237849.0295464019 3.466397 -7353.7646
+237850.0295465062 3.466397 -7354.1577
+237851.0295466105 3.4663577 -7354.3545
+237852.0295467149 3.4662397 -7354.5513
+237853.0295468192 3.4662004 -7353.9609
+237854.0295469235 3.4662004 -7354.3545
+237855.0295470278 3.4661217 -7354.3545
+237856.0295471321 3.4661217 -7354.7485
+237857.0295472364 3.4660821 -7354.3545
+237858.0295473407 3.4661217 -7354.7485
+237859.029547445 3.4659641 -7354.3545
+237860.0295475493 3.4659641 -7354.5513
+237861.0295476536 3.4658461 -7354.3545
+237862.0295477579 3.4657278 -7353.9609
+237863.0295478622 3.4656885 -7354.9453
+237864.0295479666 3.4656491 -7354.5513
+237865.0295480709 3.4654918 -7353.7646
+237866.0295481752 3.4654129 -7353.9609
+237867.0295482795 3.4653342 -7354.3545
+237868.0295483838 3.4652948 -7355.7324
+237869.0295484881 3.4650979 -7353.9609
+237870.0295485924 3.4650586 -7354.3545
+237871.0295486967 3.4650192 -7354.3545
+237872.029548801 3.4647436 -7354.7485
+237873.0295489053 3.464783 -7354.5513
+237874.0295490096 3.4646256 -7355.1421
+237875.0295491139 3.4647043 -7354.3545
+237876.0295492182 3.4645863 -7355.3384
+237877.0295493226 3.464468 -7354.3545
+237878.0295494269 3.4642713 -7354.1577
+237879.0295495312 3.4643106 -7353.3706
+237880.0295496355 3.4642713 -7353.7646
+237881.0295497398 3.4641531 -7354.7485
+237882.0295498441 3.4641924 -7354.7485
+237883.0295499484 3.4641924 -7354.3545
+237884.0295500527 3.4640744 -7354.3545
+237885.029550157 3.4639564 -7354.1577
+237886.0295502613 3.4639564 -7354.5513
+237887.0295503656 3.4638381 -7353.9609
+237888.0295504699 3.4637201 -7353.7646
+237889.0295505743 3.4637201 -7355.1421
+237890.0295506786 3.4636807 -7354.9453
+237891.0295507829 3.4636414 -7353.9609
+237892.0295508872 3.4635625 -7354.3545
+237893.0295509915 3.4635231 -7354.5513
+237894.0295510958 3.4633658 -7354.1577
+237895.0295512001 3.4634838 -7353.7646
+237896.0295513044 3.4631295 -7353.5669
+237897.0295514087 3.4632869 -7355.1421
+237898.029551513 3.4632475 -7354.3545
+237899.0295516173 3.4630113 -7354.9453
+237900.0295517216 3.4630113 -7354.3545
+237901.029551826 3.4628932 -7353.9609
+237902.0295519303 3.4627752 -7355.1421
+237903.0295520346 3.4628539 -7354.3545
+237904.0295521389 3.4628146 -7354.7485
+237905.0295522432 3.462657 -7354.1577
+237906.0295523475 3.4626176 -7354.1577
+237907.0295524518 3.462657 -7353.9609
+237908.0295525561 3.4624209 -7354.7485
+237909.0295526604 3.4624209 -7354.5513
+237910.0295527647 3.4624209 -7354.1577
+237911.029552869 3.4623027 -7354.1577
+237912.0295529733 3.4622633 -7353.7646
+237913.0295530776 3.4623027 -7355.1421
+237914.029553182 3.4621847 -7354.5513
+237915.0295532863 3.462106 -7353.9609
+237916.0295533906 3.4620664 -7354.9453
+237917.0295534949 3.4620271 -7354.9453
+237918.0295535992 3.4619091 -7353.7646
+237919.0295537035 3.4618697 -7354.5513
+237920.0295538078 3.4618304 -7353.3706
+237921.0295539121 3.461791 -7354.5513
+237922.0295540164 3.4617515 -7354.7485
+237923.0295541207 3.4616334 -7354.1577
+237924.029554225 3.4615548 -7354.7485
+237925.0295543293 3.4615154 -7354.3545
+237926.0295544337 3.4614761 -7354.3545
+237927.029554538 3.4613972 -7354.3545
+237928.0295546423 3.4613972 -7354.9453
+237929.0295547466 3.4612792 -7354.7485
+237930.0295548509 3.4612792 -7354.7485
+237931.0295549552 3.4612005 -7353.5669
+237932.0295550595 3.4612398 -7355.1421
+237933.0295551638 3.4611216 -7353.9609
+237934.0295552681 3.4611609 -7354.3545
+237935.0295553724 3.4609249 -7354.1577
+237936.0295554767 3.4609249 -7355.1421
+237937.029555581 3.4608066 -7354.7485
+237938.0295556854 3.4608855 -7353.9609
+237939.0295557897 3.4606493 -7353.9609
+237940.029555894 3.4606099 -7354.1577
+237941.0295559983 3.4606099 -7354.1577
+237942.0295561026 3.460531 -7353.9609
+237943.0295562069 3.4603343 -7354.3545
+237944.0295563112 3.460295 -7353.9609
+237945.0295564155 3.4601767 -7354.1577
+237946.0295565198 3.4599407 -7353.7646
+237947.0295566241 3.45998 -7354.5513
+237948.0295567284 3.4598224 -7354.7485
+237949.0295568327 3.4596651 -7353.9609
+237950.0295569371 3.4595468 -7354.3545
+237951.0295570414 3.4593894 -7354.5513
+237952.0295571457 3.4593501 -7355.3384
+237953.02955725 3.4591532 -7353.9609
+237954.0295573543 3.4590745 -7354.3545
+237955.0295574586 3.4589562 -7354.5513
+237956.0295575629 3.4588776 -7354.1577
+237957.0295576672 3.4587595 -7353.9609
+237958.0295577715 3.4587595 -7354.1577
+237959.0295578758 3.4585233 -7354.3545
+237960.0295579801 3.4584446 -7354.9453
+237961.0295580844 3.4583263 -7354.9453
+237962.0295581887 3.4583263 -7353.5669
+237963.0295582931 3.4582083 -7354.1577
+237964.0295583974 3.4580903 -7354.3545
+237965.0295585017 3.4580114 -7354.1577
+237966.029558606 3.4579327 -7353.5669
+237967.0295587103 3.4579327 -7354.7485
+237968.0295588146 3.4578934 -7354.3545
+237969.0295589189 3.4578147 -7353.3706
+237970.0295590232 3.4577751 -7354.1577
+237971.0295591275 3.4576571 -7354.9453
+237972.0295592318 3.4575784 -7354.9453
+237973.0295593361 3.4575784 -7355.1421
+237974.0295594404 3.4574208 -7355.9292
+237975.0295595448 3.4574602 -7353.9609
+237976.0295596491 3.4574208 -7354.7485
+237977.0295597534 3.4573028 -7354.7485
+237978.0295598577 3.4573028 -7354.5513
+237979.029559962 3.4572635 -7353.9609
+237980.0295600663 3.4571848 -7354.5513
+237981.0295601706 3.4570665 -7354.9453
+237982.0295602749 3.4569485 -7354.5513
+237983.0295603792 3.4569092 -7354.7485
+237984.0295604835 3.4568698 -7353.5669
+237985.0295605878 3.4568303 -7353.9609
+237986.0295606921 3.4568303 -7354.5513
+237987.0295607965 3.4567122 -7354.3545
+237988.0295609008 3.4567122 -7353.9609
+237989.0295610051 3.4566336 -7354.7485
+237990.0295611094 3.4566336 -7355.1421
+237991.0295612137 3.4565549 -7353.7646
+237992.029561318 3.4565942 -7353.9609
+237993.0295614223 3.456476 -7354.1577
+237994.0295615266 3.4564366 -7354.1577
+237995.0295616309 3.456476 -7354.3545
+237996.0295617352 3.4564366 -7354.7485
+237997.0295618395 3.4563973 -7353.9609
+237998.0295619438 3.4562793 -7354.9453
+237999.0295620481 3.4562399 -7354.1577
+238000.0295621525 3.4562399 -7353.7646
+238001.0295622568 3.4560823 -7354.3545
+238002.0295623611 3.4560823 -7354.5513
+238003.0295624654 3.4559247 -7354.7485
+238004.0295625697 3.4559643 -7353.7646
+238005.029562674 3.4560037 -7354.9453
+238006.0295627783 3.4559247 -7354.9453
+238007.0295628826 3.4558461 -7354.5513
+238008.0295629869 3.4558067 -7353.3706
+238009.0295630912 3.4557281 -7353.9609
+238010.0295631955 3.4558067 -7354.3545
+238011.0295632998 3.4555705 -7354.1577
+238012.0295634042 3.4556098 -7353.7646
+238013.0295635085 3.4556098 -7354.3545
+238014.0295636128 3.4554918 -7354.1577
+238015.0295637171 3.4556098 -7353.5669
+238016.0295638214 3.4554131 -7354.7485
+238017.0295639257 3.4555311 -7354.3545
+238018.02956403 3.4554918 -7354.3545
+238019.0295641343 3.4553344 -7354.3545
+238020.0295642386 3.4554131 -7354.1577
+238021.0295643429 3.4552948 -7354.5513
+238022.0295644472 3.4552555 -7354.7485
+238023.0295645515 3.4552555 -7354.3545
+238024.0295646559 3.4552162 -7353.9609
+238025.0295647602 3.4552162 -7354.1577
+238026.0295648645 3.4550195 -7353.9609
+238027.0295649688 3.4549799 -7354.3545
+238028.0295650731 3.4549012 -7354.1577
+238029.0295651774 3.4549012 -7354.1577
+238030.0295652817 3.4547439 -7353.7646
+238031.029565386 3.4546649 -7354.5513
+238032.0295654903 3.4545863 -7354.3545
+238033.0295655946 3.4546256 -7353.9609
+238034.0295656989 3.4544289 -7354.3545
+238035.0295658032 3.4544289 -7354.7485
+238036.0295659075 3.454232 -7353.7646
+238037.0295660119 3.4543107 -7354.1577
+238038.0295661162 3.454232 -7354.7485
+238039.0295662205 3.4542713 -7354.7485
+238040.0295663248 3.4541926 -7353.9609
+238041.0295664291 3.4541533 -7354.3545
+238042.0295665334 3.454035 -7354.1577
+238043.0295666377 3.4540744 -7353.9609
+238044.029566742 3.4539957 -7354.3545
+238045.0295668463 3.4539564 -7354.3545
+238046.0295669506 3.4538777 -7354.3545
+238047.0295670549 3.4537594 -7354.7485
+238048.0295671592 3.4536808 -7354.1577
+238049.0295672636 3.4537201 -7354.7485
+238050.0295673679 3.4536021 -7354.9453
+238051.0295674722 3.4534051 -7354.9453
+238052.0295675765 3.4533265 -7353.9609
+238053.0295676808 3.4532871 -7354.7485
+238054.0295677851 3.4532478 -7353.9609
+238055.0295678894 3.4531295 -7354.1577
+238056.0295679937 3.4530509 -7354.1577
+238057.029568098 3.4530115 -7353.1738
+238058.0295682023 3.4528146 -7354.5513
+238059.0295683066 3.4528146 -7354.5513
+238060.0295684109 3.4526572 -7354.1577
+238061.0295685153 3.4526966 -7354.3545
+238062.0295686196 3.4525785 -7354.3545
+238063.0295687239 3.4524996 -7354.3545
+238064.0295688282 3.4524603 -7354.7485
+238065.0295689325 3.4522636 -7354.1577
+238066.0295690368 3.452224 -7354.3545
+238067.0295691411 3.452106 -7354.3545
+238068.0295692454 3.4519091 -7354.9453
+238069.0295693497 3.4519486 -7354.3545
+238070.029569454 3.451791 -7354.3545
+238071.0295695583 3.4515941 -7354.3545
+238072.0295696626 3.4514761 -7353.7646
+238073.029569767 3.4513974 -7354.7485
+238074.0295698713 3.4513581 -7355.1421
+238075.0295699756 3.4512792 -7353.5669
+238076.0295700799 3.4511611 -7354.7485
+238077.0295701842 3.4511218 -7355.1421
+238078.0295702885 3.4510431 -7354.7485
+238079.0295703928 3.4508855 -7354.3545
+238080.0295704971 3.4508069 -7354.3545
+238081.0295706014 3.4507282 -7354.3545
+238082.0295707057 3.4507282 -7354.3545
+238083.02957081 3.4507282 -7354.1577
+238084.0295709143 3.4505312 -7354.1577
+238085.0295710186 3.4504919 -7353.7646
+238086.029571123 3.4504132 -7355.1421
+238087.0295712273 3.450295 -7354.3545
+238088.0295713316 3.4502163 -7353.9609
+238089.0295714359 3.4502163 -7354.3545
+238090.0295715402 3.44998 -7354.3545
+238091.0295716445 3.4499013 -7354.7485
+238092.0295717488 3.449862 -7354.5513
+238093.0295718531 3.4496651 -7354.3545
+238094.0295719574 3.4496257 -7354.1577
+238095.0295720617 3.4495864 -7353.9609
+238096.029572166 3.4493895 -7353.7646
+238097.0295722703 3.4493501 -7354.3545
+238098.0295723747 3.4491534 -7353.9609
+238099.029572479 3.4490352 -7354.9453
+238100.0295725833 3.4489172 -7354.3545
+238101.0295726876 3.4488778 -7353.9609
+238102.0295727919 3.4487989 -7354.5513
+238103.0295728962 3.4486022 -7354.3545
+238104.0295730005 3.4485629 -7353.7646
+238105.0295731048 3.4485233 -7354.9453
+238106.0295732091 3.4484053 -7354.9453
+238107.0295733134 3.4482083 -7354.5513
+238108.0295734177 3.448169 -7354.1577
+238109.029573522 3.4480116 -7353.9609
+238110.0295736264 3.4478934 -7354.3545
+238111.0295737307 3.4478147 -7354.9453
+238112.029573835 3.4476967 -7354.5513
+238113.0295739393 3.447618 -7354.5513
+238114.0295740436 3.4474604 -7354.3545
+238115.0295741479 3.4473424 -7353.9609
+238116.0295742522 3.4472241 -7354.5513
+238117.0295743565 3.4470274 -7354.7485
+238118.0295744608 3.4469485 -7354.9453
+238119.0295745651 3.4466729 -7354.1577
+238120.0295746694 3.4466336 -7354.1577
+238121.0295747737 3.4465156 -7355.1421
+238122.029574878 3.4463975 -7353.7646
+238123.0295749824 3.4463975 -7354.3545
+238124.0295750867 3.4462006 -7354.1577
+238125.029575191 3.4461219 -7353.9609
+238126.0295752953 3.4461219 -7354.9453
+238127.0295753996 3.446043 -7354.1577
+238128.0295755039 3.4459643 -7354.9453
+238129.0295756082 3.445925 -7354.7485
+238130.0295757125 3.4458857 -7353.7646
+238131.0295758168 3.4458463 -7354.5513
+238132.0295759211 3.4456887 -7353.9609
+238133.0295760254 3.4455707 -7354.3545
+238134.0295761297 3.4454527 -7354.5513
+238135.0295762341 3.4454131 -7355.1421
+238136.0295763384 3.4453344 -7354.3545
+238137.0295764427 3.4452164 -7353.7646
+238138.029576547 3.4452558 -7354.3545
+238139.0295766513 3.4450195 -7354.7485
+238140.0295767556 3.4449801 -7354.5513
+238141.0295768599 3.4450195 -7353.7646
+238142.0295769642 3.4448225 -7354.1577
+238143.0295770685 3.4447832 -7354.3545
+238144.0295771728 3.4446652 -7354.1577
+238145.0295772771 3.4447045 -7354.1577
+238146.0295773814 3.4446259 -7354.3545
+238147.0295774858 3.4445472 -7354.1577
+238148.0295775901 3.4444683 -7355.3384
+238149.0295776944 3.4443896 -7354.1577
+238150.0295777987 3.4443109 -7354.7485
+238151.029577903 3.4441926 -7354.7485
+238152.0295780073 3.4441926 -7354.7485
+238153.0295781116 3.4440746 -7354.3545
+238154.0295782159 3.444114 -7354.3545
+238155.0295783202 3.4440353 -7354.1577
+238156.0295784245 3.4439566 -7354.5513
+238157.0295785288 3.4438777 -7353.7646
+238158.0295786331 3.4438384 -7354.3545
+238159.0295787374 3.443799 -7354.5513
+238160.0295788418 3.4437203 -7353.7646
+238161.0295789461 3.443681 -7354.1577
+238162.0295790504 3.4436023 -7354.9453
+238163.0295791547 3.4434841 -7354.7485
+238164.029579259 3.4434054 -7354.3545
+238165.0295793633 3.4434054 -7354.3545
+238166.0295794676 3.4432871 -7354.3545
+238167.0295795719 3.4432085 -7354.9453
+238168.0295796762 3.4432085 -7353.9609
+238169.0295797805 3.4431691 -7353.5669
+238170.0295798848 3.4430118 -7353.7646
+238171.0295799891 3.4429328 -7354.7485
+238172.0295800935 3.4429722 -7354.3545
+238173.0295801978 3.4428542 -7354.3545
+238174.0295803021 3.4426572 -7353.5669
+238175.0295804064 3.4426179 -7354.9453
+238176.0295805107 3.4426968 -7354.3545
+238177.029580615 3.4425392 -7354.5513
+238178.0295807193 3.4425392 -7354.1577
+238179.0295808236 3.4423423 -7354.9453
+238180.0295809279 3.4423423 -7354.9453
+238181.0295810322 3.4423029 -7353.7646
+238182.0295811365 3.4422243 -7355.9292
+238183.0295812408 3.4423029 -7354.3545
+238184.0295813452 3.4421849 -7354.5513
+238185.0295814495 3.4421456 -7354.5513
+238186.0295815538 3.4420669 -7354.3545
+238187.0295816581 3.4419487 -7354.7485
+238188.0295817624 3.4418306 -7354.7485
+238189.0295818667 3.44187 -7354.1577
+238190.029581971 3.4417913 -7353.7646
+238191.0295820753 3.4417517 -7354.5513
+238192.0295821796 3.4416337 -7353.5669
+238193.0295822839 3.441555 -7354.7485
+238194.0295823882 3.4413974 -7354.5513
+238195.0295824925 3.4413974 -7354.7485
+238196.0295825969 3.4412794 -7353.9609
+238197.0295827012 3.4410825 -7354.7485
+238198.0295828055 3.4411218 -7353.5669
+238199.0295829098 3.4411218 -7354.3545
+238200.0295830141 3.4410038 -7354.1577
+238201.0295831184 3.4408464 -7354.5513
+238202.0295832227 3.4407282 -7354.5513
+238203.029583327 3.4406102 -7354.1577
+238204.0295834313 3.4405315 -7354.3545
+238205.0295835356 3.4402952 -7353.9609
+238206.0295836399 3.4402165 -7354.5513
+238207.0295837442 3.4401376 -7353.3706
+238208.0295838485 3.4400196 -7355.1421
+238209.0295839529 3.4400196 -7354.3545
+238210.0295840572 3.4399014 -7353.5669
+238211.0295841615 3.4399803 -7354.9453
+238212.0295842658 3.4398227 -7355.1421
+238213.0295843701 3.4397047 -7354.3545
+238214.0295844744 3.4396653 -7354.9453
+238215.0295845787 3.4395077 -7354.5513
+238216.029584683 3.4395077 -7354.3545
+238217.0295847873 3.4393897 -7353.7646
+238218.0295848916 3.4395077 -7353.9609
+238219.0295849959 3.439311 -7354.5513
+238220.0295851002 3.4391928 -7354.5513
+238221.0295852046 3.4390748 -7354.5513
+238222.0295853089 3.4389961 -7354.9453
+238223.0295854132 3.4389172 -7354.7485
+238224.0295855175 3.4387991 -7354.1577
+238225.0295856218 3.4387598 -7353.9609
+238226.0295857261 3.4386415 -7354.5513
+238227.0295858304 3.4385629 -7354.1577
+238228.0295859347 3.4385629 -7354.5513
+238229.029586039 3.4384842 -7354.1577
+238230.0295861433 3.4385235 -7353.5669
+238231.0295862476 3.4383266 -7354.7485
+238232.0295863519 3.4383266 -7354.1577
+238233.0295864563 3.4382479 -7353.7646
+238234.0295865606 3.4381299 -7354.3545
+238235.0295866649 3.4380906 -7355.1421
+238236.0295867692 3.4381299 -7354.5513
+238237.0295868735 3.4379723 -7354.5513
+238238.0295869778 3.4378543 -7354.9453
+238239.0295870821 3.4377756 -7353.9609
+238240.0295871864 3.4376967 -7354.7485
+238241.0295872907 3.4374607 -7354.5513
+238242.029587395 3.4372637 -7354.3545
+238243.0295874993 3.4372244 -7354.5513
+238244.0295876036 3.4370668 -7353.9609
+238245.0295877079 3.4369488 -7353.9609
+238246.0295878123 3.4369094 -7354.1577
+238247.0295879166 3.4367125 -7354.1577
+238248.0295880209 3.4367125 -7354.1577
+238249.0295881252 3.4366732 -7354.7485
+238250.0295882295 3.4364762 -7354.1577
+238251.0295883338 3.4365945 -7354.3545
+238252.0295884381 3.4363582 -7354.5513
+238253.0295885424 3.4363582 -7354.1577
+238254.0295886467 3.4362795 -7355.1421
+238255.029588751 3.4361613 -7354.7485
+238256.0295888553 3.4361613 -7353.9609
+238257.0295889596 3.4360039 -7354.7485
+238258.029589064 3.4359646 -7354.7485
+238259.0295891683 3.4357677 -7354.5513
+238260.0295892726 3.4357677 -7354.3545
+238261.0295893769 3.4355707 -7354.1577
+238262.0295894812 3.4354134 -7353.9609
+238263.0295895855 3.4354134 -7354.9453
+238264.0295896898 3.4352558 -7354.7485
+238265.0295897941 3.4350591 -7353.9609
+238266.0295898984 3.4349408 -7353.9609
+238267.0295900027 3.4348228 -7354.9453
+238268.029590107 3.4346654 -7353.7646
+238269.0295902113 3.4346259 -7354.7485
+238270.0295903157 3.4345472 -7354.9453
+238271.02959042 3.4345078 -7353.9609
+238272.0295905243 3.4344292 -7354.7485
+238273.0295906286 3.4344685 -7353.3706
+238274.0295907329 3.4343503 -7354.3545
+238275.0295908372 3.4343503 -7355.3384
+238276.0295909415 3.4341142 -7354.3545
+238277.0295910458 3.4341536 -7354.3545
+238278.0295911501 3.433996 -7354.3545
+238279.0295912544 3.433996 -7353.1738
+238280.0295913587 3.4338386 -7353.5669
+238281.029591463 3.4337599 -7354.1577
+238282.0295915673 3.4336023 -7354.1577
+238283.0295916717 3.4334843 -7354.9453
+238284.029591776 3.4332874 -7354.9453
+238285.0295918803 3.433248 -7353.9609
+238286.0295919846 3.4331694 -7353.5669
+238287.0295920889 3.4330118 -7355.3384
+238288.0295921932 3.4330118 -7355.1421
+238289.0295922975 3.4329724 -7354.3545
+238290.0295924018 3.4328544 -7355.1421
+238291.0295925061 3.4328151 -7354.3545
+238292.0295926104 3.4326968 -7355.3384
+238293.0295927147 3.4326181 -7354.1577
+238294.029592819 3.4326181 -7354.1577
+238295.0295929234 3.4324605 -7354.1577
+238296.0295930277 3.4323819 -7353.9609
+238297.029593132 3.4322639 -7354.1577
+238298.0295932363 3.4321849 -7354.3545
+238299.0295933406 3.4322245 -7353.9609
+238300.0295934449 3.4321063 -7355.1421
+238301.0295935492 3.4320669 -7354.3545
+238302.0295936535 3.4319882 -7354.5513
+238303.0295937578 3.43187 -7353.7646
+238304.0295938621 3.43187 -7353.9609
+238305.0295939664 3.43187 -7353.7646
+238306.0295940707 3.43187 -7354.3545
+238307.0295941751 3.4318306 -7354.3545
+238308.0295942794 3.4318306 -7353.7646
+238309.0295943837 3.4316733 -7354.5513
+238310.029594488 3.431752 -7354.1577
+238311.0295945923 3.4315946 -7353.7646
+238312.0295946966 3.4315157 -7354.9453
+238313.0295948009 3.4313583 -7354.3545
+238314.0295949052 3.431319 -7354.1577
+238315.0295950095 3.4310827 -7354.7485
+238316.0295951138 3.4309645 -7355.1421
+238317.0295952181 3.4308858 -7354.1577
+238318.0295953224 3.4306891 -7353.7646
+238319.0295954267 3.4305708 -7354.7485
+238320.0295955311 3.4305315 -7353.9609
+238321.0295956354 3.4302952 -7354.7485
+238322.0295957397 3.4302952 -7354.1577
+238323.029595844 3.4300196 -7354.3545
+238324.0295959483 3.4299803 -7354.1577
+238325.0295960526 3.4297836 -7354.7485
+238326.0295961569 3.4298623 -7354.9453
+238327.0295962612 3.4297047 -7353.9609
+238328.0295963655 3.4297047 -7354.3545
+238329.0295964698 3.429626 -7354.3545
+238330.0295965741 3.4295473 -7353.5669
+238331.0295966784 3.429508 -7354.1577
+238332.0295967828 3.4293504 -7354.1577
+238333.0295968871 3.4294293 -7354.5513
+238334.0295969914 3.4293897 -7354.3545
+238335.0295970957 3.4294293 -7354.3545
+238336.0295972 3.4293897 -7354.9453
+238337.0295973043 3.4293897 -7354.3545
+238338.0295974086 3.4294293 -7354.1577
+238339.0295975129 3.4294293 -7353.5669
+238340.0295976172 3.4294293 -7355.1421
+238341.0295977215 3.429311 -7354.5513
+238342.0295978258 3.4292324 -7354.7485
+238343.0295979301 3.4293504 -7354.5513
+238344.0295980345 3.4291537 -7354.3545
+238345.0295981388 3.4290748 -7354.5513
+238346.0295982431 3.4289961 -7354.5513
+238347.0295983474 3.4289961 -7354.3545
+238348.0295984517 3.4288781 -7354.3545
+238349.029598556 3.4287992 -7354.1577
+238350.0295986603 3.4287992 -7354.1577
+238351.0295987646 3.4287205 -7353.7646
+238352.0295988689 3.4286418 -7354.3545
+238353.0295989732 3.4286418 -7353.7646
+238354.0295990775 3.4286418 -7354.1577
+238355.0295991818 3.4285238 -7354.7485
+238356.0295992862 3.4285631 -7353.5669
+238357.0295993905 3.4285238 -7353.5669
+238358.0295994948 3.4284842 -7354.3545
+238359.0295995991 3.4283662 -7354.3545
+238360.0295997034 3.4284842 -7354.5513
+238361.0295998077 3.4284449 -7354.5513
+238362.029599912 3.4285238 -7354.7485
+238363.0296000163 3.4284055 -7354.3545
+238364.0296001206 3.4283662 -7354.3545
+238365.0296002249 3.4284055 -7355.1421
+238366.0296003292 3.4282482 -7353.9609
+238367.0296004335 3.4282088 -7354.3545
+238368.0296005378 3.4282088 -7354.9453
+238369.0296006422 3.4281693 -7353.9609
+238370.0296007465 3.4280906 -7354.1577
+238371.0296008508 3.4280119 -7354.3545
+238372.0296009551 3.4278939 -7354.1577
+238373.0296010594 3.4278543 -7353.9609
+238374.0296011637 3.4276576 -7354.5513
+238375.029601268 3.4277756 -7354.7485
+238376.0296013723 3.4275 -7354.3545
+238377.0296014766 3.4275393 -7354.3545
+238378.0296015809 3.4274213 -7354.3545
+238379.0296016852 3.427382 -7354.5513
+238380.0296017895 3.4273427 -7354.7485
+238381.0296018939 3.427382 -7354.1577
+238382.0296019982 3.4272244 -7354.9453
+238383.0296021025 3.4273427 -7354.7485
+238384.0296022068 3.4271851 -7354.1577
+238385.0296023111 3.427067 -7353.9609
+238386.0296024154 3.4269488 -7354.3545
+238387.0296025197 3.4269094 -7354.7485
+238388.029602624 3.4266338 -7354.3545
+238389.0296027283 3.4265158 -7354.1577
+238390.0296028326 3.4264765 -7354.1577
+238391.0296029369 3.4263585 -7354.5513
+238392.0296030412 3.4262795 -7353.9609
+238393.0296031456 3.4262402 -7354.1577
+238394.0296032499 3.4261615 -7352.9771
+238395.0296033542 3.4260828 -7354.3545
+238396.0296034585 3.4260435 -7354.1577
+238397.0296035628 3.4259253 -7353.9609
+238398.0296036671 3.4258466 -7354.3545
+238399.0296037714 3.4257286 -7354.9453
+238400.0296038757 3.4256103 -7353.7646
+238401.02960398 3.425571 -7354.1577
+238402.0296040843 3.4255316 -7354.5513
+238403.0296041886 3.425256 -7354.3545
+238404.0296042929 3.4252954 -7353.7646
+238405.0296043972 3.4252167 -7354.1577
+238406.0296045016 3.4250984 -7353.7646
+238407.0296046059 3.4250197 -7354.1577
+238408.0296047102 3.4248624 -7354.1577
+238409.0296048145 3.4248624 -7354.3545
+238410.0296049188 3.4247441 -7354.3545
+238411.0296050231 3.4247048 -7353.9609
+238412.0296051274 3.4245474 -7355.5352
+238413.0296052317 3.4245081 -7353.7646
+238414.029605336 3.4245081 -7354.1577
+238415.0296054403 3.4244292 -7354.5513
+238416.0296055446 3.4243505 -7354.5513
+238417.0296056489 3.4242718 -7354.5513
+238418.0296057533 3.4242718 -7354.9453
+238419.0296058576 3.4241536 -7354.5513
+238420.0296059619 3.4240355 -7354.5513
+238421.0296060662 3.4238782 -7355.1421
+238422.0296061705 3.4238386 -7354.9453
+238423.0296062748 3.4237206 -7354.3545
+238424.0296063791 3.4237599 -7353.7646
+238425.0296064834 3.4237993 -7353.7646
+238426.0296065877 3.4237993 -7354.7485
+238427.029606692 3.4238386 -7354.7485
+238428.0296067963 3.4239175 -7354.5513
+238429.0296069006 3.4237599 -7354.5513
+238430.029607005 3.4237993 -7353.7646
+238431.0296071093 3.4237599 -7354.7485
+238432.0296072136 3.4237206 -7354.1577
+238433.0296073179 3.4237206 -7355.1421
+238434.0296074222 3.4236813 -7354.1577
+238435.0296075265 3.423563 -7354.3545
+238436.0296076308 3.423563 -7353.5669
+238437.0296077351 3.4235237 -7354.3545
+238438.0296078394 3.423563 -7354.5513
+238439.0296079437 3.4235237 -7354.7485
+238440.029608048 3.4234056 -7353.9609
+238441.0296081523 3.4234056 -7354.1577
+238442.0296082566 3.423327 -7355.1421
+238443.029608361 3.4233663 -7354.5513
+238444.0296084653 3.423445 -7354.3545
+238445.0296085696 3.423445 -7354.1577
+238446.0296086739 3.4232481 -7353.7646
+238447.0296087782 3.4232481 -7354.1577
+238448.0296088825 3.4231694 -7355.1421
+238449.0296089868 3.4230514 -7353.9609
+238450.0296090911 3.4230514 -7353.9609
+238451.0296091954 3.423012 -7354.5513
+238452.0296092997 3.4228544 -7355.7324
+238453.029609404 3.4228151 -7353.7646
+238454.0296095083 3.4227364 -7354.3545
+238455.0296096127 3.4226182 -7354.7485
+238456.029609717 3.4224608 -7353.5669
+238457.0296098213 3.4222639 -7354.1577
+238458.0296099256 3.4222245 -7354.1577
+238459.0296100299 3.4220672 -7354.1577
+238460.0296101342 3.4220672 -7354.1577
+238461.0296102385 3.4219489 -7353.7646
+238462.0296103428 3.4217126 -7354.1577
+238463.0296104471 3.4216733 -7354.3545
+238464.0296105514 3.4215553 -7354.5513
+238465.0296106557 3.4214766 -7353.7646
+238466.02961076 3.4214373 -7354.3545
+238467.0296108644 3.4213977 -7354.1577
+238468.0296109687 3.421201 -7353.3706
+238469.029611073 3.4211223 -7354.7485
+238470.0296111773 3.4211223 -7354.1577
+238471.0296112816 3.4209647 -7354.1577
+238472.0296113859 3.4209647 -7353.9609
+238473.0296114902 3.4207678 -7353.3706
+238474.0296115945 3.4209254 -7354.7485
+238475.0296116988 3.4209254 -7354.9453
+238476.0296118031 3.4209254 -7354.1577
+238477.0296119074 3.4208467 -7353.9609
+238478.0296120117 3.4208467 -7354.5513
+238479.0296121161 3.4208074 -7354.9453
+238480.0296122204 3.4206498 -7353.9609
+238481.0296123247 3.4206891 -7354.3545
+238482.029612429 3.4204528 -7355.1421
+238483.0296125333 3.4204528 -7354.3545
+238484.0296126376 3.4204135 -7354.5513
+238485.0296127419 3.4204528 -7354.9453
+238486.0296128462 3.4204528 -7354.5513
+238487.0296129505 3.4202561 -7354.1577
+238488.0296130548 3.4202168 -7354.5513
+238489.0296131591 3.4200985 -7354.9453
+238490.0296132634 3.4200199 -7354.5513
+238491.0296133677 3.4200199 -7354.5513
+238492.0296134721 3.4199412 -7353.7646
+238493.0296135764 3.4198229 -7354.1577
+238494.0296136807 3.4199412 -7353.9609
+238495.029613785 3.4199412 -7353.9609
+238496.0296138893 3.4198229 -7354.3545
+238497.0296139936 3.4198623 -7354.5513
+238498.0296140979 3.4199018 -7354.3545
+238499.0296142022 3.4198623 -7354.3545
+238500.0296143065 3.4198623 -7354.1577
+238501.0296144108 3.4199412 -7354.1577
+238502.0296145151 3.4200199 -7354.1577
+238503.0296146194 3.4199018 -7355.1421
+238504.0296147238 3.4199805 -7353.7646
+238505.0296148281 3.4199412 -7354.7485
+238506.0296149324 3.4198229 -7353.7646
+238507.0296150367 3.4198229 -7353.5669
+238508.029615141 3.4197836 -7355.1421
+238509.0296152453 3.4197836 -7353.9609
+238510.0296153496 3.4197443 -7353.5669
+238511.0296154539 3.4196262 -7354.1577
+238512.0296155582 3.4195869 -7354.1577
+238513.0296156625 3.4195473 -7353.7646
+238514.0296157668 3.419508 -7353.9609
+238515.0296158711 3.41939 -7354.7485
+238516.0296159755 3.4193506 -7354.1577
+238517.0296160798 3.419193 -7354.1577
+238518.0296161841 3.419193 -7354.7485
+238519.0296162884 3.4189174 -7354.3545
+238520.0296163927 3.4189174 -7354.1577
+238521.029616497 3.4187994 -7354.3545
+238522.0296166013 3.4185238 -7354.3545
+238523.0296167056 3.4187207 -7352.7803
+238524.0296168099 3.418642 -7353.9609
+238525.0296169142 3.4185631 -7353.9609
+238526.0296170185 3.4184844 -7353.5669
+238527.0296171228 3.4185238 -7354.3545
+238528.0296172271 3.4184844 -7354.3545
+238529.0296173315 3.4182482 -7354.1577
+238530.0296174358 3.4182875 -7353.9609
+238531.0296175401 3.4182088 -7354.3545
+238532.0296176444 3.4180119 -7353.9609
+238533.0296177487 3.4180119 -7354.3545
+238534.029617853 3.4178939 -7354.1577
+238535.0296179573 3.4178545 -7354.5513
+238536.0296180616 3.417697 -7353.1738
+238537.0296181659 3.4178545 -7354.1577
+238538.0296182702 3.4177759 -7354.1577
+238539.0296183745 3.4177365 -7354.7485
+238540.0296184788 3.417697 -7354.5513
+238541.0296185832 3.4176183 -7354.1577
+238542.0296186875 3.4175396 -7353.9609
+238543.0296187918 3.4175396 -7354.3545
+238544.0296188961 3.4175003 -7354.3545
+238545.0296190004 3.4174216 -7354.5513
+238546.0296191047 3.4175789 -7354.3545
+238547.029619209 3.4175003 -7353.7646
+238548.0296193133 3.4174216 -7353.7646
+238549.0296194176 3.4174609 -7354.1577
+238550.0296195219 3.4173427 -7354.1577
+238551.0296196262 3.4173427 -7354.5513
+238552.0296197305 3.4173033 -7353.9609
+238553.0296198349 3.4171066 -7353.5669
+238554.0296199392 3.4170277 -7354.3545
+238555.0296200435 3.4169097 -7354.1577
+238556.0296201478 3.4167521 -7354.1577
+238557.0296202521 3.4167521 -7353.5669
+238558.0296203564 3.4165554 -7354.9453
+238559.0296204607 3.4164371 -7354.3545
+238560.029620565 3.4164371 -7354.1577
+238561.0296206693 3.4163585 -7354.7485
+238562.0296207736 3.4163191 -7354.7485
+238563.0296208779 3.4162798 -7353.5669
+238564.0296209822 3.4162011 -7354.9453
+238565.0296210865 3.4160829 -7354.3545
+238566.0296211909 3.4159255 -7353.7646
+238567.0296212952 3.4158072 -7354.7485
+238568.0296213995 3.4158072 -7354.9453
+238569.0296215038 3.4156892 -7354.1577
+238570.0296216081 3.4155712 -7354.5513
+238571.0296217124 3.4155712 -7354.3545
+238572.0296218167 3.4154136 -7354.5513
+238573.029621921 3.415138 -7354.5513
+238574.0296220253 3.4152563 -7355.1421
+238575.0296221296 3.4152167 -7354.3545
+238576.0296222339 3.4150593 -7354.1577
+238577.0296223382 3.41502 -7354.3545
+238578.0296224426 3.4149017 -7354.5513
+238579.0296225469 3.4149017 -7353.7646
+238580.0296226512 3.4147837 -7354.7485
+238581.0296227555 3.4145868 -7353.9609
+238582.0296228598 3.4146261 -7353.7646
+238583.0296229641 3.4145081 -7354.5513
+238584.0296230684 3.4143112 -7354.5513
+238585.0296231727 3.4142718 -7354.7485
+238586.029623277 3.4142325 -7354.9453
+238587.0296233813 3.4141538 -7353.1738
+238588.0296234856 3.4140358 -7354.3545
+238589.0296235899 3.4139962 -7354.9453
+238590.0296236943 3.4140358 -7354.3545
+238591.0296237986 3.4139569 -7354.9453
+238592.0296239029 3.4139962 -7354.3545
+238593.0296240072 3.4141538 -7354.7485
+238594.0296241115 3.4140751 -7354.3545
+238595.0296242158 3.4141538 -7354.5513
+238596.0296243201 3.4141932 -7354.3545
+238597.0296244244 3.4141932 -7354.7485
+238598.0296245287 3.4140751 -7354.9453
+238599.029624633 3.4141538 -7354.1577
+238600.0296247373 3.4139962 -7353.9609
+238601.0296248416 3.4139569 -7355.1421
+238602.029624946 3.4137602 -7354.3545
+238603.0296250503 3.4138782 -7354.3545
+238604.0296251546 3.4137208 -7354.5513
+238605.0296252589 3.4136813 -7354.1577
+238606.0296253632 3.4135633 -7353.9609
+238607.0296254675 3.4135633 -7355.1421
+238608.0296255718 3.4134059 -7354.1577
+238609.0296256761 3.4132483 -7354.3545
+238610.0296257804 3.4131303 -7354.3545
+238611.0296258847 3.413012 -7355.5352
+238612.029625989 3.413012 -7354.1577
+238613.0296260933 3.4129727 -7354.3545
+238614.0296261976 3.4128153 -7354.3545
+238615.029626302 3.4128153 -7353.7646
+238616.0296264063 3.4126184 -7354.3545
+238617.0296265106 3.4126577 -7354.5513
+238618.0296266149 3.4125004 -7353.7646
+238619.0296267192 3.4124608 -7354.7485
+238620.0296268235 3.4125004 -7354.3545
+238621.0296269278 3.4125004 -7354.3545
+238622.0296270321 3.4125004 -7353.7646
+238623.0296271364 3.4124215 -7354.7485
+238624.0296272407 3.4123428 -7353.7646
+238625.029627345 3.4123034 -7354.5513
+238626.0296274493 3.4123034 -7353.5669
+238627.0296275537 3.4121065 -7354.7485
+238628.029627658 3.4121065 -7354.5513
+238629.0296277623 3.4121459 -7353.9609
+238630.0296278666 3.4120672 -7353.9609
+238631.0296279709 3.4119492 -7354.7485
+238632.0296280752 3.4119885 -7353.3706
+238633.0296281795 3.4118309 -7353.9609
+238634.0296282838 3.4118309 -7354.3545
+238635.0296283881 3.4117916 -7354.1577
+238636.0296284924 3.4117916 -7353.9609
+238637.0296285967 3.4116735 -7354.1577
+238638.029628701 3.4115555 -7353.9609
+238639.0296288054 3.4113979 -7354.3545
+238640.0296289097 3.4113586 -7354.5513
+238641.029629014 3.4112799 -7355.1421
+238642.0296291183 3.411201 -7354.3545
+238643.0296292226 3.4111617 -7353.9609
+238644.0296293269 3.4111223 -7354.1577
+238645.0296294312 3.410965 -7354.5513
+238646.0296295355 3.410886 -7354.1577
+238647.0296296398 3.4107287 -7354.5513
+238648.0296297441 3.4106894 -7354.1577
+238649.0296298484 3.41065 -7354.5513
+238650.0296299527 3.4104137 -7354.1577
+238651.029630057 3.4102955 -7355.1421
+238652.0296301614 3.4102955 -7353.5669
+238653.0296302657 3.4103351 -7354.5513
+238654.02963037 3.4102955 -7354.7485
+238655.0296304743 3.4102955 -7353.7646
+238656.0296305786 3.4102955 -7353.5669
+238657.0296306829 3.4102168 -7354.7485
+238658.0296307872 3.4102955 -7354.7485
+238659.0296308915 3.4102955 -7353.7646
+238660.0296309958 3.4102955 -7354.7485
+238661.0296311001 3.4102168 -7353.9609
+238662.0296312044 3.4101381 -7355.1421
+238663.0296313087 3.4100595 -7353.7646
+238664.0296314131 3.4100595 -7354.3545
+238665.0296315174 3.4099805 -7353.5669
+238666.0296316217 3.4099019 -7355.1421
+238667.029631726 3.4098625 -7354.1577
+238668.0296318303 3.4098232 -7354.1577
+238669.0296319346 3.4098232 -7354.9453
+238670.0296320389 3.4097838 -7354.5513
+238671.0296321432 3.4097445 -7353.9609
+238672.0296322475 3.4097445 -7354.5513
+238673.0296323518 3.4097445 -7353.9609
+238674.0296324561 3.4097445 -7354.1577
+238675.0296325604 3.4098232 -7353.9609
+238676.0296326648 3.4096656 -7354.7485
+238677.0296327691 3.4097838 -7354.5513
+238678.0296328734 3.4097052 -7354.1577
+238679.0296329777 3.4095476 -7353.5669
+238680.029633082 3.4095476 -7354.5513
+238681.0296331863 3.4095476 -7355.7324
+238682.0296332906 3.4093506 -7353.9609
+238683.0296333949 3.409075 -7355.1421
+238684.0296334992 3.4089963 -7353.9609
+238685.0296336035 3.4089177 -7354.5513
+238686.0296337078 3.4088783 -7354.1577
+238687.0296338121 3.4086027 -7354.9453
+238688.0296339164 3.4084847 -7353.9609
+238689.0296340208 3.4085634 -7354.5513
+238690.0296341251 3.4083664 -7353.3706
+238691.0296342294 3.4083271 -7354.1577
+238692.0296343337 3.4082091 -7354.5513
+238693.029634438 3.4081697 -7354.7485
+238694.0296345423 3.4080908 -7354.1577
+238695.0296346466 3.4080908 -7354.1577
+238696.0296347509 3.4080122 -7354.5513
+238697.0296348552 3.4079728 -7354.5513
+238698.0296349595 3.4078941 -7353.9609
+238699.0296350638 3.4078941 -7354.1577
+238700.0296351681 3.4077759 -7355.1421
+238701.0296352725 3.4077365 -7354.7485
+238702.0296353768 3.4076972 -7354.5513
+238703.0296354811 3.4077759 -7354.1577
+238704.0296355854 3.4076972 -7354.3545
+238705.0296356897 3.4076972 -7354.9453
+238706.029635794 3.4076579 -7354.9453
+238707.0296358983 3.4077759 -7354.3545
+238708.0296360026 3.4075003 -7354.1577
+238709.0296361069 3.4075396 -7354.1577
+238710.0296362112 3.4075792 -7353.7646
+238711.0296363155 3.4073429 -7354.9453
+238712.0296364198 3.4073036 -7354.7485
+238713.0296365242 3.4073036 -7354.9453
+238714.0296366285 3.4072247 -7354.3545
+238715.0296367328 3.4073036 -7354.3545
+238716.0296368371 3.4072642 -7354.9453
+238717.0296369414 3.4071066 -7354.3545
+238718.0296370457 3.4071853 -7354.7485
+238719.02963715 3.4069493 -7355.3384
+238720.0296372543 3.407028 -7354.1577
+238721.0296373586 3.406831 -7354.9453
+238722.0296374629 3.406713 -7354.7485
+238723.0296375672 3.4067917 -7354.1577
+238724.0296376715 3.4067917 -7355.1421
+238725.0296377759 3.4067523 -7354.7485
+238726.0296378802 3.4066343 -7353.3706
+238727.0296379845 3.4065554 -7354.5513
+238728.0296380888 3.4063981 -7353.9609
+238729.0296381931 3.4062798 -7354.5513
+238730.0296382974 3.4061224 -7354.1577
+238731.0296384017 3.4061618 -7354.3545
+238732.029638506 3.4060438 -7354.1577
+238733.0296386103 3.4059649 -7354.1577
+238734.0296387146 3.4058862 -7353.7646
+238735.0296388189 3.4058075 -7353.7646
+238736.0296389232 3.4057682 -7354.5513
+238737.0296390275 3.4055712 -7355.1421
+238738.0296391319 3.4053349 -7354.9453
+238739.0296392362 3.4052563 -7353.9609
+238740.0296393405 3.4052956 -7354.9453
+238741.0296394448 3.4052563 -7354.3545
+238742.0296395491 3.4052956 -7354.3545
+238743.0296396534 3.4050593 -7353.7646
+238744.0296397577 3.4049807 -7353.9609
+238745.029639862 3.4050593 -7354.5513
+238746.0296399663 3.4050593 -7355.3384
+238747.0296400706 3.4048626 -7354.1577
+238748.0296401749 3.4048233 -7354.9453
+238749.0296402792 3.404784 -7354.3545
+238750.0296403836 3.404705 -7354.3545
+238751.0296404879 3.4046657 -7353.9609
+238752.0296405922 3.4045477 -7353.9609
+238753.0296406965 3.404469 -7353.9609
+238754.0296408008 3.4045084 -7354.3545
+238755.0296409051 3.4042721 -7354.3545
+238756.0296410094 3.4042721 -7355.1421
+238757.0296411137 3.4041541 -7354.7485
+238758.029641218 3.4040358 -7354.3545
+238759.0296413223 3.4038785 -7353.7646
+238760.0296414266 3.4037995 -7354.3545
+238761.0296415309 3.4037602 -7354.3545
+238762.0296416353 3.4037209 -7354.7485
+238763.0296417396 3.4036422 -7354.5513
+238764.0296418439 3.4036028 -7354.9453
+238765.0296419482 3.4034452 -7354.1577
+238766.0296420525 3.4033666 -7354.9453
+238767.0296421568 3.4034846 -7353.7646
+238768.0296422611 3.4033272 -7353.7646
+238769.0296423654 3.403209 -7354.1577
+238770.0296424697 3.403209 -7354.3545
+238771.029642574 3.4031696 -7354.3545
+238772.0296426783 3.403091 -7354.9453
+238773.0296427826 3.403091 -7355.3384
+238774.0296428869 3.403209 -7354.7485
+238775.0296429913 3.4031303 -7353.9609
+238776.0296430956 3.4030516 -7353.7646
+238777.0296431999 3.4031303 -7354.1577
+238778.0296433042 3.403209 -7353.9609
+238779.0296434085 3.4031696 -7354.7485
+238780.0296435128 3.403091 -7354.3545
+238781.0296436171 3.4029336 -7354.3545
+238782.0296437214 3.402894 -7353.7646
+238783.0296438257 3.402776 -7355.1421
+238784.02964393 3.4027367 -7354.3545
+238785.0296440343 3.402658 -7354.7485
+238786.0296441386 3.4025791 -7354.3545
+238787.029644243 3.4024217 -7354.7485
+238788.0296443473 3.402343 -7354.9453
+238789.0296444516 3.4021854 -7354.1577
+238790.0296445559 3.4021854 -7354.1577
+238791.0296446602 3.4022641 -7354.5513
+238792.0296447645 3.4022248 -7354.5513
+238793.0296448688 3.4020281 -7354.9453
+238794.0296449731 3.4019492 -7354.1577
+238795.0296450774 3.4017131 -7353.9609
+238796.0296451817 3.4015555 -7353.9609
+238797.029645286 3.4014769 -7354.7485
+238798.0296453903 3.4012406 -7353.9609
+238799.0296454947 3.4011619 -7355.5352
+238800.029645599 3.4010043 -7354.3545
+238801.0296457033 3.4009256 -7353.5669
+238802.0296458076 3.4007287 -7354.9453
+238803.0296459119 3.4004927 -7354.1577
+238804.0296460162 3.4004531 -7354.1577
+238805.0296461205 3.4004531 -7354.5513
+238806.0296462248 3.4002957 -7354.1577
+238807.0296463291 3.4001381 -7353.9609
+238808.0296464334 3.3999414 -7354.7485
+238809.0296465377 3.3999414 -7354.1577
+238810.029646642 3.3998232 -7354.5513
+238811.0296467463 3.3997445 -7354.5513
+238812.0296468507 3.3996658 -7354.3545
+238813.029646955 3.3995872 -7353.9609
+238814.0296470593 3.3995478 -7354.3545
+238815.0296471636 3.3992722 -7353.5669
+238816.0296472679 3.3993115 -7354.5513
+238817.0296473722 3.3991933 -7354.7485
+238818.0296474765 3.3990359 -7354.3545
+238819.0296475808 3.3989966 -7354.1577
+238820.0296476851 3.3989573 -7354.5513
+238821.0296477894 3.3986423 -7354.1577
+238822.0296478937 3.3987603 -7354.7485
+238823.029647998 3.3985634 -7354.7485
+238824.0296481024 3.398524 -7354.3545
+238825.0296482067 3.3984454 -7354.1577
+238826.029648311 3.3984847 -7354.1577
+238827.0296484153 3.3984454 -7354.1577
+238828.0296485196 3.3983667 -7354.7485
+238829.0296486239 3.3982878 -7354.5513
+238830.0296487282 3.3980911 -7353.5669
+238831.0296488325 3.3981304 -7354.1577
+238832.0296489368 3.3979728 -7354.5513
+238833.0296490411 3.3978941 -7354.5513
+238834.0296491454 3.3977368 -7354.5513
+238835.0296492497 3.3976974 -7354.7485
+238836.0296493541 3.3975399 -7354.1577
+238837.0296494584 3.3973036 -7354.7485
+238838.0296495627 3.3971069 -7353.9609
+238839.029649667 3.3969493 -7354.3545
+238840.0296497713 3.3966737 -7354.3545
+238841.0296498756 3.396595 -7354.3545
+238842.0296499799 3.396477 -7354.5513
+238843.0296500842 3.3963194 -7354.5513
+238844.0296501885 3.396162 -7354.7485
+238845.0296502928 3.3962014 -7354.7485
+238846.0296503971 3.3959258 -7354.9453
+238847.0296505014 3.3958864 -7354.5513
+238848.0296506057 3.3957682 -7355.1421
+238849.0296507101 3.3957682 -7354.9453
+238850.0296508144 3.3957682 -7354.5513
+238851.0296509187 3.3957288 -7353.7646
+238852.029651023 3.3957288 -7354.5513
+238853.0296511273 3.3957288 -7354.3545
+238854.0296512316 3.3956108 -7354.5513
+238855.0296513359 3.3957288 -7353.9609
+238856.0296514402 3.3954926 -7354.5513
+238857.0296515445 3.3954926 -7354.7485
+238858.0296516488 3.3956108 -7354.1577
+238859.0296517531 3.3956108 -7354.3545
+238860.0296518574 3.3956895 -7354.1577
+238861.0296519618 3.3956895 -7354.1577
+238862.0296520661 3.3955321 -7354.1577
+238863.0296521704 3.3954139 -7353.9609
+238864.0296522747 3.3954139 -7354.3545
+238865.029652379 3.3953745 -7354.1577
+238866.0296524833 3.3953745 -7354.5513
+238867.0296525876 3.3954926 -7354.7485
+238868.0296526919 3.3954139 -7353.9609
+238869.0296527962 3.3953745 -7354.1577
+238870.0296529005 3.3954139 -7354.9453
+238871.0296530048 3.3953745 -7354.1577
+238872.0296531091 3.3953745 -7354.9453
+238873.0296532135 3.3954139 -7355.1421
+238874.0296533178 3.3951776 -7353.9609
+238875.0296534221 3.3950989 -7354.5513
+238876.0296535264 3.3949809 -7353.9609
+238877.0296536307 3.394784 -7354.3545
+238878.029653735 3.3945477 -7353.7646
+238879.0296538393 3.3944297 -7354.7485
+238880.0296539436 3.3944297 -7354.3545
+238881.0296540479 3.394351 -7354.5513
+238882.0296541522 3.3943117 -7354.5513
+238883.0296542565 3.3943903 -7354.9453
+238884.0296543608 3.3943117 -7355.1421
+238885.0296544652 3.3942721 -7354.9453
+238886.0296545695 3.3941541 -7354.1577
+238887.0296546738 3.3940754 -7354.1577
+238888.0296547781 3.3941147 -7354.1577
+238889.0296548824 3.3940361 -7354.3545
+238890.0296549867 3.3940361 -7353.9609
+238891.029655091 3.3940754 -7354.5513
+238892.0296551953 3.3939178 -7354.7485
+238893.0296552996 3.3937998 -7354.1577
+238894.0296554039 3.3936818 -7355.5352
+238895.0296555082 3.3936422 -7355.1421
+238896.0296556125 3.3935635 -7355.1421
+238897.0296557168 3.3934848 -7354.3545
+238898.0296558212 3.3934848 -7355.1421
+238899.0296559255 3.3933666 -7355.1421
+238900.0296560298 3.3932879 -7354.3545
+238901.0296561341 3.3931305 -7353.9609
+238902.0296562384 3.3930123 -7354.3545
+238903.0296563427 3.3929729 -7353.5669
+238904.029656447 3.3928156 -7354.5513
+238905.0296565513 3.392658 -7354.1577
+238906.0296566556 3.39254 -7354.1577
+238907.0296567599 3.3924217 -7354.7485
+238908.0296568642 3.392343 -7354.1577
+238909.0296569685 3.3921463 -7354.9453
+238910.0296570729 3.3920674 -7354.5513
+238911.0296571772 3.3922644 -7354.7485
+238912.0296572815 3.3923037 -7353.7646
+238913.0296573858 3.3920674 -7354.3545
+238914.0296574901 3.3921463 -7354.3545
+238915.0296575944 3.3920281 -7354.5513
+238916.0296576987 3.3920674 -7354.3545
+238917.029657803 3.3919101 -7354.7485
+238918.0296579073 3.3919494 -7353.7646
+238919.0296580116 3.3919101 -7355.9292
+238920.0296581159 3.3914375 -7353.9609
+238921.0296582202 3.3914769 -7355.1421
+238922.0296583246 3.3914769 -7354.9453
+238923.0296584289 3.3914769 -7354.1577
+238924.0296585332 3.3914375 -7354.5513
+238925.0296586375 3.3912408 -7354.9453
+238926.0296587418 3.3912408 -7354.5513
+238927.0296588461 3.3910439 -7354.3545
+238928.0296589504 3.3908863 -7354.1577
+238929.0296590547 3.390729 -7354.9453
+238930.029659159 3.3906109 -7355.1421
+238931.0296592633 3.3904927 -7354.7485
+238932.0296593676 3.3906503 -7354.9453
+238933.0296594719 3.390414 -7355.1421
+238934.0296595762 3.390414 -7353.9609
+238935.0296596806 3.3901777 -7354.3545
+238936.0296597849 3.3900204 -7354.5513
+238937.0296598892 3.3898628 -7354.9453
+238938.0296599935 3.3897448 -7353.9609
+238939.0296600978 3.3895085 -7353.7646
+238940.0296602021 3.3893116 -7354.3545
+238941.0296603064 3.3890359 -7354.5513
+238942.0296604107 3.3889966 -7354.9453
+238943.029660515 3.3887606 -7354.1577
+238944.0296606193 3.3887606 -7354.3545
+238945.0296607236 3.388603 -7353.9609
+238946.0296608279 3.388406 -7353.7646
+238947.0296609323 3.3882487 -7354.3545
+238948.0296610366 3.3880911 -7353.9609
+238949.0296611409 3.3880517 -7353.5669
+238950.0296612452 3.3877368 -7354.1577
+238951.0296613495 3.3877761 -7355.1421
+238952.0296614538 3.3875005 -7353.5669
+238953.0296615581 3.3871856 -7354.5513
+238954.0296616624 3.3871069 -7354.3545
+238955.0296617667 3.3869889 -7354.1577
+238956.029661871 3.3870282 -7354.7485
+238957.0296619753 3.3869889 -7355.1421
+238958.0296620796 3.3869102 -7354.1577
+238959.029662184 3.3869889 -7354.7485
+238960.0296622883 3.3870282 -7353.5669
+238961.0296623926 3.3870282 -7354.3545
+238962.0296624969 3.3870676 -7353.3706
+238963.0296626012 3.3870676 -7353.9609
+238964.0296627055 3.3870282 -7354.9453
+238965.0296628098 3.3871462 -7354.5513
+238966.0296629141 3.3871856 -7354.7485
+238967.0296630184 3.3871462 -7354.3545
+238968.0296631227 3.3870676 -7354.3545
+238969.029663227 3.3869495 -7353.9609
+238970.0296633313 3.3869889 -7354.5513
+238971.0296634356 3.3870282 -7353.9609
+238972.02966354 3.3869495 -7353.3706
+238973.0296636443 3.3866739 -7354.7485
+238974.0296637486 3.3865163 -7353.5669
+238975.0296638529 3.3865163 -7354.7485
+238976.0296639572 3.3863196 -7354.5513
+238977.0296640615 3.3862014 -7354.7485
+238978.0296641658 3.386044 -7355.1421
+238979.0296642701 3.3861227 -7354.5513
+238980.0296643744 3.3859651 -7352.9771
+238981.0296644787 3.3858864 -7354.7485
+238982.029664583 3.3859258 -7354.3545
+238983.0296646873 3.3858078 -7354.9453
+238984.0296647917 3.3857684 -7354.1577
+238985.029664896 3.3857291 -7354.3545
+238986.0296650003 3.3856108 -7353.3706
+238987.0296651046 3.3856502 -7354.3545
+238988.0296652089 3.3855715 -7355.1421
+238989.0296653132 3.3855715 -7354.1577
+238990.0296654175 3.3855715 -7354.9453
+238991.0296655218 3.3856108 -7354.9453
+238992.0296656261 3.3857291 -7354.7485
+238993.0296657304 3.3856897 -7354.3545
+238994.0296658347 3.3857684 -7354.7485
+238995.029665939 3.3858078 -7354.3545
+238996.0296660434 3.3858864 -7353.9609
+238997.0296661477 3.3858471 -7354.1577
+238998.029666252 3.3858078 -7353.9609
+238999.0296663563 3.3856502 -7354.7485
+239000.0296664606 3.3855321 -7354.7485
+239001.0296665649 3.3854928 -7354.7485
+239002.0296666692 3.3855321 -7354.3545
+239003.0296667735 3.3854141 -7354.5513
+239004.0296668778 3.3853352 -7354.3545
+239005.0296669821 3.3852565 -7354.3545
+239006.0296670864 3.3852959 -7354.3545
+239007.0296671907 3.3851385 -7354.3545
+239008.0296672951 3.3851779 -7353.5669
+239009.0296673994 3.3851385 -7354.5513
+239010.0296675037 3.3849416 -7354.5513
+239011.029667608 3.3849809 -7354.9453
+239012.0296677123 3.3848629 -7354.5513
+239013.0296678166 3.3847842 -7354.5513
+239014.0296679209 3.3847053 -7354.9453
+239015.0296680252 3.3845086 -7354.1577
+239016.0296681295 3.3843904 -7354.3545
+239017.0296682338 3.3842723 -7354.5513
+239018.0296683381 3.384233 -7354.1577
+239019.0296684424 3.3841543 -7355.1421
+239020.0296685467 3.3840361 -7354.5513
+239021.0296686511 3.3839967 -7353.7646
+239022.0296687554 3.3838394 -7354.3545
+239023.0296688597 3.3837998 -7354.5513
+239024.029668964 3.3836424 -7354.9453
+239025.0296690683 3.3836818 -7353.5669
+239026.0296691726 3.3836818 -7353.9609
+239027.0296692769 3.3834455 -7355.3384
+239028.0296693812 3.3832881 -7354.3545
+239029.0296694855 3.3831699 -7354.7485
+239030.0296695898 3.3830125 -7354.3545
+239031.0296696941 3.3828549 -7354.5513
+239032.0296697984 3.3826582 -7354.5513
+239033.0296699028 3.38254 -7354.3545
+239034.0296700071 3.3825006 -7353.9609
+239035.0296701114 3.3823826 -7355.3384
+239036.0296702157 3.3823826 -7354.5513
+239037.02967032 3.3823433 -7354.1577
+239038.0296704243 3.3823433 -7354.5513
+239039.0296705286 3.3823826 -7354.7485
+239040.0296706329 3.3822644 -7353.9609
+239041.0296707372 3.3823433 -7354.7485
+239042.0296708415 3.382304 -7354.3545
+239043.0296709458 3.3823433 -7354.9453
+239044.0296710501 3.3823433 -7353.7646
+239045.0296711545 3.3823826 -7354.9453
+239046.0296712588 3.3823433 -7354.5513
+239047.0296713631 3.382225 -7354.5513
+239048.0296714674 3.3820283 -7354.1577
+239049.0296715717 3.381989 -7355.3384
+239050.029671676 3.3819101 -7354.3545
+239051.0296717803 3.3818314 -7353.5669
+239052.0296718846 3.3817921 -7354.7485
+239053.0296719889 3.3819101 -7354.5513
+239054.0296720932 3.3819101 -7353.9609
+239055.0296721975 3.3820677 -7354.7485
+239056.0296723018 3.382225 -7354.1577
+239057.0296724061 3.3821857 -7354.1577
+239058.0296725105 3.3822644 -7353.7646
+239059.0296726148 3.382107 -7353.9609
+239060.0296727191 3.3819494 -7354.1577
+239061.0296728234 3.3817921 -7354.7485
+239062.0296729277 3.3816741 -7353.3706
+239063.029673032 3.3817134 -7353.5669
+239064.0296731363 3.3816345 -7353.9609
+239065.0296732406 3.3815951 -7355.1421
+239066.0296733449 3.3813195 -7353.5669
+239067.0296734492 3.3812408 -7354.5513
+239068.0296735535 3.3810441 -7353.5669
+239069.0296736578 3.3809259 -7354.1577
+239070.0296737622 3.3809652 -7354.7485
+239071.0296738665 3.3810441 -7353.9609
+239072.0296739708 3.3810441 -7353.9609
+239073.0296740751 3.3810441 -7354.3545
+239074.0296741794 3.3808472 -7354.1577
+239075.0296742837 3.3804929 -7354.5513
+239076.029674388 3.380296 -7353.9609
+239077.0296744923 3.379863 -7354.5513
+239078.0296745966 3.3797054 -7354.7485
+239079.0296747009 3.3797448 -7354.3545
+239080.0296748052 3.3797448 -7354.5513
+239081.0296749095 3.3796661 -7354.1577
+239082.0296750139 3.3798237 -7354.5513
+239083.0296751182 3.3800597 -7354.7485
+239084.0296752225 3.379981 -7354.3545
+239085.0296753268 3.3799024 -7355.1421
+239086.0296754311 3.3797841 -7353.7646
+239087.0296755354 3.3796268 -7353.9609
+239088.0296756397 3.3796268 -7354.1577
+239089.029675744 3.3796268 -7353.9609
+239090.0296758483 3.3795874 -7354.5513
+239091.0296759526 3.3796268 -7354.9453
+239092.0296760569 3.3796661 -7354.1577
+239093.0296761612 3.3796661 -7354.5513
+239094.0296762655 3.3796268 -7354.1577
+239095.0296763699 3.3795087 -7354.1577
+239096.0296764742 3.3795087 -7354.3545
+239097.0296765785 3.3795087 -7354.9453
+239098.0296766828 3.3795087 -7355.1421
+239099.0296767871 3.3793511 -7354.3545
+239100.0296768914 3.3791542 -7355.3384
+239101.0296769957 3.3787999 -7353.9609
+239102.0296771 3.3786819 -7354.5513
+239103.0296772043 3.3786032 -7354.7485
+239104.0296773086 3.3784456 -7355.1421
+239105.0296774129 3.37817 -7353.7646
+239106.0296775172 3.3782094 -7354.1577
+239107.0296776216 3.378052 -7354.7485
+239108.0296777259 3.3780127 -7354.7485
+239109.0296778302 3.3779337 -7353.5669
+239110.0296779345 3.3779337 -7353.9609
+239111.0296780388 3.3779337 -7353.9609
+239112.0296781431 3.3779337 -7354.9453
+239113.0296782474 3.3778551 -7353.9609
+239114.0296783517 3.3777764 -7354.1577
+239115.029678456 3.3776977 -7355.5352
+239116.0296785603 3.3775401 -7354.5513
+239117.0296786646 3.3772645 -7354.3545
+239118.0296787689 3.3773434 -7354.3545
+239119.0296788733 3.3771465 -7354.5513
+239120.0296789776 3.3770282 -7354.1577
+239121.0296790819 3.3769102 -7353.9609
+239122.0296791862 3.3768709 -7354.3545
+239123.0296792905 3.3765953 -7354.1577
+239124.0296793948 3.3766346 -7354.1577
+239125.0296794991 3.3764772 -7354.3545
+239126.0296796034 3.376359 -7354.1577
+239127.0296797077 3.3762803 -7354.7485
+239128.029679812 3.3762016 -7354.3545
+239129.0296799163 3.3762016 -7354.7485
+239130.0296800206 3.3760047 -7354.3545
+239131.029680125 3.376241 -7353.5669
+239132.0296802293 3.376241 -7354.1577
+239133.0296803336 3.3763196 -7354.7485
+239134.0296804379 3.3763196 -7354.3545
+239135.0296805422 3.3764772 -7353.9609
+239136.0296806465 3.3766739 -7354.1577
+239137.0296807508 3.3766346 -7354.7485
+239138.0296808551 3.3766346 -7354.5513
+239139.0296809594 3.3765559 -7354.3545
+239140.0296810637 3.3764379 -7354.1577
+239141.029681168 3.3765953 -7353.9609
+239142.0296812723 3.3765166 -7354.3545
+239143.0296813766 3.3765953 -7354.3545
+239144.029681481 3.3765559 -7353.9609
+239145.0296815853 3.3765559 -7354.1577
+239146.0296816896 3.3765166 -7354.5513
+239147.0296817939 3.3765559 -7354.7485
+239148.0296818982 3.3765559 -7354.3545
+239149.0296820025 3.3764379 -7354.9453
+239150.0296821068 3.3763196 -7354.1577
+239151.0296822111 3.376241 -7355.1421
+239152.0296823154 3.3762016 -7354.3545
+239153.0296824197 3.3758867 -7354.1577
+239154.029682524 3.3757684 -7353.9609
+239155.0296826283 3.3754535 -7353.9609
+239156.0296827327 3.3753748 -7354.3545
+239157.029682837 3.3753355 -7355.3384
+239158.0296829413 3.3752568 -7354.3545
+239159.0296830456 3.3751779 -7354.5513
+239160.0296831499 3.3752174 -7354.7485
+239161.0296832542 3.3752961 -7353.3706
+239162.0296833585 3.375493 -7354.3545
+239163.0296834628 3.3756897 -7353.9609
+239164.0296835671 3.3757291 -7355.1421
+239165.0296836714 3.3757684 -7355.1421
+239166.0296837757 3.3757291 -7353.7646
+239167.02968388 3.3757684 -7353.9609
+239168.0296839844 3.3756504 -7353.9609
+239169.0296840887 3.375493 -7354.5513
+239170.029684193 3.3754535 -7354.3545
+239171.0296842973 3.3750992 -7353.9609
+239172.0296844016 3.3747449 -7353.3706
+239173.0296845059 3.3744693 -7354.1577
+239174.0296846102 3.3740757 -7354.3545
+239175.0296847145 3.3737214 -7353.5669
+239176.0296848188 3.3735638 -7354.5513
+239177.0296849231 3.3733275 -7354.7485
+239178.0296850274 3.3731701 -7354.5513
+239179.0296851317 3.3729339 -7354.7485
+239180.029685236 3.3728945 -7354.7485
+239181.0296853404 3.3728552 -7354.1577
+239182.0296854447 3.3726976 -7354.7485
+239183.029685549 3.3725796 -7354.5513
+239184.0296856533 3.3726189 -7354.7485
+239185.0296857576 3.3726189 -7354.3545
+239186.0296858619 3.3725796 -7354.5513
+239187.0296859662 3.3723433 -7354.7485
+239188.0296860705 3.372304 -7354.3545
+239189.0296861748 3.372304 -7354.3545
+239190.0296862791 3.3722646 -7354.1577
+239191.0296863834 3.3721073 -7353.7646
+239192.0296864877 3.3719497 -7353.7646
+239193.0296865921 3.3717527 -7353.9609
+239194.0296866964 3.3717134 -7354.5513
+239195.0296868007 3.3713984 -7354.5513
+239196.029686905 3.3713198 -7355.1421
+239197.0296870093 3.3711622 -7354.3545
+239198.0296871136 3.3711228 -7354.3545
+239199.0296872179 3.3711622 -7355.1421
+239200.0296873222 3.3709655 -7354.9453
+239201.0296874265 3.3710835 -7353.5669
+239202.0296875308 3.3707685 -7354.7485
+239203.0296876351 3.3706112 -7354.7485
+239204.0296877394 3.3704929 -7354.3545
+239205.0296878438 3.3703356 -7354.5513
+239206.0296879481 3.3702569 -7354.1577
+239207.0296880524 3.3699813 -7354.7485
+239208.0296881567 3.369863 -7354.1577
+239209.029688261 3.3697057 -7353.9609
+239210.0296883653 3.369863 -7354.9453
+239211.0296884696 3.3696663 -7353.3706
+239212.0296885739 3.3694301 -7355.1421
+239213.0296886782 3.3693514 -7353.9609
+239214.0296887825 3.3690758 -7353.7646
+239215.0296888868 3.3689969 -7354.7485
+239216.0296889911 3.3689575 -7354.3545
+239217.0296890954 3.3689969 -7353.9609
+239218.0296891998 3.3688788 -7354.3545
+239219.0296893041 3.3688788 -7354.3545
+239220.0296894084 3.3688395 -7354.1577
+239221.0296895127 3.3688002 -7354.9453
+239222.029689617 3.3690758 -7354.7485
+239223.0296897213 3.3689969 -7354.3545
+239224.0296898256 3.3691545 -7353.9609
+239225.0296899299 3.3689182 -7354.1577
+239226.0296900342 3.3687608 -7354.1577
+239227.0296901385 3.3685639 -7354.9453
+239228.0296902428 3.3685246 -7355.1421
+239229.0296903471 3.3684065 -7354.5513
+239230.0296904515 3.3685246 -7353.5669
+239231.0296905558 3.3686819 -7354.1577
+239232.0296906601 3.3685639 -7353.9609
+239233.0296907644 3.3683276 -7354.7485
+239234.0296908687 3.3682489 -7353.9609
+239235.029690973 3.3680127 -7353.3706
+239236.0296910773 3.3676977 -7354.1577
+239237.0296911816 3.3677764 -7354.1577
+239238.0296912859 3.3676977 -7354.5513
+239239.0296913902 3.367816 -7354.3545
+239240.0296914945 3.3677764 -7354.3545
+239241.0296915988 3.367934 -7355.5352
+239242.0296917032 3.3679733 -7354.9453
+239243.0296918075 3.3680127 -7354.7485
+239244.0296919118 3.367934 -7354.5513
+239245.0296920161 3.3677371 -7354.7485
+239246.0296921204 3.3675797 -7354.3545
+239247.0296922247 3.3675404 -7354.7485
+239248.029692329 3.3675404 -7354.3545
+239249.0296924333 3.3674614 -7354.7485
+239250.0296925376 3.3673434 -7354.3545
+239251.0296926419 3.3671072 -7354.3545
+239252.0296927462 3.3669498 -7354.5513
+239253.0296928505 3.3670285 -7354.3545
+239254.0296929548 3.3669105 -7354.9453
+239255.0296930592 3.3669105 -7354.7485
+239256.0296931635 3.3667135 -7354.3545
+239257.0296932678 3.3668315 -7353.9609
+239258.0296933721 3.3665955 -7354.1577
+239259.0296934764 3.3665166 -7355.3384
+239260.0296935807 3.3666348 -7353.7646
+239261.029693685 3.3664773 -7355.3384
+239262.0296937893 3.3664379 -7354.7485
+239263.0296938936 3.3664773 -7354.1577
+239264.0296939979 3.3663592 -7353.3706
+239265.0296941022 3.3663986 -7354.1577
+239266.0296942065 3.3663592 -7354.3545
+239267.0296943109 3.3663592 -7354.1577
+239268.0296944152 3.3663199 -7353.5669
+239269.0296945195 3.3662806 -7354.5513
+239270.0296946238 3.3662806 -7353.5669
+239271.0296947281 3.3663592 -7354.1577
+239272.0296948324 3.3662016 -7353.9609
+239273.0296949367 3.3659656 -7354.5513
+239274.029695041 3.3658473 -7353.9609
+239275.0296951453 3.3656507 -7354.5513
+239276.0296952496 3.3656507 -7354.1577
+239277.0296953539 3.36569 -7353.9609
+239278.0296954582 3.3659656 -7354.7485
+239279.0296955626 3.3661623 -7354.3545
+239280.0296956669 3.3663199 -7354.7485
+239281.0296957712 3.366241 -7354.1577
+239282.0296958755 3.3662016 -7354.3545
+239283.0296959798 3.3660443 -7354.7485
+239284.0296960841 3.3661623 -7354.9453
+239285.0296961884 3.3662016 -7353.7646
+239286.0296962927 3.3662806 -7354.5513
+239287.029696397 3.3661623 -7354.5513
+239288.0296965013 3.3660836 -7354.5513
+239289.0296966056 3.3659656 -7354.5513
+239290.0296967099 3.3657687 -7353.7646
+239291.0296968143 3.3659656 -7354.7485
+239292.0296969186 3.3659656 -7354.3545
+239293.0296970229 3.3659656 -7354.3545
+239294.0296971272 3.366241 -7353.3706
+239295.0296972315 3.3664773 -7353.7646
+239296.0296973358 3.3665955 -7354.7485
+239297.0296974401 3.3668315 -7354.7485
+239298.0296975444 3.3669891 -7353.9609
+239299.0296976487 3.3671072 -7353.9609
+239300.029697753 3.3671072 -7354.5513
+239301.0296978573 3.3672647 -7354.5513
+239302.0296979616 3.3671072 -7354.7485
+239303.0296980659 3.3668711 -7354.9453
+239304.0296981703 3.3667135 -7354.5513
+239305.0296982746 3.3666348 -7353.9609
+239306.0296983789 3.3665562 -7354.7485
+239307.0296984832 3.3666742 -7354.1577
+239308.0296985875 3.3665562 -7354.5513
+239309.0296986918 3.3664773 -7354.5513
+239310.0296987961 3.3662806 -7353.7646
+239311.0296989004 3.3659656 -7355.1421
+239312.0296990047 3.3658473 -7354.3545
+239313.029699109 3.365808 -7353.9609
+239314.0296992133 3.36569 -7354.1577
+239315.0296993176 3.3657687 -7355.3384
+239316.029699422 3.36569 -7354.1577
+239317.0296995263 3.3654931 -7354.7485
+239318.0296996306 3.3652961 -7353.5669
+239319.0296997349 3.3652174 -7354.1577
+239320.0296998392 3.3649812 -7353.7646
+239321.0296999435 3.3650601 -7354.1577
+239322.0297000478 3.3652174 -7354.7485
+239323.0297001521 3.3652174 -7354.3545
+239324.0297002564 3.3652568 -7354.1577
+239325.0297003607 3.3652961 -7354.7485
+239326.029700465 3.3652568 -7354.9453
+239327.0297005693 3.3654931 -7354.9453
+239328.0297006737 3.3655324 -7354.3545
+239329.029700778 3.3654537 -7354.3545
+239330.0297008823 3.3652174 -7354.3545
+239331.0297009866 3.3650208 -7355.1421
+239332.0297010909 3.3650208 -7354.7485
+239333.0297011952 3.3652174 -7353.7646
+239334.0297012995 3.3652961 -7353.9609
+239335.0297014038 3.365375 -7354.5513
+239336.0297015081 3.3656111 -7354.5513
+239337.0297016124 3.3656507 -7353.9609
+239338.0297017167 3.3657293 -7354.3545
+239339.029701821 3.36569 -7354.5513
+239340.0297019253 3.3656507 -7353.9609
+239341.0297020297 3.36569 -7353.9609
+239342.029702134 3.3656111 -7353.5669
+239343.0297022383 3.3655324 -7354.5513
+239344.0297023426 3.3654144 -7353.9609
+239345.0297024469 3.365375 -7354.5513
+239346.0297025512 3.3656111 -7354.7485
+239347.0297026555 3.3656111 -7354.3545
+239348.0297027598 3.3655324 -7354.9453
+239349.0297028641 3.3654144 -7354.5513
+239350.0297029684 3.3654537 -7354.1577
+239351.0297030727 3.3652961 -7355.1421
+239352.029703177 3.3650994 -7354.5513
+239353.0297032814 3.3648238 -7354.7485
+239354.0297033857 3.3646662 -7354.9453
+239355.02970349 3.3646269 -7354.5513
+239356.0297035943 3.3645482 -7354.3545
+239357.0297036986 3.3644695 -7354.5513
+239358.0297038029 3.3645089 -7354.1577
+239359.0297039072 3.3643513 -7354.5513
+239360.0297040115 3.3642726 -7354.3545
+239361.0297041158 3.3643906 -7354.9453
+239362.0297042201 3.3643513 -7354.5513
+239363.0297043244 3.3642726 -7354.1577
+239364.0297044287 3.3641546 -7354.7485
+239365.0297045331 3.3641152 -7354.5513
+239366.0297046374 3.363997 -7354.7485
+239367.0297047417 3.3637607 -7354.5513
+239368.029704846 3.3638003 -7354.1577
+239369.0297049503 3.3639576 -7354.1577
+239370.0297050546 3.3639576 -7354.1577
+239371.0297051589 3.3637607 -7354.3545
+239372.0297052632 3.363682 -7354.3545
+239373.0297053675 3.3634064 -7354.5513
+239374.0297054718 3.3631704 -7354.1577
+239375.0297055761 3.3632491 -7353.9609
+239376.0297056804 3.3631308 -7354.3545
+239377.0297057847 3.3631308 -7354.3545
+239378.0297058891 3.3630521 -7354.5513
+239379.0297059934 3.3629735 -7354.5513
+239380.0297060977 3.3625402 -7353.9609
+239381.029706202 3.3623435 -7354.9453
+239382.0297063063 3.3622649 -7354.3545
+239383.0297064106 3.3621073 -7354.7485
+239384.0297065149 3.3619499 -7353.9609
+239385.0297066192 3.3617136 -7354.1577
+239386.0297067235 3.3614774 -7354.5513
+239387.0297068278 3.3613987 -7354.9453
+239388.0297069321 3.3610837 -7354.9453
+239389.0297070364 3.3610444 -7354.5513
+239390.0297071408 3.3610048 -7354.1577
+239391.0297072451 3.3608475 -7353.9609
+239392.0297073494 3.3608475 -7354.5513
+239393.0297074537 3.3607688 -7354.5513
+239394.029707558 3.3605719 -7354.9453
+239395.0297076623 3.3604538 -7354.5513
+239396.0297077666 3.3604538 -7354.5513
+239397.0297078709 3.3604145 -7353.9609
+239398.0297079752 3.3600996 -7354.5513
+239399.0297080795 3.3599813 -7354.3545
+239400.0297081838 3.3599813 -7354.7485
+239401.0297082881 3.3598239 -7354.7485
+239402.0297083925 3.3596663 -7353.7646
+239403.0297084968 3.359627 -7354.7485
+239404.0297086011 3.3593907 -7354.5513
+239405.0297087054 3.3590758 -7354.5513
+239406.0297088097 3.3589971 -7353.7646
+239407.029708914 3.3588791 -7354.3545
+239408.0297090183 3.3586035 -7355.1421
+239409.0297091226 3.3582885 -7354.7485
+239410.0297092269 3.3580916 -7354.3545
+239411.0297093312 3.357698 -7354.7485
+239412.0297094355 3.3573041 -7354.5513
+239413.0297095398 3.3572254 -7355.3384
+239414.0297096442 3.3570287 -7353.7646
+239415.0297097485 3.3570681 -7354.5513
+239416.0297098528 3.3570287 -7355.5352
+239417.0297099571 3.3570681 -7354.1577
+239418.0297100614 3.3570681 -7354.9453
+239419.0297101657 3.3571467 -7354.3545
+239420.02971027 3.3570287 -7354.1577
+239421.0297103743 3.3571074 -7354.5513
+239422.0297104786 3.3571861 -7354.9453
+239423.0297105829 3.3572254 -7353.9609
+239424.0297106872 3.3570681 -7354.5513
+239425.0297107915 3.3572254 -7353.9609
+239426.0297108958 3.3569498 -7354.5513
+239427.0297110002 3.3569891 -7353.7646
+239428.0297111045 3.3567924 -7354.5513
+239429.0297112088 3.3567924 -7354.5513
+239430.0297113131 3.3566349 -7354.1577
+239431.0297114174 3.3564775 -7354.7485
+239432.0297115217 3.3561625 -7354.5513
+239433.029711626 3.356005 -7354.1577
+239434.0297117303 3.3559263 -7354.5513
+239435.0297118346 3.3557689 -7353.9609
+239436.0297119389 3.355572 -7354.1577
+239437.0297120432 3.355572 -7353.9609
+239438.0297121475 3.3556113 -7353.9609
+239439.0297122519 3.3554933 -7354.5513
+239440.0297123562 3.3552964 -7354.7485
+239441.0297124605 3.3551784 -7354.3545
+239442.0297125648 3.3551388 -7354.5513
+239443.0297126691 3.3551388 -7353.7646
+239444.0297127734 3.3550994 -7353.7646
+239445.0297128777 3.3548238 -7353.9609
+239446.029712982 3.3545878 -7355.1421
+239447.0297130863 3.3545485 -7354.1577
+239448.0297131906 3.3544302 -7354.1577
+239449.0297132949 3.3541152 -7354.9453
+239450.0297133992 3.3538396 -7354.7485
+239451.0297135036 3.3535247 -7353.7646
+239452.0297136079 3.353446 -7354.3545
+239453.0297137122 3.353328 -7354.3545
+239454.0297138165 3.353013 -7354.5513
+239455.0297139208 3.3529341 -7353.7646
+239456.0297140251 3.3525798 -7354.1577
+239457.0297141294 3.3521862 -7354.9453
+239458.0297142337 3.3519106 -7353.9609
+239459.029714338 3.351635 -7354.3545
+239460.0297144423 3.351438 -7354.5513
+239461.0297145466 3.3513594 -7354.5513
+239462.0297146509 3.351202 -7354.3545
+239463.0297147552 3.3513987 -7353.1738
+239464.0297148596 3.3514776 -7354.9453
+239465.0297149639 3.3515956 -7354.1577
+239466.0297150682 3.351517 -7354.9453
+239467.0297151725 3.3515563 -7354.1577
+239468.0297152768 3.3512807 -7354.3545
+239469.0297153811 3.351202 -7355.5352
+239470.0297154854 3.3510051 -7353.7646
+239471.0297155897 3.3510051 -7353.9609
+239472.029715694 3.3509657 -7354.1577
+239473.0297157983 3.3508081 -7353.9609
+239474.0297159026 3.3506114 -7355.1421
+239475.0297160069 3.3506508 -7354.3545
+239476.0297161113 3.3506114 -7354.5513
+239477.0297162156 3.3505721 -7355.1421
+239478.0297163199 3.3506114 -7354.1577
+239479.0297164242 3.3504539 -7353.9609
+239480.0297165285 3.3502572 -7353.9609
+239481.0297166328 3.3499422 -7354.5513
+239482.0297167371 3.3496666 -7354.7485
+239483.0297168414 3.3496666 -7354.3545
+239484.0297169457 3.3495483 -7353.9609
+239485.02971705 3.3495483 -7354.1577
+239486.0297171543 3.349509 -7354.1577
+239487.0297172586 3.349391 -7354.3545
+239488.029717363 3.3491154 -7354.7485
+239489.0297174673 3.3489974 -7354.3545
+239490.0297175716 3.3488004 -7354.5513
+239491.0297176759 3.3484855 -7355.3384
+239492.0297177802 3.3483672 -7354.7485
+239493.0297178845 3.3479342 -7354.5513
+239494.0297179888 3.3478556 -7353.5669
+239495.0297180931 3.347698 -7354.1577
+239496.0297181974 3.3473437 -7354.7485
+239497.0297183017 3.3467531 -7353.9609
+239498.029718406 3.3463595 -7354.7485
+239499.0297185103 3.3460052 -7354.3545
+239500.0297186146 3.3458083 -7353.9609
+239501.029718719 3.3456903 -7354.9453
+239502.0297188233 3.345572 -7354.3545
+239503.0297189276 3.345336 -7354.7485
+239504.0297190319 3.345021 -7354.3545
+239505.0297191362 3.3447847 -7353.1738
+239506.0297192405 3.3444304 -7354.7485
+239507.0297193448 3.3440762 -7354.7485
+239508.0297194491 3.3439579 -7353.9609
+239509.0297195534 3.3435249 -7355.3384
+239510.0297196577 3.3432493 -7353.7646
+239511.029719762 3.3428161 -7355.1421
+239512.0297198663 3.3426588 -7354.3545
+239513.0297199707 3.3423438 -7353.5669
+239514.029720075 3.3421862 -7355.1421
+239515.0297201793 3.3418713 -7353.3706
+239516.0297202836 3.3416352 -7354.9453
+239517.0297203879 3.3415959 -7354.7485
+239518.0297204922 3.3414383 -7354.7485
+239519.0297205965 3.341399 -7354.1577
+239520.0297207008 3.3413203 -7354.1577
+239521.0297208051 3.3412807 -7353.9609
+239522.0297209094 3.3407691 -7354.5513
+239523.0297210137 3.3405721 -7354.1577
+239524.029721118 3.3404148 -7354.1577
+239525.0297212224 3.3400209 -7354.1577
+239526.0297213267 3.3395092 -7354.1577
+239527.029721431 3.339273 -7354.7485
+239528.0297215353 3.3389974 -7354.1577
+239529.0297216396 3.3389974 -7354.7485
+239530.0297217439 3.3388004 -7354.3545
+239531.0297218482 3.3388004 -7353.9609
+239532.0297219525 3.33884 -7354.7485
+239533.0297220568 3.3387218 -7354.3545
+239534.0297221611 3.3386037 -7354.1577
+239535.0297222654 3.3383281 -7354.3545
+239536.0297223697 3.3380525 -7353.9609
+239537.0297224741 3.3376982 -7354.3545
+239538.0297225784 3.3372257 -7354.5513
+239539.0297226827 3.3369501 -7354.5513
+239540.029722787 3.3369107 -7354.5513
+239541.0297228913 3.336714 -7354.1577
+239542.0297229956 3.3366747 -7354.3545
+239543.0297230999 3.3366351 -7354.9453
+239544.0297232042 3.3363991 -7354.9453
+239545.0297233085 3.3364778 -7354.9453
+239546.0297234128 3.3362415 -7353.9609
+239547.0297235171 3.3360448 -7354.1577
+239548.0297236214 3.3358479 -7353.9609
+239549.0297237257 3.3357692 -7354.3545
+239550.0297238301 3.3357692 -7354.7485
+239551.0297239344 3.3356116 -7354.5513
+239552.0297240387 3.3354936 -7354.7485
+239553.029724143 3.335218 -7354.5513
+239554.0297242473 3.3348637 -7354.7485
+239555.0297243516 3.3345094 -7354.5513
+239556.0297244559 3.3341548 -7354.5513
+239557.0297245602 3.3339188 -7355.3384
+239558.0297246645 3.3336825 -7353.9609
+239559.0297247688 3.3335643 -7354.5513
+239560.0297248731 3.3335643 -7354.9453
+239561.0297249774 3.3334856 -7354.5513
+239562.0297250818 3.3336432 -7355.1421
+239563.0297251861 3.3336432 -7354.3545
+239564.0297252904 3.3337612 -7354.5513
+239565.0297253947 3.3335643 -7354.3545
+239566.029725499 3.3335249 -7354.3545
+239567.0297256033 3.3334069 -7354.7485
+239568.0297257076 3.3333282 -7354.3545
+239569.0297258119 3.3331707 -7354.3545
+239570.0297259162 3.3332493 -7354.5513
+239571.0297260205 3.3332493 -7354.7485
+239572.0297261248 3.3330526 -7354.1577
+239573.0297262291 3.3330526 -7354.1577
+239574.0297263335 3.3330133 -7354.1577
+239575.0297264378 3.3328557 -7353.9609
+239576.0297265421 3.3327377 -7353.5669
+239577.0297266464 3.3326194 -7354.9453
+239578.0297267507 3.3323045 -7355.3384
+239579.029726855 3.3323045 -7353.5669
+239580.0297269593 3.3321865 -7354.5513
+239581.0297270636 3.3318322 -7353.3706
+239582.0297271679 3.3317535 -7355.3384
+239583.0297272722 3.3317928 -7354.3545
+239584.0297273765 3.3317139 -7354.3545
+239585.0297274808 3.3315959 -7355.1421
+239586.0297275851 3.3314385 -7354.5513
+239587.0297276895 3.3313203 -7353.9609
+239588.0297277938 3.3311236 -7354.3545
+239589.0297278981 3.3310053 -7354.1577
+239590.0297280024 3.330966 -7354.9453
+239591.0297281067 3.3307691 -7353.9609
+239592.029728211 3.3306904 -7353.9609
+239593.0297283153 3.3305724 -7354.9453
+239594.0297284196 3.3304935 -7355.3384
+239595.0297285239 3.3306117 -7355.1421
+239596.0297286282 3.3307297 -7354.9453
+239597.0297287325 3.3307691 -7354.7485
+239598.0297288368 3.3306117 -7354.9453
+239599.0297289412 3.330533 -7354.5513
+239600.0297290455 3.3306117 -7354.9453
+239601.0297291498 3.3307297 -7353.9609
+239602.0297292541 3.3307691 -7354.1577
+239603.0297293584 3.3305724 -7353.3706
+239604.0297294627 3.330533 -7354.3545
+239605.029729567 3.3299818 -7353.5669
+239606.0297296713 3.3298635 -7354.9453
+239607.0297297756 3.3297062 -7354.7485
+239608.0297298799 3.3297062 -7354.7485
+239609.0297299842 3.3295093 -7355.7324
+239610.0297300885 3.3295882 -7354.7485
+239611.0297301929 3.3295093 -7353.9609
+239612.0297302972 3.3293912 -7353.9609
+239613.0297304015 3.3292336 -7354.3545
+239614.0297305058 3.329155 -7354.3545
+239615.0297306101 3.3291156 -7354.5513
+239616.0297307144 3.329155 -7354.1577
+239617.0297308187 3.3289976 -7354.1577
+239618.029730923 3.3289976 -7354.5513
+239619.0297310273 3.3289583 -7354.5513
+239620.0297311316 3.3289583 -7354.9453
+239621.0297312359 3.3286431 -7354.9453
+239622.0297313402 3.3285251 -7353.9609
+239623.0297314445 3.3286827 -7354.3545
+239624.0297315489 3.32884 -7355.1421
+239625.0297316532 3.3289187 -7354.7485
+239626.0297317575 3.3289187 -7354.5513
+239627.0297318618 3.3290763 -7354.5513
+239628.0297319661 3.3293519 -7354.3545
+239629.0297320704 3.3292732 -7354.5513
+239630.0297321747 3.3293519 -7353.9609
+239631.029732279 3.329037 -7353.9609
+239632.0297323833 3.3288794 -7354.1577
+239633.0297324876 3.3286827 -7353.9609
+239634.0297325919 3.3283281 -7354.5513
+239635.0297326962 3.3281314 -7354.5513
+239636.0297328006 3.3279738 -7353.9609
+239637.0297329049 3.3280132 -7354.5513
+239638.0297330092 3.3278558 -7354.9453
+239639.0297331135 3.3275802 -7354.3545
+239640.0297332178 3.3272653 -7354.3545
+239641.0297333221 3.3271866 -7353.9609
+239642.0297334264 3.3269503 -7354.5513
+239643.0297335307 3.3270683 -7354.5513
+239644.029733635 3.327029 -7354.5513
+239645.0297337393 3.3272653 -7354.1577
+239646.0297338436 3.3274622 -7355.3384
+239647.0297339479 3.3274229 -7354.1577
+239648.0297340523 3.3273439 -7354.3545
+239649.0297341566 3.3271472 -7354.3545
+239650.0297342609 3.3271079 -7353.5669
+239651.0297343652 3.3272259 -7354.3545
+239652.0297344695 3.3271079 -7354.7485
+239653.0297345738 3.3272653 -7354.3545
+239654.0297346781 3.3272259 -7355.3384
+239655.0297347824 3.3271866 -7353.9609
+239656.0297348867 3.3271079 -7354.3545
+239657.029734991 3.3270683 -7354.7485
+239658.0297350953 3.3272259 -7354.3545
+239659.0297351996 3.3270683 -7353.7646
+239660.029735304 3.3268323 -7354.7485
+239661.0297354083 3.3266354 -7355.5352
+239662.0297355126 3.3266747 -7354.3545
+239663.0297356169 3.3264384 -7354.1577
+239664.0297357212 3.3262417 -7354.7485
+239665.0297358255 3.3260055 -7353.9609
+239666.0297359298 3.3256905 -7354.5513
+239667.0297360341 3.3254542 -7353.7646
+239668.0297361384 3.3252573 -7354.7485
+239669.0297362427 3.3250999 -7354.1577
+239670.029736347 3.3250999 -7355.1421
+239671.0297364513 3.3249424 -7354.7485
+239672.0297365556 3.3250213 -7354.1577
+239673.02973666 3.3249424 -7354.5513
+239674.0297367643 3.324785 -7354.3545
+239675.0297368686 3.3247063 -7354.1577
+239676.0297369729 3.3246274 -7354.5513
+239677.0297370772 3.3244307 -7354.5513
+239678.0297371815 3.324352 -7354.5513
+239679.0297372858 3.3240371 -7354.9453
+239680.0297373901 3.3238008 -7354.1577
+239681.0297374944 3.3234465 -7354.5513
+239682.0297375987 3.3232889 -7354.7485
+239683.029737703 3.3231316 -7354.9453
+239684.0297378073 3.3229346 -7354.5513
+239685.0297379117 3.3225803 -7355.5352
+239686.029738016 3.3225803 -7354.1577
+239687.0297381203 3.3225803 -7354.9453
+239688.0297382246 3.3225803 -7354.5513
+239689.0297383289 3.322541 -7354.1577
+239690.0297384332 3.3226197 -7354.9453
+239691.0297385375 3.322659 -7354.9453
+239692.0297386418 3.3225803 -7354.5513
+239693.0297387461 3.322777 -7354.1577
+239694.0297388504 3.322659 -7354.3545
+239695.0297389547 3.3228166 -7353.9609
+239696.029739059 3.3230133 -7354.5513
+239697.0297391634 3.3230133 -7354.3545
+239698.0297392677 3.3228559 -7354.1577
+239699.029739372 3.3227377 -7354.3545
+239700.0297394763 3.3228166 -7353.5669
+239701.0297395806 3.3226984 -7353.7646
+239702.0297396849 3.3226984 -7354.7485
+239703.0297397892 3.322777 -7354.5513
+239704.0297398935 3.3226197 -7354.5513
+239705.0297399978 3.3223047 -7354.5513
+239706.0297401021 3.3219504 -7355.1421
+239707.0297402064 3.3219111 -7354.5513
+239708.0297403107 3.3218322 -7354.5513
+239709.029740415 3.3216748 -7354.3545
+239710.0297405194 3.3214386 -7354.1577
+239711.0297406237 3.3208873 -7355.1421
+239712.029740728 3.320533 -7354.5513
+239713.0297408323 3.3202968 -7354.1577
+239714.0297409366 3.3203363 -7354.3545
+239715.0297410409 3.3200214 -7354.7485
+239716.0297411452 3.3198638 -7355.1421
+239717.0297412495 3.3195095 -7354.3545
+239718.0297413538 3.3196669 -7354.7485
+239719.0297414581 3.3199031 -7353.9609
+239720.0297415624 3.3199818 -7354.3545
+239721.0297416667 3.3199031 -7354.3545
+239722.0297417711 3.3198638 -7354.9453
+239723.0297418754 3.3196669 -7353.9609
+239724.0297419797 3.3193913 -7354.3545
+239725.029742084 3.3194702 -7353.9609
+239726.0297421883 3.3196669 -7354.9453
+239727.0297422926 3.3197851 -7354.3545
+239728.0297423969 3.3198638 -7354.5513
+239729.0297425012 3.3200607 -7354.7485
+239730.0297426055 3.3201001 -7354.5513
+239731.0297427098 3.3199031 -7353.9609
+239732.0297428141 3.3196275 -7353.9609
+239733.0297429184 3.3193913 -7354.3545
+239734.0297430228 3.3192732 -7353.9609
+239735.0297431271 3.3193126 -7354.3545
+239736.0297432314 3.3192339 -7354.5513
+239737.0297433357 3.3192339 -7354.7485
+239738.02974344 3.3191159 -7353.9609
+239739.0297435443 3.3190763 -7354.5513
+239740.0297436486 3.3189976 -7355.3384
+239741.0297437529 3.3187613 -7354.3545
+239742.0297438572 3.3185647 -7354.9453
+239743.0297439615 3.3183284 -7355.3384
+239744.0297440658 3.3180921 -7354.1577
+239745.0297441701 3.3177772 -7355.5352
+239746.0297442744 3.3175409 -7353.3706
+239747.0297443788 3.3171473 -7354.5513
+239748.0297444831 3.316793 -7353.3706
+239749.0297445874 3.3168323 -7354.7485
+239750.0297446917 3.3170292 -7354.1577
+239751.029744796 3.3169899 -7354.5513
+239752.0297449003 3.316911 -7354.3545
+239753.0297450046 3.316793 -7354.9453
+239754.0297451089 3.316793 -7354.5513
+239755.0297452132 3.3165567 -7355.3384
+239756.0297453175 3.3165567 -7353.9609
+239757.0297454218 3.3164387 -7354.5513
+239758.0297455261 3.3162811 -7353.9609
+239759.0297456305 3.316045 -7354.1577
+239760.0297457348 3.3156905 -7354.7485
+239761.0297458391 3.3154938 -7353.9609
+239762.0297459434 3.3154545 -7353.9609
+239763.0297460477 3.3153756 -7354.3545
+239764.029746152 3.3150606 -7354.5513
+239765.0297462563 3.3148246 -7353.9609
+239766.0297463606 3.3147852 -7354.3545
+239767.0297464649 3.314667 -7353.9609
+239768.0297465692 3.3146276 -7354.5513
+239769.0297466735 3.3147852 -7353.7646
+239770.0297467778 3.3146276 -7354.1577
+239771.0297468822 3.3144307 -7354.1577
+239772.0297469865 3.3143914 -7353.9609
+239773.0297470908 3.314352 -7354.5513
+239774.0297471951 3.3141947 -7354.3545
+239775.0297472994 3.3140371 -7353.9609
+239776.0297474037 3.3142734 -7355.1421
+239777.029747508 3.314352 -7354.1577
+239778.0297476123 3.3143914 -7353.7646
+239779.0297477166 3.314234 -7354.5513
+239780.0297478209 3.3139977 -7354.5513
+239781.0297479252 3.3139584 -7354.5513
+239782.0297480295 3.3137615 -7353.3706
+239783.0297481338 3.3135252 -7353.7646
+239784.0297482382 3.3133678 -7353.5669
+239785.0297483425 3.3132102 -7354.3545
+239786.0297484468 3.3130922 -7354.5513
+239787.0297485511 3.3126986 -7354.1577
+239788.0297486554 3.3123837 -7354.3545
+239789.0297487597 3.3121867 -7354.3545
+239790.029748864 3.3118324 -7354.1577
+239791.0297489683 3.3117144 -7354.3545
+239792.0297490726 3.3116355 -7354.9453
+239793.0297491769 3.3115568 -7354.9453
+239794.0297492812 3.3114388 -7355.1421
+239795.0297493855 3.3114781 -7355.1421
+239796.0297494899 3.3113599 -7354.3545
+239797.0297495942 3.3112419 -7353.5669
+239798.0297496985 3.3109269 -7354.3545
+239799.0297498028 3.3106513 -7353.5669
+239800.0297499071 3.3105333 -7354.5513
+239801.0297500114 3.310297 -7354.1577
+239802.0297501157 3.3101394 -7354.7485
+239803.02975022 3.3099427 -7355.1421
+239804.0297503243 3.3099821 -7354.7485
+239805.0297504286 3.3097064 -7354.5513
+239806.0297505329 3.3096671 -7354.9453
+239807.0297506372 3.3097064 -7354.3545
+239808.0297507416 3.3098245 -7354.5513
+239809.0297508459 3.3097064 -7354.3545
+239810.0297509502 3.3093522 -7353.9609
+239811.0297510545 3.3093522 -7354.7485
+239812.0297511588 3.3091552 -7354.5513
+239813.0297512631 3.3089585 -7353.9609
+239814.0297513674 3.3088403 -7353.1738
+239815.0297514717 3.3085647 -7354.3545
+239816.029751576 3.308171 -7354.9453
+239817.0297516803 3.308053 -7354.1577
+239818.0297517846 3.3080924 -7353.7646
+239819.0297518889 3.3079348 -7353.5669
+239820.0297519933 3.3078954 -7353.9609
+239821.0297520976 3.3075018 -7354.3545
+239822.0297522019 3.3070292 -7353.7646
+239823.0297523062 3.3065569 -7355.3384
+239824.0297524105 3.30636 -7353.9609
+239825.0297525148 3.305927 -7354.1577
+239826.0297526191 3.3057694 -7354.3545
+239827.0297527234 3.3060057 -7354.1577
+239828.0297528277 3.305927 -7353.3706
+239829.029752932 3.305927 -7354.9453
+239830.0297530363 3.3060057 -7354.3545
+239831.0297531406 3.3060057 -7353.9609
+239832.0297532449 3.3060451 -7355.5352
+239833.0297533493 3.3060844 -7354.3545
+239834.0297534536 3.3060844 -7354.7485
+239835.0297535579 3.3058088 -7354.7485
+239836.0297536622 3.3056908 -7354.1577
+239837.0297537665 3.3054152 -7354.7485
+239838.0297538708 3.3052182 -7354.3545
+239839.0297539751 3.3047853 -7354.1577
+239840.0297540794 3.304431 -7353.7646
+239841.0297541837 3.3042734 -7354.5513
+239842.029754288 3.3040373 -7354.5513
+239843.0297543923 3.3038797 -7354.7485
+239844.0297544966 3.3036041 -7354.9453
+239845.029754601 3.3032498 -7354.5513
+239846.0297547053 3.3028169 -7354.5513
+239847.0297548096 3.3025806 -7354.3545
+239848.0297549139 3.3023837 -7354.3545
+239849.0297550182 3.302108 -7353.5669
+239850.0297551225 3.3018324 -7354.9453
+239851.0297552268 3.3016751 -7354.9453
+239852.0297553311 3.3015964 -7355.1421
+239853.0297554354 3.3014781 -7354.9453
+239854.0297555397 3.3013208 -7354.3545
+239855.029755644 3.3012025 -7354.5513
+239856.0297557483 3.3011239 -7354.1577
+239857.0297558527 3.3008876 -7354.5513
+239858.029755957 3.3008876 -7354.5513
+239859.0297560613 3.3007302 -7353.9609
+239860.0297561656 3.3008482 -7353.7646
+239861.0297562699 3.3009665 -7354.9453
+239862.0297563742 3.3007696 -7354.3545
+239863.0297564785 3.3006516 -7354.5513
+239864.0297565828 3.3007696 -7353.9609
+239865.0297566871 3.3007696 -7353.9609
+239866.0297567914 3.3008876 -7354.7485
+239867.0297568957 3.3008876 -7354.1577
+239868.029757 3.3009665 -7355.1421
+239869.0297571043 3.3010845 -7354.9453
+239870.0297572087 3.3010452 -7354.1577
+239871.029757313 3.3010452 -7353.5669
+239872.0297574173 3.3010058 -7354.9453
+239873.0297575216 3.3010058 -7353.9609
+239874.0297576259 3.3011239 -7354.3545
+239875.0297577302 3.3012815 -7354.5513
+239876.0297578345 3.3011239 -7354.9453
+239877.0297579388 3.3007302 -7354.9453
+239878.0297580431 3.300494 -7353.9609
+239879.0297581474 3.3002973 -7353.9609
+239880.0297582517 3.3002577 -7354.5513
+239881.029758356 3.3003759 -7354.7485
+239882.0297584604 3.3002973 -7354.5513
+239883.0297585647 3.3000216 -7353.7646
+239884.029758669 3.2999034 -7354.3545
+239885.0297587733 3.2995884 -7354.3545
+239886.0297588776 3.2993522 -7354.7485
+239887.0297589819 3.2995491 -7354.3545
+239888.0297590862 3.2995884 -7354.3545
+239889.0297591905 3.299746 -7355.1421
+239890.0297592948 3.2997067 -7354.1577
+239891.0297593991 3.2997067 -7354.5513
+239892.0297595034 3.2993128 -7353.9609
+239893.0297596077 3.2991555 -7354.5513
+239894.0297597121 3.2988799 -7354.5513
+239895.0297598164 3.2985649 -7354.7485
+239896.0297599207 3.298368 -7353.9609
+239897.029760025 3.2982106 -7354.3545
+239898.0297601293 3.2981317 -7354.5513
+239899.0297602336 3.29825 -7355.1421
+239900.0297603379 3.298368 -7354.9453
+239901.0297604422 3.2985649 -7354.1577
+239902.0297605465 3.2985256 -7354.3545
+239903.0297606508 3.2986829 -7354.3545
+239904.0297607551 3.2986436 -7353.9609
+239905.0297608594 3.2985649 -7355.7324
+239906.0297609637 3.2983286 -7354.7485
+239907.0297610681 3.2983286 -7354.3545
+239908.0297611724 3.2982893 -7354.7485
+239909.0297612767 3.2982106 -7354.7485
+239910.029761381 3.297935 -7353.9609
+239911.0297614853 3.2976594 -7354.1577
+239912.0297615896 3.2975807 -7354.7485
+239913.0297616939 3.2975414 -7354.7485
+239914.0297617982 3.2974625 -7355.1421
+239915.0297619025 3.2973051 -7354.3545
+239916.0297620068 3.2971869 -7354.5513
+239917.0297621111 3.2971869 -7353.7646
+239918.0297622154 3.2972658 -7354.3545
+239919.0297623198 3.2972264 -7354.7485
+239920.0297624241 3.2973838 -7354.5513
+239921.0297625284 3.2973838 -7354.7485
+239922.0297626327 3.2972264 -7354.3545
+239923.029762737 3.2969115 -7354.1577
+239924.0297628413 3.2967145 -7354.9453
+239925.0297629456 3.2964783 -7353.9609
+239926.0297630499 3.2963996 -7354.7485
+239927.0297631542 3.2960846 -7354.1577
+239928.0297632585 3.2958877 -7354.5513
+239929.0297633628 3.2957697 -7353.7646
+239930.0297634671 3.2958484 -7354.3545
+239931.0297635715 3.2958484 -7354.9453
+239932.0297636758 3.2959664 -7354.3545
+239933.0297637801 3.295809 -7354.1577
+239934.0297638844 3.2956514 -7353.9609
+239935.0297639887 3.295691 -7354.7485
+239936.029764093 3.2954941 -7354.5513
+239937.0297641973 3.2953761 -7355.3384
+239938.0297643016 3.2956514 -7354.1577
+239939.0297644059 3.2957304 -7354.3545
+239940.0297645102 3.295809 -7354.3545
+239941.0297646145 3.2956121 -7353.5669
+239942.0297647188 3.295691 -7354.3545
+239943.0297648232 3.2956514 -7354.3545
+239944.0297649275 3.2955728 -7355.1421
+239945.0297650318 3.2954547 -7355.3384
+239946.0297651361 3.2952185 -7354.3545
+239947.0297652404 3.2952578 -7354.1577
+239948.0297653447 3.2950611 -7354.5513
+239949.029765449 3.2950611 -7353.7646
+239950.0297655533 3.2945886 -7353.9609
+239951.0297656576 3.294431 -7354.3545
+239952.0297657619 3.2942343 -7353.7646
+239953.0297658662 3.2942343 -7354.1577
+239954.0297659705 3.294116 -7354.3545
+239955.0297660748 3.2941556 -7354.1577
+239956.0297661792 3.2940373 -7354.3545
+239957.0297662835 3.2941556 -7354.1577
+239958.0297663878 3.2942343 -7353.7646
+239959.0297664921 3.2939587 -7354.5513
+239960.0297665964 3.2936437 -7354.5513
+239961.0297667007 3.2934074 -7354.3545
+239962.029766805 3.2929745 -7354.3545
+239963.0297669093 3.2927382 -7353.9609
+239964.0297670136 3.2925806 -7355.1421
+239965.0297671179 3.2925019 -7353.9609
+239966.0297672222 3.2922263 -7354.7485
+239967.0297673265 3.2917147 -7355.7324
+239968.0297674309 3.2915964 -7354.1577
+239969.0297675352 3.2908878 -7354.7485
+239970.0297676395 3.2904549 -7354.3545
+239971.0297677438 3.2900217 -7354.5513
+239972.0297678481 3.2894704 -7354.5513
+239973.0297679524 3.2890375 -7353.3706
+239974.0297680567 3.2887225 -7354.1577
+239975.029768161 3.2885256 -7354.9453
+239976.0297682653 3.2880533 -7354.7485
+239977.0297683696 3.2876594 -7353.7646
+239978.0297684739 3.2873051 -7353.7646
+239979.0297685782 3.2871871 -7353.9609
+239980.0297686826 3.2869902 -7353.9609
+239981.0297687869 3.2868328 -7354.5513
+239982.0297688912 3.2867935 -7354.5513
+239983.0297689955 3.2866359 -7353.9609
+239984.0297690998 3.2865179 -7354.9453
+239985.0297692041 3.2865572 -7354.9453
+239986.0297693084 3.2867541 -7354.9453
+239987.0297694127 3.2867541 -7354.1577
+239988.029769517 3.2865572 -7354.1577
+239989.0297696213 3.2864392 -7353.5669
+239990.0297697256 3.2862029 -7353.9609
+239991.0297698299 3.2861636 -7355.5352
+239992.0297699342 3.2862029 -7354.7485
+239993.0297700386 3.286006 -7353.7646
+239994.0297701429 3.2851791 -7354.1577
+239995.0297702472 3.2841556 -7354.1577
+239996.0297703515 3.2833683 -7354.3545
+239997.0297704558 3.2830927 -7354.1577
+239998.0297705601 3.2829351 -7353.9609
+239999.0297706644 3.2828958 -7354.7485
+240000.0297707687 3.2826202 -7354.3545
+240001.029770873 3.2822659 -7353.9609
+240002.0297709773 3.2817147 -7354.1577
+240003.0297710816 3.2813604 -7354.9453
+240004.0297711859 3.2812817 -7353.5669
+240005.0297712903 3.281203 -7354.5513
+240006.0297713946 3.2810454 -7353.9609
+240007.0297714989 3.2810454 -7355.3384
+240008.0297716032 3.2809668 -7354.3545
+240009.0297717075 3.2811241 -7354.7485
+240010.0297718118 3.2813604 -7354.1577
+240011.0297719161 3.281636 -7353.7646
+240012.0297720204 3.281754 -7354.7485
+240013.0297721247 3.2818723 -7354.3545
+240014.029772229 3.2818723 -7354.7485
+240015.0297723333 3.2818723 -7354.5513
+240016.0297724376 3.2818329 -7353.7646
+240017.029772542 3.2819116 -7354.9453
+240018.0297726463 3.2817934 -7354.9453
+240019.0297727506 3.2814391 -7354.1577
+240020.0297728549 3.2810454 -7353.7646
+240021.0297729592 3.2806911 -7353.3706
+240022.0297730635 3.2803369 -7354.3545
+240023.0297731678 3.2802975 -7354.1577
+240024.0297732721 3.2802579 -7354.3545
+240025.0297733764 3.2803762 -7353.5669
+240026.0297734807 3.2804155 -7353.9609
+240027.029773585 3.2806125 -7354.9453
+240028.0297736893 3.2809274 -7354.1577
+240029.0297737936 3.2810061 -7355.1421
+240030.029773898 3.2811241 -7354.3545
+240031.0297740023 3.2812817 -7355.1421
+240032.0297741066 3.2812424 -7353.7646
+240033.0297742109 3.2811241 -7354.9453
+240034.0297743152 3.2808881 -7354.3545
+240035.0297744195 3.2805336 -7354.3545
+240036.0297745238 3.2804155 -7354.3545
+240037.0297746281 3.2802579 -7353.7646
+240038.0297747324 3.2798643 -7354.5513
+240039.0297748367 3.2799826 -7354.7485
+240040.029774941 3.2796676 -7353.7646
+240041.0297750453 3.2798643 -7353.9609
+240042.0297751497 3.2797856 -7354.3545
+240043.029775254 3.2794707 -7354.7485
+240044.0297753583 3.2792737 -7354.5513
+240045.0297754626 3.2791164 -7354.9453
+240046.0297755669 3.2787228 -7354.1577
+240047.0297756712 3.2785258 -7354.1577
+240048.0297757755 3.2783289 -7354.3545
+240049.0297758798 3.2782109 -7354.1577
+240050.0297759841 3.2781715 -7353.7646
+240051.0297760884 3.2779746 -7353.7646
+240052.0297761927 3.2779353 -7354.3545
+240053.029776297 3.2774234 -7354.9453
+240054.0297764014 3.277581 -7353.5669
+240055.0297765057 3.2778172 -7353.7646
+240056.02977661 3.2775416 -7354.3545
+240057.0297767143 3.2773447 -7353.7646
+240058.0297768186 3.2773054 -7354.3545
+240059.0297769229 3.2768328 -7354.9453
+240060.0297770272 3.2765968 -7354.3545
+240061.0297771315 3.2765968 -7353.7646
+240062.0297772358 3.2765179 -7355.5352
+240063.0297773401 3.2763212 -7354.5513
+240064.0297774444 3.2765572 -7354.1577
+240065.0297775487 3.2767541 -7354.3545
+240066.0297776531 3.2765572 -7354.3545
+240067.0297777574 3.2762029 -7354.5513
+240068.0297778617 3.2764785 -7354.3545
+240069.029777966 3.2768328 -7354.3545
+240070.0297780703 3.2771873 -7354.1577
+240071.0297781746 3.277699 -7354.3545
+240072.0297782789 3.277699 -7354.7485
+240073.0297783832 3.277581 -7354.1577
+240074.0297784875 3.2776597 -7353.9609
+240075.0297785918 3.2775023 -7354.9453
+240076.0297786961 3.277581 -7354.7485
+240077.0297788004 3.2778172 -7354.3545
+240078.0297789047 3.2780139 -7354.3545
+240079.0297790091 3.2782109 -7354.9453
+240080.0297791134 3.2782896 -7355.1421
+240081.0297792177 3.2782109 -7354.7485
+240082.029779322 3.2780139 -7354.3545
+240083.0297794263 3.2776203 -7354.9453
+240084.0297795306 3.277266 -7354.3545
+240085.0297796349 3.2769511 -7355.5352
+240086.0297797392 3.2769511 -7354.5513
+240087.0297798435 3.2773054 -7354.1577
+240088.0297799478 3.2773054 -7354.5513
+240089.0297800521 3.2771084 -7354.7485
+240090.0297801564 3.2769904 -7354.3545
+240091.0297802608 3.2767541 -7354.7485
+240092.0297803651 3.2765572 -7354.1577
+240093.0297804694 3.2764392 -7353.9609
+240094.0297805737 3.2763999 -7354.3545
+240095.029780678 3.2762423 -7353.9609
+240096.0297807823 3.2760849 -7354.3545
+240097.0297808866 3.2757699 -7353.5669
+240098.0297809909 3.2756124 -7354.5513
+240099.0297810952 3.2757699 -7354.1577
+240100.0297811995 3.2754943 -7353.9609
+240101.0297813038 3.2752581 -7354.1577
+240102.0297814081 3.2752581 -7354.5513
+240103.0297815125 3.2752187 -7354.9453
+240104.0297816168 3.2750614 -7354.3545
+240105.0297817211 3.2747464 -7354.9453
+240106.0297818254 3.2748251 -7354.1577
+240107.0297819297 3.2742739 -7354.9453
+240108.029782034 3.2739589 -7353.5669
+240109.0297821383 3.273762 -7354.1577
+240110.0297822426 3.2736833 -7354.1577
+240111.0297823469 3.2736833 -7354.5513
+240112.0297824512 3.2734866 -7353.9609
+240113.0297825555 3.2730927 -7354.9453
+240114.0297826598 3.2730141 -7353.7646
+240115.0297827641 3.273329 -7354.7485
+240116.0297828685 3.2733684 -7354.3545
+240117.0297829728 3.273211 -7354.7485
+240118.0297830771 3.273211 -7353.5669
+240119.0297831814 3.2729747 -7354.1577
+240120.0297832857 3.2728961 -7353.7646
+240121.02978339 3.2727778 -7354.9453
+240122.0297834943 3.2722661 -7354.3545
+240123.0297835986 3.2719512 -7353.5669
+240124.0297837029 3.2717149 -7354.1577
+240125.0297838072 3.2715967 -7354.1577
+240126.0297839115 3.2715967 -7353.9609
+240127.0297840158 3.2711637 -7354.3545
+240128.0297841202 3.2708881 -7354.7485
+240129.0297842245 3.2704945 -7354.5513
+240130.0297843288 3.2702188 -7353.7646
+240131.0297844331 3.2699039 -7354.1577
+240132.0297845374 3.2694314 -7354.1577
+240133.0297846417 3.268959 -7354.5513
+240134.029784746 3.2686441 -7353.7646
+240135.0297848503 3.2685654 -7354.9453
+240136.0297849546 3.2684472 -7354.3545
+240137.0297850589 3.2682505 -7354.3545
+240138.0297851632 3.2679749 -7354.3545
+240139.0297852675 3.2675023 -7354.7485
+240140.0297853719 3.267148 -7354.9453
+240141.0297854762 3.2668331 -7354.7485
+240142.0297855805 3.2664788 -7354.9453
+240143.0297856848 3.2660456 -7354.3545
+240144.0297857891 3.2661245 -7354.5513
+240145.0297858934 3.2657306 -7354.1577
+240146.0297859977 3.2658095 -7354.3545
+240147.029786102 3.2658095 -7353.7646
+240148.0297862063 3.2660456 -7354.7485
+240149.0297863106 3.2659276 -7354.5513
+240150.0297864149 3.2656913 -7353.5669
+240151.0297865192 3.2658882 -7354.1577
+240152.0297866235 3.2659669 -7354.1577
+240153.0297867279 3.2662032 -7354.9453
+240154.0297868322 3.2659276 -7353.3706
+240155.0297869365 3.2655733 -7355.1421
+240156.0297870408 3.265219 -7354.5513
+240157.0297871451 3.265022 -7354.7485
+240158.0297872494 3.265022 -7354.7485
+240159.0297873537 3.265022 -7354.3545
+240160.029787458 3.265219 -7355.1421
+240161.0297875623 3.265219 -7354.3545
+240162.0297876666 3.265455 -7355.1421
+240163.0297877709 3.2652583 -7354.5513
+240164.0297878752 3.2647858 -7354.7485
+240165.0297879796 3.2648647 -7354.3545
+240166.0297880839 3.265022 -7355.3384
+240167.0297881882 3.2646677 -7354.9453
+240168.0297882925 3.2646677 -7355.1421
+240169.0297883968 3.2646677 -7353.9609
+240170.0297885011 3.2644708 -7355.1421
+240171.0297886054 3.2644708 -7354.5513
+240172.0297887097 3.2642345 -7354.5513
+240173.029788814 3.2641165 -7354.5513
+240174.0297889183 3.2638803 -7354.3545
+240175.0297890226 3.2634079 -7353.5669
+240176.0297891269 3.2632504 -7353.5669
+240177.0297892313 3.2629747 -7354.1577
+240178.0297893356 3.2629354 -7354.3545
+240179.0297894399 3.263093 -7354.7485
+240180.0297895442 3.263093 -7353.9609
+240181.0297896485 3.263093 -7354.9453
+240182.0297897528 3.2632504 -7353.5669
+240183.0297898571 3.2634473 -7354.3545
+240184.0297899614 3.2635653 -7354.9453
+240185.0297900657 3.2634866 -7354.7485
+240186.02979017 3.263211 -7354.9453
+240187.0297902743 3.263093 -7354.9453
+240188.0297903786 3.2628567 -7354.7485
+240189.0297904829 3.2623842 -7353.9609
+240190.0297905873 3.2621481 -7354.7485
+240191.0297906916 3.2619119 -7354.3545
+240192.0297907959 3.2621481 -7354.1577
+240193.0297909002 3.2625811 -7354.7485
+240194.0297910045 3.2625024 -7353.7646
+240195.0297911088 3.2622662 -7354.5513
+240196.0297912131 3.2623055 -7354.5513
+240197.0297913174 3.2622268 -7354.9453
+240198.0297914217 3.2620692 -7354.3545
+240199.029791526 3.2618725 -7354.7485
+240200.0297916303 3.2615576 -7354.5513
+240201.0297917346 3.261282 -7354.5513
+240202.029791839 3.2611244 -7354.9453
+240203.0297919433 3.2611244 -7354.7485
+240204.0297920476 3.2613213 -7355.1421
+240205.0297921519 3.2611244 -7354.1577
+240206.0297922562 3.2612033 -7354.3545
+240207.0297923605 3.2616756 -7354.3545
+240208.0297924648 3.2618332 -7354.7485
+240209.0297925691 3.2621088 -7354.1577
+240210.0297926734 3.2623448 -7354.3545
+240211.0297927777 3.2625811 -7354.3545
+240212.029792882 3.2628961 -7354.5513
+240213.0297929863 3.2634079 -7354.7485
+240214.0297930907 3.263526 -7354.9453
+240215.029793195 3.2634473 -7354.3545
+240216.0297932993 3.2636046 -7354.9453
+240217.0297934036 3.2634473 -7354.3545
+240218.0297935079 3.2633293 -7354.3545
+240219.0297936122 3.2633293 -7353.5669
+240220.0297937165 3.2632504 -7354.3545
+240221.0297938208 3.2633686 -7354.3545
+240222.0297939251 3.2635653 -7354.5513
+240223.0297940294 3.2639592 -7354.3545
+240224.0297941337 3.2641165 -7354.3545
+240225.029794238 3.2639985 -7353.7646
+240226.0297943424 3.2639592 -7354.5513
+240227.0297944467 3.2637622 -7353.5669
+240228.029794551 3.2636836 -7354.9453
+240229.0297946553 3.2633686 -7354.9453
+240230.0297947596 3.2629747 -7354.3545
+240231.0297948639 3.263093 -7354.3545
+240232.0297949682 3.2630143 -7353.9609
+240233.0297950725 3.2624631 -7354.7485
+240234.0297951768 3.2623448 -7355.1421
+240235.0297952811 3.2622662 -7353.5669
+240236.0297953854 3.2622662 -7354.1577
+240237.0297954897 3.2622662 -7354.3545
+240238.029795594 3.2624631 -7354.3545
+240239.0297956984 3.2625418 -7353.7646
+240240.0297958027 3.2619905 -7354.3545
+240241.029795907 3.2616756 -7354.1577
+240242.0297960113 3.261282 -7354.9453
+240243.0297961156 3.261085 -7354.1577
+240244.0297962199 3.2609277 -7354.5513
+240245.0297963242 3.2605338 -7353.7646
+240246.0297964285 3.2606127 -7354.3545
+240247.0297965328 3.2607307 -7354.1577
+240248.0297966371 3.2607701 -7353.9609
+240249.0297967414 3.2604945 -7354.3545
+240250.0297968457 3.2604158 -7354.7485
+240251.0297969501 3.2602978 -7353.9609
+240252.0297970544 3.2602189 -7354.5513
+240253.0297971587 3.2606521 -7354.5513
+240254.029797263 3.2606127 -7354.3545
+240255.0297973673 3.2605734 -7354.1577
+240256.0297974716 3.2610457 -7354.1577
+240257.0297975759 3.2613606 -7354.3545
+240258.0297976802 3.2614393 -7354.3545
+240259.0297977845 3.2615576 -7354.1577
+240260.0297978888 3.2620299 -7354.5513
+240261.0297979931 3.2621088 -7354.5513
+240262.0297980974 3.2623842 -7354.1577
+240263.0297982018 3.2623448 -7353.5669
+240264.0297983061 3.2619905 -7354.5513
+240265.0297984104 3.2614 -7354.1577
+240266.0297985147 3.260967 -7354.9453
+240267.029798619 3.2608094 -7354.5513
+240268.0297987233 3.2606521 -7353.5669
+240269.0297988276 3.2605734 -7354.9453
+240270.0297989319 3.2605338 -7354.3545
+240271.0297990362 3.2604945 -7354.3545
+240272.0297991405 3.2605734 -7353.9609
+240273.0297992448 3.2610064 -7355.3384
+240274.0297993491 3.2614 -7354.1577
+240275.0297994534 3.2617543 -7354.5513
+240276.0297995578 3.2617149 -7354.7485
+240277.0297996621 3.2615576 -7354.7485
+240278.0297997664 3.2616756 -7354.3545
+240279.0297998707 3.2619119 -7353.5669
+240280.029799975 3.2620299 -7354.3545
+240281.0298000793 3.2623055 -7355.3384
+240282.0298001836 3.2623842 -7354.3545
+240283.0298002879 3.2622268 -7353.9609
+240284.0298003922 3.2622268 -7353.7646
+240285.0298004965 3.2619119 -7354.5513
+240286.0298006008 3.2618332 -7355.1421
+240287.0298007051 3.2614 -7353.5669
+240288.0298008095 3.261282 -7354.9453
+240289.0298009138 3.2614 -7354.3545
+240290.0298010181 3.2616363 -7354.5513
+240291.0298011224 3.2619905 -7354.5513
+240292.0298012267 3.2621481 -7354.5513
+240293.029801331 3.2619119 -7354.9453
+240294.0298014353 3.2616756 -7354.1577
+240295.0298015396 3.2612033 -7354.9453
+240296.0298016439 3.261085 -7354.5513
+240297.0298017482 3.2613606 -7354.3545
+240298.0298018525 3.2613606 -7355.3384
+240299.0298019568 3.2617149 -7353.5669
+240300.0298020612 3.2617543 -7354.5513
+240301.0298021655 3.2615969 -7354.3545
+240302.0298022698 3.2616363 -7355.9292
+240303.0298023741 3.2616363 -7354.1577
+240304.0298024784 3.261085 -7354.5513
+240305.0298025827 3.2611639 -7355.7324
+240306.029802687 3.2611244 -7355.3384
+240307.0298027913 3.2611244 -7353.5669
+240308.0298028956 3.261282 -7354.7485
+240309.0298029999 3.2614789 -7354.3545
+240310.0298031042 3.261282 -7354.3545
+240311.0298032085 3.2609277 -7354.5513
+240312.0298033128 3.2607307 -7353.7646
+240313.0298034172 3.2608094 -7354.3545
+240314.0298035215 3.2612426 -7355.1421
+240315.0298036258 3.261282 -7354.5513
+240316.0298037301 3.261282 -7355.1421
+240317.0298038344 3.2614 -7354.1577
+240318.0298039387 3.2613213 -7354.7485
+240319.029804043 3.2611639 -7354.5513
+240320.0298041473 3.2612033 -7354.3545
+240321.0298042516 3.2612033 -7354.9453
+240322.0298043559 3.2609277 -7354.3545
+240323.0298044602 3.2609277 -7354.5513
+240324.0298045645 3.2609277 -7354.9453
+240325.0298046689 3.2613213 -7354.5513
+240326.0298047732 3.2614 -7354.7485
+240327.0298048775 3.2615182 -7354.9453
+240328.0298049818 3.2616363 -7354.5513
+240329.0298050861 3.2615182 -7355.1421
+240330.0298051904 3.2616363 -7354.1577
+240331.0298052947 3.2614 -7354.1577
+240332.029805399 3.2612426 -7354.7485
+240333.0298055033 3.2609277 -7354.3545
+240334.0298056076 3.2605338 -7354.3545
+240335.0298057119 3.2605734 -7353.7646
+240336.0298058162 3.2604945 -7354.1577
+240337.0298059206 3.2600615 -7355.1421
+240338.0298060249 3.2597072 -7354.5513
+240339.0298061292 3.2597466 -7354.5513
+240340.0298062335 3.2594316 -7353.9609
+240341.0298063378 3.2594316 -7354.1577
+240342.0298064421 3.2593529 -7355.1421
+240343.0298065464 3.2590773 -7354.3545
+240344.0298066507 3.2587624 -7354.3545
+240345.029806755 3.2585654 -7355.3384
+240346.0298068593 3.2584474 -7354.3545
+240347.0298069636 3.2582111 -7353.5669
+240348.0298070679 3.2584867 -7354.3545
+240349.0298071723 3.2582505 -7354.5513
+240350.0298072766 3.2581718 -7354.3545
+240351.0298073809 3.2584081 -7353.7646
+240352.0298074852 3.2585654 -7354.3545
+240353.0298075895 3.2583685 -7354.3545
+240354.0298076938 3.2584081 -7354.1577
+240355.0298077981 3.2584474 -7354.7485
+240356.0298079024 3.2582898 -7353.7646
+240357.0298080067 3.2583292 -7354.1577
+240358.029808111 3.2580931 -7354.5513
+240359.0298082153 3.2579355 -7354.7485
+240360.0298083196 3.2578962 -7354.3545
+240361.0298084239 3.2577782 -7354.3545
+240362.0298085283 3.2575812 -7354.3545
+240363.0298086326 3.2577386 -7355.5352
+240364.0298087369 3.2576599 -7354.7485
+240365.0298088412 3.2575812 -7354.5513
+240366.0298089455 3.2574236 -7354.5513
+240367.0298090498 3.2569513 -7353.9609
+240368.0298091541 3.2571876 -7354.3545
+240369.0298092584 3.2569907 -7354.5513
+240370.0298093627 3.2565577 -7354.5513
+240371.029809467 3.2566757 -7353.9609
+240372.0298095713 3.2567151 -7354.5513
+240373.0298096756 3.2566757 -7354.1577
+240374.02980978 3.25703 -7354.3545
+240375.0298098843 3.2571876 -7354.9453
+240376.0298099886 3.257345 -7354.1577
+240377.0298100929 3.257148 -7354.5513
+240378.0298101972 3.2569907 -7354.7485
+240379.0298103015 3.2566757 -7354.9453
+240380.0298104058 3.2567544 -7354.3545
+240381.0298105101 3.2569907 -7354.7485
+240382.0298106144 3.2569907 -7354.1577
+240383.0298107187 3.2567544 -7354.9453
+240384.029810823 3.2565181 -7354.5513
+240385.0298109273 3.2563608 -7354.1577
+240386.0298110317 3.2560852 -7353.9609
+240387.029811136 3.2556129 -7353.7646
+240388.0298112403 3.2556129 -7354.9453
+240389.0298113446 3.2554553 -7353.9609
+240390.0298114489 3.2553372 -7354.7485
+240391.0298115532 3.2551796 -7353.9609
+240392.0298116575 3.2551796 -7355.1421
+240393.0298117618 3.2552977 -7354.9453
+240394.0298118661 3.2549434 -7355.3384
+240395.0298119704 3.2546284 -7355.7324
+240396.0298120747 3.2543135 -7354.5513
+240397.029812179 3.2540379 -7354.5513
+240398.0298122833 3.2535262 -7353.9609
+240399.0298123877 3.253408 -7354.1577
+240400.029812492 3.2532899 -7353.5669
+240401.0298125963 3.253093 -7355.1421
+240402.0298127006 3.2530537 -7354.3545
+240403.0298128049 3.2528963 -7354.3545
+240404.0298129092 3.252857 -7353.7646
+240405.0298130135 3.2531719 -7354.5513
+240406.0298131178 3.2533293 -7354.7485
+240407.0298132221 3.2532113 -7354.1577
+240408.0298133264 3.253093 -7353.9609
+240409.0298134307 3.252975 -7354.3545
+240410.029813535 3.25266 -7353.9609
+240411.0298136394 3.2524631 -7354.3545
+240412.0298137437 3.2524238 -7354.5513
+240413.029813848 3.2523451 -7354.5513
+240414.0298139523 3.2525814 -7355.1421
+240415.0298140566 3.2528174 -7353.9609
+240416.0298141609 3.2526994 -7355.3384
+240417.0298142652 3.2524631 -7354.1577
+240418.0298143695 3.2521088 -7354.5513
+240419.0298144738 3.2517152 -7354.5513
+240420.0298145781 3.2517545 -7354.5513
+240421.0298146824 3.2519121 -7354.9453
+240422.0298147867 3.2519515 -7354.3545
+240423.0298148911 3.2518332 -7354.5513
+240424.0298149954 3.2518332 -7354.1577
+240425.0298150997 3.2515969 -7354.3545
+240426.029815204 3.251282 -7354.5513
+240427.0298153083 3.250731 -7354.3545
+240428.0298154126 3.2506521 -7354.1577
+240429.0298155169 3.2505341 -7354.5513
+240430.0298156212 3.250416 -7354.3545
+240431.0298157255 3.2502584 -7355.1421
+240432.0298158298 3.2498648 -7353.9609
+240433.0298159341 3.2494712 -7354.5513
+240434.0298160384 3.2491956 -7353.9609
+240435.0298161427 3.2489986 -7354.1577
+240436.0298162471 3.2490773 -7354.1577
+240437.0298163514 3.2492743 -7354.9453
+240438.0298164557 3.2492349 -7355.1421
+240439.02981656 3.2491167 -7354.3545
+240440.0298166643 3.2494316 -7353.5669
+240441.0298167686 3.2497466 -7354.5513
+240442.0298168729 3.2497861 -7353.9609
+240443.0298169772 3.2496679 -7354.7485
+240444.0298170815 3.2497861 -7354.9453
+240445.0298171858 3.2498648 -7355.1421
+240446.0298172901 3.2495892 -7353.7646
+240447.0298173944 3.2494712 -7354.9453
+240448.0298174988 3.2495105 -7354.3545
+240449.0298176031 3.2496285 -7355.1421
+240450.0298177074 3.2496679 -7353.9609
+240451.0298178117 3.2496285 -7353.7646
+240452.029817916 3.2491562 -7353.7646
+240453.0298180203 3.2487624 -7354.7485
+240454.0298181246 3.2487624 -7353.3706
+240455.0298182289 3.2489593 -7354.9453
+240456.0298183332 3.2489593 -7354.3545
+240457.0298184375 3.2489986 -7355.5352
+240458.0298185418 3.2490773 -7354.7485
+240459.0298186461 3.2492743 -7354.1577
+240460.0298187505 3.2495892 -7354.3545
+240461.0298188548 3.2497072 -7354.3545
+240462.0298189591 3.2493529 -7354.3545
+240463.0298190634 3.2491956 -7354.5513
+240464.0298191677 3.2489593 -7355.1421
+240465.029819272 3.2485263 -7354.3545
+240466.0298193763 3.2484474 -7354.1577
+240467.0298194806 3.2483294 -7354.1577
+240468.0298195849 3.2480145 -7354.1577
+240469.0298196892 3.2480145 -7353.9609
+240470.0298197935 3.2479751 -7354.1577
+240471.0298198978 3.2477782 -7354.5513
+240472.0298200022 3.2475026 -7354.5513
+240473.0298201065 3.2468727 -7354.1577
+240474.0298202108 3.2467153 -7354.9453
+240475.0298203151 3.2465971 -7354.9453
+240476.0298204194 3.2461641 -7354.3545
+240477.0298205237 3.2457309 -7355.1421
+240478.029820628 3.2456522 -7355.1421
+240479.0298207323 3.2453766 -7354.7485
+240480.0298208366 3.2450223 -7354.1577
+240481.0298209409 3.2449043 -7354.5513
+240482.0298210452 3.2448256 -7354.7485
+240483.0298211495 3.2444317 -7354.5513
+240484.0298212538 3.2439201 -7354.1577
+240485.0298213582 3.2433295 -7354.3545
+240486.0298214625 3.2434082 -7354.1577
+240487.0298215668 3.2432902 -7354.3545
+240488.0298216711 3.2429357 -7355.1421
+240489.0298217754 3.242542 -7353.9609
+240490.0298218797 3.2423451 -7354.9453
+240491.029821984 3.2415185 -7354.9453
+240492.0298220883 3.2410066 -7355.1421
+240493.0298221926 3.2409279 -7354.5513
+240494.0298222969 3.2409279 -7354.7485
+240495.0298224012 3.2403374 -7354.5513
+240496.0298225055 3.2397861 -7354.3545
+240497.0298226099 3.2391956 -7354.1577
+240498.0298227142 3.2390382 -7354.3545
+240499.0298228185 3.2392349 -7354.1577
+240500.0298229228 3.2395895 -7353.7646
+240501.0298230271 3.2395105 -7354.3545
+240502.0298231314 3.2390382 -7354.5513
+240503.0298232357 3.2386839 -7353.7646
+240504.02982334 3.2385657 -7354.5513
+240505.0298234443 3.238605 -7354.1577
+240506.0298235486 3.2383294 -7353.5669
+240507.0298236529 3.2380934 -7354.5513
+240508.0298237572 3.2378571 -7354.5513
+240509.0298238616 3.2375815 -7354.5513
+240510.0298239659 3.2373059 -7355.3384
+240511.0298240702 3.2370303 -7354.1577
+240512.0298241745 3.236676 -7353.9609
+240513.0298242788 3.2364004 -7354.3545
+240514.0298243831 3.2361248 -7354.1577
+240515.0298244874 3.2360461 -7353.7646
+240516.0298245917 3.2357311 -7354.7485
+240517.029824696 3.2351012 -7354.9453
+240518.0298248003 3.234865 -7354.7485
+240519.0298249046 3.2349043 -7354.3545
+240520.0298250089 3.234865 -7354.1577
+240521.0298251132 3.2347863 -7354.3545
+240522.0298252176 3.2346683 -7353.3706
+240523.0298253219 3.2343533 -7354.5513
+240524.0298254262 3.2344713 -7354.3545
+240525.0298255305 3.2346683 -7354.3545
+240526.0298256348 3.2350619 -7354.7485
+240527.0298257391 3.2352192 -7354.3545
+240528.0298258434 3.2351012 -7353.3706
+240529.0298259477 3.2348256 -7354.7485
+240530.029826052 3.2344713 -7354.7485
+240531.0298261563 3.2343533 -7354.5513
+240532.0298262606 3.2343926 -7355.3384
+240533.0298263649 3.2344713 -7354.1577
+240534.0298264693 3.234432 -7354.7485
+240535.0298265736 3.2344713 -7354.3545
+240536.0298266779 3.23455 -7354.7485
+240537.0298267822 3.2341957 -7354.7485
+240538.0298268865 3.2338021 -7354.5513
+240539.0298269908 3.2338021 -7354.1577
+240540.0298270951 3.2335265 -7354.3545
+240541.0298271994 3.2332509 -7354.3545
+240542.0298273037 3.2330146 -7354.3545
+240543.029827408 3.2330146 -7354.1577
+240544.0298275123 3.2328572 -7353.9609
+240545.0298276166 3.2325816 -7353.7646
+240546.029827721 3.2323453 -7354.3545
+240547.0298278253 3.2323847 -7354.7485
+240548.0298279296 3.2324634 -7354.5513
+240549.0298280339 3.2324634 -7354.7485
+240550.0298281382 3.2325816 -7354.3545
+240551.0298282425 3.2325816 -7354.1577
+240552.0298283468 3.2325029 -7353.7646
+240553.0298284511 3.2324634 -7354.1577
+240554.0298285554 3.2325423 -7354.1577
+240555.0298286597 3.2326603 -7354.1577
+240556.029828764 3.2326996 -7353.9609
+240557.0298288683 3.2326996 -7354.1577
+240558.0298289726 3.2326603 -7354.3545
+240559.029829077 3.2322273 -7354.3545
+240560.0298291813 3.2321091 -7353.9609
+240561.0298292856 3.2321091 -7354.7485
+240562.0298293899 3.2322667 -7353.7646
+240563.0298294942 3.2322667 -7354.5513
+240564.0298295985 3.232188 -7354.5513
+240565.0298297028 3.2319517 -7354.9453
+240566.0298298071 3.2319124 -7354.5513
+240567.0298299114 3.2319124 -7354.1577
+240568.0298300157 3.2318335 -7354.3545
+240569.02983012 3.2316761 -7354.1577
+240570.0298302243 3.2311642 -7354.7485
+240571.0298303287 3.2308886 -7354.7485
+240572.029830433 3.230495 -7353.9609
+240573.0298305373 3.2305737 -7354.3545
+240574.0298306416 3.2306919 -7354.3545
+240575.0298307459 3.2307312 -7354.5513
+240576.0298308502 3.2309279 -7354.9453
+240577.0298309545 3.2309279 -7354.3545
+240578.0298310588 3.2309279 -7353.9609
+240579.0298311631 3.2307312 -7354.9453
+240580.0298312674 3.2306919 -7354.9453
+240581.0298313717 3.230298 -7354.3545
+240582.029831476 3.230298 -7353.7646
+240583.0298315804 3.230495 -7355.3384
+240584.0298316847 3.2302587 -7354.7485
+240585.029831789 3.2296681 -7354.1577
+240586.0298318933 3.2291565 -7353.7646
+240587.0298319976 3.2285659 -7354.5513
+240588.0298321019 3.2280934 -7354.5513
+240589.0298322062 3.2278571 -7354.7485
+240590.0298323105 3.2279754 -7354.3545
+240591.0298324148 3.2280934 -7354.1577
+240592.0298325191 3.2277784 -7354.1577
+240593.0298326234 3.2276998 -7354.9453
+240594.0298327277 3.2276998 -7354.5513
+240595.0298328321 3.2278967 -7354.5513
+240596.0298329364 3.2280147 -7354.7485
+240597.0298330407 3.2281327 -7354.5513
+240598.029833145 3.2280147 -7354.1577
+240599.0298332493 3.2278967 -7353.9609
+240600.0298333536 3.227936 -7353.9609
+240601.0298334579 3.2278178 -7354.5513
+240602.0298335622 3.2277391 -7354.9453
+240603.0298336665 3.2277391 -7354.1577
+240604.0298337708 3.2278571 -7354.1577
+240605.0298338751 3.2278178 -7354.1577
+240606.0298339794 3.2278967 -7354.3545
+240607.0298340837 3.2278178 -7354.3545
+240608.0298341881 3.2277784 -7353.9609
+240609.0298342924 3.2279754 -7354.5513
+240610.0298343967 3.228251 -7354.9453
+240611.029834501 3.228487 -7354.3545
+240612.0298346053 3.228487 -7354.3545
+240613.0298347096 3.2286839 -7355.3384
+240614.0298348139 3.2292352 -7354.7485
+240615.0298349182 3.2293925 -7354.3545
+240616.0298350225 3.2296288 -7354.1577
+240617.0298351268 3.2295108 -7354.5513
+240618.0298352311 3.2295108 -7355.5352
+240619.0298353354 3.2294321 -7353.9609
+240620.0298354398 3.2293925 -7354.5513
+240621.0298355441 3.2290776 -7354.1577
+240622.0298356484 3.2286053 -7354.1577
+240623.0298357527 3.2284083 -7354.9453
+240624.029835857 3.228369 -7354.3545
+240625.0298359613 3.2284083 -7353.7646
+240626.0298360656 3.2282903 -7355.5352
+240627.0298361699 3.228054 -7355.1421
+240628.0298362742 3.2276604 -7354.7485
+240629.0298363785 3.2275422 -7354.5513
+240630.0298364828 3.2272272 -7354.1577
+240631.0298365871 3.2271879 -7354.5513
+240632.0298366915 3.2270305 -7354.3545
+240633.0298367958 3.2271092 -7353.9609
+240634.0298369001 3.2271485 -7354.3545
+240635.0298370044 3.2274241 -7354.3545
+240636.0298371087 3.2274635 -7353.9609
+240637.029837213 3.2273455 -7354.3545
+240638.0298373173 3.2272668 -7354.1577
+240639.0298374216 3.2273061 -7354.1577
+240640.0298375259 3.2275422 -7354.3545
+240641.0298376302 3.2276998 -7353.7646
+240642.0298377345 3.2274635 -7354.5513
+240643.0298378388 3.2271879 -7353.7646
+240644.0298379431 3.2269912 -7354.7485
+240645.0298380475 3.2266366 -7354.3545
+240646.0298381518 3.226243 -7354.5513
+240647.0298382561 3.2262824 -7354.3545
+240648.0298383604 3.2263217 -7354.7485
+240649.0298384647 3.2263613 -7354.3545
+240650.029838569 3.2260857 -7354.5513
+240651.0298386733 3.2256525 -7354.3545
+240652.0298387776 3.2254951 -7354.3545
+240653.0298388819 3.2254164 -7354.5513
+240654.0298389862 3.2252982 -7354.9453
+240655.0298390905 3.2252195 -7354.9453
+240656.0298391948 3.2254164 -7353.7646
+240657.0298392992 3.2254951 -7354.1577
+240658.0298394035 3.2256131 -7354.3545
+240659.0298395078 3.2257707 -7354.5513
+240660.0298396121 3.2260067 -7354.1577
+240661.0298397164 3.2258887 -7354.9453
+240662.0298398207 3.2258494 -7354.5513
+240663.029839925 3.2257707 -7354.5513
+240664.0298400293 3.2257707 -7354.9453
+240665.0298401336 3.2254164 -7354.1577
+240666.0298402379 3.2251801 -7354.3545
+240667.0298403422 3.2252982 -7354.5513
+240668.0298404465 3.2249832 -7354.3545
+240669.0298405509 3.2247863 -7354.5513
+240670.0298406552 3.2246289 -7354.5513
+240671.0298407595 3.2245109 -7354.5513
+240672.0298408638 3.224314 -7354.3545
+240673.0298409681 3.2242353 -7354.5513
+240674.0298410724 3.2245109 -7354.5513
+240675.0298411767 3.2243927 -7354.5513
+240676.029841281 3.2243533 -7354.1577
+240677.0298413853 3.224196 -7354.3545
+240678.0298414896 3.2240384 -7354.7485
+240679.0298415939 3.2240777 -7353.9609
+240680.0298416982 3.2243927 -7353.7646
+240681.0298418025 3.224432 -7353.5669
+240682.0298419069 3.2243927 -7353.7646
+240683.0298420112 3.2243533 -7355.3384
+240684.0298421155 3.2241564 -7354.1577
+240685.0298422198 3.223999 -7354.5513
+240686.0298423241 3.2239597 -7354.9453
+240687.0298424284 3.2239597 -7354.5513
+240688.0298425327 3.2240384 -7354.7485
+240689.029842637 3.2240384 -7354.7485
+240690.0298427413 3.2240384 -7353.9609
+240691.0298428456 3.224314 -7355.3384
+240692.0298429499 3.2242353 -7354.3545
+240693.0298430542 3.2238021 -7354.1577
+240694.0298431586 3.2235661 -7354.1577
+240695.0298432629 3.2233691 -7354.3545
+240696.0298433672 3.2234085 -7354.7485
+240697.0298434715 3.2233691 -7354.7485
+240698.0298435758 3.2236841 -7354.5513
+240699.0298436801 3.2235265 -7355.1421
+240700.0298437844 3.2237234 -7354.9453
+240701.0298438887 3.2235265 -7354.1577
+240702.029843993 3.2235265 -7355.1421
+240703.0298440973 3.2235661 -7353.9609
+240704.0298442016 3.2234478 -7354.3545
+240705.0298443059 3.2228966 -7354.5513
+240706.0298444103 3.2227786 -7354.3545
+240707.0298445146 3.2228179 -7354.5513
+240708.0298446189 3.2230542 -7353.9609
+240709.0298447232 3.2231722 -7353.3706
+240710.0298448275 3.2230935 -7354.9453
+240711.0298449318 3.2230935 -7353.7646
+240712.0298450361 3.2231722 -7354.7485
+240713.0298451404 3.2228966 -7354.1577
+240714.0298452447 3.2227392 -7353.1738
+240715.029845349 3.2227392 -7354.3545
+240716.0298454533 3.2230148 -7354.3545
+240717.0298455576 3.2230935 -7355.1421
+240718.0298456619 3.2233691 -7354.7485
+240719.0298457663 3.2234871 -7354.5513
+240720.0298458706 3.2240777 -7354.9453
+240721.0298459749 3.2240777 -7353.9609
+240722.0298460792 3.2238414 -7353.9609
+240723.0298461835 3.2237234 -7353.7646
+240724.0298462878 3.2234478 -7354.5513
+240725.0298463921 3.2230935 -7354.5513
+240726.0298464964 3.2229359 -7354.1577
+240727.0298466007 3.2228572 -7353.7646
+240728.029846705 3.2224636 -7353.9609
+240729.0298468093 3.2223849 -7354.3545
+240730.0298469136 3.2222667 -7354.5513
+240731.029847018 3.22207 -7354.3545
+240732.0298471223 3.2216368 -7355.3384
+240733.0298472266 3.2214007 -7354.5513
+240734.0298473309 3.2214401 -7354.1577
+240735.0298474352 3.2212825 -7354.3545
+240736.0298475395 3.2213218 -7354.5513
+240737.0298476438 3.2213612 -7354.3545
+240738.0298477481 3.2212038 -7354.3545
+240739.0298478524 3.2212038 -7354.1577
+240740.0298479567 3.2209675 -7354.7485
+240741.029848061 3.2210069 -7353.5669
+240742.0298481653 3.2210069 -7354.3545
+240743.0298482697 3.2208495 -7354.1577
+240744.029848374 3.2204556 -7355.3384
+240745.0298484783 3.220259 -7354.1577
+240746.0298485826 3.2199833 -7354.1577
+240747.0298486869 3.2198257 -7353.9609
+240748.0298487912 3.2193928 -7354.1577
+240749.0298488955 3.2193534 -7353.7646
+240750.0298489998 3.2191172 -7354.1577
+240751.0298491041 3.2193141 -7354.7485
+240752.0298492084 3.2191172 -7354.3545
+240753.0298493127 3.2188416 -7353.5669
+240754.029849417 3.2184873 -7354.9453
+240755.0298495214 3.218251 -7354.3545
+240756.0298496257 3.2180543 -7354.3545
+240757.02984973 3.218015 -7354.1577
+240758.0298498343 3.2180543 -7354.5513
+240759.0298499386 3.2176604 -7354.9453
+240760.0298500429 3.2175817 -7353.7646
+240761.0298501472 3.2173061 -7354.1577
+240762.0298502515 3.2171094 -7353.9609
+240763.0298503558 3.2171488 -7354.5513
+240764.0298504601 3.2173455 -7354.7485
+240765.0298505644 3.2173061 -7354.5513
+240766.0298506687 3.2173061 -7354.7485
+240767.029850773 3.2170305 -7354.7485
+240768.0298508774 3.2167549 -7353.7646
+240769.0298509817 3.2165976 -7354.5513
+240770.029851086 3.21644 -7354.5513
+240771.0298511903 3.2164795 -7354.1577
+240772.0298512946 3.2164795 -7354.1577
+240773.0298513989 3.2165976 -7355.1421
+240774.0298515032 3.2165976 -7354.7485
+240775.0298516075 3.2165582 -7353.5669
+240776.0298517118 3.2163219 -7354.1577
+240777.0298518161 3.2159677 -7354.1577
+240778.0298519204 3.2159283 -7354.9453
+240779.0298520247 3.2158494 -7354.7485
+240780.0298521291 3.2158494 -7354.7485
+240781.0298522334 3.2160463 -7353.9609
+240782.0298523377 3.2161646 -7353.3706
+240783.029852442 3.2162826 -7354.3545
+240784.0298525463 3.2164795 -7355.3384
+240785.0298526506 3.2165189 -7354.1577
+240786.0298527549 3.2160463 -7354.3545
+240787.0298528592 3.2158494 -7354.9453
+240788.0298529635 3.2157314 -7354.1577
+240789.0298530678 3.2155344 -7354.3545
+240790.0298531721 3.2155344 -7354.3545
+240791.0298532764 3.2153771 -7353.9609
+240792.0298533808 3.2154951 -7354.5513
+240793.0298534851 3.2157314 -7354.3545
+240794.0298535894 3.215692 -7354.1577
+240795.0298536937 3.215692 -7354.1577
+240796.029853798 3.2156134 -7355.1421
+240797.0298539023 3.215574 -7353.7646
+240798.0298540066 3.2156527 -7353.7646
+240799.0298541109 3.2154951 -7355.3384
+240800.0298542152 3.2158101 -7354.5513
+240801.0298543195 3.2160857 -7353.7646
+240802.0298544238 3.2161646 -7354.5513
+240803.0298545281 3.2160463 -7353.9609
+240804.0298546324 3.2160463 -7353.7646
+240805.0298547368 3.215889 -7354.3545
+240806.0298548411 3.2155344 -7354.9453
+240807.0298549454 3.2151408 -7355.5352
+240808.0298550497 3.2148259 -7355.1421
+240809.029855154 3.2145109 -7354.7485
+240810.0298552583 3.2143142 -7354.3545
+240811.0298553626 3.2139597 -7354.3545
+240812.0298554669 3.213881 -7354.3545
+240813.0298555712 3.2133691 -7354.1577
+240814.0298556755 3.2128575 -7354.1577
+240815.0298557798 3.2125819 -7353.9609
+240816.0298558841 3.2124243 -7354.1577
+240817.0298559885 3.2123456 -7354.3545
+240818.0298560928 3.211952 -7353.9609
+240819.0298561971 3.2114794 -7354.7485
+240820.0298563014 3.2110465 -7354.9453
+240821.0298564057 3.2107315 -7354.5513
+240822.02985651 3.2104166 -7353.9609
+240823.0298566143 3.210259 -7354.9453
+240824.0298567186 3.2105346 -7355.1421
+240825.0298568229 3.2106528 -7354.1577
+240826.0298569272 3.2106133 -7354.9453
+240827.0298570315 3.2107315 -7353.9609
+240828.0298571358 3.2102983 -7354.1577
+240829.0298572402 3.2097867 -7354.3545
+240830.0298573445 3.2096684 -7353.9609
+240831.0298574488 3.2096684 -7354.5513
+240832.0298575531 3.209511 -7355.1421
+240833.0298576574 3.2092354 -7354.1577
+240834.0298577617 3.2090385 -7354.3545
+240835.029857866 3.2091174 -7355.1421
+240836.0298579703 3.2090385 -7354.1577
+240837.0298580746 3.2088418 -7354.9453
+240838.0298581789 3.2087235 -7354.3545
+240839.0298582832 3.2088025 -7354.5513
+240840.0298583875 3.2084479 -7353.7646
+240841.0298584918 3.2079363 -7354.1577
+240842.0298585962 3.2075031 -7354.5513
+240843.0298587005 3.2075427 -7354.9453
+240844.0298588048 3.207267 -7353.7646
+240845.0298589091 3.2072277 -7354.5513
+240846.0298590134 3.2069914 -7354.3545
+240847.0298591177 3.2069914 -7354.5513
+240848.029859222 3.2073457 -7354.3545
+240849.0298593263 3.2075427 -7354.7485
+240850.0298594306 3.2077394 -7354.5513
+240851.0298595349 3.2074637 -7354.5513
+240852.0298596392 3.207267 -7354.3545
+240853.0298597435 3.2069125 -7354.1577
+240854.0298598479 3.2069125 -7354.3545
+240855.0298599522 3.2066371 -7354.5513
+240856.0298600565 3.2064009 -7354.1577
+240857.0298601608 3.2062039 -7354.3545
+240858.0298602651 3.2062039 -7354.9453
+240859.0298603694 3.2060072 -7354.7485
+240860.0298604737 3.2056527 -7354.7485
+240861.029860578 3.2054954 -7355.1421
+240862.0298606823 3.2057316 -7354.5513
+240863.0298607866 3.2059283 -7354.3545
+240864.0298608909 3.2058496 -7354.7485
+240865.0298609952 3.2054954 -7354.1577
+240866.0298610996 3.2051411 -7354.5513
+240867.0298612039 3.2045898 -7354.1577
+240868.0298613082 3.2039599 -7354.7485
+240869.0298614125 3.2037237 -7354.7485
+240870.0298615168 3.2032514 -7354.3545
+240871.0298616211 3.20333 -7354.3545
+240872.0298617254 3.2030938 -7354.3545
+240873.0298618297 3.2028575 -7354.3545
+240874.029861934 3.2027395 -7354.5513
+240875.0298620383 3.2023458 -7354.9453
+240876.0298621426 3.2023065 -7354.3545
+240877.0298622469 3.2024245 -7355.7324
+240878.0298623513 3.2021883 -7354.1577
+240879.0298624556 3.2019126 -7354.7485
+240880.0298625599 3.2017159 -7353.7646
+240881.0298626642 3.201637 -7354.5513
+240882.0298627685 3.2014403 -7354.5513
+240883.0298628728 3.2017159 -7354.7485
+240884.0298629771 3.2017553 -7353.7646
+240885.0298630814 3.2019916 -7354.3545
+240886.0298631857 3.2020702 -7353.7646
+240887.02986329 3.201834 -7355.1421
+240888.0298633943 3.2015584 -7354.3545
+240889.0298634986 3.2011254 -7354.1577
+240890.0298636029 3.2007711 -7355.1421
+240891.0298637073 3.2005348 -7354.3545
+240892.0298638116 3.2002592 -7354.5513
+240893.0298639159 3.1999443 -7355.3384
+240894.0298640202 3.1997867 -7354.5513
+240895.0298641245 3.1999443 -7354.1577
+240896.0298642288 3.2003772 -7354.3545
+240897.0298643331 3.2005742 -7353.7646
+240898.0298644374 3.2006922 -7355.1421
+240899.0298645417 3.2007711 -7353.9609
+240900.029864646 3.2008498 -7354.3545
+240901.0298647503 3.2008498 -7355.3384
+240902.0298648546 3.2009678 -7354.1577
+240903.029864959 3.2007711 -7353.9609
+240904.0298650633 3.2004955 -7354.1577
+240905.0298651676 3.2004561 -7354.7485
+240906.0298652719 3.2004166 -7354.9453
+240907.0298653762 3.2001412 -7354.7485
+240908.0298654805 3.1997473 -7353.7646
+240909.0298655848 3.199275 -7354.5513
+240910.0298656891 3.1989207 -7354.3545
+240911.0298657934 3.1986451 -7354.7485
+240912.0298658977 3.1980546 -7354.3545
+240913.029866002 3.1977003 -7354.7485
+240914.0298661063 3.1972277 -7354.9453
+240915.0298662107 3.1968734 -7354.9453
+240916.029866315 3.1965585 -7354.1577
+240917.0298664193 3.1964405 -7355.3384
+240918.0298665236 3.1962829 -7354.3545
+240919.0298666279 3.1960859 -7354.7485
+240920.0298667322 3.1956136 -7354.9453
+240921.0298668365 3.1955349 -7353.9609
+240922.0298669408 3.1955349 -7354.1577
+240923.0298670451 3.195338 -7354.7485
+240924.0298671494 3.19522 -7354.3545
+240925.0298672537 3.1952593 -7354.1577
+240926.029867358 3.1949444 -7354.9453
+240927.0298674623 3.1946294 -7354.3545
+240928.0298675667 3.1945112 -7354.7485
+240929.029867671 3.1941962 -7354.5513
+240930.0298677753 3.1939206 -7354.1577
+240931.0298678796 3.1937633 -7354.5513
+240932.0298679839 3.1936057 -7354.3545
+240933.0298680882 3.193409 -7354.5513
+240934.0298681925 3.1931334 -7354.5513
+240935.0298682968 3.1928971 -7354.3545
+240936.0298684011 3.1932907 -7355.1421
+240937.0298685054 3.1931727 -7354.5513
+240938.0298686097 3.1928971 -7354.5513
+240939.029868714 3.1924641 -7353.9609
+240940.0298688184 3.1919916 -7354.3545
+240941.0298689227 3.1914403 -7353.9609
+240942.029869027 3.1913223 -7354.3545
+240943.0298691313 3.1911647 -7354.3545
+240944.0298692356 3.1910467 -7354.1577
+240945.0298693399 3.1908891 -7353.1738
+240946.0298694442 3.1905348 -7354.9453
+240947.0298695485 3.1900232 -7354.1577
+240948.0298696528 3.189472 -7354.7485
+240949.0298697571 3.1893144 -7354.1577
+240950.0298698614 3.1892357 -7353.5669
+240951.0298699657 3.1892357 -7353.7646
+240952.0298700701 3.1891963 -7354.5513
+240953.0298701744 3.1891177 -7354.5513
+240954.0298702787 3.1891177 -7354.9453
+240955.029870383 3.1886845 -7353.9609
+240956.0298704873 3.1884878 -7354.3545
+240957.0298705916 3.1884089 -7355.1421
+240958.0298706959 3.1883302 -7354.7485
+240959.0298708002 3.1880546 -7354.3545
+240960.0298709045 3.1878972 -7353.7646
+240961.0298710088 3.1875429 -7354.5513
+240962.0298711131 3.1872673 -7354.7485
+240963.0298712174 3.1870704 -7353.9609
+240964.0298713217 3.1869524 -7354.5513
+240965.0298714261 3.1865191 -7354.7485
+240966.0298715304 3.1860862 -7354.7485
+240967.0298716347 3.1858499 -7354.3545
+240968.029871739 3.1852593 -7354.3545
+240969.0298718433 3.1849051 -7354.9453
+240970.0298719476 3.1850231 -7355.3384
+240971.0298720519 3.1853776 -7354.3545
+240972.0298721562 3.1854169 -7354.7485
+240973.0298722605 3.1856136 -7354.5513
+240974.0298723648 3.185535 -7353.7646
+240975.0298724691 3.1854169 -7353.7646
+240976.0298725734 3.1856136 -7354.7485
+240977.0298726778 3.185535 -7353.7646
+240978.0298727821 3.1854563 -7354.9453
+240979.0298728864 3.18522 -7354.7485
+240980.0298729907 3.185102 -7354.3545
+240981.029873095 3.1847477 -7355.1421
+240982.0298731993 3.1842752 -7354.5513
+240983.0298733036 3.1836452 -7354.9453
+240984.0298734079 3.1834877 -7354.1577
+240985.0298735122 3.183291 -7354.9453
+240986.0298736165 3.182976 -7354.1577
+240987.0298737208 3.1828973 -7354.1577
+240988.0298738251 3.1828184 -7354.5513
+240989.0298739295 3.1825035 -7355.1421
+240990.0298740338 3.1822674 -7353.9609
+240991.0298741381 3.1822674 -7354.1577
+240992.0298742424 3.1821492 -7354.3545
+240993.0298743467 3.1818736 -7354.1577
+240994.029874451 3.1818736 -7354.9453
+240995.0298745553 3.1814799 -7354.7485
+240996.0298746596 3.181165 -7354.5513
+240997.0298747639 3.1806138 -7353.5669
+240998.0298748682 3.1801414 -7354.1577
+240999.0298749725 3.1795902 -7354.9453
+241000.0298750768 3.1790783 -7354.1577
+241001.0298751812 3.1785667 -7354.3545
+241002.0298752855 3.1783698 -7354.9453
+241003.0298753898 3.1779366 -7354.1577
+241004.0298754941 3.1778579 -7354.1577
+241005.0298755984 3.1779366 -7354.7485
+241006.0298757027 3.1774642 -7354.1577
+241007.029875807 3.1773067 -7354.5513
+241008.0298759113 3.177228 -7354.3545
+241009.0298760156 3.177228 -7354.3545
+241010.0298761199 3.1771493 -7354.3545
+241011.0298762242 3.1771493 -7354.7485
+241012.0298763285 3.17711 -7353.7646
+241013.0298764328 3.1769917 -7354.1577
+241014.0298765372 3.177228 -7354.5513
+241015.0298766415 3.1771886 -7354.3545
+241016.0298767458 3.1765981 -7354.3545
+241017.0298768501 3.1762438 -7354.3545
+241018.0298769544 3.1757712 -7353.7646
+241019.0298770587 3.1754959 -7354.1577
+241020.029877163 3.1752596 -7354.5513
+241021.0298772673 3.1749446 -7355.1421
+241022.0298773716 3.1746297 -7354.3545
+241023.0298774759 3.1742358 -7354.1577
+241024.0298775802 3.1737242 -7354.1577
+241025.0298776845 3.1736848 -7354.3545
+241026.0298777889 3.1735272 -7355.1421
+241027.0298778932 3.1734486 -7354.3545
+241028.0298779975 3.1732516 -7354.1577
+241029.0298781018 3.1730549 -7354.3545
+241030.0298782061 3.1725824 -7353.9609
+241031.0298783104 3.1720705 -7355.1421
+241032.0298784147 3.1715195 -7354.9453
+241033.029878519 3.1708107 -7354.1577
+241034.0298786233 3.1705351 -7354.3545
+241035.0298787276 3.1704957 -7354.5513
+241036.0298788319 3.1703384 -7354.3545
+241037.0298789362 3.1701415 -7354.5513
+241038.0298790406 3.1699052 -7354.1577
+241039.0298791449 3.1695902 -7353.1738
+241040.0298792492 3.1693935 -7355.1421
+241041.0298793535 3.1693935 -7354.5513
+241042.0298794578 3.1695902 -7354.9453
+241043.0298795621 3.1696692 -7354.7485
+241044.0298796664 3.1699052 -7354.1577
+241045.0298797707 3.1699448 -7354.9453
+241046.029879875 3.1698658 -7353.5669
+241047.0298799793 3.1697872 -7354.3545
+241048.0298800836 3.1694722 -7354.1577
+241049.0298801879 3.1691573 -7354.1577
+241050.0298802922 3.1686454 -7353.7646
+241051.0298803966 3.1683304 -7353.3706
+241052.0298805009 3.1683304 -7355.3384
+241053.0298806052 3.1682124 -7353.9609
+241054.0298807095 3.1683304 -7354.9453
+241055.0298808138 3.1682124 -7354.9453
+241056.0298809181 3.1684487 -7354.9453
+241057.0298810224 3.1685274 -7354.5513
+241058.0298811267 3.1681337 -7354.5513
+241059.029881231 3.1678975 -7354.3545
+241060.0298813353 3.1675825 -7354.3545
+241061.0298814396 3.1670706 -7354.3545
+241062.0298815439 3.1667557 -7354.9453
+241063.0298816483 3.1666377 -7354.1577
+241064.0298817526 3.1665983 -7354.9453
+241065.0298818569 3.1664014 -7353.9609
+241066.0298819612 3.1662045 -7354.7485
+241067.0298820655 3.166362 -7354.7485
+241068.0298821698 3.1664801 -7354.7485
+241069.0298822741 3.1666377 -7354.7485
+241070.0298823784 3.1664801 -7354.5513
+241071.0298824827 3.1665194 -7353.9609
+241072.029882587 3.1663227 -7355.1421
+241073.0298826913 3.1658502 -7354.5513
+241074.0298827956 3.1653385 -7353.3706
+241075.0298829 3.1647873 -7354.1577
+241076.0298830043 3.1643937 -7354.5513
+241077.0298831086 3.1641574 -7354.9453
+241078.0298832129 3.1637242 -7354.7485
+241079.0298833172 3.1629369 -7354.5513
+241080.0298834215 3.1622677 -7354.3545
+241081.0298835258 3.1621101 -7354.7485
+241082.0298836301 3.1620708 -7355.1421
+241083.0298837344 3.1620314 -7354.7485
+241084.0298838387 3.1617558 -7354.3545
+241085.029883943 3.1617558 -7353.9609
+241086.0298840473 3.1616771 -7354.5513
+241087.0298841516 3.1616378 -7355.1421
+241088.029884256 3.1615589 -7353.7646
+241089.0298843603 3.1619132 -7354.7485
+241090.0298844646 3.1620314 -7353.9609
+241091.0298845689 3.1619132 -7354.3545
+241092.0298846732 3.1615982 -7354.1577
+241093.0298847775 3.1612833 -7354.5513
+241094.0298848818 3.1608109 -7354.3545
+241095.0298849861 3.1608896 -7354.1577
+241096.0298850904 3.1608109 -7353.5669
+241097.0298851947 3.1604173 -7354.5513
+241098.029885299 3.1600628 -7353.5669
+241099.0298854033 3.1595511 -7354.7485
+241100.0298855077 3.1598661 -7354.7485
+241101.029885612 3.1599448 -7354.7485
+241102.0298857163 3.1600628 -7353.5669
+241103.0298858206 3.1597085 -7354.7485
+241104.0298859249 3.1596692 -7353.9609
+241105.0298860292 3.1596298 -7354.3545
+241106.0298861335 3.1597478 -7354.7485
+241107.0298862378 3.1598661 -7354.3545
+241108.0298863421 3.1599448 -7354.1577
+241109.0298864464 3.1596298 -7354.7485
+241110.0298865507 3.1591575 -7354.3545
+241111.029886655 3.1589212 -7354.7485
+241112.0298867594 3.1587636 -7354.5513
+241113.0298868637 3.1585274 -7354.5513
+241114.029886968 3.1586063 -7354.9453
+241115.0298870723 3.1586456 -7354.7485
+241116.0298871766 3.1586456 -7354.5513
+241117.0298872809 3.158803 -7354.3545
+241118.0298873852 3.1582913 -7354.3545
+241119.0298874895 3.1578581 -7354.1577
+241120.0298875938 3.1577401 -7354.3545
+241121.0298876981 3.1575825 -7355.1421
+241122.0298878024 3.1573465 -7353.7646
+241123.0298879067 3.1573071 -7353.7646
+241124.029888011 3.1567953 -7354.7485
+241125.0298881154 3.156244 -7354.1577
+241126.0298882197 3.1560471 -7355.1421
+241127.029888324 3.1558504 -7354.5513
+241128.0298884283 3.1554961 -7353.7646
+241129.0298885326 3.1550236 -7353.7646
+241130.0298886369 3.1548266 -7354.3545
+241131.0298887412 3.1549056 -7354.9453
+241132.0298888455 3.1547873 -7353.9609
+241133.0298889498 3.1542757 -7354.1577
+241134.0298890541 3.1536458 -7354.9453
+241135.0298891584 3.1533701 -7355.1421
+241136.0298892627 3.1531732 -7353.9609
+241137.0298893671 3.1527796 -7354.5513
+241138.0298894714 3.1521497 -7353.5669
+241139.0298895757 3.1520314 -7354.5513
+241140.02988968 3.1521497 -7355.1421
+241141.0298897843 3.152071 -7354.7485
+241142.0298898886 3.1519921 -7353.9609
+241143.0298899929 3.1521103 -7353.7646
+241144.0298900972 3.1519527 -7354.1577
+241145.0298902015 3.1519527 -7353.9609
+241146.0298903058 3.152071 -7354.5513
+241147.0298904101 3.1524253 -7353.9609
+241148.0298905144 3.1527402 -7354.7485
+241149.0298906188 3.1526613 -7354.1577
+241150.0298907231 3.1527796 -7354.3545
+241151.0298908274 3.1526613 -7354.5513
+241152.0298909317 3.1521103 -7354.5513
+241153.029891036 3.1513622 -7354.3545
+241154.0298911403 3.1507716 -7353.7646
+241155.0298912446 3.1502993 -7354.7485
+241156.0298913489 3.1497481 -7354.5513
+241157.0298914532 3.1491182 -7354.7485
+241158.0298915575 3.1489213 -7354.5513
+241159.0298916618 3.1486852 -7354.9453
+241160.0298917661 3.1483307 -7354.5513
+241161.0298918705 3.1482127 -7354.3545
+241162.0298919748 3.1474648 -7354.3545
+241163.0298920791 3.1471891 -7354.5513
+241164.0298921834 3.1473858 -7354.1577
+241165.0298922877 3.1472678 -7355.3384
+241166.029892392 3.1470315 -7354.3545
+241167.0298924963 3.1469135 -7353.5669
+241168.0298926006 3.1465592 -7354.1577
+241169.0298927049 3.1464016 -7354.3545
+241170.0298928092 3.1465986 -7353.7646
+241171.0298929135 3.1464016 -7353.7646
+241172.0298930178 3.1462836 -7355.1421
+241173.0298931221 3.1460474 -7353.7646
+241174.0298932265 3.1458504 -7353.9609
+241175.0298933308 3.1453781 -7354.9453
+241176.0298934351 3.1447089 -7354.7485
+241177.0298935394 3.1443939 -7354.5513
+241178.0298936437 3.1442757 -7354.7485
+241179.029893748 3.144079 -7354.5513
+241180.0298938523 3.1438034 -7353.7646
+241181.0298939566 3.1436064 -7354.7485
+241182.0298940609 3.1436064 -7353.9609
+241183.0298941652 3.1434095 -7354.1577
+241184.0298942695 3.1432915 -7354.9453
+241185.0298943738 3.1433702 -7354.9453
+241186.0298944782 3.1434884 -7354.3545
+241187.0298945825 3.1431735 -7354.9453
+241188.0298946868 3.1430945 -7353.7646
+241189.0298947911 3.1430552 -7354.5513
+241190.0298948954 3.1426222 -7353.5669
+241191.0298949997 3.142504 -7355.3384
+241192.029895104 3.1427796 -7354.3545
+241193.0298952083 3.1429372 -7354.1577
+241194.0298953126 3.1430159 -7353.9609
+241195.0298954169 3.1429765 -7353.9609
+241196.0298955212 3.1430552 -7354.9453
+241197.0298956255 3.1430159 -7354.7485
+241198.0298957299 3.1427796 -7354.9453
+241199.0298958342 3.1426222 -7353.7646
+241200.0298959385 3.1424253 -7354.1577
+241201.0298960428 3.1425436 -7354.9453
+241202.0298961471 3.1428192 -7355.5352
+241203.0298962514 3.1431341 -7354.7485
+241204.0298963557 3.1432128 -7354.1577
+241205.02989646 3.1431341 -7354.9453
+241206.0298965643 3.1428585 -7355.1421
+241207.0298966686 3.1425436 -7355.5352
+241208.0298967729 3.1423073 -7355.1421
+241209.0298968772 3.1419137 -7354.3545
+241210.0298969815 3.1416774 -7354.5513
+241211.0298970859 3.1413624 -7353.7646
+241212.0298971902 3.1411655 -7354.5513
+241213.0298972945 3.1406932 -7354.7485
+241214.0298973988 3.1406932 -7354.3545
+241215.0298975031 3.1404963 -7354.9453
+241216.0298976074 3.1401813 -7355.5352
+241217.0298977117 3.1398664 -7354.9453
+241218.029897816 3.1395121 -7354.7485
+241219.0298979203 3.1391578 -7353.9609
+241220.0298980246 3.1388032 -7353.7646
+241221.0298981289 3.1386065 -7354.3545
+241222.0298982332 3.1383309 -7354.3545
+241223.0298983376 3.137898 -7355.1421
+241224.0298984419 3.1378191 -7354.3545
+241225.0298985462 3.1374648 -7355.1421
+241226.0298986505 3.1370318 -7354.5513
+241227.0298987548 3.1363626 -7354.3545
+241228.0298988591 3.1360476 -7354.3545
+241229.0298989634 3.1359293 -7355.1421
+241230.0298990677 3.1358507 -7354.7485
+241231.029899172 3.1351025 -7354.9453
+241232.0298992763 3.1347482 -7354.5513
+241233.0298993806 3.1345515 -7354.1577
+241234.0298994849 3.1343546 -7354.1577
+241235.0298995893 3.1344333 -7354.3545
+241236.0298996936 3.1340003 -7354.1577
+241237.0298997979 3.1337247 -7354.3545
+241238.0298999022 3.1334097 -7354.9453
+241239.0299000065 3.1330554 -7354.7485
+241240.0299001108 3.1327012 -7355.1421
+241241.0299002151 3.1319137 -7354.1577
+241242.0299003194 3.1313231 -7354.5513
+241243.0299004237 3.1309295 -7354.9453
+241244.029900528 3.1309688 -7354.9453
+241245.0299006323 3.1312051 -7353.9609
+241246.0299007366 3.1315594 -7354.9453
+241247.0299008409 3.1312051 -7354.3545
+241248.0299009453 3.1303782 -7354.5513
+241249.0299010496 3.1300633 -7353.9609
+241250.0299011539 3.1295121 -7354.5513
+241251.0299012582 3.1290791 -7355.1421
+241252.0299013625 3.1287248 -7354.5513
+241253.0299014668 3.1286066 -7353.7646
+241254.0299015711 3.1285672 -7354.7485
+241255.0299016754 3.1282523 -7355.1421
+241256.0299017797 3.12778 -7354.3545
+241257.029901884 3.1272681 -7354.3545
+241258.0299019883 3.1267562 -7354.7485
+241259.0299020926 3.1265595 -7354.1577
+241260.029902197 3.1264808 -7354.9453
+241261.0299023013 3.1263626 -7354.5513
+241262.0299024056 3.1252997 -7354.5513
+241263.0299025099 3.1242759 -7353.3706
+241264.0299026142 3.123961 -7354.3545
+241265.0299027185 3.1234887 -7354.7485
+241266.0299028228 3.1233311 -7353.9609
+241267.0299029271 3.1230161 -7353.9609
+241268.0299030314 3.1227405 -7354.5513
+241269.0299031357 3.1225045 -7354.1577
+241270.02990324 3.121835 -7354.9453
+241271.0299033443 3.1214807 -7354.7485
+241272.0299034487 3.1211264 -7354.3545
+241273.029903553 3.1207721 -7354.9453
+241274.0299036573 3.1207721 -7354.7485
+241275.0299037616 3.1203392 -7353.5669
+241276.0299038659 3.1199059 -7354.5513
+241277.0299039702 3.1199846 -7354.5513
+241278.0299040745 3.1198273 -7354.7485
+241279.0299041788 3.119591 -7353.7646
+241280.0299042831 3.1190791 -7354.7485
+241281.0299043874 3.1184099 -7354.1577
+241282.0299044917 3.1178193 -7354.9453
+241283.029904596 3.117662 -7354.7485
+241284.0299047004 3.1175044 -7354.7485
+241285.0299048047 3.1174257 -7353.9609
+241286.029904909 3.1169138 -7353.9609
+241287.0299050133 3.1165988 -7354.7485
+241288.0299051176 3.1159689 -7353.9609
+241289.0299052219 3.1156147 -7354.1577
+241290.0299053262 3.115221 -7355.1421
+241291.0299054305 3.115221 -7354.3545
+241292.0299055348 3.1151423 -7354.1577
+241293.0299056391 3.1150241 -7355.3384
+241294.0299057434 3.1145518 -7354.3545
+241295.0299058477 3.1144731 -7354.5513
+241296.029905952 3.1141975 -7354.5513
+241297.0299060564 3.1139219 -7354.3545
+241298.0299061607 3.1137643 -7354.9453
+241299.029906265 3.1133707 -7353.7646
+241300.0299063693 3.1131344 -7354.7485
+241301.0299064736 3.1128194 -7354.3545
+241302.0299065779 3.1126227 -7354.9453
+241303.0299066822 3.1125045 -7354.3545
+241304.0299067865 3.1122289 -7353.7646
+241305.0299068908 3.1119139 -7353.9609
+241306.0299069951 3.1116383 -7354.7485
+241307.0299070994 3.1116776 -7355.1421
+241308.0299072037 3.1117172 -7354.1577
+241309.0299073081 3.1115203 -7353.9609
+241310.0299074124 3.1112447 -7353.9609
+241311.0299075167 3.1110084 -7354.7485
+241312.029907621 3.1109297 -7355.1421
+241313.0299077253 3.1103785 -7354.7485
+241314.0299078296 3.1097879 -7354.7485
+241315.0299079339 3.1091187 -7354.1577
+241316.0299080382 3.1090007 -7353.3706
+241317.0299081425 3.10904 -7354.5513
+241318.0299082468 3.1086857 -7354.1577
+241319.0299083511 3.1081345 -7353.7646
+241320.0299084554 3.1078196 -7353.7646
+241321.0299085598 3.1074653 -7355.1421
+241322.0299086641 3.1070716 -7354.3545
+241323.0299087684 3.1067567 -7354.7485
+241324.0299088727 3.1065204 -7354.5513
+241325.029908977 3.1063628 -7353.9609
+241326.0299090813 3.1061661 -7354.7485
+241327.0299091856 3.1062841 -7355.3384
+241328.0299092899 3.1064811 -7354.3545
+241329.0299093942 3.1063628 -7354.9453
+241330.0299094985 3.1058905 -7354.9453
+241331.0299096028 3.1053786 -7354.9453
+241332.0299097071 3.1048667 -7355.3384
+241333.0299098114 3.1045125 -7354.7485
+241334.0299099158 3.1041188 -7353.9609
+241335.0299100201 3.1038432 -7354.5513
+241336.0299101244 3.1035676 -7354.1577
+241337.0299102287 3.1036463 -7355.1421
+241338.029910333 3.1039219 -7353.7646
+241339.0299104373 3.1038432 -7354.3545
+241340.0299105416 3.1034102 -7354.5513
+241341.0299106459 3.1030557 -7354.7485
+241342.0299107502 3.1030557 -7354.5513
+241343.0299108545 3.1027408 -7354.7485
+241344.0299109588 3.1024654 -7353.9609
+241345.0299110631 3.1019928 -7354.7485
+241346.0299111675 3.1013629 -7355.1421
+241347.0299112718 3.100733 -7354.1577
+241348.0299113761 3.1004968 -7354.5513
+241349.0299114804 3.1004181 -7354.5513
+241350.0299115847 3.1002605 -7354.9453
+241351.029911689 3.0997095 -7354.7485
+241352.0299117933 3.0996306 -7353.7646
+241353.0299118976 3.0993946 -7353.9609
+241354.0299120019 3.0990007 -7354.1577
+241355.0299121062 3.0985284 -7354.7485
+241356.0299122105 3.0981348 -7355.1421
+241357.0299123148 3.0980558 -7354.7485
+241358.0299124192 3.0980952 -7354.1577
+241359.0299125235 3.0980952 -7355.3384
+241360.0299126278 3.0980165 -7354.3545
+241361.0299127321 3.0977802 -7353.9609
+241362.0299128364 3.0972292 -7354.1577
+241363.0299129407 3.0967567 -7354.5513
+241364.029913045 3.0960481 -7354.9453
+241365.0299131493 3.0953789 -7354.9453
+241366.0299132536 3.0947094 -7354.3545
+241367.0299133579 3.0941584 -7354.9453
+241368.0299134622 3.0934889 -7354.5513
+241369.0299135665 3.0930953 -7354.3545
+241370.0299136708 3.0927804 -7354.3545
+241371.0299137752 3.0923474 -7354.1577
+241372.0299138795 3.0919931 -7355.1421
+241373.0299139838 3.0918355 -7354.1577
+241374.0299140881 3.0914812 -7354.5513
+241375.0299141924 3.0912843 -7354.5513
+241376.0299142967 3.0908906 -7354.9453
+241377.029914401 3.0906937 -7354.9453
+241378.0299145053 3.0900638 -7354.1577
+241379.0299146096 3.0895522 -7353.9609
+241380.0299147139 3.0890009 -7354.3545
+241381.0299148182 3.0886467 -7354.5513
+241382.0299149225 3.0880167 -7354.1577
+241383.0299150269 3.0874655 -7354.1577
+241384.0299151312 3.0869536 -7354.9453
+241385.0299152355 3.086678 -7354.5513
+241386.0299153398 3.0862844 -7353.5669
+241387.0299154441 3.086127 -7353.9609
+241388.0299155484 3.0859694 -7354.5513
+241389.0299156527 3.0853395 -7353.7646
+241390.029915757 3.0850246 -7354.3545
+241391.0299158613 3.0849066 -7354.3545
+241392.0299159656 3.084867 -7354.9453
+241393.0299160699 3.0846703 -7354.9453
+241394.0299161742 3.0845127 -7354.3545
+241395.0299162786 3.0841584 -7354.1577
+241396.0299163829 3.0839617 -7354.5513
+241397.0299164872 3.0836468 -7354.3545
+241398.0299165915 3.0832529 -7354.5513
+241399.0299166958 3.0830166 -7354.9453
+241400.0299168001 3.0827806 -7353.7646
+241401.0299169044 3.0824263 -7354.1577
+241402.0299170087 3.0821114 -7354.5513
+241403.029917113 3.0817964 -7354.9453
+241404.0299172173 3.0814025 -7353.7646
+241405.0299173216 3.0809696 -7354.5513
+241406.0299174259 3.0803397 -7354.1577
+241407.0299175303 3.0799854 -7354.5513
+241408.0299176346 3.0793555 -7354.7485
+241409.0299177389 3.0788829 -7354.5513
+241410.0299178432 3.078371 -7354.5513
+241411.0299179475 3.0780957 -7354.7485
+241412.0299180518 3.0777018 -7354.1577
+241413.0299181561 3.0773869 -7354.1577
+241414.0299182604 3.0771506 -7354.5513
+241415.0299183647 3.0769145 -7353.7646
+241416.029918469 3.0766389 -7353.9609
+241417.0299185733 3.0763633 -7354.7485
+241418.0299186776 3.0760484 -7354.7485
+241419.0299187819 3.0761271 -7355.3384
+241420.0299188863 3.0757334 -7353.7646
+241421.0299189906 3.0751822 -7354.9453
+241422.0299190949 3.0747099 -7354.3545
+241423.0299191992 3.074198 -7354.5513
+241424.0299193035 3.0738437 -7354.3545
+241425.0299194078 3.0734499 -7354.7485
+241426.0299195121 3.0733318 -7354.1577
+241427.0299196164 3.0731745 -7354.9453
+241428.0299197207 3.0729775 -7354.3545
+241429.029919825 3.0728989 -7353.9609
+241430.0299199293 3.0726626 -7354.3545
+241431.0299200336 3.0721507 -7354.9453
+241432.029920138 3.0718751 -7353.9609
+241433.0299202423 3.0716784 -7354.9453
+241434.0299203466 3.0712845 -7354.9453
+241435.0299204509 3.0712452 -7353.7646
+241436.0299205552 3.0710092 -7354.5513
+241437.0299206595 3.0708122 -7354.5513
+241438.0299207638 3.0706546 -7355.3384
+241439.0299208681 3.0702217 -7354.3545
+241440.0299209724 3.0697491 -7354.5513
+241441.0299210767 3.0691981 -7354.1577
+241442.029921181 3.0687256 -7353.9609
+241443.0299212853 3.0680957 -7354.7485
+241444.0299213897 3.0677414 -7354.5513
+241445.029921494 3.0675051 -7353.7646
+241446.0299215983 3.0670328 -7354.5513
+241447.0299217026 3.0664029 -7354.1577
+241448.0299218069 3.0656941 -7353.9609
+241449.0299219112 3.0651824 -7354.7485
+241450.0299220155 3.0647492 -7354.1577
+241451.0299221198 3.0643556 -7354.3545
+241452.0299222241 3.0640013 -7354.3545
+241453.0299223284 3.0632925 -7354.5513
+241454.0299224327 3.0629382 -7354.7485
+241455.029922537 3.0628202 -7354.1577
+241456.0299226413 3.0626233 -7354.9453
+241457.0299227457 3.0623477 -7354.3545
+241458.02992285 3.061954 -7353.9609
+241459.0299229543 3.0615604 -7354.1577
+241460.0299230586 3.0611668 -7354.9453
+241461.0299231629 3.0606549 -7354.3545
+241462.0299232672 3.0603399 -7353.7646
+241463.0299233715 3.0600643 -7354.1577
+241464.0299234758 3.05971 -7353.7646
+241465.0299235801 3.0595131 -7354.9453
+241466.0299236844 3.0592768 -7354.5513
+241467.0299237887 3.0590801 -7354.3545
+241468.029923893 3.0588832 -7354.7485
+241469.0299239974 3.0586469 -7354.5513
+241470.0299241017 3.0582139 -7354.3545
+241471.029924206 3.0578597 -7354.1577
+241472.0299243103 3.057466 -7353.5669
+241473.0299244146 3.0573084 -7355.3384
+241474.0299245189 3.0570328 -7353.9609
+241475.0299246232 3.0567179 -7353.9609
+241476.0299247275 3.0565209 -7354.5513
+241477.0299248318 3.056088 -7354.3545
+241478.0299249361 3.055655 -7354.5513
+241479.0299250404 3.0549068 -7354.1577
+241480.0299251447 3.0542769 -7354.3545
+241481.0299252491 3.0535684 -7354.9453
+241482.0299253534 3.0530565 -7354.3545
+241483.0299254577 3.0523872 -7354.3545
+241484.029925562 3.051718 -7354.5513
+241485.0299256663 3.0512455 -7354.5513
+241486.0299257706 3.0504975 -7354.9453
+241487.0299258749 3.049789 -7354.7485
+241488.0299259792 3.0491984 -7354.3545
+241489.0299260835 3.0487258 -7354.5513
+241490.0299261878 3.0481353 -7353.7646
+241491.0299262921 3.0475843 -7355.1421
+241492.0299263964 3.0472298 -7353.5669
+241493.0299265007 3.0466392 -7354.5513
+241494.0299266051 3.0461276 -7355.1421
+241495.0299267094 3.0459306 -7354.9453
+241496.0299268137 3.045655 -7354.1577
+241497.029926918 3.0451827 -7354.7485
+241498.0299270223 3.0445135 -7354.5513
+241499.0299271266 3.043844 -7355.1421
+241500.0299272309 3.0430961 -7354.9453
+241501.0299273352 3.0423086 -7354.3545
+241502.0299274395 3.0418363 -7353.9609
+241503.0299275438 3.0411277 -7354.3545
+241504.0299276481 3.0405765 -7354.7485
+241505.0299277524 3.0400646 -7354.7485
+241506.0299278568 3.039356 -7354.3545
+241507.0299279611 3.0389228 -7354.5513
+241508.0299280654 3.0384898 -7354.5513
+241509.0299281697 3.037545 -7354.7485
+241510.029928274 3.0366788 -7354.3545
+241511.0299283783 3.0359309 -7355.3384
+241512.0299284826 3.0353403 -7354.7485
+241513.0299285869 3.0346711 -7354.7485
+241514.0299286912 3.0341985 -7354.3545
+241515.0299287955 3.0338442 -7354.7485
+241516.0299288998 3.0335293 -7354.7485
+241517.0299290041 3.0328994 -7353.5669
+241518.0299291085 3.0323088 -7354.7485
+241519.0299292128 3.0319152 -7354.5513
+241520.0299293171 3.0313246 -7354.3545
+241521.0299294214 3.0307734 -7355.5352
+241522.0299295257 3.0303009 -7353.9609
+241523.02992963 3.0299859 -7354.9453
+241524.0299297343 3.0295923 -7354.1577
+241525.0299298386 3.0289624 -7354.1577
+241526.0299299429 3.0283325 -7355.3384
+241527.0299300472 3.0277026 -7353.7646
+241528.0299301515 3.0270333 -7354.1577
+241529.0299302558 3.026679 -7354.3545
+241530.0299303602 3.0262458 -7354.5513
+241531.0299304645 3.0257735 -7354.9453
+241532.0299305688 3.0253403 -7353.9609
+241533.0299306731 3.0250254 -7354.3545
+241534.0299307774 3.024868 -7354.7485
+241535.0299308817 3.0245531 -7354.3545
+241536.029930986 3.0240018 -7354.9453
+241537.0299310903 3.0236869 -7354.7485
+241538.0299311946 3.0232143 -7354.3545
+241539.0299312989 3.0227814 -7355.1421
+241540.0299314032 3.0223088 -7354.5513
+241541.0299315075 3.0221515 -7354.3545
+241542.0299316118 3.0219939 -7353.7646
+241543.0299317162 3.0217578 -7353.9609
+241544.0299318205 3.0214822 -7354.5513
+241545.0299319248 3.0212853 -7353.3706
+241546.0299320291 3.021246 -7354.7485
+241547.0299321334 3.0210886 -7353.9609
+241548.0299322377 3.0210886 -7354.1577
+241549.029932342 3.0206161 -7353.5669
+241550.0299324463 3.0202224 -7354.5513
+241551.0299325506 3.0197892 -7355.1421
+241552.0299326549 3.0196712 -7355.5352
+241553.0299327592 3.0191987 -7354.7485
+241554.0299328635 3.0187263 -7354.1577
+241555.0299329679 3.0180964 -7354.9453
+241556.0299330722 3.0175846 -7354.7485
+241557.0299331765 3.017309 -7354.3545
+241558.0299332808 3.016876 -7354.5513
+241559.0299333851 3.0164428 -7354.9453
+241560.0299334894 3.0162067 -7354.1577
+241561.0299335937 3.0159705 -7354.9453
+241562.029933698 3.0155375 -7355.3384
+241563.0299338023 3.0152223 -7354.3545
+241564.0299339066 3.0150256 -7353.7646
+241565.0299340109 3.0148287 -7354.7485
+241566.0299341152 3.0145137 -7354.1577
+241567.0299342196 3.0139232 -7354.3545
+241568.0299343239 3.0134509 -7353.5669
+241569.0299344282 3.0127816 -7353.5669
+241570.0299345325 3.0122304 -7354.3545
+241571.0299346368 3.0116005 -7354.1577
+241572.0299347411 3.0114036 -7354.3545
+241573.0299348454 3.0109313 -7354.1577
+241574.0299349497 3.010498 -7354.5513
+241575.029935054 3.0098288 -7354.3545
+241576.0299351583 3.0091202 -7354.7485
+241577.0299352626 3.008451 -7353.9609
+241578.0299353669 3.0079784 -7354.3545
+241579.0299354712 3.0075059 -7354.5513
+241580.0299355756 3.0071909 -7354.7485
+241581.0299356799 3.0066793 -7354.1577
+241582.0299357842 3.0062068 -7355.1421
+241583.0299358885 3.0053802 -7354.5513
+241584.0299359928 3.0049469 -7354.7485
+241585.0299360971 3.004199 -7354.3545
+241586.0299362014 3.0037265 -7354.5513
+241587.0299363057 3.0032935 -7355.5352
+241588.02993641 3.0025454 -7354.3545
+241589.0299365143 3.0021911 -7354.1577
+241590.0299366186 3.0014825 -7353.7646
+241591.0299367229 3.0009706 -7353.7646
+241592.0299368273 3.0004194 -7354.9453
+241593.0299369316 2.9997501 -7354.7485
+241594.0299370359 2.9992778 -7354.1577
+241595.0299371402 2.9989235 -7355.1421
+241596.0299372445 2.9988446 -7354.5513
+241597.0299373488 2.9984903 -7353.9609
+241598.0299374531 2.9981754 -7354.1577
+241599.0299375574 2.9978604 -7354.5513
+241600.0299376617 2.9975061 -7353.7646
+241601.029937766 2.9969943 -7353.3706
+241602.0299378703 2.9967186 -7354.1577
+241603.0299379746 2.9962857 -7354.3545
+241604.029938079 2.9956558 -7354.7485
+241605.0299381833 2.9951439 -7355.1421
+241606.0299382876 2.9947503 -7354.3545
+241607.0299383919 2.993963 -7355.1421
+241608.0299384962 2.9934511 -7354.5513
+241609.0299386005 2.9928212 -7353.5669
+241610.0299387048 2.992152 -7354.3545
+241611.0299388091 2.9914432 -7354.7485
+241612.0299389134 2.9908133 -7354.1577
+241613.0299390177 2.9904983 -7354.7485
+241614.029939122 2.9900653 -7353.9609
+241615.0299392263 2.9896321 -7354.9453
+241616.0299393306 2.9890418 -7353.3706
+241617.029939435 2.9885693 -7355.1421
+241618.0299395393 2.988215 -7354.7485
+241619.0299396436 2.9877424 -7353.9609
+241620.0299397479 2.9873095 -7354.3545
+241621.0299398522 2.9869158 -7354.3545
+241622.0299399565 2.9861677 -7354.9453
+241623.0299400608 2.9853804 -7354.5513
+241624.0299401651 2.9847898 -7354.3545
+241625.0299402694 2.9842386 -7354.9453
+241626.0299403737 2.9834511 -7354.7485
+241627.029940478 2.9828606 -7354.3545
+241628.0299405823 2.9821126 -7354.3545
+241629.0299406867 2.9815221 -7353.7646
+241630.029940791 2.9810891 -7353.9609
+241631.0299408953 2.9805379 -7354.1577
+241632.0299409996 2.980026 -7354.7485
+241633.0299411039 2.9794354 -7354.7485
+241634.0299412082 2.9787662 -7354.7485
+241635.0299413125 2.978215 -7353.9609
+241636.0299414168 2.9769945 -7354.1577
+241637.0299415211 2.9756954 -7354.3545
+241638.0299416254 2.9748688 -7355.3384
+241639.0299417297 2.9746718 -7354.3545
+241640.029941834 2.9745932 -7354.1577
+241641.0299419384 2.9744749 -7353.7646
+241642.0299420427 2.9740813 -7355.1421
+241643.029942147 2.9735301 -7354.3545
+241644.0299422513 2.9731364 -7354.5513
+241645.0299423556 2.9726245 -7354.1577
+241646.0299424599 2.9723885 -7354.9453
+241647.0299425642 2.9717979 -7354.1577
+241648.0299426685 2.9709711 -7355.1421
+241649.0299427728 2.9701443 -7353.7646
+241650.0299428771 2.9693964 -7354.5513
+241651.0299429814 2.9688451 -7355.3384
+241652.0299430857 2.9682939 -7354.3545
+241653.02994319 2.967664 -7353.9609
+241654.0299432944 2.9671524 -7354.9453
+241655.0299433987 2.9667585 -7353.7646
+241656.029943503 2.9662468 -7354.7485
+241657.0299436073 2.965853 -7353.5669
+241658.0299437116 2.9651051 -7354.3545
+241659.0299438159 2.9644358 -7355.1421
+241660.0299439202 2.9639633 -7354.3545
+241661.0299440245 2.9633727 -7353.9609
+241662.0299441288 2.9627428 -7354.3545
+241663.0299442331 2.9620342 -7353.9609
+241664.0299443374 2.9616406 -7354.3545
+241665.0299444417 2.9610894 -7354.3545
+241666.0299445461 2.9606168 -7354.9453
+241667.0299446504 2.9598689 -7354.5513
+241668.0299447547 2.9590421 -7354.1577
+241669.029944859 2.9582942 -7354.1577
+241670.0299449633 2.957546 -7354.5513
+241671.0299450676 2.9568768 -7354.1577
+241672.0299451719 2.9561288 -7354.9453
+241673.0299452762 2.9556563 -7355.1421
+241674.0299453805 2.9550657 -7355.1421
+241675.0299454848 2.9545934 -7353.7646
+241676.0299455891 2.9539242 -7353.7646
+241677.0299456934 2.9532547 -7353.7646
+241678.0299457978 2.9526248 -7355.3384
+241679.0299459021 2.9519949 -7355.3384
+241680.0299460064 2.9513257 -7354.9453
+241681.0299461107 2.9506958 -7354.7485
+241682.029946215 2.9501445 -7354.1577
+241683.0299463193 2.9496329 -7354.7485
+241684.0299464236 2.9490423 -7354.3545
+241685.0299465279 2.9482942 -7353.9609
+241686.0299466322 2.9475856 -7354.7485
+241687.0299467365 2.946877 -7354.7485
+241688.0299468408 2.9461288 -7354.1577
+241689.0299469451 2.9452627 -7354.9453
+241690.0299470495 2.944751 -7354.1577
+241691.0299471538 2.9440029 -7354.7485
+241692.0299472581 2.9434912 -7353.1738
+241693.0299473624 2.9429007 -7354.5513
+241694.0299474667 2.9423101 -7353.9609
+241695.029947571 2.9417195 -7355.3384
+241696.0299476753 2.941129 -7353.9609
+241697.0299477796 2.9403021 -7354.5513
+241698.0299478839 2.9395542 -7354.1577
+241699.0299479882 2.9388456 -7354.7485
+241700.0299480925 2.9383731 -7354.3545
+241701.0299481968 2.9375463 -7355.1421
+241702.0299483011 2.9367197 -7354.5513
+241703.0299484055 2.9362864 -7353.7646
+241704.0299485098 2.9356565 -7353.9609
+241705.0299486141 2.9348693 -7354.7485
+241706.0299487184 2.9343181 -7355.3384
+241707.0299488227 2.9338455 -7354.5513
+241708.029948927 2.9334912 -7354.5513
+241709.0299490313 2.9327826 -7354.5513
+241710.0299491356 2.9318771 -7354.3545
+241711.0299492399 2.9313259 -7353.7646
+241712.0299493442 2.9306567 -7354.7485
+241713.0299494485 2.9301054 -7354.7485
+241714.0299495528 2.9294755 -7354.3545
+241715.0299496572 2.928885 -7355.3384
+241716.0299497615 2.9281764 -7355.3384
+241717.0299498658 2.9276645 -7354.3545
+241718.0299499701 2.9272709 -7354.7485
+241719.0299500744 2.926523 -7354.7485
+241720.0299501787 2.9256175 -7353.5669
+241721.029950283 2.9247906 -7354.3545
+241722.0299503873 2.9238851 -7354.3545
+241723.0299504916 2.9228222 -7354.7485
+241724.0299505959 2.9217591 -7354.7485
+241725.0299507002 2.9206569 -7354.3545
+241726.0299508045 2.9195151 -7354.7485
+241727.0299509089 2.9191608 -7354.3545
+241728.0299510132 2.9186883 -7354.9453
+241729.0299511175 2.9180584 -7354.1577
+241730.0299512218 2.9172318 -7354.5513
+241731.0299513261 2.9166017 -7354.3545
+241732.0299514304 2.9156964 -7354.3545
+241733.0299515347 2.9151452 -7355.1421
+241734.029951639 2.914279 -7354.7485
+241735.0299517433 2.9136491 -7354.5513
+241736.0299518476 2.9128616 -7354.5513
+241737.0299519519 2.9121923 -7355.5352
+241738.0299520562 2.9113655 -7354.5513
+241739.0299521605 2.910342 -7354.1577
+241740.0299522649 2.9097121 -7354.9453
+241741.0299523692 2.9092398 -7353.5669
+241742.0299524735 2.9086492 -7354.1577
+241743.0299525778 2.90798 -7354.9453
+241744.0299526821 2.9073894 -7353.5669
+241745.0299527864 2.9066019 -7355.1421
+241746.0299528907 2.9058933 -7354.3545
+241747.029952995 2.9051452 -7354.5513
+241748.0299530993 2.9047122 -7355.5352
+241749.0299532036 2.9040823 -7354.5513
+241750.0299533079 2.9036098 -7354.9453
+241751.0299534122 2.9027832 -7354.1577
+241752.0299535166 2.9019563 -7354.7485
+241753.0299536209 2.9011688 -7353.9609
+241754.0299537252 2.9006572 -7354.5513
+241755.0299538295 2.900106 -7353.9609
+241756.0299539338 2.8993974 -7354.3545
+241757.0299540381 2.8986492 -7353.9609
+241758.0299541424 2.8979013 -7353.5669
+241759.0299542467 2.8970745 -7353.7646
+241760.029954351 2.8962872 -7354.5513
+241761.0299544553 2.8953817 -7354.7485
+241762.0299545596 2.8945549 -7353.9609
+241763.0299546639 2.8938856 -7353.5669
+241764.0299547683 2.8931768 -7354.5513
+241765.0299548726 2.8927438 -7353.7646
+241766.0299549769 2.8919959 -7354.9453
+241767.0299550812 2.8912084 -7354.5513
+241768.0299551855 2.8904998 -7354.5513
+241769.0299552898 2.8898699 -7354.9453
+241770.0299553941 2.8894761 -7354.1577
+241771.0299554984 2.8888462 -7354.1577
+241772.0299556027 2.8885312 -7355.7324
+241773.029955707 2.8881376 -7354.9453
+241774.0299558113 2.8877833 -7353.7646
+241775.0299559156 2.8873107 -7355.1421
+241776.0299560199 2.8866022 -7354.7485
+241777.0299561243 2.8859723 -7355.1421
+241778.0299562286 2.8851061 -7354.1577
+241779.0299563329 2.8843975 -7354.1577
+241780.0299564372 2.8836889 -7353.9609
+241781.0299565415 2.8830984 -7354.7485
+241782.0299566458 2.8821929 -7353.9609
+241783.0299567501 2.8813267 -7354.1577
+241784.0299568544 2.8802242 -7354.3545
+241785.0299569587 2.8790433 -7353.9609
+241786.029957063 2.8781378 -7354.5513
+241787.0299571673 2.8773897 -7354.7485
+241788.0299572716 2.8765235 -7353.9609
+241789.029957376 2.8757756 -7354.7485
+241790.0299574803 2.8749881 -7354.7485
+241791.0299575846 2.8742402 -7354.5513
+241792.0299576889 2.8734922 -7354.9453
+241793.0299577932 2.8727441 -7354.5513
+241794.0299578975 2.8723111 -7353.9609
+241795.0299580018 2.8715236 -7353.9609
+241796.0299581061 2.8706574 -7354.1577
+241797.0299582104 2.8698702 -7354.3545
+241798.0299583147 2.8689647 -7354.1577
+241799.029958419 2.8682561 -7354.7485
+241800.0299585233 2.8675473 -7354.1577
+241801.0299586277 2.8667207 -7354.5513
+241802.029958732 2.8657362 -7354.1577
+241803.0299588363 2.865067 -7354.5513
+241804.0299589406 2.8640828 -7354.1577
+241805.0299590449 2.8634136 -7354.5513
+241806.0299591492 2.8626261 -7354.7485
+241807.0299592535 2.8618388 -7354.5513
+241808.0299593578 2.8612483 -7354.9453
+241809.0299594621 2.8602641 -7354.9453
+241810.0299595664 2.859201 -7354.5513
+241811.0299596707 2.8583348 -7354.5513
+241812.029959775 2.8573112 -7354.1577
+241813.0299598794 2.856524 -7354.9453
+241814.0299599837 2.8556185 -7354.1577
+241815.029960088 2.854831 -7354.1577
+241816.0299601923 2.8539255 -7353.7646
+241817.0299602966 2.8529019 -7354.5513
+241818.0299604009 2.8519964 -7354.9453
+241819.0299605052 2.8514452 -7353.7646
+241820.0299606095 2.8507366 -7354.1577
+241821.0299607138 2.8500674 -7354.9453
+241822.0299608181 2.8494375 -7355.3384
+241823.0299609224 2.84865 -7354.9453
+241824.0299610267 2.8477445 -7354.9453
+241825.029961131 2.8469176 -7354.7485
+241826.0299612354 2.846091 -7354.1577
+241827.0299613397 2.8449492 -7354.9453
+241828.029961444 2.8437681 -7354.1577
+241829.0299615483 2.8425083 -7354.5513
+241830.0299616526 2.8408155 -7354.5513
+241831.0299617569 2.8396344 -7353.9609
+241832.0299618612 2.8386502 -7354.5513
+241833.0299619655 2.8375084 -7354.3545
+241834.0299620698 2.8364453 -7354.5513
+241835.0299621741 2.8355398 -7354.9453
+241836.0299622784 2.8344376 -7355.1421
+241837.0299623827 2.8332958 -7354.1577
+241838.0299624871 2.8321147 -7354.1577
+241839.0299625914 2.8309731 -7355.1421
+241840.0299626957 2.8298314 -7354.3545
+241841.0299628 2.8285716 -7354.3545
+241842.0299629043 2.8270361 -7354.5513
+241843.0299630086 2.8249888 -7354.5513
+241844.0299631129 2.8226662 -7353.7646
+241845.0299632172 2.8212094 -7354.3545
+241846.0299633215 2.8206582 -7354.3545
+241847.0299634258 2.819989 -7354.1577
+241848.0299635301 2.8195164 -7354.7485
+241849.0299636344 2.8190835 -7354.3545
+241850.0299637388 2.8185322 -7355.3384
+241851.0299638431 2.8181779 -7354.3545
+241852.0299639474 2.8176267 -7353.9609
+241853.0299640517 2.8168001 -7354.5513
+241854.029964156 2.8158553 -7354.3545
+241855.0299642603 2.8151858 -7354.5513
+241856.0299643646 2.8144772 -7354.5513
+241857.0299644689 2.8139653 -7354.3545
+241858.0299645732 2.8134537 -7354.1577
+241859.0299646775 2.8126662 -7354.1577
+241860.0299647818 2.811682 -7354.7485
+241861.0299648861 2.8108158 -7354.5513
+241862.0299649904 2.8098316 -7354.9453
+241863.0299650948 2.8089261 -7353.7646
+241864.0299651991 2.8075089 -7354.1577
+241865.0299653034 2.8061702 -7354.9453
+241866.0299654077 2.805068 -7353.5669
+241867.029965512 2.8040836 -7354.1577
+241868.0299656163 2.8031387 -7354.1577
+241869.0299657206 2.8020365 -7354.3545
+241870.0299658249 2.8010917 -7354.5513
+241871.0299659292 2.8001468 -7354.1577
+241872.0299660335 2.7990444 -7355.3384
+241873.0299661378 2.7982965 -7354.3545
+241874.0299662421 2.7972727 -7355.1421
+241875.0299663465 2.7962492 -7354.3545
+241876.0299664508 2.7949107 -7354.7485
+241877.0299665551 2.7938082 -7354.9453
+241878.0299666594 2.7930207 -7353.9609
+241879.0299667637 2.7918792 -7354.5513
+241880.029966868 2.7910523 -7354.9453
+241881.0299669723 2.7904224 -7354.1577
+241882.0299670766 2.7892807 -7354.3545
+241883.0299671809 2.7880602 -7354.3545
+241884.0299672852 2.7866824 -7354.7485
+241885.0299673895 2.7854619 -7354.5513
+241886.0299674938 2.7841234 -7354.5513
+241887.0299675982 2.782588 -7354.1577
+241888.0299677025 2.780777 -7354.5513
+241889.0299678068 2.7797928 -7354.9453
+241890.0299679111 2.7784934 -7354.1577
+241891.0299680154 2.7774699 -7353.7646
+241892.0299681197 2.7763674 -7354.1577
+241893.029968224 2.7753439 -7353.7646
+241894.0299683283 2.7743204 -7354.1577
+241895.0299684326 2.7732966 -7354.1577
+241896.0299685369 2.7723124 -7354.3545
+241897.0299686412 2.7712889 -7354.3545
+241898.0299687455 2.770226 -7354.3545
+241899.0299688498 2.7690055 -7354.3545
+241900.0299689542 2.7677455 -7354.1577
+241901.0299690585 2.7668006 -7354.5513
+241902.0299691628 2.7655802 -7354.9453
+241903.0299692671 2.764163 -7354.5513
+241904.0299693714 2.7627063 -7354.3545
+241905.0299694757 2.7614071 -7355.3384
+241906.02996958 2.7599111 -7354.7485
+241907.0299696843 2.7587693 -7354.9453
+241908.0299697886 2.7573915 -7354.5513
+241909.0299698929 2.7561316 -7355.3384
+241910.0299699972 2.7546356 -7354.3545
+241911.0299701015 2.7532182 -7354.9453
+241912.0299702059 2.751801 -7354.9453
+241913.0299703102 2.7505019 -7354.9453
+241914.0299704145 2.7490845 -7354.5513
+241915.0299705188 2.747982 -7354.7485
+241916.0299706231 2.7466042 -7354.5513
+241917.0299707274 2.7450294 -7354.7485
+241918.0299708317 2.7435334 -7353.7646
+241919.029970936 2.7420373 -7353.7646
+241920.0299710403 2.7407775 -7354.1577
+241921.0299711446 2.7395177 -7354.3545
+241922.0299712489 2.7385728 -7354.5513
+241923.0299713532 2.737746 -7353.9609
+241924.0299714576 2.7367618 -7354.5513
+241925.0299715619 2.7357383 -7354.5513
+241926.0299716662 2.7345178 -7354.9453
+241927.0299717705 2.7330217 -7354.5513
+241928.0299718748 2.731683 -7353.9609
+241929.0299719791 2.7301872 -7354.3545
+241930.0299720834 2.7288878 -7354.1577
+241931.0299721877 2.7275887 -7353.9609
+241932.029972292 2.7260926 -7354.7485
+241933.0299723963 2.7245965 -7353.9609
+241934.0299725006 2.7232974 -7353.9609
+241935.0299726049 2.7220769 -7354.7485
+241936.0299727093 2.7208171 -7353.3706
+241937.0299728136 2.7195573 -7354.9453
+241938.0299729179 2.7182188 -7354.3545
+241939.0299730222 2.7168801 -7354.3545
+241940.0299731265 2.7156203 -7354.5513
+241941.0299732308 2.7144394 -7354.1577
+241942.0299733351 2.7132583 -7354.7485
+241943.0299734394 2.7121165 -7354.5513
+241944.0299735437 2.710896 -7354.3545
+241945.029973648 2.7097542 -7354.3545
+241946.0299737523 2.7085338 -7354.5513
+241947.0299738566 2.7072346 -7353.9609
+241948.0299739609 2.7056992 -7354.9453
+241949.0299740653 2.7036126 -7355.1421
+241950.0299741696 2.7013686 -7353.5669
+241951.0299742739 2.6994002 -7354.3545
+241952.0299743782 2.6977465 -7355.1421
+241953.0299744825 2.696408 -7354.5513
+241954.0299745868 2.6953845 -7355.1421
+241955.0299746911 2.6942821 -7353.9609
+241956.0299747954 2.6933372 -7354.3545
+241957.0299748997 2.6923137 -7354.1577
+241958.029975004 2.6910932 -7353.5669
+241959.0299751083 2.6896758 -7354.9453
+241960.0299752126 2.6881404 -7353.9609
+241961.029975317 2.6867232 -7354.5513
+241962.0299754213 2.6853845 -7354.5513
+241963.0299755256 2.684243 -7353.9609
+241964.0299756299 2.6827862 -7354.9453
+241965.0299757342 2.6813688 -7354.1577
+241966.0299758385 2.6798334 -7354.3545
+241967.0299759428 2.6783373 -7355.3384
+241968.0299760471 2.6765659 -7354.3545
+241969.0299761514 2.6750305 -7354.3545
+241970.0299762557 2.6733375 -7354.9453
+241971.02997636 2.6716053 -7354.7485
+241972.0299764643 2.6701093 -7355.3384
+241973.0299765687 2.6685345 -7354.5513
+241974.029976673 2.6670778 -7354.3545
+241975.0299767773 2.6656997 -7353.5669
+241976.0299768816 2.6643612 -7354.3545
+241977.0299769859 2.6630621 -7353.5669
+241978.0299770902 2.661566 -7354.3545
+241979.0299771945 2.660188 -7354.1577
+241980.0299772988 2.6584952 -7355.3384
+241981.0299774031 2.6569204 -7354.7485
+241982.0299775074 2.6551487 -7355.1421
+241983.0299776117 2.6535347 -7354.9453
+241984.029977716 2.6515267 -7354.5513
+241985.0299778203 2.6497157 -7354.5513
+241986.0299779247 2.6478653 -7354.1577
+241987.029978029 2.6461725 -7355.3384
+241988.0299781333 2.6445978 -7354.7485
+241989.0299782376 2.643141 -7354.7485
+241990.0299783419 2.6415663 -7354.3545
+241991.0299784462 2.6398339 -7354.3545
+241992.0299785505 2.6381018 -7354.5513
+241993.0299786548 2.6362121 -7354.3545
+241994.0299787591 2.6341648 -7353.5669
+241995.0299788634 2.6322358 -7354.3545
+241996.0299789677 2.6302278 -7353.7646
+241997.029979072 2.6284168 -7354.1577
+241998.0299791764 2.6267633 -7354.9453
+241999.0299792807 2.6252673 -7355.3384
+242000.029979385 2.6234169 -7354.7485
+242001.0299794893 2.6216452 -7354.3545
+242002.0299795936 2.6197162 -7354.3545
+242003.0299796979 2.6179051 -7354.1577
+242004.0299798022 2.6158187 -7354.1577
+242005.0299799065 2.6139288 -7353.9609
+242006.0299800108 2.6119604 -7354.7485
+242007.0299801151 2.6097951 -7355.5352
+242008.0299802194 2.6075904 -7354.3545
+242009.0299803237 2.6054251 -7354.1577
+242010.0299804281 2.6032991 -7354.9453
+242011.0299805324 2.6012912 -7354.3545
+242012.0299806367 2.5992441 -7355.3384
+242013.029980741 2.5971575 -7354.3545
+242014.0299808453 2.5951102 -7353.3706
+242015.0299809496 2.5931025 -7353.5669
+242016.0299810539 2.5910552 -7354.1577
+242017.0299811582 2.5889292 -7354.7485
+242018.0299812625 2.5867639 -7355.1421
+242019.0299813668 2.5845199 -7355.1421
+242020.0299814711 2.5825908 -7354.9453
+242021.0299815754 2.5801499 -7354.9453
+242022.0299816797 2.5776303 -7354.9453
+242023.0299817841 2.575386 -7354.9453
+242024.0299818884 2.5729451 -7354.9453
+242025.0299819927 2.5704255 -7354.5513
+242026.029982097 2.5681422 -7355.3384
+242027.0299822013 2.5658586 -7354.5513
+242028.0299823056 2.5635359 -7354.9453
+242029.0299824099 2.5613706 -7354.5513
+242030.0299825142 2.5592053 -7354.1577
+242031.0299826185 2.5567644 -7354.3545
+242032.0299827228 2.5543628 -7354.9453
+242033.0299828271 2.5518432 -7354.1577
+242034.0299829314 2.5493629 -7354.7485
+242035.0299830358 2.546804 -7354.5513
+242036.0299831401 2.5441661 -7354.5513
+242037.0299832444 2.5415282 -7354.9453
+242038.0299833487 2.538615 -7354.7485
+242039.029983453 2.5358984 -7354.3545
+242040.0299835573 2.5332608 -7353.9609
+242041.0299836616 2.5303473 -7353.7646
+242042.0299837659 2.5275915 -7355.5352
+242043.0299838702 2.5246782 -7354.3545
+242044.0299839745 2.5218437 -7354.5513
+242045.0299840788 2.5193238 -7354.5513
+242046.0299841831 2.5165286 -7354.5513
+242047.0299842875 2.5138516 -7354.3545
+242048.0299843918 2.5109775 -7355.3384
+242049.0299844961 2.5081429 -7354.9453
+242050.0299846004 2.5053871 -7354.9453
+242051.0299847047 2.5023556 -7354.7485
+242051.8759847928 2.4999936 -7354.7485
+242051.8779847929 2.4999542 -7354.3545
+242051.925984798 2.6882191 0.0
+242052.9259849023 2.7061324 0.0
+242053.9259850066 2.7102268 0.0
+242054.9259851109 2.7129827 0.0
+242055.9259852152 2.7152267 0.0
+242056.9259853195 2.717274 0.0
+242057.9259854238 2.7190061 0.0
+242058.9259855282 2.7206204 0.0
+242059.9259856325 2.7219982 0.0
+242060.9259857368 2.723455 0.0
+242061.9259858411 2.7247148 0.0
+242062.9259859454 2.7259746 0.0
+242063.9259860497 2.7271163 0.0
+242064.925986154 2.7283368 0.0
+242065.9259862583 2.7293603 0.0
+242066.9259863626 2.7305021 0.0
+242067.9259864669 2.7314863 0.0
+242068.9259865712 2.7324312 0.0
+242069.9259866755 2.7334547 0.0
+242070.9259867799 2.7342422 0.0
+242071.9259868842 2.7351871 0.0
+242072.9259869885 2.7360139 0.0
+242073.9259870928 2.7367618 0.0
+242074.9259871971 2.737746 0.0
+242075.9259873014 2.7384942 0.0
+242076.9259874057 2.7392027 0.0
+242077.92598751 2.7399507 0.0
+242078.9259876143 2.7405806 0.0
+242079.9259877186 2.7414074 0.0
+242080.9259878229 2.7420373 0.0
+242081.9259879272 2.7426279 0.0
+242082.9259880316 2.7433758 0.0
+242083.9259881359 2.7439663 0.0
+242084.9259882402 2.7445962 0.0
+242085.9259883445 2.7451868 0.0
+242086.9259884488 2.745856 0.0
+242087.9259885531 2.7464073 0.0
+242088.9259886574 2.7470372 0.0
+242089.9259887617 2.7475884 0.0
+242090.925988866 2.7481003 0.0
+242091.9259889703 2.7485726 0.0
+242092.9259890746 2.7491632 0.0
+242093.9259891789 2.7497144 0.0
+242094.9259892832 2.7501473 0.0
+242095.9259893876 2.7507379 0.0
+242096.9259894919 2.7512498 0.0
+242097.9259895962 2.7516434 0.0
+242098.9259897005 2.7521553 0.0
+242099.9259898048 2.7525883 0.0
+242100.9259899091 2.7529426 0.0
+242101.9259900134 2.7535331 0.0
+242102.9259901177 2.753927 0.0
+242103.925990222 2.7543206 0.0
+242104.9259903263 2.7547143 0.0
+242105.9259904306 2.7551475 0.0
+242106.9259905349 2.7555804 0.0
+242107.9259906393 2.7560134 0.0
+242108.9259907436 2.7564466 0.0
+242109.9259908479 2.7567222 0.0
+242110.9259909522 2.7571158 0.0
+242111.9259910565 2.7575488 0.0
+242112.9259911608 2.7579427 0.0
+242113.9259912651 2.7582183 0.0
+242114.9259913694 2.7585726 0.0
+242115.9259914737 2.7590055 0.0
+242116.925991578 2.7593598 0.0
+242117.9259916823 2.7597537 0.0
+242118.9259917866 2.7599897 0.0
+242119.925991891 2.7603047 0.0
+242120.9259919953 2.7607772 0.0
+242121.9259920996 2.7610135 0.0
+242122.9259922039 2.7613285 0.0
+242123.9259923082 2.7616434 0.0
+242124.9259924125 2.7619977 0.0
+242125.9259925168 2.762234 0.0
+242126.9259926211 2.7625883 0.0
+242127.9259927254 2.7629426 0.0
+242128.9259928297 2.7632182 0.0
+242129.925992934 2.7634938 0.0
+242130.9259930383 2.7638087 0.0
+242131.9259931427 2.764163 0.0
+242132.925993247 2.764281 0.0
+242133.9259933513 2.7646749 0.0
+242134.9259934556 2.7649109 0.0
+242135.9259935599 2.7652259 0.0
+242136.9259936642 2.7654622 0.0
+242137.9259937685 2.7656984 0.0
+242138.9259938728 2.7660527 0.0
+242139.9259939771 2.7662101 0.0
+242140.9259940814 2.7665253 0.0
+242141.9259941857 2.7668006 0.0
+242142.92599429 2.7669976 0.0
+242143.9259943943 2.7673125 0.0
+242144.9259944987 2.7676275 0.0
+242145.925994603 2.7677455 0.0
+242146.9259947073 2.7680211 0.0
+242147.9259948116 2.7682967 0.0
+242148.9259949159 2.7684543 0.0
+242149.9259950202 2.7687693 0.0
+242150.9259951245 2.7690055 0.0
+242151.9259952288 2.7691629 0.0
+242152.9259953331 2.7693992 0.0
+242153.9259954374 2.7696748 0.0
+242154.9259955417 2.7699504 0.0
+242155.925995646 2.7701471 0.0
+242156.9259957504 2.7703834 0.0
+242157.9259958547 2.770541 0.0
+242158.925995959 2.7708952 0.0
+242159.9259960633 2.7709739 0.0
+242160.9259961676 2.7711709 0.0
+242161.9259962719 2.7714858 0.0
+242162.9259963762 2.7716825 0.0
+242163.9259964805 2.7718008 0.0
+242164.9259965848 2.7720368 0.0
+242165.9259966891 2.7721944 0.0
+242166.9259967934 2.772588 0.0
+242167.9259968977 2.7726667 0.0
+242168.9259970021 2.7728636 0.0
+242169.9259971064 2.7730999 0.0
+242170.9259972107 2.7732966 0.0
+242171.925997315 2.7734542 0.0
+242172.9259974193 2.7735722 0.0
+242173.9259975236 2.7738872 0.0
+242174.9259976279 2.7740054 0.0
+242175.9259977322 2.774281 0.0
+242176.9259978365 2.7743597 0.0
+242177.9259979408 2.774596 0.0
+242178.9259980451 2.7747927 0.0
+242179.9259981494 2.7749503 0.0
+242180.9259982537 2.7752652 0.0
+242181.9259983581 2.7753832 0.0
+242182.9259984624 2.7755015 0.0
+242183.9259985667 2.7756982 0.0
+242184.925998671 2.7758951 0.0
+242185.9259987753 2.7760525 0.0
+242186.9259988796 2.7761707 0.0
+242187.9259989839 2.776407 0.0
+242188.9259990882 2.7766037 0.0
+242189.9259991925 2.7768006 0.0
+242190.9259992968 2.7769186 0.0
+242191.9259994011 2.7770369 0.0
+242192.9259995054 2.7771943 0.0
+242193.9259996098 2.7773912 0.0
+242194.9259997141 2.7775879 0.0
+242195.9259998184 2.7777455 0.0
+242196.9259999227 2.7779818 0.0
+242197.926000027 2.7780998 0.0
+242198.9260001313 2.7782178 0.0
+242199.9260002356 2.7784934 0.0
+242200.9260003399 2.7784934 0.0
+242201.9260004442 2.7788479 0.0
+242202.9260005485 2.778966 0.0
+242203.9260006528 2.7790446 0.0
+242204.9260007571 2.7792809 0.0
+242205.9260008615 2.7793202 0.0
+242206.9260009658 2.7795565 0.0
+242207.9260010701 2.7797532 0.0
+242208.9260011744 2.7798715 0.0
+242209.9260012787 2.7800288 0.0
+242210.926001383 2.7802651 0.0
+242211.9260014873 2.7803438 0.0
+242212.9260015916 2.7804227 0.0
+242213.9260016959 2.78058 0.0
+242214.9260018002 2.7807376 0.0
+242215.9260019045 2.7810526 0.0
+242216.9260020088 2.7810919 0.0
+242217.9260021131 2.7812886 0.0
+242218.9260022175 2.7813675 0.0
+242219.9260023218 2.7814069 0.0
+242220.9260024261 2.7816432 0.0
+242221.9260025304 2.7817612 0.0
+242222.9260026347 2.7820761 0.0
+242223.926002739 2.7820368 0.0
+242224.9260028433 2.7822731 0.0
+242225.9260029476 2.7824304 0.0
+242226.9260030519 2.7826273 0.0
+242227.9260031562 2.7827454 0.0
+242228.9260032605 2.782824 0.0
+242229.9260033648 2.7828636 0.0
+242230.9260034692 2.783021 0.0
+242231.9260035735 2.7832179 0.0
+242232.9260036778 2.7833359 0.0
+242233.9260037821 2.7834935 0.0
+242234.9260038864 2.7836902 0.0
+242235.9260039907 2.7838085 0.0
+242236.926004095 2.7839658 0.0
+242237.9260041993 2.7840445 0.0
+242238.9260043036 2.7841234 0.0
+242239.9260044079 2.7843595 0.0
+242240.9260045122 2.7844777 0.0
+242241.9260046165 2.7845957 0.0
+242242.9260047209 2.7847533 0.0
+242243.9260048252 2.7847927 0.0
+242244.9260049295 2.7850683 0.0
+242245.9260050338 2.7851863 0.0
+242246.9260051381 2.785265 0.0
+242247.9260052424 2.7853439 0.0
+242248.9260053467 2.7856193 0.0
+242249.926005451 2.7857375 0.0
+242250.9260055553 2.7857769 0.0
+242251.9260056596 2.7858949 0.0
+242252.9260057639 2.7860918 0.0
+242253.9260058682 2.7861705 0.0
+242254.9260059725 2.7862887 0.0
+242255.9260060769 2.7864461 0.0
+242256.9260061812 2.7865644 0.0
+242257.9260062855 2.7866037 0.0
+242258.9260063898 2.786761 0.0
+242259.9260064941 2.7868793 0.0
+242260.9260065984 2.786958 0.0
+242261.9260067027 2.7871943 0.0
+242262.926006807 2.7873123 0.0
+242263.9260069113 2.7873123 0.0
+242264.9260070156 2.7875092 0.0
+242265.9260071199 2.7876666 0.0
+242266.9260072242 2.7877452 0.0
+242267.9260073286 2.7878635 0.0
+242268.9260074329 2.7879815 0.0
+242269.9260075372 2.7881784 0.0
+242270.9260076415 2.7880998 0.0
+242271.9260077458 2.7882965 0.0
+242272.9260078501 2.7884541 0.0
+242273.9260079544 2.7885721 0.0
+242274.9260080587 2.788769 0.0
+242275.926008163 2.7888083 0.0
+242276.9260082673 2.788887 0.0
+242277.9260083716 2.789084 0.0
+242278.9260084759 2.789084 0.0
+242279.9260085803 2.7892807 0.0
+242280.9260086846 2.7893596 0.0
+242281.9260087889 2.7895169 0.0
+242282.9260088932 2.7895956 0.0
+242283.9260089975 2.7896352 0.0
+242284.9260091018 2.7899106 0.0
+242285.9260092061 2.7899106 0.0
+242286.9260093104 2.7901075 0.0
+242287.9260094147 2.7901862 0.0
+242288.926009519 2.7903438 0.0
+242289.9260096233 2.7903831 0.0
+242290.9260097276 2.7905405 0.0
+242291.926009832 2.7906981 0.0
+242292.9260099363 2.7907374 0.0
+242293.9260100406 2.7909343 0.0
+242294.9260101449 2.791013 0.0
+242295.9260102492 2.7910917 0.0
+242296.9260103535 2.7912099 0.0
+242297.9260104578 2.7913673 0.0
+242298.9260105621 2.7913673 0.0
+242299.9260106664 2.7915642 0.0
+242300.9260107707 2.7915642 0.0
+242301.926010875 2.7918005 0.0
+242302.9260109793 2.7918792 0.0
+242303.9260110836 2.7919185 0.0
+242304.926011188 2.7920759 0.0
+242305.9260112923 2.7921941 0.0
+242306.9260113966 2.7923515 0.0
+242307.9260115009 2.7923908 0.0
+242308.9260116052 2.7924304 0.0
+242309.9260117095 2.7925091 0.0
+242310.9260118138 2.7927058 0.0
+242311.9260119181 2.7927847 0.0
+242312.9260120224 2.7929027 0.0
+242313.9260121267 2.792942 0.0
+242314.926012231 2.7930996 0.0
+242315.9260123353 2.7932177 0.0
+242316.9260124397 2.793257 0.0
+242317.926012544 2.7934539 0.0
+242318.9260126483 2.7934933 0.0
+242319.9260127526 2.7936509 0.0
+242320.9260128569 2.7936902 0.0
+242321.9260129612 2.7938869 0.0
+242322.9260130655 2.7938869 0.0
+242323.9260131698 2.7940445 0.0
+242324.9260132741 2.7941625 0.0
+242325.9260133784 2.7942019 0.0
+242326.9260134827 2.7943201 0.0
+242327.926013587 2.7943594 0.0
+242328.9260136914 2.7945561 0.0
+242329.9260137957 2.7945957 0.0
+242330.9260139 2.7946744 0.0
+242331.9260140043 2.7948711 0.0
+242332.9260141086 2.7949893 0.0
+242333.9260142129 2.7950287 0.0
+242334.9260143172 2.7951074 0.0
+242335.9260144215 2.7951863 0.0
+242336.9260145258 2.7953043 0.0
+242337.9260146301 2.7954617 0.0
+242338.9260147344 2.7954223 0.0
+242339.9260148387 2.7956192 0.0
+242340.926014943 2.7957373 0.0
+242341.9260150474 2.7958162 0.0
+242342.9260151517 2.7958949 0.0
+242343.926015256 2.7959342 0.0
+242344.9260153603 2.7962492 0.0
+242345.9260154646 2.7961311 0.0
+242346.9260155689 2.7962885 0.0
+242347.9260156732 2.7963672 0.0
+242348.9260157775 2.7964854 0.0
+242349.9260158818 2.7964854 0.0
+242350.9260159861 2.7966821 0.0
+242351.9260160904 2.796761 0.0
+242352.9260161947 2.7968397 0.0
+242353.9260162991 2.7969184 0.0
+242354.9260164034 2.797076 0.0
+242355.9260165077 2.7972333 0.0
+242356.926016612 2.7972727 0.0
+242357.9260167163 2.7974303 0.0
+242358.9260168206 2.7974303 0.0
+242359.9260169249 2.797509 0.0
+242360.9260170292 2.7975876 0.0
+242361.9260171335 2.7977846 0.0
+242362.9260172378 2.7978239 0.0
+242363.9260173421 2.7979419 0.0
+242364.9260174464 2.7979815 0.0
+242365.9260175508 2.7981389 0.0
+242366.9260176551 2.7981389 0.0
+242367.9260177594 2.7982175 0.0
+242368.9260178637 2.7983358 0.0
+242369.926017968 2.7984145 0.0
+242370.9260180723 2.7986901 0.0
+242371.9260181766 2.7985721 0.0
+242372.9260182809 2.7988474 0.0
+242373.9260183852 2.7988474 0.0
+242374.9260184895 2.7987688 0.0
+242375.9260185938 2.7990444 0.0
+242376.9260186981 2.7990837 0.0
+242377.9260188024 2.799202 0.0
+242378.9260189068 2.799202 0.0
+242379.9260190111 2.799438 0.0
+242380.9260191154 2.7994773 0.0
+242381.9260192197 2.7995169 0.0
+242382.926019324 2.7996743 0.0
+242383.9260194283 2.799753 0.0
+242384.9260195326 2.7998319 0.0
+242385.9260196369 2.7999105 0.0
+242386.9260197412 2.7999892 0.0
+242387.9260198455 2.8001072 0.0
+242388.9260199498 2.8001862 0.0
+242389.9260200541 2.8002255 0.0
+242390.9260201585 2.8003042 0.0
+242391.9260202628 2.8003435 0.0
+242392.9260203671 2.8005011 0.0
+242393.9260204714 2.8005798 0.0
+242394.9260205757 2.8007374 0.0
+242395.92602068 2.8007374 0.0
+242396.9260207843 2.8008161 0.0
+242397.9260208886 2.8008554 0.0
+242398.9260209929 2.8010917 0.0
+242399.9260210972 2.801131 0.0
+242400.9260212015 2.8012097 0.0
+242401.9260213058 2.801249 0.0
+242402.9260214102 2.8014066 0.0
+242403.9260215145 2.801564 0.0
+242404.9260216188 2.8016033 0.0
+242405.9260217231 2.8016822 0.0
+242406.9260218274 2.8017216 0.0
+242407.9260219317 2.8018003 0.0
+242408.926022036 2.8019576 0.0
+242409.9260221403 2.8019576 0.0
+242410.9260222446 2.8019972 0.0
+242411.9260223489 2.8020759 0.0
+242412.9260224532 2.8021545 0.0
+242413.9260225575 2.8023121 0.0
+242414.9260226619 2.8023908 0.0
+242415.9260227662 2.8023908 0.0
+242416.9260228705 2.8025877 0.0
+242417.9260229748 2.8025088 0.0
+242418.9260230791 2.8026271 0.0
+242419.9260231834 2.8027451 0.0
+242420.9260232877 2.8028631 0.0
+242421.926023392 2.8029814 0.0
+242422.9260234963 2.8030207 0.0
+242423.9260236006 2.803257 0.0
+242424.9260237049 2.803257 0.0
+242425.9260238092 2.8032963 0.0
+242426.9260239135 2.8034143 0.0
+242427.9260240179 2.8034143 0.0
+242428.9260241222 2.8035719 0.0
+242429.9260242265 2.8035719 0.0
+242430.9260243308 2.8037293 0.0
+242431.9260244351 2.8037293 0.0
+242432.9260245394 2.803808 0.0
+242433.9260246437 2.8038869 0.0
+242434.926024748 2.8040836 0.0
+242435.9260248523 2.8040836 0.0
+242436.9260249566 2.8041625 0.0
+242437.9260250609 2.8042412 0.0
+242438.9260251652 2.8042805 0.0
+242439.9260252696 2.8044381 0.0
+242440.9260253739 2.8044775 0.0
+242441.9260254782 2.8045561 0.0
+242442.9260255825 2.8045955 0.0
+242443.9260256868 2.8047135 0.0
+242444.9260257911 2.8047924 0.0
+242445.9260258954 2.8049104 0.0
+242446.9260259997 2.8050284 0.0
+242447.926026104 2.8049891 0.0
+242448.9260262083 2.805068 0.0
+242449.9260263126 2.8052254 0.0
+242450.9260264169 2.8053434 0.0
+242451.9260265213 2.8053041 0.0
+242452.9260266256 2.8054223 0.0
+242453.9260267299 2.805501 0.0
+242454.9260268342 2.8055797 0.0
+242455.9260269385 2.8056583 0.0
+242456.9260270428 2.8058159 0.0
+242457.9260271471 2.8058159 0.0
+242458.9260272514 2.8059735 0.0
+242459.9260273557 2.805934 0.0
+242460.92602746 2.8060915 0.0
+242461.9260275643 2.8061309 0.0
+242462.9260276686 2.8061309 0.0
+242463.9260277729 2.8062096 0.0
+242464.9260278773 2.8064065 0.0
+242465.9260279816 2.8064458 0.0
+242466.9260280859 2.8066034 0.0
+242467.9260281902 2.8064852 0.0
+242468.9260282945 2.8066428 0.0
+242469.9260283988 2.8068788 0.0
+242470.9260285031 2.8068395 0.0
+242471.9260286074 2.8069184 0.0
+242472.9260287117 2.8069184 0.0
+242473.926028816 2.8070757 0.0
+242474.9260289203 2.8071544 0.0
+242475.9260290246 2.8071544 0.0
+242476.926029129 2.8072333 0.0
+242477.9260292333 2.8073514 0.0
+242478.9260293376 2.8073907 0.0
+242479.9260294419 2.8074694 0.0
+242480.9260295462 2.8075876 0.0
+242481.9260296505 2.807627 0.0
+242482.9260297548 2.807745 0.0
+242483.9260298591 2.807745 0.0
+242484.9260299634 2.8079419 0.0
+242485.9260300677 2.8079419 0.0
+242486.926030172 2.8079419 0.0
+242487.9260302763 2.8080206 0.0
+242488.9260303807 2.8081388 0.0
+242489.926030485 2.8082569 0.0
+242490.9260305893 2.8082569 0.0
+242491.9260306936 2.8084142 0.0
+242492.9260307979 2.8085325 0.0
+242493.9260309022 2.8084931 0.0
+242494.9260310065 2.8085718 0.0
+242495.9260311108 2.8087292 0.0
+242496.9260312151 2.8087687 0.0
+242497.9260313194 2.8088474 0.0
+242498.9260314237 2.8088474 0.0
+242499.926031528 2.8090441 0.0
+242500.9260316323 2.8090048 0.0
+242501.9260317367 2.8092411 0.0
+242502.926031841 2.8092017 0.0
+242503.9260319453 2.8092411 0.0
+242504.9260320496 2.8093593 0.0
+242505.9260321539 2.809438 0.0
+242506.9260322582 2.8093593 0.0
+242507.9260323625 2.809438 0.0
+242508.9260324668 2.809556 0.0
+242509.9260325711 2.8096743 0.0
+242510.9260326754 2.8097923 0.0
+242511.9260327797 2.8099103 0.0
+242512.926032884 2.8099496 0.0
+242513.9260329884 2.8098316 0.0
+242514.9260330927 2.8101072 0.0
+242515.926033197 2.8101072 0.0
+242516.9260333013 2.8101072 0.0
+242517.9260334056 2.8101859 0.0
+242518.9260335099 2.8104222 0.0
+242519.9260336142 2.8103828 0.0
+242520.9260337185 2.8105009 0.0
+242521.9260338228 2.8106191 0.0
+242522.9260339271 2.8106191 0.0
+242523.9260340314 2.8105402 0.0
+242524.9260341357 2.8106585 0.0
+242525.9260342401 2.8108552 0.0
+242526.9260343444 2.8108552 0.0
+242527.9260344487 2.8108945 0.0
+242528.926034553 2.8109734 0.0
+242529.9260346573 2.8110914 0.0
+242530.9260347616 2.811249 0.0
+242531.9260348659 2.8111308 0.0
+242532.9260349702 2.811367 0.0
+242533.9260350745 2.8113277 0.0
+242534.9260351788 2.811367 0.0
+242535.9260352831 2.811564 0.0
+242536.9260353874 2.8116033 0.0
+242537.9260354918 2.8116426 0.0
+242538.9260355961 2.8117213 0.0
+242539.9260357004 2.8118 0.0
+242540.9260358047 2.8118 0.0
+242541.926035909 2.8118789 0.0
+242542.9260360133 2.8120363 0.0
+242543.9260361176 2.8120363 0.0
+242544.9260362219 2.812115 0.0
+242545.9260363262 2.8121545 0.0
+242546.9260364305 2.8122332 0.0
+242547.9260365348 2.8123512 0.0
+242548.9260366391 2.8123906 0.0
+242549.9260367434 2.8125482 0.0
+242550.9260368478 2.8125482 0.0
+242551.9260369521 2.8125875 0.0
+242552.9260370564 2.8126268 0.0
+242553.9260371607 2.8127844 0.0
+242554.926037265 2.8128238 0.0
+242555.9260373693 2.8128238 0.0
+242556.9260374736 2.8128631 0.0
+242557.9260375779 2.81306 0.0
+242558.9260376822 2.81306 0.0
+242559.9260377865 2.8130994 0.0
+242560.9260378908 2.8131387 0.0
+242561.9260379951 2.8132174 0.0
+242562.9260380995 2.8132567 0.0
+242563.9260382038 2.8134143 0.0
+242564.9260383081 2.8134143 0.0
+242565.9260384124 2.813493 0.0
+242566.9260385167 2.8135717 0.0
+242567.926038621 2.8136504 0.0
+242568.9260387253 2.8135717 0.0
+242569.9260388296 2.8138473 0.0
+242570.9260389339 2.813808 0.0
+242571.9260390382 2.8140836 0.0
+242572.9260391425 2.813926 0.0
+242573.9260392468 2.8140836 0.0
+242574.9260393512 2.8141229 0.0
+242575.9260394555 2.8142016 0.0
+242576.9260395598 2.8142409 0.0
+242577.9260396641 2.8142803 0.0
+242578.9260397684 2.8142803 0.0
+242579.9260398727 2.8143198 0.0
+242580.926039977 2.8144379 0.0
+242581.9260400813 2.8145952 0.0
+242582.9260401856 2.8145952 0.0
+242583.9260402899 2.8147135 0.0
+242584.9260403942 2.8147528 0.0
+242585.9260404985 2.8148315 0.0
+242586.9260406028 2.8149498 0.0
+242587.9260407072 2.8149891 0.0
+242588.9260408115 2.8149891 0.0
+242589.9260409158 2.8151464 0.0
+242590.9260410201 2.8151858 0.0
+242591.9260411244 2.8152254 0.0
+242592.9260412287 2.815304 0.0
+242593.926041333 2.8153434 0.0
+242594.9260414373 2.8154221 0.0
+242595.9260415416 2.8154614 0.0
+242596.9260416459 2.8155403 0.0
+242597.9260417502 2.8155403 0.0
+242598.9260418545 2.8155797 0.0
+242599.9260419589 2.8158553 0.0
+242600.9260420632 2.815737 0.0
+242601.9260421675 2.8158157 0.0
+242602.9260422718 2.8159339 0.0
+242603.9260423761 2.8160126 0.0
+242604.9260424804 2.8159733 0.0
+242605.9260425847 2.8160126 0.0
+242606.926042689 2.8161306 0.0
+242607.9260427933 2.8162096 0.0
+242608.9260428976 2.8162882 0.0
+242609.9260430019 2.8162489 0.0
+242610.9260431062 2.8163669 0.0
+242611.9260432106 2.8164063 0.0
+242612.9260433149 2.8164458 0.0
+242613.9260434192 2.8164458 0.0
+242614.9260435235 2.8166425 0.0
+242615.9260436278 2.8166425 0.0
+242616.9260437321 2.8168395 0.0
+242617.9260438364 2.8168001 0.0
+242618.9260439407 2.8168788 0.0
+242619.926044045 2.8168788 0.0
+242620.9260441493 2.8169575 0.0
+242621.9260442536 2.8170757 0.0
+242622.9260443579 2.8171937 0.0
+242623.9260444622 2.8172331 0.0
+242624.9260445666 2.8172331 0.0
+242625.9260446709 2.8173511 0.0
+242626.9260447752 2.8174694 0.0
+242627.9260448795 2.8173907 0.0
+242628.9260449838 2.8174694 0.0
+242629.9260450881 2.8176267 0.0
+242630.9260451924 2.8175874 0.0
+242631.9260452967 2.817745 0.0
+242632.926045401 2.8177056 0.0
+242633.9260455053 2.8178236 0.0
+242634.9260456096 2.817863 0.0
+242635.9260457139 2.8179417 0.0
+242636.9260458183 2.8180993 0.0
+242637.9260459226 2.8180206 0.0
+242638.9260460269 2.8180206 0.0
+242639.9260461312 2.8181779 0.0
+242640.9260462355 2.8182173 0.0
+242641.9260463398 2.8183355 0.0
+242642.9260464441 2.8183355 0.0
+242643.9260465484 2.8184536 0.0
+242644.9260466527 2.8185322 0.0
+242645.926046757 2.8185322 0.0
+242646.9260468613 2.8186505 0.0
+242647.9260469656 2.8186898 0.0
+242648.92604707 2.8187292 0.0
+242649.9260471743 2.8188078 0.0
+242650.9260472786 2.8188472 0.0
+242651.8660473768 2.8188865 0.0
+242651.9240473825 2.8189261 0.0
diff --git a/examples/data/Tesla_4680/README.md b/examples/data/Tesla_4680/README.md
new file mode 100644
index 000000000..7236e6624
--- /dev/null
+++ b/examples/data/Tesla_4680/README.md
@@ -0,0 +1,17 @@
+# Tesla 4680 Dataset
+
+This repository contains a subset of the data from the supplementary material of the research paper:
+**M. Ank et al., "Lithium-Ion Cells in Automotive Applications: Tesla 4680 Cylindrical Cell Teardown and Characterization,"** *Journal of the Electrochemical Society*, vol. 170, no. 12, p. 120536, December 2023. [DOI: 10.1149/1945-7111/ad14d0](https://doi.org/10.1149/1945-7111/ad14d0)
+
+## Accessing the Supplemental Material
+
+The supplemental material can be accessed through the following link:
+[Supplemental Material on MediaTUM](https://mediatum.ub.tum.de/1725661)
+
+
+## Citation
+
+If you use this dataset in your work, please cite the original publication as follows:
+
+```plaintext
+M. Ank et al., "Lithium-Ion Cells in Automotive Applications: Tesla 4680 Cylindrical Cell Teardown and Characterization," Journal of the Electrochemical Society, vol. 170, no. 12, p. 120536, Dec. 2023, doi: 10.1149/1945-7111/ad14d0.
diff --git a/examples/data/Tesla_4680/T-cell_pOCV_data.txt b/examples/data/Tesla_4680/T-cell_pOCV_data.txt
new file mode 100644
index 000000000..b4abc9baf
--- /dev/null
+++ b/examples/data/Tesla_4680/T-cell_pOCV_data.txt
@@ -0,0 +1,9741 @@
+Ewe/V time/s Ece/V I/mA Efficiency/% Ewe-Ece/V Capacity/mA.h time/h arealCapacity Ewe/VReal Ece/VReal
+3,3091569 183903,1284 0,20197234 0,091570303 0 3,1071846 0 51,08420233 0 3,6191569 0,51197234
+3,3205402 183935,1284 0,14970249 0,092138432 0 3,1708376 0,000819002 51,09309122 0,000869721 3,6305402 0,45970249
+3,3223355 183967,1284 0,14387779 0,092132702 0 3,1784577 0,001637999 51,10198011 0,001739435 3,6323355 0,45387779
+3,3233094 183999,1284 0,13977186 0,092139073 0 3,1835375 0,002456997 51,110869 0,002609151 3,6333094 0,44977186
+3,3238058 184031,1284 0,13612427 0,092132702 0 3,1876814 0,003275995 51,11975789 0,003478867 3,6338058 0,44612427
+3,3243787 184063,1284 0,13318327 0,092139073 0 3,1911955 0,00409499 51,12864678 0,004348581 3,6343787 0,44318327
+3,3247991 184095,1284 0,13024229 0,092142262 0 3,1945567 0,004913984 51,13753567 0,005218293 3,6347991 0,44024229
+3,3251429 184127,1284 0,12743497 0,09213461 0 3,1977079 0,00573298 51,14642456 0,006088007 3,6351429 0,43743497
+3,3254673 184159,1284 0,12497142 0,092142262 0 3,200496 0,006551975 51,15531345 0,00695772 3,6354673 0,43497142
+3,3257539 184191,1284 0,12266064 0,092133977 0 3,2030933 0,007370969 51,16420234 0,007827431 3,6357539 0,43266064
+3,3260593 184223,1284 0,12042625 0,092133336 0 3,2056332 0,008189965 51,17309123 0,008697146 3,6360593 0,43042625
+3,3262312 184255,1284 0,11842103 0,092135251 0 3,2078102 0,00900896 51,18198012 0,009566859 3,6362312 0,42842103
+3,326575 184287,1284 0,11654948 0,092135884 0 3,2100255 0,009827957 51,19086901 0,010436573 3,636575 0,42654948
+3,3267851 184319,1284 0,11441058 0,092137799 0 3,2123744 0,010646954 51,1997579 0,011306288 3,6367851 0,42441058
+3,3270907 184351,1284 0,11265363 0,092139073 0 3,214437 0,011465947 51,20864679 0,012176 3,6370907 0,42265363
+3,327148 184383,1284 0,11074389 0,092132062 0 3,216404 0,01228494 51,21753568 0,01304571 3,637148 0,42074389
+3,3275299 184415,1285 0,10891055 0,092135251 0 3,2186193 0,013103932 51,22642457 0,01391542 3,6375299 0,41891055
+3,3277018 184447,1285 0,1070772 0,092131428 0 3,2206247 0,013922922 51,23531346 0,014785128 3,6377018 0,4170772
+3,3280075 184479,1285 0,10535844 0,09213461 0 3,2226491 0,014741914 51,24420235 0,015654837 3,6380075 0,41535844
+3,3281412 184511,1285 0,10377336 0,092140347 0 3,2243679 0,015560904 51,25309124 0,016524546 3,6381412 0,41377336
+3,3282747 184543,1285 0,10182542 0,092133977 0 3,2264493 0,016379897 51,26198013 0,017394256 3,6382747 0,41182542
+3,3286185 184575,1285 0,10037403 0,092136525 0 3,2282445 0,017198886 51,27086902 0,018263962 3,6386185 0,41037403
+3,328886 184607,1285 0,098827139 0,092132062 0 3,2300589 0,018017875 51,27975791 0,019133669 3,638886 0,408827139
+3,3289242 184639,1285 0,096879214 0,092138432 0 3,2320449 0,018836862 51,2886468 0,020003374 3,6389242 0,406879214
+3,3293824 184671,1285 0,095408715 0,092135884 0 3,2339737 0,01965585 51,29753569 0,02087308 3,6393824 0,405408715
+3,3293061 184703,1285 0,093709052 0,092135884 0 3,2355971 0,020474839 51,30642458 0,021742786 3,6393061 0,403709052
+3,3296115 184735,1285 0,092295848 0,092144169 0 3,2373157 0,021293828 51,31531347 0,022612492 3,6396115 0,402295848
+3,3298409 184767,1285 0,090729862 0,092135251 0 3,2391109 0,022112814 51,32420236 0,023482196 3,6398409 0,400729862
+3,3300509 184799,1285 0,089297563 0,092132702 0 3,2407534 0,022931802 51,33309125 0,024351901 3,6400509 0,399297563
+3,3301845 184831,1285 0,087693386 0,092133336 0 3,242491 0,02375079 51,34198014 0,025221607 3,6401845 0,397693386
+3,3302419 184863,1285 0,086146496 0,09213461 0 3,2440953 0,024569778 51,35086903 0,026091312 3,6402419 0,396146496
+3,3306048 184895,1285 0,085077047 0,092137799 0 3,2455277 0,025388766 51,35975792 0,026961017 3,6406048 0,395077047
+3,3307002 184927,1285 0,08347287 0,092137158 0 3,2472272 0,026207756 51,36864682 0,027830725 3,6407002 0,39347287
+3,3310249 184959,1285 0,082212441 0,092136525 0 3,2488124 0,027026746 51,37753571 0,028700433 3,6410249 0,392212441
+3,331063 184991,1285 0,080856532 0,092126325 0 3,2502065 0,027845737 51,3864246 0,029570141 3,641063 0,390856532
+3,3313305 185023,1285 0,079061382 0,092132062 0 3,2522693 0,028664726 51,39531349 0,030439848 3,6413305 0,389061382
+3,3315215 185055,1286 0,077877343 0,092137799 0 3,2536442 0,029483715 51,40420238 0,031309555 3,6415215 0,387877343
+3,3316741 185087,1286 0,076445043 0,092142262 0 3,255229 0,030302702 51,41309127 0,032179259 3,6416741 0,386445043
+3,331846 185119,1286 0,075031839 0,092138432 0 3,2568142 0,031121691 51,42198016 0,033048966 3,641846 0,385031839
+3,332056 185151,1286 0,073790513 0,092137158 0 3,2582655 0,03194068 51,43086905 0,033918672 3,642056 0,383790513
+3,3321517 185183,1286 0,072320014 0,092132062 0 3,2598317 0,032759669 51,43975794 0,034788379 3,6421517 0,382320014
+3,3323045 185215,1286 0,071021393 0,092140347 0 3,2612832 0,033578661 51,44864683 0,035658089 3,6423045 0,381021393
+3,3325717 185247,1286 0,069894649 0,092133336 0 3,2626772 0,034397654 51,45753572 0,0365278 3,6425717 0,379894649
+3,3326674 185279,1286 0,068691514 0,092129521 0 3,2639759 0,035216647 51,46642461 0,037397511 3,6426674 0,378691514
+3,3330684 185311,1286 0,067297414 0,092135251 0 3,2657709 0,036035641 51,4753135 0,038267223 3,6430684 0,377297414
+3,3330493 185343,1286 0,066094279 0,092132062 0 3,2669549 0,036854634 51,48420239 0,039136934 3,6430493 0,376094279
+3,3332212 185375,1286 0,064852946 0,092139073 0 3,2683682 0,037673625 51,49309128 0,040006642 3,6432212 0,374852946
+3,3335075 185407,1286 0,063611619 0,092137158 0 3,269896 0,038492615 51,50198017 0,040876349 3,6435075 0,373611619
+3,3336031 185439,1286 0,06227481 0,092136525 0 3,2713284 0,039311603 51,51086906 0,041746055 3,6436031 0,37227481
+3,3337367 185471,1286 0,061090771 0,092142887 0 3,272646 0,040130595 51,51975795 0,042615765 3,6437367 0,371090771
+3,333966 185503,1286 0,05988764 0,092137799 0 3,2740784 0,040949587 51,52864684 0,043485474 3,643966 0,36988764
+3,3341188 185535,1286 0,058779992 0,092140347 0 3,2753389 0,041768581 51,53753573 0,044355187 3,6441188 0,368779992
+3,3342714 185567,1286 0,057385884 0,092135251 0 3,2768855 0,042587573 51,54642462 0,045224896 3,6442714 0,367385884
+3,3343861 185599,1286 0,056335531 0,092126325 0 3,2780507 0,043406566 51,55531351 0,046094607 3,6443861 0,366335531
+3,3345008 185631,1286 0,055132397 0,092132062 0 3,2793684 0,044225558 51,5642024 0,046964317 3,6445008 0,365132397
+3,334749 185663,1286 0,053814679 0,092133977 0 3,2809343 0,045044548 51,57309129 0,047834025 3,644749 0,363814679
+3,3348827 185695,1287 0,052707035 0,092129521 0 3,2821758 0,04586354 51,58198018 0,048703735 3,6448827 0,362707035
+3,3350546 185727,1287 0,051599387 0,092136525 0 3,2834551 0,046682532 51,59086907 0,049573444 3,6450546 0,361599387
+3,3351882 185759,1287 0,050606325 0,092135884 0 3,2845819 0,047501523 51,59975796 0,050443152 3,6451882 0,360606325
+3,3353982 185791,1287 0,049288608 0,092136525 0 3,2861097 0,048320516 51,60864685 0,051312863 3,6453982 0,359288608
+3,3354747 185823,1287 0,048085473 0,092132062 0 3,2873893 0,049139509 51,61753574 0,052182574 3,6454747 0,358085473
+3,3357229 185855,1287 0,046996925 0,092135884 0 3,2887261 0,049958501 51,62642463 0,053052284 3,6457229 0,356996925
+3,3358376 185887,1287 0,045793794 0,092138432 0 3,2900438 0,050777491 51,63531352 0,053921992 3,6458376 0,355793794
+3,3360095 185919,1287 0,044705242 0,092140347 0 3,2913043 0,05159648 51,64420241 0,054791699 3,6460095 0,354705242
+3,3362958 185951,1287 0,04371218 0,092136525 0 3,2925837 0,052415474 51,6530913 0,05566141 3,6462958 0,35371218
+3,3362195 185983,1287 0,042700022 0,092143528 0 3,2935195 0,053234462 51,66198019 0,056531116 3,6462195 0,352700022
+3,3364105 186015,1287 0,041172232 0,092140347 0 3,2952383 0,05405345 51,67086908 0,057400821 3,6464105 0,351172232
+3,3367159 186047,1287 0,040274657 0,092141613 0 3,2964413 0,054872437 51,67975797 0,058270525 3,6467159 0,350274657
+3,3366969 186079,1287 0,0392434 0,092136525 0 3,2974534 0,055691424 51,68864687 0,05914023 3,6466969 0,3492434
+3,3368688 186111,1287 0,038135752 0,092142262 0 3,298733 0,056510415 51,69753576 0,060009939 3,6468688 0,348135752
+3,3370788 186143,1287 0,037123594 0,092137799 0 3,2999551 0,057329405 51,70642465 0,060879647 3,6470788 0,347123594
+3,3371935 186175,1287 0,035863169 0,092142262 0 3,3013303 0,058148395 51,71531354 0,061749354 3,6471935 0,345863169
+3,3372889 186207,1287 0,034889203 0,092140347 0 3,3023996 0,058967386 51,72420243 0,062619063 3,6472889 0,344889203
+3,3374226 186239,1287 0,03391524 0,092132702 0 3,3035073 0,059786379 51,73309132 0,063488773 3,6474226 0,34391524
+3,3377283 186271,1287 0,032788496 0,092131428 0 3,3049397 0,060605371 51,74198021 0,064358483 3,6477283 0,342788496
+3,3378427 186303,1288 0,031890918 0,092141613 0 3,3059518 0,061424361 51,7508691 0,065228192 3,6478427 0,341890918
+3,3379765 186335,1288 0,030687787 0,092139073 0 3,3072886 0,062243352 51,75975799 0,0660979 3,6479765 0,340687787
+3,3380721 186367,1288 0,029656529 0,092133977 0 3,3084154 0,063062345 51,76864688 0,066967611 3,6480721 0,339656529
+3,3383012 186399,1288 0,02864437 0,092136525 0 3,3096569 0,063881337 51,77753577 0,06783732 3,6483012 0,33864437
+3,3384156 186431,1288 0,027517626 0,092139073 0 3,3108981 0,064700327 51,78642466 0,068707029 3,6484156 0,337517626
+3,3385303 186463,1288 0,026524564 0,092126325 0 3,3120058 0,065519318 51,79531355 0,069576737 3,6485303 0,336524564
+3,3387594 186495,1288 0,025626989 0,092148624 0 3,3131325 0,066338311 51,80420244 0,070446448 3,6487594 0,335626989
+3,338855 186527,1288 0,02446205 0,092132702 0 3,314393 0,067157304 51,81309133 0,071316159 3,648855 0,33446205
+3,3390651 186559,1288 0,023717253 0,092136525 0 3,3153479 0,067976298 51,82198022 0,072185871 3,6490651 0,333717253
+3,3391223 186591,1288 0,022571411 0,092130795 0 3,316551 0,068795292 51,83086911 0,073055582 3,6491223 0,332571411
+3,3390841 186623,1288 0,021521058 0,092139073 0 3,3175631 0,069614287 51,839758 0,073925295 3,6490841 0,331521058
+3,3394089 186655,1288 0,020718968 0,092135884 0 3,3186898 0,070433283 51,84864689 0,074795009 3,6494089 0,330718968
+3,3396189 186687,1288 0,019573128 0,092129521 0 3,3200457 0,071252276 51,85753578 0,07566472 3,6496189 0,329573128
+3,3398671 186719,1288 0,018732844 0,092133977 0 3,3211343 0,072071267 51,86642467 0,076534429 3,6498671 0,328732844
+3,3398862 186751,1288 0,017758878 0,092131428 0 3,3221273 0,07289026 51,87531356 0,07740414 3,6498862 0,327758878
+3,3399818 186783,1288 0,016784914 0,092141613 0 3,3231969 0,073709254 51,88420245 0,078273851 3,6499818 0,326784914
+3,3402109 186815,1288 0,015830046 0,09213461 0 3,3243809 0,07452825 51,89309134 0,079143566 3,6502109 0,325830046
+3,34023 186847,1288 0,014894276 0,092135884 0 3,3253357 0,075347243 51,90198023 0,080013277 3,65023 0,324894276
+3,3404019 186879,1288 0,013767532 0,092142887 0 3,3266344 0,076166235 51,91086912 0,080882986 3,6504019 0,323767532
+3,3404975 186911,1288 0,012946346 0,092131428 0 3,3275511 0,076985225 51,91975801 0,081752694 3,6504975 0,322946346
+3,3406501 186943,1289 0,01212516 0,092135884 0 3,3285248 0,077804212 51,9286469 0,082622399 3,6506501 0,32212516
+3,3409176 186975,1289 0,011132098 0,092138432 0 3,3297856 0,0786232 51,93753579 0,083492104 3,6509176 0,321132098
+3,3408411 187007,1289 0,010100841 0,092135251 0 3,3307402 0,07944219 51,94642468 0,084361811 3,6508411 0,320100841
+3,3410704 187039,1289 0,009012291 0,092131428 0 3,3320582 0,080261178 51,95531357 0,085231517 3,6510704 0,319012291
+3,3411849 187071,1289 0,008248397 0,092136525 0 3,3329365 0,081080168 51,96420246 0,086101225 3,6511849 0,318248397
+3,3412614 187103,1289 0,007274433 0,092133977 0 3,333987 0,081899159 51,97309135 0,086970933 3,6512614 0,317274433
+3,3414905 187135,1289 0,006395954 0,092125066 0 3,3350945 0,082718148 51,98198024 0,08784064 3,6514905 0,316395954
+3,3415668 187167,1289 0,005498379 0,092133977 0 3,3360684 0,083537138 51,99086913 0,088710347 3,6515668 0,315498379
+3,3417196 187199,1289 0,004658095 0,092133336 0 3,3370616 0,084356129 51,99975803 0,089580057 3,6517196 0,314658095
+3,3419106 187231,1289 0,003607741 0,09213461 0 3,3383029 0,08517512 52,00864692 0,090449765 3,6519106 0,313607741
+3,3421016 187263,1289 0,00274836 0,092135884 0 3,3393533 0,085994115 52,01753581 0,091319478 3,6521016 0,31274836
+3,3422544 187295,1289 0,001640713 0,09214098 0 3,3406136 0,086813108 52,0264247 0,092189189 3,6522544 0,311640713
+3,3424263 187327,1289 0,000953209 0,092139706 0 3,3414731 0,087632101 52,03531359 0,093058899 3,6524263 0,310953209
+3,3424644 187359,1289 -2,08E-05 0,092138432 0 3,3424852 0,088451096 52,04420248 0,093928612 3,6524644 0,309979244
+3,3426363 187391,1289 -0,000841943 0,092135251 0 3,3434782 0,089270089 52,05309137 0,094798323 3,6526363 0,309158057
+3,3427126 187423,1289 -0,001682226 0,092139073 0 3,3443949 0,090089077 52,06198026 0,095668029 3,6527126 0,308317774
+3,3428845 187455,1289 -0,002617997 0,092129521 0 3,3455026 0,090908066 52,07086915 0,096537735 3,6528845 0,307382003
+3,3429992 187487,1289 -0,00353467 0,092136525 0 3,3465338 0,091727054 52,07975804 0,097407441 3,6529992 0,306465331
+3,3431711 187519,1289 -0,004355856 0,092139073 0 3,347527 0,092546041 52,08864693 0,098277145 3,6531711 0,305644144
+3,3433049 187551,1289 -0,005100653 0,092137799 0 3,3484056 0,09336503 52,09753582 0,099146852 3,6533049 0,304899347
+3,3433812 187583,129 -0,006112812 0,092133336 0 3,349494 0,094184019 52,10642471 0,100016558 3,6533812 0,303887188
+3,3435721 187615,129 -0,006953096 0,092140347 0 3,3505251 0,095003006 52,1153136 0,100886263 3,6535721 0,303046904
+3,3436868 187647,129 -0,007869769 0,092136525 0 3,3515565 0,095821992 52,12420249 0,101755967 3,6536868 0,302130231
+3,3438013 187679,129 -0,008633663 0,092132062 0 3,3524349 0,096640979 52,13309138 0,102625671 3,6538013 0,301366337
+3,343935 187711,129 -0,009493044 0,092142887 0 3,3534281 0,097459967 52,14198027 0,103495376 3,653935 0,300506956
+3,3439732 187743,129 -0,010428814 0,092133977 0 3,3544021 0,098278956 52,15086916 0,104365083 3,6539732 0,299571186
+3,3441641 187775,129 -0,011230904 0,092135884 0 3,3553951 0,099097945 52,15975805 0,10523479 3,6541641 0,298769096
+3,3442407 187807,129 -0,012052089 0,092132702 0 3,3562927 0,099916932 52,16864694 0,106104494 3,6542407 0,297947911
+3,3445079 187839,129 -0,012796886 0,092142887 0 3,3573048 0,100735919 52,17753583 0,106974199 3,6545079 0,297203114
+3,3444889 187871,129 -0,013732657 0,09212824 0 3,3582215 0,101554906 52,18642472 0,107843903 3,6544889 0,296267343
+3,3447561 187903,129 -0,014668426 0,092135251 0 3,3594246 0,102373893 52,19531361 0,108713608 3,6547561 0,295331574
+3,344909 187935,129 -0,015432321 0,09213461 0 3,3603413 0,10319288 52,2042025 0,109583312 3,654909 0,294567679
+3,3447752 187967,129 -0,016272604 0,092133336 0 3,3610477 0,104011868 52,21309139 0,110453017 3,6547752 0,293727396
+3,3451765 187999,129 -0,016979206 0,092146084 0 3,3621557 0,104830855 52,22198028 0,111322722 3,6551765 0,293020794
+3,3451381 188031,129 -0,017953172 0,092139706 0 3,3630912 0,105649844 52,23086917 0,112192428 3,6551381 0,292046828
+3,3452337 188063,129 -0,018678872 0,092139073 0 3,3639126 0,106468832 52,23975806 0,113062134 3,6552337 0,291321128
+3,3454247 188095,129 -0,019404572 0,092143528 0 3,3648293 0,107287823 52,24864695 0,113931843 3,6554247 0,290595428
+3,345711 188127,129 -0,020416731 0,092137158 0 3,3661277 0,108106814 52,25753584 0,114801552 3,655711 0,289583269
+3,3456538 188159,129 -0,021199722 0,092137158 0 3,3668535 0,108925803 52,26642473 0,115671258 3,6556538 0,288800278
+3,3457875 188191,129 -0,021849032 0,092144169 0 3,3676364 0,109744792 52,27531362 0,116540965 3,6557875 0,288150968
+3,3458829 188223,1291 -0,022918483 0,092140347 0 3,3688014 0,110563783 52,28420251 0,117410673 3,6558829 0,287081517
+3,3461313 188255,1291 -0,023701476 0,092135884 0 3,3698328 0,111382773 52,2930914 0,118280381 3,6561313 0,286298524
+3,3460739 188287,1291 -0,024637247 0,092136525 0 3,3707111 0,112201764 52,30198029 0,11915009 3,6560739 0,285362753
+3,3463414 188319,1291 -0,025133777 0,092133977 0 3,3714752 0,113020755 52,31086918 0,120019798 3,6563414 0,284866223
+3,3461504 188351,1291 -0,025859477 0,092136525 0 3,37201 0,113839745 52,31975808 0,120889506 3,6561504 0,284140523
+3,3464751 188383,1291 -0,026585177 0,09212824 0 3,3730602 0,114658738 52,32864697 0,121759216 3,6564751 0,283414823
+3,3467424 188415,1291 -0,027482752 0,092133977 0 3,3742251 0,11547773 52,33753586 0,122628927 3,6567424 0,282517248
+3,3468571 188447,1291 -0,028265743 0,092129521 0 3,3751228 0,116296727 52,34642475 0,123498642 3,6568571 0,281734257
+3,347029 188479,1291 -0,029163318 0,092139073 0 3,3761923 0,117115723 52,35531364 0,124368356 3,657029 0,280836682
+3,3469715 188511,1291 -0,029889017 0,092133336 0 3,3768606 0,117934719 52,36420253 0,12523807 3,6569715 0,280110983
+3,3471625 188543,1291 -0,030633815 0,092133977 0 3,3777964 0,118753713 52,37309142 0,126107782 3,6571625 0,279366185
+3,3472006 188575,1291 -0,031416807 0,092132702 0 3,3786175 0,11957271 52,38198031 0,126977496 3,6572006 0,278583193
+3,3473344 188607,1291 -0,032237992 0,092136525 0 3,3795724 0,120391705 52,3908692 0,127847209 3,6573344 0,277762008
+3,3476019 188639,1291 -0,033001889 0,092135251 0 3,3806038 0,121210701 52,39975809 0,128716924 3,6576019 0,276998111
+3,3476591 188671,1291 -0,033670295 0,092132062 0 3,3813293 0,122029699 52,40864698 0,12958664 3,6576591 0,276329705
+3,3477545 188703,1291 -0,034338702 0,092138432 0 3,3820932 0,122848697 52,41753587 0,130456356 3,6577545 0,275661298
+3,3478882 188735,1291 -0,035236277 0,092139706 0 3,3831246 0,123667694 52,42642476 0,131326071 3,6578882 0,274763723
+3,348022 188767,1291 -0,035923783 0,092139706 0 3,3839457 0,124486689 52,43531365 0,132195784 3,658022 0,274076217
+3,3482893 188799,1291 -0,03666858 0,092136525 0 3,3849578 0,125305683 52,44420254 0,133065496 3,6582893 0,27333142
+3,3482702 188831,1291 -0,037375182 0,092133977 0 3,3856454 0,126124677 52,45309143 0,133935208 3,6582702 0,272624818
+3,3484993 188863,1292 -0,038272757 0,092136525 0 3,3867722 0,12694367 52,46198032 0,134804918 3,6584993 0,271727243
+3,3484802 188895,1292 -0,038960263 0,092139073 0 3,3874404 0,127762662 52,47086921 0,135674629 3,6584802 0,271039737
+3,3485758 188927,1292 -0,039685961 0,092137799 0 3,3882618 0,128581655 52,4797581 0,136544339 3,6585758 0,270314039
+3,348805 188959,1292 -0,040392563 0,092132702 0 3,3891976 0,129400647 52,48864699 0,137414049 3,658805 0,269607437
+3,3489578 188991,1292 -0,041118264 0,092137799 0 3,3900762 0,130219639 52,49753588 0,138283759 3,6589578 0,268881736
+3,3490341 189023,1292 -0,041920353 0,092138432 0 3,3909545 0,131038632 52,50642477 0,13915347 3,6590341 0,268079647
+3,3489578 189055,1292 -0,042512368 0,092139706 0 3,3914702 0,131857624 52,51531366 0,140023179 3,6589578 0,267487632
+3,349225 189087,1292 -0,043429043 0,092127606 0 3,3926542 0,132676613 52,52420255 0,140892886 3,659225 0,266570957
+3,3493016 189119,1292 -0,043944672 0,092133336 0 3,3932462 0,133495605 52,53309144 0,141762596 3,6593016 0,266055328
+3,3492825 189151,1292 -0,044708565 0,092137799 0 3,393991 0,134314596 52,54198033 0,142632304 3,6592825 0,265291435
+3,3496835 189183,1292 -0,045357876 0,092139706 0 3,3950415 0,135133589 52,55086922 0,143502015 3,6596835 0,264642124
+3,3497598 189215,1292 -0,046140868 0,092139073 0 3,3959007 0,13595258 52,55975811 0,144371724 3,6597598 0,263859132
+3,3497598 189247,1292 -0,046809275 0,092139706 0 3,396569 0,136771573 52,568647 0,145241435 3,6597598 0,263190725
+3,3499317 189279,1292 -0,047573168 0,092142887 0 3,3975048 0,137590566 52,57753589 0,146111145 3,6599317 0,262426832
+3,350008 189311,1292 -0,04827977 0,092142887 0 3,3982878 0,13840956 52,58642478 0,146980857 3,660008 0,26172023
+3,3501799 189343,1292 -0,049062762 0,092139706 0 3,3992426 0,139228552 52,59531367 0,147850568 3,6601799 0,260937238
+3,3502946 189375,1292 -0,049502 0,092140347 0 3,3997965 0,140047546 52,60420256 0,148720279 3,6602946 0,260498
+3,3503137 189407,1292 -0,050456867 0,092135251 0 3,4007704 0,14086654 52,61309145 0,149589991 3,6603137 0,259543133
+3,3504856 189439,1292 -0,051220763 0,092137799 0 3,4017062 0,14168553 52,62198034 0,150459698 3,6604856 0,258779237
+3,3507721 189471,1292 -0,051698197 0,092139073 0 3,4024704 0,14250452 52,63086923 0,151329406 3,6607721 0,258301803
+3,3509438 189503,1293 -0,052347507 0,092135884 0 3,4032912 0,143323512 52,63975813 0,152199116 3,6609438 0,257652493
+3,3508484 189535,1293 -0,0531114 0,092135884 0 3,4039598 0,144142503 52,64864702 0,153068824 3,6608484 0,2568886
+3,3510585 189567,1293 -0,053913489 0,092144169 0 3,4049721 0,144961493 52,65753591 0,153938533 3,6610585 0,256086511
+3,3511732 189599,1293 -0,054505508 0,092139706 0 3,4056787 0,145780484 52,6664248 0,154808241 3,6611732 0,255494492
+3,3513067 189631,1293 -0,055154819 0,092132062 0 3,4064615 0,146599472 52,67531369 0,155677947 3,6613067 0,254845181
+3,3514786 189663,1293 -0,055842321 0,092139706 0 3,407321 0,147418462 52,68420258 0,156547654 3,6614786 0,254157679
+3,3515933 189695,1293 -0,056415241 0,092136525 0 3,4080086 0,148237451 52,69309147 0,157417361 3,6615933 0,253584759
+3,3516123 189727,1293 -0,057083651 0,09213461 0 3,4086959 0,149056441 52,70198036 0,158287069 3,6616123 0,252916349
+3,3516505 189759,1293 -0,057752058 0,092133977 0 3,4094026 0,14987543 52,71086925 0,159156776 3,6616505 0,252247942
+3,3519371 189791,1293 -0,058401369 0,092139073 0 3,4103384 0,15069442 52,71975814 0,160026483 3,6619371 0,251598631
+3,3520324 189823,1293 -0,059260748 0,092142887 0 3,4112933 0,151513409 52,72864703 0,16089619 3,6620324 0,250739252
+3,3520706 189855,1293 -0,059948254 0,092135251 0 3,4120188 0,1523324 52,73753592 0,161765898 3,6620706 0,250051746
+3,3521662 189887,1293 -0,060425688 0,092139706 0 3,4125919 0,153151395 52,74642481 0,162635612 3,6621662 0,249574312
+3,352319 189919,1293 -0,061304163 0,092139706 0 3,4136231 0,153970388 52,7553137 0,163505322 3,662319 0,248695837
+3,3524144 189951,1293 -0,061686113 0,092136525 0 3,4141004 0,154789378 52,76420259 0,16437503 3,6624144 0,248313887
+3,3526244 189983,1293 -0,062450007 0,092136525 0 3,4150743 0,155608371 52,77309148 0,16524474 3,6626244 0,247549993
+3,3526053 190015,1293 -0,063194804 0,092137158 0 3,4158001 0,156427365 52,78198037 0,166114453 3,6626053 0,246805196
+3,3526053 190047,1293 -0,06378682 0,092142887 0 3,4163921 0,157246361 52,79086926 0,166984166 3,6626053 0,24621318
+3,3528728 190079,1293 -0,06443613 0,092137799 0 3,417309 0,158065353 52,79975815 0,167853877 3,6628728 0,24556387
+3,3529873 190111,1293 -0,065200023 0,09212824 0 3,4181874 0,158884345 52,80864704 0,168723586 3,6629873 0,244799977
+3,3530829 190143,1294 -0,065620169 0,092136525 0 3,4187031 0,159703337 52,81753593 0,169593296 3,6630829 0,244379831
+3,3532739 190175,1294 -0,066384062 0,092138432 0 3,4196579 0,160522331 52,82642482 0,170463008 3,6632739 0,243615938
+3,3533311 190207,1294 -0,066880591 0,092137158 0 3,4202118 0,161341326 52,83531371 0,17133272 3,6633311 0,243119409
+3,3536558 190239,1294 -0,067548998 0,092139073 0 3,4212048 0,162160318 52,8442026 0,172202431 3,6636558 0,242451002
+3,3535411 190271,1294 -0,068255603 0,092139073 0 3,4217968 0,162979312 52,85309149 0,173072142 3,6635411 0,241744397
+3,353713 190303,1294 -0,068713941 0,092133336 0 3,4224269 0,163798306 52,86198038 0,173941854 3,663713 0,241286059
+3,3537705 190335,1294 -0,069458738 0,092139706 0 3,4232292 0,164617298 52,87086927 0,174811564 3,6637705 0,240541262
+3,3539231 190367,1294 -0,069993466 0,092135251 0 3,4239166 0,16543629 52,87975816 0,175681274 3,6639231 0,240006534
+3,3539231 190399,1294 -0,070814647 0,092136525 0 3,4247377 0,166255281 52,88864705 0,176550983 3,6639231 0,239185353
+3,3541906 190431,1294 -0,071196593 0,092135884 0 3,4253871 0,167074273 52,89753594 0,177420693 3,6641906 0,238803407
+3,3544388 190463,1294 -0,071903199 0,092136525 0 3,426342 0,167893263 52,90642483 0,1782904 3,6644388 0,238096801
+3,3544197 190495,1294 -0,072571605 0,092142887 0 3,4269912 0,168712254 52,91531372 0,179160108 3,6644197 0,237428395
+3,3545153 190527,1294 -0,073144525 0,092133977 0 3,4276597 0,169531247 52,92420261 0,180029819 3,6645153 0,236855475
+3,3547635 190559,1294 -0,073660158 0,092138432 0 3,4284236 0,170350242 52,9330915 0,180899532 3,6647635 0,236339842
+3,3546679 190591,1294 -0,074385852 0,092137158 0 3,4290538 0,171169236 52,94198039 0,181769244 3,6646679 0,235614148
+3,3547254 190623,1294 -0,074805997 0,09213461 0 3,4295313 0,171988226 52,95086928 0,182638952 3,6647254 0,235194003
+3,3549545 190655,1294 -0,075722672 0,092144169 0 3,4306772 0,172807217 52,95975818 0,183508661 3,6649545 0,234277328
+3,3551073 190687,1294 -0,07614281 0,092129521 0 3,4312501 0,173626209 52,96864707 0,18437837 3,6651073 0,23385719
+3,3551455 190719,1294 -0,076811217 0,092136525 0 3,4319568 0,1744452 52,97753596 0,185248079 3,6651455 0,233188783
+3,3552217 190751,1294 -0,077250458 0,09212888 0 3,4324722 0,17526419 52,98642485 0,186117787 3,6652217 0,232749542
+3,3554318 190783,1295 -0,07786157 0,092135251 0 3,4332933 0,176083179 52,99531374 0,186987493 3,6654318 0,23213843
+3,3556228 190815,1295 -0,07854908 0,092135884 0 3,4341719 0,176902167 53,00420263 0,187857199 3,6656228 0,23145092
+3,3555465 190847,1295 -0,079217486 0,092133336 0 3,4347639 0,177721155 53,01309152 0,188726905 3,6655465 0,230782514
+3,3557374 190879,1295 -0,079618528 0,092139073 0 3,4353559 0,178540146 53,02198041 0,189596613 3,6657374 0,230381472
+3,3558712 190911,1295 -0,080286935 0,092146717 0 3,4361582 0,179359134 53,0308693 0,190466318 3,6658712 0,229713065
+3,3560431 190943,1295 -0,080745272 0,092133336 0 3,4367883 0,180178119 53,03975819 0,19133602 3,6660431 0,229254728
+3,3560622 190975,1295 -0,08156646 0,092135251 0 3,4376287 0,180997105 53,04864708 0,192205724 3,6660622 0,22843354
+3,3561959 191007,1295 -0,082062989 0,092131428 0 3,4382589 0,181816092 53,05753597 0,193075428 3,6661959 0,227937011
+3,3562722 191039,1295 -0,082674108 0,092132062 0 3,4389462 0,182635082 53,06642486 0,193945136 3,6662722 0,227325892
+3,3563485 191071,1295 -0,083208829 0,092139706 0 3,4395573 0,183454073 53,07531375 0,194814845 3,6663485 0,226791171
+3,356425 191103,1295 -0,083819948 0,092137158 0 3,4402449 0,184273059 53,08420264 0,195684549 3,666425 0,226180052
+3,3566351 191135,1295 -0,084354669 0,092137799 0 3,4409897 0,185092047 53,09309153 0,196554254 3,6666351 0,225645331
+3,3566923 191167,1295 -0,084813006 0,09214098 0 3,4415054 0,185911036 53,10198042 0,197423961 3,6666923 0,225186994
+3,3567114 191199,1295 -0,085443221 0,092137799 0 3,4421546 0,186730026 53,11086931 0,198293668 3,6667114 0,224556779
+3,3570361 191231,1295 -0,085920654 0,092135251 0 3,4429567 0,187549015 53,1197582 0,199163375 3,6670361 0,224079346
+3,357017 191263,1295 -0,086722746 0,09213461 0 3,4437399 0,188368006 53,12864709 0,200033084 3,667017 0,223277254
+3,3572271 191295,1295 -0,087085597 0,092137158 0 3,4443126 0,189186998 53,13753598 0,200902793 3,6672271 0,222914403
+3,3573034 191327,1295 -0,087582126 0,092133336 0 3,4448855 0,190005991 53,14642487 0,201772504 3,6673034 0,222417874
+3,3575518 191359,1295 -0,088212341 0,092135884 0 3,4457641 0,190824985 53,15531376 0,202642216 3,6675518 0,221787659
+3,3574181 191391,1295 -0,08870887 0,092135884 0 3,4461269 0,191643978 53,16420265 0,203511927 3,6674181 0,22129113
+3,35759 191423,1296 -0,089377277 0,092126325 0 3,4469671 0,19246297 53,17309154 0,204381637 3,66759 0,220622723
+3,3577046 191455,1296 -0,089778319 0,092132062 0 3,4474831 0,193281961 53,18198043 0,205251346 3,6677046 0,220221681
+3,3578382 191487,1296 -0,090465829 0,092139073 0 3,4483039 0,194100954 53,19086932 0,206121056 3,6678382 0,219534171
+3,3578382 191519,1296 -0,090905063 0,092139073 0 3,4487431 0,194919944 53,19975821 0,206990764 3,6678382 0,219094937
+3,3580866 191551,1296 -0,091497086 0,092133336 0 3,4495838 0,195738934 53,2086471 0,207860472 3,6680866 0,218502914
+3,358201 191583,1296 -0,092050903 0,092135251 0 3,4502518 0,196557925 53,21753599 0,20873018 3,668201 0,217949097
+3,3582776 191615,1296 -0,092432849 0,092133336 0 3,4507103 0,197376916 53,22642488 0,209599888 3,6682776 0,217567151
+3,3583348 191647,1296 -0,092986673 0,092135884 0 3,4513214 0,198195905 53,23531377 0,210469595 3,6683348 0,217013327
+3,3583729 191679,1296 -0,09344501 0,092147343 0 3,451818 0,199014892 53,24420266 0,2113393 3,6683729 0,21655499
+3,3587167 191711,1296 -0,093979739 0,09214098 0 3,4526966 0,199833877 53,25309155 0,212209003 3,6687167 0,216020261
+3,3588123 191743,1296 -0,094533563 0,092132062 0 3,4533458 0,200652864 53,26198044 0,213078706 3,6688123 0,215466437
+3,3587167 191775,1296 -0,095201969 0,09213461 0 3,4539187 0,201471854 53,27086934 0,213948414 3,6687167 0,214798031
+3,3589268 191807,1296 -0,095469333 0,092130795 0 3,454396 0,202290844 53,27975823 0,214818122 3,6689268 0,214530667
+3,3591368 191839,1296 -0,09585128 0,092137158 0 3,454988 0,203109834 53,28864712 0,215687829 3,6691368 0,21414872
+3,3590987 191871,1296 -0,096481495 0,092139706 0 3,4555802 0,20392882 53,29753601 0,216557533 3,6690987 0,213518505
+3,3594043 191903,1296 -0,096920729 0,092133336 0 3,4563251 0,204747808 53,3064249 0,217427239 3,6694043 0,213079271
+3,3593659 191935,1296 -0,097531848 0,092133977 0 3,4568977 0,205566796 53,31531379 0,218296944 3,6693659 0,212468152
+3,3596716 191967,1296 -0,097780108 0,092135884 0 3,4574518 0,206385786 53,32420268 0,219166651 3,6696716 0,212219892
+3,3596334 191999,1296 -0,098467618 0,09214098 0 3,458101 0,207204777 53,33309157 0,22003636 3,6696334 0,211532382
+3,3596334 192031,1296 -0,098925956 0,092132702 0 3,4585595 0,208023765 53,34198046 0,220906066 3,6696334 0,211074044
+3,3598053 192063,1297 -0,09944158 0,092133336 0 3,4592469 0,208842748 53,35086935 0,221775766 3,6698053 0,21055842
+3,3599582 192095,1297 -0,099899918 0,092132062 0 3,4598582 0,209661732 53,35975824 0,222645467 3,6699582 0,210100082
+3,3601108 192127,1297 -0,10035826 0,092136525 0 3,460469 0,210480716 53,36864713 0,223515169 3,6701108 0,20964174
+3,3601873 192159,1297 -0,10089298 0,09213461 0 3,4610803 0,211299703 53,37753602 0,224384873 3,6701873 0,20910702
+3,3602445 192191,1297 -0,10131312 0,092132062 0 3,4615576 0,212118691 53,38642491 0,225254579 3,6702445 0,20868688
+3,3604164 192223,1297 -0,10186695 0,092136525 0 3,4622834 0,212937678 53,3953138 0,226124283 3,6704164 0,20813305
+3,3605311 192255,1297 -0,10213431 0,092136525 0 3,4626653 0,213756662 53,40420269 0,226993984 3,6705311 0,20786569
+3,3605502 192287,1297 -0,10274542 0,092139073 0 3,4632957 0,214575648 53,41309158 0,227863688 3,6705502 0,20725458
+3,3606074 192319,1297 -0,10307008 0,092139706 0 3,4636774 0,215394634 53,42198047 0,228733391 3,6706074 0,20692992
+3,3607221 192351,1297 -0,10356661 0,092127606 0 3,4642887 0,216213619 53,43086936 0,229603093 3,6707221 0,20643339
+3,3609703 192383,1297 -0,10402495 0,092136525 0 3,4649951 0,217032603 53,43975825 0,230472795 3,6709703 0,20597505
+3,3609893 192415,1297 -0,10452148 0,092138432 0 3,4655108 0,217851587 53,44864714 0,231342496 3,6709893 0,20547852
+3,3611422 192447,1297 -0,10471245 0,092130795 0 3,4658546 0,218670573 53,45753603 0,232212199 3,6711422 0,20528755
+3,3612185 192479,1297 -0,10503711 0,092146717 0 3,4662557 0,21948956 53,46642492 0,233081904 3,6712185 0,20496289
+3,3613904 192511,1297 -0,10553364 0,092137158 0 3,466924 0,220308551 53,47531381 0,233951612 3,6713904 0,20446636
+3,3614478 192543,1297 -0,10620204 0,09213461 0 3,4676499 0,221127539 53,4842027 0,234821318 3,6714478 0,20379796
+3,3616197 192575,1297 -0,10643122 0,092137799 0 3,468051 0,221946526 53,49309159 0,235691023 3,6716197 0,20356878
+3,3617723 192607,1297 -0,10681316 0,092137799 0 3,4685855 0,222765513 53,50198048 0,236560727 3,6717723 0,20318684
+3,3618107 192639,1297 -0,10727149 0,092130795 0 3,4690821 0,223584499 53,51086937 0,237430431 3,6718107 0,20272851
+3,3619061 192671,1297 -0,10761525 0,092133336 0 3,4695213 0,224403483 53,51975826 0,238300132 3,6719061 0,20238475
+3,3619823 192703,1298 -0,1079781 0,092131428 0 3,4699605 0,225222468 53,52864715 0,239169834 3,6719823 0,2020219
+3,3621542 192735,1298 -0,10851283 0,09213461 0 3,4706671 0,226041455 53,53753604 0,240039538 3,6721542 0,20148717
+3,3621926 192767,1298 -0,1087038 0,092140347 0 3,4708965 0,226860442 53,54642493 0,240909243 3,6721926 0,2012962
+3,3622499 192799,1298 -0,10920033 0,092144802 0 3,4714501 0,227679429 53,55531382 0,241778947 3,6722499 0,20079967
+3,362479 192831,1298 -0,10960137 0,092137158 0 3,4720802 0,228498416 53,56420271 0,242648652 3,672479 0,20039863
+3,362479 192863,1298 -0,10983054 0,092137158 0 3,4723096 0,229317403 53,5730916 0,243518357 3,672479 0,20016946
+3,3625555 192895,1298 -0,11028888 0,092132702 0 3,4728444 0,230136389 53,58198049 0,24438806 3,6725555 0,19971112
+3,3627081 192927,1298 -0,11070902 0,092138432 0 3,473417 0,230955373 53,59086939 0,245257761 3,6727081 0,19929098
+3,3627272 192959,1298 -0,1108809 0,092137799 0 3,473608 0,231774358 53,59975828 0,246127463 3,6727272 0,1991191
+3,3629181 192991,1298 -0,11114826 0,092138432 0 3,4740665 0,232593342 53,60864717 0,246997165 3,6729181 0,19885174
+3,3630328 193023,1298 -0,11158749 0,09214098 0 3,4746203 0,233412327 53,61753606 0,247866867 3,6730328 0,19841251
+3,3631284 193055,1298 -0,11196945 0,092144169 0 3,4750979 0,234231314 53,62642495 0,248736572 3,6731284 0,19803055
+3,3632238 193087,1298 -0,11217952 0,092135251 0 3,4754033 0,235050302 53,63531384 0,249606277 3,6732238 0,19782048
+3,3632238 193119,1298 -0,11242778 0,092138432 0 3,4756515 0,235869289 53,64420273 0,250475982 3,6732238 0,19757222
+3,3635104 193151,1298 -0,11288612 0,092132702 0 3,4763966 0,236688276 53,65309162 0,251345686 3,6735104 0,19711388
+3,3635294 193183,1298 -0,11280973 0,092130147 0 3,4763391 0,237507262 53,66198051 0,252215389 3,6735294 0,19719027
+3,3635676 193215,1298 -0,11319168 0,092136525 0 3,4767592 0,238326249 53,6708694 0,253085094 3,6735676 0,19680832
+3,3635867 193247,1298 -0,11361182 0,09214098 0 3,4771986 0,239145238 53,67975829 0,2539548 3,6735867 0,19638818
+3,3636823 193279,1298 -0,1137073 0,092135884 0 3,4773896 0,23996423 53,68864718 0,25482451 3,6736823 0,1962927
+3,3638349 193311,1298 -0,11389828 0,09213461 0 3,4777331 0,240783222 53,69753607 0,25569422 3,6738349 0,19610172
+3,3638923 193343,1299 -0,11410835 0,092139706 0 3,4780006 0,241602215 53,70642496 0,25656393 3,6738923 0,19589165
+3,3641214 193375,1299 -0,11429932 0,092136525 0 3,4784207 0,242421205 53,71531385 0,257433639 3,6741214 0,19570068
+3,3641787 193407,1299 -0,11456668 0,092142262 0 3,4787455 0,243240196 53,72420274 0,258303347 3,6741787 0,19543332
+3,3644078 193439,1299 -0,11489134 0,092133336 0 3,4792991 0,244059188 53,73309163 0,259173056 3,6744078 0,19510866
+3,3644078 193471,1299 -0,11506321 0,092133977 0 3,479471 0,244878176 53,74198052 0,260042762 3,6744078 0,19493679
+3,3645225 193503,1299 -0,11521599 0,092135251 0 3,4797385 0,245697166 53,75086941 0,26091247 3,6745225 0,19478401
+3,3645988 193535,1299 -0,11525419 0,092137799 0 3,4798529 0,246516157 53,7597583 0,261782178 3,6745988 0,19474581
+3,3646371 193567,1299 -0,11552155 0,092133977 0 3,4801588 0,247335148 53,76864719 0,262651887 3,6746371 0,19447845
+3,3647897 193599,1299 -0,11561704 0,092133336 0 3,4804068 0,248154138 53,77753608 0,263521595 3,6747897 0,19438296
+3,3647325 193631,1299 -0,1158844 0,092136525 0 3,4806168 0,248973127 53,78642497 0,264391302 3,6747325 0,1941156
+3,3649807 193663,1299 -0,11586531 0,092138432 0 3,4808459 0,24979212 53,79531386 0,265261012 3,6749807 0,19413469
+3,3651719 193695,1299 -0,11611357 0,092139706 0 3,4812856 0,250611111 53,80420275 0,266130721 3,6751719 0,19388643
+3,3650382 193727,1299 -0,11624725 0,092133977 0 3,4812853 0,251430102 53,81309164 0,26700043 3,6750382 0,19375275
+3,3652482 193759,1299 -0,11641913 0,092137158 0 3,4816673 0,252249093 53,82198053 0,267870139 3,6752482 0,19358087
+3,3652482 193791,1299 -0,11643822 0,092133336 0 3,4816864 0,253068083 53,83086942 0,268739846 3,6752482 0,19356178
+3,3655155 193823,1299 -0,11664829 0,092132062 0 3,4821637 0,253887072 53,83975831 0,269609553 3,6755155 0,19335171
+3,3655345 193855,1299 -0,11672468 0,09214098 0 3,4822593 0,254706062 53,8486472 0,27047926 3,6755345 0,19327532
+3,3656683 193887,1299 -0,11697295 0,092142262 0 3,4826412 0,255525052 53,85753609 0,271348968 3,6756683 0,19302705
+3,3657448 193919,1299 -0,11687747 0,092139073 0 3,4826224 0,256344041 53,86642498 0,272218675 3,6757448 0,19312253
+3,3658593 193951,1299 -0,11695386 0,09212888 0 3,4828131 0,25716303 53,87531387 0,273088381 3,6758593 0,19304614
+3,3660312 193983,13 -0,11716393 0,092132702 0 3,4831951 0,257982019 53,88420276 0,273958087 3,6760312 0,19283607
+3,3659549 194015,13 -0,11718302 0,092133977 0 3,4831378 0,258801008 53,89309165 0,274827794 3,6759549 0,19281698
+3,3661649 194047,13 -0,1173167 0,092142887 0 3,4834816 0,259619998 53,90198054 0,275697502 3,6761649 0,1926833
+3,3662031 194079,13 -0,11741219 0,092132702 0 3,4836152 0,260438989 53,91086944 0,276567211 3,6762031 0,19258781
+3,3664131 194111,13 -0,11727851 0,092129521 0 3,4836917 0,261257981 53,91975833 0,277436921 3,6764131 0,19272149
+3,3665278 194143,13 -0,11766046 0,092133336 0 3,4841883 0,262076974 53,92864722 0,278306631 3,6765278 0,19233954
+3,3664896 194175,13 -0,11752678 0,092142887 0 3,4840164 0,262895966 53,93753611 0,279176341 3,6764896 0,19247322
+3,366776 194207,13 -0,11773685 0,092145436 0 3,4845128 0,263714959 53,946425 0,280046052 3,676776 0,19226315
+3,3668141 194239,13 -0,11777504 0,092136525 0 3,4845891 0,264533954 53,95531389 0,280915765 3,6768141 0,19222496
+3,366967 194271,13 -0,11779414 0,092140347 0 3,484761 0,265352949 53,96420278 0,281785478 3,676967 0,19220586
+3,366986 194303,13 -0,11785143 0,09213461 0 3,4848375 0,266171944 53,97309167 0,282655191 3,676986 0,19214857
+3,3671579 194335,13 -0,11798511 0,092138432 0 3,4851429 0,266990942 53,98198056 0,283524907 3,6771579 0,19201489
+3,3672152 194367,13 -0,1180997 0,092140347 0 3,4853148 0,267809941 53,99086945 0,284394625 3,6772152 0,1919003
+3,3672535 194399,13 -0,1180997 0,092133977 0 3,4853532 0,268628942 53,99975834 0,285264343 3,6772535 0,1919003
+3,3674445 194431,13 -0,1180424 0,092135884 0 3,485487 0,269447938 54,00864723 0,286134057 3,6774445 0,1919576
+3,3674827 194463,13 -0,11827157 0,092137158 0 3,4857543 0,270266933 54,01753612 0,28700377 3,6774827 0,19172843
+3,3676355 194495,13 -0,11827157 0,092135251 0 3,4859071 0,271085928 54,02642501 0,287873483 3,6776355 0,19172843
+3,3676164 194527,13 -0,11823338 0,092133336 0 3,4858499 0,271904927 54,0353139 0,288743201 3,6776164 0,19176662
+3,3678265 194559,13 -0,11815698 0,09213461 0 3,4859834 0,272723925 54,04420279 0,289612917 3,6778265 0,19184302
+3,3679028 194591,13 -0,11838616 0,09214098 0 3,486289 0,27354292 54,05309168 0,29048263 3,6779028 0,19161384
+3,3680365 194623,1301 -0,11834796 0,092138432 0 3,4863844 0,274361917 54,06198057 0,291352344 3,6780365 0,19165204
+3,3682466 194655,1301 -0,11850074 0,092137799 0 3,4867473 0,275180913 54,07086946 0,292222058 3,6782466 0,19149926
+3,3682847 194687,1301 -0,11848164 0,092139073 0 3,4867663 0,275999907 54,07975835 0,293091771 3,6782847 0,19151836
+3,3683994 194719,1301 -0,11853893 0,092147343 0 3,4869382 0,276818901 54,08864724 0,293961483 3,6783994 0,19146107
+3,3685138 194751,1301 -0,11836706 0,092136525 0 3,4868808 0,277637894 54,09753613 0,294831194 3,6785138 0,19163294
+3,3684757 194783,1301 -0,11869171 0,092142262 0 3,4871674 0,278456891 54,10642502 0,295700908 3,6784757 0,19130829
+3,3686857 194815,1301 -0,11850074 0,092137799 0 3,4871864 0,279275884 54,11531391 0,296570619 3,6786857 0,19149926
+3,3688195 194847,1301 -0,11867262 0,09214098 0 3,4874921 0,280094877 54,1242028 0,29744033 3,6788195 0,19132738
+3,3687623 194879,1301 -0,11865352 0,092142262 0 3,4874158 0,28091387 54,13309169 0,298310041 3,6787623 0,19134648
+3,3689532 194911,1301 -0,11869171 0,092133977 0 3,4876449 0,281732865 54,14198058 0,299179754 3,6789532 0,19130829
+3,3690677 194943,1301 -0,11859623 0,092131428 0 3,487664 0,282551859 54,15086947 0,300049465 3,6790677 0,19140377
+3,3691633 194975,1301 -0,11855803 0,092144169 0 3,4877212 0,283370854 54,15975836 0,300919179 3,6791633 0,19144197
+3,3693352 195007,1301 -0,11874901 0,09213461 0 3,4880841 0,284189849 54,16864725 0,301788892 3,6793352 0,19125099
+3,3693352 195039,1301 -0,11884449 0,092135884 0 3,4881797 0,285008844 54,17753614 0,302658604 3,6793352 0,19115551
+3,3694496 195071,1301 -0,11874901 0,092133977 0 3,4881985 0,285827837 54,18642503 0,303528316 3,6794496 0,19125099
+3,3696406 195103,1301 -0,1187681 0,092136525 0 3,4884088 0,28664683 54,19531392 0,304398026 3,6796406 0,1912319
+3,369698 195135,1301 -0,11865352 0,09214098 0 3,4883516 0,287465822 54,20420281 0,305267736 3,679698 0,19134648
+3,3698509 195167,1301 -0,1188254 0,092139706 0 3,4886763 0,288284812 54,2130917 0,306137443 3,6798509 0,1911746
+3,3698316 195199,1301 -0,11890178 0,092126973 0 3,4887333 0,289103801 54,22198059 0,30700715 3,6798316 0,19109822
+3,3700225 195231,1301 -0,11895908 0,092140347 0 3,4889817 0,289922788 54,23086949 0,307876855 3,6800225 0,19104092
+3,3700418 195263,1302 -0,11892089 0,092136525 0 3,4889627 0,290741777 54,23975838 0,308746561 3,6800418 0,19107911
+3,3703663 195295,1302 -0,11892089 0,09214098 0 3,4892871 0,291560766 54,24864727 0,309616268 3,6803663 0,19107911
+3,3702519 195327,1302 -0,11911186 0,092137158 0 3,4893637 0,292379754 54,25753616 0,310485974 3,6802519 0,19088814
+3,3704045 195359,1302 -0,11911186 0,092144169 0 3,4895163 0,293198746 54,26642505 0,311355683 3,6804045 0,19088814
+3,3704619 195391,1302 -0,11903547 0,092131428 0 3,4894974 0,294017737 54,27531394 0,312225392 3,6804619 0,19096453
+3,3706148 195423,1302 -0,11905456 0,092133977 0 3,4896693 0,294836726 54,28420283 0,313095098 3,6806148 0,19094544
+3,3708248 195455,1302 -0,11909276 0,092130795 0 3,4899175 0,295655715 54,29309172 0,313964805 3,6808248 0,19090724
+3,3707101 195487,1302 -0,11930283 0,092144169 0 3,4900129 0,296474706 54,30198061 0,314834514 3,6807101 0,19069717
+3,3710539 195519,1302 -0,11926463 0,092137158 0 3,4903185 0,297293696 54,3108695 0,315704222 3,6810539 0,19073537
+3,3709776 195551,1302 -0,11920734 0,092139706 0 3,490185 0,29811269 54,31975839 0,316573933 3,6809776 0,19079266
+3,3709967 195583,1302 -0,11916915 0,092132702 0 3,4901659 0,298931683 54,32864728 0,317443644 3,6809967 0,19083085
+3,3713403 195615,1302 -0,11922644 0,09213461 0 3,4905667 0,299750675 54,33753617 0,318313354 3,6813403 0,19077356
+3,3711877 195647,1302 -0,11913095 0,092137158 0 3,4903185 0,300569666 54,34642506 0,319183063 3,6811877 0,19086905
+3,3715315 195679,1302 -0,11926463 0,092139073 0 3,4907961 0,301388656 54,35531395 0,320052771 3,6815315 0,19073537
+3,3716459 195711,1302 -0,11920734 0,092143528 0 3,4908533 0,302207646 54,36420284 0,320922478 3,6816459 0,19079266
+3,3717031 195743,1302 -0,11918824 0,092137799 0 3,4908915 0,303026638 54,37309173 0,321792188 3,6817031 0,19081176
+3,3715887 195775,1302 -0,11918824 0,092136525 0 3,490777 0,303845628 54,38198062 0,322661895 3,6815887 0,19081176
+3,371856 195807,1302 -0,11934102 0,092132702 0 3,4911971 0,304664618 54,39086951 0,323531603 3,681856 0,19065898
+3,3718941 195839,1302 -0,11928373 0,092147343 0 3,4911778 0,305483611 54,3997584 0,324401314 3,6818941 0,19071627
+3,3721044 195871,1302 -0,11937921 0,092135251 0 3,4914837 0,306302605 54,40864729 0,325271026 3,6821044 0,19062079
+3,3722379 195903,1303 -0,11945561 0,092138432 0 3,4916935 0,307121596 54,41753618 0,326140734 3,6822379 0,19054439
+3,3723335 195935,1303 -0,11934102 0,092135251 0 3,4916747 0,307940586 54,42642507 0,327010442 3,6823335 0,19065898
+3,3724289 195967,1303 -0,11932193 0,092139073 0 3,4917507 0,308759577 54,43531396 0,327880151 3,6824289 0,19067807
+3,3723907 195999,1303 -0,11937921 0,092132702 0 3,49177 0,309578565 54,44420285 0,328749857 3,6823907 0,19062079
+3,3725817 196031,1303 -0,11928373 0,092142887 0 3,4918654 0,310397556 54,45309174 0,329619566 3,6825817 0,19071627
+3,3726964 196063,1303 -0,11941741 0,092139706 0 3,4921138 0,311216549 54,46198063 0,330489276 3,6826964 0,19058259
+3,3727345 196095,1303 -0,11937921 0,092130795 0 3,4921138 0,312035542 54,47086952 0,331358987 3,6827345 0,19062079
+3,3729827 196127,1303 -0,11939832 0,092135251 0 3,4923811 0,312854534 54,47975841 0,332228696 3,6829827 0,19060168
+3,3730018 196159,1303 -0,11945561 0,092137158 0 3,4924574 0,313673528 54,4886473 0,333098408 3,6830018 0,19054439
+3,3730593 196191,1303 -0,11955109 0,092136525 0 3,4926105 0,314492521 54,49753619 0,333968119 3,6830593 0,19044891
+3,3731356 196223,1303 -0,11937921 0,092136525 0 3,4925148 0,315311514 54,50642508 0,334837831 3,6831356 0,19062079
+3,3732502 196255,1303 -0,1194747 0,092129521 0 3,4927249 0,316130505 54,51531397 0,335707539 3,6832502 0,1905253
+3,3735366 196287,1303 -0,11941741 0,092137799 0 3,492954 0,316949496 54,52420286 0,336577248 3,6835366 0,19058259
+3,3734412 196319,1303 -0,1195129 0,09214098 0 3,492954 0,317768488 54,53309175 0,337446957 3,6834412 0,1904871
+3,373594 196351,1303 -0,1195129 0,092146084 0 3,4931068 0,31858748 54,54198065 0,338316667 3,683594 0,1904871
+3,3736513 196383,1303 -0,11941741 0,092139706 0 3,4930687 0,319406474 54,55086954 0,339186379 3,6836513 0,19058259
+3,373785 196415,1303 -0,11968478 0,092135884 0 3,4934697 0,320225466 54,55975843 0,340056088 3,683785 0,19031522
+3,3738804 196447,1303 -0,119532 0,092142262 0 3,4934125 0,321044457 54,56864732 0,340925798 3,6838804 0,190468
+3,3738232 196479,1303 -0,11972297 0,092138432 0 3,4935462 0,321863452 54,57753621 0,341795511 3,6838232 0,19027703
+3,3741479 196511,1303 -0,11958929 0,092137799 0 3,4937372 0,322682445 54,5864251 0,342665221 3,6841479 0,19041071
+3,3742433 196543,1304 -0,11962748 0,092135884 0 3,4938707 0,323501436 54,59531399 0,34353493 3,6842433 0,19037252
+3,3743961 196575,1304 -0,11958929 0,09214098 0 3,4939854 0,324320428 54,60420288 0,34440464 3,6843961 0,19041071
+3,3744342 196607,1304 -0,11976116 0,092132702 0 3,4941955 0,325139422 54,61309177 0,345274352 3,6844342 0,19023884
+3,3745871 196639,1304 -0,11968478 0,09213461 0 3,4942718 0,325958413 54,62198066 0,34614406 3,6845871 0,19031522
+3,374759 196671,1304 -0,11966567 0,092130147 0 3,4944246 0,326777404 54,63086955 0,347013769 3,684759 0,19033433
+3,374778 196703,1304 -0,11981846 0,092132062 0 3,4945965 0,327596393 54,63975844 0,347883476 3,684778 0,19018154
+3,3751028 196735,1304 -0,11964658 0,092136525 0 3,4947493 0,328415385 54,64864733 0,348753185 3,6851028 0,19035342
+3,374778 196767,1304 -0,11985666 0,092132062 0 3,4946346 0,329234376 54,65753622 0,349622894 3,684778 0,19014334
+3,374969 196799,1304 -0,11960839 0,092136525 0 3,4945774 0,330053366 54,66642511 0,350492602 3,684969 0,19039161
+3,3751028 196831,1304 -0,11987575 0,092137799 0 3,4949784 0,330872353 54,675314 0,351362306 3,6851028 0,19012425
+3,3753319 196863,1304 -0,11983755 0,092135884 0 3,4951694 0,331691342 54,68420289 0,352232012 3,6853319 0,19016245
+3,37537 196895,1304 -0,11968478 0,092135884 0 3,4950547 0,332510332 54,69309178 0,353101721 3,68537 0,19031522
+3,3752747 196927,1304 -0,12004763 0,092137799 0 3,4953222 0,333329323 54,70198067 0,353971429 3,6852747 0,18995237
+3,3753319 196959,1304 -0,11983755 0,092132702 0 3,4951694 0,334148314 54,71086956 0,354841138 3,6853319 0,19016245
+3,3757138 196991,1304 -0,11978026 0,092136525 0 3,4954941 0,334967304 54,71975845 0,355710845 3,6857138 0,19021974
+3,375752 197023,1304 -0,11991394 0,092141613 0 3,495666 0,335786294 54,72864734 0,356580553 3,685752 0,19008606
+3,3758476 197055,1304 -0,11989485 0,092133336 0 3,4957423 0,336605281 54,73753623 0,357450257 3,6858476 0,19010515
+3,3758857 197087,1304 -0,11978026 0,092142887 0 3,495666 0,337424271 54,74642512 0,358319965 3,6858857 0,19021974
+3,375962 197119,1304 -0,11991394 0,09213461 0 3,4958761 0,338243262 54,75531401 0,359189674 3,685962 0,19008606
+3,3761339 197151,1304 -0,11993304 0,092136525 0 3,496067 0,339062253 54,7642029 0,360059382 3,6861339 0,19006696
+3,3761721 197183,1305 -0,11985666 0,092135884 0 3,4960287 0,339881243 54,77309179 0,36092909 3,6861721 0,19014334
+3,3762677 197215,1305 -0,11989485 0,092136525 0 3,4961624 0,340700232 54,78198068 0,361798796 3,6862677 0,19010515
+3,3763821 197247,1305 -0,12004763 0,092144802 0 3,4964297 0,341519219 54,79086957 0,362668501 3,6863821 0,18995237
+3,3765349 197279,1305 -0,11991394 0,092137799 0 3,496449 0,342338207 54,79975846 0,363538207 3,6865349 0,19008606
+3,3765924 197311,1305 -0,12008582 0,09212888 0 3,4966781 0,343157196 54,80864735 0,364407914 3,6865924 0,18991418
+3,3767641 197343,1305 -0,11989485 0,092133977 0 3,4966588 0,343976182 54,81753624 0,365277617 3,6867641 0,19010515
+3,3768215 197375,1305 -0,12006672 0,092130795 0 3,4968882 0,344795169 54,82642513 0,366147321 3,6868215 0,18993328
+3,3769934 197407,1305 -0,12012401 0,092130795 0 3,4971175 0,345614156 54,83531402 0,367017026 3,6869934 0,18987599
+3,3770697 197439,1305 -0,12000943 0,092136525 0 3,4970791 0,346433144 54,84420291 0,367886731 3,6870697 0,18999057
+3,3771462 197471,1305 -0,12000943 0,092138432 0 3,4971557 0,34725213 54,8530918 0,368756435 3,6871462 0,18999057
+3,3771844 197503,1305 -0,12016221 0,092132702 0 3,4973466 0,348071115 54,8619807 0,369626137 3,6871844 0,18983779
+3,3773944 197535,1305 -0,11993304 0,092133977 0 3,4973276 0,348890101 54,87086959 0,370495841 3,6873944 0,19006696
+3,3775282 197567,1305 -0,12008582 0,092140347 0 3,4976139 0,34970909 54,87975848 0,371365547 3,6875282 0,18991418
+3,3773944 197599,1305 -0,12016221 0,092129521 0 3,4975567 0,350528077 54,88864737 0,372235252 3,6873944 0,18983779
+3,3776045 197631,1305 -0,12027679 0,092136525 0 3,4978812 0,351347065 54,89753626 0,373104957 3,6876045 0,18972321
+3,3778336 197663,1305 -0,12018131 0,092133336 0 3,4980149 0,352166052 54,90642515 0,373974661 3,6878336 0,18981869
+3,3779292 197695,1305 -0,12014312 0,092136525 0 3,4980724 0,35298504 54,91531404 0,374844366 3,6879292 0,18985688
+3,3779101 197727,1305 -0,12012401 0,092130147 0 3,4980342 0,353804028 54,92420293 0,375714072 3,6879101 0,18987599
+3,3780437 197759,1305 -0,12016221 0,092135251 0 3,4982059 0,354623013 54,93309182 0,376583775 3,6880437 0,18983779
+3,378273 197791,1305 -0,12018131 0,092137799 0 3,4984543 0,355442001 54,94198071 0,377453481 3,688273 0,18981869
+3,3782156 197823,1306 -0,12029589 0,09213461 0 3,4985116 0,35626099 54,9508696 0,378323187 3,6882156 0,18970411
+3,3783875 197855,1306 -0,1202577 0,092138432 0 3,4986451 0,357079983 54,95975849 0,379192898 3,6883875 0,1897423
+3,378273 197887,1306 -0,12031499 0,092139073 0 3,4985881 0,357898974 54,96864738 0,380062606 3,688273 0,18968501
+3,3785594 197919,1306 -0,12033409 0,092135251 0 3,4988935 0,358717966 54,97753627 0,380932316 3,6885594 0,18966591
+3,378655 197951,1306 -0,12029589 0,092133977 0 3,498951 0,359536958 54,98642516 0,381802026 3,688655 0,18970411
+3,3787694 197983,1306 -0,1202195 0,092137799 0 3,4989889 0,360355947 54,99531405 0,382671733 3,6887694 0,1897805
+3,3787694 198015,1306 -0,12027679 0,092131428 0 3,4990461 0,36117494 55,00420294 0,383541443 3,6887694 0,18972321
+3,3789222 198047,1306 -0,12039138 0,092131428 0 3,4993136 0,361993932 55,01309183 0,384411154 3,6889222 0,18960862
+3,3790941 198079,1306 -0,12033409 0,092139706 0 3,4994283 0,362812925 55,02198072 0,385280864 3,6890941 0,18966591
+3,3789985 198111,1306 -0,12044867 0,092133977 0 3,4994471 0,363631916 55,03086961 0,386150572 3,6889985 0,18955133
+3,379266 198143,1306 -0,12042958 0,092141613 0 3,4996955 0,364450907 55,0397585 0,387020281 3,689266 0,18957042
+3,3793423 198175,1306 -0,12041047 0,09213461 0 3,4997528 0,365269897 55,04864739 0,387889989 3,6893423 0,18958953
+3,3794951 198207,1306 -0,12052506 0,092146717 0 3,5000203 0,366088885 55,05753628 0,388759695 3,6894951 0,18947494
+3,3795333 198239,1306 -0,12041047 0,092142887 0 3,4999437 0,366907875 55,06642517 0,389629402 3,6895333 0,18958953
+3,3795333 198271,1306 -0,12046777 0,092133336 0 3,500001 0,367726863 55,07531406 0,390499108 3,6895333 0,18953223
+3,379667 198303,1306 -0,12052506 0,09213461 0 3,5001922 0,36854585 55,08420295 0,391368812 3,689667 0,18947494
+3,3798771 198335,1306 -0,12062055 0,092131428 0 3,5004976 0,369364836 55,09309184 0,392238516 3,6898771 0,18937945
+3,379858 198367,1306 -0,12060145 0,092135251 0 3,5004594 0,370183822 55,10198073 0,393108219 3,689858 0,18939855
+3,3798771 198399,1306 -0,12058235 0,092139073 0 3,5004594 0,371002807 55,11086962 0,393977922 3,6898771 0,18941765
+3,3801827 198431,1306 -0,12062055 0,092132702 0 3,5008032 0,371821792 55,11975851 0,394847624 3,6901827 0,18937945
+3,3802209 198463,1307 -0,12071604 0,092133336 0 3,500937 0,372640776 55,1286474 0,395717325 3,6902209 0,18928396
+3,3803737 198495,1307 -0,12056325 0,092142262 0 3,500937 0,373459763 55,13753629 0,396587029 3,6903737 0,18943675
+3,3803737 198527,1307 -0,12075423 0,092135251 0 3,501128 0,37427875 55,14642518 0,397456733 3,6903737 0,18924577
+3,3805647 198559,1307 -0,12058235 0,092133336 0 3,501147 0,375097738 55,15531407 0,39832644 3,6905647 0,18941765
+3,3805647 198591,1307 -0,12075423 0,092137158 0 3,5013189 0,375916725 55,16420296 0,399196143 3,6905647 0,18924577
+3,3807175 198623,1307 -0,12069693 0,09213461 0 3,5014145 0,376735716 55,17309185 0,400065852 3,6907175 0,18930307
+3,3808701 198655,1307 -0,12073513 0,092139706 0 3,5016053 0,377554706 55,18198075 0,40093556 3,6908701 0,18926487
+3,3808894 198687,1307 -0,12069693 0,092135251 0 3,5015864 0,378373697 55,19086964 0,401805269 3,6908894 0,18930307
+3,3810995 198719,1307 -0,12075423 0,09213461 0 3,5018537 0,379192686 55,19975853 0,402674976 3,6910995 0,18924577
+3,3811376 198751,1307 -0,12058235 0,092135251 0 3,50172 0,380011674 55,20864742 0,403544681 3,6911376 0,18941765
+3,3811948 198783,1307 -0,12075423 0,09213461 0 3,5019491 0,380830664 55,21753631 0,404414389 3,6911948 0,18924577
+3,3813095 198815,1307 -0,12079242 0,092132702 0 3,5021019 0,381649654 55,2264252 0,405284096 3,6913095 0,18920758
+3,3814433 198847,1307 -0,12077332 0,092138432 0 3,5022166 0,382468643 55,23531409 0,406153802 3,6914433 0,18922668
+3,3814623 198879,1307 -0,12077332 0,092135884 0 3,5022357 0,383287634 55,24420298 0,407023511 3,6914623 0,18922668
+3,3815577 198911,1307 -0,12086881 0,092133336 0 3,5024266 0,384106621 55,25309187 0,407893216 3,6915577 0,18913119
+3,3818059 198943,1307 -0,12079242 0,092132062 0 3,5025983 0,384925606 55,26198076 0,408762918 3,6918059 0,18920758
+3,3818059 198975,1307 -0,1209643 0,092133977 0 3,5027702 0,385744592 55,27086965 0,409632622 3,6918059 0,1890357
+3,3818634 199007,1307 -0,12086881 0,092137158 0 3,5027323 0,386563576 55,27975854 0,410502323 3,6918634 0,18913119
+3,3821688 199039,1307 -0,1210025 0,092133336 0 3,5031712 0,387382559 55,28864743 0,411372023 3,6921688 0,1889975
+3,3822072 199071,1307 -0,12090701 0,092139073 0 3,5031142 0,388201545 55,29753632 0,412241726 3,6922072 0,18909299
+3,3822262 199103,1308 -0,1209834 0,092132702 0 3,5032096 0,38902053 55,30642521 0,413111429 3,6922262 0,1890166
+3,3822072 199135,1308 -0,1209452 0,092138432 0 3,5031524 0,389839515 55,3153141 0,413981132 3,6922072 0,1890548
+3,3824363 199167,1308 -0,12119347 0,092142887 0 3,5036297 0,390658505 55,32420299 0,414850839 3,6924363 0,18880653
+3,3826082 199199,1308 -0,1210025 0,092135251 0 3,5036106 0,391477498 55,33309188 0,41572055 3,6926082 0,1889975
+3,3826082 199231,1308 -0,12107889 0,092143528 0 3,5036871 0,392296491 55,34198077 0,416590261 3,6926082 0,18892111
+3,3827417 199263,1308 -0,12107889 0,092139706 0 3,5038207 0,393115483 55,35086966 0,41745997 3,6927417 0,18892111
+3,3828373 199295,1308 -0,12117437 0,09215308 0 3,5040116 0,393934474 55,35975855 0,418329679 3,6928373 0,18882563
+3,3829136 199327,1308 -0,12113617 0,092140347 0 3,5040498 0,394753465 55,36864744 0,419199388 3,6929136 0,18886383
+3,3828945 199359,1308 -0,12119347 0,092144802 0 3,5040879 0,395572457 55,37753633 0,420069097 3,6928945 0,18880653
+3,3832192 199391,1308 -0,12117437 0,09213461 0 3,5043936 0,396391446 55,38642522 0,420938804 3,6932192 0,18882563
+3,3831811 199423,1308 -0,12109798 0,092130795 0 3,5042791 0,397210435 55,39531411 0,42180851 3,6931811 0,18890202
+3,3832192 199455,1308 -0,12107889 0,09213461 0 3,5042982 0,398029424 55,404203 0,422678217 3,6932192 0,18892111
+3,3832955 199487,1308 -0,12109798 0,092135884 0 3,5043936 0,398848416 55,41309189 0,423547927 3,6932955 0,18890202
+3,383353 199519,1308 -0,12125076 0,092135884 0 3,5046039 0,399667408 55,42198078 0,424417637 3,693353 0,18874924
+3,3834865 199551,1308 -0,12128896 0,092139706 0 3,5047755 0,400486398 55,43086967 0,425287344 3,6934865 0,18871104
+3,3836584 199583,1308 -0,12128896 0,092137158 0 3,5049474 0,401305386 55,43975856 0,42615705 3,6936584 0,18871104
+3,3838112 199615,1308 -0,12109798 0,092130147 0 3,5049093 0,402124374 55,44864745 0,427026755 3,6938112 0,18890202
+3,3837159 199647,1308 -0,12130805 0,092144802 0 3,505024 0,402943365 55,45753634 0,427896464 3,6937159 0,18869195
+3,3840022 199679,1308 -0,12126986 0,09214098 0 3,5052722 0,403762353 55,46642523 0,42876617 3,6940022 0,18873014
+3,3839831 199711,1308 -0,12132715 0,092138432 0 3,5053103 0,404581341 55,47531412 0,429635875 3,6939831 0,18867285
+3,3840022 199743,1309 -0,12151812 0,09214098 0 3,5055203 0,405400326 55,48420301 0,430505578 3,6940022 0,18848188
+3,3840978 199775,1309 -0,12130805 0,092137799 0 3,5054059 0,406219316 55,4930919 0,431375286 3,6940978 0,18869195
+3,3844223 199807,1309 -0,12144173 0,092130795 0 3,5058641 0,407038309 55,5019808 0,432244996 3,6944223 0,18855827
+3,3844988 199839,1309 -0,1216327 0,092140347 0 3,5061316 0,407857298 55,51086969 0,433114702 3,6944988 0,1883673
+3,384537 199871,1309 -0,12140354 0,092139706 0 3,5059404 0,408676285 55,51975858 0,433984407 3,694537 0,18859646
+3,3846326 199903,1309 -0,12144173 0,09213461 0 3,5060744 0,409495274 55,52864747 0,434854114 3,6946326 0,18855827
+3,3846898 199935,1309 -0,12147993 0,092136525 0 3,5061698 0,410314261 55,53753636 0,435723818 3,6946898 0,18852007
+3,3847852 199967,1309 -0,12134624 0,092133336 0 3,5061314 0,411133247 55,54642525 0,436593522 3,6947852 0,18865376
+3,384747 199999,1309 -0,12134624 0,092129521 0 3,5060933 0,411952233 55,55531414 0,437463225 3,694747 0,18865376
+3,385129 200031,1309 -0,12151812 0,092137158 0 3,5066471 0,41277122 55,56420303 0,438332929 3,695129 0,18848188
+3,3850527 200063,1309 -0,12138444 0,092138432 0 3,5064371 0,413590209 55,57309192 0,439202636 3,6950527 0,18861556
+3,3852246 200095,1309 -0,12159451 0,092137799 0 3,506819 0,414409198 55,58198081 0,440072342 3,6952246 0,18840549
+3,3853581 200127,1309 -0,12159451 0,092140347 0 3,5069525 0,415228185 55,5908697 0,440942047 3,6953581 0,18840549
+3,3853774 200159,1309 -0,12147993 0,092139073 0 3,5068574 0,416047172 55,59975859 0,441811752 3,6953774 0,18852007
+3,3853965 200191,1309 -0,12157542 0,092130795 0 3,5069718 0,416866163 55,60864748 0,44268146 3,6953965 0,18842458
+3,3856637 200223,1309 -0,12151812 0,09214098 0 3,5071819 0,417685153 55,61753637 0,443551168 3,6956637 0,18848188
+3,3855684 200255,1309 -0,12169 0,092129521 0 3,5072584 0,418504142 55,62642526 0,444420875 3,6955684 0,18831
+3,3858738 200287,1309 -0,12161361 0,092138432 0 3,5074873 0,419323133 55,63531415 0,445290583 3,6958738 0,18838639
+3,3858929 200319,1309 -0,12176639 0,092137158 0 3,5076592 0,420142121 55,64420304 0,446160289 3,6958929 0,18823361
+3,3859503 200351,1309 -0,12170909 0,092133336 0 3,5076594 0,420961109 55,65309193 0,447029995 3,6959503 0,18829091
+3,3860457 200383,131 -0,12161361 0,092136525 0 3,5076592 0,421780098 55,66198082 0,447899701 3,6960457 0,18838639
+3,3861604 200415,131 -0,12186188 0,092139073 0 3,5080223 0,422599087 55,67086971 0,448769408 3,6961604 0,18813812
+3,3862939 200447,131 -0,12159451 0,092129521 0 3,5078883 0,423418074 55,6797586 0,449639112 3,6962939 0,18840549
+3,3863132 200479,131 -0,12191916 0,092138432 0 3,5082324 0,424237061 55,68864749 0,450508817 3,6963132 0,18808084
+3,3864849 200511,131 -0,12161361 0,092137158 0 3,5080984 0,425056049 55,69753638 0,451378522 3,6964849 0,18838639
+3,3865805 200543,131 -0,12178548 0,092133977 0 3,5083659 0,425875039 55,70642527 0,45224823 3,6965805 0,18821452
+3,3865805 200575,131 -0,12180458 0,092140347 0 3,5083849 0,426694029 55,71531416 0,453117937 3,6965805 0,18819542
+3,3867142 200607,131 -0,12195736 0,092141613 0 3,5086715 0,427513019 55,72420305 0,453987645 3,6967142 0,18804264
+3,3868861 200639,131 -0,12197646 0,092138432 0 3,5088625 0,428332009 55,73309194 0,454857352 3,6968861 0,18802354
+3,3869624 200671,131 -0,12193827 0,092143528 0 3,5089006 0,429150998 55,74198083 0,455727059 3,6969624 0,18806173
+3,3869624 200703,131 -0,12186188 0,092132062 0 3,5088243 0,429969989 55,75086972 0,456596767 3,6969624 0,18813812
+3,3871152 200735,131 -0,12193827 0,092135251 0 3,5090535 0,430788978 55,75975861 0,457466474 3,6971152 0,18806173
+3,3871343 200767,131 -0,12201465 0,092132702 0 3,5091491 0,431607965 55,7686475 0,458336179 3,6971343 0,18798535
+3,3873634 200799,131 -0,12207194 0,092132062 0 3,5094354 0,432426949 55,77753639 0,45920588 3,6973634 0,18792806
+3,3874016 200831,131 -0,12193827 0,092136525 0 3,5093398 0,433245934 55,78642528 0,460075583 3,6974016 0,18806173
+3,3874972 200863,131 -0,12207194 0,092137158 0 3,5095692 0,434064925 55,79531417 0,460945291 3,6974972 0,18792806
+3,3876116 200895,131 -0,12216743 0,092139073 0 3,509779 0,434883914 55,80420306 0,461814998 3,6976116 0,18783257
+3,38765 200927,131 -0,12211014 0,092132062 0 3,5097601 0,435702904 55,81309196 0,462684705 3,69765 0,18788986
+3,3876882 200959,131 -0,12226292 0,092138432 0 3,5099511 0,436521891 55,82198085 0,46355441 3,6976882 0,18773708
+3,387841 200991,131 -0,12214833 0,092135251 0 3,5099893 0,437340879 55,83086974 0,464424116 3,697841 0,18785167
+3,3879173 201023,1311 -0,12212924 0,092138432 0 3,5100465 0,438159865 55,83975863 0,465293819 3,6979173 0,18787076
+3,3879554 201055,1311 -0,12232021 0,092135884 0 3,5102756 0,438978852 55,84864752 0,466163523 3,6979554 0,18767979
+3,3880892 201087,1311 -0,1223775 0,092137158 0 3,5104666 0,439797839 55,85753641 0,467033228 3,6980892 0,1876225
+3,3882802 201119,1311 -0,1223584 0,092138432 0 3,5106385 0,440616826 55,8664253 0,467902932 3,6982802 0,1876416
+3,3882611 201151,1311 -0,1224157 0,092140347 0 3,5106769 0,441435818 55,87531419 0,468772642 3,6982611 0,1875843
+3,3883948 201183,1311 -0,1224157 0,09213461 0 3,5108106 0,442254811 55,88420308 0,469642353 3,6983948 0,1875843
+3,3886049 201215,1311 -0,12245389 0,092146717 0 3,5110588 0,443073802 55,89309197 0,470512061 3,6986049 0,18754611
+3,3885858 201247,1311 -0,1223966 0,092140347 0 3,5109825 0,443892794 55,90198086 0,471381771 3,6985858 0,1876034
+3,3887577 201279,1311 -0,12253028 0,092138432 0 3,5112879 0,444711785 55,91086975 0,472251479 3,6987577 0,18746972
+3,3887193 201311,1311 -0,12253028 0,092133336 0 3,5112495 0,445530776 55,91975864 0,473121189 3,6987193 0,18746972
+3,3887386 201343,1311 -0,12243479 0,092132702 0 3,5111735 0,446349767 55,92864753 0,473990897 3,6987386 0,18756521
+3,3889296 201375,1311 -0,12256847 0,09212824 0 3,511498 0,447168756 55,93753642 0,474860604 3,6989296 0,18743153
+3,3889678 201407,1311 -0,1223584 0,092137799 0 3,5113261 0,447987743 55,94642531 0,475730309 3,6989678 0,1876416
+3,3892732 201439,1311 -0,12256847 0,092138432 0 3,5118415 0,448806732 55,9553142 0,476600015 3,6992732 0,18743153
+3,3893116 201471,1311 -0,12256847 0,092143528 0 3,5118799 0,44962572 55,96420309 0,477469721 3,6993116 0,18743153
+3,3893497 201503,1311 -0,12270216 0,09213461 0 3,5120518 0,450444709 55,97309198 0,478339427 3,6993497 0,18729784
+3,3895407 201535,1311 -0,12251119 0,092140347 0 3,5120518 0,451263696 55,98198087 0,479209132 3,6995407 0,18748881
+3,3896551 201567,1311 -0,12256847 0,092135884 0 3,5122235 0,452082685 55,99086976 0,480078838 3,6996551 0,18743153
+3,3895788 201599,1311 -0,12258758 0,092139073 0 3,5121665 0,452901674 55,99975865 0,480948545 3,6995788 0,18741242
+3,389827 201631,1311 -0,12262577 0,092132062 0 3,5124528 0,453720665 56,00864754 0,481818254 3,699827 0,18737423
+3,3898461 201663,1312 -0,12254938 0,092131428 0 3,5123954 0,454539653 56,01753643 0,482687959 3,6998461 0,18745062
+3,3898845 201695,1312 -0,12272125 0,092130795 0 3,5126057 0,455358639 56,02642532 0,483557663 3,6998845 0,18727875
+3,3898845 201727,1312 -0,12275945 0,092125699 0 3,5126438 0,456177627 56,03531421 0,484427368 3,6998845 0,18724055
+3,3900564 201759,1312 -0,12266396 0,09213461 0 3,5127203 0,456996614 56,0442031 0,485297072 3,7000564 0,18733604
+3,390228 201791,1312 -0,12291223 0,092144802 0 3,5131402 0,457815604 56,05309199 0,486166779 3,700228 0,18708777
+3,3902855 201823,1312 -0,12291223 0,092135251 0 3,5131977 0,458634592 56,06198088 0,487036485 3,7002855 0,18708777
+3,390419 201855,1312 -0,12275945 0,092135251 0 3,5131783 0,459453583 56,07086977 0,487906194 3,700419 0,18724055
+3,3904765 201887,1312 -0,12285493 0,092141613 0 3,5133314 0,460272573 56,07975866 0,488775902 3,7004765 0,18714507
+3,3906102 201919,1312 -0,12285493 0,092144169 0 3,5134652 0,461091564 56,08864755 0,48964561 3,7006102 0,18714507
+3,3908393 201951,1312 -0,12293132 0,092135884 0 3,5137706 0,461910553 56,09753644 0,490515317 3,7008393 0,18706868
+3,3907628 201983,1312 -0,12296952 0,09213461 0 3,5137324 0,462729541 56,10642533 0,491385022 3,7007628 0,18703048
+3,3909156 202015,1312 -0,12295042 0,092135884 0 3,5138659 0,463548528 56,11531422 0,492254727 3,7009156 0,18704958
+3,3910494 202047,1312 -0,12304591 0,092133336 0 3,5140953 0,464367515 56,12420311 0,493124431 3,7010494 0,18695409
+3,3911066 202079,1312 -0,12298862 0,092142262 0 3,5140953 0,465186503 56,13309201 0,493994137 3,7011066 0,18701138
+3,3911448 202111,1312 -0,12302681 0,092139073 0 3,5141716 0,466005495 56,1419809 0,494863847 3,7011448 0,18697319
+3,3911831 202143,1312 -0,12300771 0,092138432 0 3,5141909 0,466824486 56,15086979 0,495733556 3,7011831 0,18699229
+3,3915076 202175,1312 -0,1231223 0,092137158 0 3,5146298 0,467643474 56,15975868 0,496603261 3,7015076 0,1868777
+3,3914504 202207,1312 -0,12306501 0,092135884 0 3,5145154 0,468462462 56,16864757 0,497472967 3,7014504 0,18693499
+3,3914504 202239,1312 -0,12323689 0,092132702 0 3,5146873 0,469281449 56,17753646 0,498342671 3,7014504 0,18676311
+3,3916795 202271,1312 -0,12331327 0,092129521 0 3,5149927 0,470100434 56,18642535 0,499212374 3,7016795 0,18668673
+3,3917751 202303,1313 -0,12337057 0,092136525 0 3,5151458 0,470919421 56,19531424 0,500082078 3,7017751 0,18662943
+3,3917942 202335,1313 -0,12333237 0,092139706 0 3,5151265 0,471738409 56,20420313 0,500951784 3,7017942 0,18666763
+3,3920043 202367,1313 -0,12319869 0,09213461 0 3,515203 0,472557397 56,21309202 0,501821489 3,7020043 0,18680131
+3,3920424 202399,1313 -0,12340876 0,092135251 0 3,5154512 0,473376382 56,22198091 0,502691191 3,7020424 0,18659124
+3,3921762 202431,1313 -0,12323689 0,092142262 0 3,515413 0,474195369 56,2308698 0,503560896 3,7021762 0,18676311
+3,3922143 202463,1313 -0,12352335 0,092132062 0 3,5157375 0,475014356 56,23975869 0,5044306 3,7022143 0,18647665
+3,3921571 202495,1313 -0,12346605 0,092131428 0 3,5156231 0,475833345 56,24864758 0,505300307 3,7021571 0,18653395
+3,3922715 202527,1313 -0,12369522 0,092138432 0 3,5159667 0,476652334 56,25753647 0,506170014 3,7022715 0,18630478
+3,3924053 202559,1313 -0,12358063 0,092138432 0 3,515986 0,477471322 56,26642536 0,507039719 3,7024053 0,18641937
+3,3926535 202591,1313 -0,12354244 0,092133977 0 3,516196 0,47829031 56,27531425 0,507909425 3,7026535 0,18645756
+3,3925962 202623,1313 -0,12359973 0,092132702 0 3,516196 0,479109298 56,28420314 0,50877913 3,7025962 0,18640027
+3,3928444 202655,1313 -0,12371432 0,092137158 0 3,5165586 0,479928286 56,29309203 0,509648836 3,7028444 0,18628568
+3,392921 202687,1313 -0,12390529 0,092139706 0 3,5168262 0,480747274 56,30198092 0,510518541 3,702921 0,18609471
+3,392921 202719,1313 -0,12367612 0,092140347 0 3,516597 0,481566262 56,31086981 0,511388246 3,702921 0,18632388
+3,3930354 202751,1313 -0,1237907 0,092137158 0 3,5168262 0,482385252 56,3197587 0,512257954 3,7030354 0,1862093
+3,3931119 202783,1313 -0,1237907 0,092136525 0 3,5169027 0,483204242 56,32864759 0,513127662 3,7031119 0,1862093
+3,3931882 202815,1313 -0,1237907 0,092137799 0 3,516979 0,484023233 56,33753648 0,513997371 3,7031882 0,1862093
+3,3932648 202847,1313 -0,123848 0,092135884 0 3,5171127 0,484842224 56,34642537 0,514867079 3,7032648 0,186152
+3,3934557 202879,1313 -0,12398168 0,092140347 0 3,5174375 0,485661216 56,35531426 0,515736789 3,7034557 0,18601832
+3,3935702 202911,1313 -0,12413446 0,092136525 0 3,5177047 0,486480204 56,36420315 0,516606494 3,7035702 0,18586554
+3,3934748 202943,1314 -0,12388619 0,092137158 0 3,5173609 0,48729919 56,37309204 0,517476198 3,7034748 0,18611381
+3,3936276 202975,1314 -0,12400078 0,09214098 0 3,5176284 0,488118175 56,38198093 0,5183459 3,7036276 0,18599922
+3,3937421 203007,1314 -0,12417265 0,092133336 0 3,5179148 0,488937161 56,39086982 0,519215603 3,7037421 0,18582735
+3,3937802 203039,1314 -0,12411536 0,092136525 0 3,5178957 0,489756147 56,39975871 0,520085307 3,7037802 0,18588464
+3,3939521 203071,1314 -0,12421085 0,092141613 0 3,518163 0,49057513 56,4086476 0,520955008 3,7039521 0,18578915
+3,3939905 203103,1314 -0,12413446 0,09212824 0 3,5181251 0,491394115 56,41753649 0,521824709 3,7039905 0,18586554
+3,3942006 203135,1314 -0,12422995 0,092139073 0 3,5184305 0,492213102 56,42642538 0,522694414 3,7042006 0,18577005
+3,394315 203167,1314 -0,12426814 0,09213461 0 3,5185831 0,49303209 56,43531427 0,52356412 3,704315 0,18573186
+3,3944488 203199,1314 -0,12415355 0,09213461 0 3,5186024 0,493851078 56,44420316 0,524433824 3,7044488 0,18584645
+3,3944488 203231,1314 -0,12422995 0,092137158 0 3,5186787 0,494670064 56,45309206 0,525303529 3,7044488 0,18577005
+3,3946016 203263,1314 -0,12440182 0,092139706 0 3,5190034 0,495489051 56,46198095 0,526173233 3,7046016 0,18559818
+3,3947353 203295,1314 -0,12421085 0,092132062 0 3,5189462 0,496308039 56,47086984 0,527042938 3,7047353 0,18578915
+3,3946588 203327,1314 -0,12436363 0,092139706 0 3,5190225 0,497127026 56,47975873 0,527912643 3,7046588 0,18563637
+3,3947926 203359,1314 -0,12440182 0,092131428 0 3,5191944 0,497946013 56,48864762 0,528782347 3,7047926 0,18559818
+3,3950217 203391,1314 -0,1245928 0,092132062 0 3,5196145 0,498765001 56,49753651 0,529652053 3,7050217 0,1854072
+3,3949645 203423,1314 -0,12447821 0,092138432 0 3,5194426 0,49958399 56,5064254 0,530521759 3,7049645 0,18552179
+3,3952127 203455,1314 -0,12449731 0,092131428 0 3,5197101 0,500402981 56,51531429 0,531391468 3,7052127 0,18550269
+3,3951173 203487,1314 -0,12461189 0,092135251 0 3,5197291 0,501221972 56,52420318 0,532261177 3,7051173 0,18538811
+3,3950598 203519,1314 -0,12484106 0,092139073 0 3,5199008 0,502040963 56,53309207 0,533130885 3,7050598 0,18515894
+3,3952892 203551,1314 -0,1245928 0,092141613 0 3,519882 0,50285995 56,54198096 0,53400059 3,7052892 0,1854072
+3,3953464 203583,1315 -0,12486016 0,092135251 0 3,5202065 0,50367894 56,55086985 0,534870298 3,7053464 0,18513984
+3,3955183 203615,1315 -0,12478377 0,092135251 0 3,5203021 0,504497929 56,55975874 0,535740005 3,7055183 0,18521623
+3,3956711 203647,1315 -0,12482196 0,092132062 0 3,520493 0,505316918 56,56864763 0,53660971 3,7056711 0,18517804
+3,3957665 203679,1315 -0,12480287 0,092131428 0 3,5205693 0,506135906 56,57753652 0,537479416 3,7057665 0,18519713
+3,3958621 203711,1315 -0,12480287 0,092133977 0 3,5206649 0,506954893 56,58642541 0,538349121 3,7058621 0,18519713
+3,3960147 203743,1315 -0,12486016 0,092142262 0 3,5208747 0,507773878 56,5953143 0,539218823 3,7060147 0,18513984
+3,3959575 203775,1315 -0,12495565 0,092135251 0 3,5209131 0,508592862 56,60420319 0,540088525 3,7059575 0,18504435
+3,3959956 203807,1315 -0,12512752 0,09213461 0 3,5211232 0,509411848 56,61309208 0,540958228 3,7059956 0,18487248
+3,396225 203839,1315 -0,12503204 0,09213461 0 3,5212569 0,510230835 56,62198097 0,541827932 3,706225 0,18496796
+3,3962822 203871,1315 -0,12514663 0,092139073 0 3,5214288 0,511049824 56,63086986 0,542697639 3,7062822 0,18485337
+3,3964541 203903,1315 -0,12507023 0,092132062 0 3,5215244 0,511868815 56,63975875 0,543567348 3,7064541 0,18492977
+3,3963394 203935,1315 -0,12529939 0,092138432 0 3,5216389 0,512687805 56,64864764 0,544437055 3,7063394 0,18470061
+3,3965495 203967,1315 -0,1253376 0,092133336 0 3,5218871 0,513506796 56,65753653 0,545306763 3,7065495 0,1846624
+3,3967023 203999,1315 -0,12529939 0,092133336 0 3,5220017 0,514325785 56,66642542 0,54617647 3,7067023 0,18470061
+3,3965876 204031,1315 -0,12529939 0,092133977 0 3,5218871 0,515144773 56,67531431 0,547046176 3,7065876 0,18470061
+3,3967786 204063,1315 -0,12539488 0,092136525 0 3,5221734 0,515963763 56,6842032 0,547915883 3,7067786 0,18460512
+3,3969314 204095,1315 -0,12529939 0,09212888 0 3,5222309 0,51678275 56,69309209 0,548785588 3,7069314 0,18470061
+3,397027 204127,1315 -0,12549038 0,092142262 0 3,5225174 0,517601742 56,70198098 0,549655298 3,707027 0,18450962
+3,397218 204159,1315 -0,12566225 0,092135251 0 3,5228803 0,518420733 56,71086987 0,550525006 3,707218 0,18433775
+3,3971608 204191,1315 -0,12560496 0,092133977 0 3,5227656 0,519239723 56,71975876 0,551394714 3,7071608 0,18439504
+3,3973517 204223,1316 -0,12562406 0,092132062 0 3,5229759 0,520058713 56,72864765 0,552264421 3,7073517 0,18437594
+3,397409 204255,1316 -0,12562406 0,092129521 0 3,5230331 0,520877703 56,73753654 0,553134129 3,707409 0,18437594
+3,397409 204287,1316 -0,12581503 0,092132062 0 3,5232239 0,521696691 56,74642543 0,554003834 3,707409 0,18418497
+3,3975043 204319,1316 -0,12581503 0,092135251 0 3,5233192 0,522515679 56,75531432 0,554873541 3,7075043 0,18418497
+3,3975999 204351,1316 -0,12566225 0,092137799 0 3,5232623 0,523334668 56,76420321 0,555743247 3,7075999 0,18433775
+3,3976762 204383,1316 -0,12570044 0,092135884 0 3,5233767 0,524153656 56,77309211 0,556612953 3,7076762 0,18429956
+3,3977337 204415,1316 -0,1259869 0,092138432 0 3,5237205 0,524972643 56,781981 0,557482657 3,7077337 0,1840131
+3,3978481 204447,1316 -0,12596782 0,09213461 0 3,5238159 0,525791633 56,79086989 0,558352364 3,7078481 0,18403218
+3,3978863 204479,1316 -0,12587233 0,092133977 0 3,5237586 0,526610621 56,79975878 0,559222071 3,7078863 0,18412767
+3,3979247 204511,1316 -0,12608239 0,092131428 0 3,5240071 0,527429608 56,80864767 0,560091775 3,7079247 0,18391761
+3,3982491 204543,1316 -0,1260442 0,092137799 0 3,5242934 0,528248597 56,81753656 0,560961482 3,7082491 0,1839558
+3,3983257 204575,1316 -0,12617788 0,092137158 0 3,5245035 0,529067586 56,82642545 0,561831187 3,7083257 0,18382212
+3,3983448 204607,1316 -0,12621607 0,092141613 0 3,5245609 0,529886574 56,83531434 0,562700893 3,7083448 0,18378393
+3,3985167 204639,1316 -0,12623517 0,092137158 0 3,5247519 0,530705565 56,84420323 0,563570602 3,7085167 0,18376483
+3,3985739 204671,1316 -0,12629247 0,092137158 0 3,5248663 0,531524556 56,85309212 0,564440311 3,7085739 0,18370753
+3,398612 204703,1316 -0,12619698 0,092133977 0 3,5248089 0,532343547 56,86198101 0,565310019 3,708612 0,18380302
+3,3987267 204735,1316 -0,12646434 0,09214098 0 3,5251911 0,533162537 56,8708699 0,566179727 3,7087267 0,18353566
+3,398803 204767,1316 -0,12640704 0,092136525 0 3,5252101 0,533981527 56,87975879 0,567049435 3,708803 0,18359296
+3,3988221 204799,1316 -0,12661712 0,092138432 0 3,5254393 0,534800518 56,88864768 0,567919143 3,7088221 0,18338288
+3,3990324 204831,1316 -0,12655982 0,092142887 0 3,5255921 0,535619509 56,89753657 0,568788852 3,7090324 0,18344018
+3,3990514 204863,1317 -0,12680809 0,092142887 0 3,5258596 0,5364385 56,90642546 0,569658561 3,7090514 0,18319191
+3,3991468 204895,1317 -0,12650253 0,092144169 0 3,5256493 0,53725749 56,91531435 0,570528269 3,7091468 0,18349747
+3,3993187 204927,1317 -0,1268272 0,092139073 0 3,5261459 0,538076479 56,92420324 0,571397975 3,7093187 0,1831728
+3,3993187 204959,1317 -0,12673171 0,092135884 0 3,5260503 0,538895466 56,93309213 0,57226768 3,7093187 0,18326829
+3,3995287 204991,1317 -0,1268272 0,09214098 0 3,526356 0,539714451 56,94198102 0,573137382 3,7095287 0,1831728
+3,3995097 205023,1317 -0,12692268 0,092139706 0 3,5264323 0,540533437 56,95086991 0,574007085 3,7095097 0,18307732
+3,3995669 205055,1317 -0,12692268 0,092137158 0 3,5264895 0,541352422 56,9597588 0,574876788 3,7095669 0,18307732
+3,3996816 205087,1317 -0,12694177 0,092138432 0 3,5266232 0,542171409 56,96864769 0,575746493 3,7096816 0,18305823
+3,3998344 205119,1317 -0,12688448 0,09212824 0 3,5267189 0,5429904 56,97753658 0,576616201 3,7098344 0,18311552
+3,4000635 205151,1317 -0,12717094 0,092140347 0 3,5272346 0,543809392 56,98642547 0,577485911 3,7100635 0,18282906
+3,3999298 205183,1317 -0,12717094 0,092141613 0 3,5271008 0,544628385 56,99531436 0,578355621 3,7099298 0,18282906
+3,4000635 205215,1317 -0,12722823 0,092139706 0 3,5272918 0,545447378 57,00420325 0,579225332 3,7100635 0,18277177
+3,4001591 205247,1317 -0,12732372 0,092141613 0 3,5274827 0,54626637 57,01309214 0,580095042 3,7101591 0,18267628
+3,4002354 205279,1317 -0,12736191 0,092136525 0 3,5275974 0,547085365 57,02198103 0,580964755 3,7102354 0,18263809
+3,4003501 205311,1317 -0,12738101 0,092135884 0 3,5277312 0,547904356 57,03086992 0,581834464 3,7103501 0,18261899
+3,4003117 205343,1317 -0,12726642 0,092143528 0 3,5275781 0,54872335 57,03975881 0,582704175 3,7103117 0,18273358
+3,4005027 205375,1317 -0,1274574 0,092138432 0 3,5279601 0,549542341 57,0486477 0,583573884 3,7105027 0,1825426
+3,4005792 205407,1317 -0,1274765 0,092133977 0 3,5280557 0,55036133 57,05753659 0,584443591 3,7105792 0,1825235
+3,400732 205439,1317 -0,12761018 0,092137799 0 3,5283422 0,55118032 57,06642548 0,585313298 3,710732 0,18238982
+3,4007893 205471,1317 -0,12768658 0,092130147 0 3,5284758 0,55199931 57,07531437 0,586183006 3,7107893 0,18231342
+3,400923 205503,1318 -0,12783936 0,092127606 0 3,5287623 0,5528183 57,08420327 0,587052714 3,710923 0,18216064
+3,4009421 205535,1318 -0,12768658 0,092139706 0 3,5286286 0,55363729 57,09309216 0,587922421 3,7109421 0,18231342
+3,4010756 205567,1318 -0,12789664 0,092130795 0 3,5289721 0,55445628 57,10198105 0,588792129 3,7110756 0,18210336
+3,4011903 205599,1318 -0,12791574 0,092144169 0 3,5291061 0,555275273 57,11086994 0,589661839 3,7111903 0,18208426
+3,401114 205631,1318 -0,12799212 0,09214098 0 3,5291061 0,556094265 57,11975883 0,59053155 3,711114 0,18200788
+3,4014003 205663,1318 -0,12797303 0,092137799 0 3,5293734 0,55691326 57,12864772 0,591401263 3,7114003 0,18202697
+3,4014959 205695,1318 -0,12812582 0,092137799 0 3,5296218 0,557732253 57,13753661 0,592270974 3,7114959 0,18187418
+3,401515 205727,1318 -0,1281831 0,092139706 0 3,5296981 0,558551245 57,1464255 0,593140683 3,711515 0,1818169
+3,401515 205759,1318 -0,12804942 0,092142262 0 3,5295644 0,559370237 57,15531439 0,594010393 3,711515 0,18195058
+3,4017251 205791,1318 -0,12835498 0,092146084 0 3,5300801 0,560189228 57,16420328 0,594880102 3,7117251 0,18164502
+3,4016488 205823,1318 -0,12841228 0,092133977 0 3,530061 0,56100822 57,17309217 0,595749811 3,7116488 0,18158772
+3,4018779 205855,1318 -0,12843136 0,092136525 0 3,5303092 0,561827213 57,18198106 0,596619522 3,7118779 0,18156864
+3,4020307 205887,1318 -0,12860325 0,092142262 0 3,5306339 0,562646207 57,19086995 0,597489235 3,7120307 0,18139675
+3,4020307 205919,1318 -0,12845047 0,092141613 0 3,5304811 0,5634652 57,19975884 0,598358945 3,7120307 0,18154953
+3,402298 205951,1318 -0,12850776 0,092138432 0 3,5308058 0,564284191 57,20864773 0,599228654 3,712298 0,18149224
+3,4022408 205983,1318 -0,12856504 0,092131428 0 3,5308058 0,565103182 57,21753662 0,600098362 3,7122408 0,18143496
+3,402298 206015,1318 -0,12871782 0,092139706 0 3,5310159 0,56592217 57,22642551 0,600968068 3,712298 0,18128218
+3,4022217 206047,1318 -0,12875602 0,092133977 0 3,5309777 0,566741158 57,2353144 0,601837774 3,7122217 0,18124398
+3,4024508 206079,1318 -0,12879422 0,092132702 0 3,531245 0,567560151 57,24420329 0,602707484 3,7124508 0,18120578
+3,4026036 206111,1318 -0,12894699 0,092138432 0 3,5315506 0,56837914 57,25309218 0,603577191 3,7126036 0,18105301
+3,4026799 206143,1319 -0,12883241 0,092137158 0 3,5315123 0,569198132 57,26198107 0,604446901 3,7126799 0,18116759
+3,4027181 206175,1319 -0,12906158 0,092141613 0 3,5317798 0,570017123 57,27086996 0,60531661 3,7127181 0,18093842
+3,4027371 206207,1319 -0,1289852 0,092132702 0 3,5317223 0,570836115 57,27975885 0,606186319 3,7127371 0,1810148
+3,4029472 206239,1319 -0,12921436 0,092130795 0 3,5321615 0,571655106 57,28864774 0,607056027 3,7129472 0,18078564
+3,4029281 206271,1319 -0,12932894 0,092136525 0 3,5322571 0,572474096 57,29753663 0,607925735 3,7129281 0,18067106
+3,4031 206303,1319 -0,12940533 0,092140347 0 3,5325053 0,573293086 57,30642552 0,608795443 3,7131 0,18059467
+3,4031191 206335,1319 -0,12930985 0,092130795 0 3,532429 0,574112076 57,31531441 0,609665151 3,7131191 0,18069015
+3,4032719 206367,1319 -0,12944353 0,09212888 0 3,5327153 0,574931064 57,3242033 0,610534857 3,7132719 0,18055647
+3,4033866 206399,1319 -0,12938623 0,092131428 0 3,5327728 0,575750053 57,33309219 0,611404562 3,7133866 0,18061377
+3,4035203 206431,1319 -0,1295772 0,092133977 0 3,5330975 0,576569042 57,34198108 0,61227427 3,7135203 0,1804228
+3,4035776 206463,1319 -0,12978728 0,092131428 0 3,5333648 0,57738803 57,35086997 0,613143975 3,7135776 0,18021272
+3,4036348 206495,1319 -0,12988277 0,092135251 0 3,5335176 0,578207016 57,35975886 0,614013678 3,7136348 0,18011723
+3,4037495 206527,1319 -0,12994006 0,092139706 0 3,5336895 0,579026 57,36864775 0,61488338 3,7137495 0,18005994
+3,4036539 206559,1319 -0,12982547 0,092136525 0 3,5334792 0,579844988 57,37753664 0,615753085 3,7136539 0,18017453
+3,4037876 206591,1319 -0,12986366 0,092141613 0 3,5336514 0,580663976 57,38642553 0,616622791 3,7137876 0,18013634
+3,4040933 206623,1319 -0,12995915 0,092139073 0 3,5340524 0,581482968 57,39531442 0,617492501 3,7140933 0,18004085
+3,4040167 206655,1319 -0,13022652 0,092141613 0 3,5342433 0,582301958 57,40420332 0,618362208 3,7140167 0,17977348
+3,4039977 206687,1319 -0,13005464 0,092127606 0 3,5340524 0,58312095 57,41309221 0,619231917 3,7139977 0,17994536
+3,4042077 206719,1319 -0,1303602 0,092135251 0 3,5345678 0,583939941 57,4219811 0,620101626 3,7142077 0,1796398
+3,4043605 206751,1319 -0,13039839 0,092137799 0 3,534759 0,584758931 57,43086999 0,620971334 3,7143605 0,17960161
+3,4044368 206783,132 -0,1303602 0,092138432 0 3,534797 0,585577922 57,43975888 0,621841043 3,7144368 0,1796398
+3,4045134 206815,132 -0,13060847 0,09213461 0 3,5351219 0,586396912 57,44864777 0,622710751 3,7145134 0,17939153
+3,4045515 206847,132 -0,13053207 0,092138432 0 3,5350835 0,587215898 57,45753666 0,623580454 3,7145515 0,17946793
+3,4046853 206879,132 -0,13072304 0,092130795 0 3,5354083 0,588034885 57,46642555 0,624450159 3,7146853 0,17927696
+3,4047043 206911,132 -0,13074215 0,092142887 0 3,5354464 0,588853874 57,47531444 0,625319865 3,7147043 0,17925785
+3,4048762 206943,132 -0,13085674 0,092137799 0 3,535733 0,589672863 57,48420333 0,626189572 3,7148762 0,17914326
+3,4048762 206975,132 -0,13099042 0,092139073 0 3,5358667 0,590491854 57,49309222 0,62705928 3,7148762 0,17900958
+3,4050672 207007,132 -0,13078034 0,092139706 0 3,5358477 0,591310846 57,50198111 0,62792899 3,7150672 0,17921966
+3,4051054 207039,132 -0,13097131 0,092137158 0 3,5360765 0,592129836 57,51087 0,628798698 3,7151054 0,17902869
+3,4052391 207071,132 -0,13112409 0,092135251 0 3,5363631 0,592948825 57,51975889 0,629668404 3,7152391 0,17887591
+3,4051816 207103,132 -0,13104771 0,092137799 0 3,5362294 0,593767814 57,52864778 0,630538111 3,7151816 0,17895229
+3,40522 207135,132 -0,13121958 0,092130795 0 3,5364397 0,594586801 57,53753667 0,631407816 3,71522 0,17878042
+3,405411 207167,132 -0,13131507 0,092136525 0 3,536726 0,595405791 57,54642556 0,632277523 3,715411 0,17868493
+3,4056783 207199,132 -0,13154423 0,092130147 0 3,5372224 0,596224778 57,55531445 0,633147228 3,7156783 0,17845577
+3,4057355 207231,132 -0,13152514 0,092140347 0 3,5372605 0,597043768 57,56420334 0,634016935 3,7157355 0,17847486
+3,4056211 207263,132 -0,13148694 0,092137158 0 3,5371079 0,597862755 57,57309223 0,634886639 3,7156211 0,17851306
+3,405812 207295,132 -0,1317925 0,092136525 0 3,5376046 0,598681744 57,58198112 0,635756346 3,715812 0,1782075
+3,4058883 207327,132 -0,13150604 0,092140347 0 3,5373943 0,599500737 57,59087001 0,636626058 3,7158883 0,17849396
+3,406003 207359,132 -0,13162063 0,092142262 0 3,5376236 0,600319732 57,5997589 0,63749577 3,716003 0,17837937
+3,4060221 207391,132 -0,13188799 0,09212888 0 3,53791 0,601138724 57,60864779 0,63836548 3,7160221 0,17811201
+3,4060221 207423,1321 -0,13205986 0,092132062 0 3,5380819 0,601957717 57,61753668 0,63923519 3,7160221 0,17794014
+3,4060793 207455,1321 -0,13198347 0,092138432 0 3,5380628 0,602776707 57,62642557 0,640104898 3,7160793 0,17801653
+3,4062512 207487,1321 -0,13215534 0,09213461 0 3,5384066 0,603595696 57,63531446 0,640974605 3,7162512 0,17784466
+3,4063659 207519,1321 -0,13234633 0,092139706 0 3,5387123 0,604414684 57,64420335 0,641844311 3,7163659 0,17765367
+3,4064612 207551,1321 -0,13223174 0,092144802 0 3,538693 0,605233673 57,65309224 0,642714017 3,7164612 0,17776826
+3,4065759 207583,1321 -0,13230813 0,092135251 0 3,5388842 0,606052666 57,66198113 0,643583728 3,7165759 0,17769187
+3,4066522 207615,1321 -0,13236542 0,092135251 0 3,5390177 0,606871661 57,67087002 0,644453441 3,7166522 0,17763458
+3,4066713 207647,1321 -0,13255639 0,092141613 0 3,5392277 0,607690655 57,67975891 0,645323152 3,7166713 0,17744361
+3,4069006 207679,1321 -0,13242272 0,092137158 0 3,5393233 0,60850965 57,6886478 0,646192866 3,7169006 0,17757728
+3,4068432 207711,1321 -0,13269007 0,092135251 0 3,5395331 0,609328641 57,69753669 0,647062575 3,7168432 0,17730993
+3,4069388 207743,1321 -0,13274737 0,092132702 0 3,5396862 0,610147634 57,70642558 0,647932285 3,7169388 0,17725263
+3,4070151 207775,1321 -0,13274737 0,092133336 0 3,5397625 0,610966626 57,71531447 0,648801995 3,7170151 0,17725263
+3,4072442 207807,1321 -0,13282377 0,09214098 0 3,5400679 0,611785616 57,72420337 0,649671702 3,7172442 0,17717623
+3,4072251 207839,1321 -0,13297653 0,092144169 0 3,5402017 0,612604609 57,73309226 0,650541413 3,7172251 0,17702347
+3,4072061 207871,1321 -0,1332248 0,092129521 0 3,5404308 0,613423602 57,74198115 0,651411124 3,7172061 0,1767752
+3,407378 207903,1321 -0,1332248 0,092136525 0 3,5406027 0,614242597 57,75087004 0,652280837 3,717378 0,1767752
+3,407397 207935,1321 -0,13320571 0,092133336 0 3,5406027 0,615061589 57,75975893 0,653150547 3,717397 0,17679429
+3,4076262 207967,1321 -0,13341577 0,092139073 0 3,5410419 0,615880582 57,76864782 0,654020258 3,7176262 0,17658423
+3,4074926 207999,1321 -0,13347307 0,092133336 0 3,5409658 0,616699573 57,77753671 0,654889967 3,7174926 0,17652693
+3,407779 208031,1321 -0,13351126 0,092144802 0 3,5412903 0,617518564 57,7864256 0,655759675 3,717779 0,17648874
+3,4078174 208063,1322 -0,13364494 0,092139073 0 3,5414624 0,618337556 57,79531449 0,656629385 3,7178174 0,17635506
+3,4078746 208095,1322 -0,13379772 0,092131428 0 3,5416722 0,619156549 57,80420338 0,657499096 3,7178746 0,17620228
+3,4080274 208127,1322 -0,13385502 0,092136525 0 3,5418825 0,619975537 57,81309227 0,658368801 3,7180274 0,17614498
+3,407989 208159,1322 -0,13385502 0,092139073 0 3,5418441 0,620794525 57,82198116 0,659238507 3,717989 0,17614498
+3,4080465 208191,1322 -0,13402689 0,092136525 0 3,5420732 0,621613515 57,83087005 0,660108214 3,7180465 0,17597311
+3,4083903 208223,1322 -0,13425606 0,092131428 0 3,5426464 0,622432502 57,83975894 0,660977919 3,7183903 0,17574394
+3,4083138 208255,1322 -0,13423696 0,092130147 0 3,5425508 0,623251489 57,84864783 0,661847623 3,7183138 0,17576304
+3,4083519 208287,1322 -0,13416058 0,092135251 0 3,5425124 0,624070475 57,85753672 0,662717327 3,7183519 0,17583942
+3,4085047 208319,1322 -0,13431334 0,092137158 0 3,5428181 0,624889462 57,86642561 0,663587031 3,7185047 0,17568666
+3,4085047 208351,1322 -0,13438974 0,092139706 0 3,5428944 0,625708449 57,8753145 0,664456736 3,7185047 0,17561026
+3,4086194 208383,1322 -0,13458072 0,092133336 0 3,5432 0,626527437 57,88420339 0,665326441 3,7186194 0,17541928
+3,4087913 208415,1322 -0,1347335 0,092137158 0 3,5435247 0,627346426 57,89309228 0,666196148 3,7187913 0,1752665
+3,4088867 208447,1322 -0,1347335 0,092139073 0 3,5436201 0,628165415 57,90198117 0,667065854 3,7188867 0,1752665
+3,4089441 208479,1322 -0,13494356 0,092135251 0 3,5438876 0,628984403 57,91087006 0,66793556 3,7189441 0,17505644
+3,4090014 208511,1322 -0,13477169 0,092141613 0 3,5437729 0,629803391 57,91975895 0,668805265 3,7190014 0,17522831
+3,4091351 208543,1322 -0,13498177 0,092140347 0 3,544117 0,630622377 57,92864784 0,669674969 3,7191351 0,17501823
+3,4091733 208575,1322 -0,13515364 0,092139073 0 3,5443268 0,631441365 57,93753673 0,670544674 3,7191733 0,17484636
+3,4092686 208607,1322 -0,13515364 0,092133336 0 3,5444221 0,632260354 57,94642562 0,671414381 3,7192686 0,17484636
+3,4093642 208639,1322 -0,1354401 0,092137799 0 3,5448043 0,633079344 57,95531451 0,672284088 3,7193642 0,1745599
+3,4093642 208671,1322 -0,13561197 0,092144802 0 3,5449762 0,633898334 57,9642034 0,673153796 3,7193642 0,17438803
+3,4094596 208703,1323 -0,13551648 0,092146084 0 3,544976 0,634717326 57,97309229 0,674023506 3,7194596 0,17448352
+3,4095743 208735,1323 -0,13570745 0,092147343 0 3,5452816 0,635536319 57,98198118 0,674893217 3,7195743 0,17429255
+3,4094214 208767,1323 -0,13578385 0,092137158 0 3,5452054 0,636355311 57,99087007 0,675762927 3,7194214 0,17421615
+3,4096506 208799,1323 -0,13570745 0,092139706 0 3,5453579 0,637174305 57,99975896 0,676632638 3,7196506 0,17429255
+3,4098606 208831,1323 -0,13584115 0,092132062 0 3,5457017 0,637993298 58,00864785 0,67750235 3,7198606 0,17415885
+3,4099371 208863,1323 -0,13597482 0,092143528 0 3,545912 0,638812294 58,01753674 0,678372063 3,7199371 0,17402518
+3,4098225 208895,1323 -0,1361085 0,092136525 0 3,5459309 0,639631288 58,02642563 0,679241775 3,7198225 0,1738915
+3,410109 208927,1323 -0,13605121 0,092144802 0 3,5461602 0,640450281 58,03531452 0,680111486 3,720109 0,17394879
+3,4102044 208959,1323 -0,13626128 0,092135251 0 3,5464656 0,641269274 58,04420342 0,680981197 3,7202044 0,17373872
+3,4102426 208991,1323 -0,13629948 0,092133977 0 3,5465419 0,642088267 58,05309231 0,681850908 3,7202426 0,17370052
+3,4102426 209023,1323 -0,13639496 0,092137158 0 3,5466375 0,64290726 58,0619812 0,682720618 3,7202426 0,17360504
+3,410491 209055,1323 -0,13643315 0,09214098 0 3,5469241 0,643726253 58,07087009 0,683590329 3,720491 0,17356685
+3,4106054 209087,1323 -0,13660504 0,092137799 0 3,5472105 0,644545247 58,07975898 0,684460041 3,7206054 0,17339496
+3,4104145 209119,1323 -0,13666232 0,092135251 0 3,5470767 0,645364239 58,08864787 0,685329751 3,7204145 0,17333768
+3,4106247 209151,1323 -0,13679601 0,092130795 0 3,5474207 0,64618323 58,09753676 0,68619946 3,7206247 0,17320399
+3,4108157 209183,1323 -0,1368724 0,092144169 0 3,547688 0,647002221 58,10642565 0,687069169 3,7208157 0,1731276
+3,4108348 209215,1323 -0,13692969 0,092138432 0 3,5477645 0,647821211 58,11531454 0,687938876 3,7208348 0,17307031
+3,4109111 209247,1323 -0,13710156 0,092133977 0 3,5480127 0,648640199 58,12420343 0,688808582 3,7209111 0,17289844
+3,4109492 209279,1323 -0,13704428 0,092131428 0 3,5479934 0,649459187 58,13309232 0,689678288 3,7209492 0,17295572
+3,4110639 209311,1323 -0,13740712 0,092133977 0 3,548471 0,650278176 58,14198121 0,690547994 3,7210639 0,17259288
+3,4111402 209343,1324 -0,13738802 0,092135251 0 3,5485282 0,651097169 58,1508701 0,691417704 3,7211402 0,17261198
+3,4112167 209375,1324 -0,1375408 0,09213461 0 3,5487576 0,65191616 58,15975899 0,692287414 3,7212167 0,1724592
+3,4113121 209407,1324 -0,13767448 0,092146084 0 3,5489867 0,652735151 58,16864788 0,693157122 3,7213121 0,17232552
+3,4115222 209439,1324 -0,13765539 0,09214098 0 3,5491776 0,653554143 58,17753677 0,694026832 3,7215222 0,17234461
+3,4116178 209471,1324 -0,13773178 0,092133977 0 3,5493495 0,654373135 58,18642566 0,694896541 3,7216178 0,17226822
+3,4115987 209503,1324 -0,13778907 0,092142262 0 3,5493877 0,655192128 58,19531455 0,695766252 3,7215987 0,17221093
+3,4116559 209535,1324 -0,13803734 0,092144802 0 3,5496933 0,65601112 58,20420344 0,696635962 3,7216559 0,17196266
+3,4117515 209567,1324 -0,13815191 0,092139073 0 3,5499034 0,656830113 58,21309233 0,697505673 3,7217515 0,17184809
+3,4120378 209599,1324 -0,13817102 0,092126325 0 3,5502088 0,657649105 58,22198122 0,698375383 3,7220378 0,17182898
+3,412076 209631,1324 -0,13828561 0,092138432 0 3,5503616 0,658468098 58,23087011 0,699245094 3,722076 0,17171439
+3,4119997 209663,1324 -0,13828561 0,092132062 0 3,5502853 0,659287091 58,239759 0,700114804 3,7219997 0,17171439
+3,412076 209695,1324 -0,13855296 0,092135251 0 3,5506289 0,660106081 58,24864789 0,700984512 3,722076 0,17144704
+3,4121525 209727,1324 -0,13861026 0,092135884 0 3,5507629 0,660925071 58,25753678 0,70185422 3,7221525 0,17138974
+3,4122288 209759,1324 -0,13862935 0,092135251 0 3,5508583 0,661744063 58,26642567 0,702723929 3,7222288 0,17137065
+3,4121907 209791,1324 -0,13880123 0,092138432 0 3,550992 0,662563055 58,27531456 0,703593639 3,7221907 0,17119877
+3,4124389 209823,1324 -0,13885853 0,092131428 0 3,5512974 0,663382045 58,28420345 0,704463346 3,7224389 0,17114147
+3,4124198 209855,1324 -0,1390304 0,092144802 0 3,5514503 0,664201032 58,29309234 0,705333052 3,7224198 0,1709696
+3,412668 209887,1324 -0,13922137 0,092147343 0 3,5518894 0,665020022 58,30198123 0,706202759 3,722668 0,17077863
+3,4125535 209919,1324 -0,13927867 0,092132702 0 3,5518322 0,665839016 58,31087012 0,70707247 3,7225535 0,17072133
+3,4127827 209951,1325 -0,13941234 0,092131428 0 3,5521951 0,666658009 58,31975901 0,707942181 3,7227827 0,17058766
+3,412859 209983,1325 -0,13941234 0,092137799 0 3,5522714 0,667477001 58,3286479 0,708811892 3,722859 0,17058766
+3,4129546 210015,1325 -0,13958423 0,092139706 0 3,5525389 0,668295994 58,33753679 0,709681602 3,7229546 0,17041577
+3,4129736 210047,1325 -0,13958423 0,092135251 0 3,5525579 0,669114986 58,34642568 0,710551312 3,7229736 0,17041577
+3,4130692 210079,1325 -0,1397561 0,092133977 0 3,5528255 0,669933977 58,35531458 0,711421021 3,7230692 0,1702439
+3,4130309 210111,1325 -0,13987069 0,092137158 0 3,5529015 0,670752968 58,36420347 0,712290729 3,7230309 0,17012931
+3,4132028 210143,1325 -0,13996617 0,092132062 0 3,553169 0,671571957 58,37309236 0,713160436 3,7232028 0,17003383
+3,4133747 210175,1325 -0,14013804 0,092139073 0 3,5535128 0,672390944 58,38198125 0,71403014 3,7233747 0,16986196
+3,4133174 210207,1325 -0,14023353 0,092135251 0 3,553551 0,673209932 58,39087014 0,714899846 3,7233174 0,16976647
+3,4136231 210239,1325 -0,14029083 0,092138432 0 3,5539138 0,674028916 58,39975903 0,715769548 3,7236231 0,16970917
+3,4135847 210271,1325 -0,1404245 0,092138432 0 3,5540092 0,674847903 58,40864792 0,716639252 3,7235847 0,1695755
+3,4136422 210303,1325 -0,14044361 0,092135884 0 3,5540857 0,675666892 58,41753681 0,717508958 3,7236422 0,16955639
+3,4135847 210335,1325 -0,1404627 0,092136525 0 3,5540473 0,676485879 58,4264257 0,718378663 3,7235847 0,1695373
+3,4138331 210367,1325 -0,14069186 0,092135251 0 3,5545249 0,67730487 58,43531459 0,719248371 3,7238331 0,16930814
+3,4138904 210399,1325 -0,14065367 0,09213461 0 3,554544 0,678123857 58,44420348 0,720118076 3,7238904 0,16934633
+3,4139285 210431,1325 -0,14090194 0,092140347 0 3,5548306 0,678942845 58,45309237 0,720987782 3,7239285 0,16909806
+3,414005 210463,1325 -0,14099742 0,092137158 0 3,5550025 0,679761833 58,46198126 0,721857488 3,724005 0,16900258
+3,4140623 210495,1325 -0,14111201 0,092132702 0 3,5551744 0,680580824 58,47087015 0,722727195 3,7240623 0,16888799
+3,4142151 210527,1325 -0,14126478 0,092135251 0 3,5554798 0,681399813 58,47975904 0,723596902 3,7242151 0,16873522
+3,4143679 210559,1325 -0,14139847 0,092144169 0 3,5557663 0,6822188 58,48864793 0,724466607 3,7243679 0,16860153
+3,4144251 210591,1326 -0,14147486 0,092139706 0 3,5559001 0,683037789 58,49753682 0,725336314 3,7244251 0,16852514
+3,414578 210623,1326 -0,14158945 0,092137158 0 3,5561674 0,683856776 58,50642571 0,726206018 3,724578 0,16841055
+3,4146161 210655,1326 -0,14168493 0,092131428 0 3,5563011 0,684675763 58,5153146 0,727075722 3,7246161 0,16831507
+3,4146924 210687,1326 -0,14178042 0,092135884 0 3,5564728 0,68549475 58,52420349 0,727945427 3,7246924 0,16821958
+3,4147689 210719,1326 -0,141895 0,09213461 0 3,556664 0,686313735 58,53309238 0,728815129 3,7247689 0,168105
+3,4149024 210751,1326 -0,14195229 0,09213461 0 3,5568547 0,687132721 58,54198127 0,729684832 3,7249024 0,16804771
+3,4149981 210783,1326 -0,14199048 0,092138432 0 3,5569885 0,687951706 58,55087016 0,730554535 3,7249981 0,16800952
+3,4149981 210815,1326 -0,14214326 0,092129521 0 3,5571413 0,68877069 58,55975905 0,731424236 3,7249981 0,16785674
+3,41517 210847,1326 -0,14231515 0,092144169 0 3,5574851 0,689589676 58,56864794 0,73229394 3,72517 0,16768485
+3,41517 210879,1326 -0,14227694 0,092133336 0 3,557447 0,690408663 58,57753683 0,733163644 3,72517 0,16772306
+3,4152653 210911,1326 -0,14248702 0,09212888 0 3,5577524 0,69122765 58,58642572 0,734033349 3,7252653 0,16751298
+3,4154181 210943,1326 -0,14254431 0,092139706 0 3,5579624 0,692046636 58,59531461 0,734903051 3,7254181 0,16745569
+3,4156091 210975,1326 -0,14265889 0,092137799 0 3,5582681 0,69286562 58,6042035 0,735772753 3,7256091 0,16734111
+3,4155328 211007,1326 -0,14281167 0,092139706 0 3,5583446 0,693684605 58,61309239 0,736642455 3,7255328 0,16718833
+3,41559 211039,1326 -0,14292626 0,092139073 0 3,5585163 0,69450359 58,62198128 0,737512158 3,72559 0,16707374
+3,4156282 211071,1326 -0,14305994 0,09213461 0 3,5586882 0,695322577 58,63087017 0,738381862 3,7256282 0,16694006
+3,4157238 211103,1326 -0,14315543 0,092136525 0 3,5588791 0,696141563 58,63975906 0,739251565 3,7257238 0,16684457
+3,4158001 211135,1326 -0,14327002 0,092141613 0 3,5590701 0,696960549 58,64864795 0,740121269 3,7258001 0,16672998
+3,4159338 211167,1326 -0,14330821 0,092139706 0 3,559242 0,697779534 58,65753684 0,740990971 3,7259338 0,16669179
+3,4159911 211199,1326 -0,14357556 0,092133336 0 3,5595667 0,698598519 58,66642573 0,741860674 3,7259911 0,16642444
+3,4159529 211231,1327 -0,14355648 0,092139706 0 3,5595093 0,699417507 58,67531463 0,742730379 3,7259529 0,16644352
+3,4160676 211263,1327 -0,14376654 0,092139073 0 3,5598342 0,700236494 58,68420352 0,743600084 3,7260676 0,16623346
+3,4162202 211295,1327 -0,14391932 0,092139073 0 3,5601394 0,70105548 58,69309241 0,744469787 3,7262202 0,16608068
+3,4164877 211327,1327 -0,14391932 0,092133977 0 3,5604069 0,701874466 58,7019813 0,74533949 3,7264877 0,16608068
+3,416373 211359,1327 -0,144053 0,092131428 0 3,560426 0,70269345 58,71087019 0,746209191 3,726373 0,165947
+3,4164877 211391,1327 -0,14420578 0,092135884 0 3,5606935 0,703512435 58,71975908 0,747078894 3,7264877 0,16579422
+3,416564 211423,1327 -0,14430127 0,092129521 0 3,5608652 0,704331421 58,72864797 0,747948598 3,726564 0,16569873
+3,4166214 211455,1327 -0,14416759 0,092133977 0 3,5607891 0,705150409 58,73753686 0,748818303 3,7266214 0,16583241
+3,4167359 211487,1327 -0,14462592 0,092135251 0 3,5613618 0,705969399 58,74642575 0,74968801 3,7267359 0,16537408
+3,4168696 211519,1327 -0,14456864 0,092135251 0 3,5614383 0,706788389 58,75531464 0,750557719 3,7268696 0,16543136
+3,4169459 211551,1327 -0,14475961 0,09212824 0 3,5617056 0,707607378 58,76420353 0,751427425 3,7269459 0,16524039
+3,4168887 211583,1327 -0,14487419 0,092136525 0 3,5617628 0,708426368 58,77309242 0,752297132 3,7268887 0,16512581
+3,4169843 211615,1327 -0,14489329 0,092139706 0 3,5618777 0,709245358 58,78198131 0,75316684 3,7269843 0,16510671
+3,4172134 211647,1327 -0,14510335 0,092135884 0 3,5623169 0,710064351 58,7908702 0,754036551 3,7272134 0,16489665
+3,4171753 211679,1327 -0,14514156 0,092138432 0 3,5623169 0,71088334 58,79975909 0,754906258 3,7271753 0,16485844
+3,4172325 211711,1327 -0,14538981 0,092139073 0 3,5626223 0,71170233 58,80864798 0,755775965 3,7272325 0,16461019
+3,4175572 211743,1327 -0,14535162 0,092136525 0 3,5629089 0,712521321 58,81753687 0,756645674 3,7275572 0,16464838
+3,4174426 211775,1327 -0,14559989 0,092139073 0 3,5630424 0,713340312 58,82642576 0,757515383 3,7274426 0,16440011
+3,4176526 211807,1327 -0,14559989 0,092141613 0 3,5632524 0,714159302 58,83531465 0,75838509 3,7276526 0,16440011
+3,4177098 211839,1327 -0,14573357 0,092126325 0 3,5634434 0,714978291 58,84420354 0,759254797 3,7277098 0,16426643
+3,4177289 211871,1328 -0,14577176 0,092137799 0 3,5635006 0,715797281 58,85309243 0,760124505 3,7277289 0,16422824
+3,4178627 211903,1328 -0,14588635 0,092132702 0 3,5637491 0,716616272 58,86198132 0,760994213 3,7278627 0,16411365
+3,4179964 211935,1328 -0,14592454 0,092139706 0 3,563921 0,717435262 58,87087021 0,761863921 3,7279964 0,16407546
+3,4180536 211967,1328 -0,146211 0,092145436 0 3,5642645 0,718254251 58,8797591 0,762733627 3,7280536 0,163789
+3,4180346 211999,1328 -0,1462301 0,092137799 0 3,5642648 0,719073237 58,88864799 0,763603331 3,7280346 0,1637699
+3,4180918 212031,1328 -0,14642107 0,092136525 0 3,5645127 0,719892226 58,89753688 0,764473038 3,7280918 0,16357893
+3,4182446 212063,1328 -0,14642107 0,092126973 0 3,5646658 0,720711212 58,90642577 0,76534274 3,7282446 0,16357893
+3,4185121 212095,1328 -0,14674573 0,09213461 0 3,5652578 0,721530197 58,91531466 0,766212443 3,7285121 0,16325427
+3,4184356 212127,1328 -0,14668843 0,092137799 0 3,565124 0,722349184 58,92420355 0,767082147 3,7284356 0,16331157
+3,4183784 212159,1328 -0,14684121 0,092137799 0 3,5652196 0,723168172 58,93309244 0,767951853 3,7283784 0,16315879
+3,4183402 212191,1328 -0,1470131 0,092136525 0 3,5653534 0,72398716 58,94198133 0,768821559 3,7283402 0,1629869
+3,4186456 212223,1328 -0,14716586 0,092140347 0 3,5658114 0,724806151 58,95087022 0,769691268 3,7286456 0,16283414
+3,418684 212255,1328 -0,14710858 0,092130147 0 3,5657926 0,725625142 58,95975911 0,770560976 3,728684 0,16289142
+3,4187984 212287,1328 -0,14733775 0,092129521 0 3,5661361 0,726444129 58,968648 0,77143068 3,7287984 0,16266225
+3,4188941 212319,1328 -0,14743324 0,092133977 0 3,5663273 0,727263117 58,97753689 0,772300385 3,7288941 0,16256676
+3,4190469 212351,1328 -0,14743324 0,092135884 0 3,5664802 0,728082106 58,98642578 0,773170093 3,7290469 0,16256676
+3,4190469 212383,1328 -0,14760511 0,092131428 0 3,5666521 0,728901094 58,99531468 0,774039798 3,7290469 0,16239489
+3,4191995 212415,1328 -0,14783427 0,092142262 0 3,5670338 0,729720083 59,00420357 0,774909505 3,7291995 0,16216573
+3,4192379 212447,1328 -0,14783427 0,092135251 0 3,5670722 0,730539073 59,01309246 0,775779212 3,7292379 0,16216573
+3,4192569 212479,1328 -0,14804435 0,092132062 0 3,5673013 0,731358062 59,02198135 0,776648919 3,7292569 0,16195565
+3,4193523 212511,1329 -0,14819713 0,092139073 0 3,5675495 0,732177048 59,03087024 0,777518623 3,7293523 0,16180287
+3,419486 212543,1329 -0,14829262 0,092137158 0 3,5677786 0,732996037 59,03975913 0,778388329 3,729486 0,16170738
+3,4196005 212575,1329 -0,14842629 0,09214098 0 3,5680268 0,733815027 59,04864802 0,779258036 3,7296005 0,16157371
+3,4195242 212607,1329 -0,1484454 0,092139073 0 3,5679696 0,734634018 59,05753691 0,780127745 3,7295242 0,1615546
+3,4195242 212639,1329 -0,14865546 0,092137158 0 3,5681796 0,735453008 59,0664258 0,780997453 3,7295242 0,16134454
+3,4197917 212671,1329 -0,14875095 0,092144802 0 3,5685427 0,736271995 59,07531469 0,781867158 3,7297917 0,16124905
+3,4197917 212703,1329 -0,14886554 0,092142887 0 3,5686572 0,737090985 59,08420358 0,782736864 3,7297917 0,16113446
+3,4199252 212735,1329 -0,14898013 0,092126973 0 3,5689054 0,737909974 59,09309247 0,783606572 3,7299252 0,16101987
+3,4201162 212767,1329 -0,14903741 0,092135251 0 3,5691535 0,738728966 59,10198136 0,784476281 3,7301162 0,16096259
+3,4201162 212799,1329 -0,14920929 0,092137158 0 3,5693254 0,739547959 59,11087025 0,785345992 3,7301162 0,16079071
+3,4201927 212831,1329 -0,14920929 0,092144169 0 3,569402 0,740366951 59,11975914 0,786215702 3,7301927 0,16079071
+3,4202118 212863,1329 -0,14940026 0,092132702 0 3,569612 0,741185945 59,12864803 0,787085414 3,7302118 0,16059974
+3,4204981 212895,1329 -0,14938116 0,092135884 0 3,5698793 0,742004939 59,13753692 0,787955126 3,7304981 0,16061884
+3,4204409 212927,1329 -0,14949575 0,092133336 0 3,5699368 0,742823933 59,14642581 0,788824838 3,7304409 0,16050425
+3,4205172 212959,1329 -0,14974402 0,092130147 0 3,5702612 0,743642926 59,1553147 0,789694549 3,7305172 0,16025598
+3,4204981 212991,1329 -0,14970581 0,092135251 0 3,570204 0,744461916 59,16420359 0,790564257 3,7304981 0,16029419
+3,4207082 213023,1329 -0,14999227 0,09212888 0 3,5707004 0,745280907 59,17309248 0,791433965 3,7307082 0,16000773
+3,4208229 213055,1329 -0,15016416 0,092142262 0 3,570987 0,746099897 59,18198137 0,792303673 3,7308229 0,15983584
+3,4208229 213087,1329 -0,15006867 0,092129521 0 3,5708916 0,746918888 59,19087026 0,793173381 3,7308229 0,15993133
+3,421052 213119,1329 -0,15020235 0,09214098 0 3,5712543 0,747737876 59,19975915 0,794043087 3,731052 0,15979765
+3,4210329 213151,133 -0,15027873 0,092139706 0 3,5713117 0,748556865 59,20864804 0,794912794 3,7310329 0,15972127
+3,4211857 213183,133 -0,15045062 0,092139706 0 3,5716364 0,749375855 59,21753693 0,7957825 3,7311857 0,15954938
+3,4212048 213215,133 -0,15067978 0,092142262 0 3,5718846 0,750194844 59,22642582 0,796652208 3,7312048 0,15932022
+3,421262 213247,133 -0,15067978 0,09214098 0 3,5719419 0,751013837 59,23531471 0,797521918 3,731262 0,15932022
+3,4212811 213279,133 -0,15085167 0,092139073 0 3,5721328 0,751832832 59,2442036 0,798391631 3,7312811 0,15914833
+3,421453 213311,133 -0,15100443 0,092137799 0 3,5724573 0,752651824 59,25309249 0,799261341 3,731453 0,15899557
+3,4213958 213343,133 -0,15106173 0,092140347 0 3,5724576 0,753470816 59,26198138 0,800131051 3,7313958 0,15893827
+3,4214723 213375,133 -0,15104264 0,092147343 0 3,572515 0,754289808 59,27087027 0,801000761 3,7314723 0,15895736
+3,4215295 213407,133 -0,15127181 0,092126325 0 3,5728014 0,755108801 59,27975916 0,801870471 3,7315295 0,15872819
+3,4217205 213439,133 -0,1512527 0,092139073 0 3,5729733 0,755927795 59,28864805 0,802740183 3,7317205 0,1587473
+3,4218543 213471,133 -0,15150097 0,092140347 0 3,5733552 0,756746788 59,29753694 0,803609894 3,7318543 0,15849903
+3,4220068 213503,133 -0,15159646 0,092133336 0 3,5736034 0,757565781 59,30642583 0,804479605 3,7320068 0,15840354
+3,4218543 213535,133 -0,15178743 0,092135251 0 3,5736418 0,758384772 59,31531473 0,805349313 3,7318543 0,15821257
+3,4219878 213567,133 -0,15178743 0,092137158 0 3,5737753 0,759203762 59,32420362 0,806219021 3,7319878 0,15821257
+3,4220643 213599,133 -0,15194021 0,092136525 0 3,5740044 0,760022752 59,33309251 0,807088729 3,7320643 0,15805979
+3,4221597 213631,133 -0,15209299 0,092139073 0 3,5742526 0,760841744 59,3419814 0,807958439 3,7321597 0,15790701
+3,4222362 213663,133 -0,15213118 0,092136525 0 3,5743673 0,761660733 59,35087029 0,808828146 3,7322362 0,15786882
+3,4222362 213695,133 -0,15222667 0,092132062 0 3,5744629 0,762479725 59,35975918 0,809697855 3,7322362 0,15777333
+3,4223697 213727,133 -0,15236035 0,092132702 0 3,5747302 0,763298716 59,36864807 0,810567564 3,7323697 0,15763965
+3,4224653 213759,133 -0,15239854 0,092133336 0 3,5748639 0,764117708 59,37753696 0,811437274 3,7324653 0,15760146
+3,4226372 213791,1331 -0,15258951 0,092139706 0 3,5752268 0,764936701 59,38642585 0,812306984 3,7326372 0,15741049
+3,4226372 213823,1331 -0,15262772 0,09214098 0 3,5752649 0,765755693 59,39531474 0,813176694 3,7326372 0,15737228
+3,4227326 213855,1331 -0,15285689 0,09213461 0 3,5755894 0,766574682 59,40420363 0,814046401 3,7327326 0,15714311
+3,4227901 213887,1331 -0,15281869 0,09212824 0 3,5756087 0,767393669 59,41309252 0,814916105 3,7327901 0,15718131
+3,4229236 213919,1331 -0,15295237 0,09212888 0 3,575876 0,768212656 59,42198141 0,81578581 3,7329236 0,15704763
+3,4229236 213951,1331 -0,15302876 0,09213461 0 3,5759523 0,769031644 59,4308703 0,816655515 3,7329236 0,15697124
+3,4231145 213983,1331 -0,15323883 0,092138432 0 3,5763533 0,769850634 59,43975919 0,817525222 3,7331145 0,15676117
+3,4231336 214015,1331 -0,15325792 0,092137158 0 3,5763915 0,770669623 59,44864808 0,81839493 3,7331336 0,15674208
+3,4232292 214047,1331 -0,1534871 0,092138432 0 3,5767164 0,771488611 59,45753697 0,819264635 3,7332292 0,1565129
+3,4232864 214079,1331 -0,15354438 0,092138432 0 3,5768309 0,772307599 59,46642586 0,82013434 3,7332864 0,15645562
+3,423382 214111,1331 -0,15367807 0,092139706 0 3,5770602 0,773126588 59,47531475 0,821004047 3,733382 0,15632193
+3,423382 214143,1331 -0,15362078 0,092135251 0 3,5770028 0,773945581 59,48420364 0,821873758 3,733382 0,15637922
+3,4234965 214175,1331 -0,15379265 0,092133977 0 3,5772891 0,77476458 59,49309253 0,822743475 3,7334965 0,15620735
+3,4235349 214207,1331 -0,15392633 0,092144169 0 3,5774612 0,775583584 59,50198142 0,823613197 3,7335349 0,15607367
+3,4237065 214239,1331 -0,15406002 0,092138432 0 3,5777667 0,776402595 59,51087031 0,824482927 3,7337065 0,15593998
+3,4238975 214271,1331 -0,15402181 0,092144802 0 3,5779192 0,777221611 59,5197592 0,825352663 3,7338975 0,15597819
+3,4239359 214303,1331 -0,1541746 0,092139706 0 3,5781105 0,778040633 59,52864809 0,826222404 3,7339359 0,1558254
+3,4239168 214335,1331 -0,15423189 0,092139706 0 3,5781486 0,778859655 59,53753698 0,827092146 3,7339168 0,15576811
+3,4239359 214367,1331 -0,15444197 0,09214098 0 3,578378 0,779678672 59,54642587 0,827961882 3,7339359 0,15555803
+3,423955 214399,1331 -0,15444197 0,092133336 0 3,578397 0,78049768 59,55531476 0,82883161 3,733955 0,15555803
+3,4242604 214431,1332 -0,15446106 0,092133977 0 3,5787215 0,781316685 59,56420365 0,829701333 3,7342604 0,15553894
+3,4243369 214463,1332 -0,15478571 0,092139706 0 3,5791225 0,782135686 59,57309254 0,830571052 3,7343369 0,15521429
+3,424356 214495,1332 -0,15488119 0,09213461 0 3,5792372 0,782954683 59,58198143 0,831440767 3,734356 0,15511881
+3,4243751 214527,1332 -0,15495759 0,092140347 0 3,5793326 0,783773679 59,59087032 0,832310481 3,7343751 0,15504241
+3,4246042 214559,1332 -0,15493849 0,092130795 0 3,5795426 0,784592671 59,59975921 0,833180191 3,7346042 0,15506151
+3,424547 214591,1332 -0,15505308 0,092135884 0 3,5796001 0,785411662 59,6086481 0,8340499 3,734547 0,15494692
+3,424566 214623,1332 -0,15526316 0,092130795 0 3,5798292 0,786230649 59,61753699 0,834919604 3,734566 0,15473684
+3,4247379 214655,1332 -0,15541592 0,092140347 0 3,5801539 0,787049639 59,62642589 0,835789312 3,7347379 0,15458408
+3,4248717 214687,1332 -0,15549232 0,09214098 0 3,580364 0,787868629 59,63531478 0,836659019 3,7348717 0,15450768
+3,4250243 214719,1332 -0,15554962 0,092135884 0 3,5805738 0,788687619 59,64420367 0,837528727 3,7350243 0,15445038
+3,425139 214751,1332 -0,1556451 0,092141613 0 3,5807841 0,789506612 59,65309256 0,838398438 3,735139 0,1543549
+3,4251199 214783,1332 -0,15568329 0,092133977 0 3,5808032 0,790325602 59,66198145 0,839268145 3,7351199 0,15431671
+3,4252918 214815,1332 -0,15581697 0,092137799 0 3,5811088 0,791144592 59,67087034 0,840137853 3,7352918 0,15418303
+3,4252918 214847,1332 -0,15617982 0,09214098 0 3,5814717 0,791963585 59,67975923 0,841007564 3,7352918 0,15382018
+3,4253299 214879,1332 -0,15602705 0,092132702 0 3,581357 0,792782576 59,68864812 0,841877273 3,7353299 0,15397295
+3,4254446 214911,1332 -0,15617982 0,092145436 0 3,5816245 0,793601566 59,69753701 0,84274698 3,7354446 0,15382018
+3,4255781 214943,1332 -0,15619892 0,092142887 0 3,5817771 0,794420557 59,7064259 0,843616689 3,7355781 0,15380108
+3,425559 214975,1332 -0,15631351 0,092126325 0 3,5818725 0,795239548 59,71531479 0,844486397 3,735559 0,15368649
+3,4256737 215007,1332 -0,15644719 0,092133336 0 3,5821209 0,796058539 59,72420368 0,845356106 3,7356737 0,15355281
+3,4256928 215039,1332 -0,15659997 0,09213461 0 3,5822928 0,796877529 59,73309257 0,846225814 3,7356928 0,15340003
+3,4258456 215071,1333 -0,15669546 0,092135251 0 3,582541 0,797696521 59,74198146 0,847095524 3,7358456 0,15330454
+3,4259601 215103,1333 -0,15673365 0,092143528 0 3,5826938 0,798515512 59,75087035 0,847965233 3,7359601 0,15326635
+3,4261703 215135,1333 -0,15696281 0,092135251 0 3,5831332 0,799334503 59,75975924 0,848834942 3,7361703 0,15303719
+3,4260938 215167,1333 -0,15694371 0,09214098 0 3,5830376 0,800153496 59,76864813 0,849704652 3,7360938 0,15305629
+3,4261703 215199,1333 -0,15711559 0,092136525 0 3,583286 0,800972486 59,77753702 0,85057436 3,7361703 0,15288441
+3,4263422 215231,1333 -0,15715379 0,092133977 0 3,5834961 0,801791474 59,78642591 0,851444065 3,7363422 0,15284621
+3,4263613 215263,1333 -0,15738295 0,092133977 0 3,5837443 0,802610462 59,7953148 0,852313771 3,7363613 0,15261705
+3,4263422 215295,1333 -0,15728746 0,092138432 0 3,5836296 0,803429451 59,80420369 0,853183478 3,7363422 0,15271254
+3,4264758 215327,1333 -0,15753573 0,092144169 0 3,5840116 0,804248437 59,81309258 0,854053181 3,7364758 0,15246427
+3,4263613 215359,1333 -0,15759303 0,092130795 0 3,5839543 0,805067422 59,82198147 0,854922883 3,7363613 0,15240697
+3,4266286 215391,1333 -0,15765032 0,09213461 0 3,5842788 0,805886412 59,83087036 0,85579259 3,7366286 0,15234968
+3,4268005 215423,1333 -0,15774581 0,092123151 0 3,5845463 0,806705402 59,83975925 0,856662299 3,7368005 0,15225419
+3,4268959 215455,1333 -0,15797497 0,092132062 0 3,5848708 0,807524393 59,84864814 0,857532007 3,7368959 0,15202503
+3,4269724 215487,1333 -0,15807046 0,092138432 0 3,585043 0,808343384 59,85753703 0,858401715 3,7369724 0,15192954
+3,4268386 215519,1333 -0,15814684 0,092130147 0 3,5849855 0,809162372 59,86642592 0,859271422 3,7368386 0,15185316
+3,4271252 215551,1333 -0,15816595 0,092137799 0 3,5852911 0,809981362 59,87531481 0,860141129 3,7371252 0,15183405
+3,4272397 215583,1333 -0,15839511 0,092140347 0 3,5856347 0,810800351 59,8842037 0,861010835 3,7372397 0,15160489
+3,4270487 215615,1333 -0,15847151 0,092138432 0 3,5855203 0,811619336 59,89309259 0,861880538 3,7370487 0,15152849
+3,4271443 215647,1333 -0,15868157 0,092139073 0 3,5858259 0,812438321 59,90198148 0,86275024 3,7371443 0,15131843
+3,4274306 215679,1333 -0,15873887 0,092132062 0 3,5861695 0,813257311 59,91087037 0,863619947 3,7374306 0,15126113
+3,4274306 215711,1334 -0,15864338 0,09214098 0 3,5860741 0,814076301 59,91975926 0,864489655 3,7374306 0,15135662
+3,4275072 215743,1334 -0,15879616 0,092131428 0 3,5863032 0,81489529 59,92864815 0,865359362 3,7375072 0,15120384
+3,4277554 215775,1334 -0,15900622 0,092132702 0 3,5867615 0,815714281 59,93753704 0,866229071 3,7377554 0,15099378
+3,4277744 215807,1334 -0,15913992 0,092139073 0 3,5869143 0,81653327 59,94642594 0,867098777 3,7377744 0,15086008
+3,4278316 215839,1334 -0,15929268 0,092127606 0 3,5871243 0,817352257 59,95531483 0,867968482 3,7378316 0,15070732
+3,4280801 215871,1334 -0,15925449 0,09213461 0 3,5873346 0,818171245 59,96420372 0,868838188 3,7380801 0,15074551
+3,4280419 215903,1334 -0,15934998 0,09214098 0 3,5873919 0,818990232 59,97309261 0,869707892 3,7380419 0,15065002
+3,4279082 215935,1334 -0,15944546 0,092132062 0 3,5873537 0,819809219 59,9819815 0,870577597 3,7379082 0,15055454
+3,4281754 215967,1334 -0,15957916 0,092139706 0 3,5877547 0,820628206 59,99087039 0,871447301 3,7381754 0,15042084
+3,4281945 215999,1334 -0,15977013 0,092133977 0 3,5879645 0,821447195 59,99975928 0,872317007 3,7381945 0,15022987
+3,4283283 216031,1334 -0,15969373 0,092139706 0 3,588022 0,822266184 60,00864817 0,873186714 3,7383283 0,15030627
+3,4284048 216063,1334 -0,16003749 0,092139073 0 3,5884423 0,823085174 60,01753706 0,874056422 3,7384048 0,14996251
+3,4283092 216095,1334 -0,16011387 0,092133336 0 3,588423 0,823904164 60,02642595 0,874926129 3,7383092 0,14988613
+3,4285958 216127,1334 -0,16011387 0,092137158 0 3,5887096 0,824723154 60,03531484 0,875795836 3,7385958 0,14988613
+3,4286721 216159,1334 -0,16013297 0,092139073 0 3,588805 0,825542144 60,04420373 0,876665545 3,7386721 0,14986703
+3,4287484 216191,1334 -0,16024756 0,092135884 0 3,5889959 0,826361133 60,05309262 0,877535251 3,7387484 0,14975244
+3,4286721 216223,1334 -0,16038124 0,092135884 0 3,5890534 0,827180126 60,06198151 0,878404962 3,7386721 0,14961876
+3,428844 216255,1334 -0,1606486 0,092137158 0 3,5894926 0,827999119 60,0708704 0,879274673 3,738844 0,1493514
+3,4290159 216287,1334 -0,16080138 0,09213461 0 3,5898173 0,82881811 60,07975929 0,880144381 3,7390159 0,14919862
+3,428863 216319,1334 -0,16087776 0,09213461 0 3,5897408 0,829637101 60,08864818 0,88101409 3,738863 0,14912224
+3,4289968 216351,1335 -0,16108784 0,09214098 0 3,5900846 0,830456094 60,09753707 0,881883801 3,7389968 0,14891216
+3,4290731 216383,1335 -0,16099235 0,092133977 0 3,5900655 0,831275085 60,10642596 0,88275351 3,7390731 0,14900765
+3,4291687 216415,1335 -0,16127881 0,092133977 0 3,5904474 0,832094076 60,11531485 0,883623219 3,7391687 0,14872119
+3,4293787 216447,1335 -0,16125971 0,092133336 0 3,5906384 0,832913066 60,12420374 0,884492926 3,7393787 0,14874029
+3,4295123 216479,1335 -0,16150798 0,092139706 0 3,5910203 0,833732056 60,13309263 0,885362634 3,7395123 0,14849202
+3,4293406 216511,1335 -0,16150798 0,092126973 0 3,5908487 0,834551047 60,14198152 0,886232343 3,7393406 0,14849202
+3,4294932 216543,1335 -0,16162257 0,092141613 0 3,5911157 0,835370039 60,15087041 0,887102052 3,7394932 0,14837743
+3,429646 216575,1335 -0,16179444 0,092132702 0 3,5914404 0,836189029 60,1597593 0,88797176 3,739646 0,14820556
+3,4298751 216607,1335 -0,16190903 0,092138432 0 3,5917842 0,837008021 60,16864819 0,888841469 3,7398751 0,14809097
+3,4297988 216639,1335 -0,16211911 0,092132062 0 3,591918 0,83782701 60,17753708 0,889711176 3,7397988 0,14788089
+3,4299707 216671,1335 -0,1620809 0,092138432 0 3,5920517 0,838646 60,18642597 0,890580884 3,7399707 0,1479191
+3,4301617 216703,1335 -0,1621 0,092144802 0 3,5922618 0,83946499 60,19531486 0,891450592 3,7401617 0,1479
+3,4299898 216735,1335 -0,16231008 0,092137799 0 3,5922999 0,84028398 60,20420375 0,892320299 3,7399898 0,14768992
+3,4299517 216767,1335 -0,16253924 0,09214098 0 3,5924909 0,841102969 60,21309264 0,893190005 3,7399517 0,14746076
+3,4302571 216799,1335 -0,16250105 0,092135251 0 3,5927582 0,841921956 60,22198153 0,894059711 3,7402571 0,14749895
+3,4304674 216831,1335 -0,16273022 0,092129521 0 3,5931976 0,842740942 60,23087042 0,894929414 3,7404674 0,14726978
+3,4304099 216863,1335 -0,16274931 0,092139073 0 3,5931592 0,843559927 60,23975931 0,895799116 3,7404099 0,14725069
+3,4304864 216895,1335 -0,16295938 0,092135251 0 3,5934458 0,844378915 60,2486482 0,896668822 3,7404864 0,14704062
+3,4305627 216927,1335 -0,16313125 0,092132062 0 3,593694 0,845197905 60,25753709 0,897538529 3,7405627 0,14686875
+3,4305818 216959,1335 -0,16318855 0,092135884 0 3,5937703 0,846016895 60,26642599 0,898408237 3,7405818 0,14681145
+3,4305627 216991,1336 -0,16330314 0,092138432 0 3,5938659 0,846835884 60,27531488 0,899277944 3,7405627 0,14669686
+3,4308493 217023,1336 -0,16345592 0,092140347 0 3,5943053 0,847654875 60,28420377 0,900147652 3,7408493 0,14654408
+3,4307919 217055,1336 -0,1635323 0,092132062 0 3,5943241 0,848473865 60,29309266 0,901017359 3,7407919 0,1464677
+3,4308684 217087,1336 -0,16360869 0,09213461 0 3,5944772 0,849292853 60,30198155 0,901887066 3,7408684 0,14639131
+3,4312122 217119,1336 -0,16372328 0,092131428 0 3,5949354 0,850111841 60,31087044 0,90275677 3,7412122 0,14627672
+3,4311166 217151,1336 -0,16368508 0,092135251 0 3,5948017 0,850930829 60,31975933 0,903626476 3,7411166 0,14631492
+3,4312885 217183,1336 -0,16399065 0,092137799 0 3,5952792 0,851749818 60,32864822 0,904496183 3,7412885 0,14600935
+3,4312694 217215,1336 -0,16400973 0,092142262 0 3,5952792 0,852568807 60,33753711 0,905365889 3,7412694 0,14599027
+3,4313648 217247,1336 -0,16418162 0,092138432 0 3,5955465 0,853387796 60,346426 0,906235595 3,7413648 0,14581838
+3,4314413 217279,1336 -0,16433439 0,092138432 0 3,5957756 0,854206785 60,35531489 0,907105302 3,7414413 0,14566561
+3,4315176 217311,1336 -0,16439168 0,092130147 0 3,5959094 0,855025772 60,36420378 0,907975007 3,7415176 0,14560832
+3,4316514 217343,1336 -0,16456357 0,092138432 0 3,596215 0,855844763 60,37309267 0,908844716 3,7416514 0,14543643
+3,4316514 217375,1336 -0,16477363 0,092145436 0 3,5964251 0,856663755 60,38198156 0,909714426 3,7416514 0,14522637
+3,4317086 217407,1336 -0,16477363 0,092130795 0 3,5964823 0,857482748 60,39087045 0,910584136 3,7417086 0,14522637
+3,4317276 217439,1336 -0,16492641 0,092135884 0 3,5966539 0,858301741 60,39975934 0,911453847 3,7417276 0,14507359
+3,4318233 217471,1336 -0,1649837 0,092131428 0 3,596807 0,859120734 60,40864823 0,912323558 3,7418233 0,1450163
+3,4318995 217503,1336 -0,16523197 0,092133977 0 3,5971315 0,859939729 60,41753712 0,913193271 3,7418995 0,14476803
+3,4320524 217535,1336 -0,16534655 0,092137158 0 3,597399 0,860758726 60,42642601 0,914062986 3,7420524 0,14465345
+3,4322433 217567,1336 -0,16536565 0,092129521 0 3,597609 0,861577723 60,4353149 0,914932701 3,7422433 0,14463435
+3,4322815 217599,1336 -0,16536565 0,092139073 0 3,5976472 0,862396723 60,44420379 0,915802419 3,7422815 0,14463435
+3,4322052 217631,1337 -0,1656903 0,092133336 0 3,5978956 0,863215721 60,45309268 0,916672136 3,7422052 0,1443097
+3,4324343 217663,1337 -0,16565211 0,092139073 0 3,5980864 0,864034717 60,46198157 0,91754185 3,7424343 0,14434789
+3,4325299 217695,1337 -0,16578579 0,092135251 0 3,5983157 0,864853713 60,47087046 0,918411563 3,7425299 0,14421421
+3,4326444 217727,1337 -0,16601495 0,09214098 0 3,5986593 0,86567271 60,47975935 0,919281279 3,7426444 0,14398505
+3,4326825 217759,1337 -0,16612954 0,092135884 0 3,5988121 0,866491708 60,48864824 0,920150995 3,7426825 0,14387046
+3,4326444 217791,1337 -0,16622503 0,092132062 0 3,5988693 0,867310705 60,49753713 0,92102071 3,7426444 0,14377497
+3,4326825 217823,1337 -0,1664542 0,092139073 0 3,5991368 0,8681297 60,50642602 0,921890422 3,7426825 0,1435458
+3,4328163 217855,1337 -0,16651149 0,092138432 0 3,5993278 0,868948694 60,51531491 0,922760135 3,7428163 0,14348851
+3,4329309 217887,1337 -0,16654968 0,09214098 0 3,5994806 0,869767686 60,5242038 0,923629845 3,7429309 0,14345032
+3,4332173 217919,1337 -0,16681705 0,092144802 0 3,6000342 0,870586679 60,53309269 0,924499555 3,7432173 0,14318295
+3,4330645 217951,1337 -0,16683614 0,092138432 0 3,5999007 0,871405674 60,54198158 0,925369268 3,7430645 0,14316386
+3,4332554 217983,1337 -0,16695073 0,092135251 0 3,6002061 0,87222467 60,55087047 0,926238982 3,7432554 0,14304927
+3,433141 218015,1337 -0,16700803 0,092135251 0 3,6001489 0,873043667 60,55975936 0,927108697 3,743141 0,14299197
+3,4333892 218047,1337 -0,16735177 0,092135884 0 3,6007409 0,873862662 60,56864825 0,92797841 3,7433892 0,14264823
+3,4334273 218079,1337 -0,16727538 0,092140347 0 3,6007028 0,874681658 60,57753714 0,928848124 3,7434273 0,14272462
+3,4335802 218111,1337 -0,16738997 0,092133336 0 3,60097 0,875500652 60,58642604 0,929717836 3,7435802 0,14261003
+3,4335611 218143,1337 -0,16773371 0,09214098 0 3,6012948 0,876319644 60,59531493 0,930587546 3,7435611 0,14226629
+3,4336376 218175,1337 -0,16773371 0,092138432 0 3,6013713 0,877138637 60,60420382 0,931457257 3,7436376 0,14226629
+3,4337902 218207,1337 -0,16773371 0,092137158 0 3,6015239 0,87795763 60,61309271 0,932326968 3,7437902 0,14226629
+3,4337139 218239,1337 -0,16794379 0,092141613 0 3,6016576 0,878776622 60,6219816 0,933196677 3,7437139 0,14205621
+3,4338858 218271,1338 -0,16811566 0,092138432 0 3,6020014 0,879595613 60,63087049 0,934066386 3,7438858 0,14188434
+3,4338858 218303,1338 -0,16813476 0,09212824 0 3,6020205 0,880414604 60,63975938 0,934936095 3,7438858 0,14186524
+3,434134 218335,1338 -0,16830663 0,092139706 0 3,6024406 0,881233592 60,64864827 0,9358058 3,744134 0,14169337
+3,4342487 218367,1338 -0,16826844 0,092135251 0 3,6025171 0,882052582 60,65753716 0,936675508 3,7442487 0,14173156
+3,4341912 218399,1338 -0,16857401 0,09213461 0 3,6027653 0,882871572 60,66642605 0,937545216 3,7441912 0,14142599
+3,434134 218431,1338 -0,16857401 0,092139073 0 3,6027081 0,883690564 60,67531494 0,938414926 3,744134 0,14142599
+3,4343059 218463,1338 -0,16878408 0,092132062 0 3,60309 0,884509556 60,68420383 0,939284635 3,7443059 0,14121592
+3,4344587 218495,1338 -0,16876498 0,092135884 0 3,6032238 0,885328544 60,69309272 0,940154341 3,7444587 0,14123502
+3,4344778 218527,1338 -0,1686886 0,092145436 0 3,6031663 0,886147533 60,70198161 0,941024047 3,7444778 0,1413114
+3,4345925 218559,1338 -0,16910873 0,092139073 0 3,6037011 0,886966525 60,7108705 0,941893757 3,7445925 0,14089127
+3,4346306 218591,1338 -0,16920422 0,092129521 0 3,6038349 0,887785517 60,71975939 0,942763467 3,7446306 0,14079578
+3,4346879 218623,1338 -0,1693379 0,092130795 0 3,6040258 0,888604508 60,72864828 0,943633175 3,7446879 0,1406621
+3,4348788 218655,1338 -0,16950977 0,092139706 0 3,6043887 0,889423499 60,73753717 0,944502884 3,7448788 0,14049023
+3,4350507 218687,1338 -0,16956706 0,092137158 0 3,6046178 0,890242489 60,74642606 0,945372592 3,7450507 0,14043294
+3,4350126 218719,1338 -0,16960526 0,092130795 0 3,6046178 0,891061483 60,75531495 0,946242304 3,7450126 0,14039474
+3,4349935 218751,1338 -0,16979623 0,092138432 0 3,6047897 0,891880474 60,76420384 0,947112013 3,7449935 0,14020377
+3,4351845 218783,1338 -0,16979623 0,092139073 0 3,6049807 0,892699465 60,77309273 0,947981721 3,7451845 0,14020377
+3,4351654 218815,1338 -0,16991082 0,092132702 0 3,6050763 0,893518454 60,78198162 0,948851427 3,7451654 0,14008918
+3,4351654 218847,1338 -0,17015909 0,09214098 0 3,6053245 0,894337444 60,79087051 0,949721136 3,7451654 0,13984091
+3,4353373 218879,1338 -0,17017817 0,092131428 0 3,6055155 0,895156432 60,7997594 0,950590841 3,7453373 0,13982183
+3,4353945 218911,1339 -0,17023547 0,09213461 0 3,6056299 0,89597542 60,80864829 0,951460546 3,7453945 0,13976453
+3,4353755 218943,1339 -0,17050284 0,092133336 0 3,6058784 0,896794407 60,81753718 0,952330251 3,7453755 0,13949716
+3,4356427 218975,1339 -0,17050284 0,092142887 0 3,6061456 0,897613395 60,82642607 0,953199957 3,7456427 0,13949716
+3,4357574 219007,1339 -0,17065561 0,092133336 0 3,6064129 0,898432383 60,83531496 0,954069662 3,7457574 0,13934439
+3,4357002 219039,1339 -0,17067471 0,09214098 0 3,606375 0,899251371 60,84420385 0,954939368 3,7457002 0,13932529
+3,4358528 219071,1339 -0,17080839 0,092141613 0 3,6066611 0,90007036 60,85309274 0,955809074 3,7458528 0,13919161
+3,4358337 219103,1339 -0,17111395 0,092139706 0 3,6069477 0,900889348 60,86198163 0,956678779 3,7458337 0,13888605
+3,4358718 219135,1339 -0,17101847 0,092132702 0 3,6068902 0,901708336 60,87087052 0,957548485 3,7458718 0,13898153
+3,4360247 219167,1339 -0,17120944 0,09214098 0 3,607234 0,902527325 60,87975941 0,958418192 3,7460247 0,13879056
+3,4361203 219199,1339 -0,17138131 0,092139706 0 3,6075015 0,903346314 60,8886483 0,959287899 3,7461203 0,13861869
+3,4363112 219231,1339 -0,17138131 0,092139706 0 3,6076925 0,904165306 60,89753719 0,960157608 3,7463112 0,13861869
+3,4362347 219263,1339 -0,171515 0,092135884 0 3,6077497 0,904984296 60,90642609 0,961027316 3,7462347 0,138485
+3,436445 219295,1339 -0,17161049 0,092142262 0 3,6080556 0,905803288 60,91531498 0,961897025 3,746445 0,13838951
+3,4364831 219327,1339 -0,17172506 0,092133977 0 3,6082082 0,906622278 60,92420387 0,962766734 3,7464831 0,13827494
+3,4366167 219359,1339 -0,17178236 0,092137799 0 3,6083989 0,90744127 60,93309276 0,963636443 3,7466167 0,13821764
+3,4367123 219391,1339 -0,17178236 0,092139706 0 3,6084945 0,908260261 60,94198165 0,964506152 3,7467123 0,13821764
+3,436655 219423,1339 -0,17204972 0,092138432 0 3,6087048 0,90907925 60,95087054 0,965375858 3,746655 0,13795028
+3,4368842 219455,1339 -0,17206882 0,092132062 0 3,608953 0,90989824 60,95975943 0,966245566 3,7468842 0,13793118
+3,4369223 219487,1339 -0,17204972 0,092136525 0 3,6089721 0,910717228 60,96864832 0,967115272 3,7469223 0,13795028
+3,4368651 219519,1339 -0,17224069 0,092133977 0 3,6091058 0,911536219 60,97753721 0,96798498 3,7468651 0,13775931
+3,4369223 219551,134 -0,17246987 0,092135251 0 3,6093922 0,912355211 60,9864261 0,96885469 3,7469223 0,13753013
+3,4371133 219583,134 -0,17248896 0,092139706 0 3,6096022 0,913174203 60,99531499 0,969724399 3,7471133 0,13751104
+3,437228 219615,134 -0,17258444 0,09213461 0 3,6098125 0,913993195 61,00420388 0,970594109 3,747228 0,13741556
+3,4370942 219647,134 -0,17281361 0,092135884 0 3,6099079 0,914812188 61,01309277 0,97146382 3,7470942 0,13718639
+3,4373999 219679,134 -0,17277542 0,092132062 0 3,6101754 0,915631183 61,02198166 0,972333533 3,7473999 0,13722458
+3,4375143 219711,134 -0,17271812 0,092133977 0 3,6102324 0,916450177 61,03087055 0,973203245 3,7475143 0,13728188
+3,437438 219743,134 -0,1729091 0,092130147 0 3,610347 0,917269171 61,03975944 0,974072957 3,747438 0,1370909
+3,437629 219775,134 -0,1729473 0,092137158 0 3,6105764 0,918088161 61,04864833 0,974942665 3,747629 0,1370527
+3,4376671 219807,134 -0,17308098 0,09213461 0 3,6107481 0,918907155 61,05753722 0,975812376 3,7476671 0,13691902
+3,4377434 219839,134 -0,17300458 0,092139073 0 3,6107481 0,919726146 61,06642611 0,976682086 3,7477434 0,13699542
+3,4379346 219871,134 -0,17334834 0,092140347 0 3,6112831 0,920545139 61,075315 0,977551796 3,7479346 0,13665166
+3,4378581 219903,134 -0,17332925 0,092135251 0 3,6111875 0,92136413 61,08420389 0,978421505 3,7478581 0,13667075
+3,4380491 219935,134 -0,17353931 0,092132062 0 3,6115885 0,922183122 61,09309278 0,979291215 3,7480491 0,13646069
+3,4380491 219967,134 -0,17346293 0,092140347 0 3,6115119 0,923002116 61,10198167 0,980160926 3,7480491 0,13653707
+3,4380872 219999,134 -0,1736348 0,092137158 0 3,611722 0,923821111 61,11087056 0,981030639 3,7480872 0,1363652
+3,4382019 220031,134 -0,17374939 0,092139073 0 3,6119514 0,924640105 61,11975945 0,981900351 3,7482019 0,13625061
+3,4385076 220063,134 -0,1736539 0,092136525 0 3,6121614 0,925459097 61,12864834 0,982770061 3,7485076 0,1363461
+3,4383738 220095,134 -0,17369209 0,092135884 0 3,6120658 0,926278089 61,13753723 0,983639771 3,7483738 0,13630791
+3,4385839 220127,134 -0,17392126 0,092135884 0 3,6125052 0,927097079 61,14642612 0,984509478 3,7485839 0,13607874
+3,4385076 220159,134 -0,17382577 0,092139706 0 3,6123333 0,92791607 61,15531501 0,985379187 3,7485076 0,13617423
+3,4387558 220191,1341 -0,17403585 0,092142262 0 3,6127915 0,92873506 61,1642039 0,986248895 3,7487558 0,13596415
+3,4386601 220223,1341 -0,17403585 0,092133977 0 3,6126959 0,929554051 61,17309279 0,987118604 3,7486601 0,13596415
+3,438813 220255,1341 -0,17428412 0,092132702 0 3,6130972 0,930373043 61,18198168 0,987988314 3,748813 0,13571588
+3,4389277 220287,1341 -0,17420772 0,092139706 0 3,6131353 0,931192033 61,19087057 0,988858021 3,7489277 0,13579228
+3,4388704 220319,1341 -0,17432231 0,092139706 0 3,6131928 0,932011023 61,19975946 0,989727729 3,7488704 0,13567769
+3,4391186 220351,1341 -0,17439869 0,092133977 0 3,6135173 0,932830015 61,20864835 0,990597438 3,7491186 0,13560131
+3,4392524 220383,1341 -0,17460877 0,092147343 0 3,6138611 0,933649006 61,21753725 0,991467147 3,7492524 0,13539123
+3,4392715 220415,1341 -0,17460877 0,092139706 0 3,6138802 0,934467997 61,22642614 0,992336855 3,7492715 0,13539123
+3,4392715 220447,1341 -0,17485704 0,092136525 0 3,6141286 0,935286985 61,23531503 0,993206562 3,7492715 0,13514296
+3,439405 220479,1341 -0,17476155 0,092132062 0 3,6141665 0,936105975 61,24420392 0,994076268 3,749405 0,13523845
+3,4395578 220511,1341 -0,17493342 0,092141613 0 3,6144912 0,936924966 61,25309281 0,994945977 3,7495578 0,13506658
+3,4395387 220543,1341 -0,17476155 0,09213461 0 3,6143003 0,937743958 61,2619817 0,995815687 3,7495387 0,13523845
+3,4396343 220575,1341 -0,17493342 0,092132702 0 3,6145678 0,938562951 61,27087059 0,996685399 3,7496343 0,13506658
+3,4395959 220607,1341 -0,1750862 0,092130795 0 3,6146822 0,93938194 61,27975948 0,997555105 3,7495959 0,1349138
+3,4397678 220639,1341 -0,17497161 0,092131428 0 3,6147394 0,940200932 61,28864837 0,998424815 3,7497678 0,13502839
+3,4398253 220671,1341 -0,17518169 0,092130795 0 3,6150069 0,941019921 61,29753726 0,999294521 3,7498253 0,13481831
+3,4398253 220703,1341 -0,17520079 0,092138432 0 3,615026 0,941838908 61,30642615 1,000164225 3,7498253 0,13479921
+3,4399972 220735,1341 -0,17537266 0,092131428 0 3,6153698 0,942657897 61,31531504 1,001033932 3,7499972 0,13462734
+3,4402454 220767,1341 -0,17542996 0,092131428 0 3,6156754 0,943476886 61,32420393 1,001903639 3,7502454 0,13457004
+3,4401498 220799,1341 -0,17535357 0,09213461 0 3,6155033 0,944295877 61,33309282 1,002773347 3,7501498 0,13464643
+3,4403026 220831,1342 -0,17550634 0,092137158 0 3,615809 0,945114866 61,34198171 1,003643054 3,7503026 0,13449366
+3,4403598 220863,1342 -0,17567822 0,092132702 0 3,6160381 0,945933857 61,3508706 1,004512762 3,7503598 0,13432178
+3,4404936 220895,1342 -0,17569731 0,092142262 0 3,6161909 0,946752849 61,35975949 1,005382472 3,7504936 0,13430269
+3,4405317 220927,1342 -0,17573552 0,092138432 0 3,6162672 0,94757184 61,36864838 1,006252181 3,7505317 0,13426448
+3,4406464 220959,1342 -0,17588829 0,092138432 0 3,6165347 0,948390828 61,37753727 1,007121887 3,7506464 0,13411171
+3,4406273 220991,1342 -0,17590739 0,092132702 0 3,6165347 0,949209817 61,38642616 1,007991593 3,7506273 0,13409261
+3,4409137 221023,1342 -0,17594558 0,092130795 0 3,6168592 0,950028804 61,39531505 1,008861298 3,7509137 0,13405442
+3,4407611 221055,1342 -0,17606017 0,092133977 0 3,6168213 0,950847793 61,40420394 1,009731004 3,7507611 0,13393983
+3,4409711 221087,1342 -0,17598377 0,092136525 0 3,6169548 0,951666781 61,41309283 1,01060071 3,7509711 0,13401623
+3,4410665 221119,1342 -0,17630844 0,092133977 0 3,6173749 0,952485768 61,42198172 1,011470414 3,7510665 0,13369156
+3,4411812 221151,1342 -0,17638482 0,092136525 0 3,6175661 0,953304756 61,43087061 1,01234012 3,7511812 0,13361518
+3,4410474 221183,1342 -0,17632753 0,092131428 0 3,6173749 0,954123743 61,4397595 1,013209824 3,7510474 0,13367247
+3,4412956 221215,1342 -0,1765376 0,092132702 0 3,6178331 0,954942731 61,44864839 1,014079529 3,7512956 0,1334624
+3,4413722 221247,1342 -0,17644212 0,092135884 0 3,6178143 0,95576172 61,45753728 1,014949236 3,7513722 0,13355788
+3,4415822 221279,1342 -0,17663309 0,09213461 0 3,6182153 0,956580705 61,46642617 1,015818939 3,7515822 0,13336691
+3,441525 221311,1342 -0,17672858 0,092130147 0 3,6182535 0,957399691 61,47531506 1,016688642 3,751525 0,13327142
+3,4416203 221343,1342 -0,17691955 0,092137799 0 3,6185398 0,958218676 61,48420395 1,017558345 3,7516203 0,13308045
+3,4417922 221375,1342 -0,17672858 0,092135884 0 3,6185207 0,959037663 61,49309284 1,018428049 3,7517922 0,13327142
+3,4417541 221407,1342 -0,17705323 0,09214098 0 3,6188073 0,959856654 61,50198173 1,019297757 3,7517541 0,13294677
+3,441926 221439,1342 -0,17697684 0,092144169 0 3,6189029 0,960675645 61,51087062 1,020167466 3,751926 0,13302316
+3,4420214 221471,1343 -0,17711052 0,092135251 0 3,6191318 0,961494638 61,51975951 1,021037177 3,7520214 0,13288948
+3,4419451 221503,1343 -0,17705323 0,092132062 0 3,6189983 0,962313628 61,5286484 1,021906885 3,7519451 0,13294677
+3,4420214 221535,1343 -0,17728239 0,092130795 0 3,6193037 0,963132619 61,5375373 1,022776594 3,7520214 0,13271761
+3,4421933 221567,1343 -0,17735879 0,092136525 0 3,6195521 0,96395161 61,54642619 1,023646303 3,7521933 0,13264121
+3,4422507 221599,1343 -0,17749247 0,092138432 0 3,6197431 0,9647706 61,55531508 1,02451601 3,7522507 0,13250753
+3,4423079 221631,1343 -0,17762615 0,092137799 0 3,6199341 0,965589589 61,56420397 1,025385716 3,7523079 0,13237385
+3,4424226 221663,1343 -0,17737788 0,092133336 0 3,6198006 0,966408575 61,57309286 1,02625542 3,7524226 0,13262212
+3,4424417 221695,1343 -0,17774074 0,092135884 0 3,6201825 0,967227565 61,58198175 1,027125127 3,7524417 0,13225926
+3,4425943 221727,1343 -0,17762615 0,092135251 0 3,6202204 0,968046553 61,59087064 1,027994833 3,7525943 0,13237385
+3,4425561 221759,1343 -0,17781712 0,092139073 0 3,6203732 0,968865543 61,59975953 1,02886454 3,7525561 0,13218288
+3,4427853 221791,1343 -0,17791261 0,092132062 0 3,620698 0,969684534 61,60864842 1,02973425 3,7527853 0,13208739
+3,4428427 221823,1343 -0,17798901 0,092133977 0 3,6208317 0,970503525 61,61753731 1,030603958 3,7528427 0,13201099
+3,4429572 221855,1343 -0,17819907 0,092139706 0 3,6211562 0,971322515 61,6264262 1,031473666 3,7529572 0,13180093
+3,4430146 221887,1343 -0,17816088 0,092140347 0 3,6211755 0,972141508 61,63531509 1,032343376 3,7530146 0,13183912
+3,4431865 221919,1343 -0,17819907 0,092142887 0 3,6213856 0,9729605 61,64420398 1,033213086 3,7531865 0,13180093
+3,4431291 221951,1343 -0,17827547 0,092129521 0 3,6214046 0,97377949 61,65309287 1,034082794 3,7531291 0,13172453
+3,4433966 221983,1343 -0,17837095 0,092130147 0 3,6217675 0,974598481 61,66198176 1,034952502 3,7533966 0,13162905
+3,443301 222015,1343 -0,17850463 0,09212824 0 3,6218057 0,97541747 61,67087065 1,035822209 3,753301 0,13149537
+3,443511 222047,1343 -0,17852372 0,092126973 0 3,6220348 0,976236461 61,67975954 1,036691918 3,753511 0,13147628
+3,4433775 222079,1343 -0,1786956 0,092130147 0 3,6220732 0,977055452 61,68864843 1,037561626 3,7533775 0,1313044
+3,4435494 222111,1344 -0,1786765 0,092138432 0 3,622226 0,977874443 61,69753732 1,038431335 3,7535494 0,1313235
+3,4436448 222143,1344 -0,17884839 0,092132702 0 3,6224933 0,978693436 61,70642621 1,039301046 3,7536448 0,13115161
+3,4437594 222175,1344 -0,17894387 0,092138432 0 3,6227033 0,97951243 61,7153151 1,040170758 3,7537594 0,13105613
+3,4438548 222207,1344 -0,17900115 0,092139706 0 3,6228559 0,980331421 61,72420399 1,041040467 3,7538548 0,13099885
+3,4437976 222239,1344 -0,17930672 0,092136525 0 3,6231043 0,981150411 61,73309288 1,041910174 3,7537976 0,13069328
+3,443912 222271,1344 -0,17924942 0,092141613 0 3,6231616 0,981969403 61,74198177 1,042779884 3,753912 0,13075058
+3,4441605 222303,1344 -0,17926852 0,092136525 0 3,6234291 0,982788395 61,75087066 1,043649594 3,7541605 0,13073148
+3,4441795 222335,1344 -0,17942131 0,092135251 0 3,623601 0,983607387 61,75975955 1,044519304 3,7541795 0,13057869
+3,4441605 222367,1344 -0,17970777 0,09213461 0 3,6238682 0,984426378 61,76864844 1,045389012 3,7541605 0,13029223
+3,4444468 222399,1344 -0,17955498 0,092142262 0 3,6240017 0,985245372 61,77753733 1,046258724 3,7544468 0,13044502
+3,4444277 222431,1344 -0,17972685 0,092139073 0 3,6241546 0,986064363 61,78642622 1,047128433 3,7544277 0,13027315
+3,4443324 222463,1344 -0,17978415 0,092136525 0 3,6241164 0,986883354 61,79531511 1,047998142 3,7543324 0,13021585
+3,4444852 222495,1344 -0,17976505 0,092137158 0 3,6242502 0,987702345 61,804204 1,04886785 3,7544852 0,13023495
+3,4445806 222527,1344 -0,17999423 0,092147991 0 3,6245747 0,988521339 61,81309289 1,049737563 3,7545806 0,13000577
+3,4448862 222559,1344 -0,18001331 0,092141613 0 3,6248996 0,989340334 61,82198178 1,050607276 3,7548862 0,12998669
+3,4448287 222591,1344 -0,1801088 0,092137158 0 3,6249375 0,990159328 61,83087067 1,051476988 3,7548287 0,1298912
+3,4450772 222623,1344 -0,18035707 0,092130147 0 3,6254342 0,990978325 61,83975956 1,052346702 3,7550772 0,12964293
+3,4450006 222655,1344 -0,18033798 0,092136525 0 3,6253386 0,991797318 61,84864845 1,053216413 3,7550006 0,12966202
+3,4451344 222687,1344 -0,18045256 0,092142887 0 3,625587 0,992616311 61,85753735 1,054086124 3,7551344 0,12954744
+3,4450772 222719,1344 -0,18056715 0,092137158 0 3,6256442 0,993435302 61,86642624 1,054955833 3,7550772 0,12943285
+3,44523 222751,1345 -0,18066263 0,092132702 0 3,6258926 0,994254293 61,87531513 1,055825541 3,75523 0,12933737
+3,4453063 222783,1345 -0,18070082 0,092131428 0 3,6260071 0,995073284 61,88420402 1,05669525 3,7553063 0,12929918
+3,4453254 222815,1345 -0,18071993 0,092139706 0 3,6260452 0,995892273 61,89309291 1,057564957 3,7553254 0,12928007
+3,4453635 222847,1345 -0,18096818 0,092140347 0 3,6263318 0,996711263 61,9019818 1,058434665 3,7553635 0,12903182
+3,4455545 222879,1345 -0,18096818 0,092137158 0 3,6265228 0,997530254 61,91087069 1,059304373 3,7555545 0,12903182
+3,4455926 222911,1345 -0,18102548 0,092137799 0 3,6266181 0,998349244 61,91975958 1,060174081 3,7555926 0,12897452
+3,4456692 222943,1345 -0,18133104 0,092132062 0 3,6270003 0,99916823 61,92864847 1,061043784 3,7556692 0,12866896
+3,4458029 222975,1345 -0,18142653 0,092138432 0 3,6272295 0,999987217 61,93753736 1,061913488 3,7558029 0,12857347
+3,4459555 223007,1345 -0,18152201 0,092135884 0 3,6274776 1,000806206 61,94642625 1,062783196 3,7559555 0,12847799
+3,4459746 223039,1345 -0,18146472 0,092137158 0 3,6274393 1,001625193 61,95531514 1,0636529 3,7559746 0,12853528
+3,4460511 223071,1345 -0,18163659 0,09213461 0 3,6276877 1,002444178 61,96420403 1,064522602 3,7560511 0,12836341
+3,4462039 223103,1345 -0,18167479 0,09214098 0 3,6278787 1,003263164 61,97309292 1,065392306 3,7562039 0,12832521
+3,4462039 223135,1345 -0,18175118 0,092141613 0 3,6279552 1,004082151 61,98198181 1,06626201 3,7562039 0,12824882
+3,4462993 223167,1345 -0,18192305 0,092137799 0 3,6282225 1,004901141 61,9908707 1,067131717 3,7562993 0,12807695
+3,4464521 223199,1345 -0,18207583 0,092144169 0 3,6285279 1,005720133 61,99975959 1,068001428 3,7564521 0,12792417
+3,4464903 223231,1345 -0,18211403 0,092137799 0 3,6286044 1,006539127 62,00864848 1,068871139 3,7564903 0,12788597
+3,4465477 223263,1345 -0,1822859 0,09214098 0 3,6288338 1,007358121 62,01753737 1,069740851 3,7565477 0,1277141
+3,4465859 223295,1345 -0,1823432 0,092143528 0 3,6289291 1,008177116 62,02642626 1,070610564 3,7565859 0,1276568
+3,4467194 223327,1345 -0,18245777 0,092129521 0 3,6291771 1,00899611 62,03531515 1,071480276 3,7567194 0,12754223
+3,4466622 223359,1345 -0,18253417 0,09214098 0 3,6291964 1,009815102 62,04420404 1,072349986 3,7566622 0,12746583
+3,446815 223391,1346 -0,18255326 0,092132062 0 3,6293683 1,010634092 62,05309293 1,073219694 3,756815 0,12744674
+3,447006 223423,1346 -0,18282063 0,09214098 0 3,6298265 1,011453084 62,06198182 1,074089403 3,757006 0,12717937
+3,4471207 223455,1346 -0,18293521 0,092130795 0 3,6300559 1,012272077 62,07087071 1,074959114 3,7571207 0,12706479
+3,4470823 223487,1346 -0,18282063 0,092130795 0 3,6299028 1,013091071 62,0797596 1,075828826 3,7570823 0,12717937
+3,4472351 223519,1346 -0,18316439 0,092139073 0 3,6303995 1,013910066 62,08864849 1,076698538 3,7572351 0,12683561
+3,4472542 223551,1346 -0,18314528 0,092132062 0 3,6303995 1,014729061 62,09753738 1,077568251 3,7572542 0,12685472
+3,4472926 223583,1346 -0,18345085 0,092137799 0 3,6307435 1,015548057 62,10642627 1,078437965 3,7572926 0,12654915
+3,447407 223615,1346 -0,18350813 0,092135884 0 3,6309152 1,016367051 62,11531516 1,079307677 3,757407 0,12649187
+3,4475598 223647,1346 -0,18345085 0,092138432 0 3,6310108 1,017186044 62,12420405 1,080177388 3,7575598 0,12654915
+3,4475217 223679,1346 -0,18362272 0,092137799 0 3,6311445 1,018005037 62,13309294 1,081047099 3,7575217 0,12637728
+3,4476552 223711,1346 -0,18366091 0,092130795 0 3,6313162 1,018824027 62,14198183 1,081916807 3,7576552 0,12633909
+3,4477127 223743,1346 -0,18400466 0,092135884 0 3,6317172 1,019643018 62,15087072 1,082786515 3,7577127 0,12599534
+3,447789 223775,1346 -0,18398556 0,092135884 0 3,6317744 1,02046201 62,15975961 1,083656226 3,757789 0,12601444
+3,4479227 223807,1346 -0,18404286 0,092138432 0 3,6319656 1,021281005 62,1686485 1,084525939 3,7579227 0,12595714
+3,4479036 223839,1346 -0,18415745 0,092137799 0 3,632061 1,022099998 62,1775374 1,085395649 3,7579036 0,12584255
+3,448209 223871,1346 -0,18440571 0,092139073 0 3,6326149 1,02291899 62,18642629 1,086265359 3,758209 0,12559429
+3,4481518 223903,1346 -0,18438661 0,092140347 0 3,6325383 1,023737982 62,19531518 1,087135068 3,7581518 0,12561339
+3,4481328 223935,1346 -0,18467307 0,092133977 0 3,6328058 1,024556972 62,20420407 1,088004777 3,7581328 0,12532693
+3,4482856 223967,1346 -0,18486404 0,092135251 0 3,6331496 1,025375962 62,21309296 1,088874484 3,7582856 0,12513596
+3,4484384 223999,1346 -0,18486404 0,09213461 0 3,6333025 1,026194952 62,22198185 1,089744192 3,7584384 0,12513596
+3,4484384 224031,1347 -0,18492134 0,092142262 0 3,6333597 1,027013941 62,23087074 1,090613898 3,7584384 0,12507866
+3,4485528 224063,1347 -0,18507412 0,092144802 0 3,6336269 1,027832933 62,23975963 1,091483608 3,7585528 0,12492588
+3,4486866 224095,1347 -0,18516961 0,092137799 0 3,6338563 1,028651925 62,24864852 1,092353318 3,7586866 0,12483039
+3,4487629 224127,1347 -0,18530329 0,092132062 0 3,6340661 1,029470912 62,25753741 1,093223022 3,7587629 0,12469671
+3,4489539 224159,1347 -0,18541788 0,092135251 0 3,6343718 1,030289898 62,2664263 1,094092726 3,7589539 0,12458212
+3,4489732 224191,1347 -0,18560885 0,092139706 0 3,634582 1,031108886 62,27531519 1,094962431 3,7589732 0,12439115
+3,4489923 224223,1347 -0,1858571 0,092139073 0 3,6348493 1,031927873 62,28420408 1,095832136 3,7589923 0,1241429
+3,4490685 224255,1347 -0,18572342 0,09214098 0 3,6347919 1,032746861 62,29309297 1,096701841 3,7590685 0,12427658
+3,4490495 224287,1347 -0,1859144 0,092139073 0 3,634964 1,033565848 62,30198186 1,097571545 3,7590495 0,1240856
+3,4492977 224319,1347 -0,18595259 0,092136525 0 3,6352503 1,034384836 62,31087075 1,098441251 3,7592977 0,12404741
+3,4493358 224351,1347 -0,18616267 0,092137158 0 3,6354985 1,035203823 62,31975964 1,099310956 3,7593358 0,12383733
+3,4492786 224383,1347 -0,18631545 0,092139706 0 3,6355941 1,036022813 62,32864853 1,100180663 3,7592786 0,12368455
+3,4495077 224415,1347 -0,18631545 0,092142262 0 3,6358232 1,036841804 62,33753742 1,101050372 3,7595077 0,12368455
+3,4495842 224447,1347 -0,18660191 0,092132062 0 3,6361861 1,03766079 62,34642631 1,101920076 3,7595842 0,12339809
+3,4496033 224479,1347 -0,18654461 0,092132702 0 3,636148 1,03847978 62,3553152 1,102789783 3,7596033 0,12345539
+3,4496987 224511,1347 -0,18656372 0,092137158 0 3,6362624 1,039298773 62,36420409 1,103659493 3,7596987 0,12343628
+3,4497943 224543,1347 -0,18692656 0,092139073 0 3,6367209 1,040117765 62,37309298 1,104529203 3,7597943 0,12307344
+3,449928 224575,1347 -0,18698385 0,092129521 0 3,6369119 1,040936757 62,38198187 1,105398913 3,759928 0,12301615
+3,449928 224607,1347 -0,18706024 0,092133977 0 3,6369882 1,041755749 62,39087076 1,106268624 3,759928 0,12293976
+3,4499662 224639,1347 -0,18723212 0,09213461 0 3,6371982 1,04257474 62,39975965 1,107138332 3,7599662 0,12276788
+3,450119 224671,1348 -0,18713664 0,092139073 0 3,6372557 1,043393731 62,40864854 1,108008041 3,760119 0,12286336
+3,4501572 224703,1348 -0,18740399 0,092133336 0 3,6375611 1,044212723 62,41753743 1,10887775 3,7601572 0,12259601
+3,4502525 224735,1348 -0,18763316 0,09214098 0 3,6378856 1,045031713 62,42642632 1,109747458 3,7602525 0,12236684
+3,4503291 224767,1348 -0,18772864 0,092132702 0 3,6380577 1,045850702 62,43531521 1,110617164 3,7603291 0,12227136
+3,4503672 224799,1348 -0,18776685 0,092132702 0 3,638134 1,04666969 62,4442041 1,11148687 3,7603672 0,12223315
+3,4505391 224831,1348 -0,18786234 0,092133336 0 3,6384015 1,047488678 62,45309299 1,112356575 3,7605391 0,12213766
+3,4505773 224863,1348 -0,18797691 0,092137799 0 3,6385541 1,048307667 62,46198188 1,113226282 3,7605773 0,12202309
+3,4508829 224895,1348 -0,18805331 0,092143528 0 3,6389363 1,049126655 62,47087077 1,114095987 3,7608829 0,12194669
+3,4507682 224927,1348 -0,18837796 0,092138432 0 3,6391461 1,049945645 62,47975966 1,114965695 3,7607682 0,12162204
+3,450902 224959,1348 -0,18847345 0,092137158 0 3,6393754 1,050764635 62,48864856 1,115835402 3,760902 0,12152655
+3,4508638 224991,1348 -0,18860713 0,092137799 0 3,6394711 1,051583624 62,49753745 1,11670511 3,7608638 0,12139287
+3,4509783 225023,1348 -0,18854983 0,092127606 0 3,639528 1,052402616 62,50642634 1,117574819 3,7609783 0,12145017
+3,4509401 225055,1348 -0,18875991 0,092142887 0 3,6396999 1,053221606 62,51531523 1,118444527 3,7609401 0,12124009
+3,4510357 225087,1348 -0,18896998 0,092137799 0 3,6400058 1,054040599 62,52420412 1,119314237 3,7610357 0,12103002
+3,4512649 225119,1348 -0,18891269 0,09214098 0 3,6401775 1,05485959 62,53309301 1,120183947 3,7612649 0,12108731
+3,4513984 225151,1348 -0,18902726 0,092138432 0 3,6404257 1,055678583 62,5419819 1,121053658 3,7613984 0,12097274
+3,4513602 225183,1348 -0,18918005 0,092137799 0 3,6405404 1,056497576 62,55087079 1,121923368 3,7613602 0,12081995
+3,4515131 225215,1348 -0,18940921 0,09212824 0 3,6409223 1,057316568 62,55975968 1,122793078 3,7615131 0,12059079
+3,4515131 225247,1348 -0,1895047 0,092133977 0 3,6410177 1,058135561 62,56864857 1,123662789 3,7615131 0,1204953
+3,4515703 225279,1348 -0,18948561 0,092137799 0 3,6410558 1,058954552 62,57753746 1,124532498 3,7615703 0,12051439
+3,4517612 225311,1349 -0,1895429 0,092120595 0 3,6413043 1,059773541 62,58642635 1,125402204 3,7617612 0,1204571
+3,4520288 225343,1349 -0,18979116 0,092140347 0 3,64182 1,060592533 62,59531524 1,126271914 3,7620288 0,12020884
+3,4518569 225375,1349 -0,19002034 0,092137799 0 3,6418772 1,061411522 62,60420413 1,12714162 3,7618569 0,11997966
+3,452105 225407,1349 -0,18998213 0,092131428 0 3,6420872 1,06223051 62,61309302 1,128011326 3,762105 0,12001787
+3,4520478 225439,1349 -0,19007762 0,09213461 0 3,6421254 1,063049501 62,62198191 1,128881034 3,7620478 0,11992238
+3,4519715 225471,1349 -0,19011582 0,092135884 0 3,6420875 1,063868491 62,6308708 1,129750742 3,7619715 0,11988418
+3,4521241 225503,1349 -0,19036408 0,092133977 0 3,6424882 1,064687479 62,63975969 1,130620448 3,7621241 0,11963592
+3,452296 225535,1349 -0,19055505 0,092133336 0 3,6428511 1,065506467 62,64864858 1,131490153 3,762296 0,11944495
+3,4522388 225567,1349 -0,19074602 0,092136525 0 3,6429849 1,066325453 62,65753747 1,132359856 3,7622388 0,11925398
+3,4523916 225599,1349 -0,19072694 0,092130795 0 3,6431186 1,06714444 62,66642636 1,133229561 3,7623916 0,11927306
+3,4526207 225631,1349 -0,19076513 0,092131428 0 3,6433859 1,067963429 62,67531525 1,134099268 3,7626207 0,11923487
+3,4527545 225663,1349 -0,1909561 0,092132702 0 3,6437106 1,068782417 62,68420414 1,134968974 3,7627545 0,1190439
+3,4525635 225695,1349 -0,19099429 0,092144169 0 3,6435578 1,069601406 62,69309303 1,13583868 3,7625635 0,11900571
+3,452697 225727,1349 -0,19112797 0,092130147 0 3,6438251 1,070420394 62,70198192 1,136708385 3,762697 0,11887203
+3,452678 225759,1349 -0,19131896 0,092135251 0 3,643997 1,071239381 62,71087081 1,13757809 3,762678 0,11868104
+3,452888 225791,1349 -0,19135715 0,092146084 0 3,6442451 1,072058368 62,7197597 1,138447794 3,762888 0,11864285
+3,4530599 225823,1349 -0,19147173 0,09214098 0 3,6445317 1,072877354 62,72864859 1,139317498 3,7630599 0,11852827
+3,4531937 225855,1349 -0,19158632 0,092132702 0 3,6447799 1,073696339 62,73753748 1,1401872 3,7631937 0,11841368
+3,4531555 225887,1349 -0,19170091 0,092139706 0 3,6448565 1,074515328 62,74642637 1,141056907 3,7631555 0,11829909
+3,4532127 225919,1349 -0,19179639 0,092132702 0 3,645009 1,075334318 62,75531526 1,141926614 3,7632127 0,11820361
+3,4533274 225951,135 -0,1916818 0,092133977 0 3,6450093 1,076153306 62,76420415 1,14279632 3,7633274 0,1183182
+3,4533846 225983,135 -0,19187278 0,092133336 0 3,6452575 1,076972294 62,77309304 1,143666026 3,7633846 0,11812722
+3,4534228 226015,135 -0,19206375 0,092135884 0 3,6454866 1,077791284 62,78198193 1,144535732 3,7634228 0,11793625
+3,4534612 226047,135 -0,19210194 0,092137158 0 3,6455631 1,078610274 62,79087082 1,145405441 3,7634612 0,11789806
+3,4536138 226079,135 -0,19221653 0,092137158 0 3,6458304 1,079429265 62,79975971 1,146275149 3,7636138 0,11778347
+3,4536328 226111,135 -0,19231202 0,092137158 0 3,6459448 1,080248257 62,80864861 1,147144859 3,7636328 0,11768798
+3,4537666 226143,135 -0,19242659 0,092140347 0 3,6461933 1,081067248 62,8175375 1,148014568 3,7637666 0,11757341
+3,4538622 226175,135 -0,19242659 0,092137799 0 3,6462889 1,081886242 62,82642639 1,148884279 3,7638622 0,11757341
+3,4539385 226207,135 -0,19252208 0,09213461 0 3,6464605 1,082705236 62,83531528 1,149753992 3,7639385 0,11747792
+3,4540722 226239,135 -0,19275126 0,092127606 0 3,6468234 1,083524229 62,84420417 1,150623702 3,7640722 0,11724874
+3,4540341 226271,135 -0,19271305 0,092135884 0 3,6467471 1,084343224 62,85309306 1,151493416 3,7640341 0,11728695
+3,4542251 226303,135 -0,19261757 0,092137799 0 3,6468427 1,085162219 62,86198195 1,152363129 3,7642251 0,11738243
+3,4541295 226335,135 -0,19296132 0,092142262 0 3,6470907 1,085981211 62,87087084 1,153232838 3,7641295 0,11703868
+3,4543204 226367,135 -0,19299951 0,092136525 0 3,64732 1,086800204 62,87975973 1,154102549 3,7643204 0,11700049
+3,4543586 226399,135 -0,19307591 0,092137799 0 3,6474345 1,087619199 62,88864862 1,154972261 3,7643586 0,11692409
+3,4544733 226431,135 -0,19288494 0,092130795 0 3,6473582 1,088438192 62,89753751 1,155841973 3,7644733 0,11711506
+3,4546452 226463,135 -0,19313321 0,092135884 0 3,6477783 1,089257186 62,9064264 1,156711684 3,7646452 0,11686679
+3,4546642 226495,135 -0,19334327 0,092137799 0 3,6480074 1,090076181 62,91531529 1,157581397 3,7646642 0,11665673
+3,4546452 226527,135 -0,19320959 0,09214098 0 3,6478548 1,090895177 62,92420418 1,158451112 3,7646452 0,11679041
+3,454798 226559,135 -0,19336237 0,092143528 0 3,6481605 1,09171417 62,93309307 1,159320823 3,764798 0,11663763
+3,4548171 226591,1351 -0,19351515 0,092132702 0 3,6483321 1,092533164 62,94198196 1,160190534 3,7648171 0,11648485
+3,4547789 226623,1351 -0,19347696 0,092137799 0 3,6482558 1,093352156 62,95087085 1,161060244 3,7647789 0,11652304
+3,4551034 226655,1351 -0,19355334 0,092132062 0 3,6486568 1,094171147 62,95975974 1,161929953 3,7651034 0,11644666
+3,4550843 226687,1351 -0,19364883 0,092132062 0 3,6487331 1,094990137 62,96864863 1,162799661 3,7650843 0,11635117
+3,4550843 226719,1351 -0,19372521 0,092135884 0 3,6488094 1,095809126 62,97753752 1,163669367 3,7650843 0,11627479
+3,4552944 226751,1351 -0,19362973 0,092138432 0 3,6489241 1,096628116 62,98642641 1,164539075 3,7652944 0,11637027
+3,45539 226783,1351 -0,19368702 0,092132062 0 3,6490769 1,097447105 62,9953153 1,165408781 3,76539 0,11631298
+3,4555237 226815,1351 -0,1938971 0,092137158 0 3,6494207 1,098266095 63,00420419 1,166278488 3,7655237 0,1161029
+3,4555619 226847,1351 -0,19385891 0,092142887 0 3,6494207 1,099085085 63,01309308 1,167148196 3,7655619 0,11614109
+3,4557528 226879,1351 -0,19403078 0,092138432 0 3,6497836 1,099904075 63,02198197 1,168017904 3,7657528 0,11596922
+3,4556572 226911,1351 -0,19401167 0,092144169 0 3,6496689 1,100723064 63,03087086 1,16888761 3,7656572 0,11598833
+3,4556382 226943,1351 -0,19397348 0,092130795 0 3,6496117 1,101542057 63,03975975 1,169757321 3,7656382 0,11602652
+3,4557338 226975,1351 -0,19397348 0,092133336 0 3,6497073 1,102361051 63,04864864 1,170627033 3,7657338 0,11602652
+3,4559438 227007,1351 -0,19397348 0,092135884 0 3,6499174 1,103180046 63,05753753 1,171496746 3,7659438 0,11602652
+3,4560966 227039,1351 -0,19412626 0,092138432 0 3,650223 1,103999042 63,06642642 1,172366461 3,7660966 0,11587374
+3,4561539 227071,1351 -0,19410716 0,092135884 0 3,6502609 1,104818037 63,07531531 1,173236173 3,7661539 0,11589284
+3,4562876 227103,1351 -0,19422175 0,092133336 0 3,6505094 1,105637029 63,0842042 1,174105883 3,7662876 0,11577825
+3,4563067 227135,1351 -0,19418356 0,092149258 0 3,6504903 1,10645602 63,09309309 1,174975592 3,7663067 0,11581644
+3,4562685 227167,1351 -0,19427904 0,09214098 0 3,6505475 1,107275012 63,10198198 1,175845302 3,7662685 0,11572096
+3,4565549 227199,1351 -0,19437453 0,092133977 0 3,6509295 1,108094003 63,11087087 1,17671501 3,7665549 0,11562547
+3,4565167 227231,1352 -0,19447002 0,092139073 0 3,6509867 1,108912992 63,11975976 1,177584717 3,7665167 0,11552998
+3,4567649 227263,1352 -0,19435543 0,092137158 0 3,6511204 1,109731983 63,12864866 1,178454426 3,7667649 0,11564457
+3,4566886 227295,1352 -0,19447002 0,092138432 0 3,6511586 1,110550972 63,13753755 1,179324133 3,7666886 0,11552998
+3,4569178 227327,1352 -0,19464189 0,092139706 0 3,6515596 1,111369966 63,14642644 1,180193844 3,7669178 0,11535811
+3,4568415 227359,1352 -0,19448911 0,092137158 0 3,6513305 1,112188957 63,15531533 1,181063553 3,7668415 0,11551089
+3,456975 227391,1352 -0,19452731 0,092139073 0 3,6515024 1,113007948 63,16420422 1,181933262 3,766975 0,11547269
+3,457166 227423,1352 -0,1945464 0,092135251 0 3,6517124 1,113826938 63,17309311 1,182802969 3,767166 0,1154536
+3,4572043 227455,1352 -0,19464189 0,092138432 0 3,6518462 1,114645928 63,181982 1,183672677 3,7672043 0,11535811
+3,4571278 227487,1352 -0,19466099 0,092136525 0 3,6517887 1,115464919 63,19087089 1,184542386 3,7671278 0,11533901
+3,4573188 227519,1352 -0,19466099 0,092144169 0 3,6519797 1,116283911 63,19975978 1,185412095 3,7673188 0,11533901
+3,457567 227551,1352 -0,19473737 0,092133336 0 3,6523044 1,117102903 63,20864867 1,186281805 3,767567 0,11526263
+3,457376 227583,1352 -0,19471829 0,092130147 0 3,6520944 1,117921894 63,21753756 1,187151514 3,767376 0,11528171
+3,4576054 227615,1352 -0,19475648 0,092130795 0 3,6523619 1,118740884 63,22642645 1,188021221 3,7676054 0,11524352
+3,4576054 227647,1352 -0,19469918 0,092137158 0 3,6523046 1,119559874 63,23531534 1,188890929 3,7676054 0,11530082
+3,4576435 227679,1352 -0,19504294 0,09213461 0 3,6526864 1,120378867 63,24420423 1,18976064 3,7676435 0,11495706
+3,4578154 227711,1352 -0,19496654 0,092139706 0 3,652782 1,121197861 63,25309312 1,190630351 3,7678154 0,11503346
+3,4577007 227743,1352 -0,19500475 0,092135884 0 3,6527054 1,122016851 63,26198201 1,191500059 3,7677007 0,11499525
+3,4580064 227775,1352 -0,19490926 0,092135884 0 3,6529157 1,122835843 63,2708709 1,192369769 3,7680064 0,11509074
+3,4579298 227807,1352 -0,19506203 0,092139706 0 3,6529918 1,123654835 63,27975979 1,193239479 3,7679298 0,11493797
+3,4582927 227839,1352 -0,19489016 0,092137799 0 3,653183 1,124473828 63,28864868 1,19410919 3,7682927 0,11510984
+3,4583118 227871,1353 -0,19494745 0,092133977 0 3,6532593 1,125292821 63,29753757 1,1949789 3,7683118 0,11505255
+3,4583118 227903,1353 -0,19519572 0,092139706 0 3,6535075 1,126111811 63,30642646 1,195848609 3,7683118 0,11480428
+3,4584265 227935,1353 -0,19515751 0,092137799 0 3,653584 1,126930802 63,31531535 1,196718317 3,7684265 0,11484249
+3,4586174 227967,1353 -0,19531029 0,092133336 0 3,6539278 1,127749792 63,32420424 1,197588024 3,7686174 0,11468971
+3,4586747 227999,1353 -0,19519572 0,092139706 0 3,6538703 1,128568781 63,33309313 1,198457731 3,7686747 0,11480428
+3,4587893 228031,1353 -0,19517662 0,092137158 0 3,653966 1,12938777 63,34198202 1,199327438 3,7687893 0,11482338
+3,458885 228063,1353 -0,1952721 0,092139073 0 3,6541572 1,130206762 63,35087091 1,200197147 3,768885 0,1147279
+3,4588275 228095,1353 -0,19529121 0,092139706 0 3,6541188 1,131025755 63,3597598 1,201066859 3,7688275 0,11470879
+3,4590759 228127,1353 -0,19523391 0,09213461 0 3,6543097 1,131844746 63,36864869 1,201936567 3,7690759 0,11476609
+3,4591141 228159,1353 -0,19523391 0,092135251 0 3,6543479 1,132663735 63,37753758 1,202806273 3,7691141 0,11476609
+3,4594004 228191,1353 -0,19519572 0,092140347 0 3,6545961 1,133482723 63,38642647 1,203675979 3,7694004 0,11480428
+3,459305 228223,1353 -0,19523391 0,092132702 0 3,6545389 1,134301713 63,39531536 1,204545687 3,769305 0,11476609
+3,4592476 228255,1353 -0,19534849 0,092133977 0 3,6545961 1,135120705 63,40420425 1,205415396 3,7692476 0,11465151
+3,4594004 228287,1353 -0,19536759 0,092133977 0 3,654768 1,135939695 63,41309314 1,206285104 3,7694004 0,11463241
+3,4595342 228319,1353 -0,195253 0,092144169 0 3,6547871 1,136758687 63,42198203 1,207154814 3,7695342 0,114747
+3,4595151 228351,1353 -0,19552037 0,09214098 0 3,6550355 1,137577678 63,43087092 1,208024523 3,7695151 0,11447963
+3,4597251 228383,1353 -0,1953294 0,092138432 0 3,6550546 1,138396668 63,43975981 1,20889423 3,7697251 0,1146706
+3,4597061 228415,1353 -0,19557767 0,09212888 0 3,6552837 1,139215657 63,44864871 1,209763937 3,7697061 0,11442233
+3,4598398 228447,1353 -0,19538669 0,092141613 0 3,6552265 1,140034646 63,4575376 1,210633644 3,7698398 0,11461331
+3,4599733 228479,1353 -0,19552037 0,092139706 0 3,6554937 1,140853637 63,46642649 1,211503352 3,7699733 0,11447963
+3,4600308 228511,1354 -0,19536759 0,092135884 0 3,6553984 1,141672629 63,47531538 1,212373062 3,7700308 0,11463241
+3,4601834 228543,1354 -0,19550127 0,092133336 0 3,6556847 1,142491618 63,48420427 1,213242768 3,7701834 0,11449873
+3,4601834 228575,1354 -0,19552037 0,092132702 0 3,6557038 1,143310607 63,49309316 1,214112475 3,7701834 0,11447963
+3,4603553 228607,1354 -0,19542488 0,092140347 0 3,6557801 1,144129597 63,50198205 1,214982183 3,7703553 0,11457512
+3,460279 228639,1354 -0,19563495 0,092135251 0 3,6559138 1,14494859 63,51087094 1,215851893 3,770279 0,11436505
+3,460489 228671,1354 -0,19567315 0,09213461 0 3,6561623 1,145767584 63,51975983 1,216721605 3,770489 0,11432685
+3,4605272 228703,1354 -0,19565405 0,092138432 0 3,6561813 1,146586575 63,52864872 1,217591314 3,7705272 0,11434595
+3,4606609 228735,1354 -0,19580683 0,092138432 0 3,6564677 1,147405566 63,53753761 1,218461023 3,7706609 0,11419317
+3,4607182 228767,1354 -0,19565405 0,092135884 0 3,6563723 1,148224557 63,5464265 1,219330731 3,7707182 0,11434595
+3,4609282 228799,1354 -0,19567315 0,092137799 0 3,6566014 1,149043546 63,55531539 1,220200438 3,7709282 0,11432685
+3,4610238 228831,1354 -0,19563495 0,092139073 0 3,6566586 1,149862535 63,56420428 1,221070145 3,7710238 0,11436505
+3,4610047 228863,1354 -0,19565405 0,092144169 0 3,6566589 1,150681524 63,57309317 1,221939851 3,7710047 0,11434595
+3,4611385 228895,1354 -0,19573045 0,092140347 0 3,6568689 1,151500512 63,58198206 1,222809557 3,7711385 0,11426955
+3,4611192 228927,1354 -0,19569224 0,092139706 0 3,6568115 1,152319499 63,59087095 1,223679261 3,7711192 0,11430776
+3,4611192 228959,1354 -0,19580683 0,092135884 0 3,6569259 1,153138484 63,59975984 1,224548964 3,7711192 0,11419317
+3,4614058 228991,1354 -0,19561586 0,092140347 0 3,6570215 1,153957473 63,60864873 1,22541867 3,7714058 0,11438414
+3,4613101 229023,1354 -0,19565405 0,092137799 0 3,6569643 1,154776461 63,61753762 1,226288376 3,7713101 0,11434595
+3,4615777 229055,1354 -0,19588321 0,092141613 0 3,6574609 1,155595449 63,62642651 1,227158081 3,7715777 0,11411679
+3,4616158 229087,1354 -0,19592142 0,092136525 0 3,6575372 1,156414437 63,6353154 1,228027786 3,7716158 0,11407858
+3,461673 229119,1354 -0,19588321 0,092125699 0 3,6575563 1,157233428 63,64420429 1,228897496 3,771673 0,11411679
+3,4617686 229151,1355 -0,19590232 0,092139706 0 3,657671 1,158052417 63,65309318 1,229767202 3,7717686 0,11409768
+3,4619024 229183,1355 -0,19584502 0,092141613 0 3,6577475 1,158871405 63,66198207 1,230636908 3,7719024 0,11415498
+3,462055 229215,1355 -0,19594051 0,092135251 0 3,6579955 1,159690392 63,67087096 1,231506612 3,772055 0,11405949
+3,4619787 229247,1355 -0,19601691 0,092130147 0 3,6579957 1,160509381 63,67975985 1,232376319 3,7719787 0,11398309
+3,4622459 229279,1355 -0,19601691 0,092137158 0 3,6582627 1,161328367 63,68864874 1,233246022 3,7722459 0,11398309
+3,4621887 229311,1355 -0,1959978 0,092139073 0 3,6581864 1,162147355 63,69753763 1,234115727 3,7721887 0,1140022
+3,4623797 229343,1355 -0,19609329 0,092132702 0 3,658473 1,162966343 63,70642652 1,234985434 3,7723797 0,11390671
+3,4624562 229375,1355 -0,1960551 0,092133977 0 3,6585114 1,163785332 63,71531541 1,235855139 3,7724562 0,1139449
+3,4625897 229407,1355 -0,19601691 0,092140347 0 3,6586065 1,164604321 63,7242043 1,236724846 3,7725897 0,11398309
+3,4626663 229439,1355 -0,19601691 0,09214098 0 3,6586833 1,16542331 63,73309319 1,237594553 3,7726663 0,11398309
+3,4625325 229471,1355 -0,19616967 0,092136525 0 3,6587021 1,166242296 63,74198208 1,238464256 3,7725325 0,11383033
+3,4627426 229503,1355 -0,1959787 0,092135251 0 3,6587212 1,167061285 63,75087097 1,239333963 3,7727426 0,1140213
+3,4627616 229535,1355 -0,1960551 0,092139706 0 3,6588168 1,167880273 63,75975987 1,240203669 3,7727616 0,1139449
+3,4628954 229567,1355 -0,19620788 0,092135251 0 3,6591034 1,16869926 63,76864876 1,241073373 3,7728954 0,11379212
+3,4629717 229599,1355 -0,19628426 0,09212888 0 3,659256 1,169518247 63,77753765 1,241943078 3,7729717 0,11371574
+3,4632392 229631,1355 -0,19620788 0,09212888 0 3,6594472 1,170337237 63,78642654 1,242812785 3,7732392 0,11379212
+3,4633155 229663,1355 -0,19636065 0,092136525 0 3,6596761 1,171156226 63,79531543 1,243682491 3,7733155 0,11363935
+3,4632583 229695,1355 -0,19634156 0,092132702 0 3,6595998 1,171975215 63,80420432 1,244552198 3,7732583 0,11365844
+3,463392 229727,1355 -0,19630337 0,092135251 0 3,6596954 1,172794207 63,81309321 1,245421908 3,773392 0,11369663
+3,4633536 229759,1355 -0,19634156 0,092144802 0 3,6596951 1,173613196 63,8219821 1,246291614 3,7733536 0,11365844
+3,463583 229791,1356 -0,19637975 0,092130795 0 3,6599627 1,174432184 63,83087099 1,24716132 3,773583 0,11362025
+3,463583 229823,1356 -0,19643705 0,09212888 0 3,6600201 1,175251174 63,83975988 1,248031028 3,773583 0,11356295
+3,463774 229855,1356 -0,19639885 0,092140347 0 3,6601729 1,176070165 63,84864877 1,248900737 3,773774 0,11360115
+3,4638884 229887,1356 -0,19651343 0,09213461 0 3,6604018 1,176889154 63,85753766 1,249770443 3,7738884 0,11348657
+3,4638693 229919,1356 -0,19632246 0,092133336 0 3,6601918 1,177708144 63,86642655 1,250640151 3,7738693 0,11367754
+3,4639075 229951,1356 -0,19641794 0,092145436 0 3,6603255 1,178527133 63,87531544 1,251509858 3,7739075 0,11358206
+3,4641175 229983,1356 -0,19636065 0,092136525 0 3,6604781 1,179346122 63,88420433 1,252379564 3,7741175 0,11363935
+3,464175 230015,1356 -0,19634156 0,09214098 0 3,6605165 1,180165111 63,89309322 1,25324927 3,774175 0,11365844
+3,4642322 230047,1356 -0,19666621 0,092144802 0 3,6608984 1,180984101 63,90198211 1,254118979 3,7742322 0,11333379
+3,4642513 230079,1356 -0,19658983 0,092133977 0 3,660841 1,181803093 63,910871 1,254988688 3,7742513 0,11341017
+3,4642894 230111,1356 -0,19660892 0,092142262 0 3,6608984 1,182622084 63,91975989 1,255858396 3,7742894 0,11339108
+3,4644041 230143,1356 -0,19653253 0,09213461 0 3,6609366 1,183441074 63,92864878 1,256728105 3,7744041 0,11346747
+3,4645569 230175,1356 -0,19664711 0,092137158 0 3,6612041 1,184260064 63,93753767 1,257597812 3,7745569 0,11335289
+3,4646523 230207,1356 -0,1967044 0,092133977 0 3,6613567 1,185079052 63,94642656 1,258467517 3,7746523 0,1132956
+3,4647479 230239,1356 -0,19664711 0,092133336 0 3,6613951 1,18589804 63,95531545 1,259337223 3,7747479 0,11335289
+3,4648623 230271,1356 -0,19660892 0,092142887 0 3,6614714 1,186717029 63,96420434 1,260206929 3,7748623 0,11339108
+3,4650726 230303,1356 -0,19674259 0,09213461 0 3,6618152 1,187536018 63,97309323 1,261076636 3,7750726 0,11325741
+3,465168 230335,1356 -0,19666621 0,092135251 0 3,6618342 1,188355006 63,98198212 1,261946342 3,775168 0,11333379
+3,4652827 230367,1356 -0,19668531 0,092142262 0 3,661968 1,189173996 63,99087101 1,262816049 3,7752827 0,11331469
+3,4652827 230399,1356 -0,19681899 0,09213461 0 3,6621017 1,189992985 63,9997599 1,263685756 3,7752827 0,11318101
+3,465359 230431,1357 -0,19674259 0,092141613 0 3,6621015 1,190811974 64,00864879 1,264555462 3,775359 0,11325741
+3,4654546 230463,1357 -0,1967617 0,092133977 0 3,6622162 1,191630963 64,01753768 1,265425169 3,7754546 0,1132383
+3,4655118 230495,1357 -0,19674259 0,092142262 0 3,6622543 1,192449951 64,02642657 1,266294875 3,7755118 0,11325741
+3,4654737 230527,1357 -0,19679989 0,092131428 0 3,6622736 1,193268939 64,03531546 1,26716458 3,7754737 0,11320011
+3,4657981 230559,1357 -0,19683808 0,092132062 0 3,6626363 1,194087931 64,04420435 1,268034289 3,7757981 0,11316192
+3,4658556 230591,1357 -0,19679989 0,092137799 0 3,6626556 1,19490692 64,05309324 1,268903996 3,7758556 0,11320011
+3,4658365 230623,1357 -0,19687629 0,09213461 0 3,6627128 1,195725908 64,06198213 1,269773701 3,7758365 0,11312371
+3,4660466 230655,1357 -0,19685718 0,092135251 0 3,6629038 1,196544896 64,07087102 1,270643407 3,7760466 0,11314282
+3,4659319 230687,1357 -0,19689538 0,092139706 0 3,6628273 1,197363884 64,07975992 1,271513113 3,7759319 0,11310462
+3,466161 230719,1357 -0,19681899 0,092137158 0 3,6629801 1,198182873 64,08864881 1,272382819 3,776161 0,11318101
+3,4662566 230751,1357 -0,19687629 0,092126973 0 3,6631329 1,199001862 64,0975377 1,273252526 3,7762566 0,11312371
+3,4662948 230783,1357 -0,19699086 0,092135884 0 3,6632857 1,199820852 64,10642659 1,274122234 3,7762948 0,11300914
+3,4663904 230815,1357 -0,1967808 0,092136525 0 3,6631713 1,20063984 64,11531548 1,27499194 3,7763904 0,1132192
+3,4664476 230847,1357 -0,19710545 0,09213461 0 3,663553 1,201458828 64,12420437 1,275861645 3,7764476 0,11289455
+3,4664476 230879,1357 -0,19706726 0,092135251 0 3,6635149 1,202277819 64,13309326 1,276731353 3,7764476 0,11293274
+3,4666767 230911,1357 -0,19718184 0,092138432 0 3,6638587 1,203096809 64,14198215 1,277601061 3,7766767 0,11281816
+3,4668105 230943,1357 -0,19693357 0,092139706 0 3,663744 1,203915798 64,15087104 1,278470767 3,7768105 0,11306643
+3,4667914 230975,1357 -0,19710545 0,092136525 0 3,6638968 1,204734787 64,15975993 1,279340475 3,7767914 0,11289455
+3,4668295 231007,1357 -0,19712454 0,092142887 0 3,663954 1,205553775 64,16864882 1,28021018 3,7768295 0,11287546
+3,4671352 231039,1357 -0,19716275 0,09213461 0 3,6642981 1,206372762 64,17753771 1,281079885 3,7771352 0,11283725
+3,4673262 231071,1358 -0,19720094 0,092130795 0 3,6645272 1,207191751 64,1864266 1,281949591 3,7773262 0,11279906
+3,4672496 231103,1358 -0,19720094 0,092138432 0 3,6644506 1,208010739 64,19531549 1,282819296 3,7772496 0,11279906
+3,4673452 231135,1358 -0,19735372 0,092135884 0 3,6646991 1,208829727 64,20420438 1,283689001 3,7773452 0,11264628
+3,4674215 231167,1358 -0,19727732 0,09213461 0 3,6646988 1,209648716 64,21309327 1,284558708 3,7774215 0,11272268
+3,4673643 231199,1358 -0,19712454 0,092139706 0 3,6644888 1,210467702 64,22198216 1,285428412 3,7773643 0,11287546
+3,467689 231231,1358 -0,19739191 0,092137158 0 3,665081 1,211286689 64,23087105 1,286298116 3,777689 0,11260809
+3,4675362 231263,1358 -0,19731551 0,092135251 0 3,6648517 1,212105676 64,23975994 1,287167821 3,7775362 0,11268449
+3,4678035 231295,1358 -0,19722003 0,092137799 0 3,6650236 1,212924665 64,24864883 1,288037527 3,7778035 0,11277997
+3,4679563 231327,1358 -0,19737281 0,092145436 0 3,6653292 1,213743656 64,25753772 1,288907236 3,7779563 0,11262719
+3,4679182 231359,1358 -0,19731551 0,09212824 0 3,6652336 1,214562644 64,26642661 1,289776941 3,7779182 0,11268449
+3,4678226 231391,1358 -0,19733462 0,092132702 0 3,6651571 1,215381632 64,2753155 1,290646648 3,7778226 0,11266538
+3,4679945 231423,1358 -0,19727732 0,092135884 0 3,6652718 1,216200621 64,28420439 1,291516354 3,7779945 0,11272268
+3,4683383 231455,1358 -0,19733462 0,09213461 0 3,6656728 1,217019609 64,29309328 1,29238606 3,7783383 0,11266538
+3,4682236 231487,1358 -0,1974301 0,092131428 0 3,6656537 1,217838596 64,30198217 1,293255764 3,7782236 0,1125699
+3,4684339 231519,1358 -0,19739191 0,092136525 0 3,6658258 1,218657584 64,31087106 1,294125469 3,7784339 0,11260809
+3,4684529 231551,1358 -0,19750649 0,092133977 0 3,6659594 1,219476572 64,31975995 1,294995174 3,7784529 0,11249351
+3,4685483 231583,1358 -0,19744921 0,092139073 0 3,6659975 1,220295559 64,32864884 1,29586488 3,7785483 0,11255079
+3,4686248 231615,1358 -0,19754469 0,092141613 0 3,6661696 1,221114547 64,33753773 1,296734585 3,7786248 0,11245531
+3,468873 231647,1358 -0,19756378 0,09213461 0 3,6664369 1,221933535 64,34642662 1,29760429 3,778873 0,11243622
+3,468873 231679,1358 -0,1974874 0,092142262 0 3,6663604 1,222752522 64,35531551 1,298473995 3,778873 0,1125126
+3,4690068 231711,1359 -0,19760197 0,092137158 0 3,6666088 1,223571507 64,3642044 1,299343697 3,7790068 0,11239803
+3,4691403 231743,1359 -0,19760197 0,092135251 0 3,6667423 1,224390492 64,37309329 1,3002134 3,7791403 0,11239803
+3,4690259 231775,1359 -0,19764018 0,092135884 0 3,666666 1,225209478 64,38198218 1,301083103 3,7790259 0,11235982
+3,4691978 231807,1359 -0,19756378 0,092142887 0 3,6667616 1,226028467 64,39087107 1,30195281 3,7791978 0,11243622
+3,4692168 231839,1359 -0,19767837 0,092138432 0 3,6668952 1,226847459 64,39975997 1,302822519 3,7792168 0,11232163
+3,4693122 231871,1359 -0,19765927 0,092125066 0 3,6669714 1,227666449 64,40864886 1,303692227 3,7793122 0,11234073
+3,4695032 231903,1359 -0,19760197 0,092135884 0 3,6671052 1,228485441 64,41753775 1,304561937 3,7795032 0,11239803
+3,4697132 231935,1359 -0,19765927 0,092132062 0 3,6673725 1,229304432 64,42642664 1,305431645 3,7797132 0,11234073
+3,4695797 231967,1359 -0,19764018 0,092137799 0 3,6672199 1,230123421 64,43531553 1,306301352 3,7795797 0,11235982
+3,469656 231999,1359 -0,19775476 0,092133336 0 3,6674109 1,23094241 64,44420442 1,307171059 3,779656 0,11224524
+3,4697897 232031,1359 -0,19773567 0,092133336 0 3,6675253 1,2317614 64,45309331 1,308040766 3,7797897 0,11226433
+3,4699042 232063,1359 -0,19773567 0,092137799 0 3,6676397 1,232580389 64,4619822 1,308910473 3,7799042 0,11226433
+3,4701335 232095,1359 -0,19779295 0,092137158 0 3,6679265 1,233399379 64,47087109 1,30978018 3,7801335 0,11220705
+3,4700189 232127,1359 -0,19781205 0,092136525 0 3,6678309 1,234218369 64,47975998 1,310649888 3,7800189 0,11218795
+3,4702289 232159,1359 -0,19767837 0,092137799 0 3,6679072 1,235037357 64,48864887 1,311519593 3,7802289 0,11232163
+3,4704199 232191,1359 -0,19788843 0,092130147 0 3,6683083 1,235856344 64,49753776 1,312389297 3,7804199 0,11211157
+3,4704008 232223,1359 -0,19792664 0,092146084 0 3,6683273 1,236675333 64,50642665 1,313259004 3,7804008 0,11207336
+3,4703627 232255,1359 -0,19794573 0,092132702 0 3,6683085 1,237494322 64,51531554 1,314128711 3,7803627 0,11205427
+3,4705727 232287,1359 -0,19785024 0,092146717 0 3,6684229 1,238313311 64,52420443 1,314998418 3,7805727 0,11214976
+3,4706683 232319,1359 -0,19806032 0,09214098 0 3,6687286 1,239132298 64,53309332 1,315868122 3,7806683 0,11193968
+3,4708593 232351,136 -0,19794573 0,092139706 0 3,6688051 1,239951284 64,54198221 1,316737826 3,7808593 0,11205427
+3,4709547 232383,136 -0,19798394 0,092130795 0 3,6689386 1,240770269 64,5508711 1,317607528 3,7809547 0,11201606
+3,4710119 232415,136 -0,19806032 0,092132062 0 3,6690722 1,241589256 64,55975999 1,318477232 3,7810119 0,11193968
+3,4710503 232447,136 -0,19802213 0,092139073 0 3,6690724 1,242408242 64,56864888 1,319346935 3,7810503 0,11197787
+3,4711838 232479,136 -0,1982131 0,09213461 0 3,6693969 1,243227226 64,57753777 1,320216637 3,7811838 0,1117869
+3,4711838 232511,136 -0,19796483 0,092130795 0 3,6691487 1,24404621 64,58642666 1,321086338 3,7811838 0,11203517
+3,4713366 232543,136 -0,19802213 0,092135884 0 3,6693587 1,244865192 64,59531555 1,321956038 3,7813366 0,11197787
+3,4714322 232575,136 -0,19804122 0,092135251 0 3,6694734 1,245684178 64,60420444 1,322825741 3,7814322 0,11195878
+3,4715848 232607,136 -0,19806032 0,092137799 0 3,6696451 1,246503163 64,61309333 1,323695443 3,7815848 0,11193968
+3,4716613 232639,136 -0,19800302 0,09213461 0 3,6696644 1,247322148 64,62198222 1,324565146 3,7816613 0,11199698
+3,4716613 232671,136 -0,1981367 0,09212888 0 3,6697981 1,248141135 64,63087111 1,32543485 3,7816613 0,1118633
+3,4716995 232703,136 -0,1981367 0,092130147 0 3,6698363 1,248960122 64,63976 1,326304555 3,7816995 0,1118633
+3,4717951 232735,136 -0,1982131 0,092133977 0 3,6700082 1,249779109 64,64864889 1,327174259 3,7817951 0,1117869
+3,4719477 232767,136 -0,198194 0,092137158 0 3,6701417 1,250598093 64,65753778 1,32804396 3,7819477 0,111806
+3,472177 232799,136 -0,19832768 0,092137158 0 3,6705048 1,251417076 64,66642667 1,328913661 3,782177 0,11167232
+3,4721005 232831,136 -0,1982131 0,092133977 0 3,6703136 1,252236065 64,67531556 1,329783366 3,7821005 0,1117869
+3,4722533 232863,136 -0,1981367 0,09212824 0 3,6703901 1,25305505 64,68420445 1,330653069 3,7822533 0,1118633
+3,472177 232895,136 -0,1982704 0,092130795 0 3,6704473 1,253874034 64,69309334 1,33152277 3,782177 0,1117296
+3,4724634 232927,136 -0,19846137 0,09214098 0 3,6709247 1,254693019 64,70198223 1,332392473 3,7824634 0,11153863
+3,4725399 232959,136 -0,19830859 0,092137158 0 3,6708484 1,255512006 64,71087112 1,333262177 3,7825399 0,11169141
+3,4725206 232991,1361 -0,19844227 0,092133977 0 3,6709628 1,256330992 64,71976002 1,33413188 3,7825206 0,11155773
+3,4727499 233023,1361 -0,19834678 0,092129521 0 3,6710968 1,257149982 64,72864891 1,335001588 3,7827499 0,11165322
+3,4728072 233055,1361 -0,19842316 0,092137799 0 3,6712303 1,25796897 64,7375378 1,335871294 3,7828072 0,11157684
+3,4729218 233087,1361 -0,19844227 0,092137799 0 3,6713641 1,25878796 64,74642669 1,336741002 3,7829218 0,11155773
+3,4730172 233119,1361 -0,19857594 0,092129521 0 3,6715932 1,259606952 64,75531558 1,337610711 3,7830172 0,11142406
+3,4730744 233151,1361 -0,19846137 0,09213461 0 3,6715357 1,260425939 64,76420447 1,338480416 3,7830744 0,11153863
+3,4732273 233183,1361 -0,19848046 0,092141613 0 3,6717076 1,261244924 64,77309336 1,339350118 3,7832273 0,11151954
+3,4733038 233215,1361 -0,19849956 0,092133336 0 3,6718035 1,262063907 64,78198225 1,340219818 3,7833038 0,11150044
+3,4733992 233247,1361 -0,19840407 0,092147343 0 3,6718032 1,26288289 64,79087114 1,341089519 3,7833992 0,11159593
+3,4735138 233279,1361 -0,19857594 0,092136525 0 3,6720898 1,263701879 64,79976003 1,341959225 3,7835138 0,11142406
+3,4735138 233311,1361 -0,19859505 0,092137158 0 3,6721089 1,264520867 64,80864892 1,342828931 3,7835138 0,11140495
+3,4736283 233343,1361 -0,19844227 0,092132702 0 3,6720705 1,265339858 64,81753781 1,343698639 3,7836283 0,11155773
+3,4737239 233375,1361 -0,19855686 0,092137158 0 3,6722808 1,266158848 64,8264267 1,344568347 3,7837239 0,11144314
+3,473953 233407,1361 -0,19869053 0,092142887 0 3,6726437 1,266977837 64,83531559 1,345438054 3,783953 0,11130947
+3,4739721 233439,1361 -0,19853775 0,092139073 0 3,6725099 1,26779683 64,84420448 1,346307764 3,7839721 0,11146225
+3,4739339 233471,1361 -0,19853775 0,092133336 0 3,6724718 1,26861582 64,85309337 1,347177472 3,7839339 0,11146225
+3,4739912 233503,1361 -0,19857594 0,092139073 0 3,6725671 1,269434806 64,86198226 1,348047175 3,7839912 0,11142406
+3,4743159 233535,1361 -0,19857594 0,092133977 0 3,6728919 1,270253795 64,87087115 1,348916882 3,7843159 0,11142406
+3,474335 233567,1361 -0,19859505 0,09213461 0 3,67293 1,271072783 64,87976004 1,349786587 3,784335 0,11140495
+3,4742968 233599,1362 -0,19874783 0,092130147 0 3,6730447 1,271891774 64,88864893 1,350656297 3,7842968 0,11125217
+3,4744878 233631,1362 -0,19869053 0,092137158 0 3,6731782 1,272710766 64,89753782 1,351526006 3,7844878 0,11130947
+3,4746978 233663,1362 -0,19870962 0,09213461 0 3,6734076 1,273529754 64,90642671 1,352395712 3,7846978 0,11129038
+3,474736 233695,1362 -0,19888151 0,092145436 0 3,6736174 1,274348744 64,9153156 1,353265419 3,784736 0,11111849
+3,4748125 233727,1362 -0,19882421 0,092130795 0 3,6736367 1,275167734 64,92420449 1,354135127 3,7848125 0,11117579
+3,4749079 233759,1362 -0,19880511 0,092133977 0 3,673713 1,275986723 64,93309338 1,355004833 3,7849079 0,11119489
+3,4748888 233791,1362 -0,19888151 0,09214098 0 3,6737704 1,276805713 64,94198227 1,355874541 3,7848888 0,11111849
+3,4749844 233823,1362 -0,1988624 0,092136525 0 3,6738467 1,277624702 64,95087116 1,356744248 3,7849844 0,1111376
+3,4750416 233855,1362 -0,1988624 0,092144169 0 3,6739039 1,278443691 64,95976005 1,357613954 3,7850416 0,1111376
+3,4753089 233887,1362 -0,19884332 0,092130147 0 3,6741521 1,279262682 64,96864894 1,358483663 3,7853089 0,11115668
+3,4753854 233919,1362 -0,19876692 0,092132062 0 3,6741524 1,280081672 64,97753783 1,359353371 3,7853854 0,11123308
+3,4754426 233951,1362 -0,19888151 0,092138432 0 3,674324 1,280900664 64,98642672 1,360223081 3,7854426 0,11111849
+3,4754999 233983,1362 -0,1988624 0,092135884 0 3,6743622 1,281719652 64,99531561 1,361092786 3,7854999 0,1111376
+3,4756908 234015,1362 -0,19880511 0,092140347 0 3,6744959 1,28253864 65,0042045 1,361962491 3,7856908 0,11119489
+3,4756718 234047,1362 -0,19903429 0,092132062 0 3,674706 1,283357625 65,01309339 1,362832193 3,7856718 0,11096571
+3,4757292 234079,1362 -0,1989197 0,092131428 0 3,674649 1,284176611 65,02198228 1,363701898 3,7857292 0,1110803
+3,4758818 234111,1362 -0,1989197 0,092133336 0 3,6748016 1,284995598 65,03087118 1,364571602 3,7858818 0,1110803
+3,4760156 234143,1362 -0,19899608 0,092138432 0 3,6750116 1,285814586 65,03976007 1,365441307 3,7860156 0,11100392
+3,4761684 234175,1362 -0,19899608 0,09213461 0 3,6751645 1,286633574 65,04864896 1,366311013 3,7861684 0,11100392
+3,4760919 234207,1362 -0,19895789 0,092140347 0 3,6750498 1,287452566 65,05753785 1,367180722 3,7860919 0,11104211
+3,4762831 234239,1363 -0,1989006 0,09213461 0 3,6751838 1,288271557 65,06642674 1,368050431 3,7862831 0,1110994
+3,4763975 234271,1363 -0,19897699 0,092135251 0 3,6753745 1,28909055 65,07531563 1,368920142 3,7863975 0,11102301
+3,4765503 234303,1363 -0,19909157 0,092133336 0 3,675642 1,289909542 65,08420452 1,369789852 3,7865503 0,11090843
+3,4765694 234335,1363 -0,19903429 0,092137158 0 3,6756036 1,290728532 65,09309341 1,37065956 3,7865694 0,11096571
+3,4766841 234367,1363 -0,1989197 0,092127606 0 3,6756039 1,291547526 65,1019823 1,371529272 3,7866841 0,1110803
+3,4768367 234399,1363 -0,19911067 0,09214098 0 3,6759474 1,292366516 65,11087119 1,372398979 3,7868367 0,11088933
+3,4769132 234431,1363 -0,19912978 0,092137158 0 3,676043 1,293185507 65,11976008 1,373268687 3,7869132 0,11087022
+3,4769704 234463,1363 -0,19909157 0,092144802 0 3,6760621 1,294004498 65,12864897 1,374138396 3,7869704 0,11090843
+3,4771233 234495,1363 -0,19912978 0,092135251 0 3,6762531 1,29482349 65,13753786 1,375008106 3,7871233 0,11087022
+3,4772379 234527,1363 -0,19901519 0,09212888 0 3,6762531 1,295642485 65,14642675 1,375877819 3,7872379 0,11098481
+3,4772761 234559,1363 -0,19916797 0,09213461 0 3,6764441 1,296461478 65,15531564 1,37674753 3,7872761 0,11083203
+3,4775243 234591,1363 -0,19912978 0,09213461 0 3,6766541 1,297280469 65,16420453 1,377617239 3,7875243 0,11087022
+3,4775052 234623,1363 -0,19916797 0,092137799 0 3,6766732 1,298099461 65,17309342 1,378486948 3,7875052 0,11083203
+3,4776771 234655,1363 -0,19911067 0,092137799 0 3,6767879 1,298918452 65,18198231 1,379356657 3,7876771 0,11088933
+3,477639 234687,1363 -0,19926345 0,092135251 0 3,6769023 1,299737444 65,1908712 1,380226367 3,787639 0,11073655
+3,477849 234719,1363 -0,19924435 0,092135251 0 3,6770933 1,300556435 65,19976009 1,381096076 3,787849 0,11075565
+3,4780209 234751,1363 -0,19932075 0,092140347 0 3,6773417 1,301375427 65,20864898 1,381965786 3,7880209 0,11067925
+3,4779828 234783,1363 -0,19920616 0,09213461 0 3,6771889 1,302194419 65,21753787 1,382835496 3,7879828 0,11079384
+3,47804 234815,1363 -0,19922526 0,092142262 0 3,6772652 1,303013411 65,22642676 1,383705205 3,78804 0,11077474
+3,478231 234847,1363 -0,19930165 0,092132062 0 3,6775327 1,303832403 65,23531565 1,384574914 3,788231 0,11069835
+3,4783263 234879,1364 -0,19914886 0,092138432 0 3,6774752 1,304651395 65,24420454 1,385444624 3,7883263 0,11085114
+3,4783456 234911,1364 -0,19922526 0,092135251 0 3,6775708 1,305470385 65,25309343 1,386314332 3,7883456 0,11077474
+3,4783647 234943,1364 -0,19922526 0,092137158 0 3,6775899 1,306289372 65,26198232 1,387184036 3,7883647 0,11077474
+3,4785748 234975,1364 -0,19932075 0,092151172 0 3,6778955 1,307108358 65,27087121 1,388053739 3,7885748 0,11067925
+3,4786129 235007,1364 -0,19939713 0,092137799 0 3,67801 1,307927345 65,2797601 1,388923445 3,7886129 0,11060287
+3,4787467 235039,1364 -0,19939713 0,092131428 0 3,6781437 1,308746333 65,28864899 1,38979315 3,7887467 0,11060287
+3,4789567 235071,1364 -0,19933984 0,092135251 0 3,6782966 1,309565319 65,29753788 1,390662853 3,7889567 0,11066016
+3,4790905 235103,1364 -0,19943532 0,092138432 0 3,6785257 1,310384301 65,30642677 1,391532553 3,7890905 0,11056468
+3,4790905 235135,1364 -0,19933984 0,092139706 0 3,6784303 1,311203283 65,31531566 1,392402251 3,7890905 0,11066016
+3,4791477 235167,1364 -0,19932075 0,092145436 0 3,6784685 1,31202227 65,32420455 1,393271956 3,7891477 0,11067925
+3,4793959 235199,1364 -0,19924435 0,092141613 0 3,6786401 1,312841257 65,33309344 1,39414166 3,7893959 0,11075565
+3,4793577 235231,1364 -0,19941624 0,092133977 0 3,6787739 1,313660245 65,34198233 1,395011366 3,7893577 0,11058376
+3,4794531 235263,1364 -0,19932075 0,092135884 0 3,6787739 1,314479234 65,35087123 1,395881073 3,7894531 0,11067925
+3,4797397 235295,1364 -0,19943532 0,092133977 0 3,6791749 1,315298225 65,35976012 1,396750782 3,7897397 0,11056468
+3,4796824 235327,1364 -0,19930165 0,092130147 0 3,6789842 1,316117216 65,36864901 1,39762049 3,7896824 0,11069835
+3,4796824 235359,1364 -0,19953081 0,092129521 0 3,6792133 1,316936205 65,3775379 1,398490196 3,7896824 0,11046919
+3,4797015 235391,1364 -0,19943532 0,092139073 0 3,6791368 1,317755193 65,38642679 1,399359902 3,7897015 0,11056468
+3,4800262 235423,1364 -0,19945443 0,092131428 0 3,6794806 1,318574182 65,39531568 1,400229609 3,7900262 0,11054557
+3,4801216 235455,1364 -0,19939713 0,092133977 0 3,6795187 1,319393172 65,40420457 1,401099317 3,7901216 0,11060287
+3,4801598 235487,1364 -0,19951172 0,092142887 0 3,6796715 1,32021216 65,41309346 1,401969022 3,7901598 0,11048828
+3,4802744 235519,1365 -0,19943532 0,092132062 0 3,6797097 1,321031149 65,42198235 1,402838728 3,7902744 0,11056468
+3,4803317 235551,1365 -0,19960721 0,092142262 0 3,6799388 1,321850138 65,43087124 1,403708435 3,7903317 0,11039279
+3,4806182 235583,1365 -0,19954991 0,09214098 0 3,6801682 1,322669129 65,43976013 1,404578144 3,7906182 0,11045009
+3,4805226 235615,1365 -0,19949262 0,092136525 0 3,6800153 1,323488117 65,44864902 1,405447849 3,7905226 0,11050738
+3,4807901 235647,1365 -0,19943532 0,092136525 0 3,6802254 1,324307104 65,45753791 1,406317553 3,7907901 0,11056468
+3,4807518 235679,1365 -0,19932075 0,092140347 0 3,6800725 1,325126089 65,4664268 1,407187256 3,7907518 0,11067925
+3,4808664 235711,1365 -0,19941624 0,09214098 0 3,6802826 1,325945075 65,47531569 1,408056959 3,7908664 0,11058376
+3,4809811 235743,1365 -0,19949262 0,092130147 0 3,6804738 1,326764064 65,48420458 1,408926666 3,7909811 0,11050738
+3,4811912 235775,1365 -0,19951172 0,092138432 0 3,6807029 1,32758305 65,49309347 1,40979637 3,7911912 0,11048828
+3,4810765 235807,1365 -0,19954991 0,092130795 0 3,6806264 1,328402036 65,50198236 1,410666073 3,7910765 0,11045009
+3,4812293 235839,1365 -0,1997027 0,092135884 0 3,680932 1,329221025 65,51087125 1,41153578 3,7912293 0,1102973
+3,4814584 235871,1365 -0,1996263 0,092146084 0 3,6810846 1,330040016 65,51976014 1,412405488 3,7914584 0,1103737
+3,481554 235903,1365 -0,19958811 0,092133336 0 3,6811421 1,330859005 65,52864903 1,413275195 3,791554 0,11041189
+3,4815731 235935,1365 -0,19954991 0,092133977 0 3,681123 1,331677996 65,53753792 1,414144903 3,7915731 0,11045009
+3,4816303 235967,1365 -0,199569 0,092139073 0 3,6811993 1,332496985 65,54642681 1,41501461 3,7916303 0,110431
+3,481745 235999,1365 -0,19945443 0,092138432 0 3,6811996 1,333315972 65,5553157 1,415884314 3,791745 0,11054557
+3,4818978 236031,1365 -0,199569 0,092139073 0 3,6814668 1,33413496 65,56420459 1,41675402 3,7918978 0,110431
+3,4819551 236063,1365 -0,199569 0,092132062 0 3,681524 1,334953947 65,57309348 1,417623724 3,7919551 0,110431
+3,482127 236095,1365 -0,19968359 0,09212824 0 3,6818106 1,335772935 65,58198237 1,41849343 3,792127 0,11031641
+3,4822223 236127,1365 -0,19977908 0,092135251 0 3,6820014 1,336591924 65,59087126 1,419363136 3,7922223 0,11022092
+3,4823561 236159,1366 -0,19958811 0,092135251 0 3,6819441 1,337410913 65,59976015 1,420232843 3,7923561 0,11041189
+3,4824898 236191,1366 -0,19953081 0,092132062 0 3,6820207 1,3382299 65,60864904 1,421102548 3,7924898 0,11046919
+3,4826233 236223,1366 -0,1996263 0,092133336 0 3,6822495 1,339048885 65,61753793 1,42197225 3,7926233 0,1103737
+3,482547 236255,1366 -0,19979818 0,092132062 0 3,6823452 1,339867869 65,62642682 1,422841951 3,792547 0,11020182
+3,4826999 236287,1366 -0,19966449 0,092130795 0 3,6823645 1,340686854 65,63531571 1,423711653 3,7926999 0,11033551
+3,4828143 236319,1366 -0,19968359 0,092133977 0 3,682498 1,341505837 65,6442046 1,424581354 3,7928143 0,11031641
+3,4828143 236351,1366 -0,19979818 0,092133977 0 3,6826124 1,34232482 65,65309349 1,425451054 3,7928143 0,11020182
+3,4831581 236383,1366 -0,1996263 0,092141613 0 3,6827843 1,343143802 65,66198238 1,426320753 3,7931581 0,1103737
+3,4830437 236415,1366 -0,19972178 0,092125699 0 3,6827655 1,343962785 65,67087128 1,427190453 3,7930437 0,11027822
+3,4832346 236447,1366 -0,19966449 0,092137799 0 3,6828992 1,344781765 65,67976017 1,42806015 3,7932346 0,11033551
+3,4832728 236479,1366 -0,1996454 0,092132702 0 3,6829181 1,345600745 65,68864906 1,428929847 3,7932728 0,1103546
+3,4834638 236511,1366 -0,19977908 0,092140347 0 3,6832428 1,346419727 65,69753795 1,429799546 3,7934638 0,11022092
+3,4835401 236543,1366 -0,19977908 0,092136525 0 3,6833191 1,347238708 65,70642684 1,430669244 3,7935401 0,11022092
+3,4837885 236575,1366 -0,19985546 0,09214098 0 3,6836441 1,348057689 65,71531573 1,431538943 3,7937885 0,11014454
+3,483712 236607,1366 -0,1997027 0,092130795 0 3,6834147 1,34887667 65,72420462 1,432408641 3,793712 0,1102973
+3,4837501 236639,1366 -0,1996454 0,092133336 0 3,6833954 1,34969565 65,73309351 1,433278338 3,7937501 0,1103546
+3,4838076 236671,1366 -0,19979818 0,092127606 0 3,6836057 1,35051463 65,7419824 1,434148035 3,7938076 0,11020182
+3,4841321 236703,1366 -0,19974089 0,09214098 0 3,6838729 1,351333612 65,75087129 1,435017734 3,7941321 0,11025911
+3,4840748 236735,1366 -0,19972178 0,092135884 0 3,6837966 1,352152594 65,75976018 1,435887434 3,7940748 0,11027822
+3,4843233 236767,1366 -0,19977908 0,092137799 0 3,6841023 1,352971577 65,76864907 1,436757134 3,7943233 0,11022092
+3,4842849 236799,1367 -0,19997005 0,092136525 0 3,6842549 1,353790559 65,77753796 1,437626832 3,7942849 0,11002995
+3,4842849 236831,1367 -0,19975998 0,092131428 0 3,6840448 1,354609543 65,78642685 1,438496534 3,7942849 0,11024002
+3,4845142 236863,1367 -0,19987457 0,092135884 0 3,6843889 1,355428529 65,79531574 1,439366237 3,7945142 0,11012543
+3,4845524 236895,1367 -0,19972178 0,09212824 0 3,6842742 1,356247516 65,80420463 1,440235941 3,7945524 0,11027822
+3,4847815 236927,1367 -0,19985546 0,092139073 0 3,6846371 1,357066502 65,81309352 1,441105645 3,7947815 0,11014454
+3,4849725 236959,1367 -0,19977908 0,092142262 0 3,6847515 1,357885487 65,82198241 1,441975347 3,7949725 0,11022092
+3,4849725 236991,1367 -0,19974089 0,092139706 0 3,6847134 1,358704472 65,8308713 1,44284505 3,7949725 0,11025911
+3,4849534 237023,1367 -0,19968359 0,092130147 0 3,6846371 1,35952346 65,83976019 1,443714755 3,7949534 0,11031641
+3,4851825 237055,1367 -0,20008464 0,092132062 0 3,6852672 1,360342446 65,84864908 1,444584458 3,7951825 0,10991536
+3,4852207 237087,1367 -0,19989367 0,092137158 0 3,6851144 1,361161433 65,85753797 1,445454163 3,7952207 0,11010633
+3,4853735 237119,1367 -0,19981727 0,092140347 0 3,6851907 1,361980418 65,86642686 1,446323866 3,7953735 0,11018273
+3,4854691 237151,1367 -0,19977908 0,09214098 0 3,6852481 1,362799404 65,87531575 1,447193569 3,7954691 0,11022092
+3,485641 237183,1367 -0,19989367 0,092135251 0 3,6855347 1,363618388 65,88420464 1,448063271 3,795641 0,11010633
+3,4857554 237215,1367 -0,19983637 0,092140347 0 3,6855917 1,364437378 65,89309353 1,448932977 3,7957554 0,11016363
+3,485851 237247,1367 -0,19979818 0,092132702 0 3,6856492 1,365256366 65,90198242 1,449802684 3,795851 0,11020182
+3,4859083 237279,1367 -0,19991276 0,092135884 0 3,6858211 1,366075354 65,91087131 1,450672389 3,7959083 0,11008724
+3,4860611 237311,1367 -0,20010373 0,092139706 0 3,6861649 1,366894339 65,9197602 1,451542091 3,7960611 0,10989627
+3,4862139 237343,1367 -0,19975998 0,092138432 0 3,6859739 1,367713321 65,92864909 1,45241179 3,7962139 0,11024002
+3,4863093 237375,1367 -0,19997005 0,092135884 0 3,6862793 1,368532304 65,93753798 1,45328149 3,7963093 0,11002995
+3,4865003 237407,1367 -0,19979818 0,092135251 0 3,6862984 1,369351287 65,94642687 1,454151191 3,7965003 0,11020182
+3,486424 237439,1368 -0,20004643 0,092140347 0 3,6864705 1,370170272 65,95531576 1,455020893 3,796424 0,10995357
+3,4866531 237471,1368 -0,19985546 0,092135251 0 3,6865087 1,370989256 65,96420465 1,455890594 3,7966531 0,11014454
+3,4866531 237503,1368 -0,19989367 0,092140347 0 3,6865468 1,371808242 65,97309354 1,456760298 3,7966531 0,11010633
+3,4867678 237535,1368 -0,19981727 0,092135251 0 3,6865849 1,372627227 65,98198243 1,45763 3,7967678 0,11018273
+3,4867678 237567,1368 -0,19997005 0,09213461 0 3,6867378 1,373446213 65,99087133 1,458499703 3,7967678 0,11002995
+3,4869778 237599,1368 -0,19995095 0,092139706 0 3,6869287 1,374265198 65,99976022 1,459369405 3,7969778 0,11004905
+3,4870732 237631,1368 -0,19998915 0,092131428 0 3,6870623 1,375084184 66,00864911 1,460239109 3,7970732 0,11001085
+3,4871688 237663,1368 -0,19993186 0,092135884 0 3,6871006 1,375903171 66,017538 1,461108814 3,7971688 0,11006814
+3,487417 237695,1368 -0,19997005 0,09213461 0 3,687387 1,376722158 66,02642689 1,461978518 3,797417 0,11002995
+3,4873788 237727,1368 -0,20008464 0,092133336 0 3,6874635 1,377541144 66,03531578 1,462848222 3,7973788 0,10991536
+3,4875317 237759,1368 -0,19983637 0,092143528 0 3,6873679 1,378360131 66,04420467 1,463717926 3,7975317 0,11016363
+3,4875889 237791,1368 -0,19995095 0,092131428 0 3,6875398 1,379179118 66,05309356 1,464587631 3,7975889 0,11004905
+3,4877036 237823,1368 -0,19981727 0,092133336 0 3,6875207 1,379998107 66,06198245 1,465457337 3,7977036 0,11018273
+3,4878945 237855,1368 -0,19997005 0,092135251 0 3,6878645 1,380817098 66,07087134 1,466327046 3,7978945 0,11002995
+3,4879327 237887,1368 -0,20000824 0,092132062 0 3,6879408 1,381636088 66,07976023 1,467196753 3,7979327 0,10999176
+3,4881809 237919,1368 -0,19993186 0,092132702 0 3,6881127 1,382455077 66,08864912 1,46806646 3,7981809 0,11006814
+3,4881809 237951,1368 -0,20000824 0,092142887 0 3,688189 1,383274066 66,09753801 1,468936167 3,7981809 0,10999176
+3,4882574 237983,1368 -0,20002735 0,092139706 0 3,6882849 1,384093056 66,1064269 1,469805874 3,7982574 0,10997265
+3,4882956 238015,1368 -0,20004643 0,092133977 0 3,6883421 1,384912043 66,11531579 1,470675579 3,7982956 0,10995357
+3,4884865 238047,1368 -0,19998915 0,092132702 0 3,6884756 1,38573103 66,12420468 1,471545283 3,7984865 0,11001085
+3,4885247 238079,1369 -0,20018013 0,092133336 0 3,6887047 1,386550018 66,13309357 1,472414989 3,7985247 0,10981987
+3,4886966 238111,1369 -0,20002735 0,092138432 0 3,688724 1,387369004 66,14198246 1,473284692 3,7986966 0,10997265
+3,4888494 238143,1369 -0,20021832 0,092143528 0 3,6890678 1,388187989 66,15087135 1,474154395 3,7988494 0,10978168
+3,4888685 238175,1369 -0,20010373 0,092139073 0 3,6889722 1,389006978 66,15976024 1,475024101 3,7988685 0,10989627
+3,4889257 238207,1369 -0,19997005 0,09213461 0 3,6888957 1,389825973 66,16864913 1,475893814 3,7989257 0,11002995
+3,4891739 238239,1369 -0,20010373 0,092132702 0 3,6892776 1,390644968 66,17753802 1,476763527 3,7991739 0,10989627
+3,4892313 238271,1369 -0,20016102 0,092129521 0 3,6893923 1,391463963 66,18642691 1,477633239 3,7992313 0,10983898
+3,4894414 238303,1369 -0,20002735 0,092138432 0 3,6894689 1,392282963 66,1953158 1,478502958 3,7994414 0,10997265
+3,4894986 238335,1369 -0,20006554 0,092135884 0 3,6895642 1,393101961 66,20420469 1,479372674 3,7994986 0,10993446
+3,4895177 238367,1369 -0,20000824 0,092139706 0 3,6895258 1,393920961 66,21309358 1,480242393 3,7995177 0,10999176
+3,4896514 238399,1369 -0,20006554 0,092146084 0 3,6897171 1,394739962 66,22198247 1,481112111 3,7996514 0,10993446
+3,4897661 238431,1369 -0,20002735 0,092144169 0 3,6897936 1,395558961 66,23087136 1,481981829 3,7997661 0,10997265
+3,4898806 238463,1369 -0,20006554 0,092139073 0 3,6899462 1,39637796 66,23976025 1,482851546 3,7998806 0,10993446
+3,4901097 238495,1369 -0,20018013 0,092136525 0 3,6902897 1,397196954 66,24864914 1,483721258 3,8001097 0,10981987
+3,490129 238527,1369 -0,20019922 0,092139706 0 3,6903281 1,398015949 66,25753803 1,484590971 3,800129 0,10980078
+3,4902053 238559,1369 -0,20019922 0,092133977 0 3,6904044 1,398834943 66,26642692 1,485460683 3,8002053 0,10980078
+3,4904153 238591,1369 -0,20010373 0,092137158 0 3,6905191 1,399653937 66,27531581 1,486330395 3,8004153 0,10989627
+3,4904535 238623,1369 -0,20010373 0,092132062 0 3,6905572 1,400472932 66,2842047 1,487200107 3,8004535 0,10989627
+3,4906254 238655,1369 -0,20025651 0,092136525 0 3,690882 1,401291922 66,29309359 1,488069815 3,8006254 0,10974349
+3,4905872 238687,1369 -0,20019922 0,092129521 0 3,6907864 1,402110913 66,30198249 1,488939524 3,8005872 0,10980078
+3,4907019 238719,137 -0,20008464 0,09214098 0 3,6907866 1,402929907 66,31087138 1,489809236 3,8007019 0,10991536
+3,490912 238751,137 -0,20023742 0,092138432 0 3,6911495 1,403748902 66,31976027 1,490678949 3,800912 0,10976258
+3,4910648 238783,137 -0,20021832 0,092136525 0 3,6912832 1,404567896 66,32864916 1,49154866 3,8010648 0,10978168
+3,4911411 238815,137 -0,2002947 0,092144169 0 3,6914358 1,40538689 66,33753805 1,492418373 3,8011411 0,1097053
+3,4912748 238847,137 -0,20008464 0,092138432 0 3,6913595 1,406205883 66,34642694 1,493288084 3,8012748 0,10991536
+3,491122 238879,137 -0,20016102 0,092131428 0 3,691283 1,407024876 66,35531583 1,494157795 3,801122 0,10983898
+3,4913321 238911,137 -0,20012283 0,092142262 0 3,6914549 1,40784387 66,36420472 1,495027506 3,8013321 0,10987717
+3,491504 238943,137 -0,20014192 0,092136525 0 3,6916459 1,408662863 66,37309361 1,495897217 3,801504 0,10985808
+3,4916949 238975,137 -0,2002947 0,092142887 0 3,6919897 1,409481854 66,3819825 1,496766926 3,8016949 0,1097053
+3,4916949 239007,137 -0,20025651 0,092137158 0 3,6919515 1,410300845 66,39087139 1,497636635 3,8016949 0,10974349
+3,4917712 239039,137 -0,20031381 0,092135884 0 3,692085 1,411119835 66,39976028 1,498506342 3,8017712 0,10968619
+3,4920387 239071,137 -0,2002947 0,092137799 0 3,6923335 1,411938827 66,40864917 1,499376052 3,8020387 0,1097053
+3,4920578 239103,137 -0,20014192 0,092135884 0 3,6921997 1,412757821 66,41753806 1,500245764 3,8020578 0,10985808
+3,4921722 239135,137 -0,20025651 0,092139073 0 3,6924288 1,413576812 66,42642695 1,501115473 3,8021722 0,10974349
+3,4922106 239167,137 -0,20025651 0,092135251 0 3,6924672 1,414395799 66,43531584 1,501985177 3,8022106 0,10974349
+3,4924016 239199,137 -0,20027561 0,092133336 0 3,6926773 1,415214787 66,44420473 1,502854883 3,8024016 0,10972439
+3,492516 239231,137 -0,2002947 0,092135251 0 3,6928108 1,416033775 66,45309362 1,503724588 3,802516 0,1097053
+3,4926879 239263,137 -0,2002947 0,092132702 0 3,6929827 1,416852765 66,46198251 1,504594296 3,8026879 0,1097053
+3,4927454 239295,137 -0,20031381 0,092137799 0 3,6930592 1,417671752 66,4708714 1,505464 3,8027454 0,10968619
+3,4928598 239327,137 -0,20040929 0,092133977 0 3,6932693 1,418490739 66,47976029 1,506333705 3,8028598 0,10959071
+3,4929936 239359,1371 -0,2002947 0,092135884 0 3,6932883 1,419309727 66,48864918 1,50720341 3,8029936 0,1097053
+3,4931273 239391,1371 -0,2004284 0,092135251 0 3,6935558 1,420128715 66,49753807 1,508073115 3,8031273 0,1095716
+3,4931655 239423,1371 -0,20018013 0,092136525 0 3,6933455 1,420947704 66,50642696 1,508942823 3,8031655 0,10981987
+3,4932418 239455,1371 -0,20023742 0,092135251 0 3,6934793 1,421766696 66,51531585 1,509812532 3,8032418 0,10976258
+3,4934137 239487,1371 -0,20031381 0,092144169 0 3,6937275 1,422585687 66,52420474 1,510682241 3,8034137 0,10968619
+3,4934518 239519,1371 -0,20040929 0,092130795 0 3,693861 1,423404676 66,53309363 1,511551947 3,8034518 0,10959071
+3,4937003 239551,1371 -0,2003711 0,092132062 0 3,6940713 1,424223665 66,54198252 1,512421654 3,8037003 0,1096289
+3,4939103 239583,1371 -0,20031381 0,092133977 0 3,6942241 1,425042653 66,55087141 1,51329136 3,8039103 0,10968619
+3,4939675 239615,1371 -0,20031381 0,09214098 0 3,6942813 1,425861644 66,5597603 1,514161068 3,8039675 0,10968619
+3,4938338 239647,1371 -0,20031381 0,092137799 0 3,6941476 1,426680634 66,56864919 1,515030776 3,8038338 0,10968619
+3,4941967 239679,1371 -0,20025651 0,092140347 0 3,6944532 1,427499623 66,57753808 1,515900482 3,8041967 0,10974349
+3,4942157 239711,1371 -0,20027561 0,092130795 0 3,6944914 1,428318611 66,58642697 1,516770188 3,8042157 0,10972439
+3,4943495 239743,1371 -0,20019922 0,092135884 0 3,6945486 1,429137599 66,59531586 1,517639893 3,8043495 0,10980078
+3,4945786 239775,1371 -0,200352 0,092142887 0 3,6949306 1,429956584 66,60420475 1,518509596 3,8045786 0,109648
+3,4945786 239807,1371 -0,20046659 0,092130795 0 3,6950452 1,430775571 66,61309364 1,5193793 3,8045786 0,10953341
+3,494827 239839,1371 -0,2003711 0,09214098 0 3,6951981 1,431594559 66,62198254 1,520249005 3,804827 0,1096289
+3,4947314 239871,1371 -0,2004284 0,092132702 0 3,6951599 1,432413543 66,63087143 1,521118707 3,8047314 0,1095716
+3,4947886 239903,1371 -0,20050478 0,09213461 0 3,6952934 1,433232525 66,63976032 1,521988407 3,8047886 0,10949522
+3,4950562 239935,1371 -0,20040929 0,092137158 0 3,6954656 1,434051512 66,64864921 1,52285811 3,8050562 0,10959071
+3,4951134 239967,1371 -0,20031381 0,092147343 0 3,6954272 1,434870497 66,6575381 1,523727813 3,8051134 0,10968619
+3,4952471 239999,1372 -0,20040929 0,092132702 0 3,6956563 1,435689481 66,66642699 1,524597514 3,8052471 0,10959071
+3,4953809 240031,1372 -0,20050478 0,092135251 0 3,6958857 1,436508466 66,67531588 1,525467217 3,8053809 0,10949522
+3,4954762 240063,1372 -0,20040929 0,092127606 0 3,6958857 1,43732745 66,68420477 1,526336918 3,8054762 0,10959071
+3,4955528 240095,1372 -0,20044748 0,092135884 0 3,6960003 1,438146435 66,69309366 1,52720662 3,8055528 0,10955252
+3,4957819 240127,1372 -0,20040929 0,092137158 0 3,6961913 1,438965419 66,70198255 1,528076322 3,8057819 0,10959071
+3,4957628 240159,1372 -0,20060027 0,092137799 0 3,696363 1,439784408 66,71087144 1,528946028 3,8057628 0,10939973
+3,4958963 240191,1372 -0,20046659 0,09213461 0 3,696363 1,440603395 66,71976033 1,529815732 3,8058963 0,10953341
+3,4959919 240223,1372 -0,20044748 0,09212888 0 3,6964395 1,441422383 66,72864922 1,530685438 3,8059919 0,10955252
+3,4961257 240255,1372 -0,20039019 0,092135251 0 3,6965158 1,44224137 66,73753811 1,531555143 3,8061257 0,10960981
+3,496202 240287,1372 -0,20054297 0,092132702 0 3,6967449 1,44306036 66,746427 1,53242485 3,806202 0,10945703
+3,4964311 240319,1372 -0,20067665 0,09213461 0 3,6971078 1,443879349 66,75531589 1,533294557 3,8064311 0,10932335
+3,4963739 240351,1372 -0,2004284 0,092135251 0 3,6968024 1,444698335 66,76420478 1,53416426 3,8063739 0,1095716
+3,4966795 240383,1372 -0,20048568 0,092130795 0 3,6971653 1,44551732 66,77309367 1,535033963 3,8066795 0,10951432
+3,4968131 240415,1372 -0,2004284 0,092130147 0 3,6972415 1,446336303 66,78198256 1,535903663 3,8068131 0,1095716
+3,497004 240447,1372 -0,20046659 0,092135251 0 3,6974707 1,44715529 66,79087145 1,536773367 3,807004 0,10953341
+3,4970615 240479,1372 -0,20048568 0,092135251 0 3,6975472 1,447974279 66,79976034 1,537643074 3,8070615 0,10951432
+3,4972141 240511,1372 -0,20033291 0,092142262 0 3,697547 1,448793267 66,80864923 1,538512779 3,8072141 0,10966709
+3,4972141 240543,1372 -0,20060027 0,092133336 0 3,6978145 1,449612258 66,81753812 1,539382488 3,8072141 0,10939973
+3,4975197 240575,1372 -0,20056207 0,092139706 0 3,6980817 1,450431249 66,82642701 1,540252197 3,8075197 0,10943793
+3,4974244 240607,1372 -0,20054297 0,092130795 0 3,6979673 1,45125024 66,8353159 1,541121906 3,8074244 0,10945703
+3,4976153 240639,1373 -0,20054297 0,092136525 0 3,6981583 1,452069226 66,84420479 1,541991609 3,8076153 0,10945703
+3,4975388 240671,1373 -0,20054297 0,092133977 0 3,6980817 1,452888216 66,85309368 1,542861317 3,8075388 0,10945703
+3,4979208 240703,1373 -0,20061937 0,092129521 0 3,6985402 1,453707208 66,86198257 1,543731026 3,8079208 0,10938063
+3,4979589 240735,1373 -0,20050478 0,092143528 0 3,6984637 1,454526196 66,87087146 1,544600731 3,8079589 0,10949522
+3,4980927 240767,1373 -0,20039019 0,09213461 0 3,6984828 1,455345182 66,87976035 1,545470435 3,8080927 0,10960981
+3,4982836 240799,1373 -0,20054297 0,092135251 0 3,6988266 1,456164169 66,88864924 1,54634014 3,8082836 0,10945703
+3,4981499 240831,1373 -0,20067665 0,092144169 0 3,6988266 1,456983156 66,89753813 1,547209844 3,8081499 0,10932335
+3,4982836 240863,1373 -0,20052388 0,092133336 0 3,6988075 1,45780214 66,90642702 1,548079545 3,8082836 0,10947612
+3,4986274 240895,1373 -0,20056207 0,092136525 0 3,6991894 1,458621127 66,91531591 1,548949249 3,8086274 0,10943793
+3,4984174 240927,1373 -0,20056207 0,092132702 0 3,6989794 1,459440113 66,9242048 1,549818953 3,8084174 0,10943793
+3,4988565 240959,1373 -0,20052388 0,092135884 0 3,6993804 1,460259101 66,93309369 1,550688659 3,8088565 0,10947612
+3,4987612 240991,1373 -0,20056207 0,092135251 0 3,6993232 1,461078089 66,94198259 1,551558364 3,8087612 0,10943793
+3,4990475 241023,1373 -0,20065756 0,092139073 0 3,6997051 1,461897076 66,95087148 1,552428069 3,8090475 0,10934244
+3,4989712 241055,1373 -0,20065756 0,092137799 0 3,6996288 1,462716065 66,95976037 1,553297776 3,8089712 0,10934244
+3,4992003 241087,1373 -0,20040929 0,092137799 0 3,6996098 1,463535055 66,96864926 1,554167483 3,8092003 0,10959071
+3,4993341 241119,1373 -0,20056207 0,09213461 0 3,6998961 1,464354043 66,97753815 1,555037188 3,8093341 0,10943793
+3,4994104 241151,1373 -0,20063846 0,09213461 0 3,7000489 1,465173031 66,98642704 1,555906893 3,8094104 0,10936154
+3,4996014 241183,1373 -0,20054297 0,092137799 0 3,7001443 1,465992022 66,99531593 1,556776602 3,8096014 0,10945703
+3,4996779 241215,1373 -0,20065756 0,092133336 0 3,7003355 1,466811009 67,00420482 1,557646307 3,8096779 0,10934244
+3,4998498 241247,1373 -0,20073394 0,092141613 0 3,7005837 1,467629997 67,01309371 1,558516013 3,8098498 0,10926606
+3,4999833 241279,1374 -0,20058116 0,092138432 0 3,7005644 1,468448985 67,0219826 1,559385718 3,8099833 0,10941884
+3,5000024 241311,1374 -0,20061937 0,092131428 0 3,7006218 1,469267973 67,03087149 1,560255424 3,8100024 0,10938063
+3,5002124 241343,1374 -0,20050478 0,09213461 0 3,7007172 1,47008696 67,03976038 1,561125128 3,8102124 0,10949522
+3,500289 241375,1374 -0,20069575 0,09214098 0 3,7009847 1,470905946 67,04864927 1,561994831 3,810289 0,10930425
+3,5003843 241407,1374 -0,20056207 0,092141613 0 3,7009463 1,47172493 67,05753816 1,562864533 3,8103843 0,10943793
+3,5005562 241439,1374 -0,20069575 0,092132062 0 3,701252 1,472543917 67,06642705 1,563734237 3,8105562 0,10930425
+3,5005753 241471,1374 -0,20071486 0,092135251 0 3,7012901 1,473362902 67,07531594 1,56460394 3,8105753 0,10928514
+3,5008428 241503,1374 -0,20069575 0,092133336 0 3,7015386 1,474181891 67,08420483 1,565473646 3,8108428 0,10930425
+3,5009766 241535,1374 -0,20073394 0,092139706 0 3,7017105 1,475000882 67,09309372 1,566343355 3,8109766 0,10926606
+3,5010529 241567,1374 -0,20065756 0,09213461 0 3,7017105 1,475819872 67,10198261 1,567213063 3,8110529 0,10934244
+3,5011866 241599,1374 -0,20061937 0,092137799 0 3,7018061 1,476638861 67,1108715 1,568082769 3,8111866 0,10938063
+3,5013392 241631,1374 -0,20054297 0,092136525 0 3,7018821 1,477457851 67,11976039 1,568952477 3,8113392 0,10945703
+3,5013392 241663,1374 -0,20067665 0,092136525 0 3,7020159 1,478276839 67,12864928 1,569822182 3,8113392 0,10932335
+3,5013585 241695,1374 -0,20054297 0,09212824 0 3,7019014 1,479095828 67,13753817 1,570691889 3,8113585 0,10945703
+3,5016067 241727,1374 -0,20073394 0,092130147 0 3,7023406 1,47991482 67,14642706 1,571561599 3,8116067 0,10926606
+3,5017595 241759,1374 -0,20073394 0,092125066 0 3,7024934 1,480733816 67,15531595 1,572431313 3,8117595 0,10926606
+3,5019124 241791,1374 -0,20058116 0,092136525 0 3,7024934 1,48155281 67,16420484 1,573301025 3,8119124 0,10941884
+3,5019124 241823,1374 -0,20077214 0,092139073 0 3,7026844 1,482371803 67,17309373 1,574170735 3,8119124 0,10922786
+3,5022943 241855,1374 -0,20082943 0,092146084 0 3,7031238 1,483190793 67,18198262 1,575040443 3,8122943 0,10917057
+3,5022178 241887,1374 -0,20065756 0,092140347 0 3,7028754 1,484009785 67,19087151 1,575910152 3,8122178 0,10934244
+3,5023706 241919,1375 -0,20077214 0,092141613 0 3,7031426 1,48482878 67,1997604 1,576779866 3,8123706 0,10922786
+3,5025043 241951,1375 -0,20060027 0,092137158 0 3,7031045 1,485647775 67,20864929 1,577649579 3,8125043 0,10939973
+3,5026572 241983,1375 -0,20067665 0,092133336 0 3,7033339 1,486466769 67,21753818 1,578519291 3,8126572 0,10932335
+3,5028288 242015,1375 -0,20077214 0,092132702 0 3,7036009 1,487285763 67,22642707 1,579389003 3,8128288 0,10922786
+3,5029054 242047,1375 -0,20073394 0,092135251 0 3,7036393 1,488104756 67,23531596 1,580258713 3,8129054 0,10926606
+3,5028481 242079,1375 -0,20071486 0,092137799 0 3,703563 1,488923751 67,24420485 1,581128426 3,8128481 0,10928514
+3,5030773 242111,1375 -0,20077214 0,092132062 0 3,7038493 1,489742745 67,25309374 1,581998138 3,8130773 0,10922786
+3,5033064 242143,1375 -0,20063846 0,092142262 0 3,7039449 1,49056174 67,26198264 1,582867851 3,8133064 0,10936154
+3,5032108 242175,1375 -0,20071486 0,092133977 0 3,7039256 1,491380735 67,27087153 1,583737564 3,8132108 0,10928514
+3,5033827 242207,1375 -0,20067665 0,092144169 0 3,7040594 1,492199729 67,27976042 1,584607276 3,8133827 0,10932335
+3,5034783 242239,1375 -0,20069575 0,092146717 0 3,704174 1,493018728 67,28864931 1,585476993 3,8134783 0,10930425
+3,5036311 242271,1375 -0,20067665 0,092135251 0 3,7043078 1,493837725 67,2975382 1,586346708 3,8136311 0,10932335
+3,5038602 242303,1375 -0,20077214 0,092135251 0 3,7046323 1,494656718 67,30642709 1,587216419 3,8138602 0,10922786
+3,5037646 242335,1375 -0,20084853 0,092139073 0 3,7046132 1,495475708 67,31531598 1,588086127 3,8137646 0,10915147
+3,5039749 242367,1375 -0,20081034 0,092138432 0 3,7047853 1,496294698 67,32420487 1,588955834 3,8139749 0,10918966
+3,5042613 242399,1375 -0,20077214 0,092139073 0 3,7050333 1,497113689 67,33309376 1,589825543 3,8142613 0,10922786
+3,5043185 242431,1375 -0,20075305 0,092133977 0 3,7050714 1,497932681 67,34198265 1,590695253 3,8143185 0,10924695
+3,5044332 242463,1375 -0,20082943 0,092130147 0 3,7052627 1,498751674 67,35087154 1,591564964 3,8144332 0,10917057
+3,5045669 242495,1375 -0,20088673 0,092139073 0 3,7054536 1,499570666 67,35976043 1,592434673 3,8145669 0,10911327
+3,5047388 242527,1375 -0,20090583 0,092132702 0 3,7056446 1,500389657 67,36864932 1,593304382 3,8147388 0,10909417
+3,5048151 242559,1376 -0,20077214 0,092146084 0 3,7055871 1,501208649 67,37753821 1,594174092 3,8148151 0,10922786
+3,5048151 242591,1376 -0,20092492 0,092135884 0 3,70574 1,50202764 67,3864271 1,595043801 3,8148151 0,10907508
+3,505197 242623,1376 -0,20071486 0,092141613 0 3,7059119 1,502846633 67,39531599 1,595913511 3,815197 0,10928514
+3,505178 242655,1376 -0,20081034 0,09213461 0 3,7059884 1,503665628 67,40420488 1,596783224 3,815178 0,10918966
+3,505388 242687,1376 -0,20084853 0,09214098 0 3,7062366 1,504484621 67,41309377 1,597652936 3,815388 0,10915147
+3,5054071 242719,1376 -0,20092492 0,092138432 0 3,706332 1,505303615 67,42198266 1,598522647 3,8154071 0,10907508
+3,5054071 242751,1376 -0,20086762 0,092139706 0 3,7062747 1,506122609 67,43087155 1,599392359 3,8154071 0,10913238
+3,5056746 242783,1376 -0,20098221 0,092139706 0 3,7066569 1,506941601 67,43976044 1,600262068 3,8156746 0,10901779
+3,5059419 242815,1376 -0,20081034 0,09214098 0 3,7067523 1,507760594 67,44864933 1,601131779 3,8159419 0,10918966
+3,5058846 242847,1376 -0,20090583 0,092135884 0 3,7067904 1,508579587 67,45753822 1,60200149 3,8158846 0,10909417
+3,5060756 242879,1376 -0,20094402 0,092133336 0 3,7070196 1,509398576 67,46642711 1,602871197 3,8160756 0,10905598
+3,5061328 242911,1376 -0,20073394 0,092135251 0 3,7068667 1,510217566 67,475316 1,603740904 3,8161328 0,10926606
+3,5062475 242943,1376 -0,20086762 0,092133336 0 3,7071152 1,511036555 67,48420489 1,604610611 3,8162475 0,10913238
+3,5064194 242975,1376 -0,20094402 0,092138432 0 3,7073634 1,51185555 67,49309378 1,605480324 3,8164194 0,10905598
+3,5065148 243007,1376 -0,20094402 0,092138432 0 3,7074587 1,512674544 67,50198267 1,606350036 3,8165148 0,10905598
+3,5067439 243039,1376 -0,20082943 0,092141613 0 3,7075734 1,513493535 67,51087156 1,607219745 3,8167439 0,10917057
+3,5066867 243071,1376 -0,20082943 0,092130795 0 3,7075162 1,514312529 67,51976045 1,608089456 3,8166867 0,10917057
+3,5068586 243103,1376 -0,20092492 0,092142262 0 3,7077835 1,51513152 67,52864934 1,608959166 3,8168586 0,10907508
+3,5070496 243135,1376 -0,20084853 0,092136525 0 3,7078981 1,515950514 67,53753823 1,609828877 3,8170496 0,10915147
+3,5071259 243167,1376 -0,20081034 0,092139073 0 3,7079363 1,516769507 67,54642712 1,610698588 3,8171259 0,10918966
+3,5073168 243199,1377 -0,20086762 0,092131428 0 3,7081845 1,517588502 67,55531601 1,611568301 3,8173168 0,10913238
+3,5073743 243231,1377 -0,20077214 0,092138432 0 3,7081463 1,518407496 67,5642049 1,612438013 3,8173743 0,10922786
+3,5075843 243263,1377 -0,20096311 0,092133977 0 3,7085474 1,51922649 67,5730938 1,613307724 3,8175843 0,10903689
+3,5075462 243295,1377 -0,20090583 0,092135884 0 3,708452 1,520045484 67,58198269 1,614177436 3,8175462 0,10909417
+3,5077944 243327,1377 -0,20092492 0,092137158 0 3,7087193 1,520864475 67,59087158 1,615047146 3,8177944 0,10907508
+3,5079854 243359,1377 -0,20092492 0,092137799 0 3,7089102 1,521683466 67,59976047 1,615916854 3,8179854 0,10907508
+3,5081191 243391,1377 -0,2010777 0,092129521 0 3,7091968 1,522502453 67,60864936 1,616786559 3,8181191 0,1089223
+3,508291 243423,1377 -0,20088673 0,092136525 0 3,7091777 1,52332144 67,61753825 1,617656263 3,818291 0,10911327
+3,5084436 243455,1377 -0,20094402 0,092135251 0 3,7093875 1,524140427 67,62642714 1,618525967 3,8184436 0,10905598
+3,5084629 243487,1377 -0,20086762 0,092133336 0 3,7093306 1,524959415 67,63531603 1,619395673 3,8184629 0,10913238
+3,5085773 243519,1377 -0,20094402 0,092132702 0 3,7095213 1,525778402 67,64420492 1,620265378 3,8185773 0,10905598
+3,508883 243551,1377 -0,2010204 0,092138432 0 3,7099035 1,526597387 67,65309381 1,62113508 3,818883 0,1089796
+3,5089593 243583,1377 -0,20096311 0,092141613 0 3,7099223 1,527416377 67,6619827 1,622004788 3,8189593 0,10903689
+3,5090549 243615,1377 -0,20094402 0,092131428 0 3,7099988 1,528235368 67,67087159 1,622874496 3,8190549 0,10905598
+3,509093 243647,1377 -0,20100132 0,09213461 0 3,7100945 1,529054358 67,67976048 1,623744204 3,819093 0,10899868
+3,5093222 243679,1377 -0,20092492 0,092138432 0 3,710247 1,529873344 67,68864937 1,624613908 3,8193222 0,10907508
+3,5092649 243711,1377 -0,20094402 0,092133977 0 3,7102089 1,530692329 67,69753826 1,625483609 3,8192649 0,10905598
+3,5095704 243743,1377 -0,20092492 0,09213461 0 3,7104952 1,531511316 67,70642715 1,626353314 3,8195704 0,10907508
+3,509685 243775,1377 -0,20098221 0,092138432 0 3,7106671 1,532330303 67,71531604 1,627223018 3,819685 0,10901779
+3,5099332 243807,1377 -0,20100132 0,092139706 0 3,7109346 1,533149289 67,72420493 1,628092722 3,8199332 0,10899868
+3,5099332 243839,1378 -0,2010968 0,092136525 0 3,71103 1,533968278 67,73309382 1,628962428 3,8199332 0,1089032
+3,5099525 243871,1378 -0,20103951 0,092145436 0 3,7109921 1,534787264 67,74198271 1,629832132 3,8199525 0,10896049
+3,5101051 243903,1378 -0,20092492 0,092137158 0 3,71103 1,535606253 67,7508716 1,630701838 3,8201051 0,10907508
+3,510277 243935,1378 -0,20113499 0,092138432 0 3,711412 1,53642524 67,75976049 1,631571543 3,820277 0,10886501
+3,5103726 243967,1378 -0,2010586 0,092137799 0 3,7114313 1,537244225 67,76864938 1,632441246 3,8203726 0,1089414
+3,5105255 243999,1378 -0,2010968 0,092139706 0 3,7116222 1,538063209 67,77753827 1,633310947 3,8205255 0,1089032
+3,5105827 244031,1378 -0,20086762 0,092137158 0 3,7114503 1,538882193 67,78642716 1,634180648 3,8205827 0,10913238
+3,5106018 244063,1378 -0,20121138 0,092136525 0 3,7118132 1,539701174 67,79531605 1,635050346 3,8206018 0,10878862
+3,5109265 244095,1378 -0,20096311 0,092139073 0 3,7118895 1,540520159 67,80420494 1,635920048 3,8209265 0,10903689
+3,5110984 244127,1378 -0,20098221 0,09213461 0 3,7120805 1,541339142 67,81309383 1,636789748 3,8210984 0,10901779
+3,5111938 244159,1378 -0,2010204 0,09213461 0 3,7122142 1,54215813 67,82198272 1,637659454 3,8211938 0,1089796
+3,5113275 244191,1378 -0,2010777 0,092137158 0 3,7124052 1,542977116 67,83087161 1,638529158 3,8213275 0,1089223
+3,5114038 244223,1378 -0,2010586 0,092137799 0 3,7124624 1,543796101 67,8397605 1,63939886 3,8214038 0,1089414
+3,5115566 244255,1378 -0,2010968 0,092129521 0 3,7126534 1,544615087 67,84864939 1,640268563 3,8215566 0,1089032
+3,5116904 244287,1378 -0,20113499 0,092135884 0 3,7128253 1,545434074 67,85753828 1,641138267 3,8216904 0,10886501
+3,5118623 244319,1378 -0,2010586 0,092138432 0 3,7129209 1,546253061 67,86642717 1,642007972 3,8218623 0,1089414
+3,5120342 244351,1378 -0,20098221 0,092144169 0 3,7130165 1,547072051 67,87531606 1,64287768 3,8220342 0,10901779
+3,5120723 244383,1378 -0,20119229 0,092143528 0 3,7132647 1,54789104 67,88420495 1,643747387 3,8220723 0,10880771
+3,5123014 244415,1378 -0,2010777 0,092135251 0 3,7133791 1,54871003 67,89309385 1,644617094 3,8223014 0,1089223
+3,5124352 244447,1378 -0,2010968 0,092142262 0 3,713532 1,549529019 67,90198274 1,645486801 3,8224352 0,1089032
+3,5125115 244479,1379 -0,2010586 0,092130147 0 3,7135701 1,55034801 67,91087163 1,646356509 3,8225115 0,1089414
+3,5126071 244511,1379 -0,20126867 0,092138432 0 3,7138758 1,551167002 67,91976052 1,647226219 3,8226071 0,10873133
+3,5126452 244543,1379 -0,20117319 0,092132062 0 3,7138186 1,551985993 67,92864941 1,648095928 3,8226452 0,10882681
+3,5128553 244575,1379 -0,2010586 0,092135251 0 3,7139139 1,552804986 67,9375383 1,648965639 3,8228553 0,1089414
+3,5129316 244607,1379 -0,2010586 0,09212888 0 3,7139902 1,553623977 67,94642719 1,649835348 3,8229316 0,1089414
+3,5132182 244639,1379 -0,20119229 0,092133977 0 3,7144105 1,554442973 67,95531608 1,650705061 3,8232182 0,10880771
+3,513371 244671,1379 -0,20094402 0,092130147 0 3,7143149 1,555261965 67,96420497 1,651574771 3,823371 0,10905598
+3,5133519 244703,1379 -0,20117319 0,092130795 0 3,7145252 1,556080956 67,97309386 1,652444479 3,8233519 0,10882681
+3,5136192 244735,1379 -0,20100132 0,09213461 0 3,7146206 1,556899944 67,98198275 1,653314186 3,8236192 0,10899868
+3,5138102 244767,1379 -0,20117319 0,092130147 0 3,7149835 1,557718931 67,99087164 1,65418389 3,8238102 0,10882681
+3,5137339 244799,1379 -0,20124957 0,092137799 0 3,7149835 1,558537916 67,99976053 1,655053592 3,8237339 0,10875043
+3,5139821 244831,1379 -0,20103951 0,092136525 0 3,7150216 1,559356902 68,00864942 1,655923295 3,8239821 0,10896049
+3,514173 244863,1379 -0,20121138 0,09212888 0 3,7153845 1,560175887 68,01753831 1,656792998 3,824173 0,10878862
+3,514154 244895,1379 -0,20121138 0,092135884 0 3,7153654 1,560994871 68,0264272 1,657662699 3,824154 0,10878862
+3,5143831 244927,1379 -0,20124957 0,092135251 0 3,7156327 1,561813858 68,03531609 1,658532403 3,8243831 0,10875043
+3,5146887 244959,1379 -0,20111589 0,092133977 0 3,7158046 1,562632848 68,04420498 1,659402111 3,8246887 0,10888411
+3,5146887 244991,1379 -0,20096311 0,092135884 0 3,7156518 1,563451837 68,05309387 1,660271818 3,8246887 0,10903689
+3,5147078 245023,1379 -0,20130686 0,092135251 0 3,7160146 1,564270826 68,06198276 1,661141524 3,8247078 0,10869314
+3,5149179 245055,1379 -0,20113499 0,09213461 0 3,7160528 1,565089816 68,07087165 1,662011232 3,8249179 0,10886501
+3,5150898 245087,1379 -0,20115408 0,092142887 0 3,7162437 1,565908805 68,07976054 1,662880939 3,8250898 0,10884592
+3,5153189 245119,138 -0,2010777 0,092137799 0 3,7163966 1,566727797 68,08864943 1,663750649 3,8253189 0,1089223
+3,5152235 245151,138 -0,20113499 0,092136525 0 3,7163584 1,567546785 68,09753832 1,664620354 3,8252235 0,10886501
+3,5154335 245183,138 -0,2010968 0,092133977 0 3,7165303 1,568365772 68,10642721 1,665490058 3,8254335 0,1089032
+3,5156817 245215,138 -0,20111589 0,09213461 0 3,7167976 1,569184761 68,1153161 1,666359764 3,8256817 0,10888411
+3,5157964 245247,138 -0,2010777 0,092137799 0 3,7168741 1,570003748 68,12420499 1,667229469 3,8257964 0,1089223
+3,5158346 245279,138 -0,20113499 0,092135251 0 3,7169695 1,570822737 68,13309388 1,668099176 3,8258346 0,10886501
+3,5160828 245311,138 -0,20121138 0,092140347 0 3,7172942 1,571641727 68,14198277 1,668968884 3,8260828 0,10878862
+3,5161593 245343,138 -0,2010968 0,092136525 0 3,7172561 1,572460718 68,15087166 1,669838592 3,8261593 0,1089032
+3,5163503 245375,138 -0,20130686 0,092130795 0 3,7176571 1,573279706 68,15976055 1,670708298 3,8263503 0,10869314
+3,5164266 245407,138 -0,20115408 0,092137799 0 3,7175806 1,574098699 68,16864944 1,671578008 3,8264266 0,10884592
+3,5164838 245439,138 -0,20113499 0,092136525 0 3,7176187 1,574917689 68,17753833 1,672447716 3,8264838 0,10886501
+3,5166557 245471,138 -0,20130686 0,092133977 0 3,7179625 1,575736677 68,18642722 1,673317421 3,8266557 0,10869314
+3,5167513 245503,138 -0,20124957 0,092133977 0 3,7180009 1,576555661 68,19531611 1,674187122 3,8267513 0,10875043
+3,5170567 245535,138 -0,20117319 0,092137158 0 3,7182298 1,577374646 68,204205 1,675056825 3,8270567 0,10882681
+3,5171523 245567,138 -0,20119229 0,09214098 0 3,7183447 1,578193633 68,2130939 1,67592653 3,8271523 0,10880771
+3,5172095 245599,138 -0,20115408 0,092137158 0 3,7183635 1,579012618 68,22198279 1,676796232 3,8272095 0,10884592
+3,5173814 245631,138 -0,20134506 0,092136525 0 3,7187264 1,579831605 68,23087168 1,677665937 3,8273814 0,10865494
+3,5175152 245663,138 -0,20111589 0,092132062 0 3,718631 1,580650596 68,23976057 1,678535645 3,8275152 0,10888411
+3,5175915 245695,138 -0,20119229 0,09214098 0 3,7187839 1,581469585 68,24864946 1,679405352 3,8275915 0,10880771
+3,5177252 245727,138 -0,2010968 0,092138432 0 3,718822 1,582288577 68,25753835 1,680275062 3,8277252 0,1089032
+3,5178208 245759,1381 -0,20132597 0,092130795 0 3,7191467 1,583107569 68,26642724 1,681144771 3,8278208 0,10867403
+3,5179925 245791,1381 -0,20130686 0,092136525 0 3,7192993 1,58392656 68,27531613 1,68201448 3,8279925 0,10869314
+3,5182219 245823,1381 -0,20128778 0,092131428 0 3,7195096 1,584745548 68,28420502 1,682884185 3,8282219 0,10871222
+3,5185273 245855,1381 -0,20124957 0,09212824 0 3,7197769 1,585564534 68,29309391 1,683753889 3,8285273 0,10875043
+3,5185657 245887,1381 -0,20115408 0,092130147 0 3,7197196 1,586383521 68,3019828 1,684623594 3,8285657 0,10884592
+3,5185463 245919,1381 -0,20115408 0,09214098 0 3,7197003 1,587202511 68,31087169 1,685493301 3,8285463 0,10884592
+3,5188329 245951,1381 -0,20132597 0,092130147 0 3,7201588 1,588021501 68,31976058 1,686363009 3,8288329 0,10867403
+3,5189857 245983,1381 -0,20126867 0,092135884 0 3,7202544 1,588840488 68,32864947 1,687232714 3,8289857 0,10873133
+3,5191767 246015,1381 -0,20123048 0,09213461 0 3,7204072 1,589659476 68,33753836 1,688102419 3,8291767 0,10876952
+3,5193677 246047,1381 -0,20126867 0,092140347 0 3,7206364 1,590478466 68,34642725 1,688972126 3,8293677 0,10873133
+3,5193105 246079,1381 -0,20130686 0,092142262 0 3,7206173 1,591297451 68,35531614 1,689841829 3,8293105 0,10869314
+3,5193677 246111,1381 -0,20121138 0,092132062 0 3,7205791 1,592116438 68,36420503 1,690711533 3,8293677 0,10878862
+3,5196159 246143,1381 -0,20136416 0,092136525 0 3,7209802 1,592935424 68,37309392 1,691581237 3,8296159 0,10863584
+3,5199215 246175,1381 -0,20117319 0,09213461 0 3,7210946 1,593754412 68,38198281 1,692450942 3,8299215 0,10882681
+3,5199788 246207,1381 -0,20130686 0,092141613 0 3,7212856 1,594573396 68,3908717 1,693320644 3,8299788 0,10869314
+3,5200169 246239,1381 -0,20126867 0,092139706 0 3,7212856 1,595392382 68,39976059 1,694190346 3,8300169 0,10873133
+3,5201125 246271,1381 -0,20130686 0,092135884 0 3,7214193 1,596211368 68,40864948 1,69506005 3,8301125 0,10869314
+3,5202653 246303,1381 -0,20132597 0,092142262 0 3,7215912 1,597030357 68,41753837 1,695929756 3,8302653 0,10867403
+3,5205326 246335,1381 -0,20132597 0,09214098 0 3,7218585 1,597849346 68,42642726 1,696799464 3,8305326 0,10867403
+3,5205135 246367,1381 -0,20119229 0,092137799 0 3,7217059 1,598668334 68,43531615 1,697669169 3,8305135 0,10880771
+3,5207045 246399,1382 -0,20117319 0,092144169 0 3,7218776 1,599487321 68,44420504 1,698538874 3,8307045 0,10882681
+3,5208192 246431,1382 -0,20132597 0,092139706 0 3,7221451 1,600306311 68,45309393 1,699408581 3,8308192 0,10867403
+3,5209911 246463,1382 -0,20126867 0,092140347 0 3,7222598 1,6011253 68,46198282 1,700278288 3,8309911 0,10873133
+3,5212011 246495,1382 -0,20145965 0,092137799 0 3,7226608 1,601944289 68,47087171 1,701147994 3,8312011 0,10854035
+3,5212965 246527,1382 -0,20126867 0,092138432 0 3,7225652 1,602763281 68,4797606 1,702017703 3,8312965 0,10873133
+3,5216212 246559,1382 -0,20140235 0,092135884 0 3,7230237 1,603582269 68,48864949 1,702887409 3,8316212 0,10859765
+3,5216212 246591,1382 -0,20132597 0,092133977 0 3,7229471 1,60440126 68,49753838 1,703757118 3,8316212 0,10867403
+3,5216403 246623,1382 -0,20138326 0,092136525 0 3,7230237 1,60522025 68,50642727 1,704626826 3,8316403 0,10861674
+3,5217166 246655,1382 -0,20145965 0,092139073 0 3,7231762 1,60603924 68,51531616 1,705496533 3,8317166 0,10854035
+3,5220222 246687,1382 -0,20128778 0,092135884 0 3,72331 1,606858227 68,52420505 1,706366238 3,8320222 0,10871222
+3,5220413 246719,1382 -0,20144054 0,092139706 0 3,7234819 1,607677215 68,53309395 1,707235943 3,8320413 0,10855946
+3,5223279 246751,1382 -0,20130686 0,092135884 0 3,7236347 1,608496202 68,54198284 1,708105648 3,8323279 0,10869314
+3,5225189 246783,1382 -0,20136416 0,092138432 0 3,7238832 1,60931519 68,55087173 1,708975353 3,8325189 0,10863584
+3,5226333 246815,1382 -0,20132597 0,09214098 0 3,7239592 1,610134178 68,55976062 1,709845059 3,8326333 0,10867403
+3,5225761 246847,1382 -0,20123048 0,09212888 0 3,7238066 1,610953165 68,56864951 1,710714764 3,8325761 0,10876952
+3,5228817 246879,1382 -0,20132597 0,092133336 0 3,7242076 1,611772153 68,5775384 1,711584469 3,8328817 0,10867403
+3,522958 246911,1382 -0,20140235 0,092140347 0 3,7243605 1,612591135 68,58642729 1,712454168 3,832958 0,10859765
+3,5232637 246943,1382 -0,20134506 0,092145436 0 3,7246087 1,61341012 68,59531618 1,71332387 3,8332637 0,10865494
+3,5233018 246975,1382 -0,20149784 0,09214098 0 3,7247996 1,614229105 68,60420507 1,714193573 3,8333018 0,10850216
+3,5234737 247007,1382 -0,20153603 0,092133977 0 3,7250097 1,615048092 68,61309396 1,715063278 3,8334737 0,10846397
+3,5236266 247039,1383 -0,20145965 0,092137158 0 3,7250862 1,615867077 68,62198285 1,71593298 3,8336266 0,10854035
+3,523741 247071,1383 -0,20140235 0,092142887 0 3,7251434 1,616686063 68,63087174 1,716802683 3,833741 0,10859765
+3,5239129 247103,1383 -0,20144054 0,092137799 0 3,7253535 1,61750505 68,63976063 1,717672387 3,8339129 0,10855946
+3,5239701 247135,1383 -0,20147875 0,09213461 0 3,7254488 1,618324037 68,64864952 1,718542092 3,8339701 0,10852125
+3,5243139 247167,1383 -0,20145965 0,092135884 0 3,7257736 1,619143022 68,65753841 1,719411794 3,8343139 0,10854035
+3,5244095 247199,1383 -0,20136416 0,092139706 0 3,7257738 1,619962006 68,6664273 1,720281495 3,8344095 0,10863584
+3,5243905 247231,1383 -0,20144054 0,092132062 0 3,725831 1,620780991 68,67531619 1,721151198 3,8343905 0,10855946
+3,5246577 247263,1383 -0,20134506 0,09212824 0 3,7260027 1,621599976 68,68420508 1,7220209 3,8346577 0,10865494
+3,5247343 247295,1383 -0,20149784 0,092135884 0 3,7262321 1,62241896 68,69309397 1,722890601 3,8347343 0,10850216
+3,5248296 247327,1383 -0,20144054 0,092144802 0 3,7262702 1,623237943 68,70198286 1,723760301 3,8348296 0,10855946
+3,5251162 247359,1383 -0,20134506 0,092130147 0 3,7264612 1,624056927 68,71087175 1,724630003 3,8351162 0,10865494
+3,5251925 247391,1383 -0,20144054 0,092136525 0 3,7266331 1,624875914 68,71976064 1,725499707 3,8351925 0,10855946
+3,5252116 247423,1383 -0,20140235 0,092140347 0 3,726614 1,625694902 68,72864953 1,726369413 3,8352116 0,10859765
+3,5254982 247455,1383 -0,20138326 0,092132702 0 3,7268815 1,626513891 68,73753842 1,727239119 3,8354982 0,10861674
+3,5255744 247487,1383 -0,20151694 0,092135251 0 3,7270913 1,62733288 68,74642731 1,728108826 3,8355744 0,10848306
+3,5257463 247519,1383 -0,20142145 0,092142887 0 3,7271678 1,628151869 68,7553162 1,728978533 3,8357463 0,10857855
+3,5258226 247551,1383 -0,20145965 0,092142887 0 3,7272823 1,62897086 68,76420509 1,729848242 3,8358226 0,10854035
+3,5260136 247583,1383 -0,20151694 0,09213461 0 3,7275305 1,629789853 68,77309398 1,730717952 3,8360136 0,10848306
+3,526243 247615,1383 -0,20140235 0,092137158 0 3,7276454 1,630608845 68,78198287 1,731587662 3,836243 0,10859765
+3,526262 247647,1383 -0,20151694 0,09214098 0 3,7277789 1,631427832 68,79087176 1,732457366 3,836262 0,10848306
+3,5264912 247679,1384 -0,20142145 0,092137158 0 3,7279127 1,63224682 68,79976065 1,733327072 3,8364912 0,10857855
+3,5265865 247711,1384 -0,20145965 0,09212888 0 3,7280462 1,633065807 68,80864954 1,734196776 3,8365865 0,10854035
+3,5268922 247743,1384 -0,20149784 0,092135884 0 3,72839 1,633884796 68,81753843 1,735066483 3,8368922 0,10850216
+3,5268731 247775,1384 -0,20149784 0,092133977 0 3,7283709 1,634703784 68,82642732 1,735936188 3,8368731 0,10850216
+3,5271022 247807,1384 -0,20161243 0,092130147 0 3,7287147 1,635522769 68,83531621 1,73680589 3,8371022 0,10838757
+3,527236 247839,1384 -0,20155513 0,092139706 0 3,7287912 1,636341752 68,84420511 1,737675591 3,837236 0,10844487
+3,5273507 247871,1384 -0,20144054 0,092132702 0 3,7287912 1,637160738 68,853094 1,738545295 3,8373507 0,10855946
+3,527446 247903,1384 -0,20151694 0,092135251 0 3,7289629 1,637979727 68,86198289 1,739415001 3,837446 0,10848306
+3,5276752 247935,1384 -0,20147875 0,092135251 0 3,7291539 1,638798714 68,87087178 1,740284706 3,8376752 0,10852125
+3,527828 247967,1384 -0,20142145 0,092137799 0 3,7292495 1,639617704 68,87976067 1,741154413 3,837828 0,10857855
+3,5279999 247999,1384 -0,20165062 0,092132702 0 3,7296505 1,640436693 68,88864956 1,74202412 3,8379999 0,10834938
+3,5280571 248031,1384 -0,20142145 0,092137799 0 3,7294786 1,641255682 68,89753845 1,742893827 3,8380571 0,10857855
+3,5281336 248063,1384 -0,20147875 0,092138432 0 3,7296124 1,642074672 68,90642734 1,743763534 3,8381336 0,10852125
+3,5283628 248095,1384 -0,20159332 0,092139706 0 3,7299562 1,642893662 68,91531623 1,744633242 3,8383628 0,10840668
+3,52842 248127,1384 -0,20145965 0,092133336 0 3,7298796 1,643712652 68,92420512 1,74550295 3,83842 0,10854035
+3,5286875 248159,1384 -0,20149784 0,09213461 0 3,7301853 1,64453164 68,93309401 1,746372655 3,8386875 0,10850216
+3,5289357 248191,1384 -0,20144054 0,092132702 0 3,7303762 1,645350627 68,9419829 1,747242359 3,8389357 0,10855946
+3,5290885 248223,1384 -0,20170791 0,092138432 0 3,7307963 1,646169613 68,95087179 1,748112063 3,8390885 0,10829209
+3,5291648 248255,1384 -0,20144054 0,092137799 0 3,7306054 1,646988599 68,95976068 1,748981767 3,8391648 0,10855946
+3,5293558 248287,1384 -0,20144054 0,092139073 0 3,7307963 1,647807588 68,96864957 1,749851473 3,8393558 0,10855946
+3,5293748 248319,1385 -0,20157424 0,092133977 0 3,7309492 1,648626579 68,97753846 1,750721181 3,8393748 0,10842576
+3,5295658 248351,1385 -0,20142145 0,09214098 0 3,7309873 1,64944557 68,98642735 1,75159089 3,8395658 0,10857855
+3,5297568 248383,1385 -0,20151694 0,092130795 0 3,7312737 1,65026456 68,99531624 1,752460598 3,8397568 0,10848306
+3,5298905 248415,1385 -0,20151694 0,092132702 0 3,7314074 1,651083549 69,00420513 1,753330305 3,8398905 0,10848306
+3,5301771 248447,1385 -0,20153603 0,092139073 0 3,7317131 1,651902538 69,01309402 1,75420001 3,8401771 0,10846397
+3,5301771 248479,1385 -0,20147875 0,092136525 0 3,7316558 1,652721524 69,02198291 1,755069714 3,8401771 0,10852125
+3,5301962 248511,1385 -0,20147875 0,092135251 0 3,7316749 1,653540515 69,0308718 1,755939423 3,8401962 0,10852125
+3,5306163 248543,1385 -0,201727 0,092135884 0 3,7323432 1,654359506 69,03976069 1,756809132 3,8406163 0,108273
+3,5305972 248575,1385 -0,20153603 0,092138432 0 3,7321332 1,655178499 69,04864958 1,757678842 3,8405972 0,10846397
+3,5307882 248607,1385 -0,20159332 0,092135884 0 3,7323816 1,655997492 69,05753847 1,758548553 3,8407882 0,10840668
+3,5309029 248639,1385 -0,20159332 0,092130795 0 3,7324963 1,656816485 69,06642736 1,759418264 3,8409029 0,10840668
+3,5310745 248671,1385 -0,20144054 0,092133977 0 3,7325151 1,657635477 69,07531625 1,760287974 3,8410745 0,10855946
+3,5312655 248703,1385 -0,20155513 0,092138432 0 3,7328205 1,658454471 69,08420514 1,761157686 3,8412655 0,10844487
+3,5312848 248735,1385 -0,20159332 0,092139706 0 3,7328782 1,659273463 69,09309403 1,762027396 3,8412848 0,10840668
+3,5315711 248767,1385 -0,20159332 0,092135884 0 3,7331645 1,660092453 69,10198292 1,762897103 3,8415711 0,10840668
+3,5316284 248799,1385 -0,20157424 0,09213461 0 3,7332027 1,660911441 69,11087181 1,763766809 3,8416284 0,10842576
+3,5318003 248831,1385 -0,20166972 0,09213461 0 3,73347 1,66173043 69,1197607 1,764636515 3,8418003 0,10833028
+3,5318577 248863,1385 -0,20165062 0,092135251 0 3,7335083 1,66254942 69,12864959 1,765506223 3,8418577 0,10834938
+3,5321441 248895,1385 -0,20147875 0,09214098 0 3,7336228 1,66336841 69,13753848 1,766375931 3,8421441 0,10852125
+3,5324116 248927,1385 -0,20159332 0,092138432 0 3,734005 1,664187398 69,14642737 1,767245636 3,8424116 0,10840668
+3,5324306 248959,1386 -0,20157424 0,092138432 0 3,734005 1,665006382 69,15531626 1,768115337 3,8424306 0,10842576
+3,5325642 248991,1386 -0,20144054 0,092139073 0 3,7340047 1,665825366 69,16420516 1,768985038 3,8425642 0,10855946
+3,5326598 249023,1386 -0,20157424 0,092137158 0 3,7342341 1,666644348 69,17309405 1,769854738 3,8426598 0,10842576
+3,532908 249055,1386 -0,20153603 0,092144802 0 3,7344439 1,667463335 69,18198294 1,770724442 3,842908 0,10846397
+3,5330226 249087,1386 -0,20157424 0,092130795 0 3,734597 1,668282321 69,19087183 1,771594146 3,8430226 0,10842576
+3,5332708 249119,1386 -0,20165062 0,092135884 0 3,7349215 1,669101308 69,19976072 1,77246385 3,8432708 0,10834938
+3,5333474 249151,1386 -0,201727 0,092132062 0 3,7350743 1,669920295 69,20864961 1,773333554 3,8433474 0,108273
+3,5334809 249183,1386 -0,20153603 0,092138432 0 3,7350168 1,670739281 69,2175385 1,774203258 3,8434809 0,10846397
+3,5336528 249215,1386 -0,20157424 0,092137799 0 3,7352271 1,671558268 69,22642739 1,775072962 3,8436528 0,10842576
+3,5338247 249247,1386 -0,20182249 0,092137158 0 3,7356472 1,672377255 69,23531628 1,775942667 3,8438247 0,10817751
+3,5340538 249279,1386 -0,20163152 0,092136525 0 3,7356853 1,673196243 69,24420517 1,776812373 3,8440538 0,10836848
+3,5341494 249311,1386 -0,20159332 0,092135884 0 3,7357428 1,674015232 69,25309406 1,777682079 3,8441494 0,10840668
+3,5342448 249343,1386 -0,20155513 0,092132702 0 3,7357998 1,674834218 69,26198295 1,778551782 3,8442448 0,10844487
+3,5343404 249375,1386 -0,201727 0,092131428 0 3,7360673 1,675653206 69,27087184 1,779421488 3,8443404 0,108273
+3,5345695 249407,1386 -0,20163152 0,092130795 0 3,736201 1,676472193 69,27976073 1,780291192 3,8445695 0,10836848
+3,5346651 249439,1386 -0,20168881 0,092130147 0 3,7363539 1,677291179 69,28864962 1,781160896 3,8446651 0,10831119
+3,5349514 249471,1386 -0,2017843 0,09212824 0 3,7367358 1,678110168 69,29753851 1,782030602 3,8449514 0,1082157
+3,5349324 249503,1386 -0,20161243 0,092135251 0 3,7365448 1,678929157 69,3064274 1,782900309 3,8449324 0,10838757
+3,5352571 249535,1386 -0,20182249 0,092137799 0 3,7370796 1,679748145 69,31531629 1,783770014 3,8452571 0,10817751
+3,5353143 249567,1386 -0,2018034 0,092132702 0 3,7371178 1,680567134 69,32420518 1,784639721 3,8453143 0,1081966
+3,535429 249599,1387 -0,20168881 0,092133977 0 3,7371178 1,681386122 69,33309407 1,785509427 3,845429 0,10831119
+3,5355625 249631,1387 -0,20161243 0,092137158 0 3,737175 1,682205109 69,34198296 1,786379131 3,8455625 0,10838757
+3,5357535 249663,1387 -0,20165062 0,092137799 0 3,7374041 1,683024095 69,35087185 1,787248835 3,8457535 0,10834938
+3,5360782 249695,1387 -0,2017843 0,092133977 0 3,7378626 1,683843082 69,35976074 1,788118539 3,8460782 0,1082157
+3,5360782 249727,1387 -0,2017843 0,092136525 0 3,7378626 1,684662071 69,36864963 1,788988245 3,8460782 0,1082157
+3,536231 249759,1387 -0,20165062 0,092137158 0 3,7378817 1,685481058 69,37753852 1,78985795 3,846231 0,10834938
+3,5363457 249791,1387 -0,20184159 0,092133977 0 3,7381873 1,686300047 69,38642741 1,790727657 3,8463457 0,10815841
+3,5363839 249823,1387 -0,201727 0,092135251 0 3,7381108 1,687119036 69,3953163 1,791597364 3,8463839 0,108273
+3,5368803 249855,1387 -0,2017843 0,092135884 0 3,7386646 1,687938024 69,40420519 1,792467068 3,8468803 0,1082157
+3,536804 249887,1387 -0,2018607 0,092133977 0 3,7386646 1,688757013 69,41309408 1,793336776 3,846804 0,1081393
+3,537014 249919,1387 -0,2017843 0,092135884 0 3,7387984 1,689576003 69,42198297 1,794206483 3,847014 0,1082157
+3,5371478 249951,1387 -0,20182249 0,092130795 0 3,7389703 1,690394992 69,43087186 1,795076189 3,8471478 0,10817751
+3,5373387 249983,1387 -0,2018607 0,092138432 0 3,7391994 1,69121398 69,43976075 1,795945895 3,8473387 0,1081393
+3,5375297 250015,1387 -0,20176521 0,092133336 0 3,739295 1,692032966 69,44864964 1,796815599 3,8475297 0,10823479
+3,5375869 250047,1387 -0,2018034 0,092137158 0 3,7393904 1,692851954 69,45753853 1,797685304 3,8475869 0,1081966
+3,5378544 250079,1387 -0,2017843 0,092135884 0 3,7396388 1,693670939 69,46642742 1,798555006 3,8478544 0,1082157
+3,5379307 250111,1387 -0,201727 0,092135884 0 3,7396576 1,694489925 69,47531631 1,799424709 3,8479307 0,108273
+3,538007 250143,1387 -0,2018607 0,09213461 0 3,7398677 1,695308913 69,48420521 1,800294415 3,848007 0,1081393
+3,5383317 250175,1387 -0,201727 0,092135884 0 3,7400587 1,6961279 69,4930941 1,80116412 3,8483317 0,108273
+3,5385036 250207,1387 -0,201727 0,092135251 0 3,7402306 1,696946888 69,50198299 1,802033825 3,8485036 0,108273
+3,5386565 250239,1388 -0,20159332 0,092140347 0 3,7402499 1,697765875 69,51087188 1,80290353 3,8486565 0,10840668
+3,5387137 250271,1388 -0,2017843 0,092139073 0 3,7404981 1,698584861 69,51976077 1,803773233 3,8487137 0,1082157
+3,5389812 250303,1388 -0,20187978 0,092139706 0 3,7408609 1,699403845 69,52864966 1,804642934 3,8489812 0,10812022
+3,5390384 250335,1388 -0,2017843 0,092139706 0 3,7408228 1,700222832 69,53753855 1,805512639 3,8490384 0,1082157
+3,5392103 250367,1388 -0,20174611 0,092130147 0 3,7409563 1,701041822 69,54642744 1,806382347 3,8492103 0,10825389
+3,5394394 250399,1388 -0,20176521 0,092130795 0 3,7412047 1,701860809 69,55531633 1,807252051 3,8494394 0,10823479
+3,5394967 250431,1388 -0,20184159 0,092139073 0 3,7413383 1,702679797 69,56420522 1,808121756 3,8494967 0,10815841
+3,5396304 250463,1388 -0,20199437 0,092136525 0 3,7416248 1,703498781 69,57309411 1,808991457 3,8496304 0,10800563
+3,5398023 250495,1388 -0,20170791 0,092131428 0 3,7415102 1,704317764 69,581983 1,809861158 3,8498023 0,10829209
+3,5398979 250527,1388 -0,20182249 0,092132062 0 3,7417204 1,70513675 69,59087189 1,810730861 3,8498979 0,10817751
+3,5402224 250559,1388 -0,2018034 0,092139073 0 3,7420259 1,705955735 69,59976078 1,811600563 3,8502224 0,1081966
+3,5403943 250591,1388 -0,2018034 0,092139073 0 3,7421978 1,706774721 69,60864967 1,812470267 3,8503943 0,1081966
+3,5406234 250623,1388 -0,20187978 0,092140347 0 3,7425032 1,707593709 69,61753856 1,813339973 3,8506234 0,10812022
+3,5405662 250655,1388 -0,20187978 0,092140347 0 3,7424459 1,708412696 69,62642745 1,814209677 3,8505662 0,10812022
+3,5406234 250687,1388 -0,2018034 0,092136525 0 3,7424269 1,709231684 69,63531634 1,815079383 3,8506234 0,1081966
+3,5408528 250719,1388 -0,20205167 0,092139706 0 3,7429044 1,710050671 69,64420523 1,815949087 3,8508528 0,10794833
+3,5409863 250751,1388 -0,20191798 0,092139073 0 3,7429042 1,710869661 69,65309412 1,816818794 3,8509863 0,10808202
+3,5410628 250783,1388 -0,2018607 0,092140347 0 3,7429235 1,711688651 69,66198301 1,817688502 3,8510628 0,1081393
+3,5413682 250815,1388 -0,2018607 0,092133977 0 3,7432289 1,712507643 69,6708719 1,818558212 3,8513682 0,1081393
+3,5415976 250847,1388 -0,20199437 0,092141613 0 3,743592 1,713326635 69,67976079 1,819427922 3,8515976 0,10800563
+3,5416548 250879,1389 -0,20182249 0,092137799 0 3,7434773 1,714145622 69,68864968 1,820297627 3,8516548 0,10817751
+3,5419796 250911,1389 -0,2017843 0,092137799 0 3,7437639 1,714964611 69,69753857 1,821167333 3,8519796 0,1082157
+3,5421515 250943,1389 -0,201727 0,092139706 0 3,7438784 1,7157836 69,70642746 1,822037039 3,8521515 0,108273
+3,5422659 250975,1389 -0,20189889 0,092130795 0 3,7441647 1,716602591 69,71531635 1,822906748 3,8522659 0,10810111
+3,5423996 251007,1389 -0,20189889 0,092130795 0 3,7442985 1,717421582 69,72420524 1,823776457 3,8523996 0,10810111
+3,5425525 251039,1389 -0,20184159 0,092129521 0 3,7443941 1,718240572 69,73309413 1,824646165 3,8525525 0,10815841
+3,5426478 251071,1389 -0,2017843 0,092133336 0 3,7444322 1,719059562 69,74198302 1,825515872 3,8526478 0,1082157
+3,5428579 251103,1389 -0,20184159 0,092135884 0 3,7446995 1,719878554 69,75087191 1,826385582 3,8528579 0,10815841
+3,5429726 251135,1389 -0,20201346 0,092139706 0 3,7449861 1,720697547 69,7597608 1,827255293 3,8529726 0,10798654
+3,5430489 251167,1389 -0,20201346 0,09212888 0 3,7450624 1,721516541 69,76864969 1,828125005 3,8530489 0,10798654
+3,5433354 251199,1389 -0,20187978 0,092135251 0 3,7452152 1,722335538 69,77753858 1,82899472 3,8533354 0,10812022
+3,5434117 251231,1389 -0,20189889 0,092137799 0 3,7453105 1,723154534 69,78642747 1,829864433 3,8534117 0,10810111
+3,5436411 251263,1389 -0,20195618 0,09213461 0 3,7455974 1,723973529 69,79531636 1,830734146 3,8536411 0,10804382
+3,5437555 251295,1389 -0,2017843 0,092135251 0 3,7455399 1,724792526 69,80420526 1,831603862 3,8537555 0,1082157
+3,5438321 251327,1389 -0,20193708 0,092142262 0 3,745769 1,725611523 69,81309415 1,832473576 3,8538321 0,10806292
+3,5441184 251359,1389 -0,20207076 0,09213461 0 3,7461891 1,72643052 69,82198304 1,833343292 3,8541184 0,10792924
+3,5441184 251391,1389 -0,20193708 0,092141613 0 3,7460556 1,727249517 69,83087193 1,834213007 3,8541184 0,10806292
+3,5443475 251423,1389 -0,20189889 0,092135884 0 3,7462463 1,728068515 69,83976082 1,835082723 3,8543475 0,10810111
+3,5445385 251455,1389 -0,20201346 0,092132062 0 3,746552 1,728887512 69,84864971 1,835952438 3,8545385 0,10798654
+3,5447679 251487,1389 -0,20182249 0,092137158 0 3,7465904 1,729706508 69,8575386 1,836822152 3,8547679 0,10817751
+3,5449204 251519,139 -0,20184159 0,09214098 0 3,746762 1,730525502 69,86642749 1,837691865 3,8549204 0,10815841
+3,5450733 251551,139 -0,20197527 0,092135251 0 3,7470486 1,731344496 69,87531638 1,838561576 3,8550733 0,10802473
+3,545188 251583,139 -0,2018034 0,09213461 0 3,7469914 1,73216349 69,88420527 1,839431287 3,855188 0,1081966
+3,5452642 251615,139 -0,20212805 0,092140347 0 3,7473922 1,732982484 69,89309416 1,840301 3,8552642 0,10787195
+3,5454743 251647,139 -0,2018607 0,092142887 0 3,747335 1,733801475 69,90198305 1,841170709 3,8554743 0,1081393
+3,5456462 251679,139 -0,20214716 0,092135251 0 3,7477934 1,734620466 69,91087194 1,842040417 3,8556462 0,10785284
+3,5459137 251711,139 -0,20195618 0,092146717 0 3,74787 1,735439461 69,91976083 1,84291013 3,8559137 0,10804382
+3,5460665 251743,139 -0,20187978 0,092137799 0 3,7479463 1,736258453 69,92864972 1,84377984 3,8560665 0,10812022
+3,5461619 251775,139 -0,20201346 0,092136525 0 3,7481754 1,737077442 69,93753861 1,844649547 3,8561619 0,10798654
+3,546391 251807,139 -0,20201346 0,092135251 0 3,7484045 1,737896432 69,9464275 1,845519254 3,856391 0,10798654
+3,5463719 251839,139 -0,20195618 0,092137158 0 3,7483282 1,738715423 69,95531639 1,846388963 3,8563719 0,10804382
+3,5466776 251871,139 -0,20195618 0,092139073 0 3,7486339 1,739534416 69,96420528 1,847258674 3,8566776 0,10804382
+3,546773 251903,139 -0,20187978 0,092137799 0 3,7486527 1,740353409 69,97309417 1,848128385 3,856773 0,10812022
+3,5469067 251935,139 -0,20176521 0,092139073 0 3,748672 1,7411724 69,98198306 1,848998093 3,8569067 0,10823479
+3,5471168 251967,139 -0,20201346 0,092135884 0 3,7491302 1,74199139 69,99087195 1,8498678 3,8571168 0,10798654
+3,5471933 251999,139 -0,20208986 0,09214098 0 3,7492831 1,742810381 69,99976084 1,850737509 3,8571933 0,10791014
+3,5472505 252031,139 -0,20212805 0,092133977 0 3,7493787 1,743629372 70,00864973 1,851607218 3,8572505 0,10787195
+3,5475752 252063,139 -0,20207076 0,092137158 0 3,7496459 1,744448367 70,01753862 1,852476931 3,8575752 0,10792924
+3,5477853 252095,139 -0,20207076 0,092131428 0 3,749856 1,74526736 70,02642751 1,853346642 3,8577853 0,10792924
+3,5478806 252127,139 -0,20193708 0,092133977 0 3,7498178 1,746086354 70,0353164 1,854216354 3,8578806 0,10806292
+3,5479188 252159,1391 -0,20195618 0,092132702 0 3,7498751 1,746905348 70,04420529 1,855086066 3,8579188 0,10804382
+3,5482817 252191,1391 -0,20199437 0,09212824 0 3,7502761 1,747724341 70,05309418 1,855955777 3,8582817 0,10800563
+3,5485301 252223,1391 -0,20199437 0,092139706 0 3,7505245 1,748543332 70,06198307 1,856825485 3,8585301 0,10800563
+3,5484536 252255,1391 -0,20208986 0,092132702 0 3,7505434 1,749362322 70,07087196 1,857695193 3,8584536 0,10791014
+3,5487783 252287,1391 -0,20203257 0,092137799 0 3,7508109 1,750181312 70,07976085 1,858564901 3,8587783 0,10796743
+3,5490074 252319,1391 -0,20184159 0,092139073 0 3,750849 1,751000303 70,08864974 1,859434609 3,8590074 0,10815841
+3,5491793 252351,1391 -0,20193708 0,09214098 0 3,7511163 1,751819294 70,09753863 1,860304318 3,8591793 0,10806292
+3,5494084 252383,1391 -0,20210895 0,092139073 0 3,7515173 1,752638284 70,10642752 1,861174026 3,8594084 0,10789105
+3,5492749 252415,1391 -0,20214716 0,092136525 0 3,7514222 1,753457275 70,11531642 1,862043734 3,8592749 0,10785284
+3,5493512 252447,1391 -0,20201346 0,092138432 0 3,7513647 1,754276266 70,12420531 1,862913443 3,8593512 0,10798654
+3,5497713 252479,1391 -0,20199437 0,092135884 0 3,7517657 1,755095256 70,1330942 1,863783151 3,8597713 0,10800563
+3,5499432 252511,1391 -0,20210895 0,092132062 0 3,7520521 1,755914245 70,14198309 1,864652857 3,8599432 0,10789105
+3,5501342 252543,1391 -0,20210895 0,092135251 0 3,752243 1,756733233 70,15087198 1,865522563 3,8601342 0,10789105
+3,5502107 252575,1391 -0,20203257 0,09214098 0 3,7522433 1,75755222 70,15976087 1,866392267 3,8602107 0,10796743
+3,5502679 252607,1391 -0,20201346 0,092130795 0 3,7522814 1,758371207 70,16864976 1,867261972 3,8602679 0,10798654
+3,5504971 252639,1391 -0,20212805 0,09213461 0 3,752625 1,759190194 70,17753865 1,868131676 3,8604971 0,10787195
+3,5505927 252671,1391 -0,20199437 0,092138432 0 3,7525871 1,760009182 70,18642754 1,869001381 3,8605927 0,10800563
+3,5508218 252703,1391 -0,20201346 0,09213461 0 3,7528353 1,760828169 70,19531643 1,869871086 3,8608218 0,10798654
+3,5509174 252735,1391 -0,20229992 0,092135251 0 3,7532172 1,761647158 70,20420532 1,870740793 3,8609174 0,10770008
+3,5511847 252767,1391 -0,20218535 0,092141613 0 3,75337 1,762466147 70,21309421 1,871610499 3,8611847 0,10781465
+3,55128 252799,1392 -0,20212805 0,092131428 0 3,753408 1,763285135 70,2219831 1,872480205 3,86128 0,10787195
+3,5514519 252831,1392 -0,20197527 0,092143528 0 3,7534273 1,764104123 70,23087199 1,87334991 3,8614519 0,10802473
+3,5517576 252863,1392 -0,20203257 0,092135884 0 3,7537901 1,764923111 70,23976088 1,874219616 3,8617576 0,10796743
+3,5517766 252895,1392 -0,20218535 0,092132062 0 3,753962 1,765742099 70,24864977 1,875089322 3,8617766 0,10781465
+3,5518723 252927,1392 -0,20207076 0,092137158 0 3,753943 1,766561087 70,25753866 1,875959027 3,8618723 0,10792924
+3,5519295 252959,1392 -0,20218535 0,092137799 0 3,7541149 1,767380077 70,26642755 1,876828734 3,8619295 0,10781465
+3,5523114 252991,1392 -0,20197527 0,092135884 0 3,7542868 1,768199067 70,27531644 1,877698443 3,8623114 0,10802473
+3,5524642 253023,1392 -0,20228083 0,092135251 0 3,754745 1,769018059 70,28420533 1,878568152 3,8624642 0,10771917
+3,5525978 253055,1392 -0,20208986 0,092137158 0 3,7546875 1,769837049 70,29309422 1,87943786 3,8625978 0,10791014
+3,5528271 253087,1392 -0,20220444 0,092137799 0 3,7550316 1,770656039 70,30198311 1,880307567 3,8628271 0,10779556
+3,552999 253119,1392 -0,20210895 0,092135884 0 3,7551079 1,771475028 70,310872 1,881177274 3,862999 0,10789105
+3,5532281 253151,1392 -0,20197527 0,092136525 0 3,7552035 1,772294015 70,31976089 1,882046978 3,8632281 0,10802473
+3,5532091 253183,1392 -0,20229992 0,092135251 0 3,7555089 1,773113005 70,32864978 1,882916686 3,8632091 0,10770008
+3,5534 253215,1392 -0,20208986 0,092139073 0 3,7554898 1,773931997 70,33753867 1,883786396 3,8634 0,10791014
+3,5537438 253247,1392 -0,20208986 0,092140347 0 3,7558336 1,774750985 70,34642756 1,884656102 3,8637438 0,10791014
+3,553782 253279,1392 -0,20214716 0,092133977 0 3,7559292 1,775569976 70,35531645 1,88552581 3,863782 0,10785284
+3,5538964 253311,1392 -0,20216624 0,09213461 0 3,7560627 1,776388963 70,36420534 1,886395514 3,8638964 0,10783376
+3,5540874 253343,1392 -0,20214716 0,092138432 0 3,7562346 1,77720795 70,37309423 1,887265219 3,8640874 0,10785284
+3,5543358 253375,1392 -0,20212805 0,092137799 0 3,756464 1,778026939 70,38198312 1,888134925 3,8643358 0,10787195
+3,5544503 253407,1392 -0,20222354 0,092135884 0 3,7566738 1,778845928 70,39087201 1,889004632 3,8644503 0,10777646
+3,5546412 253439,1393 -0,20214716 0,092131428 0 3,7567885 1,779664917 70,3997609 1,889874339 3,8646412 0,10785284
+3,5546222 253471,1393 -0,20207076 0,092135884 0 3,7566929 1,780483907 70,40864979 1,890744046 3,8646222 0,10792924
+3,5548706 253503,1393 -0,20228083 0,092144169 0 3,7571514 1,781302896 70,41753868 1,891613753 3,8648706 0,10771917
+3,555176 253535,1393 -0,20199437 0,092132702 0 3,7571704 1,782121887 70,42642757 1,892483462 3,865176 0,10800563
+3,5552335 253567,1393 -0,20210895 0,092138432 0 3,7573423 1,782940882 70,43531647 1,893353175 3,8652335 0,10789105
+3,5554626 253599,1393 -0,20212805 0,092140347 0 3,7575908 1,783759873 70,44420536 1,894222884 3,8654626 0,10787195
+3,555558 253631,1393 -0,20220444 0,092139706 0 3,7577624 1,784578867 70,45309425 1,895092595 3,865558 0,10779556
+3,5558255 253663,1393 -0,20218535 0,092139706 0 3,7580109 1,78539786 70,46198314 1,895962306 3,8658255 0,10781465
+3,555959 253695,1393 -0,20220444 0,092138432 0 3,7581635 1,786216851 70,47087203 1,896832014 3,865959 0,10779556
+3,5561309 253727,1393 -0,20222354 0,092137799 0 3,7583544 1,787035842 70,47976092 1,897701723 3,8661309 0,10777646
+3,5562837 253759,1393 -0,20210895 0,092146717 0 3,7583926 1,787854837 70,48864981 1,898571436 3,8662837 0,10789105
+3,5565128 253791,1393 -0,20226173 0,09213461 0 3,7587745 1,788673834 70,4975387 1,899441151 3,8665128 0,10773827
+3,5565512 253823,1393 -0,20224264 0,092139706 0 3,7587938 1,789492827 70,50642759 1,900310862 3,8665512 0,10775736
+3,5568948 253855,1393 -0,20231903 0,092135884 0 3,7592139 1,790311819 70,51531648 1,901180572 3,8668948 0,10768097
+3,5568566 253887,1393 -0,20226173 0,092135884 0 3,7591183 1,791130808 70,52420537 1,902050279 3,8668566 0,10773827
+3,5571241 253919,1393 -0,20218535 0,09213461 0 3,7593095 1,791949799 70,53309426 1,902919987 3,8671241 0,10781465
+3,557277 253951,1393 -0,20222354 0,092137799 0 3,7595005 1,792768788 70,54198315 1,903789694 3,867277 0,10777646
+3,5574296 253983,1393 -0,20229992 0,092136525 0 3,7597294 1,793587779 70,55087204 1,904659402 3,8674296 0,10770008
+3,5576205 254015,1393 -0,20228083 0,092132062 0 3,7599013 1,794406772 70,55976093 1,905529114 3,8676205 0,10771917
+3,5578499 254047,1393 -0,20220444 0,092136525 0 3,7600543 1,795225768 70,56864982 1,906398828 3,8678499 0,10779556
+3,557869 254079,1394 -0,20231903 0,092137799 0 3,7601881 1,796044759 70,57753871 1,907268536 3,867869 0,10768097
+3,558079 254111,1394 -0,20224264 0,092135251 0 3,7603216 1,796863749 70,5864276 1,908138244 3,868079 0,10775736
+3,5583081 254143,1394 -0,20237632 0,092143528 0 3,7606845 1,797682742 70,59531649 1,909007954 3,8683081 0,10762368
+3,5584991 254175,1394 -0,20224264 0,092137158 0 3,7607417 1,798501735 70,60420538 1,909877665 3,8684991 0,10775736
+3,5585182 254207,1394 -0,20239541 0,092135884 0 3,7609136 1,799320727 70,61309427 1,910747375 3,8685182 0,10760459
+3,5586138 254239,1394 -0,20229992 0,092136525 0 3,7609136 1,800139719 70,62198316 1,911617085 3,8686138 0,10770008
+3,5589001 254271,1394 -0,20228083 0,092144169 0 3,7611809 1,800958711 70,63087205 1,912486795 3,8689001 0,10771917
+3,5589957 254303,1394 -0,20231903 0,092144169 0 3,7613149 1,801777706 70,63976094 1,913356508 3,8689957 0,10768097
+3,5592058 254335,1394 -0,20228083 0,092139073 0 3,7614865 1,802596701 70,64864983 1,91422622 3,8692058 0,10771917
+3,5594349 254367,1394 -0,20224264 0,092140347 0 3,7616775 1,803415695 70,65753872 1,915095932 3,8694349 0,10775736
+3,5596259 254399,1394 -0,20229992 0,092132062 0 3,7619257 1,804234686 70,66642761 1,915965641 3,8696259 0,10770008
+3,5597215 254431,1394 -0,20231903 0,092136525 0 3,7620406 1,805053676 70,6753165 1,916835349 3,8697215 0,10768097
+3,5598931 254463,1394 -0,20235722 0,092139706 0 3,7622504 1,805872668 70,68420539 1,917705059 3,8698931 0,10764278
+3,5600269 254495,1394 -0,20229992 0,09213461 0 3,7623267 1,806691656 70,69309428 1,918574764 3,8700269 0,10770008
+3,5603135 254527,1394 -0,20226173 0,092141613 0 3,7625751 1,807510645 70,70198317 1,91944447 3,8703135 0,10773827
+3,5603898 254559,1394 -0,20235722 0,092139706 0 3,762747 1,808329633 70,71087206 1,920314177 3,8703898 0,10764278
+3,5606189 254591,1394 -0,20235722 0,092130147 0 3,7629762 1,809148622 70,71976095 1,921183883 3,8706189 0,10764278
+3,5607526 254623,1394 -0,20233813 0,092135884 0 3,7630908 1,809967608 70,72864984 1,922053587 3,8707526 0,10766187
+3,5610774 254655,1394 -0,20237632 0,092141613 0 3,7634537 1,810786595 70,73753873 1,922923291 3,8710774 0,10762368
+3,5610964 254687,1394 -0,20224264 0,092136525 0 3,763339 1,811605582 70,74642762 1,923792995 3,8710964 0,10775736
+3,5612302 254719,1395 -0,20224264 0,092132062 0 3,7634728 1,812424572 70,75531652 1,924662703 3,8712302 0,10775736
+3,5613256 254751,1395 -0,20231903 0,092130795 0 3,7636447 1,813243561 70,76420541 1,92553241 3,8713256 0,10768097
+3,5616312 254783,1395 -0,20237632 0,092132062 0 3,7640076 1,814062552 70,7730943 1,926402118 3,8716312 0,10762368
+3,561784 254815,1395 -0,20237632 0,092130147 0 3,7641604 1,814881541 70,78198319 1,927271825 3,871784 0,10762368
+3,5618794 254847,1395 -0,20237632 0,092133336 0 3,7642558 1,815700526 70,79087208 1,928141528 3,8718794 0,10762368
+3,5620322 254879,1395 -0,20239541 0,092125699 0 3,7644277 1,816519512 70,79976097 1,92901123 3,8720322 0,10760459
+3,5622995 254911,1395 -0,20235722 0,092142262 0 3,7646568 1,817338495 70,80864986 1,929880931 3,8722995 0,10764278
+3,5624332 254943,1395 -0,20228083 0,092135251 0 3,764714 1,818157478 70,81753875 1,930750631 3,8724332 0,10771917
+3,5626624 254975,1395 -0,20241451 0,092135884 0 3,7650769 1,818976462 70,82642764 1,931620333 3,8726624 0,10758549
+3,5628152 255007,1395 -0,20241451 0,092139073 0 3,7652297 1,819795449 70,83531653 1,932490036 3,8728152 0,10758549
+3,5629108 255039,1395 -0,2024527 0,092127606 0 3,7653635 1,820614436 70,84420542 1,933359741 3,8729108 0,1075473
+3,5630634 255071,1395 -0,20228083 0,092130147 0 3,7653441 1,821433426 70,85309431 1,934229449 3,8730634 0,10771917
+3,5631781 255103,1395 -0,20243362 0,092142887 0 3,7656116 1,822252415 70,8619832 1,935099155 3,8731781 0,10756638
+3,5634453 255135,1395 -0,2025864 0,092133336 0 3,7660317 1,823071405 70,87087209 1,935968863 3,8734453 0,1074136
+3,5636556 255167,1395 -0,20243362 0,092137158 0 3,7660892 1,823890395 70,87976098 1,936838571 3,8736556 0,10756638
+3,5637701 255199,1395 -0,2025291 0,092140347 0 3,7662992 1,824709385 70,88864987 1,937708279 3,8737701 0,1074709
+3,563751 255231,1395 -0,2024909 0,09212824 0 3,7662418 1,825528377 70,89753876 1,938577988 3,873751 0,1075091
+3,5639992 255263,1395 -0,20243362 0,092137799 0 3,7664328 1,826347368 70,90642765 1,939447697 3,8739992 0,10756638
+3,5641711 255295,1395 -0,2024909 0,092142262 0 3,7666619 1,82716636 70,91531654 1,940317406 3,8741711 0,1075091
+3,5643811 255327,1395 -0,20239541 0,092132702 0 3,7667766 1,827985352 70,92420543 1,941187116 3,8743811 0,10760459
+3,5646296 255359,1396 -0,20239541 0,09213461 0 3,767025 1,828804343 70,93309432 1,942056825 3,8746296 0,10760459
+3,5646868 255391,1396 -0,20235722 0,092140347 0 3,7670441 1,829623335 70,94198321 1,942926535 3,8746868 0,10764278
+3,564935 255423,1396 -0,20254819 0,092127606 0 3,7674832 1,830442327 70,9508721 1,943796245 3,874935 0,10745181
+3,5649543 255455,1396 -0,2025291 0,092145436 0 3,7674835 1,831261317 70,95976099 1,944665952 3,8749543 0,1074709
+3,5653553 255487,1396 -0,20247181 0,09213461 0 3,767827 1,832080307 70,96864988 1,94553566 3,8753553 0,10752819
+3,5654507 255519,1396 -0,2025864 0,092133977 0 3,7680371 1,8328993 70,97753877 1,946405371 3,8754507 0,1074136
+3,5655653 255551,1396 -0,20251 0,092133977 0 3,7680755 1,833718292 70,98642766 1,947275081 3,8755653 0,10749
+3,5657563 255583,1396 -0,20228083 0,09213461 0 3,7680371 1,834537289 70,99531655 1,948144795 3,8757563 0,10771917
+3,5658901 255615,1396 -0,2025291 0,092135884 0 3,7684193 1,835356282 71,00420544 1,949014506 3,8758901 0,1074709
+3,566081 255647,1396 -0,20243362 0,092141613 0 3,7685146 1,836175276 71,01309433 1,949884218 3,876081 0,10756638
+3,5662336 255679,1396 -0,2025291 0,092137799 0 3,7687628 1,83699427 71,02198322 1,950753931 3,8762336 0,1074709
+3,5663674 255711,1396 -0,20247181 0,092135251 0 3,7688391 1,837813264 71,03087211 1,951623642 3,8763674 0,10752819
+3,5664439 255743,1396 -0,20251 0,092132702 0 3,7689538 1,838632259 71,039761 1,952493355 3,8764439 0,10749
+3,5666921 255775,1396 -0,20239541 0,092139706 0 3,7690876 1,839451255 71,04864989 1,953363069 3,8766921 0,10760459
+3,5668831 255807,1396 -0,2024909 0,092133977 0 3,7693739 1,840270249 71,05753878 1,954232781 3,8768831 0,1075091
+3,567055 255839,1396 -0,20243362 0,092139073 0 3,7694886 1,841089241 71,06642767 1,955102491 3,877055 0,10756638
+3,5672841 255871,1396 -0,20247181 0,092133977 0 3,7697558 1,841908231 71,07531657 1,955972199 3,8772841 0,10752819
+3,5673797 255903,1396 -0,20251 0,092137799 0 3,7698898 1,842727224 71,08420546 1,956841909 3,8773797 0,10749
+3,5675323 255935,1396 -0,20247181 0,092139073 0 3,770004 1,843546217 71,09309435 1,957711621 3,8775323 0,10752819
+3,5678761 255967,1396 -0,20262459 0,092125699 0 3,7705007 1,844365208 71,10198324 1,958581329 3,8778761 0,10737541
+3,5678952 255999,1397 -0,20239541 0,092133977 0 3,7702906 1,845184196 71,11087213 1,959451034 3,8778952 0,10760459
+3,568048 256031,1397 -0,20243362 0,092132702 0 3,7704816 1,846003185 71,11976102 1,960320741 3,878048 0,10756638
+3,568239 256063,1397 -0,2025291 0,092130795 0 3,7707682 1,846822175 71,12864991 1,961190449 3,878239 0,1074709
+3,5683727 256095,1397 -0,2025291 0,092140347 0 3,7709019 1,847641167 71,1375388 1,962060159 3,8783727 0,1074709
+3,5685446 256127,1397 -0,20241451 0,092140347 0 3,7709591 1,848460161 71,14642769 1,96292987 3,8785446 0,10758549
+3,5686591 256159,1397 -0,20254819 0,092135884 0 3,7712073 1,849279155 71,15531658 1,963799582 3,8786591 0,10745181
+3,56885 256191,1397 -0,20260549 0,092136525 0 3,7714555 1,85009815 71,16420547 1,964669295 3,87885 0,10739451
+3,5691366 256223,1397 -0,2024527 0,092133977 0 3,7715893 1,850917143 71,17309436 1,965539006 3,8791366 0,1075473
+3,5692894 256255,1397 -0,20243362 0,092131428 0 3,771723 1,851736135 71,18198325 1,966408716 3,8792894 0,10756638
+3,5694613 256287,1397 -0,20270097 0,092135884 0 3,7721624 1,852555127 71,19087214 1,967278425 3,8794613 0,10729903
+3,5694804 256319,1397 -0,20266278 0,092137799 0 3,7721431 1,85337412 71,19976103 1,968148136 3,8794804 0,10733722
+3,5697095 256351,1397 -0,20247181 0,09214098 0 3,7721813 1,854193111 71,20864992 1,969017845 3,8797095 0,10752819
+3,5699961 256383,1397 -0,20247181 0,092132702 0 3,7724679 1,855012103 71,21753881 1,969887554 3,8799961 0,10752819
+3,5700533 256415,1397 -0,2025864 0,092133977 0 3,7726398 1,855831098 71,2264277 1,970757267 3,8800533 0,1074136
+3,5702634 256447,1397 -0,2025864 0,092136525 0 3,7728498 1,856650089 71,23531659 1,971626976 3,8802634 0,1074136
+3,5704353 256479,1397 -0,2025864 0,092137158 0 3,7730217 1,857469078 71,24420548 1,972496683 3,8804353 0,1074136
+3,5706263 256511,1397 -0,2025864 0,092133977 0 3,7732127 1,858288067 71,25309437 1,973366389 3,8806263 0,1074136
+3,5707407 256543,1397 -0,20262459 0,092130795 0 3,7733653 1,859107055 71,26198326 1,974236095 3,8807407 0,10737541
+3,570951 256575,1397 -0,20270097 0,092142887 0 3,7736521 1,859926043 71,27087215 1,975105801 3,880951 0,10729903
+3,5711036 256607,1397 -0,20266278 0,092142262 0 3,7737663 1,860745031 71,27976104 1,975975506 3,8811036 0,10733722
+3,5712373 256639,1398 -0,20270097 0,092132702 0 3,7739382 1,861564022 71,28864993 1,976845214 3,8812373 0,10729903
+3,5714283 256671,1398 -0,20262459 0,092137799 0 3,7740529 1,862383011 71,29753882 1,977714921 3,8814283 0,10737541
+3,5716193 256703,1398 -0,2025864 0,092140347 0 3,7742057 1,863201999 71,30642771 1,978584627 3,8816193 0,1074136
+3,5717721 256735,1398 -0,20279646 0,092137158 0 3,7745686 1,864020989 71,3153166 1,979454334 3,8817721 0,10720354
+3,5718484 256767,1398 -0,20268188 0,092131428 0 3,7745302 1,864839977 71,32420549 1,98032404 3,8818484 0,10731812
+3,5721731 256799,1398 -0,20272008 0,092139073 0 3,7748933 1,865658965 71,33309438 1,981193746 3,8821731 0,10727992
+3,5722113 256831,1398 -0,2025864 0,092131428 0 3,7747977 1,866477951 71,34198327 1,982063449 3,8822113 0,1074136
+3,572345 256863,1398 -0,20272008 0,092127606 0 3,7750652 1,867296936 71,35087216 1,982933151 3,882345 0,10727992
+3,5725551 256895,1398 -0,20270097 0,092131428 0 3,7752562 1,868115919 71,35976105 1,983802852 3,8825551 0,10729903
+3,5726888 256927,1398 -0,20270097 0,09212888 0 3,7753897 1,868934904 71,36864994 1,984672554 3,8826888 0,10729903
+3,5730326 256959,1398 -0,20272008 0,092136525 0 3,7757528 1,869753888 71,37753883 1,985542255 3,8830326 0,10727992
+3,5732045 256991,1398 -0,20275827 0,092135251 0 3,7759628 1,87057287 71,38642772 1,986411954 3,8832045 0,10724173
+3,5732236 257023,1398 -0,20283465 0,09213461 0 3,7760582 1,871391853 71,39531662 1,987281654 3,8832236 0,10716535
+3,5733955 257055,1398 -0,20272008 0,092138432 0 3,7761157 1,872210837 71,40420551 1,988151356 3,8833955 0,10727992
+3,5737009 257087,1398 -0,20264368 0,092144169 0 3,7763445 1,873029822 71,4130944 1,989021058 3,8837009 0,10735632
+3,57372 257119,1398 -0,20273916 0,092136525 0 3,7764592 1,873848808 71,42198329 1,989890761 3,88372 0,10726084
+3,5740447 257151,1398 -0,20273916 0,092133336 0 3,7767839 1,874667795 71,43087218 1,990760466 3,8840447 0,10726084
+3,5741785 257183,1398 -0,20283465 0,092136525 0 3,7770131 1,875486782 71,43976107 1,99163017 3,8841785 0,10716535
+3,5741785 257215,1398 -0,20273916 0,092126973 0 3,7769177 1,876305764 71,44864996 1,992499869 3,8841785 0,10726084
+3,5744267 257247,1399 -0,20277737 0,092132702 0 3,777204 1,877124746 71,45753885 1,993369569 3,8844267 0,10722263
+3,5745986 257279,1399 -0,20273916 0,09213461 0 3,7773378 1,87794373 71,46642774 1,99423927 3,8845986 0,10726084
+3,5747323 257311,1399 -0,20273916 0,092140347 0 3,7774715 1,878762717 71,47531663 1,995108974 3,8847323 0,10726084
+3,5750186 257343,1399 -0,20262459 0,092136525 0 3,7776432 1,879581703 71,48420552 1,995978677 3,8850186 0,10737541
+3,5751905 257375,1399 -0,20272008 0,092142262 0 3,7779107 1,880400688 71,49309441 1,99684838 3,8851905 0,10727992
+3,5752671 257407,1399 -0,20279646 0,092126325 0 3,7780635 1,881219671 71,5019833 1,99771808 3,8852671 0,10720354
+3,575458 257439,1399 -0,20277737 0,092125066 0 3,7782354 1,882038655 71,51087219 1,998587782 3,885458 0,10722263
+3,5756109 257471,1399 -0,20273916 0,092136525 0 3,7783501 1,882857639 71,51976108 1,999457483 3,8856109 0,10726084
+3,5759354 257503,1399 -0,20270097 0,092139073 0 3,7786365 1,883676623 71,52864997 2,000327184 3,8859354 0,10729903
+3,5759163 257535,1399 -0,20272008 0,092135884 0 3,7786365 1,884495609 71,53753886 2,001196888 3,8859163 0,10727992
+3,5761073 257567,1399 -0,20275827 0,092138432 0 3,7788656 1,885314595 71,54642775 2,002066591 3,8861073 0,10724173
+3,5762982 257599,1399 -0,20285375 0,092141613 0 3,7791519 1,886133579 71,55531664 2,002936293 3,8862982 0,10714625
+3,5765274 257631,1399 -0,20273916 0,092133977 0 3,7792666 1,886952562 71,56420553 2,003805993 3,8865274 0,10726084
+3,576623 257663,1399 -0,20270097 0,092135884 0 3,7793241 1,887771544 71,57309442 2,004675692 3,886623 0,10729903
+3,5767567 257695,1399 -0,20281556 0,092133977 0 3,7795722 1,888590526 71,58198331 2,005545391 3,8867567 0,10718444
+3,5770812 257727,1399 -0,20266278 0,092140347 0 3,7797439 1,889409507 71,5908722 2,006415088 3,8870812 0,10733722
+3,5771387 257759,1399 -0,20277737 0,092131428 0 3,779916 1,890228489 71,59976109 2,007284789 3,8871387 0,10722263
+3,5773106 257791,1399 -0,20281556 0,092139073 0 3,7801261 1,891047472 71,60864998 2,008154488 3,8873106 0,10718444
+3,5774441 257823,1399 -0,20283465 0,092138432 0 3,7802787 1,891866455 71,61753887 2,009024189 3,8874441 0,10716535
+3,5775206 257855,1399 -0,20277737 0,092136525 0 3,780298 1,892685438 71,62642776 2,009893888 3,8875206 0,10722263
+3,5777879 257887,14 -0,20294924 0,092137158 0 3,7807372 1,893504417 71,63531665 2,010763585 3,8877879 0,10705076
+3,5778644 257919,14 -0,20277737 0,092136525 0 3,7806418 1,894323396 71,64420554 2,011633281 3,8878644 0,10722263
+3,5781507 257951,14 -0,20289195 0,092137158 0 3,7810426 1,895142378 71,65309443 2,012502979 3,8881507 0,10710805
+3,5782464 257983,14 -0,20287286 0,092133977 0 3,7811191 1,895961358 71,66198332 2,013372677 3,8882464 0,10712714
+3,5783608 258015,14 -0,20281556 0,092126973 0 3,7811763 1,896780337 71,67087221 2,014242373 3,8883608 0,10718444
+3,5786664 258047,14 -0,20275827 0,092140347 0 3,7814248 1,897599317 71,6797611 2,015112069 3,8886664 0,10724173
+3,5788002 258079,14 -0,20277737 0,092137799 0 3,7815776 1,898418296 71,68864999 2,015981766 3,8888002 0,10722263
+3,5789337 258111,14 -0,20287286 0,092142262 0 3,7818065 1,899237279 71,69753888 2,016851466 3,8889337 0,10712714
+3,5792775 258143,14 -0,20285375 0,092131428 0 3,7821312 1,900056265 71,70642778 2,017721169 3,8892775 0,10714625
+3,5793922 258175,14 -0,20279646 0,092132702 0 3,7821887 1,900875249 71,71531667 2,01859087 3,8893922 0,10720354
+3,5795641 258207,14 -0,20285375 0,092131428 0 3,7824178 1,901694234 71,72420556 2,019460573 3,8895641 0,10714625
+3,579545 258239,14 -0,20294924 0,092142262 0 3,7824943 1,902513218 71,73309445 2,020330274 3,889545 0,10705076
+3,5797167 258271,14 -0,20289195 0,09214098 0 3,7826085 1,903332201 71,74198334 2,021199975 3,8897167 0,10710805
+3,5800223 258303,14 -0,20281556 0,092140347 0 3,7828379 1,904151188 71,75087223 2,022069679 3,8900223 0,10718444
+3,5801179 258335,14 -0,20293014 0,092131428 0 3,7830482 1,904970175 71,75976112 2,022939383 3,8901179 0,10706986
+3,5804234 258367,14 -0,20294924 0,09213461 0 3,7833726 1,905789163 71,76865001 2,023809089 3,8904234 0,10705076
+3,5804808 258399,14 -0,20285375 0,092133977 0 3,7833345 1,906608148 71,7775389 2,024678791 3,8904808 0,10714625
+3,5806334 258431,14 -0,20277737 0,092137799 0 3,7834108 1,907427131 71,78642779 2,025548492 3,8906334 0,10722263
+3,5809581 258463,14 -0,20283465 0,092142262 0 3,7837927 1,908246115 71,79531668 2,026418192 3,8909581 0,10716535
+3,581111 258495,14 -0,20291105 0,092137799 0 3,7840221 1,909065099 71,80420557 2,027287894 3,891111 0,10708895
+3,5813019 258527,1401 -0,20293014 0,092132702 0 3,7842321 1,909884082 71,81309446 2,028157595 3,8913019 0,10706986
+3,5813401 258559,1401 -0,20300654 0,092136525 0 3,7843466 1,910703068 71,82198335 2,029027298 3,8913401 0,10699346
+3,581531 258591,1401 -0,20300654 0,092133977 0 3,7845376 1,911522055 71,83087224 2,029897002 3,891531 0,10699346
+3,5817986 258623,1401 -0,20281556 0,092131428 0 3,7846141 1,91234104 71,83976113 2,030766705 3,8917986 0,10718444
+3,5818558 258655,1401 -0,20273916 0,092137799 0 3,784595 1,913160027 71,84865002 2,031636409 3,8918558 0,10726084
+3,5820849 258687,1401 -0,20294924 0,092136525 0 3,7850342 1,913979012 71,85753891 2,032506112 3,8920849 0,10705076
+3,581913 258719,1401 -0,20302562 0,092142262 0 3,7849386 1,914797998 71,8664278 2,033375815 3,891913 0,10697438
+3,5823524 258751,1401 -0,20289195 0,092139073 0 3,7852445 1,915616984 71,87531669 2,034245518 3,8923524 0,10710805
+3,5826197 258783,1401 -0,20287286 0,092138432 0 3,7854924 1,916435974 71,88420558 2,035115225 3,8926197 0,10712714
+3,5826387 258815,1401 -0,20296834 0,092148624 0 3,7856071 1,917254964 71,89309447 2,035984933 3,8926387 0,10703166
+3,5830588 258847,1401 -0,20285375 0,092140347 0 3,7859125 1,918073954 71,90198336 2,036854641 3,8930588 0,10714625
+3,5830398 258879,1401 -0,20285375 0,092141613 0 3,7858934 1,918892942 71,91087225 2,037724347 3,8930398 0,10714625
+3,5830207 258911,1401 -0,20298743 0,092139706 0 3,7860081 1,919711931 71,91976114 2,038594053 3,8930207 0,10701257
+3,5834599 258943,1401 -0,20289195 0,092135884 0 3,7863517 1,920530916 71,92865003 2,039463756 3,8934599 0,10710805
+3,5834217 258975,1401 -0,20293014 0,092133977 0 3,7863519 1,921349901 71,93753892 2,040333458 3,8934217 0,10706986
+3,5837464 259007,1401 -0,20287286 0,092130795 0 3,7866192 1,922168887 71,94642781 2,041203161 3,8937464 0,10712714
+3,5840521 259039,1401 -0,20296834 0,092135251 0 3,7870204 1,922987877 71,9553167 2,042072869 3,8940521 0,10703166
+3,5840902 259071,1401 -0,20283465 0,092136525 0 3,7869248 1,923806864 71,96420559 2,042942574 3,8940902 0,10716535
+3,5842621 259103,1401 -0,20289195 0,092136525 0 3,7871542 1,924625849 71,97309448 2,043812276 3,8942621 0,10710805
+3,5843575 259135,1401 -0,20294924 0,092125699 0 3,7873068 1,925444835 71,98198337 2,044681979 3,8943575 0,10705076
+3,5846059 259167,1402 -0,20287286 0,092141613 0 3,7874787 1,926263821 71,99087226 2,045551683 3,8946059 0,10712714
+3,5847394 259199,1402 -0,20281556 0,092130147 0 3,787555 1,927082806 71,99976115 2,046421385 3,8947394 0,10718444
+3,5849879 259231,1402 -0,20285375 0,092133336 0 3,7878416 1,927901792 72,00865004 2,047291088 3,8949879 0,10714625
+3,5850451 259263,1402 -0,20296834 0,092135251 0 3,7880135 1,928720778 72,01753893 2,048160792 3,8950451 0,10703166
+3,5853124 259295,1402 -0,20298743 0,092139706 0 3,7882998 1,929539764 72,02642783 2,049030495 3,8953124 0,10701257
+3,5852742 259327,1402 -0,20294924 0,092140347 0 3,7882235 1,930358749 72,03531672 2,049900197 3,8952742 0,10705076
+3,5854843 259359,1402 -0,20291105 0,092133977 0 3,7883954 1,931177734 72,04420561 2,0507699 3,8954843 0,10708895
+3,5856371 259391,1402 -0,20296834 0,09213461 0 3,7886055 1,93199672 72,0530945 2,051639603 3,8956371 0,10703166
+3,5858853 259423,1402 -0,20291105 0,092131428 0 3,7887964 1,932815706 72,06198339 2,052509306 3,8958853 0,10708895
+3,5860381 259455,1402 -0,20296834 0,092127606 0 3,7890065 1,933634691 72,07087228 2,053379009 3,8960381 0,10703166
+3,5862291 259487,1402 -0,20302562 0,092133977 0 3,7892547 1,934453673 72,07976117 2,054248708 3,8962291 0,10697438
+3,586401 259519,1402 -0,20298743 0,092132062 0 3,7893884 1,935272656 72,08865006 2,055118408 3,896401 0,10701257
+3,5864584 259551,1402 -0,20291105 0,092133977 0 3,7893696 1,936091642 72,09753895 2,055988112 3,8964584 0,10708895
+3,5867639 259583,1402 -0,20300654 0,092132062 0 3,7897704 1,936910629 72,10642784 2,056857816 3,8967639 0,10699346
+3,5869358 259615,1402 -0,20314021 0,092132702 0 3,790076 1,937729618 72,11531673 2,057727522 3,8969358 0,10685979
+3,5871649 259647,1402 -0,20298743 0,092137158 0 3,7901523 1,938548604 72,12420562 2,058597226 3,8971649 0,10701257
+3,5872414 259679,1402 -0,20312111 0,092135251 0 3,7903626 1,939367588 72,13309451 2,059466927 3,8972414 0,10687889
+3,5873559 259711,1402 -0,20304473 0,092133977 0 3,7904005 1,940186574 72,1419834 2,06033663 3,8973559 0,10695527
+3,5875659 259743,1402 -0,20315932 0,09212824 0 3,7907252 1,941005559 72,15087229 2,061206333 3,8975659 0,10684068
+3,5877378 259775,1402 -0,20289195 0,092137158 0 3,7906299 1,941824544 72,15976118 2,062076035 3,8977378 0,10710805
+3,5879097 259807,1403 -0,20302562 0,092131428 0 3,7909353 1,942643531 72,16865007 2,06294574 3,8979097 0,10697438
+3,5881772 259839,1403 -0,20310202 0,092132062 0 3,7912793 1,943462519 72,17753896 2,063815445 3,8981772 0,10689798
+3,5881581 259871,1403 -0,20312111 0,092136525 0 3,7912793 1,944281505 72,18642785 2,064685149 3,8981581 0,10687889
+3,5884445 259903,1403 -0,20298743 0,092139073 0 3,7914319 1,945100497 72,19531674 2,065554858 3,8984445 0,10701257
+3,5886164 259935,1403 -0,20312111 0,092137158 0 3,7917376 1,945919488 72,20420563 2,066424567 3,8986164 0,10687889
+3,5886736 259967,1403 -0,20298743 0,092139073 0 3,791661 1,946738479 72,21309452 2,067294276 3,8986736 0,10701257
+3,5890174 259999,1403 -0,20306383 0,092132062 0 3,7920811 1,947557469 72,22198341 2,068163983 3,8990174 0,10693617
+3,589113 260031,1403 -0,20304473 0,092137158 0 3,7921576 1,948376457 72,2308723 2,069033689 3,899113 0,10695527
+3,5892084 260063,1403 -0,20308292 0,092132062 0 3,7922912 1,949195445 72,23976119 2,069903394 3,8992084 0,10691708
+3,5894759 260095,1403 -0,20291105 0,092137158 0 3,792387 1,950014433 72,24865008 2,0707731 3,8994759 0,10708895
+3,5896285 260127,1403 -0,2032166 0,092136525 0 3,792845 1,95083342 72,25753897 2,071642805 3,8996285 0,1067834
+3,589705 260159,1403 -0,20315932 0,092132702 0 3,7928643 1,951652408 72,26642786 2,07251251 3,899705 0,10684068
+3,589915 260191,1403 -0,20308292 0,09213461 0 3,7929978 1,952471397 72,27531675 2,073382216 3,899915 0,10691708
+3,5899532 260223,1403 -0,20319751 0,092137158 0 3,7931507 1,953290387 72,28420564 2,074251924 3,8999532 0,10680249
+3,5902398 260255,1403 -0,20317841 0,092138432 0 3,7934182 1,954109376 72,29309453 2,075121631 3,9002398 0,10682159
+3,5904117 260287,1403 -0,20319751 0,09213461 0 3,7936091 1,954928366 72,30198342 2,075991339 3,9004117 0,10680249
+3,5904689 260319,1403 -0,2032357 0,092137158 0 3,7937045 1,955747352 72,31087231 2,076861042 3,9004689 0,1067643
+3,5909846 260351,1403 -0,20315932 0,092136525 0 3,7941439 1,956566338 72,3197612 2,077730745 3,9009846 0,10684068
+3,5909655 260383,1403 -0,20317841 0,092137158 0 3,7941439 1,957385324 72,32865009 2,078600448 3,9009655 0,10682159
+3,5910227 260415,1403 -0,20312111 0,092143528 0 3,7941439 1,95820431 72,33753898 2,079470152 3,9010227 0,10687889
+3,5912328 260447,1404 -0,20302562 0,092137158 0 3,7942584 1,959023297 72,34642788 2,080339857 3,9012328 0,10697438
+3,5913284 260479,1404 -0,20312111 0,092138432 0 3,7944496 1,959842284 72,35531677 2,081209561 3,9013284 0,10687889
+3,591481 260511,1404 -0,20312111 0,092137158 0 3,7946022 1,960661271 72,36420566 2,082079265 3,901481 0,10687889
+3,5917294 260543,1404 -0,20310202 0,092138432 0 3,7948315 1,961480256 72,37309455 2,082948967 3,9017294 0,10689798
+3,5919013 260575,1404 -0,20304473 0,09212824 0 3,794946 1,962299239 72,38198344 2,083818668 3,9019013 0,10695527
+3,5921686 260607,1404 -0,20315932 0,092137799 0 3,7953279 1,963118228 72,39087233 2,084688374 3,9021686 0,10684068
+3,5923214 260639,1404 -0,20317841 0,092143528 0 3,7954998 1,963937216 72,39976122 2,085558081 3,9023214 0,10682159
+3,5923214 260671,1404 -0,20310202 0,092135884 0 3,7954235 1,964756205 72,40865011 2,086427786 3,9023214 0,10689798
+3,5926461 260703,1404 -0,20319751 0,092137158 0 3,7958436 1,965575194 72,417539 2,087297493 3,9026461 0,10680249
+3,5928943 260735,1404 -0,2032166 0,092139706 0 3,7961109 1,966394184 72,42642789 2,088167201 3,9028943 0,1067834
+3,5929897 260767,1404 -0,20317841 0,092139706 0 3,7961681 1,967213174 72,43531678 2,089036909 3,9029897 0,10682159
+3,5931807 260799,1404 -0,20331208 0,092139706 0 3,7964928 1,968032166 72,44420567 2,089906618 3,9031807 0,10668792
+3,5932572 260831,1404 -0,2032548 0,092145436 0 3,7965119 1,968851159 72,45309456 2,090776329 3,9032572 0,1067452
+3,5933335 260863,1404 -0,203293 0,092144802 0 3,7966266 1,96967015 72,46198345 2,091646038 3,9033335 0,106707
+3,5937729 260895,1404 -0,2032166 0,092139073 0 3,7969894 1,97048914 72,47087234 2,092515745 3,9037729 0,1067834
+3,5938492 260927,1404 -0,2032166 0,092139073 0 3,7970657 1,971308134 72,47976123 2,093385458 3,9038492 0,1067834
+3,5937729 260959,1404 -0,20333119 0,092136525 0 3,7971041 1,972127129 72,48865012 2,09425517 3,9037729 0,10666881
+3,5940592 260991,1404 -0,203293 0,092142887 0 3,7973523 1,972946123 72,49753901 2,095124882 3,9040592 0,106707
+3,5941739 261023,1404 -0,2032548 0,092136525 0 3,7974286 1,973765117 72,5064279 2,095994594 3,9041739 0,1067452
+3,5944412 261055,1404 -0,2032166 0,092139073 0 3,7976577 1,974584109 72,51531679 2,096864303 3,9044412 0,1067834
+3,594594 261087,1405 -0,2032166 0,092142262 0 3,7978106 1,975403101 72,52420568 2,097734014 3,904594 0,1067834
+3,5947659 261119,1405 -0,20317841 0,092142887 0 3,7979443 1,976222088 72,53309457 2,098603718 3,9047659 0,10682159
+3,5950332 261151,1405 -0,20319751 0,092139073 0 3,7982306 1,977041077 72,54198346 2,099473424 3,9050332 0,10680249
+3,5951288 261183,1405 -0,20336938 0,092130147 0 3,7984982 1,977860066 72,55087235 2,100343131 3,9051288 0,10663062
+3,5952625 261215,1405 -0,2032548 0,092133336 0 3,7985172 1,978679054 72,55976124 2,101212837 3,9052625 0,1067452
+3,5955107 261247,1405 -0,20336938 0,092143528 0 3,7988801 1,979498042 72,56865013 2,102082542 3,9055107 0,10663062
+3,5956445 261279,1405 -0,20336938 0,092133977 0 3,7990139 1,980317032 72,57753902 2,10295225 3,9056445 0,10663062
+3,5957398 261311,1405 -0,2032548 0,092140347 0 3,7989945 1,981136022 72,58642791 2,103821957 3,9057398 0,1067452
+3,5959499 261343,1405 -0,20317841 0,092132702 0 3,7991283 1,981955012 72,5953168 2,104691666 3,9059499 0,10682159
+3,5961027 261375,1405 -0,20338848 0,092137799 0 3,7994912 1,982774004 72,60420569 2,105561375 3,9061027 0,10661152
+3,5962937 261407,1405 -0,2032548 0,092135251 0 3,7995484 1,983592998 72,61309458 2,106431087 3,9062937 0,1067452
+3,5963893 261439,1405 -0,2032548 0,09213461 0 3,799644 1,98441199 72,62198347 2,107300796 3,9063893 0,1067452
+3,5966947 261471,1405 -0,20346487 0,092135251 0 3,8001595 1,985230978 72,63087236 2,108170502 3,9066947 0,10653513
+3,5968094 261503,1405 -0,20319751 0,092130795 0 3,8000069 1,986049967 72,63976125 2,109040209 3,9068094 0,10680249
+3,5970194 261535,1405 -0,20335029 0,092135251 0 3,8003697 1,986868955 72,64865014 2,109909915 3,9070194 0,10664971
+3,5970957 261567,1405 -0,20331208 0,092135884 0 3,8004079 1,987687946 72,65753903 2,110779624 3,9070957 0,10668792
+3,5973632 261599,1405 -0,20333119 0,092137799 0 3,8006945 1,988506938 72,66642793 2,111649333 3,9073632 0,10666881
+3,5974586 261631,1405 -0,20336938 0,092143528 0 3,800828 1,989325929 72,67531682 2,112519042 3,9074586 0,10663062
+3,5978405 261663,1405 -0,20319751 0,092137158 0 3,801038 1,990144917 72,68420571 2,113388747 3,9078405 0,10680249
+3,5977261 261695,1405 -0,20344578 0,092133977 0 3,8011718 1,990963903 72,6930946 2,11425845 3,9077261 0,10655422
+3,5979743 261727,1406 -0,20342667 0,092136525 0 3,8014009 1,991782889 72,70198349 2,115128154 3,9079743 0,10657333
+3,5981653 261759,1406 -0,203293 0,092143528 0 3,8014584 1,992601877 72,71087238 2,115997859 3,9081653 0,106707
+3,5983944 261791,1406 -0,2032357 0,092138432 0 3,80163 1,993420865 72,71976127 2,116867565 3,9083944 0,1067643
+3,59849 261823,1406 -0,203293 0,092137799 0 3,8017831 1,994239853 72,72865016 2,117737271 3,90849 0,106707
+3,5984709 261855,1406 -0,20340757 0,09214098 0 3,8018785 1,995058845 72,73753905 2,11860698 3,9084709 0,10659243
+3,5986428 261887,1406 -0,20344578 0,092135251 0 3,8020885 1,995877837 72,74642794 2,119476689 3,9086428 0,10655422
+3,5989673 261919,1406 -0,20333119 0,092136525 0 3,8022985 1,996696826 72,75531683 2,120346396 3,9089673 0,10666881
+3,5990057 261951,1406 -0,20338848 0,09212824 0 3,8023942 1,997515812 72,76420572 2,1212161 3,9090057 0,10661152
+3,5994258 261983,1406 -0,20338848 0,09214098 0 3,8028142 1,998334797 72,77309461 2,122085802 3,9094258 0,10661152
+3,5993876 262015,1406 -0,20342667 0,092132062 0 3,8028142 1,999153782 72,7819835 2,122955505 3,9093876 0,10657333
+3,5995595 262047,1406 -0,20333119 0,092139073 0 3,8028908 1,999972768 72,79087239 2,123825208 3,9095595 0,10666881
+3,599884 262079,1406 -0,20348397 0,092129521 0 3,8033681 2,000791755 72,79976128 2,124694912 3,909884 0,10651603
+3,6001325 262111,1406 -0,20342667 0,09213461 0 3,8035591 2,001610743 72,80865017 2,125564618 3,9101325 0,10657333
+3,6001134 262143,1406 -0,20350306 0,092137158 0 3,8036165 2,002429731 72,81753906 2,126434324 3,9101134 0,10649694
+3,6003044 262175,1408 -0,20340757 0,092132702 0 3,8037119 2,003248727 72,826428 2,127304038 3,9103044 0,10659243
+3,6004379 262207,141 -0,20346487 0,092137799 0 3,8039026 2,004067721 72,83531694 2,128173749 3,9104379 0,10653513
+3,6007245 262239,1411 -0,20340757 0,09212888 0 3,804132 2,004886715 72,84420587 2,129043461 3,9107245 0,10659243
+3,600858 262271,1413 -0,20342667 0,092146084 0 3,8042846 2,005705707 72,85309481 2,129913171 3,910858 0,10657333
+3,6009345 262303,1415 -0,20346487 0,092143528 0 3,8043995 2,006524699 72,86198375 2,130782881 3,9109345 0,10653513
+3,6010873 262335,1417 -0,20348397 0,092139073 0 3,8045714 2,007343692 72,87087269 2,131652591 3,9110873 0,10651603
+3,6011446 262367,1418 -0,20335029 0,09214098 0 3,8044949 2,008162687 72,87976162 2,132522304 3,9111446 0,10664971
+3,6013355 262399,142 -0,203293 0,09214098 0 3,8046286 2,008981683 72,88865056 2,133392018 3,9113355 0,106707
+3,6014502 262431,1422 -0,20350306 0,092141613 0 3,8049533 2,009800676 72,8975395 2,13426173 3,9114502 0,10649694
+3,6017747 262463,1424 -0,20359854 0,092132062 0 3,8053732 2,010619669 72,90642844 2,13513144 3,9117747 0,10640146
+3,6020041 262495,1426 -0,20350306 0,092136525 0 3,8055072 2,011438661 72,91531738 2,13600115 3,9120041 0,10649694
+3,6020803 262527,1427 -0,20342667 0,092138432 0 3,8055069 2,012257655 72,92420631 2,136870862 3,9120803 0,10657333
+3,6022141 262559,1429 -0,20356035 0,092139706 0 3,8057745 2,013076652 72,93309525 2,137740578 3,9122141 0,10643965
+3,6023476 262591,1431 -0,20344578 0,092135251 0 3,8057933 2,01389565 72,94198419 2,138610293 3,9123476 0,10655422
+3,6026151 262623,1433 -0,20357946 0,092138432 0 3,8061945 2,014714648 72,95087313 2,139480009 3,9126151 0,10642054
+3,6027105 262655,1434 -0,20346487 0,092137158 0 3,8061752 2,015533646 72,95976207 2,140349726 3,9127105 0,10653513
+3,6029015 262687,1436 -0,20354126 0,092129521 0 3,8064427 2,016352642 72,968651 2,141219439 3,9129015 0,10645874
+3,6030734 262719,1438 -0,20371313 0,092136525 0 3,8067865 2,017171638 72,97753994 2,142089153 3,9130734 0,10628687
+3,603379 262751,144 -0,20350306 0,092132062 0 3,8068821 2,01799063 72,98642888 2,142958864 3,913379 0,10649694
+3,6033218 262783,1441 -0,20354126 0,092132062 0 3,8068631 2,018809621 72,99531782 2,143828572 3,9133218 0,10645874
+3,6035128 262815,1443 -0,20354126 0,092133977 0 3,807054 2,019628613 73,00420675 2,144698281 3,9135128 0,10645874
+3,60378 262847,1445 -0,20348397 0,092135251 0 3,8072641 2,020447603 73,01309569 2,14556799 3,91378 0,10651603
+3,6039329 262879,1447 -0,20357946 0,092126973 0 3,8075123 2,021266591 73,02198463 2,146437695 3,9139329 0,10642054
+3,603971 262911,1448 -0,20354126 0,09214098 0 3,8075123 2,022085578 73,03087357 2,147307399 3,913971 0,10645874
+3,6042576 262943,145 -0,20367494 0,092135884 0 3,8079326 2,022904564 73,03976251 2,148177103 3,9142576 0,10632506
+3,6044486 262975,1452 -0,20356035 0,092133977 0 3,8080089 2,023723552 73,04865144 2,149046808 3,9144486 0,10643965
+3,6045058 263007,1454 -0,20352216 0,092126973 0 3,808028 2,024542542 73,05754038 2,149916516 3,9145058 0,10647784
+3,6046205 263039,1455 -0,20348397 0,092135251 0 3,8081045 2,025361532 73,06642932 2,150786223 3,9146205 0,10651603
+3,6048687 263071,1457 -0,20359854 0,09213461 0 3,8084671 2,026180522 73,07531826 2,151655932 3,9148687 0,10640146
+3,6050024 263103,1459 -0,20354126 0,09213461 0 3,8085437 2,026999513 73,08420719 2,15252564 3,9150024 0,10645874
+3,6052697 263135,1461 -0,20348397 0,092129521 0 3,8087537 2,027818506 73,09309613 2,153395351 3,9152697 0,10651603
+3,605346 263167,1463 -0,20344578 0,092136525 0 3,8087916 2,028637496 73,10198507 2,154265059 3,915346 0,10655422
+3,6054988 263199,1464 -0,20352216 0,092126325 0 3,809021 2,029456484 73,11087401 2,155134764 3,9154988 0,10647784
+3,6058426 263231,1466 -0,20359854 0,092129521 0 3,8094411 2,030275474 73,11976295 2,156004472 3,9158426 0,10640146
+3,6058235 263263,1468 -0,20354126 0,092139073 0 3,8093648 2,031094464 73,12865188 2,156874179 3,9158235 0,10645874
+3,6060526 263295,147 -0,20359854 0,092131428 0 3,8096511 2,031913455 73,13754082 2,157743888 3,9160526 0,10640146
+3,6063011 263327,1471 -0,20356035 0,092136525 0 3,8098614 2,032732447 73,14642976 2,158613598 3,9163011 0,10643965
+3,6062627 263359,1473 -0,20367494 0,092130147 0 3,8099377 2,03355144 73,1553187 2,159483308 3,9162627 0,10632506
+3,6065111 263391,1475 -0,20357946 0,092138432 0 3,8100905 2,034370432 73,16420764 2,160353018 3,9165111 0,10642054
+3,6067021 263423,1477 -0,20357946 0,092126973 0 3,8102815 2,035189422 73,17309657 2,161222726 3,9167021 0,10642054
+3,6069503 263455,1478 -0,20363675 0,092132702 0 3,8105869 2,036008412 73,18198551 2,162092434 3,9169503 0,10636325
+3,6070459 263487,148 -0,20352216 0,09212888 0 3,8105681 2,036827403 73,19087445 2,162962142 3,9170459 0,10647784
+3,6072369 263519,1482 -0,20369403 0,09214098 0 3,810931 2,037646395 73,19976339 2,163831852 3,9172369 0,10630597
+3,6072176 263551,1484 -0,20361765 0,092130147 0 3,8108351 2,038465388 73,20865232 2,164701563 3,9172176 0,10638235
+3,6073704 263583,1485 -0,20373224 0,092133977 0 3,8111026 2,039284379 73,21754126 2,165571271 3,9173704 0,10626776
+3,6077523 263615,1487 -0,20378952 0,092133977 0 3,8115418 2,040103371 73,2264302 2,166440981 3,9177523 0,10621048
+3,6079433 263647,1489 -0,20363675 0,092137799 0 3,8115799 2,040922361 73,23531914 2,167310689 3,9179433 0,10636325
+3,608077 263679,1491 -0,20365584 0,092142262 0 3,8117328 2,041741352 73,24420808 2,168180397 3,918077 0,10634416
+3,6082871 263711,1492 -0,20377043 0,092141613 0 3,8120575 2,042560343 73,25309701 2,169050106 3,9182871 0,10622957
+3,6082299 263743,1494 -0,20359854 0,092131428 0 3,8118284 2,043379332 73,26198595 2,169919813 3,9182299 0,10640146
+3,6085546 263775,1496 -0,20367494 0,092137158 0 3,8122296 2,044198323 73,27087489 2,170789522 3,9185546 0,10632506
+3,60865 263807,1498 -0,20359854 0,092139073 0 3,8122485 2,045017317 73,27976383 2,171659234 3,91865 0,10640146
+3,6087456 263839,15 -0,20363675 0,092133977 0 3,8123822 2,04583631 73,28865276 2,172528944 3,9187456 0,10636325
+3,6088791 263871,1501 -0,20367494 0,092135251 0 3,8125541 2,046655302 73,2975417 2,173398655 3,9188791 0,10632506
+3,6090319 263903,1503 -0,20375133 0,09213461 0 3,8127832 2,047474295 73,30643064 2,174268365 3,9190319 0,10624867
+3,6093185 263935,1505 -0,20384681 0,092137158 0 3,8131652 2,048293286 73,31531958 2,175138073 3,9193185 0,10615319
+3,6094329 263967,1507 -0,20375133 0,092133336 0 3,8131843 2,049112276 73,32420852 2,176007781 3,9194329 0,10624867
+3,6095858 263999,1508 -0,20375133 0,092132062 0 3,8133371 2,049931267 73,33309745 2,17687749 3,9195858 0,10624867
+3,6099868 264031,151 -0,20382772 0,092139073 0 3,8138144 2,050750259 73,34198639 2,1777472 3,9199868 0,10617228
+3,6101015 264063,1512 -0,20378952 0,092137158 0 3,8138909 2,051569251 73,35087533 2,178616909 3,9201015 0,10621048
+3,6099868 264095,1514 -0,20378952 0,092133977 0 3,8137763 2,05238824 73,35976427 2,179486617 3,9199868 0,10621048
+3,6103497 264127,1515 -0,2039423 0,09213461 0 3,814292 2,053207231 73,36865321 2,180356325 3,9203497 0,1060577
+3,6104071 264159,1517 -0,20375133 0,092135884 0 3,8141584 2,05402622 73,37754214 2,181226031 3,9204071 0,10624867
+3,6105597 264191,1519 -0,20384681 0,092137158 0 3,8144064 2,05484521 73,38643108 2,182095739 3,9205597 0,10615319
+3,6107125 264223,1521 -0,20382772 0,092135884 0 3,8145401 2,0556642 73,39532002 2,182965447 3,9207125 0,10617228
+3,610961 264255,1522 -0,20369403 0,092135884 0 3,8146551 2,056483192 73,40420896 2,183835157 3,920961 0,10630597
+3,6111519 264287,1524 -0,20380862 0,092140347 0 3,8149605 2,057302187 73,41309789 2,18470487 3,9211519 0,10619138
+3,611171 264319,1526 -0,2039423 0,092136525 0 3,8151133 2,058121178 73,42198683 2,185574578 3,921171 0,1060577
+3,6114192 264351,1528 -0,20377043 0,092137799 0 3,8151896 2,05894017 73,43087577 2,186444288 3,9214192 0,10622957
+3,6114955 264383,1529 -0,20384681 0,092130795 0 3,8153424 2,05975916 73,43976471 2,187313996 3,9214955 0,10615319
+3,6117055 264415,1531 -0,20361765 0,092133977 0 3,8153231 2,060578152 73,44865365 2,188183705 3,9217055 0,10638235
+3,6119158 264447,1533 -0,20380862 0,092132702 0 3,8157244 2,061397145 73,45754258 2,189053416 3,9219158 0,10619138
+3,6121068 264479,1535 -0,20382772 0,092135251 0 3,8159344 2,062216138 73,46643152 2,189923127 3,9221068 0,10617228
+3,6122978 264511,1537 -0,20367494 0,092132702 0 3,8159728 2,063035131 73,47532046 2,190792838 3,9222978 0,10632506
+3,6125078 264543,1538 -0,20378952 0,092133977 0 3,8162973 2,063854124 73,4842094 2,191662549 3,9225078 0,10621048
+3,6126032 264575,154 -0,20371313 0,092135251 0 3,8163164 2,064673119 73,49309833 2,192532262 3,9226032 0,10628687
+3,6128707 264607,1542 -0,20386592 0,092137799 0 3,8167367 2,065492112 73,50198727 2,193401973 3,9228707 0,10613408
+3,6129279 264639,1544 -0,20384681 0,092136525 0 3,8167748 2,066311106 73,51087621 2,194271685 3,9229279 0,10615319
+3,6131761 264671,1545 -0,20371313 0,092133977 0 3,8168893 2,067130098 73,51976515 2,195141395 3,9231761 0,10628687
+3,6131189 264703,1547 -0,20373224 0,09214098 0 3,8168511 2,067949093 73,52865409 2,196011107 3,9231189 0,10626776
+3,613348 264735,1549 -0,20375133 0,092136525 0 3,8170993 2,068768089 73,53754302 2,196880821 3,923348 0,10624867
+3,6134055 264767,1551 -0,20390411 0,092135251 0 3,8173096 2,069587082 73,54643196 2,197750532 3,9234055 0,10609589
+3,61373 264799,1552 -0,20382772 0,092133977 0 3,8175576 2,070406074 73,5553209 2,198620242 3,92373 0,10617228
+3,6138446 264831,1554 -0,203885 0,092139073 0 3,8177297 2,071225067 73,56420984 2,199489952 3,9238446 0,106115
+3,6139209 264863,1556 -0,20375133 0,092135251 0 3,8176723 2,072044058 73,57309878 2,200359661 3,9239209 0,10624867
+3,614131 264895,1558 -0,20392321 0,092133977 0 3,8180542 2,072863051 73,58198771 2,201229372 3,924131 0,10607679
+3,6142838 264927,1559 -0,20398049 0,092129521 0 3,8182642 2,073682042 73,59087665 2,202099081 3,9242838 0,10601951
+3,6144748 264959,1561 -0,203885 0,092136525 0 3,8183599 2,074501034 73,59976559 2,20296879 3,9244748 0,106115
+3,6147232 264991,1563 -0,20399959 0,092135884 0 3,8187227 2,075320028 73,60865453 2,203838503 3,9247232 0,10600041
+3,6148376 265023,1565 -0,20398049 0,092135251 0 3,8188181 2,076139023 73,61754346 2,204708215 3,9248376 0,10601951
+3,6150095 265055,1566 -0,2039423 0,092135884 0 3,8189518 2,076958018 73,6264324 2,205577929 3,9250095 0,1060577
+3,6151433 265087,1568 -0,20399959 0,092137158 0 3,8191428 2,077777013 73,63532134 2,206447642 3,9251433 0,10600041
+3,6154296 265119,157 -0,20403779 0,092132062 0 3,8194675 2,078596007 73,64421028 2,207317353 3,9254296 0,10596221
+3,6156206 265151,1572 -0,20390411 0,09213461 0 3,8195248 2,079414999 73,65309922 2,208187063 3,9256206 0,10609589
+3,6155634 265183,1574 -0,20407598 0,092132062 0 3,8196394 2,080233989 73,66198815 2,209056771 3,9255634 0,10592402
+3,6157544 265215,1575 -0,20371313 0,092135884 0 3,8194675 2,08105298 73,67087709 2,20992648 3,9257544 0,10628687
+3,6161363 265247,1577 -0,2039423 0,092142262 0 3,8200786 2,081871974 73,67976603 2,210796191 3,9261363 0,1060577
+3,6162128 265279,1579 -0,20398049 0,092132062 0 3,8201933 2,082690968 73,68865497 2,211665903 3,9262128 0,10601951
+3,616251 265311,1581 -0,20405689 0,092140347 0 3,820308 2,083509958 73,6975439 2,212535611 3,926251 0,10594311
+3,6165183 265343,1582 -0,20386592 0,092131428 0 3,8203843 2,084328948 73,70643284 2,213405318 3,9265183 0,10613408
+3,6166902 265375,1584 -0,20409508 0,092137799 0 3,8207853 2,085147936 73,71532178 2,214275024 3,9266902 0,10590492
+3,616843 265407,1586 -0,20403779 0,092131428 0 3,8208809 2,085966927 73,72421072 2,215144733 3,926843 0,10596221
+3,617053 265439,1588 -0,20392321 0,092137158 0 3,8209763 2,08678592 73,73309966 2,216014443 3,927053 0,10607679
+3,6172249 265471,1589 -0,2039423 0,092136525 0 3,8211672 2,087604911 73,74198859 2,216884153 3,9272249 0,1060577
+3,617244 265503,1591 -0,20407598 0,092139073 0 3,8213201 2,088423905 73,75087753 2,217753864 3,927244 0,10592402
+3,6174159 265535,1593 -0,20413327 0,092131428 0 3,8215492 2,089242896 73,75976647 2,218623573 3,9274159 0,10586673
+3,6176832 265567,1595 -0,20413327 0,09213461 0 3,8218164 2,090061886 73,76865541 2,219493281 3,9276832 0,10586673
+3,6175687 265599,1596 -0,20403779 0,092137799 0 3,8216066 2,090880877 73,77754434 2,220362989 3,9275687 0,10596221
+3,6179125 265631,1598 -0,20403779 0,092139073 0 3,8219504 2,091699868 73,78643328 2,221232698 3,9279125 0,10596221
+3,6180079 265663,16 -0,20405689 0,092137158 0 3,8220649 2,092518859 73,79532222 2,222102406 3,9280079 0,10594311
+3,6182754 265695,1602 -0,20405689 0,092136525 0 3,8223324 2,093337849 73,80421116 2,222972114 3,9282754 0,10594311
+3,6183326 265727,1603 -0,20413327 0,092135251 0 3,8224659 2,09415684 73,8131001 2,223841823 3,9283326 0,10586673
+3,6185045 265759,1605 -0,20409508 0,092131428 0 3,8225996 2,094975831 73,82198903 2,224711531 3,9285045 0,10590492
+3,6187909 265791,1607 -0,20399959 0,09213461 0 3,8227904 2,09579482 73,83087797 2,225581238 3,9287909 0,10600041
+3,6188674 265823,1609 -0,20407598 0,092137799 0 3,8229434 2,096613812 73,83976691 2,226450948 3,9288674 0,10592402
+3,6189628 265855,1611 -0,20407598 0,092135251 0 3,8230388 2,097432806 73,84865585 2,22732066 3,9289628 0,10592402
+3,6191537 265887,1612 -0,20407598 0,092138432 0 3,8232298 2,098251801 73,85754479 2,228190373 3,9291537 0,10592402
+3,6195166 265919,1614 -0,20409508 0,09213461 0 3,8236117 2,099070794 73,86643372 2,229060084 3,9295166 0,10590492
+3,6194785 265951,1616 -0,20426695 0,09214098 0 3,8237455 2,099889789 73,87532266 2,229929796 3,9294785 0,10573305
+3,6196122 265983,1618 -0,2040187 0,092135884 0 3,8236308 2,100708781 73,8842116 2,230799507 3,9296122 0,1059813
+3,6198413 266015,1619 -0,20403779 0,092130795 0 3,8238792 2,101527776 73,89310054 2,231669219 3,9298413 0,10596221
+3,6199751 266047,1621 -0,20407598 0,092139706 0 3,8240511 2,102346772 73,90198947 2,232538934 3,9299751 0,10592402
+3,6201279 266079,1623 -0,20413327 0,092141613 0 3,8242612 2,103165767 73,91087841 2,233408646 3,9301279 0,10586673
+3,6204333 266111,1625 -0,2040187 0,092137799 0 3,8244519 2,103984762 73,91976735 2,234278359 3,9304333 0,1059813
+3,6203952 266143,1626 -0,20415238 0,092131428 0 3,8245475 2,104803755 73,92865629 2,23514807 3,9303952 0,10584762
+3,6206243 266175,1628 -0,20441973 0,092142887 0 3,8250442 2,105622751 73,93754523 2,236017784 3,9306243 0,10558027
+3,6208534 266207,163 -0,20422876 0,092139073 0 3,8250823 2,106441745 73,94643416 2,236887496 3,9308534 0,10577124
+3,62093 266239,1632 -0,20415238 0,092130795 0 3,8250823 2,107260738 73,9553231 2,237757207 3,93093 0,10584762
+3,6210828 266271,1633 -0,20415238 0,092135251 0 3,8252351 2,108079735 73,96421204 2,238626922 3,9310828 0,10584762
+3,6211972 266303,1635 -0,20419057 0,092135884 0 3,8253877 2,108898732 73,97310098 2,239496637 3,9311972 0,10580943
+3,6213882 266335,1637 -0,20411418 0,09214098 0 3,8255024 2,10971773 73,98198991 2,240366353 3,9313882 0,10588582
+3,6217511 266367,1639 -0,20428605 0,092135884 0 3,8260372 2,110536728 73,99087885 2,241236069 3,9317511 0,10571395
+3,621732 266399,164 -0,20419057 0,092133336 0 3,8259225 2,111355725 73,99976779 2,242105784 3,931732 0,10580943
+3,6218657 266431,1642 -0,20422876 0,092131428 0 3,8260946 2,112174721 74,00865673 2,242975498 3,9318657 0,10577124
+3,6219802 266463,1644 -0,20417146 0,092137799 0 3,8261516 2,112993719 74,01754567 2,243845214 3,9319802 0,10582854
+3,6221905 266495,1646 -0,20424786 0,092132062 0 3,8264384 2,113812715 74,0264346 2,244714928 3,9321905 0,10575214
+3,6224959 266527,1648 -0,20424786 0,092135251 0 3,8267438 2,114631709 74,03532354 2,245584641 3,9324959 0,10575214
+3,622515 266559,1649 -0,20415238 0,092142262 0 3,8266673 2,115450706 74,04421248 2,246454356 3,932515 0,10584762
+3,6227441 266591,1651 -0,20426695 0,092133336 0 3,8270111 2,116269705 74,05310142 2,247324073 3,9327441 0,10573305
+3,6228015 266623,1653 -0,20422876 0,092135251 0 3,8270302 2,117088704 74,06199036 2,24819379 3,9328015 0,10577124
+3,6229544 266655,1655 -0,20409508 0,092136525 0 3,8270495 2,117907699 74,07087929 2,249063502 3,9329544 0,10590492
+3,6231263 266687,1656 -0,20424786 0,092133977 0 3,8273742 2,118726689 74,07976823 2,24993321 3,9331263 0,10575214
+3,6233172 266719,1658 -0,20438154 0,092135251 0 3,8276987 2,119545676 74,08865717 2,250802915 3,9333172 0,10561846
+3,6234889 266751,166 -0,20424786 0,092139073 0 3,8277369 2,120364672 74,09754611 2,251672629 3,9334889 0,10575214
+3,6234126 266783,1662 -0,20419057 0,092137158 0 3,8276031 2,121183672 74,10643504 2,252542347 3,9334126 0,10580943
+3,6238327 266815,1663 -0,20436244 0,092129521 0 3,8281951 2,122002672 74,11532398 2,253412065 3,9338327 0,10563756
+3,6241384 266847,1665 -0,20432425 0,092137799 0 3,8284626 2,12282167 74,12421292 2,254281782 3,9341384 0,10567575
+3,6241765 266879,1667 -0,20432425 0,092142262 0 3,8285007 2,12364067 74,13310186 2,2551515 3,9341765 0,10567575
+3,6243293 266911,1669 -0,20430516 0,092135251 0 3,8286345 2,124459667 74,1419908 2,256021215 3,9343293 0,10569484
+3,6244822 266943,167 -0,20420967 0,092139706 0 3,8286917 2,125278664 74,15087973 2,25689093 3,9344822 0,10579033
+3,6245394 266975,1672 -0,20445792 0,09213461 0 3,8289974 2,126097657 74,15976867 2,257760641 3,9345394 0,10554208
+3,624845 267007,1674 -0,20426695 0,092137799 0 3,8291121 2,126916648 74,16865761 2,25863035 3,934845 0,10573305
+3,6249595 267039,1676 -0,20422876 0,092144169 0 3,8291883 2,12773564 74,17754655 2,25950006 3,9349595 0,10577124
+3,6251695 267071,1677 -0,20440064 0,092132702 0 3,8295701 2,128554631 74,18643548 2,260369768 3,9351695 0,10559936
+3,6251888 267103,1679 -0,20436244 0,092144169 0 3,8295512 2,129373623 74,19532442 2,261239478 3,9351888 0,10563756
+3,6254752 267135,1681 -0,20443884 0,092138432 0 3,8299141 2,130192615 74,20421336 2,262109188 3,9354752 0,10556116
+3,6255133 267167,1683 -0,20432425 0,092127606 0 3,8298376 2,131011609 74,2131023 2,262978899 3,9355133 0,10567575
+3,6257617 267199,1684 -0,20443884 0,092133336 0 3,8302007 2,131830605 74,22199124 2,263848614 3,9357617 0,10556116
+3,6259527 267231,1686 -0,20441973 0,09213461 0 3,8303723 2,132649597 74,23088017 2,264718324 3,9359527 0,10558027
+3,6259909 267263,1688 -0,20443884 0,092142887 0 3,8304298 2,133468591 74,23976911 2,265588035 3,9359909 0,10556116
+3,6261246 267295,169 -0,20449613 0,092133336 0 3,8306208 2,134287586 74,24865805 2,266457748 3,9361246 0,10550387
+3,6263728 267327,1692 -0,20441973 0,092135251 0 3,8307924 2,13510658 74,25754699 2,26732746 3,9363728 0,10558027
+3,6265829 267359,1693 -0,20441973 0,092135884 0 3,8310027 2,135925572 74,26643593 2,26819717 3,9365829 0,10558027
+3,6266785 267391,1695 -0,20447703 0,092135251 0 3,8311555 2,136744565 74,27532486 2,269066881 3,9366785 0,10552297
+3,6267738 267423,1697 -0,20455341 0,09214098 0 3,8313272 2,137563556 74,2842138 2,26993659 3,9367738 0,10544659
+3,6270795 267455,1699 -0,20434335 0,092137158 0 3,8314228 2,138382548 74,29310274 2,270806299 3,9370795 0,10565665
+3,6270986 267487,17 -0,20441973 0,092133336 0 3,8315182 2,139201541 74,30199168 2,27167601 3,9370986 0,10558027
+3,6273277 267519,1702 -0,20438154 0,092132702 0 3,8317091 2,140020535 74,31088061 2,272545722 3,9373277 0,10561846
+3,6274996 267551,1704 -0,20438154 0,092132062 0 3,831881 2,14083953 74,31976955 2,273415434 3,9374996 0,10561846
+3,6274805 267583,1706 -0,20441973 0,092135884 0 3,8319001 2,141658523 74,32865849 2,274285146 3,9374805 0,10558027
+3,6279006 267615,1707 -0,20449613 0,092138432 0 3,8323967 2,142477517 74,33754743 2,275154858 3,9379006 0,10550387
+3,6279197 267647,1709 -0,20443884 0,09214098 0 3,8323586 2,14329651 74,34643637 2,276024568 3,9379197 0,10556116
+3,6281106 267679,1711 -0,20461071 0,092142887 0 3,8327212 2,144115504 74,3553253 2,27689428 3,9381106 0,10538929
+3,6281872 267711,1713 -0,20457251 0,09212888 0 3,8327596 2,144934498 74,36421424 2,277763993 3,9381872 0,10542749
+3,6283207 267743,1714 -0,20443884 0,092135251 0 3,8327596 2,14575349 74,37310318 2,278633702 3,9383207 0,10556116
+3,6286073 267775,1716 -0,20451522 0,09213461 0 3,8331225 2,146572482 74,38199212 2,279503411 3,9386073 0,10548478
+3,6288173 267807,1718 -0,2046871 0,092129521 0 3,8335044 2,147391474 74,39088105 2,280373122 3,9388173 0,1053129
+3,6287982 267839,172 -0,20441973 0,092137799 0 3,8332181 2,148210468 74,39976999 2,281242834 3,9387982 0,10558027
+3,6288745 267871,1721 -0,20449613 0,092135251 0 3,8333707 2,149029464 74,40865893 2,282112547 3,9388745 0,10550387
+3,6291611 267903,1723 -0,20447703 0,09212888 0 3,8336382 2,149848458 74,41754787 2,28298226 3,9391611 0,10552297
+3,6295049 267935,1725 -0,20457251 0,09213461 0 3,8340774 2,150667451 74,42643681 2,28385197 3,9395049 0,10542749
+3,6296384 267967,1727 -0,20445792 0,092138432 0 3,8340964 2,151486441 74,43532574 2,284721678 3,9396384 0,10554208
+3,6296194 267999,1729 -0,20447703 0,092131428 0 3,8340964 2,152305432 74,44421468 2,285591386 3,9396194 0,10552297
+3,6298294 268031,173 -0,20457251 0,092142887 0 3,8344018 2,153124422 74,45310362 2,286461094 3,9398294 0,10542749
+3,6300013 268063,1732 -0,20453432 0,092137158 0 3,8345356 2,153943415 74,46199256 2,287330805 3,9400013 0,10546568
+3,6300778 268095,1734 -0,20461071 0,092133977 0 3,8346887 2,154762406 74,4708815 2,288200513 3,9400778 0,10538929
+3,6300969 268127,1736 -0,20453432 0,092136525 0 3,8346312 2,155581394 74,47977043 2,289070219 3,9400969 0,10546568
+3,6304023 268159,1737 -0,20459162 0,092133977 0 3,8349938 2,156400386 74,48865937 2,289939929 3,9404023 0,10540838
+3,6305552 268191,1739 -0,20440064 0,09212888 0 3,8349557 2,157219379 74,49754831 2,29080964 3,9405552 0,10559936
+3,6307652 268223,1741 -0,2046489 0,092135251 0 3,8354142 2,158038372 74,50643725 2,29167935 3,9407652 0,1053511
+3,630899 268255,1743 -0,20462981 0,092137158 0 3,8355289 2,158857364 74,51532618 2,292549061 3,940899 0,10537019
+3,6310136 268287,1744 -0,20470619 0,092140347 0 3,8357198 2,159676359 74,52421512 2,293418773 3,9410136 0,10529381
+3,6311855 268319,1746 -0,20459162 0,092131428 0 3,835777 2,160495352 74,53310406 2,294288485 3,9411855 0,10540838
+3,6312428 268351,1748 -0,20453432 0,092141613 0 3,835777 2,161314347 74,541993 2,295158197 3,9412428 0,10546568
+3,6315291 268383,175 -0,20461071 0,092142262 0 3,8361397 2,162133342 74,55088194 2,29602791 3,9415291 0,10538929
+3,6318538 268415,1751 -0,20455341 0,092139073 0 3,8364072 2,162952335 74,55977087 2,296897621 3,9418538 0,10544659
+3,6319494 268447,1753 -0,20455341 0,092135884 0 3,8365028 2,163771327 74,56865981 2,297767331 3,9419494 0,10544659
+3,6321213 268479,1755 -0,20459162 0,092137158 0 3,8367128 2,16459032 74,57754875 2,298637042 3,9421213 0,10540838
+3,6321785 268511,1757 -0,20455341 0,092137158 0 3,8367319 2,165409314 74,58643769 2,299506753 3,9421785 0,10544659
+3,6323504 268543,1758 -0,20453432 0,092139073 0 3,8368847 2,166228308 74,59532662 2,300376466 3,9423504 0,10546568
+3,6323123 268575,176 -0,20482078 0,092131428 0 3,8371332 2,1670473 74,60421556 2,301246175 3,9423123 0,10517922
+3,6325986 268607,1762 -0,204668 0,092130795 0 3,8372667 2,167866288 74,6131045 2,30211588 3,9425986 0,105332
+3,6327896 268639,1764 -0,20476349 0,092138432 0 3,837553 2,168685279 74,62199344 2,30298559 3,9427896 0,10523651
+3,6329234 268671,1766 -0,2046871 0,092133977 0 3,8376105 2,169504271 74,63088238 2,3038553 3,9429234 0,1053129
+3,6329615 268703,1767 -0,2046489 0,09214098 0 3,8376105 2,170323264 74,63977131 2,30472501 3,9429615 0,1053511
+3,6333053 268735,1769 -0,2046489 0,092137799 0 3,8379543 2,171142257 74,64866025 2,305594721 3,9433053 0,1053511
+3,6333625 268767,1771 -0,2046489 0,092139706 0 3,8380115 2,171961252 74,65754919 2,306464434 3,9433625 0,1053511
+3,6334772 268799,1773 -0,20474438 0,092135251 0 3,8382215 2,172780245 74,66643813 2,307334144 3,9434772 0,10525562
+3,6338019 268831,1774 -0,20461071 0,092127606 0 3,8384128 2,173599235 74,67532706 2,308203852 3,9438019 0,10538929
+3,6339164 268863,1776 -0,204668 0,092133977 0 3,8385844 2,174418224 74,684216 2,309073559 3,9439164 0,105332
+3,6339545 268895,1778 -0,20480168 0,092135251 0 3,8387561 2,175237216 74,69310494 2,309943268 3,9439545 0,10519832
+3,6342983 268927,178 -0,20482078 0,092145436 0 3,8391192 2,176056206 74,70199388 2,310812976 3,9442983 0,10517922
+3,6344512 268959,1781 -0,2047253 0,09214098 0 3,8391764 2,176875196 74,71088282 2,311682683 3,9444512 0,1052747
+3,6345084 268991,1783 -0,20474438 0,092133336 0 3,8392527 2,177694186 74,71977175 2,312552392 3,9445084 0,10525562
+3,634604 269023,1785 -0,20478259 0,092133336 0 3,8393865 2,178513178 74,72866069 2,313422101 3,944604 0,10521741
+3,6346993 269055,1787 -0,20483989 0,092136525 0 3,8395393 2,179332167 74,73754963 2,314291807 3,9446993 0,10516011
+3,6348522 269087,1788 -0,2047253 0,09213461 0 3,8395774 2,180151155 74,74643857 2,315161513 3,9448522 0,1052747
+3,6351197 269119,179 -0,20482078 0,092137799 0 3,8399405 2,180970142 74,75532751 2,316031218 3,9451197 0,10517922
+3,635215 269151,1792 -0,20478259 0,092132702 0 3,8399975 2,181789131 74,76421644 2,316900925 3,945215 0,10521741
+3,6353106 269183,1794 -0,20499265 0,092139706 0 3,8403034 2,182608122 74,77310538 2,317770633 3,9453106 0,10500735
+3,6356926 269215,1795 -0,20461071 0,092133336 0 3,8403034 2,183427112 74,78199432 2,31864034 3,9456926 0,10538929
+3,6359026 269247,1797 -0,20482078 0,092136525 0 3,8407235 2,1842461 74,79088326 2,319510047 3,9459026 0,10517922
+3,635788 269279,1799 -0,20482078 0,092130795 0 3,8406088 2,18506509 74,79977219 2,320379754 3,945788 0,10517922
+3,6359789 269311,1801 -0,2047253 0,092139073 0 3,8407042 2,185884082 74,80866113 2,321249463 3,9459789 0,1052747
+3,636189 269343,1803 -0,20476349 0,092138432 0 3,8409524 2,186703073 74,81755007 2,322119173 3,946189 0,10523651
+3,6363227 269375,1804 -0,20491627 0,092129521 0 3,841239 2,187522066 74,82643901 2,322988883 3,9463227 0,10508373
+3,6364946 269407,1806 -0,20474438 0,092139706 0 3,841239 2,188341058 74,83532795 2,323858593 3,9464946 0,10525562
+3,6367047 269439,1808 -0,20491627 0,092138432 0 3,8416209 2,189160049 74,84421688 2,324728301 3,9467047 0,10508373
+3,6368575 269471,181 -0,20499265 0,092144169 0 3,8418503 2,189979042 74,85310582 2,325598012 3,9468575 0,10500735
+3,6368575 269503,1811 -0,20495446 0,092142262 0 3,8418119 2,190798036 74,86199476 2,326467724 3,9468575 0,10504554
+3,6370676 269535,1813 -0,20482078 0,092135251 0 3,8418884 2,191617028 74,8708837 2,327337434 3,9470676 0,10517922
+3,6373158 269567,1815 -0,20501176 0,092136525 0 3,8423276 2,192436019 74,87977263 2,328207143 3,9473158 0,10498824
+3,6373923 269599,1817 -0,20501176 0,092136525 0 3,8424041 2,193255009 74,88866157 2,329076851 3,9473923 0,10498824
+3,6375451 269631,1818 -0,20476349 0,092137158 0 3,8423085 2,194074001 74,89755051 2,32994656 3,9475451 0,10523651
+3,6376977 269663,182 -0,20489717 0,092129521 0 3,8425949 2,194892992 74,90643945 2,330816269 3,9476977 0,10510283
+3,6376595 269695,1822 -0,20495446 0,092135251 0 3,8426139 2,195711985 74,91532839 2,33168598 3,9476595 0,10504554
+3,6380033 269727,1824 -0,20506905 0,092133336 0 3,8430724 2,196530976 74,92421732 2,332555688 3,9480033 0,10493095
+3,6381562 269759,1825 -0,20482078 0,09213461 0 3,842977 2,19734997 74,93310626 2,3334254 3,9481562 0,10517922
+3,6382325 269791,1827 -0,20491627 0,092132062 0 3,8431487 2,198168963 74,9419952 2,334295111 3,9482325 0,10508373
+3,638519 269823,1829 -0,20501176 0,092137158 0 3,8435309 2,198987955 74,95088414 2,335164821 3,948519 0,10498824
+3,6387291 269855,1831 -0,20478259 0,092135251 0 3,8435116 2,199806949 74,95977308 2,336034533 3,9487291 0,10521741
+3,6387482 269887,1832 -0,20497356 0,092132702 0 3,8437216 2,200625941 74,96866201 2,336904243 3,9487482 0,10502644
+3,6388438 269919,1834 -0,20512635 0,092135251 0 3,8439701 2,201444936 74,97755095 2,337773956 3,9488438 0,10487365
+3,6390347 269951,1836 -0,20512635 0,092131428 0 3,844161 2,202263931 74,98643989 2,338643669 3,9490347 0,10487365
+3,6393211 269983,1838 -0,20504995 0,092136525 0 3,8443711 2,203082927 74,99532883 2,339513382 3,9493211 0,10495005
+3,6395311 270015,184 -0,20506905 0,092131428 0 3,8446002 2,203901922 75,00421776 2,340383095 3,9495311 0,10493095
+3,6396267 270047,1841 -0,20510724 0,09213461 0 3,844734 2,204720917 75,0131067 2,341252808 3,9496267 0,10489276
+3,6397221 270079,1843 -0,20495446 0,092139073 0 3,8446765 2,205539912 75,02199564 2,342122521 3,9497221 0,10504554
+3,6398559 270111,1845 -0,20495446 0,092136525 0 3,8448102 2,206358906 75,03088458 2,342992234 3,9498559 0,10504554
+3,6400278 270143,1847 -0,20508814 0,09212888 0 3,8451159 2,207177904 75,03977352 2,34386195 3,9500278 0,10491186
+3,640085 270175,1848 -0,20501176 0,092137158 0 3,8450968 2,207996901 75,04866245 2,344731665 3,950085 0,10498824
+3,6403716 270207,185 -0,20506905 0,092142887 0 3,8454406 2,2088159 75,05755139 2,345601381 3,9503716 0,10493095
+3,6403906 270239,1852 -0,20497356 0,092137158 0 3,8453641 2,209634897 75,06644033 2,346471096 3,9503906 0,10502644
+3,6407535 270271,1854 -0,20516454 0,092133977 0 3,8459179 2,210453891 75,07532927 2,347340809 3,9507535 0,10483546
+3,640696 270303,1855 -0,20503086 0,092133977 0 3,845727 2,211272887 75,0842182 2,348210523 3,950696 0,10496914
+3,6410398 270335,1857 -0,20516454 0,092136525 0 3,8462043 2,212091883 75,09310714 2,349080237 3,9510398 0,10483546
+3,6411355 270367,1859 -0,20512635 0,09213461 0 3,8462617 2,212910878 75,10199608 2,349949949 3,9511355 0,10487365
+3,6412692 270399,1861 -0,20489717 0,092142262 0 3,8461664 2,213729871 75,11088502 2,35081966 3,9512692 0,10510283
+3,6412117 270431,1862 -0,20491627 0,092135251 0 3,846128 2,214548861 75,11977396 2,351689368 3,9512117 0,10508373
+3,6414218 270463,1864 -0,20516454 0,092132062 0 3,8465862 2,215367853 75,12866289 2,352559078 3,9514218 0,10483546
+3,6415937 270495,1866 -0,20504995 0,092140347 0 3,8466437 2,216186845 75,13755183 2,353428788 3,9515937 0,10495005
+3,6417274 270527,1868 -0,20518363 0,09213461 0 3,846911 2,217005835 75,14644077 2,354298496 3,9517274 0,10481637
+3,6420712 270559,1869 -0,20512635 0,092136525 0 3,8471975 2,217824826 75,15532971 2,355168204 3,9520712 0,10487365
+3,6420712 270591,1871 -0,20510724 0,092132702 0 3,8471785 2,218643817 75,16421865 2,356037913 3,9520712 0,10489276
+3,6421857 270623,1873 -0,20526002 0,092130795 0 3,8474457 2,219462806 75,17310758 2,35690762 3,9521857 0,10473998
+3,642415 270655,1875 -0,20522183 0,092137799 0 3,8476369 2,220281799 75,18199652 2,35777733 3,952415 0,10477817
+3,6426251 270687,1877 -0,20514543 0,092138432 0 3,8477705 2,221100791 75,19088546 2,35864704 3,9526251 0,10485457
+3,642606 270719,1878 -0,20506905 0,092143528 0 3,8476751 2,221919785 75,1997744 2,359516752 3,952606 0,10493095
+3,6429689 270751,188 -0,20514543 0,092135884 0 3,8481143 2,222738777 75,20866333 2,360386462 3,9529689 0,10485457
+3,6431215 270783,1882 -0,20514543 0,09212824 0 3,8482668 2,223557769 75,21755227 2,361256171 3,9531215 0,10485457
+3,6431215 270815,1884 -0,20527911 0,092138432 0 3,8484006 2,224376761 75,22644121 2,362125882 3,9531215 0,10472089
+3,6433508 270847,1885 -0,20526002 0,092140347 0 3,8486109 2,225195753 75,23533015 2,362995591 3,9533508 0,10473998
+3,6435034 270879,1887 -0,20526002 0,092138432 0 3,8487635 2,226014745 75,24421909 2,363865301 3,9535034 0,10473998
+3,64358 270911,1889 -0,20522183 0,092139073 0 3,8488019 2,226833738 75,25310802 2,364735012 3,95358 0,10477817
+3,6437709 270943,1891 -0,20514543 0,092132702 0 3,8489163 2,227652731 75,26199696 2,365604722 3,9537709 0,10485457
+3,6438663 270975,1892 -0,20522183 0,092139706 0 3,8490882 2,228471725 75,2708859 2,366474434 3,9538663 0,10477817
+3,6442482 271007,1894 -0,20527911 0,092142262 0 3,8495274 2,229290716 75,27977484 2,367344143 3,9542482 0,10472089
+3,6440766 271039,1896 -0,20516454 0,092133977 0 3,849241 2,230109704 75,28866377 2,368213849 3,9540766 0,10483546
+3,6444776 271071,1898 -0,20512635 0,092139706 0 3,8496039 2,230928696 75,29755271 2,369083559 3,9544776 0,10487365
+3,6444776 271103,1899 -0,20524092 0,092133977 0 3,8497186 2,231747688 75,30644165 2,369953268 3,9544776 0,10475908
+3,6446302 271135,1901 -0,20516454 0,09213461 0 3,8497946 2,232566686 75,31533059 2,370822984 3,9546302 0,10483546
+3,6448977 271167,1903 -0,20522183 0,092142887 0 3,8501196 2,233385682 75,32421953 2,371692699 3,9548977 0,10477817
+3,6448977 271199,1905 -0,20526002 0,09213461 0 3,8501577 2,234204678 75,33310846 2,372562412 3,9548977 0,10473998
+3,6451268 271231,1906 -0,20514543 0,092135884 0 3,8502722 2,235023672 75,3419974 2,373432124 3,9551268 0,10485457
+3,6452987 271263,1908 -0,20518363 0,092133336 0 3,8504825 2,235842665 75,35088634 2,374301835 3,9552987 0,10481637
+3,6454706 271295,191 -0,20508814 0,092133336 0 3,8505588 2,236661659 75,35977528 2,375171547 3,9554706 0,10491186
+3,6455853 271327,1912 -0,20533641 0,092139706 0 3,8509216 2,23748065 75,36866422 2,376041256 3,9555853 0,10466359
+3,6456616 271359,1914 -0,20522183 0,092135251 0 3,8508835 2,238299643 75,37755315 2,376910967 3,9556616 0,10477817
+3,6459482 271391,1915 -0,20522183 0,092132062 0 3,8511701 2,239118636 75,38644209 2,377780677 3,9559482 0,10477817
+3,6460435 271423,1917 -0,20533641 0,092139073 0 3,8513799 2,239937629 75,39533103 2,378650388 3,9560435 0,10466359
+3,6460245 271455,1919 -0,20527911 0,09213461 0 3,8513036 2,240756625 75,40421997 2,379520102 3,9560245 0,10472089
+3,6462727 271487,1921 -0,20524092 0,092140347 0 3,8515136 2,24157562 75,4131089 2,380389815 3,9562727 0,10475908
+3,6463873 271519,1922 -0,2053746 0,092135251 0 3,8517618 2,242394615 75,42199784 2,381259528 3,9563873 0,1046254
+3,6467121 271551,1924 -0,20547009 0,09213461 0 3,8521821 2,243213608 75,43088678 2,382129239 3,9567121 0,10452991
+3,6468074 271583,1926 -0,20514543 0,092135251 0 3,8519528 2,244032603 75,43977572 2,382998952 3,9568074 0,10485457
+3,6469603 271615,1928 -0,20547009 0,092139073 0 3,8524303 2,244851598 75,44866466 2,383868665 3,9569603 0,10452991
+3,6470749 271647,1929 -0,2053937 0,092131428 0 3,8524687 2,245670594 75,45755359 2,384738378 3,9570749 0,1046063
+3,6472659 271679,1931 -0,2053937 0,092139073 0 3,8526597 2,246489588 75,46644253 2,38560809 3,9572659 0,1046063
+3,6473422 271711,1933 -0,205451 0,092138432 0 3,8527932 2,247308583 75,47533147 2,386477804 3,9573422 0,104549
+3,647285 271743,1935 -0,205451 0,09212888 0 3,852736 2,248127576 75,48422041 2,387347515 3,957285 0,104549
+3,6478004 271775,1936 -0,20543189 0,092142262 0 3,8532324 2,248946569 75,49310934 2,388217225 3,9578004 0,10456811
+3,647686 271807,1938 -0,2053746 0,092137799 0 3,8530607 2,249765563 75,50199828 2,389086937 3,957686 0,1046254
+3,6479723 271839,194 -0,20554648 0,092136525 0 3,8535187 2,250584555 75,51088722 2,389956647 3,9579723 0,10445352
+3,6481252 271871,1942 -0,20541281 0,092139073 0 3,853538 2,251403546 75,51977616 2,390826356 3,9581252 0,10458719
+3,6482589 271903,1943 -0,20541281 0,092136525 0 3,8536718 2,252222538 75,5286651 2,391696065 3,9582589 0,10458719
+3,6485646 271935,1945 -0,20531732 0,092130147 0 3,8538818 2,253041529 75,53755403 2,392565774 3,9585646 0,10468268
+3,648469 271967,1947 -0,20531732 0,092135251 0 3,8537862 2,25386052 75,54644297 2,393435482 3,958469 0,10468268
+3,6486981 271999,1949 -0,20550829 0,092138432 0 3,8542063 2,254679513 75,55533191 2,394305194 3,9586981 0,10449171
+3,6489272 272031,195 -0,20533641 0,092144169 0 3,8542635 2,255498507 75,56422085 2,395174906 3,9589272 0,10466359
+3,6490419 272063,1952 -0,2053746 0,092130147 0 3,8544164 2,256317498 75,57310978 2,396044614 3,9590419 0,1046254
+3,6491756 272095,1954 -0,20548919 0,092133336 0 3,8546648 2,25713649 75,58199872 2,396914324 3,9591756 0,10451081
+3,6493285 272127,1956 -0,20554648 0,09212824 0 3,8548748 2,257955484 75,59088766 2,397784036 3,9593285 0,10445352
+3,6494238 272159,1958 -0,20560378 0,092137158 0 3,8550277 2,258774479 75,5997766 2,398653749 3,9594238 0,10439622
+3,6495194 272191,1959 -0,20558468 0,092142887 0 3,8551042 2,259593476 75,60866554 2,399523464 3,9595194 0,10441532
+3,649653 272223,1961 -0,205451 0,092144169 0 3,855104 2,260412471 75,61755447 2,400393177 3,959653 0,104549
+3,6500349 272255,1963 -0,20554648 0,092142262 0 3,8555813 2,261231465 75,62644341 2,401262889 3,9600349 0,10445352
+3,6498439 272287,1965 -0,205451 0,092133336 0 3,8552949 2,262050463 75,63533235 2,402132605 3,9598439 0,104549
+3,6501305 272319,1966 -0,205451 0,09214098 0 3,8555815 2,262869456 75,64422129 2,403002316 3,9601305 0,104549
+3,6504552 272351,1968 -0,20554648 0,092135884 0 3,8560016 2,263688451 75,65311023 2,403872029 3,9604552 0,10445352
+3,6503596 272383,197 -0,20541281 0,092139706 0 3,8557725 2,264507445 75,66199916 2,404741741 3,9603596 0,10458719
+3,6506462 272415,1972 -0,20541281 0,092133336 0 3,8560591 2,26532644 75,6708881 2,405611454 3,9606462 0,10458719
+3,6507988 272447,1973 -0,20556557 0,092136525 0 3,8563643 2,266145433 75,67977704 2,406481164 3,9607988 0,10443443
+3,6509898 272479,1975 -0,20548919 0,092139706 0 3,8564789 2,266964425 75,68866598 2,407350875 3,9609898 0,10451081
+3,6511426 272511,1977 -0,20560378 0,092135251 0 3,8567464 2,267783417 75,69755491 2,408220584 3,9611426 0,10439622
+3,6512191 272543,1979 -0,20556557 0,092137158 0 3,8567848 2,268602409 75,70644385 2,409090294 3,9612191 0,10443443
+3,6513526 272575,198 -0,20535551 0,09214098 0 3,856708 2,269421403 75,71533279 2,409960006 3,9613526 0,10464449
+3,6514292 272607,1982 -0,20564197 0,092136525 0 3,8570712 2,270240398 75,72422173 2,410829719 3,9614292 0,10435803
+3,6516011 272639,1984 -0,20558468 0,092135884 0 3,8571858 2,271059393 75,73311067 2,411699431 3,9616011 0,10441532
+3,6518111 272671,1986 -0,20562287 0,092137799 0 3,857434 2,271878386 75,7419996 2,412569142 3,9618111 0,10437713
+3,6518874 272703,1987 -0,20547009 0,092131428 0 3,8573575 2,272697378 75,75088854 2,413438852 3,9618874 0,10452991
+3,6522121 272735,1989 -0,20556557 0,092138432 0 3,8577776 2,273516372 75,75977748 2,414308564 3,9622121 0,10443443
+3,6521549 272767,1991 -0,20554648 0,09212888 0 3,8577013 2,274335365 75,76866642 2,415178274 3,9621549 0,10445352
+3,6523459 272799,1993 -0,20548919 0,092133336 0 3,8578351 2,275154357 75,77755535 2,416047984 3,9623459 0,10451081
+3,6525178 272831,1995 -0,20569927 0,092142887 0 3,858217 2,27597335 75,78644429 2,416917695 3,9625178 0,10430073
+3,6527088 272863,1996 -0,20571835 0,092136525 0 3,858427 2,276792342 75,79533323 2,417787406 3,9627088 0,10428165
+3,6527851 272895,1998 -0,20575655 0,092130795 0 3,8585415 2,277611334 75,80422217 2,418657115 3,9627851 0,10424345
+3,6529379 272927,2 -0,20556557 0,09213461 0 3,8585033 2,278430328 75,81311111 2,419526827 3,9629379 0,10443443
+3,6531098 272959,2002 -0,20569927 0,092137158 0 3,858809 2,27924932 75,82200004 2,420396536 3,9631098 0,10430073
+3,6532626 272991,2003 -0,20568016 0,092132062 0 3,8589427 2,280068314 75,83088898 2,421266248 3,9632626 0,10431984
+3,6533771 273023,2005 -0,20562287 0,092137158 0 3,859 2,280887308 75,83977792 2,42213596 3,9633771 0,10437713
+3,6534917 273055,2007 -0,20560378 0,09213461 0 3,8590956 2,2817063 75,84866686 2,42300567 3,9634917 0,10439622
+3,6537018 273087,2009 -0,20560378 0,092135251 0 3,8593056 2,282525294 75,8575558 2,423875382 3,9637018 0,10439622
+3,6538928 273119,201 -0,20571835 0,092132702 0 3,859611 2,283344284 75,86644473 2,42474509 3,9638928 0,10428165
+3,6540074 273151,2012 -0,20564197 0,092132702 0 3,8596494 2,284163277 75,87533367 2,4256148 3,9640074 0,10435803
+3,6540647 273183,2014 -0,20558468 0,092132062 0 3,8596494 2,284982271 75,88422261 2,426484513 3,9640647 0,10441532
+3,6543894 273215,2016 -0,20575655 0,092132702 0 3,860146 2,285801266 75,89311155 2,427354226 3,9643894 0,10424345
+3,6544275 273247,2017 -0,20558468 0,092137158 0 3,8600123 2,286620258 75,90200048 2,428223936 3,9644275 0,10441532
+3,6546566 273279,2019 -0,20583294 0,09212888 0 3,8604896 2,287439252 75,91088942 2,429093647 3,9646566 0,10416706
+3,6547139 273311,2021 -0,20581384 0,092138432 0 3,8605278 2,288258246 75,91977836 2,429963359 3,9647139 0,10418616
+3,6550004 273343,2023 -0,20571835 0,092142887 0 3,8607187 2,289077238 75,9286673 2,430833069 3,9650004 0,10428165
+3,6551342 273375,2024 -0,20581384 0,092131428 0 3,8609481 2,289896231 75,93755624 2,43170278 3,9651342 0,10418616
+3,6551914 273407,2026 -0,20602392 0,092135884 0 3,8612154 2,290715227 75,94644517 2,432572493 3,9651914 0,10397608
+3,6552296 273439,2028 -0,20575655 0,092137158 0 3,8609862 2,291534225 75,95533411 2,43344221 3,9652296 0,10424345
+3,6554396 273471,203 -0,20579475 0,092135251 0 3,8612344 2,292353222 75,96422305 2,434311925 3,9654396 0,10420525
+3,6554971 273503,2032 -0,20579475 0,092135884 0 3,8612919 2,293172219 75,97311199 2,43518164 3,9654971 0,10420525
+3,6557453 273535,2033 -0,20579475 0,09213461 0 3,8615401 2,293991216 75,98200092 2,436051355 3,9657453 0,10420525
+3,6557834 273567,2035 -0,20581384 0,092135251 0 3,8615973 2,294810211 75,99088986 2,436921068 3,9657834 0,10418616
+3,6559744 273599,2037 -0,20592843 0,092131428 0 3,8619027 2,295629206 75,9997788 2,437790781 3,9659744 0,10407157
+3,65607 273631,2039 -0,20590933 0,092142262 0 3,8619792 2,296448205 76,00866774 2,438660498 3,96607 0,10409067
+3,656261 273663,204 -0,20575655 0,092132702 0 3,8620176 2,297267204 76,01755668 2,439530215 3,966261 0,10424345
+3,6564136 273695,2042 -0,20583294 0,092136525 0 3,8622465 2,298086201 76,02644561 2,44039993 3,9664136 0,10416706
+3,6565473 273727,2044 -0,20592843 0,092132702 0 3,8624756 2,298905194 76,03533455 2,441269641 3,9665473 0,10407157
+3,6567764 273759,2046 -0,20585203 0,092130795 0 3,8626285 2,299724187 76,04422349 2,442139353 3,9667764 0,10414797
+3,656872 273791,2047 -0,20596662 0,092131428 0 3,8628387 2,300543179 76,05311243 2,443009062 3,966872 0,10403338
+3,6570058 273823,2049 -0,20590933 0,092135251 0 3,862915 2,301362172 76,06200137 2,443878773 3,9670058 0,10409067
+3,6571202 273855,2051 -0,20602392 0,092133977 0 3,8631442 2,302181166 76,0708903 2,444748484 3,9671202 0,10397608
+3,6573877 273887,2053 -0,20587113 0,092136525 0 3,8632588 2,303000158 76,07977924 2,445618194 3,9673877 0,10412887
+3,6574831 273919,2054 -0,20589024 0,09213461 0 3,8633733 2,303819152 76,08866818 2,446487906 3,9674831 0,10410976
+3,657655 273951,2056 -0,20592843 0,092141613 0 3,8635833 2,304638142 76,09755712 2,447357613 3,967655 0,10407157
+3,6577315 273983,2058 -0,20600481 0,092139073 0 3,8637364 2,305457131 76,10644605 2,44822732 3,9677315 0,10399519
+3,6580179 274015,206 -0,20606211 0,092132702 0 3,86408 2,306276122 76,11533499 2,449097029 3,9680179 0,10393789
+3,6580179 274047,2061 -0,20585203 0,09212888 0 3,8638699 2,307095115 76,12422393 2,449966739 3,9680179 0,10414797
+3,6581516 274079,2063 -0,20608121 0,092135251 0 3,8642328 2,307914108 76,13311287 2,450836451 3,9681516 0,10391879
+3,6583235 274111,2065 -0,20596662 0,092137799 0 3,8642902 2,3087331 76,14200181 2,451706161 3,9683235 0,10403338
+3,658457 274143,2067 -0,2061003 0,09213461 0 3,8645573 2,309552092 76,15089074 2,45257587 3,968457 0,1038997
+3,6586673 274175,2069 -0,20594752 0,092132702 0 3,864615 2,310371083 76,15977968 2,453445579 3,9686673 0,10405248
+3,6587245 274207,207 -0,20596662 0,092142887 0 3,8646913 2,311190072 76,16866862 2,454315285 3,9687245 0,10403338
+3,6587436 274239,2072 -0,2061003 0,092139073 0 3,8648438 2,312009062 76,17755756 2,455184993 3,9687436 0,1038997
+3,6591256 274271,2074 -0,20598572 0,092139073 0 3,8651114 2,312828053 76,18644649 2,456054702 3,9691256 0,10401428
+3,6592402 274303,2076 -0,20590933 0,092133977 0 3,8651495 2,313647044 76,19533543 2,456924411 3,9692402 0,10409067
+3,6592784 274335,2077 -0,206043 0,092127606 0 3,8653214 2,314466037 76,20422437 2,457794122 3,9692784 0,103957
+3,6594121 274367,2079 -0,20598572 0,092135884 0 3,8653979 2,315285032 76,21311331 2,458663835 3,9694121 0,10401428
+3,6596222 274399,2081 -0,2061767 0,092137158 0 3,865799 2,31610403 76,22200225 2,45953355 3,9696222 0,1038233
+3,6597941 274431,2083 -0,2061194 0,092136525 0 3,8659134 2,316923027 76,23089118 2,460403265 3,9697941 0,1038806
+3,6600041 274463,2084 -0,2061194 0,092132702 0 3,8661234 2,317742023 76,23978012 2,461272979 3,9700041 0,1038806
+3,6600423 274495,2086 -0,20594752 0,092132702 0 3,8659897 2,318561019 76,24866906 2,462142693 3,9700423 0,10405248
+3,6600995 274527,2088 -0,20613849 0,092135251 0 3,8662381 2,319380012 76,257558 2,463012405 3,9700995 0,10386151
+3,6602523 274559,209 -0,20615759 0,092137799 0 3,86641 2,320199007 76,26644694 2,463882117 3,9702523 0,10384241
+3,6605005 274591,2091 -0,2061194 0,092132062 0 3,8666198 2,321018 76,27533587 2,464751828 3,9705005 0,1038806
+3,6606152 274623,2093 -0,20623398 0,092137799 0 3,8668492 2,321836992 76,28422481 2,465621538 3,9706152 0,10376602
+3,6607106 274655,2095 -0,20615759 0,092141613 0 3,8668683 2,322655984 76,29311375 2,466491248 3,9707106 0,10384241
+3,6609209 274687,2097 -0,20606211 0,092135884 0 3,8669829 2,323474977 76,30200269 2,467360959 3,9709209 0,10393789
+3,6611309 274719,2098 -0,20613849 0,092133336 0 3,8672695 2,324293969 76,31089162 2,468230669 3,9711309 0,10386151
+3,6611118 274751,21 -0,20623398 0,09214098 0 3,8673458 2,325112963 76,31978056 2,46910038 3,9711118 0,10376602
+3,6613028 274783,2102 -0,20621489 0,092130795 0 3,8675177 2,325931956 76,3286695 2,469970091 3,9713028 0,10378511
+3,661551 274815,2104 -0,2061767 0,092137158 0 3,8677278 2,326750949 76,33755844 2,470839802 3,971551 0,1038233
+3,6616464 274847,2106 -0,20623398 0,092133336 0 3,8678803 2,327569942 76,34644738 2,471709512 3,9716464 0,10376602
+3,6618183 274879,2107 -0,20619579 0,092136525 0 3,8680141 2,328388938 76,35533631 2,472579227 3,9718183 0,10380421
+3,6618373 274911,2109 -0,20627218 0,092137158 0 3,8681095 2,329207933 76,36422525 2,47344894 3,9718373 0,10372782
+3,6620667 274943,2111 -0,20608121 0,09212888 0 3,8681479 2,330026928 76,37311419 2,474318653 3,9720667 0,10391879
+3,6622195 274975,2113 -0,20640586 0,092138432 0 3,8686254 2,330845925 76,38200313 2,475188368 3,9722195 0,10359414
+3,6622002 275007,2114 -0,20636767 0,092142262 0 3,8685679 2,331664926 76,39089206 2,476058087 3,9722002 0,10363233
+3,662544 275039,2116 -0,20625308 0,092139073 0 3,8687971 2,332483929 76,399781 2,476927808 3,972544 0,10374692
+3,6625249 275071,2118 -0,2061767 0,092135884 0 3,8687017 2,333302927 76,40866994 2,477797524 3,9725249 0,1038233
+3,662735 275103,212 -0,20631038 0,092136525 0 3,8690453 2,334121925 76,41755888 2,478667241 3,972735 0,10368962
+3,6628115 275135,2121 -0,20644405 0,092146084 0 3,8692555 2,334940921 76,42644782 2,479536955 3,9728115 0,10355595
+3,662945 275167,2123 -0,20619579 0,092144169 0 3,8691409 2,335759916 76,43533675 2,480406668 3,972945 0,10380421
+3,6630406 275199,2125 -0,20632946 0,092133977 0 3,86937 2,336578911 76,44422569 2,48127638 3,9730406 0,10367054
+3,6634226 275231,2127 -0,20631038 0,09214098 0 3,8697329 2,337397908 76,45311463 2,482146096 3,9734226 0,10368962
+3,663327 275263,2128 -0,20623398 0,092140347 0 3,869561 2,338216909 76,46200357 2,483015815 3,973327 0,10376602
+3,6636136 275295,213 -0,20634857 0,092136525 0 3,8699622 2,339035909 76,4708925 2,483885533 3,9736136 0,10365143
+3,6636326 275327,2132 -0,20642495 0,092131428 0 3,8700576 2,339854906 76,47978144 2,484755249 3,9736326 0,10357505
+3,6638427 275359,2134 -0,20634857 0,092141613 0 3,8701913 2,340673907 76,48867038 2,485624968 3,9738427 0,10365143
+3,6640146 275391,2135 -0,20640586 0,092144802 0 3,8704205 2,341492907 76,49755932 2,486494686 3,9740146 0,10359414
+3,6640911 275423,2137 -0,20629127 0,092139706 0 3,8703823 2,342311909 76,50644826 2,487364406 3,9740911 0,10370873
+3,6644347 275455,2139 -0,20646316 0,092139706 0 3,8708978 2,343130913 76,51533719 2,488234129 3,9744347 0,10353684
+3,6644347 275487,2141 -0,20638676 0,09213461 0 3,8708215 2,343949912 76,52422613 2,489103847 3,9744347 0,10361324
+3,6645303 275519,2143 -0,20627218 0,092137158 0 3,8708024 2,344768912 76,53311507 2,489973565 3,9745303 0,10372782
+3,6646066 275551,2144 -0,20640586 0,092133336 0 3,8710124 2,345587911 76,54200401 2,490843282 3,9746066 0,10359414
+3,6647594 275583,2146 -0,20657773 0,092133336 0 3,8713372 2,346406909 76,55089295 2,491712998 3,9747594 0,10342227
+3,6649504 275615,2148 -0,20631038 0,092136525 0 3,8712606 2,347225904 76,55978188 2,492582711 3,9749504 0,10368962
+3,6651032 275647,215 -0,20631038 0,092130795 0 3,8714135 2,348044898 76,56867082 2,493452423 3,9751032 0,10368962
+3,6653705 275679,2151 -0,20648225 0,092130147 0 3,8718526 2,348863891 76,57755976 2,494322134 3,9753705 0,10351775
+3,6655614 275711,2153 -0,20648225 0,092136525 0 3,8720436 2,349682884 76,5864487 2,495191844 3,9755614 0,10351775
+3,6656189 275743,2155 -0,20661592 0,092137799 0 3,8722348 2,350501877 76,59533763 2,496061556 3,9756189 0,10338408
+3,6656189 275775,2157 -0,20653954 0,092127606 0 3,8721585 2,351320874 76,60422657 2,49693127 3,9756189 0,10346046
+3,6657717 275807,2158 -0,20653954 0,092135251 0 3,8723114 2,352139869 76,61311551 2,497800983 3,9757717 0,10346046
+3,6658862 275839,216 -0,20652044 0,092136525 0 3,8724065 2,352958864 76,62200445 2,498670696 3,9758862 0,10347956
+3,6661918 275871,2162 -0,20665413 0,092135884 0 3,8728459 2,353777858 76,63089339 2,499540408 3,9761918 0,10334587
+3,6661153 275903,2164 -0,20676871 0,092127606 0 3,872884 2,35459685 76,63978232 2,500410118 3,9761153 0,10323129
+3,6663446 275935,2165 -0,20650135 0,092142262 0 3,8728459 2,355415843 76,64867126 2,501279829 3,9763446 0,10349865
+3,6665165 275967,2167 -0,20642495 0,092140347 0 3,8729415 2,356234835 76,6575602 2,502149539 3,9765165 0,10357505
+3,6666882 275999,2169 -0,20657773 0,09213461 0 3,873266 2,357053827 76,66644914 2,503019248 3,9766882 0,10342227
+3,6668792 276031,2171 -0,20665413 0,092135884 0 3,8735332 2,357872817 76,67533807 2,503888956 3,9768792 0,10334587
+3,6670129 276063,2172 -0,20665413 0,092136525 0 3,873667 2,358691807 76,68422701 2,504758664 3,9770129 0,10334587
+3,6669748 276095,2174 -0,20652044 0,092135251 0 3,8734951 2,3595108 76,69311595 2,505628375 3,9769748 0,10347956
+3,6672421 276127,2176 -0,20661592 0,09213461 0 3,873858 2,360329795 76,70200489 2,506498087 3,9772421 0,10338408
+3,6673567 276159,2178 -0,20667322 0,092132702 0 3,8740299 2,36114879 76,71089383 2,5073678 3,9773567 0,10332678
+3,6674905 276191,218 -0,20659684 0,092130147 0 3,8740873 2,361967782 76,71978276 2,508237511 3,9774905 0,10340316
+3,6676815 276223,2181 -0,20669232 0,092139706 0 3,8743737 2,362786775 76,7286717 2,509107221 3,9776815 0,10330768
+3,6677196 276255,2183 -0,20661592 0,09213461 0 3,8743355 2,363605768 76,73756064 2,509976932 3,9777196 0,10338408
+3,6679487 276287,2185 -0,20678781 0,092135251 0 3,8747365 2,364424764 76,74644958 2,510846645 3,9779487 0,10321219
+3,6681588 276319,2187 -0,20659684 0,092137158 0 3,8747556 2,365243759 76,75533852 2,511716359 3,9781588 0,10340316
+3,6682353 276351,2188 -0,20665413 0,092131428 0 3,8748894 2,366062752 76,76422745 2,512586069 3,9782353 0,10334587
+3,6684072 276383,219 -0,20678781 0,092133977 0 3,875195 2,366881744 76,77311639 2,513455779 3,9784072 0,10321219
+3,6685982 276415,2192 -0,20663503 0,09214098 0 3,8752332 2,367700738 76,78200533 2,514325491 3,9785982 0,10336497
+3,6685982 276447,2194 -0,20673051 0,092136525 0 3,8753288 2,368519733 76,79089427 2,515195204 3,9785982 0,10326949
+3,6686745 276479,2195 -0,20663503 0,092132702 0 3,8753095 2,369338728 76,7997832 2,516064917 3,9786745 0,10336497
+3,6687701 276511,2197 -0,20663503 0,092136525 0 3,8754051 2,370157723 76,80867214 2,51693463 3,9787701 0,10336497
+3,6689417 276543,2199 -0,20669232 0,092137799 0 3,875634 2,370976717 76,81756108 2,517804342 3,9789417 0,10330768
+3,669152 276575,2201 -0,20690238 0,092135884 0 3,8760543 2,37179571 76,82645002 2,518674053 3,979152 0,10309762
+3,6693239 276607,2202 -0,20671141 0,092135884 0 3,8760352 2,372614704 76,83533896 2,519543765 3,9793239 0,10328859
+3,6694956 276639,2204 -0,20669232 0,092130147 0 3,8761878 2,373433698 76,84422789 2,520413476 3,9794956 0,10330768
+3,6696293 276671,2206 -0,20690238 0,092137158 0 3,8765316 2,37425269 76,85311683 2,521283186 3,9796293 0,10309762
+3,6697249 276703,2208 -0,206826 0,092139073 0 3,8765509 2,375071684 76,86200577 2,522152898 3,9797249 0,103174
+3,6698585 276735,2209 -0,20674962 0,092135251 0 3,8766081 2,37589068 76,87089471 2,523022612 3,9798585 0,10325038
+3,669935 276767,2211 -0,20665413 0,092140347 0 3,8765891 2,376709675 76,87978364 2,523892325 3,979935 0,10334587
+3,6701069 276799,2213 -0,206826 0,092130795 0 3,8769329 2,377528671 76,88867258 2,524762039 3,9801069 0,103174
+3,670336 276831,2215 -0,20694059 0,092135251 0 3,8772767 2,378347671 76,89756152 2,525631758 3,980336 0,10305941
+3,6704698 276863,2216 -0,2068833 0,092132702 0 3,877353 2,37916667 76,90645046 2,526501474 3,9804698 0,1031167
+3,6705651 276895,2218 -0,2068069 0,092138432 0 3,877372 2,37998567 76,9153394 2,527371193 3,9805651 0,1031931
+3,6707942 276927,222 -0,20697878 0,09213461 0 3,877773 2,380804666 76,92422833 2,528240907 3,9807942 0,10302122
+3,6708899 276959,2222 -0,206826 0,09214098 0 3,8777158 2,381623659 76,93311727 2,529110618 3,9808899 0,103174
+3,670928 276991,2224 -0,20673051 0,092133336 0 3,8776586 2,382442652 76,94200621 2,529980328 3,980928 0,10326949
+3,6711762 277023,2225 -0,20678781 0,092132702 0 3,877964 2,383261644 76,95089515 2,530850038 3,9811762 0,10321219
+3,6712527 277055,2227 -0,206826 0,092138432 0 3,8780787 2,384080637 76,95978409 2,531719749 3,9812527 0,103174
+3,6714246 277087,2229 -0,20690238 0,092139073 0 3,8783269 2,384899631 76,96867302 2,532589462 3,9814246 0,10309762
+3,6714437 277119,2231 -0,20694059 0,092141613 0 3,8783844 2,385718626 76,97756196 2,533459174 3,9814437 0,10305941
+3,6718066 277151,2232 -0,20699787 0,092131428 0 3,8788044 2,38653762 76,9864509 2,534328886 3,9818066 0,10300213
+3,6717684 277183,2234 -0,206826 0,092140347 0 3,8785944 2,387356611 76,99533984 2,535198595 3,9817684 0,103174
+3,6719785 277215,2236 -0,20690238 0,092139073 0 3,878881 2,388175601 77,00422877 2,536068303 3,9819785 0,10309762
+3,6720738 277247,2238 -0,20692149 0,092139706 0 3,8789954 2,388994596 77,01311771 2,536938015 3,9820738 0,10307851
+3,6720548 277279,2239 -0,20709337 0,092135251 0 3,8791482 2,38981359 77,02200665 2,537807727 3,9820548 0,10290663
+3,6723986 277311,2241 -0,20701697 0,092131428 0 3,8794155 2,390632585 77,03089559 2,53867744 3,9823986 0,10298303
+3,6725514 277343,2243 -0,20705517 0,092139706 0 3,8796065 2,39145158 77,03978453 2,539547153 3,9825514 0,10294483
+3,6727614 277375,2245 -0,20697878 0,092135884 0 3,8797402 2,392270577 77,04867346 2,540416868 3,9827614 0,10302122
+3,6727614 277407,2246 -0,20692149 0,092136525 0 3,879683 2,393089574 77,0575624 2,541286583 3,9827614 0,10307851
+3,6729524 277439,2248 -0,20699787 0,09214098 0 3,8799503 2,393908571 77,06645134 2,542156299 3,9829524 0,10300213
+3,6730478 277471,225 -0,20720795 0,092138432 0 3,8802557 2,394727565 77,07534028 2,54302601 3,9830478 0,10279205
+3,6732197 277503,2252 -0,20692149 0,092132702 0 3,8801413 2,395546554 77,08422921 2,543895717 3,9832197 0,10307851
+3,6732388 277535,2253 -0,20703608 0,092135251 0 3,8802748 2,396365543 77,09311815 2,544765423 3,9832388 0,10296392
+3,6734107 277567,2255 -0,20707427 0,092125066 0 3,8804848 2,397184534 77,10200709 2,545635132 3,9834107 0,10292573
+3,6737354 277599,2257 -0,20707427 0,092132702 0 3,8808095 2,398003526 77,11089603 2,546504842 3,9837354 0,10292573
+3,6736972 277631,2259 -0,20724614 0,092147343 0 3,8809433 2,398822517 77,11978497 2,54737455 3,9836972 0,10275386
+3,6739264 277663,2261 -0,20720795 0,092135884 0 3,8811343 2,399641505 77,1286739 2,548244256 3,9839264 0,10279205
+3,6740029 277695,2262 -0,20720795 0,092139706 0 3,8812108 2,400460494 77,13756284 2,549113963 3,9840029 0,10279205
+3,6740601 277727,2264 -0,20724614 0,092127606 0 3,8813062 2,401279481 77,14645178 2,549983667 3,9840601 0,10275386
+3,6743083 277759,2266 -0,20720795 0,092141613 0 3,8815162 2,402098469 77,15534072 2,550853372 3,9843083 0,10279205
+3,6744421 277791,2268 -0,20703608 0,092132702 0 3,8814781 2,402917457 77,16422966 2,551723078 3,9844421 0,10296392
+3,6746521 277823,2269 -0,20705517 0,092137799 0 3,8817072 2,403736446 77,17311859 2,552592785 3,9846521 0,10294483
+3,674633 277855,2271 -0,20718886 0,092135884 0 3,8818219 2,404555438 77,18200753 2,553462494 3,984633 0,10281114
+3,6748621 277887,2273 -0,20715065 0,092135884 0 3,8820128 2,40537443 77,19089647 2,554332204 3,9848621 0,10284935
+3,6750722 277919,2275 -0,20730343 0,092135884 0 3,8823757 2,406193421 77,19978541 2,555201913 3,9850722 0,10269657
+3,6752632 277951,2276 -0,20720795 0,092152447 0 3,8824711 2,407012413 77,20867434 2,556071623 3,9852632 0,10279205
+3,6751869 277983,2278 -0,20726524 0,092133977 0 3,882452 2,407831405 77,21756328 2,556941333 3,9851869 0,10273476
+3,6755116 278015,228 -0,20718886 0,092135884 0 3,8827004 2,408650395 77,22645222 2,55781104 3,9855116 0,10281114
+3,6756451 278047,2282 -0,20722705 0,09214098 0 3,8828721 2,409469383 77,23534116 2,558680745 3,9856451 0,10277295
+3,6757026 278079,2283 -0,20730343 0,092144169 0 3,8830061 2,410288373 77,2442301 2,559550453 3,9857026 0,10269657
+3,675817 278111,2285 -0,20724614 0,092138432 0 3,8830631 2,411107363 77,25311903 2,560420161 3,985817 0,10275386
+3,6758361 278143,2287 -0,20732254 0,092135884 0 3,8831587 2,411926354 77,26200797 2,561289869 3,9858361 0,10267746
+3,6760654 278175,2289 -0,20724614 0,092127606 0 3,8833115 2,412745348 77,27089691 2,562159582 3,9860654 0,10275386
+3,676218 278207,229 -0,20726524 0,092136525 0 3,8834832 2,413564345 77,27978585 2,563029297 3,986218 0,10273476
+3,6762755 278239,2292 -0,20739892 0,092139706 0 3,8836744 2,414383341 77,28867478 2,563899011 3,9862755 0,10260108
+3,6764474 278271,2294 -0,20741802 0,092139706 0 3,8838654 2,415202336 77,29756372 2,564768724 3,9864474 0,10258198
+3,6766384 278303,2296 -0,20732254 0,092136525 0 3,883961 2,416021332 77,30645266 2,565638438 3,9866384 0,10267746
+3,6766956 278335,2298 -0,20732254 0,092139706 0 3,8840182 2,416840328 77,3153416 2,566508151 3,9866956 0,10267746
+3,6768293 278367,2299 -0,20732254 0,092132062 0 3,8841519 2,417659324 77,32423054 2,567377866 3,9868293 0,10267746
+3,6769438 278399,2301 -0,20745622 0,092133977 0 3,8843999 2,418478321 77,33311947 2,568247581 3,9869438 0,10254378
+3,6771922 278431,2303 -0,20743711 0,092138432 0 3,8846292 2,419297319 77,34200841 2,569117297 3,9871922 0,10256289
+3,6772494 278463,2305 -0,20736073 0,09213461 0 3,8846102 2,420116316 77,35089735 2,569987012 3,9872494 0,10263927
+3,6773832 278495,2306 -0,20736073 0,092137158 0 3,8847439 2,420935314 77,35978629 2,570856728 3,9873832 0,10263927
+3,6775932 278527,2308 -0,20736073 0,092139706 0 3,884954 2,421754309 77,36867522 2,571726441 3,9875932 0,10263927
+3,6776886 278559,231 -0,20749441 0,092136525 0 3,8851831 2,422573303 77,37756416 2,572596153 3,9876886 0,10250559
+3,6780324 278591,2312 -0,20764719 0,092143528 0 3,8856795 2,4233923 77,3864531 2,573465869 3,9880324 0,10235281
+3,6778986 278623,2313 -0,20736073 0,092139073 0 3,8852594 2,424211296 77,39534204 2,574335582 3,9878986 0,10263927
+3,6781662 278655,2315 -0,2075326 0,092133336 0 3,8856988 2,425030289 77,40423098 2,575205292 3,9881662 0,1024674
+3,6780515 278687,2317 -0,20741802 0,09213461 0 3,8854694 2,425849281 77,41311991 2,576075003 3,9880515 0,10258198
+3,6784334 278719,2319 -0,20747532 0,092137799 0 3,8859088 2,426668274 77,42200885 2,576944713 3,9884334 0,10252468
+3,6785862 278751,232 -0,20768538 0,092137158 0 3,8862717 2,427487266 77,43089779 2,577814423 3,9885862 0,10231462
+3,6785672 278783,2322 -0,2075517 0,092133336 0 3,8861189 2,428306258 77,43978673 2,578684133 3,9885672 0,1024483
+3,6788154 278815,2324 -0,2075326 0,092138432 0 3,886348 2,429125249 77,44867567 2,579553842 3,9888154 0,1024674
+3,67893 278847,2326 -0,2075517 0,092133977 0 3,8864818 2,429944242 77,4575646 2,580423552 3,98893 0,1024483
+3,6790063 278879,2327 -0,20768538 0,092133977 0 3,8866918 2,430763234 77,46645354 2,581293262 3,9890063 0,10231462
+3,6791592 278911,2329 -0,20743711 0,092135884 0 3,8865962 2,431582227 77,47534248 2,582162973 3,9891592 0,10256289
+3,679312 278943,2331 -0,20764719 0,092132702 0 3,8869591 2,432401221 77,48423142 2,583032685 3,989312 0,10235281
+3,6794648 278975,2333 -0,20770448 0,092130795 0 3,8871694 2,433220213 77,49312035 2,583902394 3,9894648 0,10229552
+3,6795793 279007,2335 -0,20745622 0,092130147 0 3,8870354 2,434039206 77,50200929 2,584772105 3,9895793 0,10254378
+3,6797702 279039,2336 -0,20764719 0,092137158 0 3,8874173 2,434858201 77,51089823 2,585641819 3,9897702 0,10235281
+3,6798658 279071,2338 -0,20758989 0,092126973 0 3,8874557 2,435677196 77,51978717 2,586511532 3,9898658 0,10241011
+3,6799996 279103,234 -0,20764719 0,092123784 0 3,8876467 2,436496189 77,52867611 2,587381242 3,9899996 0,10235281
+3,6800377 279135,2342 -0,20770448 0,092133977 0 3,8877423 2,437315181 77,53756504 2,588250952 3,9900377 0,10229552
+3,6803241 279167,2343 -0,20772357 0,092135884 0 3,8880477 2,438134172 77,54645398 2,589120661 3,9903241 0,10227643
+3,6803432 279199,2345 -0,20757081 0,092137799 0 3,8879139 2,438953166 77,55534292 2,589990373 3,9903432 0,10242919
+3,6805725 279231,2347 -0,20778087 0,092140347 0 3,8883533 2,439772159 77,56423186 2,590860084 3,9905725 0,10221913
+3,6806679 279263,2349 -0,20762809 0,092135884 0 3,8882959 2,440591154 77,57312079 2,591729797 3,9906679 0,10237191
+3,6806679 279295,235 -0,20787635 0,092143528 0 3,8885443 2,44141015 77,58200973 2,59259951 3,9906679 0,10212365
+3,6809161 279327,2352 -0,20778087 0,092139073 0 3,8886969 2,442229145 77,59089867 2,593469224 3,9909161 0,10221913
+3,6811454 279359,2354 -0,20785727 0,092136525 0 3,8890028 2,44304814 77,59978761 2,594338937 3,9911454 0,10214273
+3,6812408 279391,2356 -0,20789546 0,092135884 0 3,8891363 2,443867138 77,60867655 2,595208653 3,9912408 0,10210454
+3,6813173 279423,2357 -0,20783816 0,092136525 0 3,8891554 2,444686136 77,61756548 2,596078369 3,9913173 0,10216184
+3,6814127 279455,2359 -0,20770448 0,09213461 0 3,8891172 2,445505132 77,62645442 2,596948083 3,9914127 0,10229552
+3,6815083 279487,2361 -0,20787635 0,092133977 0 3,8893847 2,446324125 77,63534336 2,597817794 3,9915083 0,10212365
+3,6817183 279519,2363 -0,20785727 0,092137799 0 3,8895757 2,447143116 77,6442323 2,598687503 3,9917183 0,10214273
+3,6818328 279551,2364 -0,20799094 0,092133977 0 3,8898237 2,447962109 77,65312124 2,599557214 3,9918328 0,10200906
+3,6820812 279583,2366 -0,20781906 0,092144802 0 3,8899002 2,448781105 77,66201017 2,600426928 3,9920812 0,10218094
+3,682234 279615,2368 -0,20793365 0,092144169 0 3,8901677 2,449600101 77,67089911 2,601296641 3,992234 0,10206635
+3,6823294 279647,237 -0,20793365 0,092126973 0 3,8902631 2,450419098 77,67978805 2,602166356 3,9923294 0,10206635
+3,682425 279679,2372 -0,20791455 0,092132702 0 3,8903396 2,451238094 77,68867699 2,603036071 3,992425 0,10208545
+3,6825585 279711,2373 -0,20789546 0,092132062 0 3,8904541 2,452057091 77,69756592 2,603905785 3,9925585 0,10210454
+3,6827495 279743,2375 -0,20785727 0,092137799 0 3,8906069 2,452876087 77,70645486 2,6047755 3,9927495 0,10214273
+3,6827495 279775,2377 -0,20787635 0,092130795 0 3,890626 2,453695083 77,7153438 2,605645214 3,9927495 0,10212365
+3,6828833 279807,2379 -0,20793365 0,092139706 0 3,8908169 2,454514079 77,72423274 2,606514928 3,9928833 0,10206635
+3,6830742 279839,238 -0,20810552 0,09214098 0 3,8911798 2,455333073 77,73312168 2,60738464 3,9930742 0,10189448
+3,6831505 279871,2382 -0,20806733 0,092138432 0 3,8912179 2,456152066 77,74201061 2,60825435 3,9931505 0,10193267
+3,6833799 279903,2384 -0,20793365 0,092132062 0 3,8913136 2,456971061 77,75089955 2,609124063 3,9933799 0,10206635
+3,6834562 279935,2386 -0,20799094 0,092136525 0 3,8914471 2,457790056 77,75978849 2,609993776 3,9934562 0,10200906
+3,6836662 279967,2387 -0,20799094 0,092137158 0 3,8916571 2,458609053 77,76867743 2,610863491 3,9936662 0,10200906
+3,6838953 279999,2389 -0,20797184 0,092135251 0 3,8918672 2,45942805 77,77756636 2,611733207 3,9938953 0,10202816
+3,6839337 280031,2391 -0,20802914 0,092131428 0 3,8919628 2,460247049 77,7864553 2,612602923 3,9939337 0,10197086
+3,6840672 280063,2393 -0,20801003 0,092143528 0 3,8920772 2,461066047 77,79534424 2,61347264 3,9940672 0,10198997
+3,6842201 280095,2394 -0,20797184 0,092126973 0 3,8921919 2,461885048 77,80423318 2,614342358 3,9942201 0,10202816
+3,684201 280127,2396 -0,20801003 0,092137799 0 3,892211 2,462704046 77,81312212 2,615212075 3,994201 0,10198997
+3,6845639 280159,2398 -0,20801003 0,092139073 0 3,8925738 2,463523044 77,82201105 2,616081792 3,9945639 0,10198997
+3,6845639 280191,24 -0,20802914 0,092143528 0 3,8925929 2,464342042 77,83089999 2,616951508 3,9945639 0,10197086
+3,6847167 280223,2401 -0,20822011 0,092140347 0 3,8929367 2,465161038 77,83978893 2,617821222 3,9947167 0,10177989
+3,6848886 280255,2403 -0,20804824 0,09212888 0 3,8929369 2,465980035 77,84867787 2,618690936 3,9948886 0,10195176
+3,6848311 280287,2405 -0,20816281 0,092141613 0 3,8929939 2,46679903 77,85756681 2,619560649 3,9948311 0,10183719
+3,6851368 280319,2407 -0,20810552 0,092136525 0 3,8932424 2,467618023 77,86645574 2,62043036 3,9951368 0,10189448
+3,6852324 280351,2409 -0,20801003 0,092132702 0 3,8932424 2,468437017 77,87534468 2,621300072 3,9952324 0,10198997
+3,6852131 280383,241 -0,2082583 0,092137158 0 3,8934715 2,46925601 77,88423362 2,622169782 3,9952131 0,1017417
+3,6854997 280415,2412 -0,20810552 0,092136525 0 3,8936052 2,470074999 77,89312256 2,62303949 3,9954997 0,10189448
+3,6855569 280447,2414 -0,2082774 0,09213461 0 3,8938344 2,47089399 77,90201149 2,623909198 3,9955569 0,1017226
+3,6857669 280479,2416 -0,20820101 0,092132062 0 3,8939679 2,471712981 77,91090043 2,624778907 3,9957669 0,10179899
+3,6858053 280511,2417 -0,2082583 0,09213461 0 3,8940637 2,472531972 77,91978937 2,625648616 3,9958053 0,1017417
+3,6860344 280543,2419 -0,20835379 0,092133336 0 3,8943882 2,473350964 77,92867831 2,626518326 3,9960344 0,10164621
+3,6860726 280575,2421 -0,20841108 0,092132062 0 3,8944836 2,474169956 77,93756725 2,627388035 3,9960726 0,10158892
+3,6863592 280607,2423 -0,2083156 0,092137799 0 3,8946748 2,474988946 77,94645618 2,628257743 3,9963592 0,1016844
+3,6864355 280639,2424 -0,20850657 0,092136525 0 3,894942 2,475807937 77,95534512 2,629127451 3,9964355 0,10149343
+3,6866646 280671,2426 -0,2082583 0,092146084 0 3,894923 2,476626929 77,96423406 2,629997161 3,9966646 0,1017417
+3,6866646 280703,2428 -0,20848747 0,092133977 0 3,8951521 2,47744592 77,973123 2,63086687 3,9966646 0,10151253
+3,6868746 280735,243 -0,20841108 0,092137158 0 3,8952856 2,478264912 77,98201193 2,63173658 3,9968746 0,10158892
+3,6869702 280767,2431 -0,2082774 0,092140347 0 3,8952477 2,479083905 77,99090087 2,632606291 3,9969702 0,1017226
+3,6871803 280799,2433 -0,2083156 0,092137158 0 3,8954959 2,479902902 77,99978981 2,633476006 3,9971803 0,1016844
+3,6872566 280831,2435 -0,20848747 0,092130147 0 3,8957441 2,480721896 78,00867875 2,634345718 3,9972566 0,10151253
+3,6873903 280863,2437 -0,20846838 0,092138432 0 3,8958588 2,481540889 78,01756769 2,635215429 3,9973903 0,10153162
+3,6873713 280895,2438 -0,20839198 0,09213461 0 3,8957632 2,482359883 78,02645662 2,63608514 3,9973713 0,10160802
+3,6875432 280927,244 -0,20852567 0,09212824 0 3,8960688 2,483178877 78,03534556 2,636954852 3,9975432 0,10147433
+3,6877723 280959,2442 -0,20858295 0,092139706 0 3,8963552 2,48399787 78,0442345 2,637824563 3,9977723 0,10141705
+3,6877341 280991,2444 -0,20854476 0,092133336 0 3,8962789 2,484816864 78,05312344 2,638694275 3,9977341 0,10145524
+3,6880205 281023,2446 -0,20839198 0,092135251 0 3,8964124 2,485635857 78,06201238 2,639563985 3,9980205 0,10160802
+3,6881351 281055,2447 -0,20854476 0,092133977 0 3,8966799 2,486454851 78,07090131 2,640433697 3,9981351 0,10145524
+3,688288 281087,2449 -0,20860206 0,09213461 0 3,8968899 2,487273845 78,07979025 2,641303409 3,998288 0,10139794
+3,6882689 281119,2451 -0,20854476 0,09214098 0 3,8968136 2,488092836 78,08867919 2,642173118 3,9982689 0,10145524
+3,6886127 281151,2453 -0,20858295 0,092132062 0 3,8971956 2,488911826 78,09756813 2,643042825 3,9986127 0,10141705
+3,6886508 281183,2454 -0,20844927 0,092135884 0 3,8971002 2,489730816 78,10645706 2,643912533 3,9986508 0,10155073
+3,68888 281215,2456 -0,20837289 0,09213461 0 3,8972528 2,490549803 78,115346 2,644782238 3,99888 0,10162711
+3,6889756 281247,2458 -0,20841108 0,092133336 0 3,8973866 2,491368793 78,12423494 2,645651946 3,9989756 0,10158892
+3,6890328 281279,246 -0,20864025 0,092129521 0 3,8976731 2,492187783 78,13312388 2,646521654 3,9990328 0,10135975
+3,6892619 281311,2461 -0,20862116 0,092139706 0 3,8978832 2,493006774 78,14201282 2,647391362 3,9992619 0,10137884
+3,6893191 281343,2463 -0,20865935 0,092139073 0 3,8979785 2,493825763 78,15090175 2,648261068 3,9993191 0,10134065
+3,6894147 281375,2465 -0,20860206 0,092136525 0 3,8980167 2,49464475 78,15979069 2,649130773 3,9994147 0,10139794
+3,6896248 281407,2467 -0,20873573 0,092137799 0 3,8983605 2,495463739 78,16867963 2,650000479 3,9996248 0,10126427
+3,6897967 281439,2468 -0,20873573 0,092138432 0 3,8985324 2,496282728 78,17756857 2,650870186 3,9997967 0,10126427
+3,6898158 281471,247 -0,20856386 0,092135251 0 3,8983796 2,497101715 78,1864575 2,65173989 3,9998158 0,10143614
+3,6901023 281503,2472 -0,20867844 0,092140347 0 3,8987808 2,497920704 78,19534644 2,652609597 4,0001023 0,10132156
+3,6902359 281535,2474 -0,20869754 0,092137158 0 3,8989334 2,498739696 78,20423538 2,653479307 4,0002359 0,10130246
+3,6903124 281567,2475 -0,20865935 0,092135884 0 3,8989718 2,499558686 78,21312432 2,654349015 4,0003124 0,10134065
+3,6904843 281599,2477 -0,20869754 0,092138432 0 3,8991818 2,500377676 78,22201326 2,655218722 4,0004843 0,10130246
+3,6907325 281631,2479 -0,20873573 0,092148624 0 3,8994682 2,501196667 78,23090219 2,656088431 4,0007325 0,10126427
+3,6907706 281663,2481 -0,20890762 0,092142887 0 3,8996782 2,502015661 78,23979113 2,656958142 4,0007706 0,10109238
+3,6907706 281695,2482 -0,20885032 0,092138432 0 3,899621 2,502834655 78,24868007 2,657827854 4,0007706 0,10114968
+3,6909235 281727,2484 -0,20881213 0,092139706 0 3,8997357 2,503653649 78,25756901 2,658697567 4,0009235 0,10118787
+3,6911144 281759,2486 -0,20883122 0,092136525 0 3,8999457 2,504472644 78,26645794 2,659567279 4,0011144 0,10116878
+3,69121 281791,2488 -0,2089649 0,092135884 0 3,9001749 2,505291641 78,27534688 2,660436995 4,00121 0,1010351
+3,6913626 281823,249 -0,20888852 0,09212824 0 3,9002512 2,506110637 78,28423582 2,661306708 4,0013626 0,10111148
+3,691401 281855,2491 -0,20890762 0,092135884 0 3,9003086 2,506929634 78,29312476 2,662176424 4,001401 0,10109238
+3,6915727 281887,2493 -0,20888852 0,092138432 0 3,9004612 2,507748631 78,3020137 2,663046139 4,0015727 0,10111148
+3,691783 281919,2495 -0,20917498 0,092133336 0 3,9009578 2,508567627 78,31090263 2,663915853 4,001783 0,10082502
+3,6920121 281951,2497 -0,20902219 0,092137799 0 3,9010344 2,509386623 78,31979157 2,664785567 4,0020121 0,10097781
+3,6920502 281983,2498 -0,20902219 0,092139073 0 3,9010725 2,510205621 78,32868051 2,665655283 4,0020502 0,10097781
+3,6920311 282015,25 -0,20885032 0,092127606 0 3,9008815 2,511024618 78,33756945 2,666524998 4,0020311 0,10114968
+3,6923559 282047,2502 -0,2090413 0,092132062 0 3,9013972 2,511843612 78,34645839 2,66739471 4,0023559 0,1009587
+3,6924322 282079,2504 -0,20906039 0,092144802 0 3,9014926 2,512662606 78,35534732 2,668264422 4,0024322 0,10093961
+3,6925278 282111,2505 -0,208984 0,092135251 0 3,9015117 2,5134816 78,36423626 2,669134134 4,0025278 0,101016
+3,6928141 282143,2507 -0,20917498 0,092130795 0 3,901989 2,514300594 78,3731252 2,670003846 4,0028141 0,10082502
+3,6928904 282175,2509 -0,20907949 0,092133336 0 3,9019699 2,515119586 78,38201414 2,670873556 4,0028904 0,10092051
+3,692986 282207,2511 -0,20909859 0,09213461 0 3,9020846 2,515938577 78,39090307 2,671743264 4,002986 0,10090141
+3,6930051 282239,2512 -0,20906039 0,092141613 0 3,9020655 2,516757569 78,39979201 2,672612974 4,0030051 0,10093961
+3,6932533 282271,2514 -0,20915587 0,092130795 0 3,9024091 2,517576563 78,40868095 2,673482686 4,0032533 0,10084413
+3,6933298 282303,2516 -0,20909859 0,09212888 0 3,9024284 2,518395557 78,41756989 2,674352397 4,0033298 0,10090141
+3,6935017 282335,2518 -0,20921317 0,092124417 0 3,902715 2,519214549 78,42645883 2,675222107 4,0035017 0,10078683
+3,6936545 282367,2519 -0,20917498 0,092139706 0 3,9028294 2,520033542 78,43534776 2,676091818 4,0036545 0,10082502
+3,6937881 282399,2521 -0,20917498 0,092132702 0 3,9029629 2,520852534 78,4442367 2,676961528 4,0037881 0,10082502
+3,6938264 282431,2523 -0,20915587 0,092139073 0 3,9029822 2,521671527 78,45312564 2,677831239 4,0038264 0,10084413
+3,6939409 282463,2525 -0,20925136 0,092132702 0 3,9031923 2,522490519 78,46201458 2,678700948 4,0039409 0,10074864
+3,6941891 282495,2527 -0,20917498 0,092135251 0 3,9033639 2,523309508 78,47090351 2,679570656 4,0041891 0,10082502
+3,6944184 282527,2528 -0,20928957 0,092142887 0 3,903708 2,5241285 78,47979245 2,680440365 4,0044184 0,10071043
+3,6944947 282559,253 -0,20932776 0,092132062 0 3,9038224 2,524947493 78,48868139 2,681310076 4,0044947 0,10067224
+3,6945519 282591,2532 -0,20927046 0,092139706 0 3,9038224 2,525766489 78,49757033 2,682179789 4,0045519 0,10072954
+3,6945903 282623,2534 -0,20928957 0,09213461 0 3,9038799 2,526585482 78,50645927 2,6830495 4,0045903 0,10071043
+3,6948195 282655,2535 -0,20940414 0,092139073 0 3,9042237 2,527404477 78,5153482 2,683919214 4,0048195 0,10059586
+3,6950676 282687,2537 -0,20930865 0,092146717 0 3,9043763 2,528223472 78,52423714 2,684788927 4,0050676 0,10069135
+3,6951823 282719,2539 -0,20934686 0,092132702 0 3,9045291 2,529042466 78,53312608 2,685658639 4,0051823 0,10065314
+3,6954114 282751,2541 -0,20932776 0,092138432 0 3,9047391 2,529861462 78,54201502 2,686528352 4,0054114 0,10067224
+3,6955261 282783,2542 -0,20936595 0,092137158 0 3,904892 2,530680455 78,55090396 2,687398064 4,0055261 0,10063405
+3,6955261 282815,2544 -0,20948054 0,092136525 0 3,9050066 2,531499449 78,55979289 2,688267775 4,0055261 0,10051946
+3,6956215 282847,2546 -0,20946144 0,092137799 0 3,9050829 2,532318443 78,56868183 2,689137487 4,0056215 0,10053856
+3,6957743 282879,2548 -0,20942324 0,09213461 0 3,9051976 2,533137437 78,57757077 2,690007199 4,0057743 0,10057676
+3,6957552 282911,2549 -0,20965241 0,092137158 0 3,9054077 2,53395643 78,58645971 2,69087691 4,0057552 0,10034759
+3,6959271 282943,2551 -0,20944235 0,092136525 0 3,9053695 2,534775425 78,59534864 2,691746623 4,0059271 0,10055765
+3,6961563 282975,2553 -0,20951873 0,092130795 0 3,9056749 2,535594417 78,60423758 2,692616333 4,0061563 0,10048127
+3,6963091 283007,2555 -0,20965241 0,092132702 0 3,9059615 2,536413411 78,61312652 2,693486045 4,0063091 0,10034759
+3,6965001 283039,2556 -0,20967151 0,092136525 0 3,9061716 2,537232408 78,62201546 2,694355759 4,0065001 0,10032849
+3,6964235 283071,2558 -0,20949963 0,092135251 0 3,9059231 2,538051404 78,6309044 2,695225474 4,0064235 0,10050037
+3,696672 283103,256 -0,20959511 0,092135251 0 3,9062672 2,538870399 78,63979333 2,696095186 4,006672 0,10040489
+3,6969202 283135,2562 -0,20967151 0,092138432 0 3,9065917 2,539689388 78,64868227 2,696964893 4,0069202 0,10032849
+3,6970348 283167,2564 -0,20961422 0,092147991 0 3,9066491 2,540508383 78,65757121 2,697834606 4,0070348 0,10038578
+3,6970158 283199,2565 -0,20972881 0,09212824 0 3,9067445 2,541327377 78,66646015 2,698704318 4,0070158 0,10027119
+3,6972067 283231,2567 -0,2097097 0,092137799 0 3,9069164 2,542146371 78,67534908 2,699574029 4,0072067 0,1002903
+3,697264 283263,2569 -0,20990068 0,092137799 0 3,9071646 2,542965365 78,68423802 2,700443742 4,007264 0,10009932
+3,6973977 283295,2571 -0,20965241 0,09213461 0 3,9070501 2,543784357 78,69312696 2,701313452 4,0073977 0,10034759
+3,6976459 283327,2572 -0,20972881 0,092141613 0 3,9073746 2,54460335 78,7020159 2,702183163 4,0076459 0,10027119
+3,697875 283359,2574 -0,2096906 0,092137799 0 3,9075656 2,545422348 78,71090484 2,703052878 4,007875 0,1003094
+3,6979322 283391,2576 -0,209767 0,092140347 0 3,9076993 2,546241342 78,71979377 2,70392259 4,0079322 0,100233
+3,6981041 283423,2578 -0,20988157 0,092135884 0 3,9079857 2,547060335 78,72868271 2,704792301 4,0081041 0,10011843
+3,6982188 283455,2579 -0,2097479 0,092132062 0 3,9079666 2,547879327 78,73757165 2,705662011 4,0082188 0,1002521
+3,698257 283487,2581 -0,20991978 0,092142887 0 3,9081767 2,548698318 78,74646059 2,70653172 4,008257 0,10008022
+3,6983716 283519,2583 -0,20980519 0,092132702 0 3,9081769 2,54951731 78,75534953 2,70740143 4,0083716 0,10019481
+3,6985626 283551,2585 -0,20988157 0,092132062 0 3,9084442 2,550336303 78,76423846 2,70827114 4,0085626 0,10011843
+3,6987154 283583,2586 -0,21014895 0,092130795 0 3,9088645 2,551155295 78,7731274 2,70914085 4,0087154 0,09985105
+3,6988108 283615,2588 -0,21005346 0,092136525 0 3,9088643 2,551974287 78,78201634 2,71001056 4,0088108 0,09994654
+3,6989064 283647,259 -0,20997706 0,092142887 0 3,9088836 2,55279328 78,79090528 2,710880271 4,0089064 0,10002294
+3,6990399 283679,2592 -0,20999616 0,092135884 0 3,9090362 2,553612276 78,79979421 2,711749985 4,0090399 0,10000384
+3,6991546 283711,2593 -0,21001527 0,092136525 0 3,9091699 2,554431271 78,80868315 2,712619698 4,0091546 0,09998473
+3,6992884 283743,2595 -0,20988157 0,092137799 0 3,9091699 2,555250267 78,81757209 2,713489411 4,0092884 0,10011843
+3,6994793 283775,2597 -0,20993887 0,092135884 0 3,9094181 2,556069262 78,82646103 2,714359124 4,0094793 0,10006113
+3,6995175 283807,2599 -0,21009165 0,092140347 0 3,9096091 2,556888257 78,83534997 2,715228838 4,0095175 0,09990835
+3,6997657 283839,2601 -0,21014895 0,092132062 0 3,9099147 2,557707253 78,8442389 2,716098552 4,0097657 0,09985105
+3,6999567 283871,2602 -0,20999616 0,092132062 0 3,9099529 2,558526246 78,85312784 2,716968263 4,0099567 0,10000384
+3,7001286 283903,2604 -0,21007255 0,092139073 0 3,9102011 2,559345242 78,86201678 2,717837977 4,0101286 0,09992745
+3,7002814 283935,2606 -0,21020624 0,092136525 0 3,9104877 2,560164239 78,87090572 2,718707691 4,0102814 0,09979376
+3,7002623 283967,2608 -0,21014895 0,092132062 0 3,9104114 2,560983237 78,87979465 2,719577407 4,0102623 0,09985105
+3,700377 283999,2609 -0,21016803 0,092135251 0 3,9105451 2,561802235 78,88868359 2,720447124 4,010377 0,09983197
+3,7006443 284031,2611 -0,21016803 0,092137799 0 3,9108124 2,562621232 78,89757253 2,721316839 4,0106443 0,09983197
+3,7005296 284063,2613 -0,21020624 0,092138432 0 3,9107358 2,56344023 78,90646147 2,722186556 4,0105296 0,09979376
+3,7007971 284095,2615 -0,21020624 0,092139706 0 3,9110034 2,564259228 78,91535041 2,723056271 4,0107971 0,09979376
+3,7009115 284127,2616 -0,21039721 0,092123784 0 3,9113088 2,565078223 78,92423934 2,723925984 4,0109115 0,09960279
+3,7010071 284159,2618 -0,21022533 0,092137158 0 3,9112325 2,565897219 78,93312828 2,724795698 4,0110071 0,09977467
+3,7013509 284191,262 -0,21043541 0,092141613 0 3,9117863 2,566716216 78,94201722 2,725665413 4,0113509 0,09956459
+3,70137 284223,2622 -0,21020624 0,092137158 0 3,9115763 2,567535212 78,95090616 2,726535128 4,01137 0,09979376
+3,701561 284255,2623 -0,21028262 0,092141613 0 3,9118435 2,568354208 78,95979509 2,727404842 4,011561 0,09971738
+3,7016754 284287,2625 -0,21033992 0,092137799 0 3,9120154 2,569173205 78,96868403 2,728274557 4,0116754 0,09966008
+3,7018857 284319,2627 -0,21024443 0,092133977 0 3,9121301 2,569992203 78,97757297 2,729144272 4,0118857 0,09975557
+3,7019238 284351,2629 -0,21045449 0,092135884 0 3,9123783 2,570811199 78,98646191 2,730013987 4,0119238 0,09954551
+3,7020001 284383,263 -0,21032082 0,092140347 0 3,9123209 2,571630198 78,99535085 2,730883704 4,0120001 0,09967918
+3,7020957 284415,2632 -0,2104163 0,092136525 0 3,9125121 2,572449194 79,00423978 2,731753418 4,0120957 0,0995837
+3,7022867 284447,2634 -0,2104927 0,092137799 0 3,9127793 2,573268189 79,01312872 2,732623131 4,0122867 0,0995073
+3,7024202 284479,2636 -0,21051179 0,092139706 0 3,9129319 2,574087186 79,02201766 2,733492846 4,0124202 0,09948821
+3,7025921 284511,2638 -0,21045449 0,092139073 0 3,9130466 2,574906185 79,0309066 2,734362563 4,0125921 0,09954551
+3,7026687 284543,2639 -0,21054998 0,092143528 0 3,9132187 2,575725182 79,03979554 2,735232278 4,0126687 0,09945002
+3,7030315 284575,2641 -0,21051179 0,092140347 0 3,9135432 2,576544182 79,04868447 2,736101996 4,0130315 0,09948821
+3,7030125 284607,2643 -0,21053089 0,092139073 0 3,9135435 2,57736318 79,05757341 2,736971713 4,0130125 0,09946911
+3,7030888 284639,2645 -0,21051179 0,092138432 0 3,9136004 2,578182178 79,06646235 2,737841428 4,0130888 0,09948821
+3,7032607 284671,2646 -0,21070276 0,09213461 0 3,9139633 2,579001176 79,07535129 2,738711144 4,0132607 0,09929724
+3,7033944 284703,2648 -0,21054998 0,09213461 0 3,9139445 2,579820171 79,08424022 2,739580858 4,0133944 0,09945002
+3,7036426 284735,265 -0,21064547 0,092141613 0 3,914288 2,580639165 79,09312916 2,740450569 4,0136426 0,09935453
+3,7037764 284767,2652 -0,21068367 0,092133336 0 3,9144599 2,581458159 79,1020181 2,741320282 4,0137764 0,09931633
+3,703738 284799,2653 -0,21070276 0,092135251 0 3,9144406 2,582277151 79,11090704 2,742189991 4,013738 0,09929724
+3,7040055 284831,2655 -0,21064547 0,092135251 0 3,9146509 2,583096143 79,11979598 2,743059701 4,0140055 0,09935453
+3,7040055 284863,2657 -0,21097013 0,09213461 0 3,9149756 2,583915134 79,12868491 2,743929409 4,0140055 0,09902987
+3,7042537 284895,2659 -0,21077916 0,092132702 0 3,9150329 2,584734124 79,13757385 2,744799117 4,0142537 0,09922084
+3,7043302 284927,266 -0,21087465 0,09213461 0 3,9152048 2,585553116 79,14646279 2,745668827 4,0143302 0,09912535
+3,7046356 284959,2662 -0,21089374 0,092142262 0 3,9155293 2,586372107 79,15535173 2,746538536 4,0146356 0,09910626
+3,7045975 284991,2664 -0,21081735 0,09214098 0 3,9154148 2,587191102 79,16424066 2,747408249 4,0145975 0,09918265
+3,7047694 285023,2666 -0,21085554 0,09214098 0 3,9156249 2,588010101 79,1731296 2,748277966 4,0147694 0,09914446
+3,7048457 285055,2667 -0,21081735 0,092133336 0 3,915663 2,5888291 79,18201854 2,749147683 4,0148457 0,09918265
+3,7050176 285087,2669 -0,21093193 0,092129521 0 3,9159496 2,589648097 79,19090748 2,750017399 4,0150176 0,09906807
+3,7051513 285119,2671 -0,21102741 0,092133336 0 3,9161787 2,590467097 79,19979642 2,750887117 4,0151513 0,09897259
+3,7053423 285151,2673 -0,21089374 0,092135884 0 3,9162359 2,591286094 79,20868535 2,751756832 4,0153423 0,09910626
+3,7053423 285183,2675 -0,2111229 0,092132062 0 3,9164653 2,59210509 79,21757429 2,752626546 4,0153423 0,0988771
+3,7055333 285215,2676 -0,21095103 0,092131428 0 3,9164844 2,592924086 79,22646323 2,75349626 4,0155333 0,09904897
+3,7057052 285247,2678 -0,21110381 0,092137799 0 3,9168091 2,593743081 79,23535217 2,754365973 4,0157052 0,09889619
+3,7058771 285279,268 -0,21108471 0,092129521 0 3,9169617 2,594562077 79,24424111 2,755235687 4,0158771 0,09891529
+3,7060871 285311,2682 -0,2111802 0,092133977 0 3,9172673 2,595381072 79,25313004 2,7561054 4,0160871 0,0988198
+3,706068 285343,2683 -0,21100833 0,092139073 0 3,9170763 2,596200068 79,26201898 2,756975113 4,016068 0,09899167
+3,7061634 285375,2685 -0,21129479 0,092139073 0 3,9174583 2,597019063 79,27090792 2,757844826 4,0161634 0,09870521
+3,7063353 285407,2687 -0,2111229 0,092137799 0 3,9174583 2,597838057 79,27979686 2,758714538 4,0163353 0,0988771
+3,7064881 285439,2689 -0,2111993 0,092136525 0 3,9176874 2,598657052 79,28868579 2,759584251 4,0164881 0,0988007
+3,7065647 285471,269 -0,21131387 0,092133977 0 3,9178786 2,599476046 79,29757473 2,760453963 4,0165647 0,09868613
+3,7067173 285503,2692 -0,21121839 0,092132702 0 3,9179356 2,600295041 79,30646367 2,761323676 4,0167173 0,09878161
+3,7069466 285535,2694 -0,21131387 0,092137158 0 3,9182606 2,601114035 79,31535261 2,762193388 4,0169466 0,09868613
+3,7070992 285567,2696 -0,21140936 0,092136525 0 3,9185085 2,601933026 79,32424155 2,763063097 4,0170992 0,09859064
+3,7071757 285599,2697 -0,21148576 0,092139073 0 3,9186616 2,602752017 79,33313048 2,763932806 4,0171757 0,09851424
+3,7073095 285631,2699 -0,21144757 0,092139706 0 3,918757 2,603571009 79,34201942 2,764802515 4,0173095 0,09855243
+3,7075386 285663,2701 -0,21150485 0,092135884 0 3,9190435 2,604389998 79,35090836 2,765672222 4,0175386 0,09849515
+3,7075958 285695,2703 -0,21135208 0,092132062 0 3,9189479 2,605208988 79,3597973 2,76654193 4,0175958 0,09864792
+3,7075958 285727,2704 -0,21158125 0,092132062 0 3,9191771 2,606027977 79,36868623 2,767411637 4,0175958 0,09841875
+3,7077868 285759,2706 -0,21152395 0,092130147 0 3,9193108 2,606846968 79,37757517 2,768281345 4,0177868 0,09847605
+3,7079206 285791,2708 -0,21152395 0,092137158 0 3,9194446 2,607665962 79,38646411 2,769151057 4,0179206 0,09847605
+3,7080925 285823,271 -0,21146666 0,092144169 0 3,919559 2,608484957 79,39535305 2,77002077 4,0180925 0,09853334
+3,7084172 285855,2711 -0,21167673 0,092138432 0 3,920094 2,609303951 79,40424199 2,770890482 4,0184172 0,09832327
+3,7083597 285887,2713 -0,21158125 0,092132062 0 3,9199409 2,610122945 79,41313092 2,771760194 4,0183597 0,09841875
+3,7085125 285919,2715 -0,21167673 0,092136525 0 3,9201894 2,610941938 79,42201986 2,772629904 4,0185125 0,09832327
+3,7087607 285951,2717 -0,21167673 0,09214098 0 3,9204376 2,611760932 79,4309088 2,773499616 4,0187607 0,09832327
+3,7088563 285983,2719 -0,21179132 0,092133336 0 3,9206476 2,612579926 79,43979774 2,774369328 4,0188563 0,09820868
+3,7089901 286015,272 -0,21173403 0,092137799 0 3,9207242 2,613398919 79,44868668 2,775239039 4,0189901 0,09826597
+3,7092001 286047,2722 -0,21173403 0,092137158 0 3,9209342 2,614217911 79,45757561 2,776108748 4,0192001 0,09826597
+3,7093146 286079,2724 -0,2119059 0,092132702 0 3,9212205 2,615036902 79,46646455 2,776978457 4,0193146 0,0980941
+3,7093337 286111,2726 -0,21188681 0,092137799 0 3,9212205 2,615855894 79,47535349 2,777848168 4,0193337 0,09811319
+3,7096012 286143,2727 -0,21194409 0,092132062 0 3,9215453 2,616674888 79,48424243 2,778717879 4,0196012 0,09805591
+3,7097156 286175,2729 -0,2119059 0,092137158 0 3,9216216 2,617493881 79,49313136 2,77958759 4,0197156 0,0980941
+3,7097349 286207,2731 -0,2119059 0,092132702 0 3,9216409 2,618312874 79,5020203 2,7804573 4,0197349 0,0980941
+3,709945 286239,2733 -0,2119059 0,09213461 0 3,9218509 2,619131865 79,51090924 2,781327009 4,019945 0,0980941
+3,709964 286271,2734 -0,21217327 0,092127606 0 3,9221373 2,619950857 79,51979818 2,78219672 4,019964 0,09782673
+3,7102504 286303,2736 -0,21182951 0,092131428 0 3,9220798 2,620769851 79,52868712 2,783066431 4,0202504 0,09817049
+3,7104223 286335,2738 -0,21196319 0,09212824 0 3,9223855 2,621588845 79,53757605 2,783936143 4,0204223 0,09803681
+3,710537 286367,274 -0,21202049 0,092126973 0 3,9225574 2,622407837 79,54646499 2,784805853 4,020537 0,09797951
+3,7106514 286399,2741 -0,21203957 0,09213461 0 3,9226909 2,62322683 79,55535393 2,785675564 4,0206514 0,09796043
+3,7108042 286431,2743 -0,21215416 0,092135884 0 3,9229584 2,624045822 79,56424287 2,786545274 4,0208042 0,09784584
+3,7108042 286463,2745 -0,21217327 0,092142887 0 3,9229774 2,624864814 79,5731318 2,787414983 4,0208042 0,09782673
+3,711148 286495,2747 -0,21224965 0,092137158 0 3,9233978 2,625683804 79,58202074 2,788284691 4,021148 0,09775035
+3,7113008 286527,2748 -0,21238333 0,092137158 0 3,9236841 2,626502796 79,59090968 2,7891544 4,0213008 0,09761667
+3,711339 286559,275 -0,21223055 0,092133336 0 3,9235694 2,627321789 79,59979862 2,790024111 4,021339 0,09776945
+3,7116065 286591,2752 -0,21230695 0,09213461 0 3,9239135 2,628140782 79,60868756 2,790893822 4,0216065 0,09769305
+3,7116446 286623,2754 -0,21228784 0,092132702 0 3,9239326 2,628959777 79,61757649 2,791763535 4,0216446 0,09771216
+3,7118165 286655,2756 -0,2126316 0,092140347 0 3,9244483 2,629778773 79,62646543 2,792633249 4,0218165 0,0973684
+3,7119884 286687,2757 -0,21238333 0,092135251 0 3,9243717 2,630597772 79,63535437 2,793502967 4,0219884 0,09761667
+3,7119119 286719,2759 -0,21255521 0,092140347 0 3,9244671 2,631416767 79,64424331 2,794372679 4,0219119 0,09744479
+3,7122939 286751,2761 -0,21247882 0,092133336 0 3,9247727 2,632235759 79,65313225 2,795242389 4,0222939 0,09752118
+3,712332 286783,2763 -0,2126316 0,092129521 0 3,9249637 2,633054751 79,66202118 2,796112099 4,022332 0,0973684
+3,7125039 286815,2764 -0,21251701 0,092138432 0 3,9250209 2,633873745 79,67091012 2,796981811 4,0225039 0,09748299
+3,7125614 286847,2766 -0,2125743 0,092130795 0 3,9251356 2,63469274 79,67979906 2,797851524 4,0225614 0,0974257
+3,7126758 286879,2768 -0,21266979 0,09214098 0 3,9253457 2,635511736 79,688688 2,798721237 4,0226758 0,09733021
+3,7126949 286911,277 -0,21266979 0,092137799 0 3,9253647 2,636330732 79,69757693 2,799590951 4,0226949 0,09733021
+3,7130961 286943,2771 -0,2125743 0,092136525 0 3,9256704 2,637149723 79,70646587 2,800460661 4,0230961 0,0974257
+3,7131915 286975,2773 -0,21268889 0,092139073 0 3,9258804 2,637968714 79,71535481 2,801330369 4,0231915 0,09731111
+3,7131915 287007,2775 -0,21286076 0,092135251 0 3,9260523 2,638787705 79,72424375 2,802200078 4,0231915 0,09713924
+3,7135353 287039,2777 -0,21287987 0,092135884 0 3,9264152 2,639606694 79,73313269 2,803069784 4,0235353 0,09712013
+3,7136497 287071,2778 -0,21291806 0,092135251 0 3,9265678 2,640425685 79,74202162 2,803939494 4,0236497 0,09708194
+3,7138791 287103,278 -0,21291806 0,092131428 0 3,9267972 2,641244677 79,75091056 2,804809203 4,0238791 0,09708194
+3,7139554 287135,2782 -0,21282257 0,092135251 0 3,9267781 2,64206367 79,7597995 2,805678914 4,0239554 0,09717743
+3,7140701 287167,2784 -0,21297535 0,092139073 0 3,9270453 2,64288266 79,76868844 2,806548621 4,0240701 0,09702465
+3,7140892 287199,2785 -0,21299444 0,092137799 0 3,9270835 2,643701649 79,77757737 2,807418328 4,0240892 0,09700556
+3,7141464 287231,2787 -0,21308993 0,09214098 0 3,9272363 2,64452064 79,78646631 2,808288037 4,0241464 0,09691007
+3,7143373 287263,2789 -0,21307084 0,092135884 0 3,9274082 2,64533963 79,79535525 2,809157744 4,0243373 0,09692916
+3,7145474 287295,2791 -0,21320452 0,092139706 0 3,927752 2,64615862 79,80424419 2,810027452 4,0245474 0,09679548
+3,7146239 287327,2793 -0,21326181 0,092129521 0 3,9278858 2,646977614 79,81313313 2,810897164 4,0246239 0,09673819
+3,7148149 287359,2794 -0,21324271 0,092142887 0 3,9280577 2,64779661 79,82202206 2,811766878 4,0248149 0,09675729
+3,7151968 287391,2796 -0,21326181 0,092139073 0 3,9284587 2,648615604 79,830911 2,81263659 4,0251968 0,09673819
+3,7151012 287423,2798 -0,21322362 0,092138432 0 3,9283249 2,649434598 79,83979994 2,813506302 4,0251012 0,09677638
+3,7152731 287455,28 -0,2133573 0,092137158 0 3,9286304 2,650253592 79,84868888 2,814376013 4,0252731 0,0966427
+3,7154641 287487,2801 -0,21339549 0,092133977 0 3,9288597 2,651072587 79,85757781 2,815245727 4,0254641 0,09660451
+3,715636 287519,2803 -0,2133573 0,092139073 0 3,9289932 2,651891583 79,86646675 2,81611544 4,025636 0,0966427
+3,7158461 287551,2805 -0,21337639 0,092132702 0 3,9292223 2,65271058 79,87535569 2,816985156 4,0258461 0,09662361
+3,7157316 287583,2807 -0,21354827 0,092138432 0 3,9292798 2,653529579 79,88424463 2,817854873 4,0257316 0,09645173
+3,7159607 287615,2808 -0,21354827 0,092126973 0 3,9295089 2,654348574 79,89313357 2,818724586 4,0259607 0,09645173
+3,7160561 287647,281 -0,21356736 0,092137158 0 3,9296234 2,655167569 79,9020225 2,819594299 4,0260561 0,09643264
+3,7164571 287679,2812 -0,21373925 0,09213461 0 3,9301963 2,655986563 79,91091144 2,820464011 4,0264571 0,09626075
+3,7163808 287711,2814 -0,21375833 0,092133336 0 3,9301391 2,656805556 79,91980038 2,821333721 4,0263808 0,09624167
+3,7164571 287743,2815 -0,21387292 0,092133977 0 3,93033 2,657624552 79,92868932 2,822203436 4,0264571 0,09612708
+3,716629 287775,2817 -0,21379654 0,092138432 0 3,9304256 2,658443548 79,93757826 2,823073149 4,026629 0,09620346
+3,7168009 287807,2819 -0,21385384 0,092133336 0 3,9306548 2,659262543 79,94646719 2,823942863 4,0268009 0,09614616
+3,7168775 287839,2821 -0,21387292 0,092142887 0 3,9307504 2,660081539 79,95535613 2,824812576 4,0268775 0,09612708
+3,7171638 287871,2822 -0,21383473 0,092139073 0 3,9309986 2,660900536 79,96424507 2,825682291 4,0271638 0,09616527
+3,7171638 287903,2824 -0,2140066 0,092144169 0 3,9311705 2,661719531 79,97313401 2,826552004 4,0271638 0,0959934
+3,7173738 287935,2826 -0,21404481 0,092135884 0 3,9314187 2,662538526 79,98202294 2,827421718 4,0273738 0,09595519
+3,7177751 287967,2828 -0,21398751 0,092135884 0 3,9317627 2,663357521 79,99091188 2,82829143 4,0277751 0,09601249
+3,7177176 287999,283 -0,2140066 0,092135251 0 3,9317243 2,664176518 79,99980082 2,829161146 4,0277176 0,0959934
+3,7178705 288031,2831 -0,21423578 0,092130147 0 3,9321063 2,664995514 80,00868976 2,83003086 4,0278705 0,09576422
+3,7180042 288063,2833 -0,21423578 0,092143528 0 3,93224 2,665814512 80,0175787 2,830900576 4,0280042 0,09576422
+3,7180424 288095,2835 -0,21423578 0,092133977 0 3,9322782 2,666633508 80,02646763 2,83177029 4,0280424 0,09576422
+3,7183287 288127,2837 -0,21425487 0,092139073 0 3,9325836 2,667452505 80,03535657 2,832640005 4,0283287 0,09574513
+3,7183096 288159,2838 -0,21438855 0,092136525 0 3,9326982 2,668271503 80,04424551 2,833509721 4,0283096 0,09561145
+3,7185771 288191,284 -0,21446495 0,092136525 0 3,933042 2,669090503 80,05313445 2,834379439 4,0285771 0,09553505
+3,7186344 288223,2842 -0,21452224 0,092137158 0 3,9331565 2,669909504 80,06202338 2,835249158 4,0286344 0,09547776
+3,7186916 288255,2844 -0,21465592 0,092141613 0 3,9333475 2,670728502 80,07091232 2,836118875 4,0286916 0,09534408
+3,7190735 288287,2845 -0,21459863 0,092142887 0 3,9336722 2,671547501 80,07980126 2,836988592 4,0290735 0,09540137
+3,7191501 288319,2847 -0,21475141 0,092133336 0 3,9339015 2,672366497 80,0886902 2,837858306 4,0291501 0,09524859
+3,7193601 288351,2849 -0,21475141 0,09214098 0 3,9341116 2,673185492 80,09757914 2,838728019 4,0293601 0,09524859
+3,7194173 288383,2851 -0,21469411 0,092142887 0 3,9341114 2,674004487 80,10646807 2,839597732 4,0294173 0,09530589
+3,719532 288415,2852 -0,21490419 0,092141613 0 3,9344363 2,674823481 80,11535701 2,840467444 4,029532 0,09509581
+3,719723 288447,2854 -0,21486598 0,092131428 0 3,9345889 2,675642478 80,12424595 2,841337159 4,029723 0,09513402
+3,7198567 288479,2856 -0,21486598 0,092133977 0 3,9347227 2,676461474 80,13313489 2,842206873 4,0298567 0,09513402
+3,7198758 288511,2858 -0,21482779 0,092137799 0 3,9347036 2,67728047 80,14202383 2,843076587 4,0298758 0,09517221
+3,7199903 288543,2859 -0,21492328 0,092133977 0 3,9349136 2,678099467 80,15091276 2,843946302 4,0299903 0,09507672
+3,7202387 288575,2861 -0,21498057 0,092131428 0 3,9352193 2,678918465 80,1598017 2,844816018 4,0302387 0,09501943
+3,7204487 288607,2863 -0,21520974 0,092142887 0 3,9356585 2,679737463 80,16869064 2,845685735 4,0304487 0,09479026
+3,7205441 288639,2865 -0,21499968 0,092140347 0 3,9355438 2,680556459 80,17757958 2,846555449 4,0305441 0,09500032
+3,7206397 288671,2867 -0,21528614 0,09214098 0 3,935926 2,681375457 80,18646851 2,847425164 4,0306397 0,09471386
+3,7208116 288703,2868 -0,21519065 0,092138432 0 3,9360023 2,682194452 80,19535745 2,848294877 4,0308116 0,09480935
+3,7209451 288735,287 -0,21526703 0,092139706 0 3,9362121 2,683013446 80,20424639 2,849164589 4,0309451 0,09473297
+3,7211936 288767,2872 -0,21541981 0,092132702 0 3,9366133 2,683832441 80,21313533 2,850034302 4,0311936 0,09458019
+3,7212889 288799,2874 -0,2154389 0,092135251 0 3,9367278 2,684651435 80,22202427 2,850904014 4,0312889 0,0945611
+3,7212508 288831,2875 -0,2154962 0,092130795 0 3,9367471 2,685470431 80,2309132 2,851773728 4,0312508 0,0945038
+3,7216136 288863,2877 -0,21541981 0,092135251 0 3,9370334 2,686289431 80,23980214 2,852643446 4,0316136 0,09458019
+3,7217474 288895,2879 -0,21559168 0,092139706 0 3,9373391 2,687108424 80,24869108 2,853513157 4,0317474 0,09440832
+3,7217093 288927,2881 -0,21582085 0,092126973 0 3,93753 2,687927417 80,25758002 2,854382867 4,0317093 0,09417915
+3,7220147 288959,2882 -0,21570627 0,092139706 0 3,937721 2,688746409 80,26646895 2,855252578 4,0320147 0,09429373
+3,7220912 288991,2884 -0,21578266 0,092133977 0 3,9378738 2,689565404 80,27535789 2,856122291 4,0320912 0,09421734
+3,7222247 289023,2886 -0,21580176 0,092133977 0 3,9380264 2,690384404 80,28424683 2,856992009 4,0322247 0,09419824
+3,7224348 289055,2888 -0,21597363 0,09214098 0 3,9384084 2,691203405 80,29313577 2,857861728 4,0324348 0,09402637
+3,7226641 289087,2889 -0,21601182 0,092137799 0 3,9386759 2,692022405 80,30202471 2,858731446 4,0326641 0,09398818
+3,7227213 289119,2891 -0,21601182 0,092132702 0 3,9387331 2,692841401 80,31091364 2,859601161 4,0327213 0,09398818
+3,7228167 289151,2893 -0,21626009 0,09213461 0 3,9390769 2,693660398 80,31980258 2,860470876 4,0328167 0,09373991
+3,7230651 289183,2895 -0,2161646 0,092137799 0 3,9392297 2,694479395 80,32869152 2,861340591 4,0330651 0,0938354
+3,7230461 289215,2896 -0,21633649 0,092141613 0 3,9393826 2,695298392 80,33758046 2,862210306 4,0330461 0,09366351
+3,723237 289247,2898 -0,21639378 0,09214098 0 3,9396307 2,696117389 80,3464694 2,863080021 4,033237 0,09360622
+3,723428 289279,29 -0,21627919 0,092136525 0 3,9397073 2,696936386 80,35535833 2,863949736 4,033428 0,09372081
+3,7236762 289311,2902 -0,21648927 0,092142262 0 3,9401655 2,697755384 80,36424727 2,864819452 4,0336762 0,09351073
+3,7237909 289343,2904 -0,21660385 0,092137158 0 3,9403946 2,698574379 80,37313621 2,865689165 4,0337909 0,09339615
+3,7239628 289375,2905 -0,21664204 0,092135251 0 3,9406049 2,699393372 80,38202515 2,866558876 4,0339628 0,09335796
+3,7239628 289407,2907 -0,21677573 0,09212824 0 3,9407384 2,700212365 80,39091408 2,867428587 4,0339628 0,09322427
+3,7242682 289439,2909 -0,21668024 0,092133977 0 3,9409485 2,701031362 80,39980302 2,868298301 4,0342682 0,09331976
+3,7243063 289471,2911 -0,21679482 0,092135884 0 3,9411011 2,701850359 80,40869196 2,869168017 4,0343063 0,09320518
+3,7246692 289503,2912 -0,2169476 0,092131428 0 3,9416168 2,702669357 80,4175809 2,870037733 4,0346692 0,0930524
+3,7247076 289535,2914 -0,21704309 0,092138432 0 3,9417508 2,70348835 80,42646984 2,870907444 4,0347076 0,09295691
+3,724803 289567,2916 -0,2169667 0,092135884 0 3,9417696 2,704307345 80,43535877 2,871777157 4,034803 0,0930333
+3,7251086 289599,2918 -0,21708128 0,092135884 0 3,9421899 2,705126339 80,44424771 2,872646868 4,0351086 0,09291872
+3,7251658 289631,2919 -0,21708128 0,092140347 0 3,9422472 2,705945333 80,45313665 2,873516581 4,0351658 0,09291872
+3,7252805 289663,2921 -0,21727225 0,092142262 0 3,9425528 2,70676433 80,46202559 2,874386296 4,0352805 0,09272775
+3,7253568 289695,2923 -0,21738684 0,092139073 0 3,9427438 2,707583329 80,47091452 2,875256013 4,0353568 0,09261316
+3,7254524 289727,2925 -0,21744414 0,092136525 0 3,9428966 2,708402326 80,47980346 2,876125728 4,0354524 0,09255586
+3,7255669 289759,2926 -0,21750142 0,092135884 0 3,9430683 2,709221321 80,4886924 2,876995441 4,0355669 0,09249858
+3,7258153 289791,2928 -0,21755871 0,092132062 0 3,9433739 2,710040317 80,49758134 2,877865155 4,0358153 0,09244129
+3,7259679 289823,293 -0,21776879 0,092138432 0 3,9437366 2,710859314 80,50647028 2,87873487 4,0359679 0,09223121
+3,7261589 289855,2932 -0,2176542 0,092146717 0 3,9438131 2,71167831 80,51535921 2,879604584 4,0361589 0,0923458
+3,7261398 289887,2933 -0,21805525 0,092142262 0 3,944195 2,712497307 80,52424815 2,880474299 4,0361398 0,09194475
+3,7262926 289919,2935 -0,21795976 0,092137799 0 3,9442525 2,713316301 80,53313709 2,881344011 4,0362926 0,09204024
+3,7264073 289951,2937 -0,21818893 0,092139073 0 3,9445963 2,714135295 80,54202603 2,882213723 4,0364073 0,09181107
+3,7267318 289983,2939 -0,21803614 0,09214098 0 3,944768 2,71495429 80,55091497 2,883083435 4,0367318 0,09196386
+3,7267892 290015,2941 -0,21822712 0,092144169 0 3,9450164 2,715773285 80,5598039 2,883953149 4,0367892 0,09177288
+3,7269993 290047,2942 -0,21822712 0,092139073 0 3,9452264 2,716592283 80,56869284 2,884822865 4,0369993 0,09177288
+3,7271521 290079,2944 -0,21841809 0,092132062 0 3,9455702 2,717411282 80,57758178 2,885692582 4,0371521 0,09158191
+3,7272093 290111,2946 -0,21847539 0,092131428 0 3,9456847 2,718230278 80,58647072 2,886562296 4,0372093 0,09152461
+3,7276294 290143,2948 -0,21851358 0,092125066 0 3,9461429 2,719049276 80,59535965 2,887432013 4,0376294 0,09148642
+3,7275341 290175,2949 -0,21862817 0,092136525 0 3,9461622 2,719868275 80,60424859 2,888301729 4,0375341 0,09137183
+3,7277441 290207,2951 -0,21864727 0,092135251 0 3,9463913 2,720687269 80,61313753 2,889171441 4,0377441 0,09135273
+3,727725 290239,2953 -0,21880004 0,092147343 0 3,9465251 2,721506262 80,62202647 2,890041153 4,037725 0,09119996
+3,7280688 290271,2955 -0,21883824 0,092130795 0 3,946907 2,722325258 80,63091541 2,890910867 4,0380688 0,09116176
+3,7282789 290303,2956 -0,21893373 0,092139706 0 3,9472127 2,723144254 80,63980434 2,89178058 4,0382789 0,09106627
+3,7282598 290335,2958 -0,21904831 0,092137158 0 3,9473081 2,723963252 80,64869328 2,892650296 4,0382598 0,09095169
+3,7284698 290367,296 -0,21931568 0,092137158 0 3,9477856 2,72478225 80,65758222 2,893520012 4,0384698 0,09068432
+3,7285652 290399,2962 -0,21920109 0,09214098 0 3,9477663 2,725601244 80,66647116 2,894389725 4,0385652 0,09079891
+3,7287562 290431,2963 -0,21925838 0,092135251 0 3,9480145 2,726420238 80,67536009 2,895259437 4,0387562 0,09074162
+3,7288518 290463,2965 -0,21948755 0,092132062 0 3,9483395 2,727239233 80,68424903 2,896129149 4,0388518 0,09051245
+3,7290618 290495,2967 -0,21960214 0,092144169 0 3,9486639 2,728058227 80,69313797 2,896998861 4,0390618 0,09039786
+3,7292147 290527,2969 -0,21971671 0,092130795 0 3,9489315 2,72887722 80,70202691 2,897868572 4,0392147 0,09028329
+3,7293675 290559,297 -0,21973582 0,092126973 0 3,9491034 2,729696212 80,71091585 2,898738282 4,0393675 0,09026418
+3,7295585 290591,2972 -0,21986949 0,092135251 0 3,9494281 2,730515205 80,71980478 2,899607993 4,0395585 0,09013051
+3,7296729 290623,2974 -0,22015595 0,092133336 0 3,9498289 2,731334198 80,72869372 2,900477704 4,0396729 0,08984405
+3,7296538 290655,2976 -0,22009866 0,092132062 0 3,9497526 2,732153193 80,73758266 2,901347417 4,0396538 0,08990134
+3,7299786 290687,2977 -0,22015595 0,092139706 0 3,9501345 2,732972188 80,7464716 2,902217129 4,0399786 0,08984405
+3,7300549 290719,2979 -0,22030874 0,092136525 0 3,9503636 2,733791183 80,75536053 2,903086842 4,0400549 0,08969126
+3,7303033 290751,2981 -0,22038512 0,092133336 0 3,9506884 2,734610177 80,76424947 2,903956554 4,0403033 0,08961488
+3,7303605 290783,2983 -0,2205952 0,092130795 0 3,9509556 2,73542917 80,77313841 2,904826265 4,0403605 0,0894048
+3,7306278 290815,2985 -0,22067158 0,09213461 0 3,9512994 2,736248165 80,78202735 2,905695978 4,0406278 0,08932842
+3,7306278 290847,2986 -0,22093895 0,092138432 0 3,9515667 2,737067161 80,79091629 2,906565692 4,0406278 0,08906105
+3,7308953 290879,2988 -0,22105353 0,092133977 0 3,9519489 2,737886154 80,79980522 2,907435403 4,0408953 0,08894647
+3,7310288 290911,299 -0,22093895 0,092127606 0 3,9519677 2,738705148 80,80869416 2,908305114 4,0410288 0,08906105
+3,7311244 290943,2992 -0,22101533 0,09214098 0 3,9521399 2,73952414 80,8175831 2,909174825 4,0411244 0,08898467
+3,7312772 290975,2993 -0,22137819 0,092137158 0 3,9526553 2,740343136 80,82647204 2,910044538 4,0412772 0,08862181
+3,7314873 291007,2995 -0,22135909 0,09214098 0 3,9528463 2,741162136 80,83536098 2,910914257 4,0414873 0,08864091
+3,7316017 291039,2997 -0,22164555 0,092139706 0 3,9532473 2,741981133 80,84424991 2,911783972 4,0416017 0,08835445
+3,7316017 291071,2999 -0,22174104 0,092137799 0 3,9533427 2,742800127 80,85313885 2,912653683 4,0416017 0,08825896
+3,731812 291103,3 -0,22177923 0,092137799 0 3,9535913 2,743619118 80,86202779 2,913523393 4,041812 0,08822077
+3,7318883 291135,3002 -0,22185563 0,092139706 0 3,9537439 2,744438111 80,87091673 2,914393103 4,0418883 0,08814437
+3,7321365 291167,3004 -0,22214209 0,092135251 0 3,9542785 2,745257103 80,87980566 2,915262813 4,0421365 0,08785791
+3,7323849 291199,3006 -0,22216117 0,092132062 0 3,954546 2,746076095 80,8886946 2,916132523 4,0423849 0,08783883
+3,7324612 291231,3007 -0,22231396 0,092137799 0 3,9547751 2,746895086 80,89758354 2,917002231 4,0424612 0,08768604
+3,7324231 291263,3009 -0,22229485 0,092136525 0 3,9547179 2,747714076 80,90647248 2,91787194 4,0424231 0,08770515
+3,7327478 291295,3011 -0,22258131 0,09213461 0 3,9553292 2,748533067 80,91536142 2,918741648 4,0427478 0,08741869
+3,7329578 291327,3013 -0,22258131 0,092136525 0 3,9555392 2,749352058 80,92425035 2,919611357 4,0429578 0,08741869
+3,7330532 291359,3014 -0,2226959 0,092140347 0 3,955749 2,75017105 80,93313929 2,920481066 4,0430532 0,0873041
+3,7332251 291391,3016 -0,22290598 0,092138432 0 3,956131 2,750990043 80,94202823 2,921350778 4,0432251 0,08709402
+3,7332442 291423,3018 -0,22309695 0,092138432 0 3,956341 2,751809037 80,95091717 2,922220489 4,0432442 0,08690305
+3,7335689 291455,302 -0,22305876 0,092132702 0 3,9566276 2,752628029 80,9598061 2,923090199 4,0435689 0,08694124
+3,7335498 291487,3022 -0,22328793 0,092137158 0 3,9568377 2,753447021 80,96869504 2,923959909 4,0435498 0,08671207
+3,7337408 291519,3023 -0,22359347 0,092138432 0 3,9573343 2,754266014 80,97758398 2,924829619 4,0437408 0,08640653
+3,7339127 291551,3025 -0,22344071 0,092143528 0 3,9573534 2,755085008 80,98647292 2,925699332 4,0439127 0,08655929
+3,7341228 291583,3027 -0,22359347 0,092138432 0 3,9577162 2,755904004 80,99536186 2,926569045 4,0441228 0,08640653
+3,7341228 291615,3029 -0,22384174 0,092137799 0 3,9579644 2,756722999 81,00425079 2,927438759 4,0441228 0,08615826
+3,7344475 291647,303 -0,22403271 0,092135884 0 3,9584801 2,757541995 81,01313973 2,928308473 4,0444475 0,08596729
+3,7345238 291679,3032 -0,22407091 0,092148624 0 3,9585948 2,758360991 81,02202867 2,929178186 4,0445238 0,08592909
+3,7346001 291711,3034 -0,2242046 0,092131428 0 3,9588046 2,759179986 81,03091761 2,930047899 4,0446001 0,0857954
+3,7347529 291743,3036 -0,22439557 0,092138432 0 3,9591484 2,75999898 81,03980655 2,930917611 4,0447529 0,08560443
+3,734791 291775,3037 -0,22449106 0,092130795 0 3,9592822 2,760817974 81,04869548 2,931787323 4,044791 0,08550894
+3,7348485 291807,3039 -0,22462474 0,092133336 0 3,9594731 2,761636971 81,05758442 2,932657038 4,0448485 0,08537526
+3,7352495 291839,3041 -0,22479661 0,092135251 0 3,9600461 2,762455968 81,06647336 2,933526753 4,0452495 0,08520339
+3,7354786 291871,3043 -0,22510217 0,092135884 0 3,9605808 2,763274965 81,0753623 2,934396468 4,0454786 0,08489783
+3,7354596 291903,3044 -0,22506398 0,092139073 0 3,9605236 2,764093959 81,08425123 2,93526618 4,0454596 0,08493602
+3,7355552 291935,3046 -0,22521676 0,092141613 0 3,960772 2,764912951 81,09314017 2,93613589 4,0455552 0,08478324
+3,7360325 291967,3048 -0,22525495 0,092136525 0 3,9612875 2,765731946 81,10202911 2,937005603 4,0460325 0,08474505
+3,7358987 291999,305 -0,22540773 0,092139706 0 3,9613066 2,766550941 81,11091805 2,937875316 4,0458987 0,08459227
+3,7361281 292031,3051 -0,2255796 0,092140347 0 3,9617076 2,767369936 81,11980699 2,938745028 4,0461281 0,0844204
+3,7363381 292063,3053 -0,22565599 0,092130795 0 3,9619942 2,76818893 81,12869592 2,939614741 4,0463381 0,08434401
+3,736491 292095,3055 -0,22582787 0,092138432 0 3,9623189 2,769007922 81,13758486 2,94048445 4,046491 0,08417213
+3,7364717 292127,3057 -0,22603793 0,092140347 0 3,9625096 2,769826912 81,1464738 2,941354159 4,0464717 0,08396207
+3,7367201 292159,3059 -0,22617163 0,092139706 0 3,9628918 2,770645907 81,15536274 2,942223871 4,0467201 0,08382837
+3,7368155 292191,306 -0,22640079 0,092137158 0 3,9632163 2,771464904 81,16425167 2,943093587 4,0468155 0,08359921
+3,7370255 292223,3062 -0,22649628 0,092132062 0 3,9635217 2,772283899 81,17314061 2,943963299 4,0470255 0,08350372
+3,7370639 292255,3064 -0,22659177 0,092137158 0 3,9636557 2,773102892 81,18202955 2,94483301 4,0470639 0,08340823
+3,7372739 292287,3066 -0,22680183 0,092129521 0 3,9640758 2,773921887 81,19091849 2,945702723 4,0472739 0,08319817
+3,7374458 292319,3067 -0,2269928 0,092136525 0 3,9644387 2,774740881 81,19980743 2,946572434 4,0474458 0,0830072
+3,737694 292351,3069 -0,22689731 0,092142887 0 3,9645913 2,775559873 81,20869636 2,947442145 4,047694 0,08310269
+3,7377896 292383,3071 -0,22712649 0,092137799 0 3,9649162 2,776378868 81,2175853 2,948311858 4,0477896 0,08287351
+3,7378469 292415,3073 -0,22735566 0,092132062 0 3,9652026 2,777197863 81,22647424 2,94918157 4,0478469 0,08264434
+3,7379806 292447,3074 -0,22756574 0,092133977 0 3,9655464 2,778016857 81,23536318 2,950051282 4,0479806 0,08243426
+3,7381141 292479,3076 -0,22768031 0,092142262 0 3,9657943 2,778835849 81,24425212 2,950920992 4,0481141 0,08231969
+3,7383626 292511,3078 -0,22756574 0,092144802 0 3,9659283 2,779654842 81,25314105 2,951790703 4,0483626 0,08243426
+3,7384388 292543,308 -0,22787128 0,092132062 0 3,96631 2,780473833 81,26202999 2,952660412 4,0484388 0,08212872
+3,7385917 292575,3081 -0,22792858 0,092135884 0 3,9665203 2,781292822 81,27091893 2,953530119 4,0485917 0,08207142
+3,7388017 292607,3083 -0,22811955 0,092130147 0 3,9669213 2,782111811 81,27980787 2,954399825 4,0488017 0,08188045
+3,7388017 292639,3085 -0,22813866 0,092132062 0 3,9669404 2,782930801 81,2886968 2,955269533 4,0488017 0,08186134
+3,7390118 292671,3087 -0,2285206 0,092137158 0 3,9675324 2,783749789 81,29758574 2,956139239 4,0490118 0,0814794
+3,7393174 292703,3088 -0,22863518 0,092135251 0 3,9679525 2,784568778 81,30647468 2,957008945 4,0493174 0,08136482
+3,7394319 292735,309 -0,22863518 0,092133336 0 3,9680669 2,785387769 81,31536362 2,957878653 4,0494319 0,08136482
+3,7395084 292767,3092 -0,22884525 0,092133977 0 3,9683537 2,786206762 81,32425256 2,958748365 4,0495084 0,08115475
+3,7396612 292799,3094 -0,22899804 0,092130795 0 3,9686592 2,787025755 81,33314149 2,959618076 4,0496612 0,08100196
+3,7398138 292831,3096 -0,22899804 0,092136525 0 3,9688118 2,787844749 81,34203043 2,960487787 4,0498138 0,08100196
+3,7399476 292863,3097 -0,22924629 0,092137799 0 3,9691939 2,788663741 81,35091937 2,961357497 4,0499476 0,08075371
+3,7400048 292895,3099 -0,22934178 0,092129521 0 3,9693465 2,789482733 81,35980831 2,962227207 4,0500048 0,08065822
+3,7402148 292927,3101 -0,22939907 0,092131428 0 3,9696138 2,790301727 81,36869724 2,963096919 4,0502148 0,08060093
+3,7402914 292959,3103 -0,22964734 0,092133977 0 3,9699388 2,791120722 81,37758618 2,963966632 4,0502914 0,08035266
+3,7405396 292991,3104 -0,22957096 0,092138432 0 3,9701104 2,791939714 81,38647512 2,964836341 4,0505396 0,08042904
+3,7406924 293023,3106 -0,2298765 0,092132702 0 3,9705689 2,792758708 81,39536406 2,965706053 4,0506924 0,0801235
+3,7408643 293055,3108 -0,22999109 0,092144169 0 3,9708555 2,793577703 81,404253 2,966575766 4,0508643 0,08000891
+3,7410743 293087,311 -0,2300102 0,092135251 0 3,9710846 2,7943967 81,41314193 2,96744548 4,0510743 0,0799898
+3,7411506 293119,3111 -0,23027755 0,092133336 0 3,9714282 2,795215695 81,42203087 2,968315194 4,0511506 0,07972245
+3,74138 293151,3113 -0,23031574 0,092138432 0 3,9716957 2,796034688 81,43091981 2,969184905 4,05138 0,07968426
+3,7414372 293183,3115 -0,23050672 0,092142262 0 3,9719439 2,796853681 81,43980875 2,970054615 4,0514372 0,07949328
+3,741399 293215,3117 -0,23058312 0,092133977 0 3,9719822 2,797672673 81,44869769 2,970924325 4,051399 0,07941688
+3,7418001 293247,3118 -0,23075499 0,09213461 0 3,9725552 2,798491668 81,45758662 2,971794039 4,0518001 0,07924501
+3,7418382 293279,312 -0,23077409 0,092132702 0 3,9726124 2,799310665 81,46647556 2,972663754 4,0518382 0,07922591
+3,741972 293311,3122 -0,23102234 0,092132062 0 3,9729943 2,800129659 81,4753645 2,973533465 4,051972 0,07897766
+3,7421439 293343,3124 -0,23102234 0,092135884 0 3,9731662 2,800948653 81,48425344 2,974403177 4,0521439 0,07897766
+3,7424111 293375,3125 -0,2313852 0,092131428 0 3,9737964 2,801767648 81,49314237 2,97527289 4,0524111 0,0786148
+3,7423539 293407,3127 -0,23125152 0,092135884 0 3,9736054 2,802586644 81,50203131 2,976142604 4,0523539 0,07874848
+3,7426403 293439,3129 -0,23146158 0,092135251 0 3,9741018 2,803405641 81,51092025 2,977012319 4,0526403 0,07853842
+3,7428122 293471,3131 -0,23148069 0,09213461 0 3,9742928 2,804224635 81,51980919 2,977882031 4,0528122 0,07851931
+3,7429459 293503,3133 -0,23161437 0,092132702 0 3,9745603 2,805043629 81,52869813 2,978751743 4,0529459 0,07838563
+3,7430987 293535,3134 -0,23182444 0,092133336 0 3,9749231 2,805862623 81,53758706 2,979621455 4,0530987 0,07817556
+3,743175 293567,3136 -0,23205361 0,092132702 0 3,9752285 2,806681618 81,546476 2,980491168 4,053175 0,07794639
+3,7434998 293599,3138 -0,2320345 0,092139073 0 3,9755342 2,807500615 81,55536494 2,981360883 4,0534998 0,0779655
+3,7435379 293631,314 -0,23218729 0,092131428 0 3,9757252 2,808319612 81,56425388 2,982230598 4,0535379 0,07781271
+3,743767 293663,3141 -0,2321682 0,092141613 0 3,9759352 2,809138608 81,57314281 2,983100312 4,053767 0,0778318
+3,7438817 293695,3143 -0,23230188 0,092137799 0 3,9761837 2,809957605 81,58203175 2,983970027 4,0538817 0,07769812
+3,7439008 293727,3145 -0,23245466 0,092133336 0 3,9763556 2,810776602 81,59092069 2,984839742 4,0539008 0,07754534
+3,7441874 293759,3147 -0,23243555 0,092137799 0 3,9766228 2,811595597 81,59980963 2,985709455 4,0541874 0,07756445
+3,7442636 293791,3148 -0,23270291 0,09212888 0 3,9769666 2,812414591 81,60869857 2,986579167 4,0542636 0,07729709
+3,7445312 293823,315 -0,2328175 0,092136525 0 3,9773486 2,813233583 81,6175875 2,987448877 4,0545312 0,0771825
+3,7446265 293855,3152 -0,2328366 0,092139706 0 3,9774632 2,814052576 81,62647644 2,988318587 4,0546265 0,0771634
+3,7447221 293887,3154 -0,2328366 0,092138432 0 3,9775586 2,814871569 81,63536538 2,989188298 4,0547221 0,0771634
+3,7449131 293919,3155 -0,2328748 0,092139073 0 3,977788 2,815690564 81,64425432 2,990058011 4,0549131 0,0771252
+3,7450657 293951,3157 -0,23295118 0,092130795 0 3,9780169 2,816509557 81,65314325 2,990927722 4,0550657 0,07704882
+3,7450657 293983,3159 -0,23323764 0,09214098 0 3,9783034 2,817328549 81,66203219 2,991797432 4,0550657 0,07676236
+3,7453332 294015,3161 -0,23325674 0,092141613 0 3,97859 2,818147542 81,67092113 2,992667143 4,0553332 0,07674326
+3,7456195 294047,3162 -0,23348591 0,092137799 0 3,9791055 2,818966537 81,67981007 2,993536856 4,0556195 0,07651409
+3,7455814 294079,3164 -0,23337132 0,092133977 0 3,9789526 2,819785533 81,68869901 2,99440657 4,0555814 0,07662868
+3,7458298 294111,3166 -0,23363869 0,092132702 0 3,9794686 2,82060453 81,69758794 2,995276285 4,0558298 0,07636131
+3,7461162 294143,3168 -0,23358139 0,092142262 0 3,9796975 2,821423526 81,70647688 2,996145999 4,0561162 0,07641861
+3,7461162 294175,317 -0,23377237 0,092132702 0 3,9798884 2,822242522 81,71536582 2,997015713 4,0561162 0,07622763
+3,7464409 294207,3171 -0,23379147 0,092136525 0 3,9802322 2,82306152 81,72425476 2,997885429 4,0564409 0,07620853
+3,74646 294239,3173 -0,23409702 0,09213461 0 3,980557 2,823880519 81,7331437 2,998755147 4,05646 0,07590298
+3,7465363 294271,3175 -0,23400153 0,092133977 0 3,9805379 2,82469952 81,74203263 2,999624866 4,0565363 0,07599847
+3,7467847 294303,3177 -0,23409702 0,092132702 0 3,9808817 2,825518517 81,75092157 3,000494581 4,0567847 0,07590298
+3,7470138 294335,3178 -0,23409702 0,092137158 0 3,9811108 2,826337515 81,75981051 3,001364296 4,0570138 0,07590298
+3,7472048 294367,318 -0,23438348 0,092130795 0 3,9815884 2,827156511 81,76869945 3,002234011 4,0572048 0,07561652
+3,7469757 294399,3182 -0,2342498 0,092133977 0 3,9812255 2,827975507 81,77758838 3,003103725 4,0569757 0,0757502
+3,7473767 294431,3184 -0,23440258 0,092130795 0 3,9817793 2,828794505 81,78647732 3,003973441 4,0573767 0,07559742
+3,7476439 294463,3185 -0,2342498 0,09213461 0 3,9818938 2,829613502 81,79536626 3,004843156 4,0576439 0,0757502
+3,7477586 294495,3187 -0,23466994 0,092139073 0 3,9824286 2,830432498 81,8042552 3,00571287 4,0577586 0,07533006
+3,748064 294527,3189 -0,23465085 0,092135884 0 3,9827149 2,83125149 81,81314414 3,00658258 4,058064 0,07534915
+3,7480068 294559,3191 -0,23465085 0,092132702 0 3,9826577 2,832070482 81,82203307 3,007452289 4,0580068 0,07534915
+3,7482169 294591,3192 -0,23466994 0,092121243 0 3,9828868 2,832889473 81,83092201 3,008321998 4,0582169 0,07533006
+3,7484844 294623,3194 -0,23468904 0,092132702 0 3,9831734 2,833708463 81,83981095 3,009191706 4,0584844 0,07531096
+3,7485607 294655,3196 -0,2349564 0,092125699 0 3,9835172 2,834527454 81,84869989 3,010061415 4,0585607 0,0750436
+3,7487707 294687,3198 -0,2349564 0,09214098 0 3,9837272 2,835346444 81,85758882 3,010931123 4,0587707 0,0750436
+3,7488472 294719,3199 -0,23489912 0,092132702 0 3,9837463 2,836165434 81,86647776 3,011800831 4,0588472 0,07510088
+3,7490382 294751,3201 -0,23505189 0,092138432 0 3,9840901 2,836984425 81,8753667 3,012670539 4,0590382 0,07494811
+3,7493818 294783,3203 -0,2350328 0,092133977 0 3,9844146 2,837803418 81,88425564 3,013540249 4,0593818 0,0749672
+3,7493818 294815,3205 -0,23509009 0,092137799 0 3,9844718 2,838622413 81,89314458 3,014409962 4,0593818 0,07490991
+3,7494774 294847,3207 -0,23518558 0,09213461 0 3,984663 2,839441408 81,90203351 3,015279675 4,0594774 0,07481442
+3,749764 294879,3208 -0,23514737 0,092129521 0 3,9849114 2,840260401 81,91092245 3,016149386 4,059764 0,07485263
+3,7497256 294911,321 -0,23531926 0,092132702 0 3,985045 2,841079394 81,91981139 3,017019097 4,0597256 0,07468074
+3,7501075 294943,3212 -0,23530015 0,092136525 0 3,9854076 2,841898386 81,92870033 3,017888807 4,0601075 0,07469985
+3,7501459 294975,3214 -0,23549113 0,092143528 0 3,9856369 2,842717376 81,93758927 3,018758514 4,0601459 0,07450887
+3,7503941 295007,3215 -0,23549113 0,092137158 0 3,9858851 2,843536365 81,9464782 3,019628221 4,0603941 0,07450887
+3,7505279 295039,3217 -0,23558661 0,092139706 0 3,9861145 2,844355355 81,95536714 3,020497929 4,0605279 0,07441339
+3,7506804 295071,3219 -0,23556753 0,092139073 0 3,986248 2,845174348 81,96425608 3,02136764 4,0606804 0,07443247
+3,7508333 295103,3221 -0,23551023 0,092139073 0 3,9863434 2,845993342 81,97314502 3,022237351 4,0608333 0,07448977
+3,7510052 295135,3222 -0,23566301 0,092133977 0 3,9866681 2,846812336 81,98203395 3,023107064 4,0610052 0,07433699
+3,7512343 295167,3224 -0,2356821 0,092137158 0 3,9869163 2,847631329 81,99092289 3,023976774 4,0612343 0,0743179
+3,7513108 295199,3226 -0,23566301 0,092132702 0 3,9869738 2,848450323 81,99981183 3,024846486 4,0613108 0,07433699
+3,7515972 295231,3228 -0,23577759 0,092142262 0 3,9873748 2,849269318 82,00870077 3,025716199 4,0615972 0,07422241
+3,7516162 295263,3229 -0,23587307 0,092135884 0 3,9874892 2,850088312 82,01758971 3,026585911 4,0616162 0,07412693
+3,7517881 295295,3231 -0,23589218 0,092133977 0 3,9876804 2,850907305 82,02647864 3,027455622 4,0617881 0,07410782
+3,7517881 295327,3233 -0,23596856 0,092130795 0 3,9877567 2,851726299 82,03536758 3,028325333 4,0617881 0,07403144
+3,7521701 295359,3235 -0,23593037 0,092136525 0 3,9881005 2,852545291 82,04425652 3,029195044 4,0621701 0,07406963
+3,7522466 295391,3236 -0,23593037 0,092133977 0 3,9881771 2,853364284 82,05314546 3,030064754 4,0622466 0,07406963
+3,752533 295423,3238 -0,23594947 0,09213461 0 3,9884825 2,854183279 82,06203439 3,030934467 4,062533 0,07405053
+3,7527814 295455,324 -0,23600675 0,092137799 0 3,9887881 2,855002273 82,07092333 3,03180418 4,0627814 0,07399325
+3,7528768 295487,3242 -0,23629321 0,092137158 0 3,9891701 2,855821268 82,07981227 3,032673892 4,0628768 0,07370679
+3,752743 295519,3243 -0,23610224 0,092137158 0 3,9888453 2,856640262 82,08870121 3,033543604 4,062743 0,07389776
+3,7531252 295551,3245 -0,23617864 0,092132702 0 3,9893038 2,857459255 82,09759015 3,034413315 4,0631252 0,07382136
+3,7532587 295583,3247 -0,23633142 0,092141613 0 3,9895902 2,858278245 82,10647908 3,035283022 4,0632587 0,07366858
+3,7533925 295615,3249 -0,23621683 0,092147991 0 3,9896092 2,859097238 82,11536802 3,036152734 4,0633925 0,07378317
+3,7538126 295647,3251 -0,23625502 0,092144169 0 3,9900675 2,859916235 82,12425696 3,037022449 4,0638126 0,07374498
+3,7538316 295679,3252 -0,23619772 0,092139706 0 3,9900293 2,86073523 82,1331459 3,037892161 4,0638316 0,07380228
+3,7538891 295711,3254 -0,23633142 0,092135884 0 3,9902205 2,861554227 82,14203484 3,038761876 4,0638891 0,07366858
+3,7541373 295743,3256 -0,23644599 0,092126325 0 3,9905832 2,862373219 82,15092377 3,039631586 4,0641373 0,07355401
+3,7542901 295775,3258 -0,23633142 0,092131428 0 3,9906216 2,863192209 82,15981271 3,040501294 4,0642901 0,07366858
+3,7544429 295807,3259 -0,23629321 0,092133977 0 3,9907362 2,864011198 82,16870165 3,041371001 4,0644429 0,07370679
+3,7548056 295839,3261 -0,23654148 0,092144802 0 3,9913471 2,864830189 82,17759059 3,042240709 4,0648056 0,07345852
+3,7549584 295871,3263 -0,2364078 0,09213461 0 3,9913661 2,865649181 82,18647952 3,043110419 4,0649584 0,0735922
+3,754863 295903,3265 -0,2364651 0,092133336 0 3,9913282 2,86646817 82,19536846 3,043980125 4,064863 0,0735349
+3,7551877 295935,3266 -0,23648418 0,092140347 0 3,991672 2,867287159 82,2042574 3,044849832 4,0651877 0,07351582
+3,7553403 295967,3268 -0,23650329 0,092133336 0 3,9918437 2,868106147 82,21314634 3,045719538 4,0653403 0,07349671
+3,7554932 295999,327 -0,23663697 0,092130147 0 3,99213 2,868925137 82,22203528 3,046589245 4,0654932 0,07336303
+3,7556078 296031,3272 -0,23663697 0,092133336 0 3,9922447 2,869744128 82,23092421 3,047458954 4,0656078 0,07336303
+3,7560089 296063,3273 -0,23659877 0,09212824 0 3,9926076 2,87056312 82,23981315 3,048328663 4,0660089 0,07340123
+3,7560089 296095,3275 -0,23671336 0,09213461 0 3,9927223 2,87138211 82,24870209 3,049198372 4,0660089 0,07328664
+3,7562952 296127,3277 -0,23657969 0,092129521 0 3,9928749 2,872201101 82,25759103 3,05006808 4,0662952 0,07342031
+3,7565246 296159,3279 -0,23657969 0,092135251 0 3,9931042 2,873020093 82,26647996 3,05093779 4,0665246 0,07342031
+3,7566009 296191,328 -0,23652239 0,092135884 0 3,9931233 2,873839087 82,2753689 3,051807502 4,0666009 0,07347761
+3,7568874 296223,3282 -0,23667517 0,092133977 0 3,9935627 2,874658083 82,28425784 3,052677215 4,0668874 0,07332483
+3,7568109 296255,3284 -0,23688523 0,09213461 0 3,9936962 2,875477076 82,29314678 3,053546927 4,0668109 0,07311477
+3,75704 296287,3286 -0,23678975 0,09213461 0 3,9938297 2,876296069 82,30203572 3,054416637 4,06704 0,07321025
+3,7571166 296319,3288 -0,23678975 0,092133977 0 3,9939063 2,877115058 82,31092465 3,055286344 4,0671166 0,07321025
+3,7572885 296351,3289 -0,23677066 0,092132702 0 3,9940591 2,877934044 82,31981359 3,056156047 4,0672885 0,07322934
+3,7575939 296383,3291 -0,23692343 0,092133977 0 3,9945173 2,878753031 82,32870253 3,057025752 4,0675939 0,07307657
+3,7577848 296415,3293 -0,23673245 0,092135884 0 3,9945173 2,879572019 82,33759147 3,057895458 4,0677848 0,07326755
+3,7579567 296447,3295 -0,23680885 0,092144169 0 3,9947655 2,880391011 82,34648041 3,058765167 4,0679567 0,07319115
+3,7580714 296479,3296 -0,23686615 0,092137799 0 3,9949377 2,881210005 82,35536934 3,059634879 4,0680714 0,07313385
+3,7582815 296511,3298 -0,23682794 0,092142262 0 3,9951093 2,882028999 82,36425828 3,060504591 4,0682815 0,07317206
+3,7585297 296543,33 -0,23665607 0,092140347 0 3,9951859 2,882847993 82,37314722 3,061374303 4,0685297 0,07334393
+3,7586825 296575,3302 -0,23694253 0,092136525 0 3,995625 2,883666986 82,38203616 3,062244014 4,0686825 0,07305747
+3,7588544 296607,3303 -0,23680885 0,092142262 0 3,9956632 2,884485981 82,39092509 3,063113727 4,0688544 0,07319115
+3,7589691 296639,3305 -0,23688523 0,092133336 0 3,9958544 2,885304975 82,39981403 3,063983439 4,0689691 0,07311477
+3,7591791 296671,3307 -0,23698072 0,092133336 0 3,9961598 2,886123968 82,40870297 3,06485315 4,0691791 0,07301928
+3,7593319 296703,3309 -0,23686615 0,092132062 0 3,9961982 2,886942963 82,41759191 3,065722862 4,0693319 0,07313385
+3,7594273 296735,331 -0,23682794 0,092127606 0 3,9962552 2,887761956 82,42648085 3,066592573 4,0694273 0,07317206
+3,7597139 296767,3312 -0,23684704 0,092138432 0 3,9965611 2,88858095 82,43536978 3,067462285 4,0697139 0,07315296
+3,7599239 296799,3314 -0,23673245 0,09213461 0 3,9966564 2,889399941 82,44425872 3,068331994 4,0699239 0,07326755
+3,7600384 296831,3316 -0,23688523 0,092139706 0 3,9969237 2,890218933 82,45314766 3,069201703 4,0700384 0,07311477
+3,7602103 296863,3317 -0,23694253 0,092132702 0 3,9971528 2,891037926 82,4620366 3,070071414 4,0702103 0,07305747
+3,7604969 296895,3319 -0,23707621 0,092137799 0 3,9975731 2,891856917 82,47092553 3,070941123 4,0704969 0,07292379
+3,7606688 296927,3321 -0,23698072 0,09213461 0 3,9976494 2,892675907 82,47981447 3,071810831 4,0706688 0,07301928
+3,760745 296959,3323 -0,23699982 0,092139073 0 3,9977448 2,893494896 82,48870341 3,072680537 4,070745 0,07300018
+3,7609169 296991,3325 -0,23692343 0,092145436 0 3,9978404 2,894313882 82,49759235 3,073550241 4,0709169 0,07307657
+3,7611461 297023,3326 -0,23692343 0,092135251 0 3,9980695 2,89513287 82,50648129 3,074419947 4,0711461 0,07307657
+3,7613945 297055,3328 -0,23701891 0,092137158 0 3,9984133 2,895951859 82,51537022 3,075289652 4,0713945 0,07298109
+3,7613945 297087,333 -0,23699982 0,092135251 0 3,9983943 2,896770849 82,52425916 3,07615936 4,0713945 0,07300018
+3,7617764 297119,3332 -0,23698072 0,092133977 0 3,9987571 2,897589839 82,5331481 3,077029069 4,0717764 0,07301928
+3,7619293 297151,3333 -0,23686615 0,092132702 0 3,9987955 2,89840883 82,54203704 3,077898777 4,0719293 0,07313385
+3,7619674 297183,3335 -0,23696163 0,092141613 0 3,998929 2,899227821 82,55092597 3,078768486 4,0719674 0,07303837
+3,7621775 297215,3337 -0,23705712 0,092138432 0 3,9992347 2,900046814 82,55981491 3,079638196 4,0721775 0,07294288
+3,7624257 297247,3339 -0,23696163 0,092137158 0 3,9993873 2,90086581 82,56870385 3,08050791 4,0724257 0,07303837
+3,7625022 297279,334 -0,23705712 0,092139706 0 3,9995594 2,901684805 82,57759279 3,081377623 4,0725022 0,07294288
+3,7627695 297311,3342 -0,2371335 0,09213461 0 3,999903 2,9025038 82,58648173 3,082247336 4,0727695 0,0728665
+3,7629223 297343,3344 -0,23701891 0,092137158 0 3,9999411 2,903322794 82,59537066 3,083117048 4,0729223 0,07298109
+3,7629986 297375,3346 -0,23688523 0,092137158 0 3,9998839 2,904141788 82,6042596 3,08398676 4,0729986 0,07311477
+3,7631323 297407,3347 -0,23694253 0,092131428 0 4,0000749 2,904960783 82,61314854 3,084856473 4,0731323 0,07305747
+3,7634189 297439,3349 -0,23699982 0,092131428 0 4,0004187 2,905779779 82,62203748 3,085726187 4,0734189 0,07300018
+3,7635143 297471,3351 -0,23696163 0,092133336 0 4,0004759 2,906598775 82,63092642 3,086595901 4,0735143 0,07303837
+3,7638199 297503,3353 -0,23690434 0,092138432 0 4,0007243 2,907417769 82,63981535 3,087465613 4,0738199 0,07309566
+3,7639728 297535,3354 -0,23696163 0,092143528 0 4,0009346 2,908236763 82,64870429 3,088335325 4,0739728 0,07303837
+3,7642782 297567,3356 -0,2371908 0,092138432 0 4,0014691 2,909055758 82,65759323 3,089205038 4,0742782 0,0728092
+3,764431 297599,3358 -0,23703802 0,09213461 0 4,0014691 2,909874755 82,66648217 3,090074753 4,074431 0,07296198
+3,764641 297631,336 -0,23698072 0,092136525 0 4,0016217 2,910693753 82,6753711 3,090944469 4,074641 0,07301928
+3,7648511 297663,3362 -0,23690434 0,092132702 0 4,0017552 2,911512747 82,68426004 3,09181418 4,0748511 0,07309566
+3,7648702 297695,3363 -0,23692343 0,092135251 0 4,0017934 2,91233174 82,69314898 3,092683892 4,0748702 0,07307657
+3,7651567 297727,3365 -0,23699982 0,092139073 0 4,0021567 2,913150735 82,70203792 3,093553605 4,0751567 0,07300018
+3,7650995 297759,3367 -0,23701891 0,092130795 0 4,0021186 2,913969727 82,71092686 3,094423314 4,0750995 0,07298109
+3,7655578 297791,3369 -0,23699982 0,092133336 0 4,0025578 2,91478872 82,71981579 3,095293025 4,0755578 0,07300018
+3,7656341 297823,337 -0,23709531 0,092138432 0 4,0027294 2,915607714 82,72870473 3,096162737 4,0756341 0,07290469
+3,765825 297855,3372 -0,23694253 0,092137799 0 4,0027676 2,916426706 82,73759367 3,097032446 4,075825 0,07305747
+3,7660353 297887,3374 -0,23699982 0,09212888 0 4,0030351 2,917245695 82,74648261 3,097902154 4,0760353 0,07300018
+3,7662644 297919,3376 -0,23698072 0,092137158 0 4,0032454 2,918064684 82,75537154 3,09877186 4,0762644 0,07301928
+3,7663217 297951,3377 -0,23705712 0,092138432 0 4,0033789 2,918883673 82,76426048 3,099641567 4,0763217 0,07294288
+3,7666082 297983,3379 -0,23696163 0,092132062 0 4,0035701 2,919702666 82,77314942 3,100511277 4,0766082 0,07303837
+3,7667608 298015,3381 -0,23698072 0,092135884 0 4,0037417 2,920521662 82,78203836 3,101380991 4,0767608 0,07301928
+3,7669902 298047,3383 -0,23709531 0,09214098 0 4,0040855 2,921340659 82,7909273 3,102250706 4,0769902 0,07290469
+3,7670856 298079,3384 -0,23715261 0,092138432 0 4,0042381 2,922159657 82,79981623 3,103120423 4,0770856 0,07284739
+3,7673531 298111,3386 -0,23699982 0,09213461 0 4,004353 2,922978653 82,80870517 3,103990137 4,0773531 0,07300018
+3,7675631 298143,3388 -0,23694253 0,092141613 0 4,0045056 2,923797647 82,81759411 3,104859849 4,0775631 0,07305747
+3,7676203 298175,339 -0,2371335 0,092132702 0 4,0047541 2,92461664 82,82648305 3,10572956 4,0776203 0,0728665
+3,7679451 298207,3391 -0,23698072 0,092140347 0 4,0049257 2,925435636 82,83537199 3,106599273 4,0779451 0,07301928
+3,7680979 298239,3393 -0,2371144 0,092142887 0 4,0052123 2,926254631 82,84426092 3,107468986 4,0780979 0,0728856
+3,7681742 298271,3395 -0,23703802 0,092137158 0 4,0052123 2,927073624 82,85314986 3,108338697 4,0781742 0,07296198
+3,7682889 298303,3397 -0,23698072 0,092137799 0 4,0052695 2,927892619 82,8620388 3,10920841 4,0782889 0,07301928
+3,7686133 298335,3399 -0,23703802 0,092131428 0 4,0056515 2,928711615 82,87092774 3,110078124 4,0786133 0,07296198
+3,7688234 298367,34 -0,23701891 0,092142262 0 4,0058422 2,92953061 82,87981667 3,110947837 4,0788234 0,07298109
+3,7688808 298399,3402 -0,23686615 0,092140347 0 4,0057468 2,930349608 82,88870561 3,111817553 4,0788808 0,07313385
+3,7690144 298431,3404 -0,23699982 0,092135251 0 4,0060143 2,931168607 82,89759455 3,112687271 4,0790144 0,07300018
+3,7693582 298463,3406 -0,23698072 0,092135251 0 4,0063391 2,931987602 82,90648349 3,113556984 4,0793582 0,07301928
+3,7694156 298495,3407 -0,23692343 0,092135251 0 4,0063391 2,932806596 82,91537243 3,114426695 4,0794156 0,07307657
+3,7696447 298527,3409 -0,23694253 0,092129521 0 4,006587 2,933625589 82,92426136 3,115296406 4,0796447 0,07305747
+3,7698929 298559,3411 -0,23705712 0,092138432 0 4,0069499 2,934444583 82,9331503 3,116166118 4,0798929 0,07294288
+3,7700267 298591,3413 -0,23688523 0,092142887 0 4,0069118 2,935263576 82,94203924 3,117035829 4,0800267 0,07311477
+3,7701986 298623,3414 -0,23699982 0,092132702 0 4,0071983 2,936082568 82,95092818 3,117905539 4,0801986 0,07300018
+3,7705615 298655,3416 -0,23696163 0,092132062 0 4,0075231 2,93690156 82,95981711 3,118775248 4,0805615 0,07303837
+3,770504 298687,3418 -0,23698072 0,092135251 0 4,0074849 2,937720552 82,96870605 3,119644958 4,080504 0,07301928
+3,7706759 298719,342 -0,23692343 0,09213461 0 4,0075994 2,938539544 82,97759499 3,120514668 4,0806759 0,07307657
+3,7709434 298751,3421 -0,23699982 0,092135251 0 4,0079432 2,939358532 82,98648393 3,121384374 4,0809434 0,07300018
+3,7712872 298783,3423 -0,23688523 0,092140347 0 4,0081725 2,940177522 82,99537287 3,122254081 4,0812872 0,07311477
+3,7713444 298815,3425 -0,23699982 0,092135884 0 4,0083442 2,940996513 83,0042618 3,12312379 4,0813444 0,07300018
+3,7715926 298847,3427 -0,23699982 0,092139073 0 4,0085926 2,941815507 83,01315074 3,123993502 4,0815926 0,07300018
+3,7717073 298879,3428 -0,23699982 0,09214098 0 4,008707 2,942634501 83,02203968 3,124863214 4,0817073 0,07300018
+3,7717836 298911,343 -0,23701891 0,092132062 0 4,0088024 2,943453495 83,03092862 3,125732926 4,0817836 0,07298109
+3,7719555 298943,3432 -0,23707621 0,092142887 0 4,0090318 2,944272489 83,03981756 3,126602637 4,0819555 0,07292379
+3,7725093 298975,3434 -0,23692343 0,092136525 0 4,0094328 2,945091482 83,04870649 3,127472348 4,0825093 0,07307657
+3,7725666 299007,3436 -0,23686615 0,092139073 0 4,0094328 2,945910474 83,05759543 3,128342058 4,0825666 0,07313385
+3,7727003 299039,3437 -0,23694253 0,092142262 0 4,0096426 2,946729465 83,06648437 3,129211767 4,0827003 0,07305747
+3,7728722 299071,3439 -0,23698072 0,092142887 0 4,0098529 2,947548457 83,07537331 3,130081476 4,0828722 0,07301928
+3,773006 299103,3441 -0,23699982 0,092133977 0 4,010006 2,948367448 83,08426224 3,130951185 4,083006 0,07300018
+3,773216 299135,3443 -0,23688523 0,092131428 0 4,0101013 2,949186441 83,09315118 3,131820896 4,083216 0,07311477
+3,7732732 299167,3444 -0,23688523 0,092132062 0 4,0101585 2,950005433 83,10204012 3,132690606 4,0832732 0,07311477
+3,7735598 299199,3446 -0,23696163 0,092135251 0 4,0105214 2,950824425 83,11092906 3,133560316 4,0835598 0,07303837
+3,7738843 299231,3448 -0,23678975 0,092141613 0 4,010674 2,951643416 83,119818 3,134430025 4,0838843 0,07321025
+3,774018 299263,345 -0,23680885 0,092135884 0 4,0108271 2,95246241 83,12870693 3,135299736 4,084018 0,07319115
+3,7742665 299295,3451 -0,23680885 0,09213461 0 4,0110755 2,953281408 83,13759587 3,136169453 4,0842665 0,07319115
+3,7741709 299327,3453 -0,23703802 0,092135251 0 4,011209 2,954100403 83,14648481 3,137039165 4,0841709 0,07296198
+3,7745147 299359,3455 -0,23707621 0,092144169 0 4,011591 2,954919396 83,15537375 3,137908876 4,0845147 0,07292379
+3,7747056 299391,3457 -0,23694253 0,092140347 0 4,0116482 2,955738387 83,16426268 3,138778585 4,0847056 0,07305747
+3,7747438 299423,3458 -0,23696163 0,092139706 0 4,0117054 2,956557377 83,17315162 3,139648293 4,0847438 0,07303837
+3,7748966 299455,346 -0,23696163 0,092130795 0 4,0118585 2,957376367 83,18204056 3,140518 4,0848966 0,07303837
+3,775183 299487,3462 -0,23686615 0,092137799 0 4,0120492 2,958195359 83,1909295 3,14138771 4,085183 0,07313385
+3,7752976 299519,3464 -0,23688523 0,092132702 0 4,0121827 2,959014354 83,19981844 3,142257423 4,0852976 0,07311477
+3,7757559 299551,3465 -0,23682794 0,092146717 0 4,0125837 2,959833348 83,20870737 3,143127135 4,0857559 0,07317206
+3,7758133 299583,3467 -0,23694253 0,092135884 0 4,0127559 2,960652341 83,21759631 3,143996845 4,0858133 0,07305747
+3,7758133 299615,3469 -0,23665607 0,092126325 0 4,0124693 2,961471333 83,22648525 3,144866555 4,0858133 0,07334393
+3,7760997 299647,3471 -0,23680885 0,092130147 0 4,0129085 2,962290327 83,23537419 3,145736267 4,0860997 0,07319115
+3,7762525 299679,3473 -0,23684704 0,092130147 0 4,0130997 2,963109322 83,24426313 3,14660598 4,0862525 0,07315296
+3,7765963 299711,3474 -0,23677066 0,092138432 0 4,0133672 2,963928319 83,25315206 3,147475696 4,0865963 0,07322934
+3,77652 299743,3476 -0,23688523 0,092146717 0 4,0134053 2,964747315 83,262041 3,148345409 4,08652 0,07311477
+3,7768829 299775,3478 -0,23682794 0,092135884 0 4,013711 2,965566311 83,27092994 3,149215123 4,0868829 0,07317206
+3,7771311 299807,348 -0,23671336 0,092139706 0 4,0138445 2,966385308 83,27981888 3,150084838 4,0871311 0,07328664
+3,7773983 299839,3481 -0,23680885 0,092142887 0 4,0142074 2,967204305 83,28870781 3,150954554 4,0873983 0,07319115
+3,7774749 299871,3483 -0,23684704 0,092135884 0 4,0143218 2,968023302 83,29759675 3,151824268 4,0874749 0,07315296
+3,7776084 299903,3485 -0,23680885 0,092143528 0 4,0144172 2,968842297 83,30648569 3,152693981 4,0876084 0,07319115
+3,7778568 299935,3487 -0,23684704 0,092136525 0 4,0147038 2,969661293 83,31537463 3,153563696 4,0878568 0,07315296
+3,7780478 299967,3488 -0,23671336 0,092138432 0 4,014761 2,97048029 83,32426357 3,154433411 4,0880478 0,07328664
+3,7782578 299999,349 -0,23682794 0,092133336 0 4,0150857 2,971299287 83,3331525 3,155303126 4,0882578 0,07317206
+3,7785251 300031,3492 -0,23682794 0,092139706 0 4,0153532 2,972118283 83,34204144 3,156172839 4,0885251 0,07317206
+3,7786207 300063,3494 -0,23677066 0,092140347 0 4,0153913 2,972937277 83,35093038 3,157042552 4,0886207 0,07322934
+3,7788308 300095,3495 -0,23677066 0,092141613 0 4,0156016 2,973756274 83,35981932 3,157912266 4,0888308 0,07322934
+3,7789645 300127,3497 -0,23673245 0,092136525 0 4,015697 2,974575271 83,36870825 3,158781981 4,0889645 0,07326755
+3,7792318 300159,3499 -0,23667517 0,092136525 0 4,0159068 2,975394266 83,37759719 3,159651695 4,0892318 0,07332483
+3,7793274 300191,3501 -0,23675156 0,092136525 0 4,0160789 2,976213262 83,38648613 3,160521409 4,0893274 0,07324844
+3,7796519 300223,3502 -0,23686615 0,092131428 0 4,0165181 2,97703226 83,39537507 3,161391124 4,0896519 0,07313385
+3,7797666 300255,3504 -0,23673245 0,092133336 0 4,016499 2,977851259 83,40426401 3,162260842 4,0897666 0,07326755
+3,7800148 300287,3506 -0,23673245 0,092142262 0 4,016747 2,97867026 83,41315294 3,163130562 4,0900148 0,07326755
+3,7802439 300319,3508 -0,23667517 0,092140347 0 4,0169191 2,979489261 83,42204188 3,164000281 4,0902439 0,07332483
+3,7801867 300351,3509 -0,23686615 0,092144169 0 4,0170527 2,980308261 83,43093082 3,164869999 4,0901867 0,07313385
+3,7804732 300383,3511 -0,23678975 0,092139073 0 4,0172629 2,981127259 83,43981976 3,165739716 4,0904732 0,07321025
+3,7806067 300415,3513 -0,23690434 0,092135251 0 4,0175109 2,981946255 83,44870869 3,166609429 4,0906067 0,07309566
+3,7809315 300447,3515 -0,23678975 0,092130795 0 4,0177212 2,982765252 83,45759763 3,167479145 4,0909315 0,07321025
+3,7811034 300479,3517 -0,23675156 0,092129521 0 4,0178547 2,983584252 83,46648657 3,168348862 4,0911034 0,07324844
+3,7812181 300511,3518 -0,23665607 0,092139073 0 4,0178742 2,984403251 83,47537551 3,169218579 4,0912181 0,07334393
+3,7814472 300543,352 -0,23659877 0,092135884 0 4,0180459 2,98522225 83,48426445 3,170088297 4,0914472 0,07340123
+3,7815809 300575,3522 -0,23675156 0,092137158 0 4,0183325 2,986041249 83,49315338 3,170958014 4,0915809 0,07324844
+3,7818291 300607,3524 -0,23682794 0,092133336 0 4,0186572 2,98686025 83,50204232 3,171827733 4,0918291 0,07317206
+3,7821155 300639,3525 -0,23669426 0,092138432 0 4,0188098 2,987679251 83,51093126 3,172697453 4,0921155 0,07330574
+3,782192 300671,3527 -0,23684704 0,092137799 0 4,0190392 2,988498249 83,5198202 3,173567169 4,092192 0,07315296
+3,782593 300703,3529 -0,23677066 0,092131428 0 4,0193639 2,989317246 83,52870914 3,174436884 4,092593 0,07322934
+3,7824976 300735,3531 -0,23680885 0,092135251 0 4,0193067 2,990136243 83,53759807 3,175306599 4,0924976 0,07319115
+3,7827077 300767,3532 -0,23680885 0,092135884 0 4,0195165 2,990955242 83,54648701 3,176176316 4,0927077 0,07319115
+3,7829368 300799,3534 -0,23669426 0,092137158 0 4,0196309 2,991774239 83,55537595 3,177046031 4,0929368 0,07330574
+3,7830706 300831,3536 -0,23659877 0,092126325 0 4,0196695 2,992593235 83,56426489 3,177915746 4,0930706 0,07340123
+3,7833378 300863,3538 -0,23659877 0,092139073 0 4,0199366 2,993412234 83,57315382 3,178785462 4,0933378 0,07340123
+3,7834907 300895,3539 -0,23665607 0,092142887 0 4,0201468 2,994231231 83,58204276 3,179655178 4,0934907 0,07334393
+3,7837007 300927,3541 -0,23671336 0,09214098 0 4,0204139 2,995050226 83,5909317 3,180524891 4,0937007 0,07328664
+3,7839489 300959,3543 -0,23669426 0,092139706 0 4,0206432 2,995869219 83,59982064 3,181394601 4,0939489 0,07330574
+3,7841783 300991,3545 -0,23671336 0,092138432 0 4,0208917 2,996688212 83,60870958 3,182264312 4,0941783 0,07328664
+3,7842736 301023,3546 -0,23669426 0,092140347 0 4,020968 2,997507205 83,61759851 3,183134024 4,0942736 0,07330574
+3,7844074 301055,3548 -0,23675156 0,092132702 0 4,0211592 2,998326201 83,62648745 3,184003737 4,0944074 0,07324844
+3,7846746 301087,355 -0,23678975 0,092142887 0 4,0214643 2,999145194 83,63537639 3,184873448 4,0946746 0,07321025
+3,7849231 301119,3552 -0,23661788 0,092135251 0 4,0215411 2,999964184 83,64426533 3,185743156 4,0949231 0,07338212
+3,7850757 301151,3554 -0,23665607 0,092130795 0 4,0217319 3,000783176 83,65315426 3,186612866 4,0950757 0,07334393
+3,7851903 301183,3555 -0,23665607 0,092130795 0 4,0218463 3,001602171 83,6620432 3,187482578 4,0951903 0,07334393
+3,7853622 301215,3557 -0,23663697 0,092141613 0 4,0219994 3,002421166 83,67093214 3,188352292 4,0953622 0,07336303
+3,785687 301247,3559 -0,23657969 0,092145436 0 4,0222669 3,003240163 83,67982108 3,189222006 4,095687 0,07342031
+3,7858396 301279,3561 -0,23673245 0,09213461 0 4,022572 3,004059156 83,68871002 3,190091718 4,0958396 0,07326755
+3,7858589 301311,3562 -0,23663697 0,092139073 0 4,0224957 3,00487815 83,69759895 3,190961429 4,0958589 0,07336303
+3,7861834 301343,3564 -0,23671336 0,092138432 0 4,0228968 3,005697145 83,70648789 3,191831143 4,0961834 0,07328664
+3,786279 301375,3566 -0,23656058 0,092137158 0 4,0228395 3,006516137 83,71537683 3,192700852 4,096279 0,07343942
+3,7865462 301407,3568 -0,23669426 0,092139706 0 4,0232406 3,00733513 83,72426577 3,193570563 4,0965462 0,07330574
+3,7866418 301439,3569 -0,23659877 0,092139706 0 4,0232406 3,008154125 83,73315471 3,194440276 4,0966418 0,07340123
+3,7868519 301471,3571 -0,23659877 0,092135884 0 4,0234509 3,008973119 83,74204364 3,195309988 4,0968519 0,07340123
+3,7871957 301503,3573 -0,23654148 0,09213461 0 4,023737 3,009792114 83,75093258 3,196179701 4,0971957 0,07345852
+3,7872529 301535,3575 -0,23659877 0,092133977 0 4,0238519 3,010611107 83,75982152 3,197049412 4,0972529 0,07340123
+3,787291 301567,3576 -0,23661788 0,092137799 0 4,0239091 3,011430101 83,76871046 3,197919123 4,097291 0,07338212
+3,7876158 301599,3578 -0,23677066 0,092135884 0 4,0243864 3,012249095 83,77759939 3,198788835 4,0976158 0,07322934
+3,7879214 301631,358 -0,23644599 0,092137799 0 4,0243673 3,013068089 83,78648833 3,199658547 4,0979214 0,07355401
+3,7880168 301663,3582 -0,23671336 0,092136525 0 4,0247302 3,013887082 83,79537727 3,200528258 4,0980168 0,07328664
+3,788265 301695,3583 -0,23667517 0,092132062 0 4,02494 3,014706072 83,80426621 3,201397966 4,098265 0,07332483
+3,7884369 301727,3585 -0,23659877 0,092135251 0 4,0250359 3,015525065 83,81315515 3,202267676 4,0984369 0,07340123
+3,7886662 301759,3587 -0,23667517 0,092133336 0 4,0253415 3,01634406 83,82204408 3,203137389 4,0986662 0,07332483
+3,7888379 301791,3589 -0,23663697 0,092138432 0 4,025475 3,017163056 83,83093302 3,204007103 4,0988379 0,07336303
+3,7889144 301823,3591 -0,23650329 0,09213461 0 4,0254178 3,017982053 83,83982196 3,204876818 4,0989144 0,07349671
+3,7892008 301855,3592 -0,23648418 0,092141613 0 4,0256848 3,018801047 83,8487109 3,20574653 4,0992008 0,07351582
+3,7893727 301887,3594 -0,23667517 0,09213461 0 4,0260477 3,019620042 83,85759983 3,206616243 4,0993727 0,07332483
+3,7895255 301919,3596 -0,23656058 0,09214098 0 4,0260859 3,020439038 83,86648877 3,207485957 4,0995255 0,07343942
+3,789793 301951,3598 -0,23657969 0,092133336 0 4,0263729 3,021258032 83,87537771 3,208355669 4,099793 0,07342031
+3,7900412 301983,3599 -0,23656058 0,092140347 0 4,0266018 3,022077026 83,88426665 3,209225381 4,1000412 0,07343942
+3,790175 302015,3601 -0,23669426 0,092135884 0 4,0268693 3,022896021 83,89315559 3,210095094 4,100175 0,07330574
+3,7903659 302047,3603 -0,23648418 0,092135251 0 4,0268502 3,023715018 83,90204452 3,210964809 4,1003659 0,07351582
+3,7905569 302079,3605 -0,23661788 0,092123784 0 4,0271749 3,024534009 83,91093346 3,211834517 4,1005569 0,07338212
+3,7908432 302111,3606 -0,23654148 0,092137799 0 4,0273848 3,025353003 83,9198224 3,21270423 4,1008432 0,07345852
+3,7908242 302143,3608 -0,23661788 0,092138432 0 4,027442 3,026172 83,92871134 3,213573944 4,1008242 0,07338212
+3,7911489 302175,361 -0,23680885 0,092141613 0 4,0279579 3,026990995 83,93760028 3,214443657 4,1011489 0,07319115
+3,7914543 302207,3612 -0,23669426 0,092132062 0 4,0281487 3,027809989 83,94648921 3,215313369 4,1014543 0,07330574
+3,7914736 302239,3613 -0,23661788 0,092141613 0 4,0280914 3,028628984 83,95537815 3,216183082 4,1014736 0,07338212
+3,7916453 302271,3615 -0,23657969 0,092133336 0 4,0282249 3,029447978 83,96426709 3,217052794 4,1016453 0,07342031
+3,7919319 302303,3617 -0,23656058 0,092139073 0 4,0284925 3,030266971 83,97315603 3,217922505 4,1019319 0,07343942
+3,7919891 302335,3619 -0,23656058 0,092133336 0 4,0285497 3,031085964 83,98204496 3,218792216 4,1019891 0,07343942
+3,7922375 302367,362 -0,23661788 0,092132062 0 4,0288553 3,031904958 83,9909339 3,219661927 4,1022375 0,07338212
+3,7923138 302399,3622 -0,23661788 0,092137158 0 4,0289316 3,032723952 83,99982284 3,220531639 4,1023138 0,07338212
+3,7927339 302431,3624 -0,23654148 0,092143528 0 4,0292754 3,033542946 84,00871178 3,221401352 4,1027339 0,07345852
+3,7927721 302463,3626 -0,23663697 0,092140347 0 4,0294089 3,034361939 84,01760072 3,222271063 4,1027721 0,07336303
+3,7929249 302495,3628 -0,23667517 0,092136525 0 4,0296001 3,035180932 84,02648965 3,223140774 4,1029249 0,07332483
+3,7932496 302527,3629 -0,23657969 0,092141613 0 4,0298295 3,035999926 84,03537859 3,224010486 4,1032496 0,07342031
+3,7933068 302559,3631 -0,23659877 0,092135251 0 4,0299058 3,036818922 84,04426753 3,224880199 4,1033068 0,07340123
+3,7935743 302591,3633 -0,23656058 0,092135884 0 4,0301352 3,037637917 84,05315647 3,225749912 4,1035743 0,07343942
+3,7936888 302623,3635 -0,23650329 0,092141613 0 4,0301919 3,03845691 84,0620454 3,226619624 4,1036888 0,07349671
+3,7939372 302655,3636 -0,2364651 0,092142262 0 4,0304022 3,039275905 84,07093434 3,227489336 4,1039372 0,0735349
+3,7940516 302687,3638 -0,2364269 0,092130147 0 4,0304785 3,040094897 84,07982328 3,228359046 4,1040516 0,0735731
+3,7942045 302719,364 -0,23671336 0,092142887 0 4,0309176 3,040913888 84,08871222 3,229228754 4,1042045 0,07328664
+3,7945101 302751,3642 -0,23650329 0,092147343 0 4,0310135 3,04173288 84,09760116 3,230098464 4,1045101 0,07349671
+3,7947583 302783,3643 -0,2364078 0,092135884 0 4,0311661 3,042551871 84,10649009 3,230968173 4,1047583 0,0735922
+3,7949302 302815,3645 -0,23650329 0,09214098 0 4,0314336 3,043370863 84,11537903 3,231837883 4,1049302 0,07349671
+3,795083 302847,3647 -0,23657969 0,092135251 0 4,0316629 3,044189854 84,12426797 3,232707591 4,105083 0,07342031
+3,7952549 302879,3649 -0,23656058 0,092132702 0 4,0318155 3,045008846 84,13315691 3,233577301 4,1052549 0,07343942
+3,7956178 302911,365 -0,23644599 0,092126325 0 4,032064 3,045827836 84,14204585 3,234447008 4,1056178 0,07355401
+3,7955987 302943,3652 -0,23654148 0,092136525 0 4,0321403 3,046646827 84,15093478 3,235316718 4,1055987 0,07345852
+3,7957513 302975,3654 -0,2364269 0,092130147 0 4,0321784 3,047465822 84,15982372 3,23618643 4,1057513 0,0735731
+3,7960951 303007,3656 -0,23648418 0,092139073 0 4,0325794 3,048284816 84,16871266 3,237056142 4,1060951 0,07351582
+3,7961142 303039,3657 -0,2364269 0,092140347 0 4,0325413 3,049103807 84,1776016 3,237925851 4,1061142 0,0735731
+3,7964199 303071,3659 -0,23667517 0,092138432 0 4,0330949 3,049922797 84,18649053 3,238795559 4,1064199 0,07332483
+3,7965152 303103,3661 -0,23652239 0,092133336 0 4,0330377 3,050741789 84,19537947 3,239665268 4,1065152 0,07347761
+3,7967446 303135,3663 -0,23657969 0,092143528 0 4,0333242 3,05156078 84,20426841 3,240534977 4,1067446 0,07342031
+3,7968974 303167,3665 -0,23659877 0,092137158 0 4,0334964 3,052379773 84,21315735 3,241404688 4,1068974 0,07340123
+3,7970691 303199,3666 -0,23635051 0,092132062 0 4,0334196 3,053198767 84,22204629 3,2422744 4,1070691 0,07364949
+3,7972219 303231,3668 -0,23657969 0,092133336 0 4,0338016 3,054017761 84,23093522 3,243144112 4,1072219 0,07342031
+3,7975276 303263,367 -0,23657969 0,092137158 0 4,0341072 3,054836756 84,23982416 3,244013824 4,1075276 0,07342031
+3,797642 303295,3672 -0,23629321 0,092139073 0 4,0339351 3,055655749 84,2487131 3,244883536 4,107642 0,07370679
+3,7979476 303327,3673 -0,23656058 0,092135251 0 4,0345082 3,056474744 84,25760204 3,245753249 4,1079476 0,07343942
+3,7980623 303359,3675 -0,2364269 0,092136525 0 4,0344892 3,057293741 84,26649097 3,246622964 4,1080623 0,0735731
+3,7982152 303391,3677 -0,23650329 0,092135251 0 4,0347185 3,058112738 84,27537991 3,247492678 4,1082152 0,07349671
+3,7983868 303423,3679 -0,2364078 0,092139073 0 4,0347948 3,058931734 84,28426885 3,248362392 4,1083868 0,0735922
+3,7986162 303455,368 -0,2364078 0,092139073 0 4,0350242 3,05975073 84,29315779 3,249232107 4,1086162 0,0735922
+3,7988453 303487,3682 -0,23652239 0,092132702 0 4,0353675 3,060569725 84,30204673 3,25010182 4,1088453 0,07347761
+3,7990935 303519,3684 -0,23656058 0,092141613 0 4,0356541 3,06138872 84,31093566 3,250971532 4,1090935 0,07343942
+3,7991509 303551,3686 -0,23654148 0,09213461 0 4,0356922 3,062207712 84,3198246 3,251841243 4,1091509 0,07345852
+3,7992654 303583,3687 -0,23648418 0,092136525 0 4,0357494 3,063026705 84,32871354 3,252710953 4,1092654 0,07351582
+3,7993991 303615,3689 -0,23652239 0,092129521 0 4,0359216 3,063845696 84,33760248 3,253580662 4,1093991 0,07347761
+3,7997239 303647,3691 -0,23656058 0,092137158 0 4,0362844 3,064664686 84,34649141 3,25445037 4,1097239 0,07343942
+3,7998765 303679,3693 -0,23652239 0,092143528 0 4,0363989 3,065483678 84,35538035 3,255320079 4,1098765 0,07347761
+3,8000293 303711,3694 -0,2364651 0,092142887 0 4,0364943 3,066302673 84,36426929 3,256189792 4,1100293 0,0735349
+3,8002584 303743,3696 -0,23636961 0,092138432 0 4,0366278 3,067121668 84,37315823 3,257059505 4,1102584 0,07363039
+3,8004496 303775,3698 -0,23648418 0,092139706 0 4,0369339 3,067940662 84,38204717 3,257929217 4,1104496 0,07351582
+3,8006978 303807,37 -0,2364078 0,092140347 0 4,0371056 3,068759653 84,3909361 3,258798926 4,1106978 0,0735922
+3,8010416 303839,3702 -0,23652239 0,09212824 0 4,0375638 3,069578648 84,39982504 3,259668639 4,1110416 0,07347761
+3,801156 303871,3703 -0,2364651 0,092131428 0 4,037621 3,070397641 84,40871398 3,26053835 4,111156 0,0735349
+3,8012898 303903,3705 -0,23648418 0,092138432 0 4,0377741 3,071216635 84,41760292 3,261408061 4,1112898 0,07351582
+3,8014045 303935,3707 -0,23650329 0,09214098 0 4,0379076 3,072035629 84,42649186 3,262277774 4,1114045 0,07349671
+3,801538 303967,3709 -0,2364651 0,092135251 0 4,038003 3,072854623 84,43538079 3,263147485 4,111538 0,0735349
+3,8016908 303999,371 -0,23654148 0,092137158 0 4,0382323 3,073673615 84,44426973 3,264017195 4,1116908 0,07345852
+3,8019199 304031,3712 -0,23650329 0,092137799 0 4,0384231 3,074492607 84,45315867 3,264886904 4,1119199 0,07349671
+3,8020918 304063,3714 -0,23650329 0,092139073 0 4,0385952 3,075311598 84,46204761 3,265756614 4,1120918 0,07349671
+3,8023212 304095,3716 -0,23650329 0,092132062 0 4,0388246 3,07613059 84,47093654 3,266626323 4,1123212 0,07349671
+3,8026457 304127,3717 -0,2364269 0,092130795 0 4,0390725 3,076949582 84,47982548 3,267496033 4,1126457 0,0735731
+3,8026838 304159,3719 -0,2364078 0,092132062 0 4,0390916 3,077768576 84,48871442 3,268365745 4,1126838 0,0735922
+3,8030086 304191,3721 -0,2364269 0,092133336 0 4,0394354 3,07858757 84,49760336 3,269235457 4,1130086 0,0735731
+3,8030467 304223,3723 -0,2364651 0,092140347 0 4,0395117 3,079406566 84,5064923 3,270105171 4,1130467 0,0735349
+3,8032377 304255,3724 -0,23636961 0,092138432 0 4,039607 3,080225558 84,51538123 3,27097488 4,1132377 0,07363039
+3,8033142 304287,3726 -0,2364651 0,092137799 0 4,0397792 3,081044553 84,52427017 3,271844594 4,1133142 0,0735349
+3,8037915 304319,3728 -0,23635051 0,092133977 0 4,0401421 3,081863548 84,53315911 3,272714307 4,1137915 0,07364949
+3,8038299 304351,373 -0,23648418 0,092131428 0 4,0403142 3,082682543 84,54204805 3,27358402 4,1138299 0,07351582
+3,80404 304383,3731 -0,23631231 0,092135251 0 4,0403523 3,083501537 84,55093698 3,274453732 4,11404 0,07368769
+3,8041162 304415,3733 -0,23635051 0,092135251 0 4,0404668 3,084320532 84,55982592 3,275323444 4,1141162 0,07364949
+3,804441 304447,3735 -0,2364269 0,092133977 0 4,0408678 3,085139527 84,56871486 3,276193157 4,114441 0,0735731
+3,8046892 304479,3737 -0,23633142 0,092143528 0 4,0410204 3,085958522 84,5776038 3,27706287 4,1146892 0,07366858
+3,804842 304511,3738 -0,23644599 0,092133977 0 4,0412879 3,086777517 84,58649274 3,277932583 4,114842 0,07355401
+3,8049757 304543,374 -0,2364269 0,092140347 0 4,0414028 3,087596511 84,59538167 3,278802295 4,1149757 0,0735731
+3,8051667 304575,3742 -0,23623593 0,092139073 0 4,0414028 3,088415505 84,60427061 3,279672007 4,1151667 0,07376407
+3,8053002 304607,3744 -0,2364269 0,092133977 0 4,0417271 3,089234498 84,61315955 3,280541718 4,1153002 0,0735731
+3,8055868 304639,3746 -0,23627412 0,092129521 0 4,0418611 3,090053495 84,62204849 3,281411433 4,1155868 0,07372588
+3,8057206 304671,3747 -0,2364651 0,092133336 0 4,0421858 3,090872489 84,63093743 3,282281145 4,1157206 0,0735349
+3,8058734 304703,3749 -0,23635051 0,092137799 0 4,0422239 3,091691484 84,63982636 3,283150858 4,1158734 0,07364949
+3,8060069 304735,3751 -0,2364078 0,092133977 0 4,0424147 3,092510482 84,6487153 3,284020574 4,1160069 0,0735922
+3,806217 304767,3753 -0,23631231 0,09213461 0 4,0425291 3,093329479 84,65760424 3,284890289 4,116217 0,07368769
+3,8064845 304799,3754 -0,23648418 0,092133336 0 4,0429688 3,094148475 84,66649318 3,285760003 4,1164845 0,07351582
+3,8069046 304831,3756 -0,2364651 0,092137158 0 4,0433698 3,094967472 84,67538211 3,286629718 4,1169046 0,0735349
+3,8067899 304863,3758 -0,23648418 0,092139073 0 4,0432739 3,09578647 84,68427105 3,287499434 4,1167899 0,07351582
+3,8070002 304895,376 -0,2363887 0,09213461 0 4,0433888 3,096605466 84,69315999 3,288369148 4,1170002 0,0736113
+3,8071718 304927,3761 -0,23661788 0,09213461 0 4,0437899 3,097424462 84,70204893 3,289238863 4,1171718 0,07338212
+3,8073437 304959,3763 -0,23656058 0,092137158 0 4,0439043 3,098243457 84,71093787 3,290108576 4,1173437 0,07343942
+3,8074965 304991,3765 -0,2364078 0,092125066 0 4,0439043 3,099062453 84,7198268 3,290978289 4,1174965 0,0735922
+3,8077641 305023,3767 -0,23635051 0,092133977 0 4,0441146 3,099881449 84,72871574 3,291848003 4,1177641 0,07364949
+3,8078976 305055,3768 -0,2364269 0,09212888 0 4,0443244 3,100700447 84,73760468 3,29271772 4,1178976 0,0735731
+3,8081841 305087,377 -0,23629321 0,092138432 0 4,0444775 3,101519448 84,74649362 3,293587439 4,1181841 0,07370679
+3,808356 305119,3772 -0,2364269 0,092136525 0 4,0447831 3,102338445 84,75538255 3,294457154 4,118356 0,0735731
+3,808547 305151,3774 -0,23650329 0,092135884 0 4,0450501 3,103157438 84,76427149 3,295326865 4,118547 0,07349671
+3,8087571 305183,3775 -0,23633142 0,092135251 0 4,0450883 3,103976427 84,77316043 3,296196571 4,1187571 0,07366858
+3,8088717 305215,3777 -0,2364078 0,092136525 0 4,0452795 3,104795418 84,78204937 3,29706628 4,1188717 0,0735922
+3,8092344 305247,3779 -0,23627412 0,092144802 0 4,0455084 3,105614412 84,79093831 3,297935992 4,1192344 0,07372588
+3,8092344 305279,3781 -0,23633142 0,092141613 0 4,0455656 3,106433407 84,79982724 3,298805705 4,1192344 0,07366858
+3,8093109 305311,3783 -0,2364078 0,092137799 0 4,0457187 3,107252401 84,80871618 3,299675417 4,1193109 0,0735922
+3,8096547 305343,3784 -0,23621683 0,092142262 0 4,0458717 3,108071394 84,81760512 3,300545127 4,1196547 0,07378317
+3,8098838 305375,3786 -0,23644599 0,092137799 0 4,04633 3,108890387 84,82649406 3,301414838 4,1198838 0,07355401
+3,8100367 305407,3788 -0,23650329 0,092131428 0 4,0465398 3,109709378 84,835383 3,302284547 4,1200367 0,07349671
+3,8100939 305439,379 -0,23635051 0,092132702 0 4,0464444 3,110528371 84,84427193 3,303154258 4,1200939 0,07364949
+3,810323 305471,3791 -0,23633142 0,09213461 0 4,0466542 3,111347363 84,85316087 3,304023968 4,120323 0,07366858
+3,8106287 305503,3793 -0,2364078 0,092139706 0 4,0470366 3,112166354 84,86204981 3,304893676 4,1206287 0,0735922
+3,8107433 305535,3795 -0,23629321 0,092139706 0 4,0470366 3,112985347 84,87093875 3,305763387 4,1207433 0,07370679
+3,8109534 305567,3797 -0,2364269 0,092133336 0 4,0473804 3,113804341 84,87982768 3,306633099 4,1209534 0,0735731
+3,8110487 305599,3798 -0,23635051 0,092141613 0 4,047399 3,114623331 84,88871662 3,307502807 4,1210487 0,07364949
+3,8112588 305631,38 -0,23636961 0,092141613 0 4,0476284 3,11544232 84,89760556 3,308372514 4,1212588 0,07363039
+3,8115072 305663,3802 -0,2364078 0,092133336 0 4,047915 3,116261313 84,9064945 3,309242224 4,1215072 0,0735922
+3,8116217 305695,3804 -0,23633142 0,092135884 0 4,0479531 3,117080306 84,91538344 3,310111935 4,1216217 0,07366858
+3,8119464 305727,3805 -0,23635051 0,092139073 0 4,0482969 3,1178993 84,92427237 3,310981647 4,1219464 0,07364949
+3,8121374 305759,3807 -0,23621683 0,092140347 0 4,0483541 3,118718294 84,93316131 3,311851359 4,1221374 0,07378317
+3,812252 305791,3809 -0,23629321 0,092139073 0 4,0485454 3,119537288 84,94205025 3,312721071 4,122252 0,07370679
+3,8124046 305823,3811 -0,2364269 0,092135884 0 4,0488315 3,120356282 84,95093919 3,313590783 4,1224046 0,0735731
+3,8125956 305855,3812 -0,2364651 0,092135251 0 4,0490608 3,121175277 84,95982812 3,314460495 4,1225956 0,0735349
+3,8127675 305887,3814 -0,23644599 0,092137158 0 4,0492134 3,121994269 84,96871706 3,315330206 4,1227675 0,07355401
+3,8129394 305919,3816 -0,2364651 0,09213461 0 4,0494046 3,12281326 84,977606 3,316199914 4,1229394 0,0735349
+3,8132069 305951,3818 -0,23621683 0,092137799 0 4,0494237 3,123632248 84,98649494 3,317069619 4,1232069 0,07378317
+3,8132641 305983,382 -0,2363887 0,092133336 0 4,0496531 3,124451236 84,99538388 3,317939325 4,1232641 0,0736113
+3,8135698 306015,3821 -0,23633142 0,092132062 0 4,049901 3,125270227 85,00427281 3,318809033 4,1235698 0,07366858
+3,8137417 306047,3823 -0,23636961 0,09213461 0 4,0501113 3,126089216 85,01316175 3,319678741 4,1237417 0,07363039
+3,8137798 306079,3825 -0,23625502 0,092142887 0 4,050035 3,126908209 85,02205069 3,320548451 4,1237798 0,07374498
+3,814028 306111,3827 -0,23617864 0,092138432 0 4,0502067 3,127727202 85,03093963 3,321418162 4,124028 0,07382136
+3,8141046 306143,3828 -0,23652239 0,09213461 0 4,0506268 3,128546195 85,03982857 3,322287873 4,1241046 0,07347761
+3,8144481 306175,383 -0,23648418 0,092139073 0 4,0509324 3,129365185 85,0487175 3,323157581 4,1244481 0,07351582
+3,8145819 306207,3832 -0,2364269 0,092137799 0 4,0510087 3,130184176 85,05760644 3,324027289 4,1245819 0,0735731
+3,8146966 306239,3834 -0,23633142 0,092133977 0 4,0510278 3,131003166 85,06649538 3,324896997 4,1246966 0,07366858
+3,8149066 306271,3835 -0,2364269 0,092131428 0 4,0513334 3,131822159 85,07538432 3,325766708 4,1249066 0,0735731
+3,8150785 306303,3837 -0,2364269 0,092129521 0 4,0515056 3,132641153 85,08427325 3,32663642 4,1250785 0,0735731
+3,8153839 306335,3839 -0,23631231 0,092127606 0 4,0516963 3,133460151 85,09316219 3,327506135 4,1253839 0,07368769
+3,8154795 306367,3841 -0,23629321 0,092139073 0 4,0517726 3,134279145 85,10205113 3,328375847 4,1254795 0,07370679
+3,8157468 306399,3842 -0,23635051 0,092137158 0 4,0520973 3,135098139 85,11094007 3,329245559 4,1257468 0,07364949
+3,8159187 306431,3844 -0,23636961 0,092132702 0 4,0522881 3,135917133 85,11982901 3,330115271 4,1259187 0,07363039
+3,8159761 306463,3846 -0,23627412 0,092142262 0 4,0522504 3,136736127 85,12871794 3,330984983 4,1259761 0,07372588
+3,8162243 306495,3848 -0,23644599 0,092137799 0 4,0526705 3,137555118 85,13760688 3,331854692 4,1262243 0,07355401
+3,8163772 306527,3849 -0,2363887 0,092138432 0 4,0527658 3,138374113 85,14649582 3,332724405 4,1263772 0,0736113
+3,8166635 306559,3851 -0,23635051 0,09213461 0 4,0530138 3,139193109 85,15538476 3,333594119 4,1266635 0,07364949
+3,8167207 306591,3853 -0,2364078 0,092133977 0 4,0531287 3,140012102 85,16427369 3,33446383 4,1267207 0,0735922
+3,8169119 306623,3855 -0,23627412 0,09213461 0 4,0531859 3,140831096 85,17316263 3,335333541 4,1269119 0,07372588
+3,8170836 306655,3857 -0,23636961 0,092135251 0 4,0534534 3,141650089 85,18205157 3,336203252 4,1270836 0,07363039
+3,8174083 306687,3858 -0,23635051 0,092139073 0 4,0537586 3,142469083 85,19094051 3,337072964 4,1274083 0,07364949
+3,8175039 306719,386 -0,2364078 0,092146084 0 4,0539117 3,143288078 85,19982945 3,337942678 4,1275039 0,0735922
+3,8176374 306751,3862 -0,23627412 0,092133977 0 4,0539117 3,144107072 85,20871838 3,33881239 4,1276374 0,07372588
+3,8179049 306783,3864 -0,23629321 0,092131428 0 4,0541983 3,144926067 85,21760732 3,339682103 4,1279049 0,07370679
+3,8180768 306815,3865 -0,23631231 0,092140347 0 4,054389 3,145745061 85,22649626 3,340551814 4,1280768 0,07368769
+3,8182869 306847,3867 -0,23621683 0,092138432 0 4,0545039 3,146564054 85,2353852 3,341421525 4,1282869 0,07378317
+3,8183632 306879,3869 -0,23648418 0,092137799 0 4,0548472 3,147383049 85,24427413 3,342291238 4,1283632 0,07351582
+3,8184397 306911,3871 -0,23617864 0,092139706 0 4,0546184 3,148202044 85,25316307 3,343160951 4,1284397 0,07382136
+3,818898 306943,3872 -0,23621683 0,092136525 0 4,0551147 3,149021042 85,26205201 3,344030667 4,128898 0,07378317
+3,818917 306975,3874 -0,23631231 0,092139706 0 4,0552292 3,14984004 85,27094095 3,344900384 4,128917 0,07368769
+3,8191271 307007,3876 -0,23635051 0,092139073 0 4,0554776 3,150659037 85,27982989 3,345770098 4,1291271 0,07364949
+3,8193946 307039,3878 -0,2363887 0,092132062 0 4,0557833 3,151478033 85,28871882 3,346639813 4,1293946 0,0736113
+3,819509 307071,3879 -0,23627412 0,092133336 0 4,0557833 3,152297034 85,29760776 3,347509532 4,129509 0,07372588
+3,8196428 307103,3881 -0,23629321 0,092139706 0 4,0559359 3,153116034 85,3064967 3,34837925 4,1296428 0,07370679
+3,8199103 307135,3883 -0,23636961 0,092133977 0 4,0562801 3,153935034 85,31538564 3,349248969 4,1299103 0,07363039
+3,8199675 307167,3885 -0,23629321 0,092126973 0 4,0562606 3,154754034 85,32427458 3,350118687 4,1299675 0,07370679
+3,8202348 307199,3886 -0,2364078 0,092137799 0 4,0566425 3,155573031 85,33316351 3,350988401 4,1302348 0,0735922
+3,8202922 307231,3888 -0,23629321 0,092136525 0 4,0565853 3,156392029 85,34205245 3,351858117 4,1302922 0,07370679
+3,8204832 307263,389 -0,23636961 0,092140347 0 4,0568528 3,157211025 85,35094139 3,352727831 4,1304832 0,07363039
+3,8209414 307295,3892 -0,2364269 0,092135884 0 4,0573683 3,158030021 85,35983033 3,353597546 4,1309414 0,0735731
+3,8208842 307327,3894 -0,2363887 0,092133336 0 4,0572729 3,15884902 85,36871926 3,354467263 4,1308842 0,0736113
+3,8210177 307359,3895 -0,2364269 0,09213461 0 4,0574446 3,159668016 85,3776082 3,355336977 4,1310177 0,0735731
+3,8212852 307391,3897 -0,23627412 0,092133977 0 4,0575595 3,160487015 85,38649714 3,356206694 4,1312852 0,07372588
+3,8215144 307423,3899 -0,23648418 0,09213461 0 4,0579987 3,161306014 85,39538608 3,357076412 4,1315144 0,07351582
+3,8217244 307455,3901 -0,23631231 0,092135251 0 4,0580368 3,162125014 85,40427502 3,35794613 4,1317244 0,07368769
+3,8218391 307487,3902 -0,23635051 0,092138432 0 4,0581894 3,162944014 85,41316395 3,358815848 4,1318391 0,07364949
+3,8221064 307519,3904 -0,23633142 0,092137799 0 4,0584378 3,163763015 85,42205289 3,359685568 4,1321064 0,07366858
+3,8222973 307551,3906 -0,2364078 0,092131428 0 4,0587053 3,164582018 85,43094183 3,360555289 4,1322973 0,0735922
+3,8222401 307583,3908 -0,23627412 0,092133336 0 4,0585141 3,165401018 85,43983077 3,361425007 4,1322401 0,07372588
+3,8224502 307615,3909 -0,23636961 0,092137799 0 4,0588198 3,166220014 85,4487197 3,362294721 4,1324502 0,07363039
+3,8225458 307647,3911 -0,23635051 0,092135884 0 4,0588961 3,167039008 85,45760864 3,363164433 4,1325458 0,07364949
+3,822794 307679,3913 -0,23627412 0,092135251 0 4,0590682 3,167858002 85,46649758 3,364034145 4,132794 0,07372588
+3,8231187 307711,3915 -0,23635051 0,09214098 0 4,0594692 3,168676997 85,47538652 3,364903857 4,1331187 0,07364949
+3,8231759 307743,3916 -0,23636961 0,092133336 0 4,0595455 3,169495992 85,48427546 3,365773571 4,1331759 0,07363039
+3,8232906 307775,3918 -0,23636961 0,092137799 0 4,05966 3,170314989 85,49316439 3,366643285 4,1332906 0,07363039
+3,8236916 307807,392 -0,2364078 0,092139073 0 4,0600996 3,171133982 85,50205333 3,367512997 4,1336916 0,0735922
+3,8237679 307839,3922 -0,23633142 0,092137158 0 4,0600991 3,171952975 85,51094227 3,368382707 4,1337679 0,07366858
+3,823787 307871,3923 -0,23623593 0,092135251 0 4,0600228 3,172771968 85,51983121 3,369252419 4,133787 0,07376407
+3,8240736 307903,3925 -0,23619772 0,092142887 0 4,0602713 3,173590961 85,52872015 3,370122129 4,1340736 0,07380228
+3,8242073 307935,3927 -0,23633142 0,092143528 0 4,0605388 3,174409954 85,53760908 3,370991839 4,1342073 0,07366858
+3,8244746 307967,3929 -0,23619772 0,092137799 0 4,0606723 3,175228947 85,54649802 3,371861551 4,1344746 0,07380228
+3,8247609 307999,3931 -0,23631231 0,092127606 0 4,0610733 3,176047941 85,55538696 3,372731263 4,1347609 0,07368769
+3,8246846 308031,3932 -0,23625502 0,092135251 0 4,0609398 3,176866935 85,5642759 3,373600974 4,1346846 0,07374498
+3,8250475 308063,3934 -0,2364269 0,092139706 0 4,0614743 3,17768593 85,57316483 3,374470687 4,1350475 0,0735731
+3,8250856 308095,3936 -0,23621683 0,092132702 0 4,0613027 3,178504925 85,58205377 3,375340401 4,1350856 0,07378317
+3,8252766 308127,3938 -0,23631231 0,092135884 0 4,0615888 3,179323923 85,59094271 3,376210117 4,1352766 0,07368769
+3,8255057 308159,3939 -0,23633142 0,092139706 0 4,0618372 3,180142919 85,59983165 3,377079831 4,1355057 0,07366858
+3,8256776 308191,3941 -0,23633142 0,09213461 0 4,0620089 3,180961915 85,60872059 3,377949545 4,1356776 0,07366858
+3,8258877 308223,3943 -0,23619772 0,092135884 0 4,0620856 3,181780911 85,61760952 3,378819259 4,1358877 0,07380228
+3,825907 308255,3945 -0,23631231 0,092130147 0 4,0622191 3,182599908 85,62649846 3,379688974 4,135907 0,07368769
+3,8261933 308287,3946 -0,23631231 0,092139706 0 4,0625057 3,183418908 85,6353874 3,380558692 4,1361933 0,07368769
+3,8262506 308319,3948 -0,23629321 0,092135884 0 4,0625439 3,184237908 85,64427634 3,38142841 4,1362506 0,07370679
+3,826499 308351,395 -0,23629321 0,09213461 0 4,0627923 3,185056907 85,65316527 3,382298127 4,136499 0,07370679
+3,826709 308383,3952 -0,23633142 0,092138432 0 4,0630403 3,185875904 85,66205421 3,383167842 4,136709 0,07366858
+3,8268809 308415,3953 -0,2363887 0,092139073 0 4,0632696 3,186694897 85,67094315 3,384037554 4,1368809 0,0736113
+3,8270147 308447,3955 -0,23625502 0,092142887 0 4,0632696 3,187513891 85,67983209 3,384907265 4,1370147 0,07374498
+3,8271291 308479,3957 -0,23617864 0,092135884 0 4,0633078 3,188332884 85,68872103 3,385776976 4,1371291 0,07382136
+3,8271101 308511,3959 -0,2364078 0,092137158 0 4,063518 3,189151876 85,69760996 3,386646686 4,1371101 0,0735922
+3,8274348 308543,396 -0,23648418 0,092137158 0 4,0639191 3,189970868 85,7064989 3,387516395 4,1374348 0,07351582
+3,827702 308575,3962 -0,23625502 0,092135251 0 4,0639572 3,190789859 85,71538784 3,388386105 4,137702 0,07374498
+3,8278167 308607,3964 -0,23631231 0,092130795 0 4,0641289 3,191608851 85,72427678 3,389255814 4,1378167 0,07368769
+3,8280458 308639,3966 -0,23635051 0,092132702 0 4,0643964 3,192427842 85,73316572 3,390125523 4,1380458 0,07364949
+3,828275 308671,3968 -0,23623593 0,09212888 0 4,0645108 3,193246837 85,74205465 3,390995236 4,138275 0,07376407
+3,8283324 308703,3969 -0,23631231 0,092142262 0 4,0646448 3,194065833 85,75094359 3,391864949 4,1383324 0,07368769
+3,8285615 308735,3971 -0,23644599 0,092130795 0 4,0650077 3,194884827 85,75983253 3,392734662 4,1385615 0,07355401
+3,8287334 308767,3973 -0,23633142 0,092146717 0 4,0650649 3,19570382 85,76872147 3,393604372 4,1387334 0,07366858
+3,8289626 308799,3975 -0,23631231 0,092133977 0 4,0652747 3,196522812 85,7776104 3,394474082 4,1389626 0,07368769
+3,8291917 308831,3976 -0,23635051 0,092130147 0 4,0655422 3,197341804 85,78649934 3,395343792 4,1391917 0,07364949
+3,8292108 308863,3978 -0,23629321 0,092135884 0 4,0655041 3,198160797 85,79538828 3,396213503 4,1392108 0,07370679
+3,8294017 308895,398 -0,23631231 0,092137158 0 4,0657139 3,198979792 85,80427722 3,397083216 4,1394017 0,07368769
+3,8295546 308927,3982 -0,23614044 0,092139073 0 4,0656948 3,199798785 85,81316616 3,397952926 4,1395546 0,07385956
+3,8297837 308959,3983 -0,23625502 0,092132702 0 4,0660386 3,200617775 85,82205509 3,398822634 4,1397837 0,07374498
+3,8300703 308991,3985 -0,23631231 0,092139706 0 4,0663824 3,201436766 85,83094403 3,399692343 4,1400703 0,07368769
+3,8301275 309023,3987 -0,23629321 0,092137799 0 4,0664206 3,202255754 85,83983297 3,400562048 4,1401275 0,07370679
+3,8303757 309055,3989 -0,23633142 0,092132062 0 4,0667071 3,203074743 85,84872191 3,401431755 4,1403757 0,07366858
+3,8304522 309087,399 -0,23631231 0,09214098 0 4,0667644 3,203893732 85,85761084 3,402301462 4,1404522 0,07368769
+3,8306813 309119,3992 -0,23629321 0,092135251 0 4,0669746 3,204712722 85,86649978 3,403171169 4,1406813 0,07370679
+3,8309104 309151,3994 -0,23636961 0,092139706 0 4,0672798 3,205531713 85,87538872 3,404040877 4,1409104 0,07363039
+3,8309488 309183,3996 -0,23631231 0,092133977 0 4,0672612 3,206350702 85,88427766 3,404910585 4,1409488 0,07368769
+3,8312161 309215,3997 -0,23614044 0,092130795 0 4,0673566 3,207169692 85,8931666 3,405780292 4,1412161 0,07385956
+3,831197 309247,3999 -0,23627412 0,092137799 0 4,067471 3,207988682 85,90205553 3,40665 4,141197 0,07372588
+3,8315599 309279,4001 -0,23650329 0,092136525 0 4,0680633 3,208807673 85,91094447 3,407519709 4,1415599 0,07349671
+3,8316553 309311,4003 -0,23633142 0,092136525 0 4,0679865 3,209626664 85,91983341 3,408389417 4,1416553 0,07366858
+3,831789 309343,4004 -0,23619772 0,092140347 0 4,067987 3,210445655 85,92872235 3,409259126 4,141789 0,07380228
+3,8319037 309375,4006 -0,23623593 0,092135251 0 4,0681396 3,211264649 85,93761128 3,410128838 4,1419037 0,07376407
+3,8320563 309407,4008 -0,23619772 0,092131428 0 4,068254 3,212083644 85,94650022 3,41099855 4,1420563 0,07380228
+3,8322666 309439,401 -0,23650329 0,092124417 0 4,0687699 3,212902639 85,95538916 3,411868264 4,1422666 0,07349671
+3,8323429 309471,4012 -0,23629321 0,092131428 0 4,0686359 3,213721635 85,9642781 3,412737978 4,1423429 0,07370679
+3,8326101 309503,4013 -0,2363887 0,092135884 0 4,0689988 3,214540631 85,97316704 3,413607692 4,1426101 0,0736113
+3,832782 309535,4015 -0,23635051 0,092132702 0 4,0691323 3,215359631 85,98205597 3,41447741 4,142782 0,07364949
+3,832973 309567,4017 -0,2363887 0,09213461 0 4,0693617 3,21617863 85,99094491 3,415347128 4,142973 0,0736113
+3,8330877 309599,4019 -0,2364269 0,092142262 0 4,0695148 3,216997628 85,99983385 3,416216844 4,1430877 0,0735731
+3,8332214 309631,402 -0,23621683 0,092132062 0 4,0694385 3,217816627 86,00872279 3,417086561 4,1432214 0,07378317
+3,8334506 309663,4022 -0,23631231 0,092133977 0 4,0697627 3,21863563 86,01761173 3,417956282 4,1434506 0,07368769
+3,8335652 309695,4024 -0,23614044 0,092137799 0 4,0697055 3,219454629 86,02650066 3,418825999 4,1435652 0,07385956
+3,8338706 309727,4026 -0,23635051 0,092133336 0 4,0702209 3,220273627 86,0353896 3,419695715 4,1438706 0,07364949
+3,8339088 309759,4027 -0,23636961 0,092135884 0 4,0702782 3,221092623 86,04427854 3,42056543 4,1439088 0,07363039
+3,8341191 309791,4029 -0,23635051 0,092137158 0 4,0704694 3,221911618 86,05316748 3,421435142 4,1441191 0,07364949
+3,8342526 309823,4031 -0,23619772 0,092139073 0 4,0704503 3,22273061 86,06205641 3,422304852 4,1442526 0,07380228
+3,8343863 309855,4033 -0,23625502 0,092147991 0 4,0706415 3,223549607 86,07094535 3,423174568 4,1443863 0,07374498
+3,8346727 309887,4034 -0,23631231 0,092137799 0 4,0709848 3,224368604 86,07983429 3,424044283 4,1446727 0,07368769
+3,8348637 309919,4036 -0,23631231 0,092133977 0 4,0711761 3,225187603 86,08872323 3,424913999 4,1448637 0,07368769
+3,8348637 309951,4038 -0,23621683 0,09213461 0 4,0710807 3,226006599 86,09761217 3,425783713 4,1448637 0,07378317
+3,8350549 309983,404 -0,23631231 0,092135251 0 4,0713673 3,226825595 86,1065011 3,426653427 4,1450549 0,07368769
+3,8353031 310015,4041 -0,23633142 0,092136525 0 4,0716343 3,227644593 86,11539004 3,427523143 4,1453031 0,07366858
+3,8353794 310047,4043 -0,23621683 0,092136525 0 4,0715961 3,228463592 86,12427898 3,42839286 4,1453794 0,07378317
+3,8355513 310079,4045 -0,23602585 0,092137158 0 4,0715771 3,22928259 86,13316792 3,429262577 4,1455513 0,07397415
+3,8357613 310111,4047 -0,23623593 0,092142887 0 4,0719972 3,230101584 86,14205685 3,430132289 4,1457613 0,07376407
+3,8359907 310143,4049 -0,23617864 0,092136525 0 4,0721693 3,230920576 86,15094579 3,431001999 4,1459907 0,07382136
+3,8362198 310175,405 -0,23625502 0,092137799 0 4,072475 3,23173957 86,15983473 3,431871711 4,1462198 0,07374498
+3,8361433 310207,4052 -0,23625502 0,092131428 0 4,0723982 3,232558565 86,16872367 3,432741424 4,1461433 0,07374498
+3,8364108 310239,4054 -0,23623593 0,092133977 0 4,0726466 3,233377558 86,17761261 3,433611134 4,1464108 0,07376407
+3,8365252 310271,4056 -0,23633142 0,092142262 0 4,0728564 3,23419655 86,18650154 3,434480844 4,1465252 0,07366858
+3,8367546 310303,4057 -0,23625502 0,092135884 0 4,0730095 3,235015541 86,19539048 3,435350553 4,1467546 0,07374498
+3,8367927 310335,4059 -0,2364651 0,092136525 0 4,0732579 3,235834534 86,20427942 3,436220263 4,1467927 0,0735349
+3,8370981 310367,4061 -0,23627412 0,09212824 0 4,0733724 3,236653525 86,21316836 3,437089972 4,1470981 0,07372588
+3,8372319 310399,4063 -0,2364078 0,09213461 0 4,0736399 3,237472516 86,2220573 3,437959681 4,1472319 0,0735922
+3,8374419 310431,4064 -0,23631231 0,092144169 0 4,0737543 3,238291507 86,23094623 3,43882939 4,1474419 0,07368769
+3,837461 310463,4066 -0,23633142 0,092135251 0 4,0737925 3,2391105 86,23983517 3,439699101 4,147461 0,07366858
+3,8376329 310495,4068 -0,23629321 0,092140347 0 4,073926 3,239929493 86,24872411 3,440568812 4,1476329 0,07370679
+3,8377285 310527,407 -0,2363887 0,09213461 0 4,0741172 3,240748484 86,25761305 3,44143852 4,1477285 0,0736113
+3,8378813 310559,4071 -0,23629321 0,092139706 0 4,0741744 3,241567474 86,26650198 3,442308228 4,1478813 0,07370679
+3,8380532 310591,4073 -0,23625502 0,092132062 0 4,0743084 3,242386467 86,27539092 3,443177938 4,1480532 0,07374498
+3,8382442 310623,4075 -0,23631231 0,092133977 0 4,0745564 3,24320546 86,28427986 3,444047649 4,1482442 0,07368769
+3,8383968 310655,4077 -0,23619772 0,092130795 0 4,0745945 3,244024454 86,2931688 3,444917361 4,1483968 0,07380228
+3,8385878 310687,4078 -0,2363887 0,092130147 0 4,0749764 3,244843449 86,30205774 3,445787075 4,1485878 0,0736113
+3,8388362 310719,408 -0,23635051 0,092141613 0 4,0751867 3,245662444 86,31094667 3,446656787 4,1488362 0,07364949
+3,8391607 310751,4082 -0,23629321 0,092129521 0 4,0754538 3,246481436 86,31983561 3,447526497 4,1491607 0,07370679
+3,8389697 310783,4084 -0,23644599 0,092139073 0 4,0754156 3,247300427 86,32872455 3,448396205 4,1489697 0,07355401
+3,8392944 310815,4086 -0,23623593 0,09214098 0 4,0755305 3,248119419 86,33761349 3,449265915 4,1492944 0,07376407
+3,8394091 310847,4087 -0,2363887 0,092137799 0 4,075798 3,248938413 86,34650242 3,450135627 4,1494091 0,0736113
+3,8396192 310879,4089 -0,23627412 0,092130147 0 4,0758934 3,249757406 86,35539136 3,451005339 4,1496192 0,07372588
+3,8397338 310911,4091 -0,23623593 0,092132702 0 4,0759697 3,250576404 86,3642803 3,451875054 4,1497338 0,07376407
+3,8397145 310943,4093 -0,23631231 0,092139073 0 4,0760269 3,251395403 86,37316924 3,452744772 4,1497145 0,07368769
+3,8401349 310975,4094 -0,23636961 0,092141613 0 4,0765047 3,252214403 86,38205818 3,45361449 4,1501349 0,07363039
+3,8401921 311007,4096 -0,23631231 0,092137158 0 4,0765042 3,253033403 86,39094711 3,454484208 4,1501921 0,07368769
+3,8404593 311039,4098 -0,23619772 0,092126973 0 4,0766573 3,253852402 86,39983605 3,455353926 4,1504593 0,07380228
+3,8404212 311071,41 -0,2363887 0,092132062 0 4,0768099 3,254671402 86,40872499 3,456223644 4,1504212 0,0736113
+3,8405931 311103,4101 -0,23625502 0,092131428 0 4,076848 3,255490404 86,41761393 3,457093364 4,1505931 0,07374498
+3,8408031 311135,4103 -0,23631231 0,092137799 0 4,0771155 3,256309404 86,42650287 3,457963083 4,1508031 0,07368769
+3,8409941 311167,4105 -0,23627412 0,09213461 0 4,0772681 3,257128404 86,4353918 3,4588328 4,1509941 0,07372588
+3,8410707 311199,4107 -0,23629321 0,092130147 0 4,077364 3,257947403 86,44428074 3,459702518 4,1510707 0,07370679
+3,8412807 311231,4108 -0,23629321 0,092139073 0 4,0775738 3,258766403 86,45316968 3,460572236 4,1512807 0,07370679
+3,841357 311263,411 -0,23627412 0,092132702 0 4,077631 3,259585402 86,46205862 3,461441954 4,151357 0,07372588
+3,8416817 311295,4112 -0,2363887 0,092139073 0 4,0780706 3,260404402 86,47094755 3,462311672 4,1516817 0,0736113
+3,8418345 311327,4114 -0,2364078 0,092145436 0 4,0782423 3,261223403 86,47983649 3,463181391 4,1518345 0,0735922
+3,8418918 311359,4115 -0,2363887 0,092140347 0 4,0782804 3,262042403 86,48872543 3,464051109 4,1518918 0,0736113
+3,8420637 311391,4117 -0,23635051 0,092142887 0 4,078414 3,262861401 86,49761437 3,464920826 4,1520637 0,07364949
+3,8422356 311423,4119 -0,23625502 0,092137799 0 4,0784907 3,263680401 86,50650331 3,465790543 4,1522356 0,07374498
+3,8423502 311455,4121 -0,23633142 0,092136525 0 4,0786815 3,264499398 86,51539224 3,466660258 4,1523502 0,07366858
+3,8425412 311487,4123 -0,23650329 0,092138432 0 4,0790443 3,265318397 86,52428118 3,467529976 4,1525412 0,07349671
+3,8425603 311519,4124 -0,23636961 0,092133336 0 4,0789299 3,266137398 86,53317012 3,468399695 4,1525603 0,07363039
+3,8428085 311551,4126 -0,23631231 0,092135251 0 4,0791206 3,266956395 86,54205906 3,46926941 4,1528085 0,07368769
+3,8429422 311583,4128 -0,23636961 0,092142262 0 4,0793118 3,267775391 86,55094799 3,470139124 4,1529422 0,07363039
+3,8432095 311615,413 -0,23627412 0,092137799 0 4,0794835 3,268594384 86,55983693 3,471008835 4,1532095 0,07372588
+3,8431332 311647,4131 -0,2363887 0,092133977 0 4,0795221 3,269413375 86,56872587 3,471878543 4,1531332 0,0736113
+3,843286 311679,4133 -0,2364078 0,092130147 0 4,0796938 3,270232366 86,57761481 3,472748252 4,153286 0,0735922
+3,8435152 311711,4135 -0,23625502 0,092143528 0 4,0797701 3,271051359 86,58650375 3,473617963 4,1535152 0,07374498
+3,8436487 311743,4137 -0,23625502 0,092136525 0 4,0799036 3,271870354 86,59539268 3,474487676 4,1536487 0,07374498
+3,8438396 311775,4138 -0,23625502 0,092135251 0 4,0800948 3,272689347 86,60428162 3,475357387 4,1538396 0,07374498
+3,8439734 311807,414 -0,23623593 0,092135251 0 4,0802093 3,273508339 86,61317056 3,476227097 4,1539734 0,07376407
+3,8441644 311839,4142 -0,23636961 0,092137799 0 4,080534 3,274327331 86,6220595 3,477096807 4,1541644 0,07363039
+3,8442981 311871,4144 -0,23623593 0,092142887 0 4,080534 3,275146327 86,63094844 3,477966521 4,1542981 0,07376407
+3,844451 311903,4145 -0,2363887 0,092144169 0 4,0808396 3,275965324 86,63983737 3,478836236 4,154451 0,0736113
+3,8445845 311935,4147 -0,23627412 0,092132062 0 4,0808587 3,276784318 86,64872631 3,479705948 4,1545845 0,07372588
+3,8447373 311967,4149 -0,23636961 0,092133977 0 4,0811071 3,277603309 86,65761525 3,480575657 4,1547373 0,07363039
+3,8448329 311999,4151 -0,23631231 0,092136525 0 4,0811453 3,278422306 86,66650419 3,481445371 4,1548329 0,07368769
+3,8449092 312031,4152 -0,23636961 0,092141613 0 4,0812788 3,279241301 86,67539312 3,482315084 4,1549092 0,07363039
+3,8451767 312063,4154 -0,23619772 0,092137158 0 4,0813746 3,280060295 86,68428206 3,483184796 4,1551767 0,07380228
+3,8453102 312095,4156 -0,23636961 0,092139073 0 4,0816798 3,28087929 86,693171 3,484054509 4,1553102 0,07363039
+3,8453677 312127,4158 -0,23635051 0,09212888 0 4,081718 3,281698285 86,70205994 3,484924222 4,1553677 0,07364949
+3,8455586 312159,416 -0,23627412 0,092137799 0 4,0818329 3,28251728 86,71094888 3,485793935 4,1555586 0,07372588
+3,8457496 312191,4161 -0,23635051 0,092144802 0 4,0820999 3,283336277 86,71983781 3,48666365 4,1557496 0,07364949
+3,845845 312223,4163 -0,2363887 0,092135251 0 4,0822339 3,284155271 86,72872675 3,487533362 4,155845 0,0736113
+3,8459978 312255,4165 -0,23631231 0,09214098 0 4,0823102 3,284974267 86,73761569 3,488403076 4,1559978 0,07368769
+3,8461697 312287,4167 -0,23631231 0,092138432 0 4,0824819 3,285793263 86,74650463 3,48927279 4,1561697 0,07368769
+3,8462269 312319,4168 -0,2364651 0,092144802 0 4,0826921 3,286612259 86,75539356 3,490142504 4,1562269 0,0735349
+3,8463607 312351,417 -0,23619772 0,09212888 0 4,0825586 3,287431257 86,7642825 3,49101222 4,1563607 0,07380228
+3,8463798 312383,4172 -0,23627412 0,092140347 0 4,082654 3,288250255 86,77317144 3,491881936 4,1563798 0,07372588
+3,846628 312415,4174 -0,23615953 0,092137158 0 4,0827875 3,289069248 86,78206038 3,492751647 4,156628 0,07384047
+3,846838 312447,4175 -0,23625502 0,092132702 0 4,0830932 3,28988824 86,79094932 3,493621357 4,156838 0,07374498
+3,8469336 312479,4177 -0,23635051 0,092133977 0 4,0832839 3,290707233 86,79983825 3,494491068 4,1569336 0,07364949
+3,8471055 312511,4179 -0,23623593 0,092132702 0 4,0833416 3,291526226 86,80872719 3,495360779 4,1571055 0,07376407
+3,8473918 312543,4181 -0,23633142 0,092142887 0 4,0837231 3,292345216 86,81761613 3,496230486 4,1573918 0,07366858
+3,8473155 312575,4182 -0,23633142 0,092141613 0 4,0836468 3,293164209 86,82650507 3,497100197 4,1573155 0,07366858
+3,8474874 312607,4184 -0,23633142 0,092135884 0 4,0838189 3,293983201 86,835394 3,497969906 4,1574874 0,07366858
+3,8476021 312639,4186 -0,23614044 0,092138432 0 4,0837426 3,294802195 86,84428294 3,498839619 4,1576021 0,07385956
+3,8478312 312671,4188 -0,23629321 0,092139073 0 4,0841246 3,29562119 86,85317188 3,499709332 4,1578312 0,07370679
+3,8479075 312703,4189 -0,23627412 0,092135884 0 4,0841818 3,296440184 86,86206082 3,500579043 4,1579075 0,07372588
+3,8480604 312735,4191 -0,23631231 0,09214098 0 4,0843725 3,297259174 86,87094976 3,501448751 4,1580604 0,07368769
+3,8482513 312767,4193 -0,23627412 0,092131428 0 4,0845256 3,298078163 86,87983869 3,502318458 4,1582513 0,07372588
+3,8483086 312799,4195 -0,23631231 0,09214098 0 4,084621 3,298897156 86,88872763 3,503188168 4,1583086 0,07368769
+3,8483469 312831,4197 -0,2364078 0,092135884 0 4,0847549 3,299716145 86,89761657 3,504057875 4,1583469 0,0735922
+3,8486905 312863,4198 -0,23636961 0,092139706 0 4,0850601 3,300535133 86,90650551 3,50492758 4,1586905 0,07363039
+3,8489008 312895,42 -0,23633142 0,092132062 0 4,0852323 3,301354121 86,91539445 3,505797287 4,1589008 0,07366858
+3,8489199 312927,4202 -0,23633142 0,092131428 0 4,0852513 3,302173112 86,92428338 3,506666995 4,1589199 0,07366858
+3,8490343 312959,4204 -0,23619772 0,092133336 0 4,0852323 3,302992096 86,93317232 3,507536696 4,1590343 0,07380228
+3,8490534 312991,4205 -0,23627412 0,092131428 0 4,0853276 3,303811079 86,94206126 3,508406396 4,1590534 0,07372588
+3,8493209 313023,4207 -0,23631231 0,092132062 0 4,0856333 3,304630063 86,9509502 3,509276097 4,1593209 0,07368769
+3,849359 313055,4209 -0,2363887 0,09213461 0 4,0857477 3,305449049 86,95983913 3,510145801 4,159359 0,0736113
+3,8496647 313087,4211 -0,23627412 0,092126973 0 4,0859389 3,306268039 86,96872807 3,511015509 4,1596647 0,07372588
+3,8496072 313119,4212 -0,23633142 0,092136525 0 4,0859385 3,30708703 86,97761701 3,511885218 4,1596072 0,07366858
+3,8498173 313151,4214 -0,23627412 0,092131428 0 4,0860915 3,30790602 86,98650595 3,512754925 4,1598173 0,07372588
+3,8497791 313183,4216 -0,23644599 0,092139073 0 4,086225 3,308725011 86,99539489 3,513624633 4,1597791 0,07355401
+3,8502185 313215,4218 -0,23633142 0,092139073 0 4,0865498 3,309543997 87,00428382 3,514494337 4,1602185 0,07366858
+3,8502567 313247,4219 -0,2364078 0,092131428 0 4,0866647 3,310362982 87,01317276 3,515364039 4,1602567 0,0735922
+3,8502758 313279,4221 -0,23623593 0,092136525 0 4,0865116 3,311181968 87,0220617 3,516233743 4,1602758 0,07376407
+3,8504858 313311,4223 -0,23631231 0,092143528 0 4,0867982 3,312000957 87,03095064 3,517103449 4,1604858 0,07368769
+3,8506768 313343,4225 -0,23635051 0,092145436 0 4,0870271 3,31281995 87,03983957 3,51797316 4,1606768 0,07364949
+3,8508105 313375,4226 -0,23627412 0,092137158 0 4,0870848 3,313638945 87,04872851 3,518842873 4,1608105 0,07372588
+3,8509634 313407,4228 -0,23633142 0,092141613 0 4,0872946 3,314457942 87,05761745 3,519712589 4,1609634 0,07366858
+3,851135 313439,423 -0,2364078 0,092140347 0 4,087543 3,315276936 87,06650639 3,5205823 4,161135 0,0735922
+3,8510587 313471,4232 -0,23631231 0,092130147 0 4,0873709 3,316095929 87,07539533 3,521452011 4,1610587 0,07368769
+3,8512306 313503,4234 -0,23636961 0,092130795 0 4,0876002 3,316914924 87,08428426 3,522321724 4,1612306 0,07363039
+3,8513644 313535,4235 -0,23627412 0,092138432 0 4,0876384 3,317733918 87,0931732 3,523191435 4,1613644 0,07372588
+3,8516126 313567,4237 -0,23629321 0,092129521 0 4,0879059 3,318552911 87,10206214 3,524061146 4,1616126 0,07370679
+3,8516316 313599,4239 -0,2364078 0,092131428 0 4,0880394 3,319371904 87,11095108 3,524930858 4,1616316 0,0735922
+3,8518608 313631,4241 -0,2364078 0,092132702 0 4,0882688 3,320190897 87,11984002 3,525800568 4,1618608 0,0735922
+3,8519564 313663,4242 -0,23619772 0,092136525 0 4,0881543 3,321009889 87,12872895 3,526670278 4,1619564 0,07380228
+3,8521473 313695,4244 -0,23636961 0,092133977 0 4,0885172 3,321828879 87,13761789 3,527539986 4,1621473 0,07363039
+3,8521855 313727,4246 -0,23623593 0,092135884 0 4,0884213 3,32264787 87,14650683 3,528409694 4,1621855 0,07376407
+3,8521664 313759,4248 -0,23635051 0,092135251 0 4,0885167 3,323466861 87,15539577 3,529279403 4,1621664 0,07364949
+3,8524146 313791,4249 -0,23621683 0,092132702 0 4,0886316 3,324285853 87,1642847 3,530149113 4,1624146 0,07378317
+3,8524911 313823,4251 -0,23627412 0,092131428 0 4,0887651 3,325104846 87,17317364 3,531018824 4,1624911 0,07372588
+3,8527012 313855,4253 -0,23635051 0,092136525 0 4,0890517 3,325923839 87,18206258 3,531888535 4,1627012 0,07364949
+3,8527203 313887,4255 -0,23636961 0,092130147 0 4,0890899 3,32674283 87,19095152 3,532758244 4,1627203 0,07363039
+3,8528731 313919,4256 -0,23635051 0,092141613 0 4,0892234 3,327561823 87,19984046 3,533627954 4,1628731 0,07364949
+3,8529685 313951,4258 -0,23633142 0,092133977 0 4,0892997 3,328380812 87,20872939 3,534497661 4,1629685 0,07366858
+3,8531404 313983,426 -0,23631231 0,092129521 0 4,0894527 3,329199803 87,21761833 3,535367369 4,1631404 0,07368769
+3,8532741 314015,4262 -0,2364078 0,092137158 0 4,0896821 3,33001879 87,22650727 3,536237074 4,1632741 0,0735922
+3,8532741 314047,4263 -0,2364269 0,092133977 0 4,0897012 3,330837775 87,23539621 3,537106776 4,1632741 0,0735731
+3,8536179 314079,4265 -0,2363887 0,092138432 0 4,0900068 3,331656763 87,24428514 3,537976481 4,1636179 0,0736113
+3,853637 314111,4267 -0,23625502 0,092137158 0 4,0898919 3,332475753 87,25317408 3,538846189 4,163637 0,07374498
+3,8537707 314143,4269 -0,2363887 0,09213461 0 4,0901594 3,333294744 87,26206302 3,539715898 4,1637707 0,0736113
+3,8539424 314175,427 -0,23623593 0,092141613 0 4,0901785 3,334113731 87,27095196 3,540585603 4,1639424 0,07376407
+3,8541527 314207,4272 -0,23627412 0,092138432 0 4,0904269 3,334932719 87,2798409 3,541455308 4,1641527 0,07372588
+3,8540189 314239,4274 -0,23633142 0,092127606 0 4,0903502 3,335751708 87,28872983 3,542325015 4,1640189 0,07366858
+3,8543053 314271,4276 -0,23625502 0,092132062 0 4,0905604 3,336570695 87,29761877 3,543194719 4,1643053 0,07374498
+3,854248 314303,4278 -0,23633142 0,092141613 0 4,0905795 3,337389682 87,30650771 3,544064423 4,164248 0,07366858
+3,8544199 314335,4279 -0,2364651 0,092133977 0 4,0908852 3,338208668 87,31539665 3,544934127 4,1644199 0,0735349
+3,8545537 314367,4281 -0,23625502 0,092132702 0 4,0908089 3,339027657 87,32428559 3,545803834 4,1645537 0,07374498
+3,8547065 314399,4283 -0,23633142 0,092137158 0 4,0910378 3,339846647 87,33317452 3,546673542 4,1647065 0,07366858
+3,85484 314431,4285 -0,23636961 0,09213461 0 4,0912094 3,340665636 87,34206346 3,547543248 4,16484 0,07363039
+3,8549356 314463,4286 -0,2364651 0,092131428 0 4,0914006 3,341484624 87,3509524 3,548412954 4,1649356 0,0735349
+3,8549356 314495,4288 -0,23631231 0,092130795 0 4,091248 3,342303613 87,35984134 3,54928266 4,1649356 0,07368769
+3,8551648 314527,429 -0,23636961 0,092137158 0 4,0915346 3,343122601 87,36873027 3,550152365 4,1651648 0,07363039
+3,8553367 314559,4292 -0,2364269 0,092139073 0 4,0917635 3,34394159 87,37761921 3,551022072 4,1653367 0,0735731
+3,855413 314591,4293 -0,23625502 0,092132702 0 4,0916681 3,34476058 87,38650815 3,55189178 4,165413 0,07374498
+3,8555086 314623,4295 -0,23633142 0,092140347 0 4,0918398 3,34557957 87,39539709 3,552761488 4,1655086 0,07366858
+3,8557186 314655,4297 -0,2364078 0,092135251 0 4,0921264 3,346398563 87,40428603 3,553631198 4,1657186 0,0735922
+3,8558333 314687,4299 -0,2363887 0,092139706 0 4,0922222 3,347217557 87,41317496 3,55450091 4,1658333 0,0736113
+3,8558333 314719,43 -0,2364651 0,092138432 0 4,0922985 3,348036551 87,4220639 3,555370622 4,1658333 0,0735349
+3,8559668 314751,4302 -0,23627412 0,092137799 0 4,0922408 3,348855548 87,43095284 3,556240337 4,1659668 0,07372588
+3,8561769 314783,4304 -0,23631231 0,09213461 0 4,0924892 3,349674544 87,43984178 3,557110051 4,1661769 0,07368769
+3,8562152 314815,4306 -0,23656058 0,092137158 0 4,0927758 3,350493539 87,44873071 3,557979764 4,1662152 0,07343942
+3,8562534 314847,4307 -0,23621683 0,092135884 0 4,0924702 3,351312532 87,45761965 3,558849475 4,1662534 0,07378317
+3,8563871 314879,4309 -0,2364651 0,092139706 0 4,0928521 3,352131525 87,46650859 3,559719186 4,1663871 0,0735349
+3,8563871 314911,4311 -0,2364651 0,092135884 0 4,0928521 3,352950517 87,47539753 3,560588896 4,1663871 0,0735349
+3,8566544 314943,4313 -0,23657969 0,092142887 0 4,0932341 3,353769509 87,48428647 3,561458606 4,1666544 0,07342031
+3,8566735 314975,4315 -0,23635051 0,092138432 0 4,0930238 3,354588503 87,4931754 3,562328317 4,1666735 0,07364949
+3,8567691 315007,4316 -0,23636961 0,092139073 0 4,0931387 3,355407495 87,50206434 3,563198027 4,1667691 0,07363039
+3,8569601 315039,4318 -0,23627412 0,092131428 0 4,0932341 3,356226488 87,51095328 3,564067738 4,1669601 0,07372588
+3,8570745 315071,432 -0,23644599 0,092135884 0 4,0935206 3,35704548 87,51984222 3,564937448 4,1670745 0,07355401
+3,8572845 315103,4322 -0,23636961 0,092135251 0 4,0936542 3,357864474 87,52873116 3,565807159 4,1672845 0,07363039
+3,8573611 315135,4323 -0,23619772 0,092130795 0 4,0935588 3,358683468 87,53762009 3,566676871 4,1673611 0,07380228
+3,8572655 315167,4325 -0,2364269 0,092127606 0 4,0936923 3,359502458 87,54650903 3,567546579 4,1672655 0,0735731
+3,857533 315199,4327 -0,2364269 0,092137799 0 4,0939598 3,360321447 87,55539797 3,568416285 4,167533 0,0735731
+3,8574564 315231,4329 -0,2364269 0,092132702 0 4,0938835 3,361140433 87,56428691 3,569285989 4,1674564 0,0735731
+3,8578193 315263,433 -0,2364269 0,092131428 0 4,0942464 3,36195942 87,57317584 3,570155694 4,1678193 0,0735731
+3,8579149 315295,4332 -0,23654148 0,092133336 0 4,0944562 3,362778407 87,58206478 3,571025398 4,1679149 0,07345852
+3,8578959 315327,4334 -0,23619772 0,092140347 0 4,0940938 3,363597395 87,59095372 3,571895103 4,1678959 0,07380228
+3,8580678 315359,4336 -0,2364651 0,092136525 0 4,094533 3,364416382 87,59984266 3,572764808 4,1680678 0,0735349
+3,8581822 315391,4337 -0,23636961 0,09212824 0 4,094552 3,365235369 87,6087316 3,573634513 4,1681822 0,07363039
+3,8583159 315423,4339 -0,2364078 0,09212824 0 4,0947237 3,366054356 87,61762053 3,574504217 4,1683159 0,0735922
+3,8584113 315455,4341 -0,23633142 0,092131428 0 4,0947428 3,366873344 87,62650947 3,575373922 4,1684113 0,07366858
+3,8584304 315487,4343 -0,23625502 0,09213461 0 4,0946856 3,367692334 87,63539841 3,57624363 4,1684304 0,07374498
+3,8586407 315519,4344 -0,23627412 0,092135251 0 4,0949149 3,368511326 87,64428735 3,577113339 4,1686407 0,07372588
+3,8586597 315551,4346 -0,23627412 0,092135884 0 4,094934 3,369330316 87,65317628 3,577983048 4,1686597 0,07372588
+3,8585641 315583,4348 -0,2364078 0,092131428 0 4,0949721 3,370149306 87,66206522 3,578852755 4,1685641 0,0735922
+3,8587551 315615,435 -0,23633142 0,092132702 0 4,0950866 3,370968296 87,67095416 3,579722462 4,1687551 0,07366858
+3,8588889 315647,4352 -0,23631231 0,092133977 0 4,095201 3,371787284 87,6798431 3,580592168 4,1688889 0,07368769
+3,859118 315679,4353 -0,2363887 0,092133977 0 4,0955067 3,372606274 87,68873204 3,581461876 4,169118 0,0736113
+3,8591752 315711,4355 -0,2364078 0,092135251 0 4,095583 3,373425262 87,69762097 3,582331581 4,1691752 0,0735922
+3,8592517 315743,4357 -0,2364651 0,092144802 0 4,095717 3,374244252 87,70650991 3,583201289 4,1692517 0,0735349
+3,8592899 315775,4359 -0,2364651 0,092135251 0 4,0957551 3,375063241 87,71539885 3,584070996 4,1692899 0,0735349
+3,8595572 315807,436 -0,23636961 0,092135884 0 4,0959268 3,375882229 87,72428779 3,584940701 4,1695572 0,07363039
+3,8593662 315839,4362 -0,23627412 0,092144802 0 4,0956402 3,376701219 87,73317672 3,585810409 4,1693662 0,07372588
+3,8595572 315871,4364 -0,23648418 0,092139073 0 4,0960412 3,377520211 87,74206566 3,586680119 4,1695572 0,07351582
+3,8596909 315903,4366 -0,23635051 0,09212888 0 4,0960412 3,378339202 87,7509546 3,587549827 4,1696909 0,07364949
+3,8598628 315935,4367 -0,23644599 0,092135251 0 4,0963087 3,379158191 87,75984354 3,588419534 4,1698628 0,07355401
+3,8598437 315967,4369 -0,23652239 0,092132062 0 4,0963659 3,37997718 87,76873248 3,58928924 4,1698437 0,07347761
+3,8600729 315999,4371 -0,23656058 0,092139706 0 4,0966334 3,380796171 87,77762141 3,590158949 4,1700729 0,07343942
+3,860111 316031,4373 -0,23656058 0,092137158 0 4,0966716 3,381615164 87,78651035 3,59102866 4,170111 0,07343942
+3,8602638 316063,4374 -0,23644599 0,09214098 0 4,0967097 3,382434159 87,79539929 3,591898373 4,1702638 0,07355401
+3,8602829 316095,4376 -0,23654148 0,092136525 0 4,0968242 3,383253152 87,80428823 3,592768084 4,1702829 0,07345852
+3,8604548 316127,4378 -0,23636961 0,092135884 0 4,0968246 3,384072145 87,81317717 3,593637794 4,1704548 0,07363039
+3,8605123 316159,438 -0,2364269 0,092132062 0 4,0969391 3,384891136 87,8220661 3,594507503 4,1705123 0,0735731
+3,8607032 316191,4381 -0,2364269 0,092144169 0 4,0971303 3,385710129 87,83095504 3,595377214 4,1707032 0,0735731
+3,8606842 316223,4383 -0,23629321 0,092135251 0 4,0969772 3,38652912 87,83984398 3,596246923 4,1706842 0,07370679
+3,8608558 316255,4385 -0,23631231 0,092139706 0 4,097168 3,387348114 87,84873292 3,597116634 4,1708558 0,07368769
+3,8609514 316287,4387 -0,23648418 0,092136525 0 4,0974355 3,388167109 87,85762185 3,597986348 4,1709514 0,07351582
+3,8609896 316319,4389 -0,2364078 0,092133336 0 4,0973973 3,388986106 87,86651079 3,598856063 4,1709896 0,0735922
+3,8611996 316351,439 -0,23635051 0,092137158 0 4,0975499 3,3898051 87,87539973 3,599725774 4,1711996 0,07364949
+3,8612761 316383,4392 -0,2364078 0,092139073 0 4,0976839 3,390624088 87,88428867 3,60059548 4,1712761 0,0735922
+3,8612952 316415,4394 -0,2364078 0,092140347 0 4,097703 3,391443075 87,89317761 3,601465185 4,1712952 0,0735922
+3,8613334 316447,4396 -0,2364078 0,092137158 0 4,0977411 3,392262064 87,90206654 3,602334891 4,1713334 0,0735922
+3,8613334 316479,4397 -0,2363887 0,092142262 0 4,0977221 3,393081053 87,91095548 3,603204598 4,1713334 0,0736113
+3,8616006 316511,4399 -0,2363887 0,092133336 0 4,0979896 3,393900044 87,91984442 3,604074307 4,1716006 0,0736113
+3,8615434 316543,4401 -0,23629321 0,09214098 0 4,0978365 3,394719037 87,92873336 3,604944018 4,1715434 0,07370679
+3,8617344 316575,4403 -0,23635051 0,092133977 0 4,0980849 3,395538031 87,93762229 3,605813729 4,1717344 0,07364949
+3,8617916 316607,4404 -0,23650329 0,092135884 0 4,0982947 3,396357023 87,94651123 3,606683439 4,1717916 0,07349671
+3,8618681 316639,4406 -0,23631231 0,092141613 0 4,0981803 3,397176015 87,95540017 3,607553149 4,1718681 0,07368769
+3,86204 316671,4408 -0,2364078 0,092139706 0 4,0984478 3,397995006 87,96428911 3,608422858 4,17204 0,0735922
+3,8621354 316703,441 -0,2364078 0,092135884 0 4,0985432 3,398813997 87,97317805 3,609292567 4,1721354 0,0735922
+3,8620019 316735,4411 -0,2363887 0,092137799 0 4,0983906 3,399632989 87,98206698 3,610162276 4,1720019 0,0736113
+3,8622119 316767,4413 -0,2364651 0,092133977 0 4,0986772 3,40045198 87,99095592 3,611031985 4,1722119 0,0735349
+3,8624411 316799,4415 -0,2363887 0,092132702 0 4,0988297 3,401270972 87,99984486 3,611901694 4,1724411 0,0736113
+3,8624029 316831,4417 -0,2364269 0,09214098 0 4,0988297 3,402089963 88,0087338 3,612771403 4,1724029 0,0735731
+3,8624983 316863,4418 -0,23648418 0,09213461 0 4,0989823 3,402908953 88,01762274 3,613641111 4,1724983 0,07351582
+3,8625939 316895,442 -0,23644599 0,092135251 0 4,09904 3,403727942 88,02651167 3,614510817 4,1725939 0,07355401
+3,8627274 316927,4422 -0,23625502 0,092135884 0 4,0989823 3,404546929 88,03540061 3,615380521 4,1727274 0,07374498
+3,8628993 316959,4424 -0,23650329 0,092136525 0 4,0994024 3,405365917 88,04428955 3,616250227 4,1728993 0,07349671
+3,8628993 316991,4426 -0,23635051 0,092125066 0 4,0992498 3,406184905 88,05317849 3,617119933 4,1728993 0,07364949
+3,8630521 317023,4427 -0,2364269 0,092132702 0 4,0994792 3,407003895 88,06206742 3,617989641 4,1730521 0,0735731
+3,863205 317055,4429 -0,23648418 0,092139073 0 4,099689 3,407822887 88,07095636 3,61885935 4,173205 0,07351582
+3,8631859 317087,4431 -0,23636961 0,092142887 0 4,0995555 3,408641882 88,0798453 3,619729063 4,1731859 0,07363039
+3,863205 317119,4433 -0,23633142 0,092139706 0 4,0995364 3,409460876 88,08873424 3,620598775 4,173205 0,07366858
+3,8631859 317151,4434 -0,2364269 0,092132062 0 4,0996127 3,410279872 88,09762318 3,621468489 4,1731859 0,0735731
+3,8633387 317183,4436 -0,2363887 0,092138432 0 4,0997276 3,411098868 88,10651211 3,622338203 4,1733387 0,0736113
+3,8634915 317215,4438 -0,23636961 0,092142887 0 4,0998611 3,411917863 88,11540105 3,623207916 4,1734915 0,07363039
+3,8634722 317247,444 -0,2364078 0,092137158 0 4,0998802 3,412736857 88,12428999 3,624077628 4,1734722 0,0735922
+3,8636441 317279,4441 -0,23648418 0,092136525 0 4,1001282 3,413555855 88,13317893 3,624947344 4,1736441 0,07351582
+3,8636632 317311,4443 -0,2364269 0,092137799 0 4,10009 3,414374852 88,14206786 3,625817059 4,1736632 0,0735731
+3,8638735 317343,4445 -0,23654148 0,092144169 0 4,1004148 3,415193847 88,1509568 3,626686772 4,1738735 0,07345852
+3,8637779 317375,4447 -0,23644599 0,092138432 0 4,100224 3,416012843 88,15984574 3,627556486 4,1737779 0,07355401
+3,8640261 317407,4448 -0,2363887 0,092132702 0 4,1004148 3,416831836 88,16873468 3,628426197 4,1740261 0,0736113
+3,8640835 317439,445 -0,23661788 0,092129521 0 4,1007013 3,417650826 88,17762362 3,629295904 4,1740835 0,07338212
+3,8641217 317471,4452 -0,23644599 0,09212824 0 4,1005678 3,418469817 88,18651255 3,630165614 4,1741217 0,07355401
+3,8642936 317503,4454 -0,23636961 0,092137799 0 4,1006632 3,419288809 88,19540149 3,631035323 4,1742936 0,07363039
+3,8643126 317535,4455 -0,2364651 0,09213461 0 4,1007776 3,420107799 88,20429043 3,631905031 4,1743126 0,0735349
+3,8644464 317567,4457 -0,2364269 0,092147991 0 4,1008735 3,420926793 88,21317937 3,632774742 4,1744464 0,0735731
+3,8645608 317599,4459 -0,23635051 0,092135884 0 4,1009111 3,42174579 88,22206831 3,633644458 4,1745608 0,07364949
+3,8644464 317631,4461 -0,2363887 0,092139706 0 4,1008353 3,422564786 88,23095724 3,634514172 4,1744464 0,0736113
+3,8645608 317663,4463 -0,23625502 0,092133336 0 4,1008158 3,42338378 88,23984618 3,635383884 4,1745608 0,07374498
+3,8647709 317695,4464 -0,2364269 0,092133977 0 4,1011977 3,424202774 88,24873512 3,636253596 4,1747709 0,0735731
+3,8647518 317727,4466 -0,23652239 0,092136525 0 4,101274 3,425021769 88,25762406 3,637123308 4,1747518 0,07347761
+3,8649237 317759,4468 -0,23648418 0,092136525 0 4,101408 3,425840763 88,26651299 3,637993021 4,1749237 0,07351582
+3,8649428 317791,447 -0,23656058 0,092138432 0 4,1015034 3,426659758 88,27540193 3,638862734 4,1749428 0,07343942
+3,8651528 317823,4471 -0,2364078 0,092144802 0 4,1015606 3,427478753 88,28429087 3,639732446 4,1751528 0,0735922
+3,8652103 317855,4473 -0,23629321 0,092137799 0 4,1015034 3,428297745 88,29317981 3,640602156 4,1752103 0,07370679
+3,8651912 317887,4475 -0,23656058 0,092135251 0 4,1017518 3,429116738 88,30206875 3,641471867 4,1751912 0,07343942
+3,8652103 317919,4477 -0,2364078 0,092141613 0 4,1016183 3,429935732 88,31095768 3,642341579 4,1752103 0,0735922
+3,8652866 317951,4478 -0,23656058 0,092138432 0 4,1018472 3,430754724 88,31984662 3,643211289 4,1752866 0,07343942
+3,8656685 317983,448 -0,2364269 0,092135251 0 4,1020956 3,431573719 88,32873556 3,644081002 4,1756685 0,0735731
+3,8656113 318015,4482 -0,23654148 0,092130147 0 4,1021528 3,432392711 88,3376245 3,644950712 4,1756113 0,07345852
+3,8656495 318047,4484 -0,2363887 0,092132702 0 4,1020384 3,433211703 88,34651343 3,645820421 4,1756495 0,0736113
+3,8656113 318079,4485 -0,2364269 0,092142887 0 4,1020384 3,434030694 88,35540237 3,64669013 4,1756113 0,0735731
+3,8658023 318111,4487 -0,23657969 0,092130147 0 4,1023822 3,434849685 88,36429131 3,647559839 4,1758023 0,07342031
+3,8658595 318143,4489 -0,23648418 0,092131428 0 4,1023436 3,435668681 88,37318025 3,648429552 4,1758595 0,07351582
+3,8658977 318175,4491 -0,23654148 0,092132062 0 4,1024389 3,436487673 88,38206919 3,649299263 4,1758977 0,07345852
+3,8660505 318207,4492 -0,2364269 0,092137158 0 4,1024776 3,437306664 88,39095812 3,650168971 4,1760505 0,0735731
+3,8660123 318239,4494 -0,2363887 0,092136525 0 4,1024013 3,438125657 88,39984706 3,651038682 4,1760123 0,0736113
+3,8661079 318271,4496 -0,23648418 0,092133336 0 4,102592 3,438944651 88,408736 3,651908394 4,1761079 0,07351582
+3,8662033 318303,4498 -0,2364269 0,092132702 0 4,1026301 3,439763647 88,41762494 3,652778108 4,1762033 0,0735731
+3,8663371 318335,45 -0,23635051 0,092141613 0 4,1026874 3,440582643 88,42651388 3,653647821 4,1763371 0,07364949
+3,8663752 318367,4501 -0,23654148 0,092133336 0 4,1029167 3,441401639 88,43540281 3,654517536 4,1763752 0,07345852
+3,8663943 318399,4503 -0,2364651 0,092131428 0 4,1028595 3,442220636 88,44429175 3,65538725 4,1763943 0,0735349
+3,8665662 318431,4505 -0,2363887 0,09213461 0 4,1029549 3,443039628 88,45318069 3,656256961 4,1765662 0,0736113
+3,8665471 318463,4507 -0,23633142 0,09212888 0 4,1028786 3,443858623 88,46206963 3,657126674 4,1765471 0,07366858
+3,8666425 318495,4508 -0,2363887 0,092136525 0 4,1030312 3,444677618 88,47095856 3,657996387 4,1766425 0,0736113
+3,866719 318527,451 -0,23652239 0,092136525 0 4,1032414 3,445496609 88,4798475 3,658866096 4,176719 0,07347761
+3,8666809 318559,4512 -0,2364651 0,092133336 0 4,1031461 3,446315601 88,48873644 3,659735805 4,1766809 0,0735349
+3,8668334 318591,4514 -0,2364269 0,092133977 0 4,1032605 3,447134593 88,49762538 3,660605515 4,1768334 0,0735731
+3,8668909 318623,4515 -0,2364078 0,09212888 0 4,1032987 3,447953586 88,50651432 3,661475226 4,1768909 0,0735922
+3,8669863 318655,4517 -0,23627412 0,092137158 0 4,1032605 3,44877258 88,51540325 3,662344937 4,1769863 0,07372588
+3,8672347 318687,4519 -0,23654148 0,092142887 0 4,103776 3,449591574 88,52429219 3,663214649 4,1772347 0,07345852
+3,8670053 318719,4521 -0,23635051 0,092142887 0 4,1033559 3,45041057 88,53318113 3,664084363 4,1770053 0,07364949
+3,8672347 318751,4522 -0,23652239 0,092140347 0 4,1037569 3,451229567 88,54207007 3,664954078 4,1772347 0,07347761
+3,8673491 318783,4524 -0,2364269 0,09213461 0 4,103776 3,452048561 88,550959 3,66582379 4,1773491 0,0735731
+3,8673682 318815,4526 -0,23644599 0,092144169 0 4,1038141 3,452867558 88,55984794 3,666693506 4,1773682 0,07355401
+3,8676548 318847,4528 -0,2364269 0,092142262 0 4,1040816 3,453686558 88,56873688 3,667563223 4,1776548 0,0735731
+3,867502 318879,4529 -0,2364269 0,092130795 0 4,103929 3,454505555 88,57762582 3,668432939 4,177502 0,0735731
+3,8675973 318911,4531 -0,2364078 0,092137799 0 4,1040053 3,455324552 88,58651476 3,669302654 4,1775973 0,0735922
+3,867712 318943,4533 -0,23648418 0,092135251 0 4,1041961 3,45614355 88,59540369 3,67017237 4,177712 0,07351582
+3,8677692 318975,4535 -0,23657969 0,09213461 0 4,1043491 3,456962547 88,60429263 3,671042085 4,1777692 0,07342031
+3,8679221 319007,4536 -0,23636961 0,092140347 0 4,1042919 3,457781546 88,61318157 3,671911802 4,1779221 0,07363039
+3,867903 319039,4538 -0,2364651 0,092135884 0 4,1043682 3,458600544 88,62207051 3,672781518 4,177903 0,0735349
+3,8679411 319071,454 -0,23657969 0,092136525 0 4,1045208 3,45941954 88,63095944 3,673651233 4,1779411 0,07342031
+3,8680558 319103,4542 -0,2364269 0,092135251 0 4,1044827 3,460238536 88,63984838 3,674520946 4,1780558 0,0735731
+3,8681705 319135,4544 -0,23657969 0,092140347 0 4,1047502 3,46105753 88,64873732 3,675390658 4,1781705 0,07342031
+3,8680749 319167,4545 -0,23644599 0,092135884 0 4,1045208 3,461876525 88,65762626 3,676260371 4,1780749 0,07355401
+3,8682659 319199,4547 -0,2364078 0,092142262 0 4,1046739 3,462695518 88,6665152 3,677130082 4,1782659 0,0735922
+3,8684759 319231,4549 -0,23652239 0,09212888 0 4,1049981 3,463514514 88,67540413 3,677999796 4,1784759 0,07347761
+3,868495 319263,4551 -0,23633142 0,092132062 0 4,1048265 3,464333508 88,68429307 3,678869508 4,178495 0,07366858
+3,8684759 319295,4552 -0,23648418 0,092138432 0 4,10496 3,465152502 88,69318201 3,67973922 4,1784759 0,07351582
+3,8687434 319327,4554 -0,23650329 0,092135251 0 4,1052465 3,465971497 88,70207095 3,680608933 4,1787434 0,07349671
+3,8688006 319359,4556 -0,23648418 0,092137799 0 4,1052847 3,466790494 88,71095989 3,681478648 4,1788006 0,07351582
+3,868705 319391,4558 -0,23654148 0,09213461 0 4,1052465 3,467609489 88,71984882 3,682348361 4,178705 0,07345852
+3,8687434 319423,4559 -0,23654148 0,092136525 0 4,1052847 3,468428487 88,72873776 3,683218077 4,1787434 0,07345852
+3,8688006 319455,4561 -0,23657969 0,092137158 0 4,1053805 3,469247483 88,7376267 3,684087791 4,1788006 0,07342031
+3,8689535 319487,4563 -0,2364269 0,09213461 0 4,1053805 3,470066476 88,74651564 3,684957502 4,1789535 0,0735731
+3,8689153 319519,4565 -0,2364269 0,092130795 0 4,1053424 3,470885472 88,75540457 3,685827216 4,1789153 0,0735731
+3,8690488 319551,4566 -0,23652239 0,092135884 0 4,1055713 3,471704465 88,76429351 3,686696927 4,1790488 0,07347761
+3,8690298 319583,4568 -0,23652239 0,092130795 0 4,1055522 3,472523462 88,77318245 3,687566642 4,1790298 0,07347761
+3,8693545 319615,457 -0,23656058 0,09214098 0 4,1059151 3,473342459 88,78207139 3,688436357 4,1793545 0,07343942
+3,8691444 319647,4572 -0,23661788 0,092141613 0 4,1057625 3,474161456 88,79096033 3,689306072 4,1791444 0,07338212
+3,8693926 319679,4573 -0,2364651 0,092129521 0 4,1058578 3,474980451 88,79984926 3,690175785 4,1793926 0,0735349
+3,8693163 319711,4575 -0,23654148 0,092138432 0 4,1058578 3,475799445 88,8087382 3,691045497 4,1793163 0,07345852
+3,8694882 319743,4577 -0,23654148 0,092140347 0 4,1060295 3,476618438 88,81762714 3,691915208 4,1794882 0,07345852
+3,8695645 319775,4579 -0,23667517 0,092142262 0 4,1062398 3,477437432 88,82651608 3,692784919 4,1795645 0,07332483
+3,8696601 319807,4581 -0,23665607 0,09213461 0 4,1063161 3,478256426 88,83540501 3,693654631 4,1796601 0,07334393
+3,8696408 319839,4582 -0,23659877 0,092139073 0 4,1062398 3,479075421 88,84429395 3,694524344 4,1796408 0,07340123
+3,8698511 319871,4584 -0,23661788 0,09213461 0 4,1064692 3,479894416 88,85318289 3,695394057 4,1798511 0,07338212
+3,8698702 319903,4586 -0,23656058 0,092137158 0 4,106431 3,480713411 88,86207183 3,69626377 4,1798702 0,07343942
+3,8699465 319935,4588 -0,23656058 0,092137799 0 4,1065073 3,481532408 88,87096077 3,697133485 4,1799465 0,07343942
+3,8700421 319967,4589 -0,23648418 0,092135251 0 4,1065264 3,482351404 88,8798497 3,698003199 4,1800421 0,07351582
+3,8701375 319999,4591 -0,23671336 0,092137799 0 4,1068506 3,483170401 88,88873864 3,698872915 4,1801375 0,07328664
+3,8702137 320031,4593 -0,23650329 0,092139073 0 4,1067171 3,483989403 88,89762758 3,699742635 4,1802137 0,07349671
+3,8700228 320063,4595 -0,23661788 0,092139073 0 4,1066408 3,484808405 88,90651652 3,700612356 4,1800228 0,07338212
+3,8702331 320095,4596 -0,23654148 0,092137158 0 4,1067743 3,485627407 88,91540546 3,701482075 4,1802331 0,07345852
+3,8702331 320127,4598 -0,23650329 0,092141613 0 4,1067362 3,486446406 88,92429439 3,702351793 4,1802331 0,07349671
+3,8703666 320159,46 -0,23675156 0,092127606 0 4,1071181 3,487265408 88,93318333 3,703221513 4,1803666 0,07324844
+3,870424 320191,4602 -0,23659877 0,09214098 0 4,1070228 3,488084406 88,94207227 3,70409123 4,180424 0,07340123
+3,870615 320223,4603 -0,23656058 0,092132062 0 4,1071758 3,488903404 88,95096121 3,704960946 4,180615 0,07343942
+3,8707104 320255,4605 -0,23650329 0,092138432 0 4,1072135 3,4897224 88,95985014 3,70583066 4,1807104 0,07349671
+3,8705959 320287,4607 -0,23661788 0,092142887 0 4,107214 3,490541398 88,96873908 3,706700376 4,1805959 0,07338212
+3,8707485 320319,4609 -0,23650329 0,092132702 0 4,1072516 3,491360395 88,97762802 3,707570091 4,1807485 0,07349671
+3,870806 320351,461 -0,23650329 0,09213461 0 4,1073093 3,492179394 88,98651696 3,708439808 4,180806 0,07349671
+3,8708632 320383,4612 -0,23650329 0,092140347 0 4,1073666 3,492998393 88,9954059 3,709309526 4,1808632 0,07349671
+3,8709779 320415,4614 -0,23656058 0,092133977 0 4,1075382 3,493817394 89,00429483 3,710179244 4,1809779 0,07343942
+3,8710542 320447,4616 -0,23663697 0,092146717 0 4,1076913 3,494636392 89,01318377 3,71104896 4,1810542 0,07336303
+3,870997 320479,4618 -0,23661788 0,092130795 0 4,107615 3,495455389 89,02207271 3,711918676 4,180997 0,07338212
+3,8711305 320511,4619 -0,23675156 0,092135884 0 4,107882 3,496274384 89,03096165 3,712788388 4,1811305 0,07324844
+3,8711495 320543,4621 -0,23650329 0,09214098 0 4,1076527 3,497093379 89,03985058 3,713658101 4,1811495 0,07349671
+3,8713405 320575,4623 -0,23667517 0,092140347 0 4,1080155 3,497912373 89,04873952 3,714527813 4,1813405 0,07332483
+3,8713405 320607,4625 -0,23663697 0,092132702 0 4,1079774 3,498731367 89,05762846 3,715397525 4,1813405 0,07336303
+3,8714361 320639,4626 -0,23644599 0,092132062 0 4,107882 3,499550362 89,0665174 3,716267238 4,1814361 0,07355401
+3,871417 320671,4628 -0,23677066 0,092140347 0 4,1081877 3,500369356 89,07540634 3,71713695 4,181417 0,07322934
+3,8715317 320703,463 -0,23671336 0,09212888 0 4,1082449 3,501188351 89,08429527 3,718006663 4,1815317 0,07328664
+3,8716843 320735,4632 -0,23650329 0,092138432 0 4,1081877 3,502007346 89,09318421 3,718876376 4,1816843 0,07349671
+3,8716843 320767,4633 -0,23659877 0,09213461 0 4,108283 3,502826338 89,10207315 3,719746086 4,1816843 0,07340123
+3,871799 320799,4635 -0,23659877 0,092132062 0 4,108398 3,503645334 89,11096209 3,7206158 4,181799 0,07340123
+3,8718181 320831,4637 -0,23650329 0,092125066 0 4,1083212 3,50446433 89,11985103 3,721485514 4,1818181 0,07349671
+3,8719518 320863,4639 -0,23652239 0,092142262 0 4,1084743 3,505283324 89,12873996 3,722355226 4,1819518 0,07347761
+3,8718944 320895,464 -0,23656058 0,09212888 0 4,1084547 3,50610232 89,1376289 3,72322494 4,1818944 0,07343942
+3,8721046 320927,4642 -0,23657969 0,092130147 0 4,1086845 3,506921315 89,14651784 3,724094653 4,1821046 0,07342031
+3,8721428 320959,4644 -0,23657969 0,092130795 0 4,1087227 3,507740309 89,15540678 3,724964364 4,1821428 0,07342031
+3,8721237 320991,4646 -0,23671336 0,092135884 0 4,1088371 3,508559304 89,16429571 3,725834077 4,1821237 0,07328664
+3,8722382 321023,4647 -0,23667517 0,092132062 0 4,1089134 3,509378299 89,17318465 3,726703791 4,1822382 0,07332483
+3,8722572 321055,4649 -0,23654148 0,092139706 0 4,1087985 3,510197296 89,18207359 3,727573506 4,1822572 0,07345852
+3,8723338 321087,4651 -0,23667517 0,092138432 0 4,1090088 3,511016293 89,19096253 3,72844322 4,1823338 0,07332483
+3,8723528 321119,4653 -0,23673245 0,092137799 0 4,1090851 3,511835291 89,19985147 3,729312937 4,1823528 0,07326755
+3,8726776 321151,4655 -0,23659877 0,092140347 0 4,1092763 3,512654289 89,2087404 3,730182653 4,1826776 0,07340123
+3,872582 321183,4656 -0,23669426 0,092130795 0 4,1092763 3,513473286 89,21762934 3,731052368 4,182582 0,07330574
+3,8725438 321215,4658 -0,23663697 0,092135884 0 4,1091809 3,514292282 89,22651828 3,731922082 4,1825438 0,07336303
+3,8727348 321247,466 -0,23669426 0,092136525 0 4,1094289 3,515111278 89,23540722 3,732791796 4,1827348 0,07330574
+3,8727157 321279,4662 -0,23652239 0,092139706 0 4,1092381 3,51593027 89,24429615 3,733661506 4,1827157 0,07347761
+3,8728302 321311,4663 -0,23665607 0,092137799 0 4,1094861 3,516749262 89,25318509 3,734531215 4,1828302 0,07334393
+3,8728876 321343,4665 -0,23665607 0,092135251 0 4,1095438 3,51756825 89,26207403 3,735400922 4,1828876 0,07334393
+3,8730786 321375,4667 -0,23650329 0,092139073 0 4,1095819 3,518387239 89,27096297 3,736270628 4,1830786 0,07349671
+3,8730595 321407,4669 -0,23650329 0,092137799 0 4,1095629 3,519206232 89,27985191 3,737140339 4,1830595 0,07349671
+3,8732314 321439,467 -0,23657969 0,092139706 0 4,1098113 3,520025223 89,28874084 3,738010047 4,1832314 0,07342031
+3,8731167 321471,4672 -0,23663697 0,092138432 0 4,1097536 3,520844212 89,29762978 3,738879753 4,1831167 0,07336303
+3,873174 321503,4674 -0,23650329 0,092137158 0 4,1096773 3,521663203 89,30651872 3,739749463 4,183174 0,07349671
+3,8732314 321535,4676 -0,23665607 0,092133977 0 4,1098876 3,522482196 89,31540766 3,740619174 4,1832314 0,07334393
+3,8734605 321567,4677 -0,2364651 0,092135884 0 4,1099257 3,523301188 89,3242966 3,741488883 4,1834605 0,0735349
+3,8734987 321599,4679 -0,23663697 0,092130795 0 4,1101356 3,524120177 89,33318553 3,74235859 4,1834987 0,07336303
+3,8734796 321631,4681 -0,23656058 0,092132062 0 4,1100402 3,524939166 89,34207447 3,743228297 4,1834796 0,07343942
+3,8735368 321663,4683 -0,23665607 0,092138432 0 4,1101928 3,525758157 89,35096341 3,744098006 4,1835368 0,07334393
+3,8737659 321695,4684 -0,23652239 0,092135251 0 4,1102881 3,526577148 89,35985235 3,744967714 4,1837659 0,07347761
+3,8737087 321727,4686 -0,23661788 0,092133336 0 4,1103268 3,527396139 89,36874128 3,745837422 4,1837087 0,07338212
+3,8737278 321759,4688 -0,23663697 0,092137799 0 4,1103649 3,528215126 89,37763022 3,746707127 4,1837278 0,07336303
+3,8738234 321791,469 -0,23663697 0,09214098 0 4,1104603 3,529034113 89,38651916 3,747576832 4,1838234 0,07336303
+3,8738425 321823,4692 -0,23669426 0,092137799 0 4,1105366 3,529853098 89,3954081 3,748446534 4,1838425 0,07330574
+3,8739953 321855,4693 -0,23663697 0,09213461 0 4,1106324 3,530672086 89,40429704 3,749316239 4,1839953 0,07336303
+3,8741479 321887,4695 -0,23661788 0,092137799 0 4,1107659 3,531491076 89,41318597 3,750185947 4,1841479 0,07338212
+3,8741479 321919,4697 -0,23677066 0,092141613 0 4,1109185 3,532310064 89,42207491 3,751055653 4,1841479 0,07322934
+3,8742054 321951,4699 -0,23671336 0,092139706 0 4,1109185 3,533129054 89,43096385 3,75192536 4,1842054 0,07328664
+3,8743198 321983,47 -0,23654148 0,092137158 0 4,1108613 3,533948041 89,43985279 3,752795065 4,1843198 0,07345852
+3,8744917 322015,4702 -0,23659877 0,092142262 0 4,1110907 3,534767029 89,44874172 3,75366477 4,1844917 0,07340123
+3,8744345 322047,4704 -0,23661788 0,092140347 0 4,1110525 3,535586017 89,45763066 3,754534476 4,1844345 0,07338212
+3,8746254 322079,4706 -0,23665607 0,092133977 0 4,1112814 3,536405005 89,4665196 3,755404181 4,1846254 0,07334393
+3,8746064 322111,4707 -0,23659877 0,092133336 0 4,1112051 3,537223994 89,47540854 3,756273888 4,1846064 0,07340123
+3,8746445 322143,4709 -0,23665607 0,092138432 0 4,1113005 3,538042984 89,48429748 3,757143595 4,1846445 0,07334393
+3,8746254 322175,4711 -0,23661788 0,092136525 0 4,1112432 3,53886197 89,49318641 3,758013299 4,1846254 0,07338212
+3,8748546 322207,4713 -0,23667517 0,09213461 0 4,1115298 3,53968096 89,50207535 3,758883006 4,1848546 0,07332483
+3,8747783 322239,4714 -0,23665607 0,092126973 0 4,1114345 3,540499948 89,51096429 3,759752712 4,1847783 0,07334393
+3,874912 322271,4716 -0,23665607 0,092136525 0 4,111568 3,541318937 89,51985323 3,760622418 4,184912 0,07334393
+3,8749692 322303,4718 -0,23657969 0,09212888 0 4,1115489 3,542137925 89,52874216 3,761492124 4,1849692 0,07342031
+3,8750455 322335,472 -0,23671336 0,092133336 0 4,1117587 3,542956915 89,5376311 3,762361832 4,1850455 0,07328664
+3,8748546 322367,4721 -0,23659877 0,092132062 0 4,1114535 3,543775904 89,54652004 3,763231538 4,1848546 0,07340123
+3,8751984 322399,4723 -0,23657969 0,092137799 0 4,1117783 3,544594894 89,55540898 3,764101246 4,1851984 0,07342031
+3,8753512 322431,4725 -0,23663697 0,092131428 0 4,1119881 3,545413884 89,56429792 3,764970953 4,1853512 0,07336303
+3,8754466 322463,4727 -0,23657969 0,092135251 0 4,1120262 3,546232876 89,57318685 3,765840663 4,1854466 0,07342031
+3,8753321 322495,4729 -0,23669426 0,092132062 0 4,1120262 3,547051871 89,58207579 3,766710376 4,1853321 0,07330574
+3,8754849 322527,473 -0,23678975 0,092136525 0 4,1122746 3,547870866 89,59096473 3,767580089 4,1854849 0,07321025
+3,875504 322559,4732 -0,23671336 0,092135884 0 4,1122174 3,548689858 89,59985367 3,768449799 4,185504 0,07328664
+3,8757331 322591,4734 -0,23663697 0,09212824 0 4,11237 3,549508849 89,60874261 3,769319507 4,1857331 0,07336303
+3,8757331 322623,4736 -0,23665607 0,092136525 0 4,1123891 3,550327841 89,61763154 3,770189218 4,1857331 0,07334393
+3,8758094 322655,4737 -0,23667517 0,092136525 0 4,1124845 3,551146838 89,62652048 3,771058932 4,1858094 0,07332483
+3,8759241 322687,4739 -0,23659877 0,09213461 0 4,1125231 3,551965835 89,63540942 3,771928647 4,1859241 0,07340123
+3,8760004 322719,4741 -0,23667517 0,092135884 0 4,1126757 3,552784831 89,64429836 3,772798362 4,1860004 0,07332483
+3,8759241 322751,4743 -0,23659877 0,092136525 0 4,1125231 3,553603827 89,65318729 3,773668075 4,1859241 0,07340123
+3,8758478 322783,4744 -0,23663697 0,092131428 0 4,1124849 3,554422822 89,66207623 3,774537788 4,1858478 0,07336303
+3,8759432 322815,4746 -0,23656058 0,092135884 0 4,112504 3,555241814 89,67096517 3,775407498 4,1859432 0,07343942
+3,8760769 322847,4748 -0,23667517 0,092126325 0 4,112752 3,556060808 89,67985411 3,77627721 4,1860769 0,07332483
+3,8761532 322879,475 -0,23663697 0,09214098 0 4,1127901 3,556879803 89,68874305 3,777146924 4,1861532 0,07336303
+3,8761723 322911,4751 -0,23690434 0,092139073 0 4,1130767 3,557698798 89,69763198 3,778016636 4,1861723 0,07309566
+3,8764589 322943,4753 -0,23669426 0,092130795 0 4,113153 3,558517791 89,70652092 3,778886347 4,1864589 0,07330574
+3,8766308 322975,4755 -0,23654148 0,092140347 0 4,1131721 3,559336785 89,71540986 3,779756059 4,1866308 0,07345852
+3,8765352 323007,4757 -0,23667517 0,092133977 0 4,1132102 3,560155777 89,7242988 3,780625769 4,1865352 0,07332483
+3,8764017 323039,4758 -0,23680885 0,092139073 0 4,1132107 3,560974771 89,73318773 3,781495481 4,1864017 0,07319115
+3,8765733 323071,476 -0,23663697 0,092131428 0 4,1132102 3,561793766 89,74207667 3,782365194 4,1865733 0,07336303
+3,8766689 323103,4762 -0,23675156 0,092139706 0 4,1134205 3,562612758 89,75096561 3,783234903 4,1866689 0,07324844
+3,8768027 323135,4764 -0,23667517 0,09212824 0 4,1134777 3,563431749 89,75985455 3,784104612 4,1868027 0,07332483
+3,876688 323167,4766 -0,23671336 0,092131428 0 4,1134014 3,56425074 89,76874349 3,784974321 4,186688 0,07328664
+3,8769171 323199,4767 -0,23667517 0,092130795 0 4,1135921 3,565069732 89,77763242 3,785844031 4,1869171 0,07332483
+3,876879 323231,4769 -0,23663697 0,092137158 0 4,1135159 3,565888725 89,78652136 3,786713741 4,186879 0,07336303
+3,8772418 323263,4771 -0,23669426 0,09213461 0 4,1139359 3,566707718 89,7954103 3,787583452 4,1872418 0,07330574
+3,87707 323295,4773 -0,23663697 0,092138432 0 4,1137071 3,567526712 89,80429924 3,788453164 4,18707 0,07336303
+3,8771465 323327,4774 -0,23654148 0,092137158 0 4,113688 3,568345705 89,81318818 3,789322875 4,1871465 0,07345852
+3,8773181 323359,4776 -0,23677066 0,092137158 0 4,114089 3,569164698 89,82207711 3,790192586 4,1873181 0,07322934
+3,8771272 323391,4778 -0,23673245 0,092138432 0 4,1138597 3,56998369 89,83096605 3,791062295 4,1871272 0,07326755
+3,8773375 323423,478 -0,23677066 0,092139706 0 4,1141081 3,570802682 89,83985499 3,791932006 4,1873375 0,07322934
+3,877471 323455,4781 -0,23680885 0,092139706 0 4,1142797 3,571621674 89,84874393 3,792801715 4,187471 0,07319115
+3,877471 323487,4783 -0,23678975 0,092137158 0 4,1142607 3,57244067 89,85763286 3,793671429 4,187471 0,07321025
+3,8775856 323519,4785 -0,23659877 0,092140347 0 4,1141844 3,573259663 89,8665218 3,79454114 4,1875856 0,07340123
+3,8778338 323551,4787 -0,23673245 0,092139706 0 4,1145663 3,574078658 89,87541074 3,795410853 4,1878338 0,07326755
+3,8777001 323583,4788 -0,23659877 0,092133977 0 4,1142988 3,574897651 89,88429968 3,796280564 4,1877001 0,07340123
+3,8778913 323615,479 -0,23682794 0,092137158 0 4,1147194 3,575716643 89,89318862 3,797150274 4,1878913 0,07317206
+3,877872 323647,4792 -0,23677066 0,092135884 0 4,1146426 3,576535634 89,90207755 3,798019982 4,187872 0,07322934
+3,8780439 323679,4794 -0,23667517 0,092137158 0 4,1147189 3,577354626 89,91096649 3,798889692 4,1880439 0,07332483
+3,8779867 323711,4795 -0,23665607 0,092135884 0 4,1146426 3,578173616 89,91985543 3,799759399 4,1879867 0,07334393
+3,8779294 323743,4797 -0,23673245 0,092132702 0 4,1146617 3,578992607 89,92874437 3,800629108 4,1879294 0,07326755
+3,8782158 323775,4799 -0,23682794 0,092131428 0 4,1150436 3,579811598 89,9376333 3,801498817 4,1882158 0,07317206
+3,8782732 323807,4801 -0,23680885 0,092140347 0 4,1150823 3,58063059 89,94652224 3,802368527 4,1882732 0,07319115
+3,8783686 323839,4802 -0,23667517 0,092146084 0 4,1150436 3,581449581 89,95541118 3,803238236 4,1883686 0,07332483
+3,8784833 323871,4804 -0,23669426 0,092137799 0 4,1151776 3,582268574 89,96430012 3,804107946 4,1884833 0,07330574
+3,8782923 323903,4806 -0,23673245 0,092138432 0 4,1150246 3,583087568 89,97318906 3,804977658 4,1882923 0,07326755
+3,8786552 323935,4808 -0,23673245 0,092144169 0 4,1153874 3,583906563 89,98207799 3,805847371 4,1886552 0,07326755
+3,8785596 323967,481 -0,23667517 0,092132702 0 4,1152349 3,584725555 89,99096693 3,806717081 4,1885596 0,07332483
+3,8785787 323999,4811 -0,23675156 0,092137799 0 4,1153302 3,585544547 89,99985587 3,807586791 4,1885787 0,07324844
+3,8787696 324031,4813 -0,23671336 0,092131428 0 4,1154828 3,586363539 90,00874481 3,8084565 4,1887696 0,07328664
+3,8788078 324063,4815 -0,23671336 0,092135884 0 4,115521 3,58718253 90,01763375 3,809326209 4,1888078 0,07328664
+3,8789034 324095,4817 -0,23667517 0,092137158 0 4,1155787 3,588001523 90,02652268 3,81019592 4,1889034 0,07332483
+3,8789606 324127,4818 -0,23669426 0,092138432 0 4,1156549 3,588820518 90,03541162 3,811065633 4,1889606 0,07330574
+3,8790753 324159,482 -0,23673245 0,092133977 0 4,1158075 3,589639513 90,04430056 3,811935346 4,1890753 0,07326755
+3,8791325 324191,4822 -0,23671336 0,092133977 0 4,1158457 3,590458507 90,0531895 3,812805058 4,1891325 0,07328664
+3,8792472 324223,4824 -0,23675156 0,092133977 0 4,1159987 3,5912775 90,06207843 3,813674769 4,1892472 0,07324844
+3,8791897 324255,4825 -0,23667517 0,092140347 0 4,1158648 3,592096495 90,07096737 3,814544481 4,1891897 0,07332483
+3,8793426 324287,4827 -0,23671336 0,092136525 0 4,116056 3,592915488 90,07985631 3,815414192 4,1893426 0,07328664
+3,8794763 324319,4829 -0,23671336 0,09213461 0 4,1161895 3,593734481 90,08874525 3,816283903 4,1894763 0,07328664
+3,8794572 324351,4831 -0,23671336 0,092132702 0 4,1161704 3,594553475 90,09763419 3,817153615 4,1894572 0,07328664
+3,879591 324383,4832 -0,23677066 0,092142887 0 4,1163616 3,59537247 90,10652312 3,818023328 4,189591 0,07322934
+3,8795717 324415,4834 -0,23671336 0,092136525 0 4,1162848 3,596191466 90,11541206 3,818893042 4,1895717 0,07328664
+3,8796673 324447,4836 -0,23675156 0,092131428 0 4,1164188 3,597010459 90,124301 3,819762753 4,1896673 0,07324844
+3,8798583 324479,4838 -0,23673245 0,092138432 0 4,1165905 3,597829453 90,13318994 3,820632465 4,1898583 0,07326755
+3,8800302 324511,4839 -0,23659877 0,092136525 0 4,1166291 3,598648448 90,14207887 3,821502178 4,1900302 0,07340123
+3,8800111 324543,4841 -0,23656058 0,092137799 0 4,1165714 3,599467441 90,15096781 3,822371888 4,1900111 0,07343942
+3,8801064 324575,4843 -0,23673245 0,092141613 0 4,1168389 3,60028643 90,15985675 3,823241596 4,1901064 0,07326755
+3,8799729 324607,4845 -0,23669426 0,092133336 0 4,1166673 3,601105421 90,16874569 3,824111304 4,1899729 0,07330574
+3,880183 324639,4847 -0,23667517 0,092133977 0 4,116858 3,601924411 90,17763463 3,824981012 4,190183 0,07332483
+3,8803165 324671,4848 -0,23677066 0,092130795 0 4,1170874 3,602743403 90,18652356 3,825850721 4,1903165 0,07322934
+3,8804121 324703,485 -0,23661788 0,092136525 0 4,1170301 3,60356239 90,1954125 3,826720426 4,1904121 0,07338212
+3,8805268 324735,4852 -0,23663697 0,092135884 0 4,1171637 3,604381377 90,20430144 3,82759013 4,1905268 0,07336303
+3,8804312 324767,4854 -0,23665607 0,092135884 0 4,1170874 3,605200367 90,21319038 3,828459838 4,1904312 0,07334393
+3,8805649 324799,4855 -0,23661788 0,092138432 0 4,1171827 3,606019357 90,22207932 3,829329546 4,1905649 0,07338212
+3,8806603 324831,4857 -0,23675156 0,092137799 0 4,1174116 3,606838348 90,23096825 3,830199255 4,1906603 0,07324844
+3,8807178 324863,4859 -0,23680885 0,092129521 0 4,1175265 3,607657336 90,23985719 3,83106896 4,1907178 0,07319115
+3,8806794 324895,4861 -0,23669426 0,092137799 0 4,1173735 3,608476325 90,24874613 3,831938666 4,1906794 0,07330574
+3,8808703 324927,4862 -0,23678975 0,092138432 0 4,11766 3,609295313 90,25763507 3,832808372 4,1908703 0,07321025
+3,8808897 324959,4864 -0,23678975 0,092137158 0 4,1176796 3,610114308 90,266524 3,833678085 4,1908897 0,07321025
+3,8809469 324991,4866 -0,23688523 0,092142262 0 4,1178322 3,610933302 90,27541294 3,834547796 4,1909469 0,07311477
+3,8811378 325023,4868 -0,23669426 0,092131428 0 4,1178322 3,611752296 90,28430188 3,835417508 4,1911378 0,07330574
+3,8812332 325055,4869 -0,23665607 0,092133336 0 4,1178894 3,612571289 90,29319082 3,836287219 4,1912332 0,07334393
+3,8813288 325087,4871 -0,23665607 0,092135884 0 4,1179848 3,61339028 90,30207976 3,837156928 4,1913288 0,07334393
+3,8813097 325119,4873 -0,23669426 0,092139706 0 4,1180038 3,614209271 90,31096869 3,838026637 4,1913097 0,07330574
+3,8813097 325151,4875 -0,23671336 0,092127606 0 4,1180229 3,615028265 90,31985763 3,838896349 4,1913097 0,07328664
+3,8814816 325183,4876 -0,23690434 0,092132702 0 4,1183858 3,61584726 90,32874657 3,839766062 4,1914816 0,07309566
+3,8815198 325215,4878 -0,23654148 0,092137799 0 4,1180611 3,616666256 90,33763551 3,840635776 4,1915198 0,07345852
+3,8816726 325247,488 -0,23675156 0,092135884 0 4,1184244 3,617485253 90,34652444 3,841505491 4,1916726 0,07324844
+3,8817489 325279,4882 -0,23682794 0,092141613 0 4,118577 3,618304251 90,35541338 3,842375207 4,1917489 0,07317206
+3,8817108 325311,4884 -0,23675156 0,09213461 0 4,1184626 3,619123245 90,36430232 3,843244919 4,1917108 0,07324844
+3,881978 325343,4885 -0,23688523 0,092139073 0 4,1188631 3,61994224 90,37319126 3,844114631 4,191978 0,07311477
+3,881959 325375,4887 -0,23688523 0,092130795 0 4,118844 3,620761236 90,3820802 3,844984345 4,191959 0,07311477
+3,8819208 325407,4889 -0,23680885 0,092132062 0 4,1187296 3,621580228 90,39096913 3,845854056 4,1919208 0,07319115
+3,8821499 325439,4891 -0,23688523 0,092140347 0 4,1190352 3,62239922 90,39985807 3,846723766 4,1921499 0,07311477
+3,8821881 325471,4892 -0,23682794 0,092137158 0 4,1190162 3,623218213 90,40874701 3,847593476 4,1921881 0,07317206
+3,8821499 325503,4894 -0,23673245 0,092139073 0 4,1188822 3,624037206 90,41763595 3,848463187 4,1921499 0,07326755
+3,88236 325535,4896 -0,23680885 0,092139073 0 4,1191688 3,624856197 90,42652488 3,849332896 4,19236 0,07319115
+3,8823791 325567,4898 -0,23671336 0,09213461 0 4,1190925 3,625675188 90,43541382 3,850202604 4,1923791 0,07328664
+3,8826656 325599,4899 -0,23690434 0,09212824 0 4,1195698 3,626494177 90,44430276 3,851072311 4,1926656 0,07309566
+3,882551 325631,4901 -0,23665607 0,092139073 0 4,1192069 3,627313169 90,4531917 3,85194202 4,192551 0,07334393
+3,8826275 325663,4903 -0,23686615 0,092126973 0 4,1194935 3,628132158 90,46208064 3,852811727 4,1926275 0,07313385
+3,8825128 325695,4905 -0,23701891 0,092136525 0 4,1195316 3,628951148 90,47096957 3,853681435 4,1925128 0,07298109
+3,8828185 325727,4906 -0,23682794 0,092142262 0 4,1196465 3,629770141 90,47985851 3,854551145 4,1928185 0,07317206
+3,8829329 325759,4908 -0,23661788 0,092140347 0 4,1195507 3,630589135 90,48874745 3,855420858 4,1929329 0,07338212
+3,8830476 325791,491 -0,23673245 0,092141613 0 4,1197801 3,631408129 90,49763639 3,85629057 4,1930476 0,07326755
+3,8830667 325823,4912 -0,23677066 0,092140347 0 4,1198373 3,63222712 90,50652533 3,857160279 4,1930667 0,07322934
+3,8831623 325855,4913 -0,23661788 0,09212824 0 4,1197801 3,633046109 90,51541426 3,858029985 4,1931623 0,07338212
+3,8830857 325887,4915 -0,23680885 0,092135251 0 4,1198945 3,633865101 90,5243032 3,858899695 4,1930857 0,07319115
+3,8833723 325919,4917 -0,23680885 0,092133977 0 4,1201811 3,634684093 90,53319214 3,859769404 4,1933723 0,07319115
+3,8832386 325951,4919 -0,23684704 0,092136525 0 4,1200857 3,635503084 90,54208108 3,860639113 4,1932386 0,07315296
+3,8834867 325983,4921 -0,23663697 0,092133977 0 4,1201239 3,636322077 90,55097001 3,861508824 4,1934867 0,07336303
+3,8835824 326015,4922 -0,23680885 0,092138432 0 4,1203914 3,637141071 90,55985895 3,862378536 4,1935824 0,07319115
+3,8835824 326047,4924 -0,23678975 0,092132702 0 4,1203723 3,637960063 90,56874789 3,863248246 4,1935824 0,07321025
+3,8836396 326079,4926 -0,23673245 0,092132062 0 4,1203718 3,638779054 90,57763683 3,864117955 4,1936396 0,07326755
+3,8839071 326111,4928 -0,23675156 0,092135884 0 4,1206589 3,639598046 90,58652577 3,864987665 4,1939071 0,07324844
+3,8838496 326143,4929 -0,23680885 0,092130147 0 4,1206584 3,64041704 90,5954147 3,865857376 4,1938496 0,07319115
+3,8839643 326175,4931 -0,23667517 0,092137799 0 4,1206393 3,641236036 90,60430364 3,866727091 4,1939643 0,07332483
+3,8841934 326207,4933 -0,23694253 0,092135251 0 4,1211357 3,642055034 90,61319258 3,867596806 4,1941934 0,07305747
+3,8841743 326239,4935 -0,23680885 0,092132062 0 4,1209831 3,642874031 90,62208152 3,868466521 4,1941743 0,07319115
+3,8842125 326271,4936 -0,23684704 0,092141613 0 4,1210594 3,643693031 90,63097045 3,869336239 4,1942125 0,07315296
+3,88427 326303,4938 -0,23694253 0,092137158 0 4,1212125 3,644512029 90,63985939 3,870205955 4,19427 0,07305747
+3,8844991 326335,494 -0,23677066 0,092145436 0 4,1212697 3,645331025 90,64874833 3,87107567 4,1944991 0,07322934
+3,8845944 326367,4942 -0,23680885 0,092135884 0 4,1214032 3,646150019 90,65763727 3,871945382 4,1945944 0,07319115
+3,8846135 326399,4943 -0,23678975 0,092133336 0 4,1214032 3,646969013 90,66652621 3,872815093 4,1946135 0,07321025
+3,8846519 326431,4945 -0,23669426 0,092140347 0 4,121346 3,647788004 90,67541514 3,873684803 4,1946519 0,07330574
+3,8848045 326463,4947 -0,23673245 0,092149258 0 4,1215367 3,648606998 90,68430408 3,874554514 4,1948045 0,07326755
+3,8848429 326495,4949 -0,23677066 0,092132702 0 4,1216135 3,649425991 90,69319302 3,875424225 4,1948429 0,07322934
+3,884881 326527,495 -0,23665607 0,092131428 0 4,1215372 3,650244982 90,70208196 3,876293934 4,194881 0,07334393
+3,885072 326559,4952 -0,23669426 0,092132702 0 4,1217661 3,651063976 90,7109709 3,877163646 4,195072 0,07330574
+3,8849192 326591,4954 -0,23677066 0,092126325 0 4,1216898 3,651882969 90,71985983 3,878033357 4,1949192 0,07322934
+3,8850529 326623,4956 -0,23677066 0,092131428 0 4,1218238 3,652701963 90,72874877 3,878903068 4,1950529 0,07322934
+3,885282 326655,4958 -0,23682794 0,092135884 0 4,1221099 3,653520956 90,73763771 3,87977278 4,195282 0,07317206
+3,8852057 326687,4959 -0,23677066 0,092137158 0 4,1219764 3,654339951 90,74652665 3,880642492 4,1952057 0,07322934
+3,8853202 326719,4961 -0,23677066 0,09213461 0 4,1220908 3,655158945 90,75541558 3,881512203 4,1953202 0,07322934
+3,8853967 326751,4963 -0,23692343 0,092125699 0 4,1223202 3,655977941 90,76430452 3,882381918 4,1953967 0,07307657
+3,8856831 326783,4965 -0,23673245 0,092131428 0 4,1224155 3,656796936 90,77319346 3,883251631 4,1956831 0,07326755
+3,8856068 326815,4966 -0,23692343 0,092135251 0 4,12253 3,657615932 90,7820824 3,884121345 4,1956068 0,07307657
+3,8857596 326847,4968 -0,23684704 0,09213461 0 4,1226068 3,658434924 90,79097134 3,884991055 4,1957596 0,07315296
+3,8858359 326879,497 -0,23675156 0,092144802 0 4,1225872 3,659253917 90,79986027 3,885860766 4,1958359 0,07324844
+3,8859313 326911,4972 -0,23677066 0,092143528 0 4,1227021 3,660072912 90,80874921 3,886730479 4,1959313 0,07322934
+3,8859696 326943,4973 -0,23682794 0,09213461 0 4,1227975 3,660891907 90,81763815 3,887600192 4,1959696 0,07317206
+3,8860459 326975,4975 -0,23682794 0,09212824 0 4,1228738 3,661710902 90,82652709 3,888469904 4,1960459 0,07317206
+3,8862941 327007,4977 -0,23686615 0,092135884 0 4,1231604 3,662529895 90,83541602 3,889339615 4,1962941 0,07313385
+3,8863707 327039,4979 -0,23665607 0,092133977 0 4,1230268 3,663348892 90,84430496 3,890209331 4,1963707 0,07334393
+3,886447 327071,498 -0,23680885 0,09213461 0 4,1232557 3,664167888 90,8531939 3,891079044 4,196447 0,07319115
+3,8865616 327103,4982 -0,23688523 0,092135251 0 4,1234469 3,664986885 90,86208284 3,891948759 4,1965616 0,07311477
+3,8865616 327135,4984 -0,23678975 0,092132702 0 4,1233516 3,665805883 90,87097178 3,892818475 4,1965616 0,07321025
+3,8867145 327167,4986 -0,23686615 0,092130795 0 4,1235805 3,666624883 90,87986071 3,893688194 4,1967145 0,07313385
+3,8867908 327199,4987 -0,23678975 0,092136525 0 4,1235805 3,667443884 90,88874965 3,894557913 4,1967908 0,07321025
+3,8868864 327231,4989 -0,23671336 0,09213461 0 4,1235995 3,668262884 90,89763859 3,895427632 4,1968864 0,07328664
+3,8869245 327263,4991 -0,23682794 0,092139073 0 4,1237526 3,669081882 90,90652753 3,896297348 4,1969245 0,07317206
+3,8871155 327295,4993 -0,23675156 0,092132062 0 4,123867 3,669900883 90,91541647 3,897167067 4,1971155 0,07324844
+3,8871918 327327,4995 -0,23675156 0,092138432 0 4,1239433 3,67071988 90,9243054 3,898036782 4,1971918 0,07324844
+3,8870773 327359,4996 -0,23684704 0,092137158 0 4,1239243 3,671538876 90,93319434 3,898906496 4,1970773 0,07315296
+3,8874402 327391,4998 -0,23677066 0,092133336 0 4,1242108 3,672357868 90,94208328 3,899776206 4,1974402 0,07322934
+3,8874018 327423,5 -0,23686615 0,092137158 0 4,1242681 3,67317686 90,95097222 3,900645916 4,1974018 0,07313385
+3,8875546 327455,5002 -0,23684704 0,092135884 0 4,1244016 3,673995852 90,95986115 3,901515625 4,1975546 0,07315296
+3,8874784 327487,5003 -0,23675156 0,092142262 0 4,1242299 3,674814844 90,96875009 3,902385335 4,1974784 0,07324844
+3,8877075 327519,5005 -0,23678975 0,092137799 0 4,1244974 3,675633836 90,97763903 3,903255045 4,1977075 0,07321025
+3,8879175 327551,5007 -0,23678975 0,092133977 0 4,1247072 3,676452829 90,98652797 3,904124756 4,1979175 0,07321025
+3,8878412 327583,5009 -0,23692343 0,092143528 0 4,1247644 3,677271821 90,99541691 3,904994465 4,1978412 0,07307657
+3,8879941 327615,501 -0,23690434 0,092135251 0 4,1248984 3,678090813 91,00430584 3,905864175 4,1979941 0,07309566
+3,8880894 327647,5012 -0,23692343 0,092144169 0 4,1250129 3,678909802 91,01319478 3,906733882 4,1980894 0,07307657
+3,8880894 327679,5014 -0,23673245 0,092139073 0 4,1248217 3,679728789 91,02208372 3,907603587 4,1980894 0,07326755
+3,8882232 327711,5016 -0,23680885 0,092135884 0 4,1250319 3,680547779 91,03097266 3,908473293 4,1982232 0,07319115
+3,8883376 327743,5017 -0,23673245 0,092137158 0 4,1250701 3,681366771 91,03986159 3,909343003 4,1983376 0,07326755
+3,8883376 327775,5019 -0,23680885 0,092135251 0 4,1251464 3,682185764 91,04875053 3,910212715 4,1983376 0,07319115
+3,888567 327807,5021 -0,23698072 0,092137158 0 4,1255479 3,683004757 91,05763947 3,911082425 4,198567 0,07301928
+3,888567 327839,5023 -0,23690434 0,092133336 0 4,1254711 3,683823747 91,06652841 3,911952133 4,198567 0,07309566
+3,8887005 327871,5024 -0,23686615 0,092135251 0 4,1255665 3,684642739 91,07541735 3,912821843 4,1987005 0,07313385
+3,8887005 327903,5026 -0,23686615 0,092133977 0 4,1255665 3,685461734 91,08430628 3,913691556 4,1987005 0,07313385
+3,8888915 327935,5028 -0,23684704 0,092130147 0 4,1257386 3,686280724 91,09319522 3,914561264 4,1988915 0,07315296
+3,8888152 327967,503 -0,23688523 0,092129521 0 4,1257005 3,687099715 91,10208416 3,915430972 4,1988152 0,07311477
+3,8890061 327999,5031 -0,23698072 0,092133977 0 4,1259871 3,687918706 91,1109731 3,916300681 4,1990061 0,07301928
+3,889178 328031,5033 -0,23684704 0,092130147 0 4,1260252 3,688737702 91,11986204 3,917170395 4,199178 0,07315296
+3,8892162 328063,5035 -0,23686615 0,092138432 0 4,1260824 3,689556694 91,12875097 3,918040105 4,1992162 0,07313385
+3,8893118 328095,5037 -0,23686615 0,09213461 0 4,1261778 3,690375689 91,13763991 3,918909817 4,1993118 0,07313385
+3,8894453 328127,5039 -0,23673245 0,092135884 0 4,1261778 3,691194681 91,14652885 3,919779527 4,1994453 0,07326755
+3,8896747 328159,504 -0,23698072 0,092135884 0 4,1266556 3,692013674 91,15541779 3,920649238 4,1996747 0,07301928
+3,8895981 328191,5042 -0,23694253 0,092135884 0 4,1265407 3,692832667 91,16430672 3,921518948 4,1995981 0,07305747
+3,8897319 328223,5044 -0,23686615 0,092133336 0 4,1265979 3,693651659 91,17319566 3,922388659 4,1997319 0,07313385
+3,8898656 328255,5046 -0,23688523 0,092137158 0 4,1267509 3,69447065 91,1820846 3,923258368 4,1998656 0,07311477
+3,8899229 328287,5047 -0,23673245 0,092133336 0 4,1266551 3,69528964 91,19097354 3,924128075 4,1999229 0,07326755
+3,8898656 328319,5049 -0,23673245 0,092138432 0 4,1265979 3,696108628 91,19986248 3,924997781 4,1998656 0,07326755
+3,8901138 328351,5051 -0,23686615 0,092129521 0 4,1269798 3,696927617 91,20875141 3,925867487 4,2001138 0,07313385
+3,890343 328383,5053 -0,23684704 0,092133977 0 4,1271901 3,697746607 91,21764035 3,926737195 4,200343 0,07315296
+3,890343 328415,5054 -0,23678975 0,09214098 0 4,1271329 3,6985656 91,22652929 3,927606905 4,200343 0,07321025
+3,8904192 328447,5056 -0,23682794 0,092141613 0 4,1272473 3,699384592 91,23541823 3,928476615 4,2004192 0,07317206
+3,8903811 328479,5058 -0,23680885 0,092141613 0 4,1271901 3,700203583 91,24430716 3,929346324 4,2003811 0,07319115
+3,8906868 328511,506 -0,23677066 0,092143528 0 4,1274576 3,701022575 91,2531961 3,930216034 4,2006868 0,07322934
+3,8907249 328543,5061 -0,23692343 0,092139706 0 4,1276484 3,701841567 91,26208504 3,931085744 4,2007249 0,07307657
+3,8908777 328575,5063 -0,23680885 0,092133336 0 4,1276865 3,702660561 91,27097398 3,931955456 4,2008777 0,07319115
+3,8909731 328607,5065 -0,23688523 0,092139706 0 4,1278582 3,703479556 91,27986292 3,932825168 4,2009731 0,07311477
+3,8908777 328639,5067 -0,23690434 0,09213461 0 4,1277819 3,704298549 91,28875185 3,933694879 4,2008777 0,07309566
+3,8910878 328671,5068 -0,23680885 0,092133977 0 4,1278968 3,705117543 91,29764079 3,934564591 4,2010878 0,07319115
+3,8911834 328703,507 -0,23703802 0,092132062 0 4,1282215 3,705936538 91,30652973 3,935434305 4,2011834 0,07296198
+3,8913169 328735,5072 -0,23677066 0,092132062 0 4,1280875 3,706755533 91,31541867 3,936304017 4,2013169 0,07322934
+3,8914888 328767,5074 -0,23684704 0,092137158 0 4,128336 3,707574527 91,3243076 3,937173729 4,2014888 0,07315296
+3,8914506 328799,5076 -0,23684704 0,092135251 0 4,1282978 3,708393523 91,33319654 3,938043443 4,2014506 0,07315296
+3,8916225 328831,5077 -0,23688523 0,092130795 0 4,1285076 3,709212519 91,34208548 3,938913157 4,2016225 0,07311477
+3,8915653 328863,5079 -0,23701891 0,092135251 0 4,1285844 3,710031514 91,35097442 3,93978287 4,2015653 0,07298109
+3,8918707 328895,5081 -0,23692343 0,092132062 0 4,1287942 3,710850509 91,35986336 3,940652583 4,2018707 0,07307657
+3,8919473 328927,5083 -0,23688523 0,092132062 0 4,1288323 3,711669504 91,36875229 3,941522296 4,2019473 0,07311477
+3,8920426 328959,5084 -0,23692343 0,092139073 0 4,1289659 3,712488499 91,37764123 3,942392009 4,2020426 0,07307657
+3,8922145 328991,5086 -0,23688523 0,092139073 0 4,1290998 3,713307493 91,38653017 3,943261721 4,2022145 0,07311477
+3,8923483 329023,5088 -0,23678975 0,092125699 0 4,129138 3,714126485 91,39541911 3,944131431 4,2023483 0,07321025
+3,8922527 329055,509 -0,23694253 0,092140347 0 4,1291952 3,714945478 91,40430805 3,945001141 4,2022527 0,07305747
+3,8924246 329087,5091 -0,23688523 0,09214098 0 4,1293097 3,71576447 91,41319698 3,945870851 4,2024246 0,07311477
+3,8926156 329119,5093 -0,23675156 0,092132062 0 4,1293669 3,716583461 91,42208592 3,94674056 4,2026156 0,07324844
+3,8927302 329151,5095 -0,23688523 0,092140347 0 4,1296153 3,717402453 91,43097486 3,94761027 4,2027302 0,07311477
+3,8928831 329183,5097 -0,23694253 0,092130795 0 4,1298256 3,718221447 91,4398638 3,948479982 4,2028831 0,07305747
+3,8927875 329215,5098 -0,23690434 0,09213461 0 4,1296916 3,719040441 91,44875273 3,949349693 4,2027875 0,07309566
+3,8929975 329247,51 -0,23701891 0,092137158 0 4,1300163 3,719859437 91,45764167 3,950219407 4,2029975 0,07298109
+3,8931885 329279,5102 -0,23694253 0,092137158 0 4,1301308 3,720678431 91,46653061 3,95108912 4,2031885 0,07305747
+3,8931503 329311,5104 -0,23690434 0,092135251 0 4,1300545 3,721497426 91,47541955 3,951958832 4,2031503 0,07309566
+3,8934941 329343,5105 -0,23696163 0,092133977 0 4,130456 3,722316418 91,48430849 3,952828542 4,2034941 0,07303837
+3,8935132 329375,5107 -0,23680885 0,092136525 0 4,130322 3,723135407 91,49319742 3,953698249 4,2035132 0,07319115
+3,8936851 329407,5109 -0,23694253 0,092132062 0 4,1306276 3,723954398 91,50208636 3,954567957 4,2036851 0,07305747
+3,8936279 329439,5111 -0,23692343 0,092136525 0 4,1305513 3,724773392 91,5109753 3,955437669 4,2036279 0,07307657
+3,893647 329471,5113 -0,23686615 0,09213461 0 4,1305132 3,725592385 91,51986424 3,95630738 4,203647 0,07313385
+3,894048 329503,5114 -0,23692343 0,092137799 0 4,1309714 3,726411379 91,52875317 3,957177092 4,204048 0,07307657
+3,8939333 329535,5116 -0,23699982 0,092132062 0 4,1309333 3,72723037 91,53764211 3,958046801 4,2039333 0,07300018
+3,8941433 329567,5118 -0,23680885 0,092137799 0 4,1309524 3,728049367 91,54653105 3,958916515 4,2041433 0,07319115
+3,8942771 329599,512 -0,23703802 0,092140347 0 4,1313152 3,728868362 91,55541999 3,959786229 4,2042771 0,07296198
+3,894449 329631,5121 -0,23673245 0,09214098 0 4,1311812 3,729687356 91,56430893 3,960655941 4,204449 0,07326755
+3,8944299 329663,5123 -0,23705712 0,092136525 0 4,1314869 3,73050635 91,57319786 3,961525653 4,2044299 0,07294288
+3,8946781 329695,5125 -0,23690434 0,092130147 0 4,1315823 3,731325343 91,5820868 3,962395364 4,2046781 0,07309566
+3,8947737 329727,5127 -0,23699982 0,092139706 0 4,1317735 3,732144335 91,59097574 3,963265073 4,2047737 0,07300018
+3,8948119 329759,5128 -0,23682794 0,09212888 0 4,13164 3,732963327 91,59986468 3,964134783 4,2048119 0,07317206
+3,8950028 329791,513 -0,23671336 0,092133977 0 4,1317163 3,733782321 91,60875362 3,965004494 4,2050028 0,07328664
+3,8950982 329823,5132 -0,23692343 0,09213461 0 4,1320214 3,734601316 91,61764255 3,965874208 4,2050982 0,07307657
+3,895251 329855,5134 -0,23688523 0,092135251 0 4,1321363 3,735420312 91,62653149 3,966743921 4,205251 0,07311477
+3,8953276 329887,5135 -0,23690434 0,092137158 0 4,1322317 3,736239309 91,63542043 3,967613636 4,2053276 0,07309566
+3,8953466 329919,5137 -0,23692343 0,09212888 0 4,1322699 3,737058307 91,64430937 3,968483353 4,2053466 0,07307657
+3,8955948 329951,5139 -0,23701891 0,092144169 0 4,1326137 3,737877306 91,6531983 3,96935307 4,2055948 0,07298109
+3,8956521 329983,5141 -0,23686615 0,092135251 0 4,1325183 3,738696304 91,66208724 3,970222786 4,2056521 0,07313385
+3,8957858 330015,5142 -0,23692343 0,092137799 0 4,132709 3,739515302 91,67097618 3,971092502 4,2057858 0,07307657
+3,8956139 330047,5144 -0,23701891 0,092137799 0 4,1326327 3,740334297 91,67986512 3,971962216 4,2056139 0,07298109
+3,8959005 330079,5146 -0,23684704 0,092133336 0 4,1327477 3,741153294 91,68875406 3,97283193 4,2059005 0,07315296
+3,8961105 330111,5148 -0,23696163 0,092138432 0 4,1330724 3,741972293 91,69764299 3,973701647 4,2061105 0,07303837
+3,8961678 330143,515 -0,23696163 0,09213461 0 4,1331296 3,74279129 91,70653193 3,974571363 4,2061678 0,07303837
+3,8963969 330175,5151 -0,23680885 0,092135884 0 4,1332059 3,743610284 91,71542087 3,975441074 4,2063969 0,07319115
+3,8964734 330207,5153 -0,23698072 0,092133336 0 4,1334543 3,744429276 91,72430981 3,976310784 4,2064734 0,07301928
+3,8965116 330239,5155 -0,23684704 0,092132702 0 4,1333585 3,745248271 91,73319874 3,977180498 4,2065116 0,07315296
+3,8966453 330271,5157 -0,23692343 0,09212888 0 4,1335688 3,746067265 91,74208768 3,978050209 4,2066453 0,07307657
+3,8968172 330303,5158 -0,23692343 0,092137799 0 4,1337404 3,746886257 91,75097662 3,978919919 4,2068172 0,07307657
+3,8969126 330335,516 -0,23677066 0,092133336 0 4,1336832 3,747705248 91,75986556 3,979789628 4,2069126 0,07322934
+3,8970845 330367,5162 -0,23686615 0,092135884 0 4,1339507 3,748524239 91,7687545 3,980659336 4,2070845 0,07313385
+3,8972373 330399,5164 -0,23698072 0,092133336 0 4,1342182 3,749343231 91,77764343 3,981529046 4,2072373 0,07301928
+3,8972564 330431,5165 -0,23701891 0,092140347 0 4,1342754 3,750162223 91,78653237 3,982398756 4,2072564 0,07298109
+3,8973711 330463,5167 -0,23696163 0,092137158 0 4,1343327 3,750981214 91,79542131 3,983268464 4,2073711 0,07303837
+3,8976383 330495,5169 -0,23688523 0,092130147 0 4,1345234 3,751800205 91,80431025 3,984138173 4,2076383 0,07311477
+3,8977721 330527,5171 -0,23690434 0,092133336 0 4,1346765 3,752619195 91,81319919 3,985007881 4,2077721 0,07309566
+3,8976955 330559,5172 -0,23705712 0,092139706 0 4,1347528 3,753438185 91,82208812 3,985877588 4,2076955 0,07294288
+3,8978293 330591,5174 -0,23688523 0,092137158 0 4,1347146 3,754257176 91,83097706 3,986747297 4,2078293 0,07311477
+3,8980203 330623,5176 -0,23686615 0,09212888 0 4,1348863 3,755076165 91,839866 3,987617004 4,2080203 0,07313385
+3,898154 330655,5178 -0,23680885 0,092132702 0 4,134963 3,755895154 91,84875494 3,98848671 4,208154 0,07319115
+3,8981731 330687,5179 -0,23709531 0,09213461 0 4,1352682 3,756714143 91,85764387 3,989356417 4,2081731 0,07290469
+3,8983831 330719,5181 -0,23694253 0,092124417 0 4,1353254 3,757533131 91,86653281 3,990226122 4,2083831 0,07305747
+3,8986697 330751,5183 -0,23686615 0,092136525 0 4,1355357 3,758352119 91,87542175 3,991095828 4,2086697 0,07313385
+3,8986504 330783,5185 -0,23696163 0,092135251 0 4,135612 3,759171107 91,88431069 3,991965534 4,2086504 0,07303837
+3,8987269 330815,5187 -0,23698072 0,092130147 0 4,1357079 3,759990096 91,89319963 3,99283524 4,2087269 0,07301928
+3,8988416 330847,5188 -0,23694253 0,092132702 0 4,1357841 3,760809088 91,90208856 3,99370495 4,2088416 0,07305747
+3,8990326 330879,519 -0,2371144 0,092143528 0 4,136147 3,761628079 91,9109775 3,994574658 4,2090326 0,0728856
+3,8992617 330911,5192 -0,23699982 0,092143528 0 4,1362615 3,76244707 91,91986644 3,995444367 4,2092617 0,07300018
+3,8992808 330943,5194 -0,23698072 0,092135884 0 4,1362615 3,763266063 91,92875538 3,996314078 4,2092808 0,07301928
+3,8994908 330975,5195 -0,23680885 0,092137799 0 4,1362996 3,764085056 91,93764431 3,997183789 4,2094908 0,07319115
+3,8995862 331007,5197 -0,23688523 0,09213461 0 4,1364713 3,764904049 91,94653325 3,9980535 4,2095862 0,07311477
+3,899739 331039,5199 -0,23690434 0,09214098 0 4,1366434 3,765723043 91,95542219 3,998923211 4,209739 0,07309566
+3,8997009 331071,5201 -0,23720989 0,092142262 0 4,1369109 3,766542035 91,96431113 3,999792921 4,2097009 0,07279011
+3,8998156 331103,5202 -0,23692343 0,092132062 0 4,1367388 3,767361027 91,97320007 4,000662632 4,2098156 0,07307657
+3,8999875 331135,5204 -0,23703802 0,092133336 0 4,1370254 3,768180018 91,982089 4,001532341 4,2099875 0,07296198
+3,900121 331167,5206 -0,23699982 0,092137799 0 4,1371207 3,768999011 91,99097794 4,002402051 4,210121 0,07300018
+3,9003503 331199,5208 -0,23690434 0,09213461 0 4,1372547 3,769818004 91,99986688 4,003271762 4,2103503 0,07309566
+3,9004648 331231,5209 -0,23707621 0,092139073 0 4,1375408 3,770636996 92,00875582 4,004141471 4,2104648 0,07292379
+3,9004838 331263,5211 -0,23698072 0,09214098 0 4,1374645 3,771455986 92,01764476 4,005011179 4,2104838 0,07301928
+3,9006557 331295,5213 -0,23694253 0,092132702 0 4,137598 3,772274977 92,02653369 4,005880887 4,2106557 0,07305747
+3,9006557 331327,5215 -0,23694253 0,092133336 0 4,137598 3,773093969 92,03542263 4,006750597 4,2106557 0,07305747
+3,9009614 331359,5216 -0,23696163 0,092129521 0 4,1379232 3,773912964 92,04431157 4,00762031 4,2109614 0,07303837
+3,9011142 331391,5218 -0,23694253 0,092135884 0 4,1380568 3,774731959 92,05320051 4,008490023 4,2111142 0,07305747
+3,9012477 331423,522 -0,23705712 0,092138432 0 4,1383047 3,775550954 92,06208944 4,009359737 4,2112477 0,07294288
+3,9012861 331455,5222 -0,23692343 0,092135884 0 4,1382093 3,776369947 92,07097838 4,010229447 4,2112861 0,07307657
+3,9012861 331487,5224 -0,23715261 0,092133977 0 4,1384387 3,777188937 92,07986732 4,011099155 4,2112861 0,07284739
+3,9016681 331519,5225 -0,23696163 0,092132062 0 4,1386299 3,778007929 92,08875626 4,011968865 4,2116681 0,07303837
+3,9017253 331551,5227 -0,23692343 0,092135884 0 4,1386485 3,778826922 92,0976452 4,012838575 4,2117253 0,07307657
+3,9018016 331583,5229 -0,23709531 0,092135884 0 4,1388969 3,779645913 92,10653413 4,013708284 4,2118016 0,07290469
+3,9020882 331615,5231 -0,23694253 0,092135251 0 4,1390305 3,780464904 92,11542307 4,014577993 4,2120882 0,07305747
+3,9021454 331647,5232 -0,23692343 0,092138432 0 4,1390686 3,781283897 92,12431201 4,015447704 4,2121454 0,07307657
+3,9022601 331679,5234 -0,23703802 0,092130795 0 4,139298 3,782102889 92,13320095 4,016317414 4,2122601 0,07296198
+3,9022791 331711,5236 -0,23707621 0,092131428 0 4,1393552 3,782921881 92,14208988 4,017187123 4,2122791 0,07292379
+3,9027565 331743,5238 -0,23699982 0,092148624 0 4,1397562 3,783740873 92,15097882 4,018056833 4,2127565 0,07300018
+3,902833 331775,5239 -0,23699982 0,092138432 0 4,139833 3,784559866 92,15986776 4,018926544 4,212833 0,07300018
+3,902833 331807,5241 -0,2371144 0,092135251 0 4,1399474 3,785378859 92,1687567 4,019796255 4,212833 0,0728856
+3,903024 331839,5243 -0,23703802 0,092146717 0 4,1400619 3,786197852 92,17764564 4,020665965 4,213024 0,07296198
+3,9031193 331871,5245 -0,23692343 0,092139706 0 4,1400428 3,78701685 92,18653457 4,021535681 4,2131193 0,07307657
+3,9033103 331903,5246 -0,23699982 0,092135884 0 4,1403103 3,787835847 92,19542351 4,022405397 4,2133103 0,07300018
+3,9035397 331935,5248 -0,23703802 0,09213461 0 4,1405778 3,78865484 92,20431245 4,023275108 4,2135397 0,07296198
+3,9035397 331967,525 -0,23696163 0,092132702 0 4,1405015 3,789473834 92,21320139 4,024144819 4,2135397 0,07303837
+3,9037688 331999,5252 -0,23686615 0,092137158 0 4,140635 3,790292828 92,22209032 4,025014531 4,2137688 0,07313385
+3,9038641 332031,5253 -0,23703802 0,092139073 0 4,140902 3,791111823 92,23097926 4,025884245 4,2138641 0,07296198
+3,9041126 332063,5255 -0,23709531 0,092140347 0 4,1412077 3,791930816 92,2398682 4,026753956 4,2141126 0,07290469
+3,9043226 332095,5257 -0,23698072 0,092137799 0 4,1413035 3,792749809 92,24875714 4,027623666 4,2143226 0,07301928
+3,9043798 332127,5259 -0,23703802 0,092129521 0 4,141418 3,793568805 92,25764608 4,02849338 4,2143798 0,07296198
+3,9046474 332159,5261 -0,23707621 0,092139706 0 4,1417236 3,7943878 92,26653501 4,029363093 4,2146474 0,07292379
+3,9047427 332191,5262 -0,23694253 0,092142887 0 4,1416855 3,795206794 92,27542395 4,030232805 4,2147427 0,07305747
+3,9047809 332223,5264 -0,23707621 0,092144169 0 4,1418571 3,796025789 92,28431289 4,031102518 4,2147809 0,07292379
+3,9049146 332255,5266 -0,23692343 0,092139706 0 4,1418381 3,796844785 92,29320183 4,031972232 4,2149146 0,07307657
+3,9051056 332287,5268 -0,23688523 0,092141613 0 4,1419907 3,797663781 92,30209077 4,032841946 4,2151056 0,07311477
+3,9050674 332319,5269 -0,23703802 0,09213461 0 4,1421056 3,798482776 92,3109797 4,033711658 4,2150674 0,07296198
+3,9053922 332351,5271 -0,23699982 0,092130795 0 4,1423922 3,799301767 92,31986864 4,034581367 4,2153922 0,07300018
+3,9054685 332383,5273 -0,23698072 0,092137799 0 4,1424494 3,800120759 92,32875758 4,035451078 4,2154685 0,07301928
+3,9056404 332415,5275 -0,23696163 0,092136525 0 4,142602 3,800939752 92,33764652 4,036320789 4,2156404 0,07303837
+3,9057932 332447,5276 -0,23709531 0,092136525 0 4,1428885 3,801758742 92,34653545 4,037190496 4,2157932 0,07290469
+3,9060605 332479,5278 -0,23696163 0,092135884 0 4,1430221 3,802577734 92,35542439 4,038060205 4,2160605 0,07303837
+3,9061751 332511,528 -0,2371335 0,092137158 0 4,1433086 3,803396725 92,36431333 4,038929915 4,2161751 0,0728665
+3,9061177 332543,5282 -0,23709531 0,092135884 0 4,1432128 3,804215719 92,37320227 4,039799627 4,2161177 0,07290469
+3,906347 332575,5283 -0,23692343 0,092133977 0 4,1432705 3,805034714 92,38209121 4,04066934 4,216347 0,07307657
+3,9066334 332607,5285 -0,23724809 0,092133977 0 4,1438813 3,805853709 92,39098014 4,041539052 4,2166334 0,07275191
+3,9068244 332639,5287 -0,23705712 0,09214098 0 4,1438813 3,806672704 92,39986908 4,042408765 4,2168244 0,07294288
+3,90692 332671,5289 -0,23701891 0,092130147 0 4,143939 3,8074917 92,40875802 4,043278479 4,21692 0,07298109
+3,9070728 332703,529 -0,23705712 0,092129521 0 4,1441298 3,808310692 92,41764696 4,044148189 4,2170728 0,07294288
+3,9072638 332735,5292 -0,23701891 0,092132062 0 4,1442828 3,809129684 92,42653589 4,045017898 4,2172638 0,07298109
+3,907321 332767,5294 -0,23717169 0,092132702 0 4,1444926 3,809948676 92,43542483 4,045887609 4,217321 0,07282831
+3,9075501 332799,5296 -0,23698072 0,092130147 0 4,1445308 3,810767668 92,44431377 4,046757319 4,2175501 0,07301928
+3,9076838 332831,5297 -0,23699982 0,092140347 0 4,1446838 3,811586664 92,45320271 4,047627032 4,2176838 0,07300018
+3,907932 332863,5299 -0,23705712 0,092135884 0 4,144989 3,812405659 92,46209165 4,048496745 4,217932 0,07294288
+3,907913 332895,5301 -0,23717169 0,092146717 0 4,1450849 3,81322465 92,47098058 4,049366454 4,217913 0,07282831
+3,9082568 332927,5303 -0,23701891 0,09212888 0 4,1452756 3,814043643 92,47986952 4,050236164 4,2182568 0,07298109
+3,9083712 332959,5305 -0,23705712 0,092133977 0 4,1454282 3,814862635 92,48875846 4,051105875 4,2183712 0,07294288
+3,9083521 332991,5306 -0,2371908 0,092144169 0 4,1455431 3,815681627 92,4976474 4,051975584 4,2183521 0,0728092
+3,9086769 333023,5308 -0,23717169 0,092139073 0 4,1458488 3,81650062 92,50653634 4,052845295 4,2186769 0,07282831
+3,9086959 333055,531 -0,2371335 0,092139706 0 4,1458292 3,817319617 92,51542527 4,05371501 4,2186959 0,0728665
+3,9089251 333087,5312 -0,23707621 0,092138432 0 4,1460013 3,818138612 92,52431421 4,054584723 4,2189251 0,07292379
+3,9089634 333119,5313 -0,23715261 0,092139706 0 4,1461163 3,818957606 92,53320315 4,055454435 4,2189634 0,07284739
+3,9091926 333151,5315 -0,2371908 0,092130795 0 4,1463833 3,819776604 92,54209209 4,056324151 4,2191926 0,0728092
+3,9093454 333183,5317 -0,23699982 0,092137158 0 4,1463451 3,820595601 92,55098102 4,057193866 4,2193454 0,07300018
+3,9095173 333215,5319 -0,23722899 0,092133977 0 4,1467462 3,821414597 92,55986996 4,05806358 4,2195173 0,07277101
+3,9099183 333247,532 -0,23703802 0,092133336 0 4,1469564 3,822233589 92,5687589 4,05893329 4,2199183 0,07296198
+3,9099946 333279,5322 -0,23715261 0,092130147 0 4,1471472 3,823052582 92,57764784 4,059803001 4,2199946 0,07284739
+3,9100711 333311,5324 -0,23717169 0,092146084 0 4,147243 3,823871579 92,58653678 4,060672716 4,2200711 0,07282831
+3,9101665 333343,5326 -0,2371144 0,092132702 0 4,1472807 3,824690575 92,59542571 4,06154243 4,2201665 0,0728856
+3,9104338 333375,5327 -0,23699982 0,092139073 0 4,1474338 3,825509572 92,60431465 4,062412145 4,2204338 0,07300018
+3,9106057 333407,5329 -0,23707621 0,09213461 0 4,1476817 3,826328571 92,61320359 4,063281862 4,2206057 0,07292379
+3,9106631 333439,5331 -0,2371144 0,092140347 0 4,1477776 3,827147569 92,62209253 4,064151578 4,2206631 0,0728856
+3,9107966 333471,5333 -0,23707621 0,092131428 0 4,1478729 3,827966566 92,63098146 4,065021294 4,2207966 0,07292379
+3,9112551 333503,5334 -0,23715261 0,092137158 0 4,1484079 3,828785564 92,6398704 4,06589101 4,2212551 0,07284739
+3,911217 333535,5336 -0,23730537 0,092133977 0 4,1485224 3,829604564 92,64875934 4,066760728 4,221217 0,07269463
+3,9115415 333567,5338 -0,23715261 0,092135884 0 4,148694 3,830423564 92,65764828 4,067630446 4,2215415 0,07284739
+3,9115033 333599,534 -0,23701891 0,092133336 0 4,1485224 3,831242564 92,66653722 4,068500165 4,2215033 0,07298109
+3,911809 333631,5342 -0,23715261 0,092137799 0 4,1489615 3,832061563 92,67542615 4,069369882 4,221809 0,07284739
+3,9119234 333663,5343 -0,2371335 0,092135884 0 4,1490569 3,832880557 92,68431509 4,070239593 4,2219234 0,0728665
+3,9121144 333695,5345 -0,23707621 0,092139706 0 4,1491904 3,833699551 92,69320403 4,071109305 4,2221144 0,07292379
+3,9121337 333727,5347 -0,23709531 0,092138432 0 4,149229 3,834518545 92,70209297 4,071979017 4,2221337 0,07290469
+3,9124966 333759,5349 -0,23724809 0,092137158 0 4,1497445 3,83533754 92,71098191 4,07284873 4,2224966 0,07275191
+3,912611 333791,535 -0,23717169 0,09212888 0 4,1497827 3,836156536 92,71987084 4,073718444 4,222611 0,07282831
+3,9127448 333823,5352 -0,23728628 0,09213461 0 4,1500311 3,836975532 92,72875978 4,074588158 4,2227448 0,07271372
+3,9129357 333855,5354 -0,23726718 0,092132702 0 4,1502028 3,837794526 92,73764872 4,07545787 4,2229357 0,07273282
+3,9132221 333887,5356 -0,23720989 0,092135251 0 4,1504321 3,838613519 92,74653766 4,076327581 4,2232221 0,07279011
+3,9132221 333919,5357 -0,23717169 0,092135251 0 4,150394 3,839432512 92,75542659 4,077197292 4,2232221 0,07282831
+3,9135659 333951,5359 -0,2371908 0,092135884 0 4,1507568 3,840251507 92,76431553 4,078067005 4,2235659 0,0728092
+3,9137568 333983,5361 -0,23720989 0,092139706 0 4,1509666 3,8410705 92,77320447 4,078936716 4,2237568 0,07279011
+3,9138715 334015,5363 -0,23709531 0,092139073 0 4,1509666 3,841889493 92,78209341 4,079806426 4,2238715 0,07290469
+3,9139478 334047,5364 -0,23741996 0,092130147 0 4,1513677 3,842708487 92,79098235 4,080676138 4,2239478 0,07258004
+3,9141769 334079,5366 -0,23720989 0,092136525 0 4,1513867 3,843527479 92,79987128 4,081545848 4,2241769 0,07279011
+3,9144635 334111,5368 -0,23724809 0,092135251 0 4,1517115 3,844346468 92,80876022 4,082415555 4,2244635 0,07275191
+3,9146354 334143,537 -0,2371335 0,092135251 0 4,1517687 3,845165459 92,81764916 4,083285264 4,2246354 0,0728665
+3,9148073 334175,5371 -0,2371335 0,092133977 0 4,1519408 3,845984451 92,8265381 4,084154973 4,2248073 0,0728665
+3,9149792 334207,5373 -0,2371144 0,092139706 0 4,1520934 3,846803443 92,83542703 4,085024683 4,2249792 0,0728856
+3,9151127 334239,5375 -0,2371335 0,09212824 0 4,1522465 3,847622435 92,84431597 4,085894393 4,2251127 0,0728665
+3,9151893 334271,5377 -0,23728628 0,092133977 0 4,1524754 3,848441427 92,85320491 4,086764103 4,2251893 0,07271372
+3,9155521 334303,5379 -0,23715261 0,092137158 0 4,1527047 3,849260418 92,86209385 4,087633811 4,2255521 0,07284739
+3,915724 334335,538 -0,2371908 0,09213461 0 4,152915 3,850079409 92,87098279 4,08850352 4,225724 0,0728092
+3,9158385 334367,5382 -0,2371908 0,092135884 0 4,1530294 3,850898401 92,87987172 4,08937323 4,2258385 0,0728092
+3,9161441 334399,5384 -0,23743907 0,092133336 0 4,153583 3,851717397 92,88876066 4,090242944 4,2261441 0,07256093
+3,9163351 334431,5386 -0,23726718 0,092135251 0 4,1536021 3,85253639 92,8976496 4,091112654 4,2263351 0,07273282
+3,9166024 334463,5387 -0,23717169 0,092137799 0 4,1537743 3,853355383 92,90653854 4,091982366 4,2266024 0,07282831
+3,9167552 334495,5389 -0,23715261 0,092132702 0 4,1539078 3,854174374 92,91542748 4,092852074 4,2267552 0,07284739
+3,9169652 334527,5391 -0,23720989 0,09213461 0 4,1541753 3,854993365 92,92431641 4,093721783 4,2269652 0,07279011
+3,9169652 334559,5393 -0,2371908 0,092136525 0 4,1541562 3,855812357 92,93320535 4,094591492 4,2269652 0,0728092
+3,9171371 334591,5394 -0,23724809 0,092136525 0 4,1543851 3,85663135 92,94209429 4,095461203 4,2271371 0,07275191
+3,9174809 334623,5396 -0,23717169 0,092137158 0 4,1546526 3,857450344 92,95098323 4,096330915 4,2274809 0,07282831
+3,9175 334655,5398 -0,23724809 0,092143528 0 4,154748 3,858269338 92,95987216 4,097200627 4,2275 0,07275191
+3,9177675 334687,54 -0,23722899 0,092136525 0 4,1549964 3,859088333 92,9687611 4,09807034 4,2277675 0,07277101
+3,9180539 334719,5401 -0,23730537 0,092139073 0 4,1553593 3,859907328 92,97765004 4,098940052 4,2280539 0,07269463
+3,9181495 334751,5403 -0,23730537 0,09214098 0 4,1554546 3,860726323 92,98653898 4,099809766 4,2281495 0,07269463
+3,9183404 334783,5405 -0,23728628 0,092132702 0 4,1556268 3,861545318 92,99542792 4,100679479 4,2283404 0,07271372
+3,9185696 334815,5407 -0,23724809 0,092129521 0 4,1558175 3,862364315 93,00431685 4,101549194 4,2285696 0,07275191
+3,9187224 334847,5408 -0,23724809 0,092135884 0 4,1559706 3,863183313 93,01320579 4,10241891 4,2287224 0,07275191
+3,9188561 334879,541 -0,23728628 0,092139073 0 4,1561422 3,864002309 93,02209473 4,103288625 4,2288561 0,07271372
+3,9190853 334911,5412 -0,23722899 0,092136525 0 4,1563144 3,864821302 93,03098367 4,104158335 4,2290853 0,07277101
+3,9193335 334943,5414 -0,23734358 0,092139706 0 4,1566772 3,865640294 93,0398726 4,105028045 4,2293335 0,07265642
+3,9196391 334975,5416 -0,23717169 0,092137799 0 4,1568108 3,866459284 93,04876154 4,105897753 4,2296391 0,07282831
+3,9197154 335007,5417 -0,23707621 0,092139706 0 4,1567917 3,867278282 93,05765048 4,106767468 4,2297154 0,07292379
+3,9199829 335039,5419 -0,23728628 0,092140347 0 4,157269 3,868097274 93,06653942 4,107637178 4,2299829 0,07271372
+3,9202883 335071,5421 -0,23730537 0,09213461 0 4,1575937 3,868916265 93,07542836 4,108506887 4,2302883 0,07269463
+3,9204793 335103,5423 -0,23732448 0,092138432 0 4,1578035 3,869735257 93,08431729 4,109376596 4,2304793 0,07267552
+3,9207277 335135,5424 -0,2371908 0,092133977 0 4,1579185 3,870554251 93,09320623 4,110246308 4,2307277 0,0728092
+3,9208231 335167,5426 -0,23726718 0,092132702 0 4,1580901 3,871373243 93,10209517 4,111116019 4,2308231 0,07273282
+3,9209569 335199,5428 -0,23726718 0,092141613 0 4,1582241 3,872192237 93,11098411 4,111985731 4,2309569 0,07273282
+3,9212623 335231,543 -0,23720989 0,092137799 0 4,1584721 3,87301123 93,11987304 4,112855441 4,2312623 0,07279011
+3,9212813 335263,5431 -0,23703802 0,092140347 0 4,1583195 3,873830224 93,12876198 4,113725153 4,2312813 0,07296198
+3,9216061 335295,5433 -0,2371908 0,092130147 0 4,1587968 3,874649219 93,13765092 4,114594866 4,2316061 0,0728092
+3,9216442 335327,5435 -0,23722899 0,09212888 0 4,1588731 3,875468214 93,14653986 4,115464579 4,2316442 0,07277101
+3,9221027 335359,5437 -0,23722899 0,092136525 0 4,1593318 3,876287208 93,1554288 4,116334291 4,2321027 0,07277101
+3,9220071 335391,5438 -0,23709531 0,092129521 0 4,1591024 3,877106202 93,16431773 4,117204003 4,2320071 0,07290469
+3,9224656 335423,544 -0,23724809 0,092135884 0 4,1597137 3,877925198 93,17320667 4,118073717 4,2324656 0,07275191
+3,9227138 335455,5442 -0,23724809 0,092133977 0 4,1599617 3,87874419 93,18209561 4,118943427 4,2327138 0,07275191
+3,9228475 335487,5444 -0,23720989 0,092137158 0 4,1600575 3,879563184 93,19098455 4,119813139 4,2328475 0,07279011
+3,9230003 335519,5445 -0,23724809 0,092132062 0 4,1602483 3,880382177 93,19987349 4,12068285 4,2330003 0,07275191
+3,9232867 335551,5447 -0,2371335 0,092144169 0 4,1604204 3,881201168 93,20876242 4,121552558 4,2332867 0,0728665
+3,9235351 335583,5449 -0,23726718 0,092132062 0 4,1608024 3,88202016 93,21765136 4,122422267 4,2335351 0,07273282
+3,9236114 335615,5451 -0,23720989 0,092135251 0 4,1608214 3,882839151 93,2265403 4,123291977 4,2336114 0,07279011
+3,9239552 335647,5453 -0,23732448 0,092138432 0 4,1612797 3,883658144 93,23542924 4,124161688 4,2339552 0,07267552
+3,9241652 335679,5454 -0,23736267 0,092135251 0 4,1615281 3,884477139 93,24431817 4,125031401 4,2341652 0,07263733
+3,9244325 335711,5456 -0,2371144 0,092135884 0 4,1615467 3,885296132 93,25320711 4,125901111 4,2344325 0,0728856
+3,9245472 335743,5458 -0,23745815 0,092140347 0 4,1620054 3,886115127 93,26209605 4,126770824 4,2345472 0,07254185
+3,9247 335775,546 -0,23717169 0,092139073 0 4,1618719 3,886934121 93,27098499 4,127640536 4,2347 0,07282831
+3,9250054 335807,5461 -0,23726718 0,092144169 0 4,1622725 3,887753117 93,27987393 4,12851025 4,2350054 0,07273282
+3,9252157 335839,5463 -0,23736267 0,092136525 0 4,1625786 3,888572112 93,28876286 4,129379962 4,2352157 0,07263733
+3,925483 335871,5465 -0,23738177 0,092130795 0 4,1628647 3,889391105 93,2976518 4,130249674 4,235483 0,07261823
+3,9257886 335903,5467 -0,23722899 0,092138432 0 4,1630177 3,890210097 93,30654074 4,131119384 4,2357886 0,07277101
+3,9257503 335935,5468 -0,23730537 0,092135884 0 4,1630554 3,891029093 93,31542968 4,131989097 4,2357503 0,07269463
+3,9261131 335967,547 -0,2371908 0,092136525 0 4,1633039 3,891848085 93,32431861 4,132858808 4,2361131 0,0728092
+3,926476 335999,5472 -0,23738177 0,092140347 0 4,1638579 3,89266708 93,33320755 4,13372852 4,236476 0,07261823
+3,9266098 336031,5474 -0,23730537 0,092132062 0 4,1639152 3,893486074 93,34209649 4,134598233 4,2366098 0,07269463
+3,9267817 336063,5475 -0,2371908 0,092136525 0 4,1639724 3,894305069 93,35098543 4,135467945 4,2367817 0,0728092
+3,9270489 336095,5477 -0,23728628 0,092137799 0 4,1643353 3,895124067 93,35987437 4,136337661 4,2370489 0,07271372
+3,9275074 336127,5479 -0,23734358 0,092144169 0 4,1648512 3,895943065 93,3687633 4,137207377 4,2375074 0,07265642
+3,9274309 336159,5481 -0,23734358 0,092151813 0 4,1647744 3,896762064 93,37765224 4,138077094 4,2374309 0,07265642
+3,9276409 336191,5482 -0,23728628 0,092146084 0 4,164927 3,897581063 93,38654118 4,138946812 4,2376409 0,07271372
+3,9279847 336223,5484 -0,23732448 0,092137158 0 4,165309 3,898400061 93,39543012 4,139816528 4,2379847 0,07267552
+3,9281375 336255,5486 -0,23726718 0,092135251 0 4,1654048 3,899219057 93,40431906 4,140686242 4,2381375 0,07273282
+3,928405 336287,5488 -0,2371908 0,092144169 0 4,165596 3,900038053 93,41320799 4,141555956 4,238405 0,0728092
+3,9285386 336319,549 -0,23726718 0,092137158 0 4,1658058 3,900857048 93,42209693 4,142425669 4,2385386 0,07273282
+3,9289396 336351,5491 -0,23734358 0,092133977 0 4,1662831 3,901676043 93,43098587 4,143295382 4,2389396 0,07265642
+3,9290924 336383,5493 -0,23730537 0,092133977 0 4,1663976 3,902495035 93,43987481 4,144165092 4,2390924 0,07269463
+3,9293981 336415,5495 -0,23728628 0,092139073 0 4,1666842 3,903314028 93,44876374 4,145034803 4,2393981 0,07271372
+3,9295509 336447,5497 -0,2371908 0,092133977 0 4,1667418 3,904133021 93,45765268 4,145904514 4,2395509 0,0728092
+3,9298754 336479,5498 -0,23730537 0,092131428 0 4,1671805 3,904952016 93,46654162 4,146774226 4,2398754 0,07269463
+3,9300473 336511,55 -0,23736267 0,092135251 0 4,1674099 3,90577101 93,47543056 4,147643938 4,2400473 0,07263733
+3,9303339 336543,5502 -0,23724809 0,09214098 0 4,167582 3,906590006 93,4843195 4,148513652 4,2403339 0,07275191
+3,9304101 336575,5504 -0,23738177 0,092135251 0 4,1677918 3,907409001 93,49320843 4,149383365 4,2404101 0,07261823
+3,930773 336607,5505 -0,23734358 0,092133977 0 4,1681166 3,908227996 93,50209737 4,150253078 4,240773 0,07265642
+3,9310215 336639,5507 -0,23732448 0,092131428 0 4,1683459 3,90904699 93,51098631 4,15112279 4,2410215 0,07267552
+3,9312696 336671,5509 -0,23741996 0,092132702 0 4,1686897 3,909865983 93,51987525 4,151992501 4,2412696 0,07258004
+3,9313841 336703,5511 -0,23743907 0,092138432 0 4,1688232 3,910684976 93,52876418 4,152862212 4,2413841 0,07256093
+3,9317663 336735,5512 -0,23720989 0,092133336 0 4,1689763 3,91150397 93,53765312 4,153731924 4,2417663 0,07279011
+3,9319379 336767,5514 -0,23736267 0,092141613 0 4,1693006 3,912322961 93,54654206 4,154601632 4,2419379 0,07263733
+3,9322627 336799,5516 -0,23732448 0,092137158 0 4,1695871 3,913141952 93,555431 4,155471341 4,2422627 0,07267552
+3,9322436 336831,5518 -0,23738177 0,092135884 0 4,1696253 3,913960944 93,56431994 4,15634105 4,2422436 0,07261823
+3,9327974 336863,5519 -0,23720989 0,092131428 0 4,1700072 3,914779934 93,57320887 4,157210758 4,2427974 0,07279011
+3,9330075 336895,5521 -0,23720989 0,092139073 0 4,1702175 3,915598925 93,58209781 4,158080467 4,2430075 0,07279011
+3,9331031 336927,5523 -0,23728628 0,092137158 0 4,1703892 3,916417911 93,59098675 4,15895017 4,2431031 0,07271372
+3,9334276 336959,5525 -0,23734358 0,092132062 0 4,1707711 3,917236899 93,59987569 4,159819876 4,2434276 0,07265642
+3,933867 336991,5527 -0,23726718 0,092139706 0 4,171134 3,918055887 93,60876463 4,160689582 4,243867 0,07273282
+3,9340961 337023,5528 -0,23745815 0,092139706 0 4,1715541 3,918874876 93,61765356 4,161559288 4,2440961 0,07254185
+3,934268 337055,553 -0,23738177 0,092141613 0 4,1716499 3,919693866 93,6265425 4,162428996 4,244268 0,07261823
+3,9345737 337087,5532 -0,23724809 0,092142887 0 4,1718216 3,920512861 93,63543144 4,163298708 4,2445737 0,07275191
+3,9346881 337119,5534 -0,23751545 0,092133977 0 4,1722035 3,921331856 93,64432038 4,164168421 4,2446881 0,07248455
+3,9349556 337151,5535 -0,23724809 0,092137158 0 4,1722035 3,92215085 93,65320931 4,165038133 4,2449556 0,07275191
+3,9352992 337183,5537 -0,23724809 0,092132062 0 4,1725473 3,922969846 93,66209825 4,165907847 4,2452992 0,07275191
+3,9354901 337215,5539 -0,23736267 0,092133977 0 4,172853 3,923788841 93,67098719 4,166777561 4,2454901 0,07263733
+3,9357004 337247,5541 -0,23732448 0,092142262 0 4,1730251 3,924607837 93,67987613 4,167647274 4,2457004 0,07267552
+3,936044 337279,5542 -0,23736267 0,092135251 0 4,1734066 3,925426831 93,68876507 4,168516986 4,246044 0,07263733
+3,9364069 337311,5544 -0,23724809 0,092130147 0 4,173655 3,926245823 93,697654 4,169386696 4,2464069 0,07275191
+3,9365406 337343,5546 -0,23722899 0,09212888 0 4,1737695 3,927064818 93,70654294 4,170256409 4,2465406 0,07277101
+3,9367125 337375,5548 -0,23743907 0,092130795 0 4,1741514 3,927883813 93,71543188 4,171126122 4,2467125 0,07256093
+3,9371326 337407,5549 -0,23724809 0,092130795 0 4,1743808 3,928702808 93,72432082 4,171995835 4,2471326 0,07275191
+3,9371901 337439,5551 -0,23734358 0,092135884 0 4,1745338 3,929521801 93,73320975 4,172865546 4,2471901 0,07265642
+3,9376674 337471,5553 -0,23738177 0,092136525 0 4,1750493 3,930340789 93,74209869 4,173735251 4,2476674 0,07261823
+3,9378965 337503,5555 -0,23743907 0,092132702 0 4,1753354 3,931159781 93,75098763 4,174604961 4,2478965 0,07256093
+3,9381831 337535,5556 -0,23741996 0,092141613 0 4,1756029 3,931978775 93,75987657 4,175474673 4,2481831 0,07258004
+3,9384313 337567,5558 -0,23734358 0,092139073 0 4,1757751 3,932797769 93,76876551 4,176344385 4,2484313 0,07265642
+3,9386988 337599,556 -0,23726718 0,09213461 0 4,1759658 3,933616762 93,77765444 4,177214095 4,2486988 0,07273282
+3,9388514 337631,5562 -0,23747726 0,092137158 0 4,1763287 3,934435755 93,78654338 4,178083806 4,2488514 0,07252274
+3,9394243 337663,5563 -0,23736267 0,092137799 0 4,1767869 3,935254749 93,79543232 4,178953518 4,2494243 0,07263733
+3,9393289 337695,5565 -0,23740086 0,092138432 0 4,1767297 3,936073745 93,80432126 4,179823233 4,2493289 0,07259914
+3,9396536 337727,5567 -0,23728628 0,092138432 0 4,17694 3,936892745 93,81321019 4,180692951 4,2496536 0,07271372
+3,9400928 337759,5569 -0,23745815 0,092133336 0 4,1775508 3,937711741 93,82209913 4,181562665 4,2500928 0,07254185
+3,9404557 337791,5571 -0,23745815 0,092129521 0 4,1779137 3,938530736 93,83098807 4,182432378 4,2504557 0,07254185
+3,9404175 337823,5572 -0,23743907 0,092130147 0 4,1778564 3,939349729 93,83987701 4,183302089 4,2504175 0,07256093
+3,9409714 337855,5574 -0,23753455 0,092133977 0 4,1785059 3,940168724 93,84876595 4,184171802 4,2509714 0,07246545
+3,9411814 337887,5576 -0,23738177 0,09212824 0 4,1785631 3,940987718 93,85765488 4,185041513 4,2511814 0,07261823
+3,9413152 337919,5578 -0,23734358 0,092136525 0 4,178659 3,941806709 93,86654382 4,185911222 4,2513152 0,07265642
+3,9415443 337951,5579 -0,23732448 0,092136525 0 4,1788688 3,942625701 93,87543276 4,186780932 4,2515443 0,07267552
+3,9419262 337983,5581 -0,23741996 0,09212824 0 4,1793461 3,943444691 93,8843217 4,18765064 4,2519262 0,07258004
+3,9422126 338015,5583 -0,23743907 0,092136525 0 4,1796517 3,944263682 93,89321064 4,188520348 4,2522126 0,07256093
+3,9425373 338047,5585 -0,23743907 0,092138432 0 4,1799765 3,945082675 93,90209957 4,189390059 4,2525373 0,07256093
+3,9429193 338079,5586 -0,23743907 0,092137799 0 4,1803584 3,945901664 93,91098851 4,190259765 4,2529193 0,07256093
+3,9431293 338111,5588 -0,23743907 0,092133977 0 4,1805682 3,946720654 93,91987745 4,191129473 4,2531293 0,07256093
+3,9433393 338143,559 -0,23749635 0,092138432 0 4,1808357 3,947539645 93,92876639 4,191999182 4,2533393 0,07250365
+3,9435303 338175,5592 -0,23734358 0,092135251 0 4,1808739 3,948358633 93,93765532 4,192868888 4,2535303 0,07265642
+3,9439507 338207,5593 -0,23749635 0,092142262 0 4,181447 3,949177623 93,94654426 4,193738595 4,2539507 0,07250365
+3,9441798 338239,5595 -0,23749635 0,092139073 0 4,1816759 3,949996613 93,9554332 4,194608302 4,2541798 0,07250365
+3,9446955 338271,5597 -0,23740086 0,092131428 0 4,1820965 3,950815604 93,96432214 4,195478011 4,2546955 0,07259914
+3,9449055 338303,5599 -0,23761094 0,092129521 0 4,1825166 3,951634595 93,97321108 4,19634772 4,2549055 0,07238906
+3,9450774 338335,56 -0,23724809 0,092136525 0 4,1823254 3,952453587 93,98210001 4,19721743 4,2550774 0,07275191
+3,9452493 338367,5602 -0,23745815 0,092137158 0 4,1827073 3,953272579 93,99098895 4,19808714 4,2552493 0,07254185
+3,9457457 338399,5604 -0,23743907 0,092135884 0 4,1831846 3,954091569 93,99987789 4,198956848 4,2557457 0,07256093
+3,9459558 338431,5606 -0,23741996 0,092139706 0 4,1833758 3,954910559 94,00876683 4,199826555 4,2559558 0,07258004
+3,9463952 338463,5608 -0,23741996 0,092139073 0 4,183815 3,955729551 94,01765576 4,200696265 4,2563952 0,07258004
+3,9464715 338495,5609 -0,23759183 0,092135884 0 4,1840634 3,956548542 94,0265447 4,201565973 4,2564715 0,07240817
+3,9467962 338527,5611 -0,23749635 0,092135884 0 4,1842923 3,957367533 94,03543364 4,202435683 4,2567962 0,07250365
+3,9470634 338559,5613 -0,23747726 0,092137799 0 4,1845407 3,958186524 94,04432258 4,203305391 4,2570634 0,07252274
+3,9475029 338591,5615 -0,23745815 0,092136525 0 4,1849608 3,959005515 94,05321152 4,2041751 4,2575029 0,07254185
+3,9476938 338623,5616 -0,23743907 0,09213461 0 4,185133 3,959824506 94,06210045 4,205044808 4,2576938 0,07256093
+3,9479611 338655,5618 -0,23753455 0,092135251 0 4,1854959 3,960643494 94,07098939 4,205914514 4,2579611 0,07246545
+3,948324 338687,562 -0,23743907 0,092137799 0 4,1857629 3,961462487 94,07987833 4,206784225 4,258324 0,07256093
+3,9486678 338719,5622 -0,23747726 0,092139073 0 4,1861448 3,962281481 94,08876727 4,207653937 4,2586678 0,07252274
+3,948916 338751,5623 -0,23761094 0,092135251 0 4,1865268 3,963100473 94,09765621 4,208523647 4,258916 0,07238906
+3,9492598 338783,5625 -0,23751545 0,092135884 0 4,1867752 3,963919464 94,10654514 4,209393355 4,2592598 0,07248455
+3,9494698 338815,5627 -0,23757274 0,09213461 0 4,1870427 3,964738458 94,11543408 4,210263067 4,2594698 0,07242726
+3,9497373 338847,5629 -0,23759183 0,09214098 0 4,1873293 3,96555745 94,12432302 4,211132777 4,2597373 0,07240817
+3,9502146 338879,563 -0,23761094 0,092130147 0 4,1878257 3,966376441 94,13321196 4,212002486 4,2602146 0,07238906
+3,9503865 338911,5632 -0,23736267 0,092132702 0 4,1877494 3,967195431 94,14210089 4,212872193 4,2603865 0,07263733
+3,9507685 338943,5634 -0,23763004 0,092132702 0 4,1883984 3,96801442 94,15098983 4,2137419 4,2607685 0,07236996
+3,9509976 338975,5636 -0,23745815 0,092137799 0 4,1884556 3,968833409 94,15987877 4,214611606 4,2609976 0,07254185
+3,9514561 339007,5637 -0,23745815 0,092135884 0 4,1889143 3,969652398 94,16876771 4,215481313 4,2614561 0,07254185
+3,9517424 339039,5639 -0,23747726 0,092138432 0 4,1892195 3,970471391 94,17765665 4,216351024 4,2617424 0,07252274
+3,952029 339071,5641 -0,23753455 0,092133977 0 4,1895638 3,97129038 94,18654558 4,217220731 4,262029 0,07246545
+3,9522009 339103,5643 -0,23753455 0,092142887 0 4,1897354 3,972109369 94,19543452 4,218090437 4,2622009 0,07246545
+3,9526591 339135,5645 -0,23766823 0,09213461 0 4,1903272 3,972928357 94,20432346 4,218960142 4,2626591 0,07233177
+3,9529076 339167,5646 -0,23761094 0,092130795 0 4,1905184 3,973747348 94,2132124 4,219829852 4,2629076 0,07238906
+3,953232 339199,5648 -0,23757274 0,092133977 0 4,190805 3,974566336 94,22210133 4,220699557 4,263232 0,07242726
+3,9534996 339231,565 -0,23757274 0,09213461 0 4,1910725 3,975385327 94,23099027 4,221569265 4,2634996 0,07242726
+3,9538815 339263,5652 -0,23749635 0,092138432 0 4,1913776 3,976204319 94,23987921 4,222438975 4,2638815 0,07250365
+3,9542253 339295,5653 -0,23755364 0,092137799 0 4,1917791 3,977023309 94,24876815 4,223308683 4,2642253 0,07244636
+3,9545307 339327,5655 -0,23757274 0,092131428 0 4,1921034 3,977842297 94,25765709 4,224178388 4,2645307 0,07242726
+3,9547791 339359,5657 -0,23757274 0,092136525 0 4,1923518 3,978661286 94,26654602 4,225048095 4,2647791 0,07242726
+3,9551611 339391,5659 -0,23755364 0,092139073 0 4,1927147 3,979480277 94,27543496 4,225917803 4,2651611 0,07244636
+3,955543 339423,566 -0,23768732 0,09214098 0 4,1932302 3,980299267 94,2843239 4,226787511 4,265543 0,07231268
+3,9558675 339455,5662 -0,23747726 0,092132062 0 4,1933446 3,981118256 94,29321284 4,227657218 4,2658675 0,07252274
+3,9560969 339487,5664 -0,23755364 0,092133336 0 4,1936507 3,981937244 94,30210178 4,228526924 4,2660969 0,07244636
+3,9563069 339519,5666 -0,23763004 0,09214098 0 4,1939368 3,982756233 94,31099071 4,22939663 4,2663069 0,07236996
+3,9568224 339551,5667 -0,23759183 0,092131428 0 4,1944141 3,983575221 94,31987965 4,230266335 4,2668224 0,07240817
+3,957109 339583,5669 -0,23757274 0,092123151 0 4,1946816 3,98439421 94,32876859 4,231136042 4,267109 0,07242726
+3,9572809 339615,5671 -0,23763004 0,092137799 0 4,194911 3,985213199 94,33765753 4,232005748 4,2672809 0,07236996
+3,9577775 339647,5673 -0,23734358 0,092133336 0 4,1951213 3,986032186 94,34654646 4,232875453 4,2677775 0,07265642
+3,9580066 339679,5674 -0,23757274 0,09212888 0 4,1955795 3,986851177 94,3554354 4,233745162 4,2680066 0,07242726
+3,9583886 339711,5676 -0,23753455 0,092130795 0 4,1959233 3,987670166 94,36432434 4,234614868 4,2683886 0,07246545
+3,9589233 339743,5678 -0,23759183 0,09214098 0 4,1965151 3,988489153 94,37321328 4,235484572 4,2689233 0,07240817
+3,9590378 339775,568 -0,23764913 0,092130795 0 4,1966867 3,989308139 94,38210222 4,236354276 4,2690378 0,07235087
+3,9592671 339807,5682 -0,23763004 0,09212824 0 4,196897 3,990127126 94,39099115 4,237223981 4,2692671 0,07236996
+3,9596107 339839,5683 -0,23770642 0,092125699 0 4,1973171 3,990946113 94,39988009 4,238093685 4,2696107 0,07229358
+3,9601073 339871,5685 -0,23763004 0,092137158 0 4,1977372 3,991765099 94,40876903 4,238963388 4,2701073 0,07236996
+3,9603555 339903,5687 -0,23763004 0,092132062 0 4,1979856 3,992584084 94,41765797 4,239833091 4,2703555 0,07236996
+3,9606993 339935,5689 -0,23764913 0,092137799 0 4,1983485 3,993403071 94,4265469 4,240702795 4,2706993 0,07235087
+3,9611003 339967,569 -0,23764913 0,092138432 0 4,1987495 3,994222059 94,43543584 4,241572501 4,2711003 0,07235087
+3,961215 339999,5692 -0,23774461 0,092137799 0 4,1989598 3,995041049 94,44432478 4,242442209 4,271215 0,07225539
+3,9618835 340031,5694 -0,23770642 0,092137158 0 4,1995897 3,995860037 94,45321372 4,243311914 4,2718835 0,07229358
+3,9620552 340063,5696 -0,23780191 0,092129521 0 4,1998572 3,996679025 94,46210266 4,244181619 4,2720552 0,07219809
+3,9623036 340079,008 -0,23766823 0,09214098 0 4,1999717 3,997074144 94,4663911 4,244601207 4,2723036 0,07233177
+3,9622462 340079,0082 -0,23770642 0,092126973 0 4,1999526 3,997074149 94,46639115 4,244601212 4,2722462 0,07229358
+3,9616895 340079,0088 -0,22547193 -0,082367279 0 4,1871614 4,58E-09 94,46639132 4,86E-09 4,2716895 0,08452807
+3,9475601 340111,0089 -0,21591634 -0,092117213 0 4,1634765 0,000818771 94,47528026 0,000869475 4,2575601 0,09408366
+3,9464524 340143,0091 -0,21517155 -0,092114665 0 4,161624 0,001637541 94,4841692 0,001738949 4,2564524 0,09482845
+3,9452875 340175,0093 -0,21486598 -0,092114665 0 4,1601534 0,002456313 94,49305813 0,002608425 4,2552875 0,09513402
+3,9443898 340207,0095 -0,21452224 -0,092112757 0 4,1589122 0,003275081 94,50194707 0,003477897 4,2543898 0,09547776
+3,9437788 340239,0096 -0,21431217 -0,092111476 0 4,1580911 0,004093847 94,51083601 0,004347367 4,2537788 0,09568783
+3,9431484 340271,0098 -0,2140066 -0,092103198 0 4,157155 0,004912614 94,51972495 0,005216838 4,2531484 0,0959934
+3,9423273 340303,01 -0,21383473 -0,09210702 0 4,1561618 0,00573138 94,52861388 0,006086308 4,2523273 0,09616527
+3,9417543 340335,0102 -0,21360557 -0,09210702 0 4,1553597 0,006550145 94,53750282 0,006955776 4,2517543 0,09639443
+3,9413152 340367,0103 -0,21347187 -0,092108928 0 4,1547871 0,007368913 94,54639176 0,007825248 4,2513152 0,09652813
+3,9406848 340399,0105 -0,2133 -0,092103198 0 4,153985 0,008187682 94,5552807 0,008694721 4,2506848 0,0967
+3,9402456 340431,0107 -0,21310903 -0,092114031 0 4,1533546 0,009006451 94,56416964 0,009564194 4,2502456 0,09689097
+3,9395771 340463,0109 -0,21299444 -0,092109561 0 4,1525717 0,009825222 94,57305857 0,010433669 4,2495771 0,09700556
+3,9390807 340495,011 -0,21295625 -0,092105746 0 4,1520371 0,010643989 94,58194751 0,01130314 4,2490807 0,09704375
+3,9385269 340527,0112 -0,21282257 -0,092105106 0 4,1513495 0,011462755 94,59083645 0,01217261 4,2485269 0,09717743
+3,9382021 340559,0114 -0,21268889 -0,092114031 0 4,1508908 0,012281521 94,59972539 0,01304208 4,2482021 0,09731111
+3,9376101 340591,0116 -0,2126507 -0,092103198 0 4,1502609 0,013100287 94,60861432 0,01391155 4,2476101 0,0973493
+3,9371517 340623,0117 -0,21249792 -0,092108928 0 4,1496496 0,013919053 94,61750326 0,014781019 4,2471517 0,09750208
+3,9366744 340655,0119 -0,21249792 -0,092108928 0 4,1491723 0,014737817 94,6263922 0,015650487 4,2466744 0,09750208
+3,9361014 340687,0121 -0,21238333 -0,092105106 0 4,1484847 0,015556583 94,63528114 0,016519957 4,2461014 0,09761667
+3,9358339 340719,0123 -0,21232603 -0,092108928 0 4,14816 0,016375347 94,64417008 0,017389425 4,2458339 0,09767397
+3,9351656 340751,0124 -0,21223055 -0,092110209 0 4,1473961 0,017194112 94,65305901 0,018258893 4,2451656 0,09776945
+3,93486 340783,0126 -0,21223055 -0,092112757 0 4,1470904 0,018012879 94,66194795 0,019128364 4,24486 0,09776945
+3,9345543 340815,0128 -0,21205868 -0,09210702 0 4,1466131 0,018831644 94,67083689 0,019997832 4,2445543 0,09794132
+3,9339623 340847,013 -0,21207778 -0,092109561 0 4,14604 0,019650409 94,67972583 0,020867301 4,2439623 0,09792222
+3,9336569 340879,0132 -0,2118486 -0,092113383 0 4,1455054 0,020469174 94,68861476 0,02173677 4,2436569 0,0981514
+3,9332366 340911,0133 -0,21209687 -0,092111476 0 4,1453333 0,021287941 94,6975037 0,022606241 4,2432366 0,09790313
+3,9327974 340943,0135 -0,21196319 -0,092104472 0 4,1447606 0,022106708 94,70639264 0,023475711 4,2427974 0,09803681
+3,9324346 340975,0137 -0,2118486 -0,092108302 0 4,1442833 0,022925476 94,71528158 0,024345184 4,2424346 0,0981514
+3,9319379 341007,0139 -0,21167673 -0,09210702 0 4,1436148 0,023744244 94,72417052 0,025214656 4,2419379 0,09832327
+3,9316707 341039,014 -0,21173403 -0,092104472 0 4,1434045 0,024563013 94,73305945 0,026084128 4,2416707 0,09826597
+3,9311359 341071,0142 -0,21163854 -0,092115298 0 4,1427746 0,025381783 94,74194839 0,026953602 4,2411359 0,09836146
+3,9306967 341103,0144 -0,21167673 -0,092108928 0 4,1423736 0,026200552 94,75083733 0,027823075 4,2406967 0,09832327
+3,930582 341135,0146 -0,21160035 -0,092107654 0 4,1421824 0,027019321 94,75972627 0,028692548 4,240582 0,09839965
+3,9300663 341167,0147 -0,21148576 -0,09210702 0 4,141552 0,027838086 94,76861521 0,029562017 4,2400663 0,09851424
+3,9296081 341199,0149 -0,21144757 -0,092108928 0 4,1410556 0,028656852 94,77750414 0,030431487 4,2396081 0,09855243
+3,9293599 341231,0151 -0,21133298 -0,092106387 0 4,1406927 0,029475619 94,78639308 0,031300957 4,2393599 0,09866702
+3,9289589 341263,0153 -0,21139027 -0,092110209 0 4,1403494 0,030294385 94,79528202 0,032170427 4,2389589 0,09860973
+3,9287105 341295,0154 -0,21137117 -0,092105746 0 4,1400814 0,031113151 94,80417096 0,033039897 4,2387105 0,09862883
+3,9281375 341327,0156 -0,21121839 -0,092108928 0 4,1393561 0,031931918 94,81305989 0,033909368 4,2381375 0,09878161
+3,9277747 341359,0158 -0,211142 -0,092112117 0 4,1389165 0,032750684 94,82194883 0,034778838 4,2377747 0,098858
+3,9273546 341391,016 -0,21110381 -0,092114031 0 4,1384583 0,033569446 94,83083777 0,035648303 4,2373546 0,09889619
+3,9270873 341423,0161 -0,2111802 -0,092115298 0 4,1382675 0,034388209 94,83972671 0,036517769 4,2370873 0,0988198
+3,9267244 341455,0163 -0,21104652 -0,092107654 0 4,1377711 0,03520697 94,84861565 0,037387234 4,2367244 0,09895348
+3,926266 341487,0165 -0,21102741 -0,092099376 0 4,1372933 0,036025731 94,85750458 0,038256699 4,236266 0,09897259
+3,9259796 341519,0167 -0,21095103 -0,09210065 0 4,1369305 0,036844493 94,86639352 0,039126164 4,2359796 0,09904897
+3,9257886 341551,0169 -0,21095103 -0,092110209 0 4,1367397 0,037663254 94,87528246 0,039995628 4,2357886 0,09904897
+3,9253111 341583,017 -0,21106562 -0,092109561 0 4,1363769 0,038482018 94,8841714 0,040865096 4,2353111 0,09893438
+3,9247763 341615,0172 -0,21097013 -0,092105746 0 4,1357465 0,03930078 94,89306033 0,041734562 4,2347763 0,09902987
+3,9246619 341647,0174 -0,21093193 -0,092106387 0 4,1355939 0,040119545 94,90194927 0,042604031 4,2346619 0,09906807
+3,9242606 341679,0176 -0,21081735 -0,092116579 0 4,135078 0,04093831 94,91083821 0,043473499 4,2342606 0,09918265
+3,9240696 341711,0177 -0,21079825 -0,092108928 0 4,1348677 0,041757072 94,91972715 0,044342965 4,2340696 0,09920175
+3,9235542 341743,0179 -0,21068367 -0,092115939 0 4,1342378 0,042575835 94,92861609 0,045212432 4,2335542 0,09931633
+3,9233439 341775,0181 -0,21081735 -0,092112757 0 4,1341615 0,043394599 94,93750502 0,046081899 4,2333439 0,09918265
+3,9232104 341807,0183 -0,21077916 -0,092110842 0 4,1339893 0,044213364 94,94639396 0,046951368 4,2332104 0,09922084
+3,9227519 341839,0184 -0,21066457 -0,092112757 0 4,1334167 0,045032128 94,9552829 0,047820836 4,2327519 0,09933543
+3,922389 341871,0186 -0,21056908 -0,092113383 0 4,1329579 0,045850892 94,96417184 0,048690303 4,232389 0,09943092
+3,921988 341903,0188 -0,21062638 -0,092106387 0 4,1326146 0,046669655 94,97306078 0,04955977 4,231988 0,09937362
+3,9216826 341935,019 -0,21058819 -0,092102565 0 4,1322708 0,047488418 94,98194971 0,050429236 4,2316826 0,09941181
+3,9214916 341967,0191 -0,2104927 -0,092109561 0 4,1319842 0,04830718 94,99083865 0,051298702 4,2314916 0,0995073
+3,9209759 341999,0193 -0,21053089 -0,092112757 0 4,1315069 0,049125941 94,99972759 0,052168166 4,2309759 0,09946911
+3,920785 342031,0195 -0,21060728 -0,092112117 0 4,131392 0,049944704 95,00861653 0,053037633 4,230785 0,09939272
+3,9203455 342063,0197 -0,21032082 -0,092110209 0 4,1306663 0,050763469 95,01750546 0,053907102 4,2303455 0,09967918
+3,9201546 342095,0198 -0,21037811 -0,092108928 0 4,1305327 0,051582231 95,0263944 0,054776567 4,2301546 0,09962189
+3,9199064 342127,02 -0,21033992 -0,092108302 0 4,1302462 0,052400993 95,03528334 0,055646033 4,2299064 0,09966008
+3,9194672 342159,0202 -0,21035901 -0,092110842 0 4,1298261 0,053219757 95,04417228 0,0565155 4,2294672 0,09964099
+3,9192762 342191,0204 -0,2104163 -0,092107654 0 4,1296926 0,054038521 95,05306122 0,057384968 4,2292762 0,0995837
+3,9191043 342223,0206 -0,21026352 -0,092110842 0 4,1293678 0,054857285 95,06195015 0,058254435 4,2291043 0,09973648
+3,9187033 342255,0207 -0,21026352 -0,09210702 0 4,1289668 0,055676051 95,07083909 0,059123906 4,2287033 0,09973648
+3,9183595 342287,0209 -0,21020624 -0,092110842 0 4,1285658 0,056494814 95,07972803 0,059993372 4,2283595 0,09979376
+3,9181876 342319,0211 -0,21026352 -0,092105746 0 4,1284513 0,057313577 95,08861697 0,060862838 4,2281876 0,09973648
+3,917882 342351,0213 -0,21026352 -0,092114031 0 4,1281457 0,05813234 95,0975059 0,061732305 4,227882 0,09973648
+3,9175766 342383,0214 -0,21024443 -0,092105746 0 4,127821 0,058951104 95,10639484 0,062601773 4,2275766 0,09975557
+3,91729 342415,0216 -0,21011075 -0,09210702 0 4,1274009 0,05976987 95,11528378 0,063471242 4,22729 0,09988925
+3,9169843 342447,0218 -0,21009165 -0,092113383 0 4,1270761 0,060588634 95,12417272 0,06434071 4,2269843 0,09990835
+3,9167361 342479,022 -0,21016803 -0,092112757 0 4,126904 0,061407397 95,13306166 0,065210177 4,2267361 0,09983197
+3,9162588 342511,0221 -0,21007255 -0,092109561 0 4,1263313 0,062226164 95,14195059 0,066079648 4,2262588 0,09992745
+3,9161441 342543,0223 -0,20995797 -0,092113383 0 4,126102 0,063044927 95,15083953 0,066949115 4,2261441 0,10004203
+3,9157622 342575,0225 -0,21001527 -0,092105746 0 4,1257772 0,063863689 95,15972847 0,06781858 4,2257622 0,09998473
+3,9155521 342607,0227 -0,21005346 -0,092112757 0 4,1256056 0,064682456 95,16861741 0,068688051 4,2255521 0,09994654
+3,915323 342639,0228 -0,20997706 -0,092109561 0 4,1252999 0,065501221 95,17750635 0,069557519 4,225323 0,10002294
+3,9150174 342671,023 -0,21001527 -0,092108302 0 4,1250324 0,066319983 95,18639528 0,070426985 4,2250174 0,09998473
+3,9146354 342703,0232 -0,20991978 -0,09210702 0 4,1245551 0,067138745 95,19528422 0,071296451 4,2246354 0,10008022
+3,9144826 342735,0234 -0,20995797 -0,092109561 0 4,1244407 0,067957509 95,20417316 0,072165918 4,2244826 0,10004203
+3,9142153 342767,0235 -0,2097479 -0,092105746 0 4,1239634 0,06877627 95,2130621 0,073035383 4,2242153 0,1002521
+3,9140625 342799,0237 -0,20980519 -0,09210702 0 4,1238675 0,069595033 95,22195103 0,073904849 4,2240625 0,10019481
+3,9137378 342831,0239 -0,20980519 -0,092103198 0 4,1235428 0,070413799 95,23083997 0,074774319 4,2237378 0,10019481
+3,9134705 342863,0241 -0,20986249 -0,092114665 0 4,123333 0,071232568 95,23972891 0,075643792 4,2234705 0,10013751
+3,9131458 342895,0243 -0,20986249 -0,092108928 0 4,1230083 0,072051334 95,24861785 0,076513262 4,2231458 0,10013751
+3,9127829 342927,0244 -0,20980519 -0,092111476 0 4,1225882 0,072870103 95,25750679 0,077382735 4,2227829 0,10019481
+3,9126492 342959,0246 -0,2097097 -0,092111476 0 4,1223588 0,07368887 95,26639572 0,078252206 4,2226492 0,1002903
+3,9122481 342991,0248 -0,20972881 -0,092115298 0 4,1219769 0,074507638 95,27528466 0,079121678 4,2222481 0,10027119
+3,9120572 343023,025 -0,20963332 -0,09210702 0 4,1216903 0,075326406 95,2841736 0,079991149 4,2220572 0,10036668
+3,911809 343055,0251 -0,20961422 -0,092114031 0 4,1214232 0,076145173 95,29306254 0,08086062 4,221809 0,10038578
+3,9115033 343087,0253 -0,20959511 -0,092115298 0 4,1210985 0,076963941 95,30195147 0,081730092 4,2215033 0,10040489
+3,9114652 343119,0255 -0,20949963 -0,092114031 0 4,120965 0,077782711 95,31084041 0,082599566 4,2214652 0,10050037
+3,9110451 343151,0257 -0,20946144 -0,092108928 0 4,1205063 0,078601479 95,31972935 0,083469038 4,2210451 0,10053856
+3,9109876 343183,0258 -0,20953783 -0,092108302 0 4,1205254 0,079420248 95,32861829 0,08433851 4,2209876 0,10046217
+3,9104912 343215,026 -0,20951873 -0,092111476 0 4,1200099 0,080239016 95,33750723 0,085207983 4,2204912 0,10048127
+3,9102428 343247,0262 -0,20948054 -0,092109561 0 4,1197233 0,081057784 95,34639616 0,086077454 4,2202428 0,10051946
+3,9102046 343279,0264 -0,20940414 -0,092109561 0 4,1196089 0,081876551 95,3552851 0,086946925 4,2202046 0,10059586
+3,9097846 343311,0265 -0,20963332 -0,092108302 0 4,1194177 0,082695315 95,36417404 0,087816393 4,2197846 0,10036668
+3,9094789 343343,0267 -0,20959511 -0,092108302 0 4,1190739 0,083514083 95,37306298 0,088685865 4,2194789 0,10040489
+3,9094217 343375,0269 -0,20959511 -0,092110209 0 4,1190166 0,084332849 95,38195192 0,089555335 4,2194217 0,10040489
+3,909116 343407,0271 -0,20944235 -0,092114665 0 4,1185584 0,085151612 95,39084085 0,090424801 4,219116 0,10055765
+3,9090588 343439,0272 -0,20930865 -0,092108928 0 4,1183677 0,085970378 95,39972979 0,091294271 4,2190588 0,10069135
+3,9087341 343471,0274 -0,20942324 -0,092106387 0 4,1181574 0,086789144 95,40861873 0,092163741 4,2187341 0,10057676
+3,9084668 343503,0276 -0,20928957 -0,092104472 0 4,1177564 0,087607912 95,41750767 0,093033213 4,2184668 0,10071043
+3,9081612 343535,0278 -0,20928957 -0,092114031 0 4,1174507 0,088426678 95,4263966 0,093902682 4,2181612 0,10071043
+3,908123 343567,028 -0,20923227 -0,092115298 0 4,1173553 0,089245443 95,43528554 0,094772151 4,218123 0,10076773
+3,907722 343599,0281 -0,20938505 -0,092108928 0 4,1171069 0,090064208 95,44417448 0,095641619 4,217722 0,10061495
+3,9075501 343631,0283 -0,20932776 -0,09210702 0 4,116878 0,090882976 95,45306342 0,096511091 4,2175501 0,10067224
+3,9073782 343663,0285 -0,20913678 -0,092109561 0 4,1165152 0,091701744 95,46195236 0,097380563 4,2173782 0,10086322
+3,90713 343695,0287 -0,20927046 -0,092110209 0 4,1164002 0,092520509 95,47084129 0,098250033 4,21713 0,10072954
+3,9069009 343727,0288 -0,20911768 -0,092114665 0 4,1160188 0,093339276 95,47973023 0,099119503 4,2169009 0,10088232
+3,9064806 343759,029 -0,20913678 -0,092114665 0 4,1156173 0,094158044 95,48861917 0,099988976 4,2164806 0,10086322
+3,9062705 343791,0292 -0,2090413 -0,092114665 0 4,1153116 0,09497681 95,49750811 0,100858445 4,2162705 0,1009587
+3,9060986 343823,0294 -0,20932776 -0,092107654 0 4,1154265 0,095795576 95,50639704 0,101727915 4,2160986 0,10067224
+3,9060414 343855,0295 -0,20911768 -0,092112117 0 4,115159 0,096614342 95,51528598 0,102597384 4,2160414 0,10088232
+3,9057548 343887,0297 -0,20911768 -0,092103831 0 4,1148725 0,097433108 95,52417492 0,103466855 4,2157548 0,10088232
+3,9055257 343919,0299 -0,20921317 -0,092114665 0 4,1147389 0,098251874 95,53306386 0,104336324 4,2155257 0,10078683
+3,9052393 343951,0301 -0,20911768 -0,092112757 0 4,114357 0,099070635 95,5419528 0,105205788 4,2152393 0,10088232
+3,9051628 343983,0302 -0,20902219 -0,092114665 0 4,1141849 0,099889398 95,55084173 0,106075255 4,2151628 0,10097781
+3,9048383 344015,0304 -0,20888852 -0,092113383 0 4,1137266 0,100708162 95,55973067 0,106944723 4,2148383 0,10111148
+3,9047809 344047,0306 -0,20906039 -0,092106387 0 4,1138411 0,101526926 95,56861961 0,107814191 4,2147809 0,10093961
+3,9043226 344079,0308 -0,208984 -0,092110842 0 4,1133065 0,102345691 95,57750855 0,108683659 4,2143226 0,101016
+3,9042461 344111,0309 -0,20907949 -0,092110842 0 4,1133256 0,103164458 95,58639748 0,10955313 4,2142461 0,10092051
+3,9039598 344143,0311 -0,20892671 -0,092109561 0 4,1128864 0,103983224 95,59528642 0,1104226 4,2139598 0,10107329
+3,9037116 344175,0313 -0,20886941 -0,092112757 0 4,1125808 0,104801991 95,60417536 0,11129207 4,2137116 0,10113059
+3,903616 344207,0315 -0,208984 -0,092110842 0 4,1125998 0,10562076 95,6130643 0,112161543 4,213616 0,101016
+3,903234 344239,0317 -0,20883122 -0,092114665 0 4,1120653 0,10643953 95,62195324 0,113031017 4,213234 0,10116878
+3,9032531 344271,0318 -0,20890762 -0,092111476 0 4,1121607 0,107258301 95,63084217 0,113900493 4,2132531 0,10109238
+3,9029667 344303,032 -0,20883122 -0,092111476 0 4,1117978 0,108077074 95,63973111 0,11476997 4,2129667 0,10116878
+3,9026039 344335,0322 -0,20892671 -0,092112757 0 4,1115308 0,108895845 95,64862005 0,115639444 4,2126039 0,10107329
+3,9025655 344367,0324 -0,208984 -0,092109561 0 4,1115494 0,109714615 95,65750899 0,116508919 4,2125655 0,101016
+3,9023745 344399,0325 -0,20877393 -0,09210065 0 4,1111484 0,110533381 95,66639793 0,117378389 4,2123745 0,10122607
+3,9021454 344431,0327 -0,20875484 -0,092109561 0 4,1109004 0,111352148 95,67528686 0,118247859 4,2121454 0,10124516
+3,9017444 344463,0329 -0,20886941 -0,092112117 0 4,1106138 0,112170917 95,6841758 0,119117333 4,2117444 0,10113059
+3,9016681 344495,0331 -0,20869754 -0,092113383 0 4,1103654 0,112989688 95,69306474 0,119986808 4,2116681 0,10130246
+3,9014771 344527,0332 -0,20867844 -0,092105106 0 4,1101556 0,113808455 95,70195368 0,120856279 4,2114771 0,10132156
+3,9013052 344559,0334 -0,20864025 -0,092108302 0 4,1099453 0,114627221 95,71084261 0,121725748 4,2113052 0,10135975
+3,9011333 344591,0336 -0,20867844 -0,092112117 0 4,1098118 0,115445987 95,71973155 0,122595217 4,2111333 0,10132156
+3,9009423 344623,0338 -0,20850657 -0,092113383 0 4,1094489 0,116264752 95,72862049 0,123464687 4,2109423 0,10149343
+3,9006939 344655,0339 -0,20869754 -0,092105746 0 4,1093912 0,117083517 95,73750943 0,124334156 4,2106939 0,10130246
+3,9004838 344687,0341 -0,20862116 -0,092105746 0 4,1091051 0,117902281 95,74639837 0,125203623 4,2104838 0,10137884
+3,9004266 344719,0343 -0,20856386 -0,092117853 0 4,1089907 0,118721048 95,7552873 0,126073094 4,2104266 0,10143614
+3,9001594 344751,0345 -0,20860206 -0,092117213 0 4,1087613 0,119539813 95,76417624 0,126942563 4,2101594 0,10139794
+3,8999491 344783,0346 -0,20865935 -0,092110209 0 4,1086082 0,120358575 95,77306518 0,127812028 4,2099491 0,10134065
+3,8998156 344815,0348 -0,20865935 -0,092114665 0 4,1084747 0,121177335 95,78195412 0,128681491 4,2098156 0,10134065
+3,8997009 344847,035 -0,20850657 -0,092110842 0 4,1082072 0,121996097 95,79084305 0,129550957 4,2097009 0,10149343
+3,8994145 344879,0352 -0,20860206 -0,092112757 0 4,1080165 0,12281486 95,79973199 0,130420424 4,2094145 0,10139794
+3,8992043 344911,0353 -0,20865935 -0,092110209 0 4,1078634 0,123633622 95,80862093 0,131289889 4,2092043 0,10134065
+3,898937 344943,0355 -0,20846838 -0,092107654 0 4,1074052 0,124452383 95,81750987 0,132159353 4,208937 0,10153162
+3,8987269 344975,0357 -0,20856386 -0,092105746 0 4,1072907 0,125271146 95,82639881 0,13302882 4,2087269 0,10143614
+3,8985932 345007,0359 -0,20854476 -0,092114031 0 4,1071382 0,126089908 95,83528774 0,133898286 4,2085932 0,10145524
+3,8984213 345039,0361 -0,20844927 -0,092106387 0 4,1068707 0,126908672 95,84417668 0,134767753 4,2084213 0,10155073
+3,8983068 345071,0362 -0,20864025 -0,092107654 0 4,1069469 0,127727435 95,85306562 0,13563722 4,2083068 0,10135975
+3,8981349 345103,0364 -0,20835379 -0,092104472 0 4,1064887 0,128546198 95,86195456 0,136506686 4,2081349 0,10164621
+3,897944 345135,0366 -0,20839198 -0,092113383 0 4,1063361 0,129364961 95,8708435 0,137376153 4,207944 0,10160802
+3,897562 345167,0368 -0,20839198 -0,092114031 0 4,1059542 0,130183723 95,87973243 0,138245618 4,207562 0,10160802
+3,8973711 345199,0369 -0,20841108 -0,092105746 0 4,105782 0,131002487 95,88862137 0,139115086 4,2073711 0,10158892
+3,897352 345231,0371 -0,20850657 -0,092110842 0 4,1058583 0,131821252 95,89751031 0,139984555 4,207352 0,10149343
+3,8971226 345263,0373 -0,20843019 -0,092111476 0 4,1055527 0,132640017 95,90639925 0,140854024 4,2071226 0,10156981
+3,8968554 345295,0375 -0,20841108 -0,092110209 0 4,1052666 0,133458783 95,91528818 0,141723493 4,2068554 0,10158892
+3,8967407 345327,0376 -0,20816281 -0,092108928 0 4,1049037 0,13427755 95,92417712 0,142592964 4,2067407 0,10183719
+3,8965688 345359,0378 -0,20837289 -0,092107654 0 4,1049418 0,135096316 95,93306606 0,143462434 4,2065688 0,10162711
+3,8964353 345391,038 -0,2083347 -0,092109561 0 4,1047702 0,135915084 95,941955 0,144331906 4,2064353 0,1016653
+3,8963587 345423,0382 -0,20839198 -0,092108928 0 4,1047506 0,136733847 95,95084394 0,145201373 4,2063587 0,10160802
+3,8961678 345455,0383 -0,2083347 -0,092117213 0 4,1045027 0,137552612 95,95973287 0,146070841 4,2061678 0,1016653
+3,895843 345487,0385 -0,2083347 -0,092115298 0 4,104178 0,138371376 95,96862181 0,146940309 4,205843 0,1016653
+3,8959386 345519,0387 -0,20823921 -0,092110209 0 4,104178 0,139190143 95,97751075 0,147809779 4,2059386 0,10176079
+3,8956521 345551,0389 -0,20835379 -0,092107654 0 4,1040058 0,140008904 95,98639969 0,148679244 4,2056521 0,10164621
+3,895442 345583,039 -0,2082583 -0,092114665 0 4,1037002 0,140827668 95,99528862 0,149548712 4,205442 0,1017417
+3,8953657 345615,0392 -0,2083156 -0,092109561 0 4,1036811 0,141646432 96,00417756 0,150418179 4,2053657 0,1016844
+3,8951938 345647,0394 -0,20802914 -0,092114665 0 4,1032228 0,142465198 96,0130665 0,151287649 4,2051938 0,10197086
+3,8948882 345679,0396 -0,20829649 -0,092110842 0 4,1031847 0,143283963 96,02195544 0,152157118 4,2048882 0,10170351
+3,8949456 345711,0398 -0,2082583 -0,092102565 0 4,1032038 0,144102727 96,03084438 0,153026585 4,2049456 0,1017417
+3,8946972 345743,0399 -0,20814373 -0,09210702 0 4,1028409 0,144921493 96,03973331 0,153896055 4,2046972 0,10185627
+3,8944871 345775,0401 -0,20822011 -0,092115298 0 4,1027074 0,145740258 96,04862225 0,154765524 4,2044871 0,10177989
+3,8944681 345807,0403 -0,20812462 -0,09210702 0 4,1025925 0,146559022 96,05751119 0,155634992 4,2044681 0,10187538
+3,8942199 345839,0405 -0,2082774 -0,092110842 0 4,1024971 0,147377785 96,06640013 0,156504458 4,2042199 0,1017226
+3,8940098 345871,0406 -0,20797184 -0,092114665 0 4,1019816 0,14819655 96,07528907 0,157373927 4,2040098 0,10202816
+3,8938189 345903,0408 -0,20818192 -0,092106387 0 4,1020007 0,149015315 96,084178 0,158243396 4,2038189 0,10181808
+3,8938379 345935,041 -0,20814373 -0,092114665 0 4,1019816 0,149834081 96,09306694 0,159112866 4,2038379 0,10185627
+3,8935513 345967,0412 -0,20812462 -0,092112757 0 4,101676 0,150652846 96,10195588 0,159982334 4,2035513 0,10187538
+3,8933794 345999,0413 -0,20812462 -0,092113383 0 4,1015038 0,15147161 96,11084482 0,160851802 4,2033794 0,10187538
+3,8931503 346031,0415 -0,20799094 -0,092116579 0 4,1011415 0,152290377 96,11973375 0,161721273 4,2031503 0,10200906
+3,8929403 346063,0417 -0,20810552 -0,092112757 0 4,1010456 0,153109144 96,12862269 0,162590743 4,2029403 0,10189448
+3,8928256 346095,0419 -0,20820101 -0,092117213 0 4,1010265 0,153927908 96,13751163 0,163460211 4,2028256 0,10179899
+3,8927493 346127,042 -0,20806733 -0,092110842 0 4,1008167 0,15474667 96,14640057 0,164329677 4,2027493 0,10193267
+3,8927493 346159,0422 -0,20781906 -0,092108928 0 4,1005683 0,155565433 96,15528951 0,165199144 4,2027493 0,10218094
+3,8923864 346191,0424 -0,20781906 -0,09210702 0 4,1002054 0,156384194 96,16417844 0,166068608 4,2023864 0,10218094
+3,8922145 346223,0426 -0,20781906 -0,092110842 0 4,1000338 0,157202954 96,17306738 0,166938071 4,2022145 0,10218094
+3,8921192 346255,0427 -0,20789546 -0,092112757 0 4,1000147 0,158021716 96,18195632 0,167807536 4,2021192 0,10210454
+3,8919663 346287,0429 -0,20795275 -0,092112117 0 4,0999193 0,158840478 96,19084526 0,168677002 4,2019663 0,10204725
+3,8919089 346319,0431 -0,20806733 -0,092107654 0 4,0999761 0,159659241 96,19973419 0,169546468 4,2019089 0,10193267
+3,8916416 346351,0433 -0,20791455 -0,092111476 0 4,099556 0,160478004 96,20862313 0,170415935 4,2016416 0,10208545
+3,8914506 346383,0435 -0,20793365 -0,092109561 0 4,0993843 0,161296768 96,21751207 0,171285403 4,2014506 0,10206635
+3,891355 346415,0436 -0,20785727 -0,092103198 0 4,0992122 0,162115534 96,22640101 0,172154873 4,201355 0,10214273
+3,8912978 346447,0438 -0,20781906 -0,092105746 0 4,0991168 0,162934301 96,23528995 0,173024344 4,2012978 0,10218094
+3,8909159 346479,044 -0,20783816 -0,092112117 0 4,0987539 0,163753068 96,24417888 0,173893814 4,2009159 0,10216184
+3,8908396 346511,0442 -0,20801003 -0,092113383 0 4,0988498 0,164571834 96,25306782 0,174763285 4,2008396 0,10198997
+3,890763 346543,0443 -0,20789546 -0,092113383 0 4,0986586 0,165390601 96,26195676 0,175632755 4,200763 0,10210454
+3,8906677 346575,0445 -0,20789546 -0,092110842 0 4,0985632 0,166209368 96,2708457 0,176502226 4,2006677 0,10210454
+3,8904576 346607,0447 -0,20779997 -0,092102565 0 4,0982575 0,167028135 96,27973464 0,177371697 4,2004576 0,10220003
+3,8904192 346639,0449 -0,20791455 -0,092110209 0 4,0983338 0,1678469 96,28862357 0,178241165 4,2004192 0,10208545
+3,8902667 346671,045 -0,20779997 -0,092110209 0 4,0980668 0,168665661 96,29751251 0,17911063 4,2002667 0,10220003
+3,8899992 346703,0452 -0,20781906 -0,092112757 0 4,0978184 0,169484422 96,30640145 0,179980095 4,1999992 0,10218094
+3,8899038 346735,0454 -0,20785727 -0,092106387 0 4,0977612 0,170303184 96,31529039 0,18084956 4,1999038 0,10214273
+3,8898463 346767,0456 -0,20772357 -0,092105106 0 4,0975699 0,171121948 96,32417932 0,181719028 4,1998463 0,10227643
+3,8896172 346799,0457 -0,20789546 -0,092106387 0 4,0975127 0,171940709 96,33306826 0,182588492 4,1996172 0,10210454
+3,8895028 346831,0459 -0,20783816 -0,092110209 0 4,0973411 0,172759468 96,3419572 0,183457955 4,1995028 0,10216184
+3,8893499 346863,0461 -0,20776178 -0,092105746 0 4,0971117 0,173578227 96,35084614 0,184327416 4,1993499 0,10223822
+3,8892353 346895,0463 -0,20776178 -0,092112117 0 4,0969973 0,174396985 96,35973508 0,185196878 4,1992353 0,10223822
+3,8890634 346927,0464 -0,20768538 -0,092106387 0 4,0967488 0,175215744 96,36862401 0,186066341 4,1990634 0,10231462
+3,8889105 346959,0466 -0,20791455 -0,092109561 0 4,0968251 0,176034505 96,37751295 0,186935805 4,1989105 0,10208545
+3,8887386 346991,0468 -0,20772357 -0,092108302 0 4,0964622 0,176853267 96,38640189 0,18780527 4,1987386 0,10227643
+3,8885477 347023,047 -0,20779997 -0,092112117 0 4,0963478 0,177672028 96,39529083 0,188674734 4,1985477 0,10220003
+3,8884332 347055,0472 -0,20766629 -0,092105106 0 4,0960994 0,178490787 96,40417976 0,189544197 4,1984332 0,10233371
+3,8884141 347087,0473 -0,20758989 -0,09210702 0 4,096004 0,179309547 96,4130687 0,19041366 4,1984141 0,10241011
+3,888185 347119,0475 -0,20762809 -0,092107654 0 4,0958133 0,180128305 96,42195764 0,191283122 4,198185 0,10237191
+3,8880894 347151,0477 -0,20768538 -0,092117853 0 4,0957747 0,180947067 96,43084658 0,192152588 4,1980894 0,10231462
+3,8878984 347183,0479 -0,20770448 -0,092112117 0 4,095603 0,18176583 96,43973552 0,193022054 4,1978984 0,10229552
+3,8877838 347215,048 -0,20764719 -0,092108302 0 4,0954309 0,182584592 96,44862445 0,193891519 4,1977838 0,10235281
+3,8876693 347247,0482 -0,20785727 -0,092108302 0 4,0955267 0,183403357 96,45751339 0,194760988 4,1976693 0,10214273
+3,8876503 347279,0484 -0,20764719 -0,092113383 0 4,0952973 0,184222123 96,46640233 0,195630458 4,1976503 0,10235281
+3,8874784 347311,0486 -0,20772357 -0,092104472 0 4,095202 0,185040888 96,47529127 0,196499927 4,1974784 0,10227643
+3,8873255 347343,0487 -0,2075326 -0,092116579 0 4,0948582 0,185859653 96,4841802 0,197369396 4,1973255 0,1024674
+3,8870389 347375,0489 -0,20770448 -0,092111476 0 4,0947433 0,186678416 96,49306914 0,198238862 4,1970389 0,10229552
+3,8870199 347407,0491 -0,20758989 -0,092112117 0 4,0946097 0,187497181 96,50195808 0,19910833 4,1970199 0,10241011
+3,8868864 347439,0493 -0,20762809 -0,092111476 0 4,0945144 0,188315946 96,51084702 0,199977799 4,1968864 0,10237191
+3,8868289 347471,0494 -0,20772357 -0,092108302 0 4,0945525 0,189134713 96,51973596 0,20084727 4,1968289 0,10227643
+3,886657 347503,0496 -0,20757081 -0,092116579 0 4,0942278 0,189953476 96,52862489 0,201716737 4,196657 0,10242919
+3,886657 347535,0498 -0,2075326 -0,092103831 0 4,0941896 0,19077224 96,53751383 0,202586205 4,196657 0,1024674
+3,886447 347567,05 -0,20758989 -0,092113383 0 4,0940371 0,191591005 96,54640277 0,203455673 4,196447 0,10241011
+3,8862751 347599,0501 -0,2075326 -0,092110209 0 4,0938077 0,192409771 96,55529171 0,204325143 4,1962751 0,1024674
+3,8861606 347631,0503 -0,2075517 -0,092108302 0 4,0937123 0,193228534 96,56418065 0,20519461 4,1961606 0,1024483
+3,8861225 347663,0505 -0,20749441 -0,092111476 0 4,093617 0,194047298 96,57306958 0,206064077 4,1961225 0,10250559
+3,8860078 347695,0507 -0,20751351 -0,092112117 0 4,0935211 0,194866062 96,58195852 0,206933545 4,1960078 0,10248649
+3,8857403 347727,0509 -0,20745622 -0,092115939 0 4,0931964 0,195684825 96,59084746 0,207803012 4,1957403 0,10254378
+3,8856831 347759,051 -0,2075517 -0,092108928 0 4,0932345 0,196503592 96,5997364 0,208672482 4,1956831 0,1024483
+3,8856831 347791,0512 -0,20758989 -0,092109561 0 4,0932732 0,197322356 96,60862533 0,20954195 4,1956831 0,10241011
+3,8855877 347823,0514 -0,20749441 -0,092107654 0 4,093082 0,198141121 96,61751427 0,210411419 4,1955877 0,10250559
+3,8853583 347855,0516 -0,20762809 -0,092109561 0 4,0929866 0,198959884 96,62640321 0,211280885 4,1953583 0,10237191
+3,885282 347887,0517 -0,2075517 -0,092114665 0 4,0928335 0,199778646 96,63529215 0,212150351 4,195282 0,1024483
+3,8850911 347919,0519 -0,20749441 -0,092102565 0 4,0925856 0,200597408 96,64418109 0,213019816 4,1950911 0,10250559
+3,8849192 347951,0521 -0,20745622 -0,09210702 0 4,0923753 0,20141617 96,65307002 0,213889282 4,1949192 0,10254378
+3,8848238 347983,0523 -0,20726524 -0,092114665 0 4,0920892 0,202234932 96,66195896 0,214758748 4,1948238 0,10273476
+3,8846328 348015,0524 -0,2075517 -0,092105106 0 4,0921845 0,203053695 96,6708479 0,215628214 4,1946328 0,1024483
+3,8845181 348047,0526 -0,20743711 -0,092112117 0 4,0919552 0,20387246 96,67973684 0,216497683 4,1945181 0,10256289
+3,8845181 348079,0528 -0,20726524 -0,092116579 0 4,0917835 0,204691225 96,68862577 0,217367152 4,1945181 0,10273476
+3,8844225 348111,053 -0,20734163 -0,092112757 0 4,091764 0,205509991 96,69751471 0,218236621 4,1944225 0,10265837
+3,8841743 348143,0531 -0,20741802 -0,092108302 0 4,0915923 0,206328758 96,70640365 0,219106092 4,1941743 0,10258198
+3,8841934 348175,0533 -0,20734163 -0,092110842 0 4,0915351 0,207147526 96,71529259 0,219975564 4,1941934 0,10265837
+3,8840215 348207,0535 -0,20730343 -0,092114665 0 4,0913248 0,207966295 96,72418153 0,220845037 4,1940215 0,10269657
+3,8838496 348239,0537 -0,20716976 -0,092108928 0 4,0910192 0,208785066 96,73307046 0,221714512 4,1938496 0,10283024
+3,8837924 348271,0538 -0,20730343 -0,092109561 0 4,0910959 0,209603841 96,7419594 0,222583991 4,1937924 0,10269657
+3,8836205 348303,054 -0,20732254 -0,092112117 0 4,0909429 0,210422615 96,75084834 0,223453469 4,1936205 0,10267746
+3,8834486 348335,0542 -0,20747532 -0,092113383 0 4,0909238 0,211241391 96,75973728 0,22432295 4,1934486 0,10252468
+3,8833342 348367,0544 -0,20745622 -0,092115939 0 4,0907903 0,212060166 96,76862622 0,225192429 4,1933342 0,10254378
+3,8832958 348399,0546 -0,20737983 -0,092116579 0 4,0906758 0,212878939 96,77751515 0,226061906 4,1932958 0,10262017
+3,8831432 348431,0547 -0,20741802 -0,092110209 0 4,0905614 0,213697711 96,78640409 0,226931383 4,1931432 0,10258198
+3,8830857 348463,0549 -0,20730343 -0,092108928 0 4,0903893 0,214516484 96,79529303 0,22780086 4,1930857 0,10269657
+3,8829138 348495,0551 -0,20739892 -0,092117213 0 4,090313 0,215335256 96,80418197 0,228670336 4,1929138 0,10260108
+3,8829138 348527,0553 -0,20726524 -0,092114031 0 4,090179 0,216154025 96,8130709 0,229539809 4,1929138 0,10273476
+3,8826656 348559,0554 -0,20736073 -0,092110209 0 4,0900264 0,216972795 96,82195984 0,230409282 4,1926656 0,10263927
+3,8825893 348591,0556 -0,20722705 -0,092112117 0 4,0898166 0,217791564 96,83084878 0,231278755 4,1925893 0,10277295
+3,8825893 348623,0558 -0,20724614 -0,092110842 0 4,0898356 0,218610333 96,83973772 0,232148229 4,1925893 0,10275386
+3,8824174 348655,056 -0,20734163 -0,092108928 0 4,0897589 0,219429101 96,84862666 0,233017701 4,1924174 0,10265837
+3,8822646 348687,0561 -0,20726524 -0,092110209 0 4,08953 0,22024787 96,85751559 0,233887174 4,1922646 0,10273476
+3,8822646 348719,0563 -0,20716976 -0,092110842 0 4,0894341 0,221066637 96,86640453 0,234756645 4,1922646 0,10283024
+3,881959 348751,0565 -0,20722705 -0,092112117 0 4,0891862 0,221885402 96,87529347 0,235626114 4,191959 0,10277295
+3,8820546 348783,0567 -0,20728435 -0,092101924 0 4,0893388 0,222704168 96,88418241 0,236495583 4,1920546 0,10271565
+3,8818061 348815,0568 -0,20716976 -0,092113383 0 4,0889759 0,223522933 96,89307134 0,237365051 4,1918061 0,10283024
+3,8817489 348847,057 -0,20715065 -0,092111476 0 4,0888996 0,224341698 96,90196028 0,23823452 4,1917489 0,10284935
+3,881577 348879,0572 -0,20715065 -0,092109561 0 4,0887275 0,225160463 96,91084922 0,239103989 4,191577 0,10284935
+3,8816917 348911,0574 -0,20718886 -0,092110842 0 4,0888805 0,225979225 96,91973816 0,239973455 4,1916917 0,10281114
+3,8815007 348943,0575 -0,20697878 -0,092112757 0 4,0884795 0,22679799 96,9286271 0,240842924 4,1915007 0,10302122
+3,8811378 348975,0577 -0,20705517 -0,092114665 0 4,0881929 0,227616756 96,93751603 0,241712393 4,1911378 0,10294483
+3,881367 349007,0579 -0,20703608 -0,092108302 0 4,0884032 0,228435522 96,94640497 0,242581863 4,191367 0,10296392
+3,8812332 349039,0581 -0,20724614 -0,092111476 0 4,0884795 0,229254291 96,95529391 0,243451336 4,1912332 0,10275386
+3,8808513 349071,0583 -0,20713156 -0,092111476 0 4,0879827 0,230073059 96,96418285 0,244320808 4,1908513 0,10286844
+3,8809087 349103,0584 -0,20716976 -0,092110209 0 4,0880785 0,230891824 96,97307179 0,245190277 4,1909087 0,10283024
+3,8809278 349135,0586 -0,20697878 -0,092112117 0 4,0879064 0,231710588 96,98196072 0,246059744 4,1909278 0,10302122
+3,8806412 349167,0588 -0,20718886 -0,092109561 0 4,0878301 0,232529351 96,99084966 0,246929211 4,1906412 0,10281114
+3,8806794 349199,059 -0,20713156 -0,092115298 0 4,087811 0,233348113 96,9997386 0,247798677 4,1906794 0,10286844
+3,8806031 349231,0591 -0,20709337 -0,092110209 0 4,0876966 0,234166875 97,00862754 0,248668142 4,1906031 0,10290663
+3,8804121 349263,0593 -0,20713156 -0,092107654 0 4,0875435 0,234985639 97,01751647 0,249537609 4,1904121 0,10286844
+3,880393 349295,0595 -0,20695968 -0,092114031 0 4,0873528 0,235804402 97,02640541 0,250407076 4,190393 0,10304032
+3,8802783 349327,0597 -0,20703608 -0,09210702 0 4,0873146 0,236623168 97,03529435 0,251276546 4,1902783 0,10296392
+3,8801639 349359,0598 -0,20701697 -0,092113383 0 4,0871811 0,237441936 97,04418329 0,252146018 4,1901639 0,10298303
+3,8799539 349391,06 -0,20711246 -0,092114665 0 4,0870662 0,238260703 97,05307223 0,253015489 4,1899539 0,10288754
+3,8798583 349423,0602 -0,20711246 -0,092112757 0 4,0869708 0,239079467 97,06196116 0,253884956 4,1898583 0,10288754
+3,8798583 349455,0604 -0,20695968 -0,092112117 0 4,0868177 0,239898234 97,0708501 0,254754427 4,1898583 0,10304032
+3,8797054 349487,0605 -0,20709337 -0,092111476 0 4,0867987 0,240717003 97,07973904 0,2556239 4,1897054 0,10290663
+3,8794954 349519,0607 -0,20694059 -0,092110209 0 4,0864358 0,241535772 97,08862798 0,256493373 4,1894954 0,10305941
+3,8794763 349551,0609 -0,20695968 -0,092109561 0 4,0864358 0,242354541 97,09751691 0,257362846 4,1894763 0,10304032
+3,8793807 349583,0611 -0,20707427 -0,092112117 0 4,0864549 0,243173308 97,10640585 0,258232317 4,1893807 0,10292573
+3,8793426 349615,0612 -0,20705517 -0,092114665 0 4,0863976 0,243992075 97,11529479 0,259101787 4,1893426 0,10294483
+3,8791325 349647,0614 -0,20690238 -0,092111476 0 4,0860348 0,244810842 97,12418373 0,259971259 4,1891325 0,10309762
+3,8790944 349679,0616 -0,20705517 -0,092104472 0 4,0861497 0,245629608 97,13307267 0,260840729 4,1890944 0,10294483
+3,8790181 349711,0618 -0,20697878 -0,092110842 0 4,0859966 0,246448372 97,1419616 0,261710196 4,1890181 0,10302122
+3,8788843 349743,0619 -0,20694059 -0,092110209 0 4,085825 0,247267135 97,15085054 0,262579662 4,1888843 0,10305941
+3,8788078 349775,0621 -0,20692149 -0,092107654 0 4,0857291 0,248085901 97,15973948 0,263449132 4,1888078 0,10307851
+3,8786552 349807,0623 -0,2068833 -0,092108928 0 4,0855384 0,248904665 97,16862842 0,2643186 4,1886552 0,1031167
+3,8786552 349839,0625 -0,20695968 -0,092111476 0 4,0856147 0,249723431 97,17751736 0,26518807 4,1886552 0,10304032
+3,8784068 349871,0627 -0,20697878 -0,092107654 0 4,0853853 0,250542198 97,18640629 0,26605754 4,1884068 0,10302122
+3,8784068 349903,0628 -0,20692149 -0,092107654 0 4,0853281 0,251360965 97,19529523 0,266927012 4,1884068 0,10307851
+3,8782732 349935,063 -0,20694059 -0,092109561 0 4,0852137 0,252179736 97,20418417 0,267796486 4,1882732 0,10305941
+3,8782349 349967,0632 -0,20694059 -0,092112117 0 4,0851755 0,252998507 97,21307311 0,268665962 4,1882349 0,10305941
+3,8781013 349999,0634 -0,20686419 -0,092105746 0 4,0849657 0,253817278 97,22196204 0,269535436 4,1881013 0,10313581
+3,8780248 350031,0635 -0,20697878 -0,092112117 0 4,0850034 0,25463605 97,23085098 0,270404912 4,1880248 0,10302122
+3,8780439 350063,0637 -0,20690238 -0,092110209 0 4,0849462 0,25545482 97,23973992 0,271274387 4,1880439 0,10309762
+3,8779104 350095,0639 -0,20686419 -0,092110209 0 4,0847745 0,256273592 97,24862886 0,272143863 4,1879104 0,10313581
+3,8777957 350127,0641 -0,20678781 -0,092110842 0 4,0845833 0,257092365 97,2575178 0,27301334 4,1877957 0,10321219
+3,8776619 350159,0642 -0,20669232 -0,092113383 0 4,0843544 0,257911138 97,26640673 0,273882817 4,1876619 0,10330768
+3,8773947 350191,0644 -0,2068451 -0,092110209 0 4,08424 0,258729905 97,27529567 0,274752288 4,1873947 0,1031549
+3,8774137 350223,0646 -0,20690238 -0,092113383 0 4,0843163 0,259548675 97,28418461 0,275621762 4,1874137 0,10309762
+3,8773947 350255,0648 -0,20676871 -0,092110842 0 4,0841632 0,260367446 97,29307355 0,276491238 4,1873947 0,10323129
+3,8773181 350287,0649 -0,206826 -0,092122309 0 4,0841441 0,261186217 97,30196248 0,277360713 4,1873181 0,103174
+3,8771465 350319,0651 -0,20676871 -0,092114031 0 4,0839152 0,262004988 97,31085142 0,278230187 4,1871465 0,10323129
+3,8771465 350351,0653 -0,20663503 -0,092115939 0 4,0837817 0,262823757 97,31974036 0,27909966 4,1871465 0,10336497
+3,8769362 350383,0655 -0,20676871 -0,092109561 0 4,0837049 0,263642527 97,3286293 0,279969134 4,1869362 0,10323129
+3,8768599 350415,0656 -0,2068451 -0,092110842 0 4,0837049 0,264461297 97,33751824 0,280838609 4,1868599 0,1031549
+3,8768027 350447,0658 -0,20674962 -0,092115939 0 4,0835524 0,26528007 97,34640717 0,281708085 4,1868027 0,10325038
+3,8767836 350479,066 -0,2068451 -0,092115298 0 4,0836287 0,266098842 97,35529611 0,282577562 4,1867836 0,1031549
+3,876497 350511,0662 -0,20686419 -0,092109561 0 4,0833611 0,266917613 97,36418505 0,283447037 4,186497 0,10313581
+3,8765926 350543,0664 -0,20686419 -0,092112117 0 4,083457 0,267736385 97,37307399 0,284316513 4,1865926 0,10313581
+3,8765926 350575,0665 -0,20665413 -0,092108302 0 4,0832467 0,268555158 97,38196292 0,28518599 4,1865926 0,10334587
+3,8762679 350607,0667 -0,20663503 -0,092111476 0 4,0829029 0,269373929 97,39085186 0,286055465 4,1862679 0,10336497
+3,8762488 350639,0669 -0,20671141 -0,092111476 0 4,0829601 0,2701927 97,3997408 0,28692494 4,1862488 0,10328859
+3,8764398 350671,0671 -0,20671141 -0,092112117 0 4,0831513 0,271011472 97,40862974 0,287794416 4,1864398 0,10328859
+3,8760388 350703,0672 -0,2068833 -0,092116579 0 4,082922 0,271830244 97,41751868 0,288663892 4,1860388 0,1031167
+3,8759813 350735,0674 -0,20665413 -0,092115298 0 4,0826354 0,272649015 97,42640761 0,289533368 4,1859813 0,10334587
+3,8759623 350767,0676 -0,2068451 -0,092102565 0 4,0828075 0,273467785 97,43529655 0,290402841 4,1859623 0,1031549
+3,8759241 350799,0678 -0,206826 -0,092110842 0 4,0827503 0,274286552 97,44418549 0,291272313 4,1859241 0,103174
+3,8757713 350831,0679 -0,2068451 -0,092116579 0 4,0826163 0,275105321 97,45307443 0,292141786 4,1857713 0,1031549
+3,8758285 350863,0681 -0,20667322 -0,092105746 0 4,0825019 0,275924092 97,46196337 0,293011261 4,1858285 0,10332678
+3,8756375 350895,0683 -0,20671141 -0,092110209 0 4,0823488 0,276742864 97,4708523 0,293880737 4,1856375 0,10328859
+3,8755422 350927,0685 -0,20676871 -0,092108928 0 4,0823107 0,277561634 97,47974124 0,294750211 4,1855422 0,10323129
+3,8753321 350959,0686 -0,20650135 -0,092108302 0 4,0818334 0,278380403 97,48863018 0,295619684 4,1853321 0,10349865
+3,8753893 350991,0688 -0,20659684 -0,092106387 0 4,081986 0,279199172 97,49751912 0,296489157 4,1853893 0,10340316
+3,8752365 351023,069 -0,20665413 -0,092110209 0 4,0818906 0,280017942 97,50640805 0,29735863 4,1852365 0,10334587
+3,8750265 351055,0692 -0,20665413 -0,092112757 0 4,0816808 0,28083671 97,51529699 0,298228102 4,1850265 0,10334587
+3,8752174 351087,0693 -0,20659684 -0,092111476 0 4,0818143 0,281655477 97,52418593 0,299097573 4,1852174 0,10340316
+3,8748927 351119,0695 -0,20655864 -0,092112117 0 4,0814514 0,282474245 97,53307487 0,299967046 4,1848927 0,10344136
+3,8748546 351151,0697 -0,20665413 -0,092100017 0 4,0815086 0,283293015 97,54196381 0,30083652 4,1848546 0,10334587
+3,8748164 351183,0699 -0,20663503 -0,092115939 0 4,0814514 0,284111785 97,55085274 0,301705994 4,1848164 0,10336497
+3,8747783 351215,0701 -0,20655864 -0,09210702 0 4,081337 0,284930554 97,55974168 0,302575466 4,1847783 0,10344136
+3,8744535 351247,0702 -0,20661592 -0,092110209 0 4,0810695 0,285749322 97,56863062 0,303444938 4,1844535 0,10338408
+3,8747017 351279,0704 -0,20667322 -0,092118487 0 4,0813751 0,286568089 97,57751956 0,304314409 4,1847017 0,10332678
+3,8743773 351311,0706 -0,20655864 -0,092110209 0 4,080936 0,287386857 97,58640849 0,305183881 4,1843773 0,10344136
+3,8743963 351343,0708 -0,20667322 -0,092108928 0 4,0810695 0,288205622 97,59529743 0,306053349 4,1843963 0,10332678
+3,8743198 351375,0709 -0,20657773 -0,092108928 0 4,0808973 0,289024385 97,60418637 0,306922817 4,1843198 0,10342227
+3,8741479 351407,0711 -0,20652044 -0,092117213 0 4,0806684 0,289843148 97,61307531 0,307792283 4,1841479 0,10347956
+3,8742435 351439,0713 -0,20655864 -0,092101291 0 4,080802 0,290661914 97,62196425 0,308661753 4,1842435 0,10344136
+3,8741097 351471,0715 -0,20653954 -0,092110842 0 4,0806494 0,291480682 97,63085318 0,309531225 4,1841097 0,10346046
+3,8738997 351503,0716 -0,20653954 -0,092107654 0 4,0804391 0,29229945 97,63974212 0,310400697 4,1838997 0,10346046
+3,8740144 351535,0718 -0,20659684 -0,092105106 0 4,0806112 0,293118218 97,64863106 0,311270168 4,1840144 0,10340316
+3,8737853 351567,072 -0,20652044 -0,092114665 0 4,0803056 0,293936985 97,65752 0,312139639 4,1837853 0,10347956
+3,8738616 351599,0722 -0,20646316 -0,092106387 0 4,0803246 0,294755751 97,66640894 0,313009109 4,1838616 0,10353684
+3,8737278 351631,0723 -0,20657773 -0,092112117 0 4,0803056 0,295574517 97,67529787 0,313878579 4,1837278 0,10342227
+3,8734796 351663,0725 -0,20663503 -0,092112117 0 4,0801148 0,296393282 97,68418681 0,314748048 4,1834796 0,10336497
+3,8734415 351695,0727 -0,20640586 -0,092110842 0 4,0798473 0,297212046 97,69307575 0,315617515 4,1834415 0,10359414
+3,8736134 351727,0729 -0,20667322 -0,092112117 0 4,0802865 0,298030813 97,70196469 0,316486986 4,1836134 0,10332678
+3,8732121 351759,073 -0,20648225 -0,092116579 0 4,0796943 0,298849577 97,71085362 0,317356454 4,1832121 0,10351775
+3,8734987 351791,0732 -0,20652044 -0,092110842 0 4,080019 0,299668341 97,71974256 0,318225921 4,1834987 0,10347956
+3,873193 351823,0734 -0,20644405 -0,092107654 0 4,0796371 0,300487106 97,7286315 0,31909539 4,183193 0,10355595
+3,8732121 351855,0736 -0,20659684 -0,092104472 0 4,0798087 0,301305873 97,73752044 0,319964861 4,1832121 0,10340316
+3,873174 351887,0738 -0,20652044 -0,092107654 0 4,0796943 0,302124641 97,74640938 0,320834333 4,183174 0,10347956
+3,8729639 351919,0739 -0,20663503 -0,092108302 0 4,0795989 0,302943408 97,75529831 0,321703803 4,1829639 0,10336497
+3,8729258 351951,0741 -0,20642495 -0,092107654 0 4,0793505 0,30376217 97,76418725 0,322573269 4,1829258 0,10357505
+3,8729448 351983,0743 -0,20648225 -0,092110842 0 4,0794272 0,304580937 97,77307619 0,32344274 4,1829448 0,10351775
+3,872792 352015,0745 -0,20631038 -0,09210702 0 4,0791025 0,305399704 97,78196513 0,324312211 4,182792 0,10368962
+3,8726585 352047,0746 -0,20655864 -0,092105746 0 4,079217 0,306218468 97,79085406 0,325181679 4,1826585 0,10344136
+3,8725438 352079,0748 -0,20652044 -0,092106387 0 4,0790644 0,307037234 97,799743 0,326051148 4,1825438 0,10347956
+3,8724866 352111,075 -0,20648225 -0,092110209 0 4,078969 0,307856 97,80863194 0,326920618 4,1824866 0,10351775
+3,8724482 352143,0752 -0,20634857 -0,092108302 0 4,0787969 0,308674764 97,81752088 0,327790086 4,1824482 0,10365143
+3,8724101 352175,0753 -0,20632946 -0,092115939 0 4,0787396 0,309493529 97,82640982 0,328659554 4,1824101 0,10367054
+3,8722572 352207,0755 -0,20638676 -0,092110209 0 4,0786438 0,310312292 97,83529875 0,329529021 4,1822572 0,10361324
+3,8721046 352239,0757 -0,20646316 -0,092110209 0 4,078568 0,311131056 97,84418769 0,330398489 4,1821046 0,10353684
+3,8721428 352271,0759 -0,20636767 -0,092110842 0 4,0785103 0,311949823 97,85307663 0,331267959 4,1821428 0,10363233
+3,8721619 352303,076 -0,20634857 -0,092110209 0 4,0785103 0,312768589 97,86196557 0,332137429 4,1821619 0,10365143
+3,8721428 352335,0762 -0,20648225 -0,092108928 0 4,0786252 0,313587355 97,87085451 0,333006899 4,1821428 0,10351775
+3,8718371 352367,0764 -0,20629127 -0,092107654 0 4,0781283 0,314406123 97,87974344 0,333876371 4,1818371 0,10370873
+3,8719709 352399,0766 -0,20623398 -0,092103831 0 4,0782051 0,315224889 97,88863238 0,334745841 4,1819709 0,10376602
+3,8717608 352431,0767 -0,20632946 -0,092106387 0 4,0780902 0,316043656 97,89752132 0,335615311 4,1817608 0,10367054
+3,8717227 352463,0769 -0,20634857 -0,092105746 0 4,0780711 0,316862422 97,90641026 0,336484782 4,1817227 0,10365143
+3,871608 352495,0771 -0,20636767 -0,092108302 0 4,0779757 0,317681186 97,91529919 0,337354249 4,181608 0,10363233
+3,8715124 352527,0773 -0,20642495 -0,092110209 0 4,0779371 0,318499951 97,92418813 0,338223717 4,1815124 0,10357505
+3,8714743 352559,0775 -0,20631038 -0,09210702 0 4,0777845 0,319318715 97,93307707 0,339093185 4,1814743 0,10368962
+3,871417 352591,0776 -0,20631038 -0,092115939 0 4,0777273 0,320137481 97,94196601 0,339962655 4,181417 0,10368962
+3,8712833 352623,0778 -0,20632946 -0,09210702 0 4,0776129 0,320956247 97,95085495 0,340832125 4,1812833 0,10367054
+3,8710923 352655,078 -0,20625308 -0,092108928 0 4,0773454 0,321775014 97,95974388 0,341701595 4,1810923 0,10374692
+3,8711689 352687,0782 -0,20629127 -0,092101291 0 4,0774603 0,322593779 97,96863282 0,342571065 4,1811689 0,10370873
+3,8710351 352719,0783 -0,20627218 -0,092104472 0 4,0773072 0,323412544 97,97752176 0,343440533 4,1810351 0,10372782
+3,8709586 352751,0785 -0,20625308 -0,092117853 0 4,0772119 0,32423131 97,9864107 0,344310003 4,1809586 0,10374692
+3,8709204 352783,0787 -0,20631038 -0,092106387 0 4,0772309 0,325050078 97,99529963 0,345179475 4,1809204 0,10368962
+3,8706913 352815,0789 -0,20629127 -0,092117213 0 4,0769825 0,325868847 98,00418857 0,346048947 4,1806913 0,10370873
+3,8705385 352847,079 -0,20629127 -0,092108302 0 4,0768299 0,326687613 98,01307751 0,346918418 4,1805385 0,10370873
+3,8707676 352879,0792 -0,20619579 -0,092112117 0 4,0769634 0,327506378 98,02196645 0,347787886 4,1807676 0,10380421
+3,8707485 352911,0794 -0,20625308 -0,092107654 0 4,0770016 0,328325144 98,03085539 0,348657356 4,1807485 0,10374692
+3,8705575 352943,0796 -0,20613849 -0,092112757 0 4,0766959 0,32914391 98,03974432 0,349526826 4,1805575 0,10386151
+3,8705003 352975,0797 -0,20621489 -0,092108302 0 4,076715 0,329962676 98,04863326 0,350396295 4,1805003 0,10378511
+3,8704431 353007,0799 -0,20615759 -0,092109561 0 4,0766006 0,330781441 98,0575222 0,351265764 4,1804431 0,10384241
+3,8703284 353039,0801 -0,20613849 -0,092113383 0 4,076467 0,331600207 98,06641114 0,352135234 4,1803284 0,10386151
+3,8702331 353071,0803 -0,2061767 -0,09210702 0 4,0764098 0,332418975 98,07530008 0,353004706 4,1802331 0,1038233
+3,8702137 353103,0804 -0,20632946 -0,092107654 0 4,0765433 0,333237745 98,08418901 0,353874179 4,1802137 0,10367054
+3,8701756 353135,0806 -0,20625308 -0,092109561 0 4,0764289 0,334056514 98,09307795 0,354743653 4,1801756 0,10374692
+3,8700612 353167,0808 -0,20613849 -0,092106387 0 4,0761995 0,334875281 98,10196689 0,355613124 4,1800612 0,10386151
+3,8700612 353199,081 -0,20621489 -0,092109561 0 4,0762758 0,335694051 98,11085583 0,356482598 4,1800612 0,10378511
+3,8699656 353231,0812 -0,2061194 -0,092114031 0 4,0760851 0,336512822 98,11974476 0,357352073 4,1799656 0,1038806
+3,8699274 353263,0813 -0,20621489 -0,092118487 0 4,0761423 0,337331589 98,1286337 0,358221544 4,1799274 0,10378511
+3,8697364 353295,0815 -0,20615759 -0,092115939 0 4,0758939 0,338150358 98,13752264 0,359091017 4,1797364 0,10384241
+3,8697174 353327,0817 -0,20623398 -0,092110209 0 4,0759516 0,338969123 98,14641158 0,359960485 4,1797174 0,10376602
+3,8697174 353359,0819 -0,20606211 -0,092114031 0 4,0757794 0,339787892 98,15530052 0,360829958 4,1797174 0,10393789
+3,8694499 353391,082 -0,2061003 -0,092114031 0 4,0755501 0,34060666 98,16418945 0,36169943 4,1794499 0,1038997
+3,8695645 353423,0822 -0,20596662 -0,092107654 0 4,075531 0,341425428 98,17307839 0,362568902 4,1795645 0,10403338
+3,8694882 353455,0824 -0,206043 -0,092115939 0 4,075531 0,342244195 98,18196733 0,363438373 4,1794882 0,103957
+3,8694499 353487,0826 -0,206043 -0,092115298 0 4,0754929 0,343062962 98,19085627 0,364307844 4,1794499 0,103957
+3,8692973 353519,0827 -0,20629127 -0,092105106 0 4,0755887 0,343881731 98,1997452 0,365177316 4,1792973 0,10370873
+3,8692973 353551,0829 -0,20613849 -0,092101924 0 4,0754356 0,344700498 98,20863414 0,366046787 4,1792973 0,10386151
+3,869087 353583,0831 -0,20613849 -0,09211912 0 4,0752254 0,345519263 98,21752308 0,366916257 4,179087 0,10386151
+3,869278 353615,0833 -0,20602392 -0,092110209 0 4,0753016 0,346338028 98,22641202 0,367785724 4,179278 0,10397608
+3,8691063 353647,0834 -0,20608121 -0,092108302 0 4,0751877 0,347156791 98,23530096 0,368655192 4,1791063 0,10391879
+3,868896 353679,0836 -0,20623398 -0,092107654 0 4,07513 0,347975557 98,24418989 0,369524661 4,178896 0,10376602
+3,8688388 353711,0838 -0,2061194 -0,092112757 0 4,0749583 0,348794323 98,25307883 0,370394131 4,1788388 0,1038806
+3,8688006 353743,084 -0,2061194 -0,092114665 0 4,0749202 0,349613089 98,26196777 0,371263601 4,1788006 0,1038806
+3,8686097 353775,0841 -0,2061003 -0,092112117 0 4,0747099 0,350431857 98,27085671 0,372133072 4,1786097 0,1038997
+3,868686 353807,0843 -0,20621489 -0,092112757 0 4,0749006 0,351250624 98,27974564 0,373002544 4,178686 0,10378511
+3,8684378 353839,0845 -0,20598572 -0,092110209 0 4,0744233 0,352069392 98,28863458 0,373872015 4,1784378 0,10401428
+3,8685141 353871,0847 -0,20608121 -0,092112757 0 4,0745955 0,35288816 98,29752352 0,374741488 4,1785141 0,10391879
+3,8684568 353903,0849 -0,20600481 -0,092115298 0 4,0744615 0,353706929 98,30641246 0,37561096 4,1784568 0,10399519
+3,8684378 353935,085 -0,20598572 -0,092106387 0 4,0744233 0,354525695 98,3153014 0,37648043 4,1784378 0,10401428
+3,8684187 353967,0852 -0,2061194 -0,092110842 0 4,0745382 0,355344462 98,32419033 0,377349901 4,1784187 0,1038806
+3,8682849 353999,0854 -0,2061194 -0,09210065 0 4,0744042 0,356163229 98,33307927 0,378219372 4,1782849 0,1038806
+3,868304 354031,0856 -0,20590933 -0,092112757 0 4,0742135 0,356981996 98,34196821 0,379088843 4,178304 0,10409067
+3,8682659 354063,0857 -0,206043 -0,092110842 0 4,0743089 0,357800761 98,35085715 0,379958311 4,1782659 0,103957
+3,8681321 354095,0859 -0,20600481 -0,092114665 0 4,0741367 0,358619526 98,35974609 0,38082778 4,1781321 0,10399519
+3,8679411 354127,0861 -0,20596662 -0,092105746 0 4,0739079 0,359438288 98,36863502 0,381697245 4,1779411 0,10403338
+3,8679411 354159,0863 -0,20596662 -0,092110842 0 4,0739079 0,360257051 98,37752396 0,382566713 4,1779411 0,10403338
+3,8678267 354191,0864 -0,20594752 -0,092110842 0 4,0737743 0,361075818 98,3864129 0,383436183 4,1778267 0,10405248
+3,8677502 354223,0866 -0,20590933 -0,092117853 0 4,0736594 0,361894581 98,39530184 0,38430565 4,1777502 0,10409067
+3,8675973 354255,0868 -0,20589024 -0,092104472 0 4,0734878 0,362713342 98,40419077 0,385175114 4,1775973 0,10410976
+3,8676357 354287,087 -0,20587113 -0,092109561 0 4,0735068 0,363532102 98,41307971 0,386044578 4,1776357 0,10412887
+3,8674638 354319,0871 -0,20608121 -0,092111476 0 4,073545 0,364350864 98,42196865 0,386914043 4,1774638 0,10391879
+3,8674257 354351,0873 -0,20600481 -0,092117853 0 4,0734305 0,365169625 98,43085759 0,387783508 4,1774257 0,10399519
+3,8676167 354383,0875 -0,20596662 -0,092111476 0 4,0735831 0,36598839 98,43974653 0,388652976 4,1776167 0,10403338
+3,8673301 354415,0877 -0,20589024 -0,092107654 0 4,0732203 0,366807155 98,44863546 0,389522445 4,1773301 0,10410976
+3,8673491 354447,0878 -0,20590933 -0,092107654 0 4,0732584 0,367625922 98,4575244 0,390391916 4,1773491 0,10409067
+3,8672154 354479,088 -0,20598572 -0,092110842 0 4,0732012 0,368444689 98,46641334 0,391261386 4,1772154 0,10401428
+3,8671772 354511,0882 -0,20598572 -0,092112117 0 4,073163 0,369263455 98,47530228 0,392130857 4,1771772 0,10401428
+3,8672154 354543,0884 -0,20594752 -0,092117213 0 4,073163 0,370082222 98,48419121 0,393000327 4,1772154 0,10405248
+3,8670053 354575,0885 -0,20598572 -0,092115298 0 4,0729909 0,370900989 98,49308015 0,393869798 4,1770053 0,10401428
+3,8669863 354607,0887 -0,20587113 -0,092116579 0 4,0728574 0,371719758 98,50196909 0,394739271 4,1769863 0,10412887
+3,8668334 354639,0889 -0,20608121 -0,092108928 0 4,0729146 0,372538525 98,51085803 0,395608742 4,1768334 0,10391879
+3,8670437 354671,0891 -0,20592843 -0,092109561 0 4,0729723 0,373357289 98,51974697 0,39647821 4,1770437 0,10407157
+3,8667953 354703,0893 -0,20594752 -0,092114031 0 4,0727429 0,374176052 98,5286359 0,397347676 4,1767953 0,10405248
+3,8666809 354735,0894 -0,20592843 -0,092110842 0 4,0726094 0,374994816 98,53752484 0,398217143 4,1766809 0,10407157
+3,8666999 354767,0896 -0,2061003 -0,092112117 0 4,0728002 0,37581358 98,54641378 0,399086611 4,1766999 0,1038997
+3,8665662 354799,0898 -0,20600481 -0,092105746 0 4,0725708 0,376632347 98,55530272 0,399956082 4,1765662 0,10399519
+3,8666234 354831,09 -0,20577565 -0,092103831 0 4,0723991 0,377451111 98,56419166 0,40082555 4,1766234 0,10422435
+3,866528 354863,0901 -0,20585203 -0,092116579 0 4,0723801 0,378269876 98,57308059 0,401695018 4,176528 0,10414797
+3,8664899 354895,0903 -0,20602392 -0,092106387 0 4,0725136 0,379088642 98,58196953 0,402564489 4,1764899 0,10397608
+3,8664324 354927,0905 -0,20602392 -0,092111476 0 4,0724564 0,37990741 98,59085847 0,40343396 4,1764324 0,10397608
+3,8664134 354959,0907 -0,20573746 -0,092112757 0 4,0721507 0,380726177 98,59974741 0,404303431 4,1764134 0,10426254
+3,8662796 354991,0908 -0,20587113 -0,092113383 0 4,0721507 0,381544941 98,60863634 0,405172899 4,1762796 0,10412887
+3,8662415 355023,091 -0,20590933 -0,092108928 0 4,0721507 0,382363706 98,61752528 0,406042368 4,1762415 0,10409067
+3,866318 355055,0912 -0,20596662 -0,09210702 0 4,0722847 0,383182471 98,62641422 0,406911836 4,176318 0,10403338
+3,8659742 355087,0914 -0,20581384 -0,092114031 0 4,0717878 0,384001237 98,63530316 0,407781306 4,1759742 0,10418616
+3,8658404 355119,0915 -0,20587113 -0,092111476 0 4,0717115 0,384820003 98,6441921 0,408650776 4,1758404 0,10412887
+3,865936 355151,0917 -0,20581384 -0,092110209 0 4,0717497 0,385638768 98,65308103 0,409520245 4,175936 0,10418616
+3,8657451 355183,0919 -0,20598572 -0,092103831 0 4,0717306 0,386457533 98,66196997 0,410389713 4,1757451 0,10401428
+3,8657641 355215,0921 -0,20583294 -0,092108928 0 4,0715971 0,387276297 98,67085891 0,411259181 4,1757641 0,10416706
+3,8657832 355247,0922 -0,20579475 -0,092107654 0 4,071578 0,388095062 98,67974785 0,41212865 4,1757832 0,10420525
+3,8656876 355279,0924 -0,20581384 -0,092105106 0 4,0715013 0,388913829 98,68863678 0,412998121 4,1756876 0,10418616
+3,8656685 355311,0926 -0,20569927 -0,092110209 0 4,0713677 0,389732597 98,69752572 0,413867592 4,1756685 0,10430073
+3,8656495 355343,0928 -0,20571835 -0,092112757 0 4,0713677 0,390551365 98,70641466 0,414737064 4,1756495 0,10428165
+3,8653631 355375,093 -0,20581384 -0,092105746 0 4,071177 0,391370131 98,7153036 0,415606534 4,1753631 0,10418616
+3,8653247 355407,0931 -0,20581384 -0,092112117 0 4,0711384 0,392188895 98,72419254 0,416476002 4,1753247 0,10418616
+3,8654013 355439,0933 -0,20594752 -0,092110209 0 4,0713487 0,393007662 98,73308147 0,417345473 4,1754013 0,10405248
+3,8653247 355471,0935 -0,20592843 -0,092108928 0 4,0712533 0,393826426 98,74197041 0,418214939 4,1753247 0,10407157
+3,8652294 355503,0937 -0,20579475 -0,092114031 0 4,0710239 0,394645186 98,75085935 0,419084403 4,1752294 0,10420525
+3,8652103 355535,0938 -0,20581384 -0,092109561 0 4,0710239 0,395463949 98,75974829 0,41995387 4,1752103 0,10418616
+3,8651147 355567,094 -0,20571835 -0,092105746 0 4,0708332 0,396282716 98,76863723 0,42082334 4,1751147 0,10428165
+3,8650575 355599,0942 -0,20556557 -0,092108928 0 4,0706229 0,397101479 98,77752616 0,421692807 4,1750575 0,10443443
+3,8650384 355631,0944 -0,20585203 -0,092110209 0 4,0708904 0,397920245 98,7864151 0,422562277 4,1750384 0,10414797
+3,8649809 355663,0945 -0,20569927 -0,092107654 0 4,0706801 0,398739008 98,79530404 0,423431743 4,1749809 0,10430073
+3,8648093 355695,0947 -0,20592843 -0,092110209 0 4,0707378 0,399557772 98,80419298 0,424301212 4,1748093 0,10407157
+3,8648093 355727,0949 -0,20575655 -0,09210702 0 4,0705657 0,400376538 98,81308191 0,425170682 4,1748093 0,10424345
+3,8646946 355759,0951 -0,20569927 -0,092113383 0 4,070394 0,401195302 98,82197085 0,426040148 4,1746946 0,10430073
+3,8646183 355791,0952 -0,20589024 -0,092115298 0 4,0705085 0,402014064 98,83085979 0,426909615 4,1746183 0,10410976
+3,8645036 355823,0954 -0,20583294 -0,092106387 0 4,0703363 0,402832826 98,83974873 0,42777908 4,1745036 0,10416706
+3,8644655 355855,0956 -0,20583294 -0,092109561 0 4,0702982 0,403651588 98,84863767 0,428648546 4,1744655 0,10416706
+3,8644464 355887,0958 -0,20569927 -0,092107654 0 4,0701456 0,404470348 98,8575266 0,429518009 4,1744464 0,10430073
+3,864408 355919,0959 -0,20560378 -0,092102565 0 4,0700116 0,405289106 98,86641554 0,430387471 4,174408 0,10439622
+3,8643699 355951,0961 -0,20583294 -0,092110842 0 4,0702028 0,406107866 98,87530448 0,431256934 4,1743699 0,10416706
+3,8642364 355983,0963 -0,20575655 -0,092109561 0 4,069993 0,406926629 98,88419342 0,4321264 4,1742364 0,10424345
+3,8640451 356015,0965 -0,20566106 -0,092110209 0 4,069706 0,407745391 98,89308235 0,432995866 4,1740451 0,10433894
+3,8641789 356047,0967 -0,20579475 -0,092114031 0 4,0699735 0,408564154 98,90197129 0,433865332 4,1741789 0,10420525
+3,8639307 356079,0968 -0,20556557 -0,092105746 0 4,0694962 0,409382916 98,91086023 0,434734797 4,1739307 0,10443443
+3,8640645 356111,097 -0,20569927 -0,092114665 0 4,0697637 0,410201679 98,91974917 0,435604264 4,1740645 0,10430073
+3,863816 356143,0972 -0,20564197 -0,092114031 0 4,069458 0,411020443 98,92863811 0,436473731 4,173816 0,10435803
+3,8639879 356175,0974 -0,20568016 -0,092114031 0 4,0696683 0,411839206 98,93752704 0,437343198 4,1739879 0,10431984
+3,8637397 356207,0975 -0,20552738 -0,092114031 0 4,0692673 0,41265797 98,94641598 0,438212666 4,1737397 0,10447262
+3,8637969 356239,0977 -0,20554648 -0,092110209 0 4,0693436 0,413476735 98,95530492 0,439082135 4,1737969 0,10445352
+3,8637016 356271,0979 -0,20573746 -0,092111476 0 4,0694389 0,414295501 98,96419386 0,439951605 4,1737016 0,10426254
+3,8635297 356303,0981 -0,20568016 -0,092109561 0 4,0692101 0,415114266 98,9730828 0,440821073 4,1735297 0,10431984
+3,8637016 356335,0982 -0,20560378 -0,092116579 0 4,0693054 0,41593303 98,98197173 0,441690541 4,1737016 0,10439622
+3,8634531 356367,0984 -0,20558468 -0,092115298 0 4,0690379 0,416751796 98,99086067 0,442560011 4,1734531 0,10441532
+3,8634531 356399,0986 -0,20564197 -0,09210702 0 4,0690951 0,417570561 98,99974961 0,443429479 4,1734531 0,10435803
+3,8633769 356431,0988 -0,20564197 -0,092107654 0 4,0690188 0,418389324 99,00863855 0,444298946 4,1733769 0,10435803
+3,8633578 356463,0989 -0,20560378 -0,092108928 0 4,0689616 0,41920809 99,01752748 0,445168415 4,1733578 0,10439622
+3,863205 356495,0991 -0,20573746 -0,092109561 0 4,0689425 0,420026856 99,02641642 0,446037886 4,173205 0,10426254
+3,8631859 356527,0993 -0,20569927 -0,092112757 0 4,0688853 0,420845621 99,03530536 0,446907354 4,1731859 0,10430073
+3,863014 356559,0995 -0,20566106 -0,092115298 0 4,068675 0,421664386 99,0441943 0,447776823 4,173014 0,10433894
+3,8628612 356591,0996 -0,20571835 -0,092108302 0 4,0685797 0,42248315 99,05308324 0,448646291 4,1728612 0,10428165
+3,8630903 356623,0998 -0,20558468 -0,092110842 0 4,068675 0,423301915 99,06197217 0,449515759 4,1730903 0,10441532
+3,8628993 356655,1 -0,20568016 -0,092111476 0 4,0685797 0,424120679 99,07086111 0,450385228 4,1728993 0,10431984
+3,8628802 356687,1002 -0,20577565 -0,092105746 0 4,068656 0,424939443 99,07975005 0,451254694 4,1728802 0,10422435
+3,8629377 356719,1004 -0,20558468 -0,092112117 0 4,0685225 0,425758204 99,08863899 0,452124159 4,1729377 0,10441532
+3,8627849 356751,1005 -0,20564197 -0,092112757 0 4,0684266 0,426576967 99,09752792 0,452993626 4,1727849 0,10435803
+3,8626702 356783,1007 -0,20566106 -0,092117213 0 4,0683312 0,427395731 99,10641686 0,453863093 4,1726702 0,10433894
+3,8624983 356815,1009 -0,20581384 -0,092111476 0 4,0683122 0,428214495 99,1153058 0,454732561 4,1724983 0,10418616
+3,8625174 356847,1011 -0,20562287 -0,092114665 0 4,06814 0,42903326 99,12419474 0,455602029 4,1725174 0,10437713
+3,8623648 356879,1012 -0,20573746 -0,092108928 0 4,0681024 0,429852025 99,13308368 0,456471499 4,1723648 0,10426254
+3,8624983 356911,1014 -0,205451 -0,092112117 0 4,0679493 0,430670789 99,14197261 0,457340966 4,1724983 0,104549
+3,862422 356943,1016 -0,20558468 -0,092108302 0 4,0680065 0,431489554 99,15086155 0,458210435 4,172422 0,10441532
+3,8623073 356975,1018 -0,20556557 -0,092110209 0 4,067873 0,432308318 99,15975049 0,459079903 4,1723073 0,10443443
+3,862231 357007,1019 -0,20554648 -0,092105746 0 4,0677776 0,433127083 99,16863943 0,459949371 4,172231 0,10445352
+3,8620591 357039,1021 -0,20560378 -0,092111476 0 4,0676627 0,433945846 99,17752836 0,460818837 4,1720591 0,10439622
+3,8621354 357071,1023 -0,20568016 -0,092107654 0 4,0678158 0,43476461 99,1864173 0,461688306 4,1721354 0,10431984
+3,8619635 357103,1025 -0,20564197 -0,092110209 0 4,0676055 0,435583375 99,19530624 0,462557774 4,1719635 0,10435803
+3,8620973 357135,1026 -0,20547009 -0,092117853 0 4,0675673 0,436402138 99,20419518 0,463427241 4,1720973 0,10452991
+3,8620591 357167,1028 -0,20554648 -0,092116579 0 4,0676055 0,437220905 99,21308412 0,464296712 4,1720591 0,10445352
+3,8618872 357199,103 -0,20562287 -0,09210065 0 4,0675101 0,438039675 99,22197305 0,465166186 4,1718872 0,10437713
+3,8618681 357231,1032 -0,20535551 -0,092114665 0 4,0672235 0,438858445 99,23086199 0,466035659 4,1718681 0,10464449
+3,8619063 357263,1033 -0,20556557 -0,092111476 0 4,067472 0,439677214 99,23975093 0,466905133 4,1719063 0,10443443
+3,8616772 357295,1035 -0,20566106 -0,092114031 0 4,067338 0,440495983 99,24863987 0,467774605 4,1716772 0,10433894
+3,8615816 357327,1037 -0,20543189 -0,092110209 0 4,0670133 0,441314749 99,25752881 0,468644076 4,1715816 0,10456811
+3,8616199 357359,1039 -0,20562287 -0,092110842 0 4,0672426 0,442133513 99,26641774 0,469513543 4,1716199 0,10437713
+3,8615434 357391,1041 -0,20552738 -0,092108302 0 4,067071 0,442952276 99,27530668 0,47038301 4,1715434 0,10447262
+3,8613715 357423,1042 -0,20547009 -0,092108928 0 4,0668416 0,44377104 99,28419562 0,471252477 4,1713715 0,10452991
+3,8615053 357455,1044 -0,20548919 -0,092109561 0 4,0669947 0,4445898 99,29308456 0,472121941 4,1715053 0,10451081
+3,8613715 357487,1046 -0,20556557 -0,092111476 0 4,066937 0,445408562 99,30197349 0,472991406 4,1713715 0,10443443
+3,8611996 357519,1048 -0,20547009 -0,092117853 0 4,0666695 0,446227325 99,31086243 0,473860873 4,1711996 0,10452991
+3,8611805 357551,1049 -0,2053746 -0,092108302 0 4,066555 0,447046089 99,31975137 0,47473034 4,1711805 0,1046254
+3,8611996 357583,1051 -0,20550829 -0,092113383 0 4,0667081 0,447864851 99,32864031 0,475599806 4,1711996 0,10449171
+3,8610661 357615,1053 -0,20554648 -0,092110209 0 4,0666127 0,448683613 99,33752925 0,476469271 4,1710661 0,10445352
+3,8609324 357647,1055 -0,20529822 -0,092105106 0 4,0662308 0,449502373 99,34641818 0,477338735 4,1709324 0,10470178
+3,8609896 357679,1056 -0,20548919 -0,092111476 0 4,0664787 0,450321135 99,35530712 0,4782082 4,1709896 0,10451081
+3,8608367 357711,1058 -0,20543189 -0,092110842 0 4,0662684 0,451139898 99,36419606 0,479077667 4,1708367 0,10456811
+3,8607986 357743,106 -0,20562287 -0,092111476 0 4,0664215 0,451958661 99,373085 0,479947134 4,1707986 0,10437713
+3,8606648 357775,1062 -0,2053937 -0,092113383 0 4,0660586 0,452777426 99,38197393 0,480816603 4,1706648 0,1046063
+3,8608177 357807,1063 -0,20535551 -0,092110842 0 4,0661731 0,453596193 99,39086287 0,481686073 4,1708177 0,10464449
+3,8605504 357839,1065 -0,20543189 -0,092105106 0 4,0659823 0,454414958 99,39975181 0,482555542 4,1705504 0,10456811
+3,8606076 357871,1067 -0,20543189 -0,09210702 0 4,0660396 0,455233724 99,40864075 0,483425012 4,1706076 0,10456811
+3,8605123 357903,1069 -0,20547009 -0,092110842 0 4,0659823 0,456052488 99,41752969 0,48429448 4,1705123 0,10452991
+3,8605504 357935,107 -0,20547009 -0,092111476 0 4,0660205 0,456871254 99,42641862 0,485163949 4,1705504 0,10452991
+3,8605695 357967,1072 -0,20541281 -0,092103198 0 4,0659823 0,457690019 99,43530756 0,486033418 4,1705695 0,10458719
+3,8601875 357999,1074 -0,20543189 -0,092111476 0 4,0656195 0,458508784 99,4441965 0,486902887 4,1701875 0,10456811
+3,8602066 358031,1076 -0,20543189 -0,092110842 0 4,0656385 0,45932755 99,45308544 0,487772356 4,1702066 0,10456811
+3,8601494 358063,1078 -0,20568016 -0,092110209 0 4,0658298 0,460146314 99,46197438 0,488641823 4,1701494 0,10431984
+3,8600919 358095,1079 -0,20543189 -0,092105746 0 4,0655236 0,460965074 99,47086331 0,489511288 4,1700919 0,10456811
+3,8601494 358127,1081 -0,20541281 -0,092109561 0 4,0655622 0,461783835 99,47975225 0,490380752 4,1701494 0,10458719
+3,8600156 358159,1083 -0,20535551 -0,092116579 0 4,065371 0,462602598 99,48864119 0,491250218 4,1700156 0,10464449
+3,859901 358191,1085 -0,20535551 -0,092108928 0 4,0652566 0,463421361 99,49753013 0,492119685 4,169901 0,10464449
+3,8597865 358223,1086 -0,20541281 -0,092108928 0 4,0651994 0,464240124 99,50641906 0,492989151 4,1697865 0,10458719
+3,8598819 358255,1088 -0,20543189 -0,092107654 0 4,0653138 0,465058886 99,515308 0,493858617 4,1698819 0,10456811
+3,8598247 358287,109 -0,20543189 -0,092103198 0 4,0652566 0,465877645 99,52419694 0,49472808 4,1698247 0,10456811
+3,8597291 358319,1092 -0,20543189 -0,092109561 0 4,0651608 0,466696404 99,53308588 0,495597542 4,1697291 0,10456811
+3,8595765 358351,1093 -0,20541281 -0,092109561 0 4,0649891 0,467515167 99,54197482 0,496467008 4,1695765 0,10458719
+3,8595955 358383,1095 -0,20531732 -0,092105746 0 4,0649128 0,46833393 99,55086375 0,497336475 4,1695955 0,10468268
+3,8594999 358415,1097 -0,20543189 -0,092105746 0 4,0649319 0,469152692 99,55975269 0,498205941 4,1694999 0,10456811
+3,859309 358447,1099 -0,20543189 -0,092115298 0 4,0647407 0,469971454 99,56864163 0,499075406 4,169309 0,10456811
+3,859309 358479,11 -0,20533641 -0,092114031 0 4,0646453 0,470790214 99,57753057 0,49994487 4,169309 0,10466359
+3,8592899 358511,1102 -0,20535551 -0,092110209 0 4,0646453 0,471608976 99,5864195 0,500814335 4,1692899 0,10464449
+3,8592708 358543,1104 -0,20527911 -0,092106387 0 4,0645499 0,472427738 99,59530844 0,501683801 4,1692708 0,10472089
+3,8590798 358575,1106 -0,20529822 -0,092110209 0 4,0643783 0,473246501 99,60419738 0,502553267 4,1690798 0,10470178
+3,8590226 358607,1107 -0,20533641 -0,092106387 0 4,0643592 0,474065264 99,61308632 0,503422733 4,1690226 0,10466359
+3,8589652 358639,1109 -0,20504995 -0,09210702 0 4,0640149 0,474884029 99,62197526 0,504292203 4,1689652 0,10495005
+3,858927 358671,1111 -0,20541281 -0,092105746 0 4,0643396 0,475702797 99,63086419 0,505161674 4,168927 0,10458719
+3,8589461 358703,1113 -0,2053746 -0,092114031 0 4,0643206 0,476521567 99,63975313 0,506031148 4,1689461 0,1046254
+3,8587933 358735,1115 -0,2053746 -0,092111476 0 4,064168 0,477340331 99,64864207 0,506900616 4,1687933 0,1046254
+3,8586979 358767,1116 -0,20535551 -0,092101924 0 4,0640535 0,478159098 99,65753101 0,507770087 4,1686979 0,10464449
+3,8586979 358799,1118 -0,2053746 -0,092105746 0 4,0640726 0,478977863 99,66641995 0,508639556 4,1686979 0,1046254
+3,8588316 358831,112 -0,20531732 -0,092107654 0 4,0641489 0,479796627 99,67530888 0,509509023 4,1688316 0,10468268
+3,8585641 358863,1122 -0,20533641 -0,092114031 0 4,0639005 0,480615388 99,68419782 0,510378488 4,1685641 0,10466359
+3,8584304 358895,1123 -0,20529822 -0,092110209 0 4,0637288 0,481434153 99,69308676 0,511247956 4,1684304 0,10470178
+3,8585641 358927,1125 -0,2053937 -0,092109561 0 4,0639577 0,482252917 99,7019757 0,512117424 4,1685641 0,1046063
+3,858335 358959,1127 -0,20526002 -0,092111476 0 4,0635948 0,48307168 99,71086463 0,512986891 4,168335 0,10473998
+3,8584304 358991,1129 -0,20531732 -0,092112757 0 4,0637479 0,483890444 99,71975357 0,513856358 4,1684304 0,10468268
+3,8583732 359023,113 -0,20531732 -0,092105106 0 4,0636907 0,484709209 99,72864251 0,514725826 4,1683732 0,10468268
+3,8582203 359055,1132 -0,20531732 -0,092109561 0 4,0635376 0,485527974 99,73753145 0,515595295 4,1682203 0,10468268
+3,8580678 359087,1134 -0,20527911 -0,092109561 0 4,0633469 0,486346739 99,74642039 0,516464765 4,1680678 0,10472089
+3,8581059 359119,1136 -0,20524092 -0,092110842 0 4,0633469 0,487165503 99,75530932 0,517334232 4,1681059 0,10475908
+3,8579721 359151,1137 -0,20512635 -0,092114031 0 4,0630984 0,487984271 99,76419826 0,518203704 4,1679721 0,10487365
+3,857934 359183,1139 -0,20522183 -0,092107654 0 4,0631557 0,48880304 99,7730872 0,519073177 4,167934 0,10477817
+3,8578002 359215,1141 -0,20535551 -0,092114665 0 4,0631557 0,48962181 99,78197614 0,51994265 4,1678002 0,10464449
+3,857934 359247,1143 -0,20527911 -0,092103831 0 4,0632133 0,490440577 99,79086507 0,520812122 4,167934 0,10472089
+3,8577049 359279,1144 -0,20527911 -0,092106387 0 4,062984 0,491259343 99,79975401 0,521681592 4,1677049 0,10472089
+3,8578002 359311,1146 -0,20531732 -0,092110209 0 4,0631175 0,492078108 99,80864295 0,52255106 4,1678002 0,10468268
+3,8577049 359343,1148 -0,20510724 -0,092114665 0 4,0628123 0,492896874 99,81753189 0,52342053 4,1677049 0,10489276
+3,8575902 359375,115 -0,20522183 -0,092109561 0 4,0628119 0,493715641 99,82642083 0,524290001 4,1675902 0,10477817
+3,8576093 359407,1151 -0,20508814 -0,092114665 0 4,0626974 0,494534409 99,83530976 0,525159473 4,1676093 0,10491186
+3,857533 359439,1153 -0,20516454 -0,092112117 0 4,0626974 0,495353175 99,8441987 0,526028942 4,167533 0,10483546
+3,8574374 359471,1155 -0,20524092 -0,09210702 0 4,0626783 0,496171942 99,85308764 0,526898414 4,1674374 0,10475908
+3,8573229 359503,1157 -0,20508814 -0,092110209 0 4,0624113 0,49699071 99,86197658 0,527767885 4,1673229 0,10491186
+3,8572083 359535,1159 -0,20504995 -0,092113383 0 4,0622582 0,497809476 99,87086552 0,528637355 4,1672083 0,10495005
+3,8570364 359567,116 -0,20526002 -0,09210702 0 4,0622964 0,498628241 99,87975445 0,529506824 4,1670364 0,10473998
+3,8570745 359599,1162 -0,20535551 -0,092114665 0 4,0624299 0,499447006 99,88864339 0,530376292 4,1670745 0,10464449
+3,8570173 359631,1164 -0,20531732 -0,092110209 0 4,0623345 0,500265768 99,89753233 0,531245758 4,1670173 0,10468268
+3,856941 359663,1166 -0,20543189 -0,092116579 0 4,0623727 0,501084532 99,90642127 0,532115226 4,166941 0,10456811
+3,8570364 359695,1167 -0,20510724 -0,09210702 0 4,0621438 0,501903294 99,9153102 0,532984691 4,1670364 0,10489276
+3,8568645 359727,1169 -0,20524092 -0,092111476 0 4,0621052 0,502722057 99,92419914 0,533854157 4,1668645 0,10475908
+3,8566735 359759,1171 -0,20512635 -0,092107654 0 4,0618 0,503540816 99,93308808 0,53472362 4,1666735 0,10487365
+3,8566353 359791,1173 -0,20527911 -0,09210702 0 4,0619144 0,504359579 99,94197702 0,535593086 4,1666353 0,10472089
+3,8566163 359823,1174 -0,20514543 -0,092108928 0 4,0617619 0,505178342 99,95086596 0,536462554 4,1666163 0,10485457
+3,8565781 359855,1176 -0,20520273 -0,092112757 0 4,0617809 0,505997106 99,95975489 0,537332021 4,1665781 0,10479727
+3,8565207 359887,1178 -0,20510724 -0,092110842 0 4,0616279 0,506815875 99,96864383 0,538201494 4,1665207 0,10489276
+3,8565397 359919,118 -0,20529822 -0,092107654 0 4,0618382 0,507634643 99,97753277 0,539070966 4,1665397 0,10470178
+3,8563871 359951,1181 -0,20512635 -0,092109561 0 4,0615134 0,508453407 99,98642171 0,539940433 4,1663871 0,10487365
+3,8561387 359983,1183 -0,20514543 -0,092110209 0 4,0612841 0,509272168 99,99531064 0,540809898 4,1661387 0,10485457
+3,8561578 360015,1185 -0,20503086 -0,092112117 0 4,0611887 0,510090933 100,0041996 0,541679367 4,1661578 0,10496914
+3,8562152 360047,1187 -0,20522183 -0,092109561 0 4,0614371 0,510909696 100,0130885 0,542548833 4,1662152 0,10477817
+3,8561962 360079,1188 -0,20497356 -0,092107654 0 4,0611696 0,511728458 100,0219775 0,543418299 4,1661962 0,10502644
+3,8560243 360111,119 -0,20520273 -0,092110842 0 4,0612268 0,51254722 100,0308664 0,544287764 4,1660243 0,10479727
+3,8559668 360143,1192 -0,20522183 -0,092107654 0 4,0611887 0,513365983 100,0397553 0,545157231 4,1659668 0,10477817
+3,8558714 360175,1194 -0,20527911 -0,092107654 0 4,0611506 0,514184746 100,0486443 0,546026698 4,1658714 0,10472089
+3,855814 360207,1196 -0,20514543 -0,092111476 0 4,0609593 0,515003508 100,0575332 0,546896163 4,165814 0,10485457
+3,8556995 360239,1197 -0,20501176 -0,092110842 0 4,0607114 0,515822271 100,0664221 0,547765629 4,1656995 0,10498824
+3,8558333 360271,1199 -0,20499265 -0,092102565 0 4,0608258 0,516641033 100,0753111 0,548635095 4,1658333 0,10500735
+3,8555276 360303,1201 -0,20508814 -0,092112117 0 4,0606155 0,517459794 100,0842 0,549504559 4,1655276 0,10491186
+3,8555658 360335,1203 -0,20510724 -0,092115298 0 4,0606732 0,518278555 100,093089 0,550374024 4,1655658 0,10489276
+3,855432 360367,1204 -0,20499265 -0,092113383 0 4,0604248 0,51909732 100,1019779 0,551243492 4,165432 0,10500735
+3,8552029 360399,1206 -0,20516454 -0,092110209 0 4,0603676 0,519916083 100,1108668 0,552112959 4,1652029 0,10483546
+3,8553176 360431,1208 -0,20520273 -0,092112757 0 4,0605202 0,520734846 100,1197558 0,552982426 4,1653176 0,10479727
+3,855222 360463,121 -0,20485897 -0,092103198 0 4,060081 0,521553609 100,1286447 0,553851893 4,165222 0,10514103
+3,8551266 360495,1211 -0,20504995 -0,092107654 0 4,0601764 0,522372372 100,1375336 0,554721359 4,1651266 0,10495005
+3,8551648 360527,1213 -0,20510724 -0,092110209 0 4,0602722 0,523191138 100,1464226 0,555590828 4,1651648 0,10489276
+3,8549356 360559,1215 -0,20510724 -0,092105106 0 4,0600429 0,524009903 100,1553115 0,556460297 4,1649356 0,10489276
+3,8550119 360591,1217 -0,20508814 -0,092106387 0 4,0601001 0,524828665 100,1642005 0,557329762 4,1650119 0,10491186
+3,854821 360623,1218 -0,20504995 -0,092109561 0 4,0598707 0,525647427 100,1730894 0,558199228 4,164821 0,10495005
+3,854821 360655,122 -0,20499265 -0,092108928 0 4,0598135 0,526466189 100,1819783 0,559068693 4,164821 0,10500735
+3,8547256 360687,1222 -0,20491627 -0,092106387 0 4,0596418 0,527284952 100,1908673 0,559938161 4,1647256 0,10508373
+3,8547065 360719,1224 -0,20495446 -0,092109561 0 4,0596609 0,528103715 100,1997562 0,560807627 4,1647065 0,10504554
+3,8545156 360751,1225 -0,20497356 -0,09210702 0 4,0594893 0,528922475 100,2086452 0,561677091 4,1645156 0,10502644
+3,8545346 360783,1227 -0,20495446 -0,092108928 0 4,0594893 0,529741234 100,2175341 0,562546553 4,1645346 0,10504554
+3,854439 360815,1229 -0,20495446 -0,092110842 0 4,0593934 0,530559996 100,226423 0,563416019 4,164439 0,10504554
+3,8544199 360847,1231 -0,20501176 -0,092108928 0 4,0594316 0,531378758 100,235312 0,564285484 4,1644199 0,10498824
+3,8541527 360879,1233 -0,20510724 -0,092111476 0 4,0592599 0,53219752 100,2442009 0,56515495 4,1641527 0,10489276
+3,854248 360911,1234 -0,20491627 -0,092108928 0 4,0591645 0,533016278 100,2530898 0,566024411 4,164248 0,10508373
+3,8543053 360943,1236 -0,20497356 -0,092112117 0 4,059279 0,533835038 100,2619788 0,566893874 4,1643053 0,10502644
+3,854038 360975,1238 -0,20493537 -0,092110842 0 4,0589733 0,5346538 100,2708677 0,56776334 4,164038 0,10506463
+3,8540952 361007,124 -0,20491627 -0,092114665 0 4,0590115 0,535472562 100,2797567 0,568632805 4,1640952 0,10508373
+3,8539042 361039,1241 -0,20499265 -0,092110842 0 4,058897 0,536291325 100,2886456 0,569502271 4,1639042 0,10500735
+3,8538852 361071,1243 -0,20480168 -0,092116579 0 4,0586867 0,53711009 100,2975345 0,57037174 4,1638852 0,10519832
+3,8538661 361103,1245 -0,20485897 -0,09210702 0 4,0587249 0,537928856 100,3064235 0,57124121 4,1638661 0,10514103
+3,8536942 361135,1247 -0,20501176 -0,092111476 0 4,0587058 0,538747624 100,3153124 0,572110682 4,1636942 0,10498824
+3,8535988 361167,1248 -0,20508814 -0,092104472 0 4,0586872 0,539566392 100,3242013 0,572980154 4,1635988 0,10491186
+3,8535988 361199,125 -0,20499265 -0,092114031 0 4,0585914 0,540385158 100,3330903 0,573849624 4,1635988 0,10500735
+3,8534842 361231,1252 -0,20497356 -0,09210702 0 4,0584579 0,541203922 100,3419792 0,574719091 4,1634842 0,10502644
+3,8533123 361263,1254 -0,20485897 -0,092109561 0 4,0581713 0,542022686 100,3508682 0,575588559 4,1633123 0,10514103
+3,8532932 361295,1255 -0,20501176 -0,092103831 0 4,0583048 0,542841449 100,3597571 0,576458026 4,1632932 0,10498824
+3,8531976 361327,1257 -0,20497356 -0,092110209 0 4,0581713 0,543660213 100,368646 0,577327493 4,1631976 0,10502644
+3,8531213 361359,1259 -0,20497356 -0,092117213 0 4,058095 0,544478975 100,377535 0,578196959 4,1631213 0,10502644
+3,8531213 361391,1261 -0,20499265 -0,092101291 0 4,0581141 0,545297737 100,3864239 0,579066424 4,1631213 0,10500735
+3,8529112 361423,1262 -0,20493537 -0,092110842 0 4,0578465 0,546116498 100,3953128 0,579935889 4,1629112 0,10506463
+3,8529494 361455,1264 -0,20491627 -0,092114031 0 4,0578656 0,546935259 100,4042018 0,580805354 4,1629494 0,10508373
+3,8528731 361487,1266 -0,20480168 -0,092113383 0 4,0576749 0,54775402 100,4130907 0,581674817 4,1628731 0,10519832
+3,8527584 361519,1268 -0,20503086 -0,092106387 0 4,0577893 0,548572777 100,4219797 0,582544278 4,1627584 0,10496914
+3,8525484 361551,127 -0,20487808 -0,092111476 0 4,0574265 0,549391538 100,4308686 0,583413743 4,1625484 0,10512192
+3,8526247 361583,1271 -0,20489717 -0,09210702 0 4,0575218 0,5502103 100,4397575 0,584283208 4,1626247 0,10510283
+3,8524721 361615,1273 -0,20491627 -0,092111476 0 4,0573883 0,551029061 100,4486465 0,585152672 4,1624721 0,10508373
+3,852453 361647,1275 -0,20497356 -0,092112117 0 4,0574265 0,551847821 100,4575354 0,586022136 4,162453 0,10502644
+3,8522618 361679,1277 -0,20480168 -0,092111476 0 4,0570636 0,552666582 100,4664243 0,586891601 4,1622618 0,10519832
+3,8522811 361711,1278 -0,20485897 -0,092103831 0 4,0571399 0,553485342 100,4753133 0,587761064 4,1622811 0,10514103
+3,8521664 361743,128 -0,20499265 -0,092108928 0 4,0571589 0,554304101 100,4842022 0,588630526 4,1621664 0,10500735
+3,8521473 361775,1282 -0,20482078 -0,092105746 0 4,0569682 0,555122861 100,4930912 0,589499989 4,1621473 0,10517922
+3,8521092 361807,1284 -0,20478259 -0,092111476 0 4,0568919 0,555941623 100,5019801 0,590369455 4,1621092 0,10521741
+3,8518991 361839,1285 -0,20491627 -0,09210702 0 4,0568156 0,556760385 100,510869 0,591238921 4,1618991 0,10508373
+3,8518417 361871,1287 -0,20483989 -0,092109561 0 4,0566816 0,557579149 100,519758 0,592108388 4,1618417 0,10516011
+3,8517654 361903,1289 -0,20480168 -0,092105106 0 4,0565672 0,558397915 100,5286469 0,592977858 4,1617654 0,10519832
+3,8516698 361935,1291 -0,20487808 -0,092115298 0 4,0565476 0,559216681 100,5375359 0,593847327 4,1616698 0,10512192
+3,8516507 361967,1292 -0,20485897 -0,092116579 0 4,0565095 0,560035447 100,5464248 0,594716797 4,1616507 0,10514103
+3,8514979 361999,1294 -0,20474438 -0,092110842 0 4,0562425 0,560854212 100,5553137 0,595586266 4,1614979 0,10525562
+3,8513834 362031,1296 -0,20487808 -0,092110209 0 4,0562615 0,561672978 100,5642027 0,596455736 4,1613834 0,10512192
+3,8513453 362063,1298 -0,20482078 -0,092114665 0 4,0561662 0,562491744 100,5730916 0,597325206 4,1613453 0,10517922
+3,8513453 362095,1299 -0,20497356 -0,092105106 0 4,0563188 0,563310509 100,5819805 0,598194674 4,1613453 0,10502644
+3,8511925 362127,1301 -0,20474438 -0,092108928 0 4,0559368 0,564129274 100,5908695 0,599064143 4,1611925 0,10525562
+3,8510396 362159,1303 -0,20489717 -0,092117213 0 4,0559368 0,564948037 100,5997584 0,599933609 4,1610396 0,10510283
+3,8510587 362191,1305 -0,20483989 -0,092110842 0 4,0558987 0,565766795 100,6086474 0,600803071 4,1610587 0,10516011
+3,850925 362223,1307 -0,20470619 -0,092117213 0 4,0556312 0,566585555 100,6175363 0,601672534 4,160925 0,10529381
+3,8509634 362255,1308 -0,20474438 -0,092114665 0 4,0557079 0,567404314 100,6264252 0,602541997 4,1609634 0,10525562
+3,8508677 362287,131 -0,2047253 -0,092105746 0 4,055593 0,568223073 100,6353142 0,603411459 4,1608677 0,1052747
+3,8506958 362319,1312 -0,2046871 -0,092108302 0 4,0553827 0,569041832 100,6442031 0,604280921 4,1606958 0,1053129
+3,8505621 362351,1314 -0,20487808 -0,092115298 0 4,0554399 0,569860592 100,653092 0,605150385 4,1605621 0,10512192
+3,8504095 362383,1315 -0,20483989 -0,092109561 0 4,0552492 0,570679352 100,661981 0,606019849 4,1604095 0,10516011
+3,850543 362415,1317 -0,20474438 -0,092107654 0 4,0552874 0,571498114 100,6708699 0,606889314 4,160543 0,10525562
+3,8504477 362447,1319 -0,20483989 -0,092110209 0 4,0552874 0,572316875 100,6797589 0,607758779 4,1604477 0,10516011
+3,8502948 362479,1321 -0,20483989 -0,092109561 0 4,0551348 0,573135638 100,6886478 0,608628245 4,1602948 0,10516011
+3,8502376 362511,1322 -0,20476349 -0,092109561 0 4,0550013 0,573954402 100,6975367 0,609497713 4,1602376 0,10523651
+3,850142 362543,1324 -0,20493537 -0,092110209 0 4,0550776 0,574773163 100,7064257 0,610367177 4,160142 0,10506463
+3,849951 362575,1326 -0,2046489 -0,092108302 0 4,0545998 0,575591924 100,7153146 0,611236641 4,159951 0,1053511
+3,849951 362607,1328 -0,2046489 -0,092106387 0 4,0545998 0,576410685 100,7242035 0,612106106 4,159951 0,1053511
+3,8497791 362639,1329 -0,20489717 -0,092112117 0 4,0546761 0,577229445 100,7330925 0,61297557 4,1597791 0,10510283
+3,8496263 362671,1331 -0,20485897 -0,092105746 0 4,0544853 0,578048206 100,7419814 0,613845034 4,1596263 0,10514103
+3,8495691 362703,1333 -0,20480168 -0,09210702 0 4,0543709 0,578866965 100,7508704 0,614714496 4,1595691 0,10519832
+3,849359 362735,1335 -0,20487808 -0,092112757 0 4,0542369 0,579685726 100,7597593 0,61558396 4,159359 0,10512192
+3,8494928 362767,1336 -0,20457251 -0,092112117 0 4,0540652 0,580504485 100,7686482 0,616453423 4,1594928 0,10542749
+3,8492253 362799,1338 -0,20474438 -0,092112757 0 4,0539699 0,581323244 100,7775372 0,617322885 4,1592253 0,10525562
+3,8492444 362831,134 -0,20480168 -0,092110209 0 4,0540462 0,582142005 100,7864261 0,618192349 4,1592444 0,10519832
+3,8491299 362863,1342 -0,2046871 -0,092112757 0 4,0538168 0,582960763 100,795315 0,619061811 4,1591299 0,1053129
+3,8490343 362895,1344 -0,2046871 -0,092110842 0 4,0537214 0,583779523 100,804204 0,619931275 4,1590343 0,1053129
+3,8491108 362927,1345 -0,20487808 -0,092108302 0 4,0539889 0,584598284 100,8130929 0,620800739 4,1591108 0,10512192
+3,8488433 362959,1347 -0,20480168 -0,092108302 0 4,0536451 0,585417045 100,8219819 0,621670203 4,1588433 0,10519832
+3,8487861 362991,1349 -0,20470619 -0,092105106 0 4,0534925 0,586235802 100,8308708 0,622539663 4,1587861 0,10529381
+3,8486524 363023,1351 -0,204668 -0,092108302 0 4,0533204 0,58705456 100,8397597 0,623409125 4,1586524 0,105332
+3,8486905 363055,1352 -0,2046871 -0,09210702 0 4,0533776 0,587873322 100,8486487 0,62427859 4,1586905 0,1053129
+3,8484423 363087,1354 -0,204668 -0,092103198 0 4,0531101 0,58869208 100,8575376 0,625148051 4,1584423 0,105332
+3,8483276 363119,1356 -0,2046871 -0,092114665 0 4,0530148 0,58951084 100,8664266 0,626017515 4,1583276 0,1053129
+3,8482513 363151,1358 -0,20459162 -0,092115298 0 4,0528431 0,590329601 100,8753155 0,62688698 4,1582513 0,10540838
+3,8482323 363183,1359 -0,2047253 -0,092115939 0 4,0529575 0,591148363 100,8842044 0,627756445 4,1582323 0,1052747
+3,8479266 363215,1361 -0,20476349 -0,092102565 0 4,05269 0,591967124 100,8930934 0,62862591 4,1579266 0,10523651
+3,8480794 363247,1363 -0,20462981 -0,09210702 0 4,0527091 0,592785886 100,9019823 0,629495375 4,1580794 0,10537019
+3,8479457 363279,1365 -0,20453432 -0,092110209 0 4,0524802 0,593604648 100,9108712 0,63036484 4,1579457 0,10546568
+3,8478312 363311,1366 -0,204668 -0,09210702 0 4,0524993 0,594423411 100,9197602 0,631234307 4,1578312 0,105332
+3,8476212 363343,1368 -0,20474438 -0,092111476 0 4,0523658 0,595242173 100,9286491 0,632103772 4,1576212 0,10525562
+3,8476784 363375,137 -0,2046489 -0,092111476 0 4,0523272 0,596060934 100,9375381 0,632973237 4,1576784 0,1053511
+3,8475256 363407,1372 -0,20457251 -0,092114665 0 4,0520983 0,596879695 100,946427 0,633842702 4,1575256 0,10542749
+3,8474684 363439,1373 -0,204668 -0,092103831 0 4,0521364 0,597698459 100,9553159 0,634712169 4,1574684 0,105332
+3,8472009 363471,1375 -0,20482078 -0,092106387 0 4,0520215 0,598517223 100,9642049 0,635581637 4,1572009 0,10517922
+3,8471437 363503,1377 -0,2046871 -0,092108928 0 4,0518308 0,599335988 100,9730938 0,636451106 4,1571437 0,1053129
+3,8471627 363535,1379 -0,20461071 -0,092108302 0 4,0517735 0,600154751 100,9819827 0,637320572 4,1571627 0,10538929
+3,8469908 363567,138 -0,20457251 -0,092110842 0 4,0515633 0,600973512 100,9908717 0,638190036 4,1569908 0,10542749
+3,8469527 363599,1382 -0,2046489 -0,092110209 0 4,0516014 0,601792272 100,9997606 0,6390595 4,1569527 0,1053511
+3,8468764 363631,1384 -0,20461071 -0,092114031 0 4,051487 0,602611032 101,0086496 0,639928964 4,1568764 0,10538929
+3,8466854 363663,1386 -0,20461071 -0,092114031 0 4,0512962 0,603429793 101,0175385 0,640798428 4,1566854 0,10538929
+3,8466089 363695,1388 -0,2046871 -0,092103198 0 4,0512958 0,604248553 101,0264274 0,641667891 4,1566089 0,1053129
+3,8462269 363727,1389 -0,20461071 -0,092113383 0 4,0508375 0,605067316 101,0353164 0,642537357 4,1562269 0,10538929
+3,8464179 363759,1391 -0,20451522 -0,092112117 0 4,0509329 0,605886078 101,0442053 0,643406824 4,1564179 0,10548478
+3,8463035 363791,1393 -0,20455341 -0,092115939 0 4,0508571 0,60670484 101,0530942 0,644276289 4,1563035 0,10544659
+3,8461125 363823,1395 -0,20445792 -0,092110842 0 4,0505705 0,607523604 101,0619832 0,645145757 4,1561125 0,10554208
+3,846055 363855,1396 -0,20451522 -0,092109561 0 4,0505705 0,608342369 101,0708721 0,646015226 4,156055 0,10548478
+3,8459978 363887,1398 -0,2046489 -0,092110209 0 4,0506468 0,609161132 101,0797611 0,646884692 4,1559978 0,1053511
+3,8459406 363919,14 -0,2046489 -0,092109561 0 4,0505896 0,609979896 101,08865 0,64775416 4,1559406 0,1053511
+3,8457878 363951,1402 -0,2047253 -0,092117853 0 4,0505133 0,61079866 101,0975389 0,648623627 4,1557878 0,1052747
+3,845845 363983,1403 -0,20453432 -0,092108302 0 4,0503793 0,611617425 101,1064279 0,649493096 4,155845 0,10546568
+3,8455586 364015,1405 -0,20461071 -0,092112757 0 4,0501695 0,612436191 101,1153168 0,650362565 4,1555586 0,10538929
+3,8451767 364047,1407 -0,2046489 -0,092112757 0 4,0498257 0,613254956 101,1242057 0,651232034 4,1551767 0,1053511
+3,845253 364079,1409 -0,204668 -0,092112757 0 4,049921 0,614073723 101,1330947 0,652101506 4,155253 0,105332
+3,8452148 364111,141 -0,2046489 -0,092110842 0 4,0498638 0,61489249 101,1419836 0,652970976 4,1552148 0,1053511
+3,8449664 364143,1412 -0,20445792 -0,092117853 0 4,0494242 0,615711256 101,1508726 0,653840446 4,1549664 0,10554208
+3,8450239 364175,1414 -0,20457251 -0,092110842 0 4,0495963 0,616530023 101,1597615 0,654709917 4,1550239 0,10542749
+3,8449092 364207,1416 -0,20445792 -0,092113383 0 4,049367 0,617348789 101,1686504 0,655579387 4,1549092 0,10554208
+3,8446801 364239,1417 -0,20432425 -0,092103831 0 4,0490046 0,618167556 101,1775394 0,656448857 4,1546801 0,10567575
+3,8445654 364271,1419 -0,20457251 -0,092107654 0 4,0491381 0,618986322 101,1864283 0,657318327 4,1545654 0,10542749
+3,844451 364303,1421 -0,20459162 -0,092108302 0 4,0490427 0,619805091 101,1953173 0,6581878 4,154451 0,10540838
+3,8445082 364335,1423 -0,20447703 -0,092111476 0 4,048985 0,620623857 101,2042062 0,65905727 4,1545082 0,10552297
+3,8443363 364367,1425 -0,20459162 -0,092108928 0 4,0489278 0,621442622 101,2130951 0,659926738 4,1543363 0,10540838
+3,8441644 364399,1426 -0,20451522 -0,092100017 0 4,0486794 0,622261387 101,2219841 0,660796207 4,1541644 0,10548478
+3,8441072 364431,1428 -0,20451522 -0,092110842 0 4,0486221 0,623080153 101,230873 0,661665677 4,1541072 0,10548478
+3,8440306 364463,143 -0,20453432 -0,092109561 0 4,0485649 0,623898918 101,2397619 0,662535145 4,1540306 0,10546568
+3,843878 364495,1432 -0,20449613 -0,092110209 0 4,0483742 0,624717684 101,2486509 0,663404615 4,153878 0,10550387
+3,8437443 364527,1433 -0,20436244 -0,092108928 0 4,0481067 0,625536449 101,2575398 0,664274084 4,1537443 0,10563756
+3,8436296 364559,1435 -0,20447703 -0,092101291 0 4,0481067 0,626355216 101,2664288 0,665143555 4,1536296 0,10552297
+3,8434005 364591,1437 -0,20440064 -0,092112757 0 4,047801 0,62717398 101,2753177 0,666013023 4,1534005 0,10559936
+3,8434386 364623,1439 -0,20440064 -0,092108302 0 4,0478392 0,627992745 101,2842066 0,666882491 4,1534386 0,10559936
+3,8431141 364655,144 -0,20449613 -0,092110842 0 4,0476103 0,628811507 101,2930956 0,667751957 4,1531141 0,10550387
+3,8432667 364687,1442 -0,20443884 -0,092114665 0 4,0477057 0,629630272 101,3019845 0,668621426 4,1532667 0,10556116
+3,8430758 364719,1444 -0,20449613 -0,092108302 0 4,0475717 0,630449038 101,3108734 0,669490896 4,1530758 0,10550387
+3,8429995 364751,1446 -0,20441973 -0,09210065 0 4,0474191 0,631267802 101,3197624 0,670360363 4,1529995 0,10558027
+3,8428276 364783,1447 -0,20443884 -0,092107654 0 4,0472665 0,632086567 101,3286513 0,671229832 4,1528276 0,10556116
+3,8426938 364815,1449 -0,20440064 -0,092106387 0 4,0470943 0,632905332 101,3375403 0,672099301 4,1526938 0,10559936
+3,8427129 364847,1451 -0,20449613 -0,09210702 0 4,0472088 0,633724099 101,3464292 0,672968772 4,1527129 0,10550387
+3,8424075 364879,1453 -0,20440064 -0,092110842 0 4,0468082 0,634542866 101,3553181 0,673838242 4,1524075 0,10559936
+3,8424265 364911,1454 -0,20455341 -0,092103198 0 4,0469799 0,635361632 101,3642071 0,674707712 4,1524265 0,10544659
+3,8422546 364943,1456 -0,20453432 -0,092111476 0 4,0467892 0,636180401 101,373096 0,675577185 4,1522546 0,10546568
+3,8421974 364975,1458 -0,20432425 -0,092108928 0 4,0465217 0,636999169 101,3819849 0,676446657 4,1521974 0,10567575
+3,8420064 365007,146 -0,20438154 -0,092108302 0 4,0463881 0,637817937 101,3908739 0,677316129 4,1520064 0,10561846
+3,8420255 365039,1462 -0,20440064 -0,092116579 0 4,0464263 0,638636704 101,3997628 0,6781856 4,1520255 0,10559936
+3,8418155 365071,1463 -0,20424786 -0,092113383 0 4,0460634 0,63945547 101,4086518 0,67905507 4,1518155 0,10575214
+3,8418345 365103,1465 -0,20432425 -0,092103831 0 4,0461588 0,640274236 101,4175407 0,679924539 4,1518345 0,10567575
+3,8414907 365135,1467 -0,20449613 -0,092121035 0 4,0459867 0,641093004 101,4264296 0,68079401 4,1514907 0,10550387
+3,841357 365167,1469 -0,20436244 -0,092113383 0 4,0457196 0,641911772 101,4353186 0,681663483 4,151357 0,10563756
+3,8413379 365199,147 -0,20440064 -0,092108302 0 4,0457387 0,642730541 101,4442075 0,682532956 4,1513379 0,10559936
+3,8411469 365231,1472 -0,20440064 -0,092112117 0 4,0455475 0,643549309 101,4530964 0,683402428 4,1511469 0,10559936
+3,8410132 365263,1474 -0,20440064 -0,092111476 0 4,045414 0,644368076 101,4619854 0,684271899 4,1510132 0,10559936
+3,8410132 365295,1476 -0,20451522 -0,092106387 0 4,0455284 0,645186843 101,4708743 0,685141369 4,1510132 0,10548478
+3,8408797 365327,1477 -0,20436244 -0,092110209 0 4,0452423 0,646005608 101,4797633 0,686010838 4,1508797 0,10563756
+3,8407078 365359,1479 -0,20430516 -0,092112117 0 4,045013 0,646824373 101,4886522 0,686880307 4,1507078 0,10569484
+3,840555 365391,1481 -0,20447703 -0,092108928 0 4,045032 0,647643137 101,4975411 0,687749774 4,150555 0,10552297
+3,8404403 365423,1483 -0,20432425 -0,092107654 0 4,0447645 0,648461898 101,5064301 0,688619239 4,1504403 0,10567575
+3,8403068 365455,1484 -0,20432425 -0,092119761 0 4,044631 0,64928066 101,515319 0,689488704 4,1503068 0,10567575
+3,8400774 365487,1486 -0,20436244 -0,092105106 0 4,0444398 0,65009942 101,5242079 0,690358168 4,1500774 0,10563756
+3,839963 365519,1488 -0,20419057 -0,092114031 0 4,0441537 0,650918187 101,5330969 0,691227639 4,149963 0,10580943
+3,8398292 365551,149 -0,20436244 -0,092104472 0 4,0441918 0,651736953 101,5419858 0,692097109 4,1498292 0,10563756
+3,8398674 365583,1491 -0,20430516 -0,092110842 0 4,0441723 0,652555718 101,5508748 0,692966577 4,1498674 0,10569484
+3,8396573 365615,1493 -0,20434335 -0,092111476 0 4,0440006 0,653374484 101,5597637 0,693836047 4,1496573 0,10565665
+3,8395045 365647,1495 -0,20430516 -0,092112757 0 4,0438094 0,654193252 101,5686526 0,694705519 4,1495045 0,10569484
+3,839371 365679,1497 -0,20428605 -0,092113383 0 4,0436568 0,655012022 101,5775416 0,695574993 4,149371 0,10571395
+3,83939 365711,1499 -0,20434335 -0,092111476 0 4,0437336 0,655830792 101,5864305 0,696444467 4,14939 0,10565665
+3,8391416 365743,15 -0,20432425 -0,092110842 0 4,0434656 0,65664956 101,5953195 0,697313939 4,1491416 0,10567575
+3,8390081 365775,1502 -0,20438154 -0,092115298 0 4,0433898 0,657468329 101,6042084 0,698183412 4,1490081 0,10561846
+3,8388743 365807,1504 -0,20440064 -0,092108928 0 4,0432749 0,658287095 101,6130973 0,699052882 4,1488743 0,10559936
+3,8387787 365839,1506 -0,20420967 -0,092114665 0 4,0429883 0,659105862 101,6219863 0,699922353 4,1487787 0,10579033
+3,8386834 365871,1507 -0,20409508 -0,092106387 0 4,0427785 0,659924626 101,6308752 0,70079182 4,1486834 0,10590492
+3,8385496 365903,1509 -0,20438154 -0,09210065 0 4,0429311 0,660743393 101,6397641 0,701661291 4,1485496 0,10561846
+3,8384733 365935,1511 -0,20424786 -0,092121668 0 4,0427213 0,661562161 101,6486531 0,702530762 4,1484733 0,10575214
+3,8381295 365967,1513 -0,20428605 -0,092114031 0 4,0424156 0,662380925 101,657542 0,703400231 4,1481295 0,10571395
+3,8379767 365999,1514 -0,20438154 -0,092106387 0 4,0423584 0,66319969 101,666431 0,704269699 4,1479767 0,10561846
+3,8379576 366031,1516 -0,20432425 -0,092115939 0 4,0422821 0,664018454 101,6753199 0,705139167 4,1479576 0,10567575
+3,8377476 366063,1518 -0,20432425 -0,092114665 0 4,0420718 0,66483722 101,6842088 0,706008637 4,1477476 0,10567575
+3,8378623 366095,152 -0,20424786 -0,092105106 0 4,04211 0,665655985 101,6930978 0,706878105 4,1478623 0,10575214
+3,8375566 366127,1521 -0,20422876 -0,092110209 0 4,0417852 0,66647475 101,7019867 0,707747574 4,1475566 0,10577124
+3,8375185 366159,1523 -0,20417146 -0,092112757 0 4,0416899 0,667293518 101,7108756 0,708617046 4,1475185 0,10582854
+3,8373084 366191,1525 -0,20420967 -0,092109561 0 4,0415182 0,668112289 101,7197646 0,70948652 4,1473084 0,10579033
+3,8372128 366223,1527 -0,20430516 -0,092114031 0 4,0415177 0,668931059 101,7286535 0,710355995 4,1472128 0,10569484
+3,8370409 366255,1528 -0,20428605 -0,09210702 0 4,041327 0,669749828 101,7375425 0,711225468 4,1470409 0,10571395
+3,83706 366287,153 -0,20424786 -0,092111476 0 4,0413079 0,670568594 101,7464314 0,712094938 4,14706 0,10575214
+3,8368118 366319,1532 -0,20438154 -0,092108928 0 4,0411935 0,671387363 101,7553203 0,712964411 4,1468118 0,10561846
+3,8367927 366351,1534 -0,20432425 -0,092115298 0 4,0411167 0,672206131 101,7642093 0,713833883 4,1467927 0,10567575
+3,8366399 366383,1536 -0,20409508 -0,092114031 0 4,0407348 0,673024898 101,7730982 0,714703353 4,1466399 0,10590492
+3,836468 366415,1537 -0,20420967 -0,092116579 0 4,0406775 0,673843661 101,7819871 0,71557282 4,146468 0,10579033
+3,8361433 366447,1539 -0,20432425 -0,092110209 0 4,0404673 0,674662422 101,7908761 0,716442285 4,1461433 0,10567575
+3,836086 366479,1541 -0,20403779 -0,092110209 0 4,0401239 0,675481186 101,799765 0,717311752 4,146086 0,10596221
+3,8359907 366511,1543 -0,20411418 -0,092109561 0 4,0401049 0,676299947 101,808654 0,718181217 4,1459907 0,10588582
+3,8359523 366543,1544 -0,20413327 -0,092112117 0 4,0400858 0,677118712 101,8175429 0,719050686 4,1459523 0,10586673
+3,835685 366575,1546 -0,20420967 -0,092108302 0 4,0398946 0,677937477 101,8264318 0,719920154 4,145685 0,10579033
+3,8355513 366607,1548 -0,20415238 -0,092108302 0 4,0397038 0,678756239 101,8353208 0,720789619 4,1455513 0,10584762
+3,8353221 366639,155 -0,20411418 -0,092107654 0 4,0394363 0,679575003 101,8442097 0,721659087 4,1453221 0,10588582
+3,835284 366671,1551 -0,20409508 -0,092113383 0 4,0393791 0,680393767 101,8530986 0,722528555 4,145284 0,10590492
+3,8351502 366703,1553 -0,20424786 -0,092108302 0 4,0393982 0,681212532 101,8619876 0,723398023 4,1451502 0,10575214
+3,8349974 366735,1555 -0,20430516 -0,092110842 0 4,0393023 0,682031299 101,8708765 0,724267494 4,1449974 0,10569484
+3,834883 366767,1557 -0,20420967 -0,092110209 0 4,0390925 0,682850063 101,8797655 0,725136962 4,144883 0,10579033
+3,8347301 366799,1558 -0,20415238 -0,092106387 0 4,0388827 0,683668826 101,8886544 0,726006428 4,1447301 0,10584762
+3,8346727 366831,156 -0,20432425 -0,092112757 0 4,0389967 0,684487588 101,8975433 0,726875895 4,1446727 0,10567575
+3,8344054 366863,1562 -0,20413327 -0,092110209 0 4,0385389 0,685306351 101,9064323 0,727745361 4,1444054 0,10586673
+3,8343291 366895,1564 -0,20422876 -0,092110842 0 4,038558 0,686125116 101,9153212 0,72861483 4,1443291 0,10577124
+3,8341572 366927,1565 -0,20411418 -0,092108928 0 4,0382714 0,68694388 101,9242102 0,729484297 4,1441572 0,10588582
+3,8340235 366959,1567 -0,20415238 -0,092108302 0 4,0381761 0,687762643 101,9330991 0,730353764 4,1440235 0,10584762
+3,8337944 366991,1569 -0,20422876 -0,092105106 0 4,038023 0,688581405 101,941988 0,731223229 4,1437944 0,10577124
+3,8337753 367023,1571 -0,20409508 -0,092112757 0 4,0378704 0,689400163 101,950877 0,73209269 4,1437753 0,10590492
+3,8335843 367055,1573 -0,20413327 -0,092104472 0 4,0377178 0,690218922 101,9597659 0,732962152 4,1435843 0,10586673
+3,8333933 367087,1574 -0,20420967 -0,092111476 0 4,0376029 0,691037682 101,9686548 0,733831616 4,1433933 0,10579033
+3,8332977 367119,1576 -0,20415238 -0,092114665 0 4,0374503 0,691856443 101,9775438 0,734701081 4,1432977 0,10584762
+3,8331258 367151,1578 -0,20407598 -0,092113383 0 4,0372019 0,692675203 101,9864327 0,735570545 4,1431258 0,10592402
+3,8330305 367183,158 -0,20411418 -0,092113383 0 4,0371447 0,693493964 101,9953217 0,736440009 4,1430305 0,10588582
+3,8329158 367215,1581 -0,20417146 -0,092107654 0 4,0370874 0,694312723 102,0042106 0,737309471 4,1429158 0,10582854
+3,8327439 367247,1583 -0,2039423 -0,092115939 0 4,0366859 0,695131482 102,0130995 0,738178933 4,1427439 0,1060577
+3,8326101 367279,1585 -0,2039614 -0,092108928 0 4,0365715 0,695950242 102,0219885 0,739048397 4,1426101 0,1060386
+3,8324385 367311,1587 -0,20420967 -0,092112117 0 4,0366483 0,696769002 102,0308774 0,73991786 4,1424385 0,10579033
+3,8323238 367343,1588 -0,20398049 -0,092111476 0 4,0363045 0,697587758 102,0397663 0,740787319 4,1423238 0,10601951
+3,832171 367375,159 -0,2039614 -0,092111476 0 4,0361323 0,698406514 102,0486553 0,741656779 4,142171 0,1060386
+3,8320756 367407,1592 -0,20405689 -0,09210702 0 4,0361323 0,699225274 102,0575442 0,742526241 4,1420756 0,10594311
+3,8318081 367439,1594 -0,20407598 -0,092110842 0 4,0358839 0,700044031 102,0664332 0,743395701 4,1418081 0,10592402
+3,8317318 367471,1595 -0,20415238 -0,092104472 0 4,0358844 0,700862792 102,0753221 0,744265166 4,1417318 0,10584762
+3,8316553 367503,1597 -0,20415238 -0,092119761 0 4,0358076 0,701681552 102,084211 0,74513463 4,1416553 0,10584762
+3,8315408 367535,1599 -0,203885 -0,092112117 0 4,0354257 0,702500313 102,0931 0,746004094 4,1415408 0,106115
+3,8312924 367567,1601 -0,20399959 -0,092107654 0 4,0352921 0,703319074 102,1019889 0,746873558 4,1412924 0,10600041
+3,8310442 367599,1602 -0,20399959 -0,092108928 0 4,0350437 0,704137835 102,1108778 0,747743023 4,1410442 0,10600041
+3,8308914 367631,1604 -0,2039614 -0,092113383 0 4,034853 0,704956594 102,1197668 0,748612486 4,1408914 0,1060386
+3,8308342 367663,1606 -0,20405689 -0,092110842 0 4,0348911 0,705775356 102,1286557 0,749481951 4,1408342 0,10594311
+3,8306813 367695,1608 -0,20380862 -0,092110209 0 4,0344901 0,706594118 102,1375447 0,750351416 4,1406813 0,10619138
+3,8307195 367727,161 -0,2040187 -0,092109561 0 4,0347381 0,707412881 102,1464336 0,751220883 4,1407195 0,1059813
+3,8303757 367759,1611 -0,20398049 -0,092102565 0 4,0343561 0,708231644 102,1553225 0,75209035 4,1403757 0,10601951
+3,8300703 367791,1613 -0,20419057 -0,092111476 0 4,0342607 0,709050407 102,1642115 0,752959817 4,1400703 0,10580943
+3,8299937 367823,1615 -0,20403779 -0,092110842 0 4,0340314 0,709869172 102,1731004 0,753829285 4,1399937 0,10596221
+3,8298411 367855,1617 -0,2040187 -0,092108302 0 4,0338597 0,710687935 102,1819893 0,754698751 4,1398411 0,1059813
+3,8296883 367887,1618 -0,20409508 -0,092108302 0 4,0337834 0,7115067 102,1908783 0,75556822 4,1396883 0,10590492
+3,8295355 367919,162 -0,2039614 -0,092113383 0 4,0334969 0,712325465 102,1997672 0,756437689 4,1395355 0,1060386
+3,8294592 367951,1622 -0,2039614 -0,092108302 0 4,0334206 0,713144231 102,2086562 0,757307158 4,1394592 0,1060386
+3,8293636 367983,1624 -0,20390411 -0,092110842 0 4,0332675 0,713962996 102,2175451 0,758176627 4,1393636 0,10609589
+3,8290963 368015,1625 -0,20390411 -0,092116579 0 4,0330005 0,71478176 102,226434 0,759046095 4,1390963 0,10609589
+3,8290198 368047,1627 -0,20398049 -0,09210702 0 4,0330005 0,715600525 102,235323 0,759915564 4,1390198 0,10601951
+3,8288863 368079,1629 -0,20409508 -0,092112757 0 4,0329814 0,71641929 102,2442119 0,760785032 4,1388863 0,10590492
+3,8286378 368111,1631 -0,2039614 -0,092108928 0 4,0325994 0,717238053 102,2531009 0,761654499 4,1386378 0,1060386
+3,8287334 368143,1632 -0,20390411 -0,092108928 0 4,0326376 0,718056817 102,2619898 0,762523967 4,1387334 0,10609589
+3,8283131 368175,1634 -0,2039614 -0,09210702 0 4,0322747 0,718875584 102,2708787 0,763393437 4,1383131 0,1060386
+3,8281796 368207,1636 -0,2039614 -0,092111476 0 4,0321412 0,71969435 102,2797677 0,764262907 4,1381796 0,1060386
+3,8281221 368239,1638 -0,20386592 -0,092107654 0 4,0319881 0,720513116 102,2886566 0,765132377 4,1381221 0,10613408
+3,827893 368271,1639 -0,2039614 -0,092104472 0 4,0318546 0,721331878 102,2975455 0,766001843 4,137893 0,1060386
+3,8278358 368303,1641 -0,20407598 -0,092104472 0 4,0319118 0,722150639 102,3064345 0,766871307 4,1378358 0,10592402
+3,8275492 368335,1643 -0,2039614 -0,092105746 0 4,0315108 0,722969401 102,3153234 0,767740773 4,1375492 0,1060386
+3,8273201 368367,1645 -0,20390411 -0,09211912 0 4,0312243 0,723788164 102,3242124 0,768610239 4,1373201 0,10609589
+3,8272247 368399,1646 -0,20392321 -0,092110209 0 4,031148 0,724606927 102,3331013 0,769479706 4,1372247 0,10607679
+3,8269954 368431,1648 -0,20390411 -0,092108302 0 4,0308995 0,725425689 102,3419902 0,770349172 4,1369954 0,10609589
+3,8269572 368463,165 -0,20399959 -0,092108302 0 4,0309567 0,726244452 102,3508792 0,771218638 4,1369572 0,10600041
+3,826709 368495,1652 -0,203885 -0,092114031 0 4,0305939 0,727063214 102,3597681 0,772088104 4,136709 0,106115
+3,826709 368527,1654 -0,203885 -0,092115298 0 4,0305939 0,727881978 102,368657 0,772957571 4,136709 0,106115
+3,8265753 368559,1655 -0,20392321 -0,092106387 0 4,0304985 0,728700741 102,377546 0,773827038 4,1365753 0,10607679
+3,8262506 368591,1657 -0,20386592 -0,092117213 0 4,0301166 0,729519506 102,3864349 0,774696507 4,1362506 0,10613408
+3,8261361 368623,1659 -0,20407598 -0,092110209 0 4,0302119 0,730338268 102,3953239 0,775565972 4,1361361 0,10592402
+3,826098 368655,1661 -0,20384681 -0,09210702 0 4,0299449 0,73115703 102,4042128 0,776435438 4,136098 0,10615319
+3,8259451 368687,1662 -0,20377043 -0,092114031 0 4,0297155 0,731975792 102,4131017 0,777304903 4,1359451 0,10622957
+3,825716 368719,1664 -0,203885 -0,092109561 0 4,0296011 0,732794554 102,4219907 0,778174369 4,135716 0,106115
+3,8254676 368751,1666 -0,20390411 -0,092105106 0 4,0293717 0,733613314 102,4308796 0,779043832 4,1354676 0,10609589
+3,8253722 368783,1668 -0,20378952 -0,092113383 0 4,0291619 0,734432073 102,4397685 0,779913294 4,1353722 0,10621048
+3,8251238 368815,1669 -0,2039614 -0,092112117 0 4,0290852 0,735250835 102,4486575 0,78078276 4,1351238 0,1060386
+3,8249712 368847,1671 -0,20375133 -0,092108928 0 4,0287228 0,736069596 102,4575464 0,781652224 4,1349712 0,10624867
+3,8248374 368879,1673 -0,2039423 -0,092110842 0 4,02878 0,736888358 102,4664354 0,78252169 4,1348374 0,1060577
+3,8248374 368911,1675 -0,20373224 -0,092104472 0 4,0285697 0,737707119 102,4753243 0,783391155 4,1348374 0,10626776
+3,8244936 368943,1676 -0,20382772 -0,092105746 0 4,0283213 0,738525879 102,4842132 0,784260617 4,1344936 0,10617228
+3,8242073 368975,1678 -0,20392321 -0,092110209 0 4,0281305 0,73934464 102,4931022 0,785130082 4,1342073 0,10607679
+3,8242073 369007,168 -0,20378952 -0,092109561 0 4,027997 0,740163401 102,5019911 0,785999546 4,1342073 0,10621048
+3,8239779 369039,1682 -0,203885 -0,092110842 0 4,027863 0,74098216 102,51088 0,786869009 4,1339779 0,106115
+3,823787 369071,1683 -0,20378952 -0,092105106 0 4,0275764 0,74180092 102,519769 0,787738473 4,133787 0,10621048
+3,8237679 369103,1685 -0,20392321 -0,092112117 0 4,0276909 0,742619682 102,5286579 0,788607938 4,1337679 0,10607679
+3,8236341 369135,1687 -0,20371313 -0,092108928 0 4,0273471 0,743438448 102,5375469 0,789477408 4,1336341 0,10628687
+3,823386 369167,1689 -0,20365584 -0,092116579 0 4,0270419 0,744257213 102,5464358 0,790346876 4,133386 0,10634416
+3,8232906 369199,1691 -0,20382772 -0,092109561 0 4,0271182 0,745075978 102,5553247 0,791216346 4,1332906 0,10617228
+3,8230803 369231,1692 -0,20373224 -0,092115298 0 4,0268126 0,745894742 102,5642137 0,792085813 4,1330803 0,10626776
+3,8229659 369263,1694 -0,20369403 -0,092110209 0 4,02666 0,746713504 102,5731026 0,792955278 4,1329659 0,10630597
+3,8227558 369295,1696 -0,20386592 -0,092110842 0 4,0266218 0,747532264 102,5819916 0,793824741 4,1327558 0,10613408
+3,8227177 369327,1698 -0,20384681 -0,092106387 0 4,0265646 0,748351023 102,5908805 0,794694204 4,1327177 0,10615319
+3,822412 369359,1699 -0,20365584 -0,092109561 0 4,0260677 0,749169783 102,5997694 0,795563667 4,132412 0,10634416
+3,822221 369391,1701 -0,20359854 -0,092108928 0 4,0258198 0,749988542 102,6086584 0,79643313 4,132221 0,10640146
+3,8219154 369423,1703 -0,20363675 -0,09210702 0 4,0255523 0,750807303 102,6175473 0,797302594 4,1319154 0,10636325
+3,8220301 369455,1705 -0,20359854 -0,092112757 0 4,0256286 0,751626062 102,6264362 0,798172057 4,1320301 0,10640146
+3,8218391 369487,1706 -0,20365584 -0,092114031 0 4,0254951 0,752444819 102,6353252 0,799041517 4,1318391 0,10634416
+3,8215525 369519,1708 -0,20373224 -0,092113383 0 4,0252848 0,75326358 102,6442141 0,799910981 4,1315525 0,10626776
+3,8213425 369551,171 -0,20384681 -0,092108928 0 4,0251894 0,754082341 102,6531031 0,800780445 4,1313425 0,10615319
+3,8211706 369583,1712 -0,20367494 -0,092110842 0 4,0248456 0,7549011 102,661992 0,801649908 4,1311706 0,10632506
+3,8211133 369615,1713 -0,20378952 -0,092107654 0 4,0249028 0,755719861 102,6708809 0,802519372 4,1311133 0,10621048
+3,8208461 369647,1715 -0,20363675 -0,092107654 0 4,0244827 0,75653862 102,6797699 0,803388834 4,1308461 0,10636325
+3,8206933 369679,1717 -0,20367494 -0,092104472 0 4,0243683 0,757357381 102,6886588 0,804258299 4,1306933 0,10632506
+3,8206742 369711,1719 -0,203885 -0,092107654 0 4,024559 0,758176144 102,6975477 0,805127766 4,1306742 0,106115
+3,8204067 369743,172 -0,20336938 -0,092106387 0 4,0237761 0,758994907 102,7064367 0,805997232 4,1304067 0,10663062
+3,8201966 369775,1722 -0,20371313 -0,092112757 0 4,0239096 0,759813671 102,7153256 0,8068667 4,1301966 0,10628687
+3,8201013 369807,1724 -0,20369403 -0,092108302 0 4,0237951 0,760632434 102,7242146 0,807736167 4,1301013 0,10630597
+3,8199103 369839,1726 -0,20367494 -0,092105106 0 4,0235853 0,761451198 102,7331035 0,808605634 4,1299103 0,10632506
+3,8198147 369871,1728 -0,20365584 -0,092109561 0 4,0234704 0,762269958 102,7419924 0,809475098 4,1298147 0,10634416
+3,8195856 369903,1729 -0,20365584 -0,092111476 0 4,0232415 0,763088719 102,7508814 0,810344562 4,1295856 0,10634416
+3,8194709 369935,1731 -0,20359854 -0,092100017 0 4,0230694 0,763907479 102,7597703 0,811214026 4,1294709 0,10640146
+3,8192608 369967,1733 -0,20342667 -0,092110209 0 4,0226874 0,764726236 102,7686592 0,812083486 4,1292608 0,10657333
+3,8190126 369999,1735 -0,20350306 -0,092108928 0 4,0225158 0,765544998 102,7775482 0,812952952 4,1290126 0,10649694
+3,818898 370031,1736 -0,20371313 -0,092102565 0 4,0226111 0,766363758 102,7864371 0,813822415 4,128898 0,10628687
+3,8187451 370063,1738 -0,20367494 -0,092110209 0 4,0224199 0,767182518 102,7953261 0,814691878 4,1287451 0,10632506
+3,8184779 370095,174 -0,20365584 -0,092108302 0 4,0221338 0,76800128 102,804215 0,815561344 4,1284779 0,10634416
+3,8183441 370127,1742 -0,20350306 -0,092110209 0 4,0218472 0,76882004 102,8131039 0,816430807 4,1283441 0,10649694
+3,8182297 370159,1743 -0,20357946 -0,092114665 0 4,0218091 0,769638799 102,8219929 0,81730027 4,1282297 0,10642054
+3,8180003 370191,1745 -0,20359854 -0,092112117 0 4,0215988 0,770457561 102,8308818 0,818169735 4,1280003 0,10640146
+3,8178093 370223,1747 -0,20352216 -0,092105746 0 4,0213313 0,771276321 102,8397707 0,819039199 4,1278093 0,10647784
+3,8176565 370255,1749 -0,20361765 -0,092109561 0 4,0212741 0,772095083 102,8486597 0,819908664 4,1276565 0,10638235
+3,8176565 370287,175 -0,20365584 -0,092114665 0 4,0213122 0,772913845 102,8575486 0,820778129 4,1276565 0,10634416
+3,817313 370319,1752 -0,20354126 -0,092114665 0 4,020854 0,773732606 102,8664376 0,821647594 4,127313 0,10645874
+3,8173511 370351,1754 -0,20344578 -0,092112117 0 4,0207968 0,774551367 102,8753265 0,822517059 4,1273511 0,10655422
+3,8170836 370383,1756 -0,20354126 -0,092115939 0 4,0206246 0,775370127 102,8842154 0,823386522 4,1270836 0,10645874
+3,8168354 370415,1757 -0,20357946 -0,092111476 0 4,0204148 0,776188889 102,8931044 0,824255987 4,1268354 0,10642054
+3,8166635 370447,1759 -0,20363675 -0,092116579 0 4,0203004 0,777007651 102,9019933 0,825125453 4,1266635 0,10636325
+3,8164535 370479,1761 -0,20344578 -0,092113383 0 4,0198994 0,77782641 102,9108823 0,825994916 4,1264535 0,10655422
+3,8162434 370511,1763 -0,20352216 -0,092108928 0 4,0197654 0,77864517 102,9197712 0,826864379 4,1262434 0,10647784
+3,8161671 370543,1765 -0,20344578 -0,092104472 0 4,0196128 0,779463933 102,9286601 0,827733845 4,1261671 0,10655422
+3,8159761 370575,1766 -0,20365584 -0,092108302 0 4,0196319 0,780282696 102,9375491 0,828603312 4,1259761 0,10634416
+3,8158615 370607,1768 -0,20348397 -0,092111476 0 4,0193453 0,781101461 102,946438 0,82947278 4,1258615 0,10651603
+3,8156705 370639,177 -0,20346487 -0,092107654 0 4,0191355 0,781920224 102,9553269 0,830342247 4,1256705 0,10653513
+3,8154223 370671,1772 -0,20344578 -0,092108302 0 4,018868 0,782738989 102,9642159 0,831211715 4,1254223 0,10655422
+3,8153076 370703,1773 -0,20354126 -0,092112117 0 4,0188489 0,783557749 102,9731048 0,83208118 4,1253076 0,10645874
+3,8150976 370735,1775 -0,20348397 -0,092113383 0 4,0185814 0,784376509 102,9819938 0,832950643 4,1250976 0,10651603
+3,8147538 370767,1777 -0,20356035 -0,09210702 0 4,0183144 0,78519527 102,9908827 0,833820107 4,1247538 0,10643965
+3,8147728 370799,1779 -0,20359854 -0,092117853 0 4,0183716 0,786014031 102,9997716 0,834689572 4,1247728 0,10640146
+3,8146582 370831,178 -0,20331208 -0,092120394 0 4,0179701 0,786832793 103,0086606 0,835559037 4,1246582 0,10668792
+3,8143909 370863,1782 -0,20348397 -0,092110842 0 4,0178747 0,787651554 103,0175495 0,836428502 4,1243909 0,10651603
+3,8143337 370895,1784 -0,20333119 -0,092107654 0 4,0176649 0,788470315 103,0264384 0,837297966 4,1243337 0,10666881
+3,8141618 370927,1786 -0,20333119 -0,09210702 0 4,0174928 0,789289073 103,0353274 0,838167427 4,1241618 0,10666881
+3,8138561 370959,1787 -0,20336938 -0,092105746 0 4,0172253 0,790107833 103,0442163 0,83903689 4,1238561 0,10663062
+3,8137224 370991,1789 -0,20348397 -0,092107654 0 4,0172062 0,790926591 103,0531053 0,839906352 4,1237224 0,10651603
+3,8136079 371023,1791 -0,20336938 -0,092111476 0 4,0169773 0,791745352 103,0619942 0,840775816 4,1236079 0,10663062
+3,8133597 371055,1793 -0,20340757 -0,092105106 0 4,0167675 0,792564109 103,0708831 0,841645277 4,1233597 0,10659243
+3,8131878 371087,1794 -0,20338848 -0,092107654 0 4,0165763 0,79338287 103,0797721 0,842514741 4,1231878 0,10661152
+3,8131304 371119,1796 -0,20335029 -0,092109561 0 4,0164804 0,794201629 103,088661 0,843384204 4,1231304 0,10664971
+3,8128059 371151,1798 -0,20335029 -0,092103831 0 4,0161562 0,795020389 103,0975499 0,844253666 4,1228059 0,10664971
+3,8127866 371183,18 -0,20348397 -0,092109561 0 4,0162706 0,79583915 103,1064389 0,845123131 4,1227866 0,10651603
+3,8125765 371215,1802 -0,20348397 -0,092111476 0 4,0160604 0,79665791 103,1153278 0,845992595 4,1225765 0,10651603
+3,8123856 371247,1803 -0,20336938 -0,092112117 0 4,0157547 0,797476671 103,1242168 0,846862059 4,1223856 0,10663062
+3,8120801 371279,1805 -0,20333119 -0,092115298 0 4,0154114 0,79829543 103,1331057 0,847731521 4,1220801 0,10666881
+3,8120611 371311,1807 -0,2032548 -0,092102565 0 4,015316 0,79911419 103,1419946 0,848600985 4,1220611 0,1067452
+3,8118892 371343,1809 -0,20336938 -0,092106387 0 4,0152588 0,799932949 103,1508836 0,849470447 4,1218892 0,10663062
+3,8117173 371375,181 -0,20327389 -0,092110209 0 4,0149913 0,800751707 103,1597725 0,850339909 4,1217173 0,10672611
+3,8114688 371407,1812 -0,20342667 -0,09210702 0 4,0148954 0,801570464 103,1686614 0,851209369 4,1214688 0,10657333
+3,8112969 371439,1814 -0,20335029 -0,092112117 0 4,014647 0,80238922 103,1775504 0,852078828 4,1212969 0,10664971
+3,8112206 371471,1816 -0,2032548 -0,092108302 0 4,0144753 0,803207975 103,1864393 0,852948286 4,1212206 0,1067452
+3,8109343 371503,1817 -0,20317841 -0,092112117 0 4,0141125 0,80402673 103,1953283 0,853817744 4,1209343 0,10682159
+3,8109343 371535,1819 -0,2032166 -0,092104472 0 4,0141511 0,804845486 103,2042172 0,854687203 4,1209343 0,1067834
+3,8105905 371567,1821 -0,20342667 -0,092112117 0 4,0140171 0,805664241 103,2131061 0,855556661 4,1205905 0,10657333
+3,8104186 371599,1823 -0,20331208 -0,092113383 0 4,0137305 0,806482997 103,2219951 0,85642612 4,1204186 0,10668792
+3,8102086 371631,1824 -0,20327389 -0,092113383 0 4,0134826 0,807301752 103,230884 0,857295579 4,1202086 0,10672611
+3,8100939 371663,1826 -0,203293 -0,092112757 0 4,0133867 0,808120507 103,2397729 0,858165037 4,1200939 0,106707
+3,8098075 371695,1828 -0,20315932 -0,092114665 0 4,0129666 0,808939266 103,2486619 0,859034499 4,1198075 0,10684068
+3,8096356 371727,183 -0,20336938 -0,092113383 0 4,0130053 0,809758025 103,2575508 0,859903961 4,1196356 0,10663062
+3,8094828 371759,1831 -0,2032166 -0,092107654 0 4,0126996 0,810576784 103,2664398 0,860773424 4,1194828 0,1067834
+3,8092918 371791,1833 -0,20317841 -0,092105746 0 4,0124702 0,811395544 103,2753287 0,861642887 4,1192918 0,10682159
+3,809139 371823,1835 -0,20317841 -0,092110209 0 4,0123177 0,812214304 103,2842176 0,86251235 4,119139 0,10682159
+3,8091199 371855,1837 -0,203293 -0,092108302 0 4,012413 0,813033063 103,2931066 0,863381813 4,1191199 0,106707
+3,808738 371887,1839 -0,203293 -0,09210702 0 4,0120311 0,813851824 103,3019955 0,864251277 4,118738 0,106707
+3,8086998 371919,184 -0,2032357 -0,092110842 0 4,0119357 0,814670583 103,3108845 0,86512074 4,1186998 0,1067643
+3,8085089 371951,1842 -0,20319751 -0,092109561 0 4,0117064 0,815489343 103,3197734 0,865990203 4,1185089 0,10680249
+3,8082795 371983,1844 -0,2032166 -0,092109561 0 4,0114961 0,816308103 103,3286623 0,866859667 4,1182795 0,1067834
+3,8080122 372015,1846 -0,20298743 -0,092110209 0 4,0109997 0,817126865 103,3375513 0,867729132 4,1180122 0,10701257
+3,807955 372047,1847 -0,20317841 -0,092115939 0 4,0111332 0,817945626 103,3464402 0,868598596 4,117955 0,10682159
+3,807745 372079,1849 -0,20317841 -0,092107654 0 4,0109234 0,81876439 103,3553291 0,869468064 4,117745 0,10682159
+3,8074393 372111,1851 -0,20327389 -0,092106387 0 4,0107131 0,819583154 103,3642181 0,870337531 4,1174393 0,10672611
+3,8073056 372143,1853 -0,20312111 -0,092113383 0 4,0104265 0,820401914 103,373107 0,871206995 4,1173056 0,10687889
+3,8071146 372175,1854 -0,20298743 -0,092111476 0 4,0101023 0,821220674 103,381996 0,872076458 4,1171146 0,10701257
+3,8069618 372207,1856 -0,2032166 -0,092114031 0 4,0101786 0,822039436 103,3908849 0,872945924 4,1169618 0,1067834
+3,8067899 372239,1858 -0,20317841 -0,092105106 0 4,0099683 0,822858199 103,3997738 0,87381539 4,1167899 0,10682159
+3,8067708 372271,186 -0,20319751 -0,092110842 0 4,0099683 0,823676962 103,4086628 0,874684857 4,1167708 0,10680249
+3,806427 372303,1861 -0,2032166 -0,09210702 0 4,0096436 0,824495727 103,4175517 0,875554326 4,116427 0,1067834
+3,8062935 372335,1863 -0,20312111 -0,092106387 0 4,0094147 0,825314492 103,4264406 0,876423794 4,1162935 0,10687889
+3,8060451 372367,1865 -0,20315932 -0,092105106 0 4,0092044 0,826133257 103,4353296 0,877293263 4,1160451 0,10684068
+3,8060069 372399,1867 -0,20317841 -0,092114031 0 4,0091853 0,826952024 103,4442185 0,878162734 4,1160069 0,10682159
+3,8057587 372431,1868 -0,20294924 -0,092108928 0 4,008708 0,827770791 103,4531075 0,879032205 4,1157587 0,10705076
+3,8055868 372463,187 -0,20317841 -0,092108928 0 4,0087652 0,828589556 103,4619964 0,879901674 4,1155868 0,10682159
+3,8053768 372495,1872 -0,20294924 -0,092112757 0 4,0083261 0,829408321 103,4708853 0,880771142 4,1153768 0,10705076
+3,8052621 372527,1874 -0,20312111 -0,092111476 0 4,0083833 0,830227082 103,4797743 0,881640607 4,1152621 0,10687889
+3,8049183 372559,1876 -0,20314021 -0,092108302 0 4,0080585 0,831045844 103,4886632 0,882510072 4,1149183 0,10685979
+3,804842 372591,1877 -0,20314021 -0,092107654 0 4,0079823 0,831864604 103,4975521 0,883379536 4,114842 0,10685979
+3,8046319 372623,1879 -0,20314021 -0,092103831 0 4,007772 0,832683367 103,5064411 0,884249002 4,1146319 0,10685979
+3,8043838 372655,1881 -0,20294924 -0,092109561 0 4,0073328 0,833502127 103,51533 0,885118466 4,1143838 0,10705076
+3,8042309 372687,1883 -0,20296834 -0,092108928 0 4,0071993 0,83432089 103,524219 0,885987932 4,1142309 0,10703166
+3,804059 372719,1884 -0,20300654 -0,092110209 0 4,0070658 0,835139649 103,5331079 0,886857394 4,114059 0,10699346
+3,8038106 372751,1886 -0,20306383 -0,092112757 0 4,0068746 0,835958408 103,5419968 0,887726858 4,1138106 0,10693617
+3,8037915 372783,1888 -0,20306383 -0,092111476 0 4,0068555 0,83677717 103,5508858 0,888596322 4,1137915 0,10693617
+3,8033905 372815,189 -0,20296834 -0,092115939 0 4,0063586 0,837595933 103,5597747 0,88946579 4,1133905 0,10703166
+3,8032951 372847,1891 -0,20294924 -0,092102565 0 4,0062442 0,838414697 103,5686636 0,890335257 4,1132951 0,10705076
+3,8031995 372879,1893 -0,20277737 -0,092108302 0 4,0059767 0,83923346 103,5775526 0,891204723 4,1131995 0,10722263
+3,8028941 372911,1895 -0,20306383 -0,092110209 0 4,0059581 0,840052224 103,5864415 0,892074191 4,1128941 0,10693617
+3,8029323 372943,1897 -0,20291105 -0,09210702 0 4,0058432 0,840870986 103,5953305 0,892943657 4,1129323 0,10708895
+3,8025694 372975,1898 -0,20289195 -0,092110209 0 4,0054612 0,841689748 103,6042194 0,893813122 4,1125694 0,10710805
+3,8023593 373007,19 -0,20302562 -0,092107654 0 4,0053849 0,842508511 103,6131083 0,894682588 4,1123593 0,10697438
+3,8021874 373039,1902 -0,20294924 -0,092117213 0 4,0051365 0,84332727 103,6219973 0,895552051 4,1121874 0,10705076
+3,8020346 373071,1904 -0,20285375 -0,092110209 0 4,0048885 0,844146032 103,6308862 0,896421516 4,1120346 0,10714625
+3,8018818 373103,1905 -0,20289195 -0,092107654 0 4,0047736 0,844964795 103,6397752 0,897290983 4,1118818 0,10710805
+3,8014808 373135,1907 -0,20283465 -0,092109561 0 4,0043154 0,845783557 103,6486641 0,898160448 4,1114808 0,10716535
+3,8014426 373167,1909 -0,20283465 -0,092114665 0 4,0042772 0,84660232 103,657553 0,899029915 4,1114426 0,10716535
+3,8012135 373199,1911 -0,20293014 -0,092113383 0 4,0041437 0,847421081 103,666442 0,89989938 4,1112135 0,10706986
+3,8011942 373231,1912 -0,20283465 -0,092110842 0 4,0040288 0,848239844 103,6753309 0,900768846 4,1111942 0,10716535
+3,800946 373263,1914 -0,20277737 -0,092115939 0 4,0037231 0,849058607 103,6842198 0,901638313 4,110946 0,10722263
+3,8007932 373295,1916 -0,20283465 -0,092117213 0 4,0036278 0,849877373 103,6931088 0,902507783 4,1107932 0,10716535
+3,8006022 373327,1918 -0,20283465 -0,092110209 0 4,003437 0,850696139 103,7019977 0,903377253 4,1106022 0,10716535
+3,8002968 373359,192 -0,20281556 -0,092109561 0 4,0031123 0,851514898 103,7108867 0,904246715 4,1102968 0,10718444
+3,8002584 373391,1921 -0,20275827 -0,09210702 0 4,0030165 0,852333656 103,7197756 0,905116176 4,1102584 0,10724173
+3,799953 373423,1923 -0,20281556 -0,092110209 0 4,0027685 0,853152416 103,7286645 0,90598564 4,109953 0,10718444
+3,7998958 373455,1925 -0,20266278 -0,092117213 0 4,0025587 0,853971177 103,7375535 0,906855104 4,1098958 0,10733722
+3,799552 373487,1927 -0,20291105 -0,092108928 0 4,0024629 0,854789937 103,7464424 0,907724567 4,109552 0,10708895
+3,7993991 373519,1928 -0,20268188 -0,092110842 0 4,0020809 0,855608697 103,7553313 0,908594031 4,1093991 0,10731812
+3,7994373 373551,193 -0,20277737 -0,092111476 0 4,0022144 0,856427458 103,7642203 0,909463496 4,1094373 0,10722263
+3,7989981 373583,1932 -0,20275827 -0,09210702 0 4,0017562 0,85724622 103,7731092 0,910332961 4,1089981 0,10724173
+3,7989216 373615,1934 -0,20275827 -0,09210702 0 4,0016799 0,85806498 103,7819982 0,911202425 4,1089216 0,10724173
+3,7986734 373647,1935 -0,20273916 -0,092110209 0 4,0014124 0,858883738 103,7908871 0,912071886 4,1086734 0,10726084
+3,7983105 373679,1937 -0,20272008 -0,092110209 0 4,0010304 0,859702496 103,799776 0,912941347 4,1083105 0,10727992
+3,7982533 373711,1939 -0,20281556 -0,092103831 0 4,0010691 0,860521253 103,808665 0,913810807 4,1082533 0,10718444
+3,7979858 373743,1941 -0,20277737 -0,092106387 0 4,0007629 0,861340013 103,8175539 0,91468027 4,1079858 0,10722263
+3,7979667 373775,1942 -0,20273916 -0,092106387 0 4,0007057 0,862158773 103,8264428 0,915549734 4,1079667 0,10726084
+3,7978332 373807,1944 -0,20281556 -0,092108302 0 4,000649 0,862977532 103,8353318 0,916419196 4,1078332 0,10718444
+3,7975848 373839,1946 -0,20268188 -0,092110842 0 4,0002666 0,863796291 103,8442207 0,917288658 4,1075848 0,10731812
+3,7973557 373871,1948 -0,20270097 -0,092112757 0 4,0000567 0,86461505 103,8531097 0,918158121 4,1073557 0,10729903
+3,797241 373903,1949 -0,20266278 -0,092114031 0 3,9999037 0,865433807 103,8619986 0,919027581 4,107241 0,10733722
+3,7970691 373935,1951 -0,20268188 -0,092113383 0 3,9997509 0,866252561 103,8708875 0,919897039 4,1070691 0,10731812
+3,7967637 373967,1953 -0,20264368 -0,092104472 0 3,9994073 0,867071319 103,8797765 0,920766499 4,1067637 0,10735632
+3,7967255 373999,1955 -0,20266278 -0,09210702 0 3,9993882 0,867890078 103,8886654 0,921635962 4,1067255 0,10733722
+3,7965345 374031,1957 -0,20264368 -0,092105746 0 3,9991782 0,868708839 103,8975543 0,922505426 4,1065345 0,10735632
+3,7963052 374063,1958 -0,20262459 -0,09210702 0 3,9989297 0,869527598 103,9064433 0,923374889 4,1063052 0,10737541
+3,7962098 374095,196 -0,2025864 -0,092110842 0 3,9987962 0,870346358 103,9153322 0,924244351 4,1062098 0,1074136
+3,7957704 374127,1962 -0,20254819 -0,092112757 0 3,9983187 0,871165117 103,9242212 0,925113814 4,1057704 0,10745181
+3,7957132 374159,1964 -0,20260549 -0,092110842 0 3,9983187 0,871983875 103,9331101 0,925983275 4,1057132 0,10739451
+3,7955413 374191,1965 -0,20262459 -0,092105106 0 3,9981658 0,872802633 103,941999 0,926852737 4,1055413 0,10737541
+3,7953503 374223,1967 -0,20260549 -0,09210702 0 3,9979558 0,873621394 103,950888 0,927722201 4,1053503 0,10739451
+3,7951403 374255,1969 -0,20241451 -0,092110842 0 3,9975548 0,874440155 103,9597769 0,928591666 4,1051403 0,10758549
+3,7949111 374287,1971 -0,20254819 -0,092109561 0 3,9974594 0,875258914 103,9686659 0,929461128 4,1049111 0,10745181
+3,7947011 374319,1972 -0,20241451 -0,092115298 0 3,9971156 0,876077673 103,9775548 0,93033059 4,1047011 0,10758549
+3,7944911 374351,1974 -0,20260549 -0,09210702 0 3,9970965 0,876896431 103,9864437 0,931200051 4,1044911 0,10739451
+3,7944145 374383,1976 -0,20243362 -0,092111476 0 3,9968481 0,87771519 103,9953327 0,932069514 4,1044145 0,10756638
+3,7943192 374415,1978 -0,20243362 -0,09210702 0 3,9967527 0,87853395 104,0042216 0,932938978 4,1043192 0,10756638
+3,7939563 374447,1979 -0,20251 -0,092109561 0 3,9964662 0,879352713 104,0131105 0,933808444 4,1039563 0,10749
+3,7940135 374479,1981 -0,20264368 -0,092104472 0 3,9966571 0,880171472 104,0219995 0,934677906 4,1040135 0,10735632
+3,7936506 374511,1983 -0,2024527 -0,092110842 0 3,9961033 0,88099023 104,0308884 0,935547368 4,1036506 0,1075473
+3,7935553 374543,1985 -0,20229992 -0,092111476 0 3,9958551 0,881808988 104,0397774 0,936416829 4,1035553 0,10770008
+3,7932305 374575,1986 -0,2024527 -0,092104472 0 3,9956832 0,882627744 104,0486663 0,937286288 4,1032305 0,1075473
+3,7930968 374607,1988 -0,20241451 -0,092114665 0 3,9955113 0,883446499 104,0575552 0,938155746 4,1030968 0,10758549
+3,7928867 374639,199 -0,20229992 -0,092112757 0 3,9951866 0,884265256 104,0664442 0,939025206 4,1028867 0,10770008
+3,7926195 374671,1992 -0,20243362 -0,092110209 0 3,9950531 0,885084012 104,0753331 0,939894666 4,1026195 0,10756638
+3,7924857 374703,1994 -0,20241451 -0,092105746 0 3,9949002 0,885902769 104,084222 0,940764126 4,1024857 0,10758549
+3,7922757 374735,1995 -0,20229992 -0,092105746 0 3,9945755 0,886721522 104,093111 0,941633582 4,1022757 0,10770008
+3,7921038 374767,1997 -0,2024527 -0,092114031 0 3,9945564 0,887540278 104,1019999 0,942503041 4,1021038 0,1075473
+3,79197 374799,1999 -0,20214716 -0,092105106 0 3,9941173 0,888359033 104,1108889 0,943372499 4,10197 0,10785284
+3,7918172 374831,2001 -0,20239541 -0,092116579 0 3,9942126 0,889177787 104,1197778 0,944241956 4,1018172 0,10760459
+3,7915881 374863,2002 -0,20222354 -0,092109561 0 3,9938116 0,889996544 104,1286667 0,945111416 4,1015881 0,10777646
+3,7913589 374895,2004 -0,20216624 -0,092112117 0 3,9935253 0,890815301 104,1375557 0,945980877 4,1013589 0,10783376
+3,791187 374927,2006 -0,20228083 -0,092105106 0 3,9934678 0,891634059 104,1464446 0,946850338 4,101187 0,10771917
+3,7910533 374959,2008 -0,20220444 -0,092104472 0 3,9932578 0,892452815 104,1553335 0,947719797 4,1010533 0,10779556
+3,7907479 374991,2009 -0,20235722 -0,092114031 0 3,9931052 0,893271573 104,1642225 0,948589258 4,1007479 0,10764278
+3,7905951 375023,2011 -0,20233813 -0,092115939 0 3,9929333 0,89409033 104,1731114 0,949458718 4,1005951 0,10766187
+3,7902322 375055,2013 -0,20228083 -0,092115939 0 3,9925129 0,89490909 104,1820004 0,950328181 4,1002322 0,10771917
+3,790175 375087,2015 -0,20216624 -0,092101924 0 3,9923413 0,895727847 104,1908893 0,951197642 4,100175 0,10783376
+3,7900794 375119,2016 -0,20214716 -0,092110842 0 3,9922266 0,896546603 104,1997782 0,952067101 4,1000794 0,10785284
+3,7898693 375151,2018 -0,20220444 -0,092106387 0 3,9920738 0,897365359 104,2086672 0,952936561 4,0998693 0,10779556
+3,7897546 375183,202 -0,20231903 -0,09210065 0 3,9920735 0,898184115 104,2175561 0,953806019 4,0997546 0,10768097
+3,7894301 375215,2022 -0,20224264 -0,092101924 0 3,9916728 0,899002869 104,226445 0,954675477 4,0994301 0,10775736
+3,7893155 375247,2023 -0,20216624 -0,092114665 0 3,9914818 0,899821623 104,235334 0,955544933 4,0993155 0,10783376
+3,7889717 375279,2025 -0,20220444 -0,092107654 0 3,9911761 0,900640376 104,2442229 0,95641439 4,0989717 0,10779556
+3,7887807 375311,2027 -0,20222354 -0,092111476 0 3,9910042 0,901459128 104,2531119 0,957283845 4,0987807 0,10777646
+3,7886853 375343,2029 -0,20220444 -0,092110842 0 3,9908898 0,90227788 104,2620008 0,9581533 4,0986853 0,10779556
+3,788475 375375,2031 -0,20214716 -0,092108928 0 3,9906223 0,903096634 104,2708897 0,959022757 4,098475 0,10785284
+3,7883034 375407,2032 -0,20212805 -0,092101291 0 3,9904313 0,903915391 104,2797787 0,959892217 4,0983034 0,10787195
+3,7881315 375439,2034 -0,20199437 -0,092111476 0 3,9901259 0,904734144 104,2886676 0,960761673 4,0981315 0,10800563
+3,7878449 375471,2036 -0,20216624 -0,092112757 0 3,9900112 0,905552897 104,2975566 0,961631128 4,0978449 0,10783376
+3,7876348 375503,2038 -0,20216624 -0,092110209 0 3,9898012 0,906371651 104,3064455 0,962500586 4,0976348 0,10783376
+3,7876348 375535,2039 -0,20208986 -0,092111476 0 3,9897246 0,907190404 104,3153344 0,963370041 4,0976348 0,10791014
+3,7874057 375567,2041 -0,20205167 -0,092103831 0 3,9894574 0,908009157 104,3242234 0,964239498 4,0974057 0,10794833
+3,7871957 375599,2043 -0,20207076 -0,092112757 0 3,9892664 0,908827913 104,3331123 0,965108956 4,0971957 0,10792924
+3,7869091 375631,2045 -0,20193708 -0,092112757 0 3,9888463 0,909646667 104,3420012 0,965978413 4,0969091 0,10806292
+3,7867372 375663,2046 -0,20207076 -0,092108302 0 3,9888079 0,910465421 104,3508902 0,96684787 4,0967372 0,10792924
+3,7866228 375695,2048 -0,20203257 -0,09210702 0 3,9886553 0,911284178 104,3597791 0,967717331 4,0966228 0,10796743
+3,7864318 375727,205 -0,20199437 -0,092109561 0 3,9884262 0,912102938 104,3686681 0,968586794 4,0964318 0,10800563
+3,7861452 375759,2052 -0,20214716 -0,092111476 0 3,9882925 0,912921695 104,377557 0,969456255 4,0961452 0,10785284
+3,7859542 375791,2053 -0,20205167 -0,092103198 0 3,9880059 0,913740451 104,3864459 0,970325714 4,0959542 0,10794833
+3,7858779 375823,2055 -0,20189889 -0,092108928 0 3,9877768 0,91455921 104,3953349 0,971195176 4,0958779 0,10810111
+3,7856486 375855,2057 -0,20195618 -0,092112757 0 3,9876049 0,915377969 104,4042238 0,972064638 4,0956486 0,10804382
+3,7853813 375887,2059 -0,20193708 -0,092109561 0 3,9873185 0,916196726 104,4131127 0,972934098 4,0953813 0,10806292
+3,7854385 375919,206 -0,20184159 -0,092111476 0 3,9872801 0,917015484 104,4220017 0,973803559 4,0954385 0,10815841
+3,7850566 375951,2062 -0,20184159 -0,092108302 0 3,9868982 0,917834241 104,4308906 0,97467302 4,0950566 0,10815841
+3,7847893 375983,2064 -0,2018034 -0,092110209 0 3,9865928 0,918652998 104,4397796 0,97554248 4,0947893 0,1081966
+3,7845602 376015,2066 -0,2018607 -0,09210702 0 3,9864209 0,919471757 104,4486685 0,976411943 4,0945602 0,1081393
+3,7844455 376047,2068 -0,20191798 -0,09210702 0 3,9863634 0,920290517 104,4575574 0,977281406 4,0944455 0,10808202
+3,7841973 376079,2069 -0,20193708 -0,092110842 0 3,9861345 0,921109274 104,4664464 0,978150867 4,0941973 0,10806292
+3,7841017 376111,2071 -0,20174611 -0,092112757 0 3,9858479 0,92192803 104,4753353 0,979020326 4,0941017 0,10825389
+3,783968 376143,2073 -0,20165062 -0,092106387 0 3,9856186 0,922746789 104,4842242 0,979889787 4,093968 0,10834938
+3,7837007 376175,2075 -0,2018034 -0,09210702 0 3,9855042 0,923565548 104,4931132 0,980759251 4,0937007 0,1081966
+3,7834141 376207,2076 -0,2018034 -0,092108302 0 3,9852176 0,924384311 104,5020021 0,981628716 4,0934141 0,1081966
+3,7832232 376239,2078 -0,20170791 -0,092108302 0 3,984931 0,925203074 104,5108911 0,982498183 4,0932232 0,10829209
+3,7832041 376271,208 -0,2018034 -0,092110842 0 3,9850075 0,926021835 104,51978 0,983367648 4,0932041 0,1081966
+3,7830131 376303,2082 -0,2017843 -0,092110842 0 3,9847975 0,926840597 104,5286689 0,984237113 4,0930131 0,1082157
+3,7826886 376335,2083 -0,20170791 -0,092105746 0 3,9843965 0,927659353 104,5375579 0,985106572 4,0926886 0,10829209
+3,7826312 376367,2085 -0,20161243 -0,092108302 0 3,9842436 0,928478111 104,5464468 0,985976034 4,0926312 0,10838757
+3,7824593 376399,2087 -0,20163152 -0,092107654 0 3,9840908 0,92929687 104,5553357 0,986845496 4,0924593 0,10836848
+3,782192 376431,2089 -0,20159332 -0,092110209 0 3,9837854 0,930115626 104,5642247 0,987714956 4,092192 0,10840668
+3,782001 376463,209 -0,20155513 -0,092108928 0 3,9835563 0,930934383 104,5731136 0,988584415 4,092001 0,10844487
+3,7816572 376495,2092 -0,20165062 -0,092114031 0 3,9833078 0,931753141 104,5820026 0,989453877 4,0916572 0,10834938
+3,7816572 376527,2094 -0,20163152 -0,092106387 0 3,9832888 0,9325719 104,5908915 0,990323338 4,0916572 0,10836848
+3,7815425 376559,2096 -0,20161243 -0,092115298 0 3,983155 0,933390661 104,5997804 0,991192803 4,0915425 0,10838757
+3,7812562 376591,2097 -0,20151694 -0,092105746 0 3,9827731 0,934209424 104,6086694 0,99206227 4,0912562 0,10848306
+3,7808933 376623,2099 -0,20151694 -0,092114031 0 3,9824102 0,935028187 104,6175583 0,992931737 4,0908933 0,10848306
+3,7807596 376655,2101 -0,20159332 -0,092109561 0 3,982353 0,935846951 104,6264472 0,993801205 4,0907596 0,10840668
+3,7806451 376687,2103 -0,20159332 -0,092114665 0 3,9822385 0,936665714 104,6353362 0,994670671 4,0906451 0,10840668
+3,7804542 376719,2105 -0,20145965 -0,092108928 0 3,9819138 0,937484474 104,6442251 0,995540134 4,0904542 0,10854035
+3,7803204 376751,2106 -0,20144054 -0,092107654 0 3,981761 0,938303235 104,6531141 0,996409599 4,0903204 0,10855946
+3,7800529 376783,2108 -0,20149784 -0,092105746 0 3,9815507 0,939121995 104,662003 0,997279063 4,0900529 0,10850216
+3,7799003 376815,211 -0,20138326 -0,092106387 0 3,9812837 0,939940758 104,6708919 0,998148529 4,0899003 0,10861674
+3,7798812 376847,2112 -0,20132597 -0,092100017 0 3,9812071 0,94075952 104,6797809 0,999017995 4,0898812 0,10867403
+3,7794228 376879,2113 -0,20130686 -0,092110209 0 3,9807296 0,941578284 104,6886698 0,999887462 4,0894228 0,10869314
+3,7792127 376911,2115 -0,20130686 -0,092108928 0 3,9805195 0,942397046 104,6975588 1,000756927 4,0892127 0,10869314
+3,7791171 376943,2117 -0,20121138 -0,092108928 0 3,9803286 0,943215806 104,7064477 1,001626391 4,0891171 0,10878862
+3,7789454 376975,2119 -0,20111589 -0,092110209 0 3,9800613 0,944034567 104,7153366 1,002495856 4,0889454 0,10888411
+3,7787926 377007,212 -0,20132597 -0,092101924 0 3,9801185 0,94485333 104,7242256 1,003365321 4,0887926 0,10867403
+3,7784297 377039,2122 -0,20128778 -0,092108302 0 3,9797175 0,945672094 104,7331145 1,004234789 4,0884297 0,10871222
+3,7784107 377071,2124 -0,20134506 -0,092108928 0 3,9797556 0,946490857 104,7420034 1,005104256 4,0884107 0,10865494
+3,7781813 377103,2126 -0,20124957 -0,092108928 0 3,9794309 0,947309618 104,7508924 1,005973721 4,0881813 0,10875043
+3,7779903 377135,2127 -0,20128778 -0,09210702 0 3,9792781 0,94812838 104,7597813 1,006843186 4,0879903 0,10871222
+3,777704 377167,2129 -0,20128778 -0,092109561 0 3,9789917 0,94894714 104,7686703 1,00771265 4,087704 0,10871222
+3,7776275 377199,2131 -0,20134506 -0,092110209 0 3,9789724 0,949765902 104,7775592 1,008582115 4,0876275 0,10865494
+3,7774365 377231,2133 -0,20121138 -0,092120394 0 3,9786479 0,950584664 104,7864481 1,00945158 4,0874365 0,10878862
+3,7771692 377263,2134 -0,2010586 -0,092105106 0 3,9782279 0,951403427 104,7953371 1,010321047 4,0871692 0,1089414
+3,7770739 377295,2136 -0,2010777 -0,092113383 0 3,9781516 0,952222186 104,804226 1,01119051 4,0870739 0,1089223
+3,7767491 377327,2138 -0,20090583 -0,092115298 0 3,9776549 0,953040948 104,8131149 1,012059975 4,0867491 0,10909417
+3,7766345 377359,214 -0,20096311 -0,092108928 0 3,9775975 0,953859709 104,8220039 1,01292944 4,0866345 0,10903689
+3,7764244 377391,2142 -0,2010586 -0,092101291 0 3,977483 0,95467847 104,8308928 1,013798904 4,0864244 0,1089414
+3,7762334 377423,2143 -0,20098221 -0,092113383 0 3,9772158 0,955497232 104,8397818 1,014668369 4,0862334 0,10901779
+3,7760425 377455,2145 -0,20094402 -0,092122309 0 3,9769864 0,956315996 104,8486707 1,015537837 4,0860425 0,10905598
+3,7759471 377487,2147 -0,2010777 -0,092108928 0 3,9770248 0,957134758 104,8575596 1,016407303 4,0859471 0,1089223
+3,7755842 377519,2149 -0,20119229 -0,092107654 0 3,9767766 0,957953517 104,8664486 1,017276765 4,0855842 0,10880771
+3,7754886 377551,215 -0,20090583 -0,092109561 0 3,9763944 0,958772272 104,8753375 1,018146223 4,0854886 0,10909417
+3,7752786 377583,2152 -0,20084853 -0,092112117 0 3,9761271 0,959591029 104,8842264 1,019015683 4,0852786 0,10915147
+3,7750304 377615,2154 -0,20119229 -0,092108302 0 3,9762228 0,960409787 104,8931154 1,019885145 4,0850304 0,10880771
+3,7749348 377647,2156 -0,20100132 -0,092111476 0 3,9759362 0,961228545 104,9020043 1,020754606 4,0849348 0,10899868
+3,7747629 377679,2157 -0,20092492 -0,092109561 0 3,9756877 0,962047305 104,9108933 1,021624069 4,0847629 0,10907508
+3,7744381 377711,2159 -0,20094402 -0,092108928 0 3,9753821 0,962866063 104,9197822 1,022493531 4,0844381 0,10905598
+3,7743046 377743,2161 -0,20081034 -0,092109561 0 3,9751151 0,963684823 104,9286711 1,023362993 4,0843046 0,10918966
+3,7742281 377775,2163 -0,20079124 -0,092114665 0 3,9750195 0,964503582 104,9375601 1,024232457 4,0842281 0,10920876
+3,7739227 377807,2164 -0,20082943 -0,092113383 0 3,9747522 0,965322341 104,946449 1,025101918 4,0839227 0,10917057
+3,7736361 377839,2166 -0,20073394 -0,092108928 0 3,97437 0,966141098 104,9553379 1,025971379 4,0836361 0,10926606
+3,7736933 377871,2168 -0,20077214 -0,092108302 0 3,9744654 0,966959857 104,9642269 1,026840841 4,0836933 0,10922786
+3,7732732 377903,217 -0,20073394 -0,092114031 0 3,9740071 0,967778618 104,9731158 1,027710306 4,0832732 0,10926606
+3,7730823 377935,2171 -0,20084853 -0,092108302 0 3,9739308 0,968597378 104,9820048 1,028579769 4,0830823 0,10915147
+3,7729485 377967,2173 -0,20061937 -0,092108928 0 3,973568 0,969416136 104,9908937 1,02944923 4,0829485 0,10938063
+3,7727385 377999,2175 -0,20063846 -0,092103198 0 3,973377 0,970234895 104,9997826 1,030318692 4,0827385 0,10936154
+3,7727959 378031,2177 -0,20048568 -0,092109561 0 3,9732816 0,971053651 105,0086716 1,031188152 4,0827959 0,10951432
+3,7723756 378063,2178 -0,20069575 -0,092102565 0 3,9730713 0,971872408 105,0175605 1,032057612 4,0823756 0,10930425
+3,7721465 378095,218 -0,20054297 -0,092110209 0 3,9726894 0,972691163 105,0264495 1,03292707 4,0821465 0,10945703
+3,7720892 378127,2182 -0,20040929 -0,092108302 0 3,9724984 0,973509919 105,0353384 1,033796529 4,0820892 0,10959071
+3,7718601 378159,2184 -0,20052388 -0,092109561 0 3,972384 0,974328678 105,0442273 1,034665991 4,0818601 0,10947612
+3,7715163 378191,2186 -0,20054297 -0,09211912 0 3,9720592 0,975147435 105,0531163 1,035535451 4,0815163 0,10945703
+3,7714782 378223,2187 -0,20056207 -0,092101924 0 3,9720402 0,975966193 105,0620052 1,036404913 4,0814782 0,10943793
+3,7711535 378255,2189 -0,2003711 -0,092120394 0 3,9715245 0,976784953 105,0708941 1,037274376 4,0811535 0,1096289
+3,7711535 378287,2191 -0,2004284 -0,092108302 0 3,9715819 0,977603711 105,0797831 1,038143838 4,0811535 0,1095716
+3,7708287 378319,2193 -0,2004284 -0,092107654 0 3,9712572 0,978422466 105,088672 1,039013296 4,0808287 0,1095716
+3,770695 378351,2194 -0,2004284 -0,092112117 0 3,9711235 0,979241224 105,097561 1,039882757 4,080695 0,1095716
+3,7703321 378383,2196 -0,200352 -0,092113383 0 3,9706841 0,980059984 105,1064499 1,04075222 4,0803321 0,109648
+3,770294 378415,2198 -0,20040929 -0,092105746 0 3,9707031 0,980878745 105,1153388 1,041621685 4,080294 0,10959071
+3,7702177 378447,22 -0,20012283 -0,092110842 0 3,9703405 0,981697506 105,1242278 1,042491149 4,0802177 0,10987717
+3,7698166 378479,2201 -0,200352 -0,092111476 0 3,9701686 0,982516265 105,1331167 1,043360612 4,0798166 0,109648
+3,769702 378511,2203 -0,20004643 -0,092112117 0 3,9697485 0,983335024 105,1420056 1,044230074 4,079702 0,10995357
+3,7694347 378543,2205 -0,20010373 -0,092107654 0 3,9695385 0,984153781 105,1508946 1,045099535 4,0794347 0,10989627
+3,7694538 378575,2207 -0,20027561 -0,092110842 0 3,9697294 0,984972539 105,1597835 1,045968996 4,0794538 0,10972439
+3,7691672 378607,2208 -0,20010373 -0,092110842 0 3,9692709 0,985791297 105,1686725 1,046838457 4,0791672 0,10989627
+3,768919 378639,221 -0,19997005 -0,092110209 0 3,968889 0,986610055 105,1775614 1,047707918 4,078919 0,11002995
+3,7686708 378671,2212 -0,20002735 -0,092112117 0 3,968698 0,987428813 105,1864503 1,04857738 4,0786708 0,10997265
+3,7685561 378703,2214 -0,20000824 -0,092115298 0 3,9685643 0,988247572 105,1953393 1,049446841 4,0785561 0,10999176
+3,7682889 378735,2215 -0,19989367 -0,09210702 0 3,9681826 0,989066332 105,2042282 1,050316305 4,0782889 0,11010633
+3,7682695 378767,2217 -0,19997005 -0,092108302 0 3,9682395 0,989885091 105,2131171 1,051185768 4,0782695 0,11002995
+3,7679641 378799,2219 -0,19998915 -0,092112757 0 3,9679532 0,990703854 105,2220061 1,052055234 4,0779641 0,11001085
+3,7678876 378831,2221 -0,19987457 -0,09210702 0 3,9677622 0,991522614 105,230895 1,052924697 4,0778876 0,11012543
+3,7676585 378863,2223 -0,19998915 -0,092108302 0 3,9676476 0,99234137 105,239784 1,053794157 4,0776585 0,11001085
+3,7674484 378895,2224 -0,19981727 -0,092103831 0 3,9672656 0,993160128 105,2486729 1,054663618 4,0774484 0,11018273
+3,7671237 378927,2226 -0,19989367 -0,092108928 0 3,9670174 0,993978885 105,2575618 1,055533078 4,0771237 0,11010633
+3,7669518 378959,2228 -0,19981727 -0,092114665 0 3,966769 0,994797645 105,2664508 1,056402542 4,0769518 0,11018273
+3,7669137 378991,223 -0,19981727 -0,092115298 0 3,9667308 0,995616409 105,2753397 1,057272009 4,0769137 0,11018273
+3,7667608 379023,2231 -0,19974089 -0,092107654 0 3,9665017 0,99643517 105,2842286 1,058141474 4,0767608 0,11025911
+3,7664745 379055,2233 -0,1996263 -0,092109561 0 3,9661007 0,997253927 105,2931176 1,059010934 4,0764745 0,1103737
+3,7663217 379087,2235 -0,19960721 -0,092111476 0 3,9659288 0,998072687 105,3020065 1,059880398 4,0763217 0,11039279
+3,7661116 379119,2237 -0,19972178 -0,092109561 0 3,9658334 0,998891448 105,3108955 1,060749862 4,0761116 0,11027822
+3,7659016 379151,2238 -0,19958811 -0,092113383 0 3,9654896 0,999710209 105,3197844 1,061619326 4,0759016 0,11041189
+3,765825 379183,224 -0,19951172 -0,092108928 0 3,9653368 1,000528971 105,3286733 1,062488792 4,075825 0,11048828
+3,7655959 379215,2242 -0,19954991 -0,092107654 0 3,9651458 1,001347733 105,3375623 1,063358257 4,0755959 0,11045009
+3,7652712 379247,2244 -0,19960721 -0,092108928 0 3,9648783 1,002166494 105,3464512 1,064227722 4,0752712 0,11039279
+3,7651758 379279,2245 -0,19953081 -0,092112117 0 3,9647067 1,002985254 105,3553402 1,065097185 4,0751758 0,11046919
+3,7648702 379311,2247 -0,19924435 -0,092107654 0 3,9641144 1,003804013 105,3642291 1,065966648 4,0748702 0,11075565
+3,7647939 379343,2249 -0,19947352 -0,092107654 0 3,9642675 1,004622776 105,373118 1,066836114 4,0747939 0,11052648
+3,7645838 379375,2251 -0,19922526 -0,092114031 0 3,963809 1,005441536 105,382007 1,067705578 4,0745838 0,11077474
+3,7641637 379407,2252 -0,19937803 -0,092103831 0 3,9635417 1,006260294 105,3908959 1,068575039 4,0741637 0,11062197
+3,7642972 379439,2254 -0,19945443 -0,092105746 0 3,9637518 1,00707905 105,3997848 1,069444498 4,0742972 0,11054557
+3,7640681 379471,2256 -0,19918706 -0,092108928 0 3,9632552 1,007897806 105,4086738 1,070313957 4,0740681 0,11081294
+3,7638581 379503,2258 -0,19920616 -0,092109561 0 3,9630642 1,008716559 105,4175627 1,071183413 4,0738581 0,11079384
+3,7635715 379535,226 -0,19918706 -0,09210702 0 3,9627585 1,009535314 105,4264517 1,072052871 4,0735715 0,11081294
+3,7633805 379567,2261 -0,19914886 -0,092112117 0 3,9625294 1,010354069 105,4353406 1,072922329 4,0733805 0,11085114
+3,7629986 379599,2263 -0,19922526 -0,09210702 0 3,9622238 1,011172826 105,4442295 1,07379179 4,0729986 0,11077474
+3,7629604 379631,2265 -0,19916797 -0,092107654 0 3,9621284 1,011991583 105,4531185 1,07466125 4,0729604 0,11083203
+3,7628841 379663,2267 -0,19920616 -0,092105106 0 3,9620903 1,01281034 105,4620074 1,07553071 4,0728841 0,11079384
+3,7625976 379695,2268 -0,19888151 -0,092112117 0 3,9614792 1,013629099 105,4708963 1,076400172 4,0725976 0,11111849
+3,7625213 379727,227 -0,19901519 -0,092105106 0 3,9615364 1,014447858 105,4797853 1,077269634 4,0725213 0,11098481
+3,7623494 379759,2272 -0,1988624 -0,092108928 0 3,9612117 1,015266616 105,4886742 1,078139096 4,0723494 0,1111376
+3,7621202 379791,2274 -0,1988624 -0,092108302 0 3,9609826 1,016085376 105,4975632 1,07900856 4,0721202 0,1111376
+3,7618146 379823,2275 -0,19884332 -0,092108302 0 3,9606578 1,016904134 105,5064521 1,079878021 4,0718146 0,11115668
+3,7617955 379855,2277 -0,19876692 -0,092110209 0 3,9605625 1,017722892 105,515341 1,080747482 4,0717955 0,11123308
+3,7616427 379887,2279 -0,19880511 -0,092105746 0 3,9604478 1,01854165 105,52423 1,081616943 4,0716427 0,11119489
+3,7613754 379919,2281 -0,19853775 -0,092114665 0 3,9599133 1,019360405 105,5331189 1,082486402 4,0713754 0,11146225
+3,7612226 379951,2282 -0,19861414 -0,092105106 0 3,9598367 1,020179162 105,5420078 1,083355862 4,0712226 0,11138586
+3,7608979 379983,2284 -0,19859505 -0,092102565 0 3,9594929 1,020997922 105,5508968 1,084225325 4,0708979 0,11140495
+3,7608788 380015,2286 -0,19846137 -0,092109561 0 3,9593401 1,021816683 105,5597857 1,085094789 4,0708788 0,11153863
+3,7605541 380047,2288 -0,19846137 -0,092109561 0 3,9590154 1,022635443 105,5686747 1,085964253 4,0705541 0,11153863
+3,7605541 380079,2289 -0,19844227 -0,092112117 0 3,9589963 1,023454204 105,5775636 1,086833717 4,0705541 0,11155773
+3,7603059 380111,2291 -0,19842316 -0,092116579 0 3,958729 1,024272964 105,5864525 1,08770318 4,0703059 0,11157684
+3,7600002 380143,2293 -0,19836588 -0,092108302 0 3,9583662 1,025091725 105,5953415 1,088572645 4,0700002 0,11163412
+3,7598093 380175,2295 -0,1982131 -0,092105746 0 3,9580224 1,025910487 105,6042304 1,08944211 4,0698093 0,1117869
+3,759733 380207,2297 -0,19823219 -0,092111476 0 3,9579651 1,026729246 105,6131193 1,090311573 4,069733 0,11176781
+3,7594464 380239,2298 -0,19815581 -0,092105746 0 3,9576023 1,027548007 105,6220083 1,091181038 4,0694464 0,11184419
+3,759351 380271,23 -0,19815581 -0,092108302 0 3,9575069 1,028366769 105,6308972 1,092050503 4,069351 0,11184419
+3,7592173 380303,2302 -0,19809851 -0,092110842 0 3,9573157 1,02918553 105,6397862 1,092919967 4,0692173 0,11190149
+3,7589309 380335,2304 -0,19796483 -0,092106387 0 3,9568958 1,030004288 105,6486751 1,093789429 4,0689309 0,11203517
+3,7588735 380367,2305 -0,19798394 -0,092113383 0 3,9568574 1,030823047 105,657564 1,094658891 4,0688735 0,11201606
+3,7587206 380399,2307 -0,19794573 -0,092103831 0 3,9566665 1,031641803 105,666453 1,09552835 4,0687206 0,11205427
+3,7583196 380431,2309 -0,19796483 -0,092111476 0 3,9562845 1,032460557 105,6753419 1,096397807 4,0683196 0,11203517
+3,7581861 380463,2311 -0,19777386 -0,092110842 0 3,95596 1,033279313 105,6842309 1,097267266 4,0681861 0,11222614
+3,7581477 380495,2312 -0,19785024 -0,092110842 0 3,9559979 1,034098072 105,6931198 1,098136728 4,0681477 0,11214976
+3,7577848 380527,2314 -0,19771656 -0,092110209 0 3,9555013 1,034916832 105,7020087 1,099006192 4,0677848 0,11228344
+3,7576704 380559,2316 -0,19779295 -0,092114031 0 3,9554634 1,035735594 105,7108977 1,099875658 4,0676704 0,11220705
+3,7574029 380591,2318 -0,19769746 -0,092108302 0 3,9551003 1,036554355 105,7197866 1,100745122 4,0674029 0,11230254
+3,7573266 380623,2319 -0,19767837 -0,092107654 0 3,9550049 1,037373113 105,7286755 1,101614583 4,0673266 0,11232163
+3,7570019 380655,2321 -0,19758289 -0,092108302 0 3,9545848 1,03819187 105,7375645 1,102484044 4,0670019 0,11241711
+3,7568874 380687,2323 -0,19744921 -0,092105106 0 3,9543366 1,039010629 105,7464534 1,103353506 4,0668874 0,11255079
+3,756639 380719,2325 -0,19756378 -0,092109561 0 3,9542029 1,039829386 105,7553424 1,104222966 4,066639 0,11243622
+3,7565627 380751,2326 -0,19733462 -0,092107654 0 3,9538972 1,040648144 105,7642313 1,105092428 4,0665627 0,11266538
+3,756448 380783,2328 -0,19727732 -0,092108302 0 3,9537253 1,041466903 105,7731202 1,10596189 4,066448 0,11272268
+3,7561617 380815,233 -0,19708635 -0,092110842 0 3,953248 1,042285661 105,7820092 1,106831351 4,0661617 0,11291365
+3,7559133 380847,2332 -0,19720094 -0,092111476 0 3,9531143 1,043104417 105,7908981 1,10770081 4,0659133 0,11279906
+3,7558179 380879,2334 -0,19708635 -0,092110842 0 3,9529042 1,043923176 105,799787 1,108570272 4,0658179 0,11291365
+3,755646 380911,2335 -0,19708635 -0,092105106 0 3,9527323 1,044741933 105,808676 1,109439732 4,065646 0,11291365
+3,7553403 380943,2337 -0,19697177 -0,092111476 0 3,952312 1,045560692 105,8175649 1,110309195 4,0653403 0,11302823
+3,7551112 380975,2339 -0,19699086 -0,092115298 0 3,9521022 1,046379451 105,8264539 1,111178658 4,0651112 0,11300914
+3,7549775 381007,2341 -0,19662802 -0,092114031 0 3,9516056 1,047198209 105,8353428 1,112048119 4,0649775 0,11337198
+3,7549202 381039,2342 -0,19664711 -0,092108302 0 3,9515674 1,048016969 105,8442317 1,112917582 4,0649202 0,11335289
+3,7547674 381071,2344 -0,19679989 -0,09210702 0 3,9515674 1,04883573 105,8531207 1,113787046 4,0647674 0,11320011
+3,754462 381103,2346 -0,19658983 -0,092113383 0 3,9510517 1,049654487 105,8620096 1,114656506 4,064462 0,11341017
+3,754271 381135,2348 -0,1967044 -0,092107654 0 3,9509754 1,050473244 105,8708985 1,115525967 4,064271 0,1132956
+3,7541945 381167,2349 -0,19649434 -0,092103831 0 3,9506888 1,051292003 105,8797875 1,116395429 4,0641945 0,11350566
+3,7540035 381199,2351 -0,19655162 -0,092110209 0 3,9505551 1,052110762 105,8886764 1,117264891 4,0640035 0,11344838
+3,7537744 381231,2353 -0,19636065 -0,092105746 0 3,950135 1,052929521 105,8975654 1,118134354 4,0637744 0,11363935
+3,7537172 381263,2355 -0,19626516 -0,092119761 0 3,9499824 1,05374828 105,9064543 1,119003817 4,0637172 0,11373484
+3,7533543 381295,2356 -0,19622697 -0,092111476 0 3,9495814 1,054567042 105,9153432 1,119873281 4,0633543 0,11377303
+3,7532969 381327,2358 -0,19607419 -0,092111476 0 3,9493711 1,055385804 105,9242322 1,120742747 4,0632969 0,11392581
+3,7532015 381359,236 -0,19607419 -0,092104472 0 3,9492757 1,056204563 105,9331211 1,12161221 4,0632015 0,11392581
+3,7530296 381391,2362 -0,19611239 -0,09210702 0 3,949142 1,05702332 105,94201 1,12248167 4,0630296 0,11388761
+3,7528005 381423,2363 -0,19592142 -0,092104472 0 3,9487219 1,057842078 105,950899 1,123351131 4,0628005 0,11407858
+3,7525904 381455,2365 -0,19582593 -0,092105106 0 3,9484162 1,058660832 105,9597879 1,124220588 4,0625904 0,11417407
+3,7524185 381487,2367 -0,19567315 -0,092109561 0 3,9480917 1,059479589 105,9686769 1,125090048 4,0624185 0,11432685
+3,7522275 381519,2369 -0,19565405 -0,092108928 0 3,9478817 1,060298345 105,9775658 1,125959508 4,0622275 0,11434595
+3,7518837 381551,2371 -0,19571134 -0,092113383 0 3,9475951 1,0611171 105,9864547 1,126828965 4,0618837 0,11428866
+3,7518265 381583,2372 -0,19557767 -0,092107654 0 3,9474041 1,061935856 105,9953437 1,127698424 4,0618265 0,11442233
+3,7515209 381615,2374 -0,19553946 -0,092110842 0 3,9470603 1,062754612 106,0042326 1,128567884 4,0615209 0,11446054
+3,7513871 381647,2376 -0,19546308 -0,092113383 0 3,9468503 1,063573369 106,0131215 1,129437344 4,0613871 0,11453692
+3,7512343 381679,2378 -0,19544397 -0,092117213 0 3,9466782 1,064392129 106,0220105 1,130306807 4,0612343 0,11455603
+3,7509098 381711,2379 -0,19540578 -0,092107654 0 3,9463155 1,06521089 106,0308994 1,131176272 4,0609098 0,11459422
+3,750948 381743,2381 -0,19511932 -0,092108302 0 3,9460673 1,066029651 106,0397884 1,132045736 4,060948 0,11488068
+3,7507761 381775,2383 -0,19504294 -0,092108928 0 3,9458189 1,066848414 106,0486773 1,132915203 4,0607761 0,11495706
+3,750375 381807,2385 -0,19504294 -0,092113383 0 3,9454179 1,067667178 106,0575662 1,133784671 4,060375 0,11495706
+3,7504704 381839,2386 -0,19498564 -0,092109561 0 3,945456 1,068485942 106,0664552 1,134654138 4,0604704 0,11501436
+3,750165 381871,2388 -0,19477557 -0,092110209 0 3,9449406 1,069304702 106,0753441 1,135523601 4,060165 0,11522443
+3,7501266 381903,239 -0,19471829 -0,092108302 0 3,944845 1,070123461 106,0842331 1,136393064 4,0601266 0,11528171
+3,7499166 381935,2392 -0,19464189 -0,092108928 0 3,9445584 1,07094222 106,093122 1,137262526 4,0599166 0,11535811
+3,7496684 381967,2393 -0,1946228 -0,092111476 0 3,9442911 1,071760979 106,1020109 1,138131989 4,0596684 0,1153772
+3,7494583 381999,2395 -0,19450821 -0,092104472 0 3,9439666 1,072579738 106,1108999 1,139001451 4,0594583 0,11549179
+3,7493246 382031,2397 -0,19441272 -0,092107654 0 3,9437373 1,073398496 106,1197888 1,139870913 4,0593246 0,11558728
+3,7492101 382063,2399 -0,19422175 -0,09210702 0 3,9434319 1,074217257 106,1286777 1,140740377 4,0592101 0,11577825
+3,7488472 382095,24 -0,19429813 -0,092107654 0 3,9431453 1,075036014 106,1375667 1,141609837 4,0588472 0,11570187
+3,7485797 382127,2402 -0,19416445 -0,092115939 0 3,9427443 1,075854771 106,1464556 1,142479297 4,0585797 0,11583555
+3,7486372 382159,2404 -0,19408807 -0,092117213 0 3,9427252 1,076673527 106,1553446 1,143348756 4,0586372 0,11591193
+3,7483506 382191,2406 -0,19391619 -0,092108928 0 3,9422667 1,077492287 106,1642335 1,14421822 4,0583506 0,11608381
+3,7482169 382223,2408 -0,19391619 -0,092104472 0 3,9421329 1,078311048 106,1731224 1,145087684 4,0582169 0,11608381
+3,7480068 382255,2409 -0,19376342 -0,092108928 0 3,9417703 1,079129807 106,1820114 1,145957147 4,0580068 0,11623658
+3,7478731 382287,2411 -0,19374432 -0,092108302 0 3,9416175 1,079948563 106,1909003 1,146826606 4,0578731 0,11625568
+3,7475486 382319,2413 -0,19357245 -0,092113383 0 3,9411211 1,08076732 106,1997892 1,147696066 4,0575486 0,11642755
+3,7476058 382351,2415 -0,19351515 -0,092108302 0 3,9411209 1,081586077 106,2086782 1,148565527 4,0576058 0,11648485
+3,7473958 382383,2416 -0,1931714 -0,092111476 0 3,9405673 1,082404837 106,2175671 1,14943499 4,0573958 0,1168286
+3,747262 382415,2418 -0,19326688 -0,09210702 0 3,9405289 1,083223596 106,2264561 1,150304452 4,057262 0,11673312
+3,7470138 382447,242 -0,1931714 -0,092105746 0 3,9401853 1,084042353 106,235345 1,151173912 4,0570138 0,1168286
+3,7467272 382479,2422 -0,19320959 -0,092111476 0 3,9399369 1,084861111 106,2442339 1,152043373 4,0567272 0,11679041
+3,7468228 382511,2423 -0,19307591 -0,092115939 0 3,9398987 1,08567987 106,2531229 1,152912836 4,0568228 0,11692409
+3,7463834 382543,2425 -0,19286583 -0,092109561 0 3,9392493 1,086498626 106,2620118 1,153782295 4,0563834 0,11713417
+3,7463834 382575,2427 -0,19280854 -0,092110842 0 3,9391921 1,087317381 106,2709007 1,154651753 4,0563834 0,11719146
+3,7462499 382607,2429 -0,19250299 -0,092109561 0 3,9387529 1,088136137 106,2797897 1,155521212 4,0562499 0,11749701
+3,7459443 382639,243 -0,1924457 -0,092111476 0 3,93839 1,088954893 106,2886786 1,156390672 4,0559443 0,1175543
+3,7456195 382671,2432 -0,19252208 -0,092113383 0 3,9381416 1,08977365 106,2975676 1,157260131 4,0556195 0,11747792
+3,7456961 382703,2434 -0,1924075 -0,092105106 0 3,9381037 1,090592408 106,3064565 1,158129593 4,0556961 0,1175925
+3,7455623 382735,2436 -0,19221653 -0,092117213 0 3,9377789 1,091411165 106,3153454 1,158999053 4,0555623 0,11778347
+3,7451994 382767,2437 -0,19217834 -0,092112117 0 3,9373777 1,092229923 106,3242344 1,159868515 4,0551994 0,11782166
+3,745085 382799,2439 -0,19189188 -0,092101924 0 3,9369769 1,093048684 106,3331233 1,160737978 4,055085 0,11810812
+3,7449512 382831,2441 -0,19191097 -0,092105746 0 3,9368622 1,093867444 106,3420122 1,161607442 4,0549512 0,11808903
+3,7448556 382863,2443 -0,19191097 -0,092107654 0 3,9367666 1,094686204 106,3509012 1,162476906 4,0548556 0,11808903
+3,7445884 382895,2444 -0,19158632 -0,092105746 0 3,9361746 1,095504963 106,3597901 1,163346368 4,0545884 0,11841368
+3,7445693 382927,2446 -0,19156721 -0,092104472 0 3,9361365 1,096323721 106,3686791 1,16421583 4,0545693 0,11843279
+3,7442636 382959,2448 -0,19141445 -0,092106387 0 3,935678 1,097142479 106,377568 1,165085291 4,0542636 0,11858555
+3,7439964 382991,245 -0,19137624 -0,092108302 0 3,9353726 1,097961242 106,3864569 1,165954757 4,0539964 0,11862376
+3,7440345 383023,2452 -0,19122347 -0,092114031 0 3,9352579 1,098780002 106,3953459 1,166824221 4,0540345 0,11877653
+3,7437289 383055,2453 -0,19103248 -0,092110209 0 3,9347613 1,099598762 106,4042348 1,167693684 4,0537289 0,11896752
+3,7437098 383087,2455 -0,19080332 -0,092108928 0 3,9345131 1,100417523 106,4131238 1,168563149 4,0537098 0,11919668
+3,7433851 383119,2457 -0,19086061 -0,092113383 0 3,9342456 1,101236286 106,4220127 1,169432616 4,0533851 0,11913939
+3,7432325 383151,2459 -0,19070783 -0,092101924 0 3,9339404 1,102055047 106,4309016 1,17030208 4,0532325 0,11929217
+3,7433469 383183,246 -0,19055505 -0,09210065 0 3,933902 1,102873809 106,4397906 1,171171545 4,0533469 0,11944495
+3,7428122 383215,2462 -0,19045956 -0,092106387 0 3,9332716 1,103692573 106,4486795 1,172041012 4,0528122 0,11954044
+3,7427359 383247,2464 -0,19042137 -0,092112117 0 3,9331572 1,104511335 106,4575684 1,172910478 4,0527359 0,11957863
+3,7426596 383279,2466 -0,19013491 -0,092108928 0 3,9327946 1,105330096 106,4664574 1,173779943 4,0526596 0,11986509
+3,7424111 383311,2467 -0,19011582 -0,092114665 0 3,9325271 1,106148857 106,4753463 1,174649407 4,0524111 0,11988418
+3,7422202 383343,2469 -0,18990575 -0,092108928 0 3,9321258 1,106967617 106,4842353 1,175518871 4,0522202 0,12009425
+3,7421057 383375,2471 -0,18979116 -0,092104472 0 3,9318969 1,107786376 106,4931242 1,176388333 4,0521057 0,12020884
+3,7418954 383407,2473 -0,18963839 -0,092102565 0 3,9315338 1,108605138 106,5020131 1,177257798 4,0518954 0,12036161
+3,7416854 383439,2474 -0,18969567 -0,092102565 0 3,931381 1,109423899 106,5109021 1,178127263 4,0516854 0,12030433
+3,7418573 383471,2476 -0,18940921 -0,092110209 0 3,9312665 1,11024266 106,519791 1,178996727 4,0518573 0,12059079
+3,7414181 383503,2478 -0,18919915 -0,092114665 0 3,9306173 1,111061423 106,5286799 1,179866193 4,0514181 0,12080085
+3,741399 383535,248 -0,18923734 -0,092104472 0 3,9306364 1,111880183 106,5375689 1,180735658 4,051399 0,12076266
+3,741189 383567,2481 -0,18906547 -0,09210702 0 3,9302545 1,112698943 106,5464578 1,181605121 4,051189 0,12093453
+3,740979 383599,2483 -0,18896998 -0,092111476 0 3,929949 1,113517702 106,5553468 1,182474583 4,050979 0,12103002
+3,7407305 383631,2485 -0,18866442 -0,092108928 0 3,929395 1,114336458 106,5642357 1,183344042 4,0507305 0,12133558
+3,7404633 383663,2487 -0,18872172 -0,092105746 0 3,9291849 1,115155216 106,5731246 1,184213504 4,0504633 0,12127828
+3,7405777 383695,2489 -0,18843526 -0,092111476 0 3,929013 1,115973972 106,5820136 1,185082962 4,0505777 0,12156474
+3,7403677 383727,249 -0,18820608 -0,092117853 0 3,9285736 1,116792726 106,5909025 1,18595242 4,0503677 0,12179392
+3,7402148 383759,2492 -0,18832067 -0,092101291 0 3,9285355 1,117611482 106,5997914 1,186821879 4,0502148 0,12167933
+3,7401004 383791,2494 -0,18797691 -0,092108302 0 3,9280772 1,118430241 106,6086804 1,187691341 4,0501004 0,12202309
+3,7397375 383823,2496 -0,18772864 -0,092111476 0 3,9274662 1,119248999 106,6175693 1,188560802 4,0497375 0,12227136
+3,7396038 383855,2497 -0,18778594 -0,092110209 0 3,9273896 1,120067756 106,6264583 1,189430263 4,0496038 0,12221406
+3,7395084 383887,2499 -0,18749948 -0,092110842 0 3,9270079 1,120886512 106,6353472 1,190299722 4,0495084 0,12250052
+3,7394509 383919,2501 -0,18759497 -0,092103831 0 3,9270458 1,121705267 106,6442361 1,19116918 4,0494509 0,12240503
+3,7390308 383951,2503 -0,1873658 -0,092102565 0 3,9263966 1,12252402 106,6531251 1,192038636 4,0490308 0,1226342
+3,7389927 383983,2504 -0,18719393 -0,092108302 0 3,9261866 1,123342773 106,662014 1,192908092 4,0489927 0,12280607
+3,7389927 384015,2506 -0,18706024 -0,092108302 0 3,926053 1,124161528 106,6709029 1,19377755 4,0489927 0,12293976
+3,7386489 384047,2508 -0,18683107 -0,092108302 0 3,9254799 1,124980282 106,6797919 1,194647007 4,0486489 0,12316893
+3,7385151 384079,251 -0,18679288 -0,092112117 0 3,925308 1,125799038 106,6886808 1,195516466 4,0485151 0,12320712
+3,7383432 384111,2511 -0,1865828 -0,092108928 0 3,924926 1,126617793 106,6975698 1,196385924 4,0483432 0,1234172
+3,7381332 384143,2513 -0,18646823 -0,092113383 0 3,9246013 1,127436548 106,7064587 1,197255382 4,0481332 0,12353177
+3,7379422 384175,2515 -0,18625815 -0,092105746 0 3,9242003 1,128255302 106,7153476 1,198124839 4,0479422 0,12374185
+3,7378659 384207,2517 -0,18620086 -0,092110209 0 3,9240668 1,129074056 106,7242366 1,198994297 4,0478659 0,12379914
+3,7377896 384239,2518 -0,18595259 -0,092112117 0 3,9237423 1,129892811 106,7331255 1,199863754 4,0477896 0,12404741
+3,7375793 384271,252 -0,1859144 -0,092116579 0 3,9234939 1,130711568 106,7420145 1,200733215 4,0475793 0,1240856
+3,7374268 384303,2522 -0,18581891 -0,092098743 0 3,9232457 1,131530323 106,7509034 1,201602673 4,0474268 0,12418109
+3,7372358 384335,2524 -0,18555155 -0,092110209 0 3,9227874 1,132349077 106,7597923 1,202472129 4,0472358 0,12444845
+3,737083 384367,2526 -0,1851887 -0,092103198 0 3,9222717 1,133167831 106,7686813 1,203341587 4,047083 0,1248113
+3,7368538 384399,2527 -0,18516961 -0,092108928 0 3,9220235 1,133986585 106,7775702 1,204211043 4,0468538 0,12483039
+3,7367201 384431,2529 -0,18509321 -0,092112757 0 3,9218132 1,134805336 106,7864591 1,205080498 4,0467201 0,12490679
+3,73651 384463,2531 -0,18488315 -0,092105746 0 3,9213932 1,135624088 106,7953481 1,205949953 4,04651 0,12511685
+3,736491 384495,2533 -0,18471126 -0,092110842 0 3,9212022 1,13644284 106,804237 1,206819407 4,046491 0,12528874
+3,7362235 384527,2534 -0,18440571 -0,092105746 0 3,9206293 1,137261591 106,813126 1,207688862 4,0462235 0,12559429
+3,7361662 384559,2536 -0,18444391 -0,09210702 0 3,9206102 1,138080345 106,8220149 1,208558318 4,0461662 0,12555609
+3,7360325 384591,2538 -0,18421474 -0,092103831 0 3,9202473 1,138899101 106,8309038 1,209427778 4,0460325 0,12578526
+3,7359753 384623,254 -0,18408105 -0,092113383 0 3,9200563 1,139717858 106,8397928 1,210297238 4,0459753 0,12591895
+3,7355552 384655,2541 -0,18389007 -0,092107654 0 3,9194453 1,140536615 106,8486817 1,211166698 4,0455552 0,12610993
+3,7356315 384687,2543 -0,18366091 -0,092108928 0 3,9192924 1,141355369 106,8575706 1,212036155 4,0456315 0,12633909
+3,7352877 384719,2545 -0,18350813 -0,092108928 0 3,9187958 1,142174125 106,8664596 1,212905614 4,0452877 0,12649187
+3,7351923 384751,2547 -0,18337445 -0,092107654 0 3,9185667 1,142992881 106,8753485 1,213775074 4,0451923 0,12662555
+3,7351348 384783,2548 -0,18324077 -0,092109561 0 3,9183755 1,143811637 106,8842375 1,214644533 4,0451348 0,12675923
+3,7349057 384815,255 -0,18310709 -0,092110209 0 3,9180129 1,144630394 106,8931264 1,215513993 4,0449057 0,12689291
+3,7346385 384847,2552 -0,18283972 -0,092113383 0 3,9174781 1,145449152 106,9020153 1,216383454 4,0446385 0,12716028
+3,7345619 384879,2554 -0,18274423 -0,092111476 0 3,9173062 1,146267911 106,9109043 1,217252916 4,0445619 0,12725577
+3,7343519 384911,2555 -0,18253417 -0,092106387 0 3,9168861 1,147086668 106,9197932 1,218122376 4,0443519 0,12746583
+3,7341609 384943,2557 -0,18259147 -0,092103198 0 3,9167523 1,147905423 106,9286821 1,218991835 4,0441609 0,12740853
+3,7341037 384975,2559 -0,18224771 -0,092105746 0 3,9163513 1,148724181 106,9375711 1,219861296 4,0441037 0,12775229
+3,7340271 385007,2561 -0,18213312 -0,092112117 0 3,9161603 1,149542937 106,94646 1,220730755 4,0440271 0,12786688
+3,7339127 385039,2563 -0,18209493 -0,092105746 0 3,9160075 1,150361694 106,955349 1,221600216 4,0439127 0,12790507
+3,733588 385071,2564 -0,18186577 -0,092115939 0 3,9154537 1,151180451 106,9642379 1,222469676 4,043588 0,12813423
+3,7334733 385103,2566 -0,18142653 -0,092105106 0 3,9148998 1,151999208 106,9731268 1,223339136 4,0434733 0,12857347
+3,7333398 385135,2568 -0,18150291 -0,092116579 0 3,9148426 1,152817966 106,9820158 1,224208597 4,0433398 0,12849709
+3,7331297 385167,257 -0,18129285 -0,092106387 0 3,9144225 1,153636723 106,9909047 1,225078057 4,0431297 0,12870715
+3,7329195 385199,2571 -0,18110187 -0,092110209 0 3,9140213 1,154455479 106,9997936 1,225947517 4,0429195 0,12889813
+3,7329004 385231,2573 -0,1808345 -0,092114665 0 3,9137349 1,155274233 107,0086826 1,226816974 4,0429004 0,1291655
+3,7326713 385263,2575 -0,18075812 -0,092103831 0 3,9134293 1,156092988 107,0175715 1,227686431 4,0426713 0,12924188
+3,7325568 385295,2577 -0,18071993 -0,092108302 0 3,9132767 1,156911743 107,0264605 1,22855589 4,0425568 0,12928007
+3,7323084 385327,2578 -0,18052895 -0,092115298 0 3,9128373 1,1577305 107,0353494 1,22942535 4,0423084 0,12947105
+3,7323658 385359,258 -0,18039526 -0,092104472 0 3,9127612 1,158549257 107,0442383 1,23029481 4,0423658 0,12960474
+3,7320983 385391,2582 -0,1801661 -0,092101924 0 3,9122643 1,15936801 107,0531273 1,231164267 4,0420983 0,1298339
+3,7318883 385423,2584 -0,17997512 -0,092108928 0 3,9118633 1,160186765 107,0620162 1,232033724 4,0418883 0,13002488
+3,7317927 385455,2585 -0,17978415 -0,092113383 0 3,9115767 1,161005518 107,0709052 1,23290318 4,0417927 0,13021585
+3,7315636 385487,2587 -0,17966956 -0,092105746 0 3,9112332 1,161824274 107,0797941 1,233772639 4,0415636 0,13033044
+3,7313726 385519,2589 -0,17953588 -0,092108928 0 3,9109085 1,162643032 107,088683 1,234642101 4,0413726 0,13046412
+3,7313726 385551,2591 -0,17928761 -0,092114031 0 3,9106603 1,163461789 107,097572 1,235511561 4,0413726 0,13071239
+3,7309716 385583,2592 -0,17915393 -0,092106387 0 3,9101255 1,164280544 107,1064609 1,236381019 4,0409716 0,13084607
+3,7311244 385615,2594 -0,17886747 -0,092115939 0 3,909992 1,165099299 107,1153498 1,237250477 4,0411244 0,13113253
+3,7308187 385647,2596 -0,17890567 -0,092114031 0 3,9097245 1,165918055 107,1242388 1,238119936 4,0408187 0,13109433
+3,7307615 385679,2598 -0,1787338 -0,092106387 0 3,9094954 1,16673681 107,1331277 1,238989395 4,0407615 0,1312662
+3,7304943 385711,26 -0,17856193 -0,092111476 0 3,9090562 1,167555567 107,1420167 1,239858854 4,0404943 0,13143807
+3,7305133 385743,2601 -0,17827547 -0,092114665 0 3,9087887 1,168374323 107,1509056 1,240728313 4,0405133 0,13172453
+3,7302077 385775,2603 -0,17810358 -0,09210702 0 3,9083114 1,16919308 107,1597945 1,241597774 4,0402077 0,13189642
+3,7302649 385807,2605 -0,17791261 -0,092110209 0 3,9081776 1,170011839 107,1686835 1,242467236 4,0402649 0,13208739
+3,729883 385839,2607 -0,17791261 -0,092115298 0 3,9077957 1,170830597 107,1775724 1,243336698 4,039883 0,13208739
+3,7299595 385871,2608 -0,17772163 -0,092112757 0 3,9076812 1,171649352 107,1864613 1,244206156 4,0399595 0,13227837
+3,7296157 385903,261 -0,17753066 -0,092109561 0 3,9071465 1,172468112 107,1953503 1,245075619 4,0396157 0,13246934
+3,7295392 385935,2612 -0,17733969 -0,092114031 0 3,9068789 1,173286871 107,2042392 1,245945082 4,0395392 0,13266031
+3,7294056 385967,2614 -0,17707233 -0,092110842 0 3,9064779 1,174105629 107,2131282 1,246814542 4,0394056 0,13292767
+3,7292719 385999,2615 -0,17714871 -0,092110209 0 3,9064207 1,174924388 107,2220171 1,247684004 4,0392719 0,13285129
+3,7290618 386031,2617 -0,17686225 -0,092109561 0 3,9059241 1,175743148 107,230906 1,248553468 4,0390618 0,13313775
+3,7288327 386063,2619 -0,17690045 -0,092114665 0 3,9057331 1,176561903 107,239795 1,249422926 4,0388327 0,13309955
+3,7288709 386095,2621 -0,17669038 -0,092110209 0 3,9055612 1,177380657 107,2486839 1,250292384 4,0388709 0,13330962
+3,7286417 386127,2622 -0,17636572 -0,092115298 0 3,9050074 1,178199413 107,2575728 1,251161843 4,0386417 0,13363428
+3,7284315 386159,2624 -0,17630844 -0,092113383 0 3,9047399 1,179018168 107,2664618 1,252031301 4,0384315 0,13369156
+3,7282023 386191,2626 -0,17628933 -0,092111476 0 3,9044917 1,179836926 107,2753507 1,252900762 4,0382023 0,13371067
+3,7280114 386223,2628 -0,17590739 -0,092113383 0 3,9039187 1,180655681 107,2842397 1,25377022 4,0380114 0,13409261
+3,7280879 386255,2629 -0,17577371 -0,092105106 0 3,9038615 1,181474437 107,2931286 1,254639679 4,0380879 0,13422629
+3,7277822 386287,2631 -0,17573552 -0,092110842 0 3,9035177 1,182293193 107,3020175 1,255509138 4,0377822 0,13426448
+3,7277441 386319,2633 -0,17544906 -0,092116579 0 3,9031932 1,183111948 107,3109065 1,256378597 4,0377441 0,13455094
+3,7274194 386351,2635 -0,17527717 -0,092107654 0 3,9026966 1,183930703 107,3197954 1,257248055 4,0374194 0,13472283
+3,7274194 386383,2637 -0,17535357 -0,092106387 0 3,9027729 1,18474946 107,3286843 1,258117515 4,0374194 0,13464643
+3,7272666 386415,2638 -0,17518169 -0,092108302 0 3,9024482 1,185568217 107,3375733 1,258986975 4,0372666 0,13481831
+3,727133 386447,264 -0,1750671 -0,092108928 0 3,9022002 1,186386973 107,3464622 1,259856434 4,037133 0,1349329
+3,7269421 386479,2642 -0,17485704 -0,092105746 0 3,9017992 1,187205726 107,3553512 1,260725891 4,0369421 0,13514296
+3,7268083 386511,2644 -0,17476155 -0,092107654 0 3,9015698 1,188024481 107,3642401 1,261595348 4,0368083 0,13523845
+3,7265217 386543,2645 -0,17439869 -0,092115939 0 3,9009204 1,188843236 107,373129 1,262464806 4,0365217 0,13560131
+3,7265983 386575,2647 -0,17434141 -0,092108302 0 3,9009397 1,189661992 107,382018 1,263334265 4,0365983 0,13565859
+3,7263882 386607,2649 -0,17428412 -0,092107654 0 3,9006724 1,190480749 107,3909069 1,264203726 4,0363882 0,13571588
+3,7262163 386639,2651 -0,17415044 -0,092109561 0 3,9003668 1,191299508 107,3997958 1,265073188 4,0362163 0,13584956
+3,7261589 386671,2652 -0,17390217 -0,092111476 0 3,9000611 1,192118264 107,4086848 1,265942647 4,0361589 0,13609783
+3,7261207 386703,2654 -0,17388307 -0,092111476 0 3,9000037 1,19293702 107,4175737 1,266812106 4,0361207 0,13611693
+3,7257769 386735,2656 -0,17382577 -0,092111476 0 3,8996027 1,193755772 107,4264627 1,267681561 4,0357769 0,13617423
+3,7255096 386767,2658 -0,1736348 -0,092110842 0 3,8991444 1,194574524 107,4353516 1,268551016 4,0355096 0,1363652
+3,7255096 386799,2659 -0,17344382 -0,092112117 0 3,8989534 1,195393278 107,4442405 1,269420473 4,0355096 0,13655618
+3,7252231 386831,2661 -0,17331015 -0,092113383 0 3,8985331 1,196212034 107,4531295 1,270289933 4,0352231 0,13668985
+3,7252614 386863,2663 -0,17317647 -0,092105746 0 3,898438 1,197030792 107,4620184 1,271159394 4,0352614 0,13682353
+3,725013 386895,2665 -0,17306188 -0,092109561 0 3,8980749 1,197849547 107,4709074 1,272028852 4,035013 0,13693812
+3,7249177 386927,2666 -0,17302369 -0,092108928 0 3,8979414 1,198668302 107,4797963 1,27289831 4,0349177 0,13697631
+3,7246883 386959,2668 -0,17296639 -0,092107654 0 3,8976548 1,199487059 107,4886852 1,273767769 4,0346883 0,13703361
+3,724612 386991,267 -0,17267993 -0,092113383 0 3,8972919 1,200305819 107,4975742 1,274637233 4,034612 0,13732007
+3,724421 387023,2672 -0,17246987 -0,092112117 0 3,8968909 1,201124577 107,5064631 1,275506695 4,034421 0,13753013
+3,724421 387055,2673 -0,17243166 -0,092115298 0 3,8968527 1,201943336 107,515352 1,276376157 4,034421 0,13756834
+3,724211 387087,2675 -0,17237438 -0,092108928 0 3,8965855 1,202762095 107,524241 1,27724562 4,034211 0,13762562
+3,7240009 387119,2677 -0,1722025 -0,092103831 0 3,8962035 1,203580857 107,5331299 1,278115085 4,0340009 0,1377975
+3,72381 387151,2679 -0,17206882 -0,092110842 0 3,8958788 1,204399618 107,5420189 1,278984549 4,03381 0,13793118
+3,7236571 387183,2681 -0,17208792 -0,092112757 0 3,895745 1,205218375 107,5509078 1,279854009 4,0336571 0,13791208
+3,7235425 387215,2682 -0,17182055 -0,092116579 0 3,8953631 1,206037135 107,5597967 1,280723473 4,0335425 0,13817945
+3,7233515 387247,2684 -0,17170598 -0,092112117 0 3,8950574 1,206855896 107,5686857 1,281592937 4,0333515 0,13829402
+3,7231414 387279,2686 -0,17168687 -0,092105746 0 3,8948283 1,207674655 107,5775746 1,2824624 4,0331414 0,13831313
+3,7230461 387311,2688 -0,17153409 -0,092108302 0 3,8945801 1,208493413 107,5864635 1,283331861 4,0330461 0,13846591
+3,7228167 387343,2689 -0,1714386 -0,092116579 0 3,8942554 1,209312168 107,5953525 1,284201319 4,0328167 0,1385614
+3,7227213 387375,2691 -0,17134312 -0,092111476 0 3,8940644 1,210130926 107,6042414 1,28507078 4,0327213 0,13865688
+3,7225685 387407,2693 -0,17124763 -0,092110209 0 3,8938162 1,210949683 107,6131304 1,28594024 4,0325685 0,13875237
+3,7225494 387439,2695 -0,17096117 -0,092113383 0 3,8935106 1,211768444 107,6220193 1,286809705 4,0325494 0,13903883
+3,7223585 387471,2696 -0,17094208 -0,092113383 0 3,8933005 1,212587203 107,6309082 1,287679168 4,0323585 0,13905792
+3,7221103 387503,2698 -0,17080839 -0,092110842 0 3,8929186 1,21340596 107,6397972 1,288548628 4,0321103 0,13919161
+3,7220912 387535,27 -0,1708466 -0,092108302 0 3,8929379 1,214224717 107,6486861 1,289418087 4,0320912 0,1391534
+3,7219193 387567,2702 -0,17067471 -0,092108928 0 3,8925941 1,215043475 107,657575 1,290287549 4,0319193 0,13932529
+3,7217855 387599,2703 -0,17038825 -0,092112757 0 3,8921738 1,215862234 107,666464 1,291157011 4,0317855 0,13961175
+3,721499 387631,2705 -0,17046463 -0,092110842 0 3,8919635 1,216680993 107,6753529 1,292026474 4,031499 0,13953537
+3,7213845 387663,2707 -0,17038825 -0,092108928 0 3,8917727 1,21749975 107,6842419 1,292895934 4,0313845 0,13961175
+3,7211361 387695,2709 -0,17035006 -0,092111476 0 3,8914862 1,218318506 107,6931308 1,293765394 4,0311361 0,13964994
+3,7210979 387727,271 -0,1700636 -0,092113383 0 3,8911614 1,219137263 107,7020197 1,294634853 4,0310979 0,1399364
+3,7210026 387759,2712 -0,1699872 -0,09210702 0 3,8909898 1,21995602 107,7109087 1,295504313 4,0310026 0,1400128
+3,7208307 387791,2714 -0,16996811 -0,092106387 0 3,8907988 1,220774776 107,7197976 1,296373773 4,0308307 0,14003189
+3,7205441 387823,2716 -0,16983443 -0,092107654 0 3,8903785 1,221593533 107,7286865 1,297243233 4,0305441 0,14016557
+3,7206969 387855,2718 -0,16985352 -0,092108928 0 3,8905504 1,222412291 107,7375755 1,298112694 4,0306969 0,14014648
+3,7203341 387887,2719 -0,16975804 -0,092100017 0 3,8900921 1,223231046 107,7464644 1,298982152 4,0303341 0,14024196
+3,720124 387919,2721 -0,16958617 -0,092108928 0 3,8897102 1,224049798 107,7553534 1,299851608 4,030124 0,14041383
+3,7200668 387951,2723 -0,16950977 -0,092110209 0 3,8895764 1,22486855 107,7642423 1,300721062 4,0300668 0,14049023
+3,7199712 387983,2725 -0,16941428 -0,092112117 0 3,8893855 1,225687301 107,7731312 1,301590516 4,0299712 0,14058572
+3,7199903 388015,2726 -0,1693379 -0,092101924 0 3,8893282 1,226506057 107,7820202 1,302459975 4,0299903 0,1406621
+3,719723 388047,2728 -0,1692806 -0,092103831 0 3,8890035 1,227324811 107,7909091 1,303329432 4,029723 0,1407194
+3,7194748 388079,273 -0,16907054 -0,092108928 0 3,8885453 1,228143566 107,7997981 1,30419889 4,0294748 0,14092946
+3,7193792 388111,2732 -0,16899414 -0,092110209 0 3,8883734 1,228962322 107,808687 1,30506835 4,0293792 0,14100586
+3,7191501 388143,2733 -0,16893685 -0,092108928 0 3,8880868 1,229781078 107,8175759 1,305937808 4,0291501 0,14106315
+3,719131 388175,2735 -0,16880317 -0,092101924 0 3,8879342 1,230599833 107,8264649 1,306807266 4,029131 0,14119683
+3,7189782 388207,2737 -0,16878408 -0,09210702 0 3,8877623 1,23141859 107,8353538 1,307676727 4,0289782 0,14121592
+3,7189019 388239,2739 -0,1685549 -0,092113383 0 3,8874569 1,232237344 107,8442427 1,308546184 4,0289019 0,1414451
+3,7185771 388271,274 -0,1686313 -0,092105746 0 3,8872085 1,233056098 107,8531317 1,309415641 4,0285771 0,1413687
+3,7183671 388303,2742 -0,1686886 -0,092118487 0 3,8870556 1,233874851 107,8620206 1,310285096 4,0283671 0,1413114
+3,7183287 388335,2744 -0,16844033 -0,09210702 0 3,8867691 1,234693605 107,8709096 1,311154554 4,0283287 0,14155967
+3,7182906 388367,2746 -0,16838303 -0,092114665 0 3,8866737 1,235512362 107,8797985 1,312024014 4,0282906 0,14161697
+3,7180424 388399,2747 -0,16842122 -0,092115298 0 3,8864636 1,236331119 107,8886874 1,312893474 4,0280424 0,14157878
+3,7177558 388431,2749 -0,16824935 -0,092107654 0 3,8860052 1,237149876 107,8975764 1,313762934 4,0277558 0,14175065
+3,7176986 388463,2751 -0,16802017 -0,092110209 0 3,8857188 1,237968631 107,9064653 1,314632393 4,0276986 0,14197983
+3,7176986 388495,2753 -0,16821115 -0,092112117 0 3,8859098 1,238787387 107,9153542 1,315501852 4,0276986 0,14178885
+3,7174122 388527,2755 -0,16792469 -0,092108302 0 3,8853369 1,239606147 107,9242432 1,316371315 4,0274122 0,14207531
+3,7172403 388559,2756 -0,16792469 -0,092109561 0 3,885165 1,240424904 107,9331321 1,317240775 4,0272403 0,14207531
+3,7170875 388591,2758 -0,1678865 -0,092108302 0 3,884974 1,241243664 107,9420211 1,318110239 4,0270875 0,1421135
+3,7170303 388623,276 -0,16765733 -0,092112757 0 3,8846877 1,242062429 107,95091 1,318979707 4,0270303 0,14234267
+3,7167819 388655,2762 -0,1678483 -0,092112117 0 3,8846302 1,242881191 107,9597989 1,319849173 4,0267819 0,1421517
+3,7165527 388687,2763 -0,16765733 -0,092109561 0 3,8842101 1,243699953 107,9686879 1,320718639 4,0265527 0,14234267
+3,716629 388719,2765 -0,16740906 -0,092106387 0 3,884038 1,244518716 107,9775768 1,321588105 4,026629 0,14259094
+3,716419 388751,2767 -0,16754274 -0,092112757 0 3,8839617 1,245337478 107,9864657 1,32245757 4,026419 0,14245726
+3,7162662 388783,2769 -0,16748546 -0,092121668 0 3,8837516 1,246156236 107,9953547 1,323327032 4,0262662 0,14251454
+3,7161326 388815,277 -0,16733268 -0,092105746 0 3,8834653 1,246974998 108,0042436 1,324196497 4,0261326 0,14266732
+3,716037 388847,2772 -0,16737087 -0,092110209 0 3,8834078 1,247793757 108,0131326 1,32506596 4,026037 0,14262913
+3,7158842 388879,2774 -0,16735177 -0,092111476 0 3,8832359 1,248612518 108,0220215 1,325935424 4,0258842 0,14264823
+3,7156551 388911,2776 -0,16723719 -0,092116579 0 3,8828924 1,24943128 108,0309104 1,32680489 4,0256551 0,14276281
+3,7155023 388943,2777 -0,167199 -0,092110209 0 3,8827012 1,250250041 108,0397994 1,327674354 4,0255023 0,142801
+3,7153878 388975,2779 -0,16706531 -0,092110842 0 3,8824532 1,251068801 108,0486883 1,328543818 4,0253878 0,14293469
+3,7151778 389007,2781 -0,16710351 -0,092114031 0 3,8822813 1,251887563 108,0575772 1,329413283 4,0251778 0,14289649
+3,7151203 389039,2783 -0,16695073 -0,092101924 0 3,882071 1,252706323 108,0664662 1,330282747 4,0251203 0,14304927
+3,714853 389071,2784 -0,16708441 -0,092112117 0 3,8819375 1,25352508 108,0753551 1,331152207 4,024853 0,14291559
+3,7147384 389103,2786 -0,16695073 -0,092105106 0 3,8816891 1,254343837 108,0842441 1,332021667 4,0247384 0,14304927
+3,7146049 389135,2788 -0,16687433 -0,092105746 0 3,8814793 1,255162594 108,093133 1,332891127 4,0246049 0,14312567
+3,7145092 389167,279 -0,16681705 -0,092105746 0 3,8813262 1,255981347 108,1020219 1,333760584 4,0245092 0,14318295
+3,7142611 389199,2792 -0,16687433 -0,092107654 0 3,8811355 1,256800102 108,1109109 1,334630041 4,0242611 0,14312567
+3,7144902 389231,2793 -0,16664517 -0,092110842 0 3,8811355 1,257618857 108,1197998 1,335499499 4,0244902 0,14335483
+3,7141464 389263,2795 -0,16660698 -0,092116579 0 3,8807533 1,258437612 108,1286888 1,336368958 4,0241464 0,14339302
+3,7140126 389295,2797 -0,16649239 -0,092110842 0 3,8805051 1,259256371 108,1375777 1,33723842 4,0240126 0,14350761
+3,7138026 389327,2799 -0,16649239 -0,09210702 0 3,880295 1,26007513 108,1464666 1,338107882 4,0238026 0,14350761
+3,7135353 389359,28 -0,16633962 -0,092106387 0 3,8798749 1,260893887 108,1553556 1,338977343 4,0235353 0,14366038
+3,7136307 389391,2802 -0,16637781 -0,092108302 0 3,8800085 1,261712644 108,1642445 1,339846803 4,0236307 0,14362219
+3,7134206 389423,2804 -0,16635871 -0,092113383 0 3,8797793 1,262531402 108,1731334 1,340716263 4,0234206 0,14364129
+3,7133253 389455,2806 -0,1663969 -0,09210702 0 3,8797221 1,26335016 108,1820224 1,341585725 4,0233253 0,1436031
+3,7129433 389487,2807 -0,166416 -0,092110209 0 3,8793592 1,264168919 108,1909113 1,342455188 4,0229433 0,143584
+3,7129049 389519,2809 -0,16618684 -0,092110209 0 3,8790917 1,264987679 108,1998003 1,343324651 4,0229049 0,14381316
+3,7126377 389551,2811 -0,16614863 -0,092111476 0 3,8787863 1,265806438 108,2086892 1,344194114 4,0226377 0,14385137
+3,7126377 389583,2813 -0,16599587 -0,092110209 0 3,8786335 1,266625197 108,2175781 1,345063576 4,0226377 0,14400413
+3,7123704 389615,2814 -0,16609135 -0,092113383 0 3,8784618 1,267443954 108,2264671 1,345933036 4,0223704 0,14390865
+3,7122939 389647,2816 -0,16597676 -0,09210702 0 3,8782706 1,268262711 108,235356 1,346802496 4,0222939 0,14402324
+3,7121029 389679,2818 -0,16607225 -0,092108928 0 3,8781753 1,269081468 108,2442449 1,347671957 4,0221029 0,14392775
+3,7120457 389711,282 -0,16588128 -0,092114031 0 3,8779268 1,269900227 108,2531339 1,348541418 4,0220457 0,14411872
+3,7118547 389743,2821 -0,16588128 -0,092113383 0 3,8777361 1,270718983 108,2620228 1,349410878 4,0218547 0,14411872
+3,7117782 389775,2823 -0,16590038 -0,092113383 0 3,8776786 1,271537739 108,2709118 1,350280337 4,0217782 0,14409962
+3,7116256 389807,2825 -0,16584308 -0,092109561 0 3,8774686 1,272356494 108,2798007 1,351149795 4,0216256 0,14415692
+3,7115109 389839,2827 -0,16578579 -0,092110842 0 3,8772967 1,273175251 108,2886896 1,352019255 4,0215109 0,14421421
+3,711339 389871,2829 -0,16582398 -0,092103831 0 3,8771629 1,273994009 108,2975786 1,352888717 4,021339 0,14417602
+3,7111099 389903,283 -0,16559482 -0,092108928 0 3,8767047 1,274812766 108,3064675 1,353758177 4,0211099 0,14440518
+3,711129 389935,2832 -0,16580489 -0,092114031 0 3,8769338 1,275631522 108,3153564 1,354627635 4,021129 0,14419511
+3,7110333 389967,2834 -0,16565211 -0,092098102 0 3,8766854 1,276450278 108,3242454 1,355497095 4,0210333 0,14434789
+3,7108233 389999,2836 -0,16553752 -0,092105746 0 3,8763609 1,277269035 108,3331343 1,356366555 4,0208233 0,14446248
+3,7106323 390031,2837 -0,16548023 -0,092110842 0 3,8761125 1,27808779 108,3420233 1,357236014 4,0206323 0,14451977
+3,7104414 390063,2839 -0,16551843 -0,092114031 0 3,8759599 1,278906548 108,3509122 1,358105475 4,0204414 0,14448157
+3,7104032 390095,2841 -0,16544203 -0,092109561 0 3,8758452 1,279725307 108,3598011 1,358974937 4,0204032 0,14455797
+3,7101741 390127,2843 -0,16548023 -0,092110209 0 3,8756542 1,280544065 108,3686901 1,359844399 4,0201741 0,14451977
+3,7101169 390159,2844 -0,16536565 -0,092108302 0 3,8754826 1,281362825 108,377579 1,360713861 4,0201169 0,14463435
+3,7098684 390191,2846 -0,16532746 -0,092112757 0 3,875196 1,282181582 108,3864679 1,361583322 4,0198684 0,14467254
+3,7096202 390223,2848 -0,16528925 -0,092111476 0 3,8749094 1,28300034 108,3953569 1,362452783 4,0196202 0,14471075
+3,709563 390255,285 -0,16523197 -0,092105746 0 3,874795 1,283819098 108,4042458 1,363322244 4,019563 0,14476803
+3,7093911 390287,2851 -0,16513649 -0,092113383 0 3,8745277 1,284637854 108,4131348 1,364191703 4,0193911 0,14486351
+3,7092192 390319,2853 -0,16527016 -0,092109561 0 3,8744893 1,28545661 108,4220237 1,365061163 4,0192192 0,14472984
+3,7090664 390351,2855 -0,16523197 -0,092114031 0 3,8742983 1,286275366 108,4309126 1,365930622 4,0190664 0,14476803
+3,7090282 390383,2857 -0,16525106 -0,092108302 0 3,8742793 1,287094125 108,4398016 1,366800084 4,0190282 0,14474894
+3,7088945 390415,2858 -0,16519377 -0,092109561 0 3,8740883 1,287912882 108,4486905 1,367669545 4,0188945 0,14480623
+3,7086272 390447,286 -0,16500279 -0,092112117 0 3,87363 1,28873164 108,4575795 1,368539006 4,0186272 0,14499721
+3,7085125 390479,2862 -0,16494551 -0,092108302 0 3,8734581 1,289550398 108,4664684 1,369408467 4,0185125 0,14505449
+3,7083979 390511,2864 -0,16509828 -0,092116579 0 3,8734961 1,290369156 108,4753573 1,370277928 4,0183979 0,14490172
+3,7083406 390543,2866 -0,16494551 -0,092110842 0 3,8732862 1,291187915 108,4842463 1,37114739 4,0183406 0,14505449
+3,7082453 390575,2867 -0,16488822 -0,092112117 0 3,8731334 1,292006672 108,4931352 1,372016851 4,0182453 0,14511178
+3,7079968 390607,2869 -0,16479273 -0,092115939 0 3,8727896 1,292825429 108,5020241 1,372886311 4,0179968 0,14520727
+3,707844 390639,2871 -0,16488822 -0,092109561 0 3,8727322 1,293644188 108,5109131 1,373755773 4,017844 0,14511178
+3,7076724 390671,2873 -0,16477363 -0,092116579 0 3,8724461 1,294462949 108,519802 1,374625238 4,0176724 0,14522637
+3,7075768 390703,2874 -0,16485003 -0,092115939 0 3,8724267 1,295281711 108,528691 1,375494703 4,0175768 0,14514997
+3,7075768 390735,2876 -0,16481182 -0,092109561 0 3,8723886 1,296100474 108,5375799 1,37636417 4,0175768 0,14518818
+3,7073858 390767,2878 -0,16485003 -0,092105106 0 3,8722358 1,296919235 108,5464688 1,377233635 4,0173858 0,14514997
+3,707233 390799,288 -0,16475454 -0,092106387 0 3,8719876 1,297737995 108,5553578 1,378103098 4,017233 0,14524546
+3,7071376 390831,2881 -0,16460176 -0,092101924 0 3,8717394 1,298556755 108,5642467 1,378972562 4,0171376 0,14539824
+3,7069275 390863,2883 -0,16462085 -0,09210702 0 3,8715484 1,299375515 108,5731356 1,379842025 4,0169275 0,14537915
+3,7067173 390895,2885 -0,16458265 -0,092112117 0 3,8713 1,300194278 108,5820246 1,380711491 4,0167173 0,14541735
+3,7066219 390927,2887 -0,16454446 -0,092114031 0 3,8711662 1,301013042 108,5909135 1,381580958 4,0166219 0,14545554
+3,7063737 390959,2888 -0,16456357 -0,092111476 0 3,8709373 1,301831804 108,5998025 1,382450425 4,0163737 0,14543643
+3,706259 390991,289 -0,16460176 -0,092113383 0 3,8708608 1,302650567 108,6086914 1,383319891 4,016259 0,14539824
+3,7063544 391023,2892 -0,16450627 -0,092107654 0 3,8708606 1,303469327 108,6175803 1,384189355 4,0163544 0,14549373
+3,7061443 391055,2894 -0,16450627 -0,092112117 0 3,8706505 1,304288091 108,6264693 1,385058822 4,0161443 0,14549373
+3,705858 391087,2895 -0,16452536 -0,09210702 0 3,8703833 1,305106853 108,6353582 1,385928288 4,015858 0,14547464
+3,7057242 391119,2897 -0,16448717 -0,09210702 0 3,8702114 1,305925617 108,6442471 1,386797756 4,0157242 0,14551283
+3,7055142 391151,2899 -0,16452536 -0,092112757 0 3,8700395 1,306744381 108,6531361 1,387667223 4,0155142 0,14547464
+3,7054951 391183,2901 -0,16452536 -0,092110209 0 3,8700204 1,307563145 108,662025 1,38853669 4,0154951 0,14547464
+3,7052851 391215,2903 -0,1643153 -0,09210702 0 3,8696003 1,308381909 108,670914 1,389406158 4,0152851 0,1456847
+3,7052276 391247,2904 -0,16437259 -0,092113383 0 3,8696003 1,309200673 108,6798029 1,390275625 4,0152276 0,14562741
+3,705075 391279,2906 -0,16435349 -0,092106387 0 3,8694286 1,310019438 108,6886918 1,391145095 4,015075 0,14564651
+3,7049794 391311,2908 -0,1643153 -0,092107654 0 3,8692946 1,310838201 108,6975808 1,392014561 4,0149794 0,1456847
+3,7047503 391343,291 -0,16439168 -0,092104472 0 3,8691421 1,311656961 108,7064697 1,392884025 4,0147503 0,14560832
+3,7046356 391375,2911 -0,16439168 -0,092110209 0 3,8690274 1,312475722 108,7153586 1,393753489 4,0146356 0,14560832
+3,7045212 391407,2913 -0,16421981 -0,092110842 0 3,868741 1,313294483 108,7242476 1,394622954 4,0145212 0,14578019
+3,7043111 391439,2915 -0,16408613 -0,092113383 0 3,8683972 1,314113246 108,7331365 1,39549242 4,0143111 0,14591387
+3,7041774 391471,2917 -0,16414341 -0,092115298 0 3,8683207 1,314932005 108,7420255 1,396361883 4,0141774 0,14585659
+3,7040055 391503,2918 -0,16421981 -0,092112757 0 3,8682253 1,315750763 108,7509144 1,397231344 4,0140055 0,14578019
+3,7038527 391535,292 -0,16418162 -0,092100017 0 3,8680344 1,316569521 108,7598033 1,398100805 4,0138527 0,14581838
+3,7036808 391567,2922 -0,16416252 -0,09210702 0 3,8678432 1,317388279 108,7686923 1,398970266 4,0136808 0,14583748
+3,703738 391599,2924 -0,16410522 -0,092114031 0 3,8678432 1,318207034 108,7775812 1,399839725 4,013738 0,14589478
+3,7036045 391631,2925 -0,16408613 -0,09210702 0 3,8676906 1,319025786 108,7864702 1,40070918 4,0136045 0,14591387
+3,7035279 391663,2927 -0,16408613 -0,092108302 0 3,867614 1,319844537 108,7953591 1,401578633 4,0135279 0,14591387
+3,703337 391695,2929 -0,16389515 -0,092114031 0 3,8672321 1,32066329 108,804248 1,402448089 4,013337 0,14610485
+3,7031844 391727,2931 -0,16408613 -0,092110209 0 3,8672705 1,321482041 108,813137 1,403317543 4,0131844 0,14591387
+3,7029169 391759,2932 -0,16408613 -0,092112117 0 3,867003 1,322300793 108,8220259 1,404186998 4,0129169 0,14591387
+3,7029741 391791,2934 -0,16389515 -0,092102565 0 3,8668692 1,323119542 108,8309148 1,40505645 4,0129741 0,14610485
+3,7026112 391823,2936 -0,16389515 -0,092108928 0 3,8665063 1,323938292 108,8398038 1,405925903 4,0126112 0,14610485
+3,7024968 391855,2938 -0,16395244 -0,092108928 0 3,8664491 1,324757046 108,8486927 1,406795359 4,0124968 0,14604756
+3,7024586 391887,2939 -0,16387606 -0,092108302 0 3,8663347 1,325575799 108,8575817 1,407664815 4,0124586 0,14612394
+3,7022486 391919,2941 -0,16379966 -0,092107654 0 3,8660483 1,326394553 108,8664706 1,408534272 4,0122486 0,14620034
+3,7022102 391951,2943 -0,16387606 -0,092108302 0 3,8660862 1,327213306 108,8753595 1,409403728 4,0122102 0,14612394
+3,702153 391983,2945 -0,16404793 -0,092106387 0 3,8662009 1,328032062 108,8842485 1,410273187 4,012153 0,14595207
+3,7019429 392015,2947 -0,16389515 -0,092112757 0 3,8658381 1,328850817 108,8931374 1,411142646 4,0119429 0,14610485
+3,7016947 392047,2948 -0,16383786 -0,092112117 0 3,8655326 1,329669575 108,9020263 1,412012107 4,0116947 0,14616214
+3,7016754 392079,295 -0,16372328 -0,092111476 0 3,8653986 1,330488337 108,9109153 1,412881573 4,0116754 0,14627672
+3,701561 392111,2952 -0,16374238 -0,092118487 0 3,8653033 1,331307104 108,9198042 1,413751043 4,011561 0,14625762
+3,7012744 392143,2954 -0,16372328 -0,092103831 0 3,8649976 1,332125866 108,9286932 1,414620509 4,0112744 0,14627672
+3,7011025 392175,2955 -0,16366598 -0,092110209 0 3,8647685 1,332944628 108,9375821 1,415489974 4,0111025 0,14633402
+3,7009881 392207,2957 -0,16381876 -0,092109561 0 3,8648069 1,333763386 108,946471 1,416359436 4,0109881 0,14618124
+3,7009115 392239,2959 -0,16364689 -0,092114031 0 3,8645585 1,334582147 108,95536 1,4172289 4,0109115 0,14635311
+3,7007015 392271,2961 -0,16360869 -0,092106387 0 3,8643103 1,335400906 108,9642489 1,418098362 4,0107015 0,14639131
+3,700587 392303,2962 -0,16368508 -0,092111476 0 3,8642721 1,336219662 108,9731378 1,418967821 4,010587 0,14631492
+3,7005486 392335,2964 -0,16368508 -0,092112117 0 3,8642337 1,337038422 108,9820268 1,419837284 4,0105486 0,14631492
+3,700377 392367,2966 -0,16366598 -0,092110842 0 3,864043 1,337857184 108,9909157 1,42070675 4,010377 0,14633402
+3,7002242 392399,2968 -0,16366598 -0,092111476 0 3,8638902 1,338675948 108,9998047 1,421576218 4,0102242 0,14633402
+3,7001095 392431,2969 -0,1635132 -0,092118487 0 3,8636227 1,339494715 109,0086936 1,422445689 4,0101095 0,1464868
+3,6999376 392463,2971 -0,16360869 -0,092108928 0 3,8635464 1,340313483 109,0175825 1,423315161 4,0099376 0,14639131
+3,6997275 392495,2973 -0,16357049 -0,092117213 0 3,8632979 1,341132253 109,0264715 1,424184634 4,0097275 0,14642951
+3,6997657 392527,2975 -0,16347501 -0,092107654 0 3,8632407 1,341951024 109,0353604 1,42505411 4,0097657 0,14652499
+3,6994984 392559,2976 -0,1635323 -0,092108928 0 3,8630307 1,342769796 109,0442493 1,425923586 4,0094984 0,1464677
+3,6993456 392591,2978 -0,16347501 -0,092111476 0 3,8628206 1,343588565 109,0531383 1,426793059 4,0093456 0,14652499
+3,6993074 392623,298 -0,16355141 -0,092112757 0 3,8628588 1,344407336 109,0620272 1,427662534 4,0093074 0,14644859
+3,6990974 392655,2982 -0,16337952 -0,092113383 0 3,8624768 1,345226109 109,0709162 1,428532012 4,0090974 0,14662048
+3,6988873 392687,2984 -0,16345592 -0,092110842 0 3,8623433 1,346044883 109,0798051 1,42940149 4,0088873 0,14654408
+3,6988299 392719,2985 -0,16337952 -0,092108302 0 3,8622093 1,346863655 109,088694 1,430270966 4,0088299 0,14662048
+3,6987154 392751,2987 -0,16347501 -0,092105746 0 3,8621905 1,347682425 109,097583 1,43114044 4,0087154 0,14652499
+3,6986964 392783,2989 -0,1635323 -0,092115939 0 3,8622286 1,348501195 109,1064719 1,432009914 4,0086964 0,1464677
+3,6984098 392815,2991 -0,16339862 -0,092113383 0 3,8618083 1,349319964 109,1153608 1,432879387 4,0084098 0,14660138
+3,6984098 392847,2992 -0,16332223 -0,092109561 0 3,861732 1,350138738 109,1242498 1,433748865 4,0084098 0,14667777
+3,698257 392879,2994 -0,16326495 -0,092106387 0 3,861522 1,350957514 109,1331387 1,434618346 4,008257 0,14673505
+3,6980278 392911,2996 -0,16332223 -0,092110209 0 3,8613501 1,351776287 109,1420277 1,435487822 4,0080278 0,14667777
+3,6978941 392943,2998 -0,16322674 -0,092110842 0 3,8611209 1,352595057 109,1509166 1,436357297 4,0078941 0,14677326
+3,697684 392975,2999 -0,16347501 -0,092112757 0 3,8611591 1,353413826 109,1598055 1,437226769 4,007684 0,14652499
+3,6976459 393007,3001 -0,16332223 -0,092107654 0 3,8609681 1,354232597 109,1686945 1,438096245 4,0076459 0,14667777
+3,6976459 393039,3003 -0,16332223 -0,092105746 0 3,8609681 1,355051367 109,1775834 1,438965718 4,0076459 0,14667777
+3,6973784 393071,3005 -0,16336043 -0,092101924 0 3,8607388 1,355870138 109,1864724 1,439835193 4,0073784 0,14663957
+3,6973403 393103,3006 -0,16326495 -0,09211912 0 3,8606052 1,356688909 109,1953613 1,440704669 4,0073403 0,14673505
+3,6968439 393135,3008 -0,16311216 -0,092110842 0 3,859956 1,357507681 109,2042502 1,441574145 4,0068439 0,14688784
+3,6969965 393167,301 -0,16326495 -0,09210702 0 3,8602614 1,358326449 109,2131392 1,442443617 4,0069965 0,14673505
+3,696882 393199,3012 -0,16313125 -0,092106387 0 3,8600132 1,359145212 109,2220281 1,443313083 4,006882 0,14686875
+3,6968055 393231,3013 -0,16309306 -0,092110209 0 3,8598986 1,359963974 109,230917 1,444182549 4,0068055 0,14690694
+3,6965382 393263,3015 -0,16305487 -0,092110209 0 3,8595932 1,360782739 109,239806 1,445052018 4,0065382 0,14694513
+3,6964045 393295,3017 -0,16307397 -0,092116579 0 3,8594785 1,361601508 109,2486949 1,445921491 4,0064045 0,14692603
+3,69629 393327,3019 -0,16307397 -0,092108302 0 3,859364 1,362420276 109,2575839 1,446790963 4,00629 0,14692603
+3,6961563 393359,3021 -0,16309306 -0,092108928 0 3,8592494 1,363239046 109,2664728 1,447660436 4,0061563 0,14690694
+3,6959271 393391,3022 -0,16315036 -0,092103198 0 3,8590775 1,364057816 109,2753617 1,44852991 4,0059271 0,14684964
+3,6958697 393423,3024 -0,16311216 -0,092109561 0 3,8589818 1,364876585 109,2842507 1,449399384 4,0058697 0,14688784
+3,6958697 393455,3026 -0,16290209 -0,092110842 0 3,8587718 1,365695357 109,2931396 1,450268859 4,0058697 0,14709791
+3,6953158 393487,3028 -0,16307397 -0,092113383 0 3,8583899 1,366514126 109,3020285 1,451138333 4,0053158 0,14692603
+3,6954305 393519,3029 -0,16294028 -0,092108928 0 3,8583708 1,367332897 109,3109175 1,452007807 4,0054305 0,14705972
+3,6952586 393551,3031 -0,16305487 -0,092114665 0 3,8583136 1,368151668 109,3198064 1,452877283 4,0052586 0,14694513
+3,6952777 393583,3033 -0,16297849 -0,092110209 0 3,8582561 1,368970438 109,3286954 1,453746756 4,0052777 0,14702151
+3,6950486 393615,3035 -0,16313125 -0,09210702 0 3,8581798 1,369789204 109,3375843 1,454616226 4,0050486 0,14686875
+3,6949914 393647,3036 -0,16299757 -0,092111476 0 3,8579888 1,370607973 109,3464732 1,455485699 4,0049914 0,14700243
+3,6945519 393679,3038 -0,16292119 -0,092108302 0 3,8574731 1,371426741 109,3553622 1,456355171 4,0045519 0,14707881
+3,6947238 393711,304 -0,16290209 -0,092107654 0 3,857626 1,372245507 109,3642511 1,457224642 4,0047238 0,14709791
+3,6944947 393743,3042 -0,16301668 -0,092105106 0 3,8575115 1,373064273 109,37314 1,458094111 4,0044947 0,14698332
+3,6944757 393775,3043 -0,16284479 -0,092108302 0 3,8573205 1,373883039 109,382029 1,458963581 4,0044757 0,14715521
+3,6941319 393807,3045 -0,16284479 -0,092108928 0 3,8569767 1,374701806 109,3909179 1,459833052 4,0041319 0,14715521
+3,69417 393839,3047 -0,16294028 -0,092117213 0 3,8571103 1,375520569 109,3998069 1,460702519 4,00417 0,14705972
+3,69396 393871,3049 -0,1628257 -0,09210702 0 3,8567858 1,376339334 109,4086958 1,461571987 4,00396 0,1471743
+3,6937881 393903,305 -0,1628639 -0,092106387 0 3,856652 1,3771581 109,4175847 1,462441457 4,0037881 0,1471361
+3,6937118 393935,3052 -0,1628257 -0,092112757 0 3,8565373 1,377976866 109,4264737 1,463310927 4,0037118 0,1471743
+3,6936545 393967,3054 -0,16284479 -0,092113383 0 3,8564994 1,378795633 109,4353626 1,464180398 4,0036545 0,14715521
+3,6934061 393999,3056 -0,16290209 -0,092112757 0 3,8563082 1,379614399 109,4442515 1,465049867 4,0034061 0,14709791
+3,693368 394031,3058 -0,16276841 -0,092109561 0 3,8561363 1,380433162 109,4531405 1,465919334 4,003368 0,14723159
+3,6931961 394063,3059 -0,16297849 -0,092114665 0 3,8561745 1,381251923 109,4620294 1,466788798 4,0031961 0,14702151
+3,6930242 394095,3061 -0,16284479 -0,092117213 0 3,8558691 1,382070685 109,4709184 1,467658264 4,0030242 0,14715521
+3,692986 394127,3063 -0,16284479 -0,092115298 0 3,8558309 1,382889448 109,4798073 1,46852773 4,002986 0,14715521
+3,6927569 394159,3065 -0,16267292 -0,092112117 0 3,8554299 1,383708213 109,4886962 1,469397199 4,0027569 0,14732708
+3,6926041 394191,3066 -0,16290209 -0,092105746 0 3,8555062 1,38452698 109,4975852 1,47026667 4,0026041 0,14709791
+3,692585 394223,3068 -0,16276841 -0,092114665 0 3,8553534 1,385345748 109,5064741 1,471136142 4,002585 0,14723159
+3,6923368 394255,307 -0,16278751 -0,09210702 0 3,8551242 1,386164516 109,5153631 1,472005613 4,0023368 0,14721249
+3,692203 394287,3072 -0,16261563 -0,09210702 0 3,8548186 1,386983281 109,524252 1,472875082 4,002203 0,14738437
+3,6920884 394319,3073 -0,16276841 -0,092110209 0 3,8548567 1,387802046 109,5331409 1,473744551 4,0020884 0,14723159
+3,6918592 394351,3075 -0,162883 -0,092108302 0 3,8547423 1,388620807 109,5420299 1,474614016 4,0018592 0,147117
+3,6918974 394383,3077 -0,16257744 -0,092113383 0 3,8544748 1,389439574 109,5509188 1,475483486 4,0018974 0,14742256
+3,6914964 394415,3079 -0,1628257 -0,092107654 0 3,854322 1,390258341 109,5598077 1,476352957 4,0014964 0,1471743
+3,6916683 394447,308 -0,1628066 -0,092103831 0 3,8544748 1,39107711 109,5686967 1,47722243 4,0016683 0,1471934
+3,6914201 394479,3082 -0,16267292 -0,092112757 0 3,8540931 1,391895879 109,5775856 1,478091903 4,0014201 0,14732708
+3,6912291 394511,3084 -0,16263473 -0,092116579 0 3,8538637 1,392714649 109,5864746 1,478961377 4,0012291 0,14736527
+3,6911907 394543,3086 -0,16273022 -0,092122942 0 3,8539209 1,39353342 109,5953635 1,479830852 4,0011907 0,14726978
+3,6910381 394575,3087 -0,16257744 -0,092110209 0 3,8536155 1,39435219 109,6042524 1,480700327 4,0010381 0,14742256
+3,6907706 394607,3089 -0,16263473 -0,092112757 0 3,8534055 1,39517096 109,6131414 1,4815698 4,0007706 0,14736527
+3,6907134 394639,3091 -0,16253924 -0,092114665 0 3,8532526 1,395989728 109,6220303 1,482439272 4,0007134 0,14746076
+3,6906753 394671,3093 -0,16263473 -0,092106387 0 3,8533101 1,396808496 109,6309192 1,483308744 4,0006753 0,14736527
+3,6905415 394703,3095 -0,16269203 -0,092114665 0 3,8532336 1,397627261 109,6398082 1,484178212 4,0005415 0,14730797
+3,6903505 394735,3096 -0,16276841 -0,09211912 0 3,8531189 1,398446027 109,6486971 1,485047683 4,0003505 0,14723159
+3,6901977 394767,3098 -0,16273022 -0,092115939 0 3,8529279 1,399264794 109,6575861 1,485917153 4,0001977 0,14726978
+3,6899686 394799,31 -0,16257744 -0,092110842 0 3,852546 1,400083557 109,666475 1,48678662 3,9999686 0,14742256
+3,6899686 394831,3102 -0,16250105 -0,092111476 0 3,8524697 1,40090232 109,6753639 1,487656086 3,9999686 0,14749895
+3,689682 394863,3103 -0,16248195 -0,092115939 0 3,852164 1,401721084 109,6842529 1,488525554 3,999682 0,14751805
+3,689682 394895,3105 -0,16252014 -0,092110842 0 3,8522022 1,402539849 109,6931418 1,489395023 3,999682 0,14747986
+3,6895676 394927,3107 -0,16259654 -0,092108928 0 3,852164 1,403358612 109,7020307 1,49026449 3,9995676 0,14740346
+3,6893957 394959,3109 -0,16250105 -0,092110209 0 3,8518968 1,404177376 109,7109197 1,491133957 3,9993957 0,14749895
+3,6892619 394991,311 -0,16253924 -0,092114031 0 3,8518012 1,404996139 109,7198086 1,492003424 3,9992619 0,14746076
+3,6892238 395023,3112 -0,16242465 -0,092111476 0 3,8516483 1,405814902 109,7286976 1,49287289 3,9992238 0,14757535
+3,6889946 395055,3114 -0,16229098 -0,092111476 0 3,8512857 1,40663367 109,7375865 1,493742362 3,9989946 0,14770902
+3,6888037 395087,3116 -0,16263473 -0,092103831 0 3,8514385 1,407452433 109,7464754 1,494611829 3,9988037 0,14736527
+3,6887846 395119,3117 -0,16248195 -0,092110842 0 3,8512666 1,408271198 109,7553644 1,495481297 3,9987846 0,14751805
+3,6884027 395151,3119 -0,16253924 -0,092118487 0 3,8509419 1,409089966 109,7642533 1,496350769 3,9984027 0,14746076
+3,6885936 395183,3121 -0,16250105 -0,092111476 0 3,8510947 1,409908731 109,7731422 1,497220238 3,9985936 0,14749895
+3,6884408 395215,3123 -0,16232917 -0,092108928 0 3,85077 1,410727495 109,7820312 1,498089706 3,9984408 0,14767083
+3,6881924 395247,3124 -0,16248195 -0,09210702 0 3,8506744 1,411546259 109,7909201 1,498959174 3,9981924 0,14751805
+3,6879632 395279,3126 -0,16248195 -0,092108928 0 3,8504453 1,412365023 109,7998091 1,499828641 3,9979632 0,14751805
+3,6877532 395311,3128 -0,16244376 -0,092107654 0 3,8501968 1,413183789 109,808698 1,50069811 3,9977532 0,14755624
+3,6878295 395343,313 -0,16236736 -0,092113383 0 3,8501968 1,414002553 109,8175869 1,501567578 3,9978295 0,14763264
+3,6876194 395375,3132 -0,16259654 -0,092115298 0 3,8502159 1,414821316 109,8264759 1,502437045 3,9976194 0,14740346
+3,6876769 395407,3133 -0,16231008 -0,092112757 0 3,849987 1,415640083 109,8353648 1,503306516 3,9976769 0,14768992
+3,687295 395439,3135 -0,16231008 -0,092107654 0 3,8496051 1,416458851 109,8442538 1,504175988 3,997295 0,14768992
+3,6872184 395471,3137 -0,16217639 -0,092120394 0 3,8493948 1,417277617 109,8531427 1,505045458 3,9972184 0,14782361
+3,6870847 395503,3139 -0,16240557 -0,092109561 0 3,8494902 1,418096384 109,8620316 1,505914929 3,9970847 0,14759443
+3,6868365 395535,314 -0,16219549 -0,092108302 0 3,8490319 1,418915148 109,8709206 1,506784396 3,9968365 0,14780451
+3,6868365 395567,3142 -0,16221459 -0,092098102 0 3,849051 1,419733911 109,8798095 1,507653863 3,9968365 0,14778541
+3,6866074 395599,3144 -0,16227187 -0,092112757 0 3,8488793 1,420552675 109,8886984 1,50852333 3,9966074 0,14772813
+3,6864355 395631,3146 -0,16229098 -0,092109561 0 3,8487265 1,42137144 109,8975874 1,509392799 3,9964355 0,14770902
+3,6863782 395663,3147 -0,1621573 -0,092110209 0 3,8485355 1,422190206 109,9064763 1,510262269 3,9963782 0,1478427
+3,6864164 395695,3149 -0,16219549 -0,092111476 0 3,8486118 1,423008974 109,9153653 1,511131741 3,9964164 0,14780451
+3,6861298 395727,3151 -0,16217639 -0,092099376 0 3,8483062 1,423827738 109,9242542 1,512001209 3,9961298 0,14782361
+3,6860344 395759,3153 -0,16231008 -0,092107654 0 3,8483446 1,424646505 109,9331431 1,51287068 3,9960344 0,14768992
+3,6858053 395791,3154 -0,16225278 -0,092120394 0 3,8480582 1,425465272 109,9420321 1,51374015 3,9958053 0,14774722
+3,6856716 395823,3156 -0,16231008 -0,092114031 0 3,8479817 1,42628404 109,950921 1,514609622 3,9956716 0,14768992
+3,6855569 395855,3158 -0,16229098 -0,092105106 0 3,8478479 1,42710281 109,9598099 1,515479096 3,9955569 0,14770902
+3,6855569 395887,316 -0,16229098 -0,09210702 0 3,8478479 1,427921579 109,9686989 1,516348568 3,9955569 0,14770902
+3,6854424 395919,3161 -0,16221459 -0,092116579 0 3,847657 1,428740346 109,9775878 1,51721804 3,9954424 0,14778541
+3,6851368 395951,3163 -0,16206181 -0,092110209 0 3,8471985 1,429559116 109,9864768 1,518087514 3,9951368 0,14793819
+3,6852705 395983,3165 -0,16217639 -0,092111476 0 3,8474469 1,430377886 109,9953657 1,518956988 3,9952705 0,14782361
+3,6851559 396015,3167 -0,16217639 -0,092110209 0 3,8473322 1,431196652 110,0042546 1,519826457 3,9951559 0,14782361
+3,685003 396047,3169 -0,16200452 -0,092114665 0 3,8470075 1,432015417 110,0131436 1,520695926 3,995003 0,14799548
+3,6846592 396079,317 -0,16229098 -0,092109561 0 3,8469503 1,432834184 110,0220325 1,521565397 3,9946592 0,14770902
+3,6845257 396111,3172 -0,16232917 -0,092116579 0 3,8468549 1,43365295 110,0309214 1,522434867 3,9945257 0,14767083
+3,6845448 396143,3174 -0,16231008 -0,092108928 0 3,8468549 1,434471718 110,0398104 1,523304339 3,9945448 0,14768992
+3,6843538 396175,3176 -0,16217639 -0,092106387 0 3,8465302 1,435290484 110,0486993 1,524173808 3,9943538 0,14782361
+3,6842582 396207,3177 -0,16213819 -0,092108302 0 3,8463964 1,43610925 110,0575883 1,525043278 3,9942582 0,14786181
+3,6839719 396239,3179 -0,16223368 -0,092110209 0 3,8462055 1,436928016 110,0664772 1,525912748 3,9939719 0,14776632
+3,6839147 396271,3181 -0,16232917 -0,092116579 0 3,8462439 1,437746783 110,0753661 1,526782219 3,9939147 0,14767083
+3,6838191 396303,3183 -0,16206181 -0,092106387 0 3,845881 1,43856555 110,0842551 1,52765169 3,9938191 0,14793819
+3,6835899 396335,3184 -0,1620809 -0,092105746 0 3,8456709 1,439384317 110,093144 1,52852116 3,9935899 0,1479191
+3,6833224 396367,3186 -0,1621 -0,092108302 0 3,8454225 1,440203081 110,1020329 1,529390629 3,9933224 0,1479
+3,6833415 396399,3188 -0,16211911 -0,092115298 0 3,8454607 1,441021851 110,1109219 1,530260102 3,9933415 0,14788089
+3,6832271 396431,319 -0,16204271 -0,092115298 0 3,8452697 1,441840617 110,1198108 1,531129572 3,9932271 0,14795729
+3,6831505 396463,3191 -0,1620809 -0,092112117 0 3,8452315 1,442659383 110,1286998 1,531999042 3,9931505 0,1479191
+3,6830361 396495,3193 -0,16211911 -0,092105106 0 3,8451552 1,443478151 110,1375887 1,532868513 3,9930361 0,14788089
+3,6829023 396527,3195 -0,16192813 -0,092107654 0 3,8448305 1,44429692 110,1464776 1,533737987 3,9929023 0,14807187
+3,6826541 396559,3197 -0,16204271 -0,092108302 0 3,8446968 1,445115688 110,1553666 1,534607459 3,9926541 0,14795729
+3,682616 396591,3198 -0,16192813 -0,092093013 0 3,8445442 1,445934459 110,1642555 1,535476934 3,992616 0,14807187
+3,6823866 396623,32 -0,16192813 -0,092117213 0 3,8443148 1,446753225 110,1731445 1,536346403 3,9923866 0,14807187
+3,6823103 396655,3202 -0,16183265 -0,092086636 0 3,8441429 1,447571991 110,1820334 1,537215873 3,9923103 0,14816735
+3,6821003 396687,3204 -0,16188993 -0,092110209 0 3,8439903 1,448390758 110,1909223 1,538085344 3,9921003 0,14811007
+3,6820621 396719,3205 -0,16194722 -0,092108302 0 3,8440094 1,449209525 110,1998113 1,538954815 3,9920621 0,14805278
+3,6820047 396751,3207 -0,16190903 -0,092112117 0 3,8439138 1,45002829 110,2087002 1,539824284 3,9920047 0,14809097
+3,6818712 396783,3209 -0,16188993 -0,092108928 0 3,8437612 1,450847058 110,2175891 1,540693755 3,9918712 0,14811007
+3,6815464 396815,3211 -0,16206181 -0,092113383 0 3,8436084 1,451665825 110,2264781 1,541563227 3,9915464 0,14793819
+3,6815464 396847,3213 -0,16188993 -0,092103198 0 3,8434365 1,452484587 110,235367 1,542432692 3,9915464 0,14811007
+3,6813745 396879,3214 -0,16185173 -0,092112117 0 3,8432262 1,453303353 110,244256 1,543302161 3,9913745 0,14814827
+3,6812217 396911,3216 -0,16198541 -0,092108928 0 3,8432071 1,454122121 110,2531449 1,544171634 3,9912217 0,14801459
+3,6811073 396943,3218 -0,16188993 -0,092111476 0 3,8429973 1,454940888 110,2620338 1,545041105 3,9911073 0,14811007
+3,6810498 396975,322 -0,16171806 -0,092117213 0 3,842768 1,455759655 110,2709228 1,545910576 3,9910498 0,14828194
+3,6808779 397007,3221 -0,16179444 -0,092115298 0 3,8426723 1,456578421 110,2798117 1,546780044 3,9908779 0,14820556
+3,6807635 397039,3223 -0,16196632 -0,092116579 0 3,8427298 1,457397186 110,2887006 1,547649514 3,9907635 0,14803368
+3,6805151 397071,3225 -0,16200452 -0,092112757 0 3,8425195 1,458215957 110,2975896 1,548518988 3,9905151 0,14799548
+3,6804006 397103,3227 -0,16185173 -0,092116579 0 3,8422523 1,459034723 110,3064785 1,549388459 3,9904006 0,14814827
+3,6803432 397135,3228 -0,16196632 -0,092103831 0 3,8423095 1,459853492 110,3153675 1,550257931 3,9903432 0,14803368
+3,6802096 397167,323 -0,16194722 -0,092106387 0 3,8421569 1,460672259 110,3242564 1,551127402 3,9902096 0,14805278
+3,6799612 397199,3232 -0,16177535 -0,092118487 0 3,8417366 1,461491027 110,3331453 1,551996874 3,9899612 0,14822465
+3,6797893 397231,3234 -0,16166076 -0,092118487 0 3,84145 1,462309794 110,3420343 1,552866345 3,9897893 0,14833924
+3,6798468 397263,3235 -0,16181354 -0,092112757 0 3,8416603 1,463128562 110,3509232 1,553735817 3,9898468 0,14818646
+3,6796749 397295,3237 -0,16179444 -0,092110842 0 3,8414693 1,463947329 110,3598121 1,554605288 3,9896749 0,14820556
+3,6792164 397327,3239 -0,16154617 -0,092112757 0 3,8407626 1,464766097 110,3687011 1,55547476 3,9892164 0,14845383
+3,6792738 397359,3241 -0,16171806 -0,092108302 0 3,840992 1,465584866 110,37759 1,556344233 3,9892738 0,14828194
+3,6792355 397391,3242 -0,16171806 -0,092115298 0 3,8409536 1,466403635 110,386479 1,557213705 3,9892355 0,14828194
+3,6790445 397423,3244 -0,16166076 -0,092124216 0 3,8407052 1,467222402 110,3953679 1,558083176 3,9890445 0,14833924
+3,6788535 397455,3246 -0,1614316 -0,092111476 0 3,8402851 1,468041169 110,4042568 1,558952647 3,9888535 0,1485684
+3,6788919 397487,3248 -0,16173716 -0,09210702 0 3,8406291 1,468859938 110,4131458 1,55982212 3,9888919 0,14826284
+3,6788154 397519,325 -0,16181354 -0,092114031 0 3,8406289 1,469678708 110,4220347 1,560691594 3,9888154 0,14818646
+3,6786625 397551,3251 -0,16177535 -0,092122942 0 3,8404379 1,470497478 110,4309236 1,561561068 3,9886625 0,14822465
+3,6783762 397583,3253 -0,16188993 -0,092115939 0 3,8402662 1,471316245 110,4398126 1,562430539 3,9883762 0,14811007
+3,6784143 397615,3255 -0,16166076 -0,092110842 0 3,840075 1,472135015 110,4487015 1,563300013 3,9884143 0,14833924
+3,6781662 397647,3257 -0,16154617 -0,09211912 0 3,8397124 1,472953783 110,4575905 1,564169485 3,9881662 0,14845383
+3,6780896 397679,3258 -0,16179444 -0,092117213 0 3,839884 1,473772551 110,4664794 1,565038957 3,9880896 0,14820556
+3,6779561 397711,326 -0,16164166 -0,09210702 0 3,8395977 1,474591316 110,4753683 1,565908425 3,9879561 0,14835834
+3,6777842 397743,3262 -0,16190903 -0,092106387 0 3,8396933 1,47541008 110,4842573 1,566777894 3,9877842 0,14809097
+3,6775932 397775,3264 -0,16175625 -0,092108928 0 3,8393495 1,476228847 110,4931462 1,567647364 3,9875932 0,14824375
+3,6773639 397807,3265 -0,16156527 -0,092117853 0 3,8389292 1,477047615 110,5020351 1,568516836 3,9873639 0,14843473
+3,6774213 397839,3267 -0,16164166 -0,092108302 0 3,8390629 1,477866382 110,5109241 1,569386306 3,9874213 0,14835834
+3,6773067 397871,3269 -0,16166076 -0,092096195 0 3,8389673 1,478685145 110,519813 1,570255773 3,9873067 0,14833924
+3,6770775 397903,3271 -0,16162257 -0,092110209 0 3,8387001 1,479503906 110,528702 1,571125237 3,9870775 0,14837743
+3,6769819 397935,3272 -0,16162257 -0,092110842 0 3,8386045 1,480322666 110,5375909 1,571994701 3,9869819 0,14837743
+3,6767719 397967,3274 -0,16162257 -0,092108302 0 3,8383944 1,48114143 110,5464798 1,572864169 3,9867719 0,14837743
+3,676791 397999,3276 -0,16160347 -0,092111476 0 3,8383944 1,481960194 110,5553688 1,573733636 3,986791 0,14839653
+3,6767147 398031,3278 -0,16162257 -0,092110842 0 3,8383372 1,482778958 110,5642577 1,574603104 3,9867147 0,14837743
+3,6766 398063,3279 -0,16167986 -0,092109561 0 3,8382797 1,483597722 110,5731467 1,575472572 3,9866 0,14832014
+3,676409 398095,3281 -0,16167986 -0,092108928 0 3,838089 1,484416489 110,5820356 1,576342043 3,986409 0,14832014
+3,6762946 398127,3283 -0,16160347 -0,092112757 0 3,837898 1,485235257 110,5909245 1,577211515 3,9862946 0,14839653
+3,6760845 398159,3285 -0,16150798 -0,092112757 0 3,8375926 1,486054023 110,5998135 1,578080984 3,9860845 0,14849202
+3,6757789 398191,3287 -0,16158438 -0,092114031 0 3,8373632 1,486872789 110,6087024 1,578950455 3,9857789 0,14841562
+3,6756451 398223,3288 -0,16162257 -0,09210702 0 3,8372676 1,487691554 110,6175913 1,579819923 3,9856451 0,14837743
+3,6758552 398255,329 -0,16156527 -0,092110842 0 3,8374205 1,488510318 110,6264803 1,580689391 3,9858552 0,14843473
+3,6755116 398287,3292 -0,1614316 -0,09210702 0 3,8369431 1,489329084 110,6353692 1,58155886 3,9855116 0,1485684
+3,6753206 398319,3294 -0,16150798 -0,092110209 0 3,8368287 1,490147848 110,6442582 1,582428328 3,9853206 0,14849202
+3,6753013 398351,3295 -0,16148889 -0,092108302 0 3,8367901 1,490966613 110,6531471 1,583297797 3,9853013 0,14851111
+3,6752441 398383,3297 -0,16160347 -0,092120394 0 3,8368475 1,491785378 110,662036 1,584167266 3,9852441 0,14839653
+3,6750531 398415,3299 -0,16150798 -0,092114665 0 3,8365612 1,492604139 110,670925 1,58503673 3,9850531 0,14849202
+3,6747477 398447,3301 -0,16154617 -0,09210702 0 3,8362939 1,493422901 110,6798139 1,585906195 3,9847477 0,14845383
+3,6747859 398479,3302 -0,1613743 -0,092112757 0 3,8361602 1,494241662 110,6887028 1,58677566 3,9847859 0,1486257
+3,674614 398511,3304 -0,16154617 -0,09210702 0 3,8361602 1,495060423 110,6975918 1,587645125 3,984614 0,14845383
+3,6745183 398543,3306 -0,16150798 -0,092110842 0 3,8360264 1,495879184 110,7064807 1,588514589 3,9845183 0,14849202
+3,6741745 398575,3308 -0,16146979 -0,092107654 0 3,8356442 1,496697945 110,7153697 1,589384053 3,9841745 0,14853021
+3,6741745 398607,3309 -0,1613743 -0,092108302 0 3,8355489 1,497516707 110,7242586 1,590253519 3,9841745 0,1486257
+3,6739836 398639,3311 -0,16146979 -0,092113383 0 3,8354533 1,498335468 110,7331475 1,591122983 3,9839836 0,14853021
+3,6738882 398671,3313 -0,16154617 -0,092110842 0 3,8354344 1,499154233 110,7420365 1,591992452 3,9838882 0,14845383
+3,6737735 398703,3315 -0,16162257 -0,092105746 0 3,8353961 1,499972996 110,7509254 1,592861918 3,9837735 0,14837743
+3,6737545 398735,3316 -0,16156527 -0,092112757 0 3,8353198 1,500791759 110,7598143 1,593731385 3,9837545 0,14843473
+3,6734107 398767,3318 -0,16150798 -0,092106387 0 3,8349187 1,501610524 110,7687033 1,594600854 3,9834107 0,14849202
+3,6733916 398799,332 -0,1614316 -0,092106387 0 3,8348231 1,502429289 110,7775922 1,595470323 3,9833916 0,1485684
+3,6731815 398831,3322 -0,16158438 -0,09210702 0 3,8347659 1,503248055 110,7864812 1,596339792 3,9831815 0,14841562
+3,6729906 398863,3324 -0,16114514 -0,092109561 0 3,8341358 1,504066821 110,7953701 1,597209262 3,9829906 0,14885486
+3,6729333 398895,3325 -0,16150798 -0,09210702 0 3,8344414 1,504885587 110,804259 1,598078732 3,9829333 0,14849202
+3,6729143 398927,3327 -0,16141249 -0,092113383 0 3,8343267 1,505704351 110,813148 1,5989482 3,9829143 0,14858751
+3,6727424 398959,3329 -0,16133611 -0,092103198 0 3,8340786 1,506523114 110,8220369 1,599817667 3,9827424 0,14866389
+3,6725323 398991,3331 -0,16156527 -0,092115939 0 3,8340976 1,50734188 110,8309258 1,600687136 3,9825323 0,14843473
+3,6725323 399023,3332 -0,1613934 -0,092109561 0 3,8339257 1,508160644 110,8398148 1,601556604 3,9825323 0,1486066
+3,6722648 399055,3334 -0,1614316 -0,092111476 0 3,8336964 1,508979405 110,8487037 1,602426068 3,9822648 0,1485684
+3,6722839 399087,3336 -0,16145068 -0,092105106 0 3,8337345 1,509798169 110,8575927 1,603295536 3,9822839 0,14854932
+3,6720166 399119,3338 -0,16127881 -0,092117213 0 3,8332953 1,510616935 110,8664816 1,604165005 3,9820166 0,14872119
+3,6718829 399151,3339 -0,16152708 -0,092132494 0 3,83341 1,511435701 110,8753705 1,605034475 3,9818829 0,14847292
+3,6718066 399183,3341 -0,16125971 -0,092105746 0 3,8330662 1,512254466 110,8842595 1,605903943 3,9818066 0,14874029
+3,6716919 399215,3343 -0,16124062 -0,092108928 0 3,8329325 1,513073229 110,8931484 1,60677341 3,9816919 0,14875938
+3,6714056 399247,3345 -0,1613934 -0,092111476 0 3,832799 1,513891992 110,9020374 1,607642877 3,9814056 0,1486066
+3,6712337 399279,3346 -0,16127881 -0,092112757 0 3,8325124 1,514710756 110,9109263 1,608512345 3,9812337 0,14872119
+3,6710808 399311,3348 -0,1613743 -0,092112117 0 3,8324552 1,515529517 110,9198152 1,60938181 3,9810808 0,1486257
+3,6710427 399343,335 -0,16141249 -0,092109561 0 3,8324552 1,516348281 110,9287042 1,610251277 3,9810427 0,14858751
+3,6708326 399375,3352 -0,16129792 -0,092118487 0 3,8321304 1,517167046 110,9375931 1,611120746 3,9808326 0,14870208
+3,670718 399407,3353 -0,1614316 -0,092103198 0 3,8321495 1,517985811 110,946482 1,611990215 3,980718 0,1485684
+3,6706417 399439,3355 -0,16146979 -0,092101924 0 3,8321114 1,518804574 110,955371 1,612859681 3,9806417 0,14853021
+3,6704507 399471,3357 -0,16145068 -0,092107654 0 3,8319013 1,519623336 110,9642599 1,613729147 3,9804507 0,14854932
+3,6703932 399503,3359 -0,16124062 -0,092114031 0 3,8316338 1,520442103 110,9731489 1,614598617 3,9803932 0,14875938
+3,670336 399535,3361 -0,16124062 -0,092115298 0 3,8315766 1,521260866 110,9820378 1,615468084 3,980336 0,14875938
+3,6700878 399567,3362 -0,1613934 -0,092115939 0 3,8314812 1,522079628 110,9909267 1,616337549 3,9800878 0,1486066
+3,6699922 399599,3364 -0,16122152 -0,092117853 0 3,8312137 1,522898392 110,9998157 1,617207017 3,9799922 0,14877848
+3,6698394 399631,3366 -0,1613934 -0,092108928 0 3,8312328 1,523717156 111,0087046 1,618076484 3,9798394 0,1486066
+3,6698012 399663,3368 -0,16120243 -0,092113383 0 3,8310037 1,52453592 111,0175935 1,618945952 3,9798012 0,14879757
+3,6696866 399695,3369 -0,1613743 -0,092117213 0 3,8310609 1,525354684 111,0264825 1,61981542 3,9796866 0,1486257
+3,6695912 399727,3371 -0,16120243 -0,092108928 0 3,8307936 1,526173451 111,0353714 1,620684891 3,9795912 0,14879757
+3,6692092 399759,3373 -0,16127881 -0,092112117 0 3,830488 1,526992217 111,0442604 1,621554361 3,9792092 0,14872119
+3,6692474 399791,3375 -0,16122152 -0,092105746 0 3,8304689 1,527810984 111,0531493 1,622423832 3,9792474 0,14877848
+3,6689992 399823,3376 -0,16116422 -0,092112757 0 3,8301635 1,528629751 111,0620382 1,623293303 3,9789992 0,14883578
+3,6689801 399855,3378 -0,16110694 -0,092114031 0 3,8300872 1,52944852 111,0709272 1,624162775 3,9789801 0,14889306
+3,6686935 399887,338 -0,16122152 -0,092103831 0 3,829915 1,530267287 111,0798161 1,625032246 3,9786935 0,14877848
+3,6684835 399919,3382 -0,16124062 -0,09212485 0 3,8297241 1,531086054 111,088705 1,625901716 3,9784835 0,14875938
+3,6685407 399951,3383 -0,16106874 -0,092110842 0 3,8296094 1,53190482 111,097594 1,626771186 3,9785407 0,14893126
+3,6683881 399983,3385 -0,16120243 -0,092115298 0 3,8295906 1,532723583 111,1064829 1,627640654 3,9783881 0,14879757
+3,6681588 400015,3387 -0,16131701 -0,092109561 0 3,8294759 1,533542349 111,1153719 1,628510123 3,9781588 0,14868299
+3,6681206 400047,3389 -0,16118333 -0,092110842 0 3,829304 1,534361115 111,1242608 1,629379593 3,9781206 0,14881667
+3,6680253 400079,339 -0,16120243 -0,092115298 0 3,8292277 1,535179881 111,1331497 1,630249063 3,9780253 0,14879757
+3,6680059 400111,3392 -0,16122152 -0,092114031 0 3,8292274 1,535998647 111,1420387 1,631118532 3,9780059 0,14877848
+3,6676815 400143,3394 -0,16118333 -0,092114665 0 3,8288648 1,536817411 111,1509276 1,631988 3,9776815 0,14881667
+3,6675477 400175,3396 -0,16125971 -0,092109561 0 3,8288074 1,537636177 111,1598165 1,63285747 3,9775477 0,14874029
+3,667433 400207,3398 -0,16110694 -0,092103198 0 3,8285398 1,538454945 111,1687055 1,633726941 3,977433 0,14889306
+3,6672995 400239,3399 -0,16129792 -0,092111476 0 3,8285975 1,539273713 111,1775944 1,634596414 3,9772995 0,14870208
+3,6670895 400271,3401 -0,16129792 -0,092110842 0 3,8283873 1,540092481 111,1864834 1,635465885 3,9770895 0,14870208
+3,667032 400303,3403 -0,16133611 -0,092111476 0 3,8283682 1,540911251 111,1953723 1,636335359 3,977032 0,14866389
+3,6669557 400335,3405 -0,16114514 -0,092108302 0 3,8281009 1,541730019 111,2042612 1,637204832 3,9769557 0,14885486
+3,6666501 400367,3406 -0,16120243 -0,09210702 0 3,8278525 1,542548786 111,2131502 1,638074302 3,9766501 0,14879757
+3,6666119 400399,3408 -0,16129792 -0,092109561 0 3,8279099 1,543367551 111,2220391 1,638943771 3,9766119 0,14870208
+3,6664782 400431,341 -0,16104965 -0,092114031 0 3,8275278 1,544186316 111,2309281 1,639813239 3,9764782 0,14895035
+3,6662109 400463,3412 -0,16103055 -0,092117853 0 3,8272414 1,54500508 111,239817 1,640682708 3,9762109 0,14896945
+3,6662872 400495,3413 -0,16089687 -0,092110209 0 3,827184 1,545823844 111,2487059 1,641552175 3,9762872 0,14910313
+3,6660771 400527,3415 -0,16108784 -0,092113383 0 3,8271649 1,546642607 111,2575949 1,642421641 3,9760771 0,14891216
+3,6657524 400559,3417 -0,16112603 -0,092115298 0 3,8268785 1,547461369 111,2664838 1,643291107 3,9757524 0,14887397
+3,665848 400591,3419 -0,16101146 -0,092116579 0 3,8268595 1,548280134 111,2753727 1,644160576 3,975848 0,14898854
+3,6656189 400623,342 -0,16110694 -0,092124216 0 3,826726 1,549098896 111,2842617 1,645030041 3,9756189 0,14889306
+3,6655805 400655,3422 -0,16118333 -0,092107654 0 3,8267639 1,549917662 111,2931506 1,645899511 3,9755805 0,14881667
+3,6653323 400687,3424 -0,16106874 -0,092108302 0 3,826401 1,550736428 111,3020396 1,64676898 3,9753323 0,14893126
+3,665256 400719,3426 -0,16106874 -0,09210702 0 3,8263247 1,551555191 111,3109285 1,647638447 3,975256 0,14893126
+3,6650269 400751,3427 -0,16112603 -0,092110209 0 3,826153 1,552373958 111,3198174 1,648507918 3,9750269 0,14887397
+3,6649694 400783,3429 -0,16099235 -0,092114665 0 3,8259618 1,553192721 111,3287064 1,649377385 3,9749694 0,14900765
+3,6648932 400815,3431 -0,16116422 -0,092117213 0 3,8260574 1,554011483 111,3375953 1,65024685 3,9748932 0,14883578
+3,6647022 400847,3433 -0,16108784 -0,092112117 0 3,8257899 1,554830245 111,3464842 1,651116316 3,9747022 0,14891216
+3,6645875 400879,3435 -0,16106874 -0,092115939 0 3,8256562 1,555649006 111,3553732 1,65198578 3,9745875 0,14893126
+3,6643012 400911,3436 -0,16099235 -0,092117213 0 3,8252935 1,556467768 111,3642621 1,652855245 3,9743012 0,14900765
+3,6643775 400943,3438 -0,16118333 -0,092105746 0 3,8255608 1,557286531 111,3731511 1,653724712 3,9743775 0,14881667
+3,6640718 400975,344 -0,16104965 -0,092107654 0 3,8251214 1,558105293 111,38204 1,654594178 3,9740718 0,14895035
+3,6639574 401007,3442 -0,16106874 -0,092114031 0 3,825026 1,558924053 111,3909289 1,655463641 3,9739574 0,14893126
+3,6638427 401039,3443 -0,16114514 -0,092103831 0 3,8249879 1,559742815 111,3998179 1,656333106 3,9738427 0,14885486
+3,6637282 401071,3445 -0,16110694 -0,092111476 0 3,8248353 1,560561578 111,4087068 1,657202573 3,9737282 0,14889306
+3,6636899 401103,3447 -0,16108784 -0,092115298 0 3,8247776 1,561380339 111,4175957 1,658072038 3,9736899 0,14891216
+3,6634417 401135,3449 -0,16106874 -0,092117853 0 3,8245103 1,562199104 111,4264847 1,658941507 3,9734417 0,14893126
+3,663327 401167,345 -0,16114514 -0,092109561 0 3,8244722 1,563017867 111,4353736 1,659810973 3,973327 0,14885486
+3,6631744 401199,3452 -0,16103055 -0,092115298 0 3,8242049 1,563836635 111,4442626 1,660680445 3,9731744 0,14896945
+3,6630597 401231,3454 -0,16097325 -0,092112117 0 3,824033 1,564655402 111,4531515 1,661549916 3,9730597 0,14902675
+3,6630025 401263,3456 -0,16103055 -0,092108928 0 3,824033 1,565474168 111,4620404 1,662419386 3,9730025 0,14896945
+3,6627541 401295,3457 -0,16112603 -0,092112757 0 3,8238802 1,566292935 111,4709294 1,663288857 3,9727541 0,14887397
+3,6624296 401327,3459 -0,16112603 -0,092106387 0 3,8235557 1,567111701 111,4798183 1,664158326 3,9724296 0,14887397
+3,6625059 401359,3461 -0,16118333 -0,092115298 0 3,8236892 1,567930466 111,4887072 1,665027796 3,9725059 0,14881667
+3,6622577 401391,3463 -0,16099235 -0,092107654 0 3,8232501 1,568749232 111,4975962 1,665897264 3,9722577 0,14900765
+3,6622195 401423,3464 -0,16085868 -0,092110842 0 3,8230782 1,569567998 111,5064851 1,666766735 3,9722195 0,14914132
+3,6620858 401455,3466 -0,16091597 -0,092115298 0 3,8230019 1,570386765 111,5153741 1,667636206 3,9720858 0,14908403
+3,6620476 401487,3468 -0,16097325 -0,092117213 0 3,8230209 1,571205531 111,524263 1,668505676 3,9720476 0,14902675
+3,6617038 401519,347 -0,16093506 -0,092108928 0 3,822639 1,572024295 111,5331519 1,669375143 3,9717038 0,14906494
+3,6616273 401551,3471 -0,16106874 -0,092108928 0 3,822696 1,572843057 111,5420409 1,670244608 3,9716273 0,14893126
+3,6614938 401583,3473 -0,16087776 -0,092114031 0 3,8223715 1,573661819 111,5509298 1,671114074 3,9714938 0,14912224
+3,6614938 401615,3475 -0,16097325 -0,092112117 0 3,8224671 1,574480576 111,5598188 1,671983535 3,9714938 0,14902675
+3,6612263 401647,3477 -0,16095416 -0,092107654 0 3,8221805 1,575299341 111,5687077 1,672853002 3,9712263 0,14904584
+3,6609972 401679,3479 -0,16097325 -0,092114031 0 3,8219705 1,576118102 111,5775966 1,673722467 3,9709972 0,14902675
+3,6611881 401711,348 -0,16087776 -0,092112117 0 3,8220658 1,576936864 111,5864856 1,674591933 3,9711881 0,14912224
+3,6607106 401743,3482 -0,16085868 -0,092112757 0 3,8215692 1,577755626 111,5953745 1,675461399 3,9707106 0,14914132
+3,6606152 401775,3484 -0,16091597 -0,092112117 0 3,8215313 1,578574388 111,6042634 1,676330864 3,9706152 0,14908403
+3,6605196 401807,3486 -0,16087776 -0,092112117 0 3,8213973 1,579393152 111,6131524 1,677200331 3,9705196 0,14912224
+3,6603096 401839,3487 -0,16083957 -0,09210702 0 3,8211491 1,580211915 111,6220413 1,678069799 3,9703096 0,14916043
+3,6601186 401871,3489 -0,16093506 -0,092108928 0 3,8210537 1,581030678 111,6309303 1,678939264 3,9701186 0,14906494
+3,660176 401903,3491 -0,16093506 -0,092109561 0 3,8211112 1,58184944 111,6398192 1,679808731 3,970176 0,14906494
+3,6598704 401935,3493 -0,16095416 -0,092111476 0 3,8208246 1,582668209 111,6487081 1,680678203 3,9698704 0,14904584
+3,6597557 401967,3494 -0,16093506 -0,092112117 0 3,8206909 1,583486977 111,6575971 1,681547675 3,9697557 0,14906494
+3,6596413 401999,3496 -0,16085868 -0,092105106 0 3,8204999 1,584305742 111,666486 1,682417144 3,9696413 0,14914132
+3,6595266 402031,3498 -0,16085868 -0,092112117 0 3,8203852 1,58512451 111,6753749 1,683286615 3,9695266 0,14914132
+3,6592593 402063,35 -0,16082048 -0,092114665 0 3,8200798 1,58594328 111,6842639 1,68415609 3,9692593 0,14917952
+3,6591065 402095,3501 -0,16087776 -0,092112117 0 3,8199842 1,58676205 111,6931528 1,685025564 3,9691065 0,14912224
+3,6591256 402127,3503 -0,16074409 -0,092107654 0 3,8198698 1,587580823 111,7020418 1,685895041 3,9691256 0,14925591
+3,6588583 402159,3505 -0,16078228 -0,092113383 0 3,8196406 1,588399596 111,7109307 1,686764518 3,9688583 0,14921772
+3,6588008 402191,3507 -0,16085868 -0,092113383 0 3,8196595 1,589218368 111,7198196 1,687633994 3,9688008 0,14914132
+3,6586099 402223,3508 -0,16095416 -0,092110842 0 3,8195641 1,590037141 111,7287086 1,688503472 3,9686099 0,14904584
+3,658648 402255,351 -0,16078228 -0,092108928 0 3,8194304 1,590855916 111,7375975 1,689372951 3,968648 0,14921772
+3,6584954 402287,3512 -0,16085868 -0,092111476 0 3,8193541 1,59167469 111,7464864 1,690242429 3,9684954 0,14914132
+3,6583235 402319,3514 -0,16083957 -0,092108928 0 3,8191631 1,592493463 111,7553754 1,691111907 3,9683235 0,14916043
+3,6581135 402351,3516 -0,16097325 -0,09210702 0 3,8190868 1,593312237 111,7642643 1,691981385 3,9681135 0,14902675
+3,6579607 402383,3517 -0,16106874 -0,092112117 0 3,8190293 1,594131011 111,7731533 1,692850863 3,9679607 0,14893126
+3,6577697 402415,3519 -0,16074409 -0,092112117 0 3,8185139 1,594949785 111,7820422 1,693720341 3,9677697 0,14925591
+3,6577888 402447,3521 -0,16085868 -0,092105746 0 3,8186474 1,595768551 111,7909311 1,694589811 3,9677888 0,14914132
+3,657655 402479,3523 -0,16070589 -0,092107654 0 3,8183608 1,596587315 111,7998201 1,695459278 3,967655 0,14929411
+3,6573493 402511,3524 -0,16082048 -0,092114031 0 3,8181698 1,59740608 111,808709 1,696328748 3,9673493 0,14917952
+3,6572349 402543,3526 -0,16068679 -0,092113383 0 3,8179216 1,598224847 111,8175979 1,697198218 3,9672349 0,14931321
+3,6571012 402575,3528 -0,16083957 -0,092115939 0 3,8179407 1,599043615 111,8264869 1,69806769 3,9671012 0,14916043
+3,6570439 402607,353 -0,16074409 -0,092108302 0 3,8177881 1,599862382 111,8353758 1,69893716 3,9670439 0,14925591
+3,6568911 402639,3531 -0,16070589 -0,092108302 0 3,8175969 1,600681145 111,8442648 1,699806628 3,9668911 0,14929411
+3,6567001 402671,3533 -0,160725 -0,092113383 0 3,8174253 1,601499905 111,8531537 1,700676091 3,9667001 0,149275
+3,6565473 402703,3535 -0,1606677 -0,092114031 0 3,817215 1,60231866 111,8620426 1,701545549 3,9665473 0,1493323
+3,6565282 402735,3537 -0,1606677 -0,092105106 0 3,8171959 1,603137419 111,8709316 1,702415011 3,9665282 0,1493323
+3,6563945 402767,3538 -0,16070589 -0,092108928 0 3,8171003 1,603956179 111,8798205 1,703284475 3,9663945 0,14929411
+3,6561654 402799,354 -0,16080138 -0,092112757 0 3,8169668 1,604774941 111,8887094 1,70415394 3,9661654 0,14919862
+3,6561081 402831,3542 -0,16068679 -0,09210702 0 3,8167949 1,605593702 111,8975984 1,705023404 3,9661081 0,14931321
+3,6560509 402863,3544 -0,16082048 -0,092108928 0 3,8168714 1,606412467 111,9064873 1,705892873 3,9660509 0,14917952
+3,6557643 402895,3545 -0,16070589 -0,092111476 0 3,8164701 1,607231234 111,9153763 1,706762344 3,9657643 0,14929411
+3,6554971 402927,3547 -0,16057222 -0,092110842 0 3,8160694 1,608050002 111,9242652 1,707631816 3,9654971 0,14942778
+3,6554971 402959,3549 -0,1605913 -0,092108302 0 3,8160884 1,60886877 111,9331541 1,708501288 3,9654971 0,1494087
+3,6552677 402991,3551 -0,16078228 -0,092109561 0 3,8160501 1,609687537 111,9420431 1,709370758 3,9652677 0,14921772
+3,6551914 403023,3553 -0,16074409 -0,092116579 0 3,8159356 1,610506301 111,950932 1,710240226 3,9651914 0,14925591
+3,6550577 403055,3554 -0,16076319 -0,092115298 0 3,8158209 1,611325063 111,959821 1,711109692 3,9650577 0,14923681
+3,6549814 403087,3556 -0,16070589 -0,092107654 0 3,8156872 1,612143824 111,9687099 1,711979157 3,9649814 0,14929411
+3,6547332 403119,3558 -0,16068679 -0,092114665 0 3,8154199 1,612962587 111,9775988 1,712848623 3,9647332 0,14931321
+3,6545994 403151,356 -0,16078228 -0,092106387 0 3,8153818 1,613781348 111,9864878 1,713718087 3,9645994 0,14921772
+3,6545613 403183,3561 -0,1606677 -0,092117853 0 3,8152289 1,614600109 111,9953767 1,714587552 3,9645613 0,1493323
+3,6543703 403215,3563 -0,16070589 -0,092114665 0 3,8150761 1,615418873 112,0042656 1,71545702 3,9643703 0,14929411
+3,6541793 403247,3565 -0,1605913 -0,092105746 0 3,8147707 1,616237639 112,0131546 1,716326489 3,9641793 0,1494087
+3,6541793 403279,3567 -0,16078228 -0,092115298 0 3,8149617 1,617056407 112,0220435 1,717195962 3,9641793 0,14921772
+3,6538928 403311,3568 -0,16068679 -0,092108928 0 3,8145795 1,617875177 112,0309325 1,718065435 3,9638928 0,14931321
+3,6536636 403343,357 -0,1606486 -0,092106387 0 3,8143122 1,618693945 112,0398214 1,718934907 3,9636636 0,1493514
+3,6536446 403375,3572 -0,16076319 -0,092111476 0 3,8144078 1,619512718 112,0487103 1,719804385 3,9636446 0,14923681
+3,653358 403407,3574 -0,16070589 -0,092107654 0 3,8140638 1,620331489 112,0575993 1,720673859 3,963358 0,14929411
+3,6532626 403439,3575 -0,160725 -0,092109561 0 3,8139877 1,62115026 112,0664882 1,721543334 3,9632626 0,149275
+3,6531479 403471,3577 -0,1606677 -0,092118487 0 3,8138156 1,62196903 112,0753771 1,722412809 3,9631479 0,1493323
+3,6528616 403503,3579 -0,1606677 -0,092110209 0 3,8135293 1,6227878 112,0842661 1,723282283 3,9628616 0,1493323
+3,6528997 403535,3581 -0,16053402 -0,092117853 0 3,8134336 1,623606569 112,093155 1,724151756 3,9628997 0,14946598
+3,6528041 403567,3582 -0,16047673 -0,092108928 0 3,8132808 1,624425337 112,102044 1,725021228 3,9628041 0,14952327
+3,6524794 403599,3584 -0,16061041 -0,092114665 0 3,8130898 1,625244108 112,1109329 1,725890703 3,9624794 0,14938959
+3,6524603 403631,3586 -0,16057222 -0,092107654 0 3,8130326 1,626062879 112,1198218 1,726760178 3,9624603 0,14942778
+3,6523268 403663,3588 -0,1606486 -0,092112117 0 3,8129754 1,626881645 112,1287108 1,727629648 3,9623268 0,1493514
+3,6522121 403695,359 -0,1606677 -0,092104472 0 3,8128798 1,627700413 112,1375997 1,72849912 3,9622121 0,1493323
+3,6520593 403727,3591 -0,16047673 -0,092108302 0 3,812536 1,628519183 112,1464886 1,729368593 3,9620593 0,14952327
+3,6517539 403759,3593 -0,16049582 -0,092115939 0 3,8122497 1,629337952 112,1553776 1,730238066 3,9617539 0,14950418
+3,6516201 403791,3595 -0,16076319 -0,092107654 0 3,8123834 1,630156726 112,1642665 1,731107545 3,9616201 0,14923681
+3,651582 403823,3597 -0,160725 -0,092105746 0 3,8123069 1,6309755 112,1731555 1,731977023 3,961582 0,149275
+3,6514482 403855,3598 -0,16070589 -0,092109561 0 3,8121541 1,631794274 112,1820444 1,732846501 3,9614482 0,14929411
+3,6514101 403887,36 -0,16076319 -0,092112757 0 3,8121734 1,632613054 112,1909333 1,733715985 3,9614101 0,14923681
+3,6511426 403919,3602 -0,16070589 -0,092111476 0 3,8118484 1,633431833 112,1998223 1,734585469 3,9611426 0,14929411
+3,6510663 403951,3604 -0,16062951 -0,092121668 0 3,8116958 1,634250611 112,2087112 1,735454952 3,9610663 0,14937049
+3,6508181 403983,3605 -0,160725 -0,09210702 0 3,811543 1,635069389 112,2176001 1,736324435 3,9608181 0,149275
+3,6508372 404015,3607 -0,16049582 -0,092108928 0 3,8113329 1,635888168 112,2264891 1,737193918 3,9608372 0,14950418
+3,6505315 404047,3609 -0,1606677 -0,092115298 0 3,8111992 1,636706946 112,235378 1,7380634 3,9605315 0,1493323
+3,6505697 404079,3611 -0,16070589 -0,092110209 0 3,8112755 1,637525722 112,244267 1,738932881 3,9605697 0,14929411
+3,6503215 404111,3612 -0,16055311 -0,092117853 0 3,8108747 1,6383445 112,2531559 1,739802364 3,9603215 0,14944689
+3,6502643 404143,3614 -0,16049582 -0,092117213 0 3,81076 1,639163278 112,2620448 1,740671846 3,9602643 0,14950418
+3,6499777 404175,3616 -0,160725 -0,092116579 0 3,8107028 1,639982056 112,2709338 1,741541328 3,9599777 0,149275
+3,6500349 404207,3618 -0,1605913 -0,092108302 0 3,8106263 1,640800829 112,2798227 1,742410806 3,9600349 0,1494087
+3,6496913 404239,3619 -0,1606486 -0,092117853 0 3,8103399 1,641619601 112,2887117 1,743280282 3,9596913 0,1493514
+3,6497295 404271,3621 -0,16051492 -0,092117853 0 3,8102443 1,642438368 112,2976006 1,744149753 3,9597295 0,14948508
+3,6496339 404303,3623 -0,16068679 -0,092108928 0 3,8103206 1,643257136 112,3064895 1,745019224 3,9596339 0,14931321
+3,6493666 404335,3625 -0,16045763 -0,092105106 0 3,8098242 1,644075903 112,3153785 1,745888695 3,9593666 0,14954237
+3,6491375 404367,3627 -0,16062951 -0,092114031 0 3,809767 1,644894676 112,3242674 1,746758173 3,9591375 0,14937049
+3,64908 404399,3628 -0,1605913 -0,09211912 0 3,8096714 1,645713448 112,3331563 1,747627648 3,95908 0,1494087
+3,6489081 404431,363 -0,16038124 -0,092110209 0 3,8092895 1,646532216 112,3420453 1,74849712 3,9589081 0,14961876
+3,64887 404463,3632 -0,16043854 -0,092107654 0 3,8093085 1,647350982 112,3509342 1,74936659 3,95887 0,14956146
+3,648679 404495,3634 -0,160725 -0,092115298 0 3,8094039 1,648169747 112,3598232 1,75023606 3,958679 0,149275
+3,6484499 404527,3635 -0,16061041 -0,092107654 0 3,8090603 1,648988513 112,3687121 1,751105529 3,9584499 0,14938959
+3,6483161 404559,3637 -0,16062951 -0,092112757 0 3,8089457 1,649807279 112,377601 1,751974998 3,9583161 0,14937049
+3,648278 404591,3639 -0,16047673 -0,09210065 0 3,8087547 1,650626046 112,38649 1,752844469 3,958278 0,14952327
+3,6482208 404623,3641 -0,16055311 -0,092118487 0 3,808774 1,651444813 112,3953789 1,75371394 3,9582208 0,14944689
+3,6479723 404655,3642 -0,16049582 -0,092114665 0 3,8084681 1,652263579 112,4042678 1,75458341 3,9579723 0,14950418
+3,6477432 404687,3644 -0,16049582 -0,092103831 0 3,808239 1,653082346 112,4131568 1,755452881 3,9577432 0,14950418
+3,6475904 404719,3646 -0,16038124 -0,092110209 0 3,8079717 1,653901111 112,4220457 1,75632235 3,9575904 0,14961876
+3,6473804 404751,3648 -0,16040033 -0,092117213 0 3,8077807 1,654719878 112,4309347 1,75719182 3,9573804 0,14959967
+3,6473041 404783,3649 -0,1605913 -0,092112757 0 3,8078954 1,655538645 112,4398236 1,758061291 3,9573041 0,1494087
+3,6473041 404815,3651 -0,16055311 -0,092112757 0 3,8078573 1,656357409 112,4487125 1,758930759 3,9573041 0,14944689
+3,6471322 404847,3653 -0,16049582 -0,092112757 0 3,8076279 1,657176175 112,4576015 1,759800228 3,9571322 0,14950418
+3,646884 404879,3655 -0,16057222 -0,092110842 0 3,8074563 1,657994941 112,4664904 1,760669699 3,956884 0,14942778
+3,6467502 404911,3656 -0,16061041 -0,092112757 0 3,8073606 1,658813708 112,4753793 1,761539169 3,9567502 0,14938959
+3,646693 404943,3658 -0,16055311 -0,092106387 0 3,8072462 1,659632477 112,4842683 1,762408643 3,956693 0,14944689
+3,6465402 404975,366 -0,16040033 -0,09210702 0 3,8069406 1,660451247 112,4931572 1,763278116 3,9565402 0,14959967
+3,6464064 405007,3662 -0,16068679 -0,092110842 0 3,8070931 1,661270012 112,5020462 1,764147585 3,9564064 0,14931321
+3,6461773 405039,3664 -0,16049582 -0,092110842 0 3,806673 1,662088778 112,5109351 1,765017054 3,9561773 0,14950418
+3,6459672 405071,3665 -0,16047673 -0,092115939 0 3,8064439 1,662907545 112,519824 1,765886525 3,9559672 0,14952327
+3,6457379 405103,3667 -0,1605913 -0,092117213 0 3,8063293 1,663726311 112,528713 1,766755995 3,9557379 0,1494087
+3,6458335 405135,3669 -0,16062951 -0,092111476 0 3,806463 1,664545077 112,5376019 1,767625465 3,9558335 0,14937049
+3,6455278 405167,3671 -0,1605913 -0,092113383 0 3,8061192 1,665363845 112,5464908 1,768494937 3,9555278 0,1494087
+3,6454897 405199,3672 -0,16049582 -0,092112757 0 3,8059855 1,666182616 112,5553798 1,769364412 3,9554897 0,14950418
+3,6452606 405231,3674 -0,16057222 -0,092118487 0 3,8058329 1,667001385 112,5642687 1,770233885 3,9552606 0,14942778
+3,6451077 405263,3676 -0,16068679 -0,092104472 0 3,8057945 1,667820154 112,5731577 1,771103358 3,9551077 0,14931321
+3,6450887 405295,3678 -0,16041943 -0,092108302 0 3,8055081 1,668638919 112,5820466 1,771972827 3,9550887 0,14958057
+3,6449549 405327,3679 -0,16041943 -0,092105106 0 3,8053744 1,669457687 112,5909355 1,772842298 3,9549549 0,14958057
+3,6446686 405359,3681 -0,16051492 -0,092108302 0 3,8051834 1,670276451 112,5998245 1,773711767 3,9546686 0,14948508
+3,6445348 405391,3683 -0,1605913 -0,092114031 0 3,8051262 1,671095219 112,6087134 1,774581238 3,9545348 0,1494087
+3,6444967 405423,3685 -0,16057222 -0,092112757 0 3,805069 1,671913988 112,6176024 1,775450711 3,9544967 0,14942778
+3,6442101 405455,3686 -0,16053402 -0,09210702 0 3,8047442 1,672732754 112,6264913 1,776320181 3,9542101 0,14946598
+3,6442866 405487,3688 -0,16040033 -0,092105746 0 3,804687 1,673551521 112,6353802 1,777189652 3,9542866 0,14959967
+3,6440573 405519,369 -0,16038124 -0,09210702 0 3,8044386 1,674370287 112,6442692 1,778059122 3,9540573 0,14961876
+3,6438091 405551,3692 -0,16043854 -0,092115298 0 3,8042476 1,675189054 112,6531581 1,778928592 3,9538091 0,14956146
+3,6436944 405583,3693 -0,16053402 -0,092108928 0 3,8042283 1,676007818 112,662047 1,77979806 3,9536944 0,14946598
+3,643599 405615,3695 -0,16047673 -0,092112117 0 3,8040757 1,676826585 112,670936 1,780667531 3,953599 0,14952327
+3,6433699 405647,3697 -0,16041943 -0,092114031 0 3,8037894 1,677645351 112,6798249 1,781537001 3,9533699 0,14958057
+3,6431024 405679,3699 -0,16047673 -0,092110842 0 3,8035791 1,678464114 112,6887139 1,782406467 3,9531024 0,14952327
+3,6431408 405711,37 -0,16030484 -0,09210702 0 3,8034456 1,679282876 112,6976028 1,783275933 3,9531408 0,14969516
+3,6428542 405743,3702 -0,16047673 -0,092110842 0 3,8033309 1,680101639 112,7064917 1,784145399 3,9528542 0,14952327
+3,6428542 405775,3704 -0,16038124 -0,092110209 0 3,8032355 1,6809204 112,7153807 1,785014863 3,9528542 0,14961876
+3,6426823 405807,3706 -0,16036214 -0,092108928 0 3,8030446 1,681739164 112,7242696 1,785884332 3,9526823 0,14963786
+3,6425295 405839,3708 -0,16049582 -0,092111476 0 3,8030252 1,682557927 112,7331585 1,786753798 3,9525295 0,14950418
+3,6423576 405871,3709 -0,16047673 -0,092109561 0 3,8028343 1,683376688 112,7420475 1,787623263 3,9523576 0,14952327
+3,6421094 405903,3711 -0,16045763 -0,092109561 0 3,802567 1,68419545 112,7509364 1,788492728 3,9521094 0,14954237
+3,6420522 405935,3713 -0,16053402 -0,092106387 0 3,8025861 1,685014215 112,7598254 1,789362197 3,9520522 0,14946598
+3,6418993 405967,3715 -0,16043854 -0,092111476 0 3,8023379 1,685832979 112,7687143 1,790231664 3,9518993 0,14956146
+3,6417084 405999,3716 -0,16034305 -0,092109561 0 3,8020515 1,686651742 112,7776032 1,791101131 3,9517084 0,14965695
+3,6417084 406031,3718 -0,16036214 -0,092104472 0 3,8020706 1,687470503 112,7864922 1,791970595 3,9517084 0,14963786
+3,6415746 406063,372 -0,16043854 -0,092112117 0 3,8020132 1,688289261 112,7953811 1,792840057 3,9515746 0,14956146
+3,6414602 406095,3722 -0,16034305 -0,092114665 0 3,8018031 1,689108018 112,80427 1,793709517 3,9514602 0,14965695
+3,6411736 406127,3723 -0,16040033 -0,09211912 0 3,801574 1,689926776 112,813159 1,794578979 3,9511736 0,14959967
+3,6411355 406159,3725 -0,16038124 -0,092108928 0 3,8015168 1,690745538 112,8220479 1,795448443 3,9511355 0,14961876
+3,6408107 406191,3727 -0,16057222 -0,092114031 0 3,801383 1,691564301 112,8309369 1,79631791 3,9508107 0,14942778
+3,640677 406223,3729 -0,16047673 -0,092108302 0 3,8011537 1,692383065 112,8398258 1,797187378 3,950677 0,14952327
+3,6406007 406255,373 -0,16040033 -0,09210065 0 3,8010011 1,693201827 112,8487147 1,798056843 3,9506007 0,14959967
+3,640486 406287,3732 -0,16040033 -0,092104472 0 3,8008864 1,694020584 112,8576037 1,798926303 3,950486 0,14959967
+3,6402187 406319,3734 -0,16030484 -0,092105746 0 3,8005235 1,69483934 112,8664926 1,799795763 3,9502187 0,14969516
+3,6401615 406351,3736 -0,16036214 -0,092112117 0 3,8005238 1,695658095 112,8753815 1,800665221 3,9501615 0,14963786
+3,6399512 406383,3737 -0,16026665 -0,092112117 0 3,8002179 1,696476853 112,8842705 1,801534682 3,9499512 0,14973335
+3,6397603 406415,3739 -0,16041943 -0,092114665 0 3,8001797 1,697295609 112,8931594 1,802404142 3,9497603 0,14958057
+3,6396267 406447,3741 -0,16051492 -0,092110842 0 3,8001416 1,698114367 112,9020484 1,803273603 3,9496267 0,14948508
+3,639493 406479,3743 -0,16030484 -0,092111476 0 3,7997978 1,698933127 112,9109373 1,804143067 3,949493 0,14969516
+3,6393211 406511,3745 -0,16026665 -0,092114665 0 3,7995877 1,699751889 112,9198262 1,805012531 3,9493211 0,14973335
+3,6391873 406543,3746 -0,16040033 -0,092115298 0 3,7995877 1,700570649 112,9287152 1,805881995 3,9491873 0,14959967
+3,6389582 406575,3748 -0,16038124 -0,092107654 0 3,7993395 1,701389408 112,9376041 1,806751457 3,9489582 0,14961876
+3,6389964 406607,375 -0,16038124 -0,092114031 0 3,7993777 1,702208165 112,9464931 1,807620917 3,9489964 0,14961876
+3,6388054 406639,3752 -0,16028576 -0,092117853 0 3,7990911 1,703026921 112,955382 1,808490377 3,9488054 0,14971424
+3,6386719 406671,3753 -0,16041943 -0,092110209 0 3,7990913 1,703845677 112,9642709 1,809359836 3,9486719 0,14958057
+3,6385763 406703,3755 -0,16019027 -0,092108928 0 3,7987666 1,70466444 112,9731599 1,810229302 3,9485763 0,14980973
+3,638309 406735,3757 -0,16032395 -0,092113383 0 3,7986329 1,705483204 112,9820488 1,81109877 3,948309 0,14967605
+3,6381943 406767,3759 -0,16034305 -0,092114031 0 3,7985373 1,706301964 112,9909377 1,811968233 3,9481943 0,14965695
+3,6379271 406799,376 -0,16030484 -0,092118487 0 3,7982318 1,707120725 112,9998267 1,812837698 3,9479271 0,14969516
+3,6379652 406831,3762 -0,16019027 -0,092109561 0 3,7981555 1,707939486 113,0087156 1,813707162 3,9479652 0,14980973
+3,6376786 406863,3764 -0,16020936 -0,092114031 0 3,797888 1,708758244 113,0176046 1,814576623 3,9476786 0,14979064
+3,6374495 406895,3766 -0,16024756 -0,092105746 0 3,7976971 1,709577003 113,0264935 1,815446086 3,9474495 0,14975244
+3,6375833 406927,3767 -0,16020936 -0,092112117 0 3,7977927 1,710395766 113,0353824 1,816315552 3,9475833 0,14979064
+3,6372776 406959,3769 -0,16028576 -0,092110842 0 3,7975633 1,711214532 113,0442714 1,817185022 3,9472776 0,14971424
+3,6371439 406991,3771 -0,16036214 -0,092111476 0 3,7975061 1,712033299 113,0531603 1,818054493 3,9471439 0,14963786
+3,6370103 407023,3773 -0,16011387 -0,092107654 0 3,7971241 1,712852065 113,0620492 1,818923963 3,9470103 0,14988613
+3,6368957 407055,3774 -0,16024756 -0,092113383 0 3,7971432 1,71367083 113,0709382 1,819793431 3,9468957 0,14975244
+3,6368003 407087,3776 -0,16036214 -0,092108302 0 3,7971625 1,714489592 113,0798271 1,820662898 3,9468003 0,14963786
+3,6364374 407119,3778 -0,16032395 -0,092114031 0 3,7967613 1,715308357 113,0887161 1,821532366 3,9464374 0,14967605
+3,6364756 407151,378 -0,16020936 -0,092107654 0 3,796685 1,716127122 113,097605 1,822401835 3,9464756 0,14979064
+3,6362274 407183,3782 -0,16020936 -0,092107654 0 3,7964368 1,71694589 113,1064939 1,823271307 3,9462274 0,14979064
+3,6361699 407215,3783 -0,16015208 -0,092110209 0 3,7963219 1,717764658 113,1153829 1,824140778 3,9461699 0,14984792
+3,6358645 407247,3785 -0,16015208 -0,092111476 0 3,7960167 1,718583427 113,1242718 1,825010251 3,9458645 0,14984792
+3,6358454 407279,3787 -0,16026665 -0,092108302 0 3,7961121 1,719402193 113,1331607 1,825879722 3,9458454 0,14973335
+3,6357307 407311,3789 -0,16020936 -0,09210702 0 3,7959402 1,720220958 113,1420497 1,82674919 3,9457307 0,14979064
+3,6355016 407343,379 -0,16038124 -0,092109561 0 3,7958829 1,721039722 113,1509386 1,827618658 3,9455016 0,14961876
+3,6353679 407375,3792 -0,16017117 -0,092112117 0 3,7955391 1,721858487 113,1598276 1,828488126 3,9453679 0,14982883
+3,6351769 407407,3794 -0,16028576 -0,092105746 0 3,7954626 1,722677252 113,1687165 1,829357595 3,9451769 0,14971424
+3,6350813 407439,3796 -0,16015208 -0,092110842 0 3,7952332 1,723496018 113,1776054 1,830227065 3,9450813 0,14984792
+3,6349096 407471,3797 -0,16026665 -0,092108302 0 3,7951763 1,724314783 113,1864944 1,831096533 3,9449096 0,14973335
+3,634814 407503,3799 -0,16013297 -0,092110842 0 3,7949469 1,72513355 113,1953833 1,831966005 3,944814 0,14986703
+3,6345658 407535,3801 -0,16017117 -0,092105106 0 3,7947371 1,725952319 113,2042722 1,832835477 3,9445658 0,14982883
+3,6344512 407567,3803 -0,16020936 -0,092110209 0 3,7946606 1,726771086 113,2131612 1,833704948 3,9444512 0,14979064
+3,634203 407599,3804 -0,16020936 -0,092107654 0 3,7944124 1,727589854 113,2220501 1,834574421 3,944203 0,14979064
+3,6341839 407631,3806 -0,16024756 -0,092110842 0 3,7944314 1,728408622 113,2309391 1,835443891 3,9441839 0,14975244
+3,6339929 407663,3808 -0,16024756 -0,092114665 0 3,7942405 1,72922739 113,239828 1,836313364 3,9439929 0,14975244
+3,6338592 407695,381 -0,16017117 -0,092115939 0 3,7940304 1,730046156 113,2487169 1,837182834 3,9438592 0,14982883
+3,6336682 407727,3811 -0,16015208 -0,092111476 0 3,7938204 1,730864921 113,2576059 1,838052303 3,9436682 0,14984792
+3,6335726 407759,3813 -0,16007568 -0,092107654 0 3,7936482 1,731683687 113,2664948 1,838921772 3,9435726 0,14992432
+3,6333625 407791,3815 -0,16019027 -0,092109561 0 3,7935529 1,732502454 113,2753838 1,839791243 3,9433625 0,14980973
+3,6332672 407823,3817 -0,16003749 -0,092113383 0 3,7933047 1,733321221 113,2842727 1,840660713 3,9432672 0,14996251
+3,633038 407855,3819 -0,16003749 -0,092107654 0 3,7930756 1,734139988 113,2931616 1,841530185 3,943038 0,14996251
+3,6328278 407887,382 -0,16020936 -0,092107654 0 3,7930372 1,734958753 113,3020506 1,842399654 3,9428278 0,14979064
+3,6328278 407919,3822 -0,16011387 -0,092108302 0 3,7929416 1,735777518 113,3109395 1,843269122 3,9428278 0,14988613
+3,6324649 407951,3824 -0,16007568 -0,092110842 0 3,7925406 1,736596285 113,3198284 1,844138592 3,9424649 0,14992432
+3,6325414 407983,3826 -0,16007568 -0,09210702 0 3,7926171 1,737415054 113,3287174 1,845008066 3,9425414 0,14992432
+3,6323314 408015,3827 -0,16009478 -0,092112757 0 3,7924261 1,738233825 113,3376063 1,84587754 3,9423314 0,14990522
+3,6320639 408047,3829 -0,16019027 -0,092105106 0 3,7922542 1,739052595 113,3464953 1,846747015 3,9420639 0,14980973
+3,6319494 408079,3831 -0,16015208 -0,092114665 0 3,7921014 1,739871363 113,3553842 1,847616487 3,9419494 0,14984792
+3,631892 408111,3833 -0,16013297 -0,092110842 0 3,7920249 1,74069013 113,3642731 1,848485958 3,941892 0,14986703
+3,6317201 408143,3834 -0,16001838 -0,092105106 0 3,7917385 1,741508895 113,3731621 1,849355426 3,9417201 0,14998162
+3,6314909 408175,3836 -0,16017117 -0,092107654 0 3,7916622 1,742327661 113,382051 1,850224896 3,9414909 0,14982883
+3,6312809 408207,3838 -0,16015208 -0,092109561 0 3,7914329 1,74314643 113,3909399 1,851094369 3,9412809 0,14984792
+3,6312809 408239,384 -0,1599993 -0,092107654 0 3,7912803 1,743965199 113,3998289 1,851963842 3,9412809 0,1500007
+3,6310136 408271,3841 -0,16001838 -0,092113383 0 3,7910321 1,744783968 113,4087178 1,852833315 3,9410136 0,14998162
+3,6310136 408303,3843 -0,159942 -0,092105746 0 3,7909555 1,745602737 113,4176068 1,853702788 3,9410136 0,150058
+3,6307652 408335,3845 -0,15986562 -0,092113383 0 3,7906308 1,746421506 113,4264957 1,854572261 3,9407652 0,15013438
+3,6305361 408367,3847 -0,16003749 -0,092105746 0 3,7905736 1,747240273 113,4353846 1,855441732 3,9405361 0,14996251
+3,6303833 408399,3848 -0,16022846 -0,092100017 0 3,7906117 1,748059038 113,4442736 1,8563112 3,9403833 0,14977154
+3,6301923 408431,385 -0,15990381 -0,092111476 0 3,790096 1,748877799 113,4531625 1,857180665 3,9401923 0,15009619
+3,6302307 408463,3852 -0,16001838 -0,092110842 0 3,7902491 1,749696565 113,4620514 1,858050135 3,9402307 0,14998162
+3,6300778 408495,3854 -0,16011387 -0,092108302 0 3,7901917 1,750515333 113,4709404 1,858919606 3,9400778 0,14988613
+3,629734 408527,3856 -0,16003749 -0,092117213 0 3,7897716 1,751334096 113,4798293 1,859789073 3,939734 0,14996251
+3,6296003 408559,3857 -0,16005659 -0,092104472 0 3,7896569 1,752152857 113,4887183 1,860658538 3,9396003 0,14994341
+3,6294858 408591,3859 -0,15998019 -0,092114665 0 3,7894661 1,75297162 113,4976072 1,861528004 3,9394858 0,15001981
+3,6294475 408623,3861 -0,1599993 -0,092105746 0 3,7894468 1,753790383 113,5064961 1,862397471 3,9394475 0,1500007
+3,6292183 408655,3863 -0,16013297 -0,092112117 0 3,7893512 1,754609143 113,5153851 1,863266935 3,9392183 0,14986703
+3,6290464 408687,3864 -0,16005659 -0,092109561 0 3,789103 1,755427907 113,524274 1,864136402 3,9390464 0,14994341
+3,6288364 408719,3866 -0,16011387 -0,092111476 0 3,7889502 1,756246671 113,5331629 1,865005869 3,9388364 0,14988613
+3,628741 408751,3868 -0,16007568 -0,092115939 0 3,7888167 1,757065433 113,5420519 1,865875335 3,938741 0,14992432
+3,6286645 408783,387 -0,16009478 -0,092114665 0 3,7887592 1,757884194 113,5509408 1,866744799 3,9386645 0,14990522
+3,6284544 408815,3871 -0,1599229 -0,092105746 0 3,7883773 1,758702956 113,5598298 1,867614265 3,9384544 0,1500771
+3,6281679 408847,3873 -0,15988471 -0,092105106 0 3,7880526 1,759521721 113,5687187 1,868483733 3,9381679 0,15011529
+3,6280725 408879,3875 -0,15990381 -0,092114031 0 3,7879763 1,760340483 113,5776076 1,869353199 3,9380725 0,15009619
+3,6280153 408911,3877 -0,1599993 -0,092108302 0 3,7880147 1,761159242 113,5864966 1,870222662 3,9380153 0,1500007
+3,6278052 408943,3878 -0,15984651 -0,092115298 0 3,7876518 1,761978002 113,5953855 1,871092125 3,9378052 0,15015349
+3,6276906 408975,388 -0,16026665 -0,092110209 0 3,7879572 1,762796761 113,6042744 1,871961587 3,9376906 0,14973335
+3,6275377 409007,3882 -0,16015208 -0,092112757 0 3,7876897 1,76361552 113,6131634 1,87283105 3,9375377 0,14984792
+3,6273658 409039,3884 -0,15990381 -0,092101924 0 3,7872696 1,764434278 113,6220523 1,873700511 3,9373658 0,15009619
+3,6270986 409071,3885 -0,15998019 -0,092108928 0 3,7870789 1,765253036 113,6309413 1,874569972 3,9370986 0,15001981
+3,6269267 409103,3887 -0,15986562 -0,092116579 0 3,7867923 1,766071796 113,6398302 1,875439435 3,9369267 0,15013438
+3,6266975 409135,3889 -0,159942 -0,092111476 0 3,7866395 1,766890555 113,6487191 1,876308898 3,9366975 0,150058
+3,6267357 409167,3891 -0,1599229 -0,092108302 0 3,7866585 1,767709315 113,6576081 1,877178362 3,9367357 0,1500771
+3,6265256 409199,3893 -0,16001838 -0,09210702 0 3,7865441 1,768528075 113,666497 1,878047824 3,9365256 0,14998162
+3,6264491 409231,3894 -0,1599229 -0,092104472 0 3,7863719 1,769346836 113,675386 1,878917289 3,9364491 0,1500771
+3,6262391 409263,3896 -0,16015208 -0,092112757 0 3,7863913 1,770165597 113,6842749 1,879786754 3,9362391 0,14984792
+3,6260099 409295,3898 -0,16007568 -0,092110842 0 3,7860856 1,770984358 113,6931638 1,880656218 3,9360099 0,14992432
+3,6258953 409327,39 -0,16003749 -0,092116579 0 3,7859328 1,771803119 113,7020528 1,881525682 3,9358953 0,14996251
+3,6257999 409359,3901 -0,15988471 -0,092114031 0 3,7856846 1,772621879 113,7109417 1,882395146 3,9357999 0,15011529
+3,6256661 409391,3903 -0,15998019 -0,092112117 0 3,7856464 1,773440639 113,7198306 1,88326461 3,9356661 0,15001981
+3,6255133 409423,3905 -0,15984651 -0,092105746 0 3,7853599 1,774259399 113,7287196 1,884134073 3,9355133 0,15015349
+3,6253414 409455,3907 -0,16001838 -0,092112117 0 3,7853599 1,775078156 113,7376085 1,885003534 3,9353414 0,14998162
+3,6250551 409487,3908 -0,16001838 -0,092108928 0 3,7850735 1,775896916 113,7464975 1,885872997 3,9350551 0,14998162
+3,6249022 409519,391 -0,15998019 -0,092109561 0 3,7848825 1,776715674 113,7553864 1,886742457 3,9349022 0,15001981
+3,6246731 409551,3912 -0,15980832 -0,092104472 0 3,7844815 1,77753443 113,7642753 1,887611917 3,9346731 0,15019168
+3,6244822 409583,3914 -0,15990381 -0,092108928 0 3,7843859 1,778353187 113,7731643 1,888481377 3,9344822 0,15009619
+3,6245394 409615,3915 -0,15980832 -0,092110209 0 3,7843478 1,779171945 113,7820532 1,889350838 3,9345394 0,15019168
+3,6243675 409647,3917 -0,15984651 -0,092105746 0 3,784214 1,779990704 113,7909421 1,890220301 3,9343675 0,15015349
+3,624253 409679,3919 -0,16005659 -0,092110209 0 3,7843096 1,780809464 113,7998311 1,891089764 3,934253 0,14994341
+3,6239283 409711,3921 -0,15967464 -0,092110209 0 3,783603 1,78162822 113,80872 1,891959223 3,9339283 0,15032536
+3,6238327 409743,3922 -0,15984651 -0,092108302 0 3,7836792 1,782446978 113,817609 1,892828684 3,9338327 0,15015349
+3,6237946 409775,3924 -0,15978922 -0,092106387 0 3,7835839 1,783265737 113,8264979 1,893698147 3,9337946 0,15021078
+3,6236036 409807,3926 -0,15975103 -0,092108928 0 3,7833545 1,784084498 113,8353868 1,894567612 3,9336036 0,15024897
+3,6234698 409839,3928 -0,15980832 -0,092113383 0 3,7832782 1,784903258 113,8442758 1,895437075 3,9334698 0,15019168
+3,6232979 409871,393 -0,15986562 -0,092109561 0 3,7831635 1,785722018 113,8531647 1,896306538 3,9332979 0,15013438
+3,6231835 409903,3931 -0,15980832 -0,092110842 0 3,7829919 1,786540777 113,8620536 1,897176001 3,9331835 0,15019168
+3,6230688 409935,3933 -0,15986562 -0,092100017 0 3,7829344 1,787359538 113,8709426 1,898045465 3,9330688 0,15013438
+3,6227634 409967,3935 -0,15986562 -0,092114665 0 3,782629 1,7881783 113,8798315 1,89891493 3,9327634 0,15013438
+3,6225915 409999,3937 -0,15978922 -0,092109561 0 3,7823808 1,788997062 113,8887205 1,899784396 3,9325915 0,15021078
+3,6224959 410031,3938 -0,15980832 -0,092112757 0 3,7823043 1,789815827 113,8976094 1,900653865 3,9324959 0,15019168
+3,622324 410063,394 -0,15973192 -0,092111476 0 3,7820559 1,790634591 113,9064983 1,901523333 3,932324 0,15026808
+3,6220758 410095,3942 -0,15971284 -0,092113383 0 3,7817886 1,791453357 113,9153873 1,902392802 3,9320758 0,15028716
+3,622133 410127,3944 -0,15982741 -0,092108302 0 3,7819605 1,79227212 113,9242762 1,903262269 3,932133 0,15017259
+3,6219039 410159,3945 -0,15977013 -0,092113383 0 3,7816739 1,793090883 113,9331651 1,904131735 3,9319039 0,15022987
+3,6218276 410191,3947 -0,15977013 -0,092117213 0 3,7815976 1,793909648 113,9420541 1,905001204 3,9318276 0,15022987
+3,6216748 410223,3949 -0,15977013 -0,092110842 0 3,781445 1,794728409 113,950943 1,905870668 3,9316748 0,15022987
+3,6213119 410255,3951 -0,15971284 -0,092112757 0 3,7810247 1,795547168 113,959832 1,906740131 3,9313119 0,15028716
+3,6212354 410287,3952 -0,15973192 -0,092107654 0 3,7809672 1,79636593 113,9687209 1,907609596 3,9312354 0,15026808
+3,6209109 410319,3954 -0,1599611 -0,092112757 0 3,7808719 1,797184698 113,9776098 1,908479068 3,9309109 0,1500389
+3,6208918 410351,3956 -0,15990381 -0,092102565 0 3,7807956 1,798003466 113,9864988 1,90934854 3,9308918 0,15009619
+3,6206815 410383,3958 -0,15988471 -0,092116579 0 3,7805662 1,79882223 113,9953877 1,910218008 3,9306815 0,15011529
+3,6205289 410415,3959 -0,15973192 -0,092112117 0 3,7802608 1,799640992 114,0042767 1,911087473 3,9305289 0,15026808
+3,6205099 410447,3961 -0,15984651 -0,092105106 0 3,7803564 1,800459751 114,0131656 1,911956936 3,9305099 0,15015349
+3,6203761 410479,3963 -0,15961735 -0,092102565 0 3,7799935 1,801278514 114,0220545 1,912826402 3,9303761 0,15038265
+3,6203189 410511,3965 -0,15978922 -0,092115939 0 3,7801082 1,802097279 114,0309435 1,913695871 3,9303189 0,15021078
+3,6199751 410543,3966 -0,15967464 -0,092111476 0 3,7796497 1,80291604 114,0398324 1,914565336 3,9299751 0,15032536
+3,6198413 410575,3968 -0,15978922 -0,092110209 0 3,7796307 1,803734803 114,0487213 1,915434802 3,9298413 0,15021078
+3,6196694 410607,397 -0,15971284 -0,092110209 0 3,7793822 1,804553566 114,0576103 1,916304269 3,9296694 0,15028716
+3,6195741 410639,3972 -0,15975103 -0,092111476 0 3,779325 1,805372329 114,0664992 1,917173735 3,9295741 0,15024897
+3,6193256 410671,3974 -0,15971284 -0,092108928 0 3,7790384 1,806191093 114,0753882 1,918043203 3,9293256 0,15028716
+3,6192303 410703,3975 -0,15971284 -0,092110842 0 3,7789431 1,807009859 114,0842771 1,918912672 3,9292303 0,15028716
+3,6190393 410735,3977 -0,15959825 -0,092107654 0 3,7786376 1,807828623 114,093166 1,91978214 3,9290393 0,15040175
+3,6188483 410767,3979 -0,15967464 -0,092114031 0 3,778523 1,808647387 114,102055 1,920651608 3,9288483 0,15032536
+3,6187336 410799,3981 -0,15977013 -0,092108302 0 3,7785039 1,809466149 114,1109439 1,921521073 3,9287336 0,15022987
+3,6185808 410831,3982 -0,15952186 -0,092112757 0 3,7781026 1,810284911 114,1198328 1,922390539 3,9285808 0,15047814
+3,6184855 410863,3984 -0,15969373 -0,092107654 0 3,7781792 1,811103676 114,1287218 1,923260008 3,9284855 0,15030627
+3,6183898 410895,3986 -0,15963644 -0,092108302 0 3,7780263 1,811922443 114,1376107 1,924129478 3,9283898 0,15036356
+3,6180844 410927,3988 -0,15971284 -0,092111476 0 3,7777972 1,812741207 114,1464997 1,924998946 3,9280844 0,15028716
+3,6178551 410959,3989 -0,15977013 -0,092105746 0 3,7776251 1,81355997 114,1553886 1,925868412 3,9278551 0,15022987
+3,6178551 410991,3991 -0,15963644 -0,092110842 0 3,7774916 1,814378732 114,1642775 1,926737878 3,9278551 0,15036356
+3,6175306 411023,3993 -0,15975103 -0,092108302 0 3,7772815 1,815197497 114,1731665 1,927607347 3,9275306 0,15024897
+3,6173968 411055,3995 -0,15975103 -0,092110209 0 3,7771478 1,816016263 114,1820554 1,928476817 3,9273968 0,15024897
+3,6173012 411087,3996 -0,15978922 -0,092115298 0 3,7770905 1,816835029 114,1909443 1,929346287 3,9273012 0,15021078
+3,6170721 411119,3998 -0,15973192 -0,092110842 0 3,776804 1,817653797 114,1998333 1,930215759 3,9270721 0,15026808
+3,6169193 411151,4 -0,15965554 -0,092108302 0 3,7765749 1,818472566 114,2087222 1,931085231 3,9269193 0,15034446
+3,6167858 411183,4002 -0,15971284 -0,092114031 0 3,7764986 1,819291332 114,2176112 1,931954702 3,9267858 0,15028716
+3,6166711 411215,4003 -0,15965554 -0,092108302 0 3,7763267 1,8201101 114,2265001 1,932824173 3,9266711 0,15034446
+3,6165183 411247,4005 -0,15971284 -0,092109561 0 3,7762311 1,820928868 114,235389 1,933693645 3,9265183 0,15028716
+3,6163082 411279,4007 -0,15963644 -0,092118487 0 3,7759447 1,821747634 114,244278 1,934563115 3,9263082 0,15036356
+3,6160409 411311,4009 -0,15950276 -0,092114031 0 3,7755437 1,822566402 114,2531669 1,935432587 3,9260409 0,15049724
+3,6160409 411343,4011 -0,15969373 -0,092108302 0 3,7757347 1,823385169 114,2620558 1,936302058 3,9260409 0,15030627
+3,6158116 411375,4012 -0,15956005 -0,092110209 0 3,7753716 1,824203937 114,2709448 1,937171529 3,9258116 0,15043995
+3,6157353 411407,4014 -0,15961735 -0,092110209 0 3,7753527 1,825022708 114,2798337 1,938041004 3,9257353 0,15038265
+3,6155252 411439,4016 -0,15963644 -0,092109561 0 3,7751617 1,825841478 114,2887227 1,938910479 3,9255252 0,15036356
+3,6153724 411471,4018 -0,15956005 -0,092113383 0 3,7749324 1,826660245 114,2976116 1,939779949 3,9253724 0,15043995
+3,6153343 411503,4019 -0,15948367 -0,092111476 0 3,7748179 1,827479011 114,3065005 1,940649419 3,9253343 0,15051633
+3,6149142 411535,4021 -0,15975103 -0,092112757 0 3,7746651 1,828297779 114,3153895 1,941518891 3,9249142 0,15024897
+3,6148186 411567,4023 -0,15957916 -0,092111476 0 3,7743979 1,829116546 114,3242784 1,942388362 3,9248186 0,15042084
+3,6146848 411599,4025 -0,15975103 -0,092108928 0 3,7744358 1,829935313 114,3331674 1,943257833 3,9246848 0,15024897
+3,6144748 411631,4026 -0,15959825 -0,092114031 0 3,7740731 1,830754076 114,3420563 1,944127299 3,9244748 0,15040175
+3,6144938 411663,4028 -0,15961735 -0,092107654 0 3,7741113 1,831572839 114,3509452 1,944996766 3,9244938 0,15038265
+3,6142266 411695,403 -0,15954095 -0,092115298 0 3,7737675 1,832391602 114,3598342 1,945866233 3,9242266 0,15045905
+3,6141503 411727,4032 -0,15967464 -0,092109561 0 3,7738249 1,833210367 114,3687231 1,946735701 3,9241503 0,15032536
+3,6138637 411759,4033 -0,15957916 -0,092110209 0 3,7734427 1,83402913 114,377612 1,947605167 3,9238637 0,15042084
+3,6136727 411791,4035 -0,15965554 -0,092107654 0 3,7733283 1,834847892 114,386501 1,948474633 3,9236727 0,15034446
+3,6134818 411823,4037 -0,15971284 -0,092112117 0 3,7731946 1,835666653 114,3953899 1,949344097 3,9234818 0,15028716
+3,6134818 411855,4039 -0,15971284 -0,092106387 0 3,7731946 1,836485416 114,4042789 1,950213564 3,9234818 0,15028716
+3,6132717 411887,404 -0,15967464 -0,092111476 0 3,7729464 1,837304181 114,4131678 1,951083033 3,9232717 0,15032536
+3,6130998 411919,4042 -0,15956005 -0,092113383 0 3,7726598 1,838122946 114,4220567 1,951952502 3,9230998 0,15043995
+3,6131761 411951,4044 -0,15944546 -0,092105106 0 3,7726216 1,838941714 114,4309457 1,952821974 3,9231761 0,15055454
+3,6126988 411983,4046 -0,15956005 -0,092099376 0 3,7722588 1,839760484 114,4398346 1,953691447 3,9226988 0,15043995
+3,6126797 412015,4048 -0,15956005 -0,092111476 0 3,7722397 1,840579249 114,4487235 1,954560917 3,9226797 0,15043995
+3,6125269 412047,4049 -0,15950276 -0,092113383 0 3,7720296 1,841398015 114,4576125 1,955430386 3,9225269 0,15049724
+3,6124504 412079,4051 -0,15963644 -0,092110842 0 3,7720869 1,842216782 114,4665014 1,956299857 3,9224504 0,15036356
+3,6121259 412111,4053 -0,15967464 -0,092104472 0 3,7718005 1,843035549 114,4753904 1,957169328 3,9221259 0,15032536
+3,6119158 412143,4055 -0,15967464 -0,092108302 0 3,7715905 1,843854316 114,4842793 1,958038799 3,9219158 0,15032536
+3,6118393 412175,4056 -0,15948367 -0,092110842 0 3,771323 1,844673082 114,4931682 1,958908269 3,9218393 0,15051633
+3,611553 412207,4058 -0,15954095 -0,092114665 0 3,7710938 1,845491849 114,5020572 1,959777739 3,921553 0,15045905
+3,6115911 412239,406 -0,15956005 -0,092108928 0 3,7711511 1,846310615 114,5109461 1,960647209 3,9215911 0,15043995
+3,6113811 412271,4062 -0,15948367 -0,092103198 0 3,7708647 1,847129381 114,519835 1,961516679 3,9213811 0,15051633
+3,6112282 412303,4063 -0,15967464 -0,092110209 0 3,7709029 1,847948149 114,528724 1,962386151 3,9212282 0,15032536
+3,6109035 412335,4065 -0,15956005 -0,092109561 0 3,7704635 1,848766916 114,5376129 1,963255621 3,9209035 0,15043995
+3,6107891 412367,4067 -0,15933089 -0,092106387 0 3,7701199 1,84958568 114,5465019 1,96412509 3,9207891 0,15066911
+3,6107125 412399,4069 -0,15946457 -0,092118487 0 3,7701771 1,850404448 114,5553908 1,964994561 3,9207125 0,15053543
+3,6103306 412431,407 -0,15952186 -0,092106387 0 3,7698524 1,851223214 114,5642797 1,965864031 3,9203306 0,15047814
+3,6105597 412463,4072 -0,15933089 -0,09210702 0 3,7698905 1,852041979 114,5731687 1,9667335 3,9205597 0,15066911
+3,6102924 412495,4074 -0,15948367 -0,092111476 0 3,7697761 1,852860742 114,5820576 1,967602966 3,9202924 0,15051633
+3,6100059 412527,4076 -0,15959825 -0,092112117 0 3,7696042 1,853679503 114,5909465 1,968472431 3,9200059 0,15040175
+3,6099105 412559,4077 -0,15946457 -0,092110209 0 3,7693751 1,854498265 114,5998355 1,969341897 3,9199105 0,15053543
+3,6097195 412591,4079 -0,15929268 -0,092111476 0 3,7690122 1,85531703 114,6087244 1,970211365 3,9197195 0,15070732
+3,6096239 412623,4081 -0,15944546 -0,09210702 0 3,7690694 1,856135796 114,6176134 1,971080835 3,9196239 0,15055454
+3,6093376 412655,4083 -0,15944546 -0,092115298 0 3,7687831 1,856954563 114,6265023 1,971950305 3,9193376 0,15055454
+3,6092229 412687,4085 -0,15954095 -0,092111476 0 3,7687638 1,857773327 114,6353912 1,972819773 3,9192229 0,15045905
+3,6091847 412719,4086 -0,15956005 -0,092105746 0 3,7687447 1,858592091 114,6442802 1,973689241 3,9191847 0,15043995
+3,6088791 412751,4088 -0,15934998 -0,092110842 0 3,768229 1,859410858 114,6531691 1,974558712 3,9188791 0,15065002
+3,6087072 412783,409 -0,15954095 -0,092115939 0 3,7682481 1,860229625 114,6620581 1,975428182 3,9187072 0,15045905
+3,6086881 412815,4092 -0,15944546 -0,092108302 0 3,7681336 1,861048392 114,670947 1,976297653 3,9186881 0,15055454
+3,6084399 412847,4093 -0,15950276 -0,092110842 0 3,7679427 1,861867157 114,6798359 1,977167122 3,9184399 0,15049724
+3,608268 412879,4095 -0,15944546 -0,092110209 0 3,7677135 1,862685919 114,6887249 1,978036588 3,918268 0,15055454
+3,6080389 412911,4097 -0,15940727 -0,09210702 0 3,7674463 1,86350468 114,6976138 1,978906052 3,9180389 0,15059273
+3,6079624 412943,4099 -0,15936908 -0,092117213 0 3,7673314 1,864323442 114,7065027 1,979775517 3,9179624 0,15063092
+3,6078861 412975,41 -0,15944546 -0,09210702 0 3,7673316 1,865142208 114,7153917 1,980644987 3,9178861 0,15055454
+3,607676 413007,4102 -0,15942638 -0,092109561 0 3,7671025 1,865960972 114,7242806 1,981514455 3,917676 0,15057362
+3,6075423 413039,4104 -0,15954095 -0,09210702 0 3,7670832 1,86677974 114,7331696 1,982383927 3,9175423 0,15045905
+3,6071222 413071,4106 -0,15933089 -0,092122309 0 3,766453 1,867598512 114,7420585 1,983253403 3,9171222 0,15066911
+3,6071031 413103,4107 -0,15956005 -0,092113383 0 3,7666631 1,868417279 114,7509474 1,984122874 3,9171031 0,15043995
+3,6070075 413135,4109 -0,15938817 -0,092106387 0 3,7663956 1,869236042 114,7598364 1,98499234 3,9170075 0,15061183
+3,6067593 413167,4111 -0,15944546 -0,092110842 0 3,7662048 1,870054808 114,7687253 1,98586181 3,9167593 0,15055454
+3,6066639 413199,4113 -0,15957916 -0,092109561 0 3,766243 1,870873576 114,7776142 1,986731282 3,9166639 0,15042084
+3,6064346 413231,4114 -0,15944546 -0,092112117 0 3,7658801 1,871692344 114,7865032 1,987600754 3,9164346 0,15055454
+3,6062055 413263,4116 -0,15931179 -0,092109561 0 3,7655172 1,872511112 114,7953921 1,988470225 3,9162055 0,15068821
+3,6061101 413295,4118 -0,15940727 -0,092105746 0 3,7655175 1,873329876 114,8042811 1,989339694 3,9161101 0,15059273
+3,6060145 413327,412 -0,15969373 -0,092105746 0 3,7657082 1,874148639 114,81317 1,99020916 3,9160145 0,15030627
+3,6059191 413359,4122 -0,15946457 -0,092107654 0 3,7653837 1,874967401 114,8220589 1,991078626 3,9159191 0,15053543
+3,6056707 413391,4123 -0,15940727 -0,092115298 0 3,7650781 1,875786165 114,8309479 1,991948093 3,9156707 0,15059273
+3,6054606 413423,4125 -0,15944546 -0,092113383 0 3,7649062 1,876604928 114,8398368 1,99281756 3,9154606 0,15055454
+3,6054416 413455,4127 -0,15948367 -0,092107654 0 3,7649252 1,877423693 114,8487257 1,993687028 3,9154416 0,15051633
+3,6052125 413487,4129 -0,15940727 -0,092105746 0 3,7646198 1,878242457 114,8576147 1,994556496 3,9152125 0,15059273
+3,6050215 413519,413 -0,15927359 -0,092106387 0 3,7642951 1,879061219 114,8665036 1,995425961 3,9150215 0,15072641
+3,6048114 413551,4132 -0,15929268 -0,092106387 0 3,7641041 1,879879984 114,8753926 1,99629543 3,9148114 0,15070732
+3,6046968 413583,4134 -0,15940727 -0,092112757 0 3,7641041 1,880698749 114,8842815 1,9971649 3,9146968 0,15059273
+3,6046014 413615,4136 -0,15933089 -0,092108928 0 3,7639322 1,881517515 114,8931704 1,998034369 3,9146014 0,15066911
+3,604353 413647,4137 -0,15950276 -0,092113383 0 3,7638557 1,882336282 114,9020594 1,99890384 3,914353 0,15049724
+3,6042192 413679,4139 -0,15929268 -0,092117853 0 3,7635119 1,883155049 114,9109483 1,999773311 3,9142192 0,15070732
+3,6040092 413711,4141 -0,15933089 -0,092110842 0 3,76334 1,883973816 114,9198372 2,000642781 3,9140092 0,15066911
+3,6039138 413743,4143 -0,15933089 -0,092109561 0 3,7632446 1,884792582 114,9287262 2,001512252 3,9139138 0,15066911
+3,6037037 413775,4144 -0,15933089 -0,092107654 0 3,7630346 1,885611347 114,9376151 2,00238172 3,9137037 0,15066911
+3,60357 413807,4146 -0,15927359 -0,092105106 0 3,7628436 1,886430106 114,9465041 2,003251183 3,91357 0,15072641
+3,6033409 413839,4148 -0,15927359 -0,092107654 0 3,7626145 1,887248865 114,955393 2,004120645 3,9133409 0,15072641
+3,6032071 413871,415 -0,15938817 -0,092110209 0 3,7625952 1,888067623 114,9642819 2,004990106 3,9132071 0,15061183
+3,6031308 413903,4151 -0,15929268 -0,092110842 0 3,7624235 1,888886387 114,9731709 2,005859573 3,9131308 0,15070732
+3,6028252 413935,4153 -0,15938817 -0,092112117 0 3,7622132 1,889705152 114,9820598 2,006729042 3,9128252 0,15061183
+3,6026533 413967,4155 -0,15929268 -0,092117213 0 3,761946 1,890523919 114,9909487 2,007598513 3,9126533 0,15070732
+3,602386 413999,4157 -0,15938817 -0,092109561 0 3,7617741 1,89134269 114,9998377 2,008467989 3,912386 0,15061183
+3,6023285 414031,4159 -0,15934998 -0,092112757 0 3,7616785 1,892161461 115,0087266 2,009337463 3,9123285 0,15065002
+3,6021185 414063,416 -0,1591972 -0,092113383 0 3,7613156 1,892980227 115,0176156 2,010206933 3,9121185 0,1508028
+3,6020041 414095,4162 -0,15938817 -0,092110842 0 3,7613921 1,893798997 115,0265045 2,011076407 3,9120041 0,15061183
+3,6018322 414127,4164 -0,15936908 -0,092114031 0 3,7612011 1,894617768 115,0353934 2,011945883 3,9118322 0,15063092
+3,6017175 414159,4166 -0,15934998 -0,092108302 0 3,7610674 1,895436538 115,0442824 2,012815357 3,9117175 0,15065002
+3,6016221 414191,4167 -0,15933089 -0,092114031 0 3,7609529 1,896255307 115,0531713 2,013684829 3,9116221 0,15066911
+3,6013546 414223,4169 -0,15931179 -0,092115939 0 3,7606664 1,897074075 115,0620603 2,014554301 3,9113546 0,15068821
+3,6011636 414255,4171 -0,15927359 -0,092107654 0 3,7604373 1,897892843 115,0709492 2,015423773 3,9111636 0,15072641
+3,6012018 414287,4173 -0,1592354 -0,092112117 0 3,7604373 1,898711615 115,0798381 2,016293249 3,9112018 0,1507646
+3,6008964 414319,4174 -0,1592354 -0,092108928 0 3,7601318 1,899530387 115,0887271 2,017162726 3,9108964 0,1507646
+3,6008964 414351,4176 -0,15925449 -0,092114031 0 3,7601509 1,900349159 115,097616 2,018032202 3,9108964 0,15074551
+3,600457 414383,4178 -0,15927359 -0,092108928 0 3,7597306 1,901167929 115,1065049 2,018901676 3,910457 0,15072641
+3,6003807 414415,418 -0,15931179 -0,092113383 0 3,7596924 1,901986693 115,1153939 2,019771143 3,9103807 0,15068821
+3,6002088 414447,4181 -0,1591972 -0,092110842 0 3,7594059 1,902805458 115,1242828 2,020640611 3,9102088 0,1508028
+3,6000178 414479,4183 -0,1592354 -0,092110209 0 3,7592533 1,903624229 115,1331718 2,021510087 3,9100178 0,1507646
+3,5998459 414511,4185 -0,15929268 -0,092105746 0 3,7591386 1,904442999 115,1420607 2,022379561 3,9098459 0,15070732
+3,5997121 414543,4187 -0,1592163 -0,092109561 0 3,7589285 1,905261772 115,1509496 2,023249039 3,9097121 0,1507837
+3,5997312 414575,4188 -0,1592354 -0,092110842 0 3,7589667 1,906080546 115,1598386 2,024118516 3,9097312 0,1507646
+3,5993876 414607,419 -0,15913992 -0,092112117 0 3,7585275 1,906899319 115,1687275 2,024987994 3,9093876 0,15086008
+3,5989673 414639,4192 -0,15940727 -0,092112757 0 3,7583747 1,907718092 115,1776164 2,025857471 3,9089673 0,15059273
+3,599082 414671,4194 -0,15908262 -0,092109561 0 3,7581646 1,908536863 115,1865054 2,026726946 3,909082 0,15091738
+3,5989292 414703,4196 -0,1591972 -0,092109561 0 3,7581263 1,90935563 115,1953943 2,027596417 3,9089292 0,1508028
+3,5987382 414735,4197 -0,15927359 -0,092112117 0 3,7580118 1,910174398 115,2042833 2,028465888 3,9087382 0,15072641
+3,5984135 414767,4199 -0,159159 -0,092109561 0 3,7575724 1,910993166 115,2131722 2,029335361 3,9084135 0,150841
+3,5984519 414799,4201 -0,15927359 -0,092107654 0 3,7577255 1,911811938 115,2220611 2,030204837 3,9084519 0,15072641
+3,5981462 414831,4203 -0,15934998 -0,092111476 0 3,7574961 1,912630707 115,2309501 2,031074309 3,9081462 0,15065002
+3,5981081 414863,4204 -0,1592163 -0,092110842 0 3,7573245 1,913449476 115,239839 2,031943783 3,9081081 0,1507837
+3,5979934 414895,4206 -0,159159 -0,092112117 0 3,7571523 1,914268245 115,2487279 2,032813255 3,9079934 0,150841
+3,5978789 414927,4208 -0,1592163 -0,092108302 0 3,7570953 1,91508701 115,2576169 2,033682724 3,9078789 0,1507837
+3,5976305 414959,421 -0,1591972 -0,092108302 0 3,7568276 1,915905778 115,2665058 2,034552197 3,9076305 0,1508028
+3,5973632 414991,4211 -0,1592354 -0,092114665 0 3,7565987 1,916724546 115,2753948 2,035421668 3,9073632 0,1507646
+3,5973632 415023,4213 -0,1592354 -0,092112117 0 3,7565987 1,917543314 115,2842837 2,03629114 3,9073632 0,1507646
+3,5971148 415055,4215 -0,15913992 -0,092112757 0 3,7562547 1,918362085 115,2931726 2,037160615 3,9071148 0,15086008
+3,5968857 415087,4217 -0,1591972 -0,092108928 0 3,7560828 1,919180855 115,3020616 2,038030089 3,9068857 0,1508028
+3,5967712 415119,4218 -0,15925449 -0,092119761 0 3,7560258 1,919999627 115,3109505 2,038899565 3,9067712 0,15074551
+3,5965993 415151,422 -0,15931179 -0,092115939 0 3,7559111 1,920818401 115,3198394 2,039769043 3,9065993 0,15068821
+3,5964274 415183,4222 -0,15910171 -0,092110209 0 3,7555292 1,921637173 115,3287284 2,04063852 3,9064274 0,15089829
+3,5961218 415215,4224 -0,15927359 -0,092115939 0 3,7553954 1,92245594 115,3376173 2,041507991 3,9061218 0,15072641
+3,5960073 415247,4225 -0,15906352 -0,092107654 0 3,7550709 1,923274711 115,3465063 2,042377465 3,9060073 0,15093648
+3,5958736 415279,4227 -0,15913992 -0,092110209 0 3,7550135 1,924093483 115,3553952 2,043246941 3,9058736 0,15086008
+3,5958545 415311,4229 -0,15908262 -0,092108928 0 3,7549372 1,924912255 115,3642841 2,044116418 3,9058545 0,15091738
+3,5956445 415343,4231 -0,15917811 -0,092113383 0 3,7548225 1,925731023 115,3731731 2,044985889 3,9056445 0,15082189
+3,595377 415375,4232 -0,15917811 -0,092113383 0 3,754555 1,92654979 115,382062 2,045855361 3,905377 0,15082189
+3,5952816 415407,4234 -0,15917811 -0,092110842 0 3,7544596 1,927368559 115,390951 2,046724833 3,9052816 0,15082189
+3,5950522 415439,4236 -0,1591972 -0,092112117 0 3,7542493 1,928187325 115,3998399 2,047594303 3,9050522 0,1508028
+3,5948806 415471,4238 -0,15906352 -0,092114031 0 3,7539442 1,929006092 115,4087288 2,048463774 3,9048806 0,15093648
+3,5947468 415503,424 -0,15913992 -0,09210065 0 3,7538867 1,929824856 115,4176178 2,049333242 3,9047468 0,15086008
+3,5946896 415535,4241 -0,15917811 -0,092116579 0 3,7538676 1,930643624 115,4265067 2,050202714 3,9046896 0,15082189
+3,5944412 415567,4243 -0,1592163 -0,092105746 0 3,7536576 1,931462394 115,4353956 2,051072188 3,9044412 0,1507837
+3,5942883 415599,4245 -0,15908262 -0,092110209 0 3,753371 1,932281163 115,4442846 2,051941661 3,9042883 0,15091738
+3,5940211 415631,4247 -0,15904443 -0,092110209 0 3,7530656 1,933099932 115,4531735 2,052811134 3,9040211 0,15095557
+3,5939255 415663,4248 -0,15896803 -0,092115939 0 3,7528934 1,933918705 115,4620625 2,053680611 3,9039255 0,15103197
+3,5938683 415695,425 -0,15912081 -0,092101924 0 3,7529891 1,934737475 115,4709514 2,054550085 3,9038683 0,15087919
+3,593792 415727,4252 -0,15902533 -0,092108928 0 3,7528174 1,935556244 115,4798403 2,055419558 3,903792 0,15097467
+3,5932763 415759,4254 -0,15896803 -0,092109561 0 3,7522442 1,93637501 115,4887293 2,056289027 3,9032763 0,15103197
+3,5930853 415791,4255 -0,15910171 -0,092111476 0 3,752187 1,937193777 115,4976182 2,057158499 3,9030853 0,15089829
+3,5930662 415823,4257 -0,15902533 -0,092114031 0 3,7520916 1,938012546 115,5065071 2,058027972 3,9030662 0,15097467
+3,5931044 415855,4259 -0,15902533 -0,09210702 0 3,7521298 1,938831317 115,5153961 2,058897447 3,9031044 0,15097467
+3,5927606 415887,4261 -0,15906352 -0,092106387 0 3,7518241 1,939650087 115,524285 2,05976692 3,9027606 0,15093648
+3,5927033 415919,4262 -0,15906352 -0,092110209 0 3,7517669 1,940468855 115,533174 2,060636392 3,9027033 0,15093648
+3,5922642 415951,4264 -0,1592163 -0,092108928 0 3,7514806 1,941287623 115,5420629 2,061505865 3,9022642 0,1507837
+3,5922449 415983,4266 -0,15910171 -0,09210702 0 3,7513466 1,942106393 115,5509518 2,062375338 3,9022449 0,15089829
+3,5920348 416015,4268 -0,15904443 -0,092108302 0 3,7510793 1,942925162 115,5598408 2,063244811 3,9020348 0,15095557
+3,5919776 416047,4269 -0,15908262 -0,092105106 0 3,7510602 1,943743932 115,5687297 2,064114285 3,9019776 0,15091738
+3,5918057 416079,4271 -0,15913992 -0,092108928 0 3,7509456 1,944562703 115,5776186 2,06498376 3,9018057 0,15086008
+3,5915766 416111,4273 -0,15908262 -0,092109561 0 3,7506592 1,945381475 115,5865076 2,065853236 3,9015766 0,15091738
+3,5914428 416143,4275 -0,15910171 -0,09210702 0 3,7505445 1,946200245 115,5953965 2,066722711 3,9014428 0,15089829
+3,5912328 416175,4277 -0,15902533 -0,092112757 0 3,7502582 1,947019015 115,6042855 2,067592184 3,9012328 0,15097467
+3,5909271 416207,4278 -0,15896803 -0,092115298 0 3,7498951 1,947837783 115,6131744 2,068461657 3,9009271 0,15103197
+3,590698 416239,428 -0,15902533 -0,092108928 0 3,7497234 1,948656551 115,6220633 2,069331129 3,900698 0,15097467
+3,5907745 416271,4282 -0,15904443 -0,092105106 0 3,749819 1,949475323 115,6309523 2,070200605 3,9007745 0,15095557
+3,5905643 416303,4284 -0,15910171 -0,092117853 0 3,749666 1,950294093 115,6398412 2,071070079 3,9005643 0,15089829
+3,5904498 416335,4285 -0,15892984 -0,092110842 0 3,7493796 1,951112863 115,6487301 2,071939553 3,9004498 0,15107016
+3,5902779 416367,4287 -0,15892984 -0,092107654 0 3,7492077 1,951931638 115,6576191 2,072809032 3,9002779 0,15107016
+3,5899913 416399,4289 -0,15894894 -0,092114031 0 3,7489402 1,952750413 115,666508 2,073678511 3,8999913 0,15105106
+3,5900488 416431,4291 -0,15894894 -0,092113383 0 3,7489977 1,953569188 115,675397 2,074547991 3,9000488 0,15105106
+3,5896668 416463,4292 -0,15925449 -0,092115298 0 3,7489214 1,954387962 115,6842859 2,075417469 3,8996668 0,15074551
+3,5895712 416495,4294 -0,15908262 -0,092107654 0 3,7486539 1,955206736 115,6931748 2,076286947 3,8995712 0,15091738
+3,5892658 416527,4296 -0,15892984 -0,092108928 0 3,7481956 1,95602551 115,7020638 2,077156425 3,8992658 0,15107016
+3,5893993 416559,4298 -0,15908262 -0,092109561 0 3,748482 1,956844281 115,7109527 2,078025901 3,8993993 0,15091738
+3,5889983 416591,4299 -0,15898713 -0,092110209 0 3,7479854 1,957663049 115,7198417 2,078895373 3,8989983 0,15101287
+3,5887883 416623,4301 -0,15904443 -0,092110209 0 3,7478328 1,958481818 115,7287306 2,079764846 3,8987883 0,15095557
+3,5887311 416655,4303 -0,15904443 -0,092115939 0 3,7477756 1,959300591 115,7376195 2,080634322 3,8987311 0,15095557
+3,5885782 416687,4305 -0,15887254 -0,092113383 0 3,7474508 1,960119361 115,7465085 2,081503796 3,8985782 0,15112746
+3,5883491 416719,4306 -0,15900622 -0,092114665 0 3,7473552 1,960938131 115,7553974 2,082373271 3,8983491 0,15099378
+3,5881963 416751,4308 -0,15896803 -0,09210702 0 3,7471642 1,961756901 115,7642863 2,083242744 3,8981963 0,15103197
+3,5880244 416783,431 -0,15898713 -0,092115298 0 3,7470114 1,96257567 115,7731753 2,084112217 3,8980244 0,15101287
+3,5877953 416815,4312 -0,15900622 -0,092111476 0 3,7468014 1,963394439 115,7820642 2,08498169 3,8977953 0,15099378
+3,5874896 416847,4314 -0,15894894 -0,092110209 0 3,7464385 1,964213203 115,7909532 2,085851158 3,8974896 0,15105106
+3,5875659 416879,4315 -0,15896803 -0,092109561 0 3,7465339 1,965031972 115,7998421 2,086720631 3,8975659 0,15103197
+3,5873749 416911,4317 -0,15891074 -0,092112117 0 3,7462857 1,96585074 115,808731 2,087590102 3,8973749 0,15108926
+3,5872414 416943,4319 -0,15892984 -0,092114665 0 3,7461712 1,96666951 115,81762 2,088459577 3,8972414 0,15107016
+3,586993 416975,4321 -0,15902533 -0,092114031 0 3,7460184 1,967488279 115,8265089 2,08932905 3,896993 0,15097467
+3,5869358 417007,4322 -0,15883435 -0,092111476 0 3,7457702 1,96830705 115,8353978 2,090198525 3,8969358 0,15116565
+3,5867829 417039,4324 -0,15889165 -0,092113383 0 3,7456746 1,969125823 115,8442868 2,091068002 3,8967829 0,15110835
+3,5864201 417071,4326 -0,15896803 -0,092116579 0 3,745388 1,969944593 115,8531757 2,091937476 3,8964201 0,15103197
+3,5862865 417103,4328 -0,15889165 -0,092110842 0 3,7451782 1,970763364 115,8620647 2,092806952 3,8962865 0,15110835
+3,5861909 417135,4329 -0,15892984 -0,092115298 0 3,7451208 1,97158214 115,8709536 2,093676431 3,8961909 0,15107016
+3,5860763 417167,4331 -0,15889165 -0,092105746 0 3,7449679 1,972400915 115,8798425 2,094545911 3,8960763 0,15110835
+3,5859237 417199,4333 -0,15892984 -0,092117853 0 3,7448535 1,973219686 115,8887315 2,095415387 3,8959237 0,15107016
+3,5857136 417231,4335 -0,15906352 -0,092113383 0 3,7447772 1,974038455 115,8976204 2,096284859 3,8957136 0,15093648
+3,5854843 417263,4336 -0,15877706 -0,092110209 0 3,7442613 1,974857218 115,9065093 2,097154326 3,8954843 0,15122294
+3,5853314 417295,4338 -0,15894894 -0,092114031 0 3,7442803 1,975675983 115,9153983 2,098023795 3,8953314 0,15105106
+3,5852551 417327,434 -0,15900622 -0,092107654 0 3,7442613 1,976494749 115,9242872 2,098893265 3,8952551 0,15099378
+3,5848732 417359,4342 -0,15896803 -0,092114031 0 3,7438412 1,977313516 115,9331762 2,099762735 3,8948732 0,15103197
+3,5848923 417391,4343 -0,15881525 -0,092111476 0 3,7437074 1,978132282 115,9420651 2,100632205 3,8948923 0,15118475
+3,5846632 417423,4345 -0,15894894 -0,092112757 0 3,7436121 1,978951051 115,950954 2,101501677 3,8946632 0,15105106
+3,5843575 417455,4347 -0,15891074 -0,092109561 0 3,7432683 1,979769819 115,959843 2,10237115 3,8943575 0,15108926
+3,5842812 417487,4349 -0,15898713 -0,092110209 0 3,7432683 1,980588587 115,9687319 2,103240622 3,8942812 0,15101287
+3,5841284 417519,4351 -0,15885346 -0,092113383 0 3,7429819 1,981407354 115,9776208 2,104110092 3,8941284 0,15114654
+3,5839946 417551,4352 -0,15898713 -0,092109561 0 3,7429817 1,982226118 115,9865098 2,10497956 3,8939946 0,15101287
+3,5838802 417583,4354 -0,15892984 -0,092104472 0 3,74281 1,983044883 115,9953987 2,105849029 3,8938802 0,15107016
+3,5836318 417615,4356 -0,15889165 -0,092108928 0 3,7425234 1,983863647 116,0042877 2,106718496 3,8936318 0,15110835
+3,5834599 417647,4358 -0,15879616 -0,092116579 0 3,7422559 1,98468241 116,0131766 2,107587963 3,8934599 0,15120384
+3,5832882 417679,4359 -0,15889165 -0,092112117 0 3,7421799 1,985501176 116,0220655 2,108457432 3,8932882 0,15110835
+3,5831163 417711,4361 -0,15892984 -0,092110842 0 3,7420461 1,986319946 116,0309545 2,109326907 3,8931163 0,15107016
+3,5829635 417743,4363 -0,15887254 -0,092106387 0 3,7418361 1,987138719 116,0398434 2,110196384 3,8929635 0,15112746
+3,5828679 417775,4365 -0,15904443 -0,092106387 0 3,7419124 1,98795749 116,0487324 2,111065859 3,8928679 0,15095557
+3,5827725 417807,4366 -0,15881525 -0,092108302 0 3,7415876 1,988776261 116,0576213 2,111935334 3,8927725 0,15118475
+3,5825434 417839,4368 -0,15879616 -0,092110842 0 3,7413394 1,989595031 116,0665102 2,112804808 3,8925434 0,15120384
+3,5824287 417871,437 -0,15885346 -0,092118487 0 3,7412822 1,9904138 116,0753992 2,113674281 3,8924287 0,15114654
+3,5821805 417903,4372 -0,15885346 -0,092108302 0 3,741034 1,991232567 116,0842881 2,114543752 3,8921805 0,15114654
+3,5819895 417935,4373 -0,15883435 -0,092117853 0 3,740824 1,992051334 116,093177 2,115413223 3,8919895 0,15116565
+3,5818367 417967,4375 -0,15877706 -0,092114665 0 3,7406137 1,992870099 116,102066 2,116282691 3,8918367 0,15122294
+3,5816457 417999,4377 -0,15889165 -0,092110842 0 3,7405374 1,993688862 116,1109549 2,117152158 3,8916457 0,15110835
+3,5816648 418031,4379 -0,15870067 -0,092107654 0 3,7403655 1,994507625 116,1198439 2,118021625 3,8916648 0,15129933
+3,581321 418063,438 -0,15871976 -0,092113383 0 3,7400408 1,995326396 116,1287328 2,118891099 3,891321 0,15128024
+3,5811682 418095,4382 -0,15892984 -0,092102565 0 3,740098 1,996145168 116,1376217 2,119760576 3,8911682 0,15107016
+3,58092 418127,4384 -0,15881525 -0,092112117 0 3,7397351 1,996963944 116,1465107 2,120630056 3,89092 0,15118475
+3,5809009 418159,4386 -0,15896803 -0,092104472 0 3,7398689 1,997782717 116,1553996 2,121499534 3,8909009 0,15103197
+3,580519 418191,4388 -0,15887254 -0,092117213 0 3,7393916 1,998601486 116,1642885 2,122369007 3,890519 0,15112746
+3,5804234 418223,4389 -0,15875797 -0,092107654 0 3,7391813 1,999420255 116,1731775 2,123238479 3,8904234 0,15124203
+3,5801752 418255,4391 -0,15868157 -0,092105106 0 3,7388568 2,00023902 116,1820664 2,124107948 3,8901752 0,15131843
+3,5802133 418287,4393 -0,15885346 -0,092115298 0 3,7390668 2,001057783 116,1909554 2,124977414 3,8902133 0,15114654
+3,5800033 418319,4395 -0,15883435 -0,092111476 0 3,7388377 2,001876545 116,1998443 2,125846881 3,8900033 0,15116565
+3,5797741 418351,4396 -0,15881525 -0,092108928 0 3,7385893 2,002695306 116,2087332 2,126716345 3,8897741 0,15118475
+3,5796213 418383,4398 -0,15883435 -0,092108928 0 3,7384558 2,003514067 116,2176222 2,127585809 3,8896213 0,15116565
+3,5795257 418415,44 -0,15887254 -0,092104472 0 3,7383983 2,004332824 116,2265111 2,128455269 3,8895257 0,15112746
+3,5791821 418447,4402 -0,15883435 -0,092108928 0 3,7380166 2,005151581 116,2354 2,12932473 3,8891821 0,15116565
+3,5791438 418479,4403 -0,15877706 -0,092103198 0 3,7379208 2,00597034 116,244289 2,130194192 3,8891438 0,15122294
+3,5790293 418511,4405 -0,15873887 -0,092111476 0 3,7377682 2,006789098 116,2531779 2,131063654 3,8890293 0,15126113
+3,5787427 418543,4407 -0,15881525 -0,092112757 0 3,7375579 2,007607861 116,2620669 2,13193312 3,8887427 0,15118475
+3,5785899 418575,4409 -0,15873887 -0,092104472 0 3,7373288 2,008426625 116,2709558 2,132802588 3,8885899 0,15126113
+3,5783799 418607,441 -0,15877706 -0,092119761 0 3,7371569 2,009245386 116,2798447 2,133672052 3,8883799 0,15122294
+3,5782654 418639,4412 -0,15883435 -0,092108302 0 3,7370999 2,010064146 116,2887337 2,134541515 3,8882654 0,15116565
+3,5782464 418671,4414 -0,15877706 -0,092114031 0 3,7370234 2,010882906 116,2976226 2,135410979 3,8882464 0,15122294
+3,5779598 418703,4416 -0,15875797 -0,092112117 0 3,7367177 2,011701666 116,3065115 2,136280442 3,8879598 0,15124203
+3,5778835 418735,4417 -0,15883435 -0,092103831 0 3,7367179 2,012520427 116,3154005 2,137149907 3,8878835 0,15116565
+3,5777497 418767,4419 -0,15871976 -0,092111476 0 3,7364695 2,01333919 116,3242894 2,138019373 3,8877497 0,15128024
+3,5772722 418799,4421 -0,15870067 -0,092108928 0 3,7359729 2,014157952 116,3331784 2,138888838 3,8872722 0,15129933
+3,5771959 418831,4423 -0,15870067 -0,092112117 0 3,7358966 2,014976713 116,3420673 2,139758303 3,8871959 0,15129933
+3,5770812 418863,4425 -0,15870067 -0,092104472 0 3,7357819 2,015795475 116,3509562 2,140627769 3,8870812 0,15129933
+3,5769093 418895,4426 -0,15866248 -0,092109561 0 3,7355719 2,016614238 116,3598452 2,141497235 3,8869093 0,15133752
+3,5767758 418927,4428 -0,15879616 -0,092110209 0 3,7355719 2,017433006 116,3687341 2,142366707 3,8867758 0,15120384
+3,5765274 418959,443 -0,15877706 -0,092111476 0 3,7353044 2,018251769 116,377623 2,143236174 3,8865274 0,15122294
+3,5764892 418991,4432 -0,15868157 -0,092103831 0 3,7351708 2,019070534 116,386512 2,144105642 3,8864892 0,15131843
+3,5762792 419023,4433 -0,15868157 -0,092112757 0 3,7349608 2,019889298 116,3954009 2,14497511 3,8862792 0,15131843
+3,5760691 419055,4435 -0,15868157 -0,09210702 0 3,7347507 2,020708065 116,4042899 2,145844581 3,8860691 0,15131843
+3,5758972 419087,4437 -0,15868157 -0,092110842 0 3,7345788 2,021526832 116,4131788 2,146714052 3,8858972 0,15131843
+3,5756109 419119,4439 -0,15875797 -0,092105746 0 3,7343688 2,022345602 116,4220677 2,147583526 3,8856109 0,15124203
+3,5757062 419151,444 -0,15883435 -0,092111476 0 3,7345407 2,023164372 116,4309567 2,148453 3,8857062 0,15116565
+3,5754199 419183,4442 -0,15883435 -0,092112757 0 3,7342544 2,023983145 116,4398456 2,149322477 3,8854199 0,15116565
+3,5753052 419215,4444 -0,15871976 -0,092109561 0 3,734025 2,024801913 116,4487346 2,150191949 3,8853052 0,15128024
+3,5750186 419247,4446 -0,15873887 -0,092109561 0 3,7337575 2,025620681 116,4576235 2,151061421 3,8850186 0,15126113
+3,5748661 419279,4447 -0,15862428 -0,092114031 0 3,7334902 2,026439449 116,4665124 2,151930893 3,8848661 0,15137572
+3,5747895 419311,4449 -0,15864338 -0,092113383 0 3,733433 2,027258215 116,4754014 2,152800362 3,8847895 0,15135662
+3,5745223 419343,4451 -0,15852879 -0,092113383 0 3,7330511 2,028076981 116,4842903 2,153669833 3,8845223 0,15147121
+3,5743885 419375,4453 -0,15868157 -0,092115939 0 3,7330701 2,028895747 116,4931792 2,154539303 3,8843885 0,15131843
+3,5742357 419407,4454 -0,15860519 -0,092104472 0 3,7328408 2,029714513 116,5020682 2,155408772 3,8842357 0,15139481
+3,5740066 419439,4456 -0,15866248 -0,092111476 0 3,7326691 2,030533278 116,5109571 2,156278241 3,8840066 0,15133752
+3,5739684 419471,4458 -0,1585097 -0,092107654 0 3,7324781 2,031352042 116,5198461 2,157147709 3,8839684 0,1514903
+3,5737965 419503,446 -0,15854789 -0,092108302 0 3,7323444 2,032170809 116,528735 2,158017179 3,8837965 0,15145211
+3,5733955 419535,4462 -0,15854789 -0,092114031 0 3,7319434 2,032989579 116,5376239 2,158886653 3,8833955 0,15145211
+3,5734718 419567,4463 -0,15854789 -0,092117853 0 3,7320197 2,033808345 116,5465129 2,159756123 3,8834718 0,15145211
+3,5731089 419599,4465 -0,1584906 -0,092112757 0 3,7315996 2,034627112 116,5554018 2,160625593 3,8831089 0,1515094
+3,5729752 419631,4467 -0,15854789 -0,092105106 0 3,731523 2,035445878 116,5642907 2,161495064 3,8829752 0,15145211
+3,5728607 419663,4469 -0,15847151 -0,092109561 0 3,7313323 2,036264644 116,5731797 2,162364534 3,8828607 0,15152849
+3,572727 419695,447 -0,15847151 -0,092110209 0 3,7311985 2,037083409 116,5820686 2,163234002 3,882727 0,15152849
+3,5725169 419727,4472 -0,15877706 -0,092111476 0 3,7312939 2,037902173 116,5909576 2,16410347 3,8825169 0,15122294
+3,5724788 419759,4474 -0,15870067 -0,092110842 0 3,7311795 2,038720941 116,5998465 2,164972941 3,8824788 0,15129933
+3,5722497 419791,4476 -0,158567 -0,092108302 0 3,7308166 2,03953971 116,6087354 2,165842414 3,8822497 0,151433
+3,5720012 419823,4477 -0,15858608 -0,092113383 0 3,7305872 2,040358477 116,6176244 2,166711885 3,8820012 0,15141392
+3,5717912 419855,4479 -0,15858608 -0,092104472 0 3,7303772 2,041177243 116,6265133 2,167581356 3,8817912 0,15141392
+3,5718677 419887,4481 -0,15862428 -0,092110209 0 3,7304919 2,041996011 116,6354022 2,168450827 3,8818677 0,15137572
+3,5716193 419919,4483 -0,15852879 -0,092107654 0 3,7301481 2,042814779 116,6442912 2,169320299 3,8816193 0,15147121
+3,5713139 419951,4484 -0,15870067 -0,092122942 0 3,7300146 2,043633547 116,6531801 2,170189771 3,8813139 0,15129933
+3,5710654 419983,4486 -0,15847151 -0,092106387 0 3,729537 2,044452315 116,6620691 2,171059243 3,8810654 0,15152849
+3,5710273 420015,4488 -0,15860519 -0,092109561 0 3,7296324 2,045271084 116,670958 2,171928716 3,8810273 0,15139481
+3,5707026 420047,449 -0,15864338 -0,092111476 0 3,729346 2,046089852 116,6798469 2,172798188 3,8807026 0,15135662
+3,5705497 420079,4491 -0,15868157 -0,092114665 0 3,7292314 2,04690862 116,6887359 2,17366766 3,8805497 0,15131843
+3,5703971 420111,4493 -0,15871976 -0,092110842 0 3,7291169 2,04772739 116,6976248 2,174537133 3,8803971 0,15128024
+3,5702825 420143,4495 -0,15852879 -0,092110209 0 3,7288113 2,048546159 116,7065137 2,175406606 3,8802825 0,15147121
+3,5701296 420175,4497 -0,15862428 -0,092112117 0 3,7287538 2,049364926 116,7154027 2,176276078 3,8801296 0,15137572
+3,5698242 420207,4498 -0,15866248 -0,092108928 0 3,7284868 2,050183692 116,7242916 2,177145547 3,8798242 0,15133752
+3,5698433 420239,45 -0,15845241 -0,092112757 0 3,7282958 2,051002458 116,7331806 2,178015017 3,8798433 0,15154759
+3,5696714 420271,4502 -0,15871976 -0,092106387 0 3,7283912 2,051821225 116,7420695 2,178884487 3,8796714 0,15128024
+3,5694423 420303,4504 -0,1584906 -0,092104472 0 3,7279329 2,052639992 116,7509584 2,179753958 3,8794423 0,1515094
+3,5693467 420335,4506 -0,15862428 -0,092112757 0 3,7279708 2,053458759 116,7598474 2,180623429 3,8793467 0,15137572
+3,5691366 420367,4507 -0,15862428 -0,092119761 0 3,7277608 2,054277526 116,7687363 2,1814929 3,8791366 0,15137572
+3,5690029 420399,4509 -0,15860519 -0,092118487 0 3,727608 2,055096292 116,7776253 2,18236237 3,8790029 0,15139481
+3,5686781 420431,4511 -0,15862428 -0,092112117 0 3,7273023 2,055915059 116,7865142 2,18323184 3,8786781 0,15137572
+3,5687356 420463,4513 -0,15845241 -0,09210702 0 3,7271881 2,056733823 116,7954031 2,184101308 3,8787356 0,15154759
+3,5685065 420495,4514 -0,15841421 -0,092105746 0 3,7269206 2,057552587 116,8042921 2,184970776 3,8785065 0,15158579
+3,5683346 420527,4516 -0,15864338 -0,092109561 0 3,7269781 2,058371351 116,813181 2,185840244 3,8783346 0,15135662
+3,5679142 420559,4518 -0,1585097 -0,092108302 0 3,726424 2,059190114 116,8220699 2,18670971 3,8779142 0,1514903
+3,5679142 420591,452 -0,15860519 -0,092108928 0 3,7265193 2,060008877 116,8309589 2,187579177 3,8779142 0,15139481
+3,567838 420623,4521 -0,1585097 -0,092112757 0 3,7263477 2,060827641 116,8398478 2,188448644 3,877838 0,1514903
+3,5676088 420655,4523 -0,15858608 -0,092109561 0 3,7261949 2,061646407 116,8487368 2,189318115 3,8776088 0,15141392
+3,567456 420687,4525 -0,158567 -0,092110209 0 3,726023 2,062465175 116,8576257 2,190187586 3,877456 0,151433
+3,5671504 420719,4527 -0,15852879 -0,092110842 0 3,7256792 2,063283941 116,8665146 2,191057056 3,8771504 0,15147121
+3,5669975 420751,4528 -0,15868157 -0,092110842 0 3,7256792 2,064102704 116,8754036 2,191926523 3,8769975 0,15131843
+3,5669403 420783,453 -0,15841421 -0,092110209 0 3,7253544 2,064921469 116,8842925 2,192795992 3,8769403 0,15158579
+3,566654 420815,4532 -0,15835692 -0,092113383 0 3,7250109 2,065740233 116,8931814 2,193665459 3,876654 0,15164308
+3,5666349 420847,4534 -0,1584906 -0,092110842 0 3,7251256 2,066558996 116,9020704 2,194534926 3,8766349 0,1515094
+3,5663674 420879,4535 -0,1585097 -0,092106387 0 3,7248771 2,067377761 116,9109593 2,195404394 3,8763674 0,1514903
+3,5661764 420911,4537 -0,1584333 -0,092112757 0 3,7246096 2,068196523 116,9198483 2,19627386 3,8761764 0,1515667
+3,5661383 420943,4539 -0,1585097 -0,092109561 0 3,724648 2,069015289 116,9287372 2,19714333 3,8761383 0,1514903
+3,5658708 420975,4541 -0,15875797 -0,092108302 0 3,7246287 2,069834055 116,9376261 2,1980128 3,8758708 0,15124203
+3,5657372 421007,4543 -0,1584906 -0,092113383 0 3,7242279 2,07065282 116,9465151 2,198882268 3,8757372 0,1515094
+3,5654125 421039,4544 -0,15847151 -0,092110842 0 3,7238841 2,071471584 116,955404 2,199751736 3,8754125 0,15152849
+3,5653553 421071,4546 -0,158567 -0,092112117 0 3,7239223 2,072290351 116,9642929 2,200621207 3,8753553 0,151433
+3,5651834 421103,4548 -0,15847151 -0,092107654 0 3,723655 2,07310912 116,9731819 2,201490679 3,8751834 0,15152849
+3,5650115 421135,455 -0,15847151 -0,092113383 0 3,7234831 2,073927881 116,9820708 2,202360144 3,8750115 0,15152849
+3,5647824 421167,4551 -0,15835692 -0,092110842 0 3,7231393 2,074746642 116,9909598 2,203229608 3,8747824 0,15164308
+3,5644767 421199,4553 -0,15864338 -0,092105106 0 3,7231202 2,075565405 116,9998487 2,204099075 3,8744767 0,15135662
+3,5644195 421231,4555 -0,15833782 -0,092111476 0 3,7227573 2,07638417 117,0087376 2,204968544 3,8744195 0,15166218
+3,564152 421263,4557 -0,15847151 -0,092104472 0 3,7226236 2,077202938 117,0176266 2,205838015 3,874152 0,15152849
+3,5640566 421295,4558 -0,15824233 -0,092116579 0 3,7222989 2,078021707 117,0265155 2,206707488 3,8740566 0,15175767
+3,5639801 421327,456 -0,15829962 -0,092112757 0 3,7222798 2,078840479 117,0354044 2,207576965 3,8739801 0,15170038
+3,5636365 421359,4562 -0,1584333 -0,092112117 0 3,7220697 2,079659248 117,0442934 2,208446437 3,8736365 0,1515667
+3,5635219 421391,4564 -0,15837602 -0,092115298 0 3,7218978 2,080478015 117,0531823 2,209315908 3,8735219 0,15162398
+3,563369 421423,4565 -0,15826143 -0,092112117 0 3,7216306 2,081296786 117,0620713 2,210185383 3,873369 0,15173857
+3,5631399 421455,4567 -0,15837602 -0,092110209 0 3,7215159 2,082115557 117,0709602 2,211054858 3,8731399 0,15162398
+3,562968 421487,4569 -0,15839511 -0,092108928 0 3,7213631 2,082934325 117,0798491 2,211924331 3,872968 0,15160489
+3,5627961 421519,4571 -0,15826143 -0,092112757 0 3,7210577 2,083753094 117,0887381 2,212793803 3,8727961 0,15173857
+3,5627389 421551,4572 -0,15828054 -0,092109561 0 3,7210195 2,084571862 117,097627 2,213663276 3,8727389 0,15171946
+3,5627007 421583,4574 -0,15837602 -0,092117853 0 3,7210767 2,085390631 117,106516 2,214532748 3,8727007 0,15162398
+3,5622423 421615,4576 -0,15829962 -0,092108928 0 3,720542 2,086209397 117,1154049 2,215402218 3,8722423 0,15170038
+3,5621276 421647,4578 -0,15839511 -0,092109561 0 3,7205226 2,087028162 117,1242938 2,216271686 3,8721276 0,15160489
+3,5618031 421679,458 -0,15837602 -0,092109561 0 3,7201791 2,08784693 117,1331828 2,217141158 3,8718031 0,15162398
+3,5618031 421711,4581 -0,15814684 -0,092110842 0 3,71995 2,0886657 117,1420717 2,218010632 3,8718031 0,15185316
+3,5616884 421743,4583 -0,15833782 -0,092105106 0 3,7200263 2,08948447 117,1509606 2,218880107 3,8716884 0,15166218
+3,5615737 421775,4585 -0,15822324 -0,092112117 0 3,7197969 2,090303241 117,1598496 2,219749582 3,8715737 0,15177676
+3,5613065 421807,4587 -0,15822324 -0,092111476 0 3,7195296 2,091122007 117,1687385 2,220619052 3,8713065 0,15177676
+3,5610201 421839,4588 -0,15814684 -0,09210702 0 3,719167 2,091940772 117,1776275 2,22148852 3,8710201 0,15185316
+3,5610008 421871,459 -0,15816595 -0,092109561 0 3,7191668 2,092759536 117,1865164 2,222357988 3,8710008 0,15183405
+3,5606573 421903,4592 -0,15818505 -0,092109561 0 3,7188423 2,093578304 117,1954053 2,22322746 3,8706573 0,15181495
+3,5604663 421935,4594 -0,15816595 -0,092111476 0 3,7186322 2,094397071 117,2042943 2,224096931 3,8704663 0,15183405
+3,5601225 421967,4595 -0,15801316 -0,092112117 0 3,7181356 2,095215836 117,2131832 2,2249664 3,8701225 0,15198684
+3,5600843 421999,4597 -0,15814684 -0,092112757 0 3,7182312 2,096034603 117,2220721 2,225835871 3,8700843 0,15185316
+3,5599506 422031,4599 -0,15797497 -0,092111476 0 3,7179255 2,096853376 117,2309611 2,226705347 3,8699506 0,15202503
+3,5597215 422063,4601 -0,15810865 -0,092106387 0 3,7178302 2,097672147 117,23985 2,227574822 3,8697215 0,15189135
+3,5596068 422095,4602 -0,15805136 -0,092108302 0 3,717658 2,098490917 117,248739 2,228444297 3,8696068 0,15194864
+3,5595112 422127,4604 -0,15782219 -0,092112117 0 3,7173333 2,099309689 117,2576279 2,229313773 3,8695112 0,15217781
+3,559263 422159,4606 -0,15808956 -0,092112117 0 3,7173526 2,100128463 117,2665168 2,230183251 3,869263 0,15191044
+3,5590148 422191,4608 -0,15793678 -0,092110842 0 3,7169516 2,100947235 117,2754058 2,231052727 3,8690148 0,15206322
+3,5588238 422223,4609 -0,15801316 -0,092104472 0 3,7168369 2,101766007 117,2842947 2,231922203 3,8688238 0,15198684
+3,5587857 422255,4611 -0,15786038 -0,092108302 0 3,716646 2,102584778 117,2931836 2,232791678 3,8687857 0,15213962
+3,5586138 422287,4613 -0,15782219 -0,092111476 0 3,7164359 2,103403546 117,3020726 2,233661151 3,8686138 0,15217781
+3,5583844 422319,4615 -0,157784 -0,092107654 0 3,7161684 2,104222312 117,3109615 2,23453062 3,8683844 0,152216
+3,5584037 422351,4617 -0,15782219 -0,092114031 0 3,7162259 2,105041078 117,3198505 2,23540009 3,8684037 0,15217781
+3,5581744 422383,4618 -0,15803227 -0,092108302 0 3,7162066 2,105859843 117,3287394 2,236269558 3,8681744 0,15196773
+3,5581934 422415,462 -0,15774581 -0,092105106 0 3,7159393 2,106678611 117,3376283 2,23713903 3,8681934 0,15225419
+3,5577543 422447,4622 -0,15789859 -0,092104472 0 3,7156529 2,107497379 117,3465173 2,238008502 3,8677543 0,15210141
+3,5577352 422479,4624 -0,1578413 -0,092115298 0 3,7155764 2,108316147 117,3554062 2,238877974 3,8677352 0,1521587
+3,5574105 422511,4625 -0,15812775 -0,092108302 0 3,7155383 2,109134915 117,3642951 2,239747446 3,8674105 0,15187225
+3,5574105 422543,4627 -0,15772671 -0,092115939 0 3,7151372 2,109953686 117,3731841 2,240616921 3,8674105 0,15227329
+3,5574105 422575,4629 -0,15801316 -0,092115939 0 3,7154236 2,110772454 117,382073 2,241486393 3,8674105 0,15198684
+3,5572004 422607,4631 -0,15782219 -0,092112757 0 3,7150226 2,111591227 117,390962 2,24235587 3,8672004 0,15217781
+3,5569141 422639,4632 -0,15799408 -0,092111476 0 3,7149081 2,112409996 117,3998509 2,243225343 3,8669141 0,15200592
+3,5567422 422671,4634 -0,15803227 -0,092115298 0 3,7147744 2,113228768 117,4087398 2,24409482 3,8667422 0,15196773
+3,5567231 422703,4636 -0,15793678 -0,092114665 0 3,7146599 2,114047545 117,4176288 2,244964301 3,8667231 0,15206322
+3,5564938 422735,4638 -0,15822324 -0,092117213 0 3,7147169 2,114866318 117,4265177 2,245833778 3,8664938 0,15177676
+3,5564938 422767,4639 -0,15810865 -0,09210702 0 3,7146025 2,115685093 117,4354067 2,246703257 3,8664938 0,15189135
+3,5559974 422799,4641 -0,15820414 -0,092114665 0 3,7142015 2,116503869 117,4442956 2,247572738 3,8659974 0,15179586
+3,555959 422831,4643 -0,15795587 -0,092110209 0 3,7139149 2,117322645 117,4531845 2,248442218 3,865959 0,15204413
+3,555959 422863,4645 -0,15818505 -0,09210702 0 3,714144 2,118141417 117,4620735 2,249311694 3,865959 0,15181495
+3,5558636 422895,4646 -0,15791768 -0,092111476 0 3,7137814 2,11896019 117,4709624 2,250181171 3,8658636 0,15208232
+3,5556536 422927,4648 -0,15795587 -0,092114031 0 3,7136095 2,11977896 117,4798513 2,251050646 3,8656536 0,15204413
+3,555558 422959,465 -0,15807046 -0,09210702 0 3,7136285 2,120597731 117,4887403 2,251920121 3,865558 0,15192954
+3,5554054 422991,4652 -0,15801316 -0,092116579 0 3,7134185 2,121416504 117,4976292 2,252789597 3,8654054 0,15198684
+3,555176 423023,4654 -0,15810865 -0,092115298 0 3,7132847 2,122235276 117,5065182 2,253659074 3,865176 0,15189135
+3,554985 423055,4655 -0,15805136 -0,092112757 0 3,7130363 2,123054045 117,5154071 2,254528547 3,864985 0,15194864
+3,5548322 423087,4657 -0,15803227 -0,092104472 0 3,7128644 2,123872814 117,524296 2,25539802 3,8648322 0,15196773
+3,5546796 423119,4659 -0,15803227 -0,092110842 0 3,7127118 2,124691583 117,533185 2,256267493 3,8646796 0,15196773
+3,554584 423151,4661 -0,15797497 -0,092112757 0 3,712559 2,125510353 117,5420739 2,257136967 3,864584 0,15202503
+3,5543358 423183,4662 -0,15801316 -0,092109561 0 3,7123489 2,126329122 117,5509628 2,25800644 3,8643358 0,15198684
+3,5541258 423215,4664 -0,15814684 -0,092109561 0 3,7122726 2,127147889 117,5598518 2,258875911 3,8641258 0,15185316
+3,5540302 423247,4666 -0,15803227 -0,092111476 0 3,7120624 2,127966655 117,5687407 2,25974538 3,8640302 0,15196773
+3,5536482 423279,4668 -0,15812775 -0,092116579 0 3,711776 2,128785421 117,5776297 2,26061485 3,8636482 0,15187225
+3,5537055 423311,4669 -0,15812775 -0,092111476 0 3,7118332 2,129604189 117,5865186 2,261484322 3,8637055 0,15187225
+3,5533044 423343,4671 -0,15793678 -0,092112757 0 3,7112412 2,130422956 117,5954075 2,262353793 3,8633044 0,15206322
+3,5533235 423375,4673 -0,15814684 -0,092110842 0 3,7114704 2,131241725 117,6042965 2,263223266 3,8633235 0,15185316
+3,5530944 423407,4675 -0,15812775 -0,092109561 0 3,7112222 2,132060494 117,6131854 2,264092739 3,8630944 0,15187225
+3,5530181 423439,4676 -0,15808956 -0,092114665 0 3,7111077 2,132879261 117,6220743 2,26496221 3,8630181 0,15191044
+3,5529034 423471,4678 -0,15816595 -0,092108302 0 3,7110693 2,13369803 117,6309633 2,265831683 3,8629034 0,15183405
+3,5526552 423503,468 -0,15818505 -0,092110842 0 3,7108402 2,134516801 117,6398522 2,266701157 3,8626552 0,15181495
+3,5525024 423535,4682 -0,15786038 -0,092117213 0 3,7103627 2,135335569 117,6487412 2,26757063 3,8625024 0,15213962
+3,5521395 423567,4683 -0,15803227 -0,092112757 0 3,7101717 2,136154338 117,6576301 2,268440102 3,8621395 0,15196773
+3,5522351 423599,4685 -0,15807046 -0,092114665 0 3,7103057 2,136973107 117,666519 2,269309576 3,8622351 0,15192954
+3,5520632 423631,4687 -0,15812775 -0,092114031 0 3,710191 2,137791873 117,675408 2,270179045 3,8620632 0,15187225
+3,5517576 423663,4689 -0,15812775 -0,092110209 0 3,7098854 2,138610639 117,6842969 2,271048515 3,8617576 0,15187225
+3,5515475 423695,4691 -0,15814684 -0,092108928 0 3,7096944 2,139429407 117,6931858 2,271917987 3,8615475 0,15185316
+3,5515475 423727,4692 -0,15797497 -0,09210702 0 3,7095225 2,140248175 117,7020748 2,272787459 3,8615475 0,15202503
+3,5513184 423759,4694 -0,15797497 -0,092105106 0 3,7092934 2,141066939 117,7109637 2,273656927 3,8613184 0,15202503
+3,5511847 423791,4696 -0,15799408 -0,092108928 0 3,7091787 2,141885706 117,7198527 2,274526397 3,8611847 0,15200592
+3,5509365 423823,4698 -0,15791768 -0,092116579 0 3,7088542 2,142704475 117,7287416 2,27539587 3,8609365 0,15208232
+3,5506308 423855,4699 -0,15797497 -0,092110209 0 3,7086058 2,143523243 117,7376305 2,276265342 3,8606308 0,15202503
+3,550669 423887,4701 -0,15822324 -0,092108302 0 3,7088921 2,144342013 117,7465195 2,277134817 3,860669 0,15177676
+3,5504208 423919,4703 -0,15805136 -0,092115298 0 3,708472 2,145160782 117,7554084 2,278004289 3,8604208 0,15194864
+3,5501726 423951,4705 -0,15812775 -0,092109561 0 3,7083004 2,145979548 117,7642974 2,278873759 3,8601726 0,15187225
+3,5501916 423983,4706 -0,15799408 -0,092108302 0 3,7081857 2,146798312 117,7731863 2,279743226 3,8601916 0,15200592
+3,5498478 424015,4708 -0,1578413 -0,092112117 0 3,707689 2,147617075 117,7820752 2,280612693 3,8598478 0,1521587
+3,549886 424047,471 -0,15799408 -0,092113383 0 3,70788 2,148435843 117,7909642 2,281482165 3,859886 0,15200592
+3,5494659 424079,4712 -0,15812775 -0,092116579 0 3,7075937 2,149254608 117,7998531 2,282351634 3,8594659 0,15187225
+3,5493321 424111,4713 -0,15791768 -0,092106387 0 3,7072499 2,150073374 117,808742 2,283221103 3,8593321 0,15208232
+3,5491221 424143,4715 -0,15793678 -0,092113383 0 3,7070589 2,15089214 117,817631 2,284090573 3,8591221 0,15206322
+3,5489311 424175,4717 -0,15793678 -0,092110209 0 3,7068679 2,151710907 117,8265199 2,284960044 3,8589311 0,15206322
+3,5490458 424207,4719 -0,15795587 -0,092110842 0 3,7070017 2,152529675 117,8354089 2,285829516 3,8590458 0,15204413
+3,5487783 424239,472 -0,15799408 -0,092110842 0 3,7067723 2,153348443 117,8442978 2,286698988 3,8587783 0,15200592
+3,5486255 424271,4722 -0,15787949 -0,092114031 0 3,7065051 2,154167208 117,8531867 2,287568457 3,8586255 0,15212051
+3,5483582 424303,4724 -0,15786038 -0,092106387 0 3,7062185 2,154985973 117,8620757 2,288437925 3,8583582 0,15213962
+3,5481672 424335,4726 -0,15808956 -0,092110209 0 3,7062569 2,155804737 117,8709646 2,289307393 3,8581672 0,15191044
+3,54811 424367,4728 -0,15803227 -0,09210702 0 3,7061422 2,156623501 117,8798535 2,290176861 3,85811 0,15196773
+3,5479188 424399,4729 -0,15793678 -0,092110842 0 3,7058556 2,157442264 117,8887425 2,291046328 3,8579188 0,15206322
+3,5479188 424431,4731 -0,15803227 -0,09210702 0 3,705951 2,158261027 117,8976314 2,291915794 3,8579188 0,15196773
+3,5474987 424463,4733 -0,15799408 -0,092112757 0 3,7054927 2,159079793 117,9065204 2,292785263 3,8574987 0,15200592
+3,5474415 424495,4735 -0,15799408 -0,092112117 0 3,7054355 2,159898557 117,9154093 2,293654731 3,8574415 0,15200592
+3,5472314 424527,4736 -0,15810865 -0,092110209 0 3,7053401 2,160717321 117,9242982 2,294524199 3,8572314 0,15189135
+3,5471168 424559,4738 -0,15791768 -0,092111476 0 3,7050345 2,161536084 117,9331872 2,295393665 3,8571168 0,15208232
+3,5467157 424591,474 -0,15791768 -0,092116579 0 3,7046335 2,162354847 117,9420761 2,296263132 3,8567157 0,15208232
+3,5467539 424623,4742 -0,15782219 -0,092108302 0 3,704576 2,163173611 117,950965 2,2971326 3,8567539 0,15217781
+3,5465248 424655,4743 -0,15789859 -0,092111476 0 3,7044234 2,163992374 117,959854 2,298002067 3,8565248 0,15210141
+3,5464866 424687,4745 -0,15770762 -0,09210702 0 3,7041943 2,164811137 117,9687429 2,298871533 3,8564866 0,15229238
+3,5461428 424719,4747 -0,15774581 -0,092108928 0 3,7038887 2,1656299 117,9776319 2,299740999 3,8561428 0,15225419
+3,54599 424751,4749 -0,15791768 -0,092105746 0 3,7039077 2,166448662 117,9865208 2,300610465 3,85599 0,15208232
+3,5459137 424783,475 -0,15791768 -0,092113383 0 3,7038314 2,167267424 117,9954097 2,301479931 3,8559137 0,15208232
+3,5457609 424815,4752 -0,15793678 -0,092108302 0 3,7036977 2,168086186 118,0042987 2,302349396 3,8557609 0,15206322
+3,5455127 424847,4754 -0,15789859 -0,092112117 0 3,7034113 2,168904949 118,0131876 2,303218862 3,8555127 0,15210141
+3,5454552 424879,4756 -0,15774581 -0,092111476 0 3,7032011 2,169723711 118,0220765 2,304088328 3,8554552 0,15225419
+3,5453024 424911,4757 -0,15803227 -0,092106387 0 3,7033346 2,170542473 118,0309655 2,304957794 3,8553024 0,15196773
+3,5450351 424943,4759 -0,1578413 -0,092104472 0 3,7028763 2,171361232 118,0398544 2,305827256 3,8550351 0,1521587
+3,544806 424975,4761 -0,15793678 -0,092110209 0 3,7027428 2,172179995 118,0487434 2,306696723 3,854806 0,15206322
+3,5446532 425007,4763 -0,15789859 -0,092110209 0 3,7025518 2,172998759 118,0576323 2,307566191 3,8546532 0,15210141
+3,5444622 425039,4764 -0,15787949 -0,092110209 0 3,7023418 2,173817524 118,0665212 2,308435659 3,8544622 0,15212051
+3,5443285 425071,4766 -0,1578413 -0,092110842 0 3,7021697 2,174636287 118,0754102 2,309305126 3,8543285 0,1521587
+3,544214 425103,4768 -0,15791768 -0,092105746 0 3,7021317 2,175455045 118,0842991 2,310174587 3,854214 0,15208232
+3,5439274 425135,477 -0,1578031 -0,092102565 0 3,7017305 2,176273803 118,093188 2,311044048 3,8539274 0,1521969
+3,544004 425167,4772 -0,15782219 -0,092109561 0 3,7018261 2,177092562 118,102077 2,311913511 3,854004 0,15217781
+3,5436792 425199,4773 -0,15791768 -0,092114031 0 3,701597 2,177911324 118,1109659 2,312782976 3,8536792 0,15208232
+3,5434117 425231,4775 -0,15795587 -0,092109561 0 3,7013676 2,178730086 118,1198549 2,313652442 3,8534117 0,15204413
+3,5433354 425263,4777 -0,1578413 -0,092111476 0 3,7011766 2,17954885 118,1287438 2,314521909 3,8533354 0,1521587
+3,5432208 425295,4779 -0,15791768 -0,092108302 0 3,7011385 2,180367615 118,1376327 2,315391378 3,8532208 0,15208232
+3,5428579 425327,478 -0,15782219 -0,092114665 0 3,70068 2,181186382 118,1465217 2,316260849 3,8528579 0,15217781
+3,5429535 425359,4782 -0,15782219 -0,092104472 0 3,7007756 2,182005148 118,1554106 2,317130319 3,8529535 0,15217781
+3,5427625 425391,4784 -0,15793678 -0,092109561 0 3,7006993 2,182823914 118,1642996 2,317999788 3,8527625 0,15206322
+3,5426097 425423,4786 -0,15768851 -0,092109561 0 3,7002983 2,183642679 118,1731885 2,318869257 3,8526097 0,15231149
+3,5424759 425455,4787 -0,15786038 -0,092105106 0 3,7003362 2,184461446 118,1820774 2,319738728 3,8524759 0,15213962
+3,5422087 425487,4789 -0,15782219 -0,092112757 0 3,7000308 2,185280212 118,1909664 2,320608198 3,8522087 0,15217781
+3,5419796 425519,4791 -0,15787949 -0,092117213 0 3,6998591 2,186098976 118,1998553 2,321477665 3,8519796 0,15212051
+3,5418458 425551,4793 -0,15772671 -0,092110209 0 3,6995726 2,186917737 118,2087442 2,32234713 3,8518458 0,15227329
+3,5416358 425583,4794 -0,15763122 -0,092114031 0 3,6992669 2,187736501 118,2176332 2,323216597 3,8516358 0,15236878
+3,5415785 425615,4796 -0,15753573 -0,092106387 0 3,6991143 2,188555262 118,2265221 2,324086062 3,8515785 0,15246427
+3,541311 425647,4798 -0,15772671 -0,092108928 0 3,6990378 2,18937402 118,2354111 2,324955524 3,851311 0,15227329
+3,5413682 425679,48 -0,15765032 -0,092110209 0 3,6990185 2,190192775 118,2443 2,325824981 3,8513682 0,15234968
+3,5409672 425711,4801 -0,15768851 -0,092117213 0 3,6986558 2,191011531 118,2531889 2,32669444 3,8509672 0,15231149
+3,5408337 425743,4803 -0,1578031 -0,092111476 0 3,6986368 2,191830287 118,2620779 2,3275639 3,8508337 0,1521969
+3,5405853 425775,4805 -0,15789859 -0,092110842 0 3,6984839 2,192649048 118,2709668 2,328433364 3,8505853 0,15210141
+3,5403562 425807,4807 -0,157784 -0,092111476 0 3,6981401 2,193467804 118,2798557 2,329302824 3,8503562 0,152216
+3,5402989 425839,4809 -0,15766941 -0,092110209 0 3,6979682 2,19428656 118,2887447 2,330172282 3,8502989 0,15233059
+3,5402224 425871,481 -0,15763122 -0,092110842 0 3,6978536 2,195105314 118,2976336 2,33104174 3,8502224 0,15236878
+3,5400505 425903,4812 -0,15753573 -0,092109561 0 3,6975863 2,19592407 118,3065226 2,331911199 3,8500505 0,15246427
+3,5398979 425935,4814 -0,15768851 -0,092109561 0 3,6975865 2,196742828 118,3154115 2,33278066 3,8498979 0,15231149
+3,5395732 425967,4816 -0,15759303 -0,092109561 0 3,6971662 2,197561585 118,3243004 2,33365012 3,8495732 0,15240697
+3,5394967 425999,4817 -0,15759303 -0,092112757 0 3,6970897 2,198380343 118,3331894 2,334519581 3,8494967 0,15240697
+3,5393057 426031,4819 -0,15766941 -0,092109561 0 3,696975 2,199199099 118,3420783 2,33538904 3,8493057 0,15233059
+3,5390575 426063,4821 -0,15766941 -0,092114665 0 3,6967268 2,200017856 118,3509672 2,3362585 3,8490575 0,15233059
+3,5389812 426095,4823 -0,15761213 -0,092105746 0 3,6965933 2,200836613 118,3598562 2,337127961 3,8489812 0,15238787
+3,5387902 426127,4824 -0,15772671 -0,092115939 0 3,696517 2,201655368 118,3687451 2,337997419 3,8487902 0,15227329
+3,5387518 426159,4826 -0,15765032 -0,092108302 0 3,6964021 2,202474124 118,3776341 2,338866878 3,8487518 0,15234968
+3,5386946 426191,4828 -0,15753573 -0,092110842 0 3,6962304 2,203292881 118,386523 2,339736339 3,8486946 0,15246427
+3,5383317 426223,483 -0,15759303 -0,092109561 0 3,6959248 2,204111641 118,3954119 2,340605801 3,8483317 0,15240697
+3,5381789 426255,4831 -0,15753573 -0,092101924 0 3,6957147 2,204930396 118,4043009 2,34147526 3,8481789 0,15246427
+3,5382555 426287,4833 -0,15738295 -0,092110209 0 3,6956384 2,205749155 118,4131898 2,342344722 3,8482555 0,15261705
+3,5379689 426319,4835 -0,15747844 -0,092121035 0 3,6954472 2,20656792 118,4220787 2,343214191 3,8479689 0,15252156
+3,5378544 426351,4837 -0,15757392 -0,092110209 0 3,6954284 2,207386688 118,4309677 2,344083663 3,8478544 0,15242608
+3,5376444 426383,4838 -0,15744025 -0,092112757 0 3,6950846 2,208205458 118,4398566 2,344953137 3,8476444 0,15255975
+3,5373387 426415,484 -0,15763122 -0,092113383 0 3,6949699 2,20902423 118,4487456 2,345822613 3,8473387 0,15236878
+3,5372241 426447,4842 -0,15753573 -0,092114031 0 3,6947598 2,209843 118,4576345 2,346692087 3,8472241 0,15246427
+3,5370712 426479,4844 -0,15768851 -0,092110209 0 3,6947598 2,210661772 118,4665234 2,347561563 3,8470712 0,15231149
+3,5369377 426511,4846 -0,15745935 -0,09210702 0 3,694397 2,211480544 118,4754124 2,348431039 3,8469377 0,15254065
+3,5368996 426543,4847 -0,15724927 -0,092117853 0 3,6941488 2,212299316 118,4843013 2,349300515 3,8468996 0,15275073
+3,5367086 426575,4849 -0,15753573 -0,092113383 0 3,6942444 2,213118087 118,4931903 2,35016999 3,8467086 0,15246427
+3,5364411 426607,4851 -0,15753573 -0,092105746 0 3,6939769 2,213936858 118,5020792 2,351039466 3,8464411 0,15246427
+3,536212 426639,4853 -0,15742116 -0,092110209 0 3,6936331 2,214755631 118,5109681 2,351908943 3,846212 0,15257884
+3,5360591 426671,4854 -0,15736386 -0,092110209 0 3,693423 2,215574404 118,5198571 2,35277842 3,8460591 0,15263614
+3,5358491 426703,4856 -0,15759303 -0,092105106 0 3,6934421 2,216393172 118,528746 2,353647892 3,8458491 0,15240697
+3,5357728 426735,4858 -0,15747844 -0,092110842 0 3,6932511 2,217211945 118,5376349 2,354517369 3,8457728 0,15252156
+3,5355434 426767,486 -0,15744025 -0,092112757 0 3,6929836 2,218030717 118,5465239 2,355386845 3,8455434 0,15255975
+3,5354481 426799,4861 -0,15745935 -0,092103831 0 3,6929073 2,21884949 118,5554128 2,356256322 3,8454481 0,15254065
+3,5353715 426831,4863 -0,15736386 -0,092112117 0 3,6927354 2,219668263 118,5643018 2,3571258 3,8453715 0,15263614
+3,5351233 426863,4865 -0,15728746 -0,092109561 0 3,6924107 2,220487036 118,5731907 2,357995277 3,8451233 0,15271254
+3,5348177 426895,4867 -0,15742116 -0,092113383 0 3,6922388 2,22130581 118,5820796 2,358864755 3,8448177 0,15257884
+3,5347033 426927,4868 -0,15744025 -0,092110842 0 3,6921434 2,222124583 118,5909686 2,359734232 3,8447033 0,15255975
+3,5345695 426959,487 -0,15738295 -0,092107654 0 3,6919525 2,222943355 118,5998575 2,360603708 3,8445695 0,15261705
+3,5344932 426991,4872 -0,15730657 -0,092111476 0 3,6917999 2,223762127 118,6087464 2,361473185 3,8444932 0,15269343
+3,5343404 427023,4874 -0,15738295 -0,092106387 0 3,6917233 2,224580899 118,6176354 2,362342661 3,8443404 0,15261705
+3,5341494 427055,4875 -0,15734476 -0,092110842 0 3,6914942 2,225399673 118,6265243 2,363212139 3,8441494 0,15265524
+3,5339012 427087,4877 -0,15740205 -0,092112117 0 3,6913033 2,226218448 118,6354133 2,364081618 3,8439012 0,15259795
+3,5337484 427119,4879 -0,15740205 -0,092108302 0 3,6911504 2,22703722 118,6443022 2,364951095 3,8437484 0,15259795
+3,5336146 427151,4881 -0,15717289 -0,092122309 0 3,6907876 2,227855994 118,6531911 2,365820573 3,8436146 0,15282711
+3,5334046 427183,4883 -0,15730657 -0,092114031 0 3,6907113 2,228674767 118,6620801 2,36669005 3,8434046 0,15269343
+3,5333281 427215,4884 -0,15734476 -0,092114031 0 3,6906729 2,229493541 118,670969 2,367559529 3,8433281 0,15265524
+3,5331564 427247,4886 -0,15726838 -0,092115298 0 3,6904247 2,230312315 118,6798579 2,368429007 3,8431564 0,15273162
+3,5330036 427279,4888 -0,15726838 -0,092108302 0 3,6902719 2,231131089 118,6887469 2,369298485 3,8430036 0,15273162
+3,5330036 427311,489 -0,15724927 -0,092107654 0 3,6902528 2,231949864 118,6976358 2,370167964 3,8430036 0,15275073
+3,5325832 427343,4891 -0,15736386 -0,092112757 0 3,6899471 2,232768635 118,7065248 2,37103744 3,8425832 0,15263614
+3,5325069 427375,4893 -0,15723018 -0,092115298 0 3,6897371 2,23358741 118,7154137 2,371906918 3,8425069 0,15276982
+3,532335 427407,4895 -0,15745935 -0,092111476 0 3,6897943 2,234406183 118,7243026 2,372776396 3,842335 0,15254065
+3,5320678 427439,4897 -0,15723018 -0,092111476 0 3,6892979 2,235224955 118,7331916 2,373645872 3,8420678 0,15276982
+3,5321441 427471,4898 -0,15744025 -0,092115298 0 3,6895843 2,236043728 118,7420805 2,374515349 3,8421441 0,15255975
+3,5320296 427503,49 -0,15724927 -0,092116579 0 3,6892788 2,236862498 118,7509694 2,375384824 3,8420296 0,15275073
+3,531743 427535,4902 -0,15734476 -0,09210702 0 3,6890879 2,23768127 118,7598584 2,376254299 3,841743 0,15265524
+3,5314949 427567,4904 -0,15726838 -0,092111476 0 3,6887631 2,238500041 118,7687473 2,377123775 3,8414949 0,15273162
+3,5313802 427599,4905 -0,15744025 -0,092113383 0 3,6888204 2,23931882 118,7776363 2,377993258 3,8413802 0,15255975
+3,5312083 427631,4907 -0,15723018 -0,092114031 0 3,6884384 2,240137598 118,7865252 2,378862741 3,8412083 0,15276982
+3,5310745 427663,4909 -0,15734476 -0,092111476 0 3,6884193 2,240956374 118,7954141 2,379732221 3,8410745 0,15265524
+3,5308645 427695,4911 -0,15721108 -0,092110842 0 3,6880755 2,241775151 118,8043031 2,380601702 3,8408645 0,15278892
+3,5308454 427727,4912 -0,15721108 -0,092107654 0 3,6880565 2,242593925 118,813192 2,381471181 3,8408454 0,15278892
+3,5305972 427759,4914 -0,15730657 -0,092110842 0 3,6879039 2,2434127 118,822081 2,38234066 3,8405972 0,15269343
+3,5305207 427791,4916 -0,15717289 -0,092111476 0 3,6876936 2,244231476 118,8309699 2,38321014 3,8405207 0,15282711
+3,5301962 427823,4918 -0,15721108 -0,092112117 0 3,6874073 2,245050255 118,8398588 2,384079624 3,8401962 0,15278892
+3,5301006 427855,492 -0,15724927 -0,092108302 0 3,6873498 2,245869031 118,8487478 2,384949105 3,8401006 0,15275073
+3,5298905 427887,4921 -0,15717289 -0,092115298 0 3,6870635 2,246687807 118,8576367 2,385818585 3,8398905 0,15282711
+3,5298715 427919,4923 -0,15730657 -0,092110842 0 3,6871781 2,247506584 118,8665256 2,386688066 3,8398715 0,15269343
+3,5296805 427951,4925 -0,15717289 -0,092108928 0 3,6868534 2,248325362 118,8754146 2,387557549 3,8396805 0,15282711
+3,5293558 427983,4927 -0,15726838 -0,092112757 0 3,6866241 2,249144135 118,8843035 2,388427026 3,8393558 0,15273162
+3,5293367 428015,4928 -0,15724927 -0,092112117 0 3,6865859 2,24996291 118,8931925 2,389296505 3,8393367 0,15275073
+3,5291648 428047,493 -0,15732567 -0,092111476 0 3,6864905 2,250781683 118,9020814 2,390165983 3,8391648 0,15267433
+3,5290504 428079,4932 -0,15715379 -0,092103831 0 3,6862042 2,251600459 118,9109703 2,391035463 3,8390504 0,15284621
+3,5288975 428111,4934 -0,15719198 -0,092110842 0 3,6860895 2,252419235 118,9198593 2,391904943 3,8388975 0,15280802
+3,5288594 428143,4935 -0,1570583 -0,092109561 0 3,6859176 2,25323801 118,9287482 2,392774423 3,8388594 0,1529417
+3,5285728 428175,4937 -0,15713468 -0,092107654 0 3,6857076 2,254056783 118,9376371 2,3936439 3,8385728 0,15286532
+3,5283246 428207,4939 -0,157001 -0,092117213 0 3,6853256 2,254875557 118,9465261 2,394513378 3,8383246 0,152999
+3,5283055 428239,4941 -0,15717289 -0,092115939 0 3,6854784 2,255694331 118,955415 2,395382856 3,8383055 0,15282711
+3,5279617 428271,4942 -0,15719198 -0,092117213 0 3,6851537 2,256513105 118,964304 2,396252335 3,8379617 0,15280802
+3,5278471 428303,4944 -0,15711559 -0,092114031 0 3,6849627 2,257331879 118,9731929 2,397121813 3,8378471 0,15288441
+3,5276179 428335,4946 -0,15717289 -0,092117853 0 3,6847908 2,258150654 118,9820818 2,397991292 3,8376179 0,15282711
+3,5276942 428367,4948 -0,15709649 -0,092111476 0 3,6847906 2,25896943 118,9909708 2,398860773 3,8376942 0,15290351
+3,527446 428399,4949 -0,15719198 -0,092110209 0 3,684638 2,259788208 118,9998597 2,399730255 3,837446 0,15280802
+3,5271597 428431,4951 -0,15698192 -0,092108928 0 3,6841416 2,260606988 119,0087486 2,40059974 3,8371597 0,15301808
+3,5270641 428463,4953 -0,15692462 -0,092111476 0 3,6839888 2,261425767 119,0176376 2,401469223 3,8370641 0,15307538
+3,5269113 428495,4955 -0,15709649 -0,092113383 0 3,6840076 2,262244548 119,0265265 2,402338709 3,8369113 0,15290351
+3,5268159 428527,4957 -0,1570774 -0,092103831 0 3,6838932 2,263063326 119,0354155 2,403208192 3,8368159 0,1529226
+3,5267584 428559,4958 -0,15692462 -0,092112757 0 3,6836832 2,2638821 119,0443044 2,40407767 3,8367584 0,15307538
+3,5264149 428591,496 -0,15690552 -0,092105106 0 3,6833203 2,264700876 119,0531933 2,40494715 3,8364149 0,15309448
+3,5263765 428623,4962 -0,15688643 -0,092110842 0 3,6832628 2,265519655 119,0620823 2,405816634 3,8363765 0,15311357
+3,5261664 428655,4964 -0,1570774 -0,092104472 0 3,6832438 2,266338436 119,0709712 2,406686119 3,8361664 0,1529226
+3,5258801 428687,4965 -0,15688643 -0,092110209 0 3,6827664 2,267157217 119,0798601 2,407555605 3,8358801 0,15311357
+3,5258417 428719,4967 -0,15698192 -0,092108928 0 3,6828237 2,267975996 119,0887491 2,408425088 3,8358417 0,15301808
+3,5257463 428751,4969 -0,15696281 -0,092110209 0 3,6827092 2,268794775 119,097638 2,409294572 3,8357463 0,15303719
+3,5254216 428783,4971 -0,15679094 -0,092109561 0 3,6822126 2,269613553 119,106527 2,410164055 3,8354216 0,15320906
+3,5253644 428815,4972 -0,15713468 -0,092111476 0 3,6824992 2,270432327 119,1154159 2,411033533 3,8353644 0,15286532
+3,5250778 428847,4974 -0,15702011 -0,09210702 0 3,6820979 2,2712511 119,1243048 2,41190301 3,8350778 0,15297989
+3,5250587 428879,4976 -0,157001 -0,092108928 0 3,6820598 2,272069874 119,1331938 2,412772488 3,8350587 0,152999
+3,5249059 428911,4978 -0,15690552 -0,092107654 0 3,6818113 2,272888649 119,1420827 2,413641968 3,8349059 0,15309448
+3,5246768 428943,4979 -0,15694371 -0,092113383 0 3,6816206 2,273707424 119,1509717 2,414511447 3,8346768 0,15305629
+3,5245433 428975,4981 -0,1570392 -0,09210702 0 3,6815825 2,274526198 119,1598606 2,415380926 3,8345433 0,1529608
+3,5245049 429007,4983 -0,1570774 -0,092112117 0 3,6815822 2,275344974 119,1687495 2,416250405 3,8345049 0,1529226
+3,5242186 429039,4985 -0,15684822 -0,092112117 0 3,6810668 2,27616375 119,1776385 2,417119887 3,8342186 0,15315178
+3,5240467 429071,4986 -0,157001 -0,092108302 0 3,6810477 2,276982525 119,1865274 2,417989366 3,8340467 0,152999
+3,5240085 429103,4988 -0,15686733 -0,092107654 0 3,6808758 2,277801302 119,1954163 2,418858847 3,8340085 0,15313267
+3,5239129 429135,499 -0,15684822 -0,092110842 0 3,6807611 2,278620076 119,2043053 2,419728325 3,8339129 0,15315178
+3,5236456 429167,4992 -0,15682913 -0,092114665 0 3,6804748 2,279438852 119,2131942 2,420597806 3,8336456 0,15317087
+3,5234928 429199,4993 -0,15675274 -0,092110842 0 3,6802456 2,280257627 119,2220832 2,421467286 3,8334928 0,15324726
+3,5233209 429231,4995 -0,15692462 -0,092114031 0 3,6802456 2,2810764 119,2309721 2,422336762 3,8333209 0,15307538
+3,5230918 429263,4997 -0,15690552 -0,09210702 0 3,6799972 2,281895175 119,239861 2,423206241 3,8330918 0,15309448
+3,5230918 429295,4999 -0,15677184 -0,092114031 0 3,6798637 2,282713951 119,24875 2,424075722 3,8330918 0,15322816
+3,5228817 429327,5001 -0,15681003 -0,092109561 0 3,6796918 2,283532729 119,2576389 2,424945204 3,8328817 0,15318997
+3,5227098 429359,5002 -0,15686733 -0,092111476 0 3,6795771 2,284351504 119,2665278 2,425814684 3,8327098 0,15313267
+3,5224998 429391,5004 -0,157001 -0,092110842 0 3,6795008 2,28517028 119,2754168 2,426684164 3,8324998 0,152999
+3,522366 429423,5006 -0,15677184 -0,092114665 0 3,6791379 2,285989054 119,2843057 2,427553642 3,832366 0,15322816
+3,5222323 429455,5008 -0,15686733 -0,092110842 0 3,6790996 2,286807828 119,2931947 2,428423121 3,8322323 0,15313267
+3,5220413 429487,5009 -0,15679094 -0,092114665 0 3,6788323 2,287626603 119,3020836 2,4292926 3,8320413 0,15320906
+3,521946 429519,5011 -0,15688643 -0,092111476 0 3,6788323 2,288445377 119,3109725 2,430162079 3,831946 0,15311357
+3,5217931 429551,5013 -0,15673365 -0,092108302 0 3,6785269 2,289264153 119,3198615 2,431031558 3,8317931 0,15326635
+3,5216975 429583,5015 -0,15673365 -0,092116579 0 3,6784313 2,29008293 119,3287504 2,43190104 3,8316975 0,15326635
+3,5215447 429615,5016 -0,15675274 -0,092114031 0 3,6782975 2,290901706 119,3376393 2,432770521 3,8315447 0,15324726
+3,5212965 429647,5018 -0,15675274 -0,092116579 0 3,6780493 2,291720481 119,3465283 2,43364 3,8312965 0,15324726
+3,5210292 429679,502 -0,15675274 -0,092106387 0 3,6777821 2,292539256 119,3554172 2,434509479 3,8310292 0,15324726
+3,5210483 429711,5022 -0,15675274 -0,09210702 0 3,6778011 2,293358031 119,3643062 2,435378959 3,8310483 0,15324726
+3,5210483 429743,5023 -0,15681003 -0,092108928 0 3,6778584 2,294176808 119,3731951 2,43624844 3,8310483 0,15318997
+3,5208001 429775,5025 -0,15673365 -0,092112117 0 3,6775339 2,294995585 119,382084 2,437117921 3,8308001 0,15326635
+3,5204563 429807,5027 -0,15673365 -0,092110209 0 3,6771901 2,295814362 119,390973 2,437987403 3,8304563 0,15326635
+3,5204179 429839,5029 -0,15669546 -0,092112757 0 3,6771133 2,296633139 119,3998619 2,438856885 3,8304179 0,15330454
+3,5202463 429871,503 -0,15659997 -0,092115298 0 3,6768463 2,297451916 119,4087508 2,439726366 3,8302463 0,15340003
+3,520036 429903,5032 -0,15663816 -0,092111476 0 3,6766741 2,298270691 119,4176398 2,440595846 3,830036 0,15336184
+3,5200553 429935,5034 -0,15661906 -0,092114031 0 3,6766744 2,299089468 119,4265287 2,441465327 3,8300553 0,15338094
+3,519845 429967,5036 -0,15652357 -0,092112757 0 3,6763685 2,299908246 119,4354177 2,442334809 3,829845 0,15347643
+3,519635 429999,5038 -0,15671454 -0,092112757 0 3,6763494 2,300727023 119,4443066 2,443204291 3,829635 0,15328546
+3,5194631 430031,5039 -0,15667635 -0,092110209 0 3,6761394 2,3015458 119,4531955 2,444073772 3,8294631 0,15332365
+3,5191958 430063,5041 -0,15671454 -0,092112757 0 3,6759102 2,302364578 119,4620845 2,444943254 3,8291958 0,15328546
+3,5192339 430095,5043 -0,15665725 -0,092119761 0 3,6758912 2,303183357 119,4709734 2,445812738 3,8292339 0,15334275
+3,5190048 430127,5045 -0,156409 -0,092111476 0 3,6754138 2,304002135 119,4798623 2,446682221 3,8290048 0,153591
+3,519062 430159,5046 -0,15663816 -0,092112757 0 3,6757002 2,304820912 119,4887513 2,447551702 3,829062 0,15336184
+3,5187948 430191,5048 -0,15648538 -0,092113383 0 3,6752801 2,305639687 119,4976402 2,448421181 3,8287948 0,15351462
+3,518661 430223,505 -0,15663816 -0,092110842 0 3,6752992 2,306458461 119,5065292 2,44929066 3,828661 0,15336184
+3,5183747 430255,5052 -0,15650448 -0,092112117 0 3,6748791 2,307277235 119,5154181 2,450160139 3,8283747 0,15349552
+3,5183747 430287,5053 -0,15663816 -0,092114665 0 3,6750128 2,308096013 119,524307 2,451029621 3,8283747 0,15336184
+3,5182409 430319,5055 -0,15652357 -0,092111476 0 3,6747644 2,308914791 119,533196 2,451899103 3,8282409 0,15347643
+3,5181453 430351,5057 -0,15669546 -0,092107654 0 3,6748407 2,30973357 119,5420849 2,452768587 3,8281453 0,15330454
+3,5177252 430383,5059 -0,15658087 -0,092108928 0 3,6743062 2,310552349 119,5509739 2,45363807 3,8277252 0,15341913
+3,5177252 430415,506 -0,15650448 -0,092110842 0 3,6742296 2,311371126 119,5598628 2,454507552 3,8277252 0,15349552
+3,5175533 430447,5062 -0,15656176 -0,092109561 0 3,6741152 2,312189905 119,5687517 2,455377035 3,8275533 0,15343824
+3,517477 430479,5064 -0,15663816 -0,092110842 0 3,6741152 2,313008681 119,5776407 2,456246516 3,827477 0,15336184
+3,5172286 430511,5066 -0,15659997 -0,092108302 0 3,6738286 2,313827457 119,5865296 2,457115997 3,8272286 0,15340003
+3,5169423 430543,5067 -0,156409 -0,092110842 0 3,6733513 2,314646233 119,5954185 2,457985476 3,8269423 0,153591
+3,5170186 430575,5069 -0,15638989 -0,092108928 0 3,6734085 2,315465008 119,6043075 2,458854956 3,8270186 0,15361011
+3,5167513 430607,5071 -0,15646628 -0,09210702 0 3,6732175 2,316283782 119,6131964 2,459724434 3,8267513 0,15353372
+3,5165031 430639,5073 -0,1563517 -0,092108928 0 3,6728549 2,317102556 119,6220854 2,460593912 3,8265031 0,1536483
+3,5165794 430671,5075 -0,156409 -0,092111476 0 3,6729884 2,31792133 119,6309743 2,46146339 3,8265794 0,153591
+3,5163693 430703,5076 -0,15637079 -0,092114031 0 3,6727402 2,318740101 119,6398632 2,462332866 3,8263693 0,15362921
+3,5162547 430735,5078 -0,1563517 -0,092113383 0 3,6726065 2,319558874 119,6487522 2,463202343 3,8262547 0,1536483
+3,5160255 430767,508 -0,15638989 -0,092115298 0 3,6724155 2,320377648 119,6576411 2,464071821 3,8260255 0,15361011
+3,5158918 430799,5082 -0,15637079 -0,092105746 0 3,6722627 2,321196421 119,66653 2,464941298 3,8258918 0,15362921
+3,5158536 430831,5083 -0,15637079 -0,092114665 0 3,6722245 2,322015193 119,675419 2,465810775 3,8258536 0,15362921
+3,5155864 430863,5085 -0,15637079 -0,09210702 0 3,6719573 2,322833965 119,6843079 2,466680251 3,8255864 0,15362921
+3,5155289 430895,5087 -0,15623711 -0,092116579 0 3,671766 2,323652739 119,6931969 2,467549729 3,8255289 0,15376289
+3,5153763 430927,5089 -0,15637079 -0,092107654 0 3,6717472 2,324471517 119,7020858 2,468419211 3,8253763 0,15362921
+3,5152998 430959,509 -0,15625621 -0,092111476 0 3,671556 2,325290293 119,7109747 2,469288692 3,8252998 0,15374379
+3,5150325 430991,5092 -0,15625621 -0,092109561 0 3,6712887 2,326109073 119,7198637 2,470158177 3,8250325 0,15374379
+3,514746 431023,5094 -0,15623711 -0,092112757 0 3,6709831 2,326927852 119,7287526 2,471027661 3,824746 0,15376289
+3,5147269 431055,5096 -0,15637079 -0,092108928 0 3,6710978 2,327746632 119,7376415 2,471897144 3,8247269 0,15362921
+3,5144978 431087,5097 -0,15625621 -0,092116579 0 3,670754 2,328565412 119,7465305 2,472766629 3,8244978 0,15374379
+3,5142877 431119,5099 -0,15617982 -0,092113383 0 3,6704676 2,329384191 119,7554194 2,473636113 3,8242877 0,15382018
+3,5142493 431151,5101 -0,1563517 -0,092115298 0 3,6706011 2,330202968 119,7643084 2,474505594 3,8242493 0,1536483
+3,5142112 431183,5103 -0,15629441 -0,092115298 0 3,6705055 2,331021744 119,7731973 2,475375075 3,8242112 0,15370559
+3,5139058 431215,5104 -0,15619892 -0,092105106 0 3,6701047 2,331840522 119,7820862 2,476244557 3,8239058 0,15380108
+3,5138674 431247,5106 -0,15619892 -0,092112117 0 3,6700664 2,332659298 119,7909752 2,477114037 3,8238674 0,15380108
+3,5137529 431279,5108 -0,15612254 -0,092114665 0 3,6698754 2,333478074 119,7998641 2,477983518 3,8237529 0,15387746
+3,5135429 431311,511 -0,15617982 -0,092115298 0 3,6697228 2,334296851 119,808753 2,478852999 3,8235429 0,15382018
+3,513371 431343,5112 -0,15602705 -0,092114031 0 3,6693981 2,335115624 119,817642 2,479722477 3,823371 0,15397295
+3,5133328 431375,5113 -0,15604614 -0,092112117 0 3,669379 2,335934397 119,8265309 2,480591954 3,8233328 0,15395386
+3,5131419 431407,5115 -0,15598884 -0,092108928 0 3,6691308 2,336753172 119,8354199 2,481461434 3,8231419 0,15401116
+3,5128934 431439,5117 -0,15596975 -0,092108302 0 3,6688633 2,337571948 119,8443088 2,482330914 3,8228934 0,15403025
+3,5128934 431471,5119 -0,15604614 -0,092108302 0 3,6689396 2,338390722 119,8531977 2,483200392 3,8228934 0,15395386
+3,512569 431503,512 -0,15608433 -0,092115939 0 3,6686532 2,339209492 119,8620867 2,484069866 3,822569 0,15391567
+3,5123777 431535,5122 -0,15600795 -0,092116579 0 3,6683857 2,340028264 119,8709756 2,484939342 3,8223777 0,15399205
+3,5124733 431567,5124 -0,15587427 -0,092111476 0 3,6683476 2,340847034 119,8798646 2,485808816 3,8224733 0,15412573
+3,5122442 431599,5126 -0,15602705 -0,092108302 0 3,6682713 2,341665808 119,8887535 2,486678295 3,8222442 0,15397295
+3,5120151 431631,5127 -0,15589336 -0,092102565 0 3,6679084 2,342484584 119,8976424 2,487547774 3,8220151 0,15410664
+3,5119576 431663,5129 -0,15610343 -0,092115298 0 3,668061 2,343303358 119,9065314 2,488417253 3,8219576 0,15389657
+3,5117857 431695,5131 -0,15604614 -0,092112117 0 3,6678319 2,344122131 119,9154203 2,48928673 3,8217857 0,15395386
+3,5116329 431727,5133 -0,15591246 -0,092110209 0 3,6675453 2,344940901 119,9243092 2,490156204 3,8216329 0,15408754
+3,5115948 431759,5134 -0,15587427 -0,092109561 0 3,667469 2,345759673 119,9331982 2,49102568 3,8215948 0,15412573
+3,5113275 431791,5136 -0,15604614 -0,092111476 0 3,6673737 2,346578447 119,9420871 2,491895159 3,8213275 0,15395386
+3,5112703 431823,5138 -0,15596975 -0,092112757 0 3,6672401 2,347397218 119,9509761 2,492764633 3,8212703 0,15403025
+3,5110219 431855,514 -0,15579787 -0,092109561 0 3,6668198 2,348215987 119,959865 2,493634107 3,8210219 0,15420213
+3,5110793 431887,5141 -0,15595065 -0,092109561 0 3,6670299 2,349034759 119,9687539 2,494503583 3,8210793 0,15404935
+3,5108883 431919,5143 -0,15579787 -0,092119761 0 3,6666863 2,349853533 119,9776429 2,495373062 3,8208883 0,15420213
+3,5106208 431951,5145 -0,15585516 -0,092115939 0 3,666476 2,350672308 119,9865318 2,496242541 3,8206208 0,15414484
+3,5104299 431983,5147 -0,15595065 -0,092109561 0 3,6663804 2,351491084 119,9954207 2,49711202 3,8204299 0,15404935
+3,5102961 432015,5149 -0,15587427 -0,092110209 0 3,6661704 2,352309855 120,0043097 2,497981496 3,8202961 0,15412573
+3,5101626 432047,515 -0,15585516 -0,092110842 0 3,6660178 2,353128623 120,0131986 2,498850968 3,8201626 0,15414484
+3,5102961 432079,5152 -0,15570238 -0,092115939 0 3,6659985 2,353947393 120,0220876 2,499720442 3,8202961 0,15429762
+3,5099907 432111,5154 -0,15583608 -0,092108928 0 3,6658268 2,354766165 120,0309765 2,500589918 3,8199907 0,15416392
+3,5098951 432143,5156 -0,15593156 -0,092112757 0 3,6658266 2,355584934 120,0398654 2,501459391 3,8198951 0,15406844
+3,509685 432175,5157 -0,15581697 -0,092108928 0 3,6655021 2,356403701 120,0487544 2,502328862 3,819685 0,15418303
+3,5096278 432207,5159 -0,15593156 -0,092102565 0 3,6655593 2,357222471 120,0576433 2,503198335 3,8196278 0,15406844
+3,5093794 432239,5161 -0,15572149 -0,092112757 0 3,6651008 2,358041237 120,0665322 2,504067806 3,8193794 0,15427851
+3,5092077 432271,5163 -0,15574059 -0,092111476 0 3,6649482 2,358860003 120,0754212 2,504937276 3,8192077 0,15425941
+3,5089784 432303,5164 -0,15570238 -0,092116579 0 3,6646807 2,359678769 120,0843101 2,505806745 3,8189784 0,15429762
+3,5089974 432335,5166 -0,15579787 -0,092111476 0 3,6647954 2,360497538 120,0931991 2,506676218 3,8189974 0,15420213
+3,5087111 432367,5168 -0,15572149 -0,092112757 0 3,6644325 2,361316307 120,102088 2,507545691 3,8187111 0,15427851
+3,508673 432399,517 -0,15574059 -0,092115939 0 3,6644135 2,362135077 120,1109769 2,508415165 3,818673 0,15425941
+3,508482 432431,5171 -0,15575968 -0,092108928 0 3,6642416 2,362953847 120,1198659 2,509284639 3,818482 0,15424032
+3,5082526 432463,5173 -0,1556451 -0,092111476 0 3,6638978 2,363772614 120,1287548 2,51015411 3,8182526 0,1543549
+3,5081573 432495,5175 -0,15575968 -0,092106387 0 3,6639168 2,364591381 120,1376437 2,511023581 3,8181573 0,15424032
+3,5080426 432527,5177 -0,15581697 -0,092113383 0 3,6638596 2,365410149 120,1465327 2,511893053 3,8180426 0,15418303
+3,5080616 432559,5178 -0,15558781 -0,092110209 0 3,6636496 2,366228918 120,1554216 2,512762526 3,8180616 0,15441219
+3,5078135 432591,518 -0,1555687 -0,092113383 0 3,6633821 2,367047684 120,1643106 2,513631996 3,8178135 0,1544313
+3,5075653 432623,5182 -0,15554962 -0,092109561 0 3,6631148 2,367866451 120,1731995 2,514501466 3,8175653 0,15445038
+3,5074697 432655,5184 -0,15566419 -0,092110209 0 3,6631339 2,368685217 120,1820884 2,515370936 3,8174697 0,15433581
+3,5074315 432687,5186 -0,15549232 -0,092116579 0 3,6629238 2,369503982 120,1909774 2,516240405 3,8174315 0,15450768
+3,5072596 432719,5187 -0,15570238 -0,092115939 0 3,662962 2,370322746 120,1998663 2,517109872 3,8172596 0,15429762
+3,5072215 432751,5189 -0,15566419 -0,092109561 0 3,6628857 2,371141512 120,2087553 2,517979342 3,8172215 0,15433581
+3,5070114 432783,5191 -0,1556069 -0,092101924 0 3,6626184 2,371960276 120,2176442 2,51884881 3,8170114 0,1543931
+3,5068014 432815,5193 -0,1555687 -0,092113383 0 3,66237 2,372779043 120,2265331 2,519718281 3,8168014 0,1544313
+3,5066676 432847,5194 -0,15547322 -0,092112117 0 3,6621408 2,373597812 120,2354221 2,520587754 3,8166676 0,15452678
+3,5064576 432879,5196 -0,15553051 -0,092112757 0 3,661988 2,374416582 120,244311 2,521457227 3,8164576 0,15446949
+3,5064957 432911,5198 -0,1555687 -0,092112117 0 3,6620643 2,375235348 120,2531999 2,522326698 3,8164957 0,1544313
+3,5062666 432943,52 -0,15533954 -0,092105746 0 3,6616061 2,376054115 120,2620889 2,523196169 3,8162666 0,15466046
+3,5062094 432975,5201 -0,15539683 -0,092113383 0 3,6616063 2,37687288 120,2709778 2,524065637 3,8162094 0,15460317
+3,5060565 433007,5203 -0,1555687 -0,092110842 0 3,6616251 2,377691644 120,2798668 2,524935105 3,8160565 0,1544313
+3,505789 433039,5205 -0,15545413 -0,092098102 0 3,6612432 2,378510406 120,2887557 2,52580457 3,815789 0,15454587
+3,5058846 433071,5207 -0,15537773 -0,092112117 0 3,6612623 2,379329169 120,2976446 2,526674036 3,8158846 0,15462227
+3,5056555 433103,5208 -0,15530135 -0,092108302 0 3,6609569 2,380147932 120,3065336 2,527543503 3,8156555 0,15469865
+3,5055027 433135,521 -0,15553051 -0,09210702 0 3,6610332 2,380966695 120,3154225 2,52841297 3,8155027 0,15446949
+3,5053308 433167,5212 -0,15516767 -0,092115298 0 3,6604984 2,381785459 120,3243114 2,529282438 3,8153308 0,15483233
+3,5052161 433199,5214 -0,15537773 -0,092112117 0 3,6605937 2,382604224 120,3332004 2,530151906 3,8152161 0,15462227
+3,5050251 433231,5215 -0,15520586 -0,092115298 0 3,6602311 2,383422989 120,3420893 2,531021375 3,8150251 0,15479414
+3,5049489 433263,5217 -0,15528224 -0,092106387 0 3,6602311 2,384241753 120,3509783 2,531890843 3,8149489 0,15471776
+3,5048532 433295,5219 -0,15545413 -0,092107654 0 3,6603074 2,385060516 120,3598672 2,532760309 3,8148532 0,15454587
+3,5046623 433327,5221 -0,15541592 -0,09210702 0 3,6600783 2,385879277 120,3687561 2,533629773 3,8146623 0,15458408
+3,5045288 433359,5223 -0,15503398 -0,092113383 0 3,6595628 2,386698037 120,3776451 2,534499237 3,8145288 0,15496602
+3,5043569 433391,5224 -0,15532044 -0,092113383 0 3,6596773 2,387516796 120,386534 2,5353687 3,8143569 0,15467956
+3,5041466 433423,5226 -0,15533954 -0,092113383 0 3,6594861 2,388335558 120,3954229 2,536238165 3,8141466 0,15466046
+3,5040321 433455,5228 -0,15522495 -0,092105746 0 3,6592572 2,38915432 120,4043119 2,537107631 3,8140321 0,15477505
+3,5040512 433487,523 -0,15512946 -0,092113383 0 3,6591806 2,389973084 120,4132008 2,537977098 3,8140512 0,15487054
+3,503803 433519,5231 -0,15516767 -0,09210702 0 3,6589706 2,390791845 120,4220898 2,538846563 3,813803 0,15483233
+3,5037839 433551,5233 -0,15505308 -0,092108928 0 3,6588371 2,391610607 120,4309787 2,539716029 3,8137839 0,15494692
+3,5034783 433583,5235 -0,15507218 -0,092113383 0 3,6585505 2,39242937 120,4398676 2,540585495 3,8134783 0,15492782
+3,5034401 433615,5237 -0,15495759 -0,092115298 0 3,6583977 2,393248135 120,4487566 2,541454964 3,8134401 0,15504241
+3,5032492 433647,5238 -0,15509127 -0,092111476 0 3,6583405 2,394066899 120,4576455 2,542324431 3,8132492 0,15490873
+3,5031917 433679,524 -0,1549194 -0,092111476 0 3,6581111 2,394885663 120,4665344 2,543193899 3,8131917 0,1550806
+3,5029626 433711,5242 -0,15501489 -0,092110209 0 3,6579776 2,395704426 120,4754234 2,544063366 3,8129626 0,15498511
+3,5027144 433743,5244 -0,15505308 -0,092112757 0 3,6577675 2,396523191 120,4843123 2,544932834 3,8127144 0,15494692
+3,5026762 433775,5245 -0,15507218 -0,092113383 0 3,6577485 2,397341952 120,4932013 2,545802299 3,8126762 0,15492782
+3,5025806 433807,5247 -0,15495759 -0,092110842 0 3,6575382 2,398160714 120,5020902 2,546671764 3,8125806 0,15504241
+3,5023897 433839,5249 -0,1549194 -0,092115298 0 3,6573091 2,398979481 120,5109791 2,547541235 3,8123897 0,1550806
+3,5023897 433871,5251 -0,15503398 -0,092108302 0 3,6574237 2,399798247 120,5198681 2,548410705 3,8123897 0,15496602
+3,5022559 433903,5252 -0,154843 -0,092112117 0 3,657099 2,400617009 120,528757 2,54928017 3,8122559 0,155157
+3,5021415 433935,5254 -0,15476662 -0,092105746 0 3,656908 2,401435771 120,537646 2,550149636 3,8121415 0,15523338
+3,5020459 433967,5256 -0,15469022 -0,092106387 0 3,6567361 2,402254536 120,5465349 2,551019104 3,8120459 0,15530978
+3,5017786 433999,5258 -0,15486211 -0,092107654 0 3,6566408 2,403073299 120,5554238 2,551888571 3,8117786 0,15513789
+3,5015495 434031,5259 -0,15480481 -0,092110209 0 3,6563542 2,403892062 120,5643128 2,552758038 3,8115495 0,15519519
+3,5016258 434063,5261 -0,1549003 -0,092111476 0 3,6565261 2,404710824 120,5732017 2,553627503 3,8116258 0,1550997
+3,5013776 434095,5263 -0,15486211 -0,092108302 0 3,6562397 2,405529591 120,5820906 2,554496974 3,8113776 0,15513789
+3,5013585 434127,5265 -0,15476662 -0,092122309 0 3,6561251 2,406348356 120,5909796 2,555366443 3,8113585 0,15523338
+3,5010338 434159,5267 -0,15482391 -0,092111476 0 3,6558578 2,407167121 120,5998685 2,556235911 3,8110338 0,15517609
+3,5010529 434191,5268 -0,15463294 -0,092107654 0 3,6556859 2,407985886 120,6087575 2,55710538 3,8110529 0,15536706
+3,5010529 434223,527 -0,15467113 -0,092112757 0 3,655724 2,408804652 120,6176464 2,55797485 3,8110529 0,15532887
+3,5008428 434255,5272 -0,15474752 -0,092105746 0 3,6555903 2,409623416 120,6265353 2,558844318 3,8108428 0,15525248
+3,5005753 434287,5274 -0,15455654 -0,092118487 0 3,6551318 2,410442176 120,6354243 2,559713781 3,8105753 0,15544346
+3,5004034 434319,5275 -0,15461384 -0,092111476 0 3,6550171 2,411260941 120,6443132 2,56058325 3,8104034 0,15538616
+3,5003271 434351,5277 -0,15467113 -0,092114031 0 3,6549983 2,412079709 120,6532021 2,561452721 3,8103271 0,15532887
+3,5002317 434383,5279 -0,15448016 -0,092116579 0 3,654712 2,412898475 120,6620911 2,562322191 3,8102317 0,15551984
+3,5000215 434415,5281 -0,15453745 -0,092112117 0 3,6545589 2,41371724 120,67098 2,56319166 3,8100215 0,15546255
+3,5000598 434447,5282 -0,15451835 -0,092105746 0 3,6545782 2,414536002 120,679869 2,564061126 3,8100598 0,15548165
+3,4997733 434479,5284 -0,15448016 -0,09210702 0 3,6542535 2,415354763 120,6887579 2,564930591 3,8097733 0,15551984
+3,4995632 434511,5286 -0,15449925 -0,092105746 0 3,6540625 2,416173523 120,6976468 2,565800053 3,8095632 0,15550075
+3,4995823 434543,5288 -0,15442286 -0,092112757 0 3,6540051 2,416992283 120,7065358 2,566669516 3,8095823 0,15557714
+3,4994869 434575,5289 -0,15448016 -0,092117213 0 3,6539671 2,417811047 120,7154247 2,567538984 3,8094869 0,15551984
+3,4992576 434607,5291 -0,15448016 -0,092112757 0 3,6537378 2,418629808 120,7243136 2,568408449 3,8092576 0,15551984
+3,4992959 434639,5293 -0,15440376 -0,092108928 0 3,6536996 2,419448568 120,7332026 2,569277913 3,8092959 0,15559624
+3,4990666 434671,5295 -0,15430827 -0,092110209 0 3,6533749 2,420267332 120,7420915 2,57014738 3,8090666 0,15569173
+3,4990284 434703,5296 -0,15434648 -0,092101291 0 3,6533749 2,421086096 120,7509805 2,571016847 3,8090284 0,15565352
+3,4986465 434735,5298 -0,15434648 -0,092113383 0 3,652993 2,421904859 120,7598694 2,571886314 3,8086465 0,15565352
+3,4986465 434767,53 -0,15448016 -0,092111476 0 3,6531267 2,422723621 120,7687583 2,572755779 3,8086465 0,15551984
+3,4986274 434799,5302 -0,15427008 -0,092106387 0 3,6528976 2,423542382 120,7776473 2,573625244 3,8086274 0,15572992
+3,4982646 434831,5304 -0,15430827 -0,092114031 0 3,6525729 2,424361147 120,7865362 2,574494713 3,8082646 0,15569173
+3,4982073 434863,5305 -0,15427008 -0,092108302 0 3,6524775 2,425179914 120,7954251 2,575364184 3,8082073 0,15572992
+3,4981117 434895,5307 -0,15430827 -0,092112757 0 3,65242 2,425998682 120,8043141 2,576233655 3,8081117 0,15569173
+3,4980354 434927,5309 -0,15425099 -0,092109561 0 3,6522865 2,426817452 120,813203 2,577103129 3,8080354 0,15574901
+3,4976916 434959,5311 -0,15415551 -0,092103198 0 3,6518471 2,427636222 120,822092 2,577972603 3,8076916 0,15584449
+3,4976535 434991,5312 -0,15421279 -0,092110209 0 3,6518662 2,428454989 120,8309809 2,578842074 3,8076535 0,15578721
+3,497596 435023,5314 -0,1541746 -0,092116579 0 3,6517706 2,429273754 120,8398698 2,579711544 3,807596 0,1558254
+3,4975388 435055,5316 -0,15409821 -0,092110842 0 3,6516371 2,43009252 120,8487588 2,580581013 3,8075388 0,15590179
+3,497386 435087,5318 -0,1541364 -0,092108302 0 3,6515224 2,430911284 120,8576477 2,58145048 3,807386 0,1558636
+3,4971569 435119,5319 -0,1541364 -0,092109561 0 3,6512933 2,431730046 120,8665366 2,582319946 3,8071569 0,1558636
+3,4971378 435151,5321 -0,1541173 -0,092113383 0 3,6512551 2,432548808 120,8754256 2,583189412 3,8071378 0,1558827
+3,4968705 435183,5323 -0,15394543 -0,092103198 0 3,650816 2,433367572 120,8843145 2,584058879 3,8068705 0,15605457
+3,4968321 435215,5325 -0,15390724 -0,092114665 0 3,6507394 2,434186335 120,8932035 2,584928345 3,8068321 0,15609276
+3,4968512 435247,5326 -0,15402181 -0,092101291 0 3,6508729 2,435005098 120,9020924 2,585797813 3,8068512 0,15597819
+3,4966602 435279,5328 -0,1541937 -0,092115298 0 3,6508539 2,435823861 120,9109813 2,586667279 3,8066602 0,1558063
+3,4965267 435311,533 -0,15390724 -0,092113383 0 3,650434 2,43664263 120,9198703 2,587536752 3,8065267 0,15609276
+3,4961829 435343,5332 -0,15386905 -0,092111476 0 3,6500521 2,4374614 120,9287592 2,588406226 3,8061829 0,15613095
+3,4962211 435375,5333 -0,15365897 -0,092107654 0 3,6498799 2,438280169 120,9376482 2,5892757 3,8062211 0,15634103
+3,4960682 435407,5335 -0,15379265 -0,092115298 0 3,6498609 2,439098941 120,9465371 2,590145176 3,8060682 0,15620735
+3,4959729 435439,5337 -0,15388814 -0,092112117 0 3,6498611 2,439917713 120,955426 2,591014652 3,8059729 0,15611186
+3,49582 435471,5339 -0,15386905 -0,092106387 0 3,6496892 2,440736485 120,964315 2,591884128 3,80582 0,15613095
+3,4957628 435503,5341 -0,15388814 -0,092114031 0 3,6496511 2,441555258 120,9732039 2,592753605 3,8057628 0,15611186
+3,4955909 435535,5342 -0,15367807 -0,09210702 0 3,6492691 2,442374029 120,9820928 2,593623079 3,8055909 0,15632193
+3,495419 435567,5344 -0,15363987 -0,092111476 0 3,6490588 2,443192797 120,9909818 2,594492552 3,805419 0,15636013
+3,4953425 435599,5346 -0,15367807 -0,092110209 0 3,6490207 2,444011563 120,9998707 2,595362022 3,8053425 0,15632193
+3,4951324 435631,5348 -0,15369716 -0,092102565 0 3,6488297 2,444830331 121,0087597 2,596231494 3,8051324 0,15630284
+3,4950371 435663,5349 -0,15365897 -0,092113383 0 3,6486959 2,445649099 121,0176486 2,597100965 3,8050371 0,15634103
+3,4949605 435695,5351 -0,15363987 -0,092106387 0 3,6486003 2,446467866 121,0265375 2,597970436 3,8049605 0,15636013
+3,4949415 435727,5353 -0,15365897 -0,092109561 0 3,6486003 2,447286635 121,0354265 2,59883991 3,8049415 0,15634103
+3,4948461 435759,5355 -0,153468 -0,092104472 0 3,648314 2,448105402 121,0443154 2,59970938 3,8048461 0,156532
+3,4946551 435791,5356 -0,15384994 -0,092115939 0 3,648505 2,448924168 121,0532043 2,60057885 3,8046551 0,15615006
+3,4944067 435823,5358 -0,15367807 -0,092115939 0 3,6480849 2,449742931 121,0620933 2,601448316 3,8044067 0,15632193
+3,4942348 435855,536 -0,153468 -0,092108928 0 3,6477027 2,450561695 121,0709822 2,602317784 3,8042348 0,156532
+3,4942157 435887,5362 -0,15344889 -0,092114031 0 3,6476645 2,451380461 121,0798712 2,603187254 3,8042157 0,15655111
+3,4938912 435919,5363 -0,15354438 -0,092109561 0 3,6474357 2,452199228 121,0887601 2,604056724 3,8038912 0,15645562
+3,4937575 435951,5365 -0,15362078 -0,092113383 0 3,6473782 2,453017996 121,097649 2,604926196 3,8037575 0,15637922
+3,4937956 435983,5367 -0,15333432 -0,092113383 0 3,64713 2,453836761 121,106538 2,605795665 3,8037956 0,15666568
+3,4936619 436015,5369 -0,15352529 -0,092110842 0 3,6471872 2,454655527 121,1154269 2,606665135 3,8036619 0,15647471
+3,4935856 436047,537 -0,15342981 -0,092111476 0 3,6470153 2,455474294 121,1243158 2,607534606 3,8035856 0,15657019
+3,4933183 436079,5372 -0,15339161 -0,092110842 0 3,6467099 2,456293061 121,1332048 2,608404077 3,8033183 0,15660839
+3,4934137 436111,5374 -0,15327702 -0,092115298 0 3,6466906 2,457111826 121,1420937 2,609273545 3,8034137 0,15672298
+3,4932799 436143,5376 -0,15325792 -0,092109561 0 3,6465378 2,457930594 121,1509827 2,610143017 3,8032799 0,15674208
+3,4932609 436175,5378 -0,15316243 -0,092117213 0 3,6464233 2,458749362 121,1598716 2,61101249 3,8032609 0,15683757
+3,4928408 436207,5379 -0,15339161 -0,092112117 0 3,6462324 2,459568134 121,1687605 2,611881965 3,8028408 0,15660839
+3,4927645 436239,5381 -0,15335341 -0,092108302 0 3,6461179 2,460386906 121,1776495 2,612751441 3,8027645 0,15664659
+3,4927645 436271,5383 -0,15316243 -0,092109561 0 3,645927 2,461205679 121,1865384 2,613620919 3,8027645 0,15683757
+3,4926498 436303,5385 -0,15321973 -0,092114665 0 3,6458695 2,462024451 121,1954273 2,614490394 3,8026498 0,15678027
+3,4925735 436335,5386 -0,15327702 -0,092113383 0 3,6458504 2,462843222 121,2043163 2,61535987 3,8025735 0,15672298
+3,4924397 436367,5388 -0,15329613 -0,092113383 0 3,645736 2,463661995 121,2132052 2,616229347 3,8024397 0,15670387
+3,4922297 436399,539 -0,15308605 -0,092110209 0 3,6453156 2,464480764 121,2220942 2,61709882 3,8022297 0,15691395
+3,4921916 436431,5392 -0,15293327 -0,092110209 0 3,6451249 2,465299533 121,2309831 2,617968292 3,8021916 0,15706673
+3,491924 436463,5393 -0,15321973 -0,092105106 0 3,6451437 2,466118302 121,239872 2,618837766 3,801924 0,15678027
+3,4918668 436495,5395 -0,15299056 -0,092114665 0 3,6448574 2,466937072 121,248761 2,61970724 3,8018668 0,15700944
+3,4916949 436527,5397 -0,15299056 -0,092115298 0 3,6446855 2,467755843 121,2576499 2,620576715 3,8016949 0,15700944
+3,4915993 436559,5399 -0,15293327 -0,092117213 0 3,6445327 2,468574613 121,2665389 2,621446189 3,8015993 0,15706673
+3,4914083 436591,54 -0,15283778 -0,092114665 0 3,6442461 2,46939338 121,2754278 2,622315659 3,8014083 0,15716222
+3,4912364 436623,5402 -0,15281869 -0,092113383 0 3,6440551 2,470212148 121,2843167 2,623185131 3,8012364 0,15718131
+3,4912558 436655,5404 -0,1527614 -0,092107654 0 3,6440172 2,471030917 121,2932057 2,624054604 3,8012558 0,1572386
+3,4911602 436687,5406 -0,15285689 -0,092110209 0 3,644017 2,471849688 121,3020946 2,62492408 3,8011602 0,15714311
+3,4910648 436719,5407 -0,15289508 -0,092106387 0 3,6439598 2,472668457 121,3109835 2,625793553 3,8010648 0,15710492
+3,4908164 436751,5409 -0,15279959 -0,092108928 0 3,643616 2,473487225 121,3198725 2,626663025 3,8008164 0,15720041
+3,4907591 436783,5411 -0,15262772 -0,092108928 0 3,6433868 2,474305995 121,3287614 2,627532499 3,8007591 0,15737228
+3,4906254 436815,5413 -0,1527423 -0,092106387 0 3,6433678 2,475124759 121,3376504 2,628401966 3,8006254 0,1572577
+3,4903963 436847,5415 -0,15279959 -0,092108302 0 3,6431959 2,475943526 121,3465393 2,629271437 3,8003963 0,15720041
+3,4904153 436879,5416 -0,15253222 -0,092108928 0 3,6429477 2,476762292 121,3554282 2,630140907 3,8004153 0,15746778
+3,4903963 436911,5418 -0,15253222 -0,092105746 0 3,6429286 2,477581058 121,3643172 2,631010376 3,8003963 0,15746778
+3,4903007 436943,542 -0,15255132 -0,092105746 0 3,6428521 2,478399825 121,3732061 2,631879848 3,8003007 0,15744868
+3,4902053 436975,5422 -0,15257043 -0,09210702 0 3,6427758 2,479218596 121,382095 2,632749323 3,8002053 0,15742957
+3,4899187 437007,5423 -0,15224576 -0,092116579 0 3,6421645 2,480037369 121,390984 2,6336188 3,7999187 0,15775424
+3,4899952 437039,5425 -0,15239854 -0,092110842 0 3,6423938 2,480856142 121,3998729 2,634488277 3,7999952 0,15760146
+3,4897468 437071,5427 -0,15251313 -0,092114031 0 3,6422598 2,481674912 121,4087619 2,635357751 3,7997468 0,15748687
+3,4897468 437103,5429 -0,15230305 -0,092108302 0 3,6420498 2,482493682 121,4176508 2,636227225 3,7997468 0,15769695
+3,4895177 437135,543 -0,15239854 -0,092115939 0 3,6419163 2,483312449 121,4265397 2,637096696 3,7995177 0,15760146
+3,4892504 437167,5432 -0,15236035 -0,092115298 0 3,6416109 2,484131219 121,4354287 2,63796617 3,7992504 0,15763965
+3,4891932 437199,5434 -0,15241764 -0,092118487 0 3,6416109 2,48494999 121,4443176 2,638835645 3,7991932 0,15758236
+3,4889829 437231,5436 -0,15239854 -0,092107654 0 3,6413815 2,485768757 121,4532065 2,639705116 3,7989829 0,15760146
+3,4888875 437263,5437 -0,15222667 -0,092111476 0 3,6411142 2,486587523 121,4620955 2,640574585 3,7988875 0,15777333
+3,4889066 437295,5439 -0,15211208 -0,092110842 0 3,6410186 2,487406292 121,4709844 2,641444058 3,7989066 0,15788792
+3,4886584 437327,5441 -0,15239854 -0,092113383 0 3,641057 2,488225062 121,4798734 2,642313533 3,7986584 0,15760146
+3,4885819 437359,5443 -0,1519593 -0,092107654 0 3,6405411 2,489043834 121,4887623 2,643183008 3,7985819 0,1580407
+3,4886584 437391,5444 -0,15211208 -0,092108302 0 3,6407704 2,489862605 121,4976512 2,644052483 3,7986584 0,15788792
+3,48841 437423,5446 -0,15215027 -0,092110209 0 3,6405602 2,490681374 121,5065402 2,644921957 3,79841 0,15784973
+3,4883337 437455,5448 -0,15194021 -0,092113383 0 3,6402738 2,491500142 121,5154291 2,645791429 3,7983337 0,15805979
+3,4883337 437487,545 -0,1520357 -0,092105106 0 3,6403694 2,492318909 121,524318 2,646660899 3,7983337 0,1579643
+3,4881618 437519,5452 -0,1520357 -0,092113383 0 3,6401975 2,493137675 121,533207 2,64753037 3,7981618 0,1579643
+3,4879136 437551,5453 -0,1520357 -0,09210702 0 3,6399493 2,493956443 121,5420959 2,648399841 3,7979136 0,1579643
+3,4877799 437583,5455 -0,1520166 -0,092107654 0 3,6397965 2,49477521 121,5509849 2,649269312 3,7977799 0,1579834
+3,4876461 437615,5457 -0,1519593 -0,092112117 0 3,6396055 2,495593978 121,5598738 2,650138783 3,7976461 0,1580407
+3,487627 437647,5459 -0,15190202 -0,092112117 0 3,639529 2,496412747 121,5687627 2,651008257 3,797627 0,15809798
+3,4875126 437679,546 -0,15190202 -0,092113383 0 3,6394145 2,497231518 121,5776517 2,651877732 3,7975126 0,15809798
+3,4873023 437711,5462 -0,15180653 -0,092110209 0 3,6391089 2,498050288 121,5865406 2,652747206 3,7973023 0,15819347
+3,4871306 437743,5464 -0,15176833 -0,09210702 0 3,6388988 2,498869059 121,5954296 2,653616681 3,7971306 0,15823167
+3,4871497 437775,5466 -0,15178743 -0,092105746 0 3,6389372 2,499687829 121,6043185 2,654486155 3,7971497 0,15821257
+3,4868441 437807,5467 -0,15176833 -0,092116579 0 3,6386123 2,500506598 121,6132074 2,655355629 3,7968441 0,15823167
+3,4867103 437839,5469 -0,15169194 -0,092112757 0 3,6384022 2,501325366 121,6220964 2,656225099 3,7967103 0,15830806
+3,4867294 437871,5471 -0,15167284 -0,092110842 0 3,6384022 2,502144133 121,6309853 2,65709457 3,7967294 0,15832716
+3,4867868 437903,5473 -0,15161556 -0,092108302 0 3,6384025 2,5029629 121,6398742 2,657964042 3,7967868 0,15838444
+3,4865384 437935,5474 -0,15163465 -0,092118487 0 3,6381731 2,503781665 121,6487632 2,658833511 3,7965384 0,15836535
+3,4863858 437967,5476 -0,15144368 -0,092110209 0 3,6378295 2,504600429 121,6576521 2,659702978 3,7963858 0,15855632
+3,486233 437999,5478 -0,15159646 -0,092109561 0 3,6378295 2,505419191 121,6665411 2,660572444 3,796233 0,15840354
+3,4862521 438031,548 -0,15138638 -0,092101924 0 3,6376386 2,506237954 121,67543 2,66144191 3,7962521 0,15861362
+3,4862521 438063,5481 -0,15152007 -0,092114031 0 3,6377721 2,507056716 121,6843189 2,662311376 3,7962521 0,15847993
+3,4858892 438095,5483 -0,15140548 -0,092113383 0 3,6372948 2,507875481 121,6932079 2,663180844 3,7958892 0,15859452
+3,4857745 438127,5485 -0,15131 -0,092104472 0 3,6370845 2,508694246 121,7020968 2,664050313 3,7957745 0,15869
+3,4857745 438159,5487 -0,15142459 -0,09210702 0 3,6371992 2,50951301 121,7109857 2,66491978 3,7957745 0,15857541
+3,4855072 438191,5489 -0,15144368 -0,092107654 0 3,636951 2,510331775 121,7198747 2,665789249 3,7955072 0,15855632
+3,4854882 438223,549 -0,1513291 -0,092109561 0 3,6368172 2,511150542 121,7287636 2,66665872 3,7954882 0,1586709
+3,4854116 438255,5492 -0,15117632 -0,092112757 0 3,6365879 2,511969307 121,7376526 2,667528189 3,7954116 0,15882368
+3,4852016 438287,5494 -0,1513291 -0,092107654 0 3,6365306 2,512788069 121,7465415 2,668397655 3,7952016 0,1586709
+3,4851253 438319,5496 -0,15106173 -0,092107654 0 3,6361871 2,513606832 121,7554304 2,669267121 3,7951253 0,15893827
+3,4850106 438351,5497 -0,15102354 -0,092107654 0 3,6360343 2,514425596 121,7643194 2,670136589 3,7950106 0,15897646
+3,4848962 438383,5499 -0,1512527 -0,092111476 0 3,6361489 2,51524436 121,7732083 2,671006057 3,7948962 0,1587473
+3,4848769 438415,5501 -0,15119541 -0,092110209 0 3,6360722 2,516063126 121,7820972 2,671875526 3,7948769 0,15880459
+3,4846287 438447,5503 -0,15100443 -0,092117853 0 3,635633 2,516881895 121,7909862 2,672744999 3,7946287 0,15899557
+3,4845905 438479,5504 -0,15109992 -0,092117853 0 3,6356905 2,517700664 121,7998751 2,673614472 3,7945905 0,15890008
+3,4845333 438511,5506 -0,15113813 -0,092110209 0 3,6356714 2,518519432 121,8087641 2,674483944 3,7945333 0,15886187
+3,4843423 438543,5508 -0,15102354 -0,092114665 0 3,635366 2,5193382 121,817653 2,675353416 3,7943423 0,15897646
+3,4841704 438575,551 -0,15104264 -0,092112757 0 3,6352131 2,520156968 121,8265419 2,676222888 3,7941704 0,15895736
+3,4841321 438607,5511 -0,15106173 -0,092108302 0 3,6351938 2,520975736 121,8354309 2,67709236 3,7941321 0,15893827
+3,4840939 438639,5513 -0,15108083 -0,092103831 0 3,6351748 2,521794503 121,8443198 2,677961831 3,7940939 0,15891917
+3,4838266 438671,5515 -0,15087076 -0,092117213 0 3,6346974 2,522613268 121,8532087 2,678831299 3,7938266 0,15912924
+3,4836357 438703,5517 -0,15092805 -0,092112757 0 3,6345637 2,523432033 121,8620977 2,679700768 3,7936357 0,15907195
+3,4836547 438735,5518 -0,15098535 -0,092108928 0 3,63464 2,524250799 121,8709866 2,680570238 3,7936547 0,15901465
+3,4835784 438767,552 -0,15094715 -0,092115298 0 3,6345255 2,525069566 121,8798756 2,681439708 3,7935784 0,15905285
+3,4832537 438799,5522 -0,15081346 -0,092115939 0 3,6340671 2,525888332 121,8887645 2,682309179 3,7932537 0,15918654
+3,4833109 438831,5524 -0,15066069 -0,092112757 0 3,6339717 2,526707099 121,8976534 2,683178649 3,7933109 0,15933931
+3,4832346 438863,5525 -0,15071797 -0,092114031 0 3,6339526 2,527525866 121,9065424 2,68404812 3,7932346 0,15928203
+3,4830627 438895,5527 -0,15079437 -0,092111476 0 3,633857 2,528344631 121,9154313 2,684917588 3,7930627 0,15920563
+3,4829481 438927,5529 -0,15083256 -0,092109561 0 3,6337807 2,529163397 121,9243203 2,685787058 3,7929481 0,15916744
+3,4830437 438959,5531 -0,15066069 -0,092111476 0 3,6337044 2,529982164 121,9332092 2,68665653 3,7930437 0,15933931
+3,4828908 438991,5533 -0,15066069 -0,092110842 0 3,6335516 2,530800932 121,9420981 2,687526002 3,7928908 0,15933931
+3,4827189 439023,5534 -0,15039332 -0,092110842 0 3,6331122 2,531619699 121,9509871 2,688395472 3,7927189 0,15960668
+3,4824898 439055,5536 -0,15048881 -0,092108302 0 3,6329787 2,532438466 121,959876 2,689264943 3,7924898 0,15951119
+3,4824133 439087,5538 -0,1505843 -0,092110209 0 3,6329975 2,533257231 121,9687649 2,690134412 3,7924133 0,1594157
+3,4821842 439119,554 -0,15043151 -0,092109561 0 3,6326156 2,534075997 121,9776539 2,691003881 3,7921842 0,15956849
+3,4822032 439151,5541 -0,15041243 -0,092103831 0 3,6326156 2,534894766 121,9865428 2,691873354 3,7922032 0,15958757
+3,4819551 439183,5543 -0,15043151 -0,092111476 0 3,6323867 2,535713535 121,9954318 2,692742827 3,7919551 0,15956849
+3,4818978 439215,5545 -0,15025964 -0,092114665 0 3,6321576 2,536532302 122,0043207 2,693612298 3,7918978 0,15974036
+3,4817641 439247,5547 -0,15025964 -0,092108302 0 3,6320238 2,53735107 122,0132096 2,69448177 3,7917641 0,15974036
+3,4817259 439279,5548 -0,15037423 -0,092111476 0 3,6321001 2,538169838 122,0220986 2,695351242 3,7917259 0,15962577
+3,4816494 439311,555 -0,15039332 -0,092114665 0 3,6320426 2,538988604 122,0309875 2,696220711 3,7916494 0,15960668
+3,4814394 439343,5552 -0,15020235 -0,092105746 0 3,6316416 2,539807368 122,0398764 2,697090179 3,7914394 0,15979765
+3,4813821 439375,5554 -0,15020235 -0,092103198 0 3,6315844 2,540626131 122,0487654 2,697959645 3,7913821 0,15979765
+3,4813821 439407,5555 -0,15010686 -0,092111476 0 3,631489 2,541444894 122,0576543 2,698829112 3,7913821 0,15989314
+3,4810574 439439,5557 -0,14985859 -0,092101924 0 3,6309161 2,542263656 122,0665433 2,699698579 3,7910574 0,16014141
+3,4810383 439471,5559 -0,14999227 -0,092108928 0 3,6310306 2,543082419 122,0754322 2,700568045 3,7910383 0,16000773
+3,4809811 439503,5561 -0,15018325 -0,092104472 0 3,6311643 2,543901181 122,0843211 2,701437511 3,7909811 0,15981675
+3,4807711 439535,5562 -0,14993499 -0,092115939 0 3,6307061 2,544719944 122,0932101 2,702306977 3,7907711 0,16006501
+3,4806755 439567,5564 -0,15003048 -0,092110209 0 3,6307058 2,545538708 122,102099 2,703176445 3,7906755 0,15996952
+3,4802744 439599,5566 -0,15018325 -0,092112757 0 3,6304576 2,546357471 122,1109879 2,704045911 3,7902744 0,15981675
+3,4806564 439631,5568 -0,14983951 -0,092100017 0 3,6304958 2,547176231 122,1198769 2,704915375 3,7906564 0,16016049
+3,4803317 439663,557 -0,14995408 -0,092105106 0 3,6302857 2,547994991 122,1287658 2,705784838 3,7903317 0,16004592
+3,4803126 439695,5571 -0,1498204 -0,092105746 0 3,6301329 2,54881375 122,1376548 2,7066543 3,7903126 0,1601796
+3,4801979 439727,5573 -0,14972492 -0,092109561 0 3,6299229 2,549632514 122,1465437 2,707523768 3,7901979 0,16027508
+3,4802363 439759,5575 -0,1498777 -0,092110842 0 3,6301141 2,550451277 122,1554326 2,708393234 3,7902363 0,1601223
+3,4799497 439791,5577 -0,14972492 -0,092112757 0 3,6296747 2,551270042 122,1643216 2,709262703 3,7899497 0,16027508
+3,4799306 439823,5578 -0,14978221 -0,092108302 0 3,6297128 2,552088805 122,1732105 2,71013217 3,7899306 0,16021779
+3,4797587 439855,558 -0,14966762 -0,092107654 0 3,6294265 2,55290757 122,1820994 2,711001638 3,7897587 0,16033238
+3,4795105 439887,5582 -0,14966762 -0,092106387 0 3,629178 2,553726335 122,1909884 2,711871107 3,7895105 0,16033238
+3,4794915 439919,5584 -0,14970581 -0,092109561 0 3,6291974 2,554545101 122,1998773 2,712740577 3,7894915 0,16029419
+3,4792049 439951,5585 -0,14966762 -0,09210702 0 3,6288724 2,555363867 122,2087663 2,713610047 3,7892049 0,16033238
+3,4793768 439983,5587 -0,14949575 -0,092109561 0 3,6288726 2,556182635 122,2176552 2,714479518 3,7893768 0,16050425
+3,4792621 440015,5589 -0,14943846 -0,092111476 0 3,6287005 2,557001403 122,2265441 2,715348991 3,7892621 0,16056154
+3,4789948 440047,5591 -0,14943846 -0,092114665 0 3,6284332 2,557820171 122,2354331 2,716218462 3,7889948 0,16056154
+3,479033 440079,5592 -0,14941935 -0,092108928 0 3,6284523 2,558638939 122,244322 2,717087934 3,789033 0,16058065
+3,4788611 440111,5594 -0,14945756 -0,092106387 0 3,6283185 2,559457704 122,2532109 2,717957403 3,7888611 0,16054244
+3,4788039 440143,5596 -0,14924748 -0,092112757 0 3,6280513 2,56027647 122,2620999 2,718826872 3,7888039 0,16075252
+3,4786892 440175,5598 -0,14932387 -0,092105746 0 3,6280131 2,561095239 122,2709888 2,719696346 3,7886892 0,16067613
+3,4785557 440207,5599 -0,14922838 -0,092114031 0 3,627784 2,561914004 122,2798778 2,720565815 3,7885557 0,16077162
+3,478441 440239,5601 -0,14926659 -0,092112757 0 3,6277075 2,562732768 122,2887667 2,721435282 3,788441 0,16073341
+3,4783263 440271,5603 -0,14934297 -0,092115298 0 3,6276693 2,563551529 122,2976556 2,722304747 3,7883263 0,16065703
+3,478231 440303,5605 -0,14930478 -0,092113383 0 3,6275358 2,564370294 122,3065446 2,723174215 3,788231 0,16069522
+3,4782119 440335,5607 -0,14913289 -0,092108302 0 3,6273448 2,565189058 122,3154335 2,724043683 3,7882119 0,16086711
+3,4780781 440367,5608 -0,1491138 -0,092107654 0 3,627192 2,566007824 122,3243225 2,724913153 3,7880781 0,1608862
+3,4780209 440399,561 -0,14930478 -0,09210702 0 3,6273258 2,566826593 122,3332114 2,725782625 3,7880209 0,16069522
+3,4777534 440431,5612 -0,14920929 -0,09210702 0 3,6269627 2,567645364 122,3421003 2,726652101 3,7877534 0,16079071
+3,4776199 440463,5614 -0,14905651 -0,092110209 0 3,6266763 2,568464133 122,3509893 2,727521574 3,7876199 0,16094349
+3,4774671 440495,5615 -0,14890373 -0,092108928 0 3,6263709 2,569282901 122,3598782 2,728391045 3,7874671 0,16109627
+3,4774671 440527,5617 -0,14901832 -0,092104472 0 3,6264853 2,570101669 122,3687671 2,729260518 3,7874671 0,16098168
+3,4773715 440559,5619 -0,14892283 -0,092114665 0 3,6262944 2,570920436 122,3776561 2,730129989 3,7873715 0,16107717
+3,4771996 440591,5621 -0,14880824 -0,092112757 0 3,6260078 2,571739203 122,386545 2,730999459 3,7871996 0,16119176
+3,4770279 440623,5622 -0,14892283 -0,092114665 0 3,6259508 2,572557971 122,395434 2,731868931 3,7870279 0,16107717
+3,4770086 440655,5624 -0,14892283 -0,092107654 0 3,6259315 2,573376738 122,4043229 2,732738402 3,7870086 0,16107717
+3,4769895 440687,5626 -0,14886554 -0,092114031 0 3,625855 2,574195505 122,4132118 2,733607873 3,7869895 0,16113446
+3,4767032 440719,5628 -0,14890373 -0,092110209 0 3,625607 2,575014269 122,4221008 2,73447734 3,7867032 0,16109627
+3,4769132 440751,5629 -0,14871275 -0,092115298 0 3,6256261 2,575833031 122,4309897 2,735346806 3,7869132 0,16128725
+3,4763975 440783,5631 -0,14888464 -0,092110842 0 3,625282 2,576651797 122,4398786 2,736216275 3,7863975 0,16111536
+3,4767032 440815,5633 -0,14863637 -0,092113383 0 3,6253395 2,577470562 122,4487676 2,737085745 3,7867032 0,16136363
+3,4763212 440847,5635 -0,14877005 -0,092113383 0 3,6250913 2,578289327 122,4576565 2,737955214 3,7863212 0,16122995
+3,4763021 440879,5636 -0,14852178 -0,092109561 0 3,624824 2,579108094 122,4665455 2,738824683 3,7863021 0,16147822
+3,4762638 440911,5638 -0,14863637 -0,092110209 0 3,6249001 2,579926858 122,4754344 2,739694152 3,7862638 0,16136363
+3,4759393 440943,564 -0,14861727 -0,092110842 0 3,6245565 2,580745623 122,4843233 2,740563621 3,7859393 0,16138273
+3,4760728 440975,5642 -0,14861727 -0,092108928 0 3,6246901 2,581564389 122,4932123 2,74143309 3,7860728 0,16138273
+3,4759774 441007,5644 -0,1484454 -0,092103831 0 3,6244228 2,582383156 122,5021012 2,742302561 3,7859774 0,1615546
+3,4756718 441039,5645 -0,14861727 -0,092110209 0 3,624289 2,583201921 122,5109901 2,74317203 3,7856718 0,16138273
+3,4755764 441071,5647 -0,14825442 -0,092105746 0 3,6238308 2,584020687 122,5198791 2,7440415 3,7855764 0,16174558
+3,4755189 441103,5649 -0,14829262 -0,092105106 0 3,6238115 2,584839452 122,528768 2,744910968 3,7855189 0,16170738
+3,4754236 441135,5651 -0,14827351 -0,092107654 0 3,623697 2,585658217 122,537657 2,745780437 3,7854236 0,16172649
+3,4752898 441167,5652 -0,14827351 -0,092110209 0 3,6235633 2,586476982 122,5465459 2,746649906 3,7852898 0,16172649
+3,475137 441199,5654 -0,14823532 -0,092112117 0 3,6233723 2,587295747 122,5554348 2,747519374 3,785137 0,16176468
+3,475137 441231,5656 -0,14829262 -0,092115939 0 3,6234295 2,588114513 122,5643238 2,748388844 3,785137 0,16170738
+3,4749269 441263,5658 -0,14819713 -0,092107654 0 3,6231241 2,588933278 122,5732127 2,749258313 3,7849269 0,16180287
+3,4748507 441295,5659 -0,14834991 -0,092109561 0 3,6232007 2,589752042 122,5821016 2,75012778 3,7848507 0,16165009
+3,4745831 441327,5661 -0,14831172 -0,092105746 0 3,6228948 2,590570805 122,5909906 2,750997247 3,7845831 0,16168828
+3,4746978 441359,5663 -0,14819713 -0,092115298 0 3,622895 2,591389566 122,5998795 2,751866712 3,7846978 0,16180287
+3,4745831 441391,5665 -0,14806345 -0,092112117 0 3,6226466 2,592208327 122,6087685 2,752736176 3,7845831 0,16193655
+3,4742012 441423,5666 -0,14819713 -0,092108928 0 3,6223984 2,59302709 122,6176574 2,753605642 3,7842012 0,16180287
+3,4742968 441455,5668 -0,14815894 -0,092103198 0 3,6224558 2,593845852 122,6265463 2,754475108 3,7842968 0,16184106
+3,4742396 441487,567 -0,14792976 -0,092112117 0 3,6221693 2,594664615 122,6354353 2,755344575 3,7842396 0,16207024
+3,474354 441519,5672 -0,14802524 -0,092108928 0 3,6223793 2,595483376 122,6443242 2,756214039 3,784354 0,16197476
+3,4740102 441551,5673 -0,14796796 -0,092110209 0 3,6219783 2,596302142 122,6532132 2,757083509 3,7840102 0,16203204
+3,4738958 441583,5675 -0,14815894 -0,092104472 0 3,6220548 2,597120908 122,6621021 2,757952979 3,7838958 0,16184106
+3,4738958 441615,5677 -0,14789157 -0,092111476 0 3,6217873 2,597939674 122,670991 2,758822448 3,7838958 0,16210843
+3,4738383 441647,5679 -0,14792976 -0,092112757 0 3,621768 2,598758438 122,67988 2,759691916 3,7838383 0,16207024
+3,473762 441679,5681 -0,14783427 -0,092111476 0 3,6215963 2,599577204 122,6887689 2,760561385 3,783762 0,16216573
+3,4735329 441711,5682 -0,14785337 -0,092112757 0 3,6213863 2,60039597 122,6976578 2,761430856 3,7835329 0,16214663
+3,4732463 441743,5684 -0,14762421 -0,092112757 0 3,6208706 2,60121474 122,7065468 2,762300329 3,7832463 0,16237579
+3,4734182 441775,5686 -0,1476624 -0,092111476 0 3,6210806 2,602033507 122,7154357 2,763169801 3,7834182 0,1623376
+3,4731891 441807,5688 -0,1476624 -0,09210702 0 3,6208515 2,602852277 122,7243247 2,764039275 3,7831891 0,1623376
+3,4730744 441839,5689 -0,1476815 -0,092110209 0 3,6207559 2,603671046 122,7332136 2,764908747 3,7830744 0,1623185
+3,4728835 441871,5691 -0,14752872 -0,092114031 0 3,6204121 2,604489817 122,7421025 2,765778222 3,7828835 0,16247128
+3,4729025 441903,5693 -0,14743324 -0,092119761 0 3,6203358 2,605308587 122,7509915 2,766647697 3,7829025 0,16256676
+3,4728835 441935,5695 -0,14747143 -0,092115939 0 3,6203549 2,606127356 122,7598804 2,767517169 3,7828835 0,16252857
+3,4727116 441967,5696 -0,14773878 -0,092108302 0 3,6204503 2,606946125 122,7687693 2,768386642 3,7827116 0,16226122
+3,472559 441999,5698 -0,14747143 -0,092108302 0 3,6200304 2,607764891 122,7776583 2,769256112 3,782559 0,16252857
+3,472368 442031,57 -0,14745232 -0,092114031 0 3,6198204 2,608583658 122,7865472 2,770125583 3,782368 0,16254768
+3,4722724 442063,5702 -0,14756691 -0,092108928 0 3,6198392 2,609402421 122,7954362 2,77099505 3,7822724 0,16243309
+3,4722533 442095,5703 -0,14729956 -0,092104472 0 3,6195529 2,610221186 122,8043251 2,771864518 3,7822533 0,16270044
+3,4723296 442127,5705 -0,14733775 -0,092110842 0 3,6196673 2,611039951 122,813214 2,772733987 3,7823296 0,16266225
+3,4720051 442159,5707 -0,14728045 -0,092114031 0 3,6192856 2,611858718 122,822103 2,773603458 3,7820051 0,16271955
+3,4720051 442191,5709 -0,14731865 -0,092109561 0 3,6193237 2,612677485 122,8309919 2,774472929 3,7820051 0,16268135
+3,4721196 442223,571 -0,14714678 -0,09210702 0 3,6192663 2,613496252 122,8398808 2,775342399 3,7821196 0,16285322
+3,4716995 442255,5712 -0,14724226 -0,092114665 0 3,6189418 2,614315017 122,8487698 2,776211868 3,7816995 0,16275774
+3,4716995 442287,5714 -0,14705129 -0,092117213 0 3,6187508 2,615133785 122,8576587 2,77708134 3,7816995 0,16294871
+3,4716423 442319,5716 -0,14708948 -0,092120394 0 3,6187317 2,615952552 122,8665477 2,777950811 3,7816423 0,16291052
+3,4713748 442351,5718 -0,14703219 -0,092108928 0 3,618407 2,616771315 122,8754366 2,778820278 3,7813748 0,16296781
+3,4712412 442383,5719 -0,14710858 -0,092115298 0 3,6183498 2,617590075 122,8843255 2,779689741 3,7812412 0,16289142
+3,4714129 442415,5721 -0,14699399 -0,092103831 0 3,6184068 2,618408841 122,8932145 2,780559211 3,7814129 0,16300601
+3,4709737 442447,5723 -0,14707038 -0,092110209 0 3,6180441 2,619227606 122,9021034 2,78142868 3,7809737 0,16292962
+3,4709928 442479,5725 -0,14678392 -0,092115298 0 3,6177766 2,620046371 122,9109923 2,782298149 3,7809928 0,16321608
+3,4709165 442511,5726 -0,14686032 -0,092115939 0 3,6177769 2,620865137 122,9198813 2,783167618 3,7809165 0,16313968
+3,4709928 442543,5728 -0,14678392 -0,092110842 0 3,6177766 2,621683901 122,9287702 2,784037085 3,7809928 0,16321608
+3,4707255 442575,573 -0,14666934 -0,092102565 0 3,6173949 2,622502666 122,9376592 2,784906554 3,7807255 0,16333066
+3,4706683 442607,5732 -0,14682212 -0,092112117 0 3,6174905 2,623321431 122,9465481 2,785776023 3,7806683 0,16317788
+3,4705918 442639,5733 -0,14668843 -0,092110209 0 3,6172802 2,624140197 122,955437 2,786645492 3,7805918 0,16331157
+3,470439 442671,5735 -0,14674573 -0,092110209 0 3,6171846 2,624958964 122,964326 2,787514964 3,780439 0,16325427
+3,4703245 442703,5737 -0,14678392 -0,09210702 0 3,6171083 2,625777729 122,9732149 2,788384432 3,7803245 0,16321608
+3,4701717 442735,5739 -0,14655475 -0,092101924 0 3,6167264 2,626596494 122,9821039 2,789253901 3,7801717 0,16344525
+3,4702098 442767,574 -0,14670753 -0,092106387 0 3,6169174 2,627415258 122,9909928 2,790123368 3,7802098 0,16329247
+3,4701335 442799,5742 -0,14668843 -0,092105746 0 3,616822 2,62823402 122,9998817 2,790992835 3,7801335 0,16331157
+3,4698279 442831,5744 -0,14651656 -0,092112117 0 3,6163445 2,629052781 123,0087707 2,791862299 3,7798279 0,16348344
+3,4698088 442863,5746 -0,14651656 -0,092111476 0 3,6163254 2,629871541 123,0176596 2,792731762 3,7798088 0,16348344
+3,4698279 442895,5747 -0,14640197 -0,092114031 0 3,6162298 2,630690302 123,0265485 2,793601226 3,7798279 0,16359803
+3,469656 442927,5749 -0,14638288 -0,09210702 0 3,6160388 2,631509067 123,0354375 2,794470695 3,779656 0,16361712
+3,4695222 442959,5751 -0,1462874 -0,092103831 0 3,6158097 2,632327833 123,0443264 2,795340165 3,7795222 0,1637126
+3,4693313 442991,5753 -0,14640197 -0,092114031 0 3,6157331 2,633146601 123,0532154 2,796209637 3,7793313 0,16359803
+3,4693313 443023,5755 -0,1462874 -0,092117213 0 3,6156187 2,63396537 123,0621043 2,79707911 3,7793313 0,1637126
+3,4693122 443055,5756 -0,146211 -0,092110842 0 3,6155231 2,634784138 123,0709932 2,797948581 3,7793122 0,163789
+3,4689877 443087,5758 -0,14619191 -0,092110209 0 3,6151795 2,635602907 123,0798822 2,798818055 3,7789877 0,16380809
+3,4691594 443119,576 -0,1462492 -0,092116579 0 3,6154087 2,636421675 123,0887711 2,799687527 3,7791594 0,1637508
+3,4689493 443151,5762 -0,1462492 -0,092114665 0 3,6151986 2,637240442 123,09766 2,800556998 3,7789493 0,1637508
+3,4689684 443183,5763 -0,14605823 -0,092109561 0 3,6150267 2,638059208 123,106549 2,801426467 3,7789684 0,16394177
+3,468854 443215,5765 -0,14611551 -0,092112117 0 3,6149695 2,638877971 123,1154379 2,802295934 3,778854 0,16388449
+3,4685483 443247,5767 -0,146211 -0,092105106 0 3,6147592 2,639696736 123,1243269 2,803165403 3,7785483 0,163789
+3,4686248 443279,5769 -0,14602003 -0,092108928 0 3,6146448 2,640515503 123,1332158 2,804034873 3,7786248 0,16397997
+3,4684145 443311,577 -0,14603913 -0,092114665 0 3,6144538 2,641334269 123,1421047 2,804904343 3,7784145 0,16396087
+3,4683764 443343,5772 -0,14563808 -0,092105746 0 3,6140144 2,642153034 123,1509937 2,805773812 3,7783764 0,16436192
+3,4683001 443375,5774 -0,14588635 -0,092117853 0 3,6141865 2,6429718 123,1598826 2,806643281 3,7783001 0,16411365
+3,4681664 443407,5776 -0,14577176 -0,092104472 0 3,6139381 2,643790566 123,1687715 2,807512751 3,7781664 0,16422824
+3,4681091 443439,5777 -0,14577176 -0,092114031 0 3,6138809 2,644609331 123,1776605 2,80838222 3,7781091 0,16422824
+3,4679182 443471,5779 -0,14575267 -0,092106387 0 3,6136708 2,645428094 123,1865494 2,809251687 3,7779182 0,16424733
+3,4678991 443503,5781 -0,14573357 -0,092105106 0 3,6136327 2,646246861 123,1954384 2,810121158 3,7778991 0,16426643
+3,4678226 443535,5783 -0,14586726 -0,09210702 0 3,6136899 2,647065628 123,2043273 2,810990628 3,7778226 0,16413274
+3,4676697 443567,5784 -0,14561899 -0,092113383 0 3,6132886 2,647884395 123,2132162 2,8118601 3,7776697 0,16438101
+3,4675171 443599,5786 -0,1455617 -0,092108928 0 3,6130788 2,648703165 123,2221052 2,812729574 3,7775171 0,1644383
+3,4675553 443631,5788 -0,14563808 -0,092115298 0 3,6131933 2,649521932 123,2309941 2,813599045 3,7775553 0,16436192
+3,4673262 443663,579 -0,1455044 -0,092110209 0 3,6128306 2,650340703 123,239883 2,814468519 3,7773262 0,1644956
+3,4671733 443695,5791 -0,14546621 -0,092114665 0 3,6126394 2,651159473 123,248772 2,815337993 3,7771733 0,16453379
+3,4671161 443727,5793 -0,14558078 -0,092111476 0 3,6126969 2,65197824 123,2576609 2,816207464 3,7771161 0,16441922
+3,4671352 443759,5795 -0,14542802 -0,092113383 0 3,6125631 2,652797009 123,2665499 2,817076937 3,7771352 0,16457198
+3,4669824 443791,5797 -0,14538981 -0,092108302 0 3,6123722 2,653615774 123,2754388 2,817946405 3,7769824 0,16461019
+3,4670587 443823,5799 -0,14538981 -0,092109561 0 3,6124485 2,654434538 123,2843277 2,818815874 3,7770587 0,16461019
+3,4667532 443855,58 -0,14531343 -0,092110209 0 3,6120667 2,655253305 123,2932167 2,819685345 3,7767532 0,16468657
+3,466543 443887,5802 -0,14519884 -0,092111476 0 3,6117418 2,65607207 123,3021056 2,820554813 3,776543 0,16480116
+3,466543 443919,5804 -0,14521794 -0,092106387 0 3,6117609 2,656890836 123,3109946 2,821424283 3,776543 0,16478206
+3,4666386 443951,5806 -0,14514156 -0,092110842 0 3,6117802 2,657709602 123,3198835 2,822293752 3,7766386 0,16485844
+3,466161 443983,5807 -0,14523704 -0,092108302 0 3,611398 2,658528369 123,3287724 2,823163224 3,776161 0,16476296
+3,4662757 444015,5809 -0,14498878 -0,092110842 0 3,6112645 2,659347136 123,3376614 2,824032694 3,7762757 0,16501122
+3,4661994 444047,5811 -0,14512245 -0,092110842 0 3,6113219 2,660165902 123,3465503 2,824902164 3,7761994 0,16487755
+3,4660466 444079,5813 -0,14512245 -0,092108928 0 3,6111691 2,660984668 123,3554392 2,825771634 3,7760466 0,16487755
+3,4659891 444111,5814 -0,14508426 -0,092122942 0 3,6110735 2,661803439 123,3643282 2,826641108 3,7759891 0,16491574
+3,4659891 444143,5816 -0,14502697 -0,092113383 0 3,611016 2,662622209 123,3732171 2,827510583 3,7759891 0,16497303
+3,4657218 444175,5818 -0,14489329 -0,092105106 0 3,6106153 2,663440978 123,3821061 2,828380056 3,7757218 0,16510671
+3,4658175 444207,582 -0,14491238 -0,092110842 0 3,6107299 2,664259745 123,390995 2,829249526 3,7758175 0,16508762
+3,4656646 444239,5821 -0,14475961 -0,092108302 0 3,6104243 2,665078512 123,3998839 2,830118998 3,7756646 0,16524039
+3,4655881 444271,5823 -0,1448551 -0,092115939 0 3,6104431 2,66589728 123,4087729 2,830988469 3,7755881 0,1651449
+3,4652827 444303,5825 -0,14462592 -0,092103198 0 3,6099086 2,666716046 123,4176618 2,831857939 3,7752827 0,16537408
+3,4653208 444335,5827 -0,14481689 -0,092109561 0 3,6101377 2,667534808 123,4265507 2,832727404 3,7753208 0,16518311
+3,4653208 444367,5828 -0,14456864 -0,092109561 0 3,6098895 2,66835357 123,4354397 2,83359687 3,7753208 0,16543136
+3,465168 444399,583 -0,14458773 -0,092113383 0 3,6097558 2,669172333 123,4443286 2,834466337 3,775168 0,16541227
+3,4649961 444431,5832 -0,14456864 -0,092109561 0 3,6095648 2,669991101 123,4532176 2,835335809 3,7749961 0,16543136
+3,4649389 444463,5834 -0,14451134 -0,092109561 0 3,6094503 2,670809867 123,4621065 2,836205279 3,7749389 0,16548866
+3,464958 444495,5836 -0,14447315 -0,092112757 0 3,609431 2,671628631 123,4709954 2,837074746 3,774958 0,16552685
+3,464767 444527,5837 -0,14447315 -0,092111476 0 3,6092401 2,672447395 123,4798844 2,837944214 3,774767 0,16552685
+3,4646332 444559,5839 -0,14441586 -0,092112117 0 3,6090491 2,673266161 123,4887733 2,838813684 3,7746332 0,16558414
+3,4646714 444591,5841 -0,14433946 -0,092117213 0 3,6090109 2,674084929 123,4976622 2,839683155 3,7746714 0,16566054
+3,4644997 444623,5843 -0,14449224 -0,092121668 0 3,6089919 2,674903697 123,5065512 2,840552627 3,7744997 0,16550776
+3,464385 444655,5844 -0,14418669 -0,092114031 0 3,6085718 2,675722464 123,5154401 2,841422098 3,774385 0,16581331
+3,4644613 444687,5846 -0,14418669 -0,092106387 0 3,6086481 2,676541229 123,5243291 2,842291567 3,7744613 0,16581331
+3,4641941 444719,5848 -0,14376654 -0,092101924 0 3,6079607 2,677359996 123,533218 2,843161038 3,7741941 0,16623346
+3,4640603 444751,585 -0,14416759 -0,092103831 0 3,608228 2,678178763 123,5421069 2,844030508 3,7740603 0,16583241
+3,463984 444783,5851 -0,14414848 -0,092102565 0 3,6081326 2,678997527 123,5509959 2,844899976 3,773984 0,16585152
+3,4640031 444815,5853 -0,14397661 -0,092112117 0 3,6079798 2,679816295 123,5598848 2,845769448 3,7740031 0,16602339
+3,463774 444847,5855 -0,1440721 -0,092109561 0 3,607846 2,680635063 123,5687737 2,84663892 3,773774 0,1659279
+3,463774 444879,5857 -0,14386202 -0,092112757 0 3,607636 2,68145383 123,5776627 2,847508391 3,773774 0,16613798
+3,4635255 444911,5858 -0,14393842 -0,092110209 0 3,6074638 2,682272597 123,5865516 2,848377861 3,7735255 0,16606158
+3,4634874 444943,586 -0,14380474 -0,092122942 0 3,6072922 2,683091366 123,5954406 2,849247334 3,7734874 0,16619526
+3,4634111 444975,5862 -0,14369015 -0,092120394 0 3,6071012 2,683910135 123,6043295 2,850116808 3,7734111 0,16630985
+3,4633729 445007,5864 -0,14370926 -0,092107654 0 3,6070821 2,684728904 123,6132184 2,850986281 3,7733729 0,16629074
+3,4632583 445039,5865 -0,14369015 -0,092113383 0 3,6069484 2,685547674 123,6221074 2,851855755 3,7732583 0,16630985
+3,4631436 445071,5867 -0,14374745 -0,092112117 0 3,6068912 2,686366444 123,6309963 2,852725229 3,7731436 0,16625255
+3,4630673 445103,5869 -0,14361377 -0,092115298 0 3,6066811 2,687185212 123,6398853 2,8535947 3,7730673 0,16638623
+3,4629145 445135,5871 -0,14370926 -0,092112757 0 3,6066236 2,68800398 123,6487742 2,854464172 3,7729145 0,16629074
+3,4629717 445167,5873 -0,14351827 -0,092110209 0 3,6064899 2,688822748 123,6576631 2,855333644 3,7729717 0,16648173
+3,4627616 445199,5874 -0,14369015 -0,092110209 0 3,6064517 2,689641515 123,6665521 2,856203115 3,7727616 0,16630985
+3,4624753 445231,5876 -0,14349918 -0,09210702 0 3,6059744 2,690460283 123,675441 2,857072587 3,7724753 0,16650082
+3,4625897 445263,5878 -0,14338459 -0,092110842 0 3,6059744 2,691279051 123,6843299 2,857942059 3,7725897 0,16661541
+3,4624944 445295,588 -0,1433464 -0,092108302 0 3,6058407 2,692097817 123,6932189 2,858811528 3,7724944 0,1666536
+3,4624753 445327,5881 -0,14325091 -0,092104472 0 3,6057262 2,692916583 123,7021078 2,859680998 3,7724753 0,16674909
+3,4623797 445359,5883 -0,14338459 -0,092114665 0 3,6057644 2,693735351 123,7109968 2,860550471 3,7723797 0,16661541
+3,4621887 445391,5885 -0,14319362 -0,092111476 0 3,6053824 2,69455412 123,7198857 2,861419943 3,7721887 0,16680638
+3,462055 445423,5887 -0,14317453 -0,092112757 0 3,6052294 2,695372888 123,7287746 2,862289415 3,772055 0,16682547
+3,4619596 445455,5888 -0,14317453 -0,092114665 0 3,605134 2,696191657 123,7376636 2,863158888 3,7719596 0,16682547
+3,4620168 445487,589 -0,14284986 -0,092114031 0 3,6048667 2,697010423 123,7465525 2,864028358 3,7720168 0,16715014
+3,461864 445519,5892 -0,14311723 -0,092113383 0 3,6049812 2,697829186 123,7554414 2,864897825 3,771864 0,16688277
+3,4618258 445551,5894 -0,14307904 -0,092108302 0 3,6049049 2,698647948 123,7643304 2,86576729 3,7718258 0,16692096
+3,4618258 445583,5895 -0,14292626 -0,09210702 0 3,6047521 2,699466712 123,7732193 2,866636758 3,7718258 0,16707374
+3,4615967 445615,5897 -0,14304084 -0,092107654 0 3,6046376 2,700285475 123,7821083 2,867506225 3,7715967 0,16695916
+3,4614248 445647,5899 -0,14294535 -0,092110209 0 3,6043701 2,701104239 123,7909972 2,868375692 3,7714248 0,16705465
+3,4613295 445679,5901 -0,14294535 -0,092117213 0 3,6042747 2,701923001 123,7998861 2,869245157 3,7713295 0,16705465
+3,4612529 445711,5902 -0,14288807 -0,092108928 0 3,604141 2,702741767 123,8087751 2,870114627 3,7712529 0,16711193
+3,4612148 445743,5904 -0,14258251 -0,092113383 0 3,6037972 2,703560535 123,817664 2,870984099 3,7712148 0,16741749
+3,4611766 445775,5906 -0,1426398 -0,092108302 0 3,6038165 2,704379301 123,8265529 2,871853569 3,7711766 0,1673602
+3,4609666 445807,5908 -0,14275438 -0,092110209 0 3,6037209 2,705198067 123,8354419 2,872723039 3,7709666 0,16724562
+3,4609666 445839,591 -0,14258251 -0,092112117 0 3,603549 2,706016832 123,8443308 2,873592508 3,7709666 0,16741749
+3,4607372 445871,5911 -0,14258251 -0,092109561 0 3,6033196 2,706835595 123,8532198 2,874461974 3,7707372 0,16741749
+3,4609091 445903,5913 -0,14246792 -0,092103831 0 3,6033771 2,707654359 123,8621087 2,875331441 3,7709091 0,16753208
+3,4606419 445935,5915 -0,14242972 -0,092108928 0 3,6030717 2,708473123 123,8709976 2,87620091 3,7706419 0,16757028
+3,4605081 445967,5917 -0,14248702 -0,092111476 0 3,6029952 2,709291885 123,8798866 2,877070375 3,7705081 0,16751298
+3,46047 445999,5918 -0,14233424 -0,092114031 0 3,6028042 2,710110647 123,8887755 2,877939841 3,77047 0,16766576
+3,4603553 446031,592 -0,14225785 -0,092114665 0 3,6026132 2,710929412 123,8976644 2,878809308 3,7703553 0,16774215
+3,4603362 446063,5922 -0,14223875 -0,092115298 0 3,6025751 2,711748176 123,9065534 2,879678776 3,7703362 0,16776125
+3,4602027 446095,5924 -0,14220056 -0,092113383 0 3,6024032 2,712566937 123,9154423 2,880548241 3,7702027 0,16779944
+3,4601452 446127,5925 -0,14223875 -0,092103831 0 3,6023841 2,713385698 123,9243313 2,881417706 3,7701452 0,16776125
+3,4598398 446159,5927 -0,14210507 -0,092121035 0 3,6019449 2,714204461 123,9332202 2,882287172 3,7698398 0,16789493
+3,4597824 446191,5929 -0,14206688 -0,092106387 0 3,6018493 2,715023225 123,9421091 2,883156639 3,7697824 0,16793312
+3,4598398 446223,5931 -0,14218146 -0,092107654 0 3,6020212 2,715841989 123,9509981 2,884026108 3,7698398 0,16781854
+3,4597061 446255,5932 -0,1419141 -0,092108302 0 3,6016202 2,716660756 123,959887 2,884895578 3,7697061 0,1680859
+3,4597061 446287,5934 -0,14200959 -0,092112757 0 3,6017156 2,71747952 123,9687759 2,885765046 3,7697061 0,16799041
+3,4595914 446319,5936 -0,14197139 -0,092112757 0 3,6015627 2,718298287 123,9776649 2,886634517 3,7695914 0,16802861
+3,4594195 446351,5938 -0,14183772 -0,092114031 0 3,6012573 2,719117055 123,9865538 2,887503989 3,7694195 0,16816228
+3,459286 446383,5939 -0,14174223 -0,092112117 0 3,6010282 2,719935824 123,9954428 2,888373462 3,769286 0,16825777
+3,4591141 446415,5941 -0,14178042 -0,092112117 0 3,6008945 2,72075459 124,0043317 2,889242932 3,7691141 0,16821958
+3,4591141 446447,5943 -0,14168493 -0,092108928 0 3,6007991 2,721573359 124,0132206 2,890112404 3,7691141 0,16831507
+3,4590566 446479,5945 -0,14172313 -0,092113383 0 3,6007798 2,722392127 124,0221096 2,890981877 3,7690566 0,16827687
+3,4587703 446511,5947 -0,14155126 -0,09211912 0 3,6003215 2,723210897 124,0309985 2,89185135 3,7687703 0,16844874
+3,4590566 446543,5948 -0,14145577 -0,092108928 0 3,6005125 2,724029666 124,0398875 2,892720824 3,7690566 0,16854423
+3,458885 446575,595 -0,14155126 -0,09210702 0 3,6004362 2,724848434 124,0487764 2,893590295 3,768885 0,16844874
+3,4587893 446607,5952 -0,14136028 -0,092109561 0 3,6001496 2,725667201 124,0576653 2,894459766 3,7687893 0,16863972
+3,4585602 446639,5954 -0,14149396 -0,092110842 0 3,6000543 2,726485966 124,0665543 2,895329234 3,7685602 0,16850604
+3,4586365 446671,5955 -0,14115021 -0,09210702 0 3,5997868 2,727304732 124,0754432 2,896198704 3,7686365 0,16884979
+3,4584265 446703,5957 -0,14136028 -0,09210702 0 3,5997868 2,728123496 124,0843321 2,897068172 3,7684265 0,16863972
+3,4583883 446735,5959 -0,14128388 -0,092114665 0 3,5996723 2,728942263 124,0932211 2,897937643 3,7683883 0,16871612
+3,4582736 446767,5961 -0,14105472 -0,092106387 0 3,5993283 2,729761026 124,10211 2,898807109 3,7682736 0,16894528
+3,4579682 446799,5962 -0,1411884 -0,092109561 0 3,5991566 2,730579789 124,110999 2,899676576 3,7679682 0,1688116
+3,4580636 446831,5964 -0,14095923 -0,092103198 0 3,5990229 2,731398552 124,1198879 2,900546043 3,7680636 0,16904077
+3,4579108 446863,5966 -0,14116929 -0,092111476 0 3,5990801 2,732217314 124,1287768 2,901415508 3,7679108 0,16883071
+3,4578917 446895,5968 -0,14103562 -0,092119761 0 3,5989273 2,733036076 124,1376658 2,902284974 3,7678917 0,16896438
+3,4578154 446927,5969 -0,14088283 -0,092105106 0 3,5986981 2,733854839 124,1465547 2,90315444 3,7678154 0,16911717
+3,4577773 446959,5971 -0,14080645 -0,092110842 0 3,5985837 2,734673604 124,1554436 2,904023909 3,7677773 0,16919355
+3,4575479 446991,5973 -0,14084464 -0,092113383 0 3,5983925 2,735492367 124,1643326 2,904893376 3,7675479 0,16915536
+3,4576626 447023,5975 -0,14065367 -0,092110842 0 3,5983162 2,736311132 124,1732215 2,905762845 3,7676626 0,16934633
+3,4574144 447055,5976 -0,14084464 -0,092108928 0 3,598259 2,737129898 124,1821105 2,906632314 3,7674144 0,16915536
+3,4572806 447087,5978 -0,14071096 -0,092113383 0 3,5979917 2,737948663 124,1909994 2,907501782 3,7672806 0,16928904
+3,4573188 447119,598 -0,14055818 -0,092108928 0 3,597877 2,73876743 124,1998883 2,908371254 3,7673188 0,16944182
+3,4572234 447151,5982 -0,14063458 -0,09210702 0 3,597858 2,739586197 124,2087773 2,909240724 3,7672234 0,16936542
+3,4570706 447183,5984 -0,14053909 -0,092109561 0 3,5976098 2,740404965 124,2176662 2,910110196 3,7670706 0,16946091
+3,4569178 447215,5985 -0,1404818 -0,092109561 0 3,5973995 2,741223736 124,2265551 2,910979671 3,7669178 0,1695182
+3,4568415 447247,5987 -0,1404054 -0,092112117 0 3,5972469 2,742042506 124,2354441 2,911849146 3,7668415 0,1695946
+3,4567459 447279,5989 -0,1404818 -0,092114665 0 3,5972276 2,742861274 124,244333 2,912718618 3,7667459 0,1695182
+3,4566121 447311,5991 -0,14038631 -0,092114665 0 3,5969985 2,74368004 124,253222 2,913588088 3,7666121 0,16961369
+3,4567077 447343,5992 -0,14017624 -0,092115298 0 3,596884 2,744498809 124,2621109 2,91445756 3,7667077 0,16982376
+3,4565167 447375,5994 -0,14027172 -0,092109561 0 3,5967884 2,745317576 124,2709998 2,915327031 3,7665167 0,16972828
+3,4564595 447407,5996 -0,14013804 -0,092109561 0 3,5965977 2,746136341 124,2798888 2,9161965 3,7664595 0,16986196
+3,4564977 447439,5998 -0,14021443 -0,092111476 0 3,5967121 2,746955112 124,2887777 2,917065974 3,7664977 0,16978557
+3,4561729 447471,5999 -0,14000437 -0,092110842 0 3,5961773 2,747773883 124,2976666 2,91793545 3,7661729 0,16999563
+3,4560966 447503,6001 -0,14004256 -0,092112117 0 3,5961392 2,748592653 124,3065556 2,918804924 3,7660966 0,16995744
+3,4561729 447535,6003 -0,13987069 -0,092108928 0 3,5960436 2,74941142 124,3154445 2,919674395 3,7661729 0,17012931
+3,4558864 447567,6005 -0,14004256 -0,092112117 0 3,5959289 2,750230187 124,3243335 2,920543866 3,7658864 0,16995744
+3,4557338 447599,6006 -0,13964151 -0,09211912 0 3,5953753 2,751048956 124,3332224 2,921413338 3,7657338 0,17035849
+3,4558864 447631,6008 -0,13966061 -0,092113383 0 3,595547 2,751867725 124,3421113 2,922282811 3,7658864 0,17033939
+3,4556954 447663,601 -0,1397561 -0,092107654 0 3,5954516 2,752686494 124,3510003 2,923152284 3,7656954 0,1702439
+3,4557719 447695,6012 -0,13954602 -0,092109561 0 3,5953178 2,753505262 124,3598892 2,924021757 3,7657719 0,17045398
+3,4556572 447727,6013 -0,13964151 -0,092113383 0 3,5952988 2,754324031 124,3687782 2,924891229 3,7656572 0,17035849
+3,4554281 447759,6015 -0,13954602 -0,092110842 0 3,594974 2,755142801 124,3776671 2,925760703 3,7654281 0,17045398
+3,4553518 447791,6017 -0,13946964 -0,092106387 0 3,5948215 2,755961573 124,386556 2,926630179 3,7653518 0,17053036
+3,4553134 447823,6019 -0,13922137 -0,092110209 0 3,5945349 2,756780342 124,395445 2,927499653 3,7653134 0,17077863
+3,4552753 447855,6021 -0,13937415 -0,092112757 0 3,5946496 2,757599112 124,4043339 2,928369126 3,7652753 0,17062585
+3,4552181 447887,6022 -0,13931686 -0,092114665 0 3,5945349 2,758417882 124,4132228 2,9292386 3,7652181 0,17068314
+3,4549124 447919,6024 -0,13920228 -0,092112117 0 3,5941148 2,759236652 124,4221118 2,930108075 3,7649124 0,17079772
+3,4549699 447951,6026 -0,13916408 -0,092110209 0 3,5941339 2,760055421 124,4310007 2,930977548 3,7649699 0,17083592
+3,4548171 447983,6028 -0,13925956 -0,092110209 0 3,5940766 2,760874192 124,4398897 2,931847023 3,7648171 0,17074044
+3,4549506 448015,6029 -0,13899221 -0,092113383 0 3,5939429 2,761692963 124,4487786 2,932716498 3,7649506 0,17100779
+3,4547215 448047,6031 -0,1390495 -0,092105106 0 3,593771 2,762511733 124,4576675 2,933585972 3,7647215 0,1709505
+3,4545879 448079,6033 -0,13901129 -0,092112757 0 3,5935993 2,763330501 124,4665565 2,934455444 3,7645879 0,17098871
+3,4544351 448111,6035 -0,1391068 -0,092112757 0 3,5935419 2,764149266 124,4754454 2,935324912 3,7644351 0,1708932
+3,4543586 448143,6036 -0,13883942 -0,092112757 0 3,5931981 2,764968031 124,4843343 2,936194381 3,7643586 0,17116058
+3,4543586 448175,6038 -0,13876304 -0,092108302 0 3,5931215 2,765786798 124,4932233 2,937063852 3,7643586 0,17123696
+3,4544542 448207,604 -0,13878213 -0,092104472 0 3,5932362 2,766605563 124,5021122 2,937933321 3,7644542 0,17121787
+3,4542441 448239,6042 -0,13857207 -0,092112117 0 3,5928161 2,767424329 124,5110012 2,93880279 3,7642441 0,17142793
+3,4541104 448271,6043 -0,13866755 -0,092117853 0 3,592778 2,768243097 124,5198901 2,939672262 3,7641104 0,17133245
+3,4540341 448303,6045 -0,13862935 -0,09210065 0 3,5926635 2,769061866 124,528779 2,940541735 3,7640341 0,17137065
+3,4538813 448335,6047 -0,13849567 -0,092110842 0 3,5923769 2,769880634 124,537668 2,941411208 3,7638813 0,17150433
+3,4538813 448367,6049 -0,13840018 -0,092110842 0 3,5922813 2,770699403 124,5465569 2,94228068 3,7638813 0,17159982
+3,4537094 448399,605 -0,13847658 -0,092107654 0 3,592186 2,771518171 124,5554458 2,943150152 3,7637094 0,17152342
+3,4535756 448431,6052 -0,1383238 -0,092115298 0 3,5918994 2,77233694 124,5643348 2,944019625 3,7635756 0,1716762
+3,4536138 448463,6054 -0,13822831 -0,092109561 0 3,5918422 2,77315571 124,5732237 2,944889099 3,7636138 0,17177169
+3,4534802 448495,6056 -0,13817102 -0,092114665 0 3,5916512 2,773974479 124,5821127 2,945758572 3,7634802 0,17182898
+3,45327 448527,6057 -0,13803734 -0,092111476 0 3,5913074 2,774793249 124,5910016 2,946628046 3,76327 0,17196266
+3,4533083 448559,6059 -0,13798004 -0,092114665 0 3,5912883 2,77561202 124,5998905 2,947497521 3,7633083 0,17201996
+3,4531937 448591,6061 -0,13820921 -0,092116579 0 3,5914028 2,776430793 124,6087795 2,948366998 3,7631937 0,17179079
+3,4531364 448623,6063 -0,13801824 -0,092105746 0 3,5911546 2,777249564 124,6176684 2,949236474 3,7631364 0,17198176
+3,4529645 448655,6065 -0,13798004 -0,092111476 0 3,5909445 2,778068333 124,6265573 2,950105946 3,7629645 0,17201996
+3,4528117 448687,6066 -0,13796094 -0,092115298 0 3,5907726 2,778887101 124,6354463 2,950975418 3,7628117 0,17203906
+3,4528499 448719,6068 -0,13771269 -0,092103198 0 3,5905626 2,779705868 124,6443352 2,951844889 3,7628499 0,17228731
+3,4526589 448751,607 -0,13776997 -0,09210702 0 3,5904288 2,780524631 124,6532242 2,952714356 3,7626589 0,17223003
+3,4527545 448783,6072 -0,13744532 -0,092115298 0 3,5901997 2,781343399 124,6621131 2,953583827 3,7627545 0,17255468
+3,452678 448815,6073 -0,13765539 -0,092110209 0 3,5903335 2,782162168 124,671002 2,9544533 3,762678 0,17234461
+3,4523726 448847,6075 -0,13769358 -0,092116579 0 3,5900662 2,782980934 124,679891 2,955322771 3,7623726 0,17230642
+3,452487 448879,6077 -0,13744532 -0,09210702 0 3,5899322 2,783799701 124,6887799 2,956192241 3,762487 0,17255468
+3,4523151 448911,6079 -0,13734983 -0,092114665 0 3,5896649 2,784618468 124,6976689 2,957061712 3,7623151 0,17265017
+3,4522388 448943,608 -0,13729253 -0,092114031 0 3,5895314 2,785437235 124,7065578 2,957931182 3,7622388 0,17270747
+3,452296 448975,6082 -0,13742623 -0,092105746 0 3,5897222 2,786255999 124,7154467 2,958800651 3,762296 0,17257377
+3,4520478 449007,6084 -0,13710156 -0,092105746 0 3,5891495 2,787074765 124,7243357 2,95967012 3,7620478 0,17289844
+3,4519331 449039,6086 -0,13698699 -0,092112757 0 3,5889201 2,787893529 124,7332246 2,960539587 3,7619331 0,17301301
+3,4518759 449071,6087 -0,13717796 -0,092108928 0 3,5890539 2,788712292 124,7421135 2,961409055 3,7618759 0,17282204
+3,4519331 449103,6089 -0,13696788 -0,092105746 0 3,588901 2,789531058 124,7510025 2,962278524 3,7619331 0,17303212
+3,4516087 449135,6091 -0,13706337 -0,092110842 0 3,5886719 2,790349827 124,7598914 2,963147997 3,7616087 0,17293663
+3,4517231 449167,6093 -0,13679601 -0,092117213 0 3,5885191 2,791168596 124,7687804 2,96401747 3,7617231 0,17320399
+3,4515703 449199,6094 -0,1368724 -0,092114031 0 3,5884426 2,79198736 124,7776693 2,964886938 3,7615703 0,1731276
+3,4515896 449231,6096 -0,13679601 -0,092110209 0 3,5883856 2,792806131 124,7865582 2,965756412 3,7615896 0,17320399
+3,4515131 449263,6098 -0,13670053 -0,092112117 0 3,5882137 2,793624902 124,7954472 2,966625888 3,7615131 0,17329947
+3,4511502 449295,61 -0,13679601 -0,092112757 0 3,5879462 2,794443672 124,8043361 2,967495362 3,7611502 0,17320399
+3,451093 449327,6102 -0,13664323 -0,092112757 0 3,5877361 2,795262443 124,813225 2,968364837 3,761093 0,17335677
+3,4510548 449359,6103 -0,13656683 -0,092110209 0 3,5876217 2,796081212 124,822114 2,96923431 3,7610548 0,17343317
+3,4510739 449391,6105 -0,13643315 -0,092111476 0 3,587507 2,796899982 124,8310029 2,970103784 3,7610739 0,17356685
+3,4509974 449423,6107 -0,13647135 -0,092109561 0 3,5874686 2,79771875 124,8398919 2,970973256 3,7609974 0,17352865
+3,4507492 449455,6109 -0,13650955 -0,092108928 0 3,5872588 2,798537519 124,8487808 2,971842728 3,7607492 0,17349045
+3,4507682 449487,611 -0,13622309 -0,092107654 0 3,5869913 2,799356285 124,8576697 2,972712199 3,7607682 0,17377691
+3,4506154 449519,6112 -0,13631858 -0,092111476 0 3,5869341 2,800175049 124,8665587 2,973581666 3,7606154 0,17368142
+3,450711 449551,6114 -0,13614669 -0,092103198 0 3,5868578 2,800993809 124,8754476 2,97445113 3,760711 0,17385331
+3,4504054 449583,6116 -0,13612761 -0,092115298 0 3,5865331 2,801812572 124,8843365 2,975320596 3,7604054 0,17387239
+3,4505582 449615,6117 -0,13593663 -0,092107654 0 3,5864949 2,802631337 124,8932255 2,976190065 3,7605582 0,17406337
+3,4502335 449647,6119 -0,13603212 -0,092106387 0 3,5862656 2,803450099 124,9021144 2,977059531 3,7602335 0,17396788
+3,4501381 449679,6121 -0,13570745 -0,092111476 0 3,5858455 2,804268864 124,9110034 2,977928999 3,7601381 0,17429255
+3,4502335 449711,6123 -0,13576475 -0,092112117 0 3,5859983 2,805087628 124,9198923 2,978798467 3,7602335 0,17423525
+3,4499853 449743,6124 -0,13584115 -0,092110842 0 3,5858264 2,805906391 124,9287812 2,979667934 3,7599853 0,17415885
+3,4499471 449775,6126 -0,13578385 -0,092105106 0 3,585731 2,806725155 124,9376702 2,980537401 3,7599471 0,17421615
+3,4500425 449807,6128 -0,13557377 -0,09210702 0 3,5856164 2,807543922 124,9465591 2,981406872 3,7600425 0,17442623
+3,4499662 449839,613 -0,13534461 -0,09210702 0 3,5853107 2,80836269 124,955448 2,982276343 3,7599662 0,17465539
+3,4496605 449871,6131 -0,13549739 -0,092112117 0 3,5851579 2,809181455 124,964337 2,983145812 3,7596605 0,17450261
+3,4495842 449903,6133 -0,13551648 -0,092104472 0 3,5851007 2,810000218 124,9732259 2,984015279 3,7595842 0,17448352
+3,4495842 449935,6135 -0,13555469 -0,092112757 0 3,585139 2,810818985 124,9821149 2,98488475 3,7595842 0,17444531
+3,4496415 449967,6137 -0,13532551 -0,092109561 0 3,5849669 2,811637755 124,9910038 2,985754223 3,7596415 0,17467449
+3,4493933 449999,6139 -0,13519183 -0,092110842 0 3,5845852 2,812456523 124,9998927 2,986623696 3,7593933 0,17480817
+3,4492977 450031,614 -0,13513453 -0,092112757 0 3,5844321 2,813275292 125,0087817 2,987493168 3,7592977 0,17486547
+3,4492977 450063,6142 -0,13505815 -0,092117853 0 3,5843558 2,814094058 125,0176706 2,988362639 3,7592977 0,17494185
+3,4492214 450095,6144 -0,13498177 -0,092106387 0 3,5842032 2,814912823 125,0265596 2,989232107 3,7592214 0,17501823
+3,4490495 450127,6146 -0,13480988 -0,092118487 0 3,5838594 2,815731587 125,0354485 2,990101575 3,7590495 0,17519012
+3,4490113 450159,6147 -0,13480988 -0,092110209 0 3,5838213 2,816550349 125,0443374 2,99097104 3,7590113 0,17519012
+3,4489923 450191,6149 -0,1346762 -0,092112117 0 3,5836685 2,817369112 125,0532264 2,991840507 3,7589923 0,1753238
+3,4489348 450223,6151 -0,13471439 -0,092113383 0 3,5836492 2,818187878 125,0621153 2,992709976 3,7589348 0,17528561
+3,4486866 450255,6153 -0,13459982 -0,092113383 0 3,5832865 2,819006644 125,0710042 2,993579447 3,7586866 0,17540018
+3,4486294 450287,6154 -0,1346762 -0,092105746 0 3,5833056 2,81982541 125,0798932 2,994448916 3,7586294 0,1753238
+3,4483428 450319,6156 -0,1346762 -0,092109561 0 3,583019 2,820644177 125,0887821 2,995318387 3,7583428 0,1753238
+3,4484766 450351,6158 -0,13440883 -0,092111476 0 3,5828853 2,821462942 125,0976711 2,996187856 3,7584766 0,17559117
+3,4484766 450383,616 -0,13452342 -0,092113383 0 3,5829999 2,822281708 125,10656 2,997057326 3,7584766 0,17547658
+3,4482665 450415,6161 -0,13446613 -0,092110842 0 3,5827327 2,823100477 125,1154489 2,997926798 3,7582665 0,17553387
+3,4483237 450447,6163 -0,13444704 -0,092111476 0 3,5827708 2,823919243 125,1243379 2,998796268 3,7583237 0,17555296
+3,4482474 450479,6165 -0,13414147 -0,092106387 0 3,5823889 2,824738011 125,1332268 2,99966574 3,7582474 0,17585853
+3,4479799 450511,6167 -0,13410328 -0,092114665 0 3,5820832 2,825556777 125,1421157 3,00053521 3,7579799 0,17589672
+3,4479418 450543,6168 -0,1339696 -0,092112757 0 3,5819113 2,826375543 125,1510047 3,00140468 3,7579418 0,1760304
+3,4478846 450575,617 -0,13402689 -0,092109561 0 3,5819116 2,82719431 125,1598936 3,002274151 3,7578846 0,17597311
+3,4476361 450607,6172 -0,13398869 -0,092111476 0 3,5816247 2,828013078 125,1687826 3,003143623 3,7576361 0,17601131
+3,4477127 450639,6174 -0,1339314 -0,092108302 0 3,5816441 2,828831843 125,1776715 3,004013091 3,7577127 0,1760686
+3,4476936 450671,6176 -0,13387412 -0,092107654 0 3,5815678 2,829650606 125,1865604 3,004882558 3,7576936 0,17612588
+3,4475026 450703,6177 -0,13383591 -0,092114031 0 3,5813384 2,830469371 125,1954494 3,005752027 3,7575026 0,17616409
+3,4473879 450735,6179 -0,13368315 -0,092112757 0 3,5810711 2,831288135 125,2043383 3,006621494 3,7573879 0,17631685
+3,4472926 450767,6181 -0,13372134 -0,092114031 0 3,5810139 2,832106897 125,2132272 3,007490959 3,7572926 0,17627866
+3,4473307 450799,6183 -0,13364494 -0,092102565 0 3,5809755 2,832925662 125,2221162 3,008360429 3,7573307 0,17635506
+3,4472351 450831,6184 -0,13341577 -0,092108302 0 3,5806508 2,833744427 125,2310051 3,009229898 3,7572351 0,17658423
+3,447216 450863,6186 -0,13337758 -0,092107654 0 3,5805936 2,834563196 125,2398941 3,01009937 3,757216 0,17662242
+3,4471207 450895,6188 -0,13347307 -0,092114031 0 3,5805938 2,835381966 125,248783 3,010968844 3,7571207 0,17652693
+3,4470251 450927,619 -0,13320571 -0,092110209 0 3,5802307 2,836200729 125,2576719 3,011838311 3,7570251 0,17679429
+3,4469488 450959,6191 -0,13318661 -0,092107654 0 3,5801353 2,837019492 125,2665609 3,012707777 3,7569488 0,17681339
+3,4468341 450991,6193 -0,1332821 -0,092117853 0 3,5801163 2,837838256 125,2754498 3,013577245 3,7568341 0,1767179
+3,4465284 451023,6195 -0,13303383 -0,092110209 0 3,5795622 2,838657024 125,2843387 3,014446716 3,7565284 0,17696617
+3,4465094 451055,6197 -0,13301474 -0,092114665 0 3,579524 2,839475792 125,2932277 3,015316188 3,7565094 0,17698526
+3,4467194 451087,6198 -0,13295744 -0,092107654 0 3,5796769 2,840294558 125,3021166 3,016185659 3,7567194 0,17704256
+3,4465284 451119,62 -0,13284285 -0,092105746 0 3,5793712 2,841113326 125,3110056 3,01705513 3,7565284 0,17715715
+3,4463568 451151,6202 -0,13282377 -0,092115298 0 3,5791805 2,841932092 125,3198945 3,0179246 3,7563568 0,17717623
+3,4463568 451183,6204 -0,13259459 -0,092108928 0 3,5789514 2,84275086 125,3287834 3,018794072 3,7563568 0,17740541
+3,4462039 451215,6205 -0,13267098 -0,092115298 0 3,5788748 2,843569627 125,3376724 3,019663543 3,7562039 0,17732902
+3,4460702 451247,6207 -0,13248001 -0,092108302 0 3,5785501 2,844388396 125,3465613 3,020533016 3,7560702 0,17751999
+3,4459555 451279,6209 -0,1324991 -0,092105746 0 3,5784545 2,845207161 125,3554502 3,021402485 3,7559555 0,1775009
+3,446013 451311,6211 -0,13246091 -0,092116579 0 3,5784738 2,846025928 125,3643392 3,022271956 3,756013 0,17753909
+3,445822 451343,6213 -0,13228904 -0,092104472 0 3,5781109 2,84684469 125,3732281 3,023141421 3,755822 0,17771096
+3,4456882 451375,6214 -0,13226993 -0,092109561 0 3,5779581 2,847663453 125,3821171 3,024010887 3,7556882 0,17773007
+3,4456692 451407,6216 -0,13232723 -0,092110209 0 3,5779965 2,848482214 125,391006 3,024880352 3,7556692 0,17767277
+3,4456882 451439,6218 -0,13228904 -0,092110842 0 3,5779772 2,849300976 125,3998949 3,025749817 3,7556882 0,17771096
+3,4454591 451471,622 -0,13215534 -0,092111476 0 3,5776145 2,85011974 125,4087839 3,026619285 3,7554591 0,17784466
+3,4453254 451503,6221 -0,13200258 -0,092110842 0 3,577328 2,850938501 125,4176728 3,02748875 3,7553254 0,17799742
+3,4453826 451535,6223 -0,13211715 -0,092108928 0 3,5774999 2,851757261 125,4265618 3,028358213 3,7553826 0,17788285
+3,4454591 451567,6225 -0,13175431 -0,092117213 0 3,5772135 2,852576027 125,4354507 3,029227682 3,7554591 0,17824569
+3,4451153 451599,6227 -0,1318498 -0,092109561 0 3,5769651 2,853394791 125,4443396 3,03009715 3,7551153 0,1781502
+3,4451725 451631,6228 -0,13171612 -0,09210702 0 3,5768886 2,854213552 125,4532286 3,030966615 3,7551725 0,17828388
+3,4450388 451663,623 -0,13171612 -0,092110209 0 3,5767548 2,855032315 125,4621175 3,031836082 3,7550388 0,17828388
+3,4450388 451695,6232 -0,13154423 -0,092109561 0 3,5765829 2,855851078 125,4710064 3,032705548 3,7550388 0,17845577
+3,4450772 451727,6234 -0,13152514 -0,092108928 0 3,5766022 2,856669839 125,4798954 3,033575012 3,7550772 0,17847486
+3,4446952 451759,6235 -0,13158242 -0,092115939 0 3,5762777 2,857488601 125,4887843 3,034444478 3,7546952 0,17841758
+3,4446762 451791,6237 -0,13142966 -0,092104472 0 3,5761058 2,858307362 125,4976733 3,035313943 3,7546762 0,17857034
+3,4445615 451823,6239 -0,13133417 -0,092113383 0 3,5758955 2,859126121 125,5065622 3,036183405 3,7545615 0,17866583
+3,4443133 451855,6241 -0,13118139 -0,092112757 0 3,5754948 2,859944882 125,5154511 3,037052869 3,7543133 0,17881861
+3,4443705 451887,6242 -0,13125777 -0,092112117 0 3,5756283 2,860763643 125,5243401 3,037922334 3,7543705 0,17874223
+3,4444468 451919,6244 -0,1310859 -0,092109561 0 3,5755327 2,861582405 125,533229 3,038791799 3,7544468 0,1789141
+3,4442368 451951,6246 -0,13120048 -0,092111476 0 3,5754373 2,862401167 125,5421179 3,039661265 3,7542368 0,17879952
+3,4442749 451983,6248 -0,13089493 -0,092111476 0 3,5751698 2,863219929 125,5510069 3,04053073 3,7542749 0,17910507
+3,444103 452015,625 -0,13087583 -0,092113383 0 3,5749788 2,864038687 125,5598958 3,041400191 3,754103 0,17912417
+3,4440839 452047,6251 -0,1310095 -0,092110842 0 3,5750935 2,864857445 125,5687848 3,042269653 3,7540839 0,1789905
+3,4439504 452079,6253 -0,13070396 -0,092111476 0 3,5746543 2,865676204 125,5776737 3,043139116 3,7539504 0,17929604
+3,443912 452111,6255 -0,13066576 -0,09210702 0 3,5745778 2,866494963 125,5865626 3,044008577 3,753912 0,17933424
+3,4436257 452143,6257 -0,13064666 -0,092109561 0 3,5742724 2,867313726 125,5954516 3,044878044 3,7536257 0,17935334
+3,443511 452175,6258 -0,13049388 -0,092111476 0 3,5740049 2,868132492 125,6043405 3,045747514 3,753511 0,17950612
+3,443511 452207,626 -0,13055117 -0,092115298 0 3,5740621 2,868951256 125,6132294 3,046616981 3,753511 0,17944883
+3,4434919 452239,6262 -0,13045569 -0,092110842 0 3,5739477 2,869770022 125,6221184 3,047486451 3,7534919 0,17954431
+3,4432819 452271,6264 -0,1303793 -0,092113383 0 3,5736611 2,870588787 125,6310073 3,04835592 3,7532819 0,1796207
+3,4432056 452303,6265 -0,13026471 -0,092113383 0 3,5734704 2,871407554 125,6398963 3,049225391 3,7532056 0,17973529
+3,4431481 452335,6267 -0,1303411 -0,092110842 0 3,5734892 2,872226322 125,6487852 3,050094863 3,7531481 0,1796589
+3,4431672 452367,6269 -0,13024561 -0,092114031 0 3,5734129 2,873045089 125,6576741 3,050964334 3,7531672 0,17975439
+3,4431291 452399,6271 -0,12999736 -0,09210702 0 3,5731263 2,873863852 125,6665631 3,051833801 3,7531291 0,18000264
+3,4430337 452431,6272 -0,13009284 -0,092115939 0 3,5731266 2,874682616 125,675452 3,052703268 3,7530337 0,17990716
+3,442919 452463,6274 -0,12995915 -0,092101924 0 3,5728781 2,87550138 125,6843409 3,053572736 3,752919 0,18004085
+3,4427662 452495,6276 -0,13003555 -0,092111476 0 3,5728018 2,876320145 125,6932299 3,054442204 3,7527662 0,17996445
+3,442709 452527,6278 -0,12971088 -0,092112117 0 3,5724199 2,87713891 125,7021188 3,055311673 3,752709 0,18028912
+3,4426517 452559,6279 -0,12972999 -0,092121668 0 3,5723817 2,877957675 125,7110078 3,056181142 3,7526517 0,18027001
+3,4425561 452591,6281 -0,12974909 -0,092100017 0 3,5723052 2,878776439 125,7198967 3,05705061 3,7525561 0,18025091
+3,4424989 452623,6283 -0,12978728 -0,092108302 0 3,5722861 2,879595203 125,7287856 3,057920077 3,7524989 0,18021272
+3,4423652 452655,6285 -0,12967269 -0,092115939 0 3,5720379 2,880413965 125,7376746 3,058789542 3,7523652 0,18032731
+3,4423079 452687,6286 -0,12969179 -0,092108928 0 3,5719998 2,881232726 125,7465635 3,059659007 3,7523079 0,18030821
+3,4420979 452719,6288 -0,12948172 -0,092106387 0 3,5715797 2,882051486 125,7554525 3,06052847 3,7520979 0,18051828
+3,4422507 452751,629 -0,12938623 -0,092115298 0 3,5716369 2,88287025 125,7643414 3,061397938 3,7522507 0,18061377
+3,441926 452783,6292 -0,12930985 -0,092111476 0 3,5712359 2,883689015 125,7732303 3,062267407 3,751926 0,18069015
+3,4420598 452815,6294 -0,12940533 -0,092108928 0 3,571465 2,88450778 125,7821193 3,063136875 3,7520598 0,18059467
+3,4418879 452847,6295 -0,12934804 -0,092110209 0 3,5712359 2,885326542 125,7910082 3,064006341 3,7518879 0,18065196
+3,4418495 452879,6297 -0,12919526 -0,092109561 0 3,5710447 2,886145308 125,7998971 3,064875811 3,7518495 0,18080474
+3,4414866 452911,6299 -0,12913796 -0,092110209 0 3,5706246 2,886964076 125,8087861 3,065745283 3,7514866 0,18086204
+3,441735 452943,6301 -0,12915707 -0,092110842 0 3,5708921 2,887782844 125,817675 3,066614755 3,751735 0,18084293
+3,4415059 452975,6302 -0,12888971 -0,092109561 0 3,5703957 2,88860161 125,826564 3,067484224 3,7515059 0,18111029
+3,4414103 453007,6304 -0,12906158 -0,09210702 0 3,5704718 2,889420375 125,8354529 3,068353693 3,7514103 0,18093842
+3,4411812 453039,6306 -0,12894699 -0,092117213 0 3,5701282 2,890239138 125,8443418 3,06922316 3,7511812 0,18105301
+3,441334 453071,6308 -0,12888971 -0,092110842 0 3,5702238 2,891057904 125,8532308 3,07009263 3,751334 0,18111029
+3,4410856 453103,6309 -0,12877512 -0,092108928 0 3,5698607 2,891876666 125,8621197 3,070962095 3,7510856 0,18122488
+3,4411621 453135,6311 -0,12879422 -0,092111476 0 3,5699563 2,89269543 125,8710086 3,071831563 3,7511621 0,18120578
+3,4410665 453167,6313 -0,12852685 -0,09210702 0 3,5695934 2,893514193 125,8798976 3,07270103 3,7510665 0,18147315
+3,4410284 453199,6315 -0,12854595 -0,092112757 0 3,5695744 2,894332958 125,8887865 3,073570498 3,7510284 0,18145405
+3,4408565 453231,6316 -0,12850776 -0,092108928 0 3,5693643 2,895151721 125,8976755 3,074439965 3,7508565 0,18149224
+3,4407802 453263,6318 -0,12846956 -0,092110209 0 3,5692496 2,895970487 125,9065644 3,075309435 3,7507802 0,18153044
+3,4407992 453295,632 -0,12837407 -0,092117213 0 3,5691733 2,896789251 125,9154533 3,076178902 3,7507992 0,18162593
+3,4406846 453327,6322 -0,12827858 -0,092114031 0 3,5689631 2,897608015 125,9243423 3,07704837 3,7506846 0,18172142
+3,4405892 453359,6323 -0,12812582 -0,092113383 0 3,5687151 2,898426779 125,9332312 3,077917837 3,7505892 0,18187418
+3,4405892 453391,6325 -0,12812582 -0,092117853 0 3,5687151 2,899245543 125,9421201 3,078787305 3,7505892 0,18187418
+3,4404364 453423,6327 -0,12831679 -0,092109561 0 3,5687532 2,900064307 125,9510091 3,079656772 3,7504364 0,18168321
+3,4403791 453455,6329 -0,1282022 -0,092104472 0 3,5685813 2,90088307 125,959898 3,080526239 3,7503791 0,1817978
+3,4400544 453487,6331 -0,12797303 -0,092114665 0 3,5680275 2,901701834 125,968787 3,081395707 3,7500544 0,18202697
+3,4401689 453519,6332 -0,12806852 -0,09210702 0 3,5682373 2,902520598 125,9776759 3,082265174 3,7501689 0,18193148
+3,4401689 453551,6334 -0,12783936 -0,092109561 0 3,5680082 2,903339359 125,9865648 3,083134639 3,7501689 0,18216064
+3,4401498 453583,6336 -0,12782025 -0,092113383 0 3,56797 2,90415812 125,9954538 3,084004103 3,7501498 0,18217975
+3,4398634 453615,6338 -0,12768658 -0,092109561 0 3,5675499 2,904976884 126,0043427 3,084873571 3,7498634 0,18231342
+3,4396915 453647,6339 -0,12783936 -0,092115298 0 3,5675309 2,90579565 126,0132316 3,085743041 3,7496915 0,18216064
+3,4397488 453679,6341 -0,12766747 -0,092105746 0 3,5674162 2,906614418 126,0221206 3,086612512 3,7497488 0,18233253
+3,4397106 453711,6343 -0,1274956 -0,092108928 0 3,5672061 2,907433183 126,0310095 3,087481982 3,7497106 0,1825044
+3,4395578 453743,6345 -0,12743831 -0,092119761 0 3,5669961 2,908251949 126,0398985 3,088351451 3,7495578 0,18256169
+3,439424 453775,6346 -0,12730463 -0,092114665 0 3,5667286 2,909070711 126,0487874 3,089220917 3,749424 0,18269537
+3,439405 453807,6348 -0,1274956 -0,092114665 0 3,5669005 2,909889473 126,0576763 3,090090382 3,749405 0,1825044
+3,4393287 453839,635 -0,1274574 -0,092108302 0 3,5667861 2,91070824 126,0665653 3,090959853 3,7493287 0,1825426
+3,4391377 453871,6352 -0,12740012 -0,092109561 0 3,5665379 2,911527007 126,0754542 3,091829324 3,7491377 0,18259988
+3,4391758 453903,6353 -0,12730463 -0,092111476 0 3,5664804 2,912345775 126,0843432 3,092698796 3,7491758 0,18269537
+3,4390421 453935,6355 -0,12711366 -0,092109561 0 3,5661557 2,913164541 126,0932321 3,093568265 3,7490421 0,18288634
+3,439023 453967,6357 -0,12707545 -0,092112117 0 3,5660985 2,913983305 126,102121 3,094437733 3,749023 0,18292455
+3,4387558 453999,6359 -0,12703726 -0,092108928 0 3,565793 2,914802064 126,11101 3,095307196 3,7487558 0,18296274
+3,4386792 454031,636 -0,12715185 -0,092114665 0 3,5658312 2,915620825 126,1198989 3,09617666 3,7486792 0,18284815
+3,4387558 454063,6362 -0,1268272 -0,092114665 0 3,565583 2,916439589 126,1287878 3,097046127 3,7487558 0,1831728
+3,438622 454095,6364 -0,12694177 -0,092112757 0 3,5655637 2,917258354 126,1376768 3,097915596 3,748622 0,18305823
+3,4384692 454127,6366 -0,1268272 -0,092110842 0 3,5652964 2,918077121 126,1465657 3,098785067 3,7484692 0,1831728
+3,4384501 454159,6368 -0,12671261 -0,092112117 0 3,5651627 2,918895885 126,1554547 3,099654535 3,7484501 0,18328739
+3,4385266 454191,6369 -0,12659802 -0,092112757 0 3,5651248 2,919714648 126,1643436 3,100524002 3,7485266 0,18340198
+3,4383929 454223,6371 -0,12652163 -0,092113383 0 3,5649145 2,920533411 126,1732325 3,101393468 3,7483929 0,18347837
+3,4381447 454255,6373 -0,12652163 -0,092114031 0 3,5646663 2,921352175 126,1821215 3,102262936 3,7481447 0,18347837
+3,4382019 454287,6375 -0,12655982 -0,092112117 0 3,5647616 2,922170941 126,1910104 3,103132405 3,7482019 0,18344018
+3,4379919 454319,6376 -0,12648344 -0,092110842 0 3,5644753 2,922989705 126,1998993 3,104001873 3,7479919 0,18351656
+3,4379153 454351,6378 -0,12633066 -0,092103831 0 3,5642459 2,923808467 126,2087883 3,104871338 3,7479153 0,18366934
+3,4379728 454383,638 -0,12631156 -0,092107654 0 3,5642843 2,924627227 126,2176772 3,105740802 3,7479728 0,18368844
+3,437629 454415,6382 -0,12629247 -0,092107654 0 3,5639215 2,925445988 126,2265662 3,106610266 3,747629 0,18370753
+3,4376481 454447,6383 -0,12631156 -0,092105746 0 3,5639596 2,926264752 126,2354551 3,107479734 3,7476481 0,18368844
+3,4377053 454479,6385 -0,12615879 -0,092104472 0 3,563864 2,927083515 126,244344 3,1083492 3,7477053 0,18384121
+3,4375334 454511,6387 -0,1260633 -0,092105106 0 3,5635967 2,927902277 126,253233 3,109218667 3,7475334 0,1839367
+3,437438 454543,6389 -0,1259869 -0,092102565 0 3,5634248 2,928721039 126,2621219 3,110088131 3,747438 0,1840131
+3,4374189 454575,639 -0,12592961 -0,092114665 0 3,5633485 2,9295398 126,2710108 3,110957596 3,7474189 0,18407039
+3,4373808 454607,6392 -0,12591052 -0,092112117 0 3,5632913 2,930358558 126,2798998 3,111827058 3,7473808 0,18408948
+3,4371514 454639,6394 -0,12592961 -0,092102565 0 3,563081 2,931177319 126,2887887 3,112696522 3,7471514 0,18407039
+3,4371324 454671,6396 -0,12577684 -0,092108928 0 3,5629091 2,931996084 126,2976777 3,113565991 3,7471324 0,18422316
+3,437228 454703,6397 -0,12571955 -0,092117853 0 3,5629475 2,93281485 126,3065666 3,11443546 3,747228 0,18428045
+3,437037 454735,6399 -0,12550947 -0,092114031 0 3,5625465 2,933633614 126,3154555 3,115304928 3,747037 0,18449053
+3,4369032 454767,6401 -0,12545218 -0,092108302 0 3,5623555 2,934452376 126,3243445 3,116174394 3,7469032 0,18454782
+3,4368842 454799,6403 -0,12539488 -0,092115939 0 3,562279 2,935271135 126,3332334 3,117043856 3,7468842 0,18460512
+3,4368076 454831,6405 -0,12541398 -0,09210702 0 3,5622215 2,936089893 126,3421223 3,117913318 3,7468076 0,18458602
+3,4366932 454863,6406 -0,1253376 -0,092110842 0 3,5620308 2,936908656 126,3510113 3,118782784 3,7466932 0,1846624
+3,4365976 454895,6408 -0,12520391 -0,092108302 0 3,5618014 2,937727418 126,3599002 3,119652249 3,7465976 0,18479609
+3,4365213 454927,641 -0,12514663 -0,092110842 0 3,5616679 2,938546181 126,3687892 3,120521716 3,7465213 0,18485337
+3,4363494 454959,6412 -0,12528031 -0,092114665 0 3,5616298 2,939364945 126,3776781 3,121391184 3,7463494 0,18471969
+3,4364066 454991,6413 -0,12501293 -0,092110842 0 3,5614195 2,940183706 126,386567 3,122260649 3,7464066 0,18498707
+3,4363685 455023,6415 -0,12501293 -0,09211912 0 3,5613813 2,94100247 126,395456 3,123130116 3,7463685 0,18498707
+3,4362731 455055,6417 -0,12489835 -0,092110842 0 3,5611715 2,941821232 126,4043449 3,123999582 3,7462731 0,18510165
+3,4360056 455087,6419 -0,12499384 -0,092106387 0 3,5609994 2,942639996 126,4132339 3,124869049 3,7460056 0,18500616
+3,4359102 455119,642 -0,12482196 -0,092110842 0 3,5607321 2,943458762 126,4221228 3,125738519 3,7459102 0,18517804
+3,4358718 455151,6422 -0,12484106 -0,092112117 0 3,5607128 2,944277527 126,4310117 3,126607988 3,7458718 0,18515894
+3,4358528 455183,6424 -0,12468828 -0,092105746 0 3,5605412 2,945096295 126,4399007 3,127477459 3,7458528 0,18531172
+3,4357955 455215,6426 -0,12470738 -0,092105106 0 3,560503 2,945915061 126,4487896 3,128346929 3,7457955 0,18529262
+3,4357193 455247,6427 -0,12447821 -0,092103198 0 3,5601974 2,946733825 126,4576785 3,129216397 3,7457193 0,18552179
+3,4356427 455279,6429 -0,12440182 -0,092112117 0 3,5600445 2,947552592 126,4665675 3,130085867 3,7456427 0,18559818
+3,4355664 455311,6431 -0,1245546 -0,092108302 0 3,5601211 2,948371356 126,4754564 3,130955335 3,7455664 0,1854454
+3,4353182 455343,6433 -0,12421085 -0,092110209 0 3,5595291 2,949190122 126,4843454 3,131824805 3,7453182 0,18578915
+3,4351463 455375,6434 -0,12421085 -0,092115298 0 3,5593572 2,950008887 126,4932343 3,132694274 3,7451463 0,18578915
+3,4351845 455407,6436 -0,12440182 -0,092118487 0 3,5595863 2,950827651 126,5021232 3,133563741 3,7451845 0,18559818
+3,4350889 455439,6438 -0,12403897 -0,092108928 0 3,5591278 2,951646418 126,5110122 3,134433212 3,7450889 0,18596103
+3,4348979 455471,644 -0,12422995 -0,092110842 0 3,5591278 2,952465183 126,5199011 3,135302681 3,7448979 0,18577005
+3,4348979 455503,6442 -0,12405807 -0,092109561 0 3,5589559 2,953283948 126,52879 3,136172149 3,7448979 0,18594193
+3,4349935 455535,6443 -0,12390529 -0,092127405 0 3,5588987 2,95410271 126,537679 3,137041615 3,7449935 0,18609471
+3,4348216 455567,6445 -0,12403897 -0,092108928 0 3,5588605 2,95492147 126,5465679 3,137911079 3,7448216 0,18596103
+3,4347069 455599,6447 -0,12386709 -0,092105746 0 3,558574 2,955740229 126,5554569 3,138780541 3,7447069 0,18613291
+3,4347644 455631,6449 -0,12380981 -0,092108928 0 3,5585742 2,956558991 126,5643458 3,139650006 3,7447644 0,18619019
+3,4347644 455663,645 -0,12365703 -0,092114665 0 3,5584214 2,957377755 126,5732347 3,140519474 3,7447644 0,18634297
+3,4345925 455695,6452 -0,12365703 -0,092112117 0 3,5582495 2,958196521 126,5821237 3,141388943 3,7445925 0,18634297
+3,4344587 455727,6454 -0,12358063 -0,092105746 0 3,5580394 2,959015288 126,5910126 3,142258415 3,7444587 0,18641937
+3,4344206 455759,6456 -0,12342786 -0,092115298 0 3,5578485 2,959834054 126,5999015 3,143127884 3,7444206 0,18657214
+3,4343824 455791,6457 -0,12331327 -0,092103198 0 3,5576956 2,960652816 126,6087905 3,14399735 3,7443824 0,18668673
+3,4342296 455823,6459 -0,12337057 -0,092113383 0 3,5576003 2,96147158 126,6176794 3,144866818 3,7442296 0,18662943
+3,4340577 455855,6461 -0,12321778 -0,092115939 0 3,5572755 2,962290343 126,6265684 3,145736284 3,7440577 0,18678222
+3,4339621 455887,6463 -0,12325598 -0,092107654 0 3,5572181 2,963109106 126,6354573 3,146605751 3,7439621 0,18674402
+3,4338477 455919,6464 -0,12338966 -0,092104472 0 3,5572374 2,963927871 126,6443462 3,147475219 3,7438477 0,18661034
+3,4338093 455951,6466 -0,12314139 -0,092109561 0 3,5569506 2,964746634 126,6532352 3,148344686 3,7438093 0,18685861
+3,4336948 455983,6468 -0,12302681 -0,092110842 0 3,5567217 2,965565395 126,6621241 3,149214151 3,7436948 0,18697319
+3,4337711 456015,647 -0,12308411 -0,092112117 0 3,5568552 2,96638416 126,671013 3,150083619 3,7437711 0,18691589
+3,4336376 456047,6471 -0,12298862 -0,092103198 0 3,5566263 2,967202925 126,679902 3,150953088 3,7436376 0,18701138
+3,4334466 456079,6473 -0,12275945 -0,092110209 0 3,556206 2,96802169 126,6887909 3,151822557 3,7434466 0,18724055
+3,4334466 456111,6475 -0,12270216 -0,092113383 0 3,5561488 2,968840457 126,6976799 3,152692027 3,7434466 0,18729784
+3,433351 456143,6477 -0,12270216 -0,092104472 0 3,5560532 2,969659223 126,7065688 3,153561497 3,743351 0,18729784
+3,4334083 456175,6479 -0,12268306 -0,092111476 0 3,5560913 2,970477988 126,7154577 3,154430966 3,7434083 0,18731694
+3,4331982 456207,648 -0,1223966 -0,092108302 0 3,5555949 2,971296753 126,7243467 3,155300435 3,7431982 0,1876034
+3,4331601 456239,6482 -0,12262577 -0,092110209 0 3,5557859 2,972115521 126,7332356 3,156169906 3,7431601 0,18737423
+3,4331219 456271,6484 -0,1223775 -0,092105746 0 3,5554993 2,97293429 126,7421245 3,15703938 3,7431219 0,1876225
+3,4330072 456303,6486 -0,1223584 -0,092115939 0 3,5553656 2,973753059 126,7510135 3,157908853 3,7430072 0,1876416
+3,4328544 456335,6487 -0,1223966 -0,092108928 0 3,5552511 2,974571833 126,7599024 3,158778331 3,7428544 0,1876034
+3,4328928 456367,6489 -0,12226292 -0,092104472 0 3,5551558 2,975390601 126,7687914 3,159647802 3,7428928 0,18773708
+3,4326444 456399,6491 -0,12214833 -0,092112117 0 3,5547926 2,976209366 126,7776803 3,160517271 3,7426444 0,18785167
+3,4326253 456431,6493 -0,12203375 -0,092114665 0 3,5546591 2,977028132 126,7865692 3,161386741 3,7426253 0,18796625
+3,4325299 456463,6494 -0,12191916 -0,092105106 0 3,5544491 2,977846897 126,7954582 3,162256209 3,7425299 0,18808084
+3,4323962 456495,6496 -0,12190007 -0,092108928 0 3,5542963 2,97866566 126,8043471 3,163125677 3,7423962 0,18809993
+3,4324915 456527,6498 -0,1216709 -0,092113383 0 3,5541625 2,979484424 126,8132361 3,163995144 3,7424915 0,1883291
+3,4323196 456559,65 -0,12176639 -0,092111476 0 3,554086 2,980303187 126,822125 3,164864611 3,7423196 0,18823361
+3,432148 456591,6501 -0,12178548 -0,092111476 0 3,5539334 2,981121949 126,8310139 3,165734077 3,742148 0,18821452
+3,4323006 456623,6503 -0,12172819 -0,092112757 0 3,5540287 2,981940714 126,8399029 3,166603545 3,7423006 0,18827181
+3,432148 456655,6505 -0,12142263 -0,092110209 0 3,5535705 2,982759483 126,8487918 3,167473018 3,742148 0,18857737
+3,4320142 456687,6507 -0,12146083 -0,09210702 0 3,5534751 2,983578252 126,8576807 3,168342491 3,7420142 0,18853917
+3,4320714 456719,6508 -0,12126986 -0,092108928 0 3,5533414 2,984397018 126,8665697 3,169211961 3,7420714 0,18873014
+3,4318423 456751,651 -0,12123166 -0,092105106 0 3,5530739 2,985215786 126,8754586 3,170081433 3,7418423 0,18876834
+3,4317086 456783,6512 -0,12125076 -0,092114031 0 3,5529594 2,986034551 126,8843476 3,170950901 3,7417086 0,18874924
+3,4317851 456815,6514 -0,1209834 -0,092105106 0 3,5527685 2,986853315 126,8932365 3,171820369 3,7417851 0,1890166
+3,4316704 456847,6516 -0,12109798 -0,092107654 0 3,5527685 2,98767208 126,9021254 3,172689838 3,7416704 0,18890202
+3,4316132 456879,6517 -0,1209643 -0,092114031 0 3,5525775 2,988490845 126,9110144 3,173559307 3,7416132 0,1890357
+3,4316132 456911,6519 -0,12090701 -0,092108302 0 3,5525203 2,989309605 126,9199033 3,17442877 3,7416132 0,18909299
+3,4313648 456943,6521 -0,12084971 -0,092111476 0 3,5522144 2,990128368 126,9287922 3,175298236 3,7413648 0,18915029
+3,4314795 456975,6523 -0,12073513 -0,092110209 0 3,5522146 2,990947129 126,9376812 3,176167701 3,7414795 0,18926487
+3,4312313 457007,6524 -0,12052506 -0,092103831 0 3,5517564 2,991765892 126,9465701 3,177037168 3,7412313 0,18947494
+3,4311166 457039,6526 -0,12039138 -0,092114031 0 3,5515079 2,992584657 126,9554591 3,177906637 3,7411166 0,18960862
+3,4309828 457071,6528 -0,12048686 -0,092106387 0 3,5514698 2,993403427 126,964348 3,17877611 3,7409828 0,18951314
+3,4309638 457103,653 -0,12041047 -0,092110209 0 3,5513742 2,994222196 126,9732369 3,179645583 3,7409638 0,18958953
+3,4310594 457135,6531 -0,12029589 -0,092114665 0 3,5513554 2,995040965 126,9821259 3,180515056 3,7410594 0,18970411
+3,4309638 457167,6533 -0,12008582 -0,092107654 0 3,5510495 2,995859734 126,9910148 3,181384529 3,7409638 0,18991418
+3,4307537 457199,6535 -0,12006672 -0,092111476 0 3,5508204 2,996678499 126,9999037 3,182253998 3,7407537 0,18993328
+3,4306583 457231,6537 -0,12014312 -0,092109561 0 3,5508015 2,997497266 127,0087927 3,183123468 3,7406583 0,18985688
+3,4306583 457263,6538 -0,11991394 -0,092115298 0 3,5505724 2,998316037 127,0176816 3,183992944 3,7406583 0,19008606
+3,4305437 457295,654 -0,11979936 -0,092106387 0 3,550343 2,999134809 127,0265706 3,184862419 3,7405437 0,19020064
+3,4303908 457327,6542 -0,11970387 -0,092112117 0 3,5500946 2,999953578 127,0354595 3,185731893 3,7403908 0,19029613
+3,4302764 457359,6544 -0,11966567 -0,092110209 0 3,549942 3,000772351 127,0443484 3,18660137 3,7402764 0,19033433
+3,4304099 457391,6545 -0,11960839 -0,092109561 0 3,5500183 3,001591121 127,0532374 3,187470844 3,7404099 0,19039161
+3,430238 457423,6547 -0,119532 -0,092110842 0 3,5497701 3,002409891 127,0621263 3,188340318 3,740238 0,190468
+3,4301999 457455,6549 -0,11932193 -0,092110209 0 3,5495217 3,003228661 127,0710152 3,189209792 3,7401999 0,19067807
+3,4299517 457487,6551 -0,11928373 -0,09210702 0 3,5492353 3,004047434 127,0799042 3,190079269 3,7399517 0,19071627
+3,4299898 457519,6552 -0,11909276 -0,09210065 0 3,5490825 3,004866206 127,0887931 3,190948745 3,7399898 0,19090724
+3,4298751 457551,6554 -0,11926463 -0,092108928 0 3,5491397 3,005684977 127,0976821 3,191818221 3,7398751 0,19073537
+3,4297798 457583,6556 -0,11897817 -0,092114031 0 3,548758 3,006503747 127,106571 3,192687694 3,7397798 0,19102183
+3,4297035 457615,6558 -0,1188063 -0,092114665 0 3,5485098 3,007322514 127,1154599 3,193557165 3,7397035 0,1911937
+3,4297035 457647,656 -0,11872991 -0,092114031 0 3,5484333 3,00814128 127,1243489 3,194426635 3,7397035 0,19127009
+3,4297416 457679,6561 -0,11871081 -0,09210702 0 3,5484524 3,008960046 127,1332378 3,195296105 3,7397416 0,19128919
+3,429436 457711,6563 -0,11865352 -0,092109561 0 3,5480895 3,009778812 127,1421268 3,196165575 3,739436 0,19134648
+3,4294741 457743,6565 -0,11846255 -0,092110842 0 3,5479367 3,010597577 127,1510157 3,197035044 3,7394741 0,19153745
+3,429245 457775,6567 -0,11829067 -0,092107654 0 3,5475357 3,011416344 127,1599046 3,197904514 3,739245 0,19170933
+3,4292068 457807,6568 -0,11846255 -0,092116579 0 3,5476694 3,01223511 127,1687936 3,198773984 3,7392068 0,19153745
+3,4292641 457839,657 -0,1180806 -0,092112117 0 3,5473447 3,013053877 127,1776825 3,199643455 3,7392641 0,1919194
+3,4291496 457871,6572 -0,11811879 -0,092109561 0 3,5472684 3,013872645 127,1865714 3,200512927 3,7391496 0,19188121
+3,4291112 457903,6574 -0,1180424 -0,092108302 0 3,5471537 3,014691414 127,1954604 3,2013824 3,7391112 0,1919576
+3,4290731 457935,6575 -0,11796601 -0,092111476 0 3,547039 3,015510181 127,2043493 3,20225187 3,7390731 0,19203399
+3,4289393 457967,6577 -0,11783233 -0,092105746 0 3,5467718 3,016328946 127,2132383 3,203121339 3,7389393 0,19216767
+3,4288249 457999,6579 -0,11783233 -0,092109561 0 3,5466573 3,01714771 127,2221272 3,203990807 3,7388249 0,19216767
+3,4289012 458031,6581 -0,11779414 -0,092105746 0 3,5466952 3,017966475 127,2310161 3,204860275 3,7389012 0,19220586
+3,4287484 458063,6582 -0,11748858 -0,092112757 0 3,546237 3,018785236 127,2399051 3,20572974 3,7387484 0,19251142
+3,4284811 458095,6584 -0,11741219 -0,092120394 0 3,5458932 3,019603999 127,248794 3,206599207 3,7384811 0,19258781
+3,428653 458127,6586 -0,11741219 -0,092111476 0 3,5460651 3,020422765 127,2576829 3,207468677 3,738653 0,19258781
+3,4285958 458159,6588 -0,11716393 -0,09210702 0 3,5457597 3,021241532 127,2665719 3,208338147 3,7385958 0,19283607
+3,4282901 458191,6589 -0,11727851 -0,092110209 0 3,5455687 3,022060296 127,2754608 3,209207615 3,7382901 0,19272149
+3,4281564 458223,6591 -0,11706844 -0,092108302 0 3,5452249 3,02287906 127,2843498 3,210077082 3,7381564 0,19293156
+3,4279082 458255,6593 -0,11697295 -0,092110842 0 3,5448811 3,023697823 127,2932387 3,210946549 3,7379082 0,19302705
+3,4280801 458287,6595 -0,11685837 -0,09210702 0 3,5449386 3,024516584 127,3021276 3,211816014 3,7380801 0,19314163
+3,4280419 458319,6597 -0,11683927 -0,092109561 0 3,5448811 3,025335345 127,3110166 3,212685478 3,7380419 0,19316073
+3,42787 458351,6598 -0,11651462 -0,092116579 0 3,5443847 3,026154104 127,3199055 3,213554941 3,73787 0,19348538
+3,427851 458383,66 -0,1166101 -0,09210702 0 3,544461 3,026972864 127,3287944 3,214424404 3,737851 0,1933899
+3,4277363 458415,6602 -0,11649552 -0,092110209 0 3,5442319 3,027791624 127,3376834 3,215293867 3,7377363 0,19350448
+3,4277554 458447,6604 -0,11643822 -0,092110209 0 3,5441935 3,028610387 127,3465723 3,216163334 3,7377554 0,19356178
+3,4276025 458479,6605 -0,11609447 -0,092109561 0 3,5436969 3,029429148 127,3554613 3,217032798 3,7376025 0,19390553
+3,4275453 458511,6607 -0,11617086 -0,092107654 0 3,5437162 3,03024791 127,3643502 3,217902264 3,7375453 0,19382914
+3,4274497 458543,6609 -0,11596079 -0,092102565 0 3,5434105 3,031066671 127,3732391 3,218771729 3,7374497 0,19403921
+3,4274116 458575,6611 -0,1159035 -0,092109561 0 3,5433149 3,031885434 127,3821281 3,219641195 3,7374116 0,1940965
+3,4272587 458607,6612 -0,11573163 -0,092112117 0 3,5429904 3,032704201 127,391017 3,220510665 3,7372587 0,19426837
+3,427278 458639,6614 -0,11563614 -0,092114665 0 3,5429142 3,033522966 127,3999059 3,221380135 3,737278 0,19436386
+3,4270871 458671,6616 -0,11544517 -0,092107654 0 3,5425322 3,034341731 127,4087949 3,222249604 3,7370871 0,19455483
+3,4270871 458703,6618 -0,11554065 -0,092108302 0 3,5426278 3,035160494 127,4176838 3,22311907 3,7370871 0,19445935
+3,4270678 458735,6619 -0,11534968 -0,092117853 0 3,5424175 3,035979258 127,4265728 3,223988537 3,7370678 0,19465032
+3,4270296 458767,6621 -0,1151778 -0,092108302 0 3,5422075 3,036798023 127,4354617 3,224858006 3,7370296 0,1948222
+3,4269724 458799,6623 -0,11504412 -0,092104472 0 3,5420165 3,037616788 127,4443506 3,225727475 3,7369724 0,19495588
+3,4267814 458831,6625 -0,11498683 -0,092110842 0 3,5417683 3,03843555 127,4532396 3,226596941 3,7367814 0,19501317
+3,4266286 458863,6626 -0,11487224 -0,092104472 0 3,5415008 3,039254312 127,4621285 3,227466406 3,7366286 0,19512776
+3,4265332 458895,6628 -0,11466217 -0,092108302 0 3,5411954 3,040073074 127,4710175 3,228335871 3,7365332 0,19533783
+3,4266477 458927,663 -0,11466217 -0,092112117 0 3,5413098 3,040891835 127,4799064 3,229205336 3,7366477 0,19533783
+3,4264948 458959,6632 -0,1144521 -0,092112117 0 3,540947 3,0417106 127,4887953 3,230074805 3,7364948 0,1955479
+3,4263995 458991,6634 -0,11416564 -0,092106387 0 3,540565 3,042529367 127,4976843 3,230944275 3,7363995 0,19583436
+3,4262848 459023,6635 -0,11412745 -0,092113383 0 3,5404122 3,043348132 127,5065732 3,231813744 3,7362848 0,19587255
+3,4263422 459055,6637 -0,11414655 -0,092114665 0 3,5404887 3,0441669 127,5154621 3,232683216 3,7363422 0,19585345
+3,426132 459087,6639 -0,11397467 -0,092113383 0 3,5401065 3,044985667 127,5243511 3,233552687 3,736132 0,19602533
+3,4261703 459119,6641 -0,11378369 -0,092108928 0 3,5399539 3,045804435 127,53324 3,234422159 3,7361703 0,19621631
+3,426132 459151,6642 -0,1137264 -0,092116579 0 3,5398583 3,046623203 127,542129 3,235291631 3,736132 0,1962736
+3,4257884 459183,6644 -0,11357363 -0,092111476 0 3,539362 3,047441971 127,5510179 3,236161102 3,7357884 0,19642637
+3,42575 459215,6646 -0,11355452 -0,092110209 0 3,5393045 3,048260737 127,5599068 3,237030572 3,73575 0,19644548
+3,4256737 459247,6648 -0,11336355 -0,092108928 0 3,5390372 3,049079504 127,5687958 3,237900043 3,7356737 0,19663645
+3,4256737 459279,6649 -0,11326806 -0,092103831 0 3,5389419 3,04989827 127,5776847 3,238769512 3,7356737 0,19673194
+3,4256928 459311,6651 -0,11313438 -0,092111476 0 3,5388272 3,050717034 127,5865736 3,23963898 3,7356928 0,19686562
+3,4255018 459343,6653 -0,11292432 -0,092109561 0 3,5384262 3,0515358 127,5954626 3,24050845 3,7355018 0,19707568
+3,4254827 459375,6655 -0,11300071 -0,092108928 0 3,5384834 3,052354567 127,6043515 3,241377921 3,7354827 0,19699929
+3,4252918 459407,6656 -0,11263786 -0,092111476 0 3,5379295 3,053173331 127,6132405 3,242247389 3,7352918 0,19736214
+3,4254255 459439,6658 -0,11256146 -0,092112757 0 3,537987 3,053992093 127,6221294 3,243116855 3,7354255 0,19743854
+3,4253109 459471,666 -0,11242778 -0,092109561 0 3,5377386 3,054810858 127,6310183 3,243986323 3,7353109 0,19757222
+3,4251771 459503,6662 -0,11221771 -0,092109561 0 3,5373948 3,055629625 127,6399073 3,244855794 3,7351771 0,19778229
+3,4251199 459535,6663 -0,11208403 -0,092111476 0 3,5372038 3,056448392 127,6487962 3,245725265 3,7351199 0,19791597
+3,4248526 459567,6665 -0,11210313 -0,092115939 0 3,5369558 3,057267156 127,6576851 3,246594733 3,7348526 0,19789687
+3,4247379 459599,6667 -0,11193125 -0,092113383 0 3,5366693 3,058085921 127,6665741 3,247464201 3,7347379 0,19806875
+3,4248526 459631,6669 -0,11172118 -0,09210702 0 3,5365739 3,058904689 127,675463 3,248333673 3,7348526 0,19827882
+3,4246423 459663,6671 -0,1115493 -0,092112757 0 3,5361917 3,059723457 127,684352 3,249203144 3,7346423 0,1984507
+3,4246998 459695,6672 -0,11147291 -0,092108928 0 3,5361726 3,060542225 127,6932409 3,250072617 3,7346998 0,19852709
+3,4246807 459727,6674 -0,11147291 -0,092103831 0 3,5361536 3,061360995 127,7021298 3,250942091 3,7346807 0,19852709
+3,4243751 459759,6676 -0,11126284 -0,092111476 0 3,5356379 3,062179765 127,7110188 3,251811565 3,7343751 0,19873716
+3,4244323 459791,6678 -0,11111006 -0,092113383 0 3,5355422 3,062998534 127,7199077 3,252681037 3,7344323 0,19888994
+3,4244323 459823,6679 -0,11101457 -0,092109561 0 3,5354469 3,063817304 127,7287966 3,253550511 3,7344323 0,19898543
+3,424356 459855,6681 -0,1108427 -0,092110209 0 3,5351987 3,064636073 127,7376856 3,254419984 3,734356 0,1991573
+3,4242604 459887,6683 -0,11067083 -0,092105106 0 3,5349312 3,06545484 127,7465745 3,255289456 3,7342604 0,19932917
+3,4241078 459919,6685 -0,11040346 -0,092109561 0 3,5345113 3,066273609 127,7554635 3,256158928 3,7341078 0,19959654
+3,4240313 459951,6686 -0,11026978 -0,092112757 0 3,534301 3,067092376 127,7643524 3,2570284 3,7340313 0,19973022
+3,4238784 459983,6688 -0,11028888 -0,092116579 0 3,5341673 3,067911145 127,7732413 3,257897872 3,7338784 0,19971112
+3,423955 460015,669 -0,1101361 -0,092113383 0 3,534091 3,068729913 127,7821303 3,258767344 3,733955 0,1998639
+3,4238212 460047,6692 -0,10990693 -0,092111476 0 3,5337281 3,06954868 127,7910192 3,259636815 3,7338212 0,20009307
+3,4237449 460079,6693 -0,10971596 -0,092111476 0 3,5334609 3,070367443 127,7999082 3,260506282 3,7337449 0,20028404
+3,423764 460111,6695 -0,10960137 -0,092117213 0 3,5333652 3,071186204 127,8087971 3,261375746 3,733764 0,20039863
+3,4235156 460143,6697 -0,10950588 -0,092113383 0 3,5330215 3,072004969 127,817686 3,262245215 3,7335156 0,20049412
+3,4235349 460175,6699 -0,10929582 -0,092108928 0 3,5328307 3,072823736 127,826575 3,263114686 3,7335349 0,20070418
+3,4233055 460207,67 -0,10925762 -0,092110842 0 3,5325632 3,073642502 127,8354639 3,263984156 3,7333055 0,20074238
+3,4233246 460239,6702 -0,10897116 -0,092113383 0 3,5322957 3,07446127 127,8443528 3,264853627 3,7333246 0,20102884
+3,4231145 460271,6704 -0,10891387 -0,092116579 0 3,5320284 3,075280035 127,8532418 3,265723096 3,7331145 0,20108613
+3,4232674 460303,6706 -0,1086465 -0,092102565 0 3,5319138 3,076098799 127,8621307 3,266592564 3,7332674 0,2013535
+3,4231336 460335,6708 -0,10853192 -0,092110842 0 3,5316656 3,076917564 127,8710197 3,267462032 3,7331336 0,20146808
+3,4230192 460367,6709 -0,10839824 -0,092105746 0 3,5314174 3,077736331 127,8799086 3,268331503 3,7330192 0,20160176
+3,4228282 460399,6711 -0,10816907 -0,092110209 0 3,5309973 3,078555099 127,8887975 3,269200975 3,7328282 0,20183093
+3,4227901 460431,6713 -0,10818817 -0,092110842 0 3,5309782 3,079373868 127,8976865 3,270070448 3,7327901 0,20181183
+3,4227707 460463,6715 -0,10784442 -0,092109561 0 3,5306151 3,08019264 127,9065754 3,270939924 3,7327707 0,20215558
+3,4226372 460495,6716 -0,10772983 -0,092109561 0 3,5303671 3,08101141 127,9154643 3,271809398 3,7326372 0,20227017
+3,4226182 460527,6718 -0,10748157 -0,092097469 0 3,5300996 3,081830174 127,9243533 3,272678866 3,7326182 0,20251843
+3,4224272 460559,672 -0,10748157 -0,092108302 0 3,5299087 3,082648935 127,9332422 3,273548331 3,7324272 0,20251843
+3,4224081 460591,6722 -0,10719511 -0,092114031 0 3,5296032 3,083467698 127,9421312 3,274417797 3,7324081 0,20280489
+3,4224463 460623,6723 -0,10711872 -0,092109561 0 3,5295649 3,084286464 127,9510201 3,275287266 3,7324463 0,20288128
+3,4222553 460655,6725 -0,10706142 -0,092115298 0 3,5293167 3,08510523 127,959909 3,276156736 3,7322553 0,20293858
+3,4222362 460687,6727 -0,10673677 -0,09210702 0 3,5289729 3,085923997 127,968798 3,277026207 3,7322362 0,20326323
+3,4221406 460719,6729 -0,10667948 -0,092109561 0 3,52882 3,086742761 127,9776869 3,277895675 3,7321406 0,20332052
+3,4221025 460751,673 -0,1064885 -0,092113383 0 3,5285909 3,087561529 127,9865758 3,278765147 3,7321025 0,2035115
+3,4220259 460783,6732 -0,10635483 -0,092108928 0 3,5283806 3,088380293 127,9954648 3,279634614 3,7320259 0,20364517
+3,4218543 460815,6734 -0,10595378 -0,092104472 0 3,527808 3,089199054 128,0043537 3,280504079 3,7318543 0,20404622
+3,4218159 460847,6736 -0,10610656 -0,092108928 0 3,5279224 3,09001782 128,0132427 3,281373549 3,7318159 0,20389344
+3,4217968 460879,6737 -0,1058201 -0,09210702 0 3,527617 3,090836585 128,0221316 3,282243018 3,7317968 0,2041799
+3,4216058 460911,6739 -0,1057628 -0,09210702 0 3,5273685 3,091655349 128,0310205 3,283112485 3,7316058 0,2042372
+3,4216249 460943,6741 -0,10566732 -0,092105746 0 3,5272923 3,092474116 128,0399095 3,283981956 3,7316249 0,20433268
+3,4213767 460975,6743 -0,10538086 -0,092115298 0 3,5267575 3,093292885 128,0487984 3,284851429 3,7313767 0,20461914
+3,421243 461007,6745 -0,10526627 -0,092114665 0 3,5265093 3,094111654 128,0576873 3,285720902 3,731243 0,20473373
+3,4213767 461039,6746 -0,1050562 -0,092115298 0 3,526433 3,094930422 128,0665763 3,286590374 3,7313767 0,2049438
+3,4211857 461071,6748 -0,10490342 -0,092113383 0 3,5260892 3,095749192 128,0754652 3,287459847 3,7311857 0,20509658
+3,4211857 461103,675 -0,10465516 -0,092109561 0 3,525841 3,096567958 128,0843542 3,288329318 3,7311857 0,20534484
+3,4211857 461135,6752 -0,10450238 -0,092104472 0 3,5256882 3,097386724 128,0932431 3,289198787 3,7311857 0,20549762
+3,4209757 461167,6753 -0,10444508 -0,092112757 0 3,5254207 3,09820549 128,102132 3,290068257 3,7309757 0,20555492
+3,420861 461199,6755 -0,1043305 -0,092117853 0 3,5251915 3,099024257 128,111021 3,290937728 3,730861 0,2056695
+3,4208229 461231,6757 -0,10392946 -0,092110209 0 3,5247524 3,099843027 128,1199099 3,291807202 3,7308229 0,20607054
+3,4209185 461263,6759 -0,10383397 -0,092110842 0 3,5247524 3,100661794 128,1287989 3,292676673 3,7309185 0,20616603
+3,4205937 461295,676 -0,10385307 -0,092110209 0 3,5244467 3,10148056 128,1376878 3,293546143 3,7305937 0,20614693
+3,4205747 461327,6762 -0,10352842 -0,092112757 0 3,5241032 3,102299325 128,1465767 3,294415611 3,7305747 0,20647158
+3,4204409 461359,6764 -0,10345203 -0,092108928 0 3,5238929 3,103118091 128,1554657 3,295285081 3,7304409 0,20654797
+3,4202881 461391,6766 -0,10324196 -0,092110842 0 3,52353 3,103936857 128,1643546 3,296154551 3,7302881 0,20675804
+3,4201162 461423,6767 -0,10316557 -0,092115298 0 3,5232818 3,104755622 128,1732435 3,297024019 3,7301162 0,20683443
+3,4202499 461455,6769 -0,10282181 -0,092116579 0 3,5230718 3,10557439 128,1821325 3,297893491 3,7302499 0,20717819
+3,4201736 461487,6771 -0,10270723 -0,092108302 0 3,5228808 3,106393157 128,1910214 3,298762963 3,7301736 0,20729277
+3,4200017 461519,6773 -0,10261174 -0,092107654 0 3,5226135 3,107211924 128,1999104 3,299632433 3,7300017 0,20738826
+3,4199827 461551,6774 -0,10251626 -0,092116579 0 3,5224988 3,108030689 128,2087993 3,300501902 3,7299827 0,20748374
+3,4200399 461583,6776 -0,10243987 -0,092103831 0 3,5224798 3,108849453 128,2176882 3,301371369 3,7300399 0,20756013
+3,4198108 461615,6778 -0,10205792 -0,092113383 0 3,5218687 3,109668214 128,2265772 3,302240834 3,7298108 0,20794208
+3,4196961 461647,678 -0,10205792 -0,092108302 0 3,521754 3,110486976 128,2354661 3,3031103 3,7296961 0,20794208
+3,4197342 461679,6782 -0,10209611 -0,092102565 0 3,5218303 3,111305737 128,244355 3,303979764 3,7297342 0,20790389
+3,4196389 461711,6783 -0,10175236 -0,092105746 0 3,5213912 3,112124497 128,253244 3,304849228 3,7296389 0,20824764
+3,4195242 461743,6785 -0,1014468 -0,092105746 0 3,5209711 3,112943259 128,2621329 3,305718693 3,7295242 0,2085532
+3,419486 461775,6787 -0,10154229 -0,092112117 0 3,5210283 3,113762021 128,2710219 3,306588158 3,729486 0,20845771
+3,4192951 461807,6789 -0,1014277 -0,092111476 0 3,5207229 3,114580781 128,2799108 3,307457622 3,7292951 0,2085723
+3,4192951 461839,679 -0,10095027 -0,092103198 0 3,5202453 3,115399544 128,2887997 3,308327088 3,7292951 0,20904973
+3,4191422 461871,6792 -0,10104576 -0,092112117 0 3,5201881 3,116218307 128,2976887 3,309196555 3,7291422 0,20895424
+3,419066 461903,6794 -0,10102666 -0,092106387 0 3,5200927 3,117037071 128,3065776 3,310066022 3,729066 0,20897334
+3,4188559 461935,6796 -0,10062562 -0,092113383 0 3,5194814 3,117855833 128,3154665 3,310935488 3,7288559 0,20937438
+3,4188366 461967,6797 -0,10043465 -0,092106387 0 3,5192711 3,118674595 128,3243555 3,311804954 3,7288366 0,20956535
+3,4185884 461999,6799 -0,10051104 -0,092110209 0 3,5190995 3,119493357 128,3332444 3,312674419 3,7285884 0,20948896
+3,418684 462031,6801 -0,10033916 -0,092102565 0 3,5190232 3,12031212 128,3421334 3,313543886 3,728684 0,20966084
+3,4186456 462063,6803 -0,10026277 -0,092110842 0 3,5189085 3,12113088 128,3510223 3,314413349 3,7286456 0,20973723
+3,4184546 462095,6804 -0,10016728 -0,092105746 0 3,5186219 3,121949642 128,3599112 3,315282815 3,7284546 0,20983272
+3,4183593 462127,6806 -0,099804431 -0,092110842 0 3,5181637 3,122768405 128,3688002 3,316152281 3,7283593 0,210195569
+3,4184165 462159,6808 -0,099708945 -0,092110842 0 3,5181255 3,123587169 128,3776891 3,317021749 3,7284165 0,210291055
+3,4183211 462191,681 -0,09947978 -0,092113383 0 3,5178008 3,124405932 128,386578 3,317891215 3,7283211 0,21052022
+3,4180346 462223,6811 -0,099384293 -0,092115939 0 3,5174189 3,125224697 128,395467 3,318760684 3,7280346 0,210615707
+3,4181683 462255,6813 -0,099326998 -0,092108302 0 3,5174954 3,126043463 128,4043559 3,319630154 3,7281683 0,210673002
+3,4180536 462287,6815 -0,099231511 -0,092105746 0 3,5172851 3,126862231 128,4132449 3,320499626 3,7280536 0,210768489
+3,4179201 462319,6817 -0,099097826 -0,092108302 0 3,5170178 3,127680998 128,4221338 3,321369097 3,7279201 0,210902174
+3,4177673 462351,6818 -0,099059634 -0,092114665 0 3,5168269 3,128499766 128,4310227 3,322238569 3,7277673 0,210940366
+3,4177289 462383,682 -0,098830469 -0,092112117 0 3,5165594 3,129318533 128,4399117 3,323108039 3,7277289 0,211169531
+3,4175954 462415,6822 -0,098639496 -0,092114031 0 3,5162349 3,130137299 128,4488006 3,323977509 3,7275954 0,211360504
+3,4175189 462447,6824 -0,098620392 -0,092116579 0 3,5161393 3,130956064 128,4576895 3,324846978 3,7275189 0,211379608
+3,4176145 462479,6826 -0,098486714 -0,092119761 0 3,5161011 3,131774832 128,4665785 3,32571645 3,7276145 0,211513286
+3,4175954 462511,6827 -0,098276645 -0,092110209 0 3,515872 3,132593599 128,4754674 3,326585921 3,7275954 0,211723355
+3,4173279 462543,6829 -0,098295741 -0,092107654 0 3,5156236 3,133412366 128,4843564 3,327455392 3,7273279 0,211704259
+3,4172516 462575,6831 -0,098104768 -0,092109561 0 3,5153563 3,134231132 128,4932453 3,328324861 3,7272516 0,211895232
+3,4170797 462607,6833 -0,097990185 -0,092113383 0 3,51507 3,135049895 128,5021342 3,329194328 3,7270797 0,212009815
+3,4171178 462639,6834 -0,097818308 -0,092111476 0 3,5149362 3,13586866 128,5110232 3,330063797 3,7271178 0,212181692
+3,4170797 462671,6836 -0,097703725 -0,092115939 0 3,5147834 3,136687426 128,5199121 3,330933266 3,7270797 0,212296275
+3,4170415 462703,6838 -0,097570039 -0,092112117 0 3,5146115 3,137506192 128,5288011 3,331802736 3,7270415 0,212429961
+3,4168124 462735,684 -0,097321779 -0,092108928 0 3,5141342 3,138324959 128,53769 3,332672207 3,7268124 0,212678221
+3,4167359 462767,6841 -0,097207189 -0,092112117 0 3,5139432 3,139143724 128,5465789 3,333541675 3,7267359 0,212792811
+3,4165831 462799,6843 -0,097207189 -0,092112117 0 3,5137901 3,139962493 128,5554679 3,334411148 3,7265831 0,212792811
+3,4166405 462831,6845 -0,097035311 -0,092112757 0 3,5136759 3,140781264 128,5643568 3,335280624 3,7266405 0,212964689
+3,4165068 462863,6847 -0,096997119 -0,092117213 0 3,5135038 3,141600037 128,5732457 3,336150101 3,7265068 0,213002881
+3,4164686 462895,6848 -0,096901633 -0,092110842 0 3,5133703 3,142418809 128,5821347 3,337019577 3,7264686 0,213098367
+3,4163158 462927,685 -0,096767955 -0,092111476 0 3,5130837 3,143237583 128,5910236 3,337889055 3,7263158 0,213232045
+3,4162586 462959,6852 -0,096538782 -0,092108928 0 3,5127974 3,144056358 128,5999126 3,338758535 3,7262586 0,213461218
+3,4162967 462991,6854 -0,096596077 -0,092110209 0 3,5128927 3,144875129 128,6088015 3,33962801 3,7262967 0,213403923
+3,416163 463023,6855 -0,096557878 -0,092115939 0 3,5127208 3,145693899 128,6176904 3,340497484 3,726163 0,213442122
+3,4159148 463055,6857 -0,096099548 -0,092112757 0 3,5120144 3,146512671 128,6265794 3,34136696 3,7259148 0,213900452
+3,4159529 463087,6859 -0,096175931 -0,092110209 0 3,5121288 3,147331443 128,6354683 3,342236436 3,7259529 0,213824069
+3,4156663 463119,6861 -0,095870376 -0,092110209 0 3,5115366 3,148150215 128,6443572 3,343105912 3,7256663 0,214129624
+3,4158957 463151,6863 -0,095736697 -0,092107654 0 3,5116324 3,148968983 128,6532462 3,343975384 3,7258957 0,214263303
+3,4156091 463183,6864 -0,095526621 -0,092113383 0 3,5111358 3,149787751 128,6621351 3,344844856 3,7256091 0,214473379
+3,41559 463215,6866 -0,095507525 -0,092111476 0 3,5110977 3,15060652 128,6710241 3,345714329 3,72559 0,214492475
+3,4154947 463247,6868 -0,095526621 -0,092114031 0 3,5110214 3,151425289 128,679913 3,346583802 3,7254947 0,214473379
+3,4153609 463279,687 -0,09527836 -0,092113383 0 3,5106392 3,152244057 128,6888019 3,347453274 3,7253609 0,21472164
+3,4152272 463311,6871 -0,095068291 -0,092110842 0 3,5102954 3,153062828 128,6976909 3,348322749 3,7252272 0,214931709
+3,4152653 463343,6873 -0,095068291 -0,092108928 0 3,5103335 3,153881601 128,7065798 3,349192226 3,7252653 0,214931709
+3,41517 463375,6875 -0,094915509 -0,092106387 0 3,5100856 3,154700372 128,7154687 3,350061702 3,72517 0,215084491
+3,4150553 463407,6877 -0,094800927 -0,092112117 0 3,5098562 3,155519145 128,7243577 3,350931179 3,7250553 0,215199073
+3,4150553 463439,6878 -0,094743632 -0,092107654 0 3,509799 3,156337919 128,7332466 3,351800657 3,7250553 0,215256368
+3,4150362 463471,688 -0,094629049 -0,092110842 0 3,5096653 3,15715669 128,7421356 3,352670132 3,7250362 0,215370951
+3,4148834 463503,6882 -0,09441898 -0,092113383 0 3,5093024 3,157975462 128,7510245 3,353539608 3,7248834 0,21558102
+3,4149408 463535,6884 -0,09413252 -0,092104472 0 3,5090733 3,158794234 128,7599134 3,354409084 3,7249408 0,21586748
+3,4146733 463567,6885 -0,09413252 -0,092117213 0 3,5088058 3,159613006 128,7688024 3,355278561 3,7246733 0,21586748
+3,4146161 463599,6887 -0,093998834 -0,092105106 0 3,508615 3,160431778 128,7776913 3,356148036 3,7246161 0,216001166
+3,4145589 463631,6889 -0,093712375 -0,092108928 0 3,5082712 3,161250548 128,7865802 3,357017511 3,7245589 0,216287625
+3,4146924 463663,6891 -0,09348321 -0,092104472 0 3,5081756 3,16206932 128,7954692 3,357886987 3,7246924 0,21651679
+3,4144061 463695,6892 -0,093540497 -0,092116579 0 3,5079465 3,16288809 128,8043581 3,358756461 3,7244061 0,216459503
+3,4143679 463727,6894 -0,093406819 -0,092112757 0 3,5077748 3,16370686 128,8132471 3,359625935 3,7243679 0,216593181
+3,4142342 463759,6896 -0,09336862 -0,092105746 0 3,5076027 3,164525633 128,822136 3,360495412 3,7242342 0,21663138
+3,4141004 463791,6898 -0,093254037 -0,09210702 0 3,5073545 3,165344403 128,8310249 3,361364886 3,7241004 0,216745963
+3,4139857 463823,69 -0,09319675 -0,092104472 0 3,5071826 3,166163171 128,8399139 3,362234357 3,7239857 0,21680325
+3,4139094 463855,6901 -0,092872091 -0,092108928 0 3,5067816 3,166981936 128,8488028 3,363103826 3,7239094 0,217127909
+3,4139285 463887,6903 -0,092738412 -0,09210702 0 3,5066669 3,167800702 128,8576918 3,363973296 3,7239285 0,217261588
+3,4138904 463919,6905 -0,092566535 -0,092110842 0 3,5064569 3,168619468 128,8665807 3,364842766 3,7238904 0,217433465
+3,4137185 463951,6907 -0,092375562 -0,09210702 0 3,506094 3,169438236 128,8754696 3,365712237 3,7237185 0,217624438
+3,4136994 463983,6908 -0,092413753 -0,092105746 0 3,5061131 3,170256999 128,8843586 3,366581705 3,7236994 0,217586247
+3,4135084 464015,691 -0,092165492 -0,092113383 0 3,5056739 3,171075761 128,8932475 3,36745117 3,7235084 0,217834508
+3,4135656 464047,6912 -0,092050903 -0,092114665 0 3,5056164 3,171894526 128,9021364 3,368320639 3,7235656 0,217949097
+3,4135084 464079,6914 -0,091764443 -0,092110209 0 3,5052729 3,172713294 128,9110254 3,369190111 3,7235084 0,218235557
+3,4133556 464111,6915 -0,091783546 -0,092110209 0 3,5051391 3,173532063 128,9199143 3,370059584 3,7233556 0,218216454
+3,4131265 464143,6917 -0,091439791 -0,092112117 0 3,5045662 3,174350834 128,9288033 3,370929058 3,7231265 0,218560209
+3,4130883 464175,6919 -0,0913634 -0,092108302 0 3,5044518 3,175169603 128,9376922 3,371798531 3,7230883 0,2186366
+3,4129736 464207,6921 -0,091210619 -0,09210702 0 3,5041842 3,17598837 128,9465811 3,372668003 3,7229736 0,218789381
+3,4131265 464239,6922 -0,091134235 -0,092113383 0 3,5042608 3,176807139 128,9554701 3,373537475 3,7231265 0,218865765
+3,4129546 464271,6924 -0,091096036 -0,092115939 0 3,5040505 3,177625907 128,964359 3,374406947 3,7229546 0,218903964
+3,4128973 464303,6926 -0,090733185 -0,092110842 0 3,5036306 3,178444675 128,9732479 3,375276419 3,7228973 0,219266815
+3,4127636 464335,6928 -0,090389438 -0,092114031 0 3,5031531 3,179263442 128,9821369 3,37614589 3,7227636 0,219610562
+3,4125917 464367,6929 -0,090446725 -0,092108302 0 3,5030384 3,180082205 128,9910258 3,377015357 3,7225917 0,219553275
+3,4127445 464399,6931 -0,090389438 -0,092105746 0 3,503134 3,180900971 128,9999148 3,377884826 3,7227445 0,219610562
+3,4125154 464431,6933 -0,090083875 -0,092110842 0 3,5025992 3,181719738 129,0088037 3,378754297 3,7225154 0,219916125
+3,4124579 464463,6935 -0,089912005 -0,092107654 0 3,5023699 3,182538506 129,0176926 3,379623769 3,7224579 0,220087995
+3,4123816 464495,6937 -0,089816518 -0,092115298 0 3,5021982 3,183357274 129,0265816 3,380493241 3,7223816 0,220183482
+3,4123244 464527,6938 -0,089682832 -0,092114665 0 3,5020072 3,184176041 129,0354705 3,381362712 3,7223244 0,220317168
+3,4124007 464559,694 -0,089415468 -0,092109561 0 3,5018163 3,184994809 129,0443594 3,382232184 3,7224007 0,220584532
+3,4122288 464591,6942 -0,08928179 -0,092100017 0 3,5015106 3,185813578 129,0532484 3,383101657 3,7222288 0,22071821
+3,4119997 464623,6944 -0,08899533 -0,092112117 0 3,5009949 3,186632346 129,0621373 3,383971129 3,7219997 0,22100467
+3,4119232 464655,6945 -0,088976234 -0,092113383 0 3,5008993 3,187451113 129,0710263 3,384840599 3,7219232 0,221023766
+3,4117706 464687,6947 -0,088689774 -0,092115298 0 3,5004604 3,188269879 129,0799152 3,385710069 3,7217706 0,221310226
+3,4117131 464719,6949 -0,088517897 -0,092110209 0 3,500231 3,189088647 129,0888041 3,386579541 3,7217131 0,221482103
+3,4117131 464751,6951 -0,088498801 -0,092114031 0 3,500212 3,189907415 129,0976931 3,387449013 3,7217131 0,221501199
+3,411694 464783,6952 -0,088097751 -0,092108928 0 3,4997919 3,190726185 129,106582 3,388318487 3,721694 0,221902249
+3,4115605 464815,6954 -0,088078655 -0,092110209 0 3,4996393 3,191544951 129,1154709 3,389187957 3,7215605 0,221921345
+3,4115222 464847,6956 -0,087811291 -0,092111476 0 3,4993334 3,19236372 129,1243599 3,39005743 3,7215222 0,222188709
+3,4115987 464879,6958 -0,08784949 -0,092110209 0 3,4994481 3,193182489 129,1332488 3,390926903 3,7215987 0,22215051
+3,4113693 464911,6959 -0,08756303 -0,092106387 0 3,4989324 3,194001255 129,1421378 3,391796373 3,7213693 0,22243697
+3,411083 464943,6961 -0,087391153 -0,092104472 0 3,4984741 3,194820021 129,1510267 3,392665842 3,721083 0,222608847
+3,411293 464975,6963 -0,087066494 -0,092103831 0 3,4983594 3,195638786 129,1599156 3,393535311 3,721293 0,222933506
+3,4111784 465007,6965 -0,087028302 -0,092110209 0 3,4982066 3,196457551 129,1688046 3,394404779 3,7211784 0,222971698
+3,4109683 465039,6966 -0,086856425 -0,092115298 0 3,4978247 3,197276315 129,1776935 3,395274247 3,7209683 0,223143575
+3,4111021 465071,6968 -0,086665452 -0,092112757 0 3,4977674 3,198095081 129,1865825 3,396143717 3,7211021 0,223334548
+3,4108539 465103,697 -0,086359896 -0,092114031 0 3,4972138 3,198913847 129,1954714 3,397013187 3,7208539 0,223640104
+3,4107773 465135,6972 -0,086359896 -0,092111476 0 3,4971373 3,199732616 129,2043603 3,39788266 3,7207773 0,223640104
+3,4107583 465167,6974 -0,086302601 -0,092112757 0 3,4970608 3,200551385 129,2132493 3,398752133 3,7207583 0,223697399
+3,4105482 465199,6975 -0,086188018 -0,092108928 0 3,4967363 3,201370151 129,2221382 3,399621603 3,7205482 0,223811982
+3,4105291 465231,6977 -0,085729681 -0,092117213 0 3,4962587 3,202188919 129,2310271 3,400491075 3,7205291 0,224270319
+3,410491 465263,6979 -0,085596003 -0,092115298 0 3,4960871 3,203007686 129,2399161 3,401360545 3,720491 0,224403997
+3,4105482 465295,6981 -0,085214056 -0,092103831 0 3,4957623 3,203826453 129,248805 3,402230016 3,7205482 0,224785944
+3,4103572 465327,6982 -0,085042179 -0,092108928 0 3,4953995 3,20464522 129,257694 3,403099487 3,7203572 0,224957821
+3,4103 465359,6984 -0,08500398 -0,092115939 0 3,4953041 3,205463983 129,2665829 3,403968954 3,7203 0,22499602
+3,4102044 465391,6986 -0,084813006 -0,092108928 0 3,4950175 3,206282749 129,2754718 3,404838424 3,7202044 0,225186994
+3,4100709 465423,6988 -0,084583841 -0,092112757 0 3,4946547 3,207101513 129,2843608 3,405707891 3,7200709 0,225416159
+3,4099181 465455,6989 -0,084373772 -0,092110842 0 3,4942918 3,207920276 129,2932497 3,406577358 3,7199181 0,225626228
+3,4100709 465487,6991 -0,084259182 -0,092112757 0 3,4943302 3,208739041 129,3021386 3,407446827 3,7200709 0,225740818
+3,409899 465519,6993 -0,084220991 -0,092110209 0 3,4941199 3,209557808 129,3110276 3,408316297 3,719899 0,225779009
+3,4096315 465551,6995 -0,083934531 -0,092107654 0 3,493566 3,210376575 129,3199165 3,409185768 3,7196315 0,226065469
+3,4096124 465583,6996 -0,083724461 -0,092110209 0 3,4933369 3,211195343 129,3288055 3,41005524 3,7196124 0,226275539
+3,4097652 465615,6998 -0,083399802 -0,09210702 0 3,493165 3,21201411 129,3376944 3,410924711 3,7197652 0,226600198
+3,4094787 465647,7 -0,083151542 -0,092112757 0 3,4926302 3,21283288 129,3465833 3,411794185 3,7194787 0,226848458
+3,4093642 465679,7002 -0,083094247 -0,092115298 0 3,4924586 3,21365165 129,3554723 3,412663659 3,7193642 0,226905753
+3,4092495 465711,7003 -0,082884178 -0,092109561 0 3,4921336 3,214470418 129,3643612 3,413533131 3,7192495 0,227115822
+3,4090586 465743,7005 -0,082750492 -0,092114031 0 3,4918091 3,215289186 129,3732501 3,414402603 3,7190586 0,227249508
+3,4093068 465775,7007 -0,082483135 -0,092120394 0 3,4917898 3,216107953 129,3821391 3,415272073 3,7193068 0,227516865
+3,4090395 465807,7009 -0,082215771 -0,092118487 0 3,4912553 3,216926721 129,391028 3,416141545 3,7190395 0,227784229
+3,4090395 465839,7011 -0,082062989 -0,092114665 0 3,4911025 3,217745492 129,399917 3,41701102 3,7190395 0,227937011
+3,4089632 465871,7012 -0,081738338 -0,092113383 0 3,4907014 3,218564262 129,4088059 3,417880495 3,7189632 0,228261662
+3,4087913 465903,7014 -0,081623748 -0,09210702 0 3,4904151 3,219383032 129,4176948 3,418749968 3,7187913 0,228376252
+3,4088485 465935,7016 -0,08149007 -0,092108302 0 3,4903386 3,2202018 129,4265838 3,419619441 3,7188485 0,22850993
+3,4087148 465967,7018 -0,081394583 -0,092114031 0 3,4901094 3,221020568 129,4354727 3,420488913 3,7187148 0,228605417
+3,4086385 465999,7019 -0,081031732 -0,092108302 0 3,4896703 3,221839338 129,4443616 3,421358386 3,7186385 0,228968268
+3,4084857 466031,7021 -0,080955341 -0,092105106 0 3,4894409 3,22265811 129,4532506 3,422227862 3,7184857 0,229044659
+3,4084284 466063,7023 -0,080649786 -0,092104472 0 3,4890783 3,223476879 129,4621395 3,423097335 3,7184284 0,229350214
+3,408371 466095,7025 -0,080286935 -0,092110209 0 3,488658 3,224295645 129,4710285 3,423966805 3,718371 0,229713065
+3,4083328 466127,7026 -0,080401517 -0,092108302 0 3,4887342 3,225114411 129,4799174 3,424836275 3,7183328 0,229598483
+3,4081037 466159,7028 -0,080019571 -0,092109561 0 3,4881232 3,225933178 129,4888063 3,425705745 3,7181037 0,229980429
+3,40818 466191,703 -0,079675823 -0,092110209 0 3,4878559 3,226751944 129,4976953 3,426575216 3,71818 0,230324177
+3,4079127 466223,7032 -0,079561234 -0,092115939 0 3,487474 3,227570711 129,5065842 3,427444686 3,7179127 0,230438766
+3,407779 466255,7033 -0,079542138 -0,092118487 0 3,4873211 3,228389478 129,5154732 3,428314157 3,717779 0,230457862
+3,4078555 466287,7035 -0,079312973 -0,092108302 0 3,4871686 3,229208244 129,5243621 3,429183627 3,7178555 0,230687027
+3,4077408 466319,7037 -0,078892827 -0,092112117 0 3,4866338 3,230027009 129,533251 3,430053095 3,7177408 0,231107173
+3,407588 466351,7039 -0,078759149 -0,092110842 0 3,4863472 3,230845772 129,54214 3,430922562 3,717588 0,231240851
+3,4076455 466383,704 -0,078644566 -0,092110209 0 3,48629 3,231664532 129,5510289 3,431792026 3,7176455 0,231355434
+3,407397 466415,7042 -0,078339003 -0,092112757 0 3,4857361 3,232483293 129,5599178 3,43266149 3,717397 0,231660997
+3,407397 466447,7044 -0,078186229 -0,092106387 0 3,4855833 3,233302055 129,5688068 3,433530956 3,717397 0,231813771
+3,4074545 466479,7046 -0,077957056 -0,092110209 0 3,4854116 3,234120819 129,5776957 3,434400423 3,7174545 0,232042944
+3,4071488 466511,7048 -0,077766083 -0,092114031 0 3,484915 3,234939585 129,5865847 3,435269893 3,7171488 0,232233917
+3,4070532 466543,7049 -0,077517822 -0,092112757 0 3,484571 3,235758352 129,5954736 3,436139364 3,7170532 0,232482178
+3,4068813 466575,7051 -0,077479623 -0,092114665 0 3,4843609 3,236577121 129,6043625 3,437008837 3,7168813 0,232520377
+3,406996 466607,7053 -0,077250458 -0,092105106 0 3,4842465 3,237395886 129,6132515 3,437878306 3,716996 0,232749542
+3,4069006 466639,7055 -0,077040389 -0,092108928 0 3,4839411 3,238214652 129,6221404 3,438747776 3,7169006 0,232959611
+3,406805 466671,7056 -0,076811217 -0,092112117 0 3,4836164 3,239033417 129,6310293 3,439617245 3,716805 0,233188783
+3,4067097 466703,7058 -0,076639339 -0,092108928 0 3,4833491 3,239852181 129,6399183 3,440486712 3,7167097 0,233360661
+3,4066904 466735,706 -0,076314688 -0,092103831 0 3,483005 3,240670947 129,6488072 3,441356182 3,7166904 0,233685312
+3,4066713 466767,7062 -0,076276489 -0,092115298 0 3,4829478 3,241489712 129,6576962 3,44222565 3,7166713 0,233723511
+3,4064422 466799,7063 -0,076104619 -0,092103198 0 3,4825468 3,242308477 129,6665851 3,443095118 3,7164422 0,233895381
+3,4063277 466831,7065 -0,075894542 -0,092108302 0 3,4822223 3,243127238 129,675474 3,443964583 3,7163277 0,234105458
+3,4062321 466863,7067 -0,075741768 -0,09210702 0 3,4819739 3,243946004 129,684363 3,444834053 3,7162321 0,234258232
+3,4060793 466895,7069 -0,075627185 -0,092106387 0 3,4817064 3,244764769 129,6932519 3,445703522 3,7160793 0,234372815
+3,4062512 466927,707 -0,075359821 -0,092112117 0 3,481611 3,245583536 129,7021408 3,446572992 3,7162512 0,234640179
+3,4059649 466959,7072 -0,075130649 -0,092115298 0 3,4810956 3,246402301 129,7110298 3,447442461 3,7159649 0,234869351
+3,4059839 466991,7074 -0,07492058 -0,092118487 0 3,4809046 3,247221064 129,7199187 3,448311928 3,7159839 0,23507942
+3,4057355 467023,7076 -0,074844189 -0,09210702 0 3,4805796 3,24803983 129,7288077 3,449181398 3,7157355 0,235155811
+3,4056973 467055,7077 -0,074729607 -0,092115298 0 3,480427 3,248858595 129,7376966 3,450050867 3,7156973 0,235270393
+3,4056592 467087,7079 -0,074615024 -0,092110209 0 3,4802742 3,24967736 129,7465855 3,450920335 3,7156592 0,235384976
+3,4055064 467119,7081 -0,074290365 -0,092110209 0 3,4797966 3,250496124 129,7554745 3,451789803 3,7155064 0,235709635
+3,4055445 467151,7083 -0,074175783 -0,092116579 0 3,4797204 3,251314891 129,7643634 3,452659273 3,7155445 0,235824217
+3,4054301 467183,7084 -0,074023001 -0,092107654 0 3,4794531 3,25213366 129,7732523 3,453528747 3,7154301 0,235976999
+3,4051435 467215,7086 -0,073660158 -0,092105106 0 3,4788036 3,25295243 129,7821413 3,454398221 3,7151435 0,236339842
+3,40522 467247,7088 -0,073583767 -0,092112117 0 3,4788039 3,2537712 129,7910302 3,455267695 3,71522 0,236416233
+3,4050291 467279,709 -0,07348828 -0,092114031 0 3,4785173 3,254589968 129,7999192 3,456137167 3,7150291 0,23651172
+3,4049716 467311,7092 -0,073526472 -0,092110209 0 3,478498 3,255408736 129,8088081 3,457006638 3,7149716 0,236473528
+3,4048762 467343,7093 -0,073259108 -0,092115298 0 3,4781353 3,256227504 129,817697 3,45787611 3,7148762 0,236740892
+3,4049335 467375,7095 -0,073125429 -0,092111476 0 3,4780588 3,257046269 129,826586 3,458745579 3,7149335 0,236874571
+3,4048953 467407,7097 -0,072972648 -0,092115298 0 3,4778678 3,257865038 129,8354749 3,459615052 3,7148953 0,237027352
+3,4045706 467439,7099 -0,072743483 -0,092112117 0 3,477314 3,258683809 129,8443638 3,460484527 3,7145706 0,237256517
+3,4046278 467471,71 -0,07251431 -0,092110209 0 3,4771421 3,259502576 129,8532528 3,461353998 3,7146278 0,23748569
+3,4044368 467503,7102 -0,072590701 -0,092113383 0 3,4770274 3,26032134 129,8621417 3,462223466 3,7144368 0,237409299
+3,4042652 467535,7104 -0,07255251 -0,092110842 0 3,4768176 3,261140103 129,8710307 3,463092932 3,7142652 0,23744749
+3,4041696 467567,7106 -0,07226605 -0,092109561 0 3,4764357 3,261958865 129,8799196 3,463962398 3,7141696 0,23773395
+3,4041886 467599,7107 -0,072227851 -0,092110209 0 3,4764166 3,262777629 129,8888085 3,464831865 3,7141886 0,237772149
+3,4039595 467631,7109 -0,072055973 -0,092112757 0 3,4760156 3,263596392 129,8976975 3,465701332 3,7139595 0,237944027
+3,4039023 467663,7111 -0,071998686 -0,092110209 0 3,4759009 3,264415152 129,9065864 3,466570796 3,7139023 0,238001314
+3,403883 467695,7113 -0,071960486 -0,092112757 0 3,4758434 3,265233909 129,9154754 3,467440255 3,713883 0,238039514
+3,4037113 467727,7114 -0,07169313 -0,092114031 0 3,4754045 3,26605267 129,9243643 3,46830972 3,7137113 0,23830687
+3,4037304 467759,7116 -0,071559444 -0,092105106 0 3,4752898 3,266871431 129,9332532 3,469179185 3,7137304 0,238440556
+3,4035203 467791,7118 -0,071635835 -0,09210702 0 3,4751561 3,267690193 129,9421422 3,47004865 3,7135203 0,238364165
+3,4035394 467823,712 -0,071425766 -0,092103198 0 3,4749651 3,268508955 129,9510311 3,470918116 3,7135394 0,238574234
+3,4033101 467855,7121 -0,07112021 -0,092110209 0 3,4744303 3,269327715 129,95992 3,471787579 3,7133101 0,23887979
+3,4033866 467887,7123 -0,071158402 -0,092104472 0 3,474545 3,270146474 129,968809 3,472657041 3,7133866 0,238841598
+3,4031191 467919,7125 -0,071330279 -0,092103831 0 3,4744494 3,270965236 129,9776979 3,473526507 3,7131191 0,238669721
+3,4032338 467951,7127 -0,071062915 -0,092110209 0 3,4742966 3,271783999 129,9865869 3,474395973 3,7132338 0,238937085
+3,4030428 467983,7129 -0,071043819 -0,092112117 0 3,4740865 3,272602759 129,9954758 3,475265437 3,7130428 0,238956181
+3,4028327 468015,713 -0,070910133 -0,092112117 0 3,473743 3,273421522 130,0043647 3,476134904 3,7128327 0,239089867
+3,402699 468047,7132 -0,070814647 -0,092109561 0 3,4735136 3,274240285 130,0132537 3,477004369 3,712699 0,239185353
+3,4027562 468079,7134 -0,070738256 -0,092115939 0 3,4734945 3,275059042 130,0221426 3,47787383 3,7127562 0,239261744
+3,4026227 468111,7136 -0,070680968 -0,092110842 0 3,4733036 3,2758778 130,0310315 3,478743291 3,7126227 0,239319032
+3,402699 468143,7137 -0,070623673 -0,092110209 0 3,4733226 3,27669656 130,0399205 3,479612755 3,712699 0,239376327
+3,4024889 468175,7139 -0,070489995 -0,092111476 0 3,4729788 3,277515323 130,0488094 3,480482221 3,7124889 0,239510005
+3,4024317 468207,7141 -0,070528187 -0,092106387 0 3,47296 3,278334088 130,0576984 3,48135169 3,7124317 0,239471813
+3,4022598 468239,7143 -0,070356309 -0,092111476 0 3,4726162 3,27915285 130,0665873 3,482221156 3,7122598 0,239643691
+3,4021261 468271,7144 -0,070299022 -0,092106387 0 3,472425 3,279971613 130,0754762 3,483090622 3,7121261 0,239700978
+3,4021261 468303,7146 -0,070318118 -0,092108302 0 3,4724443 3,280790376 130,0843652 3,483960089 3,7121261 0,239681882
+3,401897 468335,7148 -0,070299022 -0,092114665 0 3,4721959 3,28160914 130,0932541 3,484829556 3,711897 0,239700978
+3,4017632 468367,715 -0,07014624 -0,092106387 0 3,4719095 3,282427904 130,102143 3,485699024 3,7117632 0,23985376
+3,4018588 468399,7151 -0,070127144 -0,092107654 0 3,4719861 3,283246665 130,111032 3,486568489 3,7118588 0,239872856
+3,4017441 468431,7153 -0,070222631 -0,092114665 0 3,4719667 3,284065426 130,1199209 3,487437953 3,7117441 0,239777369
+3,4016488 468463,7155 -0,07014624 -0,092106387 0 3,4717951 3,284884188 130,1288099 3,488307418 3,7116488 0,23985376
+3,4017823 468495,7157 -0,069993466 -0,092113383 0 3,4717758 3,28570295 130,1376988 3,489176884 3,7117823 0,240006534
+3,4014959 468527,7158 -0,069897979 -0,092115298 0 3,4713938 3,286521711 130,1465877 3,490046348 3,7114959 0,240102021
+3,401324 468559,716 -0,070012562 -0,092115939 0 3,4713366 3,28734047 130,1554767 3,490915811 3,711324 0,239987438
+3,401305 468591,7162 -0,069802485 -0,092115939 0 3,4711075 3,28815923 130,1643656 3,491785275 3,711305 0,240197515
+3,401114 468623,7164 -0,069745198 -0,092108928 0 3,4708593 3,288977989 130,1732545 3,492654737 3,711114 0,240254802
+3,4010756 468655,7166 -0,069955267 -0,092106387 0 3,471031 3,289796748 130,1821435 3,493524199 3,7110756 0,240044733
+3,4008083 468687,7167 -0,069821589 -0,092117213 0 3,4706299 3,290615507 130,1910324 3,494393662 3,7108083 0,240178411
+3,4008656 468719,7169 -0,06985978 -0,09210702 0 3,4707253 3,291434267 130,1999214 3,495263124 3,7108656 0,24014022
+3,4009039 468751,7171 -0,069706999 -0,092106387 0 3,4706109 3,292253025 130,2088103 3,496132586 3,7109039 0,240293001
+3,400732 468783,7173 -0,069726102 -0,092114031 0 3,470458 3,293071783 130,2176992 3,497002047 3,710732 0,240273898
+3,4006937 468815,7174 -0,069821589 -0,092107654 0 3,4705153 3,293890545 130,2265882 3,497871513 3,7106937 0,240178411
+3,4006555 468847,7176 -0,069535129 -0,092115298 0 3,4701905 3,294709308 130,2354771 3,49874098 3,7106555 0,240464871
+3,4006364 468879,7178 -0,069554225 -0,092111476 0 3,4701908 3,29552807 130,2443661 3,499610444 3,7106364 0,240445775
+3,4004455 468911,718 -0,069726102 -0,092108302 0 3,4701715 3,296346829 130,253255 3,500479908 3,7104455 0,240273898
+3,4004264 468943,7181 -0,069516025 -0,092108302 0 3,4699423 3,297165592 130,2621439 3,501349374 3,7104264 0,240483975
+3,4003117 468975,7183 -0,069554225 -0,092115298 0 3,469866 3,297984352 130,2710329 3,502218838 3,7103117 0,240445775
+3,4001782 469007,7185 -0,069458738 -0,092109561 0 3,4696369 3,298803116 130,2799218 3,503088305 3,7101782 0,240541262
+3,3999872 469039,7187 -0,06949693 -0,09211912 0 3,4694841 3,299621877 130,2888107 3,50395777 3,7099872 0,24050307
+3,4000826 469071,7188 -0,069305956 -0,092107654 0 3,4693885 3,300440635 130,2976997 3,504827231 3,7100826 0,240694044
+3,3999298 469103,719 -0,069592416 -0,092112117 0 3,4695222 3,301259399 130,3065886 3,505696699 3,7099298 0,240407584
+3,3999298 469135,7192 -0,06949693 -0,092101291 0 3,4694266 3,302078161 130,3154776 3,506566164 3,7099298 0,24050307
+3,3996243 469167,7194 -0,069344155 -0,092110209 0 3,4689684 3,302896923 130,3243665 3,50743563 3,7096243 0,240655845
+3,399586 469199,7195 -0,069363251 -0,092112757 0 3,4689493 3,303715686 130,3332554 3,508305096 3,709586 0,240636749
+3,399586 469231,7197 -0,069325052 -0,092106387 0 3,4689109 3,304534452 130,3421444 3,509174566 3,709586 0,240674948
+3,3994334 469263,7199 -0,069248669 -0,092113383 0 3,4686821 3,305353218 130,3510333 3,510044036 3,7094334 0,240751331
+3,399395 469295,7201 -0,069057696 -0,092114665 0 3,4684527 3,306171985 130,3599222 3,510913507 3,709395 0,240942304
+3,3992233 469327,7203 -0,069248669 -0,092108302 0 3,468472 3,306990751 130,3688112 3,511782977 3,7092233 0,240751331
+3,399204 469359,7204 -0,069382347 -0,092112117 0 3,4685864 3,307809516 130,3777001 3,512652445 3,709204 0,240617653
+3,3991277 469391,7206 -0,069191374 -0,092116579 0 3,4683192 3,308628285 130,3865891 3,513521918 3,7091277 0,240808626
+3,398994 469423,7208 -0,069134079 -0,092108928 0 3,468128 3,309447055 130,395478 3,514391392 3,708994 0,240865921
+3,3988605 469455,721 -0,069305956 -0,092111476 0 3,4681664 3,310265825 130,4043669 3,515260866 3,7088605 0,240694044
+3,3987839 469487,7211 -0,069038592 -0,092111476 0 3,4678226 3,311084594 130,4132559 3,516130339 3,7087839 0,240961408
+3,3987458 469519,7213 -0,06892401 -0,092114665 0 3,4676697 3,311903366 130,4221448 3,516999815 3,7087458 0,24107599
+3,3986311 469551,7215 -0,068904914 -0,092103198 0 3,467536 3,312722137 130,4310337 3,51786929 3,7086311 0,241095086
+3,3984976 469583,7217 -0,068771236 -0,092114031 0 3,4672687 3,313540908 130,4399227 3,518738765 3,7084976 0,241228764
+3,3983448 469615,7218 -0,06892401 -0,092110842 0 3,4672687 3,314359679 130,4488116 3,51960824 3,7083448 0,24107599
+3,398421 469647,722 -0,06892401 -0,09210702 0 3,467345 3,315178447 130,4577006 3,520477712 3,708421 0,24107599
+3,3981538 469679,7222 -0,069000401 -0,092102565 0 3,4671543 3,315997216 130,4665895 3,521347185 3,7081538 0,240999599
+3,3980966 469711,7224 -0,069038592 -0,092108928 0 3,4671352 3,316815983 130,4754784 3,522216656 3,7080966 0,240961408
+3,3982301 469743,7225 -0,068847619 -0,092112757 0 3,4670777 3,31763475 130,4843674 3,523086126 3,7082301 0,241152381
+3,3978481 469775,7227 -0,068828523 -0,092114665 0 3,4666767 3,318453516 130,4932563 3,523955597 3,7078481 0,241171477
+3,3977909 469807,7229 -0,068904914 -0,092120394 0 3,4666958 3,319272284 130,5021452 3,524825068 3,7077909 0,241095086
+3,3977528 469839,7231 -0,068866722 -0,092115939 0 3,4666195 3,320091052 130,5110342 3,52569454 3,7077528 0,241133278
+3,3977909 469871,7232 -0,068828523 -0,092101291 0 3,4666195 3,320909822 130,5199231 3,526564014 3,7077909 0,241171477
+3,3976762 469903,7234 -0,068904914 -0,092112117 0 3,4665811 3,321728594 130,5288121 3,527433491 3,7076762 0,241095086
+3,3973708 469935,7236 -0,068962209 -0,09210702 0 3,4663329 3,322547365 130,537701 3,528302965 3,7073708 0,241037791
+3,3974853 469967,7238 -0,068847619 -0,092110209 0 3,4663329 3,323366134 130,5465899 3,529172439 3,7074853 0,241152381
+3,3972752 469999,724 -0,068713941 -0,092111476 0 3,4659891 3,324184903 130,5554789 3,530041911 3,7072752 0,241286059
+3,3972371 470031,7241 -0,068599358 -0,092116579 0 3,4658365 3,32500367 130,5643678 3,530911382 3,7072371 0,241400642
+3,3971989 470063,7243 -0,068694845 -0,092112757 0 3,4658937 3,325822437 130,5732568 3,531780853 3,7071989 0,241305155
+3,3971989 470095,7245 -0,068656646 -0,092098743 0 3,4658556 3,326641203 130,5821457 3,532650323 3,7071989 0,241343354
+3,3971033 470127,7247 -0,068618454 -0,092110842 0 3,4657218 3,327459971 130,5910346 3,533519795 3,7071033 0,241381546
+3,3968933 470159,7248 -0,068752132 -0,092110209 0 3,4656453 3,328278737 130,5999236 3,534389265 3,7068933 0,241247868
+3,396836 470191,725 -0,068694845 -0,092106387 0 3,4655309 3,3290975 130,6088125 3,535258731 3,706836 0,241305155
+3,396817 470223,7252 -0,068599358 -0,092114665 0 3,4654164 3,329916264 130,6177014 3,536128199 3,706817 0,241400642
+3,3967786 470255,7254 -0,068675742 -0,092108302 0 3,4654543 3,330735027 130,6265904 3,536997665 3,7067786 0,241324258
+3,3964732 470287,7255 -0,068656646 -0,09210702 0 3,4651299 3,331553791 130,6354793 3,537867133 3,7064732 0,241343354
+3,3965495 470319,7257 -0,068503872 -0,09210702 0 3,4650533 3,33237255 130,6443683 3,538736596 3,7065495 0,241496128
+3,3963394 470351,7259 -0,068427481 -0,092111476 0 3,464767 3,333191314 130,6532572 3,539606063 3,7063394 0,241572519
+3,3963394 470383,7261 -0,068542063 -0,092109561 0 3,4648814 3,33401008 130,6621461 3,540475532 3,7063394 0,241457937
+3,3961675 470415,7262 -0,068484768 -0,092110209 0 3,4646523 3,334828843 130,6710351 3,541344999 3,7061675 0,241515232
+3,3960721 470447,7264 -0,068312898 -0,092106387 0 3,464385 3,335647606 130,679924 3,542214466 3,7060721 0,241687102
+3,3960147 470479,7266 -0,068503872 -0,092112757 0 3,4645185 3,336466367 130,6888129 3,543083931 3,7060147 0,241496128
+3,3958046 470511,7268 -0,068542063 -0,092110842 0 3,4643466 3,33728513 130,6977019 3,543953398 3,7058046 0,241457937
+3,3956902 470543,7269 -0,068427481 -0,092119761 0 3,4641178 3,338103896 130,7065908 3,544822867 3,7056902 0,241572519
+3,3956902 470575,7271 -0,068427481 -0,092110842 0 3,4641178 3,338922661 130,7154798 3,545692335 3,7056902 0,241572519
+3,3955564 470607,7273 -0,06835109 -0,092116579 0 3,4639075 3,339741426 130,7243687 3,546561804 3,7055564 0,24164891
+3,3958237 470639,7275 -0,068312898 -0,092110842 0 3,4641366 3,340560191 130,7332576 3,547431273 3,7058237 0,241687102
+3,3954992 470671,7277 -0,068370186 -0,092109561 0 3,4638693 3,341378957 130,7421466 3,548300742 3,7054992 0,241629814
+3,3952892 470703,7278 -0,068408385 -0,092112757 0 3,4636977 3,342197722 130,7510355 3,549170211 3,7052892 0,241591615
+3,3953655 470735,728 -0,068331994 -0,092114665 0 3,4636974 3,343016488 130,7599244 3,550039681 3,7053655 0,241668006
+3,3952127 470767,7282 -0,068160117 -0,092110842 0 3,4633727 3,343835253 130,7688134 3,55090915 3,7052127 0,241839883
+3,3952317 470799,7284 -0,068236507 -0,092107654 0 3,4634683 3,344654018 130,7777023 3,551778618 3,7052317 0,241763493
+3,3950789 470831,7285 -0,068198308 -0,092111476 0 3,4632771 3,345472781 130,7865913 3,552648086 3,7050789 0,241801692
+3,394907 470863,7287 -0,068102822 -0,092112757 0 3,4630098 3,346291548 130,7954802 3,553517556 3,704907 0,241897178
+3,3948307 470895,7289 -0,068179213 -0,092107654 0 3,4630098 3,347110312 130,8043691 3,554387024 3,7048307 0,241820787
+3,394697 470927,7291 -0,068141021 -0,092111476 0 3,4628379 3,347929077 130,8132581 3,555256492 3,704697 0,241858979
+3,3947544 470959,7292 -0,067969143 -0,092108928 0 3,4627235 3,348747841 130,822147 3,55612596 3,7047544 0,242030857
+3,3946397 470991,7294 -0,068141021 -0,092113383 0 3,4627807 3,349566604 130,8310359 3,556995427 3,7046397 0,241858979
+3,3947353 471023,7296 -0,068179213 -0,092105746 0 3,4629145 3,350385367 130,8399249 3,557864894 3,7047353 0,241820787
+3,3946207 471055,7298 -0,067950048 -0,092103198 0 3,4625707 3,351204132 130,8488138 3,558734362 3,7046207 0,242049952
+3,3943341 471087,7299 -0,068083726 -0,092108928 0 3,4624178 3,352022897 130,8577028 3,559603831 3,7043341 0,241916274
+3,3941431 471119,7301 -0,06835109 -0,092108302 0 3,4624941 3,352841662 130,8665917 3,560473299 3,7041431 0,24164891
+3,3942578 471151,7303 -0,068045534 -0,092108302 0 3,4623034 3,353660426 130,8754806 3,561342767 3,7042578 0,241954466
+3,394124 471183,7305 -0,067930952 -0,092105106 0 3,462055 3,354479195 130,8843696 3,56221224 3,704124 0,242069048
+3,394124 471215,7306 -0,067873657 -0,092110209 0 3,4619977 3,355297962 130,8932585 3,563081711 3,704124 0,242126343
+3,3938949 471247,7308 -0,068083726 -0,092100017 0 3,4619787 3,356116725 130,9021475 3,563951178 3,7038949 0,241916274
+3,393914 471279,731 -0,068007335 -0,092110209 0 3,4619212 3,356935488 130,9110364 3,564820644 3,703914 0,241992665
+3,3936467 471311,7312 -0,067969143 -0,092108302 0 3,4616158 3,35775425 130,9199253 3,56569011 3,7036467 0,242030857
+3,3935893 471343,7313 -0,067930952 -0,09210702 0 3,4615202 3,358573009 130,9288143 3,566559572 3,7035893 0,242069048
+3,3934748 471375,7315 -0,067930952 -0,092108928 0 3,4614058 3,35939177 130,9377032 3,567429036 3,7034748 0,242069048
+3,3933601 471407,7317 -0,067797266 -0,092101291 0 3,4611573 3,360210529 130,9465921 3,568298499 3,7033601 0,242202734
+3,3934939 471439,7319 -0,067854561 -0,092105106 0 3,4613485 3,361029292 130,9554811 3,569167965 3,7034939 0,242145439
+3,3932838 471471,7321 -0,067950048 -0,092112757 0 3,4612339 3,361848051 130,96437 3,570037428 3,7032838 0,242049952
+3,3932457 471503,7322 -0,067701779 -0,092110842 0 3,4609475 3,36266681 130,973259 3,57090689 3,7032457 0,242298221
+3,3932073 471535,7324 -0,067759074 -0,092108928 0 3,4609663 3,363485566 130,9821479 3,571776349 3,7032073 0,242240926
+3,3929782 471567,7326 -0,067892753 -0,092110842 0 3,460871 3,364304325 130,9910368 3,572645812 3,7029782 0,242107247
+3,393131 471599,7328 -0,067892753 -0,092110842 0 3,4610238 3,365123082 130,9999258 3,573515272 3,703131 0,242107247
+3,3928828 471631,7329 -0,067816362 -0,092103831 0 3,4606991 3,365941842 131,0088147 3,574384735 3,7028828 0,242183638
+3,3927491 471663,7331 -0,067759074 -0,092110209 0 3,4605081 3,366760604 131,0177036 3,575254201 3,7027491 0,242240926
+3,3926535 471695,7333 -0,067816362 -0,092112757 0 3,4604697 3,367579368 131,0265926 3,576123669 3,7026535 0,242183638
+3,3924625 471727,7335 -0,067759074 -0,092114031 0 3,4602215 3,368398132 131,0354815 3,576993136 3,7024625 0,242240926
+3,3924625 471759,7336 -0,067835465 -0,092105746 0 3,4602981 3,369216895 131,0443705 3,577862602 3,7024625 0,242164535
+3,3923862 471791,7338 -0,067720875 -0,092110209 0 3,4601071 3,370035659 131,0532594 3,578732071 3,7023862 0,242279125
+3,3922524 471823,734 -0,06777817 -0,092112757 0 3,4600306 3,370854424 131,0621483 3,579601539 3,7022524 0,24222183
+3,3922524 471855,7342 -0,067510806 -0,092110842 0 3,4597633 3,371673189 131,0710373 3,580471008 3,7022524 0,242489194
+3,3921762 471887,7343 -0,067606293 -0,092112117 0 3,4597824 3,372491951 131,0799262 3,581340473 3,7021762 0,242393707
+3,3921762 471919,7345 -0,06777817 -0,092108928 0 3,4599543 3,373310713 131,0888151 3,582209938 3,7021762 0,24222183
+3,3920043 471951,7347 -0,067606293 -0,092105746 0 3,4596105 3,374129476 131,0977041 3,583079405 3,7020043 0,242393707
+3,391947 471983,7349 -0,067644492 -0,092105746 0 3,4595916 3,37494824 131,106593 3,583948873 3,701947 0,242355508
+3,3918514 472015,735 -0,06749171 -0,092109561 0 3,4593432 3,375767003 131,115482 3,584818339 3,7018514 0,24250829
+3,3917942 472047,7352 -0,067663588 -0,092104472 0 3,4594579 3,376585766 131,1243709 3,585687806 3,7017942 0,242336412
+3,3915842 472079,7354 -0,067434415 -0,092107654 0 3,4590185 3,37740453 131,1332598 3,586557274 3,7015842 0,242565585
+3,3914695 472111,7356 -0,067529902 -0,092117213 0 3,4589994 3,378223294 131,1421488 3,587426741 3,7014695 0,242470098
+3,3913548 472143,7358 -0,067548998 -0,092113383 0 3,4589038 3,379042056 131,1510377 3,588296207 3,7013548 0,242451002
+3,3914313 472175,7359 -0,06749171 -0,092117853 0 3,4589231 3,379860818 131,1599266 3,589165673 3,7014313 0,24250829
+3,3913548 472207,7361 -0,067548998 -0,092115298 0 3,4589038 3,380679581 131,1688156 3,590035139 3,7013548 0,242451002
+3,3912213 472239,7363 -0,067453511 -0,092121035 0 3,4586749 3,381498344 131,1777045 3,590904606 3,7012213 0,242546489
+3,3911257 472271,7365 -0,067529902 -0,092103831 0 3,4586556 3,382317106 131,1865935 3,591774071 3,7011257 0,242470098
+3,3910112 472303,7366 -0,067396224 -0,092105746 0 3,4584074 3,383135868 131,1954824 3,592643537 3,7010112 0,242603776
+3,3908966 472335,7368 -0,067453511 -0,092110209 0 3,4583502 3,383954631 131,2043713 3,593513003 3,7008966 0,242546489
+3,3906865 472367,737 -0,067243442 -0,092113383 0 3,4579298 3,384773394 131,2132603 3,59438247 3,7006865 0,242756558
+3,3906484 472399,7372 -0,067358024 -0,092105106 0 3,4580064 3,385592155 131,2221492 3,595251934 3,7006484 0,242641976
+3,3907247 472431,7373 -0,067262538 -0,092106387 0 3,4579873 3,38641092 131,2310381 3,596121403 3,7007247 0,242737462
+3,3906293 472463,7375 -0,067338929 -0,092118487 0 3,4579682 3,387229685 131,2399271 3,596990872 3,7006293 0,242661071
+3,3904955 472495,7377 -0,067434415 -0,092104472 0 3,4579298 3,388048453 131,248816 3,597860344 3,7004955 0,242565585
+3,3902664 472527,7379 -0,067147955 -0,092110842 0 3,4574144 3,38886722 131,257705 3,598729815 3,7002664 0,242852045
+3,390228 472559,738 -0,067396224 -0,092113383 0 3,4576242 3,389685987 131,2665939 3,599599285 3,700228 0,242603776
+3,3901327 472591,7382 -0,067319833 -0,092114031 0 3,4574525 3,390504752 131,2754828 3,600468754 3,7001327 0,242680167
+3,3901517 472623,7384 -0,067224346 -0,092112117 0 3,457376 3,391323515 131,2843718 3,60133822 3,7001517 0,242775654
+3,3899608 472655,7386 -0,067186154 -0,092118487 0 3,4571469 3,39214228 131,2932607 3,60220769 3,6999608 0,242813846
+3,3899798 472687,7387 -0,067147955 -0,092110209 0 3,4571278 3,392961043 131,3021497 3,603077156 3,6999798 0,242852045
+3,389827 472719,7389 -0,067186154 -0,092107654 0 3,4570131 3,393779804 131,3110386 3,603946621 3,699827 0,242813846
+3,389827 472751,7391 -0,067128859 -0,092112117 0 3,4569559 3,394598565 131,3199275 3,604816085 3,699827 0,242871141
+3,3897316 472783,7393 -0,067224346 -0,092107654 0 3,4569559 3,395417327 131,3288165 3,60568555 3,6997316 0,242775654
+3,3897126 472815,7395 -0,066899695 -0,092114665 0 3,4566123 3,396236088 131,3377054 3,606555014 3,6997126 0,243100305
+3,3895597 472847,7396 -0,06720525 -0,092117213 0 3,4567649 3,397054848 131,3465943 3,607424478 3,6995597 0,24279475
+3,3895979 472879,7398 -0,067071564 -0,092112117 0 3,4566696 3,397873608 131,3554833 3,608293941 3,6995979 0,242928436
+3,3893878 472911,74 -0,067167051 -0,092105106 0 3,4565549 3,39869237 131,3643722 3,609163407 3,6993878 0,242832949
+3,3891206 472943,7402 -0,067090668 -0,092109561 0 3,4562113 3,399511133 131,3732612 3,610032874 3,6991206 0,242909332
+3,3890822 472975,7403 -0,066995181 -0,092110842 0 3,4560773 3,400329894 131,3821501 3,610902339 3,6990822 0,243004819
+3,3889678 473007,7405 -0,067052469 -0,092103831 0 3,4560201 3,401148658 131,391039 3,611771806 3,6989678 0,242947531
+3,3889868 473039,7407 -0,067167051 -0,092111476 0 3,4561539 3,401967422 131,399928 3,612641273 3,6989868 0,242832949
+3,3889678 473071,7409 -0,067090668 -0,092112757 0 3,4560585 3,402786185 131,4088169 3,61351074 3,6989678 0,242909332
+3,3887193 473103,741 -0,067033373 -0,092111476 0 3,4557526 3,403604948 131,4177058 3,614380207 3,6987193 0,242966627
+3,3888721 473135,7412 -0,06691879 -0,092112757 0 3,455791 3,404423712 131,4265948 3,615249674 3,6988721 0,24308121
+3,3885093 473167,7414 -0,066976078 -0,092113383 0 3,4554853 3,405242476 131,4354837 3,616119141 3,6985093 0,243023922
+3,3885283 473199,7416 -0,067014277 -0,092105106 0 3,4555426 3,40606124 131,4443727 3,61698861 3,6985283 0,242985723
+3,3884711 473231,7417 -0,066937886 -0,092112757 0 3,455409 3,406880005 131,4532616 3,617858078 3,6984711 0,243062114
+3,3883564 473263,7419 -0,066861495 -0,092108928 0 3,4552178 3,407698767 131,4621505 3,618727544 3,6983564 0,243138505
+3,3882039 473295,7421 -0,06691879 -0,092104472 0 3,4551227 3,408517529 131,4710395 3,61959701 3,6982039 0,24308121
+3,3881273 473327,7423 -0,066899695 -0,092106387 0 3,4550271 3,409336293 131,4799284 3,620466477 3,6981273 0,243100305
+3,3880701 473359,7424 -0,066937886 -0,092104472 0 3,455008 3,410155056 131,4888173 3,621335943 3,6980701 0,243062114
+3,3879938 473391,7426 -0,0668424 -0,09210702 0 3,4548361 3,410973819 131,4977063 3,62220541 3,6979938 0,2431576
+3,388032 473423,7428 -0,066956982 -0,092108928 0 3,454989 3,411792582 131,5065952 3,623074877 3,698032 0,243043018
+3,3878982 473455,743 -0,066727817 -0,09210702 0 3,4546261 3,412611344 131,5154842 3,623944342 3,6978982 0,243272183
+3,3877645 473487,7432 -0,066861495 -0,092105746 0 3,4546258 3,413430101 131,5243731 3,624813803 3,6977645 0,243138505
+3,3875353 473519,7433 -0,066823304 -0,092108928 0 3,4543586 3,414248858 131,533262 3,625683262 3,6975353 0,243176696
+3,3876116 473551,7435 -0,066670522 -0,092115298 0 3,454282 3,415067617 131,542151 3,626552725 3,6976116 0,243329478
+3,3875163 473583,7437 -0,066766009 -0,092109561 0 3,4542823 3,415886378 131,5510399 3,627422189 3,6975163 0,243233991
+3,3873825 473615,7439 -0,066727817 -0,092106387 0 3,4541104 3,41670514 131,5599288 3,628291655 3,6973825 0,243272183
+3,3875353 473647,744 -0,066613235 -0,092107654 0 3,4541485 3,417523901 131,5688178 3,629161119 3,6975353 0,243386765
+3,3871915 473679,7442 -0,066727817 -0,092115298 0 3,4539194 3,41834266 131,5777067 3,630030582 3,6971915 0,243272183
+3,387058 473711,7444 -0,066575035 -0,092112117 0 3,4536331 3,41916142 131,5865957 3,630900045 3,697058 0,243424965
+3,3870771 473743,7446 -0,066689618 -0,092115298 0 3,4537668 3,419980181 131,5954846 3,63176951 3,6970771 0,243310382
+3,3868861 473775,7447 -0,066785105 -0,092115298 0 3,4536712 3,420798945 131,6043735 3,632638977 3,6968861 0,243214895
+3,3868287 473807,7449 -0,066517748 -0,092113383 0 3,4533465 3,421617707 131,6132625 3,633508443 3,6968287 0,243482252
+3,3868477 473839,7451 -0,06663233 -0,092114665 0 3,45348 3,422436469 131,6221514 3,634377908 3,6968477 0,24336767
+3,3866377 473871,7453 -0,066575035 -0,092112757 0 3,4532127 3,423255232 131,6310404 3,635247375 3,6966377 0,243424965
+3,3864849 473903,7454 -0,066613235 -0,092108928 0 3,4530981 3,424073997 131,6399293 3,636116844 3,6964849 0,243386765
+3,3865423 473935,7456 -0,066460453 -0,092107654 0 3,4530027 3,424892759 131,6488182 3,636986309 3,6965423 0,243539547
+3,3864276 473967,7458 -0,066479549 -0,092108302 0 3,4529071 3,425711521 131,6577072 3,637855775 3,6964276 0,243520451
+3,3863704 473999,746 -0,066536844 -0,092113383 0 3,4529073 3,426530284 131,6665961 3,638725242 3,6963704 0,243463156
+3,3862176 474031,7461 -0,066441357 -0,092107654 0 3,4526589 3,427349049 131,675485 3,63959471 3,6962176 0,243558643
+3,3860266 474063,7463 -0,066384062 -0,092113383 0 3,4524107 3,428167814 131,684374 3,640464179 3,6960266 0,243615938
+3,3860266 474095,7465 -0,066594131 -0,092110209 0 3,4526207 3,428986582 131,6932629 3,64133365 3,6960266 0,243405869
+3,3859119 474127,7467 -0,066460453 -0,092112757 0 3,4523723 3,42980535 131,7021519 3,642203123 3,6959119 0,243539547
+3,3857784 474159,7469 -0,066384062 -0,09210065 0 3,4521625 3,430624119 131,7110408 3,643072596 3,6957784 0,243615938
+3,3857975 474191,747 -0,066594131 -0,092105746 0 3,4523916 3,431442888 131,7199297 3,643942069 3,6957975 0,243405869
+3,3856256 474223,7472 -0,06634587 -0,092106387 0 3,4519715 3,432261656 131,7288187 3,64481154 3,6956256 0,24365413
+3,3855684 474255,7474 -0,06663233 -0,092114031 0 3,4522007 3,433080421 131,7377076 3,645681009 3,6955684 0,24336767
+3,3855684 474287,7476 -0,066364966 -0,09210702 0 3,4519334 3,433899186 131,7465965 3,646550478 3,6955684 0,243635034
+3,3855684 474319,7477 -0,066403158 -0,092111476 0 3,4519715 3,434717949 131,7554855 3,647419945 3,6955684 0,243596842
+3,3853774 474351,7479 -0,066441357 -0,092112117 0 3,4518187 3,435536712 131,7643744 3,648289411 3,6953774 0,243558643
+3,3852627 474383,7481 -0,066326767 -0,092107654 0 3,4515896 3,436355477 131,7732634 3,64915888 3,6952627 0,243673233
+3,3849189 474415,7483 -0,066154897 -0,092110209 0 3,4510739 3,437174243 131,7821523 3,650028349 3,6949189 0,243845103
+3,3852818 474447,7484 -0,066135794 -0,092104472 0 3,4514177 3,437993005 131,7910412 3,650897815 3,6952818 0,243864206
+3,3849952 474479,7486 -0,066193089 -0,092109561 0 3,4511883 3,438811766 131,7999302 3,651767279 3,6949952 0,243806911
+3,3848042 474511,7488 -0,066116698 -0,092110842 0 3,4509211 3,439630527 131,8088191 3,652636744 3,6948042 0,243883302
+3,3847852 474543,749 -0,066154897 -0,092112117 0 3,4509401 3,44044929 131,817708 3,65350621 3,6947852 0,243845103
+3,3847089 474575,7491 -0,066097602 -0,092110209 0 3,4508064 3,441268052 131,826597 3,654375676 3,6947089 0,243902398
+3,3845561 474607,7493 -0,066231281 -0,092108928 0 3,4507873 3,442086816 131,8354859 3,655245143 3,6945561 0,243768719
+3,3845179 474639,7495 -0,066193089 -0,092111476 0 3,450711 3,442905583 131,8443749 3,656114615 3,6945179 0,243806911
+3,3843079 474671,7497 -0,066193089 -0,092110209 0 3,450501 3,443724349 131,8532638 3,656984085 3,6943079 0,243806911
+3,384155 474703,7498 -0,066059411 -0,092112757 0 3,4502144 3,444543117 131,8621527 3,657853556 3,694155 0,243940589
+3,3841741 474735,75 -0,066097602 -0,092105746 0 3,4502716 3,44536188 131,8710417 3,658723023 3,6941741 0,243902398
+3,3840022 474767,7502 -0,066116698 -0,092117213 0 3,450119 3,446180646 131,8799306 3,659592493 3,6940022 0,243883302
+3,3840213 474799,7504 -0,065963924 -0,092115939 0 3,4499853 3,446999412 131,8888195 3,660461963 3,6940213 0,244036076
+3,384136 474831,7506 -0,066040307 -0,092110842 0 3,4501762 3,44781818 131,8977085 3,661331434 3,694136 0,243959693
+3,3840022 474863,7507 -0,06598302 -0,092111476 0 3,4499853 3,448636946 131,9065974 3,662200905 3,6940022 0,24401698
+3,3837922 474895,7509 -0,066040307 -0,092105746 0 3,4498324 3,449455711 131,9154864 3,663070373 3,6937922 0,243959693
+3,3837349 474927,7511 -0,066059411 -0,092117213 0 3,4497943 3,450274475 131,9243753 3,66393984 3,6937349 0,243940589
+3,3836203 474959,7513 -0,066097602 -0,092116579 0 3,4497178 3,451093239 131,9332642 3,664809309 3,6936203 0,243902398
+3,3835821 474991,7514 -0,065830238 -0,092103831 0 3,4494123 3,451912004 131,9421532 3,665678777 3,6935821 0,244169762
+3,3834674 475023,7516 -0,065677464 -0,092117213 0 3,4491448 3,452730771 131,9510421 3,666548247 3,6934674 0,244322536
+3,3832192 475055,7518 -0,066002116 -0,092108928 0 3,4492214 3,453549537 131,9599311 3,667417717 3,6932192 0,243997884
+3,3832192 475087,752 -0,06598302 -0,092115298 0 3,4492023 3,454368304 131,96882 3,668287188 3,6932192 0,24401698
+3,3830283 475119,7521 -0,065811142 -0,092108928 0 3,4488394 3,455187069 131,9777089 3,669156657 3,6930283 0,244188858
+3,3831046 475151,7523 -0,065811142 -0,092109561 0 3,4489157 3,456005835 131,9865979 3,670026127 3,6931046 0,244188858
+3,3829136 475183,7525 -0,065963924 -0,092110209 0 3,4488776 3,456824599 131,9954868 3,670895594 3,6929136 0,244036076
+3,3828373 475215,7527 -0,065792046 -0,092106387 0 3,4486294 3,457643365 132,0043757 3,671765064 3,6928373 0,244207954
+3,3826082 475247,7528 -0,065772951 -0,092114031 0 3,4483812 3,458462128 132,0132647 3,672634531 3,6926082 0,244227049
+3,382761 475279,753 -0,065887533 -0,092111476 0 3,4486485 3,459280891 132,0221536 3,673503997 3,692761 0,244112467
+3,3826463 475311,7532 -0,065658361 -0,092114665 0 3,4483047 3,460099658 132,0310426 3,674373468 3,6926463 0,244341639
+3,3825316 475343,7534 -0,065581977 -0,092110209 0 3,4481137 3,460918423 132,0399315 3,675242937 3,6925316 0,244418023
+3,3825126 475375,7535 -0,065639265 -0,092112117 0 3,4481518 3,461737188 132,0488204 3,676112406 3,6925126 0,244360735
+3,3823216 475407,7537 -0,065562874 -0,09210702 0 3,4478846 3,462555952 132,0577094 3,676981873 3,6923216 0,244437126
+3,3823216 475439,7539 -0,065601073 -0,092108928 0 3,4479227 3,463374715 132,0665983 3,67785134 3,6923216 0,244398927
+3,3821115 475471,7541 -0,065524682 -0,092113383 0 3,4476361 3,464193477 132,0754872 3,678720806 3,6921115 0,244475318
+3,3821115 475503,7543 -0,065581977 -0,09210702 0 3,4476936 3,465012238 132,0843762 3,67959027 3,6921115 0,244418023
+3,3820353 475535,7544 -0,065639265 -0,092117853 0 3,4476745 3,465830997 132,0932651 3,680459732 3,6920353 0,244360735
+3,3819587 475567,7546 -0,065505587 -0,092110209 0 3,4474642 3,466649758 132,1021541 3,681329196 3,6919587 0,244494413
+3,3818824 475599,7548 -0,065467387 -0,092106387 0 3,4473498 3,467468519 132,111043 3,682198661 3,6918824 0,244532613
+3,3816724 475631,755 -0,065543778 -0,092108302 0 3,4472163 3,468287282 132,1199319 3,683068128 3,6916724 0,244456222
+3,3815768 475663,7551 -0,065314613 -0,092110209 0 3,4468913 3,469106045 132,1288209 3,683937594 3,6915768 0,244685387
+3,3814433 475695,7553 -0,065391004 -0,092108928 0 3,4468343 3,469924807 132,1377098 3,68480706 3,6914433 0,244608996
+3,3812714 475727,7555 -0,065391004 -0,092110209 0 3,4466624 3,47074357 132,1465987 3,685676527 3,6912714 0,244608996
+3,3812714 475759,7557 -0,065371901 -0,092109561 0 3,4466434 3,471562334 132,1554877 3,686545994 3,6912714 0,244628099
+3,3811948 475791,7558 -0,065391004 -0,092117213 0 3,4465859 3,472381097 132,1643766 3,68741546 3,6911948 0,244608996
+3,3811758 475823,756 -0,065257318 -0,092111476 0 3,4464331 3,473199859 132,1732656 3,688284926 3,6911758 0,244742682
+3,381042 475855,7562 -0,065429196 -0,09210702 0 3,4464712 3,474018621 132,1821545 3,689154392 3,691042 0,244570804
+3,3808129 475887,7564 -0,065333709 -0,092114031 0 3,4461465 3,474837383 132,1910434 3,690023857 3,6908129 0,244666291
+3,380832 475919,7565 -0,065391004 -0,092110209 0 3,446223 3,475656147 132,1999324 3,690893325 3,690832 0,244608996
+3,380641 475951,7567 -0,065276414 -0,092114665 0 3,4459174 3,476474908 132,2088213 3,69176279 3,690641 0,244723586
+3,3807747 475983,7569 -0,065314613 -0,092108928 0 3,4460893 3,477293669 132,2177102 3,692632254 3,6907747 0,244685387
+3,3805075 476015,7571 -0,065257318 -0,092115939 0 3,4457648 3,478112427 132,2265992 3,693501715 3,6905075 0,244742682
+3,3805838 476047,7572 -0,065257318 -0,09210702 0 3,4458411 3,478931186 132,2354881 3,694371177 3,6905838 0,244742682
+3,3802972 476079,7574 -0,065257318 -0,092113383 0 3,4455545 3,479749945 132,2443771 3,69524064 3,6902972 0,244742682
+3,3804119 476111,7576 -0,065085441 -0,092115939 0 3,4454973 3,480568706 132,253266 3,696110104 3,6904119 0,244914559
+3,3801253 476143,7578 -0,065257318 -0,092098743 0 3,4453826 3,481387468 132,2621549 3,69697957 3,6901253 0,244742682
+3,380049 476175,7579 -0,06512364 -0,092111476 0 3,4451725 3,48220623 132,2710439 3,697849035 3,690049 0,24487636
+3,3800681 476207,7581 -0,065276414 -0,092106387 0 3,4453444 3,483024993 132,2799328 3,698718501 3,6900681 0,244723586
+3,3800108 476239,7583 -0,065200023 -0,092107654 0 3,4452109 3,483843756 132,2888218 3,699587968 3,6900108 0,244799977
+3,3799536 476271,7585 -0,065104537 -0,092113383 0 3,4450581 3,48466252 132,2977107 3,700457436 3,6899536 0,244895463
+3,3797817 476303,7587 -0,065028153 -0,092112757 0 3,4448099 3,485481284 132,3065996 3,701326904 3,6897817 0,244971847
+3,379648 476335,7588 -0,065047249 -0,092111476 0 3,4446952 3,486300049 132,3154886 3,702196372 3,689648 0,244952751
+3,379648 476367,759 -0,064970858 -0,092112757 0 3,4446189 3,487118814 132,3243775 3,703065841 3,689648 0,245029142
+3,3794951 476399,7592 -0,065257318 -0,092114665 0 3,4447525 3,487937578 132,3332664 3,703935308 3,6894951 0,244742682
+3,3793614 476431,7594 -0,064989954 -0,092107654 0 3,4443514 3,488756344 132,3421554 3,704804779 3,6893614 0,245010046
+3,3793614 476463,7595 -0,064970858 -0,092117213 0 3,4443324 3,489575112 132,3510443 3,70567425 3,6893614 0,245029142
+3,3792851 476495,7597 -0,06500905 -0,092104472 0 3,4442942 3,490393881 132,3599333 3,706543723 3,6892851 0,24499095
+3,3790941 476527,7599 -0,064913563 -0,092116579 0 3,4440076 3,491212648 132,3688222 3,707413195 3,6890941 0,245086437
+3,3790941 476559,7601 -0,064760789 -0,092108302 0 3,4438548 3,49203142 132,3777111 3,70828267 3,6890941 0,245239211
+3,3789985 476591,7602 -0,064798981 -0,092113383 0 3,4437976 3,492850186 132,3866001 3,70915214 3,6889985 0,245201019
+3,3788269 476623,7604 -0,06483718 -0,092108928 0 3,4436641 3,493668951 132,395489 3,710021609 3,6888269 0,24516282
+3,3787885 476655,7606 -0,064951763 -0,092107654 0 3,4437401 3,494487719 132,4043779 3,710891081 3,6887885 0,245048237
+3,378674 476687,7608 -0,064627104 -0,092119761 0 3,4433012 3,495306489 132,4132669 3,711760555 3,688674 0,245372896
+3,3785784 476719,7609 -0,064818077 -0,092110842 0 3,4433966 3,496125256 132,4221558 3,712630025 3,6885784 0,245181923
+3,3784831 476751,7611 -0,064741693 -0,092117853 0 3,4432247 3,496944021 132,4310448 3,713499494 3,6884831 0,245258307
+3,378464 476783,7613 -0,06483718 -0,092114665 0 3,4433012 3,497762786 132,4399337 3,714368963 3,688464 0,24516282
+3,3783112 476815,7615 -0,064779885 -0,092108928 0 3,4430912 3,49858155 132,4488226 3,715238431 3,6883112 0,245220115
+3,3782921 476847,7616 -0,064703494 -0,092105746 0 3,4429955 3,499400317 132,4577116 3,716107902 3,6882921 0,245296506
+3,3781965 476879,7618 -0,064665303 -0,092109561 0 3,4428618 3,500219084 132,4666005 3,716977372 3,6881965 0,245334697
+3,3780246 476911,762 -0,064703494 -0,092113383 0 3,442728 3,501037849 132,4754894 3,717846841 3,6880246 0,245296506
+3,3778911 476943,7622 -0,064569816 -0,092108928 0 3,4424608 3,501856615 132,4843784 3,718716311 3,6878911 0,245430184
+3,3778911 476975,7624 -0,064512521 -0,092107654 0 3,4424036 3,50267538 132,4932673 3,71958578 3,6878911 0,245487479
+3,3778336 477007,7625 -0,06472259 -0,092113383 0 3,4425561 3,503494146 132,5021563 3,72045525 3,6878336 0,24527741
+3,3777382 477039,7627 -0,064531617 -0,092105746 0 3,4422698 3,504312911 132,5110452 3,721324718 3,6877382 0,245468383
+3,3777573 477071,7629 -0,064512521 -0,092108928 0 3,4422698 3,505131672 132,5199341 3,722194183 3,6877573 0,245487479
+3,3775473 477103,7631 -0,064417034 -0,092101924 0 3,4419644 3,505950434 132,5288231 3,723063648 3,6875473 0,245582966
+3,3773179 477135,7632 -0,064531617 -0,092114665 0 3,4418495 3,506769197 132,537712 3,723933114 3,6873179 0,245468383
+3,3773372 477167,7634 -0,064474329 -0,092113383 0 3,4418116 3,507587961 132,5466009 3,724802583 3,6873372 0,245525671
+3,3770888 477199,7636 -0,064397939 -0,092111476 0 3,4414868 3,508406727 132,5554899 3,725672052 3,6870888 0,245602061
+3,3772416 477231,7638 -0,064378843 -0,09210702 0 3,4416203 3,509225492 132,5643788 3,72654152 3,6872416 0,245621157
+3,3770697 477263,7639 -0,064359747 -0,092114665 0 3,4414294 3,510044255 132,5732678 3,727410988 3,6870697 0,245640253
+3,3768597 477295,7641 -0,064397939 -0,092110842 0 3,4412577 3,510863015 132,5821567 3,728280451 3,6868597 0,245602061
+3,3767068 477327,7643 -0,06443613 -0,092110842 0 3,441143 3,511681776 132,5910456 3,729149916 3,6867068 0,24556387
+3,3767068 477359,7645 -0,064340644 -0,092112117 0 3,4410474 3,512500538 132,5999346 3,730019381 3,6867068 0,245659356
+3,3766687 477391,7646 -0,064226061 -0,09210702 0 3,4408948 3,513319297 132,6088235 3,730888843 3,6866687 0,245773939
+3,3764586 477423,7648 -0,064340644 -0,092110209 0 3,4407992 3,514138054 132,6177125 3,731758303 3,6864586 0,245659356
+3,3762867 477455,765 -0,064245157 -0,092114665 0 3,440532 3,514956815 132,6266014 3,732627767 3,6862867 0,245754843
+3,3764014 477487,7652 -0,064206965 -0,092114031 0 3,4406085 3,515775579 132,6354903 3,733497235 3,6864014 0,245793035
+3,3762295 477519,7653 -0,06414967 -0,092104472 0 3,4403791 3,516594342 132,6443793 3,734366702 3,6862295 0,24585033
+3,376153 477551,7655 -0,064340644 -0,092114031 0 3,4404936 3,517413103 132,6532682 3,735236167 3,686153 0,245659356
+3,3760002 477583,7657 -0,064092383 -0,092115939 0 3,4400926 3,518231865 132,6621571 3,736105632 3,6860002 0,245907617
+3,3760767 477615,7659 -0,064035088 -0,092110209 0 3,4401119 3,519050627 132,6710461 3,736975097 3,6860767 0,245964912
+3,3758667 477647,7661 -0,06407328 -0,092109561 0 3,43994 3,519869384 132,679935 3,737844558 3,6858667 0,24592672
+3,3758092 477679,7662 -0,063977793 -0,092105106 0 3,4397869 3,520688145 132,688824 3,738714022 3,6858092 0,246022207
+3,3755991 477711,7664 -0,064092383 -0,092115939 0 3,4396915 3,521506905 132,6977129 3,739583486 3,6855991 0,245907617
+3,3756182 477743,7666 -0,06407328 -0,09210702 0 3,4396915 3,522325664 132,7066018 3,740452948 3,6856182 0,24592672
+3,3754656 477775,7668 -0,064092383 -0,092107654 0 3,439558 3,523144425 132,7154908 3,741322413 3,6854656 0,245907617
+3,3754272 477807,7669 -0,063920505 -0,092107654 0 3,4393477 3,523963187 132,7243797 3,742191878 3,6854272 0,246079495
+3,3753891 477839,7671 -0,063805923 -0,092115298 0 3,4391949 3,52478195 132,7332686 3,743061345 3,6853891 0,246194077
+3,3753319 477871,7673 -0,063825019 -0,092106387 0 3,439157 3,525600714 132,7421576 3,743930813 3,6853319 0,246174981
+3,37516 477903,7675 -0,063825019 -0,092107654 0 3,4389851 3,526419478 132,7510465 3,74480028 3,68516 0,246174981
+3,3750262 477935,7676 -0,064015992 -0,092113383 0 3,4390423 3,527238242 132,7599355 3,745669748 3,6850262 0,245984008
+3,3748734 477967,7678 -0,063920505 -0,092111476 0 3,4387939 3,528057007 132,7688244 3,746539216 3,6848734 0,246079495
+3,3748543 477999,768 -0,063710436 -0,092106387 0 3,4385648 3,528875774 132,7777133 3,747408687 3,6848543 0,246289564
+3,374778 478031,7682 -0,063653141 -0,092115298 0 3,4384313 3,52969454 132,7866023 3,748278157 3,684778 0,246346859
+3,3745489 478063,7683 -0,063538559 -0,092107654 0 3,4380875 3,530513305 132,7954912 3,749147626 3,6845489 0,246461441
+3,3747015 478095,7685 -0,063710436 -0,092110842 0 3,438412 3,53133207 132,8043801 3,750017094 3,6847015 0,246289564
+3,3744724 478127,7687 -0,063634045 -0,092114031 0 3,4381065 3,532150835 132,8132691 3,750886563 3,6844724 0,246365955
+3,3742623 478159,7689 -0,063634045 -0,092108302 0 3,4378965 3,5329696 132,822158 3,751756032 3,6842623 0,246365955
+3,3741479 478191,769 -0,063729532 -0,092113383 0 3,4378774 3,533788365 132,831047 3,7526255 3,6841479 0,246270468
+3,3741479 478223,7692 -0,063557655 -0,092109561 0 3,4377055 3,534607129 132,8399359 3,753494968 3,6841479 0,246442345
+3,3741286 478255,7694 -0,063557655 -0,092112117 0 3,4376862 3,535425892 132,8488248 3,754364435 3,6841286 0,246442345
+3,3739567 478287,7696 -0,063519463 -0,092116579 0 3,4374762 3,536244657 132,8577138 3,755233903 3,6839567 0,246480537
+3,3738995 478319,7698 -0,063366681 -0,092108928 0 3,4372661 3,537063421 132,8666027 3,75610337 3,6838995 0,246633319
+3,3738232 478351,7699 -0,063519463 -0,09210702 0 3,4373426 3,537882185 132,8754916 3,756972838 3,6838232 0,246480537
+3,373594 478383,7701 -0,063481264 -0,092112117 0 3,4370754 3,538700952 132,8843806 3,75784231 3,683594 0,246518736
+3,3737276 478415,7703 -0,06332849 -0,092110842 0 3,4370561 3,53951972 132,8932695 3,758711781 3,6837276 0,24667151
+3,3736131 478447,7705 -0,063481264 -0,092112757 0 3,4370944 3,540338486 132,9021585 3,759581251 3,6836131 0,246518736
+3,3735557 478479,7706 -0,063443072 -0,092108928 0 3,4369988 3,541157252 132,9110474 3,760450721 3,6835557 0,246556928
+3,3734794 478511,7708 -0,063194804 -0,092109561 0 3,4366741 3,541976018 132,9199363 3,761320191 3,6834794 0,246805196
+3,3731928 478543,771 -0,063118413 -0,092114665 0 3,4363112 3,542794782 132,9288253 3,762189658 3,6831928 0,246881587
+3,3733265 478575,7712 -0,063022926 -0,092110842 0 3,4363494 3,543613545 132,9377142 3,763059125 3,6833265 0,246977074
+3,3730974 478607,7713 -0,063156612 -0,09210702 0 3,436254 3,544432307 132,9466031 3,763928591 3,6830974 0,246843388
+3,3730593 478639,7715 -0,063042022 -0,092105106 0 3,4361012 3,54525107 132,9554921 3,764798057 3,6830593 0,246957978
+3,3729255 478671,7717 -0,063080221 -0,092112757 0 3,4360058 3,546069833 132,964381 3,765667524 3,6829255 0,246919779
+3,3727727 478703,7719 -0,062984735 -0,092113383 0 3,4357574 3,546888598 132,97327 3,766536992 3,6827727 0,247015265
+3,3728108 478735,772 -0,062984735 -0,092109561 0 3,4357955 3,547707361 132,9821589 3,767406459 3,6828108 0,247015265
+3,3725626 478767,7722 -0,063042022 -0,092112757 0 3,4356046 3,548526127 132,9910478 3,768275928 3,6825626 0,246957978
+3,3725436 478799,7724 -0,062965639 -0,092111476 0 3,4355092 3,549344894 132,9999368 3,769145399 3,6825436 0,247034361
+3,3722954 478831,7726 -0,062965639 -0,092109561 0 3,435261 3,55016366 133,0088257 3,770014869 3,6822954 0,247034361
+3,3723335 478863,7727 -0,06292744 -0,092106387 0 3,435261 3,550982425 133,0177147 3,770884338 3,6823335 0,24707256
+3,3721426 478895,7729 -0,06292744 -0,092108928 0 3,43507 3,551801191 133,0266036 3,771753807 3,6821426 0,24707256
+3,3721807 478927,7731 -0,062755562 -0,092112117 0 3,4349363 3,552619955 133,0354925 3,772623276 3,6821807 0,247244438
+3,3720851 478959,7733 -0,062736467 -0,092108302 0 3,4348216 3,553438721 133,0443815 3,773492745 3,6820851 0,247263533
+3,3719516 478991,7735 -0,062564589 -0,092110209 0 3,4345162 3,554257487 133,0532704 3,774362215 3,6819516 0,247435411
+3,371856 479023,7736 -0,062793761 -0,092109561 0 3,4346497 3,555076249 133,0621593 3,775231681 3,681856 0,247206239
+3,3716459 479055,7738 -0,062793761 -0,09210702 0 3,4344397 3,555895009 133,0710483 3,776101144 3,6816459 0,247206239
+3,3717031 479087,774 -0,062469102 -0,092108302 0 3,4341722 3,556713771 133,0799372 3,77697061 3,6817031 0,247530898
+3,371474 479119,7742 -0,062602788 -0,092109561 0 3,4340768 3,557532533 133,0888262 3,777840075 3,681474 0,247397212
+3,3712258 479151,7743 -0,062469102 -0,092109561 0 3,4336948 3,558351294 133,0977151 3,77870954 3,6812258 0,247530898
+3,3713977 479183,7745 -0,062564589 -0,092107654 0 3,4339623 3,559170056 133,106604 3,779579005 3,6813977 0,247435411
+3,3713977 479215,7747 -0,06233542 -0,09210702 0 3,4337332 3,559988815 133,115493 3,780448467 3,6813977 0,24766458
+3,3711877 479247,7749 -0,062316325 -0,092105746 0 3,4335041 3,560807575 133,1243819 3,781317931 3,6811877 0,247683675
+3,3709967 479279,775 -0,062507302 -0,092114665 0 3,4335041 3,561626336 133,1332708 3,782187395 3,6809967 0,247492698
+3,3711877 479311,7752 -0,062259033 -0,092112117 0 3,4334466 3,562445101 133,1421598 3,783056864 3,6811877 0,247740967
+3,370882 479343,7754 -0,062297229 -0,092108302 0 3,4331794 3,563263865 133,1510487 3,783926331 3,680882 0,247702771
+3,3707483 479375,7756 -0,062297229 -0,092105106 0 3,4330456 3,564082627 133,1599377 3,784795797 3,6807483 0,247702771
+3,3708248 479407,7757 -0,062392715 -0,092111476 0 3,4332175 3,56490139 133,1688266 3,785665263 3,6808248 0,247607285
+3,3705573 479439,7759 -0,062220838 -0,092114031 0 3,4327781 3,565720154 133,1777155 3,786534731 3,6805573 0,247779162
+3,3704619 479471,7761 -0,062297229 -0,092106387 0 3,4327593 3,566538919 133,1866045 3,7874042 3,6804619 0,247702771
+3,3705001 479503,7763 -0,061991669 -0,092108928 0 3,4324918 3,567357681 133,1954934 3,788273665 3,6805001 0,248008331
+3,3701944 479535,7764 -0,062029865 -0,092107654 0 3,4322243 3,568176445 133,2043823 3,789143133 3,6801944 0,247970135
+3,3703473 479567,7766 -0,062125351 -0,092115298 0 3,4324727 3,568995207 133,2132713 3,790012599 3,6803473 0,247874649
+3,37008 479599,7768 -0,061934378 -0,092115939 0 3,4320145 3,569813968 133,2221602 3,790882064 3,68008 0,248065622
+3,3701754 479631,777 -0,06206806 -0,092110209 0 3,4322433 3,570632733 133,2310492 3,791751531 3,6801754 0,24793194
+3,3700035 479663,7772 -0,061857987 -0,092113383 0 3,4318614 3,571451496 133,2399381 3,792620998 3,6800035 0,248142013
+3,3697934 479695,7773 -0,061991669 -0,092109561 0 3,4317851 3,57227026 133,248827 3,793490466 3,6797934 0,248008331
+3,3696215 479727,7775 -0,0617816 -0,092110842 0 3,4314032 3,573089026 133,257716 3,794359936 3,6796215 0,2482184
+3,3696406 479759,7777 -0,061705209 -0,092113383 0 3,4313457 3,57390779 133,2666049 3,795229404 3,6796406 0,248294791
+3,369698 479791,7779 -0,061667014 -0,092110209 0 3,431365 3,574726553 133,2754938 3,79609887 3,679698 0,248332986
+3,3694687 479823,778 -0,061667014 -0,092111476 0 3,4311357 3,575545318 133,2843828 3,796968339 3,6794687 0,248332986
+3,3693352 479855,7782 -0,061667014 -0,092108928 0 3,4310021 3,576364079 133,2932717 3,797837804 3,6793352 0,248332986
+3,369297 479887,7784 -0,061437845 -0,092104472 0 3,4307349 3,577182842 133,3021607 3,79870727 3,679297 0,248562155
+3,3691061 479919,7786 -0,06149514 -0,092113383 0 3,4306011 3,578001603 133,3110496 3,799576734 3,6791061 0,24850486
+3,3691442 479951,7787 -0,061437845 -0,092112757 0 3,430582 3,578820365 133,3199385 3,8004462 3,6791442 0,248562155
+3,3689342 479983,7789 -0,061380554 -0,092112757 0 3,4303148 3,579639125 133,3288275 3,801315663 3,6789342 0,248619446
+3,3688958 480015,7791 -0,061399654 -0,092110209 0 3,4302955 3,580457884 133,3377164 3,802185126 3,6788958 0,248600346
+3,3689723 480047,7793 -0,061208677 -0,092116579 0 3,430181 3,581276645 133,3466054 3,80305459 3,6789723 0,248791323
+3,3687241 480079,7794 -0,061189581 -0,092108928 0 3,4299138 3,582095408 133,3554943 3,803924056 3,6787241 0,248810419
+3,3686666 480111,7796 -0,061132289 -0,092109561 0 3,4297988 3,582914171 133,3643832 3,804793523 3,6786666 0,248867711
+3,3684947 480143,7798 -0,061361458 -0,092114031 0 3,4298563 3,583732934 133,3732722 3,80566299 3,6784947 0,248638542
+3,3684757 480175,78 -0,061189581 -0,092113383 0 3,4296653 3,584551697 133,3821611 3,806532457 3,6784757 0,248810419
+3,3684947 480207,7801 -0,061132289 -0,092115298 0 3,4296269 3,58537046 133,39105 3,807401923 3,6784947 0,248867711
+3,3682084 480239,7803 -0,060998607 -0,09210702 0 3,4292071 3,586189223 133,399939 3,80827139 3,6782084 0,249001393
+3,3681509 480271,7805 -0,061017703 -0,09210702 0 3,4291687 3,587007985 133,4088279 3,809140855 3,6781509 0,248982297
+3,3682656 480303,7807 -0,060884025 -0,092110209 0 3,4291496 3,587826749 133,4177169 3,810010323 3,6782656 0,249115975
+3,3679409 480335,7809 -0,060941316 -0,092112117 0 3,4288821 3,588645512 133,4266058 3,81087979 3,6779409 0,249058684
+3,3679409 480367,781 -0,060769439 -0,092115298 0 3,4287105 3,589464275 133,4354947 3,811749255 3,6779409 0,249230561
+3,3678455 480399,7812 -0,060864925 -0,092099376 0 3,4287105 3,590283038 133,4443837 3,812618723 3,6778455 0,249135075
+3,3677118 480431,7814 -0,060712148 -0,092112117 0 3,4284239 3,5911018 133,4532726 3,813488188 3,6777118 0,249287852
+3,3676164 480463,7816 -0,060654856 -0,092110209 0 3,4282713 3,59192056 133,4621615 3,814357651 3,6776164 0,249345144
+3,3675017 480495,7817 -0,06054027 -0,092111476 0 3,4280419 3,59273932 133,4710505 3,815227115 3,6775017 0,24945973
+3,3672345 480527,7819 -0,060769439 -0,092115939 0 3,4280038 3,59355808 133,4799394 3,816096578 3,6772345 0,249230561
+3,3672917 480559,7821 -0,060482979 -0,092103831 0 3,4277747 3,594376844 133,4888284 3,816966045 3,6772917 0,249517021
+3,3670816 480591,7823 -0,060406588 -0,092105106 0 3,4274883 3,595195609 133,4977173 3,817835514 3,6770816 0,249593412
+3,3671198 480623,7824 -0,060292006 -0,092118487 0 3,4274118 3,596014373 133,5066062 3,818704982 3,6771198 0,249707994
+3,3669288 480655,7826 -0,060521174 -0,092110842 0 3,4274499 3,596833138 133,5154952 3,819574451 3,6769288 0,249478826
+3,3668141 480687,7828 -0,060292006 -0,092115298 0 3,4271061 3,597651901 133,5243841 3,820443918 3,6768141 0,249707994
+3,3670242 480719,783 -0,060177419 -0,092110842 0 3,4272015 3,598470663 133,533273 3,821313383 3,6770242 0,249822581
+3,3667378 480751,7831 -0,06025381 -0,092111476 0 3,4269917 3,599289425 133,542162 3,822182849 3,6767378 0,24974619
+3,3667378 480783,7833 -0,060215615 -0,092107654 0 3,4269536 3,600108188 133,5510509 3,823052315 3,6767378 0,249784385
+3,366585 480815,7835 -0,060101032 -0,092107654 0 3,426686 3,600926953 133,5599399 3,823921784 3,676585 0,249898968
+3,3664322 480847,7837 -0,060024641 -0,092113383 0 3,4264569 3,601745718 133,5688288 3,824791253 3,6764322 0,249975359
+3,366394 480879,7838 -0,059948254 -0,09210702 0 3,4263422 3,602564483 133,5777177 3,825660721 3,676394 0,250051746
+3,3663368 480911,784 -0,059929155 -0,092110842 0 3,426266 3,603383245 133,5866067 3,826530187 3,6763368 0,250070845
+3,366184 480943,7842 -0,059890959 -0,092105746 0 3,426075 3,604202008 133,5954956 3,827399653 3,676184 0,250109041
+3,3662031 480975,7844 -0,059719086 -0,092113383 0 3,4259222 3,605020768 133,6043845 3,828269117 3,6762031 0,250280914
+3,3659167 481007,7845 -0,059757281 -0,092107654 0 3,425674 3,605839529 133,6132735 3,829138581 3,6759167 0,250242719
+3,3659549 481039,7847 -0,059642695 -0,092112117 0 3,4255977 3,60665829 133,6221624 3,830008046 3,6759549 0,250357305
+3,365783 481071,7849 -0,059528112 -0,092110209 0 3,4253111 3,607477052 133,6310514 3,830877511 3,675783 0,250471888
+3,3657064 481103,7851 -0,059413526 -0,092107654 0 3,4251199 3,608295813 133,6399403 3,831746976 3,6757064 0,250586474
+3,365592 481135,7853 -0,059470817 -0,092110842 0 3,4250629 3,609114575 133,6488292 3,832616441 3,675592 0,250529183
+3,3654201 481167,7854 -0,05939443 -0,092116579 0 3,4248145 3,609933337 133,6577182 3,833485907 3,6754201 0,25060557
+3,3653629 481199,7856 -0,059165262 -0,092109561 0 3,4245281 3,610752099 133,6666071 3,834355372 3,6753629 0,250834738
+3,3653054 481231,7858 -0,059127066 -0,092110842 0 3,4244325 3,611570862 133,6754961 3,835224839 3,6753054 0,250872934
+3,3652673 481263,786 -0,059069775 -0,092112117 0 3,4243371 3,612389622 133,684385 3,836094303 3,6752673 0,250930225
+3,3650572 481295,7861 -0,05903158 -0,092105746 0 3,4240887 3,613208381 133,6932739 3,836963765 3,6750572 0,25096842
+3,3651719 481327,7863 -0,058878802 -0,092111476 0 3,4240508 3,614027141 133,7021629 3,837833228 3,6751719 0,251121198
+3,3649616 481359,7865 -0,058821511 -0,092108302 0 3,4237831 3,614845902 133,7110518 3,838702692 3,6749616 0,251178489
+3,3651145 481391,7867 -0,058897898 -0,092106387 0 3,4240124 3,615664663 133,7199407 3,839572157 3,6751145 0,251102102
+3,3646753 481423,7868 -0,058878802 -0,092108302 0 3,4235542 3,616483424 133,7288297 3,840441622 3,6746753 0,251121198
+3,3647134 481455,787 -0,058687828 -0,092117213 0 3,4234014 3,617302185 133,7377186 3,841311086 3,6747134 0,251312172
+3,3646753 481487,7872 -0,058496855 -0,092104472 0 3,4231722 3,618120947 133,7466076 3,842180551 3,6746753 0,251503145
+3,3645797 481519,7874 -0,058649633 -0,092107654 0 3,4232292 3,618939709 133,7554965 3,843050017 3,6745797 0,251350367
+3,3644271 481551,7875 -0,058420464 -0,092108302 0 3,4228475 3,619758469 133,7643854 3,84391948 3,6744271 0,251579536
+3,3641977 481583,7877 -0,058382269 -0,092105746 0 3,42258 3,620577226 133,7732744 3,844788941 3,6741977 0,251617731
+3,3642361 481615,7879 -0,058477756 -0,092105106 0 3,4227138 3,621395985 133,7821633 3,845658403 3,6742361 0,251522244
+3,3641214 481647,7881 -0,058114909 -0,092107654 0 3,4222364 3,622214742 133,7910522 3,846527863 3,6741214 0,251885091
+3,3640833 481679,7882 -0,058057614 -0,092114031 0 3,4221408 3,623033501 133,7999412 3,847397326 3,6740833 0,251942386
+3,3639495 481711,7884 -0,057847545 -0,092115298 0 3,421797 3,623852263 133,8088301 3,848266791 3,6739495 0,252152455
+3,3639686 481743,7886 -0,057809349 -0,092112117 0 3,421778 3,624671024 133,8177191 3,849136256 3,6739686 0,252190651
+3,3637013 481775,7888 -0,05786664 -0,092106387 0 3,4215679 3,625489784 133,826608 3,850005719 3,6737013 0,25213336
+3,3636248 481807,789 -0,057637472 -0,092107654 0 3,4212623 3,626308545 133,8354969 3,850875183 3,6736248 0,252362528
+3,3635676 481839,7891 -0,057541985 -0,092114665 0 3,4211097 3,627127306 133,8443859 3,851744648 3,6735676 0,252458015
+3,3634529 481871,7893 -0,057561085 -0,092110842 0 3,4210141 3,627946068 133,8532748 3,852614113 3,6734529 0,252438915
+3,3632619 481903,7895 -0,057561085 -0,092111476 0 3,4208231 3,628764829 133,8621637 3,853483577 3,6732619 0,252438915
+3,3633575 481935,7897 -0,057522889 -0,092108302 0 3,4208803 3,629583588 133,8710527 3,85435304 3,6733575 0,252477111
+3,3632238 481967,7898 -0,057274625 -0,092105746 0 3,4204984 3,630402347 133,8799416 3,855222502 3,6732238 0,252725375
+3,3632238 481999,79 -0,057064552 -0,092113383 0 3,4202883 3,631221106 133,8888306 3,856091965 3,6732238 0,252935448
+3,3630137 482031,7902 -0,057007261 -0,092112757 0 3,4200211 3,632039866 133,8977195 3,856961429 3,6730137 0,252992739
+3,3627846 482063,7904 -0,056854483 -0,092105106 0 3,4196391 3,632858627 133,9066084 3,857830893 3,6727846 0,253145517
+3,3628228 482095,7905 -0,056816287 -0,092110842 0 3,4196391 3,633677387 133,9154974 3,858700356 3,6728228 0,253183713
+3,3625937 482127,7907 -0,056720801 -0,092108302 0 3,4193144 3,634496146 133,9243863 3,859569818 3,6725937 0,253279199
+3,3626509 482159,7909 -0,05635795 -0,092108302 0 3,4190087 3,635314907 133,9332752 3,860439283 3,6726509 0,25364205
+3,362479 482191,7911 -0,056434341 -0,092104472 0 3,4189134 3,636133668 133,9421642 3,861308747 3,672479 0,253565659
+3,3624218 482223,7912 -0,056453437 -0,092108928 0 3,4188752 3,63695243 133,9510531 3,862178213 3,6724218 0,253546563
+3,3623645 482255,7914 -0,056128781 -0,092110842 0 3,4184933 3,637771192 133,9599421 3,863047679 3,6723645 0,253871219
+3,3623071 482287,7916 -0,056147881 -0,092114665 0 3,4184549 3,638589954 133,968831 3,863917144 3,6723071 0,253852119
+3,3622499 482319,7918 -0,05607149 -0,092110842 0 3,4183214 3,639408718 133,9777199 3,864786612 3,6722499 0,25392851
+3,3621733 482351,7919 -0,055842321 -0,092108302 0 3,4180157 3,640227481 133,9866089 3,865656078 3,6721733 0,254157679
+3,3618488 482383,7921 -0,055765934 -0,092108302 0 3,4176147 3,641046244 133,9954978 3,866525544 3,6718488 0,254234066
+3,3618488 482415,7923 -0,055746835 -0,092108302 0 3,4175956 3,641865006 134,0043868 3,867395011 3,6718488 0,254253165
+3,3618298 482447,7925 -0,055517666 -0,09210702 0 3,4173474 3,642683768 134,0132757 3,868264476 3,6718298 0,254482334
+3,3616388 482479,7927 -0,055250306 -0,092107654 0 3,4168892 3,643502528 134,0221646 3,86913394 3,6716388 0,254749694
+3,3616579 482511,7928 -0,055250306 -0,092104472 0 3,4169083 3,644321287 134,0310536 3,870003402 3,6716579 0,254749694
+3,3616197 482543,793 -0,054963842 -0,092103198 0 3,4165835 3,645140047 134,0399425 3,870872865 3,6716197 0,255036158
+3,361486 482575,7932 -0,055097524 -0,092110209 0 3,4165835 3,645958807 134,0488314 3,871742329 3,671486 0,254902476
+3,3614094 482607,7934 -0,05484926 -0,092108928 0 3,4162586 3,646777567 134,0577204 3,872611792 3,6714094 0,25515074
+3,3611422 482639,7935 -0,05463919 -0,092108302 0 3,4157813 3,647596328 134,0666093 3,873481256 3,6711422 0,25536081
+3,3613522 482671,7937 -0,054658286 -0,092113383 0 3,4160104 3,648415088 134,0754983 3,874350719 3,6713522 0,255341714
+3,3610659 482703,7939 -0,054410022 -0,092116579 0 3,4154758 3,64923385 134,0843872 3,875220185 3,6710659 0,255589978
+3,361104 482735,7941 -0,054314535 -0,092114031 0 3,4154186 3,650052613 134,0932761 3,876089652 3,671104 0,255685465
+3,3609321 482767,7942 -0,054085366 -0,092112117 0 3,4150174 3,650871376 134,1021651 3,876959119 3,6709321 0,255914634
+3,3607602 482799,7944 -0,05398988 -0,092107654 0 3,4147501 3,65169014 134,111054 3,877828586 3,6707602 0,25601012
+3,3606455 482831,7946 -0,054008976 -0,092105746 0 3,4146545 3,652508901 134,1199429 3,878698051 3,6706455 0,255991024
+3,3605502 482863,7948 -0,053588834 -0,092115298 0 3,414139 3,653327661 134,1288319 3,879567514 3,6705502 0,256411166
+3,3605502 482895,7949 -0,053436056 -0,092107654 0 3,4139862 3,654146421 134,1377208 3,880436978 3,6705502 0,256563944
+3,3606839 482927,7951 -0,053378765 -0,092107654 0 3,4140627 3,654965182 134,1466098 3,881306441 3,6706839 0,256621235
+3,3603973 482959,7953 -0,052996818 -0,092111476 0 3,4133942 3,655783944 134,1554987 3,882175907 3,6703973 0,257003182
+3,3602064 482991,7955 -0,052977718 -0,092109561 0 3,4131842 3,656602704 134,1643876 3,88304537 3,6702064 0,257022282
+3,3601108 483023,7956 -0,052710354 -0,092112117 0 3,4128211 3,657421463 134,1732766 3,883914834 3,6701108 0,257289646
+3,3599582 483055,7958 -0,052481189 -0,092112757 0 3,4124393 3,658240224 134,1821655 3,884784297 3,6699582 0,257518811
+3,3599963 483087,796 -0,052347507 -0,092106387 0 3,4123437 3,659058986 134,1910544 3,885653763 3,6699963 0,257652493
+3,3601108 483119,7962 -0,052156534 -0,092108302 0 3,4122672 3,659877749 134,1999434 3,886523229 3,6701108 0,257843466
+3,3598244 483151,7964 -0,052061047 -0,092112757 0 3,4118855 3,66069651 134,2088323 3,887392694 3,6698244 0,257938953
+3,3597481 483183,7965 -0,051736392 -0,092114031 0 3,4114845 3,66151527 134,2177213 3,888262157 3,6697481 0,258263608
+3,3598435 483215,7967 -0,051736392 -0,092103831 0 3,4115798 3,662334031 134,2266102 3,889131622 3,6698435 0,258263608
+3,3596525 483247,7969 -0,051335346 -0,092112117 0 3,4109879 3,66315279 134,2354991 3,890001084 3,6696525 0,258664654
+3,3594615 483279,7971 -0,051125277 -0,092110842 0 3,4105868 3,663971548 134,2443881 3,890870546 3,6694615 0,258874723
+3,3592896 483311,7972 -0,050877009 -0,092110209 0 3,4101667 3,664790307 134,253277 3,891740008 3,6692896 0,259122991
+3,3593278 483343,7974 -0,050533257 -0,092110209 0 3,4098611 3,665609068 134,2621659 3,892609472 3,6693278 0,259466743
+3,3593469 483375,7976 -0,050437771 -0,092102565 0 3,4097846 3,66642783 134,2710549 3,893478938 3,6693469 0,259562229
+3,3590987 483407,7978 -0,050246798 -0,092106387 0 3,4093454 3,667246592 134,2799438 3,894348404 3,6690987 0,259753202
+3,3588886 483439,7979 -0,050055824 -0,092109561 0 3,4089444 3,668065352 134,2888328 3,895217867 3,6688886 0,259944176
+3,3589268 483471,7981 -0,049845751 -0,092110209 0 3,4087725 3,668884113 134,2977217 3,896087332 3,6689268 0,260154249
+3,3588505 483503,7983 -0,0495211 -0,092110209 0 3,4083717 3,669702873 134,3066106 3,896956795 3,6688505 0,2604789
+3,358793 483535,7985 -0,049291931 -0,092109561 0 3,4080849 3,670521632 134,3154996 3,897826257 3,668793 0,260708069
+3,3587167 483567,7986 -0,049024567 -0,092105106 0 3,4077413 3,671340389 134,3243885 3,898695718 3,6687167 0,260975433
+3,3585258 483599,7988 -0,048699912 -0,092115298 0 3,4072256 3,672159149 134,3332774 3,899565181 3,6685258 0,261300088
+3,3584876 483631,799 -0,048432548 -0,092107654 0 3,4069202 3,672977908 134,3421664 3,900434643 3,6684876 0,261567452
+3,3583348 483663,7992 -0,048375256 -0,092115298 0 3,4067101 3,673796668 134,3510553 3,901304106 3,6683348 0,261624744
+3,3581629 483695,7993 -0,048050601 -0,092111476 0 3,4062135 3,674615428 134,3599443 3,90217357 3,6681629 0,261949399
+3,3583157 483727,7995 -0,047611363 -0,092111476 0 3,4059272 3,675434186 134,3688332 3,903043031 3,6683157 0,262388637
+3,3580675 483759,7997 -0,047496777 -0,092112117 0 3,4055643 3,676252945 134,3777221 3,903912494 3,6680675 0,262503223
+3,3580482 483791,7999 -0,047191221 -0,092107654 0 3,4052393 3,677071705 134,3866111 3,904781956 3,6680482 0,262808779
+3,3578 483823,8001 -0,047000248 -0,092115939 0 3,4048002 3,677890466 134,3955 3,905651422 3,6678 0,262999752
+3,3577619 483855,8002 -0,046446424 -0,092110209 0 3,4042082 3,678709229 134,404389 3,906520888 3,6677619 0,263553576
+3,357609 483887,8004 -0,04617906 -0,092114031 0 3,4037881 3,679527994 134,4132779 3,907390356 3,667609 0,26382094
+3,3576281 483919,8006 -0,046064477 -0,092106387 0 3,4036925 3,680346758 134,4221668 3,908259824 3,6676281 0,263935523
+3,3575709 483951,8008 -0,045529753 -0,092108928 0 3,4031007 3,681165523 134,4310558 3,909129293 3,6675709 0,264470247
+3,3573799 483983,8009 -0,045224193 -0,092115298 0 3,4026041 3,681984288 134,4399447 3,909998762 3,6673799 0,264775807
+3,3573034 484015,8011 -0,044975929 -0,092108302 0 3,4022794 3,682803053 134,4488336 3,91086823 3,6673034 0,265024071
+3,3571889 484047,8013 -0,044536687 -0,092117853 0 3,4017255 3,683621815 134,4577226 3,911737696 3,6671889 0,265463313
+3,3571317 484079,8015 -0,044307519 -0,092112757 0 3,4014392 3,684440576 134,4666115 3,91260716 3,6671317 0,265692481
+3,3570361 484111,8016 -0,043982867 -0,092109561 0 3,4010191 3,685259339 134,4755005 3,913476627 3,6670361 0,266017133
+3,3568642 484143,8018 -0,043543626 -0,092113383 0 3,4004078 3,686078097 134,4843894 3,914346088 3,6668642 0,266456374
+3,3567879 484175,802 -0,043314457 -0,092108928 0 3,4001024 3,686896858 134,4932783 3,915215552 3,6667879 0,266685543
+3,3565586 484207,8022 -0,042970706 -0,092110209 0 3,3995292 3,687715621 134,5021673 3,91608502 3,6665586 0,267029294
+3,356616 484239,8023 -0,042474173 -0,092114031 0 3,3990903 3,688534389 134,5110562 3,916954491 3,666616 0,267525827
+3,3566351 484271,8025 -0,042092226 -0,092110842 0 3,3987274 3,689353156 134,5199451 3,917823962 3,6666351 0,267907774
+3,3564441 484303,8027 -0,041767571 -0,092114031 0 3,3982117 3,690171922 134,5288341 3,918693432 3,6664441 0,268232429
+3,3562722 484335,8029 -0,041328333 -0,092114031 0 3,3976007 3,690990686 134,537723 3,919562899 3,6662722 0,268671667
+3,3562531 484367,803 -0,040774509 -0,092119761 0 3,3970277 3,691809452 134,546612 3,920432369 3,6662531 0,269225491
+3,3561959 484399,8032 -0,040430758 -0,09210702 0 3,3966267 3,692628218 134,5555009 3,921301839 3,6661959 0,269569242
+3,3561003 484431,8034 -0,040010616 -0,092112757 0 3,396111 3,693446984 134,5643898 3,922171309 3,6661003 0,269989384
+3,3559284 484463,8036 -0,039724156 -0,092116579 0 3,3956525 3,69426575 134,5732788 3,923040778 3,6659284 0,270275844
+3,3558712 484495,8038 -0,039113041 -0,092106387 0 3,3949842 3,695084517 134,5821677 3,923910249 3,6658712 0,270886959
+3,3556993 484527,8039 -0,038711995 -0,092115298 0 3,3944113 3,695903282 134,5910566 3,924779718 3,6656993 0,271288005
+3,3558331 484559,8041 -0,038368244 -0,092104472 0 3,3942013 3,696722047 134,5999456 3,925649187 3,6658331 0,271631756
+3,3555274 484591,8043 -0,037909906 -0,092114665 0 3,3934374 3,697540813 134,6088345 3,926518656 3,6655274 0,272090094
+3,3551836 484623,8045 -0,037585251 -0,092112117 0 3,3927689 3,69835958 134,6177235 3,927388128 3,6651836 0,272414749
+3,3553174 484655,8046 -0,037126917 -0,092107654 0 3,3924444 3,699178346 134,6266124 3,928257598 3,6653174 0,272873083
+3,3551836 484687,8048 -0,036553994 -0,092110842 0 3,3917377 3,699997112 134,6355013 3,929127067 3,6651836 0,273446006
+3,3548779 484719,805 -0,036133852 -0,092109561 0 3,3910117 3,700815874 134,6443903 3,929996533 3,6648779 0,273866148
+3,3549545 484751,8052 -0,035465445 -0,092110842 0 3,39042 3,701634637 134,6532792 3,930865999 3,6649545 0,274534555
+3,3549354 484783,8053 -0,035369959 -0,092115298 0 3,3903053 3,702453401 134,6621681 3,931735467 3,6649354 0,274630041
+3,3546679 484815,8055 -0,034682453 -0,092112757 0 3,3893504 3,70327217 134,6710571 3,932604939 3,6646679 0,275317547
+3,3546679 484847,8057 -0,034395993 -0,09211912 0 3,3890638 3,704090939 134,679946 3,933474412 3,6646679 0,275604007
+3,3544769 484879,8059 -0,033803977 -0,092108302 0 3,3882809 3,704909704 134,688835 3,934343881 3,6644769 0,276196023
+3,3544388 484911,806 -0,033307444 -0,092112757 0 3,3877463 3,705728472 134,6977239 3,935213353 3,6644388 0,276692556
+3,3542669 484943,8062 -0,032868207 -0,092108928 0 3,387135 3,706547239 134,7066128 3,936082824 3,6642669 0,277131793
+3,3542669 484975,8064 -0,032104313 -0,092115298 0 3,3863711 3,707366003 134,7155018 3,936952292 3,6642669 0,277895687
+3,3541524 485007,8066 -0,031798754 -0,092106387 0 3,3859513 3,708184767 134,7243907 3,937821759 3,6641524 0,278201246
+3,3539422 485039,8067 -0,031340417 -0,092111476 0 3,3852825 3,709003531 134,7332797 3,938691227 3,6639422 0,278659583
+3,3538659 485071,8069 -0,030786594 -0,092113383 0 3,3846524 3,709822297 134,7421686 3,939560697 3,6638659 0,279213406
+3,3536749 485103,8071 -0,030328257 -0,092111476 0 3,3840032 3,710641064 134,7510575 3,940430168 3,6636749 0,279671743
+3,3535411 485135,8073 -0,029545266 -0,092108928 0 3,3830864 3,711459832 134,7599465 3,94129964 3,6635411 0,280454734
+3,3535795 485167,8075 -0,029163318 -0,092108928 0 3,3827429 3,712278601 134,7688354 3,942169113 3,6635795 0,280836682
+3,3533502 485199,8076 -0,028533107 -0,092110209 0 3,3818834 3,713097369 134,7777243 3,943038584 3,6633502 0,281466893
+3,3532929 485231,8078 -0,028093867 -0,092114665 0 3,3813868 3,713916137 134,7866133 3,943908057 3,6632929 0,281906133
+3,3532166 485263,808 -0,027406363 -0,092106387 0 3,3806231 3,714734907 134,7955022 3,944777531 3,6632166 0,282593637
+3,353312 485295,8082 -0,026852539 -0,092104472 0 3,3801646 3,715553677 134,8043912 3,945647004 3,663312 0,283147461
+3,3530447 485327,8083 -0,026356008 -0,092112757 0 3,3794007 3,716372445 134,8132801 3,946516476 3,6630447 0,283643992
+3,3528154 485359,8085 -0,025668502 -0,092115298 0 3,3784838 3,717191211 134,822169 3,947385946 3,6628154 0,284331498
+3,3527391 485391,8087 -0,025038291 -0,092108928 0 3,3777773 3,718009979 134,831058 3,948255418 3,6627391 0,284961709
+3,3526244 485423,8089 -0,024427176 -0,092112117 0 3,3770516 3,718828747 134,8399469 3,94912489 3,6626244 0,285572824
+3,352529 485455,809 -0,023911547 -0,092109561 0 3,3764405 3,719647516 134,8488358 3,949994362 3,662529 0,286088453
+3,3525863 485487,8092 -0,023395918 -0,092107654 0 3,3759823 3,720466284 134,8577248 3,950863835 3,6625863 0,286604082
+3,3521471 485519,8094 -0,022689316 -0,092110209 0 3,3748364 3,721285054 134,8666137 3,951733308 3,6621471 0,287310684
+3,3522043 485551,8096 -0,022173688 -0,092108928 0 3,374378 3,722103821 134,8755027 3,95260278 3,6622043 0,287826312
+3,3520324 485583,8097 -0,021447988 -0,092112117 0 3,3734803 3,722922587 134,8843916 3,95347225 3,6620324 0,288552012
+3,3519561 485615,8099 -0,020894164 -0,092107654 0 3,3728502 3,723741353 134,8932805 3,954341719 3,6619561 0,289105836
+3,3518414 485647,8101 -0,02020666 -0,092114031 0 3,3720481 3,724560118 134,9021695 3,955211188 3,6618414 0,28979334
+3,351727 485679,8103 -0,019805616 -0,092108928 0 3,3715327 3,725378884 134,9110584 3,956080658 3,661727 0,290194384
+3,3515742 485711,8104 -0,019289987 -0,092103831 0 3,3708642 3,72619765 134,9199473 3,956950127 3,6615742 0,290710013
+3,3515933 485743,8106 -0,018526092 -0,092108928 0 3,3701193 3,727016414 134,9288363 3,957819595 3,6615933 0,291473908
+3,3514404 485775,8108 -0,017934075 -0,092108302 0 3,3693745 3,727835183 134,9377252 3,958689068 3,6614404 0,292065925
+3,3513451 485807,811 -0,017208375 -0,092111476 0 3,3685534 3,728653952 134,9466142 3,959558541 3,6613451 0,292791625
+3,3512876 485839,8111 -0,016559064 -0,092113383 0 3,3678467 3,729472722 134,9555031 3,960428014 3,6612876 0,293440936
+3,3509822 485871,8113 -0,01587156 -0,092112757 0 3,3668537 3,730291489 134,964392 3,961297486 3,6609822 0,29412844
+3,3510013 485903,8115 -0,015451418 -0,092112757 0 3,3664527 3,731110255 134,973281 3,962166955 3,6610013 0,294548582
+3,3508866 485935,8117 -0,014725719 -0,092111476 0 3,3656123 3,73192902 134,9821699 3,963036424 3,6608866 0,295274281
+3,3507721 485967,8119 -0,01392363 -0,092115298 0 3,3646958 3,732747787 134,9910588 3,963905895 3,6607721 0,29607637
+3,3505812 485999,812 -0,013293417 -0,092113383 0 3,3638747 3,733566554 134,9999478 3,964775366 3,6605812 0,296706583
+3,3505619 486031,8122 -0,012835081 -0,092109561 0 3,3633969 3,734385321 135,0088367 3,965644837 3,6605619 0,297164919
+3,3504093 486063,8124 -0,012243063 -0,092106387 0 3,3626523 3,735204087 135,0177257 3,966514306 3,6604093 0,297756937
+3,3502564 486095,8126 -0,011269098 -0,092106387 0 3,3615255 3,736022853 135,0266146 3,967383777 3,6602564 0,298730902
+3,3501608 486127,8127 -0,010619787 -0,092104472 0 3,3607807 3,736841617 135,0355035 3,968253244 3,6601608 0,299380213
+3,350199 486159,8129 -0,010065964 -0,092109561 0 3,360265 3,737660382 135,0443925 3,969122713 3,660199 0,299934036
+3,3498554 486191,8131 -0,009321168 -0,092115939 0 3,3591766 3,738479149 135,0532814 3,969992184 3,6598554 0,300678832
+3,349817 486223,8133 -0,008480884 -0,092113383 0 3,3582978 3,739297916 135,0621704 3,970861654 3,659817 0,301519116
+3,3498554 486255,8134 -0,007869769 -0,092108302 0 3,3577251 3,74011668 135,0710593 3,971731122 3,6598554 0,302130231
+3,3495307 486287,8136 -0,007105875 -0,092111476 0 3,3566365 3,740935443 135,0799482 3,972600589 3,6595307 0,302894125
+3,3493207 486319,8138 -0,006532954 -0,092110209 0 3,3558536 3,741754207 135,0888372 3,973470056 3,6593207 0,303467046
+3,3494542 486351,814 -0,005654476 -0,092104472 0 3,3551087 3,742572971 135,0977261 3,974339524 3,6594542 0,304345524
+3,3492632 486383,8141 -0,00504336 -0,092108928 0 3,3543065 3,743391737 135,106615 3,975208994 3,6592632 0,30495664
+3,349015 486415,8143 -0,004298564 -0,092114031 0 3,3533134 3,744210502 135,115504 3,976078463 3,659015 0,305701436
+3,349015 486447,8145 -0,003687448 -0,092111476 0 3,3527024 3,745029265 135,1243929 3,976947929 3,659015 0,306312552
+3,3488622 486479,8147 -0,003038138 -0,092117853 0 3,3519003 3,745848027 135,1332819 3,977817395 3,6588622 0,306961862
+3,3487668 486511,8148 -0,002216952 -0,092112757 0 3,3509839 3,746666789 135,1421708 3,97868686 3,6587668 0,307783048
+3,3487477 486543,815 -0,001414863 -0,092113383 0 3,3501625 3,747485551 135,1510597 3,979556326 3,6587477 0,308585137
+3,3485758 486575,8152 -0,000803748 -0,092114665 0 3,3493795 3,748304316 135,1599487 3,980425794 3,6585758 0,309196252
+3,3485949 486607,8154 -3,99E-05 -0,092110209 0 3,3486347 3,749123081 135,1688376 3,981295262 3,6585949 0,309960146
+3,3485377 486639,8156 0,000838624 -0,092111476 0 3,3476992 3,749941844 135,1777265 3,98216473 3,6585377 0,310838624
+3,3484802 486671,8157 0,001564324 -0,092115298 0 3,346916 3,750760609 135,1866155 3,983034198 3,6584802 0,311564324
+3,3480601 486703,8159 0,002118147 -0,092113383 0 3,345942 3,751579372 135,1955044 3,983903665 3,6580601 0,312118147
+3,348022 486735,8161 0,003187599 -0,092115298 0 3,3448343 3,75239814 135,2043934 3,984773136 3,658022 0,313187599
+3,3480411 486767,8163 0,003779617 -0,092116579 0 3,3442614 3,753216904 135,2132823 3,985642604 3,6580411 0,313779617
+3,3479264 486799,8164 0,004467121 -0,092104472 0 3,3434594 3,754035667 135,2221712 3,98651207 3,6579264 0,314467121
+3,3477354 486831,8166 0,00526921 -0,092111476 0 3,3424661 3,754854429 135,2310602 3,987381537 3,6577354 0,31526921
+3,3475063 486863,8168 0,005994909 -0,092104472 0 3,3415115 3,755673191 135,2399491 3,988251002 3,6575063 0,315994909
+3,3476782 486895,817 0,006949777 -0,092107654 0 3,3407285 3,756491953 135,248838 3,989120467 3,6576782 0,316949777
+3,3472199 486927,8171 0,007618185 -0,092113383 0 3,3396018 3,757310716 135,257727 3,989989934 3,6572199 0,317618185
+3,347239 486959,8173 0,008343884 -0,092106387 0 3,3388951 3,758129477 135,2666159 3,990859399 3,657239 0,318343884
+3,3471053 486991,8175 0,009069583 -0,092103831 0 3,3380356 3,758948237 135,2755049 3,991728862 3,6571053 0,319069583
+3,3470671 487023,8177 0,01017723 -0,092112757 0 3,33689 3,759766996 135,2843938 3,992598324 3,6570671 0,32017723
+3,3469715 487055,8178 0,010941124 -0,092113383 0 3,3360305 3,760585757 135,2932827 3,993467789 3,6569715 0,320941124
+3,3469143 487087,818 0,011647726 -0,092113383 0 3,3352666 3,76140452 135,3021717 3,994337256 3,6569143 0,321647726
+3,3467805 487119,8182 0,012297036 -0,092113383 0 3,3344834 3,762223285 135,3110606 3,995206724 3,6567805 0,322297036
+3,3464942 487151,8184 0,013022736 -0,092108302 0 3,3334715 3,763042051 135,3199495 3,996076194 3,6564942 0,323022736
+3,3466852 487183,8185 0,013958505 -0,092112757 0 3,3327267 3,763860817 135,3288385 3,996945664 3,6566852 0,323958505
+3,3463795 487215,8187 0,014913374 -0,092115939 0 3,3314662 3,764679584 135,3377274 3,997815134 3,6563795 0,324913374
+3,3462076 487247,8189 0,015333516 -0,092105746 0 3,3308742 3,765498353 135,3466164 3,998684607 3,6562076 0,325333516
+3,3462842 487279,8191 0,01638387 -0,092111476 0 3,3299003 3,766317117 135,3555053 3,999554075 3,6562842 0,32638387
+3,3459594 487311,8193 0,017281445 -0,092110209 0 3,3286779 3,767135886 135,3643942 4,000423548 3,6559594 0,327281445
+3,3460932 487343,8194 0,01789256 -0,092115298 0 3,3282006 3,767954655 135,3732832 4,001293021 3,6560932 0,32789256
+3,345711 487375,8196 0,018771037 -0,092112757 0 3,3269401 3,768773422 135,3821721 4,002162492 3,655711 0,328771037
+3,3458257 487407,8198 0,019668614 -0,092104472 0 3,3261571 3,769592187 135,3910611 4,003031961 3,6558257 0,329668614
+3,3456538 487439,82 0,020604385 -0,092106387 0 3,3250494 3,770410959 135,39995 4,003901436 3,6556538 0,330604385
+3,3456538 487471,8201 0,021120014 -0,092107654 0 3,3245337 3,77122973 135,4088389 4,004770911 3,6556538 0,331120014
+3,3454819 487503,8203 0,022132173 -0,092106387 0 3,3233497 3,772048498 135,4177279 4,005640384 3,6554819 0,332132173
+3,3453484 487535,8205 0,022991553 -0,092110842 0 3,3223567 3,772867266 135,4266168 4,006509856 3,6553484 0,332991553
+3,3451381 487567,8207 0,023793641 -0,092116579 0 3,3213444 3,773686032 135,4355057 4,007379325 3,6551381 0,333793641
+3,3449471 487599,8208 0,024691219 -0,092110209 0 3,320256 3,774504797 135,4443947 4,008248794 3,6549471 0,334691219
+3,3450046 487631,821 0,025588794 -0,092110842 0 3,3194158 3,775323563 135,4532836 4,009118264 3,6550046 0,335588794
+3,3449855 487663,8212 0,026562758 -0,092109561 0 3,3184228 3,776142326 135,4621726 4,00998773 3,6549855 0,336562758
+3,3448899 487695,8214 0,027326653 -0,092113383 0 3,3175633 3,77696109 135,4710615 4,010857198 3,6548899 0,337326653
+3,3446035 487727,8215 0,028128741 -0,092109561 0 3,3164749 3,777779851 135,4799504 4,011726663 3,6546035 0,338128741
+3,3446417 487759,8217 0,02908361 -0,092118487 0 3,315558 3,778598614 135,4888394 4,012596129 3,6546417 0,33908361
+3,3444507 487791,8219 0,030000282 -0,092110209 0 3,3144505 3,779417372 135,4977283 4,013465591 3,6544507 0,340000282
+3,3442788 487823,8221 0,030859662 -0,09210702 0 3,3134191 3,780236136 135,5066172 4,014335058 3,6542788 0,340859662
+3,3440878 487855,8222 0,031719044 -0,092110842 0 3,3123689 3,781054898 135,5155062 4,015204523 3,6540878 0,341719044
+3,3441832 487887,8224 0,032482937 -0,092096195 0 3,3117003 3,781873661 135,5243951 4,016073991 3,6541832 0,342482937
+3,3440497 487919,8226 0,03353329 -0,092113383 0 3,3105164 3,782692426 135,5332841 4,016943459 3,6540497 0,34353329
+3,3438969 487951,8228 0,034660034 -0,092106387 0 3,3092368 3,783511191 135,542173 4,017812928 3,6538969 0,344660034
+3,3437822 487983,823 0,035366636 -0,092115298 0 3,3084157 3,784329957 135,5510619 4,018682398 3,6537822 0,345366636
+3,3436677 488015,8231 0,036073238 -0,092106387 0 3,3075945 3,785148723 135,5599509 4,019551868 3,6536677 0,346073238
+3,343534 488047,8233 0,03716179 -0,09210702 0 3,3063722 3,785967488 135,5688398 4,020421336 3,653534 0,34716179
+3,3434002 488079,8235 0,037925683 -0,092108302 0 3,3054745 3,786786253 135,5777287 4,021290805 3,6534002 0,347925683
+3,3435721 488111,8237 0,038842354 -0,092114665 0 3,3047297 3,787605017 135,5866177 4,022160272 3,6535721 0,348842354
+3,3433239 488143,8238 0,039739933 -0,092117853 0 3,3035841 3,788423782 135,5955066 4,023029741 3,6533239 0,349739933
+3,3432474 488175,824 0,040675703 -0,092110209 0 3,3025718 3,789242546 135,6043956 4,023899208 3,6532474 0,350675703
+3,343133 488207,8242 0,041687861 -0,092115939 0 3,301445 3,790061311 135,6132845 4,024768677 3,653133 0,351687861
+3,3430183 488239,8244 0,042547241 -0,092108302 0 3,3004711 3,79088008 135,6221734 4,025638151 3,6530183 0,352547241
+3,3429229 488271,8245 0,043559402 -0,092111476 0 3,2993636 3,791698852 135,6310624 4,026507626 3,6529229 0,353559402
+3,342732 488303,8247 0,044399686 -0,092115939 0 3,2983322 3,792517623 135,6399513 4,027377101 3,652732 0,354399686
+3,342751 488335,8249 0,04550733 -0,092110209 0 3,2972436 3,793336392 135,6488402 4,028246574 3,652751 0,35550733
+3,3425217 488367,8251 0,046328519 -0,092113383 0 3,2961931 3,794155161 135,6577292 4,029116047 3,6525217 0,356328519
+3,3424072 488399,8252 0,047226094 -0,092110842 0 3,295181 3,79497393 135,6666181 4,02998552 3,6524072 0,357226094
+3,3423116 488431,8254 0,048352838 -0,092118487 0 3,2939587 3,795792695 135,6755071 4,030854989 3,6523116 0,358352838
+3,3420825 488463,8256 0,049193121 -0,092110209 0 3,2928894 3,79661146 135,684396 4,031724458 3,6520825 0,359193121
+3,3421588 488495,8258 0,050052501 -0,092111476 0 3,2921064 3,797430229 135,6932849 4,03259393 3,6521588 0,360052501
+3,3419871 488527,8259 0,051102858 -0,092115298 0 3,2908843 3,798248994 135,7021739 4,033463399 3,6519871 0,361102858
+3,3418152 488559,8261 0,052115016 -0,092111476 0 3,2897003 3,799067758 135,7110628 4,034332867 3,6518152 0,362115016
+3,3418152 488591,8263 0,053165372 -0,092110842 0 3,2886498 3,799886523 135,7199517 4,035202335 3,6518152 0,363165372
+3,3417768 488623,8265 0,053833779 -0,092108928 0 3,2879431 3,800705287 135,7288407 4,036071803 3,6517768 0,363833779
+3,3415287 488655,8267 0,055075105 -0,092110842 0 3,2864535 3,801524047 135,7377296 4,036941267 3,6515287 0,365075105
+3,3413758 488687,8268 0,056125462 -0,092107654 0 3,2852504 3,802342811 135,7466186 4,037810734 3,6513758 0,366125462
+3,3414142 488719,827 0,057042133 -0,092110209 0 3,2843721 3,803161574 135,7555075 4,038680201 3,6514142 0,367042133
+3,341223 488751,8272 0,058035195 -0,092113383 0 3,2831879 3,803980339 135,7643964 4,03954967 3,651223 0,368035195
+3,3411086 488783,8274 0,058818188 -0,092105746 0 3,2822905 3,804799105 135,7732854 4,04041914 3,6511086 0,368818188
+3,341032 488815,8275 0,060135905 -0,092112117 0 3,2808962 3,80561787 135,7821743 4,041288608 3,651032 0,370135905
+3,3410704 488847,8277 0,061109871 -0,092111476 0 3,2799606 3,806436633 135,7910633 4,042158074 3,6510704 0,371109871
+3,3407648 488879,8279 0,061911959 -0,092108928 0 3,2788527 3,807255396 135,7999522 4,043027541 3,6507648 0,371911959
+3,3406885 488911,8281 0,062981412 -0,092106387 0 3,2777071 3,808074161 135,8088411 4,04389701 3,6506885 0,372981412
+3,3405356 488943,8282 0,063878983 -0,092111476 0 3,2766566 3,808892927 135,8177301 4,04476648 3,6505356 0,373878983
+3,3403828 488975,8284 0,065024823 -0,092108928 0 3,275358 3,809711694 135,826619 4,045635951 3,6503828 0,375024823
+3,3403637 489007,8286 0,066075176 -0,092112757 0 3,2742887 3,81053046 135,8355079 4,046505421 3,6503637 0,376075176
+3,3401728 489039,8288 0,066972755 -0,092105106 0 3,2732 3,811349227 135,8443969 4,047374892 3,6501728 0,376972755
+3,3401728 489071,8289 0,068156794 -0,092114031 0 3,272016 3,812167996 135,8532858 4,048244364 3,6501728 0,378156794
+3,340039 489103,8291 0,069016173 -0,092112117 0 3,2710228 3,812986766 135,8621748 4,049113838 3,650039 0,379016173
+3,3400962 489135,8293 0,070066527 -0,092110209 0 3,2700298 3,813805534 135,8710637 4,049983311 3,6500962 0,380066527
+3,3397143 489167,8295 0,071288757 -0,092106387 0 3,2684255 3,814624301 135,8799526 4,050852781 3,6497143 0,381288757
+3,3396761 489199,8296 0,072243623 -0,092114665 0 3,2674325 3,815443069 135,8888416 4,051722253 3,6496761 0,382243623
+3,3396189 489231,8298 0,073408566 -0,092108302 0 3,2662103 3,816261837 135,8977305 4,052591725 3,6496189 0,383408566
+3,3395808 489263,83 0,074401625 -0,092115298 0 3,2651792 3,817080604 135,9066194 4,053461196 3,6495808 0,384401625
+3,3393514 489295,8302 0,075337395 -0,092109561 0 3,264014 3,817899374 135,9155084 4,054330669 3,6493514 0,385337395
+3,3389504 489327,8304 0,076597825 -0,092107654 0 3,2623525 3,818718142 135,9243973 4,055200141 3,6489504 0,386597825
+3,3389313 489359,8305 0,077438101 -0,092114031 0 3,2614932 3,819536908 135,9332863 4,056069612 3,6489313 0,387438101
+3,3390079 489391,8307 0,078469358 -0,092104472 0 3,2605386 3,820355677 135,9421752 4,056939084 3,6490079 0,388469358
+3,3390079 489423,8309 0,079691589 -0,092115298 0 3,2593162 3,821174446 135,9510641 4,057808558 3,6490079 0,389691589
+3,338855 489455,8311 0,080646463 -0,092107654 0 3,2582085 3,821993217 135,9599531 4,058678032 3,648855 0,390646463
+3,338836 489487,8312 0,082136057 -0,09210702 0 3,2566998 3,822811986 135,968842 4,059547505 3,648836 0,392136057
+3,338645 489519,8314 0,082919046 -0,092112757 0 3,2557259 3,823630754 135,9777309 4,060416977 3,648645 0,392919046
+3,3384922 489551,8316 0,083969399 -0,092108302 0 3,2545228 3,824449521 135,9866199 4,061286448 3,6484922 0,393969399
+3,3383203 489583,8318 0,085210726 -0,092108302 0 3,2531095 3,825268287 135,9955088 4,062155918 3,6483203 0,395210726
+3,3383203 489615,8319 0,0861274 -0,092112757 0 3,252193 3,826087051 136,0043978 4,063025385 3,6483203 0,3961274
+3,3381484 489647,8321 0,087311439 -0,092112757 0 3,2508368 3,826905819 136,0132867 4,063894857 3,6481484 0,397311439
+3,3381293 489679,8323 0,088323593 -0,092112117 0 3,2498057 3,827724587 136,0221756 4,064764329 3,6481293 0,398323593
+3,3380721 489711,8325 0,089660414 -0,092112757 0 3,2484117 3,828543356 136,0310646 4,065633803 3,6480721 0,399660414
+3,3378236 489743,8326 0,090710767 -0,092109561 0 3,2471128 3,829362123 136,0399535 4,066503273 3,6478236 0,400710767
+3,3377092 489775,8328 0,091780216 -0,092112117 0 3,245929 3,830180889 136,0488424 4,067372743 3,6477092 0,401780216
+3,3376327 489807,833 0,092811473 -0,092104472 0 3,2448211 3,830999656 136,0577314 4,068242213 3,6476327 0,402811473
+3,3375754 489839,8332 0,093938217 -0,092109561 0 3,2436373 3,831818424 136,0666203 4,069111685 3,6475754 0,403938217
+3,3375754 489871,8333 0,095084056 -0,092109561 0 3,2424915 3,832637194 136,0755093 4,06998116 3,6475754 0,405084056
+3,3372507 489903,8335 0,096229903 -0,092114031 0 3,2410209 3,833455963 136,0843982 4,070850633 3,6472507 0,406229903
+3,3372316 489935,8337 0,097509421 -0,092113383 0 3,2397223 3,83427473 136,0932871 4,071720103 3,6472316 0,407509421
+3,3370407 489967,8339 0,098731652 -0,092114665 0 3,2383089 3,835093496 136,1021761 4,072589573 3,6470407 0,408731652
+3,3370025 489999,8341 0,09955284 -0,092111476 0 3,2374496 3,835912261 136,111065 4,073459042 3,6470025 0,40955284
+3,3368115 490031,8342 0,10098514 -0,092108928 0 3,2358265 3,836731028 136,119954 4,074328513 3,6468115 0,41098514
+3,3367734 490063,8344 0,10218827 -0,092112117 0 3,234585 3,837549796 136,1288429 4,075197985 3,6467734 0,41218827
+3,336735 490095,8346 0,10327683 -0,092107654 0 3,2334583 3,838368564 136,1377318 4,076067457 3,646735 0,41327683
+3,3364677 490127,8348 0,10444176 -0,092107654 0 3,2320261 3,839187332 136,1466208 4,076936928 3,6464677 0,41444176
+3,336334 490159,8349 0,1056258 -0,092113383 0 3,2307081 3,840006098 136,1555097 4,077806398 3,646334 0,4156258
+3,3362958 490191,8351 0,10690532 -0,09210065 0 3,2293906 3,840824865 136,1643986 4,078675869 3,6462958 0,41690532
+3,3361814 490223,8353 0,10807026 -0,09211912 0 3,228111 3,841643632 136,1732876 4,07954534 3,6461814 0,41807026
+3,3362005 490255,8355 0,10942617 -0,09210702 0 3,2267742 3,842462402 136,1821765 4,080414814 3,6462005 0,41942617
+3,3360858 490287,8356 0,11061021 -0,092118487 0 3,2254755 3,843281171 136,1910655 4,081284287 3,6460858 0,42061021
+3,3358567 490319,8358 0,11173695 -0,092115298 0 3,2241197 3,844099937 136,1999544 4,082153757 3,6458567 0,42173695
+3,3358567 490351,836 0,11292098 -0,09210702 0 3,2229357 3,844918705 136,2088433 4,083023228 3,6458567 0,42292098
+3,3356657 490383,8362 0,11408593 -0,092108302 0 3,2215798 3,845737474 136,2177323 4,083892701 3,6456657 0,42408593
+3,3354557 490415,8363 0,11534635 -0,092108928 0 3,2201092 3,846556242 136,2266212 4,084762174 3,6454557 0,42534635
+3,3354173 490447,8365 0,11656858 -0,092111476 0 3,2188487 3,847375009 136,2355101 4,085631644 3,6454173 0,42656858
+3,3353028 490479,8367 0,1178863 -0,092115939 0 3,2174165 3,848193777 136,2443991 4,086501117 3,6453028 0,4278863
+3,3351309 490511,8369 0,11920401 -0,092112757 0 3,2159269 3,849012546 136,253288 4,087370589 3,6451309 0,42920401
+3,33515 490543,837 0,12021618 -0,092110842 0 3,2149339 3,849831313 136,262177 4,08824006 3,64515 0,43021618
+3,3350737 490575,8372 0,1214957 -0,09211912 0 3,213578 3,85065008 136,2710659 4,089109531 3,6450737 0,4314957
+3,3350928 490607,8374 0,12277522 -0,092102565 0 3,2123175 3,851468844 136,2799548 4,089978999 3,6450928 0,43277522
+3,3348634 490639,8376 0,12403565 -0,092111476 0 3,2108278 3,852287608 136,2888438 4,090848467 3,6448634 0,43403565
+3,3347108 490671,8377 0,12546794 -0,092109561 0 3,2092428 3,853106376 136,2977327 4,091717938 3,6447108 0,43546794
+3,3346534 490703,8379 0,12680475 -0,092108928 0 3,2078485 3,853925142 136,3066216 4,092587408 3,6446534 0,43680475
+3,3345008 490735,8381 0,1279697 -0,092101924 0 3,206531 3,854743906 136,3155106 4,093456876 3,6445008 0,4379697
+3,3343289 490767,8383 0,12907735 -0,092112117 0 3,2052515 3,855562671 136,3243995 4,094326345 3,6443289 0,43907735
+3,3340423 490799,8385 0,13052875 -0,092108302 0 3,2035136 3,856381434 136,3332885 4,095195811 3,6440423 0,44052875
+3,3342524 490831,8386 0,13182737 -0,092121035 0 3,202425 3,857200197 136,3421774 4,096065277 3,6442524 0,44182737
+3,3340232 490863,8388 0,13280132 -0,092111476 0 3,2012219 3,858018959 136,3510663 4,096934743 3,6440232 0,44280132
+3,3339469 490895,839 0,13434821 -0,092114031 0 3,1995988 3,858837718 136,3599553 4,097804205 3,6439469 0,44434821
+3,3338704 490927,8392 0,13570413 -0,092105746 0 3,1981664 3,859656478 136,3688442 4,098673668 3,6438704 0,44570413
+3,3337367 490959,8393 0,13692635 -0,09210702 0 3,1968102 3,860475236 136,3777331 4,09954313 3,6437367 0,44692635
+3,3336031 490991,8395 0,13830137 -0,092112117 0 3,1953018 3,861293996 136,3866221 4,100412593 3,6436031 0,44830137
+3,3337176 491023,8397 0,13956179 -0,092107654 0 3,1941557 3,862112757 136,395511 4,101282058 3,6437176 0,44956179
+3,3334122 491055,8399 0,140975 -0,092108928 0 3,1924372 3,862931517 136,4044 4,102151521 3,6434122 0,450975
+3,3334694 491087,84 0,14227362 -0,09210702 0 3,1911957 3,863750277 136,4132889 4,103020985 3,6434694 0,45227362
+3,3331831 491119,8402 0,14361043 -0,092110842 0 3,1895726 3,864569037 136,4221778 4,103890448 3,6431831 0,45361043
+3,3330874 491151,8404 0,14502363 -0,092105106 0 3,1880639 3,865387799 136,4310668 4,104759914 3,6430874 0,45502363
+3,3328583 491183,8406 0,14637955 -0,092114031 0 3,1864789 3,866206562 136,4399557 4,10562938 3,6428583 0,45637955
+3,3328583 491215,8407 0,14781184 -0,092108928 0 3,1850464 3,867025324 136,4488447 4,106498846 3,6428583 0,45781184
+3,3325527 491247,8409 0,14920595 -0,092108928 0 3,1833467 3,867844085 136,4577336 4,10736831 3,6425527 0,45920595
+3,3327055 491279,8411 0,15050457 -0,092106387 0 3,1822009 3,868662847 136,4666225 4,108237775 3,6427055 0,46050457
+3,3325145 491311,8413 0,15191779 -0,092110842 0 3,1805968 3,869481609 136,4755115 4,109107241 3,6425145 0,46191779
+3,3323617 491343,8414 0,15336917 -0,092115298 0 3,1789925 3,870300367 136,4844004 4,109976703 3,6423617 0,46336917
+3,3322089 491375,8416 0,15478238 -0,092105746 0 3,1774266 3,871119127 136,4932893 4,110846166 3,6422089 0,46478238
+3,3322089 491407,8418 0,15598552 -0,092113383 0 3,1762233 3,871937888 136,5021783 4,111715631 3,6422089 0,46598552
+3,3321135 491439,842 0,15745601 -0,092115298 0 3,1746576 3,872756652 136,5110672 4,112585098 3,6421135 0,46745601
+3,3320179 491471,8422 0,15921296 -0,09210702 0 3,1728048 3,873575415 136,5199562 4,113454565 3,6420179 0,46921296
+3,3318651 491503,8423 0,16035882 -0,092105746 0 3,1715062 3,874394178 136,5288451 4,114324031 3,6418651 0,47035882
+3,3317506 491535,8425 0,1618675 -0,092108928 0 3,1698833 3,875212943 136,537734 4,115193499 3,6417506 0,4718675
+3,3316741 491567,8427 0,16314702 -0,09210702 0 3,1685271 3,876031707 136,546623 4,116062967 3,6416741 0,47314702
+3,3315787 491599,8429 0,1648085 -0,092112757 0 3,1667702 3,876850469 136,5555119 4,116932433 3,6415787 0,4748085
+3,3312731 491631,843 0,16612621 -0,092117213 0 3,1651468 3,877669231 136,5644008 4,117801898 3,6412731 0,47612621
+3,3313878 491663,8432 0,16757761 -0,092110209 0 3,1638103 3,878487998 136,5732898 4,118671369 3,6413878 0,47757761
+3,3311968 491695,8434 0,16927727 -0,092108928 0 3,1619196 3,879306762 136,5821787 4,119540837 3,6411968 0,47927727
+3,3311012 491727,8436 0,17078596 -0,092105746 0 3,1603153 3,880125523 136,5910677 4,120410301 3,6411012 0,48078596
+3,3309102 491759,8437 0,17223737 -0,092108928 0 3,1586728 3,880944282 136,5999566 4,121279763 3,6409102 0,48223737
+3,3307383 491791,8439 0,17380334 -0,092105106 0 3,156935 3,881763042 136,6088455 4,122149227 3,6407383 0,48380334
+3,3307192 491823,8441 0,17529294 -0,092110209 0 3,1554263 3,8825818 136,6177345 4,123018689 3,6407192 0,48529294
+3,3306811 491855,8443 0,17670615 -0,092107654 0 3,153975 3,883400563 136,6266234 4,123888155 3,6406811 0,48670615
+3,3304901 491887,8444 0,17815754 -0,092112117 0 3,1523325 3,884219326 136,6355123 4,124757621 3,6404901 0,48815754
+3,3302991 491919,8446 0,17972353 -0,092109561 0 3,1505756 3,885038088 136,6444013 4,125627087 3,6402991 0,48972353
+3,3302419 491951,8448 0,18149959 -0,092120394 0 3,1487424 3,885856848 136,6532902 4,126496551 3,6402419 0,49149959
+3,3302038 491983,845 0,18289368 -0,092109561 0 3,14731 3,886675612 136,6621792 4,127366018 3,6402038 0,49289368
+3,3300891 492015,8451 0,18444057 -0,092114665 0 3,1456485 3,887494374 136,6710681 4,128235484 3,6400891 0,49444057
+3,329879 492047,8453 0,18593016 -0,092107654 0 3,1439488 3,888313135 136,679957 4,129104948 3,639879 0,49593016
+3,3301272 492079,8455 0,18757254 -0,092108928 0 3,1425548 3,889131896 136,688846 4,129974413 3,6401272 0,49757254
+3,3297262 492111,8457 0,18934859 -0,092110842 0 3,1403775 3,88995066 136,6977349 4,13084388 3,6397262 0,49934859
+3,3296115 492143,8459 0,19070451 -0,092112117 0 3,138907 3,890769422 136,7066238 4,131713346 3,6396115 0,50070451
+3,3294015 492175,846 0,19221319 -0,092113383 0 3,1371882 3,891588185 136,7155128 4,132582813 3,6394015 0,50221319
+3,3293633 492207,8462 0,19387466 -0,092114031 0 3,1354887 3,89240695 136,7244017 4,133452281 3,6393633 0,50387466
+3,3294971 492239,8464 0,19565071 -0,092105746 0 3,1338463 3,893225707 136,7332907 4,134321742 3,6394971 0,50565071
+3,3292105 492271,8466 0,19710211 -0,092114665 0 3,1321084 3,894044466 136,7421796 4,135191204 3,6392105 0,50710211
+3,3292296 492303,8467 0,19878268 -0,092112117 0 3,1304469 3,894863225 136,7510685 4,136060666 3,6392296 0,50878268
+3,3290386 492335,8469 0,20015769 -0,092105106 0 3,128881 3,895681984 136,7599575 4,136930128 3,6390386 0,51015769
+3,3289051 492367,8471 0,20199104 -0,092116579 0 3,126914 3,896500745 136,7688464 4,137799592 3,6389051 0,51199104
+3,3287904 492399,8473 0,20380528 -0,092112757 0 3,1249852 3,897319506 136,7777354 4,138669057 3,6387904 0,51380528
+3,3286567 492431,8474 0,20508482 -0,092108302 0 3,1235719 3,898138268 136,7866243 4,139538523 3,6386567 0,51508482
+3,3285422 492463,8476 0,20672718 -0,092112117 0 3,121815 3,898957033 136,7955132 4,140407991 3,6385422 0,51672718
+3,3283322 492495,8478 0,20850323 -0,092112117 0 3,1198289 3,899775798 136,8044022 4,14127746 3,6383322 0,51850323
+3,3282938 492527,848 0,21033658 -0,092108302 0 3,1179571 3,900594561 136,8132911 4,142146927 3,6382938 0,52033658
+3,3284657 492559,8481 0,21203625 -0,092108302 0 3,1164293 3,901413326 136,82218 4,143016395 3,6384657 0,52203625
+3,3281412 492591,8483 0,21390779 -0,092109561 0 3,1142335 3,902232092 136,831069 4,143885865 3,6381412 0,52390779
+3,3280647 492623,8485 0,21556926 -0,092119761 0 3,1124954 3,90305086 136,8399579 4,144755337 3,6380647 0,52556926
+3,3278356 492655,8487 0,21732621 -0,092110209 0 3,1105094 3,903869625 136,8488469 4,145624806 3,6378356 0,52732621
+3,3277974 492687,8488 0,21919775 -0,092110842 0 3,1085997 3,904688389 136,8577358 4,146494274 3,6377974 0,52919775
+3,3278165 492719,849 0,22078283 -0,092109561 0 3,1070337 3,905507153 136,8666247 4,147363741 3,6378165 0,53078283
+3,3275681 492751,8492 0,2224061 -0,092113383 0 3,1051619 3,906325922 136,8755137 4,148233214 3,6375681 0,5324061
+3,3275874 492783,8494 0,22433494 -0,09210702 0 3,1032524 3,907144691 136,8844026 4,149102687 3,6375874 0,53433494
+3,3274345 492815,8496 0,22622558 -0,092108928 0 3,1012089 3,907963459 136,8932915 4,149972159 3,6374345 0,53622558
+3,3272626 492847,8497 0,22811621 -0,092110209 0 3,0991464 3,908782227 136,9021805 4,150841631 3,6372626 0,53811621
+3,3269951 492879,8499 0,22991137 -0,092113383 0 3,0970838 3,909600993 136,9110694 4,1517111 3,6369951 0,53991137
+3,3268425 492911,8501 0,23172562 -0,092114031 0 3,0951169 3,910419759 136,9199584 4,152580571 3,6368425 0,54172562
+3,3270717 492943,8503 0,23346348 -0,092108928 0 3,0936081 3,911238526 136,9288473 4,153450041 3,6370717 0,54346348
+3,3267088 492975,8504 0,23512495 -0,092114665 0 3,0915837 3,912057293 136,9377362 4,154319512 3,6367088 0,54512495
+3,3266132 493007,8506 0,23703468 -0,09210702 0 3,0895786 3,912876058 136,9466252 4,155188981 3,6366132 0,54703468
+3,326556 493039,8508 0,23882984 -0,092110842 0 3,0877261 3,913694823 136,9555141 4,15605845 3,636556 0,54882984
+3,3264606 493071,851 0,24077776 -0,092105746 0 3,0856829 3,914513588 136,964403 4,156927918 3,6364606 0,55077776
+3,3264222 493103,8511 0,2427066 -0,092115298 0 3,0837157 3,915332353 136,973292 4,157797387 3,6364222 0,5527066
+3,3263268 493135,8513 0,24455903 -0,092111476 0 3,0817678 3,916151118 136,9821809 4,158666856 3,6363268 0,55455903
+3,3261549 493167,8515 0,24641149 -0,092105106 0 3,0797434 3,916969883 136,9910699 4,159536324 3,6361549 0,55641149
+3,3261359 493199,8517 0,24803476 -0,092110842 0 3,0781012 3,917788646 136,9999588 4,160405791 3,6361359 0,55803476
+3,3259068 493231,8518 0,25002086 -0,092117853 0 3,0758858 3,91860741 137,0088477 4,161275259 3,6359068 0,56002086
+3,3257158 493263,852 0,25200701 -0,092108928 0 3,0737088 3,919426173 137,0177367 4,162144725 3,6357158 0,56200701
+3,3255439 493295,8522 0,25385943 -0,092105746 0 3,0716844 3,920244938 137,0266256 4,163014194 3,6355439 0,56385943
+3,3254864 493327,8524 0,25557822 -0,092110209 0 3,0699081 3,921063704 137,0355145 4,163883664 3,6354864 0,56557822
+3,3254483 493359,8525 0,25756434 -0,092105746 0 3,067884 3,92188247 137,0444035 4,164753134 3,6354483 0,56756434
+3,3255439 493391,8527 0,25979871 -0,092110842 0 3,0657451 3,922701237 137,0532924 4,165622605 3,6355439 0,56979871
+3,3254101 493423,8529 0,26159388 -0,092110842 0 3,0638163 3,923520003 137,0621814 4,166492074 3,6354101 0,57159388
+3,3250663 493455,8531 0,26380917 -0,092110842 0 3,0612571 3,924338769 137,0710703 4,167361543 3,6350663 0,57380917
+3,3251429 493487,8533 0,26575708 -0,092110209 0 3,0593858 3,925157535 137,0799592 4,168231013 3,6351429 0,57575708
+3,3250282 493519,8534 0,26797238 -0,092117853 0 3,0570557 3,925976303 137,0888482 4,169100485 3,6350282 0,57797238
+3,3248563 493551,8536 0,26984394 -0,092101924 0 3,0550122 3,926795067 137,0977371 4,169969953 3,6348563 0,57984394
+3,3248372 493583,8538 0,27213562 -0,092108928 0 3,0527015 3,927613832 137,106626 4,170839422 3,6348372 0,58213562
+3,3246081 493615,854 0,27408355 -0,092114031 0 3,0505245 3,928432594 137,115515 4,171708888 3,6346081 0,58408355
+3,3244934 493647,8541 0,27580231 -0,092110209 0 3,048691 3,929251358 137,1244039 4,172578355 3,6344934 0,58580231
+3,3244171 493679,8543 0,27803668 -0,092117213 0 3,0463805 3,930070123 137,1332929 4,173447824 3,6344171 0,58803668
+3,3242834 493711,8545 0,27994642 -0,092115298 0 3,044337 3,930888888 137,1421818 4,174317293 3,6342834 0,58994642
+3,3239968 493743,8547 0,28216171 -0,092111476 0 3,0418351 3,931707655 137,1510707 4,175186763 3,6339968 0,59216171
+3,3241115 493775,8548 0,2844725 -0,092098102 0 3,039639 3,932526418 137,1599597 4,17605623 3,6341115 0,5944725
+3,3239205 493807,855 0,2865732 -0,092103831 0 3,0373473 3,933345184 137,1688486 4,176925699 3,6339205 0,5965732
+3,3238633 493839,8552 0,28873122 -0,092115298 0 3,0351319 3,934163949 137,1777376 4,177795168 3,6338633 0,59873122
+3,3237677 493871,8554 0,29060274 -0,092108928 0 3,033165 3,934982712 137,1866265 4,178664635 3,6337677 0,60060274
+3,3236339 493903,8555 0,29289442 -0,092108302 0 3,0307395 3,935801475 137,1955154 4,179534101 3,6336339 0,60289442
+3,3234622 493935,8557 0,29507154 -0,092115939 0 3,0283906 3,936620235 137,2044044 4,180403565 3,6334622 0,60507154
+3,3235576 493967,8559 0,29747781 -0,092106387 0 3,0260799 3,937439 137,2132933 4,181273034 3,6335576 0,60747781
+3,3233094 493999,8561 0,2996358 -0,092106387 0 3,0236735 3,938257766 137,2221822 4,182142503 3,6333094 0,6096358
+3,3232138 494031,8562 0,30215666 -0,092110209 0 3,0210571 3,939076527 137,2310712 4,183011968 3,6332138 0,61215666
+3,3230994 494063,8564 0,30412367 -0,092110209 0 3,0189757 3,939895288 137,2399601 4,183881432 3,6330994 0,61412367
+3,3231947 494095,8566 0,3061862 -0,092104472 0 3,0170085 3,940714052 137,2488491 4,1847509 3,6331947 0,6161862
+3,3228891 494127,8568 0,30859247 -0,092117213 0 3,0142965 3,941532814 137,257738 4,185620366 3,6328891 0,61859247
+3,3227746 494159,857 0,31105602 -0,092104472 0 3,0117188 3,942351576 137,2666269 4,186489831 3,6327746 0,62105602
+3,3224308 494191,8571 0,3133859 -0,092102565 0 3,0090449 3,943170345 137,2755159 4,187359304 3,6324308 0,6233859
+3,3225837 494223,8573 0,31584945 -0,092108302 0 3,0067341 3,943989111 137,2844048 4,188228773 3,6325837 0,62584945
+3,3223927 494255,8575 0,31812203 -0,092115939 0 3,0042706 3,94480787 137,2932937 4,189098237 3,6323927 0,62812203
+3,3224118 494287,8577 0,32062379 -0,092108928 0 3,0017879 3,945626633 137,3021827 4,189967703 3,6324118 0,63062379
+3,3219917 494319,8578 0,32314464 -0,092108928 0 2,998847 3,946445398 137,3110716 4,190837172 3,6319917 0,63314464
+3,3219342 494351,858 0,32570368 -0,092108302 0 2,9962306 3,947264165 137,3199606 4,191706642 3,6319342 0,63570368
+3,3220298 494383,8582 0,32801446 -0,092112117 0 2,9940155 3,948082932 137,3288495 4,192576113 3,6320298 0,63801446
+3,3219533 494415,8584 0,33051622 -0,092112117 0 2,991437 3,948901698 137,3377384 4,193445583 3,6319533 0,64051622
+3,3217051 494447,8585 0,33290339 -0,092109561 0 2,9888017 3,949720465 137,3466274 4,194315054 3,6317051 0,64290339
+3,321667 494479,8587 0,33553883 -0,092104472 0 2,9861281 3,950539233 137,3555163 4,195184525 3,631667 0,64553883
+3,3217816 494511,8589 0,33802149 -0,092110209 0 2,9837601 3,951358002 137,3644052 4,196053998 3,6317816 0,64802149
+3,321285 494543,8591 0,34016037 -0,092108928 0 2,9811246 3,95217677 137,3732942 4,196923471 3,631285 0,65016037
+3,3214569 494575,8592 0,34273854 -0,092110842 0 2,9787183 3,952995539 137,3821831 4,197792944 3,6314569 0,65273854
+3,3212659 494607,8594 0,34533575 -0,092108928 0 2,9759302 3,953814309 137,3910721 4,198662417 3,6312659 0,65533575
+3,3210559 494639,8596 0,34802848 -0,092112117 0 2,9730275 3,95463308 137,399961 4,199531893 3,6310559 0,65802848
+3,3211894 494671,8598 0,35093129 -0,092116579 0 2,9702582 3,955451852 137,4088499 4,200401369 3,6311894 0,66093129
+3,321075 494703,8599 0,35356674 -0,092114031 0 2,9675083 3,956270624 137,4177389 4,201270845 3,631075 0,66356674
+3,3208458 494735,8601 0,35587752 -0,092114031 0 2,9649682 3,957089394 137,4266278 4,202140319 3,6308458 0,66587752
+3,3206739 494767,8603 0,35849383 -0,092110209 0 2,9621801 3,957908164 137,4355167 4,203009793 3,6306739 0,66849383
+3,320693 494799,8605 0,36120567 -0,092110842 0 2,9594874 3,958726935 137,4444057 4,203879268 3,630693 0,67120567
+3,3204255 494831,8606 0,36418486 -0,092112117 0 2,9562407 3,959545705 137,4532946 4,204748743 3,6304255 0,67418486
+3,3201964 494863,8608 0,36668661 -0,092110842 0 2,9535098 3,960364476 137,4621836 4,205618217 3,6301964 0,67668661
+3,3203301 494895,861 0,36953211 -0,092112757 0 2,950798 3,961183243 137,4710725 4,206487688 3,6303301 0,67953211
+3,3200817 494927,8612 0,37239671 -0,092110842 0 2,947685 3,962002012 137,4799614 4,207357161 3,6300817 0,68239671
+3,3199863 494959,8614 0,37482208 -0,092106387 0 2,9451642 3,962820784 137,4888504 4,208226637 3,6299863 0,68482208
+3,3199291 494991,8615 0,37772489 -0,092106387 0 2,9422042 3,963639554 137,4977393 4,209096111 3,6299291 0,68772489
+3,3198907 495023,8617 0,38055128 -0,092104472 0 2,9393394 3,964458323 137,5066283 4,209965584 3,6298907 0,69055128
+3,3198144 495055,8619 0,38360685 -0,092108302 0 2,9362075 3,965277094 137,5155172 4,210835059 3,6298144 0,69360685
+3,3196044 495087,8621 0,38618499 -0,092109561 0 2,9334195 3,966095865 137,5244061 4,211704534 3,6296044 0,69618499
+3,3196807 495119,8622 0,38922149 -0,092112117 0 2,9304593 3,966914633 137,5332951 4,212574007 3,6296807 0,69922149
+3,3193944 495151,8624 0,3919906 -0,092108928 0 2,9274037 3,967733404 137,542184 4,213443481 3,6293944 0,7019906
+3,3194325 495183,8626 0,39493158 -0,092112757 0 2,9245009 3,968552174 137,5510729 4,214312955 3,6294325 0,70493158
+3,3190696 495215,8628 0,39796808 -0,092107654 0 2,9211016 3,969370943 137,5599619 4,215182428 3,6290696 0,70796808
+3,3191078 495247,8629 0,40117642 -0,092114031 0 2,9179313 3,970189713 137,5688508 4,216051902 3,6291078 0,71117642
+3,3191078 495279,8631 0,40396464 -0,092110209 0 2,915143 3,971008479 137,5777398 4,216921372 3,6291078 0,71396464
+3,3188405 495311,8633 0,40690562 -0,092115939 0 2,9119349 3,971827245 137,5866287 4,217790841 3,6288405 0,71690562
+3,3187258 495343,8635 0,40984663 -0,092107654 0 2,9088793 3,972646011 137,5955176 4,218660311 3,6287258 0,71984663
+3,3186495 495375,8636 0,41278762 -0,092101924 0 2,9058619 3,973464777 137,6044066 4,219529781 3,6286495 0,72278762
+3,3184395 495407,8638 0,41607237 -0,092112117 0 2,9023671 3,974283544 137,6132955 4,220399252 3,6284395 0,72607237
+3,3184586 495429,8118 0,41851681 -0,092113383 0 2,8999417 3,974845112 137,6193922 4,220995596 3,6284586 0,72851681
+3,3186495 495429,812 0,41853592 -0,092108302 99,443871 2,9001136 3,974845117 137,6193922 4,220995601 3,6286495 0,72853592
diff --git a/examples/notebooks/battery_parameterisation/ecm_trust-constr.ipynb b/examples/notebooks/battery_parameterisation/ecm_trust-constr.ipynb
new file mode 100644
index 000000000..f5506b3a8
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/ecm_trust-constr.ipynb
@@ -0,0 +1,465 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "# Empirical models with scipy trust-constr:\n",
+ "## Identifying equivalent circuit parameters using bounds, nonlinear constraints, and gradient-based optimisers\n",
+ "\n",
+ "Here, we provide a short example of how to identify equivalent-circuit parameters using the [scipy trust-constr](https://docs.scipy.org/doc/scipy-1.14.0/reference/generated/scipy.optimize.minimize.html) method -- a trust-region based optimiser that can handle parameter bounds, and both linear and nonlinear constraints. As shown here, these turn out to be useful tools for fitting empirical battery models.\n",
+ "\n",
+ "### Importing libraries\n",
+ "\n",
+ "If you don't already have PyBOP installed, check out the [installation guide](https://pybop-docs.readthedocs.io/en/latest/installation.html) first.\n",
+ "\n",
+ "We begin by importing the necessary libraries."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "import scipy.optimize\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "### Initialising the model and parameters\n",
+ "\n",
+ "PyBOP needs to know some model parameters in order to run. Where these are unknown, and to be fitted, any sensible initial guess can be provided.\n",
+ "\n",
+ "Model parameters can either be defined using a PyBOP ```ParameterSet``` object, or by importing from a JSON file. For clarity, we will define the initial parameters from a ```ParameterSet```.\n",
+ "\n",
+ "Here, we'll fit a Thevenin model with two RC pairs. The initial parameter set must contain all the parameters that the PyBaMM model will use, and therefore it will need definitions for each circuit component, and each RC pair overpotential."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = {\n",
+ " \"chemistry\": \"ecm\",\n",
+ " \"Initial SoC\": 0.5,\n",
+ " \"Initial temperature [K]\": 25 + 273.15,\n",
+ " \"Cell capacity [A.h]\": 5,\n",
+ " \"Nominal cell capacity [A.h]\": 5,\n",
+ " \"Ambient temperature [K]\": 25 + 273.15,\n",
+ " \"Current function [A]\": 5,\n",
+ " \"Upper voltage cut-off [V]\": 4.2,\n",
+ " \"Lower voltage cut-off [V]\": 3.0,\n",
+ " \"Cell thermal mass [J/K]\": 1000,\n",
+ " \"Cell-jig heat transfer coefficient [W/K]\": 10,\n",
+ " \"Jig thermal mass [J/K]\": 500,\n",
+ " \"Jig-air heat transfer coefficient [W/K]\": 10,\n",
+ " \"Open-circuit voltage [V]\": pybop.empirical.Thevenin().default_parameter_values[\n",
+ " \"Open-circuit voltage [V]\"\n",
+ " ],\n",
+ " \"R0 [Ohm]\": 0.01,\n",
+ " \"Element-1 initial overpotential [V]\": 0,\n",
+ " \"Element-2 initial overpotential [V]\": 0,\n",
+ " \"R1 [Ohm]\": 0.005,\n",
+ " \"R2 [Ohm]\": 0.0003,\n",
+ " \"C1 [F]\": 10000,\n",
+ " \"C2 [F]\": 5000,\n",
+ " \"Entropic change [V/K]\": 0.0004,\n",
+ "}\n",
+ "\n",
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=parameter_set, options={\"number of rc elements\": 2}\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "### Generating synthetic data\n",
+ "\n",
+ "Ordinarily, we would want to fit models to experimental data. For simplicity we'll use our model to generate some synthetic data, by simulating a discharge and corrupting the results with random noise. We will then use this synthetic data to form a PyBOP ```Dataset```, from which we can demonstrate the model fitting procedure."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sigma = 0.001\n",
+ "t_eval = np.linspace(0, 500, 500)\n",
+ "values = model.predict(t_eval=t_eval)\n",
+ "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(0, sigma, len(t_eval))\n",
+ "\n",
+ "# Form dataset\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "### Identifying parameters\n",
+ "\n",
+ "Now for the fun part! We begin by defining the parameters that we want to fit. In this case, it's the series resistance $R_0$, and the RC parameters $R_1$ and $C_1$. Since we don't want to make things too easy, we've set up our parameters to have quite different values to those used in simulating the data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"R0 [Ohm]\",\n",
+ " prior=pybop.Gaussian(2e-3, 1e-4),\n",
+ " bounds=[1e-4, 1e-1],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R1 [Ohm]\",\n",
+ " prior=pybop.Gaussian(1e-3, 1e-4),\n",
+ " bounds=[1e-5, 1e-2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C1 [F]\",\n",
+ " prior=pybop.Gaussian(5000, 300),\n",
+ " bounds=[2500, 5e4],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8",
+ "metadata": {},
+ "source": [
+ "We can now set up a problem and cost for identifying these parameters from our synthetic dataset."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10",
+ "metadata": {},
+ "source": [
+ "The voltage over any given RC branch will evolve over a timescale $\\tau = R \\times C$. The data we work with will place some limits on which parameters can realistically be identified. We can't expect to fit fast timescales with low sample-rate data; similarly, we can't get good parameters for a long timescale if we only have short amounts of data. \n",
+ "\n",
+ "To illustrate, imagine trying to fit a timescale of $\\tau=0.1$ s from data with a sample rate of 1 Hz. Virtually all the interesting dynamics will have happened over the course of a single sample, so there's not enough information to work from for parameter identification. Similarly, it would be unreasonable to fit a timescale of $\\tau=1000$ s from only one minute of data; across the range of data that we have, the dynamics will have barely changed, giving us very little to work from for fitting $R$ and $C$.\n",
+ "\n",
+ "In general therefore, we need to be careful to make sure our parameter values are sensible. To make sure that the optimiser doesn't propose excessively long or short timescales, we can use nonlinear constraints. The ```scipy.optimize.NonlinearConstraint``` function handles this for us."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "11",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "tau_constraint = scipy.optimize.NonlinearConstraint(lambda x: x[1] * x[2], 5, 750)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "12",
+ "metadata": {},
+ "source": [
+ "Let's dig into what's going on here.\n",
+ "\n",
+ "The nonlinear constraint will receive a parameter vector from PyBOP. We know from our parameters list that parameter 0 will be $R_0$, \n",
+ "parameter 1 will be $R_1$, and parameter 2 will be $C_1$. We can therefore compute the RC timescale $R_1 \\times C_1$ using ```lambda x: x[1] * x[2]```. Next, we tell scipy that we want this to be constrained to the range $5\\leq R_1 \\times C_1 \\leq 750$. There's a lot of flexibility in our choice of lower and upper bounds, however these are reasonable numbers given our sampling rate (1 Hz), and data time-span (500 s).\n",
+ "\n",
+ "Now all we need to do is set up an optimiser to use this."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "13",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "optim = pybop.SciPyMinimize(\n",
+ " cost,\n",
+ " method=\"trust-constr\",\n",
+ " constraints=tau_constraint,\n",
+ " max_iterations=100,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "14",
+ "metadata": {},
+ "source": [
+ "Note that ```COBYLA```, ```COBYQA```, and ```SLSQP``` can also be used as the method; these are all different Scipy optimisers with constraint capabilities.\n",
+ "\n",
+ "Finally, we run the parameteriser, and plot some results. Don't worry if the solver sometimes terminates early -- this happens when the model receives a bad set of parameters, but PyBOP will catch and handle these cases automatically."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "15",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "OptimisationResult:\n",
+ " Initial parameters: [2.01470532e-03 1.05171055e-03 4.57653422e+03]\n",
+ " Optimised parameters: [8.41410880e-03 6.45916310e-03 4.57841684e+03]\n",
+ " Final cost: 0.0013884834785099927\n",
+ " Optimisation time: 8.70180082321167 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: Yes\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "results = optim.run()\n",
+ "\n",
+ "# Plot the time series\n",
+ "pybop.plot.dataset(dataset)\n",
+ "\n",
+ "# Plot the timeseries output\n",
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\")\n",
+ "\n",
+ "# Plot convergence\n",
+ "pybop.plot.convergence(optim)\n",
+ "# Plot the parameter traces\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "16",
+ "metadata": {},
+ "source": [
+ "### Conclusion\n",
+ "\n",
+ "Here, we have considered parameter estimation for an equivalent circuit model. We have introduced some issues of practical identifiability, whereby particularly fast or slow timescales can't be parameterised very well. To work around this challenge, nonlinear constraints have been implemented.\n",
+ "\n",
+ "A difficulty here is that fitting RC parameters is a [sloppy problem](https://sethna.lassp.cornell.edu/Sloppy/FittingExponentials.html) -- there's a range of timescales that will all produce reasonable looking results, and an optimiser will struggle to choose any one timescale over another. Gradient-free methods such as ```pybop.CMAES``` may do a better job of fitting timescales. Nevertheless, the resistance values can be fitted very accurately with gradient-based methods, whereas gradient-free methods don't always come up with such a good solution.\n",
+ "\n",
+ "The ideal approach would be to fit resistances with gradient-based or ordinary least-squares methods, and timescales using gradient-free optimisers. In the absence of this approach, general recommendations are as follows...\n",
+ "\n",
+ "+ If good initial guesses are available for the RC timescales, use a gradient-based method in the way we've done here, as it'll typically give the most accurate fit;\n",
+ "+ Otherwise, use a gradient-free method to estimate timescales, then maybe consider moving back to a gradient-based method!"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/battery_parameterisation/electrode_balancing.ipynb b/examples/notebooks/battery_parameterisation/electrode_balancing.ipynb
new file mode 100644
index 000000000..e929b2b9e
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/electrode_balancing.ipynb
@@ -0,0 +1,432 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Electrode balancing\n",
+ "\n",
+ "In this notebook we provide an example on how to perform electrode balancing for a half cell. The goal is to find the conversion from capacity to stoichiometry for a given measured electrode, by using a reference dataset for which voltage is known as a function of the stoichiometry.\n",
+ "\n",
+ "## Set the environment\n",
+ "We start by installing and importing the necessary libraries."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "# Import the necessary libraries\n",
+ "import numpy as np\n",
+ "import pandas as pd\n",
+ "import pybamm\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Load the data\n",
+ "We start by loading the data, which is available in the [pybamm-param repository](https://www.github.com/paramm-team/pybamm-param). We load half cell data (which is the versus stoichiometry and thus the reference one) and the three-electrode data (which is the one we want to balance). The measurements are for an LGM50 cell, with a graphite and SiOx negative electrode and an NMC811 positive electrode."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# .csv files are uploaded for Anode\n",
+ "base_url = \"https://raw.githubusercontent.com/paramm-team/pybamm-param/develop/pbparam/input/data/\"\n",
+ "reference_data = pd.read_csv(\n",
+ " base_url + \"anode_OCP_2_lit.csv\"\n",
+ ") # half cell lithiation data\n",
+ "measured_data = pd.read_csv(\n",
+ " base_url + \"anode_OCP_3_lit.csv\"\n",
+ ") # three-electrode full cell lithiation data\n",
+ "\n",
+ "# Drop negative capacity values\n",
+ "measured_data = measured_data.drop(\n",
+ " measured_data[measured_data[\"Capacity [A.h]\"] < 0].index\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Setup model, parameters and data\n",
+ "\n",
+ "To perform the electrode balancing, we will use an ECM model consisting only of the OCV component. To achieve that, we will set the resistance to zero. We will also change the upper and lower voltage limits to ensure we do not hit them during the optimisation. For the OCV, we will use the reference data we just loaded."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def ocv(sto):\n",
+ " return pybamm.Interpolant(\n",
+ " reference_data[\"Stoichiometry\"].to_numpy(),\n",
+ " reference_data[\"Voltage [V]\"].to_numpy(),\n",
+ " sto,\n",
+ " \"reference OCV\",\n",
+ " )\n",
+ "\n",
+ "\n",
+ "parameter_set = pybop.empirical.Thevenin().default_parameter_values\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Initial SoC\": 0,\n",
+ " \"Entropic change [V/K]\": 0,\n",
+ " \"R0 [Ohm]\": 0,\n",
+ " \"Lower voltage cut-off [V]\": 0,\n",
+ " \"Upper voltage cut-off [V]\": 5,\n",
+ " \"Open-circuit voltage [V]\": ocv,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now we can just assemble the model. We use the `Thevenin` model with no RC elements:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=parameter_set, options={\"number of rc elements\": 0}\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We define the parameters we want to optimise. In this case, we need to optimise the initial SoC and the cell capacity, which will be needed to convert the capacity to stoichiometry."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Initial SoC\",\n",
+ " prior=pybop.Uniform(0, 0.5),\n",
+ " bounds=[0, 0.5],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Cell capacity [A.h]\",\n",
+ " prior=pybop.Uniform(0.01, 50),\n",
+ " bounds=[0.01, 50],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now we need to assemble the dataset. This is a bit tricky, as we are doing an electrode balancing but in theory we are solving a discharge problem. However, we can use that if we impose a 1 A discharge, the time (in hours) will be the same as the capacity in (in Ah). Therefore, we can treat time as capacity, we just need to scale it to the correct units (as PyBaMM models take time in seconds). Note that in this case current is negative as we are lithiating the electrode."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Form dataset\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": measured_data[\"Capacity [A.h]\"].to_numpy() * 3600,\n",
+ " \"Current function [A]\": -np.ones(len(measured_data[\"Capacity [A.h]\"])),\n",
+ " \"Voltage [V]\": measured_data[\"Voltage [V]\"].to_numpy(),\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Identifying the parameters\n",
+ "\n",
+ "Once we have defined the model, parameters and dataset, we can just proceed to the optimisation. We define the `FittingProblem` and the cost, for which we choose the sum squared error."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We choose the `SciPyMinimize` optimiser and we solve the optimisation problem. We can then print and plot the results."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/lib/python3.12/site-packages/pybamm/solvers/base_solver.py:762: SolverWarning:\n",
+ "\n",
+ "Explicit interpolation times not implemented for CasADi solver with 'safe' mode\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "OptimisationResult:\n",
+ " Initial parameters: [1.90442636e-02 3.24021877e+01]\n",
+ " Optimised parameters: [0.00923553 4.97209063]\n",
+ " Final cost: 0.0038212683454862052\n",
+ " Optimisation time: 2.6001641750335693 seconds\n",
+ " Number of iterations: 57\n",
+ " SciPy result available: Yes\n"
+ ]
+ }
+ ],
+ "source": [
+ "optim = pybop.SciPyMinimize(cost, max_iterations=300)\n",
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Converting capacity to stoichiometry\n",
+ "\n",
+ "However, the whole goal of the electrode balancing was to convert capacity to stoichiometry, so how can we do that? To convert capacity $Q$ to stoichiometry $x$, we can simply use the following equation:\n",
+ "\n",
+ "$$\n",
+ "x = \\pm \\frac{Q}{Q_{\\text{cell}}} + x_0.\n",
+ "$$\n",
+ "Here, the choice of plus and minus depends on whether we are lithiating or delithiating the electrode (it is related to whether the current in the data is positive or negative). $Q_{\\text{cell}}$ is the cell capacity and $x_0$ is the initial stoichiometry, which are the two parameters we fitted. We can now convert the measured data and plot it against the reference data to check that the electrode balancing was correct."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "from plotly import graph_objects as go\n",
+ "\n",
+ "fig = go.Figure(\n",
+ " layout=go.Layout(title=\"OCP Balance\", width=800, height=600),\n",
+ ")\n",
+ "\n",
+ "fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=reference_data[\"Stoichiometry\"],\n",
+ " y=reference_data[\"Voltage [V]\"],\n",
+ " mode=\"lines\",\n",
+ " name=\"reference\",\n",
+ " ),\n",
+ ")\n",
+ "\n",
+ "Q = results.x[1]\n",
+ "sto_0 = results.x[0]\n",
+ "\n",
+ "sto = measured_data[\"Capacity [A.h]\"].to_numpy() / Q + sto_0\n",
+ "\n",
+ "fig.add_trace(\n",
+ " go.Scatter(x=sto, y=measured_data[\"Voltage [V]\"], mode=\"lines\", name=\"fitted\"),\n",
+ ")\n",
+ "\n",
+ "# Update axes labels\n",
+ "fig.update_xaxes(title_text=\"Stoichiometry\")\n",
+ "fig.update_yaxes(title_text=\"Voltage [V]\")\n",
+ "\n",
+ "# Show figure\n",
+ "fig.show()"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "env",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/examples/notebooks/battery_parameterisation/equivalent_circuit_identification.ipynb b/examples/notebooks/battery_parameterisation/equivalent_circuit_identification.ipynb
new file mode 100644
index 000000000..1d5f6262b
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/equivalent_circuit_identification.ipynb
@@ -0,0 +1,552 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "# Equivalent Circuit Parameter Identification\n",
+ "\n",
+ "This notebook provides example usage for identifying stationary parameters for a two RC branch Thevenin model. The Thevenin model represents an electrochemical battery through an empirical circuit model capable of capturing the electrical response of the battery. This model can be extended with a thermal submodel, as well as additional parallel resistor-capacitor branches.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP from its development branch and upgrade some dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "### Importing Libraries\n",
+ "\n",
+ "With the environment set up, we can now import PyBOP alongside other libraries we will need:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "import pybamm\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "## Importing Parameters\n",
+ "\n",
+ "This can be completed by importing a JSON representation, such as the one in the PyBOP [examples](https://github.com/pybop-team/PyBOP/blob/develop/examples/parameters/initial_ecm_parameters.json). To import via JSON, either download the example file, or create your own and update the path below to reference the corresponding file."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# parameter_set = pybop.ParameterSet(\n",
+ "# json_path=\"examples/parameters/initial_ecm_parameters.json\"\n",
+ "# )\n",
+ "# parameter_set.import_parameters()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8",
+ "metadata": {},
+ "source": [
+ "Alternatively, define the initial parameter set with a dictionary. Ensure you have definitions for all R's, C's, and initial overpotentials for any additional RC elements.\n",
+ "\n",
+ "In this example, we use the default parameter value for the \"Open-circuit voltage [V] as provided by the original PyBaMM class. To update this, provide a function definition that matches this [function](https://github.com/pybamm-team/PyBaMM/blob/1943aa5ab2895b5378220595923dbae3d66b13c9/pybamm/input/parameters/ecm/example_set.py#L17)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybamm.ParameterValues(\"ECM_Example\")\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Cell capacity [A.h]\": 5,\n",
+ " \"Nominal cell capacity [A.h]\": 5,\n",
+ " \"Current function [A]\": 5,\n",
+ " \"Initial SoC\": 0.5,\n",
+ " \"Element-1 initial overpotential [V]\": 0,\n",
+ " \"Upper voltage cut-off [V]\": 4.2,\n",
+ " \"Lower voltage cut-off [V]\": 3.0,\n",
+ " \"R0 [Ohm]\": 1e-3,\n",
+ " \"R1 [Ohm]\": 2e-4,\n",
+ " \"C1 [F]\": 1e4,\n",
+ " \"Open-circuit voltage [V]\": pybop.empirical.Thevenin().default_parameter_values[\n",
+ " \"Open-circuit voltage [V]\"\n",
+ " ],\n",
+ " }\n",
+ ")\n",
+ "# Optional arguments - only needed for two RC pairs\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"R2 [Ohm]\": 0.0003,\n",
+ " \"C2 [F]\": 40000,\n",
+ " \"Element-2 initial overpotential [V]\": 0,\n",
+ " },\n",
+ " check_already_exists=False,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10",
+ "metadata": {},
+ "source": [
+ "## Identifying the Parameters\n",
+ "\n",
+ "Now that the initial parameter set is constructed, we can start the PyBOP fitting process. First, we define the model class with two RC elements."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "11",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=parameter_set, options={\"number of rc elements\": 2}\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "12",
+ "metadata": {},
+ "source": [
+ "In this example, we are going to try to fit all five parameters at once. This isn't recommend for real-life application as identifiablity is challenging to guarantee with this large a parameter space. To do this, we define the `pybop.Parameters` as,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "13",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"R0 [Ohm]\",\n",
+ " prior=pybop.Gaussian(2 - 4, 1e-4),\n",
+ " bounds=[1e-4, 1e-2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R1 [Ohm]\",\n",
+ " prior=pybop.Gaussian(1e-4, 1e-4),\n",
+ " bounds=[1e-5, 1e-2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R2 [Ohm]\",\n",
+ " prior=pybop.Gaussian(1e-4, 1e-4),\n",
+ " bounds=[1e-5, 1e-2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C1 [F]\",\n",
+ " prior=pybop.Gaussian(1e4, 5e2),\n",
+ " bounds=[2.5e3, 5e4],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C2 [F]\",\n",
+ " prior=pybop.Gaussian(1e4, 5e2),\n",
+ " bounds=[2.5e3, 5e4],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "14",
+ "metadata": {},
+ "source": [
+ "Let's create some synthetic data to identify the parameters. This data is then corrupted with a small amount of Gaussian noise to represent some additional uncertainty in the measured values. We can then form the `pybop.Dataset` from this data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "15",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sigma = 0.001\n",
+ "t_eval = np.arange(0, 900, 3)\n",
+ "values = model.predict(t_eval=t_eval)\n",
+ "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(0, sigma, len(t_eval))\n",
+ "\n",
+ "# Form dataset\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "16",
+ "metadata": {},
+ "source": [
+ "The `FittingProblem` class provides us with a single class that holds all of the objects we need to evaluate our selected `SumSquaredError` cost function. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "17",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "18",
+ "metadata": {},
+ "source": [
+ "The cost function can be interrogated manually via the `cost([params])` API. In this example, that would look like the following,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "19",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0.017324210933474568"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.001, 0.001, 0.001, 5000, 5000])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "20",
+ "metadata": {},
+ "source": [
+ "Next, we construct the optimisation class with our algorithm of choice and run it. In this case, we select the CMA-ES method as it provides global optimisation capability. For the sake of reducing the runtime of this example, we limit the maximum iterations to 100; however, feel free to update this value."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "21",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 50 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [1.00990000e-04 2.09128273e-04 1.09990000e-05 9.30682523e+03\n",
+ " 8.85175421e+03]\n",
+ " Optimised parameters: [7.15236427e-04 4.90629050e-04 2.80089449e-04 9.29462538e+03\n",
+ " 8.75074954e+03]\n",
+ " Final cost: 0.0002759966220781992\n",
+ " Optimisation time: 6.4131858348846436 seconds\n",
+ " Number of iterations: 59\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optim = pybop.XNES(\n",
+ " cost,\n",
+ " sigma0=[1e-4, 1e-4, 1e-4, 10, 10],\n",
+ " max_unchanged_iterations=50,\n",
+ " max_iterations=250,\n",
+ ")\n",
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "22",
+ "metadata": {},
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualize the results of the optimisation."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "23",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "24",
+ "metadata": {},
+ "source": [
+ "### Convergence and Parameter Trajectories\n",
+ "\n",
+ "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "25",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.convergence(optim)\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "26",
+ "metadata": {},
+ "source": [
+ "### Conclusion\n",
+ "\n",
+ "This notebook illustrates how to perform parameter estimation using CMA-ES in PyBOP, providing insights into the optimisation process through various visualisations."
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/battery_parameterisation/equivalent_circuit_identification_hppc.ipynb b/examples/notebooks/battery_parameterisation/equivalent_circuit_identification_hppc.ipynb
new file mode 100644
index 000000000..cb13dc55d
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/equivalent_circuit_identification_hppc.ipynb
@@ -0,0 +1,570 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "# Estimating ECM Parameters & Running a Thermal Submodel\n",
+ "\n",
+ "This notebook provides example usage for estimating stationary parameters for a two RC branch Thevenin model. With the estimated parameters, a thermal model is created and predictions are made.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP from its development branch and upgrade some dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets openpyxl pandas -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "import pandas as pd\n",
+ "import pybamm\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "In this example, we use the default parameter value for the `\"Open-circuit voltage [V]\"` as provided by the original PyBaMM class. To update this, provide a function definition that matches this [function](https://github.com/pybamm-team/PyBaMM/blob/1943aa5ab2895b5378220595923dbae3d66b13c9/pybamm/input/parameters/ecm/example_set.py#L17). First, we load and update the ECM input parameters,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"ECM_Example\")\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Cell capacity [A.h]\": 3,\n",
+ " \"Nominal cell capacity [A.h]\": 3,\n",
+ " \"Element-1 initial overpotential [V]\": 0,\n",
+ " \"Upper voltage cut-off [V]\": 4.2,\n",
+ " \"Lower voltage cut-off [V]\": 2.5,\n",
+ " \"R0 [Ohm]\": 1e-3,\n",
+ " \"R1 [Ohm]\": 3e-3,\n",
+ " \"C1 [F]\": 5e2,\n",
+ " \"Open-circuit voltage [V]\": pybop.empirical.Thevenin().default_parameter_values[\n",
+ " \"Open-circuit voltage [V]\"\n",
+ " ],\n",
+ " }\n",
+ ")\n",
+ "# Optional arguments - only needed for two RC pairs\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"R2 [Ohm]\": 0.002,\n",
+ " \"C2 [F]\": 3e4,\n",
+ " \"Element-2 initial overpotential [V]\": 0,\n",
+ " },\n",
+ " check_already_exists=False,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "Now that the initial parameter set is constructed, we can start the PyBOP fitting process. First, we define the model class with two RC elements."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=parameter_set,\n",
+ " options={\"number of rc elements\": 2},\n",
+ " solver=pybamm.CasadiSolver(mode=\"safe\", dt_max=10),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "Next we need to select the data for parameter identification. In this example we use a single HPPC pulse from the \n",
+ "`Kollmeyer, Phillip; Skells, Michael (2020), “Samsung INR21700 30T 3Ah Li-ion Battery Data”, Mendeley Data, V1, doi: 10.17632/9xyvy2njj3.1` dataset. This is imported and used to construct the `pybop.Dataset` class,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "file_loc = r\"../../data/Samsung_INR21700/sample_hppc_pulse.xlsx\"\n",
+ "df = pd.read_excel(file_loc, index_col=None, na_values=[\"NA\"])\n",
+ "df = df.drop_duplicates(subset=[\"Time\"], keep=\"first\")\n",
+ "\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": df[\"Time\"].to_numpy(),\n",
+ " \"Current function [A]\": df[\"Current\"].to_numpy(),\n",
+ " \"Voltage [V]\": df[\"Voltage\"].to_numpy(),\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8",
+ "metadata": {},
+ "source": [
+ "Next, we need to define the parameter for identification. In this example, we've construct a two-branch Thevenin model, so we will select those parameters for identification. The initial guess for the resistance parameter is generated from a random sample of the prior distributions. These are influenced by the `r_guess` parameter below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "r_guess = 0.005\n",
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"R0 [Ohm]\",\n",
+ " prior=pybop.Gaussian(r_guess, r_guess / 10),\n",
+ " bounds=[0, 0.2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R1 [Ohm]\",\n",
+ " prior=pybop.Gaussian(r_guess, r_guess / 10),\n",
+ " bounds=[0, 0.2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R2 [Ohm]\",\n",
+ " prior=pybop.Gaussian(r_guess, r_guess / 10),\n",
+ " bounds=[0, 0.2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C1 [F]\",\n",
+ " prior=pybop.Gaussian(500, 100),\n",
+ " bounds=[100, 10000],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C2 [F]\",\n",
+ " prior=pybop.Gaussian(2000, 500),\n",
+ " bounds=[100, 10000],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10",
+ "metadata": {},
+ "source": [
+ "The `FittingProblem` class provides us with a single class that holds the objects we need to evaluate our selected `SumSquaredError` cost function. As we haven't built the model, we first do that with an initial OCV state selected from the first data point in the HPPC pulse."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "11",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model.build(\n",
+ " initial_state={\"Initial open-circuit voltage [V]\": df[\"Voltage\"].to_numpy()[0]}\n",
+ ")\n",
+ "problem = pybop.FittingProblem(\n",
+ " model,\n",
+ " parameters,\n",
+ " dataset,\n",
+ ")\n",
+ "\n",
+ "cost = pybop.SumSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "12",
+ "metadata": {},
+ "source": [
+ "Next, we construct the optimisation class with our algorithm of choice and run it. In this case, we select the XNES method as it provides global optimisation capability. For the sake of reducing the runtime of this example, we limit the maximum iterations to 100; however, feel free to update this value. Due to the scale differences in the parameters, we update the optimiser step-size (`sigma0`) to be parameter specific, which helps ensure the optimiser explores the complete parameter space."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "13",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/lib/python3.12/site-packages/pybamm/solvers/base_solver.py:762: SolverWarning:\n",
+ "\n",
+ "Explicit interpolation times not implemented for CasADi solver with 'safe' mode\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [5.68306791e-03 4.62654456e-03 4.63133641e-03 5.39464654e+02\n",
+ " 1.88179670e+03]\n",
+ " Optimised parameters: [9.35370665e-03 4.13523900e-03 2.14724423e-02 2.65501768e+02\n",
+ " 1.57309807e+03]\n",
+ " Final cost: 0.00017890709960192562\n",
+ " Optimisation time: 13.175962924957275 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optim = pybop.XNES(\n",
+ " cost,\n",
+ " sigma0=[1e-3, 1e-3, 1e-3, 20, 20],\n",
+ " max_unchanged_iterations=30,\n",
+ " max_iterations=100,\n",
+ ")\n",
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "14",
+ "metadata": {},
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "Next, we use PyBOP's plotting utilities to visualise the results of the optimisation. This provides us with a visual confirmation of the optimisers' converged parameter values in the time-domain output."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "15",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "16",
+ "metadata": {},
+ "source": [
+ "## Convergence and Parameter Trajectories\n",
+ "\n",
+ "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "17",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.convergence(optim)\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "18",
+ "metadata": {},
+ "source": [
+ "## Using the estimated parameter for thermal predictions\n",
+ "With the estimated RC parameters, the temperature distribution for a given drive cycle can be calculated using the identified Thevenin model. We now we use a `.xlsx` file containing time-series current data as a pybamm experiment. A sample file is used here, but user's may choose to upload customized drive cycle."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "19",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "file_loc = r\"../../data/Samsung_INR21700/sample_drive_cycle.xlsx\"\n",
+ "df = pd.read_excel(file_loc, sheet_name=\"Sheet3\", index_col=None, na_values=[\"NA\"])\n",
+ "\n",
+ "# Remove duplicate rows, keeping the first occurrence\n",
+ "df = df.drop_duplicates(subset=[\"Time\"], keep=\"first\")\n",
+ "\n",
+ "# Create the pybamm experiment\n",
+ "experiment = pybamm.Experiment([pybamm.step.current(df.to_numpy())])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "20",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[Step([[ 0 3]\n",
+ " [ 1 3]\n",
+ " [ 2 3]\n",
+ " ...\n",
+ " [3598 3]\n",
+ " [3599 3]\n",
+ " [3600 3]], duration=3600, period=1, direction=Discharge)]"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "experiment.steps"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "21",
+ "metadata": {},
+ "source": [
+ "Update the estimated RC values. These values will be used to calculate heat generation and corresponding temperature distribution in the thermal submodel. Given `model.predict` is a light wrapper on the `PyBaMM.Simulation` class, we interact with it the same way. Visualisation of voltage response and cell temperature is plotted below using the PyBaMM solution."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "22",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "2024-10-21 17:28:38.587 - [WARNING] callbacks.on_experiment_infeasible_time(240): \n",
+ "\n",
+ "\tExperiment is infeasible: default duration (3600 seconds) was reached during 'Step([[ 0 3]\n",
+ " [ 1 3]\n",
+ " [ 2 3]\n",
+ " ...\n",
+ " [3598 3]\n",
+ " [3599 3]\n",
+ " [3600 3]], duration=3600, period=1, direction=Discharge)'. The returned solution only contains up to step 1 of cycle 1. Please specify a duration in the step instructions.\n"
+ ]
+ }
+ ],
+ "source": [
+ "sol = model.predict(\n",
+ " inputs=results.x,\n",
+ " experiment=experiment,\n",
+ " parameter_set=parameter_set,\n",
+ " initial_state={\"Initial SoC\": 0.95},\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "23",
+ "metadata": {},
+ "source": [
+ "## Conclusion\n",
+ "\n",
+ "This notebook illustrates how to extract EC parameters from an HPPC pulse using XNES in PyBOP, providing insights into the optimisation process through various visualisations. The estimated parameters are then used to run a thermal submodel."
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/battery_parameterisation/equivalent_circuit_identification_multipulse.ipynb b/examples/notebooks/battery_parameterisation/equivalent_circuit_identification_multipulse.ipynb
new file mode 100644
index 000000000..e4e4a7401
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/equivalent_circuit_identification_multipulse.ipynb
@@ -0,0 +1,605 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "# Estimating ECM Parameters from Multi-Pulse HPPC Data\n",
+ "\n",
+ "This notebook provides example usage for estimating stationary parameters for a two RC branch Thevenin model using multi-pulse HPPC data.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP from its development branch and upgrade some dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets openpyxl pandas -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "import pandas as pd\n",
+ "import plotly.graph_objects as go\n",
+ "import pybamm\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "In this example, we use the default parameter value for the \"Open-circuit voltage [V] as provided by the original PyBaMM class. The other relevant parameters for the ECM model implementation are updated as per the cell specification."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Load the parameters\n",
+ "parameter_set = pybop.ParameterSet.pybamm(\"ECM_Example\")\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Cell capacity [A.h]\": 3,\n",
+ " \"Nominal cell capacity [A.h]\": 3,\n",
+ " \"Element-1 initial overpotential [V]\": 0,\n",
+ " \"Upper voltage cut-off [V]\": 4.2,\n",
+ " \"Lower voltage cut-off [V]\": 2.5,\n",
+ " \"R0 [Ohm]\": 1e-3,\n",
+ " \"R1 [Ohm]\": 3e-3,\n",
+ " \"C1 [F]\": 5e2,\n",
+ " \"Open-circuit voltage [V]\": pybop.empirical.Thevenin().default_parameter_values[\n",
+ " \"Open-circuit voltage [V]\"\n",
+ " ],\n",
+ " }\n",
+ ")\n",
+ "# Optional arguments - only needed for two RC pairs\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"R2 [Ohm]\": 2e-3,\n",
+ " \"C2 [F]\": 3e4,\n",
+ " \"Element-2 initial overpotential [V]\": 0,\n",
+ " },\n",
+ " check_already_exists=False,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "## Identifying the Parameters\n",
+ "\n",
+ "Now that the initial parameter set is constructed, we can start the PyBOP fitting process. First, we define the model class with two RC elements. One important thing here to note is \"maximum solver timestep\" (dt_max) needs to be set correctly to have a good fit."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=parameter_set,\n",
+ " options={\"number of rc elements\": 2},\n",
+ " solver=pybamm.CasadiSolver(mode=\"safe\", dt_max=40),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "We use multiple HPPC pulses from the dataset: Kollmeyer, Phillip; Skells, Michael (2020), “Samsung INR21700 30T 3Ah Li-ion Battery Data”, Mendeley Data, V1, doi: 10.17632/9xyvy2njj3.1 "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "file_loc = r\"../../data/Samsung_INR21700/multipulse_hppc.xlsx\"\n",
+ "df = pd.read_excel(file_loc, index_col=None, na_values=[\"NA\"])\n",
+ "df = df.drop_duplicates(subset=[\"Time\"], keep=\"first\")\n",
+ "\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": df[\"Time\"].to_numpy(),\n",
+ " \"Current function [A]\": df[\"Current\"].to_numpy(),\n",
+ " \"Voltage [V]\": df[\"Voltage\"].to_numpy(),\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "8",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "r0_guess = 0.005\n",
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"R0 [Ohm]\",\n",
+ " prior=pybop.Gaussian(r0_guess, r0_guess / 10),\n",
+ " bounds=[0, 0.1],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R1 [Ohm]\",\n",
+ " prior=pybop.Gaussian(r0_guess, r0_guess / 10),\n",
+ " bounds=[0, 0.1],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R2 [Ohm]\",\n",
+ " prior=pybop.Gaussian(r0_guess, r0_guess / 10),\n",
+ " bounds=[0, 0.1],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C1 [F]\",\n",
+ " prior=pybop.Gaussian(500, 100),\n",
+ " bounds=[100, 1000],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C2 [F]\",\n",
+ " prior=pybop.Gaussian(2000, 500),\n",
+ " bounds=[1000, 10000],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# To see current vs time profile.\n",
+ "fig1 = go.Figure()\n",
+ "# Add a line trace for current vs. time\n",
+ "fig1.add_trace(\n",
+ " go.Scatter(\n",
+ " x=df[\"Time\"].to_numpy(),\n",
+ " y=df[\"Current\"].to_numpy(),\n",
+ " mode=\"lines\", # 'lines', 'markers', or 'lines+markers'\n",
+ " name=\"Current vs Time\",\n",
+ " )\n",
+ ")\n",
+ "\n",
+ "# Customize layout\n",
+ "fig1.update_layout(\n",
+ " title=\"Current vs Time\",\n",
+ " xaxis_title=\"Time (s)\",\n",
+ " yaxis_title=\"Current (A)\",\n",
+ " template=\"plotly\", # Use a Plotly template (optional)\n",
+ ")\n",
+ "\n",
+ "# Show the plot\n",
+ "fig1.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "10",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# To see voltage vs time profile.\n",
+ "fig2 = go.Figure()\n",
+ "# Add a line trace for current vs. time\n",
+ "fig2.add_trace(\n",
+ " go.Scatter(\n",
+ " x=df[\"Time\"].to_numpy(),\n",
+ " y=df[\"Voltage\"].to_numpy(),\n",
+ " mode=\"lines\", # 'lines', 'markers', or 'lines+markers'\n",
+ " name=\"Voltage vs Time\",\n",
+ " )\n",
+ ")\n",
+ "\n",
+ "# Customize layout\n",
+ "fig2.update_layout(\n",
+ " title=\"Voltage vs Time\",\n",
+ " xaxis_title=\"Time (s)\",\n",
+ " yaxis_title=\"Voltage (V)\",\n",
+ " template=\"plotly\", # Use a Plotly template (optional)\n",
+ ")\n",
+ "\n",
+ "# Show the plot\n",
+ "fig2.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "11",
+ "metadata": {},
+ "source": [
+ "The `FittingProblem` class provides us with a single class that holds all of the objects we need to evaluate our selected `SumSquaredError` cost function.\n",
+ "\n",
+ "Initial state can be either \"Initial SoC\" or \"Initial open-circuit voltage [V]\". In this example, we get the initial OCV by accessing the voltage data. However, user can simply use a value instead, e.g., {\"Initial open-circuit voltage [V]\": 4.1}. Similarly, if SOC input is required, {\"Initial SoC\": 0.95}."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "12",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model.build(\n",
+ " initial_state={\"Initial open-circuit voltage [V]\": df[\"Voltage\"].to_numpy()[0]}\n",
+ ")\n",
+ "problem = pybop.FittingProblem(\n",
+ " model,\n",
+ " parameters,\n",
+ " dataset,\n",
+ ")\n",
+ "\n",
+ "cost = pybop.SumSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "13",
+ "metadata": {},
+ "source": [
+ "Next, we construct the optimisation class with our algorithm of choice and run it. In this case, we select the CMA-ES method as it provides global optimisation capability. For the sake of reducing the runtime of this example, we limit the maximum iterations to 100; however, feel free to update this value."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "14",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/lib/python3.12/site-packages/pybamm/solvers/base_solver.py:762: SolverWarning:\n",
+ "\n",
+ "Explicit interpolation times not implemented for CasADi solver with 'safe' mode\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [3.97387634e-03 4.25500910e-03 3.85039109e-03 4.55295623e+02\n",
+ " 1.93038193e+03]\n",
+ " Optimised parameters: [9.55811673e-03 3.31919040e-03 1.76755904e-02 2.41500501e+02\n",
+ " 1.46563700e+03]\n",
+ " Final cost: 0.00186863751963031\n",
+ " Optimisation time: 35.69897198677063 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optim = pybop.XNES(\n",
+ " cost,\n",
+ " sigma0=[1e-3, 1e-3, 1e-3, 10, 10],\n",
+ " max_unchanged_iterations=20,\n",
+ " max_iterations=100,\n",
+ ")\n",
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "15",
+ "metadata": {},
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualize the results of the optimisation."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "16",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "17",
+ "metadata": {},
+ "source": [
+ "### Convergence and Parameter Trajectories\n",
+ "\n",
+ "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "18",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.convergence(optim)\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "19",
+ "metadata": {},
+ "source": [
+ "### Conclusion\n",
+ "\n",
+ "This notebook illustrates how to perform parameter estimation for multi-pulse HPPC data, providing insights into the optimisation process through various visualisations."
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/battery_parameterisation/monte_carlo_ecm_identification.ipynb b/examples/notebooks/battery_parameterisation/monte_carlo_ecm_identification.ipynb
new file mode 100644
index 000000000..730a51311
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/monte_carlo_ecm_identification.ipynb
@@ -0,0 +1,998 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "## Equivalent Circuit Bayesian Inference\n",
+ "\n",
+ "In this notebook, we introduce the Monte Carlo sampling methods for an example Thevenin model. This notebook includes importing experimental data for a Tesla 4680 NCA/Gr cell, and identifying the resistance elements of a two-RC Thevenin model. First, we import PyBOP and the required packages,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n",
+ "Note: you may need to restart the kernel to use updated packages.\n",
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "%pip install pandas -q\n",
+ "\n",
+ "import sys\n",
+ "\n",
+ "import numpy as np\n",
+ "import pandas as pd\n",
+ "import pybamm\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\"\n",
+ "parallel = True if sys.platform != \"win32\" else False"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "Next, we will import and process the experimental data. The data for this notebook was obtained from the supplemental data provided in: \n",
+ "\n",
+ "[1] M. Ank et al., ‘Lithium-Ion Cells in Automotive Applications: Tesla 4680 Cylindrical Cell Teardown and Characterization’, doi: 10.1149/1945-7111/ad14d0.\n",
+ "\n",
+ "A portion of this data is retained in the PyBOP repository for use in parameterisation and optimisation examples. However, users' are pointed to the official location https://mediatum.ub.tum.de/1725661 for more information. First, we import the three-electrode pOCV dataset,\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "ocv_df = pd.read_csv(\n",
+ " \"../../data/Tesla_4680/T-cell_pOCV_data.txt\",\n",
+ " sep=\"\\t\",\n",
+ " decimal=\",\",\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "Next, let's plot the terminal voltage to visualise the protocol. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiYAAAGwCAYAAACdGa6FAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABVdElEQVR4nO3dd1zU9R8H8NcdB8e8YynbPXCAe4CZ5jYzNa30R4JmlpZlpWW0lyuzsiw0d6ZRmmaZIzXRTERAUBQ3IKgMReGOdcDd9/cHckUuxsH3xuv5eNyj7nvfu+8bv+q9/EyJIAgCiIiIiIyAVOwCiIiIiCoxmBAREZHRYDAhIiIio8FgQkREREaDwYSIiIiMBoMJERERGQ0GEyIiIjIaMrELqA6dToerV6/CyckJEolE7HKIiIioGgRBgFqthre3N6TS6rWFmEQwuXr1Kvz8/MQug4iIiGohIyMDvr6+1TrXJIKJk5MTgIofTKFQiFwNERERVYdKpYKfn5/+e7w6TCKYVHbfKBQKBhMiIiITU5NhGBz8SkREREaDwYSIiIiMBoMJERERGQ2TGGNCRESmS6vVoqysTOwyqB5YW1vDysrKoJ/JYEJERPVCEARkZWUhLy9P7FKoHjk7O8PT09Ng64wxmBARUb2oDCWNGzeGvb09F8g0M4IgoKioCDk5OQAALy8vg3wugwkRERmcVqvVhxI3Nzexy6F6YmdnBwDIyclB48aNDdKtw8GvRERkcJVjSuzt7UWuhOpb5T021DgiBhMiIqo37L4xf4a+xwwmREREZDTqFEwWLFgAiUSCl19++a7nrFixAn379oWLiwtcXFwwaNAgHD16tC6XJSIiIjNV62ASGxuL5cuXIzAw8J7nRUVFYcKECdi/fz+io6Ph5+eHIUOG4MqVK7W9NBEREZmpWgWTgoIChISEYMWKFXBxcbnnuRs2bMDzzz+Pzp07w9/fHytXroROp8O+fftqVTARmRdBEKAp14pdBpHepEmTIJFIbnsMGzasQa6flpZ2x+tLJBIcOXLEoNc6cOAA/Pz8MHLkyLv+fH/99RckEglOnDhh0GvfTa2mC7/wwgsYMWIEBg0ahI8//rhG7y0qKkJZWRlcXV3veo5Go4FGo9E/V6lUtSmTiEzAB78lY2NMOra/9ADaeFR/a3Si+jRs2DCsWbOmyjG5XN6gNezduxcdOnSocszQU6+3bduGkSNHYsiQIRg7diwuX74MX1/fKuesWbMG3bt3v28PiaHUuMUkMjISx44dw/z582t1wTlz5sDb2xuDBg266znz58+HUqnUP/z8/Gp1LSIybuez1Vh7OA2lWh0Onb8udjlUzwRBQFFpuSgPQRBqVKtcLoenp2eVh4uLC2bPno1HHnlEf94XX3wBiUSCXbt26Y+1atUKK1eu1D9fuXIl2rVrB1tbW/j7++Obb76pVg1ubm631WBtba1//bfffkOPHj1ga2sLd3d3jBkzRv+aRqPB7Nmz4ePjAwcHB/Tq1QtRUVG3XePXX3/Fo48+ikceeQSNGjXC2rVrq7xeUFCATZs2YcqUKdWq2RBq1GKSkZGBmTNnYs+ePbC1ta3xxRYsWIDIyEhERUXd8/3h4eF49dVX9c9VKhXDCZEZmrvjtP7/nWy53qO5Ky7Tov27u0W5dvKHQ2FvU/ffY/369cPKlSuh1WphZWWFAwcOwN3dHVFRURg2bBiuXLmCixcvon///gAqhjO8++67WLp0Kbp06YKEhARMnToVDg4OCAsLq3Udv//+O8aMGYO33noL3333HUpLS7Fjxw796zNmzEBycjIiIyPh7e2NrVu3YtiwYUhKSkLr1q0BAKdOnUJOTg4GDBgAmUyG0NBQrF27Fm+99ZZ+CvCmTZug1WoxYcKE2v+i1VCN7lJ8fDxycnLQtWtX/TGtVouDBw9i6dKl0Gg0d1317dNPP8WCBQuwd+/e+zYHyeXyBm8yI6KGdeDcNUSdvaZ/XsN/0BLVq+3bt8PR0bHKsTfffBPPP/881Go1EhIS0K1bNxw8eBCvvfYafvnlFwAVEz58fHzQqlUrAMB7772HxYsX47HHHgMANG/eHMnJyVi+fPl9g0lwcDCk0qodGwUFBQCAuXPnYvz48fjggw/0r3Xq1AkAkJ6ejjVr1iA9PR3e3t4AgNmzZ2PXrl1Ys2YN5s2bB6CiG2fo0KGwsbEBADz99NNYtGgRDhw4oA9Wa9aswdixY6FUKmv061cXNQomAwcORFJSUpVjkydPhr+/P+bMmXPXUPLJJ59g7ty52L17N7p37177aonILJSUaRG2uuqyATomE7NnZ22F5A+HinbtmnjooYcQERFR5ZirqyucnZ3RqVMnREVFwcbGBjY2Nnj22Wfx3nvvoaCgAAcOHEC/fv0AAIWFhbh48SKmTJmCqVOn6j+nvLxc/0U/fPhw/PXXXwCApk2b4tSpU/rzfvzxR7Rr1+6O9SUmJlb5zH9LSkqCVqtFmzZtqhzXaDRVxqhs27YNM2bM0D/39/dHcHAwVq9ejf79++PChQv466+/8OGHH97318uQahRMnJyc0LFjxyrHHBwc4Obmpj8eGhoKHx8f/RiUhQsX4t1338XGjRvRrFkzZGVlAQAcHR1vS6NEZBm+iboIAJBJJejezAVHUm5Ay2Bi9iQSiUG6UxqCg4ODvtXjv/r374+oqCjI5XL069cPrq6uaNeuHQ4dOoQDBw5g1qxZAP5p3VixYgV69epV5TMq/yG/cuVKFBcXA0CV8SMA4Ofnd9caKveouZOCggJYWVkhPj7+tgaDyu/dzMxMJCQkYMSIEVVenzJlCl588UV8/fXXWLNmDVq2bKkPWg3F4L9D0tPTqzQ9RUREoLS0FOPGjaty3nvvvYf333/f0JcnIiN3OlOFpX+eBwCM7eoLVUnF/ho65hIyEf369cPq1ashk8n0U2z79++PH374AefOndN3g3h4eMDb2xspKSkICQm542f5+PjUqobAwEDs27cPkydPvu21Ll26QKvVIicnB3379r3j+3/77TcEBwffNkP2iSeewMyZM7Fx40Z89913mD59eoNvK1DnYPLfUb7/fZ6WllbXSxCRmSjT6jDrp+PQCcCDbRphwdgAzNiYAADQMZmQEdFoNPoW/koymQzu7u548MEHoVarsX37dixYsABARTAZN24cvLy8qnShfPDBB3jppZegVCoxbNgwaDQaxMXF4ebNm1UmedxJbm7ubTU4OzvD1tYW7733HgYOHIiWLVti/PjxKC8vx44dOzBnzhy0adMGISEhCA0NxeLFi9GlSxdcu3YN+/btQ2BgIEaMGKGfjfNfjo6OePLJJxEeHg6VSoVJkybV8lew9rhXDhE1mE93n0Vypgou9tZY/HgnSCQSSKUV/xrjGBMyJrt27YKXl1eVxwMPPAAAcHFxQUBAABo1agR/f38AwIMPPgidTndbt8czzzyDlStXYs2aNQgICEC/fv2wdu1aNG/e/L41DBo06LYaKgfZ9u/fH5s2bcKvv/6Kzp07Y8CAAVW2e1mzZg1CQ0Mxa9YstG3bFqNHj0ZsbCyaNGmCwsJC7Nu3747BBKjozrl58yaGDh2qHzzbkCRCTSd3i0ClUkGpVCI/Px8KhULscoioFrYlXsHMyEQAwDchXfFwgBcAYGZkArYlXsXbI9rhmb4tRKyQDKmkpASpqalo3rx5rZaXoPqzZcsWvP3220hOTjbI593rXtfm+5stJkRU75Iu5+P1zRXLWU/v31IfSgBAeqv/WsuuHKIG4ejoiIULF4pdxl2ZxvBoIjJZOeoSPLc+DppyHfq3bYTZQ9pWed1TWfEvrEs3isQoj8jiDBkyROwS7oktJkRUb/KKSjFpdSyu5peghbsDlozvAitp1RH+7bwqmneTLueLUSIRGRm2mBBRvbheoEH3j/cCANwdbbB6Ug8o7axvO69384rpiiev5uN6gQbujlz12ZyYwDBGqiND32O2mBCRwWXcKMITy6MBVKy4ueGZ3mjm7nDHcxsrbNHRRwFBAHYmZTZkmVSPKhcLKypiF525q7zH/10grrbYYkJEBhWTkotn18cjv7gMNjIpNk7thbaeTvd8z2NdfHHySjI2xKTjqd5NG3xBJzI8KysrODs7IycnBwBgb2/P+2pmBEFAUVERcnJy4OzsfNdtaWqKwYSIDEKrE/DtwRR8+sdZaHUC/D2dsGZyD3gp7750dqWxXX2xcNcZnMlSI/7STXRv5nrf95Dx8/T0BAB9OCHz5OzsrL/XhsBgQkR19vuJTLy++TgKS7UAgEc7eWPB2IBq74uitLfG6M4++DEuA1/sPY/vn+l1/zeR0ZNIJPDy8kLjxo1RVlYmdjlUD6ytrQ3WUlKJwYSIaq2otBzf7L+IpfsvAAAcbKzwziPt8WQPvxo320/r3xI/xWfg0IXrOJp6Az2bs9XEXFhZWRn8y4vMF4MJEdVYSZkWz284hj/P/NNEr7Szxo6ZfeHjfP+umztp7u6AJ7v7ITI2A+9uO4ntLz4AmRXH5xNZGv6pJ6Jqyy8uw4qDKXjwk/36UOLrYocl4zsj8d3BtQ4llV4f5g+FrQxnstT4Yu95Q5RMRCaGLSZEdF/puUVYfyQNkbEZUJeU64+P7OSNReMCYWttmGZ6VwcbzBrSFu/9egqr/07F2G6+aH6XacZEZJ4YTIjojkrLddh5MhNrD6chIT1Pf7y5uwPCgpriyR5NYGdj+HEDT/VuijV/pyIttwgv/nAMm6cFGyz4EJHxYzAhoirOZ6vx1taTOJp2o8rxns1dMbVvCwzwb3zbsvKGZCWVIPLZIAxbchAnr6jw1taT+PTxQK6BQWQhGEyICGVaHf44lY31R9JwJOWfQOLuKMfQDh4IC26GNh73XiTNkDyVtvhyfBdMWnMUPx+7jMYKOeYM82+w6xOReBhMiCzYzcJSfBd9Cd/HXMI1tQYAIJUAPZq5Iiy4GYa09xBtZsyDbRph1pC2WLT7LCKiLsJRLsMLD7USpRYiajgMJkQWKLdAg/AtSfgjOVt/zN1Rjv/19MP4nk3gXcfZNYbywkOtoNMJWLznHBbtPgtVSRleH+pfr11JRCQuBhMiC6LVCZgZmYDtJ/7ZLK9lIwc8378VRnbyho3M+FYQeHFga0ilEizafRbLD6Qg6XI+vniyMxorbMUujYjqgUQwgT2pVSoVlEol8vPzoVAoxC6HyCRdzSvGSz8kIO7STf2x90e2R1hwM5MYWPrr8at44+cTKCrVwt3RBu8/2gEjArxMonYiS1Wb728GEyILsCMpE+FbkpBfXLFfybR+LTF7SBuTW1n1Qk4Bpn8fj/M5BQCAgf6N8e7I9mjqxrVOiIwRgwkRVaHVCfhk1xksP5gCAOjkq8SS8V3QzIQXLSst1+Hr/Rfw9f4LKNf989fXrzP6INDXWbzCiOg2DCZEpJdfXIaXfkjAgXPXAABT+zbH68P8YW1irSR3cyFHjXd+OYXolFz9sRGBXnhjmD/8XO1FrIyIKjGYEBEA4EpeMSauikHKtULYWkuxaFwnjOzkLXZZBicIAr7cdwGf7z1X5XiPZi54JNAbE3s3hZQzeIhEw2BCREi+qsLDX/4FAPBS2mJFaHd09FGKXFX925Z4BcsOpOBMlgqVf6u52FvDz9UeHzzaAV2auIhbIJEFYjAhsnDH0m8ibNVRqDXl8FLa4ufpwUazJklDSc8twsTVMbiUW1TleNcmzhjdxQdjuvjAydZapOqILAuDCZEFi0nJxdNrY1FYqkVHHwVWh/Ww6LU+Ssq0+C46DfN2nLnttREBXgjp3QRBLdw43ZioHjGYEFmolX+l4OPfTwMAglu6YWVYd9jbcP3ESjmqEmxLvIq1h9NwJa9Yf7yDtwJP9W6Kx7r6QC7jDsZEhsZgQmSB/h1KujRxxg9Te8PWml+yd6LTCUjIyMOmuAxsTbgCTblO/1qgrxI/Tw82m1lLRMaAwYTIwvx5JhtPr43TPz/38XCjXFbeGN0sLMXPxy5jxV8pyFZVbGDYurEjPni0A4JbuYtcHZF5YDAhsiCHzl/H0+tiUXrrX/1nPhrGlpJa0JRrMf7bI0hIz9MfG97RE/PGBMDFwUa8wojMQG2+v/lPKyITdCQlF898VxFK+rZ2x9mPGUpqSy6zwtbn+yDx3cEY38MPALDzZBbGLTuMk1fyRa6OyPIwmBCZmPhLN/D02liUlOnQv20jrAzrzoGbBuBsb4MFYwPx3dM9AQAXrxVizDd/46fYDJErI7IsDCZEJuTklXxMWhOLolIt+rRyw7KnujGUGNiDbRrh2DuDMaS9B8q0Al7/+QTm7zgNnc7oe72JzAKDCZGJSLqcj0e+OgR1STl6NHPBitDu7L6pJ64ONlj2VDe8PKg1AGD5wRS8+lOifjwPEdUfBhMiE3AuW43Q1TEAKqa1rprUg+uU1DOpVIKXB7XB4sc7QSaV4JfEqwhdHYNCTbnYpRGZNQYTIiOXer0QIStjcLOoDK0aO2L1pB5QcEn1BjO2my9WT+oBBxsrHEm5ga4f7UFeUanYZRGZLQYTIiN2+WYRQlYcwTW1Bv6eTtg8LQjujnKxy7I4D7ZphHW3BsVqynUY8eUhhhOiesJgQmSkclQlCFkZg6v5JWjRyAHrp/SCsz3X1RBL92au+OOVB2FjJcWVvGKErT4KVUmZ2GURmR0GEyIjlKOuCCWXcovg52qHDc/0QiMntpSIrY2HE36aFgQnWxmOX87H1HVxKCnTil0WkVmpUzBZsGABJBIJXn755Xuet2nTJvj7+8PW1hYBAQHYsWNHXS5LZNauqTUYv/wIzucUwFNhi43P9IaX0k7ssuiWzn4V+xE5ymWISb2Bl35IQLmWs3WIDKXWwSQ2NhbLly9HYGDgPc87fPgwJkyYgClTpiAhIQGjR4/G6NGjcfLkydpemshsXVNr8OS30Ui5XghvpS0in+0NP1d7scui/+joo8SK0O6wkUnxR3I23tp6EiawuweRSahVMCkoKEBISAhWrFgBFxeXe567ZMkSDBs2DK+99hratWuHjz76CF27dsXSpUtrVTCRubpZWIqw1UeRcq0Q7o42WP9MLzRzdxC7LLqLoJZu+GpCF0glwI9xGVi466zYJRGZhVoFkxdeeAEjRozAoEGD7ntudHT0becNHToU0dHRd32PRqOBSqWq8iAyZ/lFZfjfyhgkZ6rg6mCDzdOC0bKRo9hl0X0M7eCJ+Y8FAACWHbiIFQdTRK6IyPTVOJhERkbi2LFjmD9/frXOz8rKgoeHR5VjHh4eyMrKuut75s+fD6VSqX/4+fnVtEwik1GgKcektUdxOlMFd0c5fny2N1tKTMiTPZpgzjB/AMDcHaexOf6yyBURmbYaBZOMjAzMnDkTGzZsgK2tbX3VhPDwcOTn5+sfGRncRIvMk04n4OXIBCSk50FpZ421k3ugtYeT2GVRDU3r1wJT+zYHAMz5+QT2JmeLXBGR6apRMImPj0dOTg66du0KmUwGmUyGAwcO4Msvv4RMJoNWe/u0OU9PT2RnV/1Dmp2dDU9Pz7teRy6XQ6FQVHkQmaPFe85i7+kc2MikWPd0T3T0UYpdEtWCRCLBmw+3w9iuvtDqBLyw8Rhi026IXRaRSapRMBk4cCCSkpKQmJiof3Tv3h0hISFITEyEldXtG4oFBQVh3759VY7t2bMHQUFBdaucyMT9dvwqvt5/EQCwcGwAOvs5i1sQ1YlEIsHCsQEY6N8YmnIdnl4Ti9TrhWKXRWRyahRMnJyc0LFjxyoPBwcHuLm5oWPHjgCA0NBQhIeH698zc+ZM7Nq1C4sXL8aZM2fw/vvvIy4uDjNmzDDsT0JkQk5dzcdrm48DAJ59sAXGdPEVuSIyBJmVFF9O6IL2XgqoNeWYsi4W+cVcHZaoJgy+8mt6ejoyMzP1z4ODg7Fx40Z8++236NSpEzZv3oxffvlFH2SILI2mXItXfkxESZkO/do00g+cJPPgIJdh7dM94KW0Rcq1QrzIBdiIakQimMCqQCqVCkqlEvn5+RxvQibvsz3n8OW+83BzsMGeV/vB1YH735ijk1fy8fiyaBSXaTG5TzO8N7KD2CURNbjafH9zrxyiBpR8VYVv9l8AAHw4qiNDiRnr6KPEZ090AgCs+TsNG2IuiVwRkWlgMCFqIGVaHV7bfBzlOgHDOnji4YC7z0wj8zA8wAuvDm4DAHhr60kcTeVMHaL7YTAhaiDrDqfh1FUVlHbW+HB0B0gkErFLogbw4oBWaHJrv6OXfkjA9QKNyBURGTcGE6IGcCm3EIv/OAcAeGO4Pxo71d8ChWRcJBIJdszsiyau9shSleDlyETodEY/tI9INAwmRPVMqxMw66fjKC7ToncLVzzZnVssWBpHuQzfhnaDXCbFoQvXsepQqtglERktBhOierbswEXEXboJR7kMi8Z1glTKLhxL5O+pwLsj2wMAPtl9Biev5ItcEZFxYjAhqkcxKbn4fE9FF877j3aA362xBmSZ/tezCYa090CZVsDsTcehKb99Gw8iS8dgQlRPLt8swgsbj6FcJ2BkJ2+M7eojdkkkMolEgvmPBcDNwQZnstT4ct95sUsiMjoMJkT1IK+oFFPWxuF6QSn8PZ3wydhAzsIhAICboxwfjqpY+XrZgRSczlSJXBGRcWEwITKwQk05pqyLw9lsNRo5ybF6Ug/Y2dy+wSVZrhGBXhjS3gNanYC3tiZxlg7RvzCYEBlQUWk5Jq+NRfylm1DYyrB+Sk94O9uJXRYZofcf7QAHGyscS8/DD7HpYpdDZDQYTIgMpKi0HE+vjcXR1Btwksuw7ume8Pfk3k50Z97Odpg1pC0A4LM/zkFdwl2IiQAGEyKDyC8qw1MrY3Ak5QYc5TKsm9ITXZq4iF0WGbmnejdFC3cH5BaWIiLqotjlEBkFBhOiOsq4UYSxyw7jWHoelHbW+G5KT3RlKKFqsJFJMWe4PwBg5aFUXMotFLkiIvExmBDVwYnLeRjzzWFcyCmAp8IWG6f2YiihGhnS3gPBLd1QWq7DJ7vPil0OkegYTIhqad/pbDy5/AiuF2jg7+mErS8Eo4O3UuyyyMRIJBK8PaI9JBLg9xOZiL90U+ySiETFYEJUC+uj0zD1uzgUl2nRt7U7Nk0LgpeSs2+odtp7KzCuqy8A4J1fTnL6MFk0BhOiGijX6vDR9mS8s+0UdALwZHc/rJ7UA0621mKXRibujeH+cJLLkJypwvojl8Quh0g0DCZE1aQuKcPU7+L0O8POGtwGC8YGwNqKf4yo7twc5XhlcBsAwKe7zyIrv0TkiojEwb9RiarhfLYaI786hP1nr8HWWopvQrrixYGtucw8GVRYcDN08nOGWlOOWZsSUa7ViV0SUYNjMCG6jw0xlzD484NIyy2Cj7MdIp8NwsMBXmKXRWbISirBp+MCYW9jhb8v5GLBzjNil0TU4BhMiO5CECr2MXlr60kAQK/mrvh1Rh909nMWtzAya609nLD48U4AKtY22XLsssgVETUsBhOiO9CUa/H65hPYEFOxh0mXJs74bkpPuDnKRa6MLMHwAC+8OKAVAOCNLUk4cTlP3IKIGhCDCdF/XFNrELIiBpviL0MiqZh5s2V6MOQy7hBMDeeVQW0w0L8xSst1eG59PDJuFIldElGDYDAh+pfz2Wo8uvQQ4i7dhL2NFdZO7omF4wI5yJUanFQqwefjO6NlIwdk5pfgfyuP4PJNhhMyfwwmRLesOJiCwZ8fRGZ+CXyc7bBpWhD6tWkkdllkwRS21tjwTG80cbVHxo1iPL4sGhdy1GKXRVSvGEyIAKw6lIq5O04DADr6KLBtRh8uL09GwVNpi5+eC0Krxo7IzC/B2IhoHE29IXZZRPWGwYQsmlYn4MPfkvHR9mQAQI9mLvh5ejDcOciVjIin0hY/Ptsb7b0UyC8uwxPLo7EhhqvDknliMCGLVVyqxXPr47H674qVXEcEeOGn54I4yJWMkpujHD9PD8YA/8YAgLe2nsTne85BELivDpkXBhOySOm5RRj02QHsPZ0NG5kUX03ogq9DunKQKxk1OxsrrAjtjtGdvQEAS/adx+hvDqNQUy5yZUSGw2BCFmff6Ww8uGg/ruQVw8XeGhue6YWRnbzFLouoWqykEnwxvgsWPBYAADiekYexEYdxJa9Y5MqIDIPBhCzKH6eyMGVdHADAwcYKW57vgx7NXEWuiqjmxvdsgiXjOwMAzmSp0WfBnzhw7pq4RREZAIMJWYxfEq5g2vfx+ud/zRmA5u4OIlZEVDejOvvg8BsD0MzNHgAQtvooxkYc5rgTMmkMJmQR1h+5hFd/SoROAFq4O+D4e0Pg6mAjdllEdebtbIedMx/EsA6eAID4Szfx+LJoFHDcCZkoBhMya4Ig4NPdZ/HOLyehE4CQXk2w99V+UNpZi10akcHY2Vgh4qmueL5/SwBA3KWbGBdxGGnXC0WujKjmGEzIbJVrdQjfkoSl+y8AqNh75OPRHSGVcuYNmR+JRILXh/ljy/MV6/CcyVJj5NJD+PNMttilEdUIgwmZpTKtDi//mIjI2AxIJcC8MQGYOag1pwOT2evaxAW/v/QAujZxhrqkHFPWxeHzPeeg03HcCZkGBhMyOyVlWjy/4Ri2n8iEtZUE34R0xf96NRG7LKIG46GwReSzQZjYuykEoWK9k2fXx0FVUiZ2aUT3xWBCZqW4VIup38VhT3LFwmnLJ3bDsI5eYpdF1OBsZFJ8NLojFj/eCTYyKfaezsGopX8j+apK7NKI7onBhMyGuqQMYauP4q/z12FvY4W1k3pggL+H2GURiWpsN19snhYEL6UtUq8X4uEv/+K4EzJqDCZkFm4WliJkZQyOpt2Ak60M66f0QnArd7HLIjIKgb7O+HXGA2hxa92ep9fGYd6O01zvhIxSjYJJREQEAgMDoVAooFAoEBQUhJ07d97zPV988QXatm0LOzs7+Pn54ZVXXkFJSUmdiib6txx1CcZ/ewQnLufD1cEGP0ztjW5NXcQui8ioNHKSY9fLD2JCz4rxVt8eTEHz8B24WVgqcmVEVdUomPj6+mLBggWIj49HXFwcBgwYgFGjRuHUqVN3PH/jxo1444038N577+H06dNYtWoVfvzxR7z55psGKZ7oal4xnlx+BGez1WjsJMePz/ZGRx+l2GURGSUbmRTzxnTESwNa6Y89tSoGWfn8xyIZD4lQx7Y8V1dXLFq0CFOmTLnttRkzZuD06dPYt2+f/tisWbMQExODQ4cO3fUzNRoNNBqN/rlKpYKfnx/y8/OhUCjqUi6ZkUu5hfjfihhcySuGj7MdNk7thaZuXGKeqDp+isvA65tPAAA8FHKsn9ILbTycRK6KzI1KpYJSqazR93etx5hotVpERkaisLAQQUFBdzwnODgY8fHxOHr0KAAgJSUFO3bswMMPP3zPz54/fz6USqX+4efnV9syyUydz1bj8WXRuJJXjObuDtg0LYihhKgGnujuh4OvPYTWjR2RrdJg9Nd/c1AsGYUat5gkJSUhKCgIJSUlcHR0xMaNG+8ZNL788kvMnj0bgiCgvLwc06ZNQ0RExD2vwRYTupeTV/IRuvoobhSWoq2HE9Y/0xONnWzFLovIJN0sLMW07+MRk3oDVlIJ5o3piCd7cN0fMowGaTFp27YtEhMTERMTg+nTpyMsLAzJycl3PDcqKgrz5s3DN998g2PHjmHLli34/fff8dFHH93zGnK5XD/AtvJBBFRsUDZhxRHcKCxFoK8Skc/2ZighqgMXBxt8/0wvPNbFB1qdgDk/J+GplTGcsUOiqfMYk0GDBqFly5ZYvnz5ba/17dsXvXv3xqJFi/THvv/+ezz77LMoKCiAVFq9XFSbxEXm5/CF63jmuzgUlWrRs5krVk3qDidbbsZHZAiCIOCzPefw1Z8Ve0tN6OmHuaMDuLcU1UmDjjGppNPpqnS7/FtRUdFt4cPKygoAmMapRv48k41Ja2NRVKpF39buWPd0T4YSIgOSSCSYNaQtHg7wBAD8cDQDk9fGoqRMK3JlZGlqFEzCw8Nx8OBBpKWlISkpCeHh4YiKikJISAgAIDQ0FOHh4frzR44ciYiICERGRiI1NRV79uzBO++8g5EjR+oDCtH9/H4iE89+F4/Sch0Gt/fAyrDusLPh7x+i+vBNSDd89kQnAMCBc9cQtvoo99ihBiWryck5OTkIDQ1FZmYmlEolAgMDsXv3bgwePBgAkJ6eXqWF5O2334ZEIsHbb7+NK1euoFGjRhg5ciTmzp1r2J+CzNbm+Mt4ffNx6ARgVGdvfPp4J1hbccFiovr0WFdfeCpt8ex3FYNiH4+Ixrqne8JTyfFcVP/qPMakIXCMiWVaH52Gd7ZVLN43vocf5o4JgBX7u4kazKmr+Zi0JhbX1Br4ONthwzO90Myd0/Kp+kQZY0JUH5YfuKgPJZP7NMP8xxhKiBpaB28ltkwPRhNXe1zJK8bjy6Nx8kq+2GWRmWMwIaNSOTNg/s4zAIAXB7TCu4+0h0TCUEIkBj9Xe/z4XG+0buyIa2oNQlbGIP7SDbHLIjPGYEJGQxAEzP39NL7cdx4A8Pqwtpg1pC1DCZHIvJR22DwtGJ38nJFfXIbQVUfx94XrYpdFZorBhIxCuVaHN7eexMpDqQCADx7tgOf7t7rPu4iooSjtrfHD1F54oJU7Cku1eHptLJewp3rBYEKiKynT4pnv4vDD0XRIJcAn4wIRFtxM7LKI6D/sbWRYGdYdA/0bQ1Ouw9Nr4/DJrjNil0VmhsGERJVfXIaw1UcRdfYarK0k+Pp/XfFEd27aSGSsbK2tsGxiN/1CbN9EXcQvCVdErorMCYMJiSbjRhHGRRxGTOoNOMplWDe5J4YHeIldFhHdh7WVFEvGd9E/f+WnRHx/5JKIFZE5YTAhURzPyMOYbw7jfE4BPBW2+PG53ghu5S52WURUTdZWUqTMexihQU0hCMDbv5zE/J2nxS6LzECNVn4lMoTdp7IwMzIBJWU6tPNSYPWk7vBS2oldFhHVkFQqwQePdkBxqRab4i9j+YEUuNrb4Ll+LcUujUwYgwk1GEEQsOpQKubuOA1BAPq3bYSl/+sKRzl/GxKZKolEgk/GBcJBLsPaw2mYv/MMCjXleGVwG071p1rhNwI1iHKtDh9uT8Z30RX90CG9muCDRztAxn1viEyeRCLB+492gIu9DT7few5f/nkBJeU6hA/3ZzihGmMwoXqXV1SK8d8ewZksNSQS4M3h7fBM3+b8C4vIzMwc1BoKOxk++C0Z3x5MgY2VFLOHthW7LDIxDCZUr5Iu52P6hnhcvlkMuUyKL57szJk3RGZscp/mkAB4/7dkLN1/AQ5yGab355gTqj62o1O9EAQBG2PSMTbiMC7fLIaTXIblE7sxlBBZgEl9muPNh/0BAAt3ncGczSeg0xn9RvZkJNhiQgZXVFqOt7eexJZbiy4NaueBxU90gtLOWuTKiKihTO3bAhk3irH+yCX8GJeBMp0Oi8Z14i7hdF8MJmRQF68V4Pnvj+FsthpSCfD6MH8892ALjichsjASiQQfje4IhZ0MX++/iC3HruDQ+ev4a85DkMusxC6PjBi7csggBEHAjI3HMHDxAZzNVsPdUY6NU3tjWr+WDCVEFuy1of74JqQrACBHrcGILw+hpEwrclVkzBhMqM7Sc4sw7Iu/sP1EJgCgV3NX7HjpAfRu4SZyZURkDB4O8ML7I9sDAC7kFOCZdXEo1JSLXBUZKwYTqjVBEPDKj4l4cNF+nM1WAwBCg5rih6m90VhhK3J1RGRMJvVpjk/GBgIADl24jomrYpBfXCZyVWSMGEyoVrJVJQhbE4uttwa4eips8duMB/DhqI6QcnAbEd3BEz38sOX5YCjtrHEsPQ9hq48ynNBtGEyoRnS6imXlB3wahYPnrgEAwoKa4q85DyHAVylydURk7Lo2ccGGZ3pBaWeNxIw8PLEsGtmqErHLIiMiEQTB6CeXq1QqKJVK5OfnQ6FQiF2OxTqXrcbU7+JwKbcIANDJzxmLHw9Eq8ZOIldGRKbmdKYKYauPIketQRNXe6yf0hNN3RzELosMrDbf32wxofsqKdNi0e4zeHjJX7iUWwSpBHhvZHv8PC2IoYSIaqWdlwI/Tw9GUzd7pN8owphvDuNMlkrsssgIMJjQPf11/hqGfH4QX++/iHKdgIfaNsK2Fx7A5D7NuQEfEdWJn6s9Nj0XhA7eCtwoLMWopX9jZ1Km2GWRyNiVQ3d0Ta3Bx78nY1viVQAVg1s/GNUBQzt4ilwZEZmb/KIyPL0uFvGXbgIAvprQBSM7eYtcFRkCu3KoznQ6AT8cTcfAxVHYlngVUgkwuU8z7J3Vj6GEiOqF0t4aG57pBQ+FHADw4g8J+GTXGZGrIrFwSXrSi027gceXReufd/RRYN6YAAT6OotXFBFZBFtrK/w9ZwCmfX8Me09n45uoiyjT6vDG8HbcX8fCsMWEkFdUijmbT+hDib2NFd55pD1+eb4PQwkRNRiZlRQrQrvpu3FW/JWK59bHoYCrxFoUjjGxYDqdgF+PX8VH25ORW1gKAAj0VWLZU93g7WwncnVEZMl+PX4Vr206Dk25Dv6eTlgZ1h2+LvZil0U1VJvvbwYTC3XxWgHCf07C0bQbAIDWjR0x77EA9GjmKnJlREQVEtJvYup38bheoIG7ow2WT+yObk1dxC6LaoCDX6lafj1+FSO/OoSjaTdgb2OF2UPa4LcXH2AoISKj0qWJC36d0QftvBS4XlCKCSuO4Jdb22CQ+WKLiQURBAHTvo/H7lPZAICgFm749IlO8GG3DREZsUJNOV7+MRF7kiv+7npxQCu8MqgN9+UyAWwxoXtasu+8PpQ83ac5vn+mF0MJERk9B7kMy5/qhuf6tQAAfPXnBcz44RiKS7UiV0b1gcHEQmyMSccXe88DAKY80BzvjmzPKXhEZDKkUgnCh7fDonGBsLaSYEdSFp78NhpX84rFLo0MjMHEAvxxKgtv/5IEAHhpQCu880h7kSsiIqqdx7v7YcMzveFib40Tl/MRvOBPJF/lHjvmhMHEzB1NvYGZkYnQCcDj3XzxyuA2YpdERFQnPZu7YtsLD8DexgoAMDbiMLafuCpyVWQoDCZmLP7STUxecxTFZVo81LYR5j8WAImE3TdEZPqauNnjr9cfQlALNxSXaTFjYwLe23YSpeU6sUujOmIwMVPRF3MRtvooCku16N3CFRFPdeNuwERkVtwc5Vg/pSeee7BiUOy66Eto8/ZOZNwoErkyqgt+U5mhHUmZCFtzFAWacgS1cMOqsB6wtbYSuywiIoOTWUkR/nA7LP1fF/2xMd/8jeiLuSJWRXXBYGJmJq05iuc3HENpuQ792zbC6kk94CDnXo1EZN4eCfTG9hcfgKNcpl+M7ct956HTGf1SXfQfNQomERERCAwMhEKhgEKhQFBQEHbu3HnP9+Tl5eGFF16Al5cX5HI52rRpgx07dtSpaLqdIAj4aHsyos5eA1Ax0HVVWA/Y2bClhIgsQ0cfJWLeHIjB7T0AAJ/tOYfHIg4jK79E5MqoJmoUTHx9fbFgwQLEx8cjLi4OAwYMwKhRo3Dq1Kk7nl9aWorBgwcjLS0NmzdvxtmzZ7FixQr4+PgYpHiqUBFKTmPVoVQAFaHkk3GBXKeEiCyOg1yGFaHdMW9MAGytpUjMyEPv+ftw8kq+2KVRNdV5SXpXV1csWrQIU6ZMue21ZcuWYdGiRThz5gysra1rfQ0uSX9v83acxrcHUwAAc8d0REivpiJXREQkvpNX8vHE8mgUlWohl0kx46FWeHFga7HLsigNuiS9VqtFZGQkCgsLERQUdMdzfv31VwQFBeGFF16Ah4cHOnbsiHnz5kGrvfcywhqNBiqVqsqD7mzd4TR9KPloNEMJEVGljj5KRL8xEA+1bQRNuQ6L95zDW1uTUKbllGJjVuNgkpSUBEdHR8jlckybNg1bt25F+/Z3Xkk0JSUFmzdvhlarxY4dO/DOO+9g8eLF+Pjjj+95jfnz50OpVOoffn5+NS3TIvxxKgsf/FbRjRYW1BQTezOUEBH9m9LeGqvCeuj32dkQk46nVsbgmlojcmV0NzXuyiktLUV6ejry8/OxefNmrFy5EgcOHLhjOGnTpg1KSkqQmpoKK6uKQZifffYZFi1ahMzMzLteQ6PRQKP55zeNSqWCn58fu3L+5WjqDUxcFQNNuQ5PdvfDgrFcPI2I6F52n8rCrJ+Oo0BTDgD44NEOCAtuJm5RZq42XTk1nkdqY2ODVq1aAQC6deuG2NhYLFmyBMuXL7/tXC8vL1hbW+tDCQC0a9cOWVlZKC0thY2NzR2vIZfLIZfLa1qaxYi/dANT1sVCU67DoHYemDumI0MJEdF9DO3giVYzHPHc+nhcyCnAe7+egrO9NUZ15oQMY1LndUx0Ol2V1o1/69OnDy5cuACd7p/+vHPnzsHLy+uuoYTu7UyWCpPXxEJdUo7uTV2w9H9duKIrEVE1tWzkiF9e6KN/PjMyEZ/9cZbrnRiRGn2jhYeH4+DBg0hLS0NSUhLCw8MRFRWFkJAQAEBoaCjCw8P150+fPh03btzAzJkzce7cOfz++++YN28eXnjhBcP+FBbi4rUCPLUyBqqScnT2c8bap3tyRVciohpylMuQMu9h/biTL/+8gBd/SEBx6b0nZlDDqFFXTk5ODkJDQ5GZmQmlUonAwEDs3r0bgwcPBgCkp6dDKv0n6/j5+WH37t145ZVXEBgYCB8fH8ycORNz5swx7E9hAVKuFWD8t0dwvaAU7b0UWDe5Jxy5oisRUa1IpRKED2+HVo0c8ebWJPyelImMm0VYEdodHgpbscuzaHVex6QhWPo6JlfzijEu4jCu5pegdWNHRD7bG26OHINDRGQIMSm5mPZ9PG4WlcFTYYuVYd3R0UcpdllmoUHXMaGGkVugwVOrYnA1vwQtGjngB4YSIiKD6tXCDb+80AetGjsiS1WCx5dFY9fJLLHLslgMJkasQFOOKevikHKtEJ4KW6yf0gvuDCVERAbX1M0BW54PRt/W7igu02La9/FYspebAIqBwcRIlZbr8Nz6OCRm5EFpZ43vpvSEj7Od2GUREZktha011kzqgbCgisUqP997Di3e3IH84jKRK7MsDCZGqFyrw8s/JuDvC7lwsLHCuqd7oo2Hk9hlERGZPZmVFB+M6ohPxgbqj43/9ghy1NyhuKEwmBiZcq0Oszcdx46kLFhbSbBsYjd09nMWuywiIovyRA8/fDKuIpyczlThsW8OI+VagchVWQYGEyNSrtXhlZ+O45fEq7CSSvDVhK7o27qR2GUREVmkJ7r7IWp2fzR1s8flm8UYG3EYCek3xS7L7DGYGIkyrQ4vRSbgt+NXIZNK8PX/umJYR0+xyyIismjN3B3w8/RgBPoqcbOoDI8vi0ZMSq7YZZk1BhMjUFquw4yNx/TdNxFPdWMoISIyEu6OcvwwtTd6NXdFuU7AM+vicCZLJXZZZovBRGSaci2e3xCP3aeyYSOT4tuJ3TG4vYfYZRER0b84yGVYM7kHOvs5Q60px9NrYpGj4oDY+sBgIqLcAg36LNiPvadzIJdJsSK0Ox7ybyx2WUREdAf2NjKsndwDLRo54Gp+Caauj4emnPvrGBqDiUhSrxei28d7cb2gYmfm1ZN6oF8bDnQlIjJmzvY2WDOpBxS2MhzPyMP8HWfELsnsMJiIYP/ZHDz2zd/65xue6YU+rdxFrIiIiKqrqZsDvhjfGQCw9nAadp/i8vWGxGDSgMq1Ony6+ywmr4nFzaIyBPoqcfStgQwlREQmZoC/B6b2bQ4AmL3pOC7lFopckflgMGkgV/KK8cTyaCzdfwEAMKFnE2yaFoTGTtxem4jIFL0+zB/dmrpAXVKOad8fQ3Epx5sYAoNJPRMEAdsSr2Dg4igcS8+DrbUUnz/ZCfMfC4BcZiV2eUREVEvWVlJ8/b+ucHOwwelMFV6KTICWm/7VGYNJPcpWlWDqd/GYGZmIkjIdOvs5Y9fMBzGmi6/YpRERkQF4Km2xbGI32Mik2JOcjYW7OBi2rhhM6oEgCIg8mo5Bnx3A3tPZsLaS4KWBrbFpWhCauTuIXR4RERlQj2auWHRrX51vD6bg8z3nRK7ItMnELsDcpOcW4Y0tJ3D4YsWSxZ38nPHJ2EC09eTuwERE5mpUZx9cvFaIL/edx5J95zGsoyfaeSnELsskscXEQLQ6AasOpWLoFwdx+GIubK2leOvhdtgyPZihhIjIArw8sDVa3GoVf+XHRJSUcTBsbTCYGMCFnAKMW3YYH21PRnGZFr1buGLXzAcx9cEWsJJKxC6PiIgagFQqwU/TguDmYIMzWWp8xi6dWmEwqQOtTsATy6Mx6LMDSEjPg6NchrljOmLjM705loSIyAK5O8qxcOw/401OXM4TtyATxGBSS7kFGkxcFYOjqTcAAH1aueGPVx5ESK+mkLKVhIjIYg1q74Hht3aIf2fbKeg4hbhGGExqQVVShvHfHtEPcJ3Yuym+n9IL3s52IldGRETG4INRHeAor9hP57voNLHLMSkMJrWwcOcZnM8pgIdCjj2vPIiPRneERMJWEiIiqtDYyRavDW0LAJi/8wwu5KhFrsh0MJjUUGzaDWyISQcALBnfBa09OOOGiIhuFxrUFMEt3aAp1+HZ7+KRoyoRuySTwGBSQ8uiLgIAnujui94t3ESuhoiIjJVEIsGS8V3grbRFyvVCjPjqEGJScsUuy+gxmNTANbUG+8/mAACe69dS5GqIiMjYNXKSY8PU3mjd2BHX1BqMX3EEH21PhrqkTOzSjBaDSQ3sPpUFnQB08lWiZSNHscshIiIT0NzdAb+80AfDO3pCEIBVh1IR8P4f+OFoOgSBM3b+i8GkBnaezAQADA/wErkSIiIyJQ5yGSKe6oY1k3voj4VvSULfT/ZzrZP/YDCppvziMhxJqVizpHJ+OhERUU081LYxTn4wFKM7ewMALt8sxuiv/8YrPyZycOwtDCbVdPjCdWh1Alo2ckBTN67qSkREteMol+GL8V2wc2ZfdPBWQCcAWxOu4OEv/8LWhMsW373DYFJNB85dAwD0a9NY5EqIiMgctPNS4PeX+iLy2d4AgOsFpXjlx+P434oYXMgpELk68TCYVIMgCP8Ek7aNRK6GiIjMSe8Wbjj38XC8NrQt5DIpolNyMeizA/h8zzmL3KGYwaQazucUIDO/BHKZFL2au4pdDhERmRkbmRQvPNQKe1/th+5NXQAAS/adxyNfHcLxjDxxi2tgDCbVcOBsRWtJ7xZusLW2ErkaIiIyV36u9tg0LQhvj2gHd0cbXMgpwJhv/sb7v56C1kI2A2QwqYaY1IqV+vq04kqvRERUvyQSCZ7p2wJ7XumHkZ28oROAtYfT0PmDPyxi5g6DyX3odAKOplZME+7VnMGEiIgahouDDb6a0AULHgsAAKg15Xh06d9INPOuHQaT+zibrYaqpBz2Nlbo4K0QuxwiIrIw43s2wbqne6KRkxxZqhKM/vpvfBedJnZZ9YbB5D4qW0u6NXWBzIq/XERE1PD6tWmEfbP6IbhlRcv9h78lY9/pbJGrqh/8pr2Pf7pxOBuHiIjEo7C1xtrJPQEA5ToBL/6QYJbL2TOY3IMgCIi5FUx6cnwJERGJzEYmxYW5w9G3tTuKSrV4dOnfZrdTcY2CSUREBAIDA6FQKKBQKBAUFISdO3dW672RkZGQSCQYPXp0beoURer1Qlwv0MBGJkWgr1LscoiIiCCzkuLrkK7651/9eUHEagyvRsHE19cXCxYsQHx8POLi4jBgwACMGjUKp06duuf70tLSMHv2bPTt27dOxTa0ym6czn7OXL+EiIiMhsLWGssndgMArP07zaymEdcomIwcORIPP/wwWrdujTZt2mDu3LlwdHTEkSNH7voerVaLkJAQfPDBB2jRokWdC25Ix9JvAgB6NHMRuRIiIqKqhrT3QNcmzijV6rD2cJrY5RhMrceYaLVaREZGorCwEEFBQXc978MPP0Tjxo0xZcqUan+2RqOBSqWq8hDDicv5AIBOvs6iXJ+IiOhuJBIJnn2wJQDgx9gMlGl1IldkGLKaviEpKQlBQUEoKSmBo6Mjtm7divbt29/x3EOHDmHVqlVITEys0TXmz5+PDz74oKalGVRRaTnOZasBAJ38nEWthYiI6E4GtmsMNwcb5BaW4tCF63iobWOxS6qzGreYtG3bFomJiYiJicH06dMRFhaG5OTk285Tq9WYOHEiVqxYAXd39xpdIzw8HPn5+fpHRkZGTcuss+SrKugEoLGTHB4K2wa/PhER0f1YW0nxcIAXAOCPU1kiV2MYNW4xsbGxQatWrQAA3bp1Q2xsLJYsWYLly5dXOe/ixYtIS0vDyJEj9cd0uopmJplMhrNnz6Jly5Z3vIZcLodcLq9paQZ1/FY3TiC7cYiIyIj1a9MI649cQvTFXLFLMYgaB5P/0ul00Gg0tx339/dHUlJSlWNvv/021Go1lixZAj8/v7peul5VLlrTidOEiYjIiPVs4QqpBEjLLcLVvGJ4O9uJXVKd1CiYhIeHY/jw4WjSpAnUajU2btyIqKgo7N69GwAQGhoKHx8fzJ8/H7a2tujYsWOV9zs7OwPAbceNUeXA1wAGEyIiMmIKW2sE+DrjeEYeoi/mYmw3X7FLqpMaBZOcnByEhoYiMzMTSqUSgYGB2L17NwYPHgwASE9Ph1Rq+ovJ5heXIfV6IQB25RARkfELbumG4xl5OGxpwWTVqlX3fD0qKuqer69du7YmlxPNySsVrSV+rnZwdbARuRoiIqJ7C27phoioi4i+eB2CIEAikYhdUq2ZfvNGPTh+a3xJoI+zqHUQERFVR/emrrC2kuBqfgnSbxSJXU6dMJjcQZJ+Rg7HlxARkfGzs7FCF7+KVcoPm/jsHAaTOzh59dbAVx8GEyIiMg1BLd0AMJiYHXVJGTJuFAMA2nkpRK6GiIioeoJvBZPoi7kQBEHkamqPweQ/zmRVLEPvqbCFCwe+EhGRiejcxBlymRTXCzRIyzXdcSYMJv9xOrNiw8B2Xk4iV0JERFR9cpkV2ntXtPRXLhJqihhM/uOfYMJuHCIiMi2dbq29lZiRJ2oddcFg8h9nb3Xl+DOYEBGRienkVzFpo3L1clPEYPIvgiDgXHYBAMDfk105RERkWipXKz91NR/lWp24xdQSg8m/XM0vQYGmHNZWEjRzcxC7HCIiohpp7uYAJ7kMJWU6nM1Wi11OrTCY/Mu5W904zd0dYCPjLw0REZkWqVSCjrfW4Dp1VSVyNbXDb99/OXcrXbb2YDcOERGZpg63ZuYkM5iYvpRrFTsKt2rkKHIlREREtVM5ZfjUVdMcAMtg8i+p1yuCSYtGHF9CRESmqXK5i7NZapNcAZbB5F9SbgWT5u4MJkREZJpaNHKAlVQCVUk5ctQascupMQaTW1QlZbheUHEDGUyIiMhUyWVWaOpmD+CftblMCYPJLam3xpc0cpLDydZa5GqIiIhqr+2tSRznTHDKMIPJLansxiEiIjNRObv0/K1FQ00Jg8ktleNLWjCYEBGRiatsMTHFRdYYTG5hiwkREZmLNh4Vy16czza9mTkMJrekXq9o7mIwISIiU9fM3QHWVhIUlmpxJa9Y7HJqhMEEFZv3VQ5+bcHF1YiIyMRZW0nRwr2y1cS0xpkwmADIUWtQWKqFVAI0cbUXuxwiIqI6a32rO8fUxpkwmAC4lFsEAPB2tuPmfUREZBZMdcowv4UBXMmrCCa+LnYiV0JERGQYrRlMTNeVmxUDg3xd2I1DRETmoa1nRTC5kFMArc50ZuYwmAD6Ecs+zmwxISIi89DE1R5ymRQlZTpk3CgSu5xqYzABcPlWi4kPu3KIiMhMWEkl+iUwUnMLRa6m+hhM8K+uHLaYEBGRGWnmVhFMLl1nMDEZgiD805XDFhMiIjIjTd0rxk6m5bIrx2RcLyiFplwHiQTwUjKYEBGR+ahsMUljV47pqGwt8XCy5RomRERkVpq6VbSYXGKLiem4fLPiZrEbh4iIzE1li0nGjSKUa3UiV1M9Fh9MMvNKAFSs+kpERGROPBUVvQHlOgFXb33fGTuLDybXCjQAgMZOcpErISIiMiypVIKmrpUDYE1jnInFB5Pr6opg0ojBhIiIzFDTyinDDCamobLFpJEjgwkREZmfZm6mNWWYwYQtJkREZMaaurPFxKQwmBARkTlrrl/LhC0mRq9cq8ONolIADCZERGSeKtcySc8tMoldhi06mNwoLIUgAFIJ4GJvI3Y5REREBuftbAdrKwlKtTpkqYx/ynCNgklERAQCAwOhUCigUCgQFBSEnTt33vX8FStWoG/fvnBxcYGLiwsGDRqEo0eP1rloQ8m51Y3j5iiHlVQicjVERESGZyWVwO/WlGFT2MyvRsHE19cXCxYsQHx8POLi4jBgwACMGjUKp06duuP5UVFRmDBhAvbv34/o6Gj4+flhyJAhuHLlikGKr6vcwopuHDcHtpYQEZH5amZC40xkNTl55MiRVZ7PnTsXEREROHLkCDp06HDb+Rs2bKjyfOXKlfj555+xb98+hIaG3vU6Go0GGo1G/1ylUtWkzGpTFZcBABR21vXy+URERMagqZvpLLJW6zEmWq0WkZGRKCwsRFBQULXeU1RUhLKyMri6ut7zvPnz50OpVOoffn5+tS3zntQl5QAAhW2N8hkREZFJ8XOpCCZXbhaLXMn91TiYJCUlwdHREXK5HNOmTcPWrVvRvn37ar13zpw58Pb2xqBBg+55Xnh4OPLz8/WPjIyMmpZZLeqSihYTJ1u2mBARkfnyVNoCgEkMfq1xU0Hbtm2RmJiI/Px8bN68GWFhYThw4MB9w8mCBQsQGRmJqKgo2Nra3vNcuVwOubz+p+9Wtpg4scWEiIjMmIfiVjDJN8NgYmNjg1atWgEAunXrhtjYWCxZsgTLly+/63s+/fRTLFiwAHv37kVgYGDtqzWwyhYTBVtMiIjIjHndajHJVpVApxMgNeKZqHVex0Sn01UZqPpfn3zyCT766CPs2rUL3bt3r+vlDEqtqWgxcWSLCRERmbFGTnJIJEC5TtDPSDVWNfpGDg8Px/Dhw9GkSROo1Wps3LgRUVFR2L17NwAgNDQUPj4+mD9/PgBg4cKFePfdd7Fx40Y0a9YMWVlZAABHR0c4Ojoa+EepucoV8GRGnByJiIjqytpKCndHOa6pNchWlRj1auc1ajHJyclBaGgo2rZti4EDByI2Nha7d+/G4MGDAQDp6enIzMzUnx8REYHS0lKMGzcOXl5e+senn35q2J+ilipX5pVKGEyIiMi8VXbnZBr5OJMatZisWrXqnq9HRUVVeZ6WllbTehqUTqhIJmwwISIic1cxADbf6GfmWPReOcKtYCJhiwkREZk5z1szc7KNvMXEwoNJxX/ZYkJERObO00S6ciw6mOjYYkJERBZC32LCrhzjxcGvRERkKUxl9VeLDiYCB78SEZGF0AcTduUYL4EtJkREZCEqu3IKNOUouLXAqDGy6GBSOcYEzCVERGTmHOQyOMkrVgkx5lYTCw8mFf9liwkREVkCU+jOsfBgwjEmRERkOUxhAKxFBxOOMSEiIkviYQJThi07mKByHRORCyEiImoA/+yXUyxyJXdn0cFEp6v4L1tMiIjIElS2mGTla0Su5O4sO5gIbDEhIiLLYQqrv1p0MOEYEyIisiSmsF+OZQcTcFYOERFZjspgkluoQZlWJ3I1d2bRwaRyHRNu4kdERJbA1d4G1lYSCAKQozbOcSYWHkwqW0wYTIiIyPxJpZJ/DYA1zpk5MrELENO0fi1xvUADf08nsUshIiJqEJ4KW1y+WWy0M3MsOpgM7eApdglEREQNysPIV3+16K4cIiIiS+Nl5F05DCZEREQW5J/9coyzK4fBhIiIyILo98sx0rVMGEyIiIgsiLHvMMxgQkREZEHcHGwAADcKS0Wu5M4YTIiIiCyIm6McAFCgKUdJmVbkam7HYEJERGRBFLYyWFtVLCxqjK0mDCZEREQWRCKRwPVWd05uAYMJERERiczNoaI7J7fQ+KYMM5gQERFZGDdHtpgQERGRkaicmcMWEyIiIhKdq74rhy0mREREJDJ25RAREZHRMOZF1hhMiIiILEzlImu5BRxjQkRERCLTd+WwxYSIiIjE5sYF1oiIiMhYVHblFJdpUVRaLnI1VTGYEBERWRgHGyv9fjl5RWUiV1MVgwkREZGFkUgkUNpVdOcwmBAREZHonO2tAQB5xcY1zqRGwSQiIgKBgYFQKBRQKBQICgrCzp077/meTZs2wd/fH7a2tggICMCOHTvqVDARERHVnbNdRTDJN+UWE19fXyxYsADx8fGIi4vDgAEDMGrUKJw6deqO5x8+fBgTJkzAlClTkJCQgNGjR2P06NE4efKkQYonIiKi2vmnxcS4golEEAShLh/g6uqKRYsWYcqUKbe99uSTT6KwsBDbt2/XH+vduzc6d+6MZcuWVfsaKpUKSqUS+fn5UCgUdSmXiIiIAMz66Th+PnYZc4b5Y3r/lvVyjdp8f9d6jIlWq0VkZCQKCwsRFBR0x3Oio6MxaNCgKseGDh2K6Ojoe362RqOBSqWq8iAiIiLDMYsxJgCQlJQER0dHyOVyTJs2DVu3bkX79u3veG5WVhY8PDyqHPPw8EBWVtY9rzF//nwolUr9w8/Pr6ZlEhER0T2YxRgTAGjbti0SExMRExOD6dOnIywsDMnJyQYtKjw8HPn5+fpHRkaGQT+fiIjI0jk7GOd0YVlN32BjY4NWrVoBALp164bY2FgsWbIEy5cvv+1cT09PZGdnVzmWnZ0NT0/Pe15DLpdDLpfXtDQiIiKqpsoWE5PvyvkvnU4HjebOuxMGBQVh3759VY7t2bPnrmNSiIiIqGHox5iYcotJeHg4hg8fjiZNmkCtVmPjxo2IiorC7t27AQChoaHw8fHB/PnzAQAzZ85Ev379sHjxYowYMQKRkZGIi4vDt99+a/ifhIiIiKrN+dbKr/lGNl24RsEkJycHoaGhyMzMhFKpRGBgIHbv3o3BgwcDANLT0yGV/tMIExwcjI0bN+Ltt9/Gm2++idatW+OXX35Bx44dDftTEBERUY0Ya4tJndcxaQhcx4SIiMiwVCVlCHz/DwDAmY+GwdbayvDXaMh1TIiIiMh0OcllsJJW7DCsMqLuHAYTIiIiC1Sxw3BFd85NI+rOYTAhIiKyUArbiqGm6hIGEyIiIhKZ4laLiYrBhIiIiMSmsL0VTIrLRa7kHwwmREREFsrpVlcOW0yIiIhIdJUtJuoStpgQERGRyBR2t1pMOF2YiIiIxKYfY8KuHCIiIhKbflYOB78SERGR2PRdOWwxISIiIrE5yStbTBhMiIiISGSVXTmclUNERESiq+zKyWeLCREREYnNqXIdEw1bTIiIiEhkjvKKFpPSch005VqRq6nAYEJERGShKoMJABQYyTgTBhMiIiILZSWV6P//WoFGxEr+wWBCREREOJGRL3YJABhMiIiILNr0/i3RzkuBRzp5iV0KAEAiCIIgdhH3o1KpoFQqkZ+fD4VCIXY5REREVA21+f5miwkREREZDQYTIiIiMhoMJkRERGQ0GEyIiIjIaDCYEBERkdFgMCEiIiKjwWBCRERERoPBhIiIiIwGgwkREREZDQYTIiIiMhoMJkRERGQ0GEyIiIjIaDCYEBERkdFgMCEiIiKjIRO7gOoQBAFAxfbJREREZBoqv7crv8erwySCiVqtBgD4+fmJXAkRERHVlFqthlKprNa5EqEmMUYkOp0OV69ehZOTEyQSidjlGAWVSgU/Pz9kZGRAoVCIXQ79B++PceP9MW68P8avuvdIEASo1Wp4e3tDKq3e6BGTaDGRSqXw9fUVuwyjpFAo+AfXiPH+GDfeH+PG+2P8qnOPqttSUomDX4mIiMhoMJgQERGR0WAwMVFyuRzvvfce5HK52KXQHfD+GDfeH+PG+2P86vMemcTgVyIiIrIMbDEhIiIio8FgQkREREaDwYSIiIiMBoMJERERGQ0GEyN35coVPPXUU3Bzc4OdnR0CAgIQFxenf10QBLz77rvw8vKCnZ0dBg0ahPPnz4tYseXQarV455130Lx5c9jZ2aFly5b46KOPquwJwfvTsA4ePIiRI0fC29sbEokEv/zyS5XXq3M/bty4gZCQECgUCjg7O2PKlCkoKChowJ/CfN3r/pSVlWHOnDkICAiAg4MDvL29ERoaiqtXr1b5DN6f+nO/Pz//Nm3aNEgkEnzxxRdVjhvi/jCYGLGbN2+iT58+sLa2xs6dO5GcnIzFixfDxcVFf84nn3yCL7/8EsuWLUNMTAwcHBwwdOhQlJSUiFi5ZVi4cCEiIiKwdOlSnD59GgsXLsQnn3yCr776Sn8O70/DKiwsRKdOnfD111/f8fXq3I+QkBCcOnUKe/bswfbt23Hw4EE8++yzDfUjmLV73Z+ioiIcO3YM77zzDo4dO4YtW7bg7NmzePTRR6ucx/tTf+7356fS1q1bceTIEXh7e9/2mkHuj0BGa86cOcIDDzxw19d1Op3g6ekpLFq0SH8sLy9PkMvlwg8//NAQJVq0ESNGCE8//XSVY4899pgQEhIiCALvj9gACFu3btU/r879SE5OFgAIsbGx+nN27twpSCQS4cqVKw1WuyX47/25k6NHjwoAhEuXLgmCwPvTkO52fy5fviz4+PgIJ0+eFJo2bSp8/vnn+tcMdX/YYmLEfv31V3Tv3h2PP/44GjdujC5dumDFihX611NTU5GVlYVBgwbpjymVSvTq1QvR0dFilGxRgoODsW/fPpw7dw4AcPz4cRw6dAjDhw8HwPtjbKpzP6Kjo+Hs7Izu3bvrzxk0aBCkUiliYmIavGZLl5+fD4lEAmdnZwC8P2LT6XSYOHEiXnvtNXTo0OG21w11f0xiEz9LlZKSgoiICLz66qt48803ERsbi5deegk2NjYICwtDVlYWAMDDw6PK+zw8PPSvUf154403oFKp4O/vDysrK2i1WsydOxchISEAwPtjZKpzP7KystC4ceMqr8tkMri6uvKeNbCSkhLMmTMHEyZM0G8Sx/sjroULF0Imk+Gll1664+uGuj8MJkZMp9Ohe/fumDdvHgCgS5cuOHnyJJYtW4awsDCRq6OffvoJGzZswMaNG9GhQwckJibi5Zdfhre3N+8PUR2UlZXhiSeegCAIiIiIELscAhAfH48lS5bg2LFjkEgk9XotduUYMS8vL7Rv377KsXbt2iE9PR0A4OnpCQDIzs6uck52drb+Nao/r732Gt544w2MHz8eAQEBmDhxIl555RXMnz8fAO+PsanO/fD09EROTk6V18vLy3Hjxg3eswZSGUouXbqEPXv26FtLAN4fMf3111/IyclBkyZNIJPJIJPJcOnSJcyaNQvNmjUDYLj7w2BixPr06YOzZ89WOXbu3Dk0bdoUANC8eXN4enpi3759+tdVKhViYmIQFBTUoLVaoqKiIkilVf8IWVlZQafTAeD9MTbVuR9BQUHIy8tDfHy8/pw///wTOp0OvXr1avCaLU1lKDl//jz27t0LNze3Kq/z/ohn4sSJOHHiBBITE/UPb29vvPbaa9i9ezcAA96fOgzapXp29OhRQSaTCXPnzhXOnz8vbNiwQbC3txe+//57/TkLFiwQnJ2dhW3btgknTpwQRo0aJTRv3lwoLi4WsXLLEBYWJvj4+Ajbt28XUlNThS1btgju7u7C66+/rj+H96dhqdVqISEhQUhISBAACJ999pmQkJCgn9VRnfsxbNgwoUuXLkJMTIxw6NAhoXXr1sKECRPE+pHMyr3uT2lpqfDoo48Kvr6+QmJiopCZmal/aDQa/Wfw/tSf+/35+a//zsoRBMPcHwYTI/fbb78JHTt2FORyueDv7y98++23VV7X6XTCO++8I3h4eAhyuVwYOHCgcPbsWZGqtSwqlUqYOXOm0KRJE8HW1lZo0aKF8NZbb1X5S5T3p2Ht379fAHDbIywsTBCE6t2P3NxcYcKECYKjo6OgUCiEyZMnC2q1WoSfxvzc6/6kpqbe8TUAwv79+/WfwftTf+735+e/7hRMDHF/JILwr2UqiYiIiETEMSZERERkNBhMiIiIyGgwmBAREZHRYDAhIiIio8FgQkREREaDwYSIiIiMBoMJERERGQ0GEyIiIjIaDCZEVCdRUVGQSCTIy8tr8Gv3798fL7/8coNfl4jqD4MJEdXIf8NAcHAwMjMzoVQqG+T6Bw4cgJ+fX4Nci4gankzsAojItNnY2DTolvPbtm3DyJEjG+x6RNSw2GJCRNU2adIkHDhwAEuWLIFEIoFEIsHatWurdOWsXbsWzs7O2L59O9q2bQt7e3uMGzcORUVFWLduHZo1awYXFxe89NJL0Gq1+s/WaDSYPXs2fHx84ODggF69eiEqKuq2Gn799Vc8+uij+uc6nQ6vv/46XF1d4enpiffff7+efxWIqD6xxYSIqm3JkiU4d+4cOnbsiA8//BAAcOrUqdvOKyoqwpdffonIyEio1Wo89thjGDNmDJydnbFjxw6kpKRg7Nix6NOnD5588kkAwIwZM5CcnIzIyEh4e3tj69atGDZsGJKSktC6dWv9tXJycjBgwAD9tdatW4dXX30VMTExiI6OxqRJk9CnTx8MHjy4AX5FiMjQGEyIqNqUSiVsbGxgb2+v7745c+bMbeeVlZUhIiICLVu2BACMGzcO69evR3Z2NhwdHdG+fXs89NBD2L9/P5588kmkp6djzZo1SE9Ph7e3NwBg9uzZ2LVrF9asWYN58+YBqOjGGTp0KGxsbPTXCgwMxHvvvQcAaN26NZYuXYp9+/YxmBCZKAYTIjI4e3t7fSgBAA8PDzRr1gyOjo5VjuXk5AAAkpKSoNVq0aZNmyqfo9Fo4Obmpn++bds2zJgxo8o5gYGBVZ57eXnpP5eITA+DCREZnLW1dZXnEonkjsd0Oh0AoKCgAFZWVoiPj4eVlVWV8yrDTGZmJhISEjBixIj7Xqvyc4nI9DCYEFGN2NjYVBm0aghdunSBVqtFTk4O+vbte8dzfvvtNwQHB8PV1dWg1yYi48JZOURUI82aNUNMTAzS0tJw/fp1g7ROtGnTBiEhIQgNDcWWLVuQmpqKo0ePYv78+fj9998B3D4bh4jME4MJEdXI7NmzYWVlhfbt26NRo0ZIT083yOeuWbMGoaGhmDVrFtq2bYvRo0cjNjYWTZo0QWFhIfbt28dgQmQBJIIgCGIXQUR0L1u2bMHbb7+N5ORksUshonrGFhMiMnqOjo5YuHCh2GUQUQNgiwkREREZDbaYEBERkdFgMCEiIiKjwWBCRERERoPBhIiIiIwGgwkREREZDQYTIiIiMhoMJkRERGQ0GEyIiIjIaDCYEBERkdH4Pyvfw6/K7wrbAAAAAElFTkSuQmCC",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "ocv_df.plot(y=\"Ewe-Ece/V\", x=\"time/h\", kind=\"line\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "As we are aiming to identify the resistance elements in an equivalent circuit model, we will construct an OCV function from the discharge portion of the experimental data. This is done by filtering the dataframe and appending an additional point to ensure the OCV function has data across the operating region (i.e. up to 4.2V)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sto_measured = (\n",
+ " 1\n",
+ " - ocv_df.loc[(ocv_df[\"I/mA\"] <= 0.0), \"Capacity/mA.h\"]\n",
+ " / ocv_df.loc[(ocv_df[\"I/mA\"] <= 0.0), \"Capacity/mA.h\"].iloc[-1]\n",
+ ")\n",
+ "V_measured = ocv_df.loc[(ocv_df[\"I/mA\"] <= 0.0), \"Ewe-Ece/V\"]\n",
+ "V_measured.iloc[0] = 4.2 # Extend for improved interpolation (a bit of a fudge)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "8",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def ocv(sto):\n",
+ " name = \"OCV\"\n",
+ " x = np.flip(sto_measured.to_numpy())\n",
+ " y = np.flip(V_measured.to_numpy())\n",
+ " return pybamm.Interpolant(x, y, sto, name)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9",
+ "metadata": {},
+ "source": [
+ "Next, let's construct the parameter set and update it with the known information and placeholder values for this cell."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "10",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"ECM_Example\")\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Cell capacity [A.h]\": 22.651, # 083/828 - C/20\n",
+ " \"Nominal cell capacity [A.h]\": 22.651,\n",
+ " \"Current function [A]\": 22.651,\n",
+ " \"Initial SoC\": 1.0,\n",
+ " \"Upper voltage cut-off [V]\": 4.25, # Extended to avoid hitting event\n",
+ " \"Lower voltage cut-off [V]\": 2.5,\n",
+ " \"Open-circuit voltage [V]\": ocv,\n",
+ " \"R2 [Ohm]\": 1e-4, # placeholder\n",
+ " \"C2 [F]\": 4e5, # placeholder\n",
+ " \"Element-2 initial overpotential [V]\": 0,\n",
+ " },\n",
+ " check_already_exists=False,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "11",
+ "metadata": {},
+ "source": [
+ "## Import Cycling Data\n",
+ "Now we import the corresponding constant current tests for this cell and construct a dataset from a subset of this time-series. This is done to reduce the computational time for inference, but also to improve the robustness of the inference task."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "12",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiwAAAG0CAYAAAARqnxaAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAABKt0lEQVR4nO3deVxU5f4H8M+ZGWZYh03ZVwVFRRQUF9wqySXMLOual65my23Bn1rdUrstt3stqMxrWpnaTb1l2uqSpcV1Qc0NQRRERUUFERgQ2WWbOb8/0LFJUZaBMzN83q/XvF5y5uHMdx59zXx8zvM8RxBFUQQRERGRCZNJXQARERHRnTCwEBERkcljYCEiIiKTx8BCREREJo+BhYiIiEweAwsRERGZPAYWIiIiMnkMLERERGTyGFiIiIjI5DGwEBERkclrU2BJSEiAIAiYM2dOk22OHz+OyZMnIyAgAIIgYPHixTe10Wq1eP311xEYGAgbGxt0794d//rXv8C7BhAREREAKFr7i8nJyVi+fDnCwsJu2666uhrdunXDI488ghdeeOGWbd59910sW7YMa9asQZ8+fXD48GHMmDEDjo6OmDVrVrPq0el0uHTpEhwcHCAIQovfDxEREXU8URRRUVEBLy8vyGRNj6O0KrBUVlYiNjYWK1euxIIFC27bNjIyEpGRkQCAefPm3bLNvn378MADDyAmJgYAEBAQgHXr1uHQoUPNrunSpUvw9fVtdnsiIiIyHbm5ufDx8Wny+VYFlri4OMTExCA6OvqOgaU5oqKisGLFCmRlZaFHjx44evQo9u7di0WLFjX5O7W1taitrdX/fP3yUW5uLtRqdZtrIiIiovZXXl4OX19fODg43LZdiwPL+vXrkZqaiuTk5FYX90fz5s1DeXk5QkJCIJfLodVq8fbbbyM2NrbJ34mPj8dbb71103G1Ws3AQkREZGbuNJ2jRZNuc3NzMXv2bKxduxbW1tZtKuz3vvnmG6xduxZfffUVUlNTsWbNGixcuBBr1qxp8nfmz5+PsrIy/SM3N9do9RAREZFpadEIS0pKCjQaDSIiIvTHtFotdu/ejY8++gi1tbWQy+UtLuLll1/GvHnz8OijjwIA+vbtiwsXLiA+Ph7Tp0+/5e+oVCqoVKoWvxYRERGZnxYFltGjRyM9Pd3g2IwZMxASEoK5c+e2KqwAjSuJ/jgzWC6XQ6fTtep8REREZFlaFFgcHBwQGhpqcMzOzg6urq7649OmTYO3tzfi4+MBAHV1dcjMzNT/OS8vD2lpabC3t0dQUBAA4P7778fbb78NPz8/9OnTB0eOHMGiRYvwxBNPtPkNEhERXafValFfXy91GZ2KlZVVqwc0fq/V+7A0JScnx2C05NKlSwgPD9f/vHDhQixcuBCjRo3Crl27AABLly7F66+/jueffx4ajQZeXl545pln8MYbbxi7PCIi6oREUURBQQFKS0ulLqVTcnJygoeHR5v2SRNEC9lOtry8HI6OjigrK+MqISIiMpCfn4/S0lK4ubnB1taWG4x2EFEUUV1dDY1GAycnJ3h6et7Uprnf30YfYSEiIjIlWq1WH1ZcXV2lLqfTsbGxAQBoNBq4ubm1+vIQb35IREQW7fqcFVtbW4kr6byu931b5g8xsBARUafAy0DSMUbfM7AQERGRyWNgISIiIpPHwEJERNRJBQQEYPHixfqfBUHAxo0bJavndhhY7qDsaj1OF1agXstdd4mIqGM9/vjjEAThpse4ceM6rIarV6/Czs4O7777LpydnVFTU3NTm+rqaqjVaixZsqTd6mBguYOo+O2499+7cfHKValLISKiTmjcuHHIz883eKxbt67DXj8xMRH+/v6YMWMGqqqq8MMPP9zU5rvvvkNdXR0ee+yxdquDgeUO3NSNd6UuLL85URIRkfkRRRHVdQ2SPFqzV6tKpYKHh4fBw9nZGQBQWlqKZ555Bu7u7rC2tkZoaCi2bNmi/929e/dixIgRsLGxga+vL2bNmoWqqqoWvf6mTZswceJEuLm54f7778fnn39+U5vPP/8ckyZNgouLS4vfX3Nx47g7cHNQ4VxxFQMLEZGFuFqvRe83fpHktTP/ORa2SuN89ep0OowfPx4VFRX48ssv0b17d2RmZuo3Zjt79izGjRuHBQsW4PPPP0dRURFmzpyJmTNnYtWqVc1+jS1btujntTz55JOYMGECLly4AH9/fwBAdnY2du/ejV9+ad8+ZWC5A/drIyya8lqJKyEios5oy5YtsLe3Nzj26quvYuDAgTh06BBOnDiBHj16AAC6deumbxMfH4/Y2FjMmTMHABAcHIwlS5Zg1KhRWLZsGaytre/42gcOHAAADB48GAAwduxYeHl5YdWqVfjHP/4BAFi9ejV8fX0xevTotr7V22JguQN3tQoALwkREVkKGys5Mv85VrLXbqm7774by5YtMzjm4uKCzz77DD4+Pvqw8kdHjx7FsWPHsHbtWv0xURSh0+lw7tw59OrV646vvWnTJkyYMEF/U2O5XI7p06dj9erVePPNNyGKItasWYMZM2YY3Pi4PTCw3IF+hKWCIyxERJZAEASjXZbpCHZ2dggKCrrp+PV79DSlsrISzzzzDGbNmnXTc35+fs167c2bNyMhIcHg2BNPPIH4+Hjs2LEDOp0Oubm5mDFjRrPO1xbm8zcmEU66JSIiUxQWFoaLFy8iKyvrlqMsERERyMzMvGXYaY7Tp0/jwoULuPfeew2Od+/eHaNGjcLnn38OURQRHR2tn8/SnhhY7sDdofGSEEdYiIhICrW1tSgoKDA4plAoMGrUKIwcORKTJ0/GokWLEBQUhJMnT+r3aZk7dy6GDBmCmTNn4qmnnoKdnR0yMzORmJiIjz766I6vu2nTJkRHR9/yppFPPvkknn76aQCNc1g6Apc134H770ZYWrMcjYiIqC22bdsGT09Pg8fw4cMBAN9//z0iIyMxdepU9O7dG6+88gq0Wi2AxhGYpKQkZGVlYcSIEQgPD8cbb7wBLy+vZr3u9eXMtzJ58mSoVCrY2tpi0qRJRnmfdyKIFvItXF5eDkdHR5SVlUGtVhvtvNV1Dfrlb+n/GAMHayujnZuIiNpfTU0Nzp07h8DAwGatjCGguLgYnp6euHjxItzd3dt8vtv9HTT3+5sjLHdgq1TAQdV45ayQS5uJiKgTKCkpwaJFi4wSVoyFc1iawU2tQkVRAzTlNQhys7/zLxAREZmxHj16NLlcWiocYWkGLm0mIiKSFgNLM7hzaTMRkdmzkCmbZskYfc/A0gxu+t1uOcJCRGRurKwaF0tUV1dLXEnndb3vr/9dtAbnsDSDu8O1EZYKjrAQEZkbuVwOJycnaDQaAICtrS0EQZC4qs5BFEVUV1dDo9HAyclJf2PG1mBgaYbrIywaXhIiIjJLHh4eAKAPLdSxnJyc9H8HrcXA0gw35rDwkhARkTkSBAGenp5wc3NDfX291OV0KlZWVm0aWbmOgaUZ9JeEru12y6FEIiLzJJfLjfLlSR2Pk26b4folodoGHcprGiSuhoiIqPNhYGkGays5HG0aZzZzHgsREVHHY2BpJncubSYiIpIMA0szcfM4IiIi6TCwNJMb92IhIiKSDANLM93Yi4WXhIiIiDoaA0szuTtcCywcYSEiIupwDCzNxM3jiIiIpMPA0kxunHRLREQkGQaWZnL/3RwW3qKciIioYzGwNFPXa3NY6rQ6lFbzPhREREQdiYGlmVQKOVzslAC4tJmIiKijMbC0gJsDd7slIiKSAgNLC1yfeMv7CREREXUsBpYWuLEXC0dYiIiIOhIDSwvwfkJERETSYGBpgRt3bGZgISIi6kgMLC3gxt1uiYiIJMHA0gLunHRLREQkCQaWFtDvdltRC52Ou90SERF1FAaWFuhir4IgAA06EVeq66Quh4iIqNNgYGkBK7kMrtd3u+U8FiIiog7DwNJCbg7XJt5ye34iIqIOw8DSQjfu2szAQkRE1FEYWFrInUubiYiIOhwDSwu5cbdbIiKiDsfA0kI3drvlCAsREVFHaVNgSUhIgCAImDNnTpNtjh8/jsmTJyMgIACCIGDx4sW3bJeXl4fHHnsMrq6usLGxQd++fXH48OG2lNcurk+6LeKkWyIiog7T6sCSnJyM5cuXIyws7Lbtqqur0a1bNyQkJMDDw+OWba5cuYJhw4bBysoKW7duRWZmJj744AM4Ozu3trx2wxEWIiKijqdozS9VVlYiNjYWK1euxIIFC27bNjIyEpGRkQCAefPm3bLNu+++C19fX6xatUp/LDAwsDWltbvrk26LKmuh1YmQywSJKyIiIrJ8rRphiYuLQ0xMDKKjo41SxObNmzFw4EA88sgjcHNzQ3h4OFauXHnb36mtrUV5ebnBoyO42ikhEwCtTsTlKo6yEBERdYQWB5b169cjNTUV8fHxRisiOzsby5YtQ3BwMH755Rc899xzmDVrFtasWdPk78THx8PR0VH/8PX1NVo9t6OQy9DF/vpeLAwsREREHaFFgSU3NxezZ8/G2rVrYW1tbbQidDodIiIi8M477yA8PBx//etf8fTTT+PTTz9t8nfmz5+PsrIy/SM3N9do9dyJO5c2ExERdagWBZaUlBRoNBpERERAoVBAoVAgKSkJS5YsgUKhgFarbVURnp6e6N27t8GxXr16IScnp8nfUalUUKvVBo+Owom3REREHatFk25Hjx6N9PR0g2MzZsxASEgI5s6dC7lc3qoihg0bhlOnThkcy8rKgr+/f6vO196ubx6n4dJmIiKiDtGiwOLg4IDQ0FCDY3Z2dnB1ddUfnzZtGry9vfVzXOrq6pCZman/c15eHtLS0mBvb4+goCAAwAsvvICoqCi88847+NOf/oRDhw5hxYoVWLFiRZvfYHtwc+AICxERUUcy+k63OTk5yM/P1/986dIlhIeHIzw8HPn5+Vi4cCHCw8Px1FNP6dtERkZiw4YNWLduHUJDQ/Gvf/0LixcvRmxsrLHLM4rrc1h4A0QiIqKO0ap9WH5v165dt/05ICAAoije8TwTJkzAhAkT2lpOh9DPYeElISIiog7Bewm1wvXt+XlJiIiIqGMwsLTC9UtCxZW1aNDqJK6GiIjI8jGwtIKrnRJymQBRBIor66Quh4iIyOIxsLSCTCboVwpxaTMREVH7Y2BpJTc157EQERF1FAaWVrqxFwtHWIiIiNobA0srXV/azL1YiIiI2h8DSyu5c2kzERFRh2FgaSX9HZs56ZaIiKjdMbC0kpv+khBHWIiIiNobA0srufOOzURERB2GgaWVbux2W4d67nZLRETUrhhYWsnZ1gpWcgEAUFTBy0JERETtiYGllQRB+N1NEHlZiIiIqD0xsLTB9Ym3XNpMRETUvhhY2uD6XiyceEtERNS+GFjawNvZBgBwMLtE4kqIiIgsGwNLGzw8wAcA8FN6Pk4WlEtcDRERkeViYGmDXp5qxPT1BAAsTjwtcTVERESWi4GljeZEB0MQgG3HC5CRVyZ1OURERBaJgaWNgt0dMLGfFwBg8f84ykJERNQeGFiMYNboYMgE4H8nCnE0t1TqcoiIiCwOA4sRdO9qjwfDGyfg/vt/WRJXQ0REZHkYWIxk1uggyGUCdp0qQsqFK1KXQ0REZFEYWIzE39UOD0c0jrIs5igLERGRUTGwGNHMe4JgJRew53QxDp3jZnJERETGwsBiRL4utvjTQF8AwKLEUxJXQ0REZDkYWIws7u4gKOUyHMguwb6zxVKXQ0REZBEYWIzMy8kGUwc1jrL8OzELoihKXBEREZH5Y2BpB8/fHQSVQobk81ew9wxHWYiIiNqKgaUduKut8dgQfwDAwl85ykJERNRWDCzt5NlR3WGnlONobik2pV2SuhwiIiKzxsDSTro6qPD83UEAgIStJ1Fd1yBxRUREROaLgaUdPTk8ED7ONigor8GnSdlSl0NERGS2GFjakbWVHK/e1wsAsDzpLPJKr0pcERERkXliYGln40M9MCjQBbUNOry79aTU5RAREZklBpZ2JggC3pjQG4IAbD56CSkXuGU/ERFRSzGwdIBQb0dMubZl/1s/ZkKn4zJnIiKilmBg6SAvjekJe5UCxy6W4YcjeVKXQ0REZFYYWDpIVwcVZt7TuMz5vW0nUVXLZc5ERETNxcDSgWYMC4C/qy00FbVYtuus1OUQERGZDQaWDqRS3FjmvGJPNnJLqiWuiIiIyDwwsHSwMb3dEdXdFXUNOiRwmTMREVGzMLB0MEEQ8PqE3pAJwE/p+djHuzkTERHdEQOLBHp5qhE7uPFuzvM3pKOmXitxRURERKaNgUUir4zrCQ+1NS5crsa//5cldTlEREQmjYFFIg7WVlgwKRQA8Nmec8jIK5O4IiIiItPFwCKh6N7umBDmCa1OxCvfHUO9Vid1SURERCaJgUVib97fB442VsjML8dne85JXQ4REZFJYmCRWFcHFV6f0BsAsPh/WThXXCVxRURERKaHgcUETI7wxojgLqht0GHe98d4c0QiIqI/YGAxAYIg4J0H+8LGSo6D50rw9eFcqUsiIiIyKQwsJsLXxRYvjekBAHjn5xMoLK+RuCIiIiLT0abAkpCQAEEQMGfOnCbbHD9+HJMnT0ZAQAAEQcDixYvbfE5LNWNYIPr5OKKipgFvbMqQuhwiIiKT0erAkpycjOXLlyMsLOy27aqrq9GtWzckJCTAw8PDKOe0VHKZgITJYVDIBPxyvBBb0/OlLomIiMgktCqwVFZWIjY2FitXroSzs/Nt20ZGRuL999/Ho48+CpVKZZRzWrJenmo8d1d3AMDfN2ZAU8FLQ0RERK0KLHFxcYiJiUF0dLTRCmnpOWtra1FeXm7wsBQz7wlCb081Sqrq8PK3xyCKXDVERESdW4sDy/r165Gamor4+HijFdGac8bHx8PR0VH/8PX1NVo9UlMp5Pjw0f5QKWRIyirCFwcuSF0SERGRpFoUWHJzczF79mysXbsW1tbWRimgteecP38+ysrK9I/cXMtaChzs7oD540MAAG//dAKnCyskroiIiEg6LQosKSkp0Gg0iIiIgEKhgEKhQFJSEpYsWQKFQgGtVtviAlp7TpVKBbVabfCwNNOjAjCqR1fUNugwe30a6hp4ryEiIuqcFC1pPHr0aKSnpxscmzFjBkJCQjB37lzI5fIWF9Ae57QUgiDg/YfDMO7DPcjML8cHiacwf3wvqcsiIiLqcC0KLA4ODggNDTU4ZmdnB1dXV/3xadOmwdvbWz8fpa6uDpmZmfo/5+XlIS0tDfb29ggKCmrWOTszN7U14h/qi2e+SMGK3dm4q4cbhnZ3lbosIiKiDmX0nW5zcnKQn39j/5BLly4hPDwc4eHhyM/Px8KFCxEeHo6nnnrK2C9tscb28cCjkb4QReClb9JQVl0vdUlEREQdShAtZM1seXk5HB0dUVZWZpHzWapqGxCzZA/OX67GxH5eWDI1XOqSiIiI2qy539+8l5CZsFMp8O8p/SGXCdh89BI2peVJXRIREVGHYWAxI+F+zpg9OhgA8NqGDJwrrpK4IiIioo7BwGJmnr+rOyIDnFFR24BnvjiMqtoGqUsiIiJqdwwsZkYhl+HjP0fAzUGFrMJKvPI9t+4nIiLLx8BihtzU1lj2WASs5AJ+OpaPlXuypS6JiIioXTGwmKkB/i544/4+AICErSex70yxxBURERG1HwYWM/bYYD88PMAHOhGYue4I8kqvSl0SERFRu2BgMWOCIGDBpFCEeqtRUlWHZ79IQU19y+/nREREZOoYWMyctZUcnz42AM62VkjPK8PrGzM4CZeIiCwOA4sF8HG2xdKpEZAJwLcpF7H2YI7UJRERERkVA4uFGB7cBa+MCwEAvPXjcaRcKJG4IiIiIuNhYLEgz4zshpi+nqjXinjmi1Tkl3ESLhERWQYGFgsiCALeezgMIR4OKK6sxTOchEtERBaCgcXC2KkUWDltIJxsrXDsYhnm/5DOSbhERGT2GFgskK+LLT75cwTkMgEbjuThP3vPSV0SERFRmzCwWKiooC54PaYXAOCdn09gd1aRxBURERG1HgOLBZseFYA/Dby2E+5XqThfXCV1SURERK3CwGLBBEHAvyaFItzPCeU1DXjqv4dRUVMvdVlEREQtxsBi4VQKOZY/NgDuahXOaCrxwtdp0Ok4CZeIiMwLA0sn4Ka2xvK/DIRSIcP/TmjwQeIpqUsiIiJqEQaWTqK/rxMSHuoLAPh451msPXhB4oqIiIiaj4GlE3kowgez7gkCALy+MQO/HC+QuCIiIqLmYWDpZF64twcejfSFTgT+b90RJJ/nPYeIiMj0MbB0MoIgYMGkUET3ckddgw5Prk5GVmGF1GURERHdFgNLJ6SQy7B0ajgG+DujvKYB0z8/hEulvFEiERGZLgaWTspGKcd/pg9EkJs98stqMP3zQyir5h4tRERkmhhYOjEnWyXWPDEIHmprnNZU4qn/JvPuzkREZJIYWDo5bycbrHliENTWCiSfv4L/W3cEDVqd1GUREREZYGAh9PRwwGfTI6FUyJCYWYhXN6RDFLkbLhERmQ4GFgIADAp0wdKp4ZAJwDeHL+Kdn08wtBARkclgYCG9sX088O7kMADAyj3n8MmusxJXRERE1IiBhQw8MtAXr0/oDQB4/5dT+PIAt/AnIiLpMbDQTZ4cHoj/u76F/6YM/Hj0ksQVERFRZ8fAQrf04r098Jch/hBF4IWv07DrlEbqkoiIqBNjYKFbEgQBb03sgwf6e6FBJ+LZL1NwmPcdIiIiiTCwUJNkMgELH+mHe0LcUFOvw4zVyci8VC51WURE1AkxsNBtWcll+PjPEYgMcEZFTQMe+89BnCxgaCEioo7FwEJ3ZKOU4z+PR6KfjyNKqurw55UHcaqAd3gmIqKOw8BCzaK2tsJ/nxyMMH1oOYCsQoYWIiLqGAws1GyONlb44onBCPVW4/K10HKaoYWIiDoAAwu1iKOtFb58cjB6e6pRXFmHqSsP4oymUuqyiIjIwjGwUIs52Sqx9qnB6OWpRnFlLaauPICzRQwtRETUfhhYqFWc7RpDS4iHA4oqajF1xQFkM7QQEVE7YWChVnOxU+Krp4cgxMMBmorGkRaGFiIiag8MLNQmLtdGWnq6O6CwvBaPrjjAOS1ERGR0DCzUZq72Knz19GCDkZYzGq4eIiIi42FgIaNoDC1D9HNaHl1xkEueiYjIaBhYyGhc7JRY9/SQa0ueG0dauCMuEREZAwMLGdX11UN9vBr3afnzygO89xAREbUZAwsZ3fXQcmNH3IM4kc/QQkRErcfAQu3CyVaJtU8OQV/vG/ceysgrk7osIiIyUwws1G4cba3w5VOD0c/HEVeq6zF15QEcPl8idVlERGSGGFioXTnaWOGLpwZjUIALKmoa8Jf/HMLurCKpyyIiIjPDwELtTm1thTVPDMKoHl1xtV6LJ9ckY2t6vtRlERGRGWlTYElISIAgCJgzZ06TbY4fP47JkycjICAAgiBg8eLFN7WJj49HZGQkHBwc4ObmhkmTJuHUqVNtKY1MjI1SjpXTBiKmryfqtSLivkrFdykXpS6LiIjMRKsDS3JyMpYvX46wsLDbtquurka3bt2QkJAADw+PW7ZJSkpCXFwcDhw4gMTERNTX12PMmDGoqqpqbXlkgpQKGZZMDcefBvpAJwJ/+/YoVv92TuqyiIjIDCha80uVlZWIjY3FypUrsWDBgtu2jYyMRGRkJABg3rx5t2yzbds2g59Xr14NNzc3pKSkYOTIkbf8ndraWtTW1up/Li/nsllzIJcJeHdyGBysrfCfvefwjx8zUVHTgJn3BEEQBKnLIyIiE9WqEZa4uDjExMQgOjra2PUAAMrKGpe/uri4NNkmPj4ejo6O+oevr2+71ELGJwgCXovphTnRwQCADxKzsOCnE9DpRIkrIyIiU9XiwLJ+/XqkpqYiPj6+PeqBTqfDnDlzMGzYMISGhjbZbv78+SgrK9M/cnNz26Ueah+CIGBOdA+8PqE3AOA/e89h5rpU1NRrJa6MiIhMUYsuCeXm5mL27NlITEyEtbV1uxQUFxeHjIwM7N2797btVCoVVCpVu9RAHefJ4YHoYq/E3749ip/TC1BYfhArpw2Ei51S6tKIiMiEtGiEJSUlBRqNBhEREVAoFFAoFEhKSsKSJUugUCig1bbtf8czZ87Eli1bsHPnTvj4+LTpXGQ+Hujvjf8+MRhqawVSLlzBQ5/8hvPFnHBNREQ3tCiwjB49Gunp6UhLS9M/Bg4ciNjYWKSlpUEul7eqCFEUMXPmTGzYsAE7duxAYGBgq85D5mtod1f88HwUvJ1scP5yNR5atg8pF65IXRYREZmIFl0ScnBwuGleiZ2dHVxdXfXHp02bBm9vb/0cl7q6OmRmZur/nJeXh7S0NNjb2yMoKAhA42Wgr776Cps2bYKDgwMKCgoAAI6OjrCxsWnbOySzEeTmgA1xUXhy9WGk55XhzysPYPGU/hjf11Pq0oiISGJG3+k2JycH+fk3djG9dOkSwsPDER4ejvz8fCxcuBDh4eF46qmn9G2WLVuGsrIy3HXXXfD09NQ/vv76a2OXRybOzcEaXz8zBNG93FDboMPzX6Xisz3ZEEWuICIi6swE0UK+CcrLy+Ho6IiysjKo1Wqpy6E20upE/GPzcXxx4AIA4E8DffDPB0JhbdW6y45ERGSamvv9zXsJkUmSywT884E+eC2mF2QC8M3hi5iy4gAKymqkLo2IiCTAwEImSxAEPDWiG9Y8MQiONlY4mluKCUv34vD5EqlLIyKiDsbAQiZvRHBX/DhzOEI8HFBcWYupKw9g7cELUpdFREQdiIGFzIKfqy1+eD5Kf7fnv2/IwPwf0lHbwJ1xiYg6AwYWMhu2SgU++nM45o4LgSAA6w7lYOqKA9CUc14LEZGlY2AhsyIIAp67qztWPR4JtbUCqTmN81pSc7jJHBGRJWNgIbN0V083bJ45HD3c7aGpqMWjyw/g6+QcqcsiIqJ2wsBCZiugix1+eH4YxvXxQJ1Wh7nfp+P1jRmoa9BJXRoRERkZAwuZNXuVAp/ERuCle3tAEIAvDlxA7GcHUFRRK3VpRERkRAwsZPZkMgH/NzoYn00bCAeVAsnnr+D+pXtxNLdU6tKIiMhIGFjIYozu5Y6NM4ehW1c7FJTX4JHl+/Ht4VypyyIiIiNgYCGL0r2rPTbGDUN0LzfUNejw8nfHMP+HY6ip534tRETmjIGFLI7a2gor/jIQc6KDr+3XkouHP92H3JJqqUsjIqJWYmAhiySTCZgT3QOrZwyCs60VMvLKEbNkD7afKJS6NCIiagUGFrJoo3p0xZZZI9Df1wnlNQ14cs1hvLftJBq0XPpMRGROGFjI4nk72eCbZ4Zi+lB/AMAnu87iL/85xKXPRERmhIGFOgWlQoa3HgjFkqnhsFXKsT/7MmKW7EHy+RKpSyMiomZgYKFOZWI/L2yeOQxBbte29F9xAJ/tyYYoilKXRkREt8HAQp1OkJsDNsUNw8R+XtDqRCz46QSeX5uKipp6qUsjIqImMLBQp2SnUuDDR/vjnw/0gZVcwNaMAkz86DecLCiXujQiIroFBhbqtARBwLShAfjmmaHwcrTGueIqTPr4N3yfclHq0oiI6A8YWKjTC/dzxk+zRmBUj66oqdfhpW+PYv4P6dwdl4jIhDCwEAFwtlNi1eOReCG6x7XdcXMw6ePfkJFXJnVpREQEBhYiPZlMwOzoYKyZMQiudkqcLKjAAx//hkW/nkJdAzeaIyKSEgML0R+M7NEVv74wEjFhntDqRCzZcQYTP9rL0RYiIgkxsBDdgqu9Ch//OQKfxEZwtIWIyAQwsBDdxn19PTnaQkRkAhhYiO7gVqMtkz7+DUu3n+ZNFImIOggDC1EzXR9tua+vBxp0Ij5IzMKflu/HhctVUpdGRGTxGFiIWuD6aMu/p/SDg0qB1JxS3PfhHnyTnMv7ERERtSMGFqIWEgQBD4b7YOucERgU6IKqOi1e+f4YnvkiBSVVdVKXR0RkkRhYiFrJx9kW654egrnjQmAlF/BrZiHGLt6Nnac0UpdGRGRxGFiI2kAuE/DcXd2x4flhCHKzR1FFLWasSsarG9JRWdsgdXlERBaDgYXICEK9HbHl/4bj8agAAMBXB3Mw9t+78duZYmkLIyKyEAwsREZibSXHPyb2wVdPDYaPsw3ySq8i9rOD+DtHW4iI2oyBhcjIooK64Jc5I/GXIf4AgLUcbSEiajMGFqJ2YKdS4F+TQjnaQkRkJAwsRO2oqdGWpKwiiSsjIjIvDCxE7exWoy3TPz+El745itJq7ttCRNQcDCxEHeT6aMuMYQEQBOD71IuIXrQbW9PzpS6NiMjkMbAQdSA7lQJv3t8H3z0bhSA3exRX1uK5tal49osUaMprpC6PiMhkMbAQSWCAvzN+mjUcs+4JgkImYNvxAkQvSsI3h3lPIiKiW2FgIZKISiHHi2N64sf/G46+3o4or2nAK98dw6SPf8P+s5elLo+IyKQIooX8d668vByOjo4oKyuDWq2WuhyiFmnQ6vD5b+fw4f9Oo6pOCwAYHeKGueND0MPdQeLqiIjaT3O/vxlYiExIcWUtlmw/ja8O5qBBJ0ImAH8a6IsX7u0Bd7W11OURERkdAwuRGcsuqsT7v5zC1owCAIC1lQxPj+iGZ0Z1h71KIXF1RETGw8BCZAFSLpTgnZ9PIuXCFQCAh9oabz3QB2P7eEhcGRGRcTCwEFkIURTxa2Yh3vn5BC5crgYAjO3jjrcmhsLDkZeJiMi8Nff7m6uEiEycIAgY28cDv8wZibi7u0MhE/DL8UJEL0rCF/vPQ6eziP9zEBHdFgMLkZmwtpLj5bEh2DJrOPr7OqGytgGvbzqOhz/dh1MFFVKXR0TUrhhYiMxMiIca3z8XhX8+0Af2KgVSc0oRs2QP3t12kneCJiKLxcBCZIbkMgHThgYg8cWRuLe3Oxp0IpbtOou73t+JLw5cQL1WJ3WJRERGxUm3RBbgl+MFiP/5BM5fm5TbrYsdXhkXgrF93CEIgsTVERE1rUMm3SYkJEAQBMyZM6fJNsePH8fkyZMREBAAQRCwePHiW7b7+OOPERAQAGtrawwePBiHDh1qS2lEncrYPh5IfHEU/vlAH7jaKZFdXIVnv0zBw5/uR8qFEqnLIyJqs1YHluTkZCxfvhxhYWG3bVddXY1u3bohISEBHh633jvi66+/xosvvog333wTqamp6NevH8aOHQuNRtPa8og6HSu5DNOGBmDXy3fh/+4JgrWVDCkXrmDysv149osUnC2qlLpEIqJWa1VgqaysRGxsLFauXAlnZ+fbto2MjMT777+PRx99FCqV6pZtFi1ahKeffhozZsxA79698emnn8LW1haff/55k+etra1FeXm5wYOIAAdrK7w0pieSXr4bj0b6QiYA244XYMy/d2Pe98eQX3ZV6hKJiFqsVYElLi4OMTExiI6ObnMBdXV1SElJMTiXTCZDdHQ09u/f3+TvxcfHw9HRUf/w9fVtcy1ElsRdbY2EyWHYNmckonu5Q6sTsT45F6Pe34W3f8rElao6qUskImq2FgeW9evXIzU1FfHx8UYpoLi4GFqtFu7u7gbH3d3dUVBQ0OTvzZ8/H2VlZfpHbm6uUeohsjQ93B3w2fSB+P65KAwKdEFdgw4r95zDyPd2Ysn206jiUmgiMgMtCiy5ubmYPXs21q5dC2trabcEV6lUUKvVBg8iatoAf2d8/dchWD0jEn281KiobcCixCyMen8n1uw7j7oGLoUmItPVosCSkpICjUaDiIgIKBQKKBQKJCUlYcmSJVAoFNBqtS0uoEuXLpDL5SgsLDQ4XlhY2OQkXSJqHUEQcFdPN/w4cziWTg1HYBc7FFfW4c3NxzHm30n46Vg+LGSnAyKyMC0KLKNHj0Z6ejrS0tL0j4EDByI2NhZpaWmQy+UtLkCpVGLAgAHYvn27/phOp8P27dsxdOjQFp+PiO5MJhNwfz8v/PrCSLz9YCi62Ktw/nI14r5KxYOf7MOhc1wKTUSmRdGSxg4ODggNDTU4ZmdnB1dXV/3xadOmwdvbWz/Hpa6uDpmZmfo/5+XlIS0tDfb29ggKCgIAvPjii5g+fToGDhyIQYMGYfHixaiqqsKMGTPa/AaJqGlWchliB/tjUn9vfLbnHJbvPou03FL8afl+RPdyx7zxPRHk5iB1mURELQsszZGTkwOZ7MbAzaVLlxAeHq7/eeHChVi4cCFGjRqFXbt2AQCmTJmCoqIivPHGGygoKED//v2xbdu2mybiElH7sFMpMDs6GFMH+2LJ9tNYdygX/ztRiB0nCzEl0g9zooPhrpZ23hoRdW7cmp+IbnJGU4n3tp3Er5mNc8usrWR4PCoQz43qDkdbK4mrIyJL0tzvbwYWImpS8vkSvLv1JA5fuAIAcLBW4NlR3TFjWABslUYfoCWiToiBhYiMQhRF7DylwXvbTuFkQQUAoIu9CrNHB2FKpB+UCt70nYhaj4GFiIxKpxOx+eglLErMQk5J412h/Vxs8X/3BGFSuDes5AwuRNRyDCxE1C7qGnT4OjkHS3acQVFFLQDA28kGz47qhkcG+sLaquXbGxBR58XAQkTtqrquAV/sv4CVe86huLIxuHSxV+HpEYGIHeIPexXnuBDRnTGwEFGHqKnX4pvDuVielI280sY7QTvaWOHxqAA8HhUAZzulxBUSkSljYCGiDlWv1WHjkTws23UW2cVVAABbpRyPDfHHU8MD4cZ9XIjoFhhYiEgSWp2IbRkF+HjnGWTmlwMAlAoZ/jTQB8+M7A5fF1uJKyQiU8LAQkSSEkURu04V4aOdZ5BybR8XuUzAA/298Pxd3bnlPxEBYGCRuhwiukYURRw8V4KPd57BntPFAABBAMb18UDc3UEI9XaUuEIikhIDCxGZnKO5pfh45xn9lv8AEN3LHXOigxlciDopBhYiMllZhRX4aMcZ/HjsEq5/Ao0OccPs6GCE+ThJWhsRdSwGFiIyeWc0lfhox2lsPnoJumufRHf37IrZ0T3Q39dJ0tqIqGMwsBCR2cguqsRHO89g45E8fXAZHtQFT40IxKgeXSEIgrQFElG7YWAhIrNzvrgKH+08gw1H8qC9llyC3ezx5PBATAr35rb/RBaIgYWIzFZuSTVW7zuPr5NzUVnbAABwtVPisSH+eGyIP7o6qCSukIiMhYGFiMxeeU09vknOxarfzuu3/VcqZJjU3wt/GRKAvj5cWURk7hhYiMhiNGh1+OV4IVbuyUZabqn+eD8fR8QO8cf9YV6wUfJyEZE5YmAhIouUcuEK/rv/PLamF6BOqwMAqK0VeHiAL2KH+KF7V3uJKySilmBgISKLVlxZi28PX8RXhy4gt+Sq/nhUd1dMifTFvb3dYatUSFghETUHAwsRdQo6nYik00VYe+ACdpzU6JdF2yrlGNfHA5PCvRHV3RUKuUzaQonolhhYiKjTySu9iq+Tc7HxSB5ySqr1x7s6qDCxnxceDPdGHy8193UhMiEMLETUaYmiiNScUmw8koctxy7hSnW9/rkQDwc8O6o7JoR5ctSFyAQwsBARAahr0GHP6SL8cCQP/8ssRG1D40Rdf1dbPDuqOx6K8IZKwRVGRFJhYCEi+oOyq/X4Yv95fP7beZRU1QEAPNTWeHpkN0wd5MtJukQSYGAhImpCdV0D1h3Kxcrd2SgorwEAuNgp8cSwAPx5sD9c7JQSV0jUeTCwEBHdQW2DFj+k5mHZrrP6SbpKhQwxfT3x2BA/RPg5c4IuUTtjYCEiaqYGrQ4/pedj5Z5sZOSV64+HeDjgsSH+mBTuDXsVLxcRtQcGFiKiVjiaW4ovD1zA5qOX9BN07VUKTAr3wqORflwWTWRkDCxERG1QVl2P71IvYu2BC8gurtIfD3azx6RwbzzQ3ws+zrYSVkhkGRhYiIiMQBRF7D97GWsP5iDxRCHqro26AMCgQBc8GO6N+0I94WhrJWGVROaLgYWIyMjKa+qxLb0AG47k4cC5y7j+6amUy3BPiBsmD/DBXT27woob0hE1GwMLEVE7ulR6FZuPXsLGI3k4WVChP97FXolJ/b3xyEBf9PRwkLBCIvPAwEJE1EFO5Jfjh9SL2HAkD8WVdfrjfb0d8fAAHzzQ3wtOttzbhehWGFiIiDpYvVaH3VlF+PbwRWw/WYh6bePH6/VLRpPCvXF3SFfeCoDodxhYiIgkVFJVh01pefgu5SKOX7qxt4vaWoGYME9M6u+NyAAXyGRcIk2dGwMLEZGJOJFfjo1pedh05JL+VgAA4O1kgwf6e+GhCG8EuXG+C3VODCxERCZGqxNx8NxlbDySh63pBaiobdA/N8DfGY9G+iImzJM3YaROhYGFiMiE1dRrsf2EBhuO5GHnKQ20usaPYgeVAhP7N+6q29fHUeIqidofAwsRkZnQlNfg25SL+Do5V38TRgDo46XGo5G+uK+vJ1ztVRJWSNR+GFiIiMyMTifiQPZlrEvOxS8ZBajTNu6qKxMad9UdH+qJcaEecFdbS1wpkfEwsBARmbGSqjpsOJKHDUcuGtxBGmic7zI+1ANj+3jA14X3MyLzxsBCRGQhckuqsS2jAFsz8pGaU2rwXLifEx4e4IMJYV5wtOH9jMj8MLAQEVmg/LKr+CWjAFszCpB8vgTX5upCpZBhbB8PPDzAB8OCukDO/V3ITDCwEBFZOE1FDTYduYRvU3KRVVipP+7paI2HIrzxUIQPune1l7BCojtjYCEi6iREUUR6Xhm+S7mITWmXUHa1Xv9ciIcDxoV6YHyoJ3q420MQOPJCpoWBhYioE6ptaNzf5dvDudhzuhgNuhsf8d262OnDS6i3muGFTAIDCxFRJ1daXYf/ndBga3o+9pwu1i+TBgAfZxuMD/XAuFBPhPs68Z5GJBkGFiIi0quoqceOkxpsyyjAzlMa1NTfCC8eamuM7eOOcaGeGBTowgm71KEYWIiI6Jaq6xqQdKoIWzMKsOOkBpW/u6dRF3sl7u3tgfGhHhja3RVWcpmElVJnwMBCRER3VFOvxW9nirE1owCJmYUGE3Ydbaxwb293jA/1wPDgLlAp5BJWSpaKgYWIiFqkXqvDgezL2JpRgF+PF6C4sk7/nL1KgXtC3DA+1AN39XSDjZLhhYyDgYWIiFpNqxORfL4E2zIKsC2jAAXlNfrnrK1kGBzoihHBXTCyR1cEu3G5NLVec7+/23RxMiEhAYIgYM6cObdt9+233yIkJATW1tbo27cvfv75Z4PnKysrMXPmTPj4+MDGxga9e/fGp59+2pbSiIioDeQyAUO6ueIfE/tg37x78MPzUfjryG7wcbZBTb0OSVlFWPDTCYz5924Mid+Ov317FJvS8nC5slbq0slCKVr7i8nJyVi+fDnCwsJu227fvn2YOnUq4uPjMWHCBHz11VeYNGkSUlNTERoaCgB48cUXsWPHDnz55ZcICAjAr7/+iueffx5eXl6YOHFia0skIiIjkMkERPg5I8LPGfPHh+BUYQX2ni7G7tPFOJh9GYXltfgu5SK+S7kIAIjwc8L9/bwQ09cTbryzNBlJqy4JVVZWIiIiAp988gkWLFiA/v37Y/HixbdsO2XKFFRVVWHLli36Y0OGDEH//v31oyihoaGYMmUKXn/9dX2bAQMGYPz48ViwYEGzauIlISKijldTr8Xh81ew53QRdp8uxon8G3eWFgRgcKALJoR5YXyoB1ztVRJWSqaqXS8JxcXFISYmBtHR0Xdsu3///pvajR07Fvv379f/HBUVhc2bNyMvLw+iKGLnzp3IysrCmDFjmjxvbW0tysvLDR5ERNSxrK3kGB7cBfPv64Wts0fg4Kuj8eb9vRHh5wRRBA5kl+C1jRkY9M52/OU/B/F1cg40FTV3PjHRH7T4ktD69euRmpqK5OTkZrUvKCiAu7u7wTF3d3cUFBTof166dCn++te/wsfHBwqFAjKZDCtXrsTIkSObPG98fDzeeuutlpZPRETtyF1tjRnDAjFjWCAuXqnGT8fyseVYPtLzyrDndDH2nC4GAPT1dsTdPbvirhA39PNx4mZ1dEctCiy5ubmYPXs2EhMTYW1tvOuSS5cuxYEDB7B582b4+/tj9+7diIuLg5eXV5OjOPPnz8eLL76o/7m8vBy+vr5Gq4mIiNrGx9kWz4zqjmdGdcf54ipsOXYJiZmFOHqxDOl5jY8lO87AxU6JUT264u4QN4wI6gJnO6XUpZMJatEclo0bN+LBBx+EXH5j/b1Wq4UgCJDJZKitrTV4DgD8/Pzw4osvGqwkevPNN7Fx40YcPXoUV69ehaOjIzZs2ICYmBh9m6eeegoXL17Etm3bmlUb57AQEZmHoopaJGUVYecpDXZnFaGi5sZOu4LQOPoyIrgLRgR3RYSfM5QK7rZryZr7/d2iEZbRo0cjPT3d4NiMGTMQEhKCuXPn3hRWAGDo0KHYvn27QWBJTEzE0KFDAQD19fWor6+HTGb4D1Iul0On04GIiCxLVwcVHh7gg4cH+KBeq0PqhSvYcUqDXSeLcKqwAsculuHYxTJ8vPMsbJVyDO3WuOfLXT3dENDFTurySSItCiwODg76pcjX2dnZwdXVVX982rRp8Pb2Rnx8PABg9uzZGDVqFD744APExMRg/fr1OHz4MFasWAEAUKvVGDVqFF5++WXY2NjA398fSUlJ+O9//4tFixYZ4z0SEZGJspLLMLibKwZ3c8X88b1QWF6DvaeLsed0EfaeKUZxZR22n9Rg+0kN8GMmQjwcMD7UE+P7enDDuk6m1fuwNCUnJ8dgtCQqKgpfffUVXnvtNbz66qsIDg7Gxo0bDYLP+vXrMX/+fMTGxqKkpAT+/v54++238eyzzxq7PCIiMmHuamtMHuCDyQN8oNOJOFFQjj2ni7E7qwgHz5XgZEEFThZU4N//y0K3rna4L9QT40I90MdLzfBi4bg1PxERmYXS6jokZhZiW0YB9pwuRp32xrQBH2cbjAjugqHdu2BoN1d0deCeL+aC9xIiIiKLVVFTjx0nNdiaXoBdWRrU1BvOeQx2s0dUd1cM7e6KId1c4WTLlUemioGFiIg6heq6BhzIvoz9Zy9j39nLyMwvx++/2QQB6OnugEGBLogMcMGgQBe485YBJoOBhYiIOqXS6jocyC7B/rPF2Hf2Mk5rKm9q4+9q2xheAlwwuJsL/F25+kgqDCxERERo3Pcl+XwJDp0rQfL5kptGYADAz8VWv/dLVJAr1NZW0hTbCTGwEBER3UJ5TT1SLlxB8rnGEJOWW4oG3Y2vQrlMQH9fJ32ACfNxhJWcm9e1FwYWIiKiZqisbcDB7MuNy6dPFyG7qMrgeRsrOSL8nfSXkML9nGGjvHmjVGodBhYiIqJWuHil+trmdcX47WwxSqvrDZ5XyAT09XHUz3+JDHCBAy8htRoDCxERURvpdCLOFFXi4LkS/SWkgvIagzZymYC+3o6I6u6KqO5dMMCfIzAtwcBCRERkZKIo4uKVqzh0LbwcOHcZFy5XG7RRymXo7+eEqO6uuKunG8K8HSGTcRfepjCwEBERdYC80qvX9oApxv6zl5FfZjgC42qnxKieXXFPiBtGBHeFow0vH/0eAwsREVEHE0URFy5XY3/2Zew5XYQ9WcWoqG3QPy+XCRjg54y7Q9wwpJsL+ng5Qqno3CuQGFiIiIgkVq/V4fD5K9h5SoOdJzU3bWKnVMjQ19sREX5OiPBzRoS/c6fbhZeBhYiIyMTkllRj1ykNkrKKkHLhCq78YQUSAHg72WCAv7N+HxgPR8sOMAwsREREJkwURZy/XI3UC1eQmnMFR3JKcbKgHLo/fCv3cLfHiOCuGB7cBYMDXWCrVEhTcDthYCEiIjIzVbUNOHqxFAfOXsbu08U4drHUIMAo5TIMDHDGiOCuGBHcBb091Wa/AomBhYiIyMyVVtdh39nL2J1VhD2ni5FXetXgeVc7JYZfu3Q0IriLWc5/YWAhIiKyIKIoIru4CruzirD3dDH2Z19GdZ3WoE1PdwdEBbliUIALIgNd0MVeJVG1zcfAQkREZMHqGnRIzbnSuHz6dDHS88puugt1t652GBTggkGBjbcQ8HG2gSCY1iUkBhYiIqJOpKSqDr+dKcahcyVIPl+CkwUVN7XxcrTGkO6uGNrNFVFBXeDtZCNBpYYYWIiIiDqx0uo6HD5/BcnnS3DofAnSL5ah4Q9LkPxcbBHV3RVDr4UYNwnmwDCwEBERkV51XQNSL5Rif3Yx9p29jGMXy6D9Q4AJcrNvHH3p7ooh3VzhbKds97oYWIiIiKhJFTX1OHz+CvadbQwwmfnlBnNgBAHo5aHG0O6NAWZQoAscrI1/HyQGFiIiImq20uo6HMguwf5rAeaPtxGQywRsihuGUG9Ho75uc7+/LWu7PCIiImoVJ1slxoV6YFyoBwBAU1GjDzD7z15GYXkterg7SFYfAwsRERHdxM3BGhP7eWFiPy8AjauQpLyzdOe+pzURERE1i0sHTMC9HQYWIiIiMnkMLERERGTyGFiIiIjI5DGwEBERkcljYCEiIiKTx8BCREREJo+BhYiIiEweAwsRERGZPAYWIiIiMnkMLERERGTyGFiIiIjI5DGwEBERkcljYCEiIiKTp5C6AGMRRREAUF5eLnElRERE1FzXv7evf483xWICS0VFBQDA19dX4kqIiIiopSoqKuDo6Njk84J4p0hjJnQ6HS5dugQHBwcIgmC085aXl8PX1xe5ublQq9VGO6+lYT81D/upedhPzcN+ah72U/NI1U+iKKKiogJeXl6QyZqeqWIxIywymQw+Pj7tdn61Ws1/6M3Afmoe9lPzsJ+ah/3UPOyn5pGin243snIdJ90SERGRyWNgISIiIpPHwHIHKpUKb775JlQqldSlmDT2U/Own5qH/dQ87KfmYT81j6n3k8VMuiUiIiLLxREWIiIiMnkMLERERGTyGFiIiIjI5DGwEBERkcljYLmDjz/+GAEBAbC2tsbgwYNx6NAhqUtqN7t378b9998PLy8vCIKAjRs3GjwviiLeeOMNeHp6wsbGBtHR0Th9+rRBm5KSEsTGxkKtVsPJyQlPPvkkKisrDdocO3YMI0aMgLW1NXx9ffHee++191szqvj4eERGRsLBwQFubm6YNGkSTp06ZdCmpqYGcXFxcHV1hb29PSZPnozCwkKDNjk5OYiJiYGtrS3c3Nzw8ssvo6GhwaDNrl27EBERAZVKhaCgIKxevbq9355RLFu2DGFhYfoNqIYOHYqtW7fqn+/s/dOUhIQECIKAOXPm6I+xr4B//OMfEATB4BESEqJ/nn10Q15eHh577DG4urrCxsYGffv2xeHDh/XPm/XnuEhNWr9+vahUKsXPP/9cPH78uPj000+LTk5OYmFhodSltYuff/5Z/Pvf/y7+8MMPIgBxw4YNBs8nJCSIjo6O4saNG8WjR4+KEydOFAMDA8WrV6/q24wbN07s16+feODAAXHPnj1iUFCQOHXqVP3zZWVloru7uxgbGytmZGSI69atE21sbMTly5d31Ntss7Fjx4qrVq0SMzIyxLS0NPG+++4T/fz8xMrKSn2bZ599VvT19RW3b98uHj58WBwyZIgYFRWlf76hoUEMDQ0Vo6OjxSNHjog///yz2KVLF3H+/Pn6NtnZ2aKtra344osvipmZmeLSpUtFuVwubtu2rUPfb2ts3rxZ/Omnn8SsrCzx1KlT4quvvipaWVmJGRkZoiiyf27l0KFDYkBAgBgWFibOnj1bf5x9JYpvvvmm2KdPHzE/P1//KCoq0j/PPmpUUlIi+vv7i48//rh48OBBMTs7W/zll1/EM2fO6NuY8+c4A8ttDBo0SIyLi9P/rNVqRS8vLzE+Pl7CqjrGHwOLTqcTPTw8xPfff19/rLS0VFSpVOK6detEURTFzMxMEYCYnJysb7N161ZREAQxLy9PFEVR/OSTT0RnZ2extrZW32bu3Lliz5492/kdtR+NRiMCEJOSkkRRbOwXKysr8dtvv9W3OXHihAhA3L9/vyiKjeFQJpOJBQUF+jbLli0T1Wq1vm9eeeUVsU+fPgavNWXKFHHs2LHt/ZbahbOzs/jZZ5+xf26hoqJCDA4OFhMTE8VRo0bpAwv7qtGbb74p9uvX75bPsY9umDt3rjh8+PAmnzf3z3FeEmpCXV0dUlJSEB0drT8mk8kQHR2N/fv3S1iZNM6dO4eCggKD/nB0dMTgwYP1/bF//344OTlh4MCB+jbR0dGQyWQ4ePCgvs3IkSOhVCr1bcaOHYtTp07hypUrHfRujKusrAwA4OLiAgBISUlBfX29QV+FhITAz8/PoK/69u0Ld3d3fZuxY8eivLwcx48f17f5/TmutzG3f39arRbr169HVVUVhg4dyv65hbi4OMTExNz0fthXN5w+fRpeXl7o1q0bYmNjkZOTA4B99HubN2/GwIED8cgjj8DNzQ3h4eFYuXKl/nlz/xxnYGlCcXExtFqtwT9wAHB3d0dBQYFEVUnn+nu+XX8UFBTAzc3N4HmFQgEXFxeDNrc6x+9fw5zodDrMmTMHw4YNQ2hoKIDG96FUKuHk5GTQ9o99dad+aKpNeXk5rl692h5vx6jS09Nhb28PlUqFZ599Fhs2bEDv3r3ZP3+wfv16pKamIj4+/qbn2FeNBg8ejNWrV2Pbtm1YtmwZzp07hxEjRqCiooJ99DvZ2dlYtmwZgoOD8csvv+C5557DrFmzsGbNGgDm/zluMXdrJpJCXFwcMjIysHfvXqlLMTk9e/ZEWloaysrK8N1332H69OlISkqSuiyTkpubi9mzZyMxMRHW1tZSl2Oyxo8fr/9zWFgYBg8eDH9/f3zzzTewsbGRsDLTotPpMHDgQLzzzjsAgPDwcGRkZODTTz/F9OnTJa6u7TjC0oQuXbpALpffNNO8sLAQHh4eElUlnevv+Xb94eHhAY1GY/B8Q0MDSkpKDNrc6hy/fw1zMXPmTGzZsgU7d+6Ej4+P/riHhwfq6upQWlpq0P6PfXWnfmiqjVqtNosPaaVSiaCgIAwYMADx8fHo168fPvzwQ/bP76SkpECj0SAiIgIKhQIKhQJJSUlYsmQJFAoF3N3d2Ve34OTkhB49euDMmTP89/Q7np6e6N27t8GxXr166S+fmfvnOANLE5RKJQYMGIDt27frj+l0Omzfvh1Dhw6VsDJpBAYGwsPDw6A/ysvLcfDgQX1/DB06FKWlpUhJSdG32bFjB3Q6HQYPHqxvs3v3btTX1+vbJCYmomfPnnB2du6gd9M2oihi5syZ2LBhA3bs2IHAwECD5wcMGAArKyuDvjp16hRycnIM+io9Pd3ggyExMRFqtVr/gTN06FCDc1xvY67//nQ6HWpra9k/vzN69Gikp6cjLS1N/xg4cCBiY2P1f2Zf3ayyshJnz56Fp6cn/z39zrBhw27aYiErKwv+/v4ALOBzvF2n9Jq59evXiyqVSly9erWYmZkp/vWvfxWdnJwMZppbkoqKCvHIkSPikSNHRADiokWLxCNHjogXLlwQRbFxOZyTk5O4adMm8dixY+IDDzxwy+Vw4eHh4sGDB8W9e/eKwcHBBsvhSktLRXd3d/Evf/mLmJGRIa5fv160tbU1q2XNzz33nOjo6Cju2rXLYJlldXW1vs2zzz4r+vn5iTt27BAPHz4sDh06VBw6dKj++evLLMeMGSOmpaWJ27ZtE7t27XrLZZYvv/yyeOLECfHjjz82m2WW8+bNE5OSksRz586Jx44dE+fNmycKgiD++uuvoiiyf27n96uERJF9JYqi+NJLL4m7du0Sz507J/72229idHS02KVLF1Gj0YiiyD667tChQ6JCoRDffvtt8fTp0+LatWtFW1tb8csvv9S3MefPcQaWO1i6dKno5+cnKpVKcdCgQeKBAwekLqnd7Ny5UwRw02P69OmiKDYuiXv99ddFd3d3UaVSiaNHjxZPnTplcI7Lly+LU6dOFe3t7UW1Wi3OmDFDrKioMGhz9OhRcfjw4aJKpRK9vb3FhISEjnqLRnGrPgIgrlq1St/m6tWr4vPPPy86OzuLtra24oMPPijm5+cbnOf8+fPi+PHjRRsbG7FLly7iSy+9JNbX1xu02blzp9i/f39RqVSK3bp1M3gNU/bEE0+I/v7+olKpFLt27SqOHj1aH1ZEkf1zO38MLOyrxuXFnp6eolKpFL29vcUpU6YY7C3CPrrhxx9/FENDQ0WVSiWGhISIK1asMHjenD/HBVEUxfYbvyEiIiJqO85hISIiIpPHwEJEREQmj4GFiIiITB4DCxEREZk8BhYiIiIyeQwsREREZPIYWIiIiMjkMbAQERGRyWNgIaJ2t2vXLgiCcNMN6oiImouBhYiM7q677sKcOXP0P0dFRSE/Px+Ojo4d8vpJSUnw9fXtkNcioo6hkLoAIrJ8SqWyXW87/0ebNm3C/fff32GvR0TtjyMsRGRUjz/+OJKSkvDhhx9CEAQIgoDVq1cbXBJavXo1nJycsGXLFvTs2RO2trZ4+OGHUV1djTVr1iAgIADOzs6YNWsWtFqt/ty1tbX429/+Bm9vb9jZ2WHw4MHYtWvXTTVs3rwZEydOBAB899136Nu3L2xsbODq6oro6GhUVVV1RFcQkRFxhIWIjOrDDz9EVlYWQkND8c9//hMAcPz48ZvaVVdXY8mSJVi/fj0qKirw0EMP4cEHH4STkxN+/vlnZGdnY/LkyRg2bBimTJkCAJg5cyYyMzOxfv16eHl5YcOGDRg3bhzS09MRHBysfy2NRoN77rkH+fn5mDp1Kt577z08+OCDqKiowJ49e8B7vhKZHwYWIjIqR0dHKJVK2Nra6i8DnTx58qZ29fX1WLZsGbp37w4AePjhh/HFF1+gsLAQ9vb26N27N+6++27s3LkTU6ZMQU5ODlatWoWcnBx4eXkBAP72t79h27ZtWLVqFd555x0AjZeDxo4dC6VSifz8fDQ0NOChhx6Cv78/AKBv374d0Q1EZGQMLEQkCVtbW31YAQB3d3cEBATA3t7e4JhGowEApKenQ6vVokePHgbnqa2thaurq/7nTZs2YebMmQCAfv36YfTo0ejbty/Gjh2LMWPG4OGHH4azs3N7vjUiagcMLEQkCSsrK4OfBUG45TGdTgcAqKyshFwuR0pKCuRyuUG76yEnPz8fR44cQUxMDABALpcjMTER+/btw6+//oqlS5fi73//Ow4ePIjAwMD2emtE1A446ZaIjE6pVBpMljWG8PBwaLVaaDQaBAUFGTyuX3r68ccfERUVBRcXF/3vCYKAYcOG4a233sKRI0egVCqxYcMGo9ZGRO2PIyxEZHQBAQE4ePAgzp8/D3t7e/0oSVv06NEDsbGxmDZtGj744AOEh4ejqKgI27dvR1hYGGJiYgxWBwHAwYMHsX37dowZMwZubm44ePAgioqK0KtXrzbXQ0QdiyMsRGR0f/vb3yCXy9G7d2907doVOTk5RjnvqlWrMG3aNLz00kvo2bMnJk2ahOTkZPj5+aGqqgrbt283CCxqtRq7d+/Gfffdhx49euC1117DBx98gPHjxxulHiLqOILI9X1EZAF++OEHvPbaa8jMzJS6FCJqBxxhISKLYG9vj3fffVfqMoionXCEhYiIiEweR1iIiIjI5DGwEBERkcljYCEiIiKTx8BCREREJo+BhYiIiEweAwsRERGZPAYWIiIiMnkMLERERGTyGFiIiIjI5P0/mY/wTQj4GigAAAAASUVORK5CYII=",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "cycling_df = pd.read_csv(\n",
+ " \"../../data/Tesla_4680/601-828_Capacity_03_MB_CB1_subset.txt\",\n",
+ " sep=\"\\t\",\n",
+ ")\n",
+ "filter_cycling = cycling_df.loc[54811:61000].copy() # Full cycle is [54811:127689]\n",
+ "filter_cycling[\"time/s\"] = filter_cycling[\"time/s\"] - filter_cycling[\"time/s\"].iloc[0]\n",
+ "\n",
+ "# Take every 100th point\n",
+ "filtered_cycling_df = filter_cycling.iloc[\n",
+ " [i for i in range(len(filter_cycling)) if not i % 100 != 0]\n",
+ "]\n",
+ "filtered_cycling_df.plot(x=\"time/s\", y=\"Ecell/V\", kind=\"line\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "13",
+ "metadata": {},
+ "source": [
+ "### Defining the parameters for inference"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "14",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"R0 [Ohm]\",\n",
+ " prior=pybop.Gaussian(3e-3, 1e-3),\n",
+ " bounds=[1e-5, 1e-2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R1 [Ohm]\",\n",
+ " prior=pybop.Gaussian(5e-3, 1e-3),\n",
+ " bounds=[1e-5, 1e-2],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R2 [Ohm]\",\n",
+ " prior=pybop.Gaussian(1e-4, 5e-5),\n",
+ " bounds=[1e-5, 1e-2],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "15",
+ "metadata": {},
+ "source": [
+ "### Form the dataset using the filtered data\n",
+ "In this parameter inference task, we use the filtered time-series data to reduce the computation time. This choice can be validated by comparing the inference results to the full time-series inference, which isn't covered in this example."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "16",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset_hundred = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": filtered_cycling_df[\"time/s\"].to_numpy(),\n",
+ " \"Current function [A]\": -filtered_cycling_df[\"I/mA\"].to_numpy()\n",
+ " / 1000, # Convert mA to A\n",
+ " \"Voltage [V]\": filtered_cycling_df[\"Ecell/V\"].to_numpy(),\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "17",
+ "metadata": {},
+ "source": [
+ "### Construct the model, problem, and non-scaled posterior\n",
+ "\n",
+ "We now construct a two-pair RC model and build the model with an initial SOC based on the first voltage point in the experimental data. \n",
+ "The `FittingProblem` and likelihood classes are constructed with posterior built from the GaussianLogLikelihood."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "18",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=parameter_set, options={\"number of rc elements\": 2}\n",
+ ")\n",
+ "model.build(\n",
+ " initial_state={\n",
+ " \"Initial open-circuit voltage [V]\": dataset_hundred[\"Voltage [V]\"][0]\n",
+ " }\n",
+ ")\n",
+ "\n",
+ "# Generate problem, likelihood, and sampler\n",
+ "problem = pybop.FittingProblem(model, parameters, dataset_hundred)\n",
+ "likelihood = pybop.GaussianLogLikelihood(problem)\n",
+ "posterior = pybop.LogPosterior(likelihood)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "19",
+ "metadata": {},
+ "source": [
+ "### Let's find the Maximum a Posteriori values\n",
+ "Below we identify the parameters using the Maximum a Posterior estimate and the Covariance Matrix Adaptation Evolution Strategy (CMAES). We will use this estimate later in the Bayesian inference task as a starting position for the chains."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "20",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/.pyenv/versions/3.12.4/lib/python3.12/multiprocessing/popen_fork.py:66: RuntimeWarning:\n",
+ "\n",
+ "os.fork() was called. os.fork() is incompatible with multithreaded code, and JAX is multithreaded, so this will likely lead to a deadlock.\n",
+ "\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "OptimisationResult:\n",
+ " Optimised parameters: [4.15690229e-03 1.64236988e-03 8.78939716e-05 2.78474178e-04]\n",
+ " Final cost: 431.8611377082031\n",
+ " Number of iterations: 78\n",
+ " SciPy result available: No\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/.pyenv/versions/pybop/lib/python3.12/site-packages/pybamm/solvers/base_solver.py:762: SolverWarning:\n",
+ "\n",
+ "Explicit interpolation times not implemented for CasADi solver with 'safe' mode\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "optim = pybop.CMAES(\n",
+ " posterior,\n",
+ " sigma0=[1e-4, 1e-4, 1e-4, 1e-4],\n",
+ " max_iterations=200,\n",
+ " max_unchanged_iterations=40,\n",
+ " parallel=parallel,\n",
+ ")\n",
+ "results_optim = optim.run()\n",
+ "print(results_optim)\n",
+ "pybop.plot.quick(problem, results_optim.x)\n",
+ "pybop.plot.convergence(optim)\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "21",
+ "metadata": {},
+ "source": [
+ "### Monte Carlo Sampling\n",
+ "Below we construct the Monte Carlo sampler, specifically the Hamiltionian sampler, which samples from the posterior using Hamiltonion dynamics with gradient information. To minimise the time to execute this notebook, we greatly limit the number of samples; however, this should be increased for actual inference tasks. We initialise the chains from the Maximum a Posteriori point-estimate obtained from the CMAES optimisation above, as this should be close to the mode of the posterior."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "22",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Using Haario-Bardenet adaptive covariance MCMC\n",
+ "Generating 3 chains.\n",
+ "Running in parallel with 12 worker processes.\n",
+ "/Users/engs2510/.pyenv/versions/3.12.4/lib/python3.12/multiprocessing/popen_fork.py:66: RuntimeWarning:\n",
+ "\n",
+ "os.fork() was called. os.fork() is incompatible with multithreaded code, and JAX is multithreaded, so this will likely lead to a deadlock.\n",
+ "\n",
+ "| Iteration: 1 | Iter/s: 0.00 |\n",
+ "| Iteration: 2 | Iter/s: 28.66 |\n",
+ "| Iteration: 3 | Iter/s: 25.26 |\n",
+ "| Iteration: 4 | Iter/s: 74.38 |\n",
+ "| Iteration: 5 | Iter/s: 28.77 |\n",
+ "| Iteration: 6 | Iter/s: 25.46 |\n",
+ "| Iteration: 7 | Iter/s: 52.50 |\n",
+ "| Iteration: 8 | Iter/s: 82.83 |\n",
+ "| Iteration: 9 | Iter/s: 63.31 |\n",
+ "| Iteration: 10 | Iter/s: 1.61 |\n",
+ "| Iteration: 50 | Iter/s: 15.56 |\n",
+ "| Iteration: 100 | Iter/s: 16.85 |\n",
+ "| Iteration: 150 | Iter/s: 44.17 |\n",
+ "| Iteration: 200 | Iter/s: 125.50 |\n",
+ "| Iteration: 250 | Iter/s: 145.31 |\n",
+ "Initial phase completed.\n",
+ "| Iteration: 300 | Iter/s: 18.41 |\n",
+ "| Iteration: 350 | Iter/s: 124.50 |\n",
+ "| Iteration: 400 | Iter/s: 49.71 |\n",
+ "| Iteration: 450 | Iter/s: 15.42 |\n",
+ "| Iteration: 500 | Iter/s: 12.31 |\n",
+ "| Iteration: 550 | Iter/s: 12.83 |\n",
+ "| Iteration: 600 | Iter/s: 16.69 |\n",
+ "| Iteration: 650 | Iter/s: 18.65 |\n",
+ "| Iteration: 700 | Iter/s: 23.45 |\n",
+ "| Iteration: 750 | Iter/s: 9.57 |\n",
+ "| Iteration: 800 | Iter/s: 24.36 |\n",
+ "| Iteration: 850 | Iter/s: 6.11 |\n",
+ "| Iteration: 900 | Iter/s: 7.26 |\n",
+ "| Iteration: 950 | Iter/s: 12.78 |\n",
+ "| Iteration: 1000 | Iter/s: 9.71 |\n",
+ "| Iteration: 1050 | Iter/s: 10.11 |\n",
+ "| Iteration: 1100 | Iter/s: 10.57 |\n",
+ "| Iteration: 1150 | Iter/s: 9.25 |\n",
+ "| Iteration: 1200 | Iter/s: 14.29 |\n",
+ "| Iteration: 1250 | Iter/s: 12.10 |\n",
+ "| Iteration: 1300 | Iter/s: 37.08 |\n",
+ "| Iteration: 1350 | Iter/s: 11.71 |\n",
+ "| Iteration: 1400 | Iter/s: 30.06 |\n",
+ "| Iteration: 1450 | Iter/s: 48.85 |\n",
+ "| Iteration: 1500 | Iter/s: 9.15 |\n",
+ "Halting: Maximum number of iterations (1500) reached.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[1.00493998 1.00643067 1.00368448 1.01600809]\n"
+ ]
+ }
+ ],
+ "source": [
+ "sampler = pybop.HaarioBardenetACMC(\n",
+ " posterior,\n",
+ " chains=3,\n",
+ " x0=results_optim.x, # Initialise at the MAP estimate\n",
+ " max_iterations=1500, # Increase for accurate posteriors\n",
+ " warm_up=350,\n",
+ " verbose=True,\n",
+ " parallel=parallel, # Only supported for macOS/WSL/Linux\n",
+ ")\n",
+ "\n",
+ "chains = sampler.run()\n",
+ "\n",
+ "# Create summary statistics\n",
+ "posterior_summary = pybop.PosteriorSummary(chains)\n",
+ "\n",
+ "# Create rhat of chains\n",
+ "print(posterior_summary.rhat())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "23",
+ "metadata": {},
+ "source": [
+ "### Plotting\n",
+ "Next, we plot the parameter traces as well as the combined posterior (across all chains) and each chain individually. \n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "24",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "posterior_summary.plot_trace()\n",
+ "posterior_summary.plot_posterior()\n",
+ "posterior_summary.plot_chains()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "25",
+ "metadata": {},
+ "source": [
+ "As expected, these chains haven't fully converged yet, so the values obtained from the posterior will be biased based on the initial conditions for sampling. Increasing the number of iterations for the sampler while also calibrating the `warm_up` period will provide better results. Next, for completeness, we will plot the identified time-series model against the experimental data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "26",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/.pyenv/versions/pybop/lib/python3.12/site-packages/pybamm/solvers/base_solver.py:762: SolverWarning:\n",
+ "\n",
+ "Explicit interpolation times not implemented for CasADi solver with 'safe' mode\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, posterior_summary.mean);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "27",
+ "metadata": {},
+ "source": [
+ "Now, we can compare the identified parameters for each method. As the Bayesian sampler provides us with samples from the posterior, we use the statistical moments when comparing to the point-based result from the optimiser."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "28",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The XNES result is: [4.15690229e-03 1.64236988e-03 8.78939716e-05 2.78474178e-04]\n",
+ "The posterior means are:[4.14717807e-03 1.64491239e-03 9.20455193e-05 2.86617819e-04]\n",
+ "The difference between the two methods is: [9.72421663e-06 2.54251113e-06 4.15154776e-06 8.14364117e-06]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(f\"The XNES result is: {results_optim.x}\")\n",
+ "print(f\"The posterior means are:{posterior_summary.mean}\")\n",
+ "print(\n",
+ " f\"The difference between the two methods is: {np.abs(results_optim.x - posterior_summary.mean)}\"\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "29",
+ "metadata": {},
+ "source": [
+ "The sampled posterior also gives us information of the uncertainty in the inference process. This is present in the standard deviations as well as the lower and upper confidence intervals, shown below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "30",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "posterior_summary.summary_table()"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 2
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython2",
+ "version": "2.7.6"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/battery_parameterisation/multi_model_identification.ipynb b/examples/notebooks/battery_parameterisation/multi_model_identification.ipynb
new file mode 100644
index 000000000..efdf61522
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/multi_model_identification.ipynb
@@ -0,0 +1,674 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Parameter identification for various models\n",
+ "\n",
+ "To investigate the performance of parameter identification for different electrochemical models we will start with synthetic data from the highest order model in PyBOP (Many-particle DFN) and try to identify the correct parameter values on the reduced order models.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets pybamm -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jAvD5fk104p0"
+ },
+ "source": [
+ "Next, we import the added packages plus any additional dependencies,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "SQdt4brD04p1"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "import pybamm\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "go = pybop.plot.PlotlyManager().go\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "X8-tubYY04p_"
+ },
+ "source": [
+ "## Optimising the Parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "PQqhvSZN04p_"
+ },
+ "source": [
+ "First, we define the model to be used for the parameter optimisation,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zuvGHWID04p_"
+ },
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "parameter_set = pybamm.get_size_distribution_parameters(parameter_set)\n",
+ "synth_model = pybop.lithium_ion.DFN(\n",
+ " parameter_set=parameter_set, options={\"particle size\": \"distribution\"}\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Simulating Forward Model\n",
+ "\n",
+ "We can then simulate the model using the `predict` method, with a default constant current to generate voltage data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "n_points = 450\n",
+ "t_eval = np.linspace(0, 1600 + 1000, n_points)\n",
+ "current = np.concatenate(\n",
+ " [np.ones(200) * parameter_set[\"Nominal cell capacity [A.h]\"], np.zeros(250)]\n",
+ ")\n",
+ "initial_state = {\"Initial SoC\": 0.5}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": current,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "synth_model.build(dataset=dataset, initial_state=initial_state)\n",
+ "synth_model.signal = [\"Voltage [V]\"]\n",
+ "values = synth_model.simulate(t_eval=t_eval, inputs={})"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Adding Noise to Voltage Data\n",
+ "\n",
+ "To make the parameter estimation more realistic, we add Gaussian noise to the data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "sigma = 0.001\n",
+ "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(\n",
+ " 0, sigma, len(values[\"Voltage [V]\"].data)\n",
+ ")\n",
+ "go.Figure(\n",
+ " data=go.Scatter(x=t_eval, y=corrupt_values, mode=\"lines\"),\n",
+ " layout=go.Layout(title=\"Corrupted Voltage\", width=800, height=600),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Identifying the Parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We will now set up the parameter estimation process by defining the datasets for optimisation and selecting the model parameters we wish to estimate."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Creating a Dataset\n",
+ "\n",
+ "The dataset for optimisation is composed of time, current, and the noisy voltage data:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": current,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ffS3CF_704qA"
+ },
+ "source": [
+ "Next, we define the model parameters for optimisation. Furthermore, PyBOP provides functionality to define a prior for the parameters. The initial parameter values used in the optimisation will be randomly drawn from the prior distribution."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WPCybXIJ04qA"
+ },
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode thickness [m]\",\n",
+ " prior=pybop.Gaussian(7.56e-05, 0.05e-05),\n",
+ " bounds=[65e-06, 85e-06],\n",
+ " true_value=parameter_set[\"Positive electrode thickness [m]\"],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode thickness [m]\",\n",
+ " prior=pybop.Gaussian(8.52e-05, 0.05e-05),\n",
+ " bounds=[75e-06, 95e-06],\n",
+ " true_value=parameter_set[\"Negative electrode thickness [m]\"],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "We can now define the output signal, the problem (which combines the model with the dataset) and construct a cost function which in this example is the `GravimetricEnergyDensity()` used to maximise the gravimetric energy density of the cell."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "models = [\n",
+ " pybop.lithium_ion.SPM(parameter_set=parameter_set),\n",
+ " pybop.lithium_ion.SPMe(parameter_set=parameter_set),\n",
+ "]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "eQiGurUV04qB"
+ },
+ "source": [
+ "Let's construct PyBOP's optimisation class for each model. This class provides the methods needed to fit the forward model. For this example, we use an evolution strategy (XNES) as the optimiser."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "etMzRtx404qA"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Running Single Particle Model\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [7.61508933e-05 8.59364316e-05]\n",
+ " Optimised parameters: [6.50355739e-05 8.10453665e-05]\n",
+ " Final cost: 0.33026298961068246\n",
+ " Optimisation time: 22.5766921043396 seconds\n",
+ " Number of iterations: 40\n",
+ " SciPy result available: No\n",
+ "Running Single Particle Model with Electrolyte\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [7.61508933e-05 8.59364316e-05]\n",
+ " Optimised parameters: [7.08088980e-05 8.53871336e-05]\n",
+ " Final cost: 0.005807228768217647\n",
+ " Optimisation time: 22.70540690422058 seconds\n",
+ " Number of iterations: 23\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optims = []\n",
+ "xs = []\n",
+ "for model in models:\n",
+ " print(f\"Running {model.name}\")\n",
+ " model.set_initial_state(initial_state)\n",
+ " problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ " cost = pybop.SumSquaredError(problem)\n",
+ " optim = pybop.XNES(\n",
+ " cost, verbose=True, max_iterations=60, max_unchanged_iterations=15\n",
+ " )\n",
+ " results = optim.run()\n",
+ " optims.append(optim)\n",
+ " xs.append(results.x)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "N3FtAhrT04qB"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "| Model: Single Particle Model | Results: [6.50355739e-05 8.10453665e-05] |\n",
+ "| Model: Single Particle Model with Electrolyte | Results: [7.08088980e-05 8.53871336e-05] |\n"
+ ]
+ }
+ ],
+ "source": [
+ "for optim, x in zip(optims, xs):\n",
+ " print(f\"| Model: {optim.cost.problem.model.name} | Results: {x} |\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KxKURtH704qC"
+ },
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualise the results of the optimisation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-cWCOiqR04qC"
+ },
+ "source": [
+ "### Comparing System Response\n",
+ "\n",
+ "We can quickly plot the system's response using the estimated parameters compared to the initial parameters:\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "ZVfozY0A04qC"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "for optim, x in zip(optims, xs):\n",
+ " pybop.plot.quick(\n",
+ " optim.cost.problem, problem_inputs=x, title=optim.cost.problem.model.name\n",
+ " )"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ntIvAJmA04qD"
+ },
+ "source": [
+ "### Cost Landscape\n",
+ "\n",
+ "Finally, we can visualise the cost landscape and the path taken by the optimiser:\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 467
+ },
+ "id": "tJUJ80Ve04qD",
+ "outputId": "855fbaa2-1e09-4935-eb1a-8caf7f99eb75"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "for optim in optims:\n",
+ " pybop.plot.surface(optim, title=optim.cost.problem.model.name)"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/examples/notebooks/battery_parameterisation/pouch_cell_identification.ipynb b/examples/notebooks/battery_parameterisation/pouch_cell_identification.ipynb
new file mode 100644
index 000000000..61a65d629
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/pouch_cell_identification.ipynb
@@ -0,0 +1,783 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Pouch Cell Model Parameter Identification\n",
+ "\n",
+ "In this notebook, we present the single particle model with a two dimensional current collector. This is achieved via the potential-pair models introduced in Marquis et al. [[1]](https://doi.org/10.1149/1945-7111/abbce4) as implemented in PyBaMM. At a high-level this is accomplished as a potential-pair model which is resolved across the discretised spatial locations.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages."
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jAvD5fk104p0"
+ },
+ "source": [
+ "### Importing Libraries\n",
+ "\n",
+ "With the environment set up, we can now import PyBOP alongside other libraries we will need:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "SQdt4brD04p1"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "go = pybop.plot.PlotlyManager().go\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5XU-dMtU04p2"
+ },
+ "source": [
+ "## Generating Synthetic Data\n",
+ "\n",
+ "To demonstrate parameter estimation, we first need some data. We will generate synthetic data using a forward model, which requires defining a parameter set and the model itself.\n",
+ "\n",
+ "### Defining Parameters and Model\n",
+ "\n",
+ "We start by creating an example parameter set and then instantiate the single-particle model (SPM):"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Marquis2019\")\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Negative electrode active material volume fraction\": 0.495,\n",
+ " \"Positive electrode active material volume fraction\": 0.612,\n",
+ " }\n",
+ ")\n",
+ "model = pybop.lithium_ion.SPM(\n",
+ " parameter_set=parameter_set,\n",
+ " options={\"current collector\": \"potential pair\", \"dimensionality\": 2},\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Updating the Spatial Grid\n",
+ "\n",
+ "Next, we update the number of spatial locations to solve the potential-pair model,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model.var_pts[\"y\"] = 5\n",
+ "model.var_pts[\"z\"] = 5"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Simulating the Forward Model\n",
+ "\n",
+ "We can then simulate the model using the `predict` method, with a default constant current to generate voltage data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "sBasxv8U04p3"
+ },
+ "outputs": [],
+ "source": [
+ "t_eval = np.arange(0, 900, 3)\n",
+ "values = model.predict(t_eval=t_eval)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Adding Noise to Voltage Data\n",
+ "\n",
+ "To make the parameter estimation more realistic, we add Gaussian noise to the data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sigma = 0.001\n",
+ "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(0, sigma, len(t_eval))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "X8-tubYY04p_"
+ },
+ "source": [
+ "## Identifying the Parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "PQqhvSZN04p_"
+ },
+ "source": [
+ "We will now set up the parameter estimation process by defining the datasets for optimisation and selecting the model parameters we wish to estimate."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Creating a Dataset\n",
+ "\n",
+ "The dataset for optimisation is composed of time, current, and the noisy voltage data:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zuvGHWID04p_"
+ },
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ffS3CF_704qA"
+ },
+ "source": [
+ "### Defining Parameters to Estimate\n",
+ "\n",
+ "We select the parameters for estimation and set up their prior distributions and bounds:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WPCybXIJ04qA"
+ },
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.7, 0.05),\n",
+ " bounds=[0.45, 0.9],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.58, 0.05),\n",
+ " bounds=[0.5, 0.8],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "For plotting purposes, we want additional variables to be stored in the problem class. These are defined as,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "additional_variables = [\n",
+ " \"Negative current collector potential [V]\",\n",
+ " \"Positive current collector potential [V]\",\n",
+ "]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "### Setting up the Optimisation Problem\n",
+ "\n",
+ "With the datasets and parameters defined, we can set up the optimisation problem, its cost function, and the optimiser."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "etMzRtx404qA"
+ },
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(\n",
+ " model, parameters, dataset, additional_variables=additional_variables\n",
+ ")\n",
+ "cost = pybop.SumSquaredError(problem)\n",
+ "optim = pybop.CMAES(cost, max_iterations=30)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "caprp-bV04qB"
+ },
+ "source": [
+ "### Running the Optimisation\n",
+ "\n",
+ "We proceed to run the CMA-ES optimisation algorithm to estimate the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "-9OVt0EQ04qB"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (30) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.65919975 0.65030567]\n",
+ " Optimised parameters: [0.49949096 0.60907043]\n",
+ " Final cost: 0.0002845276080247215\n",
+ " Optimisation time: 36.19517993927002 seconds\n",
+ " Number of iterations: 30\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-4pZsDmS04qC"
+ },
+ "source": [
+ "### Viewing the Estimated Parameters\n",
+ "\n",
+ "After the optimisation, we can examine the estimated parameter values:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "Hgz8SV4i04qC",
+ "outputId": "e1e42ae7-5075-4c47-dd68-1b22ecc170f6"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "array([0.49949096, 0.60907043])"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "results.x"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KxKURtH704qC"
+ },
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualise the results of the optimisation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-cWCOiqR04qC"
+ },
+ "source": [
+ "### Comparing System Response\n",
+ "\n",
+ "We can quickly plot the system's response using the estimated parameters compared to the target:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 467
+ },
+ "id": "tJUJ80Ve04qD",
+ "outputId": "855fbaa2-1e09-4935-eb1a-8caf7f99eb75"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Spatial Plotting\n",
+ "\n",
+ "We can now plot the spatial variables from the solution object. First, the final negative current collector potential can be displayed. In this example, this is just a reference variable, but could be used for fitting or optimisation in the correct workflows."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "sol = problem.evaluate(parameters.as_dict(results.x))\n",
+ "\n",
+ "go.Figure(\n",
+ " [\n",
+ " go.Contour(\n",
+ " x=np.arange(0, model.var_pts[\"y\"] - 1, 1),\n",
+ " y=np.arange(0, model.var_pts[\"z\"] - 1, 1),\n",
+ " z=sol[\"Negative current collector potential [V]\"][:, :, -1],\n",
+ " colorscale=\"Viridis\",\n",
+ " )\n",
+ " ],\n",
+ " layout=dict(\n",
+ " title=\"Negative current collector potential [V]\",\n",
+ " xaxis_title=\"x node\",\n",
+ " yaxis_title=\"y node\",\n",
+ " width=600,\n",
+ " height=600,\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We plot can then plot the positive current collector potential,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "go.Figure(\n",
+ " [\n",
+ " go.Contour(\n",
+ " x=np.arange(0, model.var_pts[\"y\"] - 1, 1),\n",
+ " y=np.arange(0, model.var_pts[\"z\"] - 1, 1),\n",
+ " z=sol[\"Positive current collector potential [V]\"][:, :, -1],\n",
+ " colorscale=\"Viridis\",\n",
+ " )\n",
+ " ],\n",
+ " layout=dict(\n",
+ " title=\"Positive current collector potential [V]\",\n",
+ " xaxis_title=\"x node\",\n",
+ " yaxis_title=\"y node\",\n",
+ " width=600,\n",
+ " height=600,\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Convergence and Parameter Trajectories\n",
+ "\n",
+ "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "N5XYkevi04qD"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.convergence(optim)\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Cost Landscape\n",
+ "\n",
+ "Finally, we can visualise the cost landscape and the path taken by the optimiser:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.surface(optim);"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/notebooks/battery_parameterisation/single_pulse_circuit_model.ipynb b/examples/notebooks/battery_parameterisation/single_pulse_circuit_model.ipynb
new file mode 100644
index 000000000..dec6e812f
--- /dev/null
+++ b/examples/notebooks/battery_parameterisation/single_pulse_circuit_model.ipynb
@@ -0,0 +1,807 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "## LG M50 Single Pulse Parameter Identification\n",
+ "\n",
+ "This example presents an experimental parameter identification method for a two-RC circuit model. The data for this notebook is located within the same directory and was obtained from WDWidanage/Simscape-Battery-Library [[1]](https://github.com/WDWidanage/Simscape-Battery-Library/tree/a3842b91b3ccda006bc9be5d59c8bcbd167ceef7/Examples/parameterEstimation_TECMD/Data).\n",
+ "\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP for the fitting and Pandas for the data ingestion and manipulation:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n",
+ "zsh:1: no matches found: pybop[plot]\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop[plot] -q\n",
+ "%pip install pandas -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "### Importing Libraries\n",
+ "\n",
+ "With the environment set up, we can now import PyBOP alongside other libraries we will need:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "import pandas as pd\n",
+ "import pybamm\n",
+ "from scipy.io import loadmat\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "go = pybop.plot.PlotlyManager().go\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "## Importing Data\n",
+ "\n",
+ "The data is imported as a dictionary with the following key level:\n",
+ "- [\"LGM50_5Ah_Pulse\"]\n",
+ " - Temperature-> [\"T0\"]\n",
+ " - State of Charge ->[\"SoC3\"]\n",
+ " - Cell number -> [\"Cell1\"]\n",
+ " - Corresponding data -> [\"data\"]\n",
+ "\n",
+ "Using SciPy's `loadmat`, we import the data from the MAT containers:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "ocp = loadmat(\n",
+ " \"../../data/LG_M50_ECM/data/LGM50_5Ah_OCV.mat\", simplify_cells=True, mat_dtype=False\n",
+ ")\n",
+ "pulse_data = loadmat(\n",
+ " \"../../data/LG_M50_ECM/data/LGM50_5Ah_Pulse.mat\",\n",
+ " simplify_cells=True,\n",
+ " mat_dtype=False,\n",
+ ")\n",
+ "rate_data = loadmat(\n",
+ " \"../../data/LG_M50_ECM/data/LGM50_5Ah_RateTest.mat\",\n",
+ " simplify_cells=True,\n",
+ " mat_dtype=False,\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8",
+ "metadata": {},
+ "source": [
+ "### Convert to Dataframes\n",
+ "\n",
+ "Next, we construct a dataframe from a selected pulse. In this case, we select the data for zero degrees (`T0`) with a state-of-charge of 90% (`SoC9`) and the 19th cell (`Cell19`). This can be extended to multiple pulses, or a different selection.\n",
+ "\n",
+ "Additionally, we apply two filters to the dataframe to ensure the data contains only monotonically increasing time samples without duplicates."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.DataFrame(pulse_data[\"LGM50_5Ah_Pulse\"][\"T0\"][\"SoC9\"][\"Cell19\"][\"data\"])\n",
+ "df[\"ProgTime\"] = df[\"ProgTime\"] - df[\"ProgTime\"].min()\n",
+ "df.drop_duplicates(subset=[\"ProgTime\"], inplace=True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10",
+ "metadata": {},
+ "source": [
+ "A plot of time vs voltage confirms the data looks correct for fitting. In this situation, we would prefer to have additional samples from the relaxation, but as we will show below, PyBOP is still able to identify parameter values that fit this system."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "11",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "go.Figure(\n",
+ " data=go.Scatter(\n",
+ " x=df[\"ProgTime\"],\n",
+ " y=df[\"Voltage\"],\n",
+ " )\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "12",
+ "metadata": {},
+ "source": [
+ "Next, we construct the OCV function from the imported `OCV` data. This is completed with a wrapper method on the `pybamm.Interpolant` function,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "13",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def ocv_LGM50(sto):\n",
+ " name = \"OCV\"\n",
+ " x = (ocp[\"LGM50_5Ah_OCV\"][\"T25\"][\"refSoC\"].reshape(-1) / 100,)\n",
+ " y = ocp[\"LGM50_5Ah_OCV\"][\"T25\"][\"meanOCV\"].reshape(-1)\n",
+ " return pybamm.Interpolant(x, y, sto, name)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "14",
+ "metadata": {},
+ "source": [
+ "We can construct the two RC parameter set with initial values as listed. Note, the initial SOC is shifted slightly to better match the zero degree data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "15",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "params = pybop.ParameterSet(\n",
+ " params_dict={\n",
+ " \"chemistry\": \"ecm\",\n",
+ " \"Initial SoC\": 0.9 - 0.01,\n",
+ " \"Initial temperature [K]\": 25 + 273.15,\n",
+ " \"Cell capacity [A.h]\": 5,\n",
+ " \"Nominal cell capacity [A.h]\": 5,\n",
+ " \"Ambient temperature [K]\": 25 + 273.15,\n",
+ " \"Current function [A]\": 4.85,\n",
+ " \"Upper voltage cut-off [V]\": 4.2,\n",
+ " \"Lower voltage cut-off [V]\": 3.0,\n",
+ " \"Cell thermal mass [J/K]\": 1000,\n",
+ " \"Cell-jig heat transfer coefficient [W/K]\": 10,\n",
+ " \"Jig thermal mass [J/K]\": 500,\n",
+ " \"Jig-air heat transfer coefficient [W/K]\": 10,\n",
+ " \"Open-circuit voltage [V]\": ocv_LGM50,\n",
+ " \"R0 [Ohm]\": 0.005,\n",
+ " \"Element-1 initial overpotential [V]\": 0,\n",
+ " \"Element-2 initial overpotential [V]\": 0,\n",
+ " \"R1 [Ohm]\": 0.0001,\n",
+ " \"R2 [Ohm]\": 0.0001,\n",
+ " \"C1 [F]\": 3000,\n",
+ " \"C2 [F]\": 6924,\n",
+ " \"Entropic change [V/K]\": 0.0004,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "16",
+ "metadata": {},
+ "source": [
+ "## Identifying the Parameters\n",
+ "\n",
+ "Now that the initial parameter set is defined, we can start the PyBOP fitting process. First, we construct the model class with two RC elements and the corresponding parameter set."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "17",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=params, options={\"number of rc elements\": 2}\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "18",
+ "metadata": {},
+ "source": [
+ "In this example, we are going to try to fit all five parameters at once. To do this, we define a `pybop.Parameter` for each fitting parameter and compile them in pybop.Parameters,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "19",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"R0 [Ohm]\",\n",
+ " prior=pybop.Gaussian(0.005, 0.0001),\n",
+ " bounds=[1e-6, 2e-1],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R1 [Ohm]\",\n",
+ " prior=pybop.Gaussian(0.0001, 0.0001),\n",
+ " bounds=[1e-6, 1],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"R2 [Ohm]\",\n",
+ " prior=pybop.Gaussian(0.0001, 0.0001),\n",
+ " bounds=[1e-6, 1],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C1 [F]\",\n",
+ " prior=pybop.Gaussian(3000, 2500),\n",
+ " bounds=[0.5, 1e4],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"C2 [F]\",\n",
+ " prior=pybop.Gaussian(3000, 2500),\n",
+ " bounds=[0.5, 1e4],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "20",
+ "metadata": {},
+ "source": [
+ "We can now form the `pybop.Dataset` from the experimental data. In this situation, the applied current convention is different between the experimental data and PyBOP's convention. This is solved by negating the vector on construction."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "21",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": df[\"ProgTime\"].values,\n",
+ " \"Current function [A]\": -df[\"Current\"].values,\n",
+ " \"Voltage [V]\": df[\"Voltage\"].values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "22",
+ "metadata": {},
+ "source": [
+ "The `FittingProblem` class provides us with a class to hold all of the objects we need to evaluate our selected `SumSquaredError` cost function. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "23",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "24",
+ "metadata": {},
+ "source": [
+ "The cost function can be interrogated manually via the `cost([params])` API. In this example, that would look like the following,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "25",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/lib/python3.12/site-packages/pybamm/solvers/base_solver.py:762: SolverWarning:\n",
+ "\n",
+ "Explicit interpolation times not implemented for CasADi solver with 'safe' mode\n",
+ "\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "1.176754404015497"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.01, 0.01, 0.01, 20000, 20000])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "26",
+ "metadata": {},
+ "source": [
+ "Next, we construct the optimisation class with our algorithm of choice and run it. In this case, we select the PSO method as it provides global optimisation capability. After optimisation, we can compare the initial parameters to the identified parameters."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "27",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 55 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [5.00912047e-03 2.09128273e-04 1.00999900e-04 1.49995000e+00\n",
+ " 1.49995000e+00]\n",
+ " Optimised parameters: [4.63261982e-02 1.68622272e-01 1.29049708e-02 7.68290523e+03\n",
+ " 5.36867333e+02]\n",
+ " Final cost: 0.026161662141767638\n",
+ " Optimisation time: 2.983907699584961 seconds\n",
+ " Number of iterations: 126\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optim = pybop.PSO(cost, max_unchanged_iterations=55, threshold=1e-6)\n",
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "28",
+ "metadata": {},
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualise the results of the optimisation. The `pybop.plot.quick` method provides a fast scatter of two variables. For this example, we plot the identified parameter set to the target dataset. The default plot is voltage vs time as shown below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "29",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "30",
+ "metadata": {},
+ "source": [
+ "### Convergence and Parameter Trajectories\n",
+ "\n",
+ "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "31",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.convergence(optim)\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "32",
+ "metadata": {},
+ "source": [
+ "## Validating the Fit\n",
+ "\n",
+ "We've identified parameters from a single discharge pulse. Now, let's ask ourselves how well these parameters extrapolate to other operational conditions. To accomplish this, let's load a new pulse dataset at 80% SOC and compare it to our identified forward model."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "33",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_pulse_two = pd.DataFrame(\n",
+ " pulse_data[\"LGM50_5Ah_Pulse\"][\"T0\"][\"SoC8\"][\"Cell19\"][\"data\"]\n",
+ ")\n",
+ "df_pulse_two[\"ProgTime\"] = df_pulse_two[\"ProgTime\"] - df_pulse_two[\"ProgTime\"].min()\n",
+ "df_pulse_two.drop_duplicates(subset=[\"ProgTime\"], inplace=True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "34",
+ "metadata": {},
+ "source": [
+ "Next, we construct a new `pybop.Dataset` from the second pulse data,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "35",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset_two_pulse = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": df_pulse_two[\"ProgTime\"].values,\n",
+ " \"Current function [A]\": -df_pulse_two[\"Current\"].values,\n",
+ " \"Voltage [V]\": df_pulse_two[\"Voltage\"].values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "36",
+ "metadata": {},
+ "source": [
+ "Now that we have a new dataset, we update the target within the problem class as well as the `Initial SoC` value. Once that has been completed, we rebuild the model."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "37",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem.set_target(dataset_two_pulse)\n",
+ "model.build(dataset=dataset_two_pulse, initial_state={\"Initial SoC\": 0.8 - 0.0075})"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "38",
+ "metadata": {},
+ "source": [
+ "Let's plot the parameterised forward model against the new pulse data:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "39",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Parameter Extrapolation\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "40",
+ "metadata": {},
+ "source": [
+ "As expected, when identifying parameters from a single pulse, extrapolation to different operating conditions is challenging. To solve this issue, parameter identification with various pulse datasets is recommended."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "41",
+ "metadata": {},
+ "source": [
+ "### Conclusion\n",
+ "\n",
+ "This notebook illustrates how to perform circuit model parameter identification using PSO in PyBOP, providing insights into the optimisation process through various visualisations."
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/comparison_examples/comparing_cost_functions.ipynb b/examples/notebooks/comparison_examples/comparing_cost_functions.ipynb
new file mode 100644
index 000000000..3e79ebb8f
--- /dev/null
+++ b/examples/notebooks/comparison_examples/comparing_cost_functions.ipynb
@@ -0,0 +1,768 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Investigating different cost functions\n",
+ "\n",
+ "In this notebook, we take a look at the different fitting cost functions offered in PyBOP. Cost functions for fitting problems conventionally describe the distance between two points (the target and the prediction) which is to be minimised via PyBOP's optimisation algorithms. \n",
+ "\n",
+ "First, we install and import the required packages below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "go = pybop.plot.PlotlyManager().go\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "For this notebook, we need to construct parameters, a model and a problem class before we can compare differing cost functions. We start with two parameters, but this is an arbitrary selection and can be expanded given the model and data in question."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode thickness [m]\",\n",
+ " prior=pybop.Gaussian(7.56e-05, 0.5e-05),\n",
+ " bounds=[65e-06, 10e-05],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive particle radius [m]\",\n",
+ " prior=pybop.Gaussian(5.22e-06, 0.5e-06),\n",
+ " bounds=[2e-06, 9e-06],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Next, we will construct the Single Particle Model (SPM) with the Chen2020 parameter set, but like the above, this is an arbitrary selection and can be replaced with any PyBOP model."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "model = pybop.lithium_ion.SPM(parameter_set=parameter_set)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Next, as we will need reference data to compare our model predictions to (via the cost function), we will create synthetic data from the model constructed above. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "t_eval = np.arange(0, 900, 10)\n",
+ "values = model.predict(t_eval=t_eval)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "We can then construct the PyBOP dataset class with the synthetic data as,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": values[\"Voltage [V]\"].data,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now, we can put this all together and construct the problem class. In this situation, we are going to compare differing fitting cost functions, so we construct the `FittingProblem`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Sum of Squared Errors and Root Mean Squared Error\n",
+ "\n",
+ "First, let's start with two commonly-used cost functions: the sum of squared errors (SSE) and the root mean squared error (RMSE). Constructing these classes is very concise in PyBOP, and only requires the problem class."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "cost_SSE = pybop.SumSquaredError(problem)\n",
+ "cost_RMSE = pybop.RootMeanSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now, we can investigate how these functions differ when fitting the parameters. To acquire the cost value for each of these, we can simply use the call method of the constructed class, such as:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "2.0269652551213878e-10"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost_SSE([7.56e-05, 5.22e-06])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Alternatively, we can use the `Parameters` class for this,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[7.56e-05 5.22e-06]\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "2.0269652551213878e-10"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "print(parameters.current_value())\n",
+ "cost_SSE(parameters.current_value())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "If we want to generate a random sample of candidate solutions from the parameter class prior, we can also do that as:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[8.19241247e-05 5.09035035e-06]\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ "0.030472774516224807"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "sample = parameters.rvs()\n",
+ "print(sample)\n",
+ "cost_SSE(sample)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### Comparing RMSE and SSE\n",
+ "\n",
+ "Now, let's vary one of the parameters, and keep a fixed value for the other, to create a scatter plot comparing the cost values for the RMSE and SSE functions."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "x_range = np.linspace(4.72e-06, 5.72e-06, 75)\n",
+ "y_SSE = []\n",
+ "y_RMSE = []\n",
+ "for i in x_range:\n",
+ " y_SSE.append(cost_SSE([7.56e-05, i]))\n",
+ " y_RMSE.append(cost_RMSE([7.56e-05, i]))\n",
+ "\n",
+ "fig = go.Figure()\n",
+ "fig.add_trace(go.Scatter(x=x_range, y=y_SSE, mode=\"lines\", name=\"SSE\"))\n",
+ "fig.add_trace(go.Scatter(x=x_range, y=y_RMSE, mode=\"lines\", name=\"RMSE\"))\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "In this situation, it's clear that the curvature of the SSE cost is greater than that of the RMSE. This can improve the rate of convergence for certain optimisation algorithms. However, with incorrect hyperparameter values, larger gradients can also result in the algorithm not converging due to sampling locations outside of the \"cost valley\", e.g. infeasible parameter values."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Minkowski distance\n",
+ "\n",
+ "Next, let's investigate the Minkowski distance. The Minkowski cost takes a general form, which allows for hyperparameter calibration on the cost function itself, given by\n",
+ "\n",
+ "$\\mathcal{L_p} = \\displaystyle \\Big(\\sum_i |\\hat{y_i}-y_i|^p\\Big)^{1/p}$\n",
+ "\n",
+ "where $p ≥ 0$ is the order of the Minkowski distance.\n",
+ "\n",
+ "For $p = 1$, it is the Manhattan distance. \n",
+ "For $p = 2$, it is the Euclidean distance. \n",
+ "For $p ≥ 1$, the Minkowski distance is a metric, but for $0
"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "y_minkowski = []\n",
+ "for i in x_range:\n",
+ " y_minkowski.append(cost_minkowski([7.56e-05, i]))\n",
+ "\n",
+ "fig = go.Figure()\n",
+ "fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=x_range,\n",
+ " y=np.asarray(y_RMSE) * np.sqrt(len(t_eval)),\n",
+ " mode=\"lines\",\n",
+ " name=\"RMSE*N\",\n",
+ " )\n",
+ ")\n",
+ "fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=x_range,\n",
+ " y=np.sqrt(y_SSE),\n",
+ " mode=\"lines\",\n",
+ " line=dict(dash=\"dash\"),\n",
+ " name=\"sqrt(SSE)\",\n",
+ " )\n",
+ ")\n",
+ "fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=x_range, y=y_minkowski, mode=\"lines\", line=dict(dash=\"dot\"), name=\"Minkowski\"\n",
+ " )\n",
+ ")\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "As expected, these lines lie on top of one another. Now, let's take a look at how the Minkowski cost changes for different orders, `p`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "p_orders = np.append(0.75, np.linspace(1, 3, 5))\n",
+ "y_minkowski = tuple(\n",
+ " [pybop.Minkowski(problem, p=j)([7.56e-05, i]) for i in x_range] for j in p_orders\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "fig = go.Figure()\n",
+ "for k, _ in enumerate(p_orders):\n",
+ " fig.add_trace(\n",
+ " go.Scatter(x=x_range, y=y_minkowski[k], mode=\"lines\", name=f\"Minkowski {_}\")\n",
+ " )\n",
+ "fig.update_yaxes(range=[0, np.max(y_minkowski[2])])\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "As seen above, the Minkowski cost allows for a range of different cost functions to be created. This provides users with another hyperparameter to calibrate for optimisation algorithm convergence. This addition does expand the global search space, and should be carefully considered before deciding upon.\n",
+ "\n",
+ "### Sum of Power\n",
+ "Next, we introduce a similar cost function, the `SumofPower` implementation. This cost function is the $p$-th power of the Minkowski distance of order $p$. It provides a generalised formulation for the Sum of Squared Errors (SSE) cost function, and is given by,\n",
+ "\n",
+ "$\\mathcal{L_p} = \\displaystyle \\sum_i |\\hat{y_i}-y_i|^p$\n",
+ "\n",
+ "where $p ≥ 0$ is the power order. A few special cases include,\n",
+ "\n",
+ "$p = 1$: Sum of Absolute Differences\n",
+ "$p = 2$: Sum of Squared Differences\n",
+ "\n",
+ "Next we repeat the above examples with the addition of the `SumofPower` class."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "cost_sumofpower = pybop.SumofPower(problem, p=2)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "y_sumofpower = []\n",
+ "for i in x_range:\n",
+ " y_sumofpower.append(cost_sumofpower([7.56e-05, i]))\n",
+ "\n",
+ "fig = go.Figure()\n",
+ "fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=x_range,\n",
+ " y=np.asarray(y_RMSE) * np.sqrt(len(t_eval)),\n",
+ " mode=\"lines\",\n",
+ " name=\"RMSE*N\",\n",
+ " )\n",
+ ")\n",
+ "fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=x_range,\n",
+ " y=y_SSE,\n",
+ " mode=\"lines\",\n",
+ " line=dict(dash=\"dash\"),\n",
+ " name=\"SSE\",\n",
+ " )\n",
+ ")\n",
+ "fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=x_range,\n",
+ " y=y_sumofpower,\n",
+ " mode=\"lines\",\n",
+ " line=dict(dash=\"dot\"),\n",
+ " name=\"Sum of Power\",\n",
+ " )\n",
+ ")\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "As expected, the `SumofPower` with order `p=2` equates to the `SSE` implementation. Next, we compare the `Minkowski` to the `SumofPower`,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "p_orders = np.append(0.75, np.linspace(1, 2, 2))\n",
+ "\n",
+ "y_minkowski = tuple(\n",
+ " [pybop.Minkowski(problem, p=j)([7.56e-05, i]) for i in x_range] for j in p_orders\n",
+ ")\n",
+ "\n",
+ "y_sumofpower = tuple(\n",
+ " [pybop.SumofPower(problem, p=j)([7.56e-05, i]) for i in x_range] for j in p_orders\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "fig = go.Figure()\n",
+ "for k, _ in enumerate(p_orders):\n",
+ " fig.add_trace(\n",
+ " go.Scatter(x=x_range, y=y_minkowski[k], mode=\"lines\", name=f\"Minkowski {_}\")\n",
+ " )\n",
+ " fig.add_trace(\n",
+ " go.Scatter(\n",
+ " x=x_range,\n",
+ " y=y_sumofpower[k],\n",
+ " mode=\"lines\",\n",
+ " line=dict(dash=\"dash\"),\n",
+ " name=f\"Sum of Power {_}\",\n",
+ " )\n",
+ " )\n",
+ "fig.update_yaxes(range=[0, 2.5])\n",
+ "fig.show()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "The figure demonstrates the distinct behaviour of the `Minkowski` distance and the `SumofPower` function. One notable difference is the effect of the `1/p` exponent in the `Minkowski` distance, which has a linearising impact on the response. This linearisation can enhance the robustness of certain optimisation algorithms, potentially making them less sensitive to outliers or extreme values. However, this increased robustness may come at the cost of a slower convergence rate, as the linearised response might require more iterations to reach the optimal solution. In contrast, the `SumofPower` function does not exhibit this linearising effect, which can lead to faster convergence in some cases but may be more susceptible to the influence of outliers or extreme values.\n",
+ "\n",
+ "In this notebook, we've shown the different fitting cost functions offered in PyBOP. Selection between these functions can affect the optimisation result in the case that the optimiser hyperparameter values are not properly calibrated. "
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "pybop-3.12",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/examples/notebooks/comparison_examples/multi_optimiser_identification.ipynb b/examples/notebooks/comparison_examples/multi_optimiser_identification.ipynb
new file mode 100644
index 000000000..357877eab
--- /dev/null
+++ b/examples/notebooks/comparison_examples/multi_optimiser_identification.ipynb
@@ -0,0 +1,2183 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Different Optimisers for SPMe Parameter Estimation\n",
+ "\n",
+ "In this notebook, we demonstrate parameter estimation for a single-particle model for various PyBOP optimisers. PyBOP offers a variety of gradient and non-gradient based optimisers, with a table of the currently supported methods shown in the Readme. In this example, we will set up the model, problem, and cost function and investigate how the different optimisers perform under this task.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jAvD5fk104p0"
+ },
+ "source": [
+ "### Importing Libraries\n",
+ "\n",
+ "With the environment set up, we can now import PyBOP alongside other libraries we will need:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "SQdt4brD04p1"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5XU-dMtU04p2"
+ },
+ "source": [
+ "## Generating Synthetic Data\n",
+ "\n",
+ "To demonstrate the parameter estimation, we first need some data. We will generate synthetic data using a PyBOP DFN forward model, which requires defining a parameter set and the model itself.\n",
+ "\n",
+ "### Defining Parameters and Model\n",
+ "\n",
+ "We start by creating an example parameter set, constructing the DFN for synthetic generation, and the model we will be fitting (SPMe)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "synth_model = pybop.lithium_ion.DFN(parameter_set=parameter_set)\n",
+ "model = pybop.lithium_ion.SPMe(parameter_set=parameter_set)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Simulating the Forward Model\n",
+ "\n",
+ "We can then simulate the model using the `predict` method, with a default constant current discharge to generate the voltage data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "sBasxv8U04p3"
+ },
+ "outputs": [],
+ "source": [
+ "t_eval = np.arange(0, 2000, 10)\n",
+ "initial_state = {\"Initial SoC\": 1.0}\n",
+ "values = synth_model.predict(t_eval=t_eval, initial_state=initial_state)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Adding Noise to Voltage Data\n",
+ "\n",
+ "To make the parameter estimation more realistic, we add Gaussian noise to the data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sigma = 0.002\n",
+ "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(0, sigma, len(t_eval))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "X8-tubYY04p_"
+ },
+ "source": [
+ "## Identifying the Parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "PQqhvSZN04p_"
+ },
+ "source": [
+ "We will now set up the parameter estimation process by defining the datasets for optimisation and selecting the model parameters we wish to estimate."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Creating a Dataset\n",
+ "\n",
+ "The dataset for optimisation is composed of time, current, and the noisy voltage data:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zuvGHWID04p_"
+ },
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ffS3CF_704qA"
+ },
+ "source": [
+ "### Defining Parameters to Estimate\n",
+ "\n",
+ "We select the parameters for estimation and set up their prior distributions and bounds. In this example, non-geometric parameters for each electrode's active material volume fraction are selected."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WPCybXIJ04qA"
+ },
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.6, 0.02),\n",
+ " bounds=[0.5, 0.8],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.48, 0.02),\n",
+ " bounds=[0.4, 0.7],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Selecting the Optimisers\n",
+ "\n",
+ "Now, we can select the optimisers to investigate. The first object is a list of non-gradient-based PINTS's optimisers. The next object comprises the gradient-based PINTS's optimisers (AdamW, GradientDescent, IRPropMin). The final object forms the SciPy optimisers which can have gradient and non-gradient-based algorithms."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "gradient_optimisers = [\n",
+ " pybop.AdamW,\n",
+ " pybop.GradientDescent,\n",
+ " pybop.IRPropMin,\n",
+ "]\n",
+ "\n",
+ "non_gradient_optimisers = [\n",
+ " pybop.CMAES,\n",
+ " pybop.SNES,\n",
+ " pybop.PSO,\n",
+ " pybop.XNES,\n",
+ " pybop.NelderMead,\n",
+ " pybop.CuckooSearch,\n",
+ "]\n",
+ "\n",
+ "scipy_optimisers = [\n",
+ " pybop.SciPyMinimize,\n",
+ " pybop.SciPyDifferentialEvolution,\n",
+ "]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "### Setting up the Optimisation Problem\n",
+ "\n",
+ "With the datasets, parameters, and optimisers defined, we can set up the optimisation problem and cost function. In this example we loop through all of the above optimisers and store the results for later visualisation and analysis."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "etMzRtx404qA"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Running AdamW\n",
+ "NOTE: Boundaries ignored by AdamW\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (60) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.72077396 0.674774 ]\n",
+ " Final cost: 0.003046118194519812\n",
+ " Optimisation time: 3.55043888092041 seconds\n",
+ " Number of iterations: 60\n",
+ " SciPy result available: No\n",
+ "Running GradientDescent\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (60) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.67939892 0.6815674 ]\n",
+ " Final cost: 0.0038166067064497105\n",
+ " Optimisation time: 3.2792601585388184 seconds\n",
+ " Number of iterations: 60\n",
+ " SciPy result available: No\n",
+ "Running IRPropMin\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (60) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.72167189 0.67300586]\n",
+ " Final cost: 0.0029223029353733646\n",
+ " Optimisation time: 3.3285961151123047 seconds\n",
+ " Number of iterations: 60\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optims = []\n",
+ "xs = []\n",
+ "model.set_initial_state(initial_state)\n",
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)\n",
+ "for optimiser in gradient_optimisers:\n",
+ " print(f\"Running {optimiser.__name__}\")\n",
+ " sigma0 = 0.01 if optimiser is pybop.GradientDescent else None\n",
+ " optim = optimiser(\n",
+ " cost, sigma0=sigma0, max_unchanged_iterations=20, max_iterations=60\n",
+ " )\n",
+ " results = optim.run()\n",
+ " optims.append(optim)\n",
+ " xs.append(results.x)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Running CMAES\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 20 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.72099642 0.673128 ]\n",
+ " Final cost: 0.0029219755355584616\n",
+ " Optimisation time: 2.9584238529205322 seconds\n",
+ " Number of iterations: 42\n",
+ " SciPy result available: No\n",
+ "Running SNES\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 20 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.72125026 0.67307644]\n",
+ " Final cost: 0.0029220074793387843\n",
+ " Optimisation time: 2.7991578578948975 seconds\n",
+ " Number of iterations: 52\n",
+ " SciPy result available: No\n",
+ "Running PSO\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 20 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.7335151 0.67158104]\n",
+ " Final cost: 0.0030254785798547734\n",
+ " Optimisation time: 2.0981178283691406 seconds\n",
+ " Number of iterations: 43\n",
+ " SciPy result available: No\n",
+ "Running XNES\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (60) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.67677389 0.68423077]\n",
+ " Final cost: 0.004170543052960678\n",
+ " Optimisation time: 3.208811044692993 seconds\n",
+ " Number of iterations: 60\n",
+ " SciPy result available: No\n",
+ "Running NelderMead\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (60) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.72127038 0.67308243]\n",
+ " Final cost: 0.002922015000486046\n",
+ " Optimisation time: 0.572443962097168 seconds\n",
+ " Number of iterations: 60\n",
+ " SciPy result available: No\n",
+ "Running CuckooSearch\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 20 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.71228325 0.67482605]\n",
+ " Final cost: 0.0029570571571777425\n",
+ " Optimisation time: 2.216571807861328 seconds\n",
+ " Number of iterations: 40\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "for optimiser in non_gradient_optimisers:\n",
+ " print(f\"Running {optimiser.__name__}\")\n",
+ " optim = optimiser(cost, max_unchanged_iterations=20, max_iterations=60)\n",
+ " results = optim.run()\n",
+ " optims.append(optim)\n",
+ " xs.append(results.x)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Running SciPyMinimize\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.62747952 0.7 ]\n",
+ " Final cost: 0.010270031808476705\n",
+ " Optimisation time: 0.4111368656158447 seconds\n",
+ " Number of iterations: 23\n",
+ " SciPy result available: Yes\n",
+ "Running SciPyDifferentialEvolution\n",
+ "Ignoring x0. Initial conditions are not used for differential_evolution.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "OptimisationResult:\n",
+ " Initial parameters: [0.61271354 0.47586173]\n",
+ " Optimised parameters: [0.72099808 0.67312761]\n",
+ " Final cost: 0.0029219755546384587\n",
+ " Optimisation time: 5.829385042190552 seconds\n",
+ " Number of iterations: 20\n",
+ " SciPy result available: Yes\n"
+ ]
+ }
+ ],
+ "source": [
+ "for optimiser in scipy_optimisers:\n",
+ " print(f\"Running {optimiser.__name__}\")\n",
+ " optim = optimiser(cost, max_iterations=60)\n",
+ " results = optim.run()\n",
+ " optims.append(optim)\n",
+ " xs.append(results.x)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Next, we can compare the identified parameters across the optimisers. This gives us insight into how well each optimiser traversed the cost landscape. The ground-truth parameter values for the `Chen2020` parameter set are: \n",
+ "\n",
+ "- Negative active material volume fraction: `0.75`\n",
+ "- Positive active material volume fraction: `0.665`"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "| Optimiser: AdamW | Results: [0.72077396 0.674774 ] |\n",
+ "| Optimiser: Gradient descent | Results: [0.67939892 0.6815674 ] |\n",
+ "| Optimiser: iRprop- | Results: [0.72167189 0.67300586] |\n",
+ "| Optimiser: Covariance Matrix Adaptation Evolution Strategy (CMA-ES) | Results: [0.72099642 0.673128 ] |\n",
+ "| Optimiser: Seperable Natural Evolution Strategy (SNES) | Results: [0.72125026 0.67307644] |\n",
+ "| Optimiser: Particle Swarm Optimisation (PSO) | Results: [0.7335151 0.67158104] |\n",
+ "| Optimiser: Exponential Natural Evolution Strategy (xNES) | Results: [0.67677389 0.68423077] |\n",
+ "| Optimiser: Nelder-Mead | Results: [0.72127038 0.67308243] |\n",
+ "| Optimiser: Cuckoo Search | Results: [0.71228325 0.67482605] |\n",
+ "| Optimiser: SciPyMinimize | Results: [0.62747952 0.7 ] |\n",
+ "| Optimiser: SciPyDifferentialEvolution | Results: [0.72099808 0.67312761] |\n"
+ ]
+ }
+ ],
+ "source": [
+ "for optim in optims:\n",
+ " print(f\"| Optimiser: {optim.name()} | Results: {optim.result.x} |\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Many of the above optimisers found the correct value for the positive active material volume fraction. However, none of them found the correct value for the negative electrode. Next, we can investigate if this was an optimiser or parameter observability failure."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KxKURtH704qC"
+ },
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualise the results of the optimisation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-cWCOiqR04qC"
+ },
+ "source": [
+ "### Comparing Solutions\n",
+ "\n",
+ "We can quickly plot the system's response using the estimated parameters for each optimiser and the target dataset."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 467
+ },
+ "id": "tJUJ80Ve04qD",
+ "outputId": "855fbaa2-1e09-4935-eb1a-8caf7f99eb75"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "for optim, x in zip(optims, xs):\n",
+ " pybop.plot.quick(optim.cost.problem, problem_inputs=x, title=optim.name())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Convergence and Parameter Trajectories\n",
+ "\n",
+ "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "N5XYkevi04qD"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "for optim in optims:\n",
+ " pybop.plot.convergence(optim, title=optim.name())\n",
+ " pybop.plot.parameters(optim)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Cost Landscape\n",
+ "\n",
+ "Finally, we can visualise the cost landscape and the path taken by the optimiser. This should give us additional insight into whether the negative electrode volume fraction is observable or not. For an observable parameter, the cost landscape needs to have a clear minimum with respect to the parameter in question. More clearly, the parameter value has to have an effect on the cost function."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot the cost landscape with optimisation path and updated bounds\n",
+ "bounds = np.asarray([[0.5, 0.8], [0.55, 0.8]])\n",
+ "for optim in optims:\n",
+ " pybop.plot.surface(optim, bounds=bounds, title=optim.name())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Given the synthetic data and corresponding system excitation, the observability of the negative electrode active material fraction is quite low. As such, we would need to excite the system in a different way or observe a different signal to acquire a unique value."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Conclusion\n",
+ "\n",
+ "This notebook illustrates how to perform parameter estimation using PyBOP, across both gradient and non-gradient-based optimisers. "
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/notebooks/comparison_examples/optimiser_calibration.ipynb b/examples/notebooks/comparison_examples/optimiser_calibration.ipynb
new file mode 100644
index 000000000..53a34a063
--- /dev/null
+++ b/examples/notebooks/comparison_examples/optimiser_calibration.ipynb
@@ -0,0 +1,1559 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Learning Rate Calibration of Gradient Descent in PyBOP\n",
+ "\n",
+ "In this notebook, we calibrate the learning rate for the gradient descent optimiser on a parameter identification problem. The gradient descent learning rate is taken as the `sigma0` value passed to the `pybop.Optimisation` class, or via `problem.sigma0` or `cost.sigma0` if it is passed earlier in the workflow.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jAvD5fk104p0"
+ },
+ "source": [
+ "### Importing Libraries\n",
+ "\n",
+ "With the environment set up, we can now import PyBOP alongside other libraries we will need:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "SQdt4brD04p1"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5XU-dMtU04p2"
+ },
+ "source": [
+ "## Generating Synthetic Data\n",
+ "\n",
+ "To demonstrate parameter estimation, we first need some data. We will generate synthetic data using a forward model, which requires defining a parameter set and the model itself.\n",
+ "\n",
+ "### Defining Parameters and Model\n",
+ "\n",
+ "We start by creating an example parameter set, constructing the single-particle model (SPM) and generating the synthetic data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Negative electrode active material volume fraction\": 0.65,\n",
+ " \"Positive electrode active material volume fraction\": 0.51,\n",
+ " }\n",
+ ")\n",
+ "model = pybop.lithium_ion.SPM(parameter_set=parameter_set)\n",
+ "initial_state = {\"Initial SoC\": 0.4}\n",
+ "experiment = pybop.Experiment(\n",
+ " [\n",
+ " (\n",
+ " \"Discharge at 0.5C for 6 minutes (4 second period)\",\n",
+ " \"Charge at 0.5C for 6 minutes (4 second period)\",\n",
+ " ),\n",
+ " ]\n",
+ " * 2\n",
+ ")\n",
+ "values = model.predict(initial_state=initial_state, experiment=experiment)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Adding Noise to Voltage Data\n",
+ "\n",
+ "To make the parameter estimation more realistic, we add Gaussian noise to the data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sigma = 0.002\n",
+ "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(\n",
+ " 0, sigma, len(values[\"Voltage [V]\"].data)\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "X8-tubYY04p_"
+ },
+ "source": [
+ "## Identifying the Parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "PQqhvSZN04p_"
+ },
+ "source": [
+ "We will now set up the parameter estimation process by defining the datasets for optimisation and selecting the model parameters we wish to estimate."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Creating a Dataset\n",
+ "\n",
+ "The dataset for optimisation is composed of time, current, and the noisy voltage data:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zuvGHWID04p_"
+ },
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": values[\"Time [s]\"].data,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ffS3CF_704qA"
+ },
+ "source": [
+ "### Defining Parameters to Estimate\n",
+ "\n",
+ "We select the parameters for estimation and set up their prior distributions and bounds:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WPCybXIJ04qA"
+ },
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode active material volume fraction\",\n",
+ " prior=pybop.Uniform(0.45, 0.7),\n",
+ " bounds=[0.4, 0.8],\n",
+ " true_value=0.65,\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode active material volume fraction\",\n",
+ " prior=pybop.Uniform(0.45, 0.7),\n",
+ " bounds=[0.4, 0.8],\n",
+ " true_value=0.51,\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "### Setting up the Optimisation Problem with incorrect sigma value\n",
+ "\n",
+ "With the datasets and parameters defined, we can set up the optimisation problem, its cost function, and the optimiser. For gradient descent, the `sigma0` value corresponds to the learning rate. Let's set this hyperparmeter incorrectly to view how we calibrate it. In this example, let's start with `sigma0=0.2`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "etMzRtx404qA"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "NOTE: Boundaries ignored by \n"
+ ]
+ }
+ ],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)\n",
+ "optim = pybop.GradientDescent(cost, sigma0=0.2, max_iterations=100)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "caprp-bV04qB"
+ },
+ "source": [
+ "### Running the Optimisation\n",
+ "\n",
+ "We proceed to run the optimisation algorithm to estimate the parameters with the updated learning rate (`sigma0`)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "-9OVt0EQ04qB"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.64605501 0.51469905]\n",
+ " Final cost: 0.0013514039920203883\n",
+ " Optimisation time: 2.287174940109253 seconds\n",
+ " Number of iterations: 52\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-4pZsDmS04qC"
+ },
+ "source": [
+ "### Viewing the Estimated Parameters\n",
+ "\n",
+ "After the optimisation, we can examine the estimated parameter values. In this case, the optimiser misses the optimal solution by a large amount."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "Hgz8SV4i04qC",
+ "outputId": "e1e42ae7-5075-4c47-dd68-1b22ecc170f6"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "array([0.64605501, 0.51469905])"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "results.x # This will output the estimated parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's plot the time-series prediction for the given solution. As we suspected, the optimiser found a very poor solution. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Calibrating the Learning Rate \n",
+ "\n",
+ "Now that we've seen how poor an incorrect `sigma0` value is for this optimisation problem, let's calibrate this value to find the optimal solution in the lowest number of iterations."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "0.001\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.53090948 0.59339862]\n",
+ " Final cost: 0.014783332157851634\n",
+ " Optimisation time: 4.26934027671814 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n",
+ "0.012285714285714285\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.60345692 0.56598814]\n",
+ " Final cost: 0.002790217328868725\n",
+ " Optimisation time: 4.251996040344238 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n",
+ "0.023571428571428573\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.62409599 0.5385165 ]\n",
+ " Final cost: 0.0017177540172860569\n",
+ " Optimisation time: 4.208575963973999 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n",
+ "0.03485714285714286\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.63571019 0.52533286]\n",
+ " Final cost: 0.0014363025957628353\n",
+ " Optimisation time: 4.245105028152466 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n",
+ "0.046142857142857145\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.641494 0.51930683]\n",
+ " Final cost: 0.0013701538891978493\n",
+ " Optimisation time: 4.226551055908203 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n",
+ "0.05742857142857143\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (100) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.64414678 0.5165881 ]\n",
+ " Final cost: 0.0013574904717929912\n",
+ " Optimisation time: 4.241044044494629 seconds\n",
+ " Number of iterations: 100\n",
+ " SciPy result available: No\n",
+ "0.06871428571428571\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.64460623 0.51615892]\n",
+ " Final cost: 0.0013563752974500437\n",
+ " Optimisation time: 3.6841771602630615 seconds\n",
+ " Number of iterations: 87\n",
+ " SciPy result available: No\n",
+ "0.08\n",
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.64463942 0.51613016]\n",
+ " Final cost: 0.001356018556480287\n",
+ " Optimisation time: 3.1757869720458984 seconds\n",
+ " Number of iterations: 75\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "sigmas = np.linspace(0.001, 0.08, 8) # Change this to a smaller range for a quicker run\n",
+ "xs = []\n",
+ "optims = []\n",
+ "for sigma in sigmas:\n",
+ " print(sigma)\n",
+ " problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ " cost = pybop.SumSquaredError(problem)\n",
+ " optim = pybop.GradientDescent(cost, sigma0=sigma, max_iterations=100)\n",
+ " results = optim.run()\n",
+ " optims.append(optim)\n",
+ " xs.append(results.x)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "| Sigma: 0.001 | Num Iterations: 100 | Best Cost: 0.014783332157851634 | Results: [0.53090948 0.59339862] |\n",
+ "| Sigma: 0.012285714285714285 | Num Iterations: 100 | Best Cost: 0.002790217328868725 | Results: [0.60345692 0.56598814] |\n",
+ "| Sigma: 0.023571428571428573 | Num Iterations: 100 | Best Cost: 0.0017177540172860569 | Results: [0.62409599 0.5385165 ] |\n",
+ "| Sigma: 0.03485714285714286 | Num Iterations: 100 | Best Cost: 0.0014363025957628353 | Results: [0.63571019 0.52533286] |\n",
+ "| Sigma: 0.046142857142857145 | Num Iterations: 100 | Best Cost: 0.0013701538891978493 | Results: [0.641494 0.51930683] |\n",
+ "| Sigma: 0.05742857142857143 | Num Iterations: 100 | Best Cost: 0.0013574904717929912 | Results: [0.64414678 0.5165881 ] |\n",
+ "| Sigma: 0.06871428571428571 | Num Iterations: 87 | Best Cost: 0.0013563752974500437 | Results: [0.64460623 0.51615892] |\n",
+ "| Sigma: 0.08 | Num Iterations: 75 | Best Cost: 0.001356018556480287 | Results: [0.64463942 0.51613016] |\n"
+ ]
+ }
+ ],
+ "source": [
+ "for optim, sigma in zip(optims, sigmas):\n",
+ " print(\n",
+ " f\"| Sigma: {sigma} | Num Iterations: {optim.result.n_iterations} | Best Cost: {optim.optimiser.f_best()} | Results: {optim.optimiser.x_best()} |\"\n",
+ " )"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Perhaps a better way to view this information is to plot the optimiser convergences,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "for optim, sigma in zip(optims, sigmas):\n",
+ " pybop.plot.convergence(optim, title=f\"Sigma: {sigma}\")\n",
+ " pybop.plot.parameters(optim)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Cost Landscapes\n",
+ "\n",
+ "Finally, we can visualise the cost landscape and the path taken by the optimiser:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot the cost landscape with optimisation path and updated bounds\n",
+ "bounds = np.array([[0.4, 0.8], [0.4, 0.8]])\n",
+ "for optim, sigma in zip(optims, sigmas):\n",
+ " pybop.plot.surface(optim, bounds=bounds, title=f\"Sigma: {sigma}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Updating the Learning Rate\n",
+ "\n",
+ "Let's take `sigma0 = 0.08` as the best learning rate for this problem and look at the time-series trajectories."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "NOTE: Boundaries ignored by \n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.46478836 0.56896942]\n",
+ " Optimised parameters: [0.64463942 0.51613016]\n",
+ " Final cost: 0.001356018556480287\n",
+ " Optimisation time: 3.1555721759796143 seconds\n",
+ " Number of iterations: 75\n",
+ " SciPy result available: No\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "optim = pybop.Optimisation(cost, optimiser=pybop.GradientDescent, sigma0=0.08)\n",
+ "results = optim.run()\n",
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Conclusion\n",
+ "\n",
+ "This notebook covers how to calibrate the learning rate for the gradient descent optimiser. This provides an introduction into hyper-parameter tuning that will be discussed in further notebooks."
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/notebooks/comparison_examples/solver_selection.ipynb b/examples/notebooks/comparison_examples/solver_selection.ipynb
new file mode 100644
index 000000000..3a9e99db3
--- /dev/null
+++ b/examples/notebooks/comparison_examples/solver_selection.ipynb
@@ -0,0 +1,319 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Investigate Different PyBaMM Solvers\n",
+ "\n",
+ "In this notebook, we discuss the process of changing PyBaMM solvers and the corresponding performance trade-offs with each. For further reading on different solvers, see the PyBaMM solver documentation:\n",
+ "\n",
+ "[[1]: PyBaMM Solvers](https://docs.pybamm.org/en/stable/source/api/solvers/index.html#)\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "import time\n",
+ "\n",
+ "import numpy as np\n",
+ "import pybamm\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5XU-dMtU04p2"
+ },
+ "source": [
+ "### Setting up the model, and problem\n",
+ "\n",
+ "We start by constructing a pybop model, and a synthetic dataset needed for the pybop problem we will be using for the solver benchmarking "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Model\n",
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "model = pybop.lithium_ion.SPM(parameter_set=parameter_set)\n",
+ "\n",
+ "# Synthetic data\n",
+ "t_eval = np.arange(0, 900, 2)\n",
+ "values = model.predict(t_eval=t_eval)\n",
+ "\n",
+ "# Dataset\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": values[\"Voltage [V]\"].data,\n",
+ " }\n",
+ ")\n",
+ "\n",
+ "# Parameters\n",
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.6, 0.02),\n",
+ " bounds=[0.5, 0.8],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.48, 0.02),\n",
+ " bounds=[0.4, 0.7],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "### Defining the solvers for benchmarking\n",
+ "\n",
+ "Now that we have set up the majority of the pybop objects, we construct the solvers we want to benchmark on the given model, and applied current."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "solvers = [\n",
+ " pybamm.IDAKLUSolver(atol=1e-6, rtol=1e-6),\n",
+ " pybamm.CasadiSolver(atol=1e-6, rtol=1e-6, mode=\"safe\"),\n",
+ " pybamm.CasadiSolver(atol=1e-6, rtol=1e-6, mode=\"fast\"),\n",
+ " pybamm.CasadiSolver(atol=1e-6, rtol=1e-6, mode=\"fast with events\"),\n",
+ "]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Next, we construct a range of inputs for the parameters defined above, and select the number of instances in that range to benchmark on. For more statistically repeatable results, increase the variable `n` below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "n = 50 # Number of solves\n",
+ "inputs = list(zip(np.linspace(0.45, 0.6, n), np.linspace(0.45, 0.6, n)))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Next, let's benchmark the solvers without sensitivities. This provides a reference for the non-gradient based pybop optimisers and samplers. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time Evaluate IDA KLU solver: 0.320\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time Evaluate CasADi solver with 'safe' mode: 1.176\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time Evaluate CasADi solver with 'fast' mode: 0.912\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time Evaluate CasADi solver with 'fast with events' mode: 0.943\n"
+ ]
+ }
+ ],
+ "source": [
+ "for solver in solvers:\n",
+ " model.solver = solver\n",
+ " problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "\n",
+ " start_time = time.time()\n",
+ " for input_values in inputs:\n",
+ " problem.evaluate(inputs=input_values)\n",
+ " print(f\"Time Evaluate {solver.name}: {time.time() - start_time:.3f}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Excellent, given the above results, we know which solver we should select for optimisation on your machine, i.e. the one with the smallest time. \n",
+ "\n",
+ "Next, let's repeat the same toy problem, but for the gradient-based cost evaluation,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time EvaluateS1 IDA KLU solver: 0.786\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time EvaluateS1 CasADi solver with 'safe' mode: 3.751\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time EvaluateS1 CasADi solver with 'fast' mode: 3.326\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Time EvaluateS1 CasADi solver with 'fast with events' mode: 3.349\n"
+ ]
+ }
+ ],
+ "source": [
+ "for solver in solvers:\n",
+ " model.solver = solver\n",
+ " problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "\n",
+ " start_time = time.time()\n",
+ " for input_values in inputs:\n",
+ " problem.evaluateS1(inputs=input_values)\n",
+ " print(f\"Time EvaluateS1 {solver.name}: {time.time() - start_time:.3f}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now we have the relevant information for the gradient-based optimisers. Likewise to the above results, we should select the solver with the smallest time."
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/notebooks/design_optimisation/energy_based_electrode_design.ipynb b/examples/notebooks/design_optimisation/energy_based_electrode_design.ipynb
new file mode 100644
index 000000000..96871b9f8
--- /dev/null
+++ b/examples/notebooks/design_optimisation/energy_based_electrode_design.ipynb
@@ -0,0 +1,475 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## An Electrode Design Optimisation Example\n",
+ "\n",
+ "A design optimisation example loosely based on work by L.D. Couto available at [[1]](https://doi.org/10.1016/j.energy.2022.125966).\n",
+ "\n",
+ "The target is to maximise the gravimetric energy density over a range of possible design parameter values, including for example:\n",
+ "\n",
+ "cross-sectional area = height x width (only need change one), electrode widths, particle radii, volume fractions and separator width.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n",
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jAvD5fk104p0"
+ },
+ "source": [
+ "Next, we import the added packages plus any additional dependencies,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "SQdt4brD04p1"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "from pybamm import Parameter\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "X8-tubYY04p_"
+ },
+ "source": [
+ "## Optimising the Parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "PQqhvSZN04p_"
+ },
+ "source": [
+ "First, we define the model to be used for the parameter optimisation,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zuvGHWID04p_"
+ },
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "parameter_set.update(\n",
+ " {\n",
+ " \"Electrolyte density [kg.m-3]\": Parameter(\"Separator density [kg.m-3]\"),\n",
+ " \"Negative electrode active material density [kg.m-3]\": Parameter(\n",
+ " \"Negative electrode density [kg.m-3]\"\n",
+ " ),\n",
+ " \"Negative electrode carbon-binder density [kg.m-3]\": Parameter(\n",
+ " \"Negative electrode density [kg.m-3]\"\n",
+ " ),\n",
+ " \"Positive electrode active material density [kg.m-3]\": Parameter(\n",
+ " \"Positive electrode density [kg.m-3]\"\n",
+ " ),\n",
+ " \"Positive electrode carbon-binder density [kg.m-3]\": Parameter(\n",
+ " \"Positive electrode density [kg.m-3]\"\n",
+ " ),\n",
+ " },\n",
+ " check_already_exists=False,\n",
+ ")\n",
+ "model = pybop.lithium_ion.SPMe(parameter_set=parameter_set)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ffS3CF_704qA"
+ },
+ "source": [
+ "Next, we define the model parameters for optimisation. Furthermore, PyBOP provides functionality to define a prior for the parameters. The initial parameters values used in the optimisation will be randomly drawn from the prior distribution."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WPCybXIJ04qA"
+ },
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode thickness [m]\",\n",
+ " prior=pybop.Gaussian(7.56e-05, 0.05e-05),\n",
+ " bounds=[65e-06, 10e-05],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive particle radius [m]\",\n",
+ " prior=pybop.Gaussian(5.22e-06, 0.05e-06),\n",
+ " bounds=[2e-06, 9e-06],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Next, we construct the experiment for design optimisation and the initial state-of-charge,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "experiment = pybop.Experiment(\n",
+ " [\"Discharge at 1C until 2.5 V (5 seconds period)\"],\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "We can now define the output signal, the problem (which combines the model with the dataset) and construct a cost function which in this example is the `GravimetricEnergyDensity()` used to maximise the gravimetric energy density of the cell."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "etMzRtx404qA"
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/var/folders/2s/pn1xwy191_7bv761mlf_cgzh0000gq/T/ipykernel_45535/2045688338.py:1: UserWarning:\n",
+ "\n",
+ "The nominal capacity is fixed at the initial model value.\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "problem = pybop.DesignProblem(\n",
+ " model, parameters, experiment, initial_state={\"Initial SoC\": 0.7}\n",
+ ")\n",
+ "cost = pybop.GravimetricEnergyDensity(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "eQiGurUV04qB"
+ },
+ "source": [
+ "Let's construct PyBOP's optimisation class. This class provides the methods needed to fit the forward model. For this example, we use particle swarm optimisation (PSO). Due to the computational requirements of the design optimisation methods, we limit the number of iterations to 15 for this example."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "N3FtAhrT04qB"
+ },
+ "outputs": [],
+ "source": [
+ "optim = pybop.PSO(cost, verbose=True, max_iterations=15)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "caprp-bV04qB"
+ },
+ "source": [
+ "Finally, we run the optimisation and return the values obtained,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "-9OVt0EQ04qB"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (15) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [7.56456024e-05 5.27456414e-06]\n",
+ " Optimised parameters: [8.27568156e-05 2.07975193e-06]\n",
+ " Final cost: 279.3737537368842\n",
+ " Optimisation time: 26.728662967681885 seconds\n",
+ " Number of iterations: 15\n",
+ " SciPy result available: No\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Initial gravimetric energy density: 256.31 Wh.kg-1\n",
+ "Optimised gravimetric energy density: 279.37 Wh.kg-1\n"
+ ]
+ }
+ ],
+ "source": [
+ "results = optim.run()\n",
+ "print(f\"Initial gravimetric energy density: {cost(results.x0):.2f} Wh.kg-1\")\n",
+ "print(f\"Optimised gravimetric energy density: {results.final_cost:.2f} Wh.kg-1\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KxKURtH704qC"
+ },
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualise the results of the optimisation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-cWCOiqR04qC"
+ },
+ "source": [
+ "### Comparing System Response\n",
+ "\n",
+ "We can quickly plot the system's response using the estimated parameters compared to the initial parameters:\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "ZVfozY0A04qC"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ntIvAJmA04qD"
+ },
+ "source": [
+ "### Cost Landscape\n",
+ "\n",
+ "Finally, we can visualise the cost landscape and the path taken by the optimiser:\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 467
+ },
+ "id": "tJUJ80Ve04qD",
+ "outputId": "855fbaa2-1e09-4935-eb1a-8caf7f99eb75"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.surface(optim);"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
diff --git a/examples/notebooks/getting_started/adamw_identification.ipynb b/examples/notebooks/getting_started/adamw_identification.ipynb
new file mode 100644
index 000000000..ed9af4637
--- /dev/null
+++ b/examples/notebooks/getting_started/adamw_identification.ipynb
@@ -0,0 +1,631 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Parameter Estimation with AdamW in PyBOP\n",
+ "\n",
+ "In this notebook, we demonstrate an example of parameter estimation for a single-particle model using the AdamW optimiser [1][2]. The AdamW optimiser is an algorithm for gradient-based optimisation, combining the advantages of the Adaptive Gradient Algorithm (AdaGrad) and Root Mean Square Propagation (RMSProp).\n",
+ "\n",
+ "[[1]: Adam: A Method for Stochastic Optimization](https://arxiv.org/abs/1412.6980) \n",
+ "\n",
+ "[[2]: Decoupled Weight Decay Regularization](https://doi.org/10.48550/arXiv.1711.05101)\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "jAvD5fk104p0"
+ },
+ "source": [
+ "### Importing Libraries\n",
+ "\n",
+ "With the environment set up, we can now import PyBOP alongside other libraries we will need:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "SQdt4brD04p1"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5XU-dMtU04p2"
+ },
+ "source": [
+ "### Generate Synthetic Data\n",
+ "\n",
+ "To demonstrate parameter estimation, we first need some data. We will generate synthetic data using the PyBOP forward model, which requires defining a parameter set and the model itself.\n",
+ "\n",
+ "#### Defining Parameters and Model\n",
+ "\n",
+ "We start by creating an example parameter set and then instantiate the single-particle model (SPM):"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "model = pybop.lithium_ion.SPM(parameter_set=parameter_set)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Simulating Forward Model\n",
+ "\n",
+ "We can then simulate the model using the `predict` method, with a default constant current to generate voltage data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "sBasxv8U04p3"
+ },
+ "outputs": [],
+ "source": [
+ "t_eval = np.arange(0, 900, 2)\n",
+ "values = model.predict(t_eval=t_eval)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Adding Noise to Voltage Data\n",
+ "\n",
+ "To make the parameter estimation more realistic, we add Gaussian noise to the data."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sigma = 0.001\n",
+ "corrupt_values = values[\"Voltage [V]\"].data + np.random.normal(0, sigma, len(t_eval))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "X8-tubYY04p_"
+ },
+ "source": [
+ "## Identify the Parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "PQqhvSZN04p_"
+ },
+ "source": [
+ "We will now set up the parameter estimation process by defining the datasets for optimisation and selecting the model parameters we wish to estimate."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Creating Optimisation Dataset\n",
+ "\n",
+ "The dataset for optimisation is composed of time, current, and the noisy voltage data:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zuvGHWID04p_"
+ },
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ffS3CF_704qA"
+ },
+ "source": [
+ "### Defining Parameters to Estimate\n",
+ "\n",
+ "We select the parameters for estimation and set up their prior distributions and bounds:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WPCybXIJ04qA"
+ },
+ "outputs": [],
+ "source": [
+ "parameters = [\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.6, 0.02),\n",
+ " bounds=[0.5, 0.8],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode active material volume fraction\",\n",
+ " prior=pybop.Gaussian(0.48, 0.02),\n",
+ " bounds=[0.4, 0.7],\n",
+ " ),\n",
+ "]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "### Setting up the Optimisation Problem\n",
+ "\n",
+ "With the datasets and parameters defined, we can set up the optimisation problem, its cost function, and the optimiser."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "etMzRtx404qA"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "NOTE: Boundaries ignored by AdamW\n"
+ ]
+ }
+ ],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)\n",
+ "optim = pybop.Optimisation(cost, optimiser=pybop.AdamW)\n",
+ "optim.set_max_unchanged_iterations(40)\n",
+ "optim.set_max_iterations(150)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "caprp-bV04qB"
+ },
+ "source": [
+ "### Running the Optimisation\n",
+ "\n",
+ "We proceed to run the AdamW optimisation algorithm to estimate the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "-9OVt0EQ04qB"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: Maximum number of iterations (150) reached.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.60593931 0.46706684]\n",
+ " Optimised parameters: [0.76335438 0.66225687]\n",
+ " Final cost: 0.0004830773369301502\n",
+ " Optimisation time: 14.283170223236084 seconds\n",
+ " Number of iterations: 150\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "results = optim.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-4pZsDmS04qC"
+ },
+ "source": [
+ "### Viewing the Estimated Parameters\n",
+ "\n",
+ "After the optimisation, we can examine the estimated parameter values:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "Hgz8SV4i04qC",
+ "outputId": "e1e42ae7-5075-4c47-dd68-1b22ecc170f6"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "array([0.76335438, 0.66225687])"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "results.x # This will output the estimated parameters"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "KxKURtH704qC"
+ },
+ "source": [
+ "## Plotting and Visualisation\n",
+ "\n",
+ "PyBOP provides various plotting utilities to visualise the results of the optimisation."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-cWCOiqR04qC"
+ },
+ "source": [
+ "### Comparing System Response\n",
+ "\n",
+ "We can quickly plot the system's response using the estimated parameters compared to the target:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 467
+ },
+ "id": "tJUJ80Ve04qD",
+ "outputId": "855fbaa2-1e09-4935-eb1a-8caf7f99eb75"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.quick(problem, problem_inputs=results.x, title=\"Optimised Comparison\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Convergence and Parameter Trajectories\n",
+ "\n",
+ "To assess the optimisation process, we can plot the convergence of the cost function and the trajectories of the parameters:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "N5XYkevi04qD"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.convergence(optim)\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Cost Landscape\n",
+ "\n",
+ "Finally, we can visualise the cost landscape and the path taken by the optimiser:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# Plot the cost landscape with updated bounds\n",
+ "bounds = np.asarray([[0.6, 0.9], [0.5, 0.8]])\n",
+ "pybop.plot.surface(optim, bounds=bounds);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Conclusion\n",
+ "\n",
+ "This notebook illustrates how to perform parameter estimation using AdamW in PyBOP, providing insights into the optimisation process through various visualisations."
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/notebooks/getting_started/cost_compute_methods.ipynb b/examples/notebooks/getting_started/cost_compute_methods.ipynb
new file mode 100644
index 000000000..9af25b2e7
--- /dev/null
+++ b/examples/notebooks/getting_started/cost_compute_methods.ipynb
@@ -0,0 +1,393 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "# Using the Cost/Likelihood classes\n",
+ "This example will introduce the cost function methods used for both evaluating the output of and predicting the forward model. This example will use a cost class (`pybop.SumofPower`) as an example, but the methods discussed here are transferable to the other cost classes as well as the likelihood classes.\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "### Importing Libraries\n",
+ "\n",
+ "With the environment set up, we can now import PyBOP alongside other libraries we will need:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "First, to construct a `pybop.Cost` class, we need the following objects:\n",
+ "- Model\n",
+ "- Dataset\n",
+ "- Parameters to identify\n",
+ "- Problem\n",
+ "\n",
+ "Given the above, we will first construct the model, then the parameters and corresponding dataset. Once that is complete, the problem will be created. With the cost class created, we will showcase the different interactions users can have with the class. A small example with evaluation as well as computation is presented."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "model = pybop.lithium_ion.SPM(parameter_set=parameter_set)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "Now that we have the model constructed, let's define the parameters for identification."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode active material volume fraction\",\n",
+ " initial_value=0.6,\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode active material volume fraction\",\n",
+ " initial_value=0.6,\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8",
+ "metadata": {},
+ "source": [
+ "Next, we generate some synthetic data from the model using the `model.predict` method. This then gets corrupted with Gaussian noise and used to create the Dataset."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "t_eval = np.linspace(0, 10, 100)\n",
+ "values = model.predict(t_eval=t_eval)\n",
+ "\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": values[\"Voltage [V]\"].data,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10",
+ "metadata": {},
+ "source": [
+ "Now that we have the model, parameters, and dataset, we can combine them and construct the problem class. This class forms the basis for evaluating the forward model for the defined fitting process (parameters and operating conditions)."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "11",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "12",
+ "metadata": {},
+ "source": [
+ "Perfect, let's now construct the cost class and move onto the main point of this example,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "13",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "cost = pybop.SumofPower(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "14",
+ "metadata": {},
+ "source": [
+ "The conventional way to use the cost class is through the `cost.__call__` method, which is completed below,"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "15",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0.08963993888559865"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.5, 0.5])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "16",
+ "metadata": {},
+ "source": [
+ "This does two things, it first evaluates the forward model at the given parameter values of `[0.5,0.5]`, then it computes the cost for the forward models prediction compared to the problem target values, which are provided from the dataset we constructed above. \n",
+ "\n",
+ "However, there is an alternative method to achieve this which provides the user with more flexibility in their assessment of the cost function, this is done through the `cost.compute` method, as shown below."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "17",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0.08963993888559865"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "out = problem.evaluate([0.5, 0.5])\n",
+ "cost.compute(out)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "18",
+ "metadata": {},
+ "source": [
+ "This splits the evaluation of the forward model and the computation of the cost function into two separate calls, allowing for the model evaluation to be decoupled from the cost computation. This decoupling can be helpful in the case where you want to assess the problem across multiple costs (see pybop.WeightedCost for a PyBOP implementation of this), or want to modify the problem output before assessing a cost.\n",
+ "\n",
+ "Next, let's present a few of these use-cases. In the first use-case, the problem is evaluated once, with random noise added and the cost computed."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "19",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def my_cost(inputs):\n",
+ " y = problem.evaluate(inputs)\n",
+ " y[\"Voltage [V]\"] += np.random.normal(0, 0.003, len(t_eval))\n",
+ " return cost.compute(y)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "20",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0.08910088339381227"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "my_cost([0.5, 0.5])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "21",
+ "metadata": {},
+ "source": [
+ "The above method showcases how the `cost.__call__` method can be constructed at the user level. Furthermore, the above example can be reimplemented with gradient calculations as well via the `calculate_gradient` argument within the `cost.compute` method."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "22",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def my_cost_gradient(inputs):\n",
+ " y, dy = problem.evaluateS1(inputs)\n",
+ " y[\"Voltage [V]\"] += np.random.normal(0, 0.003, len(t_eval))\n",
+ " return cost.compute(y, dy=dy, calculate_grad=True)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "23",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(0.08917807157201464, array([-0.57688969, -0.48453944]))"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "my_cost_gradient([0.5, 0.5])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "24",
+ "metadata": {},
+ "source": [
+ "This provides the computed cost for the parameter values, alongside the gradient with respect to those parameters. This is the exact structure that is used within PyBOP's gradient-based optimisers. Finally, the above can be easily reproduced via the `cost.__call__` method with the corresponding `calculate_gradient=True` argument."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "25",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(0.08963668887423992, array([-0.58045629, -0.48653053]))"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.5, 0.5], calculate_grad=True)"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/getting_started/creating_a_model.ipynb b/examples/notebooks/getting_started/creating_a_model.ipynb
new file mode 100644
index 000000000..526346ab2
--- /dev/null
+++ b/examples/notebooks/getting_started/creating_a_model.ipynb
@@ -0,0 +1,162 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Creating a Model\n",
+ "\n",
+ "In this notebook, we create and solve a single particle model (SPM). This is achieved using a predefined parameter set introduced in Marquis et al. [[1]](https://doi.org/10.1149/1945-7111/abbce4) \n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install PyBOP and upgrade dependencies."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5XU-dMtU04p2"
+ },
+ "source": [
+ "## Creating a Model\n",
+ "\n",
+ "PyBOP offers the both forward emperical and physics-based forward models. These are provided by PyBaMM, with PyBOP adding wrappers on the underlying classes to reduce complexity and improve stability with parameter inference and design optimisation. Likewise, PyBOP provides a light wrapper on the PyBaMM parameter sets, with user-defined parameters available through the same `pybop.ParameterSet` class.\n",
+ "\n",
+ "Let's construct the parameter set and then the single-particle model (SPM):"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Marquis2019\")\n",
+ "model = pybop.lithium_ion.SPM(parameter_set=parameter_set)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now that the model is constructed with the Maquis parameter set, we can use the `model.predict` method as a light wrapper on the `PyBaMM.Simulation` class. This is the recommended way to generate synthetic data, but not for parameter inference as the performance cost of constructing the `Simulation` class is high. For parameter inference, `model.simulate` and `model.simulateS1` offer a performant way to solve the forward model with and without sensitivities respectively."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Testing the Model\n",
+ "Having constructed the model, we can now have a look at its voltage discharge curve to verify that it is working. The discharge curve is evaluated on the time interval specified by `t_eval`. `model.predict` returns the `PyBaMM.solution` object with all of its functionality. As we are only working with the forward model, PyBaMM plotting methods will be used; however, when performing parameter inference or design optimisation, PyBOP plotting methods are recommended."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAwkAAAGZCAYAAADCYn3mAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAACp/0lEQVR4nOzdd1xV9f/A8ddhXS5c9pAtoIi4Z4lWamqOMtTKTEpNs2HmKEsb7kzLlWaR5sLcub9ampqQUu6tuFDEgRPZ+977+4MfN68MQVFQ388ePOye8znnvO85l8t5n89S9Hq9HiGEEEIIIYT4fyblHYAQQgghhBCiYpEkQQghhBBCCGFEkgQhhBBCCCGEEUkShBBCCCGEEEYkSRBCCCGEEEIYkSRBCCGEEEIIYUSSBCGEEEIIIYQRs/IOoCR0Oh2XL1/GxsYGRVHKOxwhhBBlTK/Xk5KSgoeHByYm8vxKCCHK2yORJFy+fBlvb+/yDkMIIcQDduHCBby8vMo7DCGEeOI9EkmCjY0NkPfHw9bWtpyjEUIIUdaSk5Px9vY2fN8LIYQoX49EkpDfxMjW1laSBCGEeIxJk1IhhKgYpOGnEEIIIYQQwogkCUIIIYQQQggjkiQIIYQQQgghjEiSIIQQQgghhDAiSYIQQgghhBDCSKmShLCwMOrUqWMYZSg4OJg//vijyPI5OTmMGTOGKlWqYGlpSd26ddm4ceN9By2EEEIIIYR4cEqVJHh5eTFhwgT27dvH3r17ef755wkJCeHYsWOFlv/qq6+YOXMmP/zwA8ePH+f999+nc+fOHDhwoEyCF0IIIYQQQpQ9Ra/X6+9nB46OjkycOJE+ffoUWOfh4cGXX37Jhx9+aFj2yiuvoFarWbhwYYmPkZycjJ2dHUlJSTJPghBCPIbke14IISqWe55MTavV8ttvv5GWlkZwcHChZbKysrC0tDRaplar2bFjR7H7zsrKIisry/A6OTn5XsMUQgghhBBClFKpOy4fOXIEjUaDSqXi/fffZ/Xq1dSoUaPQsm3btmXKlCmcPn0anU7H5s2bWbVqFfHx8cUeY/z48djZ2Rl+vL29SxumEEIIIYQQ4h6VurlRdnY2cXFxJCUlsWLFCmbPnk1kZGShicL169fp27cv//vf/1AUhSpVqtC6dWvmzp1LRkZGkccorCbB29tbqqGFEOIxJc2NhBCiYrnvPgmtW7emSpUqzJw5s8gymZmZ3Lx5Ew8PD4YNG8b69euL7OxcGPnjIYQQjzf5nhdCiIrlvudJ0Ol0Rk/9C2NpaYmnpye5ubmsXLmSkJCQ+z2sEEIIIYQQ4gEpVcflzz//nPbt2+Pj40NKSgqLFy8mIiKCTZs2AdCjRw88PT0ZP348ALt27eLSpUvUq1ePS5cuMWrUKHQ6HZ999lnZvxMhhBBCCCFEmShVknDt2jV69OhBfHw8dnZ21KlTh02bNtGmTRsA4uLiMDH5r3IiMzOTr776irNnz6LRaOjQoQO//vor9vb2ZfomhBBCCCGEEGXnvvskPAzSVlUIIR5v8j0vhBAVy333SRBCCCGEEEI8XiRJEEIIIYQQQhiRJEEIIYQQQghhRJIEIYQQQgghhBFJEoQQQgghhBBGJEkQQgghhBBCGJEkQQghhBBCCGFEkgQhhBBCCCGEEUkShBBCCCGEEEYkSRBCCCGEEEIYkSRBCCGEEEIIYcSsvAMojX9jbmKtyS7vMIQQQpQxlT6zvEMQQghxm0cqSfA6v5p9qsZEZ9iXdyhCCCHKkL+dUt4hCCGEuM0jlSScsM2kR9oKbmq8+Zda/JPqgR75wyKEEEIIIURZeqSShL26FJxcKtPi+nle4gLPWzlwwKwuf6X6kq57pN6KEEIIIYQQFdYjd2cdqU/B1NmHZ67HYZVzi2Y5ETxtbslJy9psSq/G9Rx1eYcohBBCCCHEI+2RSxIA/iKV425etMnIwj/5Oma6TGqm7yFI2c9F22pE5NSUfgtCCCGEEELco0cySQC4ok3nVwuoVsmHNkmJOGcmY6LX4pMRTQ+iSdB48S+1iZJ+C0IIIYQQQpTKI5sk5DulTeWMxpyadpV5NjkRl4wkAByzLvIiF3neyp5DZnXYmuZHqta8nKMVQgghhBCi4nvkkwQAHXqOaFM4am1GddvKPJeSjFv6LQDUOYk0yfmbRmY7ibGuwdbM6lzI1pRzxEIIIYQQQlRcj0WSkE+PnmhtCtFWCn42PgRnZBKQfA0AM102gRkHqcYhrtn48Y+uBnvSKklTJCGEEEIIIe7wWCUJtzunTeWcBbi6etIkF2rduoK5XouCnkqZZ+nMWV6wcuSgWR22pVYmTSdNkYQQQgghhIDHOEnId02XwToT2OzsREMsaZR0A7vsdACscxL+fwhVC86pgtiWVZ1zWTblHLEQQgghhBDl67FPEvJl6HPZQSr/2KoJNHWhcXoafik3gLymSAEZhwjgEDdsfNitr8E/qR5oMSnnqIUQQgghhHj4npgkIZ8uv9+CClzUnjTSKtRNvIpKmwOAc2YcHYijlVrDSYuabE2vyjWZoE0IIYQQQjxBnrgk4XbXdRn8ocBWR3tqKVY0TE3G4/9HRVLlplIndxe12cNVGz9266qzM81NOjoLIYQQQojH3hOdJOTL1mvZr09hv5WCu8aLBlqo/f+1Cwo63DJjeJkYXlDbcsK8Jtsy/KV2QQghhBBCPLYkSbhDvC6dDQr86WBPDRMrGqan4p16EwDL3GTq5f5LXXZy3caXvfpA/k1zJ1dvWs5RCyGEEEIIUXZK1TM3LCyMOnXqYGtri62tLcHBwfzxxx/FbvP9998TGBiIWq3G29ubwYMHk5mZeV9BPww5aDmkS2GupZ4Zrh7scPYh2SKv9kBBj2vmOTpkbWS4ajk97fYTYJlUzhELIYQQQghRNkpVk+Dl5cWECRMICAhAr9cTHh5OSEgIBw4coGbNmgXKL168mGHDhjF37lyaNm3KqVOn6NWrF4qiMGXKlDJ7Ew/aTV0mW4Fttlb4m7pQNyuHwKRrmOu1WGjTqJ6+n+rsJ9m6EkdMg9iR5k2iVlXeYQshhBBCCHFPSpUkdOzY0ej1uHHjCAsLY+fOnYUmCf/88w/NmjWje/fuAPj6+vLGG2+wa9eu+wi5/OjQc0abyhkzsHR2IkhRUzc9DZ+UGygK2GZfpRlXCTY15aqVHwf0VdmV5k62NEcSQgghhBCPkHvuk6DVavntt99IS0sjODi40DJNmzZl4cKF7N69m6eeeoqzZ8/y+++/89ZbbxW776ysLLKysgyvk5OT7zXMByZTn8sBfQoHLMHeyp2aegtqpyZRKSMRE70W98wzuHOGFywsiVNVZV+uPwfSXWR0JCGEEEIIUeGVOkk4cuQIwcHBZGZmotFoWL16NTVq1Ci0bPfu3blx4wbPPPMMer2e3Nxc3n//fb744otijzF+/HhGjx5d2tDKTaIuiyiyiLI2wdXWk5paE2ql3MIxKxUzXSb+GUfx5ygvq204a16NPTm+RGc4lHfYQgghhBBCFErR6/X60myQnZ1NXFwcSUlJrFixgtmzZxMZGVloohAREUG3bt34+uuvefrppzlz5gwDBw6kb9++DB8+vMhjFFaT4O3tzbDNw7C0tixNuOXKw8SKmlqFGikJ2GenGa3LMLfnjFkAe7MrcyrTvnwCFEKICsLfTuHd1rVJSkrC1ta2vMMRQognXqmThDu1bt2aKlWqMHPmzALrnn32WZo0acLEiRMNyxYuXMi7775LamoqJiYlG1wpOTkZOzu7Ry5JuJ2nqRVBWoUaKbdwyEo1Wpdu7shZM3/25/gSnWFfPgEKIUQ5kiRBCCEqlvueJ0Gn0xk99b9denp6gUTA1DSvE+995iaPnEvadC4BW2wsqGTnSZDelMC0ZNzSE7HKSaBWTgK12EuG2o7zFlU4lOPNkXQntKUbpVYIIYQQQoj7Vqok4fPPP6d9+/b4+PiQkpLC4sWLiYiIYNOmTQD06NEDT09Pxo8fD+SNhjRlyhTq169vaG40fPhwOnbsaEgWnkRXdRlcBSKsTHDQeFBNb0ZgZjqVU26izk2iem7ekKqdLa25ZOHHMZ03B9Irka6Tue+EEEIIIcSDV6q7zmvXrtGjRw/i4+Oxs7OjTp06bNq0iTZt2gAQFxdnVHPw1VdfoSgKX331FZcuXcLFxYWOHTsybty4sn0Xj7Bbukx2AbtUYGnpQoCJmoDsHKqk3MQqNw2/jKP4cZT2ZmbcUPlwWqnMvkx3rmRblXfoQgghhBDiMXXffRIehsehT0JpmaDgZWpFVa1C1fRk3NISUW4bPTXVwoXzZr4cy/HkSIYDuTIXgxDiESZ9EoQQomJ5pNqv3Dx/E88anuUdxkOhQ0+cNo044C8rEzTWlfBXLKmSk4N/agKa7OvUzL5OTfbQxcKC6xY+xCjeHM6sxIVsTXmHL4QQQgghHmGPVE2CxklDn1l9cHB/sucYUFBwNbHEHzP8MjOonJqAhS7XsD7DzI7L5j6c0XlyONOZhNwno/ZFCPHokpoEIYSoWB6pJAHAwcOBt8PextZF/ojkM0XBw9QKP50JlbPS8U5JwFyvBUCPQqqFC5dNPTmtdedwpgspWvNyjlgIIYxJkiCEEBXLI5Uk+Pr6Ehsbi4ufCz1/6InGUZrVFMYUEzxN1VTWmeCTlYF32i1U2hzg9qTBgxidG8ezXLiZoyrniIUQTzpJEoQQomJ5pJKEQ4cO0b59ey5fvozaVk2r91vRqFOj8g6vwjNBoZKJGh9M8c7Owjs9CdvsDMP6dHNHrpp5cF5fiVPZzsRmadCjFLNHIYQoW5IkCCFExfJIdVz29fVl69atvPrqqxw7dgxulXdEjwYdeuJ16cQDu8wAWzW2ih3eJio8c7V4ZaXjnXYcP/1RWgC5KktuWrgTr7hxTutEdKaTNFESQgghhHiCPFI1CflPmHJzc5k/fz6vv/46F7IvsOX8Fg7tOURmaiYBwQEoijwFLy1TFCqZqvHQm+KZm4tHRiou6UkoSl4TpXRzB26YuXEZZ87lOnEmw44M/SOVYwohKjCpSRBCiIrlkUwS7pSrzaXB0w04su8I7tXdad6rOdWeqWY0sZsoPQvFlEomlnjoTXDLycEjMw3njGRM0KPHhFQLZ26aOhOvdyY215GYLDvSdFLjIIQoPUkShBCiYnksHgXrtDpeaPECMdExxJ+IZ+mwpTj7OtP0jabUfqE25iq5cb0X2XotF7RpXAAwBaxNMbN2wtXUEje9KW5aHa5Z16ifcYZgbTZ6U4UMlR23zFy4pjhzSevAuWw74nOspI+DEEIIIcQj5LGoSch3/fp1pk6dyo8//khycjIA1o7WtPmwDfXa13tI0T6Z7E1UuCoWuOqgUk42rlnpOGWkYIqOXBMLUsxdSDBx4ioOXMq1IzbbVuZvEEIYSE2CEEJULI9VknB7+V9++YXvv/+eixcvMmjqIByfdkSHDr1eL30WHhITFJxMLHFWzHDVgUtuNs6Z6ThlpmCm15FjqibFzIkEE0euY098ri0Xcmy5mqOWmgchnjCSJAghRMXyWCYJ+XJycli9ejVdunQhTZvGnit7mDJxCid2neCpV56iWrNqmJqZPsDIRWFMULA3UeGsmOGsAxetFqfsDJwz01DnZqFVzEkzdyTZ1IEEbLmms+ey1oaL2RoZZUmIx5QkCUIIUbE81knCnXQ6HVWqVCE2NhYAu0p2NOrciAYdG2DtYF1G0Yr7Ya2Y42yiwkmv4KTV4ZSbg3NWGg6ZqZigJ8dETaq5I0kmdtzCjus6G65obbicbU2S1qK8wxdC3CNJEoQQomJ5opIEgPPnz/Pzzz/zyy+/cPPmTQBMzU2p0bIGjV9pjE9tn7IIWZQxU0xwNFHhpJjirFNwys3FOTsdl8xUw2zSuSaWpJnZk2Jqzy3Flps6G67laojXWnM1W5owCVGRSZIghBAVyxOXJOTLzMxk2bJlzJgxg7179wLQ+KXGvPjFi2Wyf/Hw2CgWuJhY4KJXcM7NxTU7E5fMVNS5WYYyOsWUDDM7Uk3tSVRsScCW61obLudYE59jTbZemp0JUZ4kSRBCiIrliU0Sbrd3715mzpzJO++8g32APfuv7Wf7ru1ELY2iYUhDfOr4SGfnR5CtYkElxYJKegW3nGw8MlJwyEotUE6PQqaZLalmDtxS7LmBHVe1NsRlSydqIR4WSRKEEKJikSShCH3e7cPcX+YC4FzZmfov1adu+7poHDUP5fjiwbBUzHA3scRTp+CVnYV32i2sbqtxuFN+J+pbpk5cx4GL/z/3w7Uc9UOMWojHnyQJQghRsUiSUIQ9e/bw888/s3TpUtLT0wEwMTWhWrNq1HuxHtWaVsPEVGZ0fhw4mVhSGXP8srPxTbuFJifzrttkm1qTaO7CVcWFOJ0zJ7McuS6JgxD3TJIEIYSoWCRJKMGxly1bxty5c9m5cycAdi52DFw1UJKEx5SLiRp/vSnVMjPxSb2BmV5Xou0yzGy5Ye5BHG4cy3TlXLbc6AhRUpIkCCFExSJJQikcO3aMefPm4erqSo8Pe3Dw+kEOxR9i5oCZVG1SldptamPrIn/cHicWiil+JlZUz86hWsrNYpsm3Snb1JqrFt7E6D3Zm+nBzRzVA4xUiEebJAlCCFGxSJJwnzb8voGXXnwJAEVR8GvkR+0XahPUPAhLjWU5RyfKkgkKlU2tCcrRUSP5Bta5d2+WlE+PQoqFK+dNfTmQ40V0hsMDjFSIR48kCUIIUbFIknCfbt26xfLly/n111+JiooyLDezMCOgaQDN326OW4BbOUYoHgQTFHxNrKmVq6V68g2j4VZLItPMlvPmVTiQW5nD6U4ygpJ44kmSIIQQFYskCWXo7NmzLFq0iCVLlhAdHQ3AiGUjMPHO67uQmpCKylqFucq8PMMUZcwUE6qZWlMrK4tqSddK3IchX5aZhljzquzL9eNouqMkDOKJJEmCEEJULJIkPAB6vZ7Dhw/zxx9/MHToUJKykjh+8zifvP8JB7YdoFqzatRoWYOqTapKwvCYsVTMqK6oqZ2RgW/KdUwo3a9XppktZ80D2JvjR3SG/YMJUogKSJIEIYSoWCRJeEj0ej21atXi+PHjhmUWagsCmgZQ/bnqBAQHSB+Gx4xGMaeGYkmt9FS8Um5S2vn40s0diTELYFdWZWKyHs3PvRAlJUmCEEJULJIkPEQ6nY6dO3eycuVKVqxYQVxcnGGdR3UP3p37bjlGJx4kG8WCIEVFUHoqle8hYUgzd+SsWQB7sn04nWn3YIIUohxJkiCEEBWLJAnlRK/Xs3fvXlatWsXq1at55bVXeO2j1ziRcILo+GjmDphL1SZVCWwWiFs1N5TS3lWKCstKMaeqiSUBWdlUSU0odafnDHN74sz8OJzrzaF0Z7TIfB3i0SdJghBCVCySJFQQOTk5mJvn9U/4beVvdH21q2GdjbMNAcEBBDQNwL+RPyprGW//cWGCgoepFb46E/wyM/BOvYm5Xlvi7XNNVFxT+XBW78mRrErEZds8wGiFeHAkSRBCiIqlVElCWFgYYWFhxMbGAlCzZk1GjBhB+/btCy3fokULIiMjCyzv0KEDGzZsKHGQT0KScLsbN26wbt061q1bx+bNm0lPTzesMzUz5ZUxr1CjRY1yjFA8KKaY4GZqiZfeFM/sbLwyUnDISi3x9plmtlz//1mfT2U7E5NpKzUN4pEgSYIQQlQspUoS/ve//2FqakpAQAB6vZ7w8HAmTpzIgQMHqFmzZoHyCQkJZGdnG17fvHmTunXrMnv2bHr16lXiIJ+0JOF2mZmZ/P333/z+++9s2LCBM2fO8Pvu38l2yCYmKYao/0Vx+t/TVHmqCv6N/WXG58eQpWKGq4mKSnoTKuVqcc7OxCkrFU3O3SdzyzWxIMXchesmLlzWOxGX68D5LA3pOrOHELkQJSdJghBCVCz33dzI0dGRiRMn0qdPn7uW/f777xkxYgTx8fFYW1uX+BhPcpJwp3PnzuHn52d4/WLIi/y+7nfDa2dfZ/wa+uHfyJ/K9StjZWtVHmGKh8BSMcPJxAIHTLHXgb02F4fcbGyzs7DLTsdcl1vodnoUssxsSDZzIsHEgQS9Dde1NlzJtSY+x4osnelDfidCSJIghBAVzT0/TtRqtfz222+kpaURHBxcom3mzJlDt27d7pogZGVlkZX1X2fO5OTkew3zsXN7ggDw5dAvqVerHps3b2bv3r3ciL3Bjdgb7Fm5B1NzU4b9OcwwF4M2V4upmdwAPi4y9blc0uZyKX+BCWABWJgBtqgVM2wVc2wUUzR6BY0ebHRarHVarHNzsM5NwCf7MoE5Wf+NtmQK2RZWZJjZkmZiQyrWpGJFkl5Nok5NotaSW1oVCTkqacYkhBBCPMZKXZNw5MgRgoODyczMRKPRsHjxYjp06HDX7Xbv3s3TTz/Nrl27eOqpp4otO2rUKEaPHl1guTxhKl5CQgKRkZFs3bqVv/76Czs7Oxb9sYjY5FjOJ59nRLcRZGdmU7luZXzq+lC5XmVpniQwQUGtmGGlmGGlmGKFgloPakCt06HW6lDrtKh1uVhqc1Frc1DlZGGqmJNtoibLRE2moibTRE0GlmToLUjVqUhDRZpORarOnCStBalac2nmJIokNQlCCFGxlDpJyM7OJi4ujqSkJFasWMHs2bOJjIykRo3iO9K+9957/Pvvvxw+fPiuxyisJsHb21v+eJRSRkYGarUagNTUVOzt7dFqjUfOsXe3x7u2NwFNA6jzQp3yCFM8okxQUCmmWCpmqFBQK6aoUFABlnpQ6UGl12Gh02Gp06HS6zDT6THRm2KCKSZ6U/R6UxS9GdlYkImKbMzJwIJMnVnev3ozMvTmZGjNSNOZk6EzJV1nRrZeasQeN5IkCCFExVLqx3oWFhZUrVoVgIYNG7Jnzx6mTZvGzJkzi9wmLS2NpUuXMmbMmBIdQ6VSoVLJMJ/3Kz9BANBoNFy6dIkdO3awfft2tm/fzsGDB0mMTyQxPhFbc1tsX7IlOTsZnU5H5NxIPKp74FnDE42jphzfhaiodOjJ0OeSoS+874OByf//GBiXV1AwV0ywwARzxRQLw2sFMxQsAGs9uAOmgJlejykKCnkJhg4TFMzQ603RY4IOU3R6U/Q6U3SYoNObotXnLdPpTdDqTcj9/391ehO0OhO0KGj1pmi1yv8vV9BiQq5eIUdvilavkKtX0P7/ciGEEOJxd991/zqdzuipf2F+++03srKyePPNN+/3cOI+VKpUiVdeeYVXXnkFyKuh2bVrF//88w/169fn5YYvk5SVxPYD2xkz97+Ezs7NDs8annjW8MSjugfuge5YWluW19sQjxk9erL1WrLRgj7n3nek3PH/93kvr6D8/27+P1lRFExRMEFBUUzI+09BwQRTxQSz/19ihglmKJhjgrkezDBBpVew0Onzald0YKnVodZqsdDr0WKKFlOyMUOLGTmYkak3JxNzMvUWpOvNSNGpSNZakJhrQZrO/P7emBBCCFECpUoSPv/8c9q3b4+Pjw8pKSksXryYiIgINm3aBECPHj3w9PRk/PjxRtvNmTOHTp064eTkVHaRi/tma2tLmzZtaNOmjWGZncqOao7V6N27Nzt37iQ6OpqkK0kkXUni+F/HAWj+dnNa9m0JQGZqJldOX8EtwA1LjSQO4vGhR4+evBqT/19w+8rSU/gvefn/b14zTLA2McdWMcNOb4KdHux1WlxysnDOTMU2O8N4H6agMzMly8yGDBMNaSYakpX/H51KZ8vFHBtu5kgtrBBCiPtXqiTh2rVr9OjRg/j4eOzs7KhTpw6bNm0y3GTGxcVhYmL8+O7kyZPs2LGDP//8s+yiFg9UtWrVmDNnDpBX27Bv3z527drF3r172bt3LwNeHkDjWo2JT41n3f/WMf/D+QA4eDrgXs0dtwA33Kq54Rbgho2zDYqiFHM0IZ5cuehI0mWRRBYX8hcq/P8oVWpUaHA2VeGmN8UjV4tHZhou6UmocxJRk4hjIfvMsbTilnklriqunNc6cizTmUStJA5CCCFK577nSXgYZJ6EikWv1xtu/JctW8bQoUM5f/58oWVfGf0KtdvUBiD5ejKpCam4+LoYhmUVQpSOOaZ4m6jx0+nxy0jFPS0Rk2KqNvQoJFlU4oJpZY7kenA03RE9FS9xl47LQghRsUiSIMrEjRs3OHjwoOHnwIEDnDhxgshdkTj5OXE1/Spzf5zLr9/+iompCY5ejrhWcaVSlUq4+rviWsUVBw+HAjVRQojiWSnmVFcsqZGZgV/y9WITBoBMM1tOmwexPdOPC9kVZ1CCh50kZGdnc/78+QIjvgkhxOPKxMQEd3d3bGxsSlRekgTxwGRkZGBhYYGpad5wlRMmTGDixIkkJCQUWr7v7L541vAEIP5UPKkJqbj6u2LrYitNloQoAbViRi1FzVMpt3DOuPsklDdV3mzX12VXmttDiK54DzNJuHjxIt27dyc9Pf2BHkcIISqizp078/nnn9/1wawkCeKh0uv1xMfHc/jwYY4cOcLRo0c5cuQIJ06c4Nylc6SZpHEt/Rpjhozhj8V/AKDSqPJqG2778a7ljZmFTMwlRGEUFPxMrXkqM4tqiVe5W459S+XJFl1D9qe7PpwAC/GwkgSdTsf777/PlStXGDNmDJaWMuCCEOLJkJOTw4EDB/jhhx/o1KkTX375ZbHl5S5LPFSKouDh4YGHhwft2rUzLNdqtYYaB387f56u9jTna5zn5MmTZKVmceHwBS4cNnTt5IuNX+R17gRORp0kIykDtwA3nH2dMTOXj7V4sunRc1abyllzcHPzok1GFv7J14ss75B1ide4RAubyizLasqlbOuHGO3DdePGDfbv38+4ceOoV69eeYcjhBAPVe3aef1Ep0+fzoABA4pteiR3U6JCyE8Q8o0cOZKRI0eSlZXFqVOnOHr0qOHn+vXrjH1hLAmZCVxNu0qvYb3Y+/deAEzMTHD1c8UtwA336u6GCeGkr4N4Ul3RpvOrBVSt5EOb5CRcM5KKLOuSeZ73TeKJtHmOLSm+Dy/IhygxMREALy+v8g1ECCHKSf369QGIj4+XJEE8ulQqFbVr1zZkvrdzVjvjrHbmxZYvYoUVhw4dIikpiSunr3Dl9BUO/n4QtY2aoRuHGraJPRCLtYM1Tj5OkjiIJ8oZbSpnrc14VlOZ567HFdnB2UyXTavMLQTaBrIgrQkp2sdrJDKdTgcUfDAhhBBPCnPzvO/1/O/DokiSIB55o0aNYtSoUej1es6fP28YXWnv3r3Y2Ngw7OlhxKfGcyHlAq91e42rcVdR26mpXLcyletXxreeL5WqVsLEVJIG8XjToSdSn0JsJW8637qBXXbRHXe9Mk4y2OIKc7QdHuvmR0IIIQonSYJ4bCiKgq+vL76+vnTq1Mlona+dL+6W7gT6BpJ8PZmMpAxO/H2CE3+fAEBtp6Zeh3q0/ahtOUQuxMN1XpvKTDsNIdk2BCZdLbKcOjeJd8w2MNeiQ4UaLlU8miIiImjZsiW3bt3C3t7+gR1n1KhRrFmzhoMHDz6wYxRFURRWr15d4G+QEI8iSRLEE0OlUhEZGUl2djb79+8nMjKSyMhIduzYQUpSCh4WHlRzqEZsUiwZ2RlELYwioGkAbgFuMgSreOxk6HNZZq7Q3smbxjcvFFnOMjeZPmbrmad6kfNZJRtb+1H0+aojD/V447sUbEJ5NxcuXGDkyJFs3LiRGzdu4O7uTqdOnRgxYgROTk4PIMqy1bRpU+Lj47Gzs3ugxxkyZAgfffSR4XWvXr1ITExkzZo1D/S4d4qNjcXPz48DBw5IJ3nxSJIkQTxxLCwsaNKkCU2aNGHo0KHk5uaya9cuHBwcqFG9Brm6XJb/sZyxs8by16y/sHOzo0bLGtRqXQuP6h6SMIjHhh49vytp5Dp7E3yj6ERBlZtKb9P1hKte5GyWDENdHs6ePUtwcDDVqlVjyZIl+Pn5cezYMT799FP++OMPdu7ciaOjY3mHWSwLCwvc3Iqek0Or1aIoyn33F9NoNGg0UvMlxP2SRtjiiWdmZkazZs2oUaNG3msTM6q6VKVTp06o1WqSriTx75J/+aXPL0zvOp2tM7eSeCWxfIMWogz9SRo7nH2KLWOhTeMtk43YmOY8pKjE7T788EMsLCz4888/ad68OT4+PrRv354tW7Zw6dIlo/HOfX19GTt2LG+88QbW1tZ4enry448/Gu0vMTGRd955BxcXF2xtbXn++ec5dOiQYf2oUaOoV68ev/76K76+vtjZ2dGtWzdSUlKKjTMrK4uhQ4fi7e2NSqWiatWqzJkzB8hrbqQoimGEqfnz52Nvb8+6deuoUaMGKpWKuLi4YveRv83t1qxZY/TwJj/2/P8PDw9n7dq1KIqCoihEREQUiHvWrFl4eHgU6MgZEhJC7969Da/DwsKoUqUKFhYWBAYG8uuvvxZ5Lvz8/IC8kWQURaFFixYA7NmzhzZt2uDs7IydnR3Nmzdn//79RtueOHGCZ555BktLS2rUqMGWLVtQFMWoNuTChQt07doVe3t7HB0dCQkJITY2tsh4hCgtSRKEKMRTTz3F6tWruXHjBqtWreL111/HysqKW5dusT18O1kJWYayj8B8hELc1VZS+dul+ETBMjeZXtb/PKSIRL6EhAQ2bdpEv379UKvVRuvc3NwIDQ1l2bJlRt9FEydOpG7duhw4cIBhw4YxcOBANm/ebFj/2muvce3aNf744w/27dtHgwYNaNWqFQkJCYYyMTExrFmzhvXr17N+/XoiIyOZMGFCsbH26NGDJUuWMH36dKKjo5k5c2axT/XT09P59ttvmT17NseOHcPV1bXU+yjOkCFD6Nq1K+3atSM+Pp74+HiaNm1aoNxrr73GzZs32bZtm2FZQkICGzduJDQ0FIDVq1czcOBAPvnkE44ePcp7773H22+/bbTN7Xbv3g3Ali1biI+PZ9WqVQCkpKTQs2dPduzYwc6dOwkICKBDhw6GBEyr1dKpUyesrKzYtWsXs2bNKjDpVU5ODm3btsXGxobt27cTFRWFRqOhXbt2ZGdn39O5EuJO0txIiGJYWVnRuXNnOnfuTFpaGuvXr2fr1q1M6zWNM4lnOHT9ENNGTiPpWhL1XqxH1aerYmomQyuKR9M2fSqu9m5UT7xSZBmPjNO8ZOvJ+uSqDzGyJ9vp06fR6/UEBQUVuj4oKIhbt25x/fp1XF3zZs1u1qwZw4YNA6BatWpERUUxdepU2rRpw44dO9i9ezfXrl1DpVIBMGnSJNasWcOKFSt49913gbzhEefPn28YR/2tt95i69atjBs3rtA4Tp06xfLly9m8eTOtW7cGwN/fv9j3lpOTw08//UTdunXveR/F0Wg0qNVqsrKyim3q5ODgQPv27Vm8eDGtWrUCYMWKFTg7O9OyZUsg7xz16tWLfv36AfDxxx+zc+dOJk2aZChzOxcXFwCcnJyMjv38888blZs1axb29vZERkby0ksvsXnzZmJiYoiIiDBsN27cONq0aWPYZtmyZeh0OmbPnm2oRZk3bx729vZERETwwgsvlPpcCXEnqUkQooSsra15/fXXmTVrFuam5gQ5BdHFvwsnN58kOiKaJZ8uYWrnqfz5459cO3etvMMV4p6sNddxS1X8U9vgzO1Us0x8OAEJg9LUWgYHBxd4HR0dDcChQ4dITU3FycnJ0H5fo9Fw7tw5YmJiDNv4+voaTbTk7u7OtWt5322LFi0y2nb79u0cPHgQU1NTmjdvXuI4LSwsqFOnjuH1veyjrISGhrJy5UqysvJqihctWkS3bt0MfSSio6Np1qyZ0TbNmjUznNeSunr1Kn379iUgIAA7OztsbW1JTU0lLi4OgJMnT+Lt7W2UWDz11FNG+zh06BBnzpzBxsbGcA0cHR3JzMw0uoZC3A+pSRDiPlhYWBAZGcm8efNYuHAh169f559F//DPon/wCPKgyetNqPNCnbvvSIgKIlOfywp7e96+lo6ZvvCJdkz0Wl43+YvJJi+TrpM/Iw9a1apVURSF6OhoOnfuXGB9dHQ0Dg4OhifXd5Oamoq7u3uhbfNvb++fP+FSPkVRDG32X375ZZ5++mnDOk9PT7Zs2VKi499OrVYb9Se4sznVnUxMTAokSzk5ZdNPpmPHjuj1ejZs2EDjxo3Zvn07U6dOLZN9365nz57cvHmTadOmUblyZVQqFcHBwaVqJpSamkrDhg1ZtGhRgXUl/RwIcTdSkyDEfapduzZTpkzh4sWLrF69mpCQEMzMzLgcfRltvBaT//810+ZqycmSTp+i4rusTedPF+9iy1jlJPC65uDDCegJ5+TkRJs2bfjpp5/IyMgwWnflyhUWLVrE66+/bnSzvXPnTqNyO3fuNDRXatCgAVeuXMHMzIyqVasa/Tg7O5coJhsbG6Pt1Go1tWvXRqfTERkZec/v9W77cHFxISUlhbS0NMOyu82HYGFhgVarveuxLS0t6dKlC4sWLWLJkiUEBgbSoEEDw/qgoCCioqKMtomKijIMelHYcYECx46KimLAgAF06NCBmjVrolKpuHHjhmF9YGAgFy5c4OrV/+Yw2bNnj9E+GjRowOnTp3F1dS1wDR/0ELPiySFJghBlxMLCgk6dOrFmzRouXbrE999/z6Qhk/i40cd08OtA4qFEJr04iVVjVhEdGU12pnQuExXXHl0Kxxzciy1TNfMInhZpxZYRZWPGjBlkZWXRtm1b/v77by5cuMDGjRtp06YNnp6eBfoJREVF8d1333Hq1Cl+/PFHfvvtNwYOHAhA69atCQ4OplOnTvz555/Exsbyzz//8OWXX7J37957jtHX15eePXvSu3dv1qxZw7lz54iIiGD58uVlto+nn34aKysrvvjiC2JiYli8eDHz58+/6z4PHz7MyZMnuXHjRrE1D6GhoWzYsIG5c+caOizn+/TTT5k/fz5hYWGcPn2aKVOmsGrVKoYMGVLovlxdXVGr1WzcuJGrV6+SlJQEQEBAAL/++ivR0dHs2rWL0NBQoxqUNm3aUKVKFXr27Mnhw4eJioriq6++AjAkgqGhoTg7OxMSEsL27dsN52nAgAFcvHix+JMsRAlJkiDEA+Dq6srAgQOpWrUq1ubWNHZrjDZaS1Z6Foc3HmbZ58uY2GEiy75YxqE/DpGakFreIQtRwB9mOrJMzYtcb6LX0tHyUJHrRdkJCAhg7969+Pv707VrV6pUqcK7775Ly5Yt+ffffwvMkfDJJ5+wd+9e6tevz9dff82UKVNo2zZvRnlFUfj999957rnnePvtt6lWrRrdunXj/PnzVKpU6b7iDAsL49VXX6Vfv35Ur16dvn37Gj31v999ODo6snDhQn7//Xdq167NkiVLGDVqVLH769u3L4GBgTRq1AgXF5cCtQG3e/7553F0dOTkyZN0797daF2nTp2YNm0akyZNombNmsycOZN58+YZhja9k5mZGdOnT2fmzJl4eHgQEhICwJw5c7h16xYNGjTgrbfeYsCAAYYO5wCmpqasWbOG1NRUGjduzDvvvGMY3cjS0hLIG1Tj77//xsfHhy5duhAUFESfPn3IzMzE1lbmMhFlQ9E/AuM3JicnY2dnR1JSknz4xSNLp9Px77//snLlSlatWsX58+cN6xRF4eN1H2PjlNdJUK/Xy6RtokJ4RrGh1fXzRa7XozDH5DVi7nOSNX87hXdb137g3/MnTpzgzTffZOHChVSvXv2BHac8+fr6MmjQIAYNGlTeoYgyEhUVxTPPPMOZM2eoUqVKeYcjHnEl/R6UHmdCPCQmJiY0a9aMZs2aMXnyZA4cOMCqVav4/fffycrO4r1m7xGTGMO5pHNM+2gamamZVK5XGe/a3ngEeWBtb13eb0E8gXbq02hkYYVddnqh6xX0vGSxj2lZBYeAFELcm9WrV6PRaAgICODMmTMMHDiQZs2aSYIgHipJEoQoB4qi0KBBAxo0aMDXX39NRkYGarWaAIcAcnNz+fTAp6SlpXH+4H9PcB08HPCs4YlvA18adWpUjtGLJ0kuOiLsXQi5VnRtgltmDLWt6nAk3ekhRibE4yslJYWhQ4cSFxeHs7MzrVu3ZvLkyeUdlnjCSJIgRAVwe6c1U1NTDhw4QGRkJH///Te7d+/m5MmT3Lp8i1uXb6HKUeH5pifX06+TrctmyWdLsHGxwcXXBWdfZ5y8nLCtZGsY21uI+3VIl8rTVva4pScWWaatyV6O0PbhBSWKFBsbW94hiPvUo0cPevToUd5hiCecJAlCVDCKohAQEEBAQADvvPMOAImJiezdu5fdu3fj6+tL99rd0ev1nL54mlE7RhXYh6mFKQ4eDtRuU5vmb/83KdG1c9ewq2SHykr1sN6OeAzo0bPFxpY3i0kSnLIu0ND6GvvSXIssI4QQ4tEhSYIQjwB7e3tat25N69atDcsURcHd3p3w8HCio6OJjo7mxIkTnD17lpzsHG7E3qCSrhItvFqQmJXIxasXGRU6CgC1rRp7d3vsKtlhV8kO20q2eNX0onLdyuX0DkVFF6NNJcbWlSrJRc8mHmx6gn1IkiCEEI8DSRKEeITZ2NgUqJLOzc3lwoULnD59mkqVKlHXuy4A0TnR2Nvbk5iYSEZyBhnJGcSfjDds16Z7Gxo3aUxydjIJCQmEvRWGjYsNti62Rv/aONvg7OOMXSWZsOdJs8NSRZXkote7Z8ZgZ9qEJK3FwwtKCCHEAyFJghCPGTMzM/z8/PDz8zNaHhQUxK1bt0hOTub8+fOGnwsXLnDhwgVefPFFutfLGxd87/69fHfjO1JupHA5+nKBYzzz+jO8MPAFdOhIT0pn2efL0DhpsHG2yfvXyQaNc96/tq62WGosH8p7Fw/WeV06Ny1tcMpMKXS9iV7Ls9ZxrE+u+pAjE0IIUdYkSRDiCWNra0vt2rWpXbt2kWVqBtVkz549XLp0iYsXL3Lp0iUuXbrE5cuXuXz5Mq81fY2PmnxEWk4au/bv4ruD3xW5r+CuwbQdlNehNS0xjbXfrEXjqEHjqMHa0TrvX4e8f22cbVBZS3+JikqPngO2jrQuIkkAqKWNZj2SJAghxKNOkgQhRAFqtZpGjRrRqFHxQ61qLDTUr1afpUuXcvnyZeLj441+rly5QkiDED5qlJdQ7N6/m4k7Jha5v6bdmvLCgBcASE1IZc3Xa7Cyt8La3jrvXwdrw2t7D3vD5HPi4Tmoz6QlJpiiK3S9XfZVqqiS73tyNSGEEOWrVElCWFgYYWFhhuHVatasyYgRI2jfvn2R2yQmJvLll1+yatUqEhISqFy5Mt9//z0dOnS4r8CFEBWDo6Mjr7/+epHr82ePtjK3onG1xsycOZOrV69y5coVo3+vXr3KS3VeYmCjgaTnprN7724m7ZxU5H6bhzandf/WaPVakq8n8+ugX7Gys0Jtp8bKzirv/23VqO3UuAW44RHoAeTNfK3T6jAzl2ck9yJNn8NJe1dqJF4pskwz1Rlisho8xKhEWYqNjcXPz48DBw5Qr169u5bv1asXiYmJrFmz5oHHJqBFixbUq1eP77//vrxDEbcp7e9BaX/PykOp/kp6eXkxYcIEAgIC0Ov1hIeHExISwoEDB6hZs2aB8tnZ2bRp0wZXV1dWrFiBp6cn58+fx97evqziF0JUcIqiGP7f1dWVd999t8iyRglF9cbMmzePa9euce3aNa5fv87169e5ceMG169fJ6RhCIObDCYzN5Nd+3Yx5dyUIvfbrmc7GtRvQEZuBvEX4/mu03eYq82xsv3/RCL/x05NlaeqUKNFDQC0uVouR1/Gyj4v6bC0sTR6P0+qfRYW1ChmfZXsk5hSDy2P0Fwd/xv4cI/XcVqpivfq1Yvw8HAAzM3N8fHxoUePHnzxxReYmd17wlvYjY23tzfx8fE4Ozvf836fRGV90xcREUHLli25deuW0X3TqlWrMDc3v+/9P+58fX0ZNGgQgwYNKtP9FnWdp02bhl6vL9NjlbdSfbN07NjR6PW4ceMICwtj586dhSYJc+fOJSEhgX/++cfwgfb19b33aIUQj7Xbb8BdXFzo1avXXbexNLOkQY0GbNmyhZs3b3Ljxg1u3LhBQkICN2/eJCEhgdeff50edfNGgTpoepDv+I6cjBySMpJIuppktD9/V38aVmpIek46Fy9cZOx7Yw3rTExN8hIGeys0jhpqtKxhmP1am6sl7lCcYSQoC/XjO8LPOV0at1QaHLJSC11voU3jKc1V/k11f8iRPd7atWvHvHnzyMrK4vfff+fDDz/E3Nyczz//vNT70mq1RSa8pqamuLm53W+4ogjZ2dlYWNz794Ojo2MZRlOx5OTkPLIJkJ3d4zfi3z0/5tFqtSxdupS0tDSCg4MLLbNu3TqCg4P58MMPqVSpErVq1eKbb75Bq9UWu++srCySk5ONfoQQoig2Nja0atWKrl270q9fP0aMGMH333/Pr7/+yoYNG4yGia1Tpw43b97kzJkz7N69mz/++IOFCxfyww8/MGrUKPq+2peX/F+ia2BXXvR+ET8/P2xs8vo+6LQ6Um+mci3mGmf3nMUh1YEWXi1oWKkhlXIrEf5RODO6zeCbVt/wbftv+bnXzywdtpSN0zZyeufp8jo9ZU6Pnv22xd+oNFROPaRonhwqlQo3NzcqV67MBx98QOvWrVm3bh0AU6ZMoXbt2lhbW+Pt7U2/fv1ITf0viZs/fz729vasW7eOGjVqoFKp6N27N+Hh4axduxZFUVAUhYiICGJjY1EUhYMHDxq2P3bsGC+99BK2trbY2Njw7LPPEhMTU2icOp2O8ePH4+fnh1qtpm7duqxYsaLY95aVlcXQoUPx9vZGpVJRtWpV5syZY1gfGRnJU089hUqlwt3dnWHDhpGbm2tY36JFCwYMGMBnn32Go6Mjbm5ujBo1yugYiYmJvPfee1SqVAlLS0tq1arF+vXrDet37NjBs88+i1qtxtvbmwEDBpCWlmZY7+vryzfffEPv3r2xsbHBx8eHWbNmGdbnjyhXv359FEWhRYsWQF5tTadOnRg3bhweHh4EBgYC8Ouvv9KoUSNsbGxwc3Oje/fuXLuWNw9JbGwsLVu2BMDBwQFFUQwPTVq0aGH0dPzWrVv06NEDBwcHrKysaN++PadP//d9k3/tN23aRFBQEBqNhnbt2hEf/98Q2IUp7pzPmjULDw8PdDrjvkkhISH07t3b8Hrt2rU0aNAAS0tL/P39GT16tNF1UxSFsLAwXn75ZaytrRk3bhwREREoisKGDRuoU6cOlpaWNGnShKNHjxoda+XKldSsWROVSoWvry+TJ082rGvRogXnz59n8ODBhs92vgd9nfNt3LiRZ555Bnt7e5ycnHjppZeK/J2pqEqdJBw5cgSNRoNKpeL9999n9erV1KhReMXz2bNnWbFiBVqtlt9//53hw4czefJkvv7662KPMX78eOzs7Aw/3t7epQ1TCCEKZWJigqOjI1WqVKFx48a0a9eO0NBQ+vfvz8iRI2nTpo2hbGBgIGfPniU5OZmMjAwuXrzIgQMH2LRpEwsWLGDA2wNo7t2cl/xf4nm35wkMDESj0QCQkZTBlVNXOPH3CXYu20na8TS8NF5YmVmRdiuNsJ5hrBi5gsh5kZyMOknKjaJHDKqIDinZ6Ci66ZV71lnsTbMeYkRPHrVaTXZ2NpD3uZ4+fTrHjh0jPDycv/76i88++8yofHp6Ot9++y2zZ8/m2LFjTJ8+na5duxpuGOPj42natGmB41y6dInnnnsOlUrFX3/9xb59++jdu7fRzd7txo8fz4IFC/j55585duwYgwcP5s033yQyMrLI99KjRw+WLFnC9OnTiY6OZubMmYbfpUuXLtGhQwcaN27MoUOHCAsLY86cOQXuJcLDw7G2tmbXrl189913jBkzhs2bNwN5iUv79u2Jiopi4cKFHD9+nAkTJmBqagpATEwM7dq145VXXuHw4cMsW7aMHTt20L9/f6NjTJ48mUaNGnHgwAH69evHBx98wMmTJwHYvXs3AFu2bCE+Pp5Vq1YZttu6dSsnT55k8+bNhsQkJyeHsWPHcujQIdasWUNsbKwhEfD29mblypUAnDx5kvj4eKZNK7yJWq9evdi7dy/r1q3j33//Ra/X06FDB3Jycgxl0tPTmTRpEr/++it///03cXFxDBkypMjrcbdz/tprr3Hz5k22bdtm2CYhIYGNGzcSGhoKwPbt2+nRowcDBw7k+PHjzJw5k/nz5zNu3DijY40aNYrOnTtz5MgRowTj008/ZfLkyezZswcXFxc6duxoeE/79u2ja9eudOvWjSNHjjBq1CiGDx/O/PnzgbwmWV5eXowZM8bw2X4Y1/l2aWlpfPzxx+zdu5etW7diYmJC586dCyRWFVmpGzIGBgZy8OBBkpKSWLFiBT179iQyMrLQREGn0+Hq6sqsWbMwNTWlYcOGXLp0iYkTJzJy5Mgij/H555/z8ccfG14nJydLoiCEKFeWlpZ4enri6elZ6PqgoCBOnDgBQFJSEnFxcYa5KM6ePcsLL7xA29p5Q8Fu3LKRiacncvX0VaN9aJw1eFT3oOHLDQl8JvDBvqH7lKLL5rSdK4FJVwtdb6LX0sgqni0pvg83sCeAXq9n69atbNq0iY8++gjA6Mmyr68vX3/9Ne+//z4//fSTYXlOTg4//fQTdevWNSxTq9VkZWUV27zoxx9/xM7OjqVLlxqaglSrVq3QsllZWXzzzTds2bLF0MrA39+fHTt2MHPmTJo3b15gm1OnTrF8+XI2b95smFXe39/fsP6nn37C29ubGTNmoCgK1atX5/LlywwdOpQRI0ZgYpL3vLNOnTqGe4uAgABmzJjB1q1badOmDVu2bGH37t1ER0cbYr/9GOPHjyc0NNRwHgMCApg+fTrNmzcnLCwMS8u8uV46dOhAv379ABg6dChTp05l27ZtBAYG4uLiAoCTk1OB82ltbc3s2bONmhndfkPs7+/P9OnTady4MampqWg0GkOzIldX1yL7cp4+fZp169YRFRVlSPAWLVqEt7c3a9as4bXXXgPyrv3PP/9MlSpVAOjfvz9jxowpdJ8lOecODg60b9+exYsX06pVKwBWrFiBs7OzoQZk9OjRDBs2jJ49exre49ixY/nss8+M7gG7d+/O22+/bXh99uxZAKOHNuHh4Xh5ebF69Wq6du3KlClTaNWqFcOHDwfyPo/Hjx9n4sSJ9OrVC0dHR0xNTQ21NPke9HW+3SuvvGL0eu7cubi4uHD8+HFq1apV5HYVSamTBAsLC6pWzRsDu2HDhuzZs4dp06Yxc+bMAmXd3d0xNzc3ZOqQ94f0ypUrxbbJU6lUqFQyVroQ4tFkZ2dX7FwUTzd8mnXr1nH8+HGOHj3K/v37OXHiBKk3Ujm14xStXmiFs9qZGxk3SLySyOFNhwkIDsAtwK1CdZw+rrKkuFSmqnKZLfg+rHAee+vXr0ej0ZCTk4NOp6N79+6GJjVbtmxh/PjxnDhxguTkZHJzc8nMzCQ9PR0rKysg7+93nTp1Sn3cgwcP8uyzz5aorfiZM2dIT083qpGDvHb49evXL3L/pqamhSYQANHR0QQHBxt99ps1a0ZqaioXL17Ex8cHoMB7c3d3NzTfOXjwIF5eXkUmN4cOHeLw4cMsWrTIsEyv16PT6Th37hxBQUEFjqEoCm5uboZjFKd27doF7nn27dvHqFGjOHToELdu3TI8YY6LiyuyhcadoqOjMTMz4+mnnzYsc3JyIjAwkOjoaMMyKysrQ4IAxuemqP3e7ZyHhobSt29ffvrpJ1QqFYsWLaJbt26GpO3QoUNERUUZ1RxotdoCn8uihtq+vSm7o6Oj0XuKjo4mJCTEqHyzZs34/vvv0Wq1Rvedt3vQ1/l2p0+fZsSIEezatYsbN24YXd/HNkm4k06nIyur8CrlZs2asXjxYnQ6neFDc+rUKdzd3e+r044QQjzKHBwc6Nixo9FgEGlpaRw8eJDdu3fTuXNnfH19SctJY/zU8fw18y/+mvkXGmcNAcEB1Hy+Jn4N/TA1K/wP4cNyVp+JXg9F5S1uOXFAweYr4t60bNmSsLAwLCws8PDwMIxqFBsby0svvcQHH3zAuHHjcHR0ZMeOHfTp04fs7GzDzZharb6nJFOtVpe4bH4/iA0bNhSodSvq4V9p9l+cO5MYRVEMN2Z3O0ZqairvvfceAwYMKLAuPwm52zGKY21tbfQ6LS2Ntm3b0rZtWxYtWoSLiwtxcXG0bdvW0ISsLBUW9/2OxNOxY0f0ej0bNmygcePGbN++nalTpxrWp6amMnr0aLp06VJg2/wn9lDw3DxID/o6365jx45UrlyZX375xdB/o1atWg/k+j4opUoSPv/8c9q3b4+Pjw8pKSksXryYiIgINm3aBOS1KfT09GT8+PEAfPDBB8yYMYOBAwfy0Ucfcfr0ab755ptCL44QQjzJrK2tadasGc2aNftvmbk1zWo34+WXX2bLli2k3kjlwP8OcOB/B7B2sKZmq5o82/PZcptULlWfwxWNPe5piYWuV+Wm4meRzLlsmVitLFhbWxtq8m+3b98+dDodkydPNjyQW758eYn2aWFhcdfBROrUqUN4eHiJRp7J7xQdFxdXZM3AnWrXro1OpyMyMtLQ3Oh2QUFBrFy50jBEMkBUVBQ2NjZ4eXmV6Bh16tTh4sWLnDp1qtDahAYNGnD8+PFCz29J5T/8vNv5BDhx4gQ3b95kwoQJhubUe/fuLfX+goKCyM3NZdeuXYbmRjdv3uTkyZMlro0oar93O+eWlpZ06dKFRYsWcebMGQIDA2nQ4L/5URo0aMDJkyfv+Zzu3LnTcON+69YtTp06ZXjSHxQURFRUlFH5qKgoqlWrZqhFKOyz/bCuc/41+OWXX3j22WeBvA7Tj5pSdVy+du0aPXr0IDAwkFatWrFnzx42bdpkqFaMi4sz6i3v7e3Npk2b2LNnD3Xq1GHAgAEMHDiQYcOGle27EEKIx1T79u1Zu3YtN2/e5M8//+T999/HycmJtFtpHFh3AAdrh3KN77S6+ASltqroSddE2ahatSo5OTn88MMPnD17ll9//ZWff/65RNv6+vpy+PBhTp48yY0bN4w6u+br378/ycnJdOvWjb1793L69Gl+/fVXQ0fO29nY2DBkyBAGDx5MeHg4MTEx7N+/nx9++MEwz0NhMfTs2ZPevXuzZs0azp07R0REhCHR6devHxcuXOCjjz7ixIkTrF27lpEjR/Lxxx8bkqK7ad68Oc899xyvvPIKmzdv5ty5c/zxxx9s3LgRyGt3/s8//9C/f38OHjzI6dOnWbt2bYEOrcVxdXVFrVazceNGrl69SlJSUpFlfXx8sLCwMFyzdevWMXbsWKMylStXRlEU1q9fz/Xr141Gq8oXEBBASEgIffv2ZceOHRw6dIg333wTT0/PAs1xSqOk5zw0NJQNGzYwd+5cQ4flfCNGjGDBggWMHj2aY8eOER0dzdKlS/nqq69KFMOYMWPYunUrR48epVevXjg7OxtGD/rkk0/YunUrY8eO5dSpU4SHhzNjxgyjzti+vr78/fffXLp0iRs3bgAP7zo7ODjg5OTErFmzOHPmDH/99ZdRX9tHRamShDlz5hAbG0tWVhbXrl1jy5YtRu0OIyIiDD3L8wUHB7Nz504yMzOJiYnhiy++KLKtmBBCiMJZWlrSpk0bwsLCiI+P5/fff2fidxP5vMXnvFbtNXxtfVn2xTK2/ryV9OT0hxZXzF2+zv249HACeYLVrVuXKVOm8O2331KrVi0WLVpkqNG/m759+xIYGEijRo1wcXEp8HQW8tq4//XXX6SmptK8eXMaNmzIL7/8UmStwtixYxk+fDjjx48nKCiIdu3asWHDBsPQkYUJCwvj1VdfpV+/flSvXp2+ffsahqX09PTk999/Z/fu3dStW5f333+fPn36lPhmM9/KlStp3Lgxb7zxBjVq1OCzzz4zPA2uU6cOkZGRnDp1imeffZb69eszYsQIPDw8Srx/MzMzpk+fzsyZM/Hw8Cj2Jt3FxYX58+fz22+/UaNGDSZMmMCkScYzzHt6eho6/1aqVKnIG9l58+bRsGFDXnrpJYKDg9Hr9fz+++/3Nd9ASc/5888/j6OjIydPnqR79+5G69q2bcv69ev5888/ady4MU2aNGHq1KlUrly5RDFMmDCBgQMH0rBhQ65cucL//vc/w1P8Bg0asHz5cpYuXUqtWrUYMWIEY8aMMZpbZ8yYMcTGxlKlShVDZ+OHdZ1NTExYunQp+/bto1atWgwePJiJEyeW+BgVhaJ/BKaHS05Oxs7OjqSkJGxtpdpaCCHudPjwYcOoNSprFU27N6XJ601QWT3YQSBMUBiSmIo6t/C+abkmFozKevOusy/72ym827r2A/+eP3HiBG+++SYLFy6kevXqD+w4Qoh7U9RM06LslPR78J4nUxNCCFFx1KxZk5UrV1KnTh2y0rLY9ss2pr82nd0rd6PTPrhxuXXoOacpusmTmS6bGuqEB3Z8IYQQD4YkCUII8RgwNTWlS5cuHDhwgMWLF1OlShXSbqXx++TfmddvHknXim4ffb/O3GXI6hrm0i9BCCEeNZIkCCHEY8TExIQ33niD6OhoZsyYgY2NDblJuWhsNQ/smGd0xc+s7KO78MCOLYR4vLRo0QK9Xi9NjSoASRKEEOIxZG5uzocffsjRo0dZt3IdHz39EV6avKELs9KKv6kvrRR9Nles7Itc75AVj7VJwVFzhBBCVFySJAghxGPMx8cnb+QaKxfervU21zZf46e3fuJqzNUyPU6MVdGdjRV01FHfKNPjCSGEeLAkSRBCiCdEbk4u25ZuI+lKEnPem8OpqFNltu8zdxkKtZpZfPEFhBBCVCiSJAghxBPCwsKCHTt20LJlS7LTs1kydAm7V+4uk31f0KaRZVr0uOxeudIvQQghHiWSJAghxBPE0dGRjRs38s4776DX6fl98u8c2HDgvverRU+sxrHI9Zrs6ziZl21fCCGEEA+OJAlCCPGEsbCwYNasWXzyyScA/G/C/zi54+R97/eihWWx66uay3wJQgjxqJAkQQghnkCKojBx4kR69uyJTqvj2plr973PeBN9seu9zW7d9zFExTNq1Cjq1atX3mGIO8yfP7/Uw4j6+vry/fffP5B4xKPHrLwDEEIIUT4URWH27Nl06dKFgGYBrDi1Ah33PjvzZV1msevd9BV3hKPR/45+qMcbGTyyVOV79epFeHg4AGZmZnh5efHaa68xZswYLC2Lr8EpS4qisHr1ajp16mRYNmTIED766KOHFsOjqlevXiQmJrJmzZoy37evry+DBg1i0KBBhmWvv/46HTp0KPNjiSeHJAlCCPEEMzMz4+WXXwagvV97/nfmf2hztZiriu6EXJQMfS6JFtbYZ6cVut5BW3GThEdBu3btmDdvHjk5Oezbt4+ePXuiKArffvttucal0WjQaB7cZH3lKTs7GwsLi/IO456o1WrUanV5hyEeYdLcSAghBABOGU4sH7ycjd9vvOd9XLayKXKdOueWTKp2H1QqFW5ubnh7e9OpUydat27N5s2bDet1Oh3jx4/Hz88PtVpN3bp1WbFihWG9VqulT58+hvWBgYFMmzatwHHmzp1LzZo1UalUuLu7079/fyDvaTVA586dURTF8PrO5kY6nY4xY8bg5eWFSqWiXr16bNz432cqNjYWRVFYtWoVLVu2xMrKirp16/Lvv/8W+/7j4uIICQlBo9Fga2tL165duXo1b76PU6dOoSgKJ06cMNpm6tSpVKlSxfD66NGjtG/fHo1GQ6VKlXjrrbe4ceO/5LVFixb079+fQYMG4ezsTNu2bYG8GpSwsDDat2+PWq3G39/f6NwCHDlyhOeffx61Wo2TkxPvvvsuqamphnMUHh7O2rVrURQFRVGIiIgA4MKFC3Tt2hV7e3scHR0JCQkhNjbWsN9evXrRqVMnJk2ahLu7O05OTnz44Yfk5OQYYj5//jyDBw827BsKNjeKiYkhJCSESpUqodFoaNy4MVu2bCn2nIsnmyQJQgghgLybtxN7T7Bv7b57nkMh3lxV5DoFPf6qpHsNT9zm6NGj/PPPP0ZPucePH8+CBQv4+eefOXbsGIMHD+bNN98kMjISyLt59/Ly4rfffuP48eOMGDGCL774guXLlxv2ERYWxocffsi7777LkSNHWLduHVWrVgVgz549AMybN4/4+HjD6ztNmzaNyZMnM2nSJA4fPkzbtm15+eWXOX36tFG5L7/8kiFDhnDw4EGqVavGG2+8QW5ubqH71Ol0hISEkJCQQGRkJJs3b+bs2bO8/vrrAFSrVo1GjRqxaNEio+0WLVpE9+7dAUhMTOT555+nfv367N27l40bN3L16lW6du1qtE14eDgWFhZERUXx888/G5YPHz6cV155hUOHDhEaGkq3bt2Ijo4GIC0tjbZt2+Lg4MCePXv47bff2LJliyHBGjJkCF27dqVdu3bEx8cTHx9P06ZNycnJoW3bttjY2LB9+3aioqLQaDS0a9eO7Oxsw7G3bdtGTEwM27ZtIzw8nPnz5zN//nwAVq1ahZeXF2PGjDHsuzCpqal06NCBrVu3cuDAAdq1a0fHjh2Ji4srtLwQ0txICCEEAC1btmTw4MFMnTqVtePX0m9hP6ztrUu1j8t36bxc2ewWR3C+nzCfWOvXr0ej0ZCbm0tWVhYmJibMmDEDgKysLL755hu2bNlCcHAwAP7+/uzYsYOZM2fSvHlzzM3NGT36v74Xfn5+/Pvvvyxfvtxwo/z111/zySefMHDgQEO5xo0bA+Di4gKAvb09bm5uRcY5adIkhg4dSrdu3QD49ttv2bZtG99//z0//vijodyQIUN48cUXARg9ejQ1a9bkzJkzVK9evcA+t27dypEjRzh37hze3t4ALFiwgJo1a7Jnzx4aN25MaGgoM2bMYOzYsUBe7cK+fftYuHAhADNmzKB+/fp88803hv3OnTsXb29vTp06RbVq1QAICAjgu+++KxDDa6+9xjvvvAPA2LFj2bx5Mz/88AM//fQTixcvJjMzkwULFmBtbW04XseOHfn222+pVKkSarWarKwso3O3cOFCdDods2fPNtQAzJs3D3t7eyIiInjhhRcAcHBwYMaMGZiamlK9enVefPFFtm7dSt++fXF0dMTU1BQbG5tir0vdunWpW7eu4fXYsWNZvXo169atMyQzQtxOahKEEEIYfPPNN9SoUYO0hDTWf7cevb74m/47xd+l87K7cvN+wnuitWzZkoMHD7Jr1y569uzJ22+/zSuvvALAmTNnSE9Pp02bNoY+AhqNhgULFhATE2PYx48//kjDhg1xcXFBo9Ewa9Ysw5Pka9eucfnyZVq1anXPMSYnJ3P58mWaNWtmtLxZs2aGp+756tSpY/h/d3d3QwyFiY6Oxtvb25AgANSoUQN7e3vDfrt160ZsbCw7d+4E8moRGjRoYEg6Dh06xLZt24zOT/66289Rw4YNC40hP/m6/XX+saOjo6lbt64hQch/zzqdjpMnix5e+NChQ5w5cwYbGxtDTI6OjmRmZhrFVLNmTUxN/5vW3N3dvchzVZTU1FSGDBlCUFAQ9vb2aDQaoqOjpSZBFElqEoQQQhhYWlqycOFCnnrqKaIjojm86TB129W9+4b/L0Ofyy2VBoes1ELXO0nn5XtmbW1taPozd+5c6taty5w5c+jTp4+h7fuGDRvw9PQ02k6lymsCtnTpUoYMGcLkyZMJDg7GxsaGiRMnsmvXLoCH3snV3Py/zvH5T9F1unsfXcvNzY3nn3+exYsX06RJExYvXswHH3xgWJ+ammp4sn+n/CQFMLrRf9BSU1Np2LBhgWZS8F/NDRifK8g7X6U9V0OGDGHz5s1MmjSJqlWrolarefXVV42aNQlxO6lJEEIIYaR+/fqMHJk3ROeWsC3kZJWus/FlddGdl21yrmN6H8OsijwmJiZ88cUXfPXVV2RkZFCjRg1UKhVxcXFUrVrV6Cf/6XtUVBRNmzalX79+1K9fn6pVqxo9rbaxscHX15etW7cWeVxzc3O0Wm2R621tbfHw8CAqKspoeVRUFDVq1Ljn9xsUFMSFCxe4cOGCYdnx48dJTEw02m9oaCjLli3j33//5ezZs4YmTwANGjTg2LFj+Pr6FjhHJUkM8msobn8dFBRkiO/QoUOkpf03sldUVBQmJiYEBgYCeZMY3nnuGjRowOnTp3F1dS0Qk52dXYnPT2H7vlNUVBS9evWic+fO1K5dGzc3N6MO0kLcSZIEIYQQBQwZMgQvLy9s7WxJvpZcqm3jixky0kSvpbIq5X7DE+S1kTc1NeXHH3/ExsaGIUOGMHjwYMLDw4mJiWH//v388MMPhvkVAgIC2Lt3L5s2beLUqVMMHz68QOfjUaNGMXnyZKZPn87p06cN+8iXn0RcuXKFW7cKnxzv008/5dtvv2XZsmWcPHmSYcOGcfDgQaN+DqXVunVrateuTWhoKPv372f37t306NGD5s2b06hRI0O5Ll26kJKSwgcffEDLli3x8PAwrPvwww9JSEjgjTfeYM+ePcTExLBp0ybefvvtu95gA/z222/MnTuXU6dOMXLkSHbv3m1oyx8aGoqlpSU9e/bk6NGjbNu2jY8++oi33nqLSpUqGc7d4cOHOXnyJDdu3CAnJ4fQ0FCcnZ0JCQlh+/btnDt3joiICAYMGMDFixdLfH58fX35+++/uXTpktFoTbcLCAhg1apVHDx4kEOHDtG9e/f7qrkRjz9JEoQQQhRgaWlJZGQkO3bvwMnbqVTbXlaK78fgZ554H5GJfGZmZvTv35/vvvuOtLQ0xo4dy/Dhwxk/fjxBQUG0a9eODRs24OfnB8B7771Hly5deP3113n66ae5efMm/fr1M9pnz549+f777/npp5+oWbMmL730ktGoRJMnT2bz5s14e3tTv379QuMaMGAAH3/8MZ988gm1a9dm48aNrFu3joCAgHt+r4qisHbtWhwcHHjuuedo3bo1/v7+LFu2zKicjY0NHTt2NIxAdLv8Gg6tVssLL7xA7dq1GTRoEPb29piY3P12aPTo0SxdupQ6deqwYMEClixZYqjFsLKyYtOmTSQkJNC4cWNeffVVWrVqZehYDtC3b18CAwNp1KgRLi4uREVFYWVlxd9//42Pjw9dunQhKCiIPn36kJmZia2tbYnPz5gxY4iNjaVKlSpGzZRuN2XKFBwcHGjatCkdO3akbdu2NGjQoMTHEE8eRV/aXmnlIDk5GTs7O5KSkkr1SyOEEOL+LYpexJnEMyUub6mYMfR60Z0qo9UNWJBsfHPib6fwbuvaD/x7/sSJE7z55pssXLiw0FF0hChMYTNNC/GoKun3oNQkCCGEKFYT5ybsXLaTrLSsEpXP1OdyU1X0DLzOehnhSAghKjpJEoQQQhTrna7vsHHaRnYu33n3wv/vSjEzL9vnlG7oRiGEEA+fJAlCCCGK9e677wLw75J/yUjOKNE2l82K7rxsrs2gknl6mcQmxMOg1+ulqZF44kiSIIQQolivv/46tWrVIjM1k10rdpVom8smxY+aUsUisQwiE0II8aBIkiCEEKJYJiYmDBs2DIAD6w+UaNjEeG0mxQ2L4WVa+PCZQgghKgZJEoQQQtxVly5dsLW1JelKEucPnL9r+Sy03FQXPUqRq15mXhZCiIqsVElCWFgYderUwdbWFltbW4KDg/njjz+KLD9//nwURTH6sbS0vO+ghRBCPFxqtdowe+3B3w+WaJsbllZFrnPUXi+LsIQQQjwgpUoSvLy8mDBhAvv27WPv3r08//zzhISEcOzYsSK3sbW1JT4+3vBz/vzdn0AJIYSoeHr16oWJiQk5mTmUZIqdBDPzItepcxKxMskty/CEEEKUIbPSFO7YsaPR63HjxhEWFsbOnTupWbNmodsoioKbm9u9RyiEEKJCaNKkCZcuXeLPm39yLvncXcvfvMsstp4WaZzOtCur8IQQQpShe+6ToNVqWbp0KWlpaQQHBxdZLjU1lcqVK+Pt7X3XWod8WVlZJCcnG/0IIYQoX/kPfeq51itR+QSl+NqGSmapZRCVyKcoCmvWrCnvMAo1atQo6tWrV95hiLvw9fXl+++/L+8wxB1atGjBoEGDSlw+IiICRVFITEy8r+OWqiYB4MiRIwQHB5OZmYlGo2H16tXUqFGj0LKBgYHMnTuXOnXqkJSUxKRJk2jatCnHjh3Dy8uryGOMHz+e0aNHlzY0IYQQD0GQYxCLry9Ga6pF41j0zMoJ+uxi9+NqklLWod2z+BEjH+rx3MeU7m9cr169CA8PL7C8bdu2bNy4sazCMqIoCqtXry6X+QHmz5/PoEGD7vsm53ERERFBy5YtuXXrFvb29ve9v6LO7549e7C2tr7v/T/uHtTvRlHXedWqVZibF91880EpdU1CYGAgBw8eZNeuXXzwwQf07NmT48ePF1o2ODiYHj16UK9ePZo3b86qVatwcXFh5syZxR7j888/JykpyfBz4cKF0oYphBDiARk1YhTfdfqOPav2FFsuRZdDjmJa5Hp7pJa4NNq1a2fUxy8+Pp4lS5aUa0zZ2cUnguLhut/r4eLigpVV0QMOPMpycnLKO4R75ujoiI1N0bPYPyilThIsLCyoWrUqDRs2ZPz48dStW5dp06aVaFtzc3Pq16/PmTNnii2nUqkMIyjl/wghhKgYateujV6v5+DvB4udM0GPngTLomsa7PWSJJSGSqXCzc3N6MfBwaHI8hcuXKBr167Y29vj6OhISEgIsbGxRmXmzp1LzZo1UalUuLu7079/fyCv2QlA586dURTF8Dq/2dDs2bPx8/MzjFgYFxdHSEgIGo0GW1tbunbtytWrVwuN6++//8bc3JwrV64YLR80aBDPPvssERERvP322yQlJRlGRhw1ahSQ1xx5yJAheHp6Ym1tzdNPP01ERESx5y0xMZH33nuPSpUqYWlpSa1atVi/fr1h/cqVKw3nwNfXl8mTJxtt7+vryzfffEPv3r2xsbHBx8eHWbNmGZW5ePEib7zxBo6OjlhbW9OoUSN27fpv4sG1a9fSoEEDLC0t8ff3Z/To0eTm/tdxX1EUZs+eTefOnbGysiIgIIB169YBEBsbS8uWLQFwcHBAURR69eoF5DVD6d+/P4MGDcLZ2Zm2bdsCMGXKFGrXro21tTXe3t7069eP1NS85n3Fnd87mxvd7brmfx5+/fVXfH19sbOzo1u3bqSkFF9LWNw5/+KLL3j66acLbFO3bl3GjBljeD179myCgoKwtLSkevXq/PTTT4Z1sbGxKIrCsmXLaN68OZaWlixatIj58+djb2/PmjVrCAgIwNLSkrZt2xZ4GB0WFkaVKlWwsLAgMDCQX3/91bCuqN8NeLDX+fbmRr/++iuNGjXCxsYGNzc3unfvzrVr14o95/fivudJ0Ol0ZGVllaisVqvlyJEjuLu73+9hhRBClJOQkBDs7OxIupJE7P7YYssmWKiLXGetTSrjyES+nJwc2rZti42NDdu3bycqKgqNRkO7du0MT5vDwsL48MMPeffddzly5Ajr1q2jatWqQF6zE4B58+YRHx9veA1w5swZVq5cyapVqzh4MC9RDAkJISEhgcjISDZv3szZs2d5/fXXC43tueeew9/f3+jGKycnh0WLFtG7d2+aNm3K999/bzQ64pAhQwDo378///77L0uXLuXw4cO89tprtGvXjtOnTxd6LJ1OR/v27YmKimLhwoUcP36cCRMmYGqaV8O1b98+unbtSrdu3Thy5AijRo1i+PDhzJ8/32g/kydPplGjRhw4cIB+/frxwQcfcPLkSSCv72Xz5s25dOkS69at49ChQ3z22WeGBHr79u306NGDgQMHcvz4cWbOnMn8+fMZN26c0TFGjx5N165dOXz4MB06dCA0NJSEhAS8vb1ZuXIlACdPniQ+Pt7o4Wx4eDgWFhZERUXx888/A3kTIE6fPp1jx44RHh7OX3/9xWeffQZQ7Pm989yV5LrGxMSwZs0a1q9fz/r164mMjGTChAmFXo+SnPPQ0FB2795NTEyMYZtjx45x+PBhunfvDsCiRYsYMWIE48aNIzo6mm+++Ybhw4cXaJI3bNgwBg4cSHR0tCGBSk9PZ9y4cSxYsICoqCgSExMNwzsDrF69moEDB/LJJ59w9OhR3nvvPd5++222bdsGFP278aCv8+1ycnIYO3Yshw4dYs2aNcTGxhoSirJUqj4Jn3/+Oe3bt8fHx4eUlBQWL15MREQEmzZtAqBHjx54enoyfvx4AMaMGUOTJk2oWrUqiYmJTJw4kfPnz/POO++U+RsRQgjxcKjVal577TVmz55NdGQ0/o38iyybYG5R5DrL3GRM0aGVeT1LZP369Wg0xjUzX3zxBV988UWBssuWLUOn0zF79mwURQHybmrs7e2JiIjghRde4Ouvv+aTTz5h4MCBhu0aN24M5DU7AbC3ty8wQmF2djYLFiwwlNm8eTNHjhzh3LlzeHt7A7BgwQJq1qzJnj17DPu8XZ8+fZg3bx6ffvopAP/73//IzMyka9euWFhYYGdnV2B0xLi4OObNm0dcXBweHh4ADBkyhI0bNzJv3jy++eabAsfZsmULu3fvJjo6mmrVqgHg7//f53XKlCm0atWK4cOHA1CtWjWOHz/OxIkTjW66OnToQL9+/QAYOnQoU6dOZdu2bQQGBrJ48WKuX7/Onj17cHR0BDAkW5B3Uzhs2DB69uxpOP7YsWP57LPPGDnyv74wvXr14o033gDgm2++Yfr06ezevZt27doZ9uvq6lqgT0JAQADfffed0bLbnzr7+vry9ddf8/777/PTTz8VeX7vtHXr1hJdV51Ox/z58w3NYd566y22bt1a4Oa4pOe8Zs2a1K1bl8WLFxvKLFq0iKefftpwXkeOHMnkyZPp0qULAH5+foYb8/zznH8e8svky8nJYcaMGYbaivDwcIKCgti9ezdPPfUUkyZNolevXobr/fHHH7Nz504mTZpEy5Yti/zdeNDX+Xa9e/c2/L+/vz/Tp0+ncePGpKamFviOuB+l+ma+du0aPXr0IDAwkFatWrFnzx42bdpEmzZtgLxf4Pj4eEP5W7du0bdvX4KCgujQoQPJycn8888/RXZ0FkII8Wjo0KEDAGf3nC22XIKJUuQ6E70WN4uMMo3rcdayZUsOHjxo9PP+++8XWvbQoUOcOXMGGxsbNBoNGo0GR0dHMjMziYmJ4dq1a1y+fJlWrVqVOo7KlSsbbpQAoqOj8fb2NtxIAtSoUQN7e3uio6ML3UevXr04c+YMO3fuBPI60nbt2rXYTrNHjhxBq9VSrVo1w3vSaDRERkYaPXW+3cGDB/Hy8jIkCHeKjo6mWbNmRsuaNWvG6dOn0Wq1hmV16tQx/H/+zXV+846DBw9Sv359ww3enQ4dOsSYMWOMYu7bty/x8fGkp6cXegxra2tsbW1L1ISkYcOGBZZt2bKFVq1a4enpiY2NDW+99RY3b940Ot7dlPS6+vr6GrWXd3d3Lzbukpzz0NBQFi9eDIBer2fJkiWEhoYCkJaWRkxMDH369DE6p19//XWBz0GjRo0KHN/MzMwoca1evbrReyoqvqI+y/ke9HW+3b59++jYsSM+Pj7Y2NjQvHlzIO8+vCyVqiZhzpw5xa6/s13g1KlTmTp1aqmDEkIIUbG1bNkSU1NTbsbdJDE+EXt3+0LL3W0YVDezVC5ly2gqJWFtbW30hLo4qampNGzYkEWLFhVY5+Ligsld5rC4Wxz3y9XVlY4dOzJv3jz8/Pz4448/7tq3IDU1FVNTU/bt22doLpSvqKenanXRzd1K486RZRRFMTQnutsxUlNTGT16dIEn2oChT8fdjlGcO69HbGwsL730Eh988AHjxo3D0dGRHTt20KdPH7Kzs8u8Y/K9xl2cN954g6FDh7J//34yMjK4cOGCoZlTft+KX375pUDfhTs/Fw9zpKYHfZ3zpaWl0bZtW9q2bcuiRYtwcXEhLi6Otm3blvlAAqUeAlUIIYSwt7fn6aef5p9//iFmTwwNXy74NBPgpu4uw6CapT2I8J54DRo0YNmyZbi6uhY5+Ievry9bt241dJa8k7m5udHT9KIEBQVx4cIFLly4YHjqfPz4cRITE4ttOfDOO+/wxhtv4OXlRZUqVYye3lpYWBQ4dv369dFqtVy7do1nn332rnFB3lPbixcvcurUqUJrE4KCgoiKijJaFhUVRbVq1QrccBZ3jNmzZ5OQkFBobUKDBg04efJkiRO8wlhY5DXbK8n12LdvHzqdjsmTJxuSweXLlxfY3932da/X9W5Kcs69vLxo3rw5ixYtIiMjgzZt2uDq6gpApUqV8PDw4OzZs4bahdLIzc1l7969PPXUU0Be+//ExESCgoKM4ru92VJUVJTRey7sd+NhXecTJ05w8+ZNJkyYYLgue/fuvedjFkcaggohhLgnn376KWNmjKH6s9WLLJOqzyHHpOjnUU5KxZkroaLLysriypUrRj83btwotGxoaCjOzs6EhISwfft2zp07R0REBAMGDODixYtA3sg0kydPZvr06Zw+fZr9+/fzww8/GPaRn0RcuXKFW7duFRlX69atqV27NqGhoezfv5/du3fTo0cPmjdvXmhzj3xt27bF1taWr7/+mrfffttona+vL6mpqWzdupUbN26Qnp5OtWrVCA0NpUePHqxatYpz586xe/duxo8fz4YNGwo9RvPmzXnuued45ZVX2Lx5M+fOneOPP/4wzC3xySefsHXrVsaOHcupU6cIDw9nxowZhXbkLcobb7yBm5sbnTp1IioqirNnz7Jy5Ur+/fdfAEaMGMGCBQsYPXo0x44dIzo6mqVLl/LVV1+V+BiVK1dGURTWr1/P9evXDU/TC1O1alVycnL44YcfOHv2LL/++quhQ3O+ws7vne71ut5NSc95aGgoS5cu5bfffiuQDIwePZrx48czffp0Tp06xZEjR5g3bx5Tpky56/HNzc356KOP2LVrF/v27aNXr140adLEkDR8+umnzJ8/n7CwME6fPs2UKVNYtWqVUXyF/W48rOvs4+ODhYWF4fquW7eOsWPHlvgYpSFJghBCiHvSqVMnPuj9AdYORVfp69FzU1X0enu9jHBUUhs3bsTd3d3o55lnnim0rJWVFX///Tc+Pj506dKFoKAg+vTpQ2ZmpqFmoWfPnnz//ff89NNP1KxZk5deeslolKDJkyezefNmvL29qV+/fpFxKYrC2rVrcXBw4LnnnqN169b4+/uzbNmyYt+PiYkJvXr1QqvV0qNHD6N1TZs25f333+f111/HxcXF0DF33rx59OjRg08++YTAwEA6derEnj178PHxKfI4K1eupHHjxrzxxhvUqFGDzz77zPCktkGDBixfvpylS5dSq1YtRowYwZgxY0o1UoyFhQV//vknrq6udOjQgdq1axuNoNS2bVvWr1/Pn3/+SePGjWnSpAlTp06lcuXKJT6Gp6enoWNspUqVDEPVFqZu3bpMmTKFb7/9llq1arFo0SLDgDL5ijq/t7vX63o3JT3nr776qqEfxZ2Tlr3zzjvMnj2befPmUbt2bZo3b878+fPx8/O76/GtrKwYOnQo3bt3p1mzZmg0GqP31KlTJ6ZNm8akSZOoWbMmM2fOZN68ebRo0cJQprDfjYd1nV1cXJg/fz6//fYbNWrUYMKECUyaNKnExygNRa/XF99gtAJITk7OG24vKUnmTBBCiApm2v5pJGYlFrm+a44FQUlXCl2XbFGJ8Wkd8bdTeLd17Qf+PX/ixAnefPNNFi5cSPXqRdeAiIejT58+XL9+3TBWvBAPkszknaek34PSJ0EIIcQ9O336NAeWHiBVk0rtNrULLVPcMKhWuUU3YxGPr6SkJI4cOcLixYslQRCigpLmRkIIIe7Zli1bCJ8Yzr61+4osc9O06GFQzXTZ2JmW7YgcouILCQnhhRde4P333zcMoy6EqFikJkEIIcQ9y7/Bu3D4AtkZ2VioC9YaJOiLH97PwyKNLFQPJD5RMd1tuFMhHoRevXo9kJmJH1dSkyCEEOKeValSBT8/P7S5WmIPxBZaJkGfU+w+3EyLHqlFCCFE+ZAkQQghxD1TFMVQmxCzu/BZb1P02WQXMwyqs4kMgyqEEBWNJAlCCCHuywsvvADA2T1niyyTYFn4jLgADiSXeUxCCCHujyQJQggh7svzzz+PiYkJ189dJ+la4fMeJFhYFrm9rU7mShBCiIpGkgQhhBD3xcHBgUaNGmFmbsaV04XPh5BgVvQwqNZaSRKEEKKikdGNhBBC3Lc1a9ZwPOM4O67uKHR9QjHDoKpyUzCz0D6o0IQQQtwDqUkQQghx39zd3fGy9ypyfQL6Itcp6HExS38QYT2RfH19+f7778t8v7169aJTp05lvt98ERERKIpSYWfDbdGiBYMGDSrvMEQJlPazGhsbi6IoHDx48IHF9CiSmgQhhBBlws3arch1CfriJ0xzMSnfYVC3LTrxUI/XMrR6qbe5cOECI0eOZOPGjdy4cQN3d3c6derEiBEjcHJyegBRGps2bRp6fdHJXkUTERFBy5YtuXXrFvb29g/9+L169SIxMZE1a9Y89GNXNL6+vgwaNKjMk6zY2Fj8/Pw4cOAA9erVMyx/1D6rFZXUJAghhCgTX37yJTN7zuTmhZsF1qXoih8G1V5GOCrW2bNnadSoEadPn2bJkiWcOXOGn3/+ma1btxIcHExCQsIDj8HOzq5cbrYftOxsmfG7MDk5xc9vUpE9rp/Vh02SBCGEEGVi3759xJ+O5/KJy4WuT1RZF7mtnV4mVCvOhx9+iIWFBX/++SfNmzfHx8eH9u3bs2XLFi5dusSXX35pVD49PZ3evXtjY2ODj48Ps2bNMqzLb1qxfPlynn32WdRqNY0bN+bUqVPs2bOHRo0aodFoaN++PdevXzdsd2cTDp1Ox3fffUfVqlVRqVT4+Pgwbty4It+DTqdj/Pjx+Pn5oVarqVu3LitWrCj2fe/YscMQo7e3NwMGDCAtLc2wPisri6FDh+Lt7Y1KpaJq1arMmTOH2NhYWrZsCeR1rFcUxTDTbosWLejfvz+DBg3C2dmZtm3bAhAZGclTTz2FSqXC3d2dYcOGkZubW2hcY8aMoVatWgWW16tXj+HDhzNq1CjCw8NZu3YtiqKgKIphlukLFy7QtWtX7O3tcXR0JCQkhNjY2GLPQ3GxzZo1Cw8PD3Q645nNQ0JC6N27t+H12rVradCgAZaWlvj7+zN69Gij96coCmFhYbz88stYW1szbtw4QxOwDRs2UKdOHSwtLWnSpAlHjx41OtbKlSupWbMmKpUKX19fJk+ebFjXokULzp8/z+DBgw3nIt/drq+vry/ffPNNkZ9lPz8/AOrXr4+iKLRo0QIo+FnduHEjzzzzDPb29jg5OfHSSy8RE1P4vC7iP5IkCCGEKBMNGjQAIP5UfKHrU4oZ4UitlSShKAkJCWzatIl+/fqhVquN1rm5uREaGsqyZcuMmldMnjyZRo0aceDAAfr168cHH3zAyZMnjbYdOXIkX331Ffv378fMzIzu3bvz2WefMW3aNLZv386ZM2cYMWJEkXF9/vnnTJgwgeHDh3P8+HEWL15MpUqViiw/fvx4FixYwM8//8yxY8cYPHgwb775JpGRkYWWj4mJoV27drzyyiscPnyYZcuWsWPHDvr3728o06NHD5YsWcL06dOJjo5m5syZaDQavL29WblyJQAnT54kPj6eadOmGbYLDw/HwsKCqKgofv75Zy5dukSHDh1o3Lgxhw4dIiwsjDlz5vD1118XGlvv3r2Jjo5mz549hmUHDhzg8OHDvP322wwZMoSuXbvSrl074uPjiY+Pp2nTpuTk5NC2bVtsbGzYvn07UVFRaDQa2rVrV2SNxt1ie+2117h58ybbtm0zbJOQkMDGjRsJDQ0FYPv27fTo0YOBAwdy/PhxZs6cyfz58wskdaNGjaJz584cOXLEKMH49NNPmTx5Mnv27MHFxYWOHTsaahr27dtH165d6datG0eOHGHUqFEMHz6c+fPnA7Bq1Sq8vLwYM2aM4VyU9PpC8Z/l3bt3A7Blyxbi4+NZtWpVoecwLS2Njz/+mL1797J161ZMTEzo3LlzgcRKGJM+CUIIIcpEfpJw5VThw6CmmJkXua1STMfmJ93p06fR6/UEBQUVuj4oKIhbt25x/fp1XF1dAejQoQP9+vUDYOjQoUydOpVt27YRGBho2G7IkCGGp+gDBw7kjTfeYOvWrTRr1gyAPn36GG707pSSksK0adOYMWMGPXv2BKBKlSo888wzhZbPysrim2++YcuWLQQHBwPg7+/Pjh07mDlzJs2bNy+wzfjx4wkNDTW0Yw8ICGD69Ok0b96csLAw4uLiWL58OZs3b6Z169aGfeZzdHQEwNXVtUDTk4CAAL777jvD6y+//BJvb29mzJiBoihUr16dy5cvM3ToUEaMGIGJifEzVS8vL9q2bcu8efNo3LgxAPPmzaN58+aGGNRqNVlZWbi5/ddXZ+HCheh0OmbPnm14oj5v3jzs7e2JiIgwTEx4u59++qnY2BwcHGjfvj2LFy+mVatWAKxYsQJnZ2dDbcro0aMZNmyY4Vr5+/szduxYPvvsM0aOHGk4Vvfu3Xn77bcNr8+ezZsgceTIkYaZ1cPDw/Hy8mL16tV07dqVKVOm0KpVK4YPHw5AtWrVOH78OBMnTqRXr144OjpiamqKjY2N0bm42/W1tMybW6W4z7KLiwsATk5ORvu+0yuvvGL0eu7cubi4uHD8+PFCa4REHqlJEEIIUSbq168PQPzJ+EI7DaaYynOp+1Gajph16tQx/L+iKLi5uXHt2rUiy+TXANSuXdto2Z3b5IuOjiYrK8twU3o3Z86cIT09nTZt2qDRaAw/CxYsKLLZx6FDh5g/f75R+bZt26LT6Th37hwHDx7E1NS00ATjbho2bFjg/QQHBxs1hWnWrBmpqalcvHix0H307duXJUuWkJmZSXZ2NosXLzZ6+l7Uezpz5gw2NjaG9+To6EhmZmaR56EksYWGhrJy5UqysrIAWLRoEd26dTMkN4cOHWLMmDFG57Jv377Ex8eTnv7fyGKNGjUqNIb8xA7ykq/AwECio6MN8eUnlrfHd/r0abTaooc2vtv1zVeSz/LdnD59mjfeeAN/f39sbW3x9fUFIC4urlT7edLIN7YQQogyUbNmTczNzclIziDpShL27vZG61NMip4rQRStatWqKIpCdHQ0nTt3LrA+OjoaBwcHw1NVAHNz41obRVEKNK24vUz+Deidy4pqjnFns6e7SU3Na062YcMGPD09jdapVKoit3nvvfcYMGBAgXU+Pj6cOXOmVDHcztq66P4xJdWxY0dUKhWrV6/GwsKCnJwcXn311WK3SU1NpWHDhixatKjAutuv373Eotfr2bBhA40bN2b79u1MnTrV6LijR4+mS5cuBbbNf2IPZXNeSupu1zdfST7Ld9OxY0cqV67ML7/8Yui/UatWLem0fheSJAghhCgTKpWKWrVqceDAAeJPxRdMEhRpUnQvnJycaNOmDT/99BODBw82ukG/cuUKixYtokePHkZPmh+0gIAA1Go1W7du5Z133rlr+Ro1aqBSqYiLiyvxk/8GDRpw/PhxqlatWuj62rVro9PpiIyMNDQ3up2FRV4fmOKeZucLCgpi5cqV6PV6w3mMiorCxsYGL6/C5/8wMzOjZ8+ezJs3DwsLC7p162Z0bSwsLAocu0GDBixbtgxXV1dsbW3vGldJY7O0tKRLly4sWrSIM2fOEBgYaGj+l3/ckydPFnku72bnzp2GG/dbt25x6tQpQ/O3oKAgoqKijMpHRUVRrVo1TE1NgaLPRXHXtyRKco1v3rzJyZMn+eWXX3j22WeBvA7T4u6kuZEQQogy06hRI7z8vNDmFPyjnYJ0ErxXM2bMICsri7Zt2/L3339z4cIFNm7cSJs2bfD09Cx2VKEHwdLSkqFDh/LZZ58Zmgzt3LmTOXPmFFrexsaGIUOGMHjwYMLDw4mJiWH//v388MMPhIeHF7rN0KFD+eeff+jfvz8HDx7k9OnTrF271tCx1dfXl549e9K7d2/WrFnDuXPniIiIYPny5QBUrlwZRVFYv349169fN9RmFKZfv35cuHCBjz76iBMnTrB27VpGjhzJxx9/XKA/wu3eeecd/vrrLzZu3FigqZGvry+HDx/m5MmT3Lhxg5ycHEJDQ3F2diYkJITt27cbYh4wYECRzZpKGltoaCgbNmxg7ty5hg7L+UaMGMGCBQsYPXo0x44dIzo6mqVLl/LVV18V+d5uN2bMGLZu3crRo0fp1asXzs7OhtGDPvnkE7Zu3crYsWM5deoU4eHhzJgxgyFDhhidi7///ptLly5x48YN4O7XtyRcXV1Rq9Vs3LiRq1evkpSUVKCMg4MDTk5OzJo1izNnzvDXX3/x8ccfl/gYTzJJEoQQQpSZn3/+md93/U6t1gU7AybrHt1x18tbQEAAe/fuxd/fn65du1KlShXeffddWrZsyb///mvopPswDR8+nE8++YQRI0YQFBTE66+/Xmxb8bFjxzJ8+HDGjx9PUFAQ7dq1Y8OGDYZhLO9Up04dIiMjOXXqFM8++yz169dnxIgReHh4GMqEhYXx6quv0q9fP6pXr07fvn0NQ2h6enoaOuxWqlSp2JtPT09Pfv/9d3bv3k3dunV5//336dOnz11vogMCAmjatCnVq1fn6aefNlrXt29fAgMDadSoES4uLkRFRWFlZcXff/+Nj48PXbp0ISgoiD59+pCZmVlkzUJJY3v++edxdHTk5MmTdO/e3Whd27ZtWb9+PX/++SeNGzemSZMmTJ06lcqVKxf7/vJNmDCBgQMH0rBhQ65cucL//vc/w1P8Bg0asHz5cpYuXUqtWrUYMWIEY8aMMQw5C3lJRmxsLFWqVDE0qyrJ9b0bMzMzpk+fzsyZM/Hw8CAkJKRAGRMTE5YuXcq+ffuoVasWgwcPZuLEiSU+xpNM0T8CU9IlJydjZ2dHUlJSiavnhBBClI8bGTf48eCPBZaboPDV9ZsU1iomWROA3fMfPfDv+RMnTvDmm2+ycOFCqlcv/azHQtxOr9cTEBBAv379Hsun0+U9a7V4MEr6PSh9EoQQQpQpJ0snzDAjKzcLUzNTw3IdetIsLNHkZJZjdEKUjevXr7N06VKuXLliNGyoEI8LSRKEEEKUqd69e7Nk+RJeGf0K1ZpVM1qXbC5Jgng8uLq64uzszKxZs3BwcCjvcIQoc5IkCCGEKFNarZas9CziT8UXSBJSzC2L2EqIR8sj0Fr7vrVo0eKJeJ+icKXquBwWFkadOnWwtbXF1taW4OBg/vjjjxJtu3TpUhRFMfSGF0II8XjKH3ox/mR8gXUppqYFlgkhhKh4SpUkeHl5MWHCBPbt28fevXt5/vnnCQkJ4dixY8VuFxsby5AhQwzj0wohhHh8FZckpMqsy0II8UgoVZLQsWNHOnToQEBAANWqVWPcuHFoNBp27txZ5DZarZbQ0FBGjx6Nv7//fQcshBCiYqtXrx4ASVeTSEtMM1qXLJMuCyHEI+Ge50nQarUsXbqUtLQ0goODiyw3ZswYXF1d6dOnT4n3nZWVRXJystGPEEKIR4Otra1hFtWrZ64arZNZl4UQ4tFQ6iThyJEjaDQaVCoV77//PqtXr6ZGjRqFlt2xYwdz5szhl19+KdUxxo8fj52dneHH29u7tGEKIYQoR/ljb9+8cNNoeYq+4EzMQgghKp5SJwmBgYEcPHiQXbt28cEHH9CzZ0+OHz9eoFxKSgpvvfUWv/zyC87OzqU6xueff05SUpLh58KFC6UNUwghRDl69tlnCW4VjI2TjdHyFL3MuiyEEI+CUicJFhYWVK1alYYNGzJ+/Hjq1q3LtGnTCpSLiYkhNjaWjh07YmZmhpmZGQsWLGDdunWYmZkRExNT5DFUKpVhBKX8HyGEEI+Ozz77jLAlYVR/zng2zwy9llzlnlu6ihLw9fXl+++/L/P99urV64GOUBgREYGiKCQmJj6wY5S1Fi1aMGjQoPIO44kyf/78Us/+/KB+Jx539z3MhE6nIysrq8Dy6tWrc+TIEaNlX331FSkpKUybNk2aEAkhxGPOUeVYYJkePanmlthnp5dDREXbPGvGQz1em3f7l3qbCxcuMHLkSDZu3MiNGzdwd3enU6dOjBgxAicnpwcQpbFp06Y9UmPmR0RE0LJlS27dulXqm0pRcr169SIxMZE1a9aU+b59fX0ZNGiQUSL2+uuv06FDhzI/liioVEnC559/Tvv27fHx8SElJYXFixcTERHBpk2bAOjRoweenp6MHz8eS0tLatWqZbR9/i/pncuFEEI8fhwsHUhPSkdtq0ZR/hvWKMWi4iUJFd3Zs2cJDg6mWrVqLFmyBD8/P44dO8ann37KH3/8wc6dO3F0LJiUlSU7O7sHuv/ykp2djYWFRXmH8VA9yu9ZrVajVqvLO4wnQqnqfK9du0aPHj0IDAykVatW7Nmzh02bNtGmTRsA4uLiiI8vOC62EEKIJ4tWq8XP04/v2n9Hyo0Uo3UpZo/mzUl5+vDDD7GwsODPP/+kefPm+Pj40L59e7Zs2cKlS5f48ssvjcqnp6fTu3dvbGxs8PHxYdasWYZ1sbGxKIrC8uXLefbZZ1Gr1TRu3JhTp06xZ88eGjVqhEajoX379ly/ft2w3Z3NjXQ6Hd999x1Vq1ZFpVLh4+PDuHHjinwPOp2O8ePH4+fnh1qtpm7duqxYsaLY971jxw5DjN7e3gwYMIC0tP+G1c3KymLo0KF4e3ujUqmoWrUqc+bMITY2lpYtWwLg4OCAoij06tULyGsi1L9/fwYNGoSzszNt27YFIDIykqeeegqVSoW7uzvDhg0jNzfXcKy0tDR69OiBRqPB3d2dyZMnF4g3KyuLIUOG4OnpibW1NU8//TQRERHFvse4uDhCQkLQaDTY2trStWtXrl7NGxXs1KlTKIrCiRMnjLaZOnUqVapUMbw+evQo7du3R6PRUKlSJd566y1u3LhhWF/Ue1YUhbCwMNq3b49arcbf37/ANTly5AjPP/88arUaJycn3n33XVJTUwEYNWoU4eHhrF27FkVRUBTF8H4vXLhA165dsbe3x9HRkZCQEGJjYw37zf88TZo0CXd3d5ycnPjwww/JyckxxHz+/HkGDx5s2DcUbG4UExNDSEgIlSpVQqPR0LhxY7Zs2VLsORclU6okIf8XLysri2vXrrFlyxZDggB5VXvz588vcvv58+c/kOooIYQQFYupqanhyXPCxQSjdSkyoVqpJCQksGnTJvr161fgCaqbmxuhoaEsW7bMqCnQ5MmTadSoEQcOHKBfv3588MEHnDx50mjbkSNH8tVXX7F//37MzMzo3r07n332GdOmTWP79u2cOXOGESNGFBnX559/zoQJExg+fDjHjx9n8eLFVKpUqcjy48ePZ8GCBfz8888cO3aMwYMH8+abbxIZGVlo+ZiYGNq1a8crr7zC4cOHWbZsGTt27KB///+aavXo0YMlS5Ywffp0oqOjmTlzJhqNBm9vb1auXAnAyZMniY+PN+o/GR4ejoWFBVFRUfz8889cunSJDh060LhxYw4dOkRYWBhz5szh66+/Nmzz6aefEhkZydq1a/nzzz+JiIhg//79RjH379+ff//9l6VLl3L48GFee+012rVrx+nTpwt9jzqdjpCQEBISEoiMjGTz5s2cPXuW119/HYBq1arRqFEjFi1aZLTdokWL6N69OwCJiYk8//zz1K9fn71797Jx40auXr1K165djba58z3nGz58OK+88gqHDh0iNDSUbt26ER0dDeQlRm3btsXBwYE9e/bw22+/sWXLFsM1GDJkCF27dqVdu3bEx8cTHx9P06ZNycnJoW3bttjY2LB9+3aioqLQaDS0a9eO7Oxsw7G3bdtGTEwM27ZtIzw8nPnz5xvuI1etWoWXlxdjxowx7LswqampdOjQga1bt3LgwAHatWtHx44diYuLK7S8KDn5phZCCPFAVK1alZiYGBIuJeBb39ewPMXUtPyCegSdPn0avV5PUFBQoeuDgoK4desW169fx9XVFYAOHTrQr18/AIYOHcrUqVPZtm0bgYGBhu2GDBlieKI8cOBA3njjDbZu3UqzZs0A6NOnT5EP/vL7F86YMYOePXsCUKVKFZ555plCy2dlZfHNN9+wZcsWw9xK/v7+7Nixg5kzZ9K8efMC24wfP57Q0FBDe/SAgACmT59O8+bNCQsLIy4ujuXLl7N582Zat25t2Ge+/OZXrq6uBfokBAQE8N133xlef/nll3h7ezNjxgwURaF69epcvnyZoUOHMmLECNLT05kzZw4LFy6kVatWQN5Nt5eX1/+1d+9xUZb5/8ffAwiiHA0FRIwSzENiIm6h37I8ZsaaX8ssV9TMTM2tzNbUioo1zLV+tmpsWR5add0srR6lkpJ0ME0zIFPURFvUUNcTBznD/fvDLxMjkIzJ3KO+no/HPB7MPdc992cucZj3XPd1X9bnyM7O1uLFi5Wdna2WLVta+3j9+vVavHixXn755RqvMSUlRTt37tTBgwetczXfffdddezYUdu3b1e3bt00fPhwzZ8/XwkJCZLOjS7s2LFDy5YtkyTNnz9fXbp0sXn+RYsWKTQ0VPv27VPbtm1rfc1V7rvvPj388MOSpISEBG3YsEHz5s3TG2+8oRUrVqi4uFjvvvuumjZtaj1ebGysXnnlFQUGBsrT01MlJSUKCgqyPueyZctUWVmpt99+2zoCsHjxYvn5+Sk1NVX9+vWTdG6UZ/78+XJ1dVW7du00cOBApaSkaOzYsWrWrJlcXV3l7e1t89zn69y5szp37my9n5CQoDVr1ujjjz+2CZSwHyEBANAgqk6HqDGSYEYxVwB7Jg1HRkZaf7ZYLAoKCtLx48frbFM1AtCpUyebbefvUyUzM1MlJSXWD8wXsn//fhUWFtqcfSCdOze+S5cute6TkZGhH374weZbdMMwVFlZqYMHD2rnzp1ydXWtNWBcSNeuXW3uZ2ZmKiYmxmbuTI8ePVRQUKDDhw/r9OnTKi0t1c0332x9vFmzZjaha+fOnaqoqLB+KK9SUlJS58TyzMxMhYaG2lzMpUOHDvLz81NmZqa6deumYcOGacqUKdq6datuueUWLV++XFFRUda1SDIyMrRp0yZ5eXnVeP6srCxrPee/5irnL4gbExOj9PR0a32dO3e2BoSqfqmsrNTevXvrHDnKyMjQ/v375e1tewnk4uJim6tbduzYUa7VvjQIDg6ucdGbCykoKNALL7ygTz/9VDk5OSovL1dRUREjCZcAIQEA0CCqVl2uERJYddku4eHhslgsyszM1ODBg2s8npmZKX9/fzVv3ty6rVGjRjZtLBaLKisrbbZVb1P14fj8befvU8XeiaNV57B/+umnCgkJsXnMw8Ojzn3GjRunP//5zzUea926tfbv329XDdVV/9B7qRQUFMjV1VU7duyw+eArqdYP8PUVFBSkXr16acWKFbrlllu0YsUKjR8/3ua4Vd/sny84ONj6c0O85roUFBSoa9euNU6TkmT37+mFTJkyRRs2bNCcOXMUHh4uT09P3XvvvTanNeHicLFqAECDqDMksOqyXa655hr17dtXb7zxhoqKimweO3r0qJYvX67777/f5lvwhhYRESFPT0+lpKTUq32HDh3k4eGh7OxshYeH29zquiR6VFSUdu/eXaN9eHi43N3d1alTJ1VWVtY5p6Hq6j0VFRf+fWvfvr22bNliM1qzefNmeXt7q1WrVmrTpo0aNWqkb7/91vr46dOntW/fPuv9Ll26qKKiQsePH69Rb12ny7Rv316HDh2yWTR29+7dOnPmjDp06GDdVjXvZMuWLTpw4ICGDRtm00+7du1SWFhYjePWJxhs3bq1xv2qU9vat2+vjIwMm8nimzdvlouLi3UUxd3dvUYfR0VF6aefflKLFi1q1GTPVbJqe+7zbd68WaNGjdLgwYPVqVMnBQUF2UyQxsUjJAAAGkT1kFD9w1d+Jd/w2Wv+/PkqKSlR//799eWXX+rQoUNav369+vbtq5CQkN+8qlBDaNy4saZOnaq//OUvevfdd5WVlaWtW7fqnXfeqbW9t7e3pkyZoieffFJLly5VVlaWvv/+e82bN09Lly6tdZ+pU6fqm2++0WOPPab09HT99NNP+uijj6znmYeFhWnkyJF66KGH9OGHH+rgwYNKTU3Ve++9J0m69tprZbFY9Mknn+i///2vdTSjNhMmTNChQ4c0adIk7dmzRx999JHi4+M1efJkubi4yMvLS2PGjNHTTz+tzz//XD/++KNGjRolF5dfP0a1bdtWw4cPV1xcnFavXq2DBw9q27ZtSkxM1Kefflrrcfv06aNOnTpp+PDh+v7777Vt2zbFxcWpZ8+eio6Otrb73//9X+Xn52v8+PG64447rHMepHNXvjp16pQeeOABbd++XVlZWUpOTtbo0aPrFZBWrVqlRYsWad++fYqPj9e2bdusfTx8+HA1btxYI0eO1I8//qhNmzZp0qRJGjFihPVUo7CwMP3www/au3evTpw4obKyMg0fPlwBAQEaNGiQvvrqK+u/zZ///GcdPnz4gjVVCQsL05dffqkjR47YXK2puoiICK1evVrp6enKyMjQgw8+aPdoBGrH6UYAgAZx3XXXacCAATrd9LQqyirk5n7uT06JKlTq4ib3yvILPIPjXMziZo4UERGh7777TvHx8Ro6dKhOnTqloKAg3XPPPYqPj2/wNRJq89xzz8nNzU3PP/+8fvnlFwUHB+vRRx+ts31CQoKaN2+uxMREHThwQH5+foqKitL06dNrbR8ZGakvvvhCM2bM0K233irDMNSmTRvrlX8kKSkpSdOnT9eECRN08uRJtW7d2vp8ISEhevHFF/XMM89o9OjRiouLq3MidkhIiNauXaunn35anTt3VrNmzTRmzBg9++yz1jZ/+9vfrKf2eHt766mnnlJubq7N8yxevFh//etf9dRTT+nIkSMKCAjQLbfcorvvvrvW41osFn300UeaNGmSbrvtNrm4uOjOO+/UvHnzbNp5e3srNjZW7733nhYtWmTzWMuWLbV582ZNnTpV/fr1U0lJia699lrdeeedNiGmLi+++KJWrlypCRMmKDg4WP/617+soxhNmjRRcnKyHn/8cXXr1k1NmjTRkCFD9Nprr1n3Hzt2rFJTUxUdHa2CggJt2rRJt99+u7788ktNnTrVGnBCQkLUu3dv+fj4XLCmKi+99JLGjRunNm3aqKSkpNZ5Oa+99poeeughde/eXQEBAZo6dary8vLqfQzUzWJcBssn5uXlydfXV7m5uXb9cgEAzJeUnqTjRbYTYCcWlCmg+NcpzHleEfLtNanB3+f37NmjP/3pT1q2bJl14idwtbJYLFqzZo3N+he48tX3fZDTjQAADcq/sX+NbQWNap+sCgBwDoQEAECDci91r7Hqcp5bozpaAwCcASEBANBg5s6dqyGdh+iz+Z/ZbC9g1WXAdIZhcKoR6kRIAAA0mNatW0uqeRnUvHpMqAQAmId3aQBAg7FeBvXI+asuO/01MwDgqkZIAAA0mDZt2kiSinKLVJT360Jg+eI65gDgzAgJAIAG07RpU+tqs9VHEwoICQDg1AgJAIAGVX3l5SqsugwAzo2QAABoULWFhHJVqtjV3aySAAAXQEgAADSo/v37a8jIIQppH2KzvdCNkOAoYWFhmjt3rtllALiMEBIAAA1q2LBhSvx/iQq/JdxmexELqtVLbGys7rzzzlof++qrr2SxWPTDDz/Y9ZwWi0UffvjhJagOwJWKkAAAaHD+jf1rbGMkoX7GjBmjDRs26PDhwzUeW7x4saKjoxUZGWlCZQCuZIQEAECDcyl20dG9R1VeWm7dVuTiamJFl4+7775bzZs315IlS2y2FxQUaNWqVRozZow++OADdezYUR4eHgoLC9Orr75a5/OFhYVJkgYPHiyLxWK9n5WVpUGDBikwMFBeXl7q1q2bNm7caLNvTk6OBg4cKE9PT1133XVasWJFjVOZzpw5o4cffljNmzeXj4+PevXqpYyMjEvRFQAciJAAAGhwEeER+sfof+hE9gnrtkInCglnz56t81ZcXFzvtkVFRfVqaw83NzfFxcVpyZIlMoxfF6FbtWqVKioq1L59ew0dOlTDhg3Tzp079cILL+i5556rESqqbN++XdK5UYicnBzr/YKCAt11111KSUlRWlqa7rzzTsXGxio7O9u6b1xcnH755Relpqbqgw8+0FtvvaXjx4/bPP99992n48ePa926ddqxY4eioqLUu3dvnTplu6AeAOdGSAAANLhWrVpJkgpOFFi3Fbo4z58gLy+vOm9DhgyxaduiRYs62w4YMMCmbVhYWK3t7PXQQw8pKytLX3zxhXXb4sWLNWTIEL311lvq3bu3nnvuObVt21ajRo3SY489pr/97W+1Plfz5s0lSX5+fgoKCrLe79y5s8aNG6cbb7xRERERSkhIUJs2bfTxxx9Lkvbs2aONGzdq4cKFuvnmmxUVFaW3337bJhh9/fXX2rZtm1atWqXo6GhFRERozpw58vPz0/vvv2/36wZgHud5hwYAXLFatmwpSco/kW/dVmQxq5rLT7t27dS9e3ctWrRIkrR//3599dVXGjNmjDIzM9WjRw+b9j169NBPP/2kioqKeh+joKBAU6ZMUfv27eXn5ycvLy9lZmZaRxL27t0rNzc3RUVFWfcJDw+Xv/+v800yMjJUUFCga665xiYUHTx4UFlZWb+nCwA4mJvZBQAArnzBwcGSnDckFBQU1PmYq6vtaVHnn15Tnct5oyM///zz76qrujFjxmjSpElasGCBFi9erDZt2qhnz56X7PmnTJmiDRs2aM6cOQoPD5enp6fuvfdelZbWf+G7goICBQcHKzU1tcZjfn5+l6xWAA2PkAAAaHC1jSQUyqirucM1bdrU9LYXMnToUD3++ONasWKF3n33XY0fP14Wi0Xt27fX5s2bbdpu3rxZbdu2rRFwqjRq1KjGKMPmzZs1atQoDR48WNK5D/zVQ84NN9yg8vJypaWlqWvXrpLOjWicPn3a2iYqKkpHjx6Vm5ubdUI0gMsTpxsBABpcrSHBqP+pMDg3b+L+++/XtGnTlJOTo1GjRkmSnnrqKaWkpCghIUH79u3T0qVLNX/+fE2ZMqXO5woLC1NKSoqOHj1q/ZAfERGh1atXKz09XRkZGXrwwQdVWVlp3addu3bq06ePHnnkEW3btk1paWl65JFH5OnpKYvl3LBQnz59FBMTo3vuuUefffaZfv75Z33zzTeaMWOGvvvuu4brHACXHCEBANDgrCHhZLXTjURIsNeYMWN0+vRp9e/f39qnUVFReu+997Ry5UrdeOONev755/XSSy9ZQ0RtXn31VW3YsEGhoaHq0qWLJOm1116Tv7+/unfvrtjYWPXv399m/oEkvfvuuwoMDNRtt92mwYMHa+zYsfL29lbjxo0lnVukbe3atbrttts0evRotW3bVsOGDdN//vMfBQYGNkynAGgQFqP69dScVF5ennx9fZWbmysfHx+zywEA2Omnn37S7P83WzlNc9Ttf7tJktzkohknzl0SNc8rQr69JjX4+/yePXv0pz/9ScuWLVO7du0a7DhXi8OHDys0NFQbN25U7969zS4HQD3U933QrpGEpKQkRUZGysfHRz4+PoqJidG6devqbL969WpFR0fLz89PTZs21U033aR//vOf9hwSAHAFiIiI0N///ndrQJCkclWqzOI8ayXgwj7//HN9/PHHOnjwoL755hsNGzZMYWFhuu2228wuDcAlZtfE5VatWmnWrFmKiIiQYRhaunSpBg0apLS0NHXs2LFG+2bNmmnGjBlq166d3N3d9cknn2j06NFq0aKF+vfvf8leBADA+Xm6ecrN4qZy49dVlwsbeci3tNDEqmCPsrIyTZ8+XQcOHJC3t7e6d++u5cuXq1GjRmaXBuASsyskxMbG2tyfOXOmkpKStHXr1lpDwu23325z//HHH9fSpUv19ddfExIA4Cpz8uRJ5f0nTy7XuKhx03PnsBe5ERIuJ/379+fvN3CVuOiJyxUVFVq5cqXOnj2rmJiYC7Y3DEMpKSnau3fvBYclS0pKlJeXZ3MDAFzeevfurdnDZuvQD4es2wpduRI3ADgju9+dd+7cqZiYGBUXF8vLy0tr1qxRhw4d6myfm5urkJAQlZSUyNXVVW+88Yb69u37m8dITEzUiy++aG9pAAAn1rJlS2VkZNguqObm2JBQtdiZPSsRA8CVpKysTFLNxR/PZ/dIwg033KD09HR9++23Gj9+vEaOHKndu3fX2d7b21vp6enavn27Zs6cqcmTJ9e6EmN106ZNU25urvV26NCh32wPAHB+ta6V4OLYkFC16u/hw4cdelwAcBZpaWmSpODg4N9sZ/e7s7u7u8LDwyVJXbt21fbt2/X666/rzTffrLW9i4uLtf1NN92kzMxMJSYm1pivUJ2Hh4c8PDzsLQ0A4MRqCwlF/7cIl6MEBAQoKipKCxYsUGBgoPX6/gBwpSsrK1NaWprmzZunwYMHy9vb+zfb/+6vcCorK1VSUtJg7QEAV4baRxIcW4OLi4vi4+P1wAMP6OGHH3bswQHACQwePFjTpk27YDu7QsK0adM0YMAAtW7dWvn5+VqxYoVSU1OVnJwsSYqLi1NISIgSExMlnZtbEB0drTZt2qikpERr167VP//5TyUlJV3ESwIAXM6qhrbNHEmQpJCQEG3cuFHZ2dkqLy+/8A4AcAVwcXFRcHDwBUcQqtgVEo4fP664uDjl5OTI19dXkZGRSk5Otk5Ezs7OtpkEcfbsWU2YMEGHDx+Wp6en2rVrp2XLlun++++357AAgCtArSMJMkyppfqpswCAmiyGYZjzDm2HvLw8+fr6Kjc3Vz4+PmaXAwC4CCdOnNALL72gfcY+9XiwhyQpxLWJHj52WHleEfLtNYn3eQBwEg4+GxQAcLUKCAjQ/L/P1x1/usO6rdCoNLEiAEBdCAkAAIfycvey/lxYWWZiJQCAuhASAAAOc/LkSZ0+cFoFpwokSSWqUAV/igDA6fDODABwmFGjRin+3njt/XqvdVtRI3cTKwIA1IaQAABwmFqvcOTG4pkA4GwICQAAh6l1rQTXRmaVAwCoAyEBAOAwtY4kuNq1ZA8AwAEICQAAh6k9JLiaVQ4AoA6EBACAw1SFhIITBdZtRS6EBABwNoQEAIDDWEPCqQJVVpxbSK3IYjGzJABALTgRFADgMM2bN9fjjz+uPWV7VFFeIRdXFxWSEQDA6TCSAABwGFdXV82dO1d3P3y3Gnmcu6pRocUwuSoAwPkICQAAh/N297b+XCRCAgA4G0ICAMChTp06pRP7T+jM0TOSpEKjwtyCAAA1EBIAAA41ffp0TblnitI+SZMkFRESAMDpEBIAAA51/loJxUY5JxwBgJMhJAAAHOr8kFApQ0WujcwsCQBwHkICAMChgoODJdmuulzMqssA4FQICQAAhzp/JEGSCgkJAOBUCAkAAIeqCglnT59VRfm5SctFLoQEAHAmhAQAgEM1b95cLi4ukiEVnimUJBW5sOwyADgTN7MLAABcXVxcXDR9+nSlnU6Tm/u5P0PFFkICADgTRhIAAA6XkJCgPz7yR3n6eEqSCk2uBwBgi5AAADCFp5un9eciVZpYCQDgfIQEAIDD/fe//9Wxn44p7795kqRig5AAAM6EkAAAcLinn35aT9/ztH5Y/4MkyWBKAgA4FUICAMDhrrnmGklSYR6zEQDAGRESAAAOVxUSinKLTK4EAFAbu0JCUlKSIiMj5ePjIx8fH8XExGjdunV1tl+4cKFuvfVW+fv7y9/fX3369NG2bdt+d9EAgMubdSQhl5EEAHBGdoWEVq1aadasWdqxY4e+++479erVS4MGDdKuXbtqbZ+amqoHHnhAmzZt0pYtWxQaGqp+/frpyJEjl6R4AMDlyTqSkMdIAgA4I7sWU4uNjbW5P3PmTCUlJWnr1q3q2LFjjfbLly+3uf/222/rgw8+UEpKiuLi4i6iXADAlYCRBABwbhe94nJFRYVWrVqls2fPKiYmpl77FBYWqqysTM2aNfvNdiUlJSopKbHez8vLu9gyAQBOiDkJAODc7A4JO3fuVExMjIqLi+Xl5aU1a9aoQ4cO9dp36tSpatmypfr06fOb7RITE/Xiiy/aWxoA4DIREhKiJyY/oV2ltZ+uCgAwl8UwDMOeHUpLS5Wdna3c3Fy9//77evvtt/XFF19cMCjMmjVLs2fPVmpqqiIjI3+zbW0jCaGhocrNzZWPj4895QIAnFjClgRVqlLXul+r0dGjeZ8HACdh90iCu7u7wsPDJUldu3bV9u3b9frrr+vNN9+sc585c+Zo1qxZ2rhx4wUDgiR5eHjIw8PD3tIAAJcZTzdPnS0/a3YZAIDz/O51EiorK22+9T/f7NmzlZCQoPXr1ys6Ovr3Hg4AcIU4cuSITmadVHFBsdmlAADOY9dIwrRp0zRgwAC1bt1a+fn5WrFihVJTU5WcnCxJiouLU0hIiBITEyVJr7zyip5//nmtWLFCYWFhOnr0qCTJy8tLXl5el/ilAAAuJwMHDlRGRoaGvzZcN9x2g9nlAACqsSskHD9+XHFxccrJyZGvr68iIyOVnJysvn37SpKys7Pl4vLr4ERSUpJKS0t177332jxPfHy8Xnjhhd9fPQDgssUVjgDAedkVEt55553ffDw1NdXm/s8//2xvPQCAqwRrJQCA8/rdcxIAALgYrLoMAM6LkAAAMAUjCQDgvAgJAABTMCcBAJwXIQEAYApGEgDAedm9mBoAAJfCTTfdpHF/HqdjPsfMLgUAcB5GEgAApoiMjNRLiS/pprtuMrsUAMB5CAkAANM0cWtidgkAgFoQEgAApjAMQ8ePHNcve39RZUWl2eUAAKphTgIAwBSGYSgiPEKVlZVqv6692eUAAKphJAEAYAoXFxf5+/tLkgpyC0yuBgBQHSEBAGCaqsugns09a3IlAIDqCAkAANNUhYT8M/kmVwIAqI6QAAAwDSMJAOCcCAkAANNUhQTmJACAcyEkAABMQ0gAAOfEJVABAKbp1auXjhUdU4sbWmj9svVmlwMA+D+EBACAaQYOHKjQP4Tq++zvzS4FAFANpxsBAEzVxK2J2SUAAM5DSAAAmKasrEwnc07qlwO/mF0KAKAaTjcCAJgmMzNTt3S+Rd7+3maXAgCohpEEAIBpuLoRADgnQgIAwDRVIcGoNEyuBABQHSEBAGCaxo0bq0kTJi4DgLMhJAAATFU1mgAAcB6EBACAqQgJAOB8CAkAAFMREgDA+RASAACmuu+++xQ3Ls7sMgAA1VgMw3D6S0rk5eXJ19dXubm58vHxMbscAMAltvvIbnVs1ZH3eQBwEnaNJCQlJSkyMlI+Pj7y8fFRTEyM1q1bV2f7Xbt2aciQIQoLC5PFYtHcuXN/b70AgCtQEzeucAQAzsSukNCqVSvNmjVLO3bs0HfffadevXpp0KBB2rVrV63tCwsLdf3112vWrFkKCgq6JAUDAK4sxcXFOvHLCbPLAABU42ZP49jYWJv7M2fOVFJSkrZu3aqOHTvWaN+tWzd169ZNkvTMM8/8jjIBAFeq3bt365OPPzG7DABANRc9cbmiokIrV67U2bNnFRMTcylrUklJifLy8mxuAIArU1RUlCZPnmx2GQCAauwOCTt37pSXl5c8PDz06KOPas2aNerQocMlLSoxMVG+vr7WW2ho6CV9fgAAAAB1szsk3HDDDUpPT9e3336r8ePHa+TIkdq9e/clLWratGnKzc213g4dOnRJnx8AAABA3eyakyBJ7u7uCg8PlyR17dpV27dv1+uvv64333zzkhXl4eEhDw+PS/Z8AAAAAOrvdy+mVllZqZKSkktRCwAAAAAnYNdIwrRp0zRgwAC1bt1a+fn5WrFihVJTU5WcnCxJiouLU0hIiBITEyVJpaWl1lORSktLdeTIEaWnp8vLy8s6GgEAAADAudgVEo4fP664uDjl5OTI19dXkZGRSk5OVt++fSVJ2dnZcnH5dXDil19+UZcuXaz358yZozlz5qhnz55KTU29NK8AAAAAwCVlMQzDMLuIC8nLy5Ovr69yc3Pl4+NjdjkAgEuM93kAcC6/e04CAAAAgCsLIQEAAACADUICAAAAABuEBAAAAAA2CAkAAAAAbBASAAAAANggJAAAAACwQUgAAAAAYIOQAAAAAMAGIQEAAACADUICAAAAABuEBAAAAAA2CAkAAAAAbBASAAAAANggJAAAAACw4WZ2AfVhGIYkKS8vz+RKAAANoer9ver9HgBgrssiJJw8eVKSFBoaanIlAICGlJ+fL19fX7PLAICr3mUREpo1ayZJys7O5o/HBeTl5Sk0NFSHDh2Sj4+P2eU4Nfqq/uir+qOv6q96X3l7eys/P18tW7Y0uywAgC6TkODicm7qhK+vL39068nHx4e+qif6qv7oq/qjr+qvqq/4EggAnAcTlwEAAADYICQAAAAAsHFZhAQPDw/Fx8fLw8PD7FKcHn1Vf/RV/dFX9Udf1R99BQDOy2JwvTkAAAAA1VwWIwkAAAAAHIeQAAAAAMAGIQEAAACADUICAAAAABtOExIWLFigsLAwNW7cWDfffLO2bdv2m+1XrVqldu3aqXHjxurUqZPWrl3roErNZ09fLVy4ULfeeqv8/f3l7++vPn36XLBvryT2/l5VWblypSwWi+65556GLdCJ2NtXZ86c0cSJExUcHCwPDw+1bdv2qvl/aG9fzZ07VzfccIM8PT0VGhqqJ598UsXFxQ6q1jxffvmlYmNj1bJlS1ksFn344YcX3Cc1NVVRUVHy8PBQeHi4lixZ0uB1AgBqYTiBlStXGu7u7saiRYuMXbt2GWPHjjX8/PyMY8eO1dp+8+bNhqurqzF79mxj9+7dxrPPPms0atTI2Llzp4Mrdzx7++rBBx80FixYYKSlpRmZmZnGqFGjDF9fX+Pw4cMOrtzx7O2rKgcPHjRCQkKMW2+91Rg0aJBjijWZvX1VUlJiREdHG3fddZfx9ddfGwcPHjRSU1ON9PR0B1fuePb21fLlyw0PDw9j+fLlxsGDB43k5GQjODjYePLJJx1cueOtXbvWmDFjhrF69WpDkrFmzZrfbH/gwAGjSZMmxuTJk43du3cb8+bNM1xdXY3169c7pmAAgJVThIQ//OEPxsSJE633KyoqjJYtWxqJiYm1th86dKgxcOBAm20333yzMW7cuAat0xnY21fnKy8vN7y9vY2lS5c2VIlO42L6qry83Ojevbvx9ttvGyNHjrxqQoK9fZWUlGRcf/31RmlpqaNKdBr29tXEiRONXr162WybPHmy0aNHjwat09nUJyT85S9/MTp27Giz7f777zf69+/fgJUBAGpj+ulGpaWl2rFjh/r06WPd5uLioj59+mjLli217rNlyxab9pLUv3//OttfKS6mr85XWFiosrIyNWvWrKHKdAoX21cvvfSSWrRooTFjxjiiTKdwMX318ccfKyYmRhMnTlRgYKBuvPFGvfzyy6qoqHBU2aa4mL7q3r27duzYYT0l6cCBA1q7dq3uuusuh9R8Obla39sBwBm5mV3AiRMnVFFRocDAQJvtgYGB2rNnT637HD16tNb2R48ebbA6ncHF9NX5pk6dqpYtW9b4Q3yluZi++vrrr/XOO+8oPT3dARU6j4vpqwMHDujzzz/X8OHDtXbtWu3fv18TJkxQWVmZ4uPjHVG2KS6mrx588EGdOHFC//M//yPDMFReXq5HH31U06dPd0TJl5W63tvz8vJUVFQkT09PkyoDgKuP6SMJcJxZs2Zp5cqVWrNmjRo3bmx2OU4lPz9fI0aM0MKFCxUQEGB2OU6vsrJSLVq00FtvvaWuXbvq/vvv14wZM/SPf/zD7NKcTmpqql5++WW98cYb+v7777V69Wp9+umnSkhIMLs0AADqZPpIQkBAgFxdXXXs2DGb7ceOHVNQUFCt+wQFBdnV/kpxMX1VZc6cOZo1a5Y2btyoyMjIhizTKdjbV1lZWfr5558VGxtr3VZZWSlJcnNz0969e9WmTZuGLdokF/N7FRwcrEaNGsnV1dW6rX379jp69KhKS0vl7u7eoDWb5WL66rnnntOIESP08MMPS5I6deqks2fP6pFHHtGMGTPk4sJ3NVXqem/38fFhFAEAHMz0v07u7u7q2rWrUlJSrNsqKyuVkpKimJiYWveJiYmxaS9JGzZsqLP9leJi+kqSZs+erYSEBK1fv17R0dGOKNV09vZVu3bttHPnTqWnp1tvf/zjH3XHHXcoPT1doaGhjizfoS7m96pHjx7av3+/NUhJ0r59+xQcHHzFBgTp4vqqsLCwRhCoCleGYTRcsZehq/W9HQCcktkzpw3j3CUFPTw8jCVLlhi7d+82HnnkEcPPz884evSoYRiGMWLECOOZZ56xtt+8ebPh5uZmzJkzx8jMzDTi4+Ovqkug2tNXs2bNMtzd3Y3333/fyMnJsd7y8/PNegkOY29fne9qurqRvX2VnZ1teHt7G4899pixd+9e45NPPjFatGhh/PWvfzXrJTiMvX0VHx9veHt7G//617+MAwcOGJ999pnRpk0bY+jQoWa9BIfJz8830tLSjLS0NEOS8dprrxlpaWnGf/7zH8MwDOOZZ54xRowYYW1fdQnUp59+2sjMzDQWLFjAJVABwCROERIMwzDmzZtntG7d2nB3dzf+8Ic/GFu3brU+1rNnT2PkyJE27d977z2jbdu2hru7u9GxY0fj008/dXDF5rGnr6699lpDUo1bfHy84ws3gb2/V9VdTSHBMOzvq2+++ca4+eabDQ8PD+P66683Zs6caZSXlzu4anPY01dlZWXGCy+8YLRp08Zo3LixERoaakyYMME4ffq04wt3sE2bNtX6/lPVPyNHjjR69uxZY5+bbrrJcHd3N66//npj8eLFDq8bAGAYFsNgvBsAAADAr0yfkwAAAADAuRASAAAAANggJAAAAACwQUgAAAAAYIOQAAAAAMAGIQEAAACADUICAAAAABuEBAAAAAA2CAnAJTJq1Cjdc889Dj/ukiVLZLFYZLFY9MQTT1i3h4WFae7cub+5b9V+fn5+DVojAAC4vLiZXQBwObBYLL/5eHx8vF5//XWZtYC5j4+P9u7dq6ZNm9q1X05Ojv79738rPj6+gSoDAACXI0ICUA85OTnWn//973/r+eef1969e63bvLy85OXlZUZpks6FmKCgILv3CwoKkq+vbwNUBAAALmecbgTUQ1BQkPXm6+tr/VBedfPy8qpxutHtt9+uSZMm6YknnpC/v78CAwO1cOFCnT17VqNHj5a3t7fCw8O1bt06m2P9+OOPGjBggLy8vBQYGKgRI0boxIkTF1V3YWGhHnroIXl7e6t169Z66623fk83AACAqwQhAWhAS5cuVUBAgLZt26ZJkyZp/Pjxuu+++9S9e3d9//336tevn0aMGKHCwkJJ0pkzZ9SrVy916dJF3333ndavX69jx45p6NChF3X8V199VdHR0UpLS9OECRM0fvx4mxEQAACA2hASgAbUuXNnPfvss4qIiNC0adPUuHFjBQQEaOzYsYqIiNDzzz+vkydP6ocffpAkzZ8/X126dNHLL7+sdu3aqUuXLlq0aJE2bdqkffv22X38u+66SxMmTFB4eLimTp2qgIAAbdq06VK/TAAAcIVhTgLQgCIjI60/u7q66pprrlGnTp2s2wIDAyVJx48flyRlZGRo06ZNtc5vyMrKUtu2bS/6+FWnSFUdCwAAoC6EBKABNWrUyOa+xWKx2VZ11aTKykpJUkFBgWJjY/XKK6/UeK7g4OBLcvyqYwEAANSFkAA4kaioKH3wwQcKCwuTmxv/PQEAgDmYkwA4kYkTJ+rUqVN64IEHtH37dmVlZSk5OVmjR49WRUWF2eUBAICrBCEBcCItW7bU5s2bVVFRoX79+qlTp0564okn5OfnJxcX/rsCAADHsBhmLREL4JJYsmSJnnjiCZ05c8aU/QEAwJWHryaBK0Bubq68vLw0depUu/bz8vLSo48+2kBVAQCAyxUjCcBlLj8/X8eOHZMk+fn5KSAgoN777t+/X9K5y7Ned911DVIfAAC4/BASAAAAANjgdCMAAAAANggJAAAAAGwQEgAAAADYICQAAAAAsEFIAAAAAGCDkAAAAADABiEBAAAAgA1CAgAAAAAb/x9aF4I7lJ59LwAAAABJRU5ErkJggg==",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/plain": [
+ "(, )"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "t_eval = [0, 3700]\n",
+ "solution = model.predict([], t_eval) # No inputs i.e []\n",
+ "\n",
+ "# Plot with PyBaMM\n",
+ "solution.plot_voltage_components()"
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/notebooks/getting_started/maximum_a_posteriori.ipynb b/examples/notebooks/getting_started/maximum_a_posteriori.ipynb
new file mode 100644
index 000000000..a30bf1a84
--- /dev/null
+++ b/examples/notebooks/getting_started/maximum_a_posteriori.ipynb
@@ -0,0 +1,908 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "expmkveO04pw"
+ },
+ "source": [
+ "## Maximum a Posteriori Parameter Inference\n",
+ "\n",
+ "In this notebook, we introduce the Maximum a Posteriori (MAP), which extends Maximum Likelihood Estimation (MLE) by inclusion of a prior $p(\\theta)$ into the cost function. To include this prior information, we construct a Bayesian Posterior with Bayesian's Theorem given as,\n",
+ "\n",
+ "$$\n",
+ "P(\\theta|D) = \\frac{P(D|\\theta)P(\\theta)}{P(D)}\n",
+ "$$\n",
+ "\n",
+ "where, \n",
+ "$~$ \n",
+ "$P(\\theta|D)$ represents the posterior and can be read as \"the probability of the parameters $(\\theta)$ given the data $(D)$\", \n",
+ "$P(D|\\theta)$ is the probability of the data given the parameters, commonly called the likelihood, \n",
+ "$P(\\theta)$ represents the probability of the parameters commonly called the prior, \n",
+ "$P(D)$ is the probability of the data and is commonly called the marginal probability. \n",
+ "\n",
+ "However, as the marginal probability is commonly difficult to compute and represents a normalisation constant, in the case of MAP this term is forgone and the proportional posterior is optmised instead. This is given as,\n",
+ "\n",
+ "$$\n",
+ "P(\\theta|D) \\propto P(D|\\theta)P(\\theta)\n",
+ "$$\n",
+ "\n",
+ "### Setting up the Environment\n",
+ "\n",
+ "Before we begin, we need to ensure that we have all the necessary tools. We will install and import PyBOP as well as upgrade dependencies. We also fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "X87NUGPW04py",
+ "outputId": "0d785b07-7cff-4aeb-e60a-4ff5a669afbf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "import time\n",
+ "\n",
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\"\n",
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "5XU-dMtU04p2"
+ },
+ "source": [
+ "### Creating the model\n",
+ "\n",
+ "To demonstrate the MAP process, we will first need a forward model and data to run parameter inference on. As we are introducing this as a simple example, we will use the PyBOP forward model with white noise as the reference. This requires defining a parameter set and the model itself."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameter_set = pybop.ParameterSet.pybamm(\"Chen2020\")\n",
+ "model = pybop.lithium_ion.SPM(parameter_set=parameter_set)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Simulating Forward Model\n",
+ "\n",
+ "We can now simulate the model using the `model.predict` method. This method is a light wrapper on the `Pybamm.Simulation` class and be used as such. For this example, we use the default current function for the `Chen2020` parameter set (5A) to generate the voltage data. As the goal is to investigate the MAP method, we will generate a range of observations from the forward model. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "sBasxv8U04p3"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Number of observations in each trajectory: [2, 4, 8, 16, 32, 64, 128, 256]\n"
+ ]
+ }
+ ],
+ "source": [
+ "n = 8 # Number of time-series trajectories\n",
+ "observations = [\n",
+ " 2**j for j in range(1, n + 1)\n",
+ "] # Number of observations in each trajectory\n",
+ "values = []\n",
+ "for i in observations:\n",
+ " t_eval = np.linspace(0, 10, i)\n",
+ " values.append(model.predict(t_eval=t_eval)) # predict and store\n",
+ "\n",
+ "print(f\"Number of observations in each trajectory: {observations}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Adding noise to synthetic voltage data\n",
+ "\n",
+ "To make the parameter inference more realistic, we add gaussian noise with zero mean to the data. While this doesn't truly represent the challenge of parameter inference with experimental data, this does ensure the cost landscape curvature isn't perfect. For a more realistic representation of experimental data, a different noise function could be used. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "sigma = 0.005\n",
+ "corrupt_values = values[1][\"Voltage [V]\"].data + np.random.normal(\n",
+ " 0, sigma, len(values[1][\"Voltage [V]\"].data)\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Creating the PyBOP dataset\n",
+ "\n",
+ "The reference trajectory needs to be included in the optimisation task, which is handed within the `Dataset` class. In this situation, this class is composed of the time, current, and the noisy voltage data; however, if we were performing parameter inference from a different measured signal, such as 'Cell Temperature', that would need to be included."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "zuvGHWID04p_"
+ },
+ "outputs": [],
+ "source": [
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": values[1][\"Time [s]\"].data,\n",
+ " \"Current function [A]\": values[1][\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": corrupt_values,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "ffS3CF_704qA"
+ },
+ "source": [
+ "### Constructing Parameters Class\n",
+ "Next, we need to select the forward model parameters for inference. The PyBOP parameters class composes as many individual PyBOP parameters as the user wants (whether these parameters can be identified is left out of this example). This class requires the parameter name, which must resolve to a parameter within the `ParameterSet` defined above. Additionally, this class can accept an `initial_value` which will be used by the optimiser, as well as bounds. For this example, we will provide a `prior` to the parameter class, which will be used later by the MAP process."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "WPCybXIJ04qA"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Default bounds applied based on prior distribution.\n",
+ "Default bounds applied based on prior distribution.\n"
+ ]
+ }
+ ],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Negative particle radius [m]\",\n",
+ " prior=pybop.Gaussian(4e-6, 1e-6),\n",
+ " true_value=parameter_set[\"Negative particle radius [m]\"],\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive particle radius [m]\",\n",
+ " prior=pybop.Gaussian(5e-6, 1e-6),\n",
+ " true_value=parameter_set[\"Positive particle radius [m]\"],\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "n4OHa-aF04qA"
+ },
+ "source": [
+ "### Setting up the Fitting Problem, Likelihood, and Posterior\n",
+ "\n",
+ "With the datasets and parameters defined, we can now construct the `FittingProblem` which composes the model, parameters, and dataset providing a single class with the required information for simulating and assessing the forward model. \n",
+ "\n",
+ "As described in the introduction to this notebook, the MAP method uses the non-normalised posterior for optimisation. This is defined in PyBOP as the `LogPosterior` class, and has arguments for the likelihood and prior functions. If a prior is not provided, the parameter priors are used as default. In this example, we will use a `GaussianLogLikelihoodKnownSigma` likelihood function, and the default priors set above. For numerical reasons, we optimise the log of the posterior; however this doesn't affect the final results."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "etMzRtx404qA"
+ },
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "likelihood = pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=sigma)\n",
+ "posterior = pybop.LogPosterior(likelihood)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "caprp-bV04qB"
+ },
+ "source": [
+ "### Plotting the Posterior components\n",
+ "\n",
+ "Next, to investigate the individual components of the Posterior. The `LogPosterior` class provides attributes of the prior and likelihood. To investigate the contributions of each to the Posterior we plot the landscapes across a selected parameter range."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "-9OVt0EQ04qB"
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "steps = 10 # Number of discretisation points\n",
+ "bounds = np.asarray([[1e-6, 9e-6], [1e-6, 9e-6]])\n",
+ "pybop.plot.contour(posterior.prior, bounds=bounds, steps=steps, title=\"Log Prior\")\n",
+ "pybop.plot.contour(\n",
+ " posterior.likelihood, bounds=bounds, steps=steps, title=\"Log Likelihood\"\n",
+ ")\n",
+ "pybop.plot.contour(posterior, bounds=bounds, steps=steps, title=\"Log Posterior\");"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "As expected, the prior represents a two-dimensional gaussian distribution with a mode at $[4e-6,5e-6]$. The likelihood appears to have a banded shape with ridge of optimal points traversing the higher parameter values. Finally, the Posterior forms the combination of the two. This is the benefit of the MAP process, as it allows for previous information to be included in the parameter inference task. Previous knowledge is encapsulated within the prior function and influences the Posterior, depending on the magnitude of the likelihood function.\n",
+ "\n",
+ "To show how this is used within a PyBOP optimisation task, we select the Covariance Matrix Adaptation Evolution Strategy optimiser and run the optimisation. We can then plot the parameter trajectories to investigate how the optimiser performed."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [4.65599972e-06 4.66268190e-06]\n",
+ " Optimised parameters: [5.35425483e-06 5.58415228e-06]\n",
+ " Final cost: 41.54150469038368\n",
+ " Optimisation time: 10.932653188705444 seconds\n",
+ " Number of iterations: 21\n",
+ " SciPy result available: No\n",
+ "Inferred Parameters: [5.35425483e-06 5.58415228e-06] in 10.933147192001343 seconds\n",
+ "True Parameters: [5.86e-06 5.22e-06]\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "optim = pybop.CMAES(\n",
+ " posterior,\n",
+ " min_iterations=20,\n",
+ " max_iterations=100,\n",
+ ")\n",
+ "start_time = time.time()\n",
+ "results = optim.run()\n",
+ "print(f\"Inferred Parameters: {results.x} in {time.time() - start_time} seconds\")\n",
+ "print(f\"True Parameters: {parameters.true_value()}\")\n",
+ "pybop.plot.parameters(optim);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "As expected, the optimisation process returns values close to the true optimal. In this case, as the synthetic data is drawn from the forward model (with additive noise), the underlying structure is close to identical. This gives the optimisation process a very well posed landscape, and as such it finds the correct parameter values. \n",
+ "\n",
+ "This is not always the case, especially in inference tasks with low-quality data, sloppy parameters, or poor excitation. In these cases, the prior influence can help 'steer' the optimisation process towards the combination of the likelihood and the user's prior knowledge of the parameters."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "-4pZsDmS04qC"
+ },
+ "source": [
+ "## Investigating how the number of observations effects the Posterior\n",
+ "\n",
+ "We've seen above that the proportional posterior can be represented from its components, the log-likelihood and log-prior. Next, to better understand when each of these terms can become dominating within the parameter inference problem we vary the number of measurement observations (i.e. the number of samples in the dataset) and inspect the construct posterior.\n",
+ "\n",
+ "This is completed below with an increasing series of $2^n$, where $n$ is set above in our original creation of the trajectories. This will give us a visual representation of how the posterior changes with increasing observations."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "Hgz8SV4i04qC",
+ "outputId": "e1e42ae7-5075-4c47-dd68-1b22ecc170f6"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Fixed Sigma for output 1: 0.005\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "for i, val in enumerate(values): # Loop through trajectories\n",
+ " dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": val[\"Time [s]\"].data,\n",
+ " \"Current function [A]\": val[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": val[\"Voltage [V]\"].data\n",
+ " + np.random.normal(0, sigma, len(val[\"Voltage [V]\"].data)),\n",
+ " }\n",
+ " )\n",
+ " problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ " likelihood = pybop.GaussianLogLikelihood(problem, sigma0=sigma)\n",
+ " posterior = pybop.LogPosterior(likelihood)\n",
+ " pybop.plot.contour(\n",
+ " posterior,\n",
+ " bounds=bounds,\n",
+ " steps=steps,\n",
+ " title=f\"Posterior with {observations[i]} observations\",\n",
+ " )"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "The above contour plots showcase the influence decay of the prior on the posterior as observations are increased. This is expected as prior knowledge on the posterior should be reduced as additional high fidelity observations are obtained. In the case of lower quality, or noisy data, the prior influence can maintain influence.\n",
+ "\n",
+ "The influence of the prior and likelihood on the posterior should be investigated during a parameter inference process, as presented above. This provides insight into how much influence prior knowledge has on the optimisation task, whether the likelihood function is well posed with smooth curvature, and finally the overall scale of the posterior."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Concluding Thoughts\n",
+ "\n",
+ "This notebook illustrates the process of parameter inference with the Maximum a Posteriori method. This process enables encapsulation of prior knowledge into the optimisation process with influence decay as observations of the system increase. This influence decay has been presented above across observations obtained from the set $({2^n \\mid n \\in \\mathbb{N}})$."
+ ]
+ }
+ ],
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/examples/notebooks/getting_started/optimiser_interface.ipynb b/examples/notebooks/getting_started/optimiser_interface.ipynb
new file mode 100644
index 000000000..7c3fb6ac5
--- /dev/null
+++ b/examples/notebooks/getting_started/optimiser_interface.ipynb
@@ -0,0 +1,319 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "# Interacting with PyBOP optimisers\n",
+ "\n",
+ "This notebook introduces two interfaces to interact with PyBOP's optimiser classes.\n",
+ "\n",
+ "### Set the Environment"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "# Import the necessary libraries\n",
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "Let's fix the random seed in order to generate consistent output during development, although this does not need to be done in practice."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "np.random.seed(8)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "## Setup the model, problem, and cost\n",
+ "\n",
+ "The code block below sets up the model, problem, and cost objects. For more information on this process, take a look at other notebooks in the examples directory."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Setting open-circuit voltage to default function\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Load the parameters\n",
+ "parameter_set = pybop.ParameterSet(\n",
+ " json_path=\"../../parameters/initial_ecm_parameters.json\"\n",
+ ")\n",
+ "parameter_set.import_parameters()\n",
+ "# Define the model\n",
+ "model = pybop.empirical.Thevenin(\n",
+ " parameter_set=parameter_set, options={\"number of rc elements\": 1}\n",
+ ")\n",
+ "\n",
+ "# Define the parameters\n",
+ "parameters = pybop.Parameter(\n",
+ " \"R0 [Ohm]\",\n",
+ " prior=pybop.Gaussian(0.0002, 0.0001),\n",
+ " bounds=[1e-4, 1e-2],\n",
+ ")\n",
+ "\n",
+ "# Generate synthetic data\n",
+ "t_eval = np.arange(0, 900, 2)\n",
+ "values = model.predict(t_eval=t_eval)\n",
+ "\n",
+ "# Form dataset\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": values[\"Voltage [V]\"].data,\n",
+ " }\n",
+ ")\n",
+ "\n",
+ "# Construct problem and cost\n",
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumSquaredError(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "## Interacting with the Optimisers\n",
+ "\n",
+ "Now that we have set up the required objects, we can introduce the two interfaces for interacting with PyBOP optimisers. These are:\n",
+ " \n",
+ "1. The direct optimiser (e.g. `pybop.XNES`)\n",
+ "2. The optimisation class (i.e. `pybop.Optimisation`)\n",
+ " \n",
+ "These two methods provide two equivalent ways of interacting with PyBOP's optimisers. The first method provides a direct way to select the Optimiser, with the second method being a more general method with a default optimiser (`pybop.XNES`) set if you don't provide an optimiser. \n",
+ "\n",
+ "First, the direct interface is presented. With this interface the user can select from the [list of optimisers](https://github.com/pybop-team/PyBOP?tab=readme-ov-file#supported-methods) supported in PyBOP and construct them directly. Options can be passed as kwargs, or through get() / set() methods in the case of PINTS-based optimisers."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.00032648]\n",
+ " Optimised parameters: [0.00099965]\n",
+ " Final cost: 1.363466506257511e-09\n",
+ " Optimisation time: 1.6153881549835205 seconds\n",
+ " Number of iterations: 23\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optim_one = pybop.XNES(\n",
+ " cost, max_iterations=50\n",
+ ") # Direct optimiser class with options as kwargs\n",
+ "optim_one.set_max_iterations(\n",
+ " 50\n",
+ ") # Alternative set() / get() methods for PINTS optimisers\n",
+ "results = optim_one.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8",
+ "metadata": {},
+ "source": [
+ "Next, the `Optimisation` interface is less direct than the previous one, but provides a single class to work with across PyBOP workflows. The options are passed the same way as the above method, through kwargs or get() / set() methods."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Halt: No significant change for 15 iterations.\n",
+ "OptimisationResult:\n",
+ " Initial parameters: [0.00032648]\n",
+ " Optimised parameters: [0.00099985]\n",
+ " Final cost: 2.431998416403876e-10\n",
+ " Optimisation time: 1.972628116607666 seconds\n",
+ " Number of iterations: 25\n",
+ " SciPy result available: No\n"
+ ]
+ }
+ ],
+ "source": [
+ "optim_two = pybop.Optimisation(\n",
+ " cost, optimiser=pybop.XNES, max_iterations=50\n",
+ ") # Optimisation class with options as kwargs\n",
+ "optim_two.set_max_iterations(\n",
+ " 50\n",
+ ") # Alternative set() / get() methods for PINTS optimisers\n",
+ "results2 = optim_two.run()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10",
+ "metadata": {},
+ "source": [
+ "We can show the equivalence of these two methods by comparing the optimiser objects:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "11",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "True"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "isinstance(optim_one, type(optim_two.optimiser))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "12",
+ "metadata": {},
+ "source": [
+ "For completeness, we can show the optimiser solutions:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "13",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Estimated parameters x1: [0.00099965]\n",
+ "Estimated parameters x2: [0.00099985]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(\"Estimated parameters x1:\", results.x)\n",
+ "print(\"Estimated parameters x2:\", results2.x)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "14",
+ "metadata": {},
+ "source": [
+ "## Closing Comments\n",
+ "\n",
+ "As both of these API's provide access to the same optimisers, please use either as you prefer. A couple things to note:\n",
+ "\n",
+ "- If you are using a SciPy-based optimiser (`pybop.SciPyMinimize`, `pybop.SciPyDifferentialEvolution`), the `set()` / `get()` methods for the optimiser options are not currently supported. These optimisers require options to be passed as kwargs.\n",
+ "- The optimiser passed to `pybop.Optimisation` must not be a constructed object."
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/getting_started/transformation_introduction.ipynb b/examples/notebooks/getting_started/transformation_introduction.ipynb
new file mode 100644
index 000000000..c18e6f5c6
--- /dev/null
+++ b/examples/notebooks/getting_started/transformation_introduction.ipynb
@@ -0,0 +1,516 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "0",
+ "metadata": {},
+ "source": [
+ "# Introduction to Transformations\n",
+ "This example introduces the `pybop.BaseTransformation` class and it's instances. This class adds functionality for the cost and likelihood functions to be transformed into a separate search space. This search space is used by the optimiser and sampler classes during inference. These transformations can be both linear (`pybop.ScaledTransformation`) and non-linear (`pybop.LogTransformation`). By default, if transformations are applied, the sampling and optimisers will search in the transformed space.\n",
+ "\n",
+ "Transformation can be helpful when the difference in parameter magnitudes is large, or to create a search space that is better posed for the optimisation algorithm. Before we begin, we need to ensure that we have all the necessary tools. We will install and import PyBOP alongside any other package dependencies."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "1",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Users/engs2510/Documents/Git/Second_PyBOP/.nox/notebooks-overwrite/bin/python3: No module named pip\r\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "%pip install --upgrade pip ipywidgets -q\n",
+ "%pip install pybop -q\n",
+ "\n",
+ "import numpy as np\n",
+ "\n",
+ "import pybop\n",
+ "\n",
+ "pybop.plot.PlotlyManager().pio.renderers.default = \"notebook_connected\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2",
+ "metadata": {},
+ "source": [
+ "First, to showcase the transformation functionality, we need to construct the `pybop.Cost` class. This class needs the following objects:\n",
+ "- Model\n",
+ "- Dataset\n",
+ "- Parameters to identify\n",
+ "- Problem\n",
+ "\n",
+ "We will first construct the model, then the parameters and corresponding dataset. Once that is complete, the problem will be created. With the cost class created, we will showcase the different interactions users can have with the class. A small example with evaluation as well as computation is presented."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "model = pybop.lithium_ion.SPM()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4",
+ "metadata": {},
+ "source": [
+ "Now that we have the model constructed, let's define the parameters for identification. At this point, we define the corresponding transformations applied to each parameter. PyBOP allows for transformations to be applied at the individual parameter level, which is then combined for application on each cost call. Below we will apply a linear transformation using the pybop `ScaledTransformation` class. This class has arguments for a `coefficient` which defines the linear stretch or scaling of the search space, and `intercept` which defines the space shift. The equation for this transformation is:\n",
+ "\n",
+ "$$\n",
+ "y_{search} = m*x_{model}+b\n",
+ "$$\n",
+ "\n",
+ "where $m$ is the linear scale coefficient, $b$ is the intercept, $x_{model}$ is the model parameter space, and $y_{search}$ is the transformed space."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "5",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters = pybop.Parameters(\n",
+ " pybop.Parameter(\n",
+ " \"Negative electrode active material volume fraction\",\n",
+ " initial_value=0.6,\n",
+ " bounds=[0.35, 0.7],\n",
+ " transformation=pybop.ScaledTransformation(coefficient=2.0, intercept=-0.6),\n",
+ " ),\n",
+ " pybop.Parameter(\n",
+ " \"Positive electrode active material volume fraction\",\n",
+ " initial_value=0.6,\n",
+ " bounds=[0.45, 0.625],\n",
+ " transformation=pybop.ScaledTransformation(coefficient=2.0, intercept=-0.6),\n",
+ " ),\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6",
+ "metadata": {},
+ "source": [
+ "Next, to create the `pybop.Dataset` we generate some synthetic data from the model using the `model.predict` method."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "t_eval = np.linspace(0, 10, 100)\n",
+ "values = model.predict(t_eval=t_eval)\n",
+ "\n",
+ "dataset = pybop.Dataset(\n",
+ " {\n",
+ " \"Time [s]\": t_eval,\n",
+ " \"Current function [A]\": values[\"Current [A]\"].data,\n",
+ " \"Voltage [V]\": values[\"Voltage [V]\"].data,\n",
+ " }\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8",
+ "metadata": {},
+ "source": [
+ "Now that we have the model, parameters, and dataset, we can combine them and construct the problem class. This is the last step needed before investigating how the transformation functionality works."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "9",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "problem = pybop.FittingProblem(model, parameters, dataset)\n",
+ "cost = pybop.SumofPower(problem)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "10",
+ "metadata": {},
+ "source": [
+ "The conventional way to use the cost class is through the `cost.__call__` method, which is completed below without transformations applied."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "11",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0.006904000484442387"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.6, 0.6])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "12",
+ "metadata": {},
+ "source": [
+ "However, we can also interact with the cost function with transformations applied via the `apply_transform` optional arugment. This arg is by default set to `False`."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "13",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0.006904000484442387"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.0, 0.0], apply_transform=True)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "14",
+ "metadata": {},
+ "source": [
+ "Given the transformations applied in the parameter class above, we can confirm the alignment between the search space and the model space by passing values that coincide:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "15",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "True"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.0, 0.0], apply_transform=True) == cost([0.6, 0.6])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "16",
+ "metadata": {},
+ "source": [
+ "We can more thoroughly test the transformation by testing that the search space is scaled by a value of two through the following:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "17",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "True"
+ ]
+ },
+ "execution_count": null,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cost([0.05, 0.05], apply_transform=True) == cost([0.625, 0.625])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "18",
+ "metadata": {},
+ "source": [
+ "Next, we can plot cost landscapes of these two spaces. In the first instance, we plot the model space through the conventional method:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "19",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ " \n",
+ " "
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.contour(cost);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "20",
+ "metadata": {},
+ "source": [
+ "Next, we can use the `apply_transform` argument when constructing the cost landscape to via the search space. First, we will transform the bounds used above to the search space using each parameters transformation instance and the `to_search` method."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "21",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.contour(cost, steps=15, apply_transform=True);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "22",
+ "metadata": {},
+ "source": [
+ "Note the difference in axis scale compared to the non-transformed landscape. Next, let's change the transformation on the 'Positive electrode active material volume fraction' to a non-linear log space."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "23",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "parameters[\n",
+ " \"Positive electrode active material volume fraction\"\n",
+ "].transformation = pybop.LogTransformation()\n",
+ "cost.transformation = parameters.construct_transformation()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "24",
+ "metadata": {},
+ "source": [
+ "Let's update the bounds and plot the cost landscape again:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "25",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "pybop.plot.contour(cost, steps=15, apply_transform=True);"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "26",
+ "metadata": {},
+ "source": [
+ "## Concluding Thoughts\n",
+ "\n",
+ "In the notebook we've introduced the transformation class and it's interaction with the `pybop.Parameters` and `pybop.BaseCost` classes. Transformation allow for the optimisation or sampling search space to scaled for improved convergence in situations where the optimisation hyperparameters are poorly tuned, or in optimisation tasks with high variance in the parameter magnitudes. "
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.2"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/scripts/parameters/example_BPX.json b/examples/parameters/example_BPX.json
similarity index 94%
rename from examples/scripts/parameters/example_BPX.json
rename to examples/parameters/example_BPX.json
index 43bbcf905..1e1efaadb 100644
--- a/examples/scripts/parameters/example_BPX.json
+++ b/examples/parameters/example_BPX.json
@@ -1,7 +1,7 @@
{
"Header": {
- "BPX": 0.1,
- "Title": "Parameterisation example of an LFP|graphite 2 Ah cylindrical 18650 cell.",
+ "BPX": 0.4,
+ "Title": "Parameterisation example of an LFP|graphite 2 Ah cylindrical 18650 cell. File downloaded on 19/3/24 from https://github.com/FaradayInstitution/BPX/blob/main/examples/lfp_18650_cell_BPX.json",
"Description": "LFP|graphite 2 Ah cylindrical 18650 cell. Parameterisation by About:Energy Limited (aboutenergy.io), December 2022, based on cell cycling data, and electrode data gathered after cell teardown. Electrolyte properties from Nyman et al. 2008 (doi:10.1016/j.electacta.2008.04.023). Negative electrode entropic coefficient data are from O'Regan et al. 2022 (doi:10.1016/j.electacta.2022.140700). Positive electrode entropic coefficient data are from Gerver and Meyers 2011 (doi:10.1149/1.3591799). Other thermal properties are estimated.",
"Model": "DFN"
},
@@ -70,9 +70,6 @@
"Thickness [m]": 2e-05,
"Porosity": 0.47,
"Transport efficiency": 0.3222
- },
- "User-defined": {
- "Source:": "An example BPX json file downloaded on 19/3/24 from https://github.com/FaradayInstitution/BPX/blob/main/examples/lfp_18650_cell_BPX.json"
}
}
}
diff --git a/examples/scripts/parameters/initial_ecm_parameters.json b/examples/parameters/initial_ecm_parameters.json
similarity index 100%
rename from examples/scripts/parameters/initial_ecm_parameters.json
rename to examples/parameters/initial_ecm_parameters.json
diff --git a/examples/scripts/ecm_CMAES.py b/examples/scripts/battery_parameterisation/ecm_CMAES.py
similarity index 86%
rename from examples/scripts/ecm_CMAES.py
rename to examples/scripts/battery_parameterisation/ecm_CMAES.py
index 96a36ec44..01d8dca05 100644
--- a/examples/scripts/ecm_CMAES.py
+++ b/examples/scripts/battery_parameterisation/ecm_CMAES.py
@@ -77,8 +77,7 @@
cost = pybop.SumSquaredError(problem)
optim = pybop.CMAES(cost, max_iterations=100)
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Export the parameters to JSON
parameter_set.export_parameters(
@@ -86,20 +85,16 @@
)
# Plot the time series
-pybop.plot_dataset(dataset)
+pybop.plot.dataset(dataset)
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape
-pybop.plot2d(cost, steps=15)
-
-# Plot the cost landscape with optimisation path and updated bounds
-bounds = np.asarray([[1e-4, 1e-2], [1e-5, 1e-2]])
-pybop.plot2d(optim, bounds=bounds, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/battery_parameterisation/ecm_tau_constraints.py b/examples/scripts/battery_parameterisation/ecm_tau_constraints.py
new file mode 100644
index 000000000..6d2bf85e7
--- /dev/null
+++ b/examples/scripts/battery_parameterisation/ecm_tau_constraints.py
@@ -0,0 +1,181 @@
+from typing import Union
+
+import numpy as np
+
+import pybop
+
+"""
+When fitting empirical models, the parameters we are able to identify
+will be constrained from the data that's available. For example, it's
+no good trying to fit an RC timescale of 0.1 s from data sampled at
+1 Hz! Likewise, an RC timescale of 100 s cannot be meaningfully fitted
+to just 10 s of data. To ensure the optimiser doesn't propose
+excessively long or short timescales - beyond what can reasonably be
+inferred from the data - it is common to apply nonlinear constraints
+on the parameter space. This script fits an RC pair with the
+constraint 0.5 <= R1 * C1 <= 1, to highlight a possible method for
+applying constraints on the timescales.
+
+An alternative approach is given i the ecm_trust-constr notebook,
+which can lead to better results and higher optimisation efficiency
+when good timescale guesses are available.
+"""
+
+# Define the initial parameter set
+parameter_set = pybop.ParameterSet.pybamm("ECM_Example")
+parameter_set.update(
+ {
+ "Initial SoC": 0.75,
+ "Cell capacity [A.h]": 5,
+ "Nominal cell capacity [A.h]": 5,
+ "Current function [A]": 5,
+ "Upper voltage cut-off [V]": 4.2,
+ "Lower voltage cut-off [V]": 3.0,
+ "Open-circuit voltage [V]": pybop.empirical.Thevenin().default_parameter_values[
+ "Open-circuit voltage [V]"
+ ],
+ "R0 [Ohm]": 0.001,
+ "R1 [Ohm]": 0.0002,
+ "C1 [F]": 10000,
+ "Element-1 initial overpotential [V]": 0,
+ }
+)
+# Add definitions for R's, C's, and initial overpotentials for any additional RC elements
+parameter_set.update(
+ {
+ "R2 [Ohm]": 0.0003,
+ "C2 [F]": 5000,
+ "Element-2 initial overpotential [V]": 0,
+ },
+ check_already_exists=False,
+)
+
+
+def get_parameter_checker(
+ tau_mins: Union[float, list[float]],
+ tau_maxs: Union[float, list[float]],
+ fitted_rc_pair_indices: Union[int, list[int]],
+):
+ """Returns a function to check parameters against given tau bounds.
+ The resulting check_params function will be sent off to PyBOP; the
+ rest of the code does some light checking of the constraints.
+
+ Parameters
+ ----------
+ tau_mins: float or list[float]
+ Lower bounds on timescale tau_i = Ri * Ci
+ tau_maxs: float or list[float]
+ Upper bounds on timescale tau_i = Ri * Ci
+ fitted_rc_pair_indices: int or list[float]
+ The index of each RC pair whose parameters are to be fitted.
+ Eg. [1, 2] means fitting R1, R2, C1, C2. The timescale of RC
+ pair fitted_rc_pair_indices[j] is constrained to be in the
+ range tau_mins[j] <= R * C <= tau_maxs[j]
+
+ Returns
+ -------
+ check_params
+ Function to check the proposed parameter values match the
+ requested constraints
+
+ """
+ # Ensure inputs are lists
+ tau_mins = [tau_mins] if not isinstance(tau_mins, list) else tau_mins
+ tau_maxs = [tau_maxs] if not isinstance(tau_maxs, list) else tau_maxs
+ fitted_rc_pair_indices = (
+ [fitted_rc_pair_indices]
+ if not isinstance(fitted_rc_pair_indices, list)
+ else fitted_rc_pair_indices
+ )
+
+ # Validate input lengths
+ if len(tau_mins) != len(fitted_rc_pair_indices) or len(tau_maxs) != len(
+ fitted_rc_pair_indices
+ ):
+ raise ValueError(
+ "tau_mins and tau_maxs must have the same length as fitted_rc_pair_indices"
+ )
+
+ def check_params(
+ inputs: dict[str, float] = None,
+ parameter_set=None,
+ allow_infeasible_solutions: bool = False,
+ ) -> bool:
+ """Checks if the given inputs are within the tau bounds."""
+ # Allow simulation to run if inputs are None
+ if inputs is None or inputs == {}:
+ return True
+
+ # Check every respective R*C against tau bounds
+ for i, tau_min, tau_max in zip(fitted_rc_pair_indices, tau_mins, tau_maxs):
+ tau = inputs[f"R{i} [Ohm]"] * inputs[f"C{i} [F]"]
+ if not tau_min <= tau <= tau_max:
+ return False
+ return True
+
+ return check_params
+
+
+# Define the model
+model = pybop.empirical.Thevenin(
+ parameter_set=parameter_set,
+ check_params=get_parameter_checker(
+ 0, 3.0, 1
+ ), # Set the model up to automatically check parameters
+ options={"number of rc elements": 2},
+)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "R0 [Ohm]",
+ prior=pybop.Gaussian(0.0002, 0.0001),
+ bounds=[1e-4, 1e-2],
+ ),
+ pybop.Parameter(
+ "R1 [Ohm]",
+ prior=pybop.Gaussian(0.0001, 0.0001),
+ bounds=[1e-5, 1e-2],
+ ),
+ pybop.Parameter(
+ "C1 [F]",
+ prior=pybop.Gaussian(10000, 2500),
+ bounds=[2500, 5e4],
+ ),
+)
+
+sigma = 0.001
+t_eval = np.arange(0, 600, 3)
+values = model.predict(t_eval=t_eval)
+corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": t_eval,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": corrupt_values,
+ }
+)
+
+# Generate problem, cost function, and optimisation class
+problem = pybop.FittingProblem(model, parameters, dataset)
+cost = pybop.RootMeanSquaredError(problem)
+optim = pybop.XNES(
+ cost,
+ sigma0=[1e-4, 1e-4, 100], # Set parameter specific step size
+ allow_infeasible_solutions=False,
+ max_unchanged_iterations=30,
+ max_iterations=125,
+)
+
+results = optim.run()
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
diff --git a/examples/scripts/battery_parameterisation/ecm_with_tau.py b/examples/scripts/battery_parameterisation/ecm_with_tau.py
new file mode 100644
index 000000000..a1942efbe
--- /dev/null
+++ b/examples/scripts/battery_parameterisation/ecm_with_tau.py
@@ -0,0 +1,124 @@
+import numpy as np
+import pybamm
+
+import pybop
+
+"""
+An alternative approach to the problem described in
+examples/scripts/ecm_tau_constraints.py in which constraints are placed
+on tau1 = R1 * C1. Here, tau1 is introduced as a parameter of the model
+and C1 is replaced by 1/R1 so that the bounds can be applied directly.
+"""
+
+# Define the initial parameter set
+parameter_set = pybop.ParameterSet.pybamm("ECM_Example")
+parameter_set.update(
+ {
+ "Initial SoC": 0.75,
+ "Cell capacity [A.h]": 5,
+ "Nominal cell capacity [A.h]": 5,
+ "Current function [A]": 5,
+ "Upper voltage cut-off [V]": 4.2,
+ "Lower voltage cut-off [V]": 3.0,
+ "Open-circuit voltage [V]": pybop.empirical.Thevenin().default_parameter_values[
+ "Open-circuit voltage [V]"
+ ],
+ "R0 [Ohm]": 0.001,
+ "R1 [Ohm]": 0.0002,
+ "C1 [F]": 10000,
+ "Element-1 initial overpotential [V]": 0,
+ }
+)
+# Add definitions for R's, C's, and initial overpotentials for any additional RC elements
+parameter_set.update(
+ {
+ "R2 [Ohm]": 0.0003,
+ "C2 [F]": 5000,
+ "Element-2 initial overpotential [V]": 0,
+ },
+ check_already_exists=False,
+)
+
+# Define the model
+parameter_set.update(
+ {
+ "tau1 [s]": parameter_set["R1 [Ohm]"] * parameter_set["C1 [F]"],
+ "tau2 [s]": parameter_set["R2 [Ohm]"] * parameter_set["C2 [F]"],
+ },
+ check_already_exists=False,
+)
+parameter_set.update(
+ {
+ "C1 [F]": pybamm.Parameter("tau1 [s]") / pybamm.Parameter("R1 [Ohm]"),
+ "C2 [F]": pybamm.Parameter("tau2 [s]") / pybamm.Parameter("R2 [Ohm]"),
+ }
+)
+model = pybop.empirical.Thevenin(
+ parameter_set=parameter_set,
+ options={"number of rc elements": 2},
+)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "R0 [Ohm]",
+ prior=pybop.Gaussian(0.0002, 0.0001),
+ bounds=[1e-4, 1e-2],
+ ),
+ pybop.Parameter(
+ "R1 [Ohm]",
+ prior=pybop.Gaussian(0.0001, 0.0001),
+ bounds=[1e-5, 1e-2],
+ ),
+ pybop.Parameter(
+ "tau1 [s]",
+ prior=pybop.Gaussian(1.0, 0.025),
+ bounds=[0, 3.0],
+ ),
+)
+
+sigma = 0.001
+t_eval = np.arange(0, 600, 3)
+values = model.predict(t_eval=t_eval)
+corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": t_eval,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": corrupt_values,
+ }
+)
+
+# Generate problem, cost function, and optimisation class
+problem = pybop.FittingProblem(model, parameters, dataset)
+cost = pybop.RootMeanSquaredError(problem)
+optim = pybop.XNES(
+ cost,
+ sigma0=[1e-4, 1e-4, 0.02], # Set parameter specific step size
+ allow_infeasible_solutions=False,
+ max_unchanged_iterations=30,
+ max_iterations=125,
+)
+
+results = optim.run()
+print(
+ "True parameters:",
+ [
+ parameter_set["R0 [Ohm]"],
+ parameter_set["R1 [Ohm]"],
+ parameter_set["tau1 [s]"],
+ parameter_set.evaluate(pybamm.Parameter("C1 [F]")),
+ ],
+)
+print("Estimated parameters:", results.x.tolist() + [results.x[2] / results.x[1]])
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
diff --git a/examples/scripts/battery_parameterisation/eis_fitting.py b/examples/scripts/battery_parameterisation/eis_fitting.py
new file mode 100644
index 000000000..b93f1c47e
--- /dev/null
+++ b/examples/scripts/battery_parameterisation/eis_fitting.py
@@ -0,0 +1,81 @@
+import numpy as np
+
+import pybop
+
+# Define model
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+parameter_set["Contact resistance [Ohm]"] = 0.0
+initial_state = {"Initial SoC": 0.5}
+n_frequency = 20
+sigma0 = 1e-4
+f_eval = np.logspace(-4, 5, n_frequency)
+model = pybop.lithium_ion.SPM(
+ parameter_set=parameter_set,
+ eis=True,
+ options={"surface form": "differential", "contact resistance": "true"},
+)
+
+# Create synthetic data for parameter inference
+sim = model.simulateEIS(
+ inputs={
+ "Negative electrode active material volume fraction": 0.531,
+ "Positive electrode active material volume fraction": 0.732,
+ },
+ f_eval=f_eval,
+ initial_state=initial_state,
+)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.75),
+ bounds=[0.375, 0.75],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.75),
+ bounds=[0.375, 0.75],
+ ),
+)
+
+
+def noise(sigma, values):
+ # Generate real part noise
+ real_noise = np.random.normal(0, sigma, values)
+
+ # Generate imaginary part noise
+ imag_noise = np.random.normal(0, sigma, values)
+
+ # Combine them into a complex noise
+ return real_noise + 1j * imag_noise
+
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Frequency [Hz]": f_eval,
+ "Current function [A]": np.ones(n_frequency) * 0.0,
+ "Impedance": sim["Impedance"] + noise(sigma0, len(sim["Impedance"])),
+ }
+)
+
+signal = ["Impedance"]
+# Generate problem, cost function, and optimisation class
+problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+cost = pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=sigma0)
+optim = pybop.CMAES(cost, max_iterations=100, sigma0=0.25, max_unchanged_iterations=30)
+
+results = optim.run()
+
+# Plot the nyquist
+pybop.plot.nyquist(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
+
+# Plot 2d landscape
+pybop.plot.surface(optim)
diff --git a/examples/scripts/battery_parameterisation/gitt.py b/examples/scripts/battery_parameterisation/gitt.py
new file mode 100644
index 000000000..059aac861
--- /dev/null
+++ b/examples/scripts/battery_parameterisation/gitt.py
@@ -0,0 +1,67 @@
+import numpy as np
+
+import pybop
+
+# Define model
+parameter_set = pybop.ParameterSet.pybamm("Xu2019")
+model = pybop.lithium_ion.SPM(
+ parameter_set=parameter_set, options={"working electrode": "positive"}
+)
+
+# Generate data
+sigma = 0.005
+t_eval = np.arange(0, 150, 2)
+values = model.predict(t_eval=t_eval)
+corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": t_eval,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": corrupt_values,
+ }
+)
+
+# Define parameter set
+parameter_set.update(
+ {
+ "Reference OCP [V]": 4.1821,
+ "Derivative of the OCP wrt stoichiometry [V]": -1.38636,
+ },
+ check_already_exists=False,
+)
+
+# Define the cost to optimise
+model = pybop.lithium_ion.WeppnerHuggins(parameter_set=parameter_set)
+
+parameters = pybop.Parameter(
+ "Positive particle diffusivity [m2.s-1]",
+ prior=pybop.Gaussian(5e-14, 1e-13),
+ bounds=[1e-16, 1e-11],
+ true_value=parameter_set["Positive particle diffusivity [m2.s-1]"],
+)
+
+problem = pybop.FittingProblem(
+ model,
+ parameters,
+ dataset,
+ signal=["Voltage [V]"],
+)
+
+cost = pybop.RootMeanSquaredError(problem)
+
+# Build the optimisation problem
+optim = pybop.PSO(cost=cost, verbose=True)
+
+# Run the optimisation problem
+results = optim.run()
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
diff --git a/examples/scripts/battery_parameterisation/ocp_balancing.py b/examples/scripts/battery_parameterisation/ocp_balancing.py
new file mode 100644
index 000000000..b6a861760
--- /dev/null
+++ b/examples/scripts/battery_parameterisation/ocp_balancing.py
@@ -0,0 +1,100 @@
+import numpy as np
+
+import pybop
+
+# Parameter set and model definition
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+
+# Set objects for initial conditions
+init_soc = {"Initial SoC": 1}
+parameter_set.set_initial_stoichiometries(initial_value=init_soc["Initial SoC"])
+cs_n_max = parameter_set["Maximum concentration in negative electrode [mol.m-3]"]
+cs_p_max = parameter_set["Maximum concentration in positive electrode [mol.m-3]"]
+v_min = parameter_set["Open-circuit voltage at 0% SOC [V]"]
+v_max = parameter_set["Open-circuit voltage at 100% SOC [V]"]
+
+# Define fitting parameters for OCP balancing
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Open-circuit voltage at 0% SOC [V]",
+ prior=pybop.Gaussian(v_min, 1e-1),
+ bounds=[2.35, 2.65],
+ true_value=v_min,
+ transformation=pybop.LogTransformation(),
+ ),
+ pybop.Parameter(
+ "Open-circuit voltage at 100% SOC [V]",
+ prior=pybop.Gaussian(v_max, 1e-1),
+ bounds=[4.1, 4.3],
+ true_value=v_max,
+ transformation=pybop.LogTransformation(),
+ ),
+ pybop.Parameter(
+ "Maximum concentration in negative electrode [mol.m-3]",
+ prior=pybop.Gaussian(cs_n_max, 6e3),
+ bounds=[cs_n_max * 0.75, cs_n_max * 1.25],
+ true_value=cs_n_max,
+ transformation=pybop.LogTransformation(),
+ ),
+ pybop.Parameter(
+ "Maximum concentration in positive electrode [mol.m-3]",
+ prior=pybop.Gaussian(cs_p_max, 6e3),
+ bounds=[cs_p_max * 0.75, cs_p_max * 1.25],
+ true_value=cs_p_max,
+ transformation=pybop.LogTransformation(),
+ ),
+)
+
+# Generate synthetic data
+sigma = 5e-4 # Volts
+experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.1C until 2.5V (3 min period)",
+ "Charge at 0.1C until 4.2V (3 min period)",
+ ),
+ ]
+)
+values = model.predict(initial_state=init_soc, experiment=experiment)
+
+
+def noise(sigma):
+ return np.random.normal(0, sigma, len(values["Voltage [V]"].data))
+
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": values["Voltage [V]"].data + noise(sigma),
+ }
+)
+
+# Generate problem, cost function, and optimisation class
+problem = pybop.FittingProblem(model, parameters, dataset, initial_state=init_soc)
+cost = pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=sigma)
+optim = pybop.CMAES(
+ cost,
+ verbose=True,
+ sigma0=1e-1,
+ max_iterations=100,
+ max_unchanged_iterations=20,
+)
+
+# Run optimisation for Maximum Likelihood Estimate (MLE)
+results = optim.run()
+print("True parameters:", parameters.true_value())
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
+
+# Plot the cost landscape with optimisation path
+pybop.plot.contour(optim, steps=5)
diff --git a/examples/scripts/spm_MAP.py b/examples/scripts/comparison_examples/cuckoo.py
similarity index 54%
rename from examples/scripts/spm_MAP.py
rename to examples/scripts/comparison_examples/cuckoo.py
index d8460915c..0ad7b22e9 100644
--- a/examples/scripts/spm_MAP.py
+++ b/examples/scripts/comparison_examples/cuckoo.py
@@ -4,6 +4,12 @@
# Define model
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": 0.7,
+ "Positive electrode active material volume fraction": 0.67,
+ }
+)
model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
# Fitting parameters
@@ -11,32 +17,35 @@
pybop.Parameter(
"Negative electrode active material volume fraction",
prior=pybop.Gaussian(0.6, 0.05),
- bounds=[0.5, 0.8],
+ bounds=[0.4, 0.75],
+ initial_value=0.41,
),
pybop.Parameter(
"Positive electrode active material volume fraction",
prior=pybop.Gaussian(0.48, 0.05),
- bounds=[0.4, 0.7],
+ bounds=[0.4, 0.75],
+ initial_value=0.41,
),
)
+experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 3 minutes (4 second period)",
+ "Charge at 0.5C for 3 minutes (4 second period)",
+ ),
+ ]
+)
+values = model.predict(initial_state={"Initial SoC": 0.7}, experiment=experiment)
-# Set initial parameter values
-parameter_set.update(
- {
- "Negative electrode active material volume fraction": 0.63,
- "Positive electrode active material volume fraction": 0.51,
- }
+sigma = 0.002
+corrupt_values = values["Voltage [V]"].data + np.random.normal(
+ 0, sigma, len(values["Voltage [V]"].data)
)
-# Generate data
-sigma = 0.005
-t_eval = np.arange(0, 900, 3)
-values = model.predict(t_eval=t_eval)
-corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
# Form dataset
dataset = pybop.Dataset(
{
- "Time [s]": t_eval,
+ "Time [s]": values["Time [s]"].data,
"Current function [A]": values["Current [A]"].data,
"Voltage [V]": corrupt_values,
}
@@ -44,30 +53,23 @@
# Generate problem, cost function, and optimisation class
problem = pybop.FittingProblem(model, parameters, dataset)
-cost = pybop.MAP(problem, pybop.GaussianLogLikelihoodKnownSigma)
-optim = pybop.CMAES(
+cost = pybop.GaussianLogLikelihood(problem, sigma0=sigma * 4)
+optim = pybop.Optimisation(
cost,
- max_unchanged_iterations=20,
- min_iterations=20,
+ optimiser=pybop.CuckooSearch,
max_iterations=100,
)
-# Run the optimisation
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x[0:2], title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
-
-# Plot the cost landscape
-pybop.plot2d(cost, steps=15)
+pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
-bounds = np.asarray([[0.55, 0.77], [0.48, 0.68]])
-pybop.plot2d(optim, bounds=bounds, steps=15)
+pybop.plot.contour(optim, steps=15)
diff --git a/examples/scripts/comparison_examples/exp_UKF.py b/examples/scripts/comparison_examples/exp_UKF.py
new file mode 100644
index 000000000..9a529cf65
--- /dev/null
+++ b/examples/scripts/comparison_examples/exp_UKF.py
@@ -0,0 +1,112 @@
+import numpy as np
+
+import pybop
+from examples.standalone.model import ExponentialDecay
+
+# Parameter set and model definition
+parameter_set = {"k": 0.1, "y0": 1.0}
+model = ExponentialDecay(parameter_set=parameter_set, n_states=1)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "k",
+ prior=pybop.Gaussian(0.1, 0.05),
+ bounds=[0, 1],
+ true_value=parameter_set["k"],
+ ),
+ pybop.Parameter(
+ "y0",
+ prior=pybop.Gaussian(1, 0.05),
+ bounds=[0, 3],
+ true_value=parameter_set["y0"],
+ ),
+)
+
+# Make a prediction with measurement noise
+sigma = 1e-2
+t_eval = np.linspace(0, 20, 10)
+true_inputs = parameters.as_dict("true")
+values = model.predict(t_eval=t_eval)
+values = values["2y"].data
+corrupt_values = values + np.random.normal(0, sigma, len(t_eval))
+
+# Verification step: compute the analytical solution for 2y
+expected_values = (
+ 2 * parameters["y0"].true_value * np.exp(-parameters["k"].true_value * t_eval)
+)
+
+# Verification step: make another prediction using the Observer class
+model.build(parameters=parameters)
+simulator = pybop.Observer(parameters, model, signal=["2y"])
+simulator.domain_data = t_eval
+measurements = simulator.evaluate(true_inputs)
+
+# Verification step: Compare by plot
+go = pybop.plot.PlotlyManager().go
+line1 = go.Scatter(x=t_eval, y=corrupt_values, name="Corrupt values", mode="markers")
+line2 = go.Scatter(
+ x=t_eval, y=expected_values, name="Expected trajectory", mode="lines"
+)
+line3 = go.Scatter(
+ x=t_eval, y=measurements["2y"], name="Observed values", mode="markers"
+)
+fig = go.Figure(data=[line1, line2, line3])
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": t_eval,
+ "Current function [A]": 0 * t_eval, # placeholder
+ "2y": corrupt_values,
+ }
+)
+
+# Build the model to get the number of states
+model.build(dataset=dataset.data, parameters=parameters)
+
+# Define the UKF observer
+signal = ["2y"]
+n_states = model.n_states
+n_signals = len(signal)
+covariance = np.diag([sigma**2] * n_states)
+process_noise = np.diag([1e-6] * n_states)
+measurement_noise = np.diag([sigma**2] * n_signals)
+observer = pybop.UnscentedKalmanFilterObserver(
+ parameters,
+ model,
+ covariance,
+ process_noise,
+ measurement_noise,
+ dataset,
+ signal=signal,
+)
+
+# Verification step: Find the maximum likelihood estimate given the true parameters
+estimation = observer.evaluate(true_inputs)
+
+# Verification step: Add the estimate to the plot
+line4 = go.Scatter(
+ x=t_eval, y=estimation["2y"], name="Estimated trajectory", mode="lines"
+)
+fig.add_trace(line4)
+fig.show()
+
+# Generate problem, cost function, and optimisation class
+cost = pybop.ObserverCost(observer)
+optim = pybop.CMAES(cost, verbose=True)
+
+# Run optimisation
+results = optim.run()
+
+# Plot the timeseries output (requires model that returns Voltage)
+pybop.plot.quick(observer, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
+
+# Plot the cost landscape with optimisation path
+pybop.plot.surface(optim)
diff --git a/examples/scripts/comparison_examples/maximum_a_posteriori.py b/examples/scripts/comparison_examples/maximum_a_posteriori.py
new file mode 100644
index 000000000..b04fa8fbb
--- /dev/null
+++ b/examples/scripts/comparison_examples/maximum_a_posteriori.py
@@ -0,0 +1,92 @@
+import numpy as np
+
+import pybop
+
+# Set variables
+sigma = 0.002
+
+# Construct and update initial parameter values
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": 0.43,
+ "Positive electrode active material volume fraction": 0.56,
+ }
+)
+
+# Define model
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Uniform(0.3, 0.8),
+ bounds=[0.3, 0.8],
+ initial_value=0.653,
+ true_value=parameter_set["Negative electrode active material volume fraction"],
+ transformation=pybop.LogTransformation(),
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Uniform(0.3, 0.8),
+ bounds=[0.4, 0.7],
+ initial_value=0.657,
+ true_value=parameter_set["Positive electrode active material volume fraction"],
+ transformation=pybop.LogTransformation(),
+ ),
+)
+
+# Generate data and corrupt it with noise
+experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 3 minutes (4 second period)",
+ "Charge at 0.5C for 3 minutes (4 second period)",
+ ),
+ ]
+)
+values = model.predict(initial_state={"Initial SoC": 0.5}, experiment=experiment)
+corrupt_values = values["Voltage [V]"].data + np.random.normal(
+ 0, sigma, len(values["Voltage [V]"].data)
+)
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": corrupt_values,
+ }
+)
+
+# Generate problem, cost function, and optimisation class
+problem = pybop.FittingProblem(model, parameters, dataset)
+cost = pybop.LogPosterior(pybop.GaussianLogLikelihood(problem))
+optim = pybop.IRPropMin(
+ cost,
+ sigma0=0.05,
+ max_unchanged_iterations=20,
+ min_iterations=20,
+ max_iterations=100,
+)
+
+# Run the optimisation
+results = optim.run()
+print("True parameters:", parameters.true_value())
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
+
+# Plot the cost landscape
+pybop.plot.contour(cost, steps=15)
+
+# Plot the cost landscape with optimisation path
+bounds = np.asarray([[0.35, 0.7], [0.45, 0.625]])
+pybop.plot.contour(optim, bounds=bounds, steps=15)
diff --git a/examples/scripts/spm_MLE.py b/examples/scripts/comparison_examples/maximum_likelihood.py
similarity index 51%
rename from examples/scripts/spm_MLE.py
rename to examples/scripts/comparison_examples/maximum_likelihood.py
index 6fc0238ca..bff7a0e72 100644
--- a/examples/scripts/spm_MLE.py
+++ b/examples/scripts/comparison_examples/maximum_likelihood.py
@@ -2,8 +2,14 @@
import pybop
-# Define model
+# Define model and set initial parameter values
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": 0.63,
+ "Positive electrode active material volume fraction": 0.51,
+ }
+)
model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
# Fitting parameters
@@ -16,36 +22,43 @@
pybop.Parameter(
"Positive electrode active material volume fraction",
prior=pybop.Gaussian(0.48, 0.05),
- bounds=[0.4, 0.7],
),
)
-# Set initial parameter values
-parameter_set.update(
- {
- "Negative electrode active material volume fraction": 0.63,
- "Positive electrode active material volume fraction": 0.51,
- }
-)
# Generate data
-sigma = 0.005
-t_eval = np.arange(0, 900, 3)
-values = model.predict(t_eval=t_eval)
-corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
+sigma = 0.002
+experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 3 minutes (3 second period)",
+ "Charge at 0.5C for 3 minutes (3 second period)",
+ ),
+ ]
+)
+values = model.predict(initial_state={"Initial SoC": 0.5}, experiment=experiment)
+
+
+def noise(sigma):
+ return np.random.normal(0, sigma, len(values["Voltage [V]"].data))
+
# Form dataset
dataset = pybop.Dataset(
{
- "Time [s]": t_eval,
+ "Time [s]": values["Time [s]"].data,
"Current function [A]": values["Current [A]"].data,
- "Voltage [V]": corrupt_values,
+ "Voltage [V]": values["Voltage [V]"].data + noise(sigma),
+ "Bulk open-circuit voltage [V]": values["Bulk open-circuit voltage [V]"].data
+ + noise(sigma),
}
)
+
+signal = ["Voltage [V]", "Bulk open-circuit voltage [V]"]
# Generate problem, cost function, and optimisation class
-problem = pybop.FittingProblem(model, parameters, dataset)
-likelihood = pybop.GaussianLogLikelihoodKnownSigma(problem, sigma=[0.03, 0.03])
-optim = pybop.CMAES(
+problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+likelihood = pybop.GaussianLogLikelihood(problem, sigma0=sigma * 4)
+optim = pybop.IRPropMin(
likelihood,
max_unchanged_iterations=20,
min_iterations=20,
@@ -53,21 +66,20 @@
)
# Run the optimisation
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x[0:2], title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape
-pybop.plot2d(likelihood, steps=15)
+pybop.plot.contour(likelihood, steps=15)
# Plot the cost landscape with optimisation path
bounds = np.asarray([[0.55, 0.77], [0.48, 0.68]])
-pybop.plot2d(optim, bounds=bounds, steps=15)
+pybop.plot.contour(optim, bounds=bounds, steps=15)
diff --git a/examples/scripts/comparison_examples/selecting_a_solver.py b/examples/scripts/comparison_examples/selecting_a_solver.py
new file mode 100644
index 000000000..248d943f5
--- /dev/null
+++ b/examples/scripts/comparison_examples/selecting_a_solver.py
@@ -0,0 +1,60 @@
+import time
+
+import numpy as np
+import pybamm
+
+import pybop
+
+# Parameter set and model definition
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+
+solvers = [
+ pybamm.IDAKLUSolver(atol=1e-6, rtol=1e-6),
+ pybamm.CasadiSolver(mode="safe", atol=1e-6, rtol=1e-6),
+ pybamm.CasadiSolver(mode="fast with events", atol=1e-6, rtol=1e-6),
+]
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction", initial_value=0.55
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction", initial_value=0.55
+ ),
+)
+
+# Define test protocol and generate data
+experiment = pybop.Experiment([("Discharge at 0.5C for 10 minutes (3 second period)")])
+values = model.predict(
+ initial_state={"Initial open-circuit voltage [V]": 4.2}, experiment=experiment
+)
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": values["Voltage [V]"].data,
+ }
+)
+
+# Create the list of input dicts
+n = 150 # Number of solves
+inputs = list(zip(np.linspace(0.45, 0.6, n), np.linspace(0.45, 0.6, n)))
+
+# Iterate over the solvers and print benchmarks
+for solver in solvers:
+ model.solver = solver
+ problem = pybop.FittingProblem(model, parameters, dataset)
+
+ start_time = time.time()
+ for input_values in inputs:
+ problem.evaluate(inputs=input_values)
+ print(f"Time Evaluate {solver.name}: {time.time() - start_time:.3f}")
+
+ start_time = time.time()
+ for input_values in inputs:
+ problem.evaluateS1(inputs=input_values)
+ print(f"Time EvaluateS1 {solver.name}: {time.time() - start_time:.3f}")
diff --git a/examples/scripts/spm_AdamW.py b/examples/scripts/comparison_examples/spm_AdamW.py
similarity index 70%
rename from examples/scripts/spm_AdamW.py
rename to examples/scripts/comparison_examples/spm_AdamW.py
index 44bbf8b11..5937ed726 100644
--- a/examples/scripts/spm_AdamW.py
+++ b/examples/scripts/comparison_examples/spm_AdamW.py
@@ -1,10 +1,12 @@
import numpy as np
+import pybamm
import pybop
-# Parameter set and model definition
+# Define model and use high-performant solver for sensitivities
+solver = pybamm.IDAKLUSolver()
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
-model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set, solver=solver)
# Fitting parameters
parameters = pybop.Parameters(
@@ -19,7 +21,6 @@
)
# Generate data
-init_soc = 0.5
sigma = 0.003
experiment = pybop.Experiment(
[
@@ -30,7 +31,7 @@
]
* 2
)
-values = model.predict(init_soc=init_soc, experiment=experiment)
+values = model.predict(initial_state={"Initial SoC": 0.5}, experiment=experiment)
def noise(sigma):
@@ -50,32 +51,28 @@ def noise(sigma):
signal = ["Voltage [V]", "Bulk open-circuit voltage [V]"]
# Generate problem, cost function, and optimisation class
-problem = pybop.FittingProblem(
- model, parameters, dataset, signal=signal, init_soc=init_soc
-)
-cost = pybop.RootMeanSquaredError(problem)
+problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+cost = pybop.Minkowski(problem, p=2)
optim = pybop.AdamW(
cost,
verbose=True,
allow_infeasible_solutions=True,
- sigma0=0.05,
+ sigma0=0.02,
max_iterations=100,
max_unchanged_iterations=20,
)
# Run optimisation
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
-bounds = np.asarray([[0.5, 0.8], [0.4, 0.7]])
-pybop.plot2d(optim, bounds=bounds, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/spm_CMAES.py b/examples/scripts/comparison_examples/spm_CMAES.py
similarity index 77%
rename from examples/scripts/spm_CMAES.py
rename to examples/scripts/comparison_examples/spm_CMAES.py
index 1fc051cc2..bd125710c 100644
--- a/examples/scripts/spm_CMAES.py
+++ b/examples/scripts/comparison_examples/spm_CMAES.py
@@ -13,18 +13,20 @@
prior=pybop.Gaussian(6e-06, 0.1e-6),
bounds=[1e-6, 9e-6],
true_value=parameter_set["Negative particle radius [m]"],
+ transformation=pybop.LogTransformation(),
),
pybop.Parameter(
"Positive particle radius [m]",
prior=pybop.Gaussian(4.5e-06, 0.1e-6),
bounds=[1e-6, 9e-6],
true_value=parameter_set["Positive particle radius [m]"],
+ transformation=pybop.LogTransformation(),
),
)
# Generate data
sigma = 0.001
-t_eval = np.arange(0, 900, 3)
+t_eval = np.arange(0, 900, 5)
values = model.predict(t_eval=t_eval)
corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
@@ -42,27 +44,23 @@
# Generate problem, cost function, and optimisation class
problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
cost = pybop.SumSquaredError(problem)
-optim = pybop.CMAES(cost, max_iterations=100)
+optim = pybop.CMAES(cost, sigma0=0.25, max_unchanged_iterations=10, max_iterations=40)
# Run the optimisation
-x, final_cost = optim.run()
+results = optim.run()
print("True parameters:", parameters.true_value())
-print("Estimated parameters:", x)
# Plot the time series
-pybop.plot_dataset(dataset)
+pybop.plot.dataset(dataset)
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape
-pybop.plot2d(cost, steps=15)
-
-# Plot the cost landscape with optimisation path
-pybop.plot2d(optim, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/spm_IRPropMin.py b/examples/scripts/comparison_examples/spm_IRPropMin.py
similarity index 60%
rename from examples/scripts/spm_IRPropMin.py
rename to examples/scripts/comparison_examples/spm_IRPropMin.py
index 727536ff8..bd3f9c50b 100644
--- a/examples/scripts/spm_IRPropMin.py
+++ b/examples/scripts/comparison_examples/spm_IRPropMin.py
@@ -1,20 +1,22 @@
import numpy as np
+import pybamm
import pybop
-# Define model
+# Define model and use high-performant solver for sensitivities
+solver = pybamm.IDAKLUSolver()
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
-model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set, solver=solver)
# Fitting parameters
parameters = pybop.Parameters(
pybop.Parameter(
"Negative electrode active material volume fraction",
- prior=pybop.Gaussian(0.6, 0.05),
+ prior=pybop.Gaussian(0.6, 0.02),
),
pybop.Parameter(
"Positive electrode active material volume fraction",
- prior=pybop.Gaussian(0.48, 0.05),
+ prior=pybop.Gaussian(0.48, 0.02),
),
)
@@ -35,21 +37,20 @@
# Generate problem, cost function, and optimisation class
problem = pybop.FittingProblem(model, parameters, dataset)
-cost = pybop.SumSquaredError(problem)
-optim = pybop.IRPropMin(cost, max_iterations=100)
+cost = pybop.Minkowski(problem, p=2)
+optim = pybop.IRPropMin(cost, max_iterations=100, sigma0=0.1)
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
-# Plot the cost landscape with optimisation path
+# Contour plot with optimisation path
bounds = np.asarray([[0.5, 0.8], [0.4, 0.7]])
-pybop.plot2d(optim, bounds=bounds, steps=15)
+pybop.plot.surface(optim, bounds=bounds)
diff --git a/examples/scripts/spm_NelderMead.py b/examples/scripts/comparison_examples/spm_NelderMead.py
similarity index 77%
rename from examples/scripts/spm_NelderMead.py
rename to examples/scripts/comparison_examples/spm_NelderMead.py
index 569dbadf2..08be57421 100644
--- a/examples/scripts/spm_NelderMead.py
+++ b/examples/scripts/comparison_examples/spm_NelderMead.py
@@ -19,7 +19,6 @@
)
# Generate data
-init_soc = 0.5
sigma = 0.003
experiment = pybop.Experiment(
[
@@ -30,7 +29,7 @@
]
* 2
)
-values = model.predict(init_soc=init_soc, experiment=experiment)
+values = model.predict(initial_state={"Initial SoC": 0.5}, experiment=experiment)
def noise(sigma):
@@ -48,11 +47,9 @@ def noise(sigma):
}
)
-signal = ["Voltage [V]", "Bulk open-circuit voltage [V]"]
# Generate problem, cost function, and optimisation class
-problem = pybop.FittingProblem(
- model, parameters, dataset, signal=signal, init_soc=init_soc
-)
+signal = ["Voltage [V]", "Bulk open-circuit voltage [V]"]
+problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
cost = pybop.RootMeanSquaredError(problem)
optim = pybop.NelderMead(
cost,
@@ -64,18 +61,16 @@ def noise(sigma):
)
# Run optimisation
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
-bounds = np.asarray([[0.5, 0.8], [0.4, 0.7]])
-pybop.plot2d(optim, bounds=bounds, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/spm_SNES.py b/examples/scripts/comparison_examples/spm_SNES.py
similarity index 81%
rename from examples/scripts/spm_SNES.py
rename to examples/scripts/comparison_examples/spm_SNES.py
index d2afcc85a..6e1747b32 100644
--- a/examples/scripts/spm_SNES.py
+++ b/examples/scripts/comparison_examples/spm_SNES.py
@@ -35,20 +35,18 @@
# Generate problem, cost function, and optimisation class
problem = pybop.FittingProblem(model, parameters, dataset)
-cost = pybop.SumSquaredError(problem)
+cost = pybop.SumofPower(problem, p=2)
optim = pybop.SNES(cost, max_iterations=100)
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
-
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
-pybop.plot2d(optim, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/spm_UKF.py b/examples/scripts/comparison_examples/spm_UKF.py
similarity index 74%
rename from examples/scripts/spm_UKF.py
rename to examples/scripts/comparison_examples/spm_UKF.py
index e9972bd0f..33b38de1e 100644
--- a/examples/scripts/spm_UKF.py
+++ b/examples/scripts/comparison_examples/spm_UKF.py
@@ -22,7 +22,7 @@
# Make a prediction with measurement noise
sigma = 0.001
-t_eval = np.arange(0, 300, 2)
+t_eval = np.arange(0, 250, 0.5)
values = model.predict(t_eval=t_eval)
corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
@@ -36,14 +36,11 @@
)
# Build the model to get the number of states
-model.build(dataset=dataset.data, parameters=parameters)
+model.build(dataset=dataset, parameters=parameters)
# Define the UKF observer, setting the particle boundaries as uncertain states
-signal = ["Voltage [V]"]
-n_states = model.n_states
-n_signals = len(signal)
-covariance = np.diag([0] * 19 + [sigma**2] + [0] * 19 + [sigma**2])
-process_noise = np.diag([0] * 19 + [1e-6] + [0] * 19 + [1e-6])
+covariance = np.diag([0] * 20 + [sigma**2] + [0] * 20 + [sigma**2])
+process_noise = np.diag([0] * 20 + [1e-6] + [0] * 20 + [1e-6])
measurement_noise = np.diag([sigma**2])
observer = pybop.UnscentedKalmanFilterObserver(
parameters,
@@ -52,29 +49,27 @@
process_noise,
measurement_noise,
dataset,
- signal=signal,
)
# Generate problem, cost function, and optimisation class
cost = pybop.ObserverCost(observer)
-optim = pybop.PSO(cost, verbose=True)
+optim = pybop.XNES(cost, verbose=True)
# Parameter identification using the current observer implementation is very slow
# so let's restrict the number of iterations and reduce the number of plots
optim.set_max_iterations(5)
# Run optimisation
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output (requires model that returns Voltage)
-pybop.quick_plot(observer, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(observer, problem_inputs=results.x, title="Optimised Comparison")
# # Plot convergence
-# pybop.plot_convergence(optim)
+# pybop.plot.convergence(optim)
# # Plot the parameter traces
-# pybop.plot_parameters(optim)
+# pybop.plot.parameters(optim)
# # Plot the cost landscape with optimisation path
-# pybop.plot2d(optim, steps=15)
+# pybop.plot.surface(optim)
diff --git a/examples/scripts/spm_XNES.py b/examples/scripts/comparison_examples/spm_XNES.py
similarity index 84%
rename from examples/scripts/spm_XNES.py
rename to examples/scripts/comparison_examples/spm_XNES.py
index 59b6eca87..09d0ab395 100644
--- a/examples/scripts/spm_XNES.py
+++ b/examples/scripts/comparison_examples/spm_XNES.py
@@ -39,17 +39,16 @@
cost = pybop.SumSquaredError(problem)
optim = pybop.XNES(cost, max_iterations=100)
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
-pybop.plot2d(optim, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/spm_descent.py b/examples/scripts/comparison_examples/spm_descent.py
similarity index 71%
rename from examples/scripts/spm_descent.py
rename to examples/scripts/comparison_examples/spm_descent.py
index 7c7629b04..92332849f 100644
--- a/examples/scripts/spm_descent.py
+++ b/examples/scripts/comparison_examples/spm_descent.py
@@ -1,10 +1,12 @@
import numpy as np
+import pybamm
import pybop
-# Parameter set and model definition
+# Define model and use high-performant solver for sensitivities
+solver = pybamm.IDAKLUSolver()
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
-model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set, solver=solver)
# Fitting parameters
parameters = pybop.Parameters(
@@ -35,27 +37,25 @@
# Generate problem, cost function, and optimisation class
problem = pybop.FittingProblem(model, parameters, dataset)
-cost = pybop.SumSquaredError(problem)
+cost = pybop.RootMeanSquaredError(problem)
optim = pybop.GradientDescent(
cost,
- sigma0=0.011,
+ sigma0=0.05,
verbose=True,
max_iterations=125,
)
# Run optimisation
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
-bounds = np.asarray([[0.5, 0.8], [0.4, 0.7]])
-pybop.plot2d(optim, bounds=bounds, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/spm_pso.py b/examples/scripts/comparison_examples/spm_pso.py
similarity index 71%
rename from examples/scripts/spm_pso.py
rename to examples/scripts/comparison_examples/spm_pso.py
index acb3e1c6e..e5c305bd1 100644
--- a/examples/scripts/spm_pso.py
+++ b/examples/scripts/comparison_examples/spm_pso.py
@@ -20,7 +20,7 @@
),
)
-sigma = 0.001
+sigma = 0.002
t_eval = np.arange(0, 900, 3)
values = model.predict(t_eval=t_eval)
corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
@@ -37,19 +37,28 @@
# Generate problem, cost function, and optimisation class
problem = pybop.FittingProblem(model, parameters, dataset)
cost = pybop.SumSquaredError(problem)
-optim = pybop.Optimisation(cost, optimiser=pybop.PSO, max_iterations=100)
+optim = pybop.Optimisation(
+ cost,
+ optimiser=pybop.PSO,
+ sigma0=0.05,
+ max_unchanged_iterations=20,
+ max_iterations=100,
+)
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
+
+# Plot the cost surface
+bounds = np.asarray([[0.5, 0.8], [0.4, 0.7]])
+pybop.plot.surface(optim, bounds)
# Plot the cost landscape with optimisation path
-pybop.plot2d(optim, steps=15)
+pybop.plot.contour(optim, steps=15, bounds=bounds)
diff --git a/examples/scripts/spm_scipymin.py b/examples/scripts/comparison_examples/spm_scipymin.py
similarity index 77%
rename from examples/scripts/spm_scipymin.py
rename to examples/scripts/comparison_examples/spm_scipymin.py
index 8c7b80c5a..36265b9e8 100644
--- a/examples/scripts/spm_scipymin.py
+++ b/examples/scripts/comparison_examples/spm_scipymin.py
@@ -3,7 +3,7 @@
import pybop
# Form dataset
-Measurements = pd.read_csv("examples/scripts/Chen_example.csv", comment="#").to_numpy()
+Measurements = pd.read_csv("examples/data/Chen_example.csv", comment="#").to_numpy()
dataset = pybop.Dataset(
{
"Time [s]": Measurements[:, 0],
@@ -34,24 +34,23 @@
# Define the cost to optimise
signal = ["Voltage [V]"]
-problem = pybop.FittingProblem(model, parameters, dataset, signal=signal, init_soc=0.98)
+problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
cost = pybop.RootMeanSquaredError(problem)
# Build the optimisation problem
optim = pybop.SciPyMinimize(cost)
# Run the optimisation problem
-x, final_cost = optim.run()
-print("Estimated parameters:", x)
+results = optim.run()
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
-pybop.plot2d(optim, steps=15)
+pybop.plot.surface(optim)
diff --git a/examples/scripts/design_optimisation/maximising_energy.py b/examples/scripts/design_optimisation/maximising_energy.py
new file mode 100644
index 000000000..23364664c
--- /dev/null
+++ b/examples/scripts/design_optimisation/maximising_energy.py
@@ -0,0 +1,90 @@
+from pybamm import Parameter
+
+import pybop
+
+# A design optimisation example loosely based on work by L.D. Couto
+# available at https://doi.org/10.1016/j.energy.2022.125966.
+
+# The target is to maximise the energy density over a range of
+# possible design parameter values, including for example:
+# cross-sectional area = height x width (only need change one)
+# electrode widths, particle radii, volume fractions and
+# separator width.
+
+# Define parameter set and additional parameters needed for the cost function
+parameter_set = pybop.ParameterSet.pybamm("Chen2020", formation_concentrations=True)
+parameter_set.update(
+ {
+ "Electrolyte density [kg.m-3]": Parameter("Separator density [kg.m-3]"),
+ "Negative electrode active material density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Negative electrode carbon-binder density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Positive electrode active material density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Positive electrode carbon-binder density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ },
+ check_already_exists=False,
+)
+
+# Define model
+model = pybop.lithium_ion.SPMe(parameter_set=parameter_set)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode thickness [m]",
+ prior=pybop.Gaussian(7.56e-05, 0.1e-05),
+ bounds=[65e-06, 10e-05],
+ ),
+ pybop.Parameter(
+ "Positive particle radius [m]",
+ prior=pybop.Gaussian(5.22e-06, 0.1e-06),
+ bounds=[2e-06, 9e-06],
+ ),
+)
+
+# Define test protocol
+experiment = pybop.Experiment(
+ [
+ "Discharge at 1C until 2.5 V (5 seconds period)",
+ "Hold at 2.5 V for 30 minutes or until 10 mA (5 seconds period)",
+ ],
+)
+signal = ["Voltage [V]", "Current [A]"]
+
+# Generate problem
+problem = pybop.DesignProblem(
+ model,
+ parameters,
+ experiment,
+ signal=signal,
+ initial_state={"Initial SoC": 1.0},
+ update_capacity=True,
+)
+
+# Generate multiple cost functions and combine them
+cost1 = pybop.GravimetricEnergyDensity(problem)
+cost2 = pybop.VolumetricEnergyDensity(problem)
+cost = pybop.WeightedCost(cost1, cost2, weights=[1, 1e-3])
+
+# Run optimisation
+optim = pybop.PSO(
+ cost, verbose=True, allow_infeasible_solutions=False, max_iterations=10
+)
+results = optim.run()
+print(f"Initial gravimetric energy density: {cost1(optim.x0):.2f} Wh.kg-1")
+print(f"Optimised gravimetric energy density: {cost1(results.x):.2f} Wh.kg-1")
+print(f"Initial volumetric energy density: {cost2(optim.x0):.2f} Wh.m-3")
+print(f"Optimised volumetric energy density: {cost2(results.x):.2f} Wh.m-3")
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot the cost landscape with optimisation path
+pybop.plot.surface(optim)
diff --git a/examples/scripts/design_optimisation/maximising_power.py b/examples/scripts/design_optimisation/maximising_power.py
new file mode 100644
index 000000000..d1a8f8578
--- /dev/null
+++ b/examples/scripts/design_optimisation/maximising_power.py
@@ -0,0 +1,85 @@
+from pybamm import Parameter
+
+import pybop
+
+# Define parameter set and additional parameters needed for the cost function
+parameter_set = pybop.ParameterSet.pybamm("Chen2020", formation_concentrations=True)
+parameter_set.update(
+ {
+ "Electrolyte density [kg.m-3]": Parameter("Separator density [kg.m-3]"),
+ "Negative electrode active material density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Negative electrode carbon-binder density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Positive electrode active material density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Positive electrode carbon-binder density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ },
+ check_already_exists=False,
+)
+
+# Define model
+model = pybop.lithium_ion.SPMe(parameter_set=parameter_set)
+
+# Define useful quantities
+nominal_capacity = parameter_set["Nominal cell capacity [A.h]"]
+target_c_rate = 2
+discharge_rate = target_c_rate * nominal_capacity
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode thickness [m]",
+ prior=pybop.Gaussian(7.56e-05, 0.5e-05),
+ bounds=[65e-06, 10e-05],
+ ),
+ pybop.Parameter(
+ "Nominal cell capacity [A.h]", # controls the C-rate in the experiment
+ prior=pybop.Gaussian(discharge_rate, 0.2),
+ bounds=[0.8 * discharge_rate, 1.2 * discharge_rate],
+ ),
+)
+
+# Define test protocol
+experiment = pybop.Experiment(
+ ["Discharge at 1C for 30 minutes or until 2.5 V (5 seconds period)"],
+)
+signal = ["Voltage [V]", "Current [A]"]
+
+# Generate problem
+problem = pybop.DesignProblem(
+ model,
+ parameters,
+ experiment,
+ signal=signal,
+ initial_state={"Initial SoC": 1.0},
+)
+
+# Generate multiple cost functions and combine them
+cost1 = pybop.GravimetricPowerDensity(problem, target_time=3600 / target_c_rate)
+cost2 = pybop.VolumetricPowerDensity(problem, target_time=3600 / target_c_rate)
+cost = pybop.WeightedCost(cost1, cost2, weights=[1, 1e-3])
+
+# Run optimisation
+optim = pybop.XNES(
+ cost, verbose=True, allow_infeasible_solutions=False, max_iterations=10
+)
+results = optim.run()
+print(f"Initial gravimetric power density: {cost1(optim.x0):.2f} W.kg-1")
+print(f"Optimised gravimetric power density: {cost1(results.x):.2f} W.kg-1")
+print(f"Initial volumetric power density: {cost2(optim.x0):.2f} W.m-3")
+print(f"Optimised volumetric power density: {cost2(results.x):.2f} W.m-3")
+print(
+ f"Optimised discharge rate: {results.x[-1]:.2f} A = {results.x[-1]/nominal_capacity:.2f} C"
+)
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot the cost landscape with optimisation path
+pybop.plot.surface(optim)
diff --git a/examples/scripts/BPX_spm.py b/examples/scripts/getting_started/BPX_spm.py
similarity index 78%
rename from examples/scripts/BPX_spm.py
rename to examples/scripts/getting_started/BPX_spm.py
index 6fdb76490..49087da87 100644
--- a/examples/scripts/BPX_spm.py
+++ b/examples/scripts/getting_started/BPX_spm.py
@@ -27,7 +27,7 @@
# Generate data
sigma = 0.001
-t_eval = np.arange(0, 900, 2)
+t_eval = np.arange(0, 900, 5)
values = model.predict(t_eval=t_eval)
corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
@@ -43,21 +43,20 @@
# Generate problem, cost function, and optimisation class
problem = pybop.FittingProblem(model, parameters, dataset)
cost = pybop.SumSquaredError(problem)
-optim = pybop.CMAES(cost, max_iterations=100)
+optim = pybop.CMAES(cost, max_iterations=40)
# Run the optimisation
-x, final_cost = optim.run()
+results = optim.run()
print("True parameters:", parameters.true_value())
-print("Estimated parameters:", x)
# Plot the timeseries output
-pybop.quick_plot(problem, parameter_values=x, title="Optimised Comparison")
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
# Plot convergence
-pybop.plot_convergence(optim)
+pybop.plot.convergence(optim)
# Plot the parameter traces
-pybop.plot_parameters(optim)
+pybop.plot.parameters(optim)
-# Plot the cost landscape with optimisation path and updated bounds
-pybop.plot2d(optim, steps=15)
+# Plot the cost landscape with optimisation path
+pybop.plot.surface(optim)
diff --git a/examples/scripts/getting_started/functional_parameters.py b/examples/scripts/getting_started/functional_parameters.py
new file mode 100644
index 000000000..a8ff75b6e
--- /dev/null
+++ b/examples/scripts/getting_started/functional_parameters.py
@@ -0,0 +1,96 @@
+import numpy as np
+import pybamm
+
+import pybop
+
+# This example demonstrates how to use a pybamm.FunctionalParameter to
+# optimise functional parameters using PyBOP.
+
+# Method: Define a new scalar parameter for use in a functional parameter
+# that already exists in the model, for example an exchange current density.
+
+
+# Load parameter set
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+
+
+# Define a new function using pybamm parameters
+def positive_electrode_exchange_current_density(c_e, c_s_surf, c_s_max, T):
+ # New parameters
+ j0_ref = pybamm.Parameter(
+ "Positive electrode reference exchange-current density [A.m-2]"
+ )
+ alpha = pybamm.Parameter("Positive electrode charge transfer coefficient")
+
+ # Existing parameters
+ c_e_init = pybamm.Parameter("Initial concentration in electrolyte [mol.m-3]")
+
+ return (
+ j0_ref
+ * ((c_e / c_e_init) * (c_s_surf / c_s_max) * (1 - c_s_surf / c_s_max)) ** alpha
+ )
+
+
+# Give default values to the new scalar parameters and pass the new function
+parameter_set.update(
+ {
+ "Positive electrode reference exchange-current density [A.m-2]": 1,
+ "Positive electrode charge transfer coefficient": 0.5,
+ },
+ check_already_exists=False,
+)
+parameter_set["Positive electrode exchange-current density [A.m-2]"] = (
+ positive_electrode_exchange_current_density
+)
+
+# Model definition
+model = pybop.lithium_ion.SPM(
+ parameter_set=parameter_set, options={"contact resistance": "true"}
+)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode reference exchange-current density [A.m-2]",
+ prior=pybop.Gaussian(1, 0.1),
+ ),
+ pybop.Parameter(
+ "Positive electrode charge transfer coefficient",
+ prior=pybop.Gaussian(0.5, 0.1),
+ ),
+)
+
+# Generate data
+sigma = 0.001
+t_eval = np.arange(0, 900, 3)
+values = model.predict(t_eval=t_eval)
+corrupt_values = values["Voltage [V]"].data + np.random.normal(0, sigma, len(t_eval))
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": t_eval,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": corrupt_values,
+ }
+)
+
+# Generate problem, cost function, and optimisation class
+problem = pybop.FittingProblem(model, parameters, dataset)
+cost = pybop.RootMeanSquaredError(problem)
+optim = pybop.SciPyMinimize(cost, sigma0=0.1, max_iterations=125)
+
+# Run optimisation
+results = optim.run()
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
+
+# Plot the cost landscape with optimisation path
+pybop.plot.surface(optim)
diff --git a/examples/scripts/getting_started/linked_parameters.py b/examples/scripts/getting_started/linked_parameters.py
new file mode 100644
index 000000000..9d4797bd0
--- /dev/null
+++ b/examples/scripts/getting_started/linked_parameters.py
@@ -0,0 +1,88 @@
+from pybamm import Parameter
+
+import pybop
+
+# The aim of this script is to show how to systematically update
+# design parameters which depend on the optimisation parameters.
+
+# Define parameter set and additional parameters needed for the cost function
+parameter_set = pybop.ParameterSet.pybamm("Chen2020", formation_concentrations=True)
+parameter_set.update(
+ {
+ "Electrolyte density [kg.m-3]": Parameter("Separator density [kg.m-3]"),
+ "Negative electrode active material density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Negative electrode carbon-binder density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Positive electrode active material density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Positive electrode carbon-binder density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ },
+ check_already_exists=False,
+)
+
+# Link parameters
+parameter_set.update(
+ {
+ "Positive electrode porosity": 1
+ - Parameter("Positive electrode active material volume fraction")
+ }
+)
+
+# Define model
+model = pybop.lithium_ion.SPMe(parameter_set=parameter_set)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode thickness [m]",
+ prior=pybop.Gaussian(7.56e-05, 0.1e-05),
+ bounds=[65e-06, 10e-05],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.6, 0.15),
+ bounds=[0.1, 0.9],
+ ),
+)
+
+# Define test protocol
+experiment = pybop.Experiment(
+ [
+ "Discharge at 1C until 2.5 V (5 seconds period)",
+ "Hold at 2.5 V for 30 minutes or until 10 mA (5 seconds period)",
+ ],
+)
+signal = ["Voltage [V]", "Current [A]"]
+
+# Generate problem
+problem = pybop.DesignProblem(
+ model,
+ parameters,
+ experiment,
+ signal=signal,
+ initial_state={"Initial SoC": 1.0},
+ update_capacity=True,
+)
+
+# Define the cost
+cost = pybop.GravimetricEnergyDensity(problem)
+
+# Run optimisation
+optim = pybop.XNES(
+ cost, verbose=True, allow_infeasible_solutions=False, max_iterations=10
+)
+results = optim.run()
+print(f"Initial gravimetric energy density: {cost(optim.x0):.2f} Wh.kg-1")
+print(f"Optimised gravimetric energy density: {cost(results.x):.2f} Wh.kg-1")
+
+# Plot the timeseries output
+pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot the cost landscape with optimisation path
+pybop.plot.surface(optim)
diff --git a/examples/scripts/getting_started/mcmc_example.py b/examples/scripts/getting_started/mcmc_example.py
new file mode 100644
index 000000000..1b25a2d0d
--- /dev/null
+++ b/examples/scripts/getting_started/mcmc_example.py
@@ -0,0 +1,86 @@
+import numpy as np
+import pybamm
+
+import pybop
+
+# Parameter set and model definition
+solver = pybamm.IDAKLUSolver()
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": 0.63,
+ "Positive electrode active material volume fraction": 0.71,
+ }
+)
+synth_model = pybop.lithium_ion.DFN(parameter_set=parameter_set, solver=solver)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.68, 0.02),
+ transformation=pybop.LogTransformation(),
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.65, 0.02),
+ transformation=pybop.LogTransformation(),
+ ),
+)
+
+# Generate data
+init_soc = 0.5
+sigma = 0.005
+experiment = pybop.Experiment(
+ [
+ ("Discharge at 0.5C for 6 minutes (5 second period)",),
+ ]
+)
+values = synth_model.predict(
+ initial_state={"Initial SoC": init_soc}, experiment=experiment
+)
+
+
+def noise(sigma):
+ return np.random.normal(0, sigma, len(values["Voltage [V]"].data))
+
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": values["Voltage [V]"].data + noise(sigma),
+ "Bulk open-circuit voltage [V]": values["Bulk open-circuit voltage [V]"].data
+ + noise(sigma),
+ }
+)
+
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set, solver=pybamm.IDAKLUSolver())
+model.build(initial_state={"Initial SoC": init_soc})
+signal = ["Voltage [V]", "Bulk open-circuit voltage [V]"]
+
+# Generate problem, likelihood, and sampler
+problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+likelihood = pybop.GaussianLogLikelihood(problem)
+posterior = pybop.LogPosterior(likelihood)
+
+sampler = pybop.DifferentialEvolutionMCMC(
+ posterior,
+ chains=3,
+ max_iterations=300,
+ warm_up=100,
+ verbose=True,
+ # parallel=True, # uncomment to enable parallelisation (macOS/WSL/Linux only)
+)
+chains = sampler.run()
+
+# Summary statistics
+posterior_summary = pybop.PosteriorSummary(chains)
+print(posterior_summary.get_summary_statistics())
+posterior_summary.plot_trace()
+posterior_summary.summary_table()
+posterior_summary.plot_posterior()
+posterior_summary.plot_chains()
+posterior_summary.effective_sample_size()
+print(f"rhat: {posterior_summary.rhat()}")
diff --git a/examples/scripts/getting_started/multi_fitting.py b/examples/scripts/getting_started/multi_fitting.py
new file mode 100644
index 000000000..9380974ab
--- /dev/null
+++ b/examples/scripts/getting_started/multi_fitting.py
@@ -0,0 +1,84 @@
+import numpy as np
+
+import pybop
+
+# Parameter set and model definition
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+
+# Create initial SOC, experiment objects
+init_soc = [{"Initial SoC": 0.8}, {"Initial SoC": 0.6}]
+experiment = [
+ pybop.Experiment([("Discharge at 0.5C for 2 minutes (4 second period)")]),
+ pybop.Experiment([("Discharge at 1C for 1 minutes (4 second period)")]),
+]
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.68, 0.05),
+ true_value=parameter_set["Negative electrode active material volume fraction"],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.58, 0.05),
+ true_value=parameter_set["Positive electrode active material volume fraction"],
+ ),
+)
+
+# Generate a dataset and a fitting problem
+sigma = 0.002
+values = model.predict(initial_state=init_soc[0], experiment=experiment[0])
+dataset_1 = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": values["Voltage [V]"].data
+ + np.random.normal(0, sigma, len(values["Voltage [V]"].data)),
+ }
+)
+problem_1 = pybop.FittingProblem(model, parameters, dataset_1)
+
+# Generate a second dataset and problem
+model = model.new_copy()
+values = model.predict(initial_state=init_soc[1], experiment=experiment[1])
+dataset_2 = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": values["Voltage [V]"].data
+ + np.random.normal(0, sigma, len(values["Voltage [V]"].data)),
+ }
+)
+problem_2 = pybop.FittingProblem(model, parameters, dataset_2)
+
+# Combine the problems into one
+problem = pybop.MultiFittingProblem(problem_1, problem_2)
+
+# Generate the cost function and optimisation class
+cost = pybop.SumSquaredError(problem)
+optim = pybop.CuckooSearch(
+ cost,
+ verbose=True,
+ sigma0=0.05,
+ max_unchanged_iterations=20,
+ max_iterations=100,
+)
+
+# Run optimisation
+results = optim.run()
+print("True parameters:", parameters.true_value())
+
+# Plot the timeseries output
+pybop.plot.quick(problem_1, problem_inputs=results.x, title="Optimised Comparison")
+pybop.plot.quick(problem_2, problem_inputs=results.x, title="Optimised Comparison")
+
+# Plot convergence
+pybop.plot.convergence(optim)
+
+# Plot the parameter traces
+pybop.plot.parameters(optim)
+
+# Plot the cost landscape with optimisation path
+pybop.plot.surface(optim)
diff --git a/examples/scripts/getting_started/spm_weighted_cost.py b/examples/scripts/getting_started/spm_weighted_cost.py
new file mode 100644
index 000000000..6aa71d20d
--- /dev/null
+++ b/examples/scripts/getting_started/spm_weighted_cost.py
@@ -0,0 +1,72 @@
+import numpy as np
+
+import pybop
+
+# Parameter set and model definition
+parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+
+# Fitting parameters
+parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.68, 0.05),
+ bounds=[0.5, 0.8],
+ true_value=parameter_set["Negative electrode active material volume fraction"],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.58, 0.05),
+ bounds=[0.4, 0.7],
+ true_value=parameter_set["Positive electrode active material volume fraction"],
+ ),
+)
+
+# Generate data
+sigma = 0.001
+experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 3 minutes (3 second period)",
+ "Charge at 0.5C for 3 minutes (3 second period)",
+ ),
+ ]
+ * 2
+)
+values = model.predict(experiment=experiment, initial_state={"Initial SoC": 0.5})
+
+
+def noise(sigma):
+ return np.random.normal(0, sigma, len(values["Voltage [V]"].data))
+
+
+# Form dataset
+dataset = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": values["Voltage [V]"].data + noise(sigma),
+ }
+)
+
+# Generate problem, cost function, and optimisation class
+problem = pybop.FittingProblem(model, parameters, dataset)
+cost1 = pybop.SumSquaredError(problem)
+cost2 = pybop.RootMeanSquaredError(problem)
+weighted_cost = pybop.WeightedCost(cost1, cost2, weights=[0.1, 1])
+
+for cost in [weighted_cost, cost1, cost2]:
+ optim = pybop.IRPropMin(cost, max_iterations=60)
+
+ # Run the optimisation
+ results = optim.run()
+ print("True parameters:", parameters.true_value())
+
+ # Plot the timeseries output
+ pybop.plot.quick(problem, problem_inputs=results.x, title="Optimised Comparison")
+
+ # Plot convergence
+ pybop.plot.convergence(optim)
+
+ # Plot the cost landscape with optimisation path
+ pybop.plot.surface(optim)
diff --git a/examples/standalone/cost.py b/examples/standalone/cost.py
index 806bc0eab..1a0558cef 100644
--- a/examples/standalone/cost.py
+++ b/examples/standalone/cost.py
@@ -1,3 +1,5 @@
+import numpy as np
+
import pybop
@@ -21,7 +23,7 @@ class StandaloneCost(pybop.BaseCost):
Methods
-------
- __call__(x, grad=None)
+ __call__(x)
Calculate the cost for a given parameter value.
"""
@@ -34,35 +36,18 @@ def __init__(self, problem=None):
"""
super().__init__(problem)
- self.parameters = pybop.Parameters(
- pybop.Parameter(
- "x",
- initial_value=4.2,
- bounds=[-1, 10],
- ),
- )
- self.x0 = self.parameters.initial_value()
-
- def _evaluate(self, x, grad=None):
+ def compute(
+ self, y: dict = None, dy: np.ndarray = None, calculate_grad: bool = False
+ ):
"""
- Calculate the cost for a given parameter value.
+ Compute the cost for a given parameter value.
The cost function is defined as cost(x) = x^2 + 42, where x is the
parameter value.
- Parameters
- ----------
- x : array-like
- A one-element array containing the parameter value for which to
- evaluate the cost.
- grad : array-like, optional
- Unused parameter, present for compatibility with gradient-based
- optimizers.
-
Returns
-------
float
The calculated cost value for the given parameter.
"""
-
- return x[0] ** 2 + 42
+ return np.asarray([sum(y[signal]) for signal in self.signal]) ** 2 + 43
diff --git a/examples/standalone/model.py b/examples/standalone/model.py
index e67477466..82a9f2d87 100644
--- a/examples/standalone/model.py
+++ b/examples/standalone/model.py
@@ -18,7 +18,8 @@ def __init__(
parameter_set: pybamm.ParameterValues = None,
n_states: int = 1,
):
- super().__init__()
+ super().__init__(name=name, parameter_set=parameter_set)
+
self.n_states = n_states
if n_states < 1:
raise ValueError("The number of states (n_states) must be greater than 0")
@@ -38,19 +39,20 @@ def __init__(
)
self._unprocessed_model = self.pybamm_model
- self.name = name
self.default_parameter_values = (
- default_parameter_values if parameter_set is None else parameter_set
+ default_parameter_values
+ if self._parameter_set is None
+ else self._parameter_set
)
self._parameter_set = self.default_parameter_values
self._unprocessed_parameter_set = self._parameter_set
- self.geometry = self.pybamm_model.default_geometry
- self.submesh_types = self.pybamm_model.default_submesh_types
- self.var_pts = self.pybamm_model.default_var_pts
- self.spatial_methods = self.pybamm_model.default_spatial_methods
- self.solver = pybamm.CasadiSolver(mode="fast")
+ self._geometry = self.pybamm_model.default_geometry
+ self._submesh_types = self.pybamm_model.default_submesh_types
+ self._var_pts = self.pybamm_model.default_var_pts
+ self._spatial_methods = self.pybamm_model.default_spatial_methods
+ self._solver = pybamm.CasadiSolver(mode="fast")
self._model_with_set_params = None
self._built_model = None
self._built_initial_soc = None
diff --git a/examples/standalone/optimiser.py b/examples/standalone/optimiser.py
index 326edd443..2e577958c 100644
--- a/examples/standalone/optimiser.py
+++ b/examples/standalone/optimiser.py
@@ -1,7 +1,6 @@
-import numpy as np
from scipy.optimize import minimize
-from pybop import BaseOptimiser, Result
+from pybop import BaseOptimiser, OptimisationResult
class StandaloneOptimiser(BaseOptimiser):
@@ -9,15 +8,9 @@ class StandaloneOptimiser(BaseOptimiser):
Defines an example standalone optimiser without a Cost.
"""
- def __init__(self, cost=None, **optimiser_kwargs):
- # Define cost function
- def cost(x):
- x1, x2 = x
- return (x1 - 2) ** 2 + (x2 - 4) ** 4
-
+ def __init__(self, cost, **optimiser_kwargs):
# Set initial values and other options
optimiser_options = dict(
- x0=np.array([0, 0]),
bounds=None,
method="Nelder-Mead",
jac=False,
@@ -54,7 +47,7 @@ def _run(self):
Returns
-------
x : numpy.ndarray
- The best parameter set found by the optimization.
+ The best parameter set found by the optimisation.
final_cost : float
The final cost associated with the best parameters.
"""
@@ -73,11 +66,13 @@ def callback(x):
**self._options,
)
- return Result(
+ return OptimisationResult(
x=result.x,
+ cost=self.cost,
final_cost=self.cost(result.x),
n_iterations=result.nit,
scipy_result=result,
+ optim=self,
)
def name(self):
diff --git a/examples/standalone/problem.py b/examples/standalone/problem.py
index d6d1f4b01..ecdfd0644 100644
--- a/examples/standalone/problem.py
+++ b/examples/standalone/problem.py
@@ -16,57 +16,58 @@ def __init__(
check_model=True,
signal=None,
additional_variables=None,
- init_soc=None,
+ initial_state=None,
):
- super().__init__(
- parameters, model, check_model, signal, additional_variables, init_soc
- )
+ super().__init__(parameters, model, check_model, signal, additional_variables)
self._dataset = dataset.data
# Check that the dataset contains time and current
- for name in ["Time [s]"] + self.signal:
+ for name in ["Time [s]", *self.signal]:
if name not in self._dataset:
raise ValueError(f"expected {name} in list of dataset")
- self._time_data = self._dataset["Time [s]"]
- self.n_time_data = len(self._time_data)
- if np.any(self._time_data < 0):
+ self._domain_data = self._dataset[self.domain]
+ self.n_data = len(self._domain_data)
+ if np.any(self._domain_data < 0):
raise ValueError("Times can not be negative.")
- if np.any(self._time_data[:-1] >= self._time_data[1:]):
+ if np.any(self._domain_data[:-1] >= self._domain_data[1:]):
raise ValueError("Times must be increasing.")
for signal in self.signal:
- if len(self._dataset[signal]) != self.n_time_data:
+ if len(self._dataset[signal]) != self.n_data:
raise ValueError(
f"Time data and {signal} data must be the same length."
)
self._target = {signal: self._dataset[signal] for signal in self.signal}
- def evaluate(self, x):
+ def evaluate(self, inputs):
"""
Evaluate the model with the given parameters and return the signal.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Dict
+ Parameters for evaluation of the model.
Returns
-------
y : np.ndarray
- The model output y(t) simulated with inputs x.
+ The model output y(t) simulated with given inputs.
"""
- return {signal: x[0] * self._time_data + x[1] for signal in self.signal}
+ return {
+ signal: inputs["Gradient"] * self._domain_data + inputs["Intercept"]
+ for signal in self.signal
+ }
- def evaluateS1(self, x):
+ def evaluateS1(self, inputs):
"""
Evaluate the model with the given parameters and return the signal and its derivatives.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Dict
+ Parameters for evaluation of the model.
Returns
-------
@@ -75,9 +76,9 @@ def evaluateS1(self, x):
with given inputs x.
"""
- y = {signal: x[0] * self._time_data + x[1] for signal in self.signal}
+ y = self.evaluate(inputs)
- dy = np.zeros((self.n_time_data, self.n_outputs, self.n_parameters))
- dy[:, 0, 0] = self._time_data
+ dy = np.zeros((self.n_data, self.n_outputs, self.n_parameters))
+ dy[:, 0, 0] = self._domain_data
return (y, dy)
diff --git a/noxfile.py b/noxfile.py
index 1cbbd08f9..4b4b34779 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -14,7 +14,6 @@
@nox.session
def unit(session):
- session.install("setuptools", "wheel")
session.install("-e", ".[all,dev]", silent=False)
if PYBOP_SCHEDULED:
session.run("pip", "install", f"pybamm=={PYBAMM_VERSION}", silent=False)
@@ -23,7 +22,6 @@ def unit(session):
@nox.session
def coverage(session):
- session.install("setuptools", "wheel")
session.install("-e", ".[all,dev]", silent=False)
session.install("pip")
if PYBOP_SCHEDULED:
@@ -44,7 +42,6 @@ def coverage(session):
@nox.session
def plots(session):
"""Run the tests that generate plots."""
- session.install("setuptools", "wheel")
session.install("-e", ".[plot,dev]", silent=False)
session.install("pip")
session.run("pytest", "--plots", "-n", "0")
@@ -53,7 +50,6 @@ def plots(session):
@nox.session
def integration(session):
"""Run the integration tests."""
- session.install("setuptools", "wheel")
session.install("-e", ".[all,dev]", silent=False)
session.run("pytest", "--integration")
@@ -61,7 +57,6 @@ def integration(session):
@nox.session
def examples(session):
"""Run the examples and notebooks"""
- session.install("setuptools", "wheel")
session.install("-e", ".[all,dev]", silent=False)
session.run("pytest", "--examples")
notebooks(session)
@@ -70,7 +65,7 @@ def examples(session):
@nox.session
def notebooks(session):
"""Run the Jupyter notebooks."""
- session.install("setuptools", "wheel")
+ session.install("openpyxl", "ipywidgets")
session.install("-e", ".[all,dev]", silent=False)
if PYBOP_SCHEDULED:
session.run("pip", "install", f"pybamm=={PYBAMM_VERSION}", silent=False)
@@ -83,14 +78,39 @@ def notebooks(session):
)
+@nox.session(name="notebooks-overwrite")
+def notebooks_overwrite(session):
+ """Run the Jupyter notebooks."""
+ session.install("openpyxl", "ipywidgets")
+ session.install("-e", ".[all,dev]", silent=False)
+ if PYBOP_SCHEDULED:
+ session.run("pip", "install", f"pybamm=={PYBAMM_VERSION}", silent=False)
+ session.run(
+ "pytest",
+ "--notebooks",
+ "--nbmake",
+ "--overwrite",
+ "--nbmake-timeout=1000",
+ "examples/",
+ )
+
+
@nox.session(name="tests")
def run_tests(session):
- """Run all the tests."""
+ """Run all or a user-defined set of tests."""
session.install("-e", ".[all,dev]", silent=False)
if PYBOP_SCHEDULED:
session.run("pip", "install", f"pybamm=={PYBAMM_VERSION}", silent=False)
+ specific_tests = session.posargs if session.posargs else []
session.run(
- "pytest", "--unit", "--integration", "--nbmake", "--examples", "-n", "auto"
+ "pytest",
+ "--unit",
+ "--integration",
+ "--nbmake",
+ "--examples",
+ "-n",
+ "auto",
+ *specific_tests,
)
@@ -100,7 +120,6 @@ def run_doc_tests(session):
Checks if the documentation can be built, runs any doctests (currently not
used).
"""
- session.install("setuptools", "wheel")
session.install("-e", ".[plot,docs,dev]", silent=False)
session.run("pytest", "--docs", "-n", "0")
@@ -112,7 +131,6 @@ def lint(session):
Credit: PyBaMM Team
"""
- session.install("setuptools", "wheel")
session.install("pre-commit", silent=False)
session.run("pre-commit", "run", "--all-files")
@@ -131,7 +149,6 @@ def run_quick(session):
@nox.session
def benchmarks(session):
"""Run the benchmarks."""
- session.install("setuptools", "wheel")
session.install("-e", ".[all,dev]", silent=False)
session.install("asv[virtualenv]")
session.run("asv", "run", "--show-stderr", "--python=same")
@@ -143,7 +160,6 @@ def docs(session):
Build the documentation and load it in a browser tab, rebuilding on changes.
Credit: PyBaMM Team
"""
- session.install("setuptools", "wheel")
envbindir = session.bin
session.install("-e", ".[all,docs]", silent=False)
session.chdir("docs")
diff --git a/pybop/__init__.py b/pybop/__init__.py
index 61971e95c..9eab3d5d6 100644
--- a/pybop/__init__.py
+++ b/pybop/__init__.py
@@ -43,7 +43,7 @@
#
# Utilities
#
-from ._utils import is_numeric
+from ._utils import is_numeric, SymbolReplacer
#
# Experiment class
@@ -55,12 +55,23 @@
#
from ._dataset import Dataset
+#
+# Transformation classes
+#
+from .transformation.base_transformation import Transformation
+from .transformation.transformations import (
+ IdentityTransformation,
+ ScaledTransformation,
+ LogTransformation,
+ ComposedTransformation,
+)
+
#
# Parameter classes
#
from .parameters.parameter import Parameter, Parameters
from .parameters.parameter_set import ParameterSet
-from .parameters.priors import BasePrior, Gaussian, Uniform, Exponential
+from .parameters.priors import BasePrior, Gaussian, Uniform, Exponential, JointLogPrior
#
# Model classes
@@ -72,39 +83,47 @@
from .models.base_model import Inputs
#
-# Problem class
+# Problem classes
#
from .problems.base_problem import BaseProblem
from .problems.fitting_problem import FittingProblem
+from .problems.multi_fitting_problem import MultiFittingProblem
from .problems.design_problem import DesignProblem
#
-# Cost function class
+# Cost classes
#
from .costs.base_cost import BaseCost
from .costs.fitting_costs import (
RootMeanSquaredError,
SumSquaredError,
+ Minkowski,
+ SumofPower,
ObserverCost,
- MAP,
)
from .costs.design_costs import (
DesignCost,
GravimetricEnergyDensity,
VolumetricEnergyDensity,
+ GravimetricPowerDensity,
+ VolumetricPowerDensity,
)
from .costs._likelihoods import (
BaseLikelihood,
GaussianLogLikelihood,
GaussianLogLikelihoodKnownSigma,
+ ScaledLogLikelihood,
+ LogPosterior,
)
+from .costs._weighted_cost import WeightedCost
#
-# Optimiser class
+# Optimiser classes
#
+from .optimisers._cuckoo import CuckooSearchImpl
from .optimisers._adamw import AdamWImpl
-from .optimisers.base_optimiser import BaseOptimiser, Result
+from .optimisers.base_optimiser import BaseOptimiser, OptimisationResult
from .optimisers.base_pints_optimiser import BasePintsOptimiser
from .optimisers.scipy_optimisers import (
BaseSciPyOptimiser,
@@ -120,10 +139,29 @@
PSO,
SNES,
XNES,
+ CuckooSearch,
AdamW,
)
from .optimisers.optimisation import Optimisation
+#
+# Monte Carlo classes
+#
+from .samplers.base_sampler import BaseSampler
+from .samplers.base_pints_sampler import BasePintsSampler
+from .samplers.pints_samplers import (
+ NUTS, DREAM, AdaptiveCovarianceMCMC,
+ DifferentialEvolutionMCMC, DramACMC,
+ EmceeHammerMCMC,
+ HaarioACMC, HaarioBardenetACMC,
+ HamiltonianMCMC, MALAMCMC,
+ MetropolisRandomWalkMCMC, MonomialGammaHamiltonianMCMC,
+ PopulationMCMC, RaoBlackwellACMC,
+ RelativisticMCMC, SliceDoublingMCMC,
+ SliceRankShrinkingMCMC, SliceStepoutMCMC,
+)
+from .samplers.mcmc_sampler import MCMCSampler
+
#
# Observer classes
#
@@ -131,15 +169,10 @@
from .observers.observer import Observer
#
-# Plotting class
+# Plotting classes
#
-from .plotting.plotly_manager import PlotlyManager
-from .plotting.quick_plot import StandardPlot, StandardSubplot, plot_trajectories
-from .plotting.plot2d import plot2d
-from .plotting.plot_dataset import plot_dataset
-from .plotting.plot_convergence import plot_convergence
-from .plotting.plot_parameters import plot_parameters
-from .plotting.plot_problem import quick_plot
+from . import plot as plot
+from .samplers.mcmc_summary import PosteriorSummary
#
# Remove any imported modules, so we don't expose them as part of pybop
diff --git a/pybop/_dataset.py b/pybop/_dataset.py
index 0da8be4be..120fcb61d 100644
--- a/pybop/_dataset.py
+++ b/pybop/_dataset.py
@@ -1,6 +1,7 @@
+from typing import Union
+
import numpy as np
-from pybamm import Interpolant, solvers
-from pybamm import t as pybamm_t
+from pybamm import solvers
class Dataset:
@@ -77,58 +78,68 @@ def __getitem__(self, key):
return self.data[key]
- def Interpolant(self):
- """
- Create an interpolation function of the dataset based on the independent variable.
-
- Currently, only time-based interpolation is supported. This method modifies
- the instance's Interpolant attribute to be an interpolation function that
- can be evaluated at different points in time.
-
- Raises
- ------
- NotImplementedError
- If the independent variable for interpolation is not supported.
- """
-
- if self.variable == "time":
- self.Interpolant = Interpolant(self.x, self.y, pybamm_t)
- else:
- NotImplementedError("Only time interpolation is supported")
-
- def check(self, signal=["Voltage [V]"]):
+ def check(self, domain: str = None, signal: Union[str, list[str]] = None) -> bool:
"""
Check the consistency of a PyBOP Dataset against the expected format.
+ Parameters
+ ----------
+ domain : str, optional
+ The domain of the dataset. Defaults to "Time [s]".
+ signal : str or List[str], optional
+ The signal(s) to check. Defaults to ["Voltage [V]"].
+
Returns
-------
bool
- If True, the dataset has the expected attributes.
+ True if the dataset has the expected attributes.
Raises
------
ValueError
If the time series and the data series are not consistent.
"""
- if isinstance(signal, str):
- signal = [signal]
+ self.domain = domain or "Time [s]"
+ signals = [signal] if isinstance(signal, str) else (signal or ["Voltage [V]"])
+
+ # Check that the dataset contains domain and chosen signals
+ missing_attributes = set([self.domain, *signals]) - set(self.names)
+ if missing_attributes:
+ raise ValueError(
+ f"Expected {', '.join(missing_attributes)} in list of dataset"
+ )
+
+ domain_data = self.data[self.domain]
+
+ # Check domain-specific constraints
+ if self.domain == "Time [s]":
+ self._check_time_constraints(domain_data)
+ elif self.domain == "Frequency [Hz]":
+ self._check_frequency_constraints(domain_data)
- # Check that the dataset contains time and chosen signal
- for name in ["Time [s]"] + signal:
- if name not in self.names:
- raise ValueError(f"expected {name} in list of dataset")
+ # Check for consistent data length
+ self._check_data_consistency(domain_data, signals)
- # Check for increasing times
- time_data = self.data["Time [s]"]
+ return True
+
+ @staticmethod
+ def _check_time_constraints(time_data: np.ndarray) -> None:
if np.any(time_data < 0):
- raise ValueError("Times can not be negative.")
+ raise ValueError("Times cannot be negative.")
if np.any(time_data[:-1] >= time_data[1:]):
raise ValueError("Times must be increasing.")
- # Check for consistent data
- n_time_data = len(time_data)
- for s in signal:
- if len(self.data[s]) != n_time_data:
- raise ValueError(f"Time data and {s} data must be the same length.")
-
- return True
+ @staticmethod
+ def _check_frequency_constraints(freq_data: np.ndarray) -> None:
+ if np.any(freq_data < 0):
+ raise ValueError("Frequencies cannot be negative.")
+
+ def _check_data_consistency(
+ self, domain_data: np.ndarray, signals: list[str]
+ ) -> None:
+ n_domain_data = len(domain_data)
+ for s in signals:
+ if len(self.data[s]) != n_domain_data:
+ raise ValueError(
+ f"{self.domain} data and {s} data must be the same length."
+ )
diff --git a/pybop/_experiment.py b/pybop/_experiment.py
index 1c4953849..b674c14dc 100644
--- a/pybop/_experiment.py
+++ b/pybop/_experiment.py
@@ -3,7 +3,7 @@
class Experiment(Experiment):
"""
- Wraps the Experiment class for generating experiment conditions for PyBaMM models.
+ Light wrapper of the PyBaMM Experiment class for generating experiment conditions for PyBaMM models.
Credit: PyBaMM
Base class for experimental conditions under which to run the model. In general, a
@@ -38,17 +38,13 @@ class Experiment(Experiment):
def __init__(
self,
operating_conditions,
- period="1 minute",
+ period=None,
temperature=None,
termination=None,
- drive_cycles=None,
- cccv_handling=None,
):
super().__init__(
operating_conditions,
period,
temperature,
termination,
- drive_cycles,
- cccv_handling,
)
diff --git a/pybop/_utils.py b/pybop/_utils.py
index 6fbfeaab5..426b0d277 100644
--- a/pybop/_utils.py
+++ b/pybop/_utils.py
@@ -1,4 +1,7 @@
+from typing import Optional
+
import numpy as np
+import pybamm
def is_numeric(x):
@@ -6,3 +9,168 @@ def is_numeric(x):
Check if a variable is numeric.
"""
return isinstance(x, (int, float, np.number))
+
+
+class SymbolReplacer:
+ """
+ Helper class to replace all instances of one or more symbols in an expression tree
+ with another symbol, as defined by the dictionary `symbol_replacement_map`
+ Originally developed by pybamm: https://github.com/pybamm-team/pybamm
+
+ Parameters
+ ----------
+ symbol_replacement_map : dict {:class:`pybamm.Symbol` -> :class:`pybamm.Symbol`}
+ Map of which symbols should be replaced by which.
+ processed_symbols: dict {:class:`pybamm.Symbol` -> :class:`pybamm.Symbol`}, optional
+ cached replaced symbols
+ process_initial_conditions: bool, optional
+ Whether to process initial conditions, default is True
+ """
+
+ def __init__(
+ self,
+ symbol_replacement_map: dict[pybamm.Symbol, pybamm.Symbol],
+ processed_symbols: Optional[dict[pybamm.Symbol, pybamm.Symbol]] = None,
+ process_initial_conditions: bool = True,
+ ):
+ self._symbol_replacement_map = symbol_replacement_map
+ self._processed_symbols = processed_symbols or {}
+ self._process_initial_conditions = process_initial_conditions
+
+ def process_model(self, unprocessed_model, inplace=True):
+ """
+ Replace all instances of a symbol in a PyBaMM model class.
+
+ Parameters
+ ----------
+ unprocessed_model : :class:`pybamm.BaseModel`
+ Model class to assign parameter values to
+ inplace: bool, optional
+ If True, replace the parameters in the model in place. Otherwise, return a
+ new model with parameter values set. Default is True.
+ """
+
+ model = unprocessed_model if inplace else unprocessed_model.new_copy()
+
+ for variable, equation in unprocessed_model.rhs.items():
+ pybamm.logger.verbose(f"Replacing symbols in {variable!r} (rhs)")
+ model.rhs[self.process_symbol(variable)] = self.process_symbol(equation)
+
+ for variable, equation in unprocessed_model.algebraic.items():
+ pybamm.logger.verbose(f"Replacing symbols in {variable!r} (algebraic)")
+ model.algebraic[self.process_symbol(variable)] = self.process_symbol(
+ equation
+ )
+
+ for variable, equation in unprocessed_model.initial_conditions.items():
+ pybamm.logger.verbose(
+ f"Replacing symbols in {variable!r} (initial conditions)"
+ )
+ if self._process_initial_conditions:
+ model.initial_conditions[self.process_symbol(variable)] = (
+ self.process_symbol(equation)
+ )
+ else:
+ model.initial_conditions[self.process_symbol(variable)] = equation
+
+ model.boundary_conditions = self.process_boundary_conditions(unprocessed_model)
+
+ for variable, equation in unprocessed_model.variables.items():
+ pybamm.logger.verbose(f"Replacing symbols in {variable!r} (variables)")
+ model.variables[variable] = self.process_symbol(equation)
+
+ model.events = self._process_events(unprocessed_model.events)
+ pybamm.logger.info(f"Finish replacing symbols in {model.name}")
+
+ return model
+
+ def _process_events(self, events: list) -> list:
+ new_events = []
+ for event in events:
+ pybamm.logger.verbose(f"Replacing symbols in event '{event.name}'")
+ new_events.append(
+ pybamm.Event(
+ event.name, self.process_symbol(event.expression), event.event_type
+ )
+ )
+ return new_events
+
+ def process_boundary_conditions(self, model):
+ """
+ Process boundary conditions for a PybaMM model class
+ Boundary conditions are dictionaries {"left": left bc, "right": right bc}
+ in general, but may be imposed on the tabs (or *not* on the tab) for a
+ small number of variables, e.g. {"negative tab": neg. tab bc,
+ "positive tab": pos. tab bc "no tab": no tab bc}.
+ """
+ boundary_conditions = {}
+ sides = ["left", "right", "negative tab", "positive tab", "no tab"]
+ for variable, bcs in model.boundary_conditions.items():
+ processed_variable = self.process_symbol(variable)
+ boundary_conditions[processed_variable] = {}
+
+ for side in sides:
+ try:
+ bc, typ = bcs[side]
+ pybamm.logger.verbose(
+ f"Replacing symbols in {variable!r} ({side} bc)"
+ )
+ processed_bc = (self.process_symbol(bc), typ)
+ boundary_conditions[processed_variable][side] = processed_bc
+ except KeyError as err:
+ # Don't raise if side is not in the boundary conditions
+ if err.args[0] in side:
+ pass
+ # Raise otherwise
+ else: # pragma: no cover
+ raise KeyError(err) from err
+
+ return boundary_conditions
+
+ def process_symbol(self, symbol):
+ """
+ This function recurses down the tree, replacing any symbols in
+ self._symbol_replacement_map.keys() with their corresponding value
+
+ Parameters
+ ----------
+ symbol : :class:`pybamm.Symbol`
+ The symbol to replace
+
+ Returns
+ -------
+ :class:`pybamm.Symbol`
+ Symbol with all replacements performed
+ """
+ if symbol in self._processed_symbols:
+ return self._processed_symbols[symbol]
+
+ processed_symbol = self._process_symbol(symbol)
+ self._processed_symbols[symbol] = processed_symbol
+ return processed_symbol
+
+ def _process_symbol(self, symbol: pybamm.Symbol) -> pybamm.Symbol:
+ if symbol in self._symbol_replacement_map:
+ return self._symbol_replacement_map[symbol]
+
+ if isinstance(symbol, pybamm.BinaryOperator):
+ # process children
+ new_left = self.process_symbol(symbol.left)
+ new_right = self.process_symbol(symbol.right)
+ return symbol._binary_new_copy(new_left, new_right) # noqa: SLF001
+
+ if isinstance(symbol, pybamm.UnaryOperator):
+ new_child = self.process_symbol(symbol.child)
+ return symbol._unary_new_copy(new_child) # noqa: SLF001
+
+ if isinstance(symbol, pybamm.Function):
+ new_children = [self.process_symbol(child) for child in symbol.children]
+ # Return a new copy with the replaced symbols
+ return symbol._function_new_copy(new_children) # noqa: SLF001
+
+ if isinstance(symbol, pybamm.Concatenation):
+ new_children = [self.process_symbol(child) for child in symbol.children]
+ return symbol._concatenation_new_copy(new_children) # noqa: SLF001
+
+ # Return leaf
+ return symbol
diff --git a/pybop/costs/_likelihoods.py b/pybop/costs/_likelihoods.py
index cce09f9bb..2472f351e 100644
--- a/pybop/costs/_likelihoods.py
+++ b/pybop/costs/_likelihoods.py
@@ -1,6 +1,13 @@
+from typing import Optional, Union
+
import numpy as np
+import scipy.stats as stats
+import pybop
from pybop.costs.base_cost import BaseCost
+from pybop.parameters.parameter import Parameter, Parameters
+from pybop.parameters.priors import BasePrior, JointLogPrior, Uniform
+from pybop.problems.base_problem import BaseProblem
class BaseLikelihood(BaseCost):
@@ -8,9 +15,42 @@ class BaseLikelihood(BaseCost):
Base class for likelihoods
"""
- def __init__(self, problem):
- super(BaseLikelihood, self).__init__(problem)
- self.n_time_data = problem.n_time_data
+ def __init__(self, problem: BaseProblem):
+ super().__init__(problem)
+ self.n_data = problem.n_data
+
+
+class BaseMetaLikelihood(BaseLikelihood):
+ """
+ Base class for likelihood classes which have a meta-likelihood
+ such as `LogPosterior` or `ScaledLoglikelihood`. This class
+ points the required attributes towards the composed likelihood
+ class.
+ """
+
+ def __init__(self, log_likelihood: BaseLikelihood):
+ self._log_likelihood = log_likelihood
+ super().__init__(log_likelihood.problem)
+
+ @property
+ def transformation(self):
+ return self._log_likelihood.transformation
+
+ @property
+ def has_separable_problem(self):
+ return self._log_likelihood.has_separable_problem
+
+ @property
+ def parameters(self):
+ return self._log_likelihood.parameters
+
+ @property
+ def n_parameters(self):
+ return self._log_likelihood.n_parameters
+
+ @property
+ def likelihood(self) -> BaseLikelihood:
+ return self._log_likelihood
class GaussianLogLikelihoodKnownSigma(BaseLikelihood):
@@ -21,91 +61,60 @@ class GaussianLogLikelihoodKnownSigma(BaseLikelihood):
Parameters
----------
- sigma : scalar or array
+ sigma0 : scalar or array
Initial standard deviation around ``x0``. Either a scalar value (one
standard deviation for all coordinates) or an array with one entry
- per dimension. Not all methods will use this information.
+ per dimension.
"""
- def __init__(self, problem, sigma):
- super(GaussianLogLikelihoodKnownSigma, self).__init__(problem)
- self.sigma = None
- self.set_sigma(sigma)
- self._offset = -0.5 * self.n_time_data * np.log(2 * np.pi / self.sigma)
- self._multip = -1 / (2.0 * self.sigma**2)
- self.sigma2 = self.sigma**-2
- self._dl = np.ones(self.n_parameters)
-
- def set_sigma(self, sigma):
- """
- Setter for sigma parameter
+ def __init__(self, problem: BaseProblem, sigma0: Union[list[float], float]):
+ super().__init__(problem)
+ sigma0 = self.check_sigma0(sigma0)
+ self.sigma2 = sigma0**2.0
+ self._offset = -0.5 * self.n_data * np.log(2 * np.pi * self.sigma2)
+ self._multip = -1 / (2.0 * self.sigma2)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
"""
- if sigma is None:
- raise ValueError(
- "The GaussianLogLikelihoodKnownSigma cost requires sigma to be "
- + "either a scalar value or an array with one entry per dimension."
- )
-
- if not isinstance(sigma, np.ndarray):
- sigma = np.asarray(sigma)
-
- if not np.issubdtype(sigma.dtype, np.number):
- raise ValueError("Sigma must contain only numeric values")
+ Compute the Gaussian log-likelihood for the given parameters with known sigma.
- if np.any(sigma <= 0):
- raise ValueError("Sigma must be positive")
- else:
- self.sigma = sigma
-
- def get_sigma(self):
- """
- Getter for sigma parameter
+ This method only computes the likelihood, without calling the problem.evaluateS1.
"""
- return self.sigma
+ # Verify we have dy if calculate_grad is True
+ self.verify_args(dy, calculate_grad)
- def _evaluate(self, x, grad=None):
- """
- Calls the problem.evaluate method and calculates
- the log-likelihood
- """
- y = self.problem.evaluate(x)
+ # Early return if the prediction is not verified
+ if not self.verify_prediction(y):
+ return (-np.inf, -self.grad_fail) if calculate_grad else -np.inf
- for key in self.signal:
- if len(y.get(key, [])) != len(self._target.get(key, [])):
- return -np.float64(np.inf) # prediction doesn't match target
+ # Calculate residuals and error
+ r = np.asarray([self._target[signal] - y[signal] for signal in self.signal])
+ e = np.sum(self._offset + self._multip * np.sum(np.real(r * np.conj(r))))
- e = np.asarray(
- [
- np.sum(
- self._offset
- + self._multip * np.sum((self._target[signal] - y[signal]) ** 2)
- )
- for signal in self.signal
- ]
- )
+ if calculate_grad:
+ dl = np.sum((np.sum((r * dy.T), axis=2) / self.sigma2), axis=1)
+ return e, dl
- if self.n_outputs == 1:
- return e.item()
- else:
- return np.sum(e)
+ return e
- def _evaluateS1(self, x, grad=None):
+ def check_sigma0(self, sigma0: Union[np.ndarray, float]):
"""
- Calls the problem.evaluateS1 method and calculates
- the log-likelihood
+ Check the validity of sigma0.
"""
- y, dy = self.problem.evaluateS1(x)
-
- for key in self.signal:
- if len(y.get(key, [])) != len(self._target.get(key, [])):
- likelihood = np.float64(np.inf)
- dl = self._dl * np.ones(self.n_parameters)
- return -likelihood, -dl
-
- r = np.asarray([self._target[signal] - y[signal] for signal in self.signal])
- likelihood = self._evaluate(x)
- dl = np.sum((self.sigma2 * np.sum((r * dy.T), axis=2)), axis=1)
- return likelihood, dl
+ sigma0 = np.asarray(sigma0, dtype=float)
+ if not np.all(sigma0 > 0):
+ raise ValueError("Sigma0 must be positive")
+ if np.shape(sigma0) not in [(), (1,), (self.n_outputs,)]:
+ raise ValueError(
+ "sigma0 must be either a scalar value (one standard deviation for "
+ "all coordinates) or an array with one entry per dimension."
+ )
+ return sigma0
class GaussianLogLikelihood(BaseLikelihood):
@@ -114,76 +123,256 @@ class GaussianLogLikelihood(BaseLikelihood):
data follows a Gaussian distribution and computes the log-likelihood of
observed data under this assumption.
+ This class estimates the standard deviation of the Gaussian distribution
+ alongside the parameters of the model.
+
Attributes
----------
_logpi : float
Precomputed offset value for the log-likelihood function.
+ _dsigma_scale : float
+ Scale factor for derivative of standard deviation.
"""
- def __init__(self, problem):
- super(GaussianLogLikelihood, self).__init__(problem)
- self._logpi = -0.5 * self.n_time_data * np.log(2 * np.pi)
- self._dl = np.ones(self.n_parameters + self.n_outputs)
+ def __init__(
+ self,
+ problem: BaseProblem,
+ sigma0: Union[float, list[float], list[Parameter]] = 1e-2,
+ dsigma_scale: float = 1.0,
+ ):
+ super().__init__(problem)
+ self._dsigma_scale = dsigma_scale
+ self._logpi = -0.5 * self.n_data * np.log(2 * np.pi)
+
+ # Add sigma parameter, join with self.parameters, reapply transformations
+ self.sigma = Parameters()
+ self._add_sigma_parameters(sigma0)
+ self.join_parameters(self.sigma)
+ self.transformation = self._parameters.construct_transformation()
+
+ def _add_sigma_parameters(self, sigma0):
+ sigma0 = [sigma0] if not isinstance(sigma0, list) else sigma0
+ sigma0 = self._pad_sigma0(sigma0)
+
+ for i, value in enumerate(sigma0):
+ self._add_single_sigma(i, value)
+
+ def _pad_sigma0(self, sigma0):
+ if len(sigma0) < self.n_outputs:
+ return np.pad(
+ sigma0,
+ (0, self.n_outputs - len(sigma0)),
+ constant_values=sigma0[-1],
+ )
+ return sigma0
+
+ def _add_single_sigma(self, index, value):
+ if isinstance(value, Parameter):
+ self.sigma.add(value)
+ elif isinstance(value, (int, float)):
+ self.sigma.add(
+ Parameter(
+ f"Sigma for output {index+1}",
+ initial_value=value,
+ prior=Uniform(1e-8 * value, 3 * value),
+ bounds=[1e-8, 3 * value],
+ )
+ )
+ else:
+ raise TypeError(
+ f"Expected sigma0 to contain Parameter objects or numeric values. "
+ f"Received {type(value)}"
+ )
- def _evaluate(self, x, grad=None):
+ @property
+ def dsigma_scale(self):
+ """
+ Scaling factor for the dsigma term in the gradient calculation.
+ """
+ return self._dsigma_scale
+
+ @dsigma_scale.setter
+ def dsigma_scale(self, new_value):
+ if new_value < 0:
+ raise ValueError("dsigma_scale must be non-negative")
+ self._dsigma_scale = new_value
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
"""
- Evaluates the Gaussian log-likelihood for the given parameters.
+ Compute the Gaussian log-likelihood for the given parameters.
- Args:
- x (array_like): The parameters for which to evaluate the log-likelihood.
- The last `self.n_outputs` elements are assumed to be the
- standard deviations of the Gaussian distributions.
+ This method only computes the likelihood, without calling problem.evaluate().
- Returns:
- float: The log-likelihood value, or -inf if the standard deviations are received as non-positive.
+ Returns
+ -------
+ float
+ The log-likelihood value, or -inf if the standard deviations are non-positive.
"""
- sigma = np.asarray(x[-self.n_outputs :])
+ # Verify we have dy if calculate_grad is True
+ self.verify_args(dy, calculate_grad)
+ sigma = self.sigma.current_value()
- if np.any(sigma <= 0):
- return -np.inf
+ if not self.verify_prediction(y):
+ return (-np.inf, -self.grad_fail) if calculate_grad else -np.inf
- y = self.problem.evaluate(x[: -self.n_outputs])
+ # Calculate residuals and error
+ r = np.asarray([self._target[signal] - y[signal] for signal in self.signal])
+ e = np.sum(
+ self._logpi
+ - self.n_data * np.log(sigma)
+ - np.sum(np.real(r * np.conj(r)), axis=1) / (2.0 * sigma**2.0)
+ )
- for key in self.signal:
- if len(y.get(key, [])) != len(self._target.get(key, [])):
- return -np.float64(np.inf) # prediction doesn't match target
+ if calculate_grad:
+ dl = np.sum((np.sum((r * dy.T), axis=2) / (sigma**2.0)), axis=1)
+ dsigma = (
+ -self.n_data / sigma + np.sum(r**2.0, axis=1) / (sigma**3.0)
+ ) / self._dsigma_scale
+ dl = np.concatenate((dl.flatten(), dsigma))
+ return e, dl
- e = np.asarray(
- [
- np.sum(
- self._logpi
- - self.n_time_data * np.log(sigma)
- - np.sum((self._target[signal] - y[signal]) ** 2) / (2.0 * sigma**2)
- )
- for signal in self.signal
- ]
- )
+ return e
- if self.n_outputs == 1:
- return e.item()
- else:
- return np.sum(e)
- def _evaluateS1(self, x, grad=None):
+class ScaledLogLikelihood(BaseMetaLikelihood):
+ r"""
+ This class scaled a `BaseLogLikelihood` class by the number of observations.
+ The scaling factor is given below:
+
+ .. math::
+ \mathcal{\hat{L(\theta)}} = \frac{1}{N} \mathcal{L(\theta)}
+
+ This class aims to provide numerical values with lower magnitude than the
+ canonical likelihoods, which can improve optimiser convergence in certain
+ cases.
+ """
+
+ def __init__(self, log_likelihood: BaseLikelihood):
+ super().__init__(log_likelihood)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
+ likelihood = self._log_likelihood.compute(y, dy, calculate_grad)
+ normalised_val = 1 / self.n_data
+
+ if isinstance(likelihood, tuple):
+ return tuple(val * normalised_val for val in likelihood)
+
+ return likelihood * normalised_val
+
+
+class LogPosterior(BaseMetaLikelihood):
+ """
+ The Log Posterior for a given problem.
+
+ Computes the log posterior which is proportional to the sum of the log
+ likelihood and the log prior.
+
+ Parameters
+ ----------
+ log_likelihood : BaseLikelihood
+ The likelihood class of type ``BaseLikelihood``.
+ log_prior : Optional, Union[pybop.BasePrior, stats.rv_continuous]
+ The prior class of type ``BasePrior`` or ``stats.rv_continuous``.
+ If not provided, the prior class will be taken from the parameter priors
+ constructed in the `pybop.Parameters` class.
+ gradient_step : float, default: 1e-3
+ The step size for the finite-difference gradient calculation
+ if the ``log_prior`` is not of type ``BasePrior``.
+ """
+
+ def __init__(
+ self,
+ log_likelihood: BaseLikelihood,
+ log_prior: Optional[Union[pybop.BasePrior, stats.rv_continuous]] = None,
+ gradient_step: float = 1e-3,
+ ):
+ self.gradient_step = gradient_step
+ super().__init__(log_likelihood)
+
+ if log_prior is None:
+ self._prior = JointLogPrior(*self.parameters.priors())
+ else:
+ self._prior = log_prior
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
"""
- Calls the problem.evaluateS1 method and calculates
- the log-likelihood
+ Calculate the posterior cost for a given forward model prediction.
+
+ Parameters
+ ----------
+ y : dict
+ The data for which to evaluate the cost.
+ dy : np.ndarray, optional
+ The correspond sensitivities in the data.
+ calculate_grad : bool, optional
+ Whether to calculate the gradient of the cost function.
+
+ Returns
+ -------
+ Union[float, Tuple[float, np.ndarray]]
+ The posterior cost, and optionally the gradient.
"""
- sigma = np.asarray(x[-self.n_outputs :])
+ # Verify we have dy if calculate_grad is True
+ self.verify_args(dy, calculate_grad)
+
+ if calculate_grad:
+ if isinstance(self._prior, BasePrior):
+ log_prior, dp = self._prior.logpdfS1(self.parameters.current_value())
+ else:
+ # Compute log prior first
+ log_prior = self._prior.logpdf(self.parameters.current_value())
+
+ # Compute a finite difference approximation of the gradient of the log prior
+ delta = self.parameters.initial_value() * self.gradient_step
+ dp = []
+
+ for parameter, step_size in zip(self.parameters, delta):
+ param_value = parameter.value
+ upper_value = param_value * (1 + step_size)
+ lower_value = param_value * (1 - step_size)
+
+ log_prior_upper = parameter.prior.logpdf(upper_value)
+ log_prior_lower = parameter.prior.logpdf(lower_value)
+
+ gradient = (log_prior_upper - log_prior_lower) / (
+ 2 * step_size * param_value + np.finfo(float).eps
+ )
+ dp.append(gradient)
+ else:
+ log_prior = self._prior.logpdf(self.parameters.current_value())
+
+ if not np.isfinite(log_prior).any():
+ return (-np.inf, -self.grad_fail) if calculate_grad else -np.inf
- if np.any(sigma <= 0):
- return -np.float64(np.inf), -self._dl * np.ones(self.n_parameters)
+ if calculate_grad:
+ log_likelihood, dl = self._log_likelihood.compute(
+ y, dy, calculate_grad=True
+ )
- y, dy = self.problem.evaluateS1(x[: -self.n_outputs])
- for key in self.signal:
- if len(y.get(key, [])) != len(self._target.get(key, [])):
- likelihood = np.float64(np.inf)
- dl = self._dl * np.ones(self.n_parameters)
- return -likelihood, -dl
+ posterior = log_likelihood + log_prior
+ total_gradient = dl + dp
- r = np.asarray([self._target[signal] - y[signal] for signal in self.signal])
- likelihood = self._evaluate(x)
- dl = sigma ** (-2.0) * np.sum((r * dy.T), axis=2)
- dsigma = -self.n_time_data / sigma + sigma**-(3.0) * np.sum(r**2, axis=1)
- dl = np.concatenate((dl.flatten(), dsigma))
- return likelihood, dl
+ return posterior, total_gradient
+
+ log_likelihood = self._log_likelihood.compute(y)
+ posterior = log_likelihood + log_prior
+ return posterior
+
+ @property
+ def prior(self) -> BasePrior:
+ return self._prior
diff --git a/pybop/costs/_weighted_cost.py b/pybop/costs/_weighted_cost.py
new file mode 100644
index 000000000..39c42ef67
--- /dev/null
+++ b/pybop/costs/_weighted_cost.py
@@ -0,0 +1,125 @@
+from typing import Optional, Union
+
+import numpy as np
+
+from pybop import BaseCost, BaseLikelihood, DesignCost
+
+
+class WeightedCost(BaseCost):
+ """
+ A subclass for constructing a linear combination of cost functions as
+ a single weighted cost function.
+
+ Parameters
+ ----------
+ costs : pybop.BaseCost
+ The individual PyBOP cost objects.
+ weights : list[float]
+ A list of values with which to weight the cost values.
+ has_identical_problems : bool
+ If True, the shared problem will be evaluated once and saved before the
+ self.compute() method of each cost is called (default: False).
+ has_separable_problem: bool
+ This attribute must be set to False for WeightedCost objects. If the
+ corresponding attribute of an individual cost is True, the problem is
+ separable from the cost function and will be evaluated before the
+ individual cost evaluation is called.
+ """
+
+ def __init__(self, *costs, weights: Optional[list[float]] = None):
+ if not all(isinstance(cost, BaseCost) for cost in costs):
+ raise TypeError("All costs must be instances of BaseCost.")
+ self.costs = [cost for cost in costs]
+ if len(set(type(cost.problem) for cost in self.costs)) > 1:
+ raise TypeError("All problems must be of the same class type.")
+ self.minimising = not any(
+ isinstance(cost, (BaseLikelihood, DesignCost)) for cost in self.costs
+ )
+
+ # Check if weights are provided
+ if weights is not None:
+ try:
+ self.weights = np.asarray(weights, dtype=float)
+ except ValueError:
+ raise ValueError("Weights must be numeric values.") from None
+
+ if self.weights.size != len(self.costs):
+ raise ValueError("Number of weights must match number of costs.")
+ else:
+ self.weights = np.ones(len(self.costs))
+
+ # Check if all costs depend on the same problem
+ self._has_identical_problems = all(
+ cost.has_separable_problem and cost.problem is self.costs[0].problem
+ for cost in self.costs
+ )
+
+ if self._has_identical_problems:
+ super().__init__(self.costs[0].problem)
+ else:
+ super().__init__()
+
+ for cost in self.costs:
+ self.join_parameters(cost.parameters)
+
+ # Weighted costs do not use this functionality
+ self._has_separable_problem = False
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
+ """
+ Computes the cost function for the given predictions.
+
+ Parameters
+ ----------
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
+
+ Returns
+ -------
+ float
+ The weighted cost value.
+ """
+ if self._has_identical_problems:
+ inputs = self.problem.parameters.as_dict()
+ if calculate_grad:
+ y, dy = self.problem.evaluateS1(inputs)
+ else:
+ y = self.problem.evaluate(inputs)
+
+ e = np.empty_like(self.costs)
+ de = np.empty((len(self.parameters), len(self.costs)))
+
+ for i, cost in enumerate(self.costs):
+ if self._has_identical_problems:
+ y, dy = (y, dy)
+ elif cost.has_separable_problem:
+ inputs = cost.parameters.as_dict()
+ if calculate_grad:
+ y, dy = cost.problem.evaluateS1(inputs)
+ else:
+ y = cost.problem.evaluate(inputs)
+
+ if calculate_grad:
+ e[i], de[:, i] = cost.compute(y, dy=dy, calculate_grad=True)
+ else:
+ e[i] = cost.compute(y)
+
+ e = np.dot(e, self.weights)
+ if calculate_grad:
+ de = np.dot(de, self.weights)
+ return e, de
+
+ return e
+
+ @property
+ def has_identical_problems(self):
+ return self._has_identical_problems
diff --git a/pybop/costs/base_cost.py b/pybop/costs/base_cost.py
index 04d0a3934..b53e80dff 100644
--- a/pybop/costs/base_cost.py
+++ b/pybop/costs/base_cost.py
@@ -1,4 +1,10 @@
+from typing import Optional, Union
+
+import numpy as np
+from numpy import ndarray
+
from pybop import BaseProblem
+from pybop.parameters.parameter import Inputs, Parameters
class BaseCost:
@@ -15,46 +21,53 @@ class BaseCost:
problem : object
A problem instance containing the data and functions necessary for
evaluating the cost function.
- _target : array-like
+ target : array-like
An array containing the target data to fit.
- x0 : array-like
- The initial guess for the model parameters.
n_outputs : int
The number of outputs in the model.
+ has_separable_problem : bool
+ If True, the problem is separable from the cost function and will be
+ evaluated in advance of the call to self.compute() (default: False).
+ _de : float
+ The gradient of the cost function to use if an error occurs during
+ evaluation. Defaults to 1.0.
"""
- def __init__(self, problem=None):
- self.parameters = None
+ def __init__(self, problem: Optional[BaseProblem] = None):
+ self._parameters = Parameters()
+ self._transformation = None
self.problem = problem
- self.x0 = None
+ self.verbose = False
+ self._has_separable_problem = False
+ self.y = None
+ self.dy = None
+ self._de = 1.0
if isinstance(self.problem, BaseProblem):
- self._target = self.problem._target
- self.parameters = self.problem.parameters
- self.x0 = self.problem.x0
+ self._target = self.problem.target
+ self._parameters.join(self.problem.parameters)
self.n_outputs = self.problem.n_outputs
self.signal = self.problem.signal
-
- @property
- def n_parameters(self):
- return len(self.parameters)
-
- def __call__(self, x, grad=None):
+ self._transformation = self._parameters.construct_transformation()
+ self._has_separable_problem = True
+ self.grad_fail = None
+ self.set_fail_gradient()
+
+ def __call__(
+ self,
+ inputs: Union[Inputs, list],
+ calculate_grad: bool = False,
+ apply_transform: bool = False,
+ ):
"""
- Call the evaluate function for a given set of parameters.
- """
- return self.evaluate(x, grad)
-
- def evaluate(self, x, grad=None):
- """
- Call the evaluate function for a given set of parameters.
+ This method calls the forward model via problem.evaluate(inputs),
+ and computes the cost for the given output by calling self.compute().
Parameters
----------
- x : array-like
- The parameters for which to evaluate the cost.
- grad : array-like, optional
- An array to store the gradient of the cost function with respect
- to the parameters.
+ inputs : Inputs or array-like
+ The parameters for which to compute the cost and gradient.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
@@ -66,28 +79,44 @@ def evaluate(self, x, grad=None):
ValueError
If an error occurs during the calculation of the cost.
"""
- try:
- return self._evaluate(x, grad)
-
- except NotImplementedError as e:
- raise e
-
- except Exception as e:
- raise ValueError(f"Error in cost calculation: {e}")
-
- def _evaluate(self, x, grad=None):
+ # Apply transformation if needed
+ # Note, we use the transformation and parameter properties here to enable
+ # differing attributes within the `LogPosterior` class
+ self.has_transform = self.transformation is not None and apply_transform
+ if self.has_transform:
+ inputs = self.transformation.to_model(inputs)
+ inputs = self.parameters.verify(inputs)
+ self.parameters.update(values=list(inputs.values()))
+
+ y, dy = None, None
+ if self._has_separable_problem:
+ if calculate_grad:
+ y, dy = self.problem.evaluateS1(self.problem.parameters.as_dict())
+ cost, grad = self.compute(y, dy=dy, calculate_grad=calculate_grad)
+ if self.has_transform and np.isfinite(cost):
+ jac = self.transformation.jacobian(inputs)
+ grad = np.matmul(grad, jac)
+ return cost, grad
+
+ y = self.problem.evaluate(self.problem.parameters.as_dict())
+ return self.compute(y, dy=dy, calculate_grad=calculate_grad)
+
+ def compute(self, y: dict, dy: ndarray, calculate_grad: bool = False):
"""
- Calculate the cost function value for a given set of parameters.
+ Compute the cost and if `calculate_grad` is True, its gradient with
+ respect to the predictions.
+ This method only computes the cost, without calling the `problem.evaluate()`.
This method must be implemented by subclasses.
Parameters
----------
- x : array-like
- The parameters for which to evaluate the cost.
- grad : array-like, optional
- An array to store the gradient of the cost function with respect
- to the parameters.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
@@ -101,53 +130,83 @@ def _evaluate(self, x, grad=None):
"""
raise NotImplementedError
- def evaluateS1(self, x):
+ def set_fail_gradient(self, de: float = 1.0):
"""
- Call _evaluateS1 for a given set of parameters.
+ Set the fail gradient to a specified value.
+
+ The fail gradient is used if an error occurs during the calculation
+ of the gradient. This method allows updating the default gradient value.
Parameters
----------
- x : array-like
- The parameters for which to compute the cost and gradient.
-
- Returns
- -------
- tuple
- A tuple containing the cost and the gradient. The cost is a float,
- and the gradient is an array-like of the same length as `x`.
-
- Raises
- ------
- ValueError
- If an error occurs during the calculation of the cost or gradient.
+ de : float
+ The new fail gradient value to be used.
"""
- try:
- return self._evaluateS1(x)
-
- except NotImplementedError as e:
- raise e
-
- except Exception as e:
- raise ValueError(f"Error in cost calculation: {e}")
+ if not isinstance(de, float):
+ de = float(de)
+ self._de = de
+ self.grad_fail = self._de * np.ones(self.n_parameters)
- def _evaluateS1(self, x):
+ def verify_prediction(self, y):
"""
- Compute the cost and its gradient with respect to the parameters.
+ Verify that the prediction matches the target data.
Parameters
----------
- x : array-like
- The parameters for which to compute the cost and gradient.
+ y : dict
+ The model predictions.
Returns
-------
- tuple
- A tuple containing the cost and the gradient. The cost is a float,
- and the gradient is an array-like of the same length as `x`.
+ bool
+ True if the prediction matches the target data, otherwise False.
+ """
+ if any(
+ len(y.get(key, [])) != len(self._target.get(key, [])) for key in self.signal
+ ):
+ return False
- Raises
- ------
- NotImplementedError
- If the method has not been implemented by the subclass.
+ return True
+
+ def verify_args(self, dy: ndarray, calculate_grad: bool):
+ if calculate_grad and dy is None:
+ raise ValueError(
+ "Forward model sensitivities need to be provided alongside `calculate_grad=True` for `cost.compute`."
+ )
+
+ def join_parameters(self, parameters):
"""
- raise NotImplementedError
+ Setter for joining parameters. This method sets the fail gradient if the join adds parameters.
+ """
+ original_n_params = self.n_parameters
+ self._parameters.join(parameters)
+ if original_n_params != self.n_parameters:
+ self.set_fail_gradient()
+
+ @property
+ def n_parameters(self):
+ return len(self._parameters)
+
+ @property
+ def has_separable_problem(self):
+ return self._has_separable_problem
+
+ @property
+ def target(self):
+ return self._target
+
+ @property
+ def parameters(self):
+ return self._parameters
+
+ @parameters.setter
+ def parameters(self, parameters):
+ self._parameters = parameters
+
+ @property
+ def transformation(self):
+ return self._transformation
+
+ @transformation.setter
+ def transformation(self, transformation):
+ self._transformation = transformation
diff --git a/pybop/costs/design_costs.py b/pybop/costs/design_costs.py
index 60064c65c..49714cff7 100644
--- a/pybop/costs/design_costs.py
+++ b/pybop/costs/design_costs.py
@@ -1,8 +1,7 @@
-import warnings
+from typing import Union
import numpy as np
-from pybop import is_numeric
from pybop.costs.base_cost import BaseCost
@@ -16,13 +15,9 @@ class DesignCost(BaseCost):
---------------------
problem : object
The associated problem containing model and evaluation methods.
- parameter_set : object)
- The set of parameters from the problem's model.
- dt : float
- The time step size used in the simulation.
"""
- def __init__(self, problem, update_capacity=False):
+ def __init__(self, problem):
"""
Initialises the gravimetric energy density calculator with a problem.
@@ -31,173 +26,248 @@ def __init__(self, problem, update_capacity=False):
problem : object
The problem instance containing the model and data.
"""
- super(DesignCost, self).__init__(problem)
+ super().__init__(problem)
self.problem = problem
- if update_capacity is True:
- nominal_capacity_warning = (
- "The nominal capacity is approximated for each iteration."
- )
- else:
- nominal_capacity_warning = (
- "The nominal capacity is fixed at the initial model value."
- )
- warnings.warn(nominal_capacity_warning, UserWarning)
- self.update_capacity = update_capacity
- self.parameter_set = problem.model.parameter_set
- self.update_simulation_data(self.x0)
-
- def update_simulation_data(self, x0):
+
+
+class GravimetricEnergyDensity(DesignCost):
+ """
+ Calculates the gravimetric energy density (specific energy) of a battery cell,
+ when applied to a normalised discharge from upper to lower voltage limits. The
+ goal of maximising the energy density is achieved by setting minimising = False
+ in the optimiser settings.
+
+ The gravimetric energy density [Wh.kg-1] is calculated as
+
+ .. math::
+ \\frac{1}{3600 m} \\int_{t=0}^{t=T} I(t) V(t) \\mathrm{d}t
+
+ where m is the cell mass, t is the time, T is the total time, I is the current
+ and V is the voltage. The factor of 1/3600 is included to convert from seconds
+ to hours.
+
+ Inherits all parameters and attributes from ``DesignCost``.
+ """
+
+ def __init__(self, problem):
+ super().__init__(problem)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> float:
"""
- Updates the simulation data based on the initial parameter values.
+ Computes the cost function for the given predictions.
Parameters
----------
- x0 : array
- The initial parameter values for the simulation.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ Note: not used in design optimisation classes.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
+
+ Returns
+ -------
+ float
+ The gravimetric energy density or -infinity in case of infeasible parameters.
"""
- if self.update_capacity:
- self.problem.model.approximate_capacity(x0)
- solution = self.problem.evaluate(x0)
+ if not any(np.isfinite(y[signal][0]) for signal in self.signal):
+ return -np.inf
- if "Time [s]" not in solution:
- raise ValueError("The solution does not contain time data.")
- self.problem._time_data = solution["Time [s]"]
- self.problem._target = {key: solution[key] for key in self.problem.signal}
- self.dt = solution["Time [s]"][1] - solution["Time [s]"][0]
+ voltage, current = y["Voltage [V]"], y["Current [A]"]
+ dt = y["Time [s]"][1] - y["Time [s]"][0]
+ energy_density = np.trapz(voltage * current, dx=dt) / (
+ 3600 * self.problem.model.cell_mass()
+ )
- def _evaluate(self, x, grad=None):
- """
- Computes the value of the cost function.
+ return energy_density
+
+
+class VolumetricEnergyDensity(DesignCost):
+ """
+ Calculates the (volumetric) energy density of a battery cell, when applied to a
+ normalised discharge from upper to lower voltage limits. The goal of maximising
+ the energy density is achieved by setting minimising = False in the optimiser
+ settings.
- This method must be implemented by subclasses.
+ The volumetric energy density [Wh.m-3] is calculated as
+
+ .. math::
+ \\frac{1}{3600 v} \\int_{t=0}^{t=T} I(t) V(t) \\mathrm{d}t
+
+ where v is the cell volume, t is the time, T is the total time, I is the current
+ and V is the voltage. The factor of 1/3600 is included to convert from seconds
+ to hours.
+
+ Inherits all parameters and attributes from ``DesignCost``.
+ """
+
+ def __init__(self, problem):
+ super().__init__(problem)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> float:
+ """
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array
- The parameter set for which to compute the cost.
- grad : array, optional
- Gradient information, not used in this method.
-
- Raises
- ------
- NotImplementedError
- If the method has not been implemented by the subclass.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ Note: not used in design optimisation classes.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
+
+ Returns
+ -------
+ float
+ The volumetric energy density or -infinity in case of infeasible parameters.
"""
- raise NotImplementedError
+ if not any(np.isfinite(y[signal][0]) for signal in self.signal):
+ return -np.inf
+ voltage, current = y["Voltage [V]"], y["Current [A]"]
+ dt = y["Time [s]"][1] - y["Time [s]"][0]
+ energy_density = np.trapz(voltage * current, dx=dt) / (
+ 3600 * self.problem.model.cell_volume()
+ )
-class GravimetricEnergyDensity(DesignCost):
+ return energy_density
+
+
+class GravimetricPowerDensity(DesignCost):
"""
- Represents the gravimetric energy density of a battery cell, calculated based
- on a normalised discharge from upper to lower voltage limits. The goal is to
- maximise the energy density, which is achieved by setting minimising = False
- in the optimiser settings.
+ Calculates the gravimetric power density (specific power) of a battery cell,
+ when applied to a discharge from upper to lower voltage limits. The goal of
+ maximising the power density is achieved by setting minimising = False in the
+ optimiser settings.
+
+ The time-averaged gravimetric power density [W.kg-1] is calculated as
+
+ .. math::
+ \\frac{1}{3600 m T} \\int_{t=0}^{t=T} I(t) V(t) \\mathrm{d}t
+
+ where m is the cell mass, t is the time, T is the total time, I is the current
+ and V is the voltage. The factor of 1/3600 is included to convert from seconds
+ to hours.
Inherits all parameters and attributes from ``DesignCost``.
+
+ Additional parameters
+ ---------------------
+ target_time : int
+ The length of time (seconds) over which the power should be sustained.
"""
- def __init__(self, problem, update_capacity=False):
- super(GravimetricEnergyDensity, self).__init__(problem, update_capacity)
+ def __init__(self, problem, target_time: Union[int, float] = 3600):
+ super().__init__(problem)
+ self.target_time = target_time
- def _evaluate(self, x, grad=None):
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> float:
"""
- Computes the cost function for the energy density.
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array
- The parameter set for which to compute the cost.
- grad : array, optional
- Gradient information, not used in this method.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ Note: not used in design optimisation classes.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
float
- The gravimetric energy density or -infinity in case of infeasible parameters.
+ The gravimetric power density or -infinity in case of infeasible parameters.
"""
- if not all(is_numeric(i) for i in x):
- raise ValueError("Input must be a numeric array.")
+ if not any(np.isfinite(y[signal][0]) for signal in self.signal):
+ return -np.inf
- try:
- with warnings.catch_warnings():
- # Convert UserWarning to an exception
- warnings.filterwarnings("error", category=UserWarning)
+ voltage, current = y["Voltage [V]"], y["Current [A]"]
+ dt = y["Time [s]"][1] - y["Time [s]"][0]
+ time_averaged_power_density = np.trapz(voltage * current, dx=dt) / (
+ self.target_time * 3600 * self.problem.model.cell_mass()
+ )
- if self.update_capacity:
- self.problem.model.approximate_capacity(x)
- solution = self.problem.evaluate(x)
+ return time_averaged_power_density
- voltage, current = solution["Voltage [V]"], solution["Current [A]"]
- energy_density = np.trapz(voltage * current, dx=self.dt) / (
- 3600 * self.problem.model.cell_mass(self.parameter_set)
- )
- return energy_density
+class VolumetricPowerDensity(DesignCost):
+ """
+ Calculates the (volumetric) power density of a battery cell, when applied to a
+ discharge from upper to lower voltage limits. The goal of maximising the power
+ density is achieved by setting minimising = False in the optimiser settings.
- # Catch infeasible solutions and return infinity
- except UserWarning as e:
- print(f"Ignoring this sample due to: {e}")
- return -np.inf
+ The time-averaged volumetric power density [W.m-3] is calculated as
- # Catch any other exception and return infinity
- except Exception as e:
- print(f"An error occurred during the evaluation: {e}")
- return -np.inf
+ .. math::
+ \\frac{1}{3600 v T} \\int_{t=0}^{t=T} I(t) V(t) \\mathrm{d}t
-
-class VolumetricEnergyDensity(DesignCost):
- """
- Represents the volumetric energy density of a battery cell, calculated based
- on a normalised discharge from upper to lower voltage limits. The goal is to
- maximise the energy density, which is achieved by setting minimising = False
- in the optimiser settings.
+ where v is the cell volume, t is the time, T is the total time, I is the current
+ and V is the voltage. The factor of 1/3600 is included to convert from seconds
+ to hours.
Inherits all parameters and attributes from ``DesignCost``.
+
+ Additional parameters
+ ---------------------
+ target_time : int
+ The length of time (seconds) over which the power should be sustained.
"""
- def __init__(self, problem, update_capacity=False):
- super(VolumetricEnergyDensity, self).__init__(problem, update_capacity)
+ def __init__(self, problem, target_time: Union[int, float] = 3600):
+ super().__init__(problem)
+ self.target_time = target_time
- def _evaluate(self, x, grad=None):
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> float:
"""
- Computes the cost function for the energy density.
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array
- The parameter set for which to compute the cost.
- grad : array, optional
- Gradient information, not used in this method.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ Note: not used in design optimisation classes.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
float
- The volumetric energy density or -infinity in case of infeasible parameters.
+ The volumetric power density or -infinity in case of infeasible parameters.
"""
- if not all(is_numeric(i) for i in x):
- raise ValueError("Input must be a numeric array.")
- try:
- with warnings.catch_warnings():
- # Convert UserWarning to an exception
- warnings.filterwarnings("error", category=UserWarning)
-
- if self.update_capacity:
- self.problem.model.approximate_capacity(x)
- solution = self.problem.evaluate(x)
-
- voltage, current = solution["Voltage [V]"], solution["Current [A]"]
- energy_density = np.trapz(voltage * current, dx=self.dt) / (
- 3600 * self.problem.model.cell_volume(self.parameter_set)
- )
-
- return energy_density
-
- # Catch infeasible solutions and return infinity
- except UserWarning as e:
- print(f"Ignoring this sample due to: {e}")
+ if not any(np.isfinite(y[signal][0]) for signal in self.signal):
return -np.inf
- # Catch any other exception and return infinity
- except Exception as e:
- print(f"An error occurred during the evaluation: {e}")
- return -np.inf
+ voltage, current = y["Voltage [V]"], y["Current [A]"]
+ dt = y["Time [s]"][1] - y["Time [s]"][0]
+ time_averaged_power_density = np.trapz(voltage * current, dx=dt) / (
+ self.target_time * 3600 * self.problem.model.cell_volume()
+ )
+
+ return time_averaged_power_density
diff --git a/pybop/costs/fitting_costs.py b/pybop/costs/fitting_costs.py
index eff56059c..19b8f458a 100644
--- a/pybop/costs/fitting_costs.py
+++ b/pybop/costs/fitting_costs.py
@@ -1,6 +1,7 @@
+from typing import Union
+
import numpy as np
-from pybop.costs._likelihoods import BaseLikelihood
from pybop.costs.base_cost import BaseCost
from pybop.observers.observer import Observer
@@ -18,98 +19,51 @@ class RootMeanSquaredError(BaseCost):
"""
def __init__(self, problem):
- super(RootMeanSquaredError, self).__init__(problem)
-
- # Default fail gradient
- self._de = 1.0
-
- def _evaluate(self, x, grad=None):
+ super().__init__(problem)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
"""
- Calculate the root mean square error for a given set of parameters.
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array-like
- The parameters for which to evaluate the cost.
- grad : array-like, optional
- An array to store the gradient of the cost function with respect
- to the parameters.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
float
The root mean square error.
-
- """
- prediction = self.problem.evaluate(x)
-
- for key in self.signal:
- if len(prediction.get(key, [])) != len(self._target.get(key, [])):
- return np.float64(np.inf) # prediction doesn't match target
-
- e = np.asarray(
- [
- np.sqrt(np.mean((prediction[signal] - self._target[signal]) ** 2))
- for signal in self.signal
- ]
- )
-
- if self.n_outputs == 1:
- return e.item()
- else:
- return np.sum(e)
-
- def _evaluateS1(self, x):
- """
- Compute the cost and its gradient with respect to the parameters.
-
- Parameters
- ----------
- x : array-like
- The parameters for which to compute the cost and gradient.
-
- Returns
- -------
- tuple
- A tuple containing the cost and the gradient. The cost is a float,
- and the gradient is an array-like of the same length as `x`.
-
- Raises
- ------
- ValueError
- If an error occurs during the calculation of the cost or gradient.
"""
- y, dy = self.problem.evaluateS1(x)
+ # Verify we have dy if calculate_grad is True
+ self.verify_args(dy, calculate_grad)
- for key in self.signal:
- if len(y.get(key, [])) != len(self._target.get(key, [])):
- e = np.float64(np.inf)
- de = self._de * np.ones(self.n_parameters)
- return e, de
+ # Early return if the prediction is not verified
+ if not self.verify_prediction(y):
+ return (np.inf, self.grad_fail) if calculate_grad else np.inf
+ # Calculate residuals and error
r = np.asarray([y[signal] - self._target[signal] for signal in self.signal])
- e = np.sqrt(np.mean(r**2, axis=1))
- de = np.mean((r * dy.T), axis=2) / (e + np.finfo(float).eps)
-
- if self.n_outputs == 1:
- return e.item(), de.flatten()
- else:
- return np.sum(e), np.sum(de, axis=1)
-
- def set_fail_gradient(self, de):
- """
- Set the fail gradient to a specified value.
-
- The fail gradient is used if an error occurs during the calculation
- of the gradient. This method allows updating the default gradient value.
+ e = np.sqrt(np.mean(np.abs(r) ** 2, axis=1))
+
+ if calculate_grad:
+ de = np.mean((r * dy.T), axis=2) / (e + np.finfo(float).eps)
+ return (
+ (e.item(), de.flatten())
+ if self.n_outputs == 1
+ else (e.sum(), de.sum(1))
+ )
- Parameters
- ----------
- de : float
- The new fail gradient value to be used.
- """
- de = float(de)
- self._de = de
+ return e.item() if self.n_outputs == 1 else np.sum(e)
class SumSquaredError(BaseCost):
@@ -122,246 +76,261 @@ class SumSquaredError(BaseCost):
Inherits all parameters and attributes from ``BaseCost``.
- Additional Attributes
- ---------------------
- _de : float
- The gradient of the cost function to use if an error occurs during
- evaluation. Defaults to 1.0.
-
"""
def __init__(self, problem):
- super(SumSquaredError, self).__init__(problem)
-
- # Default fail gradient
- self._de = 1.0
-
- def _evaluate(self, x, grad=None):
+ super().__init__(problem)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
"""
- Calculate the sum of squared errors for a given set of parameters.
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array-like
- The parameters for which to evaluate the cost.
- grad : array-like, optional
- An array to store the gradient of the cost function with respect
- to the parameters.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
float
- The sum of squared errors.
- """
- prediction = self.problem.evaluate(x)
-
- for key in self.signal:
- if len(prediction.get(key, [])) != len(self._target.get(key, [])):
- return np.float64(np.inf) # prediction doesn't match target
-
- e = np.asarray(
- [
- np.sum(((prediction[signal] - self._target[signal]) ** 2))
- for signal in self.signal
- ]
- )
- if self.n_outputs == 1:
- return e.item()
- else:
- return np.sum(e)
-
- def _evaluateS1(self, x):
+ The Sum of Squared Error.
"""
- Compute the cost and its gradient with respect to the parameters.
+ # Verify we have dy if calculate_grad is True
+ self.verify_args(dy, calculate_grad)
- Parameters
- ----------
- x : array-like
- The parameters for which to compute the cost and gradient.
-
- Returns
- -------
- tuple
- A tuple containing the cost and the gradient. The cost is a float,
- and the gradient is an array-like of the same length as `x`.
-
- Raises
- ------
- ValueError
- If an error occurs during the calculation of the cost or gradient.
- """
- y, dy = self.problem.evaluateS1(x)
- for key in self.signal:
- if len(y.get(key, [])) != len(self._target.get(key, [])):
- e = np.float64(np.inf)
- de = self._de * np.ones(self.n_parameters)
- return e, de
+ # Early return if the prediction is not verified
+ if not self.verify_prediction(y):
+ return (np.inf, self.grad_fail) if calculate_grad else np.inf
+ # Calculate residuals and error
r = np.asarray([y[signal] - self._target[signal] for signal in self.signal])
- e = np.sum(np.sum(r**2, axis=0), axis=0)
- de = 2 * np.sum(np.sum((r * dy.T), axis=2), axis=1)
+ e = np.sum(np.sum(np.abs(r) ** 2, axis=0), axis=0)
- return e, de
+ if calculate_grad:
+ de = 2 * np.sum((r * dy.T), axis=(1, 2))
+ return e, de
- def set_fail_gradient(self, de):
- """
- Set the fail gradient to a specified value.
+ return e
- The fail gradient is used if an error occurs during the calculation
- of the gradient. This method allows updating the default gradient value.
- Parameters
- ----------
- de : float
- The new fail gradient value to be used.
- """
- de = float(de)
- self._de = de
+class Minkowski(BaseCost):
+ """
+ The Minkowski distance is a generalisation of several distance metrics,
+ including the Euclidean and Manhattan distances. It is defined as:
+ .. math::
+ L_p(x, y) = ( \\sum_i |x_i - y_i|^p )^(1/p)
-class ObserverCost(BaseCost):
- """
- Observer cost function.
+ where p > 0 is the order of the Minkowski distance. For p ≥ 1, the
+ Minkowski distance is a metric. For 0 < p < 1, it is not a metric, as it
+ does not satisfy the triangle inequality, although a metric can be
+ obtained by removing the (1/p) exponent.
- Computes the cost function for an observer model, which is log likelihood
- of the data points given the model parameters.
+ Special cases:
- Inherits all parameters and attributes from ``BaseCost``.
+ * p = 1: Manhattan distance
+ * p = 2: Euclidean distance
+ * p → ∞: Chebyshev distance (not implemented as yet)
- """
+ This class implements the Minkowski distance as a cost function for
+ optimisation problems, allowing for flexible distance-based optimisation
+ across various problem domains.
- def __init__(self, observer: Observer):
- super().__init__(problem=observer)
- self._observer = observer
+ Additional Attributes
+ ---------------------
+ p : float, optional
+ The order of the Minkowski distance.
+ """
- def _evaluate(self, x, grad=None):
+ def __init__(self, problem, p: float = 2.0):
+ super().__init__(problem)
+ if p < 0:
+ raise ValueError(
+ "The order of the Minkowski distance must be greater than 0."
+ )
+ elif not np.isfinite(p):
+ raise ValueError(
+ "For p = infinity, an implementation of the Chebyshev distance is required."
+ )
+ self.p = float(p)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
"""
- Calculate the observer cost for a given set of parameters.
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array-like
- The parameters for which to evaluate the cost.
- grad : array-like, optional
- An array to store the gradient of the cost function with respect
- to the parameters.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
float
- The observer cost (negative of the log likelihood).
+ The Minkowski cost.
"""
- inputs = self._observer.parameters.as_dict(x)
- log_likelihood = self._observer.log_likelihood(
- self._target, self._observer.time_data(), inputs
- )
- return -log_likelihood
+ # Verify we have dy if calculate_grad is True
+ self.verify_args(dy, calculate_grad)
- def evaluateS1(self, x):
- """
- Compute the cost and its gradient with respect to the parameters.
+ # Early return if the prediction is not verified
+ if not self.verify_prediction(y):
+ return (np.inf, self.grad_fail) if calculate_grad else np.inf
- Parameters
- ----------
- x : array-like
- The parameters for which to compute the cost and gradient.
+ # Calculate residuals and error
+ r = np.asarray([y[signal] - self._target[signal] for signal in self.signal])
+ e = np.sum(np.abs(r) ** self.p) ** (1 / self.p)
- Returns
- -------
- tuple
- A tuple containing the cost and the gradient. The cost is a float,
- and the gradient is an array-like of the same length as `x`.
-
- Raises
- ------
- ValueError
- If an error occurs during the calculation of the cost or gradient.
- """
- raise NotImplementedError
+ if calculate_grad:
+ de = np.sum(
+ np.sum(np.sign(r) * np.abs(r) ** (self.p - 1) * dy.T, axis=2)
+ / (e ** (self.p - 1) + np.finfo(float).eps),
+ axis=1,
+ )
+ return e, de
+
+ return e
-class MAP(BaseLikelihood):
+class SumofPower(BaseCost):
"""
- Maximum a posteriori cost function.
+ The Sum of Power [1] is a generalised cost function based on the p-th power
+ of absolute differences between two vectors. It is defined as:
- Computes the maximum a posteriori cost function, which is the sum of the
- log likelihood and the log prior. The goal of maximising is achieved by
- setting minimising = False in the optimiser settings.
+ .. math::
+ C_p(x, y) = \\sum_i |x_i - y_i|^p
- Inherits all parameters and attributes from ``BaseLikelihood``.
+ where p ≥ 0 is the power order.
- """
+ This class implements the Sum of Power as a cost function for
+ optimisation problems, allowing for flexible power-based optimisation
+ across various problem domains.
- def __init__(self, problem, likelihood, sigma=None):
- super(MAP, self).__init__(problem)
- self.sigma0 = sigma
- if self.sigma0 is None:
- self.sigma0 = []
- for param in self.problem.parameters:
- self.sigma0.append(param.prior.sigma)
-
- try:
- self.likelihood = likelihood(problem=self.problem, sigma=self.sigma0)
- except Exception as e:
- raise ValueError(
- f"An error occurred when constructing the Likelihood class: {e}"
- )
+ Special cases:
+
+ * p = 1: Sum of Absolute Differences
+ * p = 2: Sum of Squared Differences
+ * p → ∞: Maximum Absolute Difference
+
+ Note that this is not normalised, unlike distance metrics. To get a
+ distance metric, you would need to take the p-th root of the result.
- if hasattr(self, "likelihood") and not isinstance(
- self.likelihood, BaseLikelihood
- ):
- raise ValueError(f"{self.likelihood} must be a subclass of BaseLikelihood")
+ [1]: https://mathworld.wolfram.com/PowerSum.html
- def _evaluate(self, x, grad=None):
+ Additional Attributes
+ ---------------------
+ p : float, optional
+ The power order for Sum of Power.
+ """
+
+ def __init__(self, problem, p: float = 2.0):
+ super().__init__(problem)
+ if p < 0:
+ raise ValueError("The order of 'p' must be greater than 0.")
+ elif not np.isfinite(p):
+ raise ValueError("p = np.inf is not yet supported.")
+ self.p = float(p)
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> Union[float, tuple[float, np.ndarray]]:
"""
- Calculate the maximum a posteriori cost for a given set of parameters.
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array-like
- The parameters for which to evaluate the cost.
- grad : array-like, optional
- An array to store the gradient of the cost function with respect
- to the parameters.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
float
- The maximum a posteriori cost.
+ The Sum of Power cost.
"""
- log_likelihood = self.likelihood.evaluate(x)
- log_prior = sum(
- param.prior.logpdf(x_i) for x_i, param in zip(x, self.problem.parameters)
- )
+ # Verify we have dy if calculate_grad is True
+ self.verify_args(dy, calculate_grad)
+
+ # Early return if the prediction is not verified
+ if not self.verify_prediction(y):
+ return (np.inf, self.grad_fail) if calculate_grad else np.inf
+
+ # Calculate residuals and error
+ r = np.asarray([y[signal] - self._target[signal] for signal in self.signal])
+ e = np.sum(np.abs(r) ** self.p)
+
+ if calculate_grad:
+ de = self.p * np.sum(
+ np.sign(r) * np.abs(r) ** (self.p - 1) * dy.T, axis=(1, 2)
+ )
+ return e, de
- posterior = log_likelihood + log_prior
- return posterior
+ return e
- def _evaluateS1(self, x):
+
+class ObserverCost(BaseCost):
+ """
+ Observer cost function.
+
+ Computes the cost function for an observer model, which is log likelihood
+ of the data points given the model parameters.
+
+ Inherits all parameters and attributes from ``BaseCost``.
+
+ """
+
+ def __init__(self, observer: Observer):
+ super().__init__(problem=observer)
+ self._observer = observer
+ self._has_separable_problem = False
+
+ def compute(
+ self,
+ y: dict,
+ dy: np.ndarray = None,
+ calculate_grad: bool = False,
+ ) -> float:
"""
- Compute the maximum a posteriori with respect to the parameters.
- The method passes the likelihood gradient to the optimiser without modification.
+ Computes the cost function for the given predictions.
Parameters
----------
- x : array-like
- The parameters for which to compute the cost and gradient.
+ y : dict
+ The dictionary of predictions with keys designating the signals for fitting.
+ dy : np.ndarray, optional
+ The corresponding gradient with respect to the parameters for each signal.
+ calculate_grad : bool, optional
+ A bool condition designating whether to calculate the gradient.
Returns
-------
- tuple
- A tuple containing the cost and the gradient. The cost is a float,
- and the gradient is an array-like of the same length as `x`.
-
- Raises
- ------
- ValueError
- If an error occurs during the calculation of the cost or gradient.
+ float
+ The observer cost (negative of the log likelihood).
"""
- log_likelihood, dl = self.likelihood.evaluateS1(x)
- log_prior = sum(
- param.prior.logpdf(x_i) for x_i, param in zip(x, self.problem.parameters)
+ inputs = self._parameters.as_dict()
+ log_likelihood = self._observer.log_likelihood(
+ self._target, self._observer.domain_data, inputs
)
-
- posterior = log_likelihood + log_prior
- return posterior, dl
+ return -log_likelihood
diff --git a/pybop/models/base_model.py b/pybop/models/base_model.py
index a05062672..fd1e0b87f 100644
--- a/pybop/models/base_model.py
+++ b/pybop/models/base_model.py
@@ -1,18 +1,20 @@
import copy
from dataclasses import dataclass
-from typing import Any, Dict, Optional, Union
+from typing import Callable, Optional, Union
import casadi
import numpy as np
import pybamm
+from pybamm import IDAKLUSolver as IDAKLUSolver
+from scipy.sparse import csc_matrix
+from scipy.sparse.linalg import spsolve
-from pybop import Dataset, Experiment, Parameters, ParameterSet
-
-Inputs = Dict[str, float]
+from pybop import Dataset, Experiment, Parameters, ParameterSet, SymbolReplacer
+from pybop.parameters.parameter import Inputs
@dataclass
-class TimeSeriesState(object):
+class TimeSeriesState:
"""
The current state of a time series model that is a pybamm model.
"""
@@ -39,54 +41,98 @@ class BaseModel:
"""
A base class for constructing and simulating models using PyBaMM.
- This class serves as a foundation for building specific models in PyBaMM.
- It provides methods to set up the model, define parameters, and perform
- simulations. The class is designed to be subclassed for creating models
- with custom behaviour.
-
+ This class serves as a foundation for constructing models based on PyBaMM models. It
+ provides methods to set up the model, define parameters, and perform simulations. The
+ class is designed to be subclassed for creating models with custom behaviour.
+
+ This class is based on PyBaMM's Simulation class. A PyBOP model is set up via a
+ similar 3-step process. The `pybamm_model` attributes echoes the `model` attribute of
+ a simulation, which tracks the model through the build process. Firstly, note that a
+ PyBaMM `model` must first be built via `build_model` before a simulation or PyBOP
+ model can be built. The 3-step process is then as follows.
+
+ The `pybamm_model` attribute is first defined as an instance of the imported PyBaMM
+ model, using any given model options. This initial version of the model is saved as
+ the `_unprocessed_model` for future reference. Next, the type of each parameter in
+ the parameter set as well as the geometry of the model is set. Parameters may be set
+ as an input, interpolant, functional or just a standard PyBaMM parameter. This
+ version of the model is referred to as the `model_with_set_params`. After its
+ creation, the `pybamm_model` attribute is updated to point at this version of the
+ model. Finally, the model required for simulations is built by defining the mesh and
+ processing the discretisation. The complete model is referred to as the `built_model`
+ and this version is used to run simulations.
+
+ In order to rebuild a model with a different initial state or geometry, the
+ `built_model` and the `model_with_set_params` must be cleared and the `pybamm_model`
+ reset to the `unprocessed_model` in order to start the build process again.
"""
- def __init__(self, name="Base Model", parameter_set=None):
+ def __init__(
+ self,
+ name: str = "Base Model",
+ parameter_set: Optional[ParameterSet] = None,
+ check_params: Callable = None,
+ eis=False,
+ ):
"""
- Initialize the BaseModel with an optional name.
+ Initialise the BaseModel with an optional name and a parameter set.
Parameters
----------
name : str, optional
The name given to the model instance.
+ parameter_set : Union[pybop.ParameterSet, pybamm.ParameterValues], optional
+ A dict-like object containing the parameter values.
+ check_params : Callable, optional
+ A compatibility check for the model parameters. Function, with
+ signature
+ check_params(
+ inputs: dict,
+ allow_infeasible_solutions: bool, optional
+ )
+ Returns true if parameters are valid, False otherwise. Can be
+ used to impose constraints on valid parameters.
+
+ Additional Attributes
+ ---------------------
+ pybamm_model : pybamm.BaseModel
+ An instance of a PyBaMM model.
+ parameters : pybop.Parameters
+ The input parameters.
+ param_check_counter : int
+ A counter for the number of parameter checks (default: 0).
+ allow_infeasible_solutions : bool, optional
+ If True, parameter values will be simulated whether or not they are feasible
+ (default: True).
"""
self.name = name
+ self.eis = eis
if parameter_set is None:
self._parameter_set = None
elif isinstance(parameter_set, dict):
- self._parameter_set = pybamm.ParameterValues(parameter_set)
+ self._parameter_set = pybamm.ParameterValues(parameter_set).copy()
elif isinstance(parameter_set, pybamm.ParameterValues):
- self._parameter_set = parameter_set
+ self._parameter_set = parameter_set.copy()
else: # a pybop parameter set
- self._parameter_set = pybamm.ParameterValues(parameter_set.params)
-
- self.parameters = None
- self.dataset = None
- self.signal = None
- self.additional_variables = []
- self.rebuild_parameters = {}
- self.standard_parameters = {}
+ self._parameter_set = pybamm.ParameterValues(parameter_set.params).copy()
+ self.param_checker = check_params
+
+ self.pybamm_model = None
+ self.parameters = Parameters()
self.param_check_counter = 0
self.allow_infeasible_solutions = True
- @property
- def n_parameters(self):
- return len(self.parameters)
-
def build(
self,
- dataset: Dataset = None,
- parameters: Union[Parameters, Dict] = None,
+ parameters: Union[Parameters, dict] = None,
+ inputs: Optional[Inputs] = None,
+ initial_state: Optional[dict] = None,
+ dataset: Optional[Dataset] = None,
check_model: bool = True,
- init_soc: float = None,
) -> None:
"""
- Construct the PyBaMM model if not already built, and set parameters.
+ Construct the PyBaMM model, if not already built or if there are changes to any
+ `rebuild_parameters` or the initial state.
This method initializes the model components, applies the given parameters,
sets up the mesh and discretisation if needed, and prepares the model
@@ -94,167 +140,251 @@ def build(
Parameters
----------
- dataset : pybamm.Dataset, optional
- The dataset to be used in the model construction.
parameters : pybop.Parameters or Dict, optional
A pybop Parameters class or dictionary containing parameter values to apply to the model.
+ inputs : Inputs
+ The input parameters to be used when building the model.
+ initial_state : dict, optional
+ A valid initial state, e.g. the initial state of charge or open-circuit voltage.
+ Defaults to None, indicating that the existing initial state of charge (for an ECM)
+ or initial concentrations (for an EChem model) will be used.
+ Accepted keys either `"Initial open-circuit voltage [V]"` or ``"Initial SoC"`
+ dataset : pybop.Dataset or dict, optional
+ The dataset to be used in the model construction.
check_model : bool, optional
If True, the model will be checked for correctness after construction.
- init_soc : float, optional
- The initial state of charge to be used in simulations.
"""
- self.dataset = dataset
- self.parameters = parameters
- if self.parameters is not None:
- self.classify_and_update_parameters(self.parameters)
+ if parameters is not None or inputs is not None:
+ # Classify parameters and clear the model if rebuild required
+ inputs = self.classify_parameters(parameters, inputs=inputs)
+
+ if initial_state is not None:
+ # Clear the model if rebuild required (currently if any initial state)
+ self.set_initial_state(initial_state, inputs=inputs)
+
+ if not self.pybamm_model._built: # noqa: SLF001
+ self.pybamm_model.build_model()
- if init_soc is not None:
- self.set_init_soc(init_soc)
+ if self.eis:
+ self.set_up_for_eis(self.pybamm_model)
+ self._parameter_set["Current function [A]"] = 0
+
+ V_scale = getattr(self.pybamm_model.variables["Voltage [V]"], "scale", 1)
+ I_scale = getattr(self.pybamm_model.variables["Current [A]"], "scale", 1)
+ self.z_scale = self._parameter_set.evaluate(V_scale / I_scale)
+
+ if dataset is not None and not self.eis:
+ self.set_current_function(dataset)
if self._built_model:
return
-
elif self.pybamm_model.is_discretised:
self._model_with_set_params = self.pybamm_model
self._built_model = self.pybamm_model
-
else:
- if not self.pybamm_model._built:
- self.pybamm_model.build_model()
- self.set_params()
-
+ self.set_parameters()
self._mesh = pybamm.Mesh(self.geometry, self.submesh_types, self.var_pts)
- self._disc = pybamm.Discretisation(self.mesh, self.spatial_methods)
+ self._disc = pybamm.Discretisation(
+ mesh=self.mesh,
+ spatial_methods=self.spatial_methods,
+ check_model=check_model,
+ )
self._built_model = self._disc.process_model(
- self._model_with_set_params, inplace=False, check_model=check_model
+ self._model_with_set_params, inplace=False
)
# Clear solver and setup model
- self._solver._model_set_up = {}
+ self._solver._model_set_up = {} # noqa: SLF001
self.n_states = self._built_model.len_rhs_and_alg # len_rhs + len_alg
- def set_init_soc(self, init_soc: float):
+ def convert_to_pybamm_initial_state(self, initial_state: dict):
"""
- Set the initial state of charge for the battery model.
+ Convert an initial state of charge into a float and an initial open-circuit
+ voltage into a string ending in "V".
Parameters
----------
- init_soc : float
- The initial state of charge to be used in the model.
- """
- if self._built_initial_soc != init_soc:
- # reset
- self._model_with_set_params = None
- self._built_model = None
- self.op_conds_to_built_models = None
- self.op_conds_to_built_solvers = None
-
- param = self.pybamm_model.param
- self._parameter_set = (
- self._unprocessed_parameter_set.set_initial_stoichiometries(
- init_soc, param=param, inplace=False
- )
- )
- # Save solved initial SOC in case we need to rebuild the model
- self._built_initial_soc = init_soc
+ initial_state : dict
+ A valid initial state, e.g. the initial state of charge or open-circuit voltage.
+
+ Returns
+ -------
+ float or str
+ If float, this value is used as the initial state of charge (as a decimal between 0
+ and 1). If str ending in "V", this value is used as the initial open-circuit voltage.
- def set_params(self, rebuild=False):
+ Raises
+ ------
+ ValueError
+ If the input is not a dictionary with a single, valid key.
+ """
+ if len(initial_state) > 1:
+ raise ValueError("Expecting only one initial state.")
+ elif "Initial SoC" in initial_state.keys():
+ return initial_state["Initial SoC"]
+ elif "Initial open-circuit voltage [V]" in initial_state.keys():
+ return str(initial_state["Initial open-circuit voltage [V]"]) + "V"
+ else:
+ raise ValueError(f'Unrecognised initial state: "{list(initial_state)[0]}"')
+
+ def set_initial_state(self, initial_state: dict, inputs: Optional[Inputs] = None):
"""
- Assign the parameters to the model.
+ Set the initial state of charge or concentrations for the battery model.
- This method processes the model with the given parameters, sets up
- the geometry, and updates the model instance.
+ Parameters
+ ----------
+ initial_state : dict
+ A valid initial state, e.g. the initial state of charge or open-circuit voltage.
+ inputs : Inputs
+ The input parameters to be used when building the model.
"""
- if self.model_with_set_params and not rebuild:
- return
+ self.clear()
- # Mark any simulation inputs in the parameter set
- for key in self.standard_parameters.keys():
- self._parameter_set[key] = "[input]"
+ initial_state = self.convert_to_pybamm_initial_state(initial_state)
+
+ if isinstance(self.pybamm_model, pybamm.equivalent_circuit.Thevenin):
+ initial_state = self.get_initial_state(initial_state, inputs=inputs)
+ self._unprocessed_parameter_set.update({"Initial SoC": initial_state})
+
+ else:
+ if not self.pybamm_model._built: # noqa: SLF001
+ self.pybamm_model.build_model()
+
+ # Temporary construction of attributes for PyBaMM
+ self._model = self.pybamm_model
+ self._unprocessed_parameter_values = self._unprocessed_parameter_set
+
+ # Set initial state via PyBaMM's Simulation class
+ pybamm.Simulation.set_initial_soc(self, initial_state, inputs=inputs)
+
+ # Update the default parameter set for consistency
+ self._unprocessed_parameter_set = self._parameter_values
+
+ # Clear the pybamm objects
+ del self._model
+ del self._unprocessed_parameter_values
+ del self._parameter_values
+
+ # Use a copy of the updated default parameter set
+ self._parameter_set = self._unprocessed_parameter_set.copy()
- if self.dataset is not None and (not self.rebuild_parameters or not rebuild):
- if (
- self.parameters is None
- or "Current function [A]" not in self.parameters.keys()
- ):
- self._parameter_set["Current function [A]"] = pybamm.Interpolant(
- self.dataset["Time [s]"],
- self.dataset["Current function [A]"],
+ def set_current_function(self, dataset: Union[Dataset, dict]):
+ """
+ Update the input current function according to the data.
+
+ Parameters
+ ----------
+ dataset : pybop.Dataset or dict, optional
+ The dataset to be used in the model construction.
+ """
+ if "Current function [A]" in self._parameter_set.keys():
+ if "Current function [A]" not in self.parameters.keys():
+ current = pybamm.Interpolant(
+ dataset["Time [s]"],
+ dataset["Current function [A]"],
pybamm.t,
)
- # Set t_eval
- self.time_data = self._parameter_set["Current function [A]"].x[0]
+ # Update both the active and unprocessed parameter sets for consistency
+ self._parameter_set["Current function [A]"] = current
+ self._unprocessed_parameter_set["Current function [A]"] = current
+
+ def set_parameters(self):
+ """
+ Assign the parameters to the model.
+
+ This method processes the model with the given parameters, sets up
+ the geometry, and updates the model instance.
+ """
+ if self._model_with_set_params:
+ return
self._model_with_set_params = self._parameter_set.process_model(
self._unprocessed_model, inplace=False
)
- if self.geometry is not None:
- self._parameter_set.process_geometry(self.geometry)
+ self._parameter_set.process_geometry(self._geometry)
self.pybamm_model = self._model_with_set_params
- def rebuild(
- self,
- dataset: Dataset = None,
- parameters: Union[Parameters, Dict] = None,
- parameter_set: ParameterSet = None,
- check_model: bool = True,
- init_soc: float = None,
- ) -> None:
+ def set_up_for_eis(self, model):
"""
- Rebuild the PyBaMM model for a given parameter set.
+ Set up the model for electrochemical impedance spectroscopy (EIS) simulations.
- This method requires the self.build() method to be called first, and
- then rebuilds the model for a given parameter set. Specifically,
- this method applies the given parameters, sets up the mesh and
- discretisation if needed, and prepares the model for simulations.
+ This method sets up the model for EIS simulations by adding the necessary
+ algebraic equations and variables to the model.
+ Originally developed by pybamm-eis: https://github.com/pybamm-team/pybamm-eis
Parameters
----------
- dataset : pybamm.Dataset, optional
- The dataset to be used in the model construction.
- parameters : pybop.Parameters or Dict, optional
- A pybop Parameters class or dictionary containing parameter values to apply to the model.
- parameter_set : pybop.parameter_set, optional
- A PyBOP parameter set object or a dictionary containing the parameter values
- check_model : bool, optional
- If True, the model will be checked for correctness after construction.
- init_soc : float, optional
- The initial state of charge to be used in simulations.
- """
- self.dataset = dataset
- if parameters is not None:
- self.parameters = parameters
- self.classify_and_update_parameters(parameters)
-
- if init_soc is not None:
- self.set_init_soc(init_soc)
-
- if self._built_model is None:
- raise ValueError("Model must be built before calling rebuild")
+ model : pybamm.Model
+ The PyBaMM model to be used for EIS simulations.
+ """
+ V_cell = pybamm.Variable("Voltage variable [V]")
+ model.variables["Voltage variable [V]"] = V_cell
+ V = model.variables["Voltage [V]"]
+
+ # Add algebraic equation for the voltage
+ model.algebraic[V_cell] = V_cell - V
+ model.initial_conditions[V_cell] = model.param.ocv_init
+
+ # Create the FunctionControl submodel and extract variables
+ external_circuit_variables = pybamm.external_circuit.FunctionControl(
+ model.param, None, model.options, control="algebraic"
+ ).get_fundamental_variables()
+
+ # Perform the replacement
+ symbol_replacement_map = {
+ model.variables[name]: variable
+ for name, variable in external_circuit_variables.items()
+ }
- self.set_params(rebuild=True)
- self._mesh = pybamm.Mesh(self.geometry, self.submesh_types, self.var_pts)
- self._disc = pybamm.Discretisation(self.mesh, self.spatial_methods)
- self._built_model = self._disc.process_model(
- self._model_with_set_params, inplace=False, check_model=check_model
+ # Don't replace initial conditions, as these should not contain
+ # Variable objects
+ replacer = SymbolReplacer(
+ symbol_replacement_map, process_initial_conditions=False
+ )
+ replacer.process_model(model, inplace=True)
+
+ # Add an algebraic equation for the current density variable
+ # External circuit submodels are always equations on the current
+ I_cell = model.variables["Current variable [A]"]
+ I = model.variables["Current [A]"]
+ I_applied = pybamm.FunctionParameter(
+ "Current function [A]", {"Time [s]": pybamm.t}
)
+ model.algebraic[I_cell] = I - I_applied
+ model.initial_conditions[I_cell] = 0
- # Clear solver and setup model
- self._solver._model_set_up = {}
+ def clear(self):
+ """
+ Clear any built PyBaMM model.
+ """
+ self._model_with_set_params = None
+ self._built_model = None
+ self._built_initial_soc = None
+ self._mesh = None
+ self._disc = None
- def classify_and_update_parameters(self, parameters: Union[Parameters, Dict]):
+ def classify_parameters(
+ self, parameters: Optional[Parameters] = None, inputs: Optional[Inputs] = None
+ ):
"""
- Update the parameter values according to their classification as either
- 'rebuild_parameters' which require a model rebuild and
- 'standard_parameters' which do not.
+ Check for any 'rebuild_parameters' which require a model rebuild and
+ update the unprocessed_parameter_set if a rebuild is required.
Parameters
----------
- parameters : pybop.ParameterSet
-
+ parameters : Parameters, optional
+ The optimisation parameters. Defaults to None, resulting in the internal
+ `pybop.Parameters` object to be used.
+ inputs : Inputs, optional
+ The input parameters for the simulation (default: None).
"""
- parameter_dictionary = parameters.as_dict()
+ self.parameters = parameters or self.parameters
+
+ # Compile all parameters and inputs
+ parameter_dictionary = self.parameters.as_dict()
+ parameter_dictionary.update(inputs or {})
+
rebuild_parameters = {
param: parameter_dictionary[param]
for param in parameter_dictionary
@@ -266,14 +396,25 @@ def classify_and_update_parameters(self, parameters: Union[Parameters, Dict]):
if param not in self.geometric_parameters
}
- self.rebuild_parameters.update(rebuild_parameters)
- self.standard_parameters.update(standard_parameters)
+ # Mark any standard parameters in the active parameter set and pass as inputs
+ for key in standard_parameters.keys():
+ self._parameter_set[key] = "[input]"
- # Update the parameter set and geometry for rebuild parameters
- if self.rebuild_parameters:
- self._parameter_set.update(self.rebuild_parameters)
- self._unprocessed_parameter_set = self._parameter_set
- self.geometry = self.pybamm_model.default_geometry
+ # Clear any built model, update the parameter set and geometry if rebuild required
+ if rebuild_parameters:
+ requires_rebuild = False
+ # A rebuild is required if any of the rebuild parameter values have changed
+ for key, value in rebuild_parameters.items():
+ if value != self._unprocessed_parameter_set[key]:
+ requires_rebuild = True
+ if requires_rebuild:
+ self.clear()
+ self._geometry = self.pybamm_model.default_geometry
+ # Update both the active and unprocessed parameter sets for consistency
+ self._parameter_set.update(rebuild_parameters)
+ self._unprocessed_parameter_set.update(rebuild_parameters)
+
+ return standard_parameters
def reinit(
self, inputs: Inputs, t: float = 0.0, x: Optional[np.ndarray] = None
@@ -284,17 +425,14 @@ def reinit(
if self._built_model is None:
raise ValueError("Model must be built before calling reinit")
- if not isinstance(inputs, dict):
- inputs = self.parameters.as_dict(inputs)
+ inputs = self.parameters.verify(inputs)
self._solver.set_up(self._built_model, inputs=inputs)
if x is None:
x = self._built_model.y0
- sol = pybamm.Solution([np.asarray([t])], [x], self._built_model, inputs)
-
- return TimeSeriesState(sol=sol, inputs=inputs, t=t)
+ return self.get_state(inputs, t, x)
def get_state(self, inputs: Inputs, t: float, x: np.ndarray) -> TimeSeriesState:
"""
@@ -320,23 +458,72 @@ def step(self, state: TimeSeriesState, time: np.ndarray) -> TimeSeriesState:
"""
dt = time - state.t
new_sol = self._solver.step(
- state.sol, self.built_model, dt, npts=2, inputs=state.inputs, save=False
+ state.sol, self._built_model, dt, npts=2, inputs=state.inputs, save=False
)
return TimeSeriesState(sol=new_sol, inputs=state.inputs, t=time)
def simulate(
- self, inputs: Inputs, t_eval: np.array
- ) -> Dict[str, np.ndarray[np.float64]]:
+ self, inputs: Inputs, t_eval: np.array, initial_state: Optional[dict] = None
+ ) -> Union[pybamm.Solution, list[np.float64]]:
"""
Execute the forward model simulation and return the result.
+ Parameters
+ ----------
+ inputs : Inputs
+ The input parameters for the simulation.
+ t_eval : array-like
+ An array of time points at which to evaluate the solution.
+ initial_state : dict, optional
+ A valid initial state, e.g. the initial state of charge or open-circuit voltage.
+ Defaults to None, indicating that the existing initial state of charge (for an ECM)
+ or initial concentrations (for an EChem model) will be used.
+
+ Returns
+ -------
+ pybamm.Solution
+ The solution object returned by a PyBaMM simulation, or a pybamm error in the case
+ where the parameter values are infeasible and infeasible solutions are not allowed.
+
+ Raises
+ ------
+ ValueError
+ If the model has not been built before simulation.
+ """
+ inputs = self.parameters.verify(inputs)
+
+ # Build or rebuild if required
+ self.build(inputs=inputs, initial_state=initial_state)
+
+ if not self.check_params(
+ inputs=inputs,
+ allow_infeasible_solutions=self.allow_infeasible_solutions,
+ ):
+ raise ValueError("These parameter values are infeasible.")
+
+ return self.solver.solve(
+ self._built_model,
+ inputs=inputs,
+ t_eval=[t_eval[0], t_eval[-1]]
+ if isinstance(self._solver, IDAKLUSolver)
+ else t_eval,
+ t_interp=t_eval,
+ )
+
+ def simulateEIS(
+ self, inputs: Inputs, f_eval: list, initial_state: Optional[dict] = None
+ ) -> dict[str, np.ndarray]:
+ """
+ Compute the forward model simulation with electrochemical impedance spectroscopy
+ and return the result.
+
Parameters
----------
inputs : dict or array-like
The input parameters for the simulation. If array-like, it will be
converted to a dictionary using the model's fit keys.
- t_eval : array-like
- An array of time points at which to evaluate the solution.
+ f_eval : array-like
+ An array of frequency points at which to evaluate the solution.
Returns
-------
@@ -348,149 +535,181 @@ def simulate(
ValueError
If the model has not been built before simulation.
"""
- if self._built_model is None:
- raise ValueError("Model must be built before calling simulate")
- else:
- if self.rebuild_parameters and not self.standard_parameters:
- sol = self.solver.solve(self.built_model, t_eval=t_eval)
-
- else:
- if not isinstance(inputs, dict):
- inputs = self.parameters.as_dict(inputs)
-
- if self.check_params(
- inputs=inputs,
- allow_infeasible_solutions=self.allow_infeasible_solutions,
- ):
- try:
- sol = self.solver.solve(
- self.built_model, inputs=inputs, t_eval=t_eval
- )
- except Exception as e:
- print(f"Error: {e}")
- return {signal: [np.inf] for signal in self.signal}
- else:
- return {signal: [np.inf] for signal in self.signal}
-
- y = {
- signal: sol[signal].data
- for signal in (self.signal + self.additional_variables)
- }
+ inputs = self.parameters.verify(inputs)
+
+ # Build or rebuild if required
+ self.build(inputs=inputs, initial_state=initial_state)
+
+ if not self.check_params(
+ inputs=inputs,
+ allow_infeasible_solutions=self.allow_infeasible_solutions,
+ ):
+ raise ValueError("These parameter values are infeasible.")
+
+ self.initialise_eis_simulation(inputs)
+ zs = [self.calculate_impedance(frequency) for frequency in f_eval]
+
+ return {"Impedance": np.asarray(zs) * self.z_scale}
+
+ def initialise_eis_simulation(self, inputs: Optional[Inputs] = None):
+ """
+ Initialise the Electrochemical Impedance Spectroscopy (EIS) simulation.
+
+ This method sets up the mass matrix and solver, converts inputs to the appropriate format,
+ extracts necessary attributes from the model, and prepares matrices for the simulation.
+
+ Parameters
+ ----------
+ inputs : dict (optional)
+ The input parameters for the simulation.
+ """
+ # Setup mass matrix, solver
+ self.M = self._built_model.mass_matrix.entries
+ self._solver.set_up(self._built_model, inputs=inputs)
+
+ # Convert inputs to casadi format if needed
+ casadi_inputs = (
+ casadi.vertcat(*inputs.values())
+ if inputs is not None and self._built_model.convert_to_format == "casadi"
+ else inputs or []
+ )
+
+ # Extract necessary attributes from the model
+ self.y0 = self._built_model.concatenated_initial_conditions.evaluate(
+ 0, inputs=inputs
+ )
+ self.J = self._built_model.jac_rhs_algebraic_eval(
+ 0, self.y0, casadi_inputs
+ ).sparse()
+
+ # Convert to Compressed Sparse Column format
+ self.M = csc_matrix(self.M)
+ self.J = csc_matrix(self.J)
+
+ # Add forcing to the RHS on the current density
+ self.b = np.zeros(self.y0.shape)
+ self.b[-1] = -1
+
+ def calculate_impedance(self, frequency):
+ """
+ Calculate the impedance for a given frequency.
+
+ This method computes the system matrix, solves the linear system, and calculates
+ the impedance based on the solution.
+
+ Parameters
+ ----------
+ frequency (np.ndarray | list like): The frequency at which to calculate the impedance.
- return y
+ Returns
+ -------
+ The calculated impedance (complex np.ndarray).
+ """
+ # Compute the system matrix
+ A = 1.0j * 2 * np.pi * frequency * self.M - self.J
+
+ # Solve the system
+ x = spsolve(A, self.b)
- def simulateS1(self, inputs: Inputs, t_eval: np.array):
+ # Calculate the impedance
+ return -x[-2] / x[-1]
+
+ def simulateS1(
+ self, inputs: Inputs, t_eval: np.array, initial_state: Optional[dict] = None
+ ):
"""
Perform the forward model simulation with sensitivities.
Parameters
----------
- inputs : dict or array-like
- The input parameters for the simulation. If array-like, it will be
- converted to a dictionary using the model's fit keys.
+ inputs : Inputs
+ The input parameters for the simulation.
t_eval : array-like
An array of time points at which to evaluate the solution and its
sensitivities.
+ initial_state : dict, optional
+ A valid initial state, e.g. the initial state of charge or open-circuit voltage.
+ Defaults to None, indicating that the existing initial state of charge (for an ECM)
+ or initial concentrations (for an EChem model) will be used.
Returns
-------
- tuple
- A tuple containing the simulation result and the sensitivities.
+ pybamm.Solution
+ The solution object returned by a PyBaMM simulation, or a pybamm error in the case
+ where the parameter values are infeasible and infeasible solutions are not allowed.
Raises
------
ValueError
If the model has not been built before simulation.
"""
+ inputs = self.parameters.verify(inputs)
- if self._built_model is None:
- raise ValueError("Model must be built before calling simulate")
- else:
- if self.rebuild_parameters:
- raise ValueError(
- "Cannot use sensitivies for parameters which require a model rebuild"
- )
+ if initial_state is not None or any(
+ key in self.geometric_parameters for key in inputs.keys()
+ ):
+ raise ValueError(
+ "Cannot use sensitivities for parameters which require a model rebuild"
+ )
+
+ # Build if required
+ self.build(inputs=inputs, initial_state=initial_state)
- if not isinstance(inputs, dict):
- inputs = self.parameters.as_dict(inputs)
-
- if self.check_params(
- inputs=inputs,
- allow_infeasible_solutions=self.allow_infeasible_solutions,
- ):
- try:
- sol = self._solver.solve(
- self.built_model,
- inputs=inputs,
- t_eval=t_eval,
- calculate_sensitivities=True,
- )
- y = {signal: sol[signal].data for signal in self.signal}
-
- # Extract the sensitivities and stack them along a new axis for each signal
- dy = np.empty(
- (
- sol[self.signal[0]].data.shape[0],
- self.n_outputs,
- self.n_parameters,
- )
- )
-
- for i, signal in enumerate(self.signal):
- dy[:, i, :] = np.stack(
- [
- sol[signal].sensitivities[key].toarray()[:, 0]
- for key in self.parameters.keys()
- ],
- axis=-1,
- )
-
- return y, dy
- except Exception as e:
- print(f"Error: {e}")
- return {signal: [np.inf] for signal in self.signal}, [np.inf]
-
- else:
- return {signal: [np.inf] for signal in self.signal}, [np.inf]
+ if not self.check_params(
+ inputs=inputs,
+ allow_infeasible_solutions=self.allow_infeasible_solutions,
+ ):
+ raise ValueError("These parameter values are infeasible.")
+
+ return self._solver.solve(
+ self._built_model,
+ inputs=inputs,
+ t_eval=[t_eval[0], t_eval[-1]]
+ if isinstance(self._solver, IDAKLUSolver)
+ else t_eval,
+ calculate_sensitivities=True,
+ t_interp=t_eval,
+ )
def predict(
self,
- inputs: Inputs = None,
- t_eval: np.array = None,
- parameter_set: ParameterSet = None,
- experiment: Experiment = None,
- init_soc: float = None,
- ) -> Dict[str, np.ndarray[np.float64]]:
+ inputs: Optional[Inputs] = None,
+ t_eval: Optional[np.array] = None,
+ parameter_set: Optional[ParameterSet] = None,
+ experiment: Optional[Experiment] = None,
+ initial_state: Optional[dict] = None,
+ ) -> dict[str, np.ndarray[np.float64]]:
"""
Solve the model using PyBaMM's simulation framework and return the solution.
This method sets up a PyBaMM simulation by configuring the model, parameters, experiment
- (if any), and initial state of charge (if provided). It then solves the simulation and
- returns the resulting solution object.
+ or time vector, and initial state of charge (if provided). Either 't_eval' or 'experiment'
+ must be provided. It then solves the simulation and returns the resulting solution object.
Parameters
----------
- inputs : dict or array-like, optional
- Input parameters for the simulation. If the input is array-like, it is converted
- to a dictionary using the model's fitting keys. Defaults to None, indicating
- that the default parameters should be used.
+ inputs : Inputs, optional
+ Input parameters for the simulation. Defaults to None, indicating that the
+ default parameters should be used.
t_eval : array-like, optional
An array of time points at which to evaluate the solution. Defaults to None,
which means the time points need to be specified within experiment or elsewhere.
- parameter_set : pybamm.ParameterValues, optional
- A PyBaMM ParameterValues object or a dictionary containing the parameter values
- to use for the simulation. Defaults to the model's current ParameterValues if None.
+ parameter_set : Union[pybop.ParameterSet, pybamm.ParameterValues], optional
+ A dict-like object containing the parameter values to use for the simulation.
+ Defaults to the model's current ParameterValues if None.
experiment : pybamm.Experiment, optional
A PyBaMM Experiment object specifying the experimental conditions under which
the simulation should be run. Defaults to None, indicating no experiment.
- init_soc : float, optional
- The initial state of charge for the simulation, as a fraction (between 0 and 1).
- Defaults to None.
+ initial_state : dict, optional
+ A valid initial state, e.g. the initial state of charge or open-circuit voltage.
+ Defaults to None, indicating that the existing initial state of charge (for an ECM)
+ or initial concentrations (for an EChem model) will be used.
Returns
-------
pybamm.Solution
- The solution object returned after solving the simulation.
+ The solution object returned by a PyBaMM simulation, or a pybamm error in the case
+ where the parameter values are infeasible and infeasible solutions are not allowed.
Raises
------
@@ -499,44 +718,56 @@ def predict(
if PyBaMM models are not supported by the current simulation method.
"""
- if not self.pybamm_model._built:
- self.pybamm_model.build_model()
+ if self.pybamm_model is None:
+ raise ValueError(
+ "The predict method currently only supports PyBaMM models."
+ )
+ elif not self._unprocessed_model._built: # noqa: SLF001
+ self._unprocessed_model.build_model()
- parameter_set = parameter_set or self._unprocessed_parameter_set
+ no_parameter_set = parameter_set is None
+ parameter_set = parameter_set or self._unprocessed_parameter_set.copy()
if inputs is not None:
- if not isinstance(inputs, dict):
- inputs = self.parameters.as_dict(inputs)
+ inputs = self.parameters.verify(inputs)
parameter_set.update(inputs)
- if self.check_params(
- inputs=inputs,
+ if initial_state is not None:
+ if no_parameter_set:
+ # Update the default initial state for consistency
+ self.set_initial_state(initial_state)
+
+ initial_state = self.convert_to_pybamm_initial_state(initial_state)
+ if isinstance(self.pybamm_model, pybamm.equivalent_circuit.Thevenin):
+ parameter_set["Initial SoC"] = self._parameter_set["Initial SoC"]
+ initial_state = None
+
+ if not self.check_params(
parameter_set=parameter_set,
allow_infeasible_solutions=self.allow_infeasible_solutions,
):
- if self._unprocessed_model is not None:
- if experiment is None:
- return pybamm.Simulation(
- self._unprocessed_model,
- parameter_values=parameter_set,
- ).solve(t_eval=t_eval, initial_soc=init_soc)
- else:
- return pybamm.Simulation(
- self._unprocessed_model,
- experiment=experiment,
- parameter_values=parameter_set,
- ).solve(initial_soc=init_soc)
- else:
- raise ValueError(
- "This sim method currently only supports PyBaMM models"
- )
-
+ raise ValueError("These parameter values are infeasible.")
+
+ if experiment is not None:
+ return pybamm.Simulation(
+ model=self._unprocessed_model,
+ experiment=experiment,
+ parameter_values=parameter_set,
+ ).solve(initial_soc=initial_state)
+ elif t_eval is not None:
+ return pybamm.Simulation(
+ model=self._unprocessed_model,
+ parameter_values=parameter_set,
+ ).solve(t_eval=t_eval, initial_soc=initial_state)
else:
- return [np.inf]
+ raise ValueError(
+ "The predict method requires either an experiment or t_eval "
+ "to be specified."
+ )
def check_params(
self,
- inputs: Inputs = None,
- parameter_set: ParameterSet = None,
+ inputs: Optional[Inputs] = None,
+ parameter_set: Optional[ParameterSet] = None,
allow_infeasible_solutions: bool = True,
):
"""
@@ -544,8 +775,10 @@ def check_params(
Parameters
----------
- inputs : dict
+ inputs : Inputs
The input parameters for the simulation.
+ parameter_set : Union[pybop.ParameterSet, pybamm.ParameterValues], optional
+ A dict-like object containing the parameter values.
allow_infeasible_solutions : bool, optional
If True, infeasible parameter values will be allowed in the optimisation (default: True).
@@ -555,24 +788,20 @@ def check_params(
A boolean which signifies whether the parameters are compatible.
"""
- if inputs is not None:
- if not isinstance(inputs, dict):
- if isinstance(inputs, list):
- for entry in inputs:
- if not isinstance(entry, (int, float)):
- raise ValueError(
- "Expecting inputs in the form of a dictionary, numeric list"
- + f" or None, but received a list with type: {type(inputs)}"
- )
- else:
- inputs = self.parameters.as_dict(inputs)
+ inputs = self.parameters.verify(inputs) or {}
+ parameter_set = parameter_set or self._parameter_set
return self._check_params(
- inputs=inputs, allow_infeasible_solutions=allow_infeasible_solutions
+ inputs=inputs,
+ parameter_set=parameter_set,
+ allow_infeasible_solutions=allow_infeasible_solutions,
)
def _check_params(
- self, inputs: Inputs = None, allow_infeasible_solutions: bool = True
+ self,
+ inputs: Inputs,
+ parameter_set: ParameterSet,
+ allow_infeasible_solutions: bool = True,
):
"""
A compatibility check for the model parameters which can be implemented by subclasses
@@ -580,8 +809,10 @@ def _check_params(
Parameters
----------
- inputs : dict
+ inputs : Inputs
The input parameters for the simulation.
+ parameter_set : Union[pybop.ParameterSet, pybamm.ParameterValues], optional
+ A dict-like object containing the parameter values.
allow_infeasible_solutions : bool, optional
If True, infeasible parameter values will be allowed in the optimisation (default: True).
@@ -590,6 +821,8 @@ def _check_params(
bool
A boolean which signifies whether the parameters are compatible.
"""
+ if self.param_checker:
+ return self.param_checker(inputs, allow_infeasible_solutions)
return True
def copy(self):
@@ -603,6 +836,53 @@ def copy(self):
"""
return copy.copy(self)
+ def new_copy(self):
+ """
+ Return a new copy of the model, explicitly copying all the mutable attributes
+ to avoid issues with shared objects.
+
+ Returns
+ -------
+ BaseModel
+ A new copy of the model.
+ """
+ model_class = type(self)
+ if self.pybamm_model is None:
+ model_args = {"parameter_set": self._parameter_set.copy()}
+ else:
+ model_args = {
+ "options": self._unprocessed_model.options,
+ "parameter_set": self._unprocessed_parameter_set.copy(),
+ "geometry": self.pybamm_model.default_geometry.copy(),
+ "submesh_types": self.pybamm_model.default_submesh_types.copy(),
+ "var_pts": self.pybamm_model.default_var_pts.copy(),
+ "spatial_methods": self.pybamm_model.default_spatial_methods.copy(),
+ "solver": self.pybamm_model.default_solver.copy(),
+ "eis": copy.copy(self.eis),
+ }
+
+ return model_class(**model_args)
+
+ def get_parameter_info(self, print_info: bool = False):
+ """
+ Extracts the parameter names and types and returns them as a dictionary.
+ """
+ if not self.pybamm_model._built: # noqa: SLF001
+ self.pybamm_model.build_model()
+
+ info = self.pybamm_model.get_parameter_info()
+
+ reduced_info = dict()
+ for param, param_type in info.values():
+ param_name = getattr(param, "name", str(param))
+ reduced_info[param_name] = param_type
+
+ if print_info:
+ for param, param_type in info.values():
+ print(param, " : ", param_type)
+
+ return reduced_info
+
def cell_mass(self, parameter_set: ParameterSet = None):
"""
Calculate the cell mass in kilograms.
@@ -611,9 +891,8 @@ def cell_mass(self, parameter_set: ParameterSet = None):
Parameters
----------
- parameter_set : dict, optional
- A dictionary containing the parameter values necessary for the mass
- calculations.
+ parameter_set : Union[pybop.ParameterSet, pybamm.ParameterValues], optional
+ A dict-like object containing the parameter values.
Raises
------
@@ -630,9 +909,8 @@ def cell_volume(self, parameter_set: ParameterSet = None):
Parameters
----------
- parameter_set : dict, optional
- A dictionary containing the parameter values necessary for the volume
- calculation.
+ parameter_set : Union[pybop.ParameterSet, pybamm.ParameterValues], optional
+ A dict-like object containing the parameter values.
Raises
------
@@ -641,17 +919,17 @@ def cell_volume(self, parameter_set: ParameterSet = None):
"""
raise NotImplementedError
- def approximate_capacity(self, x):
+ def approximate_capacity(self, parameter_set: ParameterSet = None):
"""
- Calculate a new estimate for the nominal capacity based on the theoretical energy density
- and an average voltage.
+ Calculate a new estimate for the nominal capacity based on the theoretical energy
+ density and an average voltage.
This method must be implemented by subclasses.
Parameters
----------
- x : array-like
- An array of values representing the model inputs.
+ parameter_set : Union[pybop.ParameterSet, pybamm.ParameterValues], optional
+ A dict-like object containing the parameter values.
Raises
------
@@ -664,14 +942,14 @@ def approximate_capacity(self, x):
def built_model(self):
return self._built_model
+ @property
+ def built_initial_soc(self):
+ return self._built_initial_soc
+
@property
def parameter_set(self):
return self._parameter_set
- @parameter_set.setter
- def parameter_set(self, parameter_set):
- self._parameter_set = parameter_set.copy()
-
@property
def model_with_set_params(self):
return self._model_with_set_params
@@ -680,42 +958,26 @@ def model_with_set_params(self):
def geometry(self):
return self._geometry
- @geometry.setter
- def geometry(self, geometry: Optional[pybamm.Geometry]):
- self._geometry = geometry.copy() if geometry is not None else None
-
@property
def submesh_types(self):
return self._submesh_types
- @submesh_types.setter
- def submesh_types(self, submesh_types: Optional[Dict[str, Any]]):
- self._submesh_types = (
- submesh_types.copy() if submesh_types is not None else None
- )
-
@property
def mesh(self):
return self._mesh
+ @property
+ def disc(self):
+ return self._disc
+
@property
def var_pts(self):
return self._var_pts
- @var_pts.setter
- def var_pts(self, var_pts: Optional[Dict[str, int]]):
- self._var_pts = var_pts.copy() if var_pts is not None else None
-
@property
def spatial_methods(self):
return self._spatial_methods
- @spatial_methods.setter
- def spatial_methods(self, spatial_methods: Optional[Dict[str, Any]]):
- self._spatial_methods = (
- spatial_methods.copy() if spatial_methods is not None else None
- )
-
@property
def solver(self):
return self._solver
diff --git a/pybop/models/empirical/base_ecm.py b/pybop/models/empirical/base_ecm.py
index 8d15442d1..9b0d9209e 100644
--- a/pybop/models/empirical/base_ecm.py
+++ b/pybop/models/empirical/base_ecm.py
@@ -1,4 +1,8 @@
-from pybop.models.base_model import BaseModel
+import numpy as np
+import pybamm
+
+from pybop.models.base_model import BaseModel, Inputs
+from pybop.parameters.parameter_set import ParameterSet
class ECircuitModel(BaseModel):
@@ -41,27 +45,32 @@ def __init__(
var_pts=None,
spatial_methods=None,
solver=None,
+ check_params=None,
+ eis=False,
**model_kwargs,
):
model_options = dict(build=False)
for key, value in model_kwargs.items():
model_options[key] = value
- self.pybamm_model = pybamm_model(**model_options)
- self._unprocessed_model = self.pybamm_model
+ pybamm_model = pybamm_model(**model_options)
# Correct OCP if set to default
if (
parameter_set is not None
- and "Open-circuit voltage [V]" in parameter_set.params
+ and "Open-circuit voltage [V]" in parameter_set.keys()
):
- default_ocp = self.pybamm_model.default_parameter_values[
+ default_ocp = pybamm_model.default_parameter_values[
"Open-circuit voltage [V]"
]
- if parameter_set.params["Open-circuit voltage [V]"] == "default":
+ if parameter_set["Open-circuit voltage [V]"] == "default":
print("Setting open-circuit voltage to default function")
- parameter_set.params["Open-circuit voltage [V]"] = default_ocp
+ parameter_set["Open-circuit voltage [V]"] = default_ocp
- super().__init__(name=name, parameter_set=parameter_set)
+ super().__init__(
+ name=name, parameter_set=parameter_set, check_params=check_params, eis=eis
+ )
+ self.pybamm_model = pybamm_model
+ self._unprocessed_model = self.pybamm_model
# Set parameters, using either the provided ones or the default
self.default_parameter_values = self.pybamm_model.default_parameter_values
@@ -69,13 +78,13 @@ def __init__(
self._unprocessed_parameter_set = self._parameter_set
# Define model geometry and discretization
- self.geometry = geometry or self.pybamm_model.default_geometry
- self.submesh_types = submesh_types or self.pybamm_model.default_submesh_types
- self.var_pts = var_pts or self.pybamm_model.default_var_pts
- self.spatial_methods = (
+ self._geometry = geometry or self.pybamm_model.default_geometry
+ self._submesh_types = submesh_types or self.pybamm_model.default_submesh_types
+ self._var_pts = var_pts or self.pybamm_model.default_var_pts
+ self._spatial_methods = (
spatial_methods or self.pybamm_model.default_spatial_methods
)
- self.solver = solver or self.pybamm_model.default_solver
+ self._solver = solver or self.pybamm_model.default_solver
# Internal attributes for the built model are initialized but not set
self._model_with_set_params = None
@@ -85,14 +94,21 @@ def __init__(
self._disc = None
self.geometric_parameters = {}
- def _check_params(self, inputs=None, allow_infeasible_solutions=True):
+ def _check_params(
+ self,
+ inputs: Inputs,
+ parameter_set: ParameterSet,
+ allow_infeasible_solutions: bool = True,
+ ):
"""
Check the compatibility of the model parameters.
Parameters
----------
- inputs : dict
+ inputs : Inputs
The input parameters for the simulation.
+ parameter_set : pybop.ParameterSet
+ A PyBOP parameter set object or a dictionary containing the parameter values.
allow_infeasible_solutions : bool, optional
If True, infeasible parameter values will be allowed in the optimisation (default: True).
@@ -100,6 +116,90 @@ def _check_params(self, inputs=None, allow_infeasible_solutions=True):
-------
bool
A boolean which signifies whether the parameters are compatible.
-
"""
+ if self.param_checker:
+ return self.param_checker(inputs, allow_infeasible_solutions)
return True
+
+ def get_initial_state(
+ self,
+ initial_value,
+ parameter_values=None,
+ param=None,
+ options=None,
+ tol=1e-6,
+ inputs=None,
+ ):
+ """
+ Calculate the initial state of charge given an open-circuit voltage, voltage limits
+ and the open-circuit voltage function defined by the parameter set.
+
+ Parameters
+ ----------
+ initial_value : float
+ Target initial value.
+ If float, interpreted as SOC, must be between 0 and 1.
+ If string e.g. "4 V", interpreted as voltage, must be between V_min and V_max.
+ parameter_values : :class:`pybamm.ParameterValues`
+ The parameter values class that will be used for the simulation. Required for
+ calculating appropriate initial stoichiometries.
+ param : :class:`pybamm.LithiumIonParameters`, optional
+ The symbolic parameter set to use for the simulation.
+ If not provided, the default parameter set will be used.
+ options : dict-like, optional
+ A dictionary of options to be passed to the model, see
+ :class:`pybamm.BatteryModelOptions`.
+ tol : float, optional
+ The tolerance for the solver used to compute the initial stoichiometries.
+ A lower value results in higher precision but may increase computation time.
+ Default is 1e-6.
+
+ Returns
+ -------
+ initial_soc
+ The initial state of charge
+ """
+ parameter_values = parameter_values or self._unprocessed_parameter_set
+ param = param or self.pybamm_model.param
+
+ if isinstance(initial_value, str) and initial_value.endswith("V"):
+ V_init = float(initial_value[:-1])
+ V_min = parameter_values.evaluate(param.voltage_low_cut, inputs=inputs)
+ V_max = parameter_values.evaluate(param.voltage_high_cut, inputs=inputs)
+
+ if not V_min <= V_init <= V_max:
+ raise ValueError(
+ f"Initial voltage {V_init}V is outside the voltage limits "
+ f"({V_min}, {V_max})"
+ )
+
+ # Solve simple model for initial soc based on target voltage
+ soc_model = pybamm.BaseModel()
+ soc = pybamm.Variable("soc")
+ ocv = param.ocv
+ soc_model.algebraic[soc] = ocv(soc) - V_init
+
+ # initial guess for soc linearly interpolates between 0 and 1
+ # based on V linearly interpolating between V_max and V_min
+ soc_model.initial_conditions[soc] = (V_init - V_min) / (V_max - V_min)
+ soc_model.variables["soc"] = soc
+ parameter_values.process_model(soc_model)
+ initial_soc = (
+ pybamm.AlgebraicSolver(tol=tol).solve(soc_model, [0])["soc"].data[0]
+ )
+
+ # Ensure that the result lies between 0 and 1
+ initial_soc = np.minimum(np.maximum(initial_soc, 0.0), 1.0)
+
+ elif isinstance(initial_value, (int, float)):
+ if not 0 <= initial_value <= 1:
+ raise ValueError("Initial SOC should be between 0 and 1")
+ initial_soc = initial_value
+
+ else:
+ raise ValueError(
+ "Initial value must be a float between 0 and 1, "
+ "or a string ending in 'V'"
+ )
+
+ return initial_soc
diff --git a/pybop/models/empirical/ecm.py b/pybop/models/empirical/ecm.py
index 031da3fde..95a1a170e 100644
--- a/pybop/models/empirical/ecm.py
+++ b/pybop/models/empirical/ecm.py
@@ -38,27 +38,12 @@ class Thevenin(ECircuitModel):
def __init__(
self,
name="Equivalent Circuit Thevenin Model",
+ eis=False,
**model_kwargs,
):
super().__init__(
- pybamm_model=pybamm_equivalent_circuit.Thevenin, name=name, **model_kwargs
+ pybamm_model=pybamm_equivalent_circuit.Thevenin,
+ name=name,
+ eis=eis,
+ **model_kwargs,
)
-
- def _check_params(self, inputs=None, allow_infeasible_solutions=True):
- """
- Check the compatibility of the model parameters.
-
- Parameters
- ----------
- inputs : dict
- The input parameters for the simulation.
- allow_infeasible_solutions : bool, optional
- If True, infeasible parameter values will be allowed in the optimisation (default: True).
-
- Returns
- -------
- bool
- A boolean which signifies whether the parameters are compatible.
-
- """
- return True
diff --git a/pybop/models/lithium_ion/base_echem.py b/pybop/models/lithium_ion/base_echem.py
index 6947774bf..ade7e8fa2 100644
--- a/pybop/models/lithium_ion/base_echem.py
+++ b/pybop/models/lithium_ion/base_echem.py
@@ -1,8 +1,12 @@
+import sys
import warnings
+from typing import Optional
+from pybamm import LithiumIonParameters
from pybamm import lithium_ion as pybamm_lithium_ion
-from pybop.models.base_model import BaseModel
+from pybop.models.base_model import BaseModel, Inputs
+from pybop.parameters.parameter_set import ParameterSet
class EChemBaseModel(BaseModel):
@@ -45,12 +49,10 @@ def __init__(
var_pts=None,
spatial_methods=None,
solver=None,
+ eis=False,
**model_kwargs,
):
- super().__init__(
- name=name,
- parameter_set=parameter_set,
- )
+ super().__init__(name=name, parameter_set=parameter_set, eis=eis)
model_options = dict(build=False)
for key, value in model_kwargs.items():
@@ -64,18 +66,18 @@ def __init__(
self._unprocessed_parameter_set = self._parameter_set
# Define model geometry and discretization
- self.geometry = geometry or self.pybamm_model.default_geometry
- self.submesh_types = submesh_types or self.pybamm_model.default_submesh_types
- self.var_pts = var_pts or self.pybamm_model.default_var_pts
- self.spatial_methods = (
+ self._geometry = geometry or self.pybamm_model.default_geometry
+ self._submesh_types = submesh_types or self.pybamm_model.default_submesh_types
+ self._var_pts = var_pts or self.pybamm_model.default_var_pts
+ self._spatial_methods = (
spatial_methods or self.pybamm_model.default_spatial_methods
)
if solver is None:
- self.solver = self.pybamm_model.default_solver
- self.solver.mode = "fast with events"
- self.solver.max_step_decrease_count = 1
+ self._solver = self.pybamm_model.default_solver
+ self._solver.mode = "fast with events"
+ self._solver.max_step_decrease_count = 1
else:
- self.solver = solver
+ self._solver = solver
# Internal attributes for the built model are initialized but not set
self._model_with_set_params = None
@@ -85,18 +87,24 @@ def __init__(
self._disc = None
self._electrode_soh = pybamm_lithium_ion.electrode_soh
+ self._electrode_soh_half_cell = pybamm_lithium_ion.electrode_soh_half_cell
self.geometric_parameters = self.set_geometric_parameters()
def _check_params(
- self, inputs=None, parameter_set=None, allow_infeasible_solutions=True
+ self,
+ inputs: Inputs,
+ parameter_set: ParameterSet,
+ allow_infeasible_solutions: bool = True,
):
"""
Check compatibility of the model parameters.
Parameters
----------
- inputs : dict
+ inputs : Inputs
The input parameters for the simulation.
+ parameter_set : pybop.ParameterSet
+ A PyBOP parameter set object or a dictionary containing the parameter values.
allow_infeasible_solutions : bool, optional
If True, infeasible parameter values will be allowed in the optimisation (default: True).
@@ -105,8 +113,6 @@ def _check_params(
bool
A boolean which signifies whether the parameters are compatible.
"""
- parameter_set = parameter_set or self._parameter_set
-
if self.pybamm_model.options["working electrode"] == "positive":
electrode_params = [
(
@@ -133,19 +139,22 @@ def _check_params(
}
for material_vol_fraction, porosity in electrode_params:
- if (
+ total_vol_fraction = (
related_parameters[material_vol_fraction] + related_parameters[porosity]
- > 1
+ )
+ if (
+ ParameterSet.evaluate_symbol(total_vol_fraction, parameter_set)
+ > 1 + sys.float_info.epsilon
):
if self.param_check_counter <= len(electrode_params):
infeasibility_warning = "Non-physical point encountered - [{material_vol_fraction} + {porosity}] > 1.0!"
- warnings.warn(infeasibility_warning, UserWarning)
+ warnings.warn(infeasibility_warning, UserWarning, stacklevel=2)
self.param_check_counter += 1
return allow_infeasible_solutions
return True
- def cell_volume(self, parameter_set=None):
+ def cell_volume(self, parameter_set: Optional[ParameterSet] = None):
"""
Calculate the total cell volume in m3.
@@ -156,8 +165,7 @@ def cell_volume(self, parameter_set=None):
Parameters
----------
parameter_set : dict, optional
- A dictionary containing the parameter values necessary for the volume
- calculation.
+ A dictionary containing the parameter values necessary for the calculation.
Returns
-------
@@ -180,10 +188,12 @@ def cell_volume(self, parameter_set=None):
parameter_set["Electrode height [m]"] * parameter_set["Electrode width [m]"]
)
- # Calculate and return total cell volume
- return cross_sectional_area * cell_thickness
+ # Calculate total cell volume
+ cell_volume = cross_sectional_area * cell_thickness
+
+ return ParameterSet.evaluate_symbol(cell_volume, parameter_set)
- def cell_mass(self, parameter_set=None):
+ def cell_mass(self, parameter_set: Optional[ParameterSet] = None):
"""
Calculate the total cell mass in kilograms.
@@ -195,8 +205,7 @@ def cell_mass(self, parameter_set=None):
Parameters
----------
parameter_set : dict, optional
- A dictionary containing the parameter values necessary for the mass
- calculations.
+ A dictionary containing the parameter values necessary for the calculation.
Returns
-------
@@ -206,30 +215,36 @@ def cell_mass(self, parameter_set=None):
parameter_set = parameter_set or self._parameter_set
def mass_density(
- active_material_vol_frac, density, porosity, electrolyte_density
+ active_material_vol_frac,
+ density,
+ porosity,
+ electrolyte_density,
+ carbon_binder_domain_density,
):
- return (active_material_vol_frac * density) + (
- porosity * electrolyte_density
+ return (
+ (active_material_vol_frac * density)
+ + (porosity * electrolyte_density)
+ + (1.0 - active_material_vol_frac - porosity)
+ * carbon_binder_domain_density
)
def area_density(thickness, mass_density):
return thickness * mass_density
- # Approximations due to SPM(e) parameter set limitations
- electrolyte_density = parameter_set["Separator density [kg.m-3]"]
-
# Calculate mass densities
positive_mass_density = mass_density(
parameter_set["Positive electrode active material volume fraction"],
- parameter_set["Positive electrode density [kg.m-3]"],
+ parameter_set["Positive electrode active material density [kg.m-3]"],
parameter_set["Positive electrode porosity"],
- electrolyte_density,
+ parameter_set["Electrolyte density [kg.m-3]"],
+ parameter_set["Positive electrode carbon-binder density [kg.m-3]"],
)
negative_mass_density = mass_density(
parameter_set["Negative electrode active material volume fraction"],
- parameter_set["Negative electrode density [kg.m-3]"],
+ parameter_set["Negative electrode active material density [kg.m-3]"],
parameter_set["Negative electrode porosity"],
- electrolyte_density,
+ parameter_set["Electrolyte density [kg.m-3]"],
+ parameter_set["Negative electrode carbon-binder density [kg.m-3]"],
)
# Calculate area densities
@@ -241,7 +256,7 @@ def area_density(thickness, mass_density):
)
separator_area_density = area_density(
parameter_set["Separator thickness [m]"],
- parameter_set["Separator porosity"] * electrolyte_density,
+ parameter_set["Separator density [kg.m-3]"],
)
positive_cc_area_density = area_density(
parameter_set["Positive current collector thickness [m]"],
@@ -257,7 +272,7 @@ def area_density(thickness, mass_density):
parameter_set["Electrode height [m]"] * parameter_set["Electrode width [m]"]
)
- # Calculate and return total cell mass
+ # Calculate total cell mass
total_area_density = (
positive_area_density
+ negative_area_density
@@ -265,61 +280,49 @@ def area_density(thickness, mass_density):
+ positive_cc_area_density
+ negative_cc_area_density
)
- return cross_sectional_area * total_area_density
+ cell_mass = cross_sectional_area * total_area_density
- def approximate_capacity(self, x):
- """
- Calculate and update an estimate for the nominal cell capacity based on the theoretical
- energy density and an average voltage.
+ return ParameterSet.evaluate_symbol(cell_mass, parameter_set)
- The nominal capacity is computed by dividing the theoretical energy (in watt-hours) by
- the average open circuit potential (voltage) of the cell.
+ def approximate_capacity(self, parameter_set: Optional[ParameterSet] = None):
+ """
+ Calculate an estimate for the nominal cell capacity. The estimate is computed
+ by estimating the capacity of the positive electrode that lies between the
+ stoichiometric limits corresponding to the upper and lower voltage limits.
Parameters
----------
- x : array-like
- An array of values representing the model inputs.
+ parameter_set : dict, optional
+ A dictionary containing the parameter values necessary for the calculation.
Returns
-------
- None
- The nominal cell capacity is updated directly in the model's parameter set.
+ float
+ The estimate of the nominal cell capacity [A.h].
"""
- # Extract stoichiometries and compute mean values
- (
- min_sto_neg,
- max_sto_neg,
- min_sto_pos,
- max_sto_pos,
- ) = self._electrode_soh.get_min_max_stoichiometries(self._parameter_set)
- mean_sto_neg = (min_sto_neg + max_sto_neg) / 2
- mean_sto_pos = (min_sto_pos + max_sto_pos) / 2
-
- inputs = {
- key: x[i] for i, key in enumerate([param.name for param in self.parameters])
- }
- self._parameter_set.update(inputs)
-
- # Calculate theoretical energy density
- theoretical_energy = self._electrode_soh.calculate_theoretical_energy(
- self._parameter_set
- )
+ parameter_set = parameter_set or self._parameter_set
- # Calculate average voltage
- positive_electrode_ocp = self._parameter_set["Positive electrode OCP [V]"]
- negative_electrode_ocp = self._parameter_set["Negative electrode OCP [V]"]
- try:
- average_voltage = positive_electrode_ocp(
- mean_sto_pos
- ) - negative_electrode_ocp(mean_sto_neg)
- except Exception as e:
- raise ValueError(f"Error in average voltage calculation: {e}")
-
- # Calculate and update nominal capacity
- theoretical_capacity = theoretical_energy / average_voltage
- self._parameter_set.update(
- {"Nominal cell capacity [A.h]": theoretical_capacity}
- )
+ # Calculate the theoretical capacity in the limit of low current
+ if self.pybamm_model.options["working electrode"] == "positive":
+ (
+ max_sto_p,
+ min_sto_p,
+ ) = self._electrode_soh_half_cell.get_min_max_stoichiometries(parameter_set)
+ else:
+ (
+ min_sto_n,
+ max_sto_n,
+ min_sto_p,
+ max_sto_p,
+ ) = self._electrode_soh.get_min_max_stoichiometries(parameter_set)
+ # Note that the stoichiometric limits correspond to 0 and 100% SOC.
+ # Stoichiometric balancing is performed within get_min_max_stoichiometries
+ # such that the capacity accessible between the limits should be the same
+ # for both electrodes, so we consider just the positive electrode below.
+
+ Q_p = LithiumIonParameters().p.prim.Q_init
+ theoretical_capacity = Q_p * (max_sto_p - min_sto_p)
+ return ParameterSet.evaluate_symbol(theoretical_capacity, parameter_set)
def set_geometric_parameters(self):
"""
@@ -341,6 +344,10 @@ def set_geometric_parameters(self):
"Positive electrode thickness [m]",
"Separator porosity",
"Separator thickness [m]",
+ "Open-circuit voltage at 100% SOC [V]",
+ "Open-circuit voltage at 0% SOC [V]"
+ "Maximum concentration in positive electrode [mol.m-3]",
+ "Maximum concentration in negative electrode [mol.m-3]",
]
)
diff --git a/pybop/models/lithium_ion/echem.py b/pybop/models/lithium_ion/echem.py
index 8bd8ab636..aac05b738 100644
--- a/pybop/models/lithium_ion/echem.py
+++ b/pybop/models/lithium_ion/echem.py
@@ -1,8 +1,7 @@
from pybamm import lithium_ion as pybamm_lithium_ion
from pybop.models.lithium_ion.base_echem import EChemBaseModel
-
-from .weppner_huggins import BaseWeppnerHuggins
+from pybop.models.lithium_ion.weppner_huggins import BaseWeppnerHuggins
class SPM(EChemBaseModel):
@@ -39,11 +38,13 @@ class SPM(EChemBaseModel):
def __init__(
self,
name="Single Particle Model",
+ eis=False,
**model_kwargs,
):
super().__init__(
pybamm_model=pybamm_lithium_ion.SPM,
name=name,
+ eis=eis,
**model_kwargs,
)
@@ -84,10 +85,11 @@ class SPMe(EChemBaseModel):
def __init__(
self,
name="Single Particle Model with Electrolyte",
+ eis=False,
**model_kwargs,
):
super().__init__(
- pybamm_model=pybamm_lithium_ion.SPMe, name=name, **model_kwargs
+ pybamm_model=pybamm_lithium_ion.SPMe, name=name, eis=eis, **model_kwargs
)
@@ -127,9 +129,12 @@ class DFN(EChemBaseModel):
def __init__(
self,
name="Doyle-Fuller-Newman",
+ eis=False,
**model_kwargs,
):
- super().__init__(pybamm_model=pybamm_lithium_ion.DFN, name=name, **model_kwargs)
+ super().__init__(
+ pybamm_model=pybamm_lithium_ion.DFN, name=name, eis=eis, **model_kwargs
+ )
class MPM(EChemBaseModel):
@@ -166,10 +171,12 @@ class MPM(EChemBaseModel):
def __init__(
self,
name="Many Particle Model",
+ eis=False,
**model_kwargs,
):
super().__init__(
pybamm_model=pybamm_lithium_ion.MPM,
+ eis=eis,
name=name,
**model_kwargs,
)
@@ -209,11 +216,13 @@ class MSMR(EChemBaseModel):
def __init__(
self,
name="Multi Species Multi Reactions Model",
+ eis=False,
**model_kwargs,
):
super().__init__(
pybamm_model=pybamm_lithium_ion.MSMR,
name=name,
+ eis=eis,
**model_kwargs,
)
@@ -242,5 +251,7 @@ class WeppnerHuggins(EChemBaseModel):
The solver to use for simulating the model. If None, the default solver from PyBaMM is used.
"""
- def __init__(self, name="Weppner & Huggins model", **model_kwargs):
- super().__init__(pybamm_model=BaseWeppnerHuggins, name=name, **model_kwargs)
+ def __init__(self, name="Weppner & Huggins model", eis=False, **model_kwargs):
+ super().__init__(
+ pybamm_model=BaseWeppnerHuggins, name=name, eis=eis, **model_kwargs
+ )
diff --git a/pybop/models/lithium_ion/weppner_huggins.py b/pybop/models/lithium_ion/weppner_huggins.py
index 5d8d626a4..9703269d3 100644
--- a/pybop/models/lithium_ion/weppner_huggins.py
+++ b/pybop/models/lithium_ion/weppner_huggins.py
@@ -36,7 +36,7 @@ def __init__(self, name="Weppner & Huggins model", **model_kwargs):
# Model kwargs (build, options) are not implemented, keeping here for consistent interface
if model_kwargs is not dict(build=True):
unused_kwargs_warning = "The input model_kwargs are not currently used by the Weppner & Huggins model."
- warnings.warn(unused_kwargs_warning, UserWarning)
+ warnings.warn(unused_kwargs_warning, UserWarning, stacklevel=2)
super().__init__({}, name)
@@ -65,7 +65,7 @@ def __init__(self, name="Weppner & Huggins model", **model_kwargs):
# Parameters
######################
- d_s = Parameter("Positive electrode diffusivity [m2.s-1]")
+ d_s = Parameter("Positive particle diffusivity [m2.s-1]")
c_s_max = Parameter("Maximum concentration in positive electrode [mol.m-3]")
@@ -99,6 +99,7 @@ def __init__(self, name="Weppner & Huggins model", **model_kwargs):
self.variables = {
"Voltage [V]": V,
"Time [s]": t,
+ "Current [A]": self.param.current_with_time,
}
# Set the built property on creation to prevent unnecessary model rebuilds
diff --git a/pybop/observers/observer.py b/pybop/observers/observer.py
index 1b81c5ac7..239f352a1 100644
--- a/pybop/observers/observer.py
+++ b/pybop/observers/observer.py
@@ -22,12 +22,12 @@ class Observer(BaseProblem):
The model to observe.
check_model : bool, optional
Flag to indicate if the model should be checked (default: True).
- signal: List[str]
+ signal: list[str]
The signal to observe.
- additional_variables : List[str], optional
+ additional_variables : list[str], optional
Additional variables to observe and store in the solution (default: []).
- init_soc : float, optional
- Initial state of charge (default: None).
+ initial_state : dict, optional
+ A valid initial state, e.g. the initial open-circuit voltage (default: None).
"""
# define a subtype for covariance matrices for use by derived classes
@@ -37,27 +37,19 @@ def __init__(
self,
parameters: Parameters,
model: BaseModel,
- check_model=True,
- signal=["Voltage [V]"],
- additional_variables=[],
- init_soc=None,
+ check_model: bool = True,
+ signal: Optional[list[str]] = None,
+ additional_variables: Optional[list[str]] = None,
+ initial_state: Optional[dict] = None,
) -> None:
super().__init__(
- parameters, model, check_model, signal, additional_variables, init_soc
+ parameters, model, check_model, signal, additional_variables, initial_state
)
- if model._built_model is None:
+ if model.built_model is None:
raise ValueError("Only built models can be used in Observers")
- if model.signal is None:
- model.signal = self.signal
- inputs = dict()
- for param in self.parameters:
- inputs[param.name] = param.value
-
- self._state = model.reinit(inputs)
- self._model = model
- self._signal = self.signal
- self._n_outputs = len(self._signal)
+ inputs = self.parameters.as_dict("initial")
+ self._state = self.model.reinit(inputs)
def reset(self, inputs: Inputs) -> None:
self._state = self._model.reinit(inputs)
@@ -96,8 +88,10 @@ def log_likelihood(self, values: dict, times: np.ndarray, inputs: Inputs) -> flo
inputs : Inputs
The inputs to the model.
"""
- if self._n_outputs == 1:
- signal = self._signal[0]
+ inputs = self.parameters.verify(inputs)
+
+ if self.n_outputs == 1:
+ signal = self.signal[0]
if len(values[signal]) != len(times):
raise ValueError("values and times must have the same length.")
log_likelihood = 0.0
@@ -133,7 +127,7 @@ def get_current_covariance(self) -> Covariance:
return np.zeros((n, n))
def get_measure(self, x: TimeSeriesState) -> np.ndarray:
- measures = [x.sol[s].data[-1] for s in self._signal]
+ measures = [x.sol[s].data[-1] for s in self.signal]
return np.asarray([[m] for m in measures])
def get_current_time(self) -> float:
@@ -142,41 +136,36 @@ def get_current_time(self) -> float:
"""
return self._state.t
- def evaluate(self, x):
+ def evaluate(self, inputs: Inputs):
"""
Evaluate the model with the given parameters and return the signal.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Inputs
+ Parameters for evaluation of the model.
Returns
-------
y : np.ndarray
- The model output y(t) simulated with inputs x.
+ The model output y(t) simulated with given inputs.
"""
- inputs = dict()
- if isinstance(x, Parameters):
- for param in x:
- inputs[param.name] = param.value
- else: # x is an array of parameter values
- for i, param in enumerate(self.parameters):
- inputs[param.name] = x[i]
+ inputs = self.parameters.verify(inputs)
+
self.reset(inputs)
output = {}
ys = []
- if hasattr(self, "_dataset"):
- for signal in self._signal:
+ if self._dataset is not None:
+ for signal in self.signal:
ym = self._target[signal]
- for i, t in enumerate(self._time_data):
+ for i, t in enumerate(self._domain_data):
self.observe(t, ym[i])
ys.append(self.get_current_measure())
output[signal] = np.vstack(ys)
else:
- for signal in self._signal:
- for t in self._time_data:
+ for signal in self.signal:
+ for t in self._domain_data:
self.observe(t)
ys.append(self.get_current_measure())
output[signal] = np.vstack(ys)
diff --git a/pybop/observers/unscented_kalman.py b/pybop/observers/unscented_kalman.py
index 0b6425db9..69e019ee6 100644
--- a/pybop/observers/unscented_kalman.py
+++ b/pybop/observers/unscented_kalman.py
@@ -1,9 +1,10 @@
from dataclasses import dataclass
-from typing import List, Tuple, Union
+from typing import Optional, Union
import numpy as np
import scipy.linalg as linalg
+from pybop._dataset import Dataset
from pybop.models.base_model import BaseModel, Inputs
from pybop.observers.observer import Observer
from pybop.parameters.parameter import Parameter
@@ -15,8 +16,8 @@ class UnscentedKalmanFilterObserver(Observer):
Parameters
----------
- parameters: List[Parameters]
- The inputs to the model.
+ parameters: Parameters
+ The parameters for the model.
model : BaseModel
The model to observe.
sigma0 : np.ndarray | float
@@ -33,45 +34,49 @@ class UnscentedKalmanFilterObserver(Observer):
Flag to indicate if the model should be checked (default: True).
signal: str
The signal to observe.
- init_soc : float, optional
- Initial state of charge (default: None).
+ initial_state : dict, optional
+ A valid initial state, e.g. the initial open-circuit voltage (default: None).
"""
Covariance = np.ndarray
def __init__(
self,
- parameters: List[Parameter],
+ parameters: list[Parameter],
model: BaseModel,
sigma0: Union[Covariance, float],
process: Union[Covariance, float],
measure: Union[Covariance, float],
- dataset=None,
- check_model=True,
- signal=["Voltage [V]"],
- additional_variables=[],
- init_soc=None,
+ dataset: Optional[Dataset] = None,
+ check_model: bool = True,
+ signal: Optional[list[str]] = None,
+ additional_variables: Optional[list[str]] = None,
+ initial_state: Optional[float] = None,
) -> None:
+ if model is not None:
+ # Clear any existing built model and its properties
+ if model.built_model is not None:
+ model.clear()
+
+ # Build the model from scratch
+ model.build(
+ dataset=dataset,
+ parameters=parameters,
+ check_model=check_model,
+ )
+
super().__init__(
- parameters, model, check_model, signal, additional_variables, init_soc
+ parameters, model, check_model, signal, additional_variables, initial_state
)
if dataset is not None:
- self._dataset = dataset.data
+ # Check that the dataset contains necessary variables
+ dataset.check(signal=[*self.signal, "Current function [A]"])
- # Check that the dataset contains time and current
- dataset.check(self.signal + ["Current function [A]"])
-
- self._time_data = self._dataset["Time [s]"]
- self.n_time_data = len(self._time_data)
+ self._dataset = dataset.data
+ self._domain_data = self._dataset["Time [s]"]
+ self.n_data = len(self._domain_data)
self._target = {signal: self._dataset[signal] for signal in self.signal}
- # Add useful parameters to model
- if model is not None:
- self._model.signal = self.signal
- self._model.n_outputs = self.n_outputs
- if dataset is not None:
- self._model.n_time_data = self.n_time_data
-
# Observer initiation
self._process = process
@@ -152,7 +157,7 @@ def get_current_covariance(self) -> Covariance:
@dataclass
-class SigmaPoint(object):
+class SigmaPoint:
"""
A sigma point is a point in the state space that is used to estimate the mean and covariance of a random variable.
"""
@@ -162,7 +167,7 @@ class SigmaPoint(object):
w_c: float
-class SquareRootUKF(object):
+class SquareRootUKF:
"""
van der Menve, R., & Wan, E. A. (2001). THE SQUARE-ROOT UNSCENTED KALMAN FILTER FOR STATE AND PARAMETER-ESTIMATION.
https://doi.org/10.1109/ICASSP.2001.940586
@@ -235,7 +240,7 @@ def reset(self, x: np.ndarray, S: np.ndarray) -> None:
@staticmethod
def gen_sigma_points(
x: np.ndarray, S: np.ndarray, alpha: float, beta: float, states: np.ndarray
- ) -> Tuple[np.ndarray, np.ndarray, np.ndarray]:
+ ) -> tuple[np.ndarray, np.ndarray, np.ndarray]:
"""
Generates 2L+1 sigma points for the unscented transform, where L is the number of states.
@@ -254,11 +259,11 @@ def gen_sigma_points(
Returns
-------
- List[np.ndarray]
+ list[np.ndarray]
The sigma points
- List[float]
+ list[float]
The weights of the sigma points
- List[float]
+ list[float]
The weights of the covariance of the sigma points
"""
# Set the scaling parameters: sigma and eta
@@ -290,14 +295,14 @@ def unscented_transform(
w_m: np.ndarray,
w_c: np.ndarray,
sqrtR: np.ndarray,
- states: Union[np.ndarray, None] = None,
- ) -> Tuple[np.ndarray, np.ndarray]:
+ states: Optional[np.ndarray] = None,
+ ) -> tuple[np.ndarray, np.ndarray]:
"""
Performs the unscented transform
Parameters
----------
- sigma_points : List[SigmaPoint]
+ sigma_points : list[SigmaPoint]
The sigma points
sqrtR : np.ndarray
The square root of the covariance matrix
diff --git a/pybop/optimisers/_adamw.py b/pybop/optimisers/_adamw.py
index 24e5ec982..34c990206 100644
--- a/pybop/optimisers/_adamw.py
+++ b/pybop/optimisers/_adamw.py
@@ -26,7 +26,7 @@ class AdamWImpl(PintsOptimiser):
m_j' = m_j[i] / (1 - beta1**(1 + i))
v_j' = v_j[i] / (1 - beta2**(1 + i))
- p_j[i] = p_j[i - 1] - alpha * (m_j' / (sqrt(v_j') + eps) + lambda * p_j[i - 1])
+ p_j[i] = p_j[i - 1] - alpha * (m_j' / (sqrt(v_j') + eps) + lam * p_j[i - 1])
The initial values of the moments are ``m_j[0] = v_j[0] = 0``, after which
they decay with rates ``beta1`` and ``beta2``. The default values for these are,
@@ -38,7 +38,7 @@ class AdamWImpl(PintsOptimiser):
The parameter ``alpha`` is a step size, which is set as ``min(sigma0)`` in
this implementation.
- The parameter ``lambda`` is the weight decay rate, which is set to ``0.01``
+ The parameter ``lam`` is the weight decay rate, which is set to ``0.01``
by default in this implementation.
Finally, ``eps`` is a small constant used to avoid division by zero, set to
@@ -86,10 +86,9 @@ def __init__(self, x0, sigma0=0.015, boundaries=None):
self._b2 = 0.999
# Step size
- self._alpha = np.min(self._sigma0)
-
+ self._alpha = self._sigma0
# Weight decay rate
- self.set_lambda()
+ self._lam = 0.01
# Small number added to avoid divide-by-zero
self._eps = np.finfo(float).eps
@@ -157,7 +156,7 @@ def tell(self, reply):
# Check ask-tell pattern
if not self._ready_for_tell:
- raise Exception("ask() not called before tell()")
+ raise RuntimeError("ask() not called before tell()")
self._ready_for_tell = False
# Unpack reply
@@ -186,7 +185,7 @@ def tell(self, reply):
# Take step with weight decay
self._proposed = self._current - self._alpha * (
- m / (np.sqrt(v) + self._eps) + self._lambda * self._current
+ m / (np.sqrt(v) + self._eps) + self._lam * self._current
)
# Update x_best and f_best
@@ -206,17 +205,27 @@ def x_guessed(self):
"""
return self._current
- def set_lambda(self, lambda_: float = 0.01) -> None:
+ @property
+ def lam(self):
+ return self._lam
+
+ @lam.setter
+ def lam(self, lam: float = 0.01) -> None:
"""
- Sets the lambda_ decay constant. This is the weight decay rate
+ Sets the lam decay constant. This is the weight decay rate
that helps in finding the optimal solution.
"""
- if not isinstance(lambda_, (int, float)) or not 0 < lambda_ <= 1:
- raise ValueError("lambda_ must be a numeric value between 0 and 1.")
+ if not isinstance(lam, (int, float)) or not 0 < lam <= 1:
+ raise ValueError("lam must be a numeric value between 0 and 1.")
- self._lambda = float(lambda_)
+ self._lam = float(lam)
- def set_b1(self, b1: float) -> None:
+ @property
+ def b1(self):
+ return self._b1
+
+ @b1.setter
+ def b1(self, b1: float) -> None:
"""
Sets the b1 momentum decay constant.
"""
@@ -225,7 +234,12 @@ def set_b1(self, b1: float) -> None:
self._b1 = float(b1)
- def set_b2(self, b2: float) -> None:
+ @property
+ def b2(self):
+ return self._b2
+
+ @b2.setter
+ def b2(self, b2: float) -> None:
"""
Sets the b2 momentum decay constant.
"""
diff --git a/pybop/optimisers/_cuckoo.py b/pybop/optimisers/_cuckoo.py
new file mode 100644
index 000000000..346052728
--- /dev/null
+++ b/pybop/optimisers/_cuckoo.py
@@ -0,0 +1,197 @@
+import numpy as np
+from pints import PopulationBasedOptimiser
+from scipy.special import gamma
+
+
+class CuckooSearchImpl(PopulationBasedOptimiser):
+ """
+ Cuckoo Search (CS) optimisation algorithm, inspired by the brood parasitism
+ of some cuckoo species. This algorithm was introduced by Yang and Deb in 2009.
+
+ The algorithm uses a population of host nests (solutions), where each cuckoo
+ (new solution) tries to replace a worse nest in the population. The quality
+ or fitness of the nests is determined by the cost function. A fraction
+ of the worst nests is abandoned at each generation, and new ones are built
+ randomly.
+
+ The pseudo-code for the Cuckoo Search is as follows:
+
+ 1. Initialise population of n host nests
+ 2. While (t < max_generations):
+ a. Get a cuckoo randomly by Lévy flights
+ b. Evaluate its quality/fitness F
+ c. Choose a nest among n (say, j) randomly
+ d. If (F > fitness of j):
+ i. Replace j with the new solution
+ e. Abandon a fraction (pa) of the worst nests and build new ones
+ f. Keep the best solutions/nests
+ g. Rank the solutions and find the current best
+ 3. End While
+
+ This implementation also uses a decreasing step size for the Lévy flights, calculated
+ as sigma = sigma0 / sqrt(iterations), where sigma0 is the initial step size and
+ iterations is the current iteration number.
+
+ Parameters:
+ - pa: Probability of discovering alien eggs/solutions (abandoning rate)
+
+ References:
+ - X. -S. Yang and Suash Deb, "Cuckoo Search via Lévy flights,"
+ 2009 World Congress on Nature & Biologically Inspired Computing (NaBIC),
+ Coimbatore, India, 2009, pp. 210-214, https://doi.org/10.1109/NABIC.2009.5393690.
+
+ - S. Walton, O. Hassan, K. Morgan, M.R. Brown,
+ Modified cuckoo search: A new gradient free optimisation algorithm,
+ Chaos, Solitons & Fractals, Volume 44, Issue 9, 2011,
+ Pages 710-718, ISSN 0960-0779,
+ https://doi.org/10.1016/j.chaos.2011.06.004.
+ """
+
+ def __init__(self, x0, sigma0=0.05, boundaries=None, pa=0.25):
+ super().__init__(x0, sigma0, boundaries=boundaries)
+
+ # Problem dimensionality
+ self._dim = len(x0)
+
+ # Population size and abandon rate
+ self._n = self._population_size
+ self._pa = pa
+ self.step_size = self._sigma0
+ self.beta = 1.5
+
+ # Set states
+ self._running = False
+ self._ready_for_tell = False
+
+ # Initialise nests
+ if self._boundaries:
+ self._nests = np.random.uniform(
+ low=self._boundaries.lower(),
+ high=self._boundaries.upper(),
+ size=(self._n, self._dim),
+ )
+ else:
+ self._nests = np.random.normal(
+ self._x0, self._sigma0, size=(self._n, self._dim)
+ )
+
+ self._fitness = np.full(self._n, np.inf)
+
+ # Initialise best solutions
+ self._x_best = np.copy(x0)
+ self._f_best = np.inf
+
+ # Set iteration count
+ self._iterations = 0
+
+ def ask(self):
+ """
+ Returns a list of next points in the parameter-space
+ to evaluate from the optimiser.
+ """
+ # Set flag to indicate that the optimiser is ready to receive replies
+ self._ready_for_tell = True
+ self._running = True
+
+ # Generate new solutions (cuckoos) by Lévy flights
+ self.step_size = self._sigma0 / max(1, np.sqrt(self._iterations))
+ step = self.levy_flight(self.beta, self._dim) * self.step_size
+ self.cuckoos = self._nests + step
+ return self.clip_nests(self.cuckoos)
+
+ def tell(self, replies):
+ """
+ Receives a list of function values from the cost function from points
+ previously specified by `self.ask()`, and updates the optimiser state
+ accordingly.
+ """
+ # Update iteration count
+ self._iterations += 1
+
+ # Compare cuckoos with current nests
+ for i in range(self._n):
+ f_new = replies[i]
+ if f_new < self._fitness[i]:
+ self._nests[i] = self.cuckoos[i]
+ self._fitness[i] = f_new
+ if f_new < self._f_best:
+ self._f_best = f_new
+ self._x_best = self.cuckoos[i]
+
+ # Abandon some worse nests
+ n_abandon = int(self._pa * self._n)
+ worst_nests = np.argsort(self._fitness)[-n_abandon:]
+ for idx in worst_nests:
+ self.abandon_nests(idx)
+ self._fitness[idx] = np.inf # reset fitness
+
+ def levy_flight(self, alpha, size):
+ """
+ Generate step sizes via the Mantegna's algorithm for Levy flights
+ """
+ from numpy import pi, power, random, sin
+
+ sigma_u = power(
+ (gamma(1 + alpha) * sin(pi * alpha / 2))
+ / (gamma((1 + alpha) / 2) * alpha * power(2, (alpha - 1) / 2)),
+ 1 / alpha,
+ )
+ sigma_v = 1
+
+ u = random.normal(0, sigma_u, size=size)
+ v = random.normal(0, sigma_v, size=size)
+ step = u / power(abs(v), 1 / alpha)
+
+ return step
+
+ def abandon_nests(self, idx):
+ """
+ Updates the nests to abandon the worst performers and reinitialise.
+ """
+ if self._boundaries:
+ self._nests[idx] = np.random.uniform(
+ low=self._boundaries.lower(),
+ high=self._boundaries.upper(),
+ )
+ else:
+ self._nests[idx] = np.random.normal(self._x0, self._sigma0)
+
+ def clip_nests(self, x):
+ """
+ Clip the input array to the boundaries if available.
+ """
+ if self._boundaries:
+ x = np.clip(x, self._boundaries.lower(), self._boundaries.upper())
+ return x
+
+ def _suggested_population_size(self):
+ """
+ Inherited from Pints:PopulationBasedOptimiser.
+ Returns a suggested population size, based on the
+ dimension of the parameter space.
+ """
+ return 4 + int(3 * np.log(self._n_parameters))
+
+ def running(self):
+ """
+ Returns ``True`` if the optimisation is in progress.
+ """
+ return self._running
+
+ def x_best(self):
+ """
+ Returns the best parameter values found so far.
+ """
+ return self._x_best
+
+ def f_best(self):
+ """
+ Returns the best score found so far.
+ """
+ return self._f_best
+
+ def name(self):
+ """
+ Returns the name of the optimiser.
+ """
+ return "Cuckoo Search"
diff --git a/pybop/optimisers/base_optimiser.py b/pybop/optimisers/base_optimiser.py
index b283b9d8e..d008f5eeb 100644
--- a/pybop/optimisers/base_optimiser.py
+++ b/pybop/optimisers/base_optimiser.py
@@ -1,8 +1,18 @@
import warnings
+from typing import Optional, Union
import numpy as np
+from scipy.optimize import OptimizeResult
-from pybop import BaseCost, BaseLikelihood, DesignCost
+from pybop import (
+ BaseCost,
+ BaseLikelihood,
+ DesignCost,
+ Inputs,
+ Parameter,
+ Parameters,
+ WeightedCost,
+)
class BaseOptimiser:
@@ -37,7 +47,7 @@ class BaseOptimiser:
If True, the target is to minimise the cost, else target is to maximise by minimising
the negative cost (default: True).
physical_viability : bool, optional
- If True, the feasibility of the optimised parameters is checked (default: True).
+ If True, the feasibility of the optimised parameters is checked (default: False).
allow_infeasible_solutions : bool, optional
If True, infeasible parameter values will be allowed in the optimisation (default: True).
log : dict
@@ -50,12 +60,15 @@ def __init__(
**optimiser_kwargs,
):
# First set attributes to default values
+ self.parameters = Parameters()
self.x0 = None
self.bounds = None
- self.sigma0 = 0.1
- self.verbose = False
- self.log = dict(x=[], x_best=[], cost=[])
+ self.sigma0 = 0.02
+ self.verbose = True
+ self.log = dict(x=[], x_best=[], cost=[], cost_best=[])
self.minimising = True
+ self._transformation = None
+ self._needs_sensitivities = False
self.physical_viability = False
self.allow_infeasible_solutions = False
self.default_max_iterations = 1000
@@ -63,41 +76,49 @@ def __init__(
if isinstance(cost, BaseCost):
self.cost = cost
- self.x0 = cost.x0
+ self.parameters = self.cost.parameters
+ self._transformation = self.cost.transformation
self.set_allow_infeasible_solutions()
+ if isinstance(cost, WeightedCost):
+ self.minimising = cost.minimising
if isinstance(cost, (BaseLikelihood, DesignCost)):
self.minimising = False
- # Set default bounds (for all or no parameters)
- self.bounds = cost.parameters.get_bounds()
-
- # Set default initial standard deviation (for all or no parameters)
- self.sigma0 = cost.parameters.get_sigma0() or self.sigma0
-
else:
try:
- cost_test = cost(optimiser_kwargs.get("x0", []))
+ self.x0 = optimiser_kwargs.get("x0", [])
+ cost_test = cost(self.x0)
warnings.warn(
"The cost is not an instance of pybop.BaseCost, but let's continue "
- + "assuming that it is a callable function to be minimised.",
+ "assuming that it is a callable function to be minimised.",
UserWarning,
+ stacklevel=2,
)
self.cost = cost
+ for i, value in enumerate(self.x0):
+ self.parameters.add(
+ Parameter(name=f"Parameter {i}", initial_value=value)
+ )
self.minimising = True
- except Exception:
- raise Exception("The cost is not a recognised cost object or function.")
+ except Exception as e:
+ raise Exception(
+ "The cost is not a recognised cost object or function."
+ ) from e
if not np.isscalar(cost_test) or not np.isreal(cost_test):
raise TypeError(
f"Cost returned {type(cost_test)}, not a scalar numeric value."
)
+ if len(self.parameters) == 0:
+ raise ValueError("There are no parameters to optimise.")
+
self.unset_options = optimiser_kwargs
self.set_base_options()
self._set_up_optimiser()
- # Throw an warning if any options remain
+ # Throw a warning if any options remain
if self.unset_options:
warnings.warn(
f"Unrecognised keyword arguments: {self.unset_options} will not be used.",
@@ -109,9 +130,21 @@ def set_base_options(self):
"""
Update the base optimiser options and remove them from the options dictionary.
"""
- self.x0 = self.unset_options.pop("x0", self.x0)
- self.bounds = self.unset_options.pop("bounds", self.bounds)
- self.sigma0 = self.unset_options.pop("sigma0", self.sigma0)
+ # Set initial values, if x0 is None, initial values are unmodified.
+ self.parameters.update(initial_values=self.unset_options.pop("x0", None))
+ self.x0 = self.parameters.reset_initial_value(apply_transform=True)
+
+ # Set default bounds (for all or no parameters)
+ self.bounds = self.unset_options.pop(
+ "bounds", self.parameters.get_bounds(apply_transform=True)
+ )
+
+ # Set default initial standard deviation (for all or no parameters)
+ self.sigma0 = self.unset_options.pop(
+ "sigma0", self.parameters.get_sigma0(apply_transform=True) or self.sigma0
+ )
+
+ # Set other options
self.verbose = self.unset_options.pop("verbose", self.verbose)
self.minimising = self.unset_options.pop("minimising", self.minimising)
if "allow_infeasible_solutions" in self.unset_options.keys():
@@ -138,23 +171,18 @@ def run(self):
Returns
-------
- x : numpy.ndarray
- The best parameter set found by the optimisation.
- final_cost : float
- The final cost associated with the best parameters.
+ results: OptimisationResult
+ The pybop optimisation result class.
"""
self.result = self._run()
- # Store the optimised parameters
- x = self.result.x
- if hasattr(self.cost, "parameters"):
- self.store_optimised_parameters(x)
+ if self.verbose:
+ print(self.result)
- # Check if parameters are viable
- if self.physical_viability:
- self.check_optimal_parameters(x)
+ # Store the optimised parameters
+ self.parameters.update(values=self.result.x)
- return x, self.result.final_cost
+ return self.result
def _run(self):
"""
@@ -169,36 +197,54 @@ def _run(self):
"""
raise NotImplementedError
- def store_optimised_parameters(self, x):
+ def log_update(self, x=None, x_best=None, cost=None, cost_best=None):
"""
- Update the problem parameters with optimised values.
-
- The optimised parameter values are stored within the associated PyBOP parameter class.
+ Update the log with new values.
Parameters
----------
- x : array-like
- Optimised parameter values.
- """
- for i, param in enumerate(self.cost.parameters):
- param.update(value=x[i])
-
- def check_optimal_parameters(self, x):
- """
- Check if the optimised parameters are physically viable.
+ x : list or array-like, optional
+ Parameter values (default: None).
+ x_best : list or array-like, optional
+ Parameter values corresponding to the best cost yet (default: None).
+ cost : list, optional
+ Cost values corresponding to x (default: None).
+ cost_best
+ Cost values corresponding to x_best (default: None).
"""
- if self.cost.problem._model.check_params(
- inputs=x, allow_infeasible_solutions=False
- ):
- return
- else:
- warnings.warn(
- "Optimised parameters are not physically viable! \nConsider retrying the optimisation"
- + " with a non-gradient-based optimiser and the option allow_infeasible_solutions=False",
- UserWarning,
- stacklevel=2,
- )
+ def convert_to_list(array_like):
+ """Helper function to convert input to a list, if necessary."""
+ if isinstance(array_like, (list, tuple, np.ndarray)):
+ return list(array_like)
+ elif isinstance(array_like, (int, float)):
+ return [array_like]
+ else:
+ raise TypeError("Input must be a list, tuple, or numpy array")
+
+ def apply_transformation(values):
+ """Apply transformation if it exists."""
+ if self._transformation:
+ return [self._transformation.to_model(value) for value in values]
+ return values
+
+ if x is not None:
+ x = convert_to_list(x)
+ x = apply_transformation(x)
+ self.log["x"].extend(x)
+
+ if x_best is not None:
+ x_best = convert_to_list(x_best)
+ x_best = apply_transformation(x_best)
+ self.log["x_best"].extend([x_best])
+
+ if cost is not None:
+ cost = convert_to_list(cost)
+ self.log["cost"].extend(cost)
+
+ if cost_best is not None:
+ cost_best = convert_to_list(cost_best)
+ self.log["cost_best"].extend(cost_best)
def name(self):
"""
@@ -207,11 +253,11 @@ def name(self):
Returns
-------
str
- The name of the optimiser, which is "Optimisation" for this base class.
+ The name of the optimiser
"""
- return "Optimisation"
+ raise NotImplementedError # pragma: no cover
- def set_allow_infeasible_solutions(self, allow=True):
+ def set_allow_infeasible_solutions(self, allow: bool = True):
"""
Set whether to allow infeasible solutions or not.
@@ -224,8 +270,12 @@ def set_allow_infeasible_solutions(self, allow=True):
self.physical_viability = allow
self.allow_infeasible_solutions = allow
- if hasattr(self.cost, "problem") and hasattr(self.cost.problem, "_model"):
- self.cost.problem._model.allow_infeasible_solutions = (
+ if (
+ hasattr(self.cost, "problem")
+ and hasattr(self.cost.problem, "model")
+ and self.cost.problem.model is not None
+ ):
+ self.cost.problem.model.allow_infeasible_solutions = (
self.allow_infeasible_solutions
)
else:
@@ -233,8 +283,12 @@ def set_allow_infeasible_solutions(self, allow=True):
self.physical_viability = False
self.allow_infeasible_solutions = False
+ @property
+ def needs_sensitivities(self):
+ return self._needs_sensitivities
+
-class Result:
+class OptimisationResult:
"""
Stores the result of the optimisation.
@@ -252,12 +306,102 @@ class Result:
def __init__(
self,
- x: np.ndarray = None,
- final_cost: float = None,
- n_iterations: int = None,
+ x: Union[Inputs, np.ndarray] = None,
+ cost: Union[BaseCost, None] = None,
+ final_cost: Optional[float] = None,
+ n_iterations: Optional[int] = None,
+ optim: Optional[BaseOptimiser] = None,
+ time: Optional[float] = None,
scipy_result=None,
):
self.x = x
- self.final_cost = final_cost
+ self.cost = cost
+ self.final_cost = (
+ final_cost if final_cost is not None else self._calculate_final_cost()
+ )
self.n_iterations = n_iterations
self.scipy_result = scipy_result
+ self.optim = optim
+ self.time = time
+ if isinstance(self.optim, BaseOptimiser):
+ self.x0 = self.optim.parameters.initial_value()
+ else:
+ self.x0 = None
+
+ # Check that the parameters produce finite cost, and are physically viable
+ self._validate_parameters()
+ self.check_physical_viability(self.x)
+
+ def _calculate_final_cost(self) -> float:
+ """
+ Calculate the final cost using the cost function and optimised parameters.
+
+ Returns:
+ float: The calculated final cost.
+ """
+ return self.cost(self.x)
+
+ def get_scipy_result(self) -> Optional[OptimizeResult]:
+ """
+ Get the SciPy optimisation result object.
+
+ Returns:
+ OptimizeResult or None: The SciPy optimisation result object if available, None otherwise.
+ """
+ return self.scipy_result
+
+ def _validate_parameters(self) -> None:
+ """
+ Validate the optimised parameters and ensure they produce a finite cost value.
+
+ Raises:
+ ValueError: If the optimized parameters do not produce a finite cost value.
+ """
+ if not np.isfinite(self.final_cost):
+ raise ValueError("Optimised parameters do not produce a finite cost value")
+
+ def check_physical_viability(self, x):
+ """
+ Check if the optimised parameters are physically viable.
+
+ Parameters
+ ----------
+ x : array-like
+ Optimised parameter values.
+ """
+ if self.cost.problem.model is None:
+ warnings.warn(
+ "No model within problem class, can't check physical viability.",
+ UserWarning,
+ stacklevel=2,
+ )
+ return
+
+ if self.cost.problem.model.check_params(
+ inputs=x, allow_infeasible_solutions=False
+ ):
+ return
+ else:
+ warnings.warn(
+ "Optimised parameters are not physically viable! \nConsider retrying the optimisation"
+ " with a non-gradient-based optimiser and the option allow_infeasible_solutions=False",
+ UserWarning,
+ stacklevel=2,
+ )
+
+ def __str__(self) -> str:
+ """
+ A string representation of the OptimisationResult object.
+
+ Returns:
+ str: A formatted string containing optimisation result information.
+ """
+ return (
+ f"OptimisationResult:\n"
+ f" Initial parameters: {self.x0}\n"
+ f" Optimised parameters: {self.x}\n"
+ f" Final cost: {self.final_cost}\n"
+ f" Optimisation time: {self.time} seconds\n"
+ f" Number of iterations: {self.n_iterations}\n"
+ f" SciPy result available: {'Yes' if self.scipy_result else 'No'}"
+ )
diff --git a/pybop/optimisers/base_pints_optimiser.py b/pybop/optimisers/base_pints_optimiser.py
index a5140df0b..f03fc7a19 100644
--- a/pybop/optimisers/base_pints_optimiser.py
+++ b/pybop/optimisers/base_pints_optimiser.py
@@ -1,3 +1,5 @@
+from time import time
+
import numpy as np
from pints import PSO as PintsPSO
from pints import Adam as PintsAdam
@@ -10,7 +12,7 @@
from pints import SequentialEvaluator as PintsSequentialEvaluator
from pints import strfloat as PintsStrFloat
-from pybop import BaseOptimiser, Result
+from pybop import BaseOptimiser, OptimisationResult
class BasePintsOptimiser(BaseOptimiser):
@@ -19,6 +21,18 @@ class BasePintsOptimiser(BaseOptimiser):
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ pints_optimiser : class
+ The PINTS optimiser class to be used.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
@@ -28,30 +42,51 @@ class BasePintsOptimiser(BaseOptimiser):
bounds : dict
A dictionary with 'lower' and 'upper' keys containing arrays for lower and
upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to track guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
"""
- def __init__(self, cost, pints_optimiser, **optimiser_kwargs):
+ def __init__(
+ self,
+ cost,
+ pints_optimiser,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
# First set attributes to default values
self._boundaries = None
self._needs_sensitivities = None
self._use_f_guessed = None
- self._parallel = False
self._n_workers = 1
self._callback = None
- self._max_iterations = None
- self._min_iterations = 2
- self._unchanged_max_iterations = 15
+ self.set_parallel(parallel)
+ self.set_max_iterations(max_iterations)
+ self.set_min_iterations(min_iterations)
+ self._unchanged_max_iterations = max_unchanged_iterations
self._absolute_tolerance = 1e-5
self._relative_tolerance = 1e-2
self._max_evaluations = None
self._threshold = None
self._evaluations = None
self._iterations = None
+ self.option_methods = {
+ "use_f_guessed": self.set_f_guessed_tracking,
+ "max_evaluations": self.set_max_evaluations,
+ "threshold": self.set_threshold,
+ }
- # PyBOP doesn't currently support the PINTS transformation class
- self._transformation = None
-
- self.pints_optimiser = pints_optimiser
+ self.optimiser = pints_optimiser
super().__init__(cost, **optimiser_kwargs)
def _set_up_optimiser(self):
@@ -62,47 +97,26 @@ def _set_up_optimiser(self):
self._sanitise_inputs()
# Create an instance of the PINTS optimiser class
- if issubclass(self.pints_optimiser, PintsOptimiser):
- self.pints_optimiser = self.pints_optimiser(
+ if issubclass(self.optimiser, PintsOptimiser):
+ self.optimiser = self.optimiser(
self.x0, sigma0=self.sigma0, boundaries=self._boundaries
)
else:
- raise ValueError(
- "The pints_optimiser is not a recognised PINTS optimiser class."
- )
+ raise ValueError("The optimiser is not a recognised PINTS optimiser class.")
# Check if sensitivities are required
- self._needs_sensitivities = self.pints_optimiser.needs_sensitivities()
-
- # Apply default maxiter
- self.set_max_iterations()
+ self._needs_sensitivities = self.optimiser.needs_sensitivities()
# Apply additional options and remove them from options
- key_list = list(self.unset_options.keys())
- for key in key_list:
- if key == "use_f_guessed":
- self.set_f_guessed_tracking(self.unset_options.pop(key))
- elif key == "parallel":
- self.set_parallel(self.unset_options.pop(key))
- elif key == "max_iterations":
- self.set_max_iterations(self.unset_options.pop(key))
- elif key == "min_iterations":
- self.set_min_iterations(self.unset_options.pop(key))
- elif key == "max_unchanged_iterations":
- max_unchanged_kwargs = {"iterations": self.unset_options.pop(key)}
- if "absolute_tolerance" in self.unset_options.keys():
- max_unchanged_kwargs["absolute_tolerance"] = self.unset_options.pop(
- "absolute_tolerance"
- )
- if "relative_tolerance" in self.unset_options.keys():
- max_unchanged_kwargs["relative_tolerance"] = self.unset_options.pop(
- "relative_tolerance"
- )
- self.set_max_unchanged_iterations(**max_unchanged_kwargs)
- elif key == "max_evaluations":
- self.set_max_evaluations(self.unset_options.pop(key))
- elif key == "threshold":
- self.set_threshold(self.unset_options.pop(key))
+ max_unchanged_kwargs = {"iterations": self._unchanged_max_iterations}
+ for key, method in self.option_methods.items():
+ if key in self.unset_options:
+ method(self.unset_options.pop(key))
+
+ # Capture tolerance options
+ for tol_key in ["absolute_tolerance", "relative_tolerance"]:
+ if tol_key in self.unset_options:
+ max_unchanged_kwargs[tol_key] = self.unset_options.pop(tol_key)
def _sanitise_inputs(self):
"""
@@ -120,50 +134,29 @@ def _sanitise_inputs(self):
)
self.unset_options.pop("options")
- # Check for duplicate keywords
- expected_keys = ["max_iterations", "popsize"]
- alternative_keys = ["maxiter", "population_size"]
- for exp_key, alt_key in zip(expected_keys, alternative_keys):
- if alt_key in self.unset_options.keys():
- if exp_key in self.unset_options.keys():
- raise Exception(
- "The alternative {alt_key} option was passed in addition to the expected {exp_key} option."
- )
- else: # rename
- self.unset_options[exp_key] = self.unset_options.pop(alt_key)
-
# Convert bounds to PINTS boundaries
if self.bounds is not None:
- if issubclass(
- self.pints_optimiser,
- (PintsGradientDescent, PintsAdam, PintsNelderMead),
- ):
- print(f"NOTE: Boundaries ignored by {self.pints_optimiser}")
+ ignored_optimisers = (PintsGradientDescent, PintsAdam, PintsNelderMead)
+ if issubclass(self.optimiser, ignored_optimisers):
+ print(f"NOTE: Boundaries ignored by {self.optimiser}")
self.bounds = None
- elif issubclass(self.pints_optimiser, PintsPSO):
- if not all(
- np.isfinite(value)
- for sublist in self.bounds.values()
- for value in sublist
- ):
- raise ValueError(
- "Either all bounds or no bounds must be set for Pints PSO."
- )
else:
+ if issubclass(self.optimiser, PintsPSO):
+ if not all(
+ np.isfinite(value)
+ for sublist in self.bounds.values()
+ for value in sublist
+ ):
+ raise ValueError(
+ f"Either all bounds or no bounds must be set for {self.optimiser.__name__}."
+ )
self._boundaries = PintsRectangularBoundaries(
self.bounds["lower"], self.bounds["upper"]
)
def name(self):
- """
- Provides the name of the optimisation strategy.
-
- Returns
- -------
- str
- The name given by PINTS.
- """
- return self.pints_optimiser.name()
+ """Returns the name of the PINTS optimisation strategy."""
+ return self.optimiser.name()
def _run(self):
"""
@@ -178,6 +171,9 @@ def _run(self):
--------
This method is heavily based on the run method in the PINTS.OptimisationController class.
"""
+ # Timing
+ start_time = time()
+
# Check stopping criteria
has_stopping_criterion = False
has_stopping_criterion |= self._max_iterations is not None
@@ -195,15 +191,14 @@ def _run(self):
unchanged_iterations = 0
# Choose method to evaluate
- if self._needs_sensitivities:
-
- def f(x):
- L, dl = self.cost.evaluateS1(x)
- return (L, dl) if self.minimising else (-L, -dl)
- else:
-
- def f(x, grad=None):
- return self.cost(x, grad) if self.minimising else -self.cost(x, grad)
+ def fun(x):
+ if self._needs_sensitivities:
+ L, dl = self.cost(x, calculate_grad=True, apply_transform=True)
+ else:
+ L = self.cost(x, apply_transform=True)
+ dl = None
+ sign = -1 if not self.minimising else 1
+ return (sign * L, sign * dl) if dl is not None else sign * L
# Create evaluator object
if self._parallel:
@@ -212,11 +207,11 @@ def f(x, grad=None):
# For population based optimisers, don't use more workers than
# particles!
- if isinstance(self.pints_optimiser, PintsPopulationBasedOptimiser):
- n_workers = min(n_workers, self.pints_optimiser.population_size())
- evaluator = PintsParallelEvaluator(f, n_workers=n_workers)
+ if isinstance(self.optimiser, PintsPopulationBasedOptimiser):
+ n_workers = min(n_workers, self.optimiser.population_size())
+ evaluator = PintsParallelEvaluator(fun, n_workers=n_workers)
else:
- evaluator = PintsSequentialEvaluator(f)
+ evaluator = PintsSequentialEvaluator(fun)
# Keep track of current best and best-guess scores.
fb = fg = np.inf
@@ -232,17 +227,17 @@ def f(x, grad=None):
try:
while running:
# Ask optimiser for new points
- xs = self.pints_optimiser.ask()
+ xs = self.optimiser.ask()
# Evaluate points
fs = evaluator.evaluate(xs)
# Tell optimiser about function values
- self.pints_optimiser.tell(fs)
+ self.optimiser.tell(fs)
# Update the scores
- fb = self.pints_optimiser.f_best()
- fg = self.pints_optimiser.f_guessed()
+ fb = self.optimiser.f_best()
+ fg = self.optimiser.f_guessed()
fg_user = (fb, fg) if self.minimising else (-fb, -fg)
# Check for significant changes against the absolute and relative tolerance
@@ -258,9 +253,13 @@ def f(x, grad=None):
# Update counts
evaluations += len(fs)
iteration += 1
- self.log["x"].append(xs)
- self.log["x_best"].append(self.pints_optimiser.x_best())
- self.log["cost"].append(fb if self.minimising else -fb)
+ _fs = [x[0] for x in fs] if self._needs_sensitivities else fs
+ self.log_update(
+ x=xs,
+ x_best=self.optimiser.x_best(),
+ cost=_fs if self.minimising else [-x for x in _fs],
+ cost_best=fb if self.minimising else -fb,
+ )
# Check stopping criteria:
# Maximum number of iterations
@@ -310,7 +309,7 @@ def f(x, grad=None):
)
# Error in optimiser
- error = self.pints_optimiser.stop()
+ error = self.optimiser.stop()
if error:
running = False
halt_message = str(error)
@@ -326,14 +325,15 @@ def f(x, grad=None):
print("Current position:")
# Show current parameters
- x_user = self.pints_optimiser.x_guessed()
- if self._transformation is not None:
+ x_user = self.optimiser.x_guessed()
+ if self._transformation:
x_user = self._transformation.to_model(x_user)
for p in x_user:
print(PintsStrFloat(p))
print("-" * 40)
raise
+ total_time = time() - start_time
if self.verbose:
print("Halt: " + halt_message)
@@ -343,18 +343,23 @@ def f(x, grad=None):
# Get best parameters
if self._use_f_guessed:
- x = self.pints_optimiser.x_guessed()
- f = self.pints_optimiser.f_guessed()
+ x = self.optimiser.x_guessed()
+ f = self.optimiser.f_guessed()
else:
- x = self.pints_optimiser.x_best()
- f = self.pints_optimiser.f_best()
+ x = self.optimiser.x_best()
+ f = self.optimiser.f_best()
# Inverse transform search parameters
- if self._transformation is not None:
+ if self._transformation:
x = self._transformation.to_model(x)
- return Result(
- x=x, final_cost=f if self.minimising else -f, n_iterations=self._iterations
+ return OptimisationResult(
+ x=x,
+ cost=self.cost,
+ final_cost=f if self.minimising else -f,
+ n_iterations=self._iterations,
+ optim=self,
+ time=total_time,
)
def f_guessed_tracking(self):
diff --git a/pybop/optimisers/optimisation.py b/pybop/optimisers/optimisation.py
index aaa0ab3bf..59d5c8e1a 100644
--- a/pybop/optimisers/optimisation.py
+++ b/pybop/optimisers/optimisation.py
@@ -15,11 +15,11 @@ class Optimisation:
cost : pybop.BaseCost or pints.ErrorMeasure
An objective function to be optimized, which can be either a pybop.Cost
optimiser : pybop.Optimiser or subclass of pybop.BaseOptimiser, optional
- An optimiser from either the PINTS or PyBOP framework to perform the optimization (default: None).
+ An optimiser from either the PINTS or PyBOP framework to perform the optimisation (default: None).
sigma0 : float or sequence, optional
Initial step size or standard deviation for the optimiser (default: None).
verbose : bool, optional
- If True, the optimization progress is printed (default: False).
+ If True, the optimisation progress is printed (default: False).
physical_viability : bool, optional
If True, the feasibility of the optimised parameters is checked (default: True).
allow_infeasible_solutions : bool, optional
@@ -32,24 +32,24 @@ class Optimisation:
"""
def __init__(self, cost, optimiser=None, **optimiser_kwargs):
- self.__dict__["optimiser"] = (
+ self.__dict__["optim"] = (
None # Pre-define optimiser to avoid recursion during initialisation
)
if optimiser is None:
- self.optimiser = XNES(cost, **optimiser_kwargs)
+ self.optim = XNES(cost, **optimiser_kwargs)
elif issubclass(optimiser, BasePintsOptimiser):
- self.optimiser = optimiser(cost, **optimiser_kwargs)
+ self.optim = optimiser(cost, **optimiser_kwargs)
elif issubclass(optimiser, BaseSciPyOptimiser):
- self.optimiser = optimiser(cost, **optimiser_kwargs)
+ self.optim = optimiser(cost, **optimiser_kwargs)
else:
raise ValueError("Unknown optimiser type")
def run(self):
- return self.optimiser.run()
+ return self.optim.run()
def __getattr__(self, attr):
- if "optimiser" in self.__dict__ and hasattr(self.optimiser, attr):
- return getattr(self.optimiser, attr)
+ if "optim" in self.__dict__ and hasattr(self.optim, attr):
+ return getattr(self.optim, attr)
raise AttributeError(
f"'{self.__class__.__name__}' object has no attribute '{attr}'"
)
@@ -57,9 +57,9 @@ def __getattr__(self, attr):
def __setattr__(self, name: str, value) -> None:
if (
name in self.__dict__
- or "optimiser" not in self.__dict__
- or not hasattr(self.optimiser, name)
+ or "optim" not in self.__dict__
+ or not hasattr(self.optim, name)
):
object.__setattr__(self, name, value)
else:
- setattr(self.optimiser, name, value)
+ setattr(self.optim, name, value)
diff --git a/pybop/optimisers/pints_optimisers.py b/pybop/optimisers/pints_optimisers.py
index 4872973a8..d4d89a6a4 100644
--- a/pybop/optimisers/pints_optimisers.py
+++ b/pybop/optimisers/pints_optimisers.py
@@ -9,53 +9,115 @@
from pints import IRPropMin as PintsIRPropMin
from pints import NelderMead as PintsNelderMead
-from pybop import AdamWImpl, BasePintsOptimiser
+from pybop import AdamWImpl, BasePintsOptimiser, CuckooSearchImpl
class GradientDescent(BasePintsOptimiser):
"""
- Implements a simple gradient descent optimization algorithm.
+ Implements a simple gradient descent optimisation algorithm.
This class extends the gradient descent optimiser from the PINTS library, designed
- to minimize a scalar function of one or more variables. Note that this optimiser
- does not support boundary constraints.
+ to minimize a scalar function of one or more variables.
+
+ Note that this optimiser does not support boundary constraints.
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
Initial position from which optimisation will start.
sigma0 : float
- The learning rate / Initial step size (default: 0.02).
+ Initial step size or standard deviation depending on the optimiser.
+ bounds : dict
+ A dictionary with 'lower' and 'upper' keys containing arrays for lower and
+ upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pints.GradientDescent : The PINTS implementation this class is based on.
"""
- def __init__(self, cost, **optimiser_kwargs):
- if "sigma0" not in optimiser_kwargs.keys():
- optimiser_kwargs["sigma0"] = 0.02 # set default
- super().__init__(cost, PintsGradientDescent, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ PintsGradientDescent,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class Adam(BasePintsOptimiser):
"""
- Implements the Adam optimization algorithm.
+ Implements the Adam optimisation algorithm.
This class extends the Adam optimiser from the PINTS library, which combines
- ideas from RMSProp and Stochastic Gradient Descent with momentum. Note that
- this optimiser does not support boundary constraints.
+ ideas from RMSProp and Stochastic Gradient Descent with momentum.
+
+ Note that this optimiser does not support boundary constraints.
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
Initial position from which optimisation will start.
sigma0 : float
- Initial step size.
+ Initial step size or standard deviation depending on the optimiser.
+ bounds : dict
+ A dictionary with 'lower' and 'upper' keys containing arrays for lower and
+ upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
@@ -68,8 +130,24 @@ class Adam(BasePintsOptimiser):
stacklevel=2,
)
- def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, PintsAdam, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ PintsAdam,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class AdamW(BasePintsOptimiser):
@@ -81,27 +159,68 @@ class AdamW(BasePintsOptimiser):
robust and stable for training deep neural networks, particularly when
using larger learning rates.
+ Note that this optimiser does not support boundary constraints.
+
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
- Valid PyBOP option keys and their values, for example:
+ Valid PINTS option keys and their values, for example:
x0 : array_like
Initial position from which optimisation will start.
sigma0 : float
- Initial step size.
+ Initial step size or standard deviation depending on the optimiser.
+ bounds : dict
+ A dictionary with 'lower' and 'upper' keys containing arrays for lower and
+ upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pybop.AdamWImpl : The PyBOP implementation this class is based on.
"""
- def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, AdamWImpl, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ AdamWImpl,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class IRPropMin(BasePintsOptimiser):
"""
- Implements the iRpropMin optimization algorithm.
+ Implements the iRpropMin optimisation algorithm.
This class inherits from the PINTS IRPropMin class, which is an optimiser that
uses resilient backpropagation with weight-backtracking. It is designed to handle
@@ -109,57 +228,129 @@ class IRPropMin(BasePintsOptimiser):
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
Initial position from which optimisation will start.
sigma0 : float
- Initial step size.
+ Initial step size or standard deviation depending on the optimiser.
bounds : dict
A dictionary with 'lower' and 'upper' keys containing arrays for lower and
upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pints.IRPropMin : The PINTS implementation this class is based on.
"""
- def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, PintsIRPropMin, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ PintsIRPropMin,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class PSO(BasePintsOptimiser):
"""
- Implements a particle swarm optimization (PSO) algorithm.
+ Implements a particle swarm optimisation (PSO) algorithm.
This class extends the PSO optimiser from the PINTS library. PSO is a
- metaheuristic optimization method inspired by the social behavior of birds
- flocking or fish schooling, suitable for global optimization problems.
+ metaheuristic optimisation method inspired by the social behavior of birds
+ flocking or fish schooling, suitable for global optimisation problems.
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
- Initial positions of particles, which the optimisation will use.
+ Initial position from which optimisation will start.
sigma0 : float
- Spread of the initial particle positions.
+ Initial step size or standard deviation depending on the optimiser.
bounds : dict
A dictionary with 'lower' and 'upper' keys containing arrays for lower and
upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pints.PSO : The PINTS implementation this class is based on.
"""
- def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, PintsPSO, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ PintsPSO,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class SNES(BasePintsOptimiser):
"""
- Implements the stochastic natural evolution strategy (SNES) optimization algorithm.
+ Implements the stochastic natural evolution strategy (SNES) optimisation algorithm.
Inheriting from the PINTS SNES class, this optimiser is an evolutionary algorithm
that evolves a probability distribution on the parameter space, guiding the search
@@ -167,23 +358,59 @@ class SNES(BasePintsOptimiser):
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
Initial position from which optimisation will start.
sigma0 : float
- Initial standard deviation of the sampling distribution.
+ Initial step size or standard deviation depending on the optimiser.
bounds : dict
A dictionary with 'lower' and 'upper' keys containing arrays for lower and
upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pints.SNES : The PINTS implementation this class is based on.
"""
- def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, PintsSNES, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ PintsSNES,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class XNES(BasePintsOptimiser):
@@ -196,23 +423,59 @@ class XNES(BasePintsOptimiser):
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
- The initial parameter vector to optimise.
+ Initial position from which optimisation will start.
sigma0 : float
- Initial standard deviation of the sampling distribution.
+ Initial step size or standard deviation depending on the optimiser.
bounds : dict
A dictionary with 'lower' and 'upper' keys containing arrays for lower and
- upperbounds on the parameters. If ``None``, no bounds are enforced.
+ upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pints.XNES : PINTS implementation of XNES algorithm.
"""
- def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, PintsXNES, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ PintsXNES,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class NelderMead(BasePintsOptimiser):
@@ -223,55 +486,195 @@ class NelderMead(BasePintsOptimiser):
either one evaluation, or two sequential evaluations, so that it will not
typically benefit from parallelisation.
+ Note that this optimiser does not support boundary constraints.
+
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
- The initial parameter vector to optimise.
+ Initial position from which optimisation will start.
sigma0 : float
- Initial standard deviation of the sampling distribution.
- Does not appear to be used.
+ Initial step size or standard deviation depending on the optimiser.
+ bounds : dict
+ A dictionary with 'lower' and 'upper' keys containing arrays for lower and
+ upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pints.NelderMead : PINTS implementation of Nelder-Mead algorithm.
"""
- def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, PintsNelderMead, **optimiser_kwargs)
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ PintsNelderMead,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
class CMAES(BasePintsOptimiser):
"""
Adapter for the Covariance Matrix Adaptation Evolution Strategy (CMA-ES) optimiser in PINTS.
- CMA-ES is an evolutionary algorithm for difficult non-linear non-convex optimization problems.
+ CMA-ES is an evolutionary algorithm for difficult non-linear non-convex optimisation problems.
It adapts the covariance matrix of a multivariate normal distribution to capture the shape of
the cost landscape.
Parameters
----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
**optimiser_kwargs : optional
Valid PINTS option keys and their values, for example:
x0 : array_like
- The initial parameter vector to optimise.
+ Initial position from which optimisation will start.
sigma0 : float
- Initial standard deviation of the sampling distribution.
+ Initial step size or standard deviation depending on the optimiser.
bounds : dict
A dictionary with 'lower' and 'upper' keys containing arrays for lower and
- upper bounds on the parameters. If ``None``, no bounds are enforced.
+ upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
See Also
--------
pints.CMAES : PINTS implementation of CMA-ES algorithm.
"""
- def __init__(self, cost, **optimiser_kwargs):
- x0 = optimiser_kwargs.pop("x0", cost.x0)
- if x0 is not None and len(x0) == 1:
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ x0 = optimiser_kwargs.get("x0", cost.parameters.initial_value())
+ if len(x0) == 1 or len(cost.parameters) == 1:
raise ValueError(
"CMAES requires optimisation of >= 2 parameters at once. "
- + "Please choose another optimiser."
+ "Please choose another optimiser."
)
- super().__init__(cost, PintsCMAES, **optimiser_kwargs)
+ super().__init__(
+ cost,
+ PintsCMAES,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
+
+
+class CuckooSearch(BasePintsOptimiser):
+ """
+ Adapter for the Cuckoo Search optimiser in PyBOP.
+
+ Cuckoo Search is a population-based optimisation algorithm inspired by the brood parasitism of some cuckoo species.
+ It is designed to be simple, efficient, and robust, and is suitable for global optimisation problems.
+
+ Parameters
+ ----------
+ cost : callable
+ The cost function to be minimized.
+ max_iterations : int, optional
+ Maximum number of iterations for the optimisation.
+ min_iterations : int, optional (default=2)
+ Minimum number of iterations before termination.
+ max_unchanged_iterations : int, optional (default=15)
+ Maximum number of iterations without improvement before termination.
+ parallel : bool, optional (default=False)
+ Whether to run the optimisation in parallel.
+ **optimiser_kwargs : optional
+ Valid PINTS option keys and their values, for example:
+ x0 : array_like
+ Initial position from which optimisation will start.
+ sigma0 : float
+ Initial step size or standard deviation depending on the optimiser.
+ bounds : dict
+ A dictionary with 'lower' and 'upper' keys containing arrays for lower and
+ upper bounds on the parameters.
+ use_f_guessed : bool
+ Whether to return the guessed function values.
+ absolute_tolerance : float
+ Absolute tolerance for convergence checking.
+ relative_tolerance : float
+ Relative tolerance for convergence checking.
+ max_evaluations : int
+ Maximum number of function evaluations.
+ threshold : float
+ Threshold value for early termination.
+
+ See Also
+ --------
+ pybop.CuckooSearchImpl : PyBOP implementation of Cuckoo Search algorithm.
+ """
+
+ def __init__(
+ self,
+ cost,
+ max_iterations: int = None,
+ min_iterations: int = 2,
+ max_unchanged_iterations: int = 15,
+ parallel: bool = False,
+ **optimiser_kwargs,
+ ):
+ super().__init__(
+ cost,
+ CuckooSearchImpl,
+ max_iterations,
+ min_iterations,
+ max_unchanged_iterations,
+ parallel,
+ **optimiser_kwargs,
+ )
diff --git a/pybop/optimisers/scipy_optimisers.py b/pybop/optimisers/scipy_optimisers.py
index 843423042..064cf3f02 100644
--- a/pybop/optimisers/scipy_optimisers.py
+++ b/pybop/optimisers/scipy_optimisers.py
@@ -1,7 +1,11 @@
+import warnings
+from time import time
+from typing import Union
+
import numpy as np
-from scipy.optimize import OptimizeResult, differential_evolution, minimize
+from scipy.optimize import Bounds, OptimizeResult, differential_evolution, minimize
-from pybop import BaseOptimiser, Result
+from pybop import BaseOptimiser, OptimisationResult
class BaseSciPyOptimiser(BaseOptimiser):
@@ -19,8 +23,9 @@ class BaseSciPyOptimiser(BaseOptimiser):
"""
def __init__(self, cost, **optimiser_kwargs):
- super().__init__(cost, **optimiser_kwargs)
self.num_resamples = 40
+ self.key_mapping = {"max_iterations": "maxiter", "population_size": "popsize"}
+ super().__init__(cost, **optimiser_kwargs)
def _sanitise_inputs(self):
"""
@@ -38,75 +43,124 @@ def _sanitise_inputs(self):
)
self.unset_options.pop("options")
- # Check for duplicate keywords
- expected_keys = ["maxiter", "popsize"]
- alternative_keys = ["max_iterations", "population_size"]
- for exp_key, alt_key in zip(expected_keys, alternative_keys):
- if alt_key in self.unset_options.keys():
- if exp_key in self.unset_options.keys():
+ # Convert PyBOP keys to SciPy
+ for pybop_key, scipy_key in self.key_mapping.items():
+ if pybop_key in self.unset_options:
+ if scipy_key in self.unset_options:
raise Exception(
- "The alternative {alt_key} option was passed in addition to the expected {exp_key} option."
+ f"The alternative {pybop_key} option was passed in addition to the expected {scipy_key} option."
)
- else: # rename
- self.unset_options[exp_key] = self.unset_options.pop(alt_key)
+ # Rename the key
+ self.unset_options[scipy_key] = self.unset_options.pop(pybop_key)
# Convert bounds to SciPy format
if isinstance(self.bounds, dict):
- self._scipy_bounds = [
- (lower, upper)
- for lower, upper in zip(self.bounds["lower"], self.bounds["upper"])
- ]
- else:
+ self._scipy_bounds = Bounds(
+ self.bounds["lower"], self.bounds["upper"], True
+ )
+ elif isinstance(self.bounds, list):
+ lb, ub = zip(*self.bounds)
+ self._scipy_bounds = Bounds(lb, ub, True)
+ elif isinstance(self.bounds, Bounds) or self.bounds is None:
self._scipy_bounds = self.bounds
+ else:
+ raise TypeError(
+ "Bounds provided must be either type dict, list or SciPy.optimize.bounds object."
+ )
def _run(self):
"""
- Internal method to run the optimization using a PyBOP optimiser.
+ Internal method to run the optimisation using a PyBOP optimiser.
Returns
-------
result : pybop.Result
The result of the optimisation including the optimised parameter values and cost.
"""
+ # Run with timing
+ start_time = time()
result = self._run_optimiser()
-
- return Result(
- x=result.x,
- final_cost=self.cost(result.x),
- n_iterations=result.nit,
+ total_time = time() - start_time
+
+ try:
+ nit = result.nit
+ except AttributeError:
+ nit = -1
+
+ return OptimisationResult(
+ x=self._transformation.to_model(result.x)
+ if self._transformation
+ else result.x,
+ cost=self.cost,
+ final_cost=self.cost(result.x, apply_transform=True),
+ n_iterations=nit,
scipy_result=result,
+ optim=self,
+ time=total_time,
)
class SciPyMinimize(BaseSciPyOptimiser):
"""
- Adapts SciPy's minimize function for use as an optimization strategy.
+ Adapts SciPy's minimize function for use as an optimisation strategy.
- This class provides an interface to various scalar minimization algorithms implemented in SciPy,
- allowing fine-tuning of the optimization process through method selection and option configuration.
+ This class provides an interface to various scalar minimisation algorithms implemented in SciPy,
+ allowing fine-tuning of the optimisation process through method selection and option configuration.
Parameters
----------
**optimiser_kwargs : optional
- Valid SciPy Minimize option keys and their values, For example:
+ Valid SciPy Minimize option keys and their values:
x0 : array_like
Initial position from which optimisation will start.
- bounds : dict, sequence or scipy.optimize.Bounds
- Bounds for variables as supported by the selected method.
method : str
The optimisation method, options include:
'Nelder-Mead', 'Powell', 'CG', 'BFGS', 'Newton-CG', 'L-BFGS-B', 'TNC', 'COBYLA',
'SLSQP', 'trust-constr', 'dogleg', 'trust-ncg', 'trust-exact', 'trust-krylov'.
+ jac : {callable, '2-point', '3-point', 'cs', bool}, optional
+ Method for computing the gradient vector.
+ hess : {callable, '2-point', '3-point', 'cs', HessianUpdateStrategy}, optional
+ Method for computing the Hessian matrix.
+ hessp : callable, optional
+ Hessian of objective function times an arbitrary vector p.
+ bounds : sequence or scipy.optimize.Bounds, optional
+ Bounds on variables for L-BFGS-B, TNC, SLSQP, trust-constr methods.
+ constraints : {Constraint, dict} or List of {Constraint, dict}, optional
+ Constraints definition for constrained optimisation.
+ tol : float, optional
+ Tolerance for termination.
+ options : dict, optional
+ Method-specific options. Common options include:
+ maxiter : int
+ Maximum number of iterations.
+ disp : bool
+ Set to True to print convergence messages.
+ ftol : float
+ Function tolerance for termination.
+ gtol : float
+ Gradient tolerance for termination.
+ eps : float
+ Step size for finite difference approximation.
+ maxfev : int
+ Maximum number of function evaluations.
+ maxcor : int
+ Maximum number of variable metric corrections (L-BFGS-B).
See Also
--------
scipy.optimize.minimize : The SciPy method this class is based on.
+
+ Notes
+ -----
+ Different optimisation methods may support different options. Consult SciPy's
+ documentation for method-specific options and constraints.
"""
def __init__(self, cost, **optimiser_kwargs):
optimiser_options = dict(method="Nelder-Mead", jac=False)
optimiser_options.update(**optimiser_kwargs)
super().__init__(cost, **optimiser_options)
+ self._cost0 = 1.0
def _set_up_optimiser(self):
"""
@@ -141,6 +195,24 @@ def _set_up_optimiser(self):
# Nest this option within an options dictionary for SciPy minimize
self._options["options"]["maxiter"] = self.unset_options.pop(key)
+ def cost_wrapper(self, x):
+ """
+ Scale the cost function, preserving the sign convention, and eliminate nan values
+ """
+ if not self._options["jac"]:
+ cost = self.cost(x, apply_transform=True)
+ self.log_update(x=[x], cost=cost if self.minimising else -cost)
+ scaled_cost = cost / self._cost0
+ if np.isinf(scaled_cost):
+ self.inf_count += 1
+ scaled_cost = 1 + 0.9**self.inf_count # for fake finite gradient
+ return scaled_cost if self.minimising else -scaled_cost
+
+ L, dl = self.cost(x, calculate_grad=True, apply_transform=True)
+ self.log_update(x=[x], cost=L if self.minimising else -L)
+ scaled_L = L / self._cost0
+ return (scaled_L, dl) if self.minimising else (-scaled_L, -dl)
+
def _run_optimiser(self):
"""
Executes the optimisation process using SciPy's minimize function.
@@ -150,20 +222,49 @@ def _run_optimiser(self):
result : scipy.optimize.OptimizeResult
The result of the optimisation including the optimised parameter values and cost.
"""
+ self.inf_count = 0
# Add callback storing history of parameter values
- def callback(intermediate_result: OptimizeResult):
- self.log["x_best"].append(intermediate_result.x)
- self.log["cost"].append(
- intermediate_result.fun if self.minimising else -intermediate_result.fun
+ def base_callback(intermediate_result: Union[OptimizeResult, np.ndarray]):
+ """
+ Log intermediate optimisation solutions. Depending on the
+ optimisation algorithm, intermediate_result may be either
+ a OptimizeResult or an array of parameter values, with a
+ try/except ensuring both cases are handled correctly.
+ """
+ if isinstance(intermediate_result, OptimizeResult):
+ x_best = intermediate_result.x
+ cost_best = intermediate_result.fun
+ else:
+ x_best = intermediate_result
+ cost_best = self.cost(x_best, apply_transform=True)
+
+ cost_log = (-1 if not self.minimising else 1) * cost_best * self._cost0
+ self.log_update(
+ x_best=x_best,
+ cost_best=cost_log,
)
+ callback = (
+ base_callback
+ if self._options["method"] != "trust-constr"
+ else lambda x, intermediate_result: base_callback(intermediate_result)
+ )
+
# Compute the absolute initial cost and resample if required
- self._cost0 = np.abs(self.cost(self.x0))
+ self._cost0 = np.abs(self.cost(self.x0, apply_transform=True))
if np.isinf(self._cost0):
- for i in range(1, self.num_resamples):
- x0 = self.cost.parameters.rvs(1)
- self._cost0 = np.abs(self.cost(x0))
+ for _i in range(1, self.num_resamples):
+ try:
+ self.x0 = self.parameters.rvs(apply_transform=True)
+ except AttributeError:
+ warnings.warn(
+ "Parameter does not have a prior distribution. Stopping resampling.",
+ UserWarning,
+ stacklevel=2,
+ )
+ break
+ self._cost0 = np.abs(self.cost(self.x0, apply_transform=True))
if not np.isinf(self._cost0):
break
if np.isinf(self._cost0):
@@ -171,27 +272,8 @@ def callback(intermediate_result: OptimizeResult):
"The initial parameter values return an infinite cost."
)
- # Scale the cost function, preserving the sign convention, and eliminate nan values
- self.inf_count = 0
-
- if not self._options["jac"]:
-
- def cost_wrapper(x):
- self.log["x"].append([x])
- cost = self.cost(x) / self._cost0
- if np.isinf(cost):
- self.inf_count += 1
- cost = 1 + 0.9**self.inf_count # for fake finite gradient
- return cost if self.minimising else -cost
- elif self._options["jac"] is True:
-
- def cost_wrapper(x):
- self.log["x"].append([x])
- L, dl = self.cost.evaluateS1(x)
- return L, dl if self.minimising else -L, -dl
-
return minimize(
- cost_wrapper,
+ self.cost_wrapper,
self.x0,
bounds=self._scipy_bounds,
callback=callback,
@@ -199,40 +281,85 @@ def cost_wrapper(x):
)
def name(self):
- """
- Provides the name of the optimization strategy.
-
- Returns
- -------
- str
- The name 'SciPyMinimize'.
- """
+ """Provides the name of the optimisation strategy."""
return "SciPyMinimize"
class SciPyDifferentialEvolution(BaseSciPyOptimiser):
"""
- Adapts SciPy's differential_evolution function for global optimization.
+ Adapts SciPy's differential_evolution function for global optimisation.
- This class provides a global optimization strategy based on differential evolution, useful for
+ This class provides a global optimisation strategy based on differential evolution, useful for
problems involving continuous parameters and potentially multiple local minima.
Parameters
----------
bounds : dict, sequence or scipy.optimize.Bounds
Bounds for variables. Must be provided as it is essential for differential evolution.
+ Each element is a tuple (min, max) for the corresponding variable.
**optimiser_kwargs : optional
- Valid SciPy option keys and their values, for example:
- strategy : str
- The differential evolution strategy to use.
- maxiter : int
- Maximum number of iterations to perform.
- popsize : int
- The number of individuals in the population.
+ Valid SciPy differential_evolution options:
+ strategy : str, optional
+ The differential evolution strategy to use. Should be one of:
+ - 'best1bin'
+ - 'best1exp'
+ - 'rand1exp'
+ - 'randtobest1exp'
+ - 'currenttobest1exp'
+ - 'best2exp'
+ - 'rand2exp'
+ - 'randtobest1bin'
+ - 'currenttobest1bin'
+ - 'best2bin'
+ - 'rand2bin'
+ - 'rand1bin'
+ Default is 'best1bin'.
+ maxiter : int, optional
+ Maximum number of generations. Default is 1000.
+ popsize : int, optional
+ Multiplier for setting the total population size. The population has
+ popsize * len(x) individuals. Default is 15.
+ tol : float, optional
+ Relative tolerance for convergence. Default is 0.01.
+ mutation : float or tuple(float, float), optional
+ The mutation constant. If specified as a float, should be in [0, 2].
+ If specified as a tuple (min, max), dithering is used. Default is (0.5, 1.0).
+ recombination : float, optional
+ The recombination constant, should be in [0, 1]. Default is 0.7.
+ seed : int, optional
+ Random seed for reproducibility.
+ disp : bool, optional
+ Display status messages. Default is False.
+ callback : callable, optional
+ Called after each iteration with the current result as argument.
+ polish : bool, optional
+ If True, performs a local optimisation on the solution. Default is True.
+ init : str or array-like, optional
+ Specify initial population. Can be 'latinhypercube', 'random',
+ or an array of shape (M, len(x)).
+ atol : float, optional
+ Absolute tolerance for convergence. Default is 0.
+ updating : {'immediate', 'deferred'}, optional
+ If 'immediate', best solution vector is continuously updated within
+ a single generation. Default is 'immediate'.
+ workers : int or map-like callable, optional
+ If workers is an int the population is subdivided into workers
+ sections and evaluated in parallel. Default is 1.
+ constraints : {NonlinearConstraint, LinearConstraint, Bounds}, optional
+ Constraints on the solver.
See Also
--------
scipy.optimize.differential_evolution : The SciPy method this class is based on.
+
+ Notes
+ -----
+ Differential Evolution is a stochastic population based method that is useful for
+ global optimisation problems. At each pass through the population the algorithm mutates
+ each candidate solution by mixing with other candidate solutions to create a trial
+ candidate. The fitness of all candidates is then evaluated and for each candidate if
+ the trial candidate is an improvement, it takes its place in the population for the next
+ iteration.
"""
def __init__(self, cost, **optimiser_kwargs):
@@ -251,9 +378,8 @@ def _set_up_optimiser(self):
if self._scipy_bounds is None:
raise ValueError("Bounds must be specified for differential_evolution.")
else:
- if not all(
- np.isfinite(value) for pair in self._scipy_bounds for value in pair
- ):
+ bnds = self._scipy_bounds
+ if not (np.isfinite(bnds.lb).all() and np.isfinite(bnds.ub).all()):
raise ValueError("Bounds must be specified for differential_evolution.")
# Apply default maxiter and tolerance
@@ -302,14 +428,18 @@ def _run_optimiser(self):
# Add callback storing history of parameter values
def callback(intermediate_result: OptimizeResult):
- self.log["x_best"].append(intermediate_result.x)
- self.log["cost"].append(
+ cost = (
intermediate_result.fun if self.minimising else -intermediate_result.fun
)
+ self.log_update(x_best=intermediate_result.x, cost_best=cost)
def cost_wrapper(x):
- self.log["x"].append([x])
- return self.cost(x) if self.minimising else -self.cost(x)
+ if self.minimising:
+ cost = self.cost(x, apply_transform=True)
+ else:
+ cost = -self.cost(x, apply_transform=True)
+ self.log_update(x=[x], cost=cost)
+ return cost
return differential_evolution(
cost_wrapper,
@@ -319,12 +449,5 @@ def cost_wrapper(x):
)
def name(self):
- """
- Provides the name of the optimization strategy.
-
- Returns
- -------
- str
- The name 'SciPyDifferentialEvolution'.
- """
+ """Provides the name of the optimisation strategy."""
return "SciPyDifferentialEvolution"
diff --git a/pybop/parameters/parameter.py b/pybop/parameters/parameter.py
index 76754847d..b683c34d4 100644
--- a/pybop/parameters/parameter.py
+++ b/pybop/parameters/parameter.py
@@ -1,8 +1,14 @@
+import warnings
from collections import OrderedDict
-from typing import Dict, List
+from typing import Optional
import numpy as np
+from pybop import ComposedTransformation, IdentityTransformation
+from pybop._utils import is_numeric
+
+Inputs = dict[str, float]
+
class Parameter:
"""
@@ -32,7 +38,13 @@ class Parameter:
"""
def __init__(
- self, name, initial_value=None, true_value=None, prior=None, bounds=None
+ self,
+ name,
+ initial_value=None,
+ true_value=None,
+ prior=None,
+ bounds=None,
+ transformation=None,
):
"""
Construct the parameter class with a name, initial value, prior, and bounds.
@@ -42,10 +54,15 @@ def __init__(
self.true_value = true_value
self.initial_value = initial_value
self.value = initial_value
+ self.transformation = transformation
+ self.applied_prior_bounds = False
+ self.bounds = None
+ self.lower_bounds = None
+ self.upper_bounds = None
self.set_bounds(bounds)
self.margin = 1e-4
- def rvs(self, n_samples, random_state=None):
+ def rvs(self, n_samples: int = 1, random_state=None, apply_transform: bool = False):
"""
Draw random samples from the parameter's prior distribution.
@@ -55,7 +72,11 @@ def rvs(self, n_samples, random_state=None):
Parameters
----------
n_samples : int
- The number of samples to draw.
+ The number of samples to draw (default: 1).
+ random_state : int, optional
+ The random state seed for reproducibility (default: None).
+ apply_transform : bool
+ If True, the transformation is applied to the output (default: False).
Returns
-------
@@ -71,9 +92,15 @@ def rvs(self, n_samples, random_state=None):
samples, self.lower_bound + offset, self.upper_bound - offset
)
+ if apply_transform and self.transformation is not None:
+ samples = list(samples)
+ for i, x in enumerate(samples):
+ samples[i] = float(self.transformation.to_search(x))
+ return np.asarray(samples)
+
return samples
- def update(self, value=None, initial_value=None):
+ def update(self, initial_value=None, value=None):
"""
Update the parameter's current value.
@@ -82,12 +109,12 @@ def update(self, value=None, initial_value=None):
value : float
The new value to be assigned to the parameter.
"""
- if value is not None:
- self.value = value
- elif initial_value is not None:
+ if initial_value is not None:
self.initial_value = initial_value
self.value = initial_value
- else:
+ if value is not None:
+ self.value = value
+ if initial_value is None and value is None:
raise ValueError("No value provided to update parameter")
def __repr__(self):
@@ -123,15 +150,21 @@ def set_margin(self, margin):
self.margin = margin
- def set_bounds(self, bounds=None):
+ def set_bounds(self, bounds=None, boundary_multiplier=15):
"""
- Set the upper and lower bounds.
+ Set the upper and lower bounds and applies default values
+ from the prior if no bounds are provided. The default values
+ are calculated using the boundary_multiplier and the parameters
+ prior sigma value.
Parameters
----------
bounds : tuple, optional
A tuple defining the lower and upper bounds for the parameter.
Defaults to None.
+ boundary_multiplier : float, optional
+ Used to define the bounds when no bounds are passed but the parameter has
+ a prior distribution (default: 15).
Raises
------
@@ -145,8 +178,41 @@ def set_bounds(self, bounds=None):
else:
self.lower_bound = bounds[0]
self.upper_bound = bounds[1]
+ elif self.prior is not None:
+ self.applied_prior_bounds = True
+ self.lower_bound = self.prior.mean - boundary_multiplier * self.prior.sigma
+ self.upper_bound = self.prior.mean + boundary_multiplier * self.prior.sigma
+ print("Default bounds applied based on prior distribution.")
+ else:
+ self.bounds = None
+ return
- self.bounds = bounds
+ self.bounds = [self.lower_bound, self.upper_bound]
+
+ def get_initial_value(self, apply_transform: bool = False) -> float:
+ """
+ Return the initial value of each parameter.
+
+ Parameters
+ ----------
+ apply_transform : bool
+ If True, the transformation is applied to the output (default: False).
+ """
+ if self.initial_value is None:
+ if self.prior is not None:
+ sample = self.rvs(1)[0]
+ self.update(initial_value=sample)
+ else:
+ warnings.warn(
+ "Initial value and prior are None, proceeding without an initial value.",
+ UserWarning,
+ stacklevel=2,
+ )
+
+ if apply_transform and self.transformation is not None:
+ return float(self.transformation.to_search(self.initial_value))
+
+ return self.initial_value
class Parameters:
@@ -166,6 +232,7 @@ def __init__(self, *args):
self.param = OrderedDict()
for param in args:
self.add(param)
+ self.initial_value()
def __getitem__(self, key: str) -> Parameter:
"""
@@ -180,13 +247,21 @@ def __getitem__(self, key: str) -> Parameter:
-------
pybop.Parameter
The Parameter object.
+
+ Raises
+ ------
+ ValueError
+ The key must be the name of one of the parameters.
"""
+ if key not in self.param.keys():
+ raise ValueError(f"The key {key} is not the name of a parameter.")
+
return self.param[key]
def __len__(self) -> int:
return len(self.param)
- def keys(self) -> List:
+ def keys(self) -> list:
"""
A list of parameter names
"""
@@ -212,7 +287,7 @@ def add(self, parameter):
if parameter.name in self.param.keys():
raise ValueError(
f"There is already a parameter with the name {parameter.name} "
- + "in the Parameters object. Please remove the duplicate entry."
+ "in the Parameters object. Please remove the duplicate entry."
)
self.param[parameter.name] = parameter
elif isinstance(parameter, dict):
@@ -222,7 +297,7 @@ def add(self, parameter):
if name in self.param.keys():
raise ValueError(
f"There is already a parameter with the name {name} "
- + "in the Parameters object. Please remove the duplicate entry."
+ "in the Parameters object. Please remove the duplicate entry."
)
self.param[name] = Parameter(**parameter)
else:
@@ -240,34 +315,66 @@ def remove(self, parameter_name):
# Remove the parameter
self.param.pop(parameter_name)
- def get_bounds(self) -> Dict:
+ def join(self, parameters=None):
+ """
+ Join two Parameters objects into the first by copying across each Parameter.
+
+ Parameters
+ ----------
+ parameters : pybop.Parameters
+ """
+ for param in parameters:
+ if param not in self.param.values():
+ self.add(param)
+ else:
+ print(f"Discarding duplicate {param.name}.")
+
+ def get_bounds(self, apply_transform: bool = False) -> dict:
"""
Get bounds, for either all or no parameters.
+
+ Parameters
+ ----------
+ apply_transform : bool
+ If True, the transformation is applied to the output (default: False).
"""
- all_unbounded = True # assumption
bounds = {"lower": [], "upper": []}
-
for param in self.param.values():
- if param.bounds is not None:
- bounds["lower"].append(param.bounds[0])
- bounds["upper"].append(param.bounds[1])
- all_unbounded = False
+ if param.bounds is None:
+ lower, upper = -np.inf, np.inf
else:
- bounds["lower"].append(-np.inf)
- bounds["upper"].append(np.inf)
- if all_unbounded:
- bounds = None
+ lower, upper = param.bounds
+ if apply_transform and param.transformation is not None:
+ lower = float(param.transformation.to_search(param.bounds[0]))
+ upper = float(param.transformation.to_search(param.bounds[1]))
+ if np.isnan(lower) or np.isnan(upper):
+ raise ValueError(
+ "Transformed bounds resulted in NaN values.\n"
+ "If you've not applied bounds, this is due to the defaults applied from the prior distribution,\n"
+ "consider bounding the parameters to avoid this error."
+ )
+
+ bounds["lower"].append(lower)
+ bounds["upper"].append(upper)
return bounds
- def update(self, values):
+ def update(self, initial_values=None, values=None, bounds=None):
"""
Set value of each parameter.
"""
for i, param in enumerate(self.param.values()):
- param.update(value=values[i])
-
- def rvs(self, n_samples: int) -> List:
+ if initial_values is not None:
+ param.update(initial_value=initial_values[i])
+ if values is not None:
+ param.update(value=values[i])
+ if bounds is not None:
+ if isinstance(bounds, dict):
+ param.set_bounds(bounds=[bounds["lower"][i], bounds["upper"][i]])
+ else:
+ param.set_bounds(bounds=bounds[i])
+
+ def rvs(self, n_samples: int = 1, apply_transform: bool = False) -> np.ndarray:
"""
Draw random samples from each parameter's prior distribution.
@@ -277,7 +384,9 @@ def rvs(self, n_samples: int) -> List:
Parameters
----------
n_samples : int
- The number of samples to draw.
+ The number of samples to draw (default: 1).
+ apply_transform : bool
+ If True, the transformation is applied to the output (default: False).
Returns
-------
@@ -287,51 +396,86 @@ def rvs(self, n_samples: int) -> List:
all_samples = []
for param in self.param.values():
- samples = param.rvs(n_samples)
-
- # Constrain samples to be within bounds
- if param.bounds is not None:
- offset = param.margin * (param.upper_bound - param.lower_bound)
- samples = np.clip(
- samples, param.lower_bound + offset, param.upper_bound - offset
- )
-
+ samples = param.rvs(n_samples, apply_transform=apply_transform)
all_samples.append(samples)
- return all_samples
+ return np.concatenate(all_samples)
- def get_sigma0(self) -> List:
+ def get_sigma0(self, apply_transform: bool = False) -> list:
"""
Get the standard deviation, for either all or no parameters.
+
+ Parameters
+ ----------
+ apply_transform : bool
+ If True, the transformation is applied to the output (default: False).
"""
all_have_sigma = True # assumption
sigma0 = []
for param in self.param.values():
if hasattr(param.prior, "sigma"):
- sigma0.append(param.prior.sigma)
+ if apply_transform and param.transformation is not None:
+ sigma0.append(
+ np.ndarray.item(
+ param.transformation.convert_standard_deviation(
+ param.prior.sigma,
+ param.get_initial_value(apply_transform=True),
+ )
+ )
+ )
+ else:
+ sigma0.append(param.prior.sigma)
else:
all_have_sigma = False
if not all_have_sigma:
sigma0 = None
-
return sigma0
- def initial_value(self) -> List:
+ def priors(self) -> list:
+ """
+ Return the prior distribution of each parameter.
+ """
+ return [param.prior for param in self.param.values()]
+
+ def initial_value(self, apply_transform: bool = False) -> np.ndarray:
"""
Return the initial value of each parameter.
+
+ Parameters
+ ----------
+ apply_transform : bool
+ If True, the transformation is applied to the output (default: False).
"""
initial_values = []
for param in self.param.values():
- if param.initial_value is None:
- initial_value = param.rvs(1)
- param.update(initial_value=initial_value[0])
- initial_values.append(param.initial_value)
+ initial_value = param.get_initial_value(apply_transform=apply_transform)
+ initial_values.append(initial_value)
- return initial_values
+ return np.asarray(initial_values)
- def current_value(self) -> List:
+ def reset_initial_value(self, apply_transform: bool = False) -> np.ndarray:
+ """
+ Reset and return the initial value of each parameter.
+
+ Parameters
+ ----------
+ apply_transform : bool
+ If True, the transformation is applied to the output (default: False).
+ """
+ initial_values = []
+
+ for param in self.param.values():
+ initial_value = param.get_initial_value(apply_transform=apply_transform)
+ if initial_value is not None:
+ # Reset the current value as well
+ param.update(value=param.get_initial_value())
+ initial_values.append(initial_value)
+
+ return np.asarray(initial_values)
+
+ def current_value(self) -> np.ndarray:
"""
Return the current value of each parameter.
"""
@@ -340,9 +484,9 @@ def current_value(self) -> List:
for param in self.param.values():
current_values.append(param.value)
- return current_values
+ return np.asarray(current_values)
- def true_value(self) -> List:
+ def true_value(self) -> np.ndarray:
"""
Return the true value of each parameter.
"""
@@ -351,9 +495,33 @@ def true_value(self) -> List:
for param in self.param.values():
true_values.append(param.true_value)
- return true_values
+ return np.asarray(true_values)
- def get_bounds_for_plotly(self):
+ def get_transformations(self):
+ """
+ Get the transformations for each parameter.
+ """
+ transformations = []
+
+ for param in self.param.values():
+ transformations.append(param.transformation)
+
+ return transformations
+
+ def construct_transformation(self):
+ """
+ Create a ComposedTransformation object from the individual parameter transformations.
+ """
+ transformations = self.get_transformations()
+ if not transformations or all(t is None for t in transformations):
+ return None
+
+ valid_transformations = [
+ t if t is not None else IdentityTransformation() for t in transformations
+ ]
+ return ComposedTransformation(valid_transformations)
+
+ def get_bounds_for_plotly(self, apply_transform: bool = False) -> np.ndarray:
"""
Retrieve parameter bounds in the format expected by Plotly.
@@ -362,17 +530,78 @@ def get_bounds_for_plotly(self):
bounds : numpy.ndarray
An array of shape (n_parameters, 2) containing the bounds for each parameter.
"""
- bounds = np.empty((len(self), 2))
+ for param in self.param.values():
+ if param.applied_prior_bounds:
+ warnings.warn(
+ "Bounds were created from prior distributions. "
+ "Please provide bounds for better plot results.",
+ UserWarning,
+ stacklevel=2,
+ )
- for i, param in enumerate(self.param.values()):
- if param.bounds is not None:
- bounds[i] = param.bounds
- else:
- raise ValueError("All parameters require bounds for plotting.")
+ bounds = self.get_bounds(apply_transform=apply_transform)
- return bounds
+ # Validate that all parameters have bounds
+ if bounds is None or not np.isfinite(list(bounds.values())).all():
+ raise ValueError("All parameters require bounds for plot.")
+
+ return np.asarray(list(bounds.values())).T
+
+ def as_dict(self, values=None) -> dict:
+ """
+ Parameters
+ ----------
+ values : list or str, optional
+ A list of parameter values or one of the strings "initial" or "true" which can be used
+ to obtain a dictionary of parameters.
- def as_dict(self, values=None) -> Dict:
+ Returns
+ -------
+ Inputs
+ A parameters dictionary.
+ """
if values is None:
values = self.current_value()
+ elif isinstance(values, str):
+ if values == "initial":
+ values = self.initial_value()
+ elif values == "true":
+ values = self.true_value()
return {key: values[i] for i, key in enumerate(self.param.keys())}
+
+ def verify(self, inputs: Optional[Inputs] = None):
+ """
+ Verify that the inputs are an Inputs dictionary or numeric values
+ which can be used to construct an Inputs dictionary
+
+ Parameters
+ ----------
+ inputs : Inputs or numeric
+ """
+ if inputs is None or isinstance(inputs, dict):
+ return inputs
+ if isinstance(inputs, np.ndarray) and inputs.ndim == 0:
+ inputs = inputs[np.newaxis]
+ if (isinstance(inputs, list) and all(is_numeric(x) for x in inputs)) or all(
+ is_numeric(x) for x in list(inputs)
+ ):
+ return self.as_dict(inputs)
+ else:
+ raise TypeError(
+ f"Inputs must be a dictionary or numeric. Received {type(inputs)}"
+ )
+
+ def __repr__(self):
+ """
+ Return a string representation of the Parameters instance.
+
+ Returns
+ -------
+ str
+ A string including the number of parameters and a summary of each parameter.
+ """
+ param_summary = "\n".join(
+ f" {name}: prior= {param.prior}, value={param.value}, bounds={param.bounds}"
+ for name, param in self.param.items()
+ )
+ return f"Parameters({len(self)}):\n{param_summary}"
diff --git a/pybop/parameters/parameter_set.py b/pybop/parameters/parameter_set.py
index a1ab63cd3..4c4e53471 100644
--- a/pybop/parameters/parameter_set.py
+++ b/pybop/parameters/parameter_set.py
@@ -1,7 +1,18 @@
import json
import types
+from numbers import Number
+from typing import Union
-from pybamm import ParameterValues, parameter_sets
+import numpy as np
+from pybamm import (
+ FunctionParameter,
+ LithiumIonParameters,
+ Parameter,
+ ParameterValues,
+ Scalar,
+ Symbol,
+ parameter_sets,
+)
class ParameterSet:
@@ -34,6 +45,39 @@ def __setitem__(self, key, value):
def __getitem__(self, key):
return self.params[key]
+ @staticmethod
+ def evaluate_symbol(symbol: Union[Symbol, Number], params: dict):
+ """
+ Evaluate a parameter in the parameter set.
+
+ Parameters
+ ----------
+ symbol : pybamm.Symbol or Number
+ The parameter to evaluate.
+
+ Returns
+ -------
+ float
+ The value of the parameter.
+ """
+ if isinstance(symbol, (Number, np.float64)):
+ return symbol
+ if isinstance(symbol, Scalar):
+ return symbol.value
+ if isinstance(symbol, (Parameter, FunctionParameter)):
+ return ParameterSet.evaluate_symbol(params[symbol.name], params)
+ new_children = [
+ Scalar(ParameterSet.evaluate_symbol(child, params))
+ for child in symbol.children
+ ]
+ return symbol.create_copy(new_children).evaluate()
+
+ def keys(self) -> list:
+ """
+ A list of parameter names
+ """
+ return list(self.params.keys())
+
def import_parameters(self, json_path=None):
"""
Imports parameters from a JSON file specified by the `json_path` attribute.
@@ -60,7 +104,7 @@ def import_parameters(self, json_path=None):
# Read JSON file
if not self.params and self.json_path:
- with open(self.json_path, "r") as file:
+ with open(self.json_path) as file:
self.params = json.load(file)
else:
raise ValueError(
@@ -132,7 +176,7 @@ def export_parameters(self, output_json_path, fit_params=None):
# Update parameter set
if fit_params is not None:
- for i, param in enumerate(fit_params):
+ for _i, param in enumerate(fit_params):
exportable_params.update({param.name: param.value})
# Replace non-serializable values
@@ -167,7 +211,7 @@ def is_json_serializable(self, value):
return False
@classmethod
- def pybamm(cls, name):
+ def pybamm(cls, name, formation_concentrations=False):
"""
Retrieves a PyBaMM parameter set by name.
@@ -175,6 +219,8 @@ def pybamm(cls, name):
----------
name : str
The name of the PyBaMM parameter set to retrieve.
+ set_formation_concentrations : bool, optional
+ If True, re-calculates the initial concentrations of lithium in the active material (default: False).
Returns
-------
@@ -187,4 +233,59 @@ def pybamm(cls, name):
if name not in list(parameter_sets):
raise ValueError(msg)
- return ParameterValues(name).copy()
+ parameter_set = ParameterValues(name).copy()
+
+ if formation_concentrations:
+ set_formation_concentrations(parameter_set)
+
+ return parameter_set
+
+
+def set_formation_concentrations(parameter_set):
+ """
+ Compute the concentration of lithium in the positive electrode assuming that
+ all lithium in the active material originated from the positive electrode.
+
+ Only perform the calculation if an initial concentration exists for both
+ electrodes, i.e. it is not a half cell.
+
+ Parameters
+ ----------
+ parameter_set : pybamm.ParameterValues
+ A PyBaMM parameter set containing standard lithium ion parameters.
+ """
+ if (
+ all(
+ key in parameter_set.keys()
+ for key in [
+ "Initial concentration in negative electrode [mol.m-3]",
+ "Initial concentration in positive electrode [mol.m-3]",
+ ]
+ )
+ and parameter_set["Initial concentration in negative electrode [mol.m-3]"] > 0
+ ):
+ # Obtain the total amount of lithium in the active material
+ Q_Li_particles_init = parameter_set.evaluate(
+ LithiumIonParameters().Q_Li_particles_init
+ )
+
+ # Convert this total amount to a concentration in the positive electrode
+ c_init = (
+ Q_Li_particles_init
+ * 3600
+ / (
+ parameter_set["Positive electrode active material volume fraction"]
+ * parameter_set["Positive electrode thickness [m]"]
+ * parameter_set["Electrode height [m]"]
+ * parameter_set["Electrode width [m]"]
+ * parameter_set["Faraday constant [C.mol-1]"]
+ )
+ )
+
+ # Update the initial lithium concentrations
+ parameter_set.update(
+ {"Initial concentration in negative electrode [mol.m-3]": 0}
+ )
+ parameter_set.update(
+ {"Initial concentration in positive electrode [mol.m-3]": c_init}
+ )
diff --git a/pybop/parameters/priors.py b/pybop/parameters/priors.py
index 10472e17f..5c40c42c1 100644
--- a/pybop/parameters/priors.py
+++ b/pybop/parameters/priors.py
@@ -1,3 +1,5 @@
+from typing import Union
+
import numpy as np
import scipy.stats as stats
@@ -56,6 +58,38 @@ def logpdf(self, x):
"""
return self.prior.logpdf(x, loc=self.loc, scale=self.scale)
+ def icdf(self, q):
+ """
+ Calculates the inverse cumulative distribution function (CDF) of the distribution at q.
+
+ Parameters
+ ----------
+ q : float
+ The point(s) at which to evaluate the inverse CDF.
+
+ Returns
+ -------
+ float
+ The inverse cumulative distribution function value at q.
+ """
+ return self.prior.ppf(q, scale=self.scale, loc=self.loc)
+
+ def cdf(self, x):
+ """
+ Calculates the cumulative distribution function (CDF) of the distribution at x.
+
+ Parameters
+ ----------
+ x : float
+ The point(s) at which to evaluate the CDF.
+
+ Returns
+ -------
+ float
+ The cumulative distribution function value at x.
+ """
+ return self.prior.cdf(x, scale=self.scale, loc=self.loc)
+
def rvs(self, size=1, random_state=None):
"""
Generates random variates from the distribution.
@@ -90,6 +124,66 @@ def rvs(self, size=1, random_state=None):
loc=self.loc, scale=self.scale, size=size, random_state=random_state
)
+ def __call__(self, x):
+ """
+ Evaluates the distribution at x.
+
+ Parameters
+ ----------
+ x : float
+ The point(s) at which to evaluate the distribution.
+
+ Returns
+ -------
+ float
+ The value(s) of the distribution at x.
+ """
+ inputs = self.verify(x)
+ return self.logpdf(inputs)
+
+ def logpdfS1(self, x):
+ """
+ Evaluates the first derivative of the distribution at x.
+
+ Parameters
+ ----------
+ x : float
+ The point(s) at which to evaluate the first derivative.
+
+ Returns
+ -------
+ float
+ The value(s) of the first derivative at x.
+ """
+ inputs = self.verify(x)
+ return self._logpdfS1(inputs)
+
+ def _logpdfS1(self, x):
+ """
+ Evaluates the first derivative of the distribution at x.
+
+ Parameters
+ ----------
+ x : float
+ The point(s) at which to evaluate the first derivative.
+
+ Returns
+ -------
+ float
+ The value(s) of the first derivative at x.
+ """
+ raise NotImplementedError
+
+ def verify(self, x):
+ """
+ Verifies that the input is a numpy array and converts it if necessary.
+ """
+ if isinstance(x, dict):
+ x = np.asarray(list(x.values()))
+ elif not isinstance(x, np.ndarray):
+ x = np.asarray(x)
+ return x
+
def __repr__(self):
"""
Returns a string representation of the object.
@@ -137,10 +231,31 @@ class Gaussian(BasePrior):
"""
def __init__(self, mean, sigma, random_state=None):
+ super().__init__()
self.name = "Gaussian"
self.loc = mean
self.scale = sigma
self.prior = stats.norm
+ self._offset = -0.5 * np.log(2 * np.pi * self.scale**2)
+ self.sigma2 = self.scale**2
+ self._multip = -1 / (2.0 * self.sigma2)
+ self._n_parameters = 1
+
+ def _logpdfS1(self, x):
+ """
+ Evaluates the first derivative of the gaussian (log) distribution at x.
+
+ Parameters
+ ----------
+ x : float
+ The point(s) at which to evaluate the first derivative.
+
+ Returns
+ -------
+ float
+ The value(s) of the first derivative at x.
+ """
+ return self.__call__(x), -(x - self.loc) * self._multip
class Uniform(BasePrior):
@@ -159,12 +274,32 @@ class Uniform(BasePrior):
"""
def __init__(self, lower, upper, random_state=None):
+ super().__init__()
self.name = "Uniform"
self.lower = lower
self.upper = upper
self.loc = lower
self.scale = upper - lower
self.prior = stats.uniform
+ self._n_parameters = 1
+
+ def _logpdfS1(self, x):
+ """
+ Evaluates the first derivative of the log uniform distribution at x.
+
+ Parameters
+ ----------
+ x : float
+ The point(s) at which to evaluate the first derivative.
+
+ Returns
+ -------
+ float
+ The value(s) of the first derivative at x.
+ """
+ log_pdf = self.__call__(x)
+ dlog_pdf = np.zeros_like(x)
+ return log_pdf, dlog_pdf
@property
def mean(self):
@@ -195,7 +330,106 @@ class Exponential(BasePrior):
"""
def __init__(self, scale, loc=0, random_state=None):
+ super().__init__()
self.name = "Exponential"
self.loc = loc
self.scale = scale
self.prior = stats.expon
+ self._n_parameters = 1
+
+ def _logpdfS1(self, x):
+ """
+ Evaluates the first derivative of the log exponential distribution at x.
+
+ Parameters
+ ----------
+ x : float
+ The point(s) at which to evaluate the first derivative.
+
+ Returns
+ -------
+ float
+ The value(s) of the first derivative at x.
+ """
+ log_pdf = self.__call__(x)
+ dlog_pdf = -1 / self.scale * np.ones_like(x)
+ return log_pdf, dlog_pdf
+
+
+class JointLogPrior(BasePrior):
+ """
+ Represents a joint prior distribution composed of multiple prior distributions.
+
+ Parameters
+ ----------
+ priors : BasePrior
+ One or more prior distributions to combine into a joint distribution.
+ """
+
+ def __init__(self, *priors: BasePrior):
+ super().__init__()
+
+ if not all(isinstance(prior, BasePrior) for prior in priors):
+ raise ValueError("All priors must be instances of BasePrior")
+
+ self._n_parameters = len(priors)
+ self._priors: list[BasePrior] = list(priors)
+
+ def logpdf(self, x: Union[float, np.ndarray]) -> float:
+ """
+ Evaluates the joint log-prior distribution at a given point.
+
+ Parameters
+ ----------
+ x : Union[float, np.ndarray]
+ The point(s) at which to evaluate the distribution. The length of `x`
+ should match the total number of parameters in the joint distribution.
+
+ Returns
+ -------
+ float
+ The joint log-probability density of the distribution at `x`.
+ """
+ if len(x) != self._n_parameters:
+ raise ValueError(
+ f"Input x must have length {self._n_parameters}, got {len(x)}"
+ )
+
+ return sum(prior(x) for prior, x in zip(self._priors, x))
+
+ def _logpdfS1(self, x: Union[float, np.ndarray]) -> tuple[float, np.ndarray]:
+ """
+ Evaluates the first derivative of the joint log-prior distribution at a given point.
+
+ Parameters
+ ----------
+ x : Union[float, np.ndarray]
+ The point(s) at which to evaluate the first derivative. The length of `x`
+ should match the total number of parameters in the joint distribution.
+
+ Returns
+ -------
+ Tuple[float, np.ndarray]
+ A tuple containing the log-probability density and its first derivative at `x`.
+ """
+ if len(x) != self._n_parameters:
+ raise ValueError(
+ f"Input x must have length {self._n_parameters}, got {len(x)}"
+ )
+
+ log_probs = []
+ derivatives = []
+
+ for prior, xi in zip(self._priors, x):
+ p, dp = prior.logpdfS1(xi)
+ log_probs.append(p)
+ derivatives.append(dp)
+
+ output = sum(log_probs)
+ doutput = np.array(derivatives)
+
+ return output, doutput
+
+ def __repr__(self) -> str:
+ priors_repr = ", ".join([repr(prior) for prior in self._priors])
+ return f"{self.__class__.__name__}(priors: [{priors_repr}])"
diff --git a/pybop/plot/__init__.py b/pybop/plot/__init__.py
new file mode 100644
index 000000000..b6c26a294
--- /dev/null
+++ b/pybop/plot/__init__.py
@@ -0,0 +1,12 @@
+#
+# Import plots
+#
+from .plotly_manager import PlotlyManager
+from .standard_plots import StandardPlot, StandardSubplot, trajectories
+from .contour import contour
+from .dataset import dataset
+from .convergence import convergence
+from .parameters import parameters
+from .problem import quick
+from .nyquist import nyquist
+from .voronoi import surface
diff --git a/pybop/plotting/plot2d.py b/pybop/plot/contour.py
similarity index 69%
rename from pybop/plotting/plot2d.py
rename to pybop/plot/contour.py
index 961bc7c49..922627028 100644
--- a/pybop/plotting/plot2d.py
+++ b/pybop/plot/contour.py
@@ -1,15 +1,19 @@
-import sys
+import warnings
+from functools import partial
+from typing import Union
import numpy as np
from scipy.interpolate import griddata
-from pybop import BaseOptimiser, Optimisation, PlotlyManager
+from pybop import BaseCost, BaseOptimiser, Optimisation
+from pybop.plot.plotly_manager import PlotlyManager
-def plot2d(
- cost_or_optim,
+def contour(
+ call_object: Union[BaseCost, BaseOptimiser],
gradient: bool = False,
- bounds: np.ndarray = None,
+ bounds: Union[np.ndarray, None] = None,
+ apply_transform: bool = False,
steps: int = 10,
show: bool = True,
use_optim_log: bool = False,
@@ -23,7 +27,7 @@ def plot2d(
Parameters
----------
- cost_or_optim : a callable cost function, pybop Cost or Optimisation object
+ call_object : Union([pybop.BaseCost,pybop.BaseOptimiser, pybop.BasePrior])
Either:
- the cost function to be evaluated. Must accept a list of parameter values and return a cost value.
- an Optimisation object which provides a specific optimisation trace overlaid on the cost landscape.
@@ -53,19 +57,41 @@ def plot2d(
ValueError
If the cost function does not return a valid cost when called with a parameter list.
"""
+ plot_optim = False
+ cost = cost_call = call_object
# Assign input as a cost or optimisation object
- if isinstance(cost_or_optim, (BaseOptimiser, Optimisation)):
- optim = cost_or_optim
+ if isinstance(call_object, (BaseOptimiser, Optimisation)):
plot_optim = True
+ optim = call_object
cost = optim.cost
- else:
- cost = cost_or_optim
- plot_optim = False
+ cost_call = partial(optim.cost, apply_transform=apply_transform)
+ elif isinstance(call_object, BaseCost):
+ cost = call_object
+ cost_call = partial(cost, apply_transform=apply_transform)
+
+ if isinstance(cost, BaseCost) and len(cost.parameters) < 2:
+ raise ValueError("This cost function takes fewer than 2 parameters.")
+
+ additional_values = []
+ if isinstance(cost, BaseCost) and len(cost.parameters) > 2:
+ warnings.warn(
+ "This cost function requires more than 2 parameters. "
+ "Plotting in 2d with fixed values for the additional parameters.",
+ UserWarning,
+ stacklevel=2,
+ )
+ for (
+ i,
+ param,
+ ) in enumerate(cost.parameters):
+ if i > 1:
+ additional_values.append(param.value)
+ print(f"Fixed {param.name}:", param.value)
# Set up parameter bounds
if bounds is None:
- bounds = cost.parameters.get_bounds_for_plotly()
+ bounds = cost.parameters.get_bounds_for_plotly(apply_transform=apply_transform)
# Generate grid
x = np.linspace(bounds[0, 0], bounds[0, 1], steps)
@@ -74,36 +100,45 @@ def plot2d(
# Initialize cost matrix
costs = np.zeros((len(y), len(x)))
- # Populate cost matrix
- for i, xi in enumerate(x):
- for j, yj in enumerate(y):
- costs[j, i] = cost(np.asarray([xi, yj]))
-
if gradient:
grad_parameter_costs = []
- # Determine the number of gradient outputs from cost.evaluateS1
- num_gradients = len(cost.evaluateS1(np.asarray([x[0], y[0]]))[1])
+ # Determine the number of gradient outputs from cost.compute
+ num_gradients = cost_call(
+ np.asarray([x[0], y[0]] + additional_values),
+ calculate_grad=True,
+ )[1].shape[0]
- # Create an array to hold each gradient output & populate
+ # Create an array to hold each gradient output
grads = [np.zeros((len(y), len(x))) for _ in range(num_gradients)]
- for i, xi in enumerate(x):
- for j, yj in enumerate(y):
- (*current_grads,) = cost.evaluateS1(np.asarray([xi, yj]))[1]
+
+ # Populate cost matrix
+ for i, xi in enumerate(x):
+ for j, yj in enumerate(y):
+ if gradient:
+ costs[j, i], (*current_grads,) = cost_call(
+ np.asarray([xi, yj] + additional_values),
+ calculate_grad=True,
+ )
for k, grad_output in enumerate(current_grads):
grads[k][j, i] = grad_output
+ else:
+ costs[j, i] = cost_call(
+ np.asarray([xi, yj] + additional_values),
+ )
- # Append the arrays to the grad_parameter_costs list
+ # Append the arrays to the grad_parameter_costs list
+ if gradient:
grad_parameter_costs.extend(grads)
- elif plot_optim and use_optim_log:
+ if plot_optim and use_optim_log:
# Flatten the cost matrix and parameter values
flat_x = np.tile(x, len(y))
flat_y = np.repeat(y, len(x))
flat_costs = costs.flatten()
# Append the optimisation trace to the data
- parameter_log = np.asarray(optim.log["x_best"])
+ parameter_log = np.asarray(optim.log["x"])
flat_x = np.concatenate((flat_x, parameter_log[:, 0]))
flat_y = np.concatenate((flat_y, parameter_log[:, 1]))
flat_costs = np.concatenate((flat_costs, optim.log["cost"]))
@@ -124,8 +159,8 @@ def plot2d(
title_y=0.9,
width=600,
height=600,
- xaxis=dict(range=bounds[0]),
- yaxis=dict(range=bounds[1]),
+ xaxis=dict(range=bounds[0], showexponent="last", exponentformat="e"),
+ yaxis=dict(range=bounds[1], showexponent="last", exponentformat="e"),
)
if hasattr(cost, "parameters"):
name = cost.parameters.keys()
@@ -140,9 +175,7 @@ def plot2d(
if plot_optim:
# Plot the optimisation trace
- optim_trace = np.asarray(
- [item for sublist in optim.log["x"] for item in sublist]
- )
+ optim_trace = np.asarray([item[:2] for item in optim.log["x"]])
optim_trace = optim_trace.reshape(-1, 2)
fig.add_trace(
go.Scatter(
@@ -179,9 +212,7 @@ def plot2d(
# Update the layout and display the figure
fig.update_layout(**layout_kwargs)
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ if show:
fig.show()
if gradient:
@@ -200,9 +231,7 @@ def plot2d(
)
grad_fig.update_layout(**layout_kwargs)
- if "ipykernel" in sys.modules and show:
- grad_fig.show("svg")
- elif show:
+ if show:
grad_fig.show()
# append grad_fig to list
diff --git a/pybop/plotting/plot_convergence.py b/pybop/plot/convergence.py
similarity index 76%
rename from pybop/plotting/plot_convergence.py
rename to pybop/plot/convergence.py
index f8ec6948c..6ff0e828e 100644
--- a/pybop/plotting/plot_convergence.py
+++ b/pybop/plot/convergence.py
@@ -1,9 +1,7 @@
-import sys
+from pybop.plot.standard_plots import StandardPlot
-from pybop import StandardPlot
-
-def plot_convergence(optim, show=True, **layout_kwargs):
+def convergence(optim, show=True, **layout_kwargs):
"""
Plot the convergence of the optimisation algorithm.
@@ -25,17 +23,19 @@ def plot_convergence(optim, show=True, **layout_kwargs):
"""
# Extract log from the optimisation object
- cost_log = optim.log["cost"]
+ cost_log = optim.log["cost_best"]
# Generate a list of iteration numbers
iteration_numbers = list(range(1, len(cost_log) + 1))
- # Create a plotting dictionary
+ # Create a plot dictionary
plot_dict = StandardPlot(
x=iteration_numbers,
y=cost_log,
layout_options=dict(
- xaxis_title="Iteration", yaxis_title="Cost", title="Convergence"
+ xaxis_title="Iteration",
+ yaxis_title="Cost",
+ title="Convergence",
),
trace_names=optim.name(),
)
@@ -43,9 +43,7 @@ def plot_convergence(optim, show=True, **layout_kwargs):
# Generate and display the figure
fig = plot_dict(show=False)
fig.update_layout(**layout_kwargs)
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ if show:
fig.show()
return fig
diff --git a/pybop/plotting/plot_dataset.py b/pybop/plot/dataset.py
similarity index 81%
rename from pybop/plotting/plot_dataset.py
rename to pybop/plot/dataset.py
index 70573e476..3146d2bcf 100644
--- a/pybop/plotting/plot_dataset.py
+++ b/pybop/plot/dataset.py
@@ -1,11 +1,7 @@
-import sys
+from pybop.plot.standard_plots import StandardPlot, trajectories
-from pybop import StandardPlot, plot_trajectories
-
-def plot_dataset(
- dataset, signal=["Voltage [V]"], trace_names=None, show=True, **layout_kwargs
-):
+def dataset(dataset, signal=None, trace_names=None, show=True, **layout_kwargs):
"""
Quickly plot a PyBOP Dataset using Plotly.
@@ -31,7 +27,9 @@ def plot_dataset(
"""
# Get data dictionary
- dataset.check(signal)
+ if signal is None:
+ signal = ["Voltage [V]"]
+ dataset.check(signal=signal)
# Compile ydata and labels or legend
y = [dataset[s] for s in signal]
@@ -45,7 +43,7 @@ def plot_dataset(
trace_names = StandardPlot.remove_brackets(signal)
# Create the figure
- fig = plot_trajectories(
+ fig = trajectories(
x=dataset["Time [s]"],
y=y,
trace_names=trace_names,
@@ -54,9 +52,7 @@ def plot_dataset(
yaxis_title=yaxis_title,
)
fig.update_layout(**layout_kwargs)
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ if show:
fig.show()
return fig
diff --git a/pybop/plot/nyquist.py b/pybop/plot/nyquist.py
new file mode 100644
index 000000000..08ab71295
--- /dev/null
+++ b/pybop/plot/nyquist.py
@@ -0,0 +1,139 @@
+from pybop.parameters.parameter import Inputs
+from pybop.plot.standard_plots import StandardPlot
+
+
+def nyquist(problem, problem_inputs: Inputs = None, show=True, **layout_kwargs):
+ """
+ Generates Nyquist plots for the given problem by evaluating the model's output and target values.
+
+ Parameters
+ ----------
+ problem : pybop.BaseProblem
+ An instance of a problem class (e.g., `pybop.EISProblem`) that contains the parameters and methods
+ for evaluation and target retrieval.
+ problem_inputs : Inputs, optional
+ Input parameters for the problem. If not provided, the default parameters from the problem
+ instance will be used. These parameters are verified before use (default is None).
+ show : bool, optional
+ If True, the plots will be displayed.
+ **layout_kwargs : dict, optional
+ Additional keyword arguments for customising the plot layout. These arguments are passed to
+ `fig.update_layout()`.
+
+ Returns
+ -------
+ list
+ A list of plotly `Figure` objects, each representing a Nyquist plot for the model's output and target values.
+
+ Notes
+ -----
+ - The function extracts the real part of the impedance from the model's output and the real and imaginary parts
+ of the impedance from the target output.
+ - For each signal in the problem, a Nyquist plot is created with the model's impedance plotted as a scatter plot.
+ - An additional trace for the reference (target output) is added to the plot.
+ - The plot layout can be customised using `layout_kwargs`.
+
+ Example
+ -------
+ >>> problem = pybop.EISProblem()
+ >>> nyquist_figures = nyquist(problem, show=True, title="Nyquist Plot", xaxis_title="Real(Z)", yaxis_title="Imag(Z)")
+ >>> # The plots will be displayed and nyquist_figures will contain the list of figure objects.
+ """
+ if problem_inputs is None:
+ problem_inputs = problem.parameters.as_dict()
+ else:
+ problem_inputs = problem.parameters.verify(problem_inputs)
+
+ model_output = problem.evaluate(problem_inputs)
+ domain_data = model_output["Impedance"].real
+ target_output = problem.get_target()
+
+ figure_list = []
+ for i in problem.signal:
+ default_layout_options = dict(
+ title="Nyquist Plot",
+ font=dict(family="Arial", size=14),
+ plot_bgcolor="white",
+ paper_bgcolor="white",
+ xaxis=dict(
+ title=dict(text="Zre / Ω", font=dict(size=16), standoff=15),
+ showline=True,
+ linewidth=2,
+ linecolor="black",
+ mirror=True,
+ ticks="outside",
+ tickwidth=2,
+ tickcolor="black",
+ ticklen=5,
+ ),
+ yaxis=dict(
+ title=dict(text="-Zim / Ω", font=dict(size=16), standoff=15),
+ showline=True,
+ linewidth=2,
+ linecolor="black",
+ mirror=True,
+ ticks="outside",
+ tickwidth=2,
+ tickcolor="black",
+ ticklen=5,
+ scaleanchor="x",
+ scaleratio=1,
+ ),
+ legend=dict(
+ x=0.02,
+ y=0.98,
+ bgcolor="rgba(255, 255, 255, 0.5)",
+ bordercolor="black",
+ borderwidth=1,
+ ),
+ width=600,
+ height=600,
+ )
+
+ plot_dict = StandardPlot(
+ x=domain_data,
+ y=-model_output[i].imag,
+ layout_options=default_layout_options,
+ trace_names="Model",
+ )
+
+ plot_dict.traces[0].update(
+ mode="lines+markers",
+ line=dict(color="blue", width=2),
+ marker=dict(size=8, color="blue", symbol="circle"),
+ )
+
+ target_trace = plot_dict.create_trace(
+ x=target_output[i].real,
+ y=-target_output[i].imag,
+ name="Reference",
+ mode="markers",
+ marker=dict(size=8, color="red", symbol="circle-open"),
+ showlegend=True,
+ )
+ plot_dict.traces.append(target_trace)
+
+ fig = plot_dict(show=False)
+
+ # Add minor gridlines
+ fig.update_xaxes(
+ showgrid=True,
+ gridwidth=1,
+ gridcolor="lightgray",
+ minor=dict(showgrid=True, gridwidth=0.5, gridcolor="lightgray"),
+ )
+ fig.update_yaxes(
+ showgrid=True,
+ gridwidth=1,
+ gridcolor="lightgray",
+ minor=dict(showgrid=True, gridwidth=0.5, gridcolor="lightgray"),
+ )
+
+ # Overwrite with user-kwargs
+ fig.update_layout(**layout_kwargs)
+ if show:
+ fig.show()
+
+ figure_list.append(fig)
+
+ return figure_list
diff --git a/pybop/plotting/plot_parameters.py b/pybop/plot/parameters.py
similarity index 63%
rename from pybop/plotting/plot_parameters.py
rename to pybop/plot/parameters.py
index bc1f9a7ac..8fbc65d95 100644
--- a/pybop/plotting/plot_parameters.py
+++ b/pybop/plot/parameters.py
@@ -1,9 +1,8 @@
-import sys
+from pybop import GaussianLogLikelihood
+from pybop.plot.standard_plots import StandardSubplot
-from pybop import StandardSubplot
-
-def plot_parameters(optim, show=True, **layout_kwargs):
+def parameters(optim, show=True, **layout_kwargs):
"""
Plot the evolution of parameters during the optimization process using Plotly.
@@ -26,24 +25,8 @@ def plot_parameters(optim, show=True, **layout_kwargs):
# Extract parameters and log from the optimisation object
parameters = optim.cost.parameters
- log = optim.log["x"]
-
- # Create a list of sequential integers for the x-axis
- x = list(range(1, len(log[0]) * len(log) + 1))
-
- # Determine the number of elements in the smallest arrays
- num_elements = len(log[0][0])
-
- # Initialize a list of lists to store our columns
- y = [[] for _ in range(num_elements)]
-
- # Loop through each numpy array in y
- for array in log:
- # Loop through each item (which is a n-element array) in the numpy array
- for item in array:
- # Loop through each element in the item and append to the corresponding column
- for i in range(num_elements):
- y[i].append(item[i])
+ x = list(range(len(optim.log["x"])))
+ y = [list(item) for item in zip(*optim.log["x"])]
# Create lists of axis titles and trace names
axis_titles = []
@@ -51,6 +34,10 @@ def plot_parameters(optim, show=True, **layout_kwargs):
for name in trace_names:
axis_titles.append(("Function Call", name))
+ if isinstance(optim.cost, GaussianLogLikelihood):
+ axis_titles.append(("Function Call", "Sigma"))
+ trace_names.append("Sigma")
+
# Set subplot layout options
layout_options = dict(
title="Parameter Convergence",
@@ -59,7 +46,7 @@ def plot_parameters(optim, show=True, **layout_kwargs):
legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1),
)
- # Create a plotting dictionary
+ # Create a plot dictionary
plot_dict = StandardSubplot(
x=x,
y=y,
@@ -72,9 +59,7 @@ def plot_parameters(optim, show=True, **layout_kwargs):
# Generate the figure and update the layout
fig = plot_dict(show=False)
fig.update_layout(**layout_kwargs)
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ if show:
fig.show()
return fig
diff --git a/pybop/plotting/plotly_manager.py b/pybop/plot/plotly_manager.py
similarity index 95%
rename from pybop/plotting/plotly_manager.py
rename to pybop/plot/plotly_manager.py
index 7b4b079a4..d8ad14c88 100644
--- a/pybop/plotting/plotly_manager.py
+++ b/pybop/plot/plotly_manager.py
@@ -71,14 +71,13 @@ def prompt_for_plotly_installation(self):
print("Installation cancelled by user.")
sys.exit(1) # Exit if user cancels installation
- def install_plotly(self):
+ @staticmethod
+ def install_plotly():
"""
Install the Plotly package using pip. Exit if installation fails.
"""
try:
- subprocess.check_call(
- [sys.executable, "-m", "pip", "install", "plotly", "kaleido"]
- )
+ subprocess.check_call([sys.executable, "-m", "pip", "install", "plotly"])
except subprocess.CalledProcessError as e:
print(f"Error installing plotly: {e}")
sys.exit(1) # Exit if installation fails
@@ -119,7 +118,7 @@ def check_browser_availability(self):
if self.pio and self.pio.renderers.default == "browser":
try:
webbrowser.get()
- except webbrowser.Error:
+ except webbrowser.Error as e:
raise Exception(
"\n **Browser Not Found** \nFor Windows users, in order to view figures in the browser using Plotly, "
"you need to set the environment variable BROWSER equal to the "
@@ -129,4 +128,4 @@ def check_browser_availability(self):
"\n\nThen reactivate your virtual environment. Alternatively, you can use a "
"different Plotly renderer. For more information see: "
"https://plotly.com/python/renderers/#setting-the-default-renderer"
- )
+ ) from e
diff --git a/pybop/plotting/plot_problem.py b/pybop/plot/problem.py
similarity index 78%
rename from pybop/plotting/plot_problem.py
rename to pybop/plot/problem.py
index 968da94d6..3cc4ba020 100644
--- a/pybop/plotting/plot_problem.py
+++ b/pybop/plot/problem.py
@@ -1,11 +1,11 @@
-import sys
-
import numpy as np
-from pybop import DesignProblem, FittingProblem, StandardPlot
+from pybop import DesignProblem, FittingProblem
+from pybop.parameters.parameter import Inputs
+from pybop.plot.standard_plots import StandardPlot
-def quick_plot(problem, parameter_values=None, show=True, **layout_kwargs):
+def quick(problem, problem_inputs: Inputs = None, show=True, **layout_kwargs):
"""
Quickly plot the target dataset against optimised model output.
@@ -16,7 +16,7 @@ def quick_plot(problem, parameter_values=None, show=True, **layout_kwargs):
----------
problem : object
Problem object with dataset and signal attributes.
- parameter_values : array-like
+ problem_inputs : Inputs
Optimised (or example) parameter values.
show : bool, optional
If True, the figure is shown upon creation (default: True).
@@ -30,12 +30,14 @@ def quick_plot(problem, parameter_values=None, show=True, **layout_kwargs):
plotly.graph_objs.Figure
The Plotly figure object for the scatter plot.
"""
- if parameter_values is None:
- parameter_values = problem.x0
+ if problem_inputs is None:
+ problem_inputs = problem.parameters.as_dict()
+ else:
+ problem_inputs = problem.parameters.verify(problem_inputs)
# Extract the time data and evaluate the model's output and target values
- xaxis_data = problem.time_data()
- model_output = problem.evaluate(parameter_values)
+ xaxis_data = problem.domain_data
+ model_output = problem.evaluate(problem_inputs)
target_output = problem.get_target()
# Create a plot for each output
@@ -47,16 +49,16 @@ def quick_plot(problem, parameter_values=None, show=True, **layout_kwargs):
yaxis_title=StandardPlot.remove_brackets(i),
)
- # Create a plotting dictionary
+ # Create a plot dictionary
if isinstance(problem, DesignProblem):
trace_name = "Optimised"
- opt_time_data = model_output["Time [s]"]
+ opt_domain_data = model_output["Time [s]"]
else:
trace_name = "Model"
- opt_time_data = xaxis_data
+ opt_domain_data = xaxis_data
plot_dict = StandardPlot(
- x=opt_time_data,
+ x=opt_domain_data,
y=model_output[i],
layout_options=default_layout_options,
trace_names=trace_name,
@@ -71,7 +73,9 @@ def quick_plot(problem, parameter_values=None, show=True, **layout_kwargs):
)
plot_dict.traces.append(target_trace)
- if isinstance(problem, FittingProblem):
+ if isinstance(problem, FittingProblem) and len(model_output[i]) == len(
+ target_output[i]
+ ):
# Compute the standard deviation as proxy for uncertainty
plot_dict.sigma = np.std(model_output[i] - target_output[i])
@@ -97,9 +101,7 @@ def quick_plot(problem, parameter_values=None, show=True, **layout_kwargs):
# Generate the figure and update the layout
fig = plot_dict(show=False)
fig.update_layout(**layout_kwargs)
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ if show:
fig.show()
figure_list.append(fig)
diff --git a/pybop/plotting/quick_plot.py b/pybop/plot/standard_plots.py
similarity index 65%
rename from pybop/plotting/quick_plot.py
rename to pybop/plot/standard_plots.py
index 5be353a62..f5e5e3088 100644
--- a/pybop/plotting/quick_plot.py
+++ b/pybop/plot/standard_plots.py
@@ -1,22 +1,34 @@
import math
-import sys
import textwrap
import numpy as np
-from pybop import PlotlyManager
+from pybop.plot.plotly_manager import PlotlyManager
DEFAULT_LAYOUT_OPTIONS = dict(
title=None,
title_x=0.5,
- xaxis=dict(title=None, titlefont_size=12, tickfont_size=12),
- yaxis=dict(title=None, titlefont_size=12, tickfont_size=12),
+ xaxis=dict(
+ title=None,
+ showexponent="last",
+ exponentformat="e",
+ titlefont_size=12,
+ tickfont_size=12,
+ ),
+ yaxis=dict(
+ title=None,
+ showexponent="last",
+ exponentformat="e",
+ titlefont_size=12,
+ tickfont_size=12,
+ ),
legend=dict(x=1, y=1, xanchor="right", yanchor="top", font_size=12),
showlegend=True,
autosize=False,
- width=1024,
- height=576,
+ width=600,
+ height=600,
margin=dict(l=10, r=10, b=10, t=75, pad=4),
+ plot_bgcolor="white",
)
DEFAULT_SUBPLOT_OPTIONS = dict(
start_cell="bottom-left",
@@ -31,9 +43,9 @@ class StandardPlot:
Parameters
----------
- x : list or np.ndarray
+ x : list or np.ndarray, optional
X-axis data points.
- y : list or np.ndarray
+ y : list or np.ndarray, optional
Primary Y-axis data points for simulated model output.
layout : Plotly layout, optional
A layout for the figure, overrides the layout options (default: None).
@@ -54,87 +66,39 @@ class StandardPlot:
def __init__(
self,
- x,
- y,
+ x=None,
+ y=None,
layout=None,
- layout_options=DEFAULT_LAYOUT_OPTIONS.copy(),
- trace_options=DEFAULT_TRACE_OPTIONS.copy(),
+ layout_options=None,
+ trace_options=None,
trace_names=None,
trace_name_width=40,
):
- self.x = x
- self.y = y
+ self.traces = []
self.layout = layout
- self.layout_options = layout_options
- self.trace_options = DEFAULT_TRACE_OPTIONS.copy()
- if trace_options is not None:
- for arg, value in trace_options.items():
- self.trace_options[arg] = value
- if isinstance(trace_names, str):
- self.trace_names = [trace_names]
- else:
- self.trace_names = trace_names
self.trace_name_width = trace_name_width
- # Check type and dimensions of data
- # What we want is a list of 'things plotly can take', e.g. numpy arrays or lists of numbers
- if isinstance(self.x, list):
- # If it's a list of numpy arrays, it's fine
- # If it's a list of lists, it's fine
- # If it's neither, it's a list of numbers that we need to wrap
- if not isinstance(self.x[0], np.ndarray) and not isinstance(
- self.x[0], list
- ):
- self.x = [self.x]
- elif isinstance(self.x, np.ndarray):
- self.x = np.squeeze(self.x)
- if self.x.ndim == 1:
- self.x = [self.x]
- else:
- self.x = self.x.tolist()
- if isinstance(self.y, list):
- if not isinstance(self.y[0], np.ndarray) and not isinstance(
- self.y[0], list
- ):
- self.y = [self.y]
- if isinstance(self.y, np.ndarray):
- self.y = np.squeeze(self.y)
- if self.y.ndim == 1:
- self.y = [self.y]
- else:
- self.y = self.y.tolist()
- if len(self.x) > 1 and len(self.x) != len(self.y):
- raise ValueError(
- "Input x should have either one data series or the same number as y."
- )
+ # Set default layout options and update if provided
+ if self.layout is None:
+ self.layout_options = DEFAULT_LAYOUT_OPTIONS.copy()
+ if layout_options:
+ self.layout_options.update(layout_options)
+
+ # Set default trace options and update if provided
+ self.trace_options = DEFAULT_TRACE_OPTIONS.copy()
+ if trace_options:
+ self.trace_options.update(trace_options)
# Attempt to import plotly when an instance is created
self.go = PlotlyManager().go
# Create layout
if self.layout is None:
- self.layout = self.go.Layout(self.layout_options)
- if self.layout_options is not None:
- for arg, value in self.layout_options.items():
- self.layout[arg] = value
-
- # Wrap trace names
- if self.trace_names is not None:
- for i, name in enumerate(self.trace_names):
- self.trace_names[i] = self.wrap_text(name, width=self.trace_name_width)
+ self.layout = self.go.Layout(**self.layout_options)
- # Create a trace for each trajectory
- self.traces = []
- x = self.x[0]
- for i in range(0, len(self.y)):
- if len(self.x) > 1:
- x = self.x[i]
- if self.trace_names is not None:
- self.trace_options["name"] = self.trace_names[i]
- else:
- self.trace_options["showlegend"] = False
- trace = self.create_trace(x, self.y[i], **self.trace_options)
- self.traces.append(trace)
+ # Add traces
+ if x is not None and y is not None:
+ self.add_traces(x, y, trace_names)
def __call__(self, show=True):
"""
@@ -146,13 +110,89 @@ def __call__(self, show=True):
If True, the figure is shown upon creation (default: True).
"""
fig = self.go.Figure(data=self.traces, layout=self.layout)
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ if show:
fig.show()
return fig
+ def add_traces(self, x, y, trace_names=None, **trace_options):
+ """
+ Add a set of traces to the plot dictionary.
+
+ Parameters
+ ----------
+ x : list or np.ndarray
+ X-axis data points.
+ y : list or np.ndarray
+ Primary Y-axis data points for simulated model output.
+ trace_names : str or list[str], optional
+ Name(s) for the primary trace(s) (default: None).
+ """
+ options = self.trace_options.copy()
+ options.update(trace_options)
+
+ # Check and wrap trace names
+ if trace_names is not None:
+ if isinstance(trace_names, str):
+ trace_names = [trace_names]
+ for i, name in enumerate(trace_names):
+ trace_names[i] = self.wrap_text(name, width=self.trace_name_width)
+
+ # Parse the data
+ x, y = self.parse_data(x, y)
+
+ # Create a trace for each trajectory
+ xi = x[0]
+ for i in range(0, len(y)):
+ trace_options = options.copy()
+ if len(x) > 1:
+ xi = x[i]
+ if trace_names is not None:
+ trace_options["name"] = trace_names[i]
+ else:
+ trace_options["showlegend"] = False
+ trace = self.create_trace(xi, y[i], **trace_options)
+ self.traces.append(trace)
+
+ def parse_data(self, x, y):
+ """
+ Check the type and dimensions of the data and convert if necessary to a list
+ of 'things plotly can take', e.g. numpy arrays or lists of numbers.
+
+ Parameters
+ ----------
+ x : list or np.ndarray, optional
+ X-axis data points.
+ y : list or np.ndarray, optional
+ Primary Y-axis data points for simulated model output.
+ """
+ if isinstance(x, list):
+ # If it's a list of numpy arrays, it's fine
+ # If it's a list of lists, it's fine
+ # If it's neither, it's a list of numbers that we need to wrap
+ if not isinstance(x[0], np.ndarray) and not isinstance(x[0], list):
+ x = [x]
+ elif isinstance(x, np.ndarray):
+ x = np.squeeze(x)
+ if x.ndim == 1:
+ x = [x]
+ else:
+ x = x.tolist()
+ if isinstance(y, list):
+ if not isinstance(y[0], np.ndarray) and not isinstance(y[0], list):
+ y = [y]
+ if isinstance(y, np.ndarray):
+ y = np.squeeze(y)
+ if y.ndim == 1:
+ y = [y]
+ else:
+ y = y.tolist()
+ if len(x) > 1 and len(x) != len(y):
+ raise ValueError(
+ "Input x should have either one data series or the same number as y."
+ )
+ return x, y
+
def create_trace(self, x, y, **trace_options):
"""
Create a trace for the Plotly figure.
@@ -246,9 +286,9 @@ def __init__(
num_cols=None,
axis_titles=None,
layout=None,
- layout_options=DEFAULT_LAYOUT_OPTIONS.copy(),
- subplot_options=DEFAULT_SUBPLOT_OPTIONS.copy(),
- trace_options=DEFAULT_SUBPLOT_TRACE_OPTIONS.copy(),
+ layout_options=DEFAULT_LAYOUT_OPTIONS,
+ subplot_options=DEFAULT_SUBPLOT_OPTIONS,
+ trace_options=DEFAULT_SUBPLOT_TRACE_OPTIONS,
trace_names=None,
trace_name_width=40,
):
@@ -267,7 +307,7 @@ def __init__(
elif self.num_cols is None:
self.num_cols = int(math.ceil(self.num_traces / self.num_rows))
self.axis_titles = axis_titles
- self.subplot_options = DEFAULT_SUBPLOT_OPTIONS.copy()
+ self.subplot_options = subplot_options.copy()
if subplot_options is not None:
for arg, value in subplot_options.items():
self.subplot_options[arg] = value
@@ -285,7 +325,11 @@ def __call__(self, show):
If True, the figure is shown upon creation (default: True).
"""
fig = self.make_subplots(
- rows=self.num_rows, cols=self.num_cols, **self.subplot_options
+ rows=self.num_rows,
+ cols=self.num_cols,
+ horizontal_spacing=0.1,
+ vertical_spacing=0.15,
+ **self.subplot_options,
)
fig.update_layout(self.layout_options)
@@ -297,17 +341,21 @@ def __call__(self, show):
if self.axis_titles and idx < len(self.axis_titles):
x_title, y_title = self.axis_titles[idx]
fig.update_xaxes(title_text=x_title, row=row, col=col)
- fig.update_yaxes(title_text=y_title, row=row, col=col)
-
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ fig.update_yaxes(
+ title_text=y_title,
+ row=row,
+ col=col,
+ showexponent="last",
+ exponentformat="e",
+ )
+
+ if show:
fig.show()
return fig
-def plot_trajectories(x, y, trace_names=None, show=True, **layout_kwargs):
+def trajectories(x, y, trace_names=None, show=True, **layout_kwargs):
"""
Quickly plot one or more trajectories using Plotly.
@@ -329,7 +377,7 @@ def plot_trajectories(x, y, trace_names=None, show=True, **layout_kwargs):
plotly.graph_objs.Figure
The Plotly figure object for the scatter plot.
"""
- # Create a plotting dictionary
+ # Create a plot dictionary
plot_dict = StandardPlot(
x=x,
y=y,
@@ -339,9 +387,7 @@ def plot_trajectories(x, y, trace_names=None, show=True, **layout_kwargs):
# Generate the figure and update the layout
fig = plot_dict(show=False)
fig.update_layout(**layout_kwargs)
- if "ipykernel" in sys.modules and show:
- fig.show("svg")
- elif show:
+ if show:
fig.show()
return fig
diff --git a/pybop/plot/voronoi.py b/pybop/plot/voronoi.py
new file mode 100644
index 000000000..4c3e2483a
--- /dev/null
+++ b/pybop/plot/voronoi.py
@@ -0,0 +1,339 @@
+from typing import Union
+
+import numpy as np
+from scipy.spatial import Voronoi, cKDTree
+
+from pybop import BaseOptimiser, Optimisation
+from pybop.plot.plotly_manager import PlotlyManager
+
+
+def _voronoi_regions(x, y, f, xlim, ylim):
+ """
+ Takes a set of ``(x, y, f)`` points and returns the edgepoints of the
+ voronoi region around each point within the boundaries specified by
+ ``xlim`` and ``ylim``. Originally adapted from PINTS.
+
+ Parameters
+ ----------
+ x : array-like
+ A list of x-coordinates.
+ y : array-like
+ A list of y-coordinates.
+ f : array-like
+ The score function at the given x and y coordinates.
+ xlim : tuple
+ Lower and upper bound for the x coordinates.
+ ylim : tuple
+ Lower and upper bound for the y coordinates.
+
+ Returns
+ -------
+ tuple
+ A tuple ``(x, y, f, regions)`` where ``x``, ``y`` and ``f`` are the
+ coordinates of the accepted points and each ``regions[i]`` is a list of the
+ vertices making up the voronoi region for point ``(x[i], y[i])`` with score
+ ``f[i]``.
+ """
+ # Convert inputs to numpy arrays
+ x, y, f = map(np.array, (x, y, f))
+
+ # Check limits
+ xmin, xmax = sorted(map(float, xlim))
+ ymin, ymax = sorted(map(float, ylim))
+
+ # Create voronoi diagram
+ vor = Voronoi(np.column_stack((x, y)))
+
+ # Calculate center and radius
+ center = vor.points.mean(axis=0)
+ radius2 = 2 * np.sqrt((xmax - xmin) ** 2 + (ymax - ymin) ** 2)
+
+ # Create regions
+ regions = [set() for _ in range(len(x))]
+ for (p1, p2), (v1, v2) in zip(vor.ridge_points, vor.ridge_vertices):
+ v1, v2 = sorted([v1, v2]) # Sort the vertices
+ x2 = vor.vertices[v2]
+ y1, y2 = vor.points[p1], vor.points[p2]
+ x1 = (
+ vor.vertices[v1]
+ if v1 >= 0
+ else _compute_far_point(vor, y1, y2, x2, center, radius2)
+ )
+ regions[p1].update((tuple(x1), tuple(x2)))
+ regions[p2].update((tuple(x1), tuple(x2)))
+
+ # Process regions
+ selection = []
+ for k, region in enumerate(regions):
+ # Check for empty regions
+ if not region:
+ continue # pragma: no cover
+
+ # Check for regions completely outside of limits, skip if so.
+ region = np.asarray(list(region))
+ xmn, xmx, ymn, ymx, all_outside = _is_region_outside_bounds(
+ region, xmin, xmax, ymin, ymax
+ )
+
+ if all_outside:
+ continue # pragma: no cover
+
+ # Sort the vertices
+ regions[k] = _sort_region_vertices(region, vor.points[k])
+
+ # Region fully contained? Then keep in selection and continue
+ if not (np.any(xmn) or np.any(xmx) or np.any(ymn) or np.any(ymx)):
+ selection.append(k)
+ continue
+
+ # Truncate points for x-axis and y-axis
+ region = truncate_region_by_axis(region, 0, xmin, xmax)
+ region = truncate_region_by_axis(region, 1, ymin, ymax)
+
+ # Filter region if len > 2
+ if len(region) > 2:
+ selection.append(k)
+
+ # Filter out bad regions
+ regions = [regions[i] for i in selection]
+ x, y, f = x[selection], y[selection], f[selection]
+
+ return x, y, f, regions
+
+
+def _compute_far_point(vor, y1, y2, x2, center, radius2):
+ """
+ Computes the far-point of the voronoi region.
+ Originally adapted from PINTS.
+ """
+ t = y2 - y1
+ t /= np.linalg.norm(t)
+ q = np.array([-t[1], t[0]])
+ midpoint = np.mean([y1, y2], axis=0)
+ return x2 + np.sign(np.dot(midpoint - center, q)) * q * radius2
+
+
+def _is_region_outside_bounds(region, xmin, xmax, ymin, ymax):
+ """
+ Check for points outside of bounds. Originally adapted from PINTS.
+ """
+ xmn = region[:, 0] < xmin
+ xmx = region[:, 0] > xmax
+ ymn = region[:, 1] < ymin
+ ymx = region[:, 1] > ymax
+ combined = np.all(xmn) or np.all(xmx) or np.all(ymn) or np.all(ymx)
+ return xmn, xmx, ymn, ymx, combined
+
+
+def _sort_region_vertices(region, point):
+ """
+ Sorts the region vertices according to the given point.
+ Originally adapted from PINTS.
+ """
+ angles = np.arctan2(region[:, 1] - point[1], region[:, 0] - point[0])
+ return region[np.argsort(angles)]
+
+
+def truncate_region_by_axis(region, axis, min_val, max_val):
+ """
+ Truncates a region along a specific axis. Originally adapted from PINTS.
+
+ Args:
+ region: A list of points (numpy arrays) representing the region.
+ axis: The axis to truncate along (0 for x, 1 for y).
+ min_val: The minimum value along the axis.
+ max_val: The maximum value along the axis.
+
+ Returns:
+ A list of points representing the truncated region.
+ """
+
+ new_region = []
+ for j, p in enumerate(region):
+ q = region[j - 1] if j > 0 else region[-1]
+ r = region[j + 1] if j < len(region) - 1 else region[0]
+
+ if p[axis] < min_val:
+ if q[axis] < min_val and r[axis] < min_val:
+ continue
+ if q[axis] >= min_val:
+ new_region.append(interpolate_point(p, q, axis, min_val))
+ if r[axis] >= min_val:
+ new_region.append(interpolate_point(p, r, axis, min_val))
+ elif p[axis] > max_val:
+ if q[axis] > max_val and r[axis] > max_val:
+ continue # pragma: no cover
+ if q[axis] <= max_val:
+ new_region.append(interpolate_point(p, q, axis, max_val))
+ if r[axis] <= max_val:
+ new_region.append(interpolate_point(p, r, axis, max_val))
+ else:
+ new_region.append(p)
+
+ return new_region
+
+
+def interpolate_point(p, q, axis, boundary_val):
+ """
+ Interpolates a new point on the line segment between p and q at the given boundary value.
+
+ Args:
+ p: The first point.
+ q: The second point.
+ axis: The axis to interpolate along (0 for x, 1 for y).
+ boundary_val: The boundary value.
+
+ Returns:
+ A numpy array representing the interpolated point.
+ """
+
+ other_axis = 1 - axis
+ s = p[other_axis] + (boundary_val - p[axis]) * (q[other_axis] - p[other_axis]) / (
+ q[axis] - p[axis]
+ )
+ return np.array([boundary_val, s]) if axis == 0 else np.array([s, boundary_val])
+
+
+def surface(
+ optim: Union[BaseOptimiser, Optimisation],
+ bounds=None,
+ resolution=250,
+ show=True,
+ **layout_kwargs,
+):
+ """
+ Plot a 2D representation of the Voronoi diagram with color-coded regions.
+
+ Parameters:
+ -----------
+ optim : pybop.BaseOptimiser | pybop.Optimisation
+ Solved optimisation object
+ bounds : numpy.ndarray, optional
+ A 2x2 array specifying the [min, max] bounds for each parameter. If None, uses
+ `cost.parameters.get_bounds_for_plotly`.
+ resolution : int, optional
+ Resolution of the plot. Default is 500.
+ show : bool, optional
+ If True, the figure is shown upon creation (default: True).
+ **layout_kwargs : optional
+ Valid Plotly layout keys and their values,
+ e.g. `xaxis_title="Time [s]"` or
+ `xaxis={"title": "Time [s]", "titlefont_size": 18}`.
+ """
+
+ # Append the optimisation trace to the data
+ points = optim.log["x"]
+
+ if points[0].shape[0] != 2:
+ raise ValueError("This plot method requires two parameters.")
+
+ x_optim, y_optim = map(list, zip(*points))
+ f = optim.log["cost"]
+
+ # Translate bounds, taking only the first two elements
+ xlim, ylim = (
+ bounds if bounds is not None else [param.bounds for param in optim.parameters]
+ )[:2]
+
+ # Compute regions
+ x, y, f, regions = _voronoi_regions(x_optim, y_optim, f, xlim, ylim)
+
+ # Create a grid for plot
+ xi = np.linspace(xlim[0], xlim[1], resolution)
+ yi = np.linspace(ylim[0], ylim[1], resolution)
+ xi, yi = np.meshgrid(xi, yi)
+
+ # Create a KD-tree for efficient nearest neighbor search
+ tree = cKDTree(np.column_stack((x, y)))
+
+ # Find the nearest point for each grid point
+ _, indices = tree.query(np.column_stack((xi.ravel(), yi.ravel())))
+ zi = f[indices].reshape(xi.shape)
+
+ # Calculate the size of each Voronoi region
+ region_sizes = np.array([len(region) for region in regions])
+ normalized_sizes = (region_sizes - region_sizes.min()) / (
+ region_sizes.max() - region_sizes.min()
+ )
+
+ # Construct figure
+ go = PlotlyManager().go
+ fig = go.Figure()
+
+ # Heatmap
+ fig.add_trace(
+ go.Heatmap(
+ x=xi[0],
+ y=yi[:, 0],
+ z=zi,
+ colorscale="Viridis",
+ zsmooth="best",
+ )
+ )
+
+ # Add Voronoi edges
+ for region, size in zip(regions, normalized_sizes):
+ x_region = region[:, 0].tolist() + [region[0, 0]]
+ y_region = region[:, 1].tolist() + [region[0, 1]]
+
+ fig.add_trace(
+ go.Scatter(
+ x=x_region,
+ y=y_region,
+ mode="lines",
+ line=dict(color="white", width=0.5 + size * 0.1),
+ showlegend=False,
+ )
+ )
+
+ # Add original points
+ fig.add_trace(
+ go.Scatter(
+ x=x_optim,
+ y=y_optim,
+ mode="markers",
+ marker=dict(
+ size=8,
+ symbol="x-thin",
+ line=dict(color="white", width=1),
+ showscale=False,
+ ),
+ text=[f"f={val:.2f}" for val in f],
+ hoverinfo="text",
+ showlegend=False,
+ )
+ )
+
+ # Plot the initial guess
+ if optim.x0 is not None:
+ fig.add_trace(
+ go.Scatter(
+ x=[optim.x0[0]],
+ y=[optim.x0[1]],
+ mode="markers",
+ marker_symbol="circle",
+ marker=dict(
+ color="mediumspringgreen",
+ line_color="mediumspringgreen",
+ line_width=1,
+ size=14,
+ showscale=False,
+ ),
+ showlegend=False,
+ )
+ )
+ names = optim.cost.parameters.keys()
+ fig.update_layout(
+ title="Voronoi Cost Landscape",
+ title_x=0.5,
+ title_y=0.9,
+ xaxis_title=names[0],
+ yaxis_title=names[1],
+ width=600,
+ height=600,
+ xaxis=dict(range=xlim, showexponent="last", exponentformat="e"),
+ yaxis=dict(range=ylim, showexponent="last", exponentformat="e"),
+ )
+ fig.update_layout(**layout_kwargs)
+ if show:
+ fig.show()
diff --git a/pybop/problems/base_problem.py b/pybop/problems/base_problem.py
index 48f53dab1..94c278976 100644
--- a/pybop/problems/base_problem.py
+++ b/pybop/problems/base_problem.py
@@ -1,4 +1,10 @@
+from typing import Optional
+
+import numpy as np
+from pybamm import IDAKLUSolver
+
from pybop import BaseModel, Dataset, Parameter, Parameters
+from pybop.parameters.parameter import Inputs
class BaseProblem:
@@ -13,23 +19,29 @@ class BaseProblem:
The model to be used for the problem (default: None).
check_model : bool, optional
Flag to indicate if the model should be checked (default: True).
- signal: List[str]
+ signal: list[str]
The signal to observe.
- additional_variables : List[str], optional
+ additional_variables : list[str], optional
Additional variables to observe and store in the solution (default: []).
- init_soc : float, optional
- Initial state of charge (default: None).
+ initial_state : dict, optional
+ A valid initial state (default: None).
"""
def __init__(
self,
- parameters,
- model=None,
- check_model=True,
- signal=["Voltage [V]"],
- additional_variables=[],
- init_soc=None,
+ parameters: Parameters,
+ model: Optional[BaseModel] = None,
+ check_model: bool = True,
+ signal: Optional[list[str]] = None,
+ additional_variables: Optional[list[str]] = None,
+ initial_state: Optional[dict] = None,
):
+ signal = signal or ["Voltage [V]"]
+ if isinstance(signal, str):
+ signal = [signal]
+ elif not all(isinstance(item, str) for item in signal):
+ raise ValueError("Signal should be either a string or list of strings.")
+
# Check if parameters is a list of pybop.Parameter objects
if isinstance(parameters, list):
if all(isinstance(param, Parameter) for param in parameters):
@@ -48,38 +60,69 @@ def __init__(
)
self.parameters = parameters
+ self.parameters.reset_initial_value()
+
self._model = model
+ self.eis = False
+ self.domain = "Time [s]"
self.check_model = check_model
- if isinstance(signal, str):
- signal = [signal]
- elif not all(isinstance(item, str) for item in signal):
- raise ValueError("Signal should be either a string or list of strings.")
- self.signal = signal
- self.init_soc = init_soc
- self.n_outputs = len(self.signal)
- self._time_data = None
+ self.signal = signal or ["Voltage [V]"]
+ self.set_initial_state(initial_state)
+ self._dataset = None
+ self._domain_data = None
self._target = None
+ self.verbose = False
+ self.failure_output = np.asarray([np.inf])
+ if isinstance(self._model, BaseModel):
+ self.eis = self.model.eis
+ self.domain = "Frequency [Hz]" if self.eis else "Time [s]"
+
+ # Add domain and remove duplicates
+ self.additional_variables = additional_variables or []
+ self.additional_variables.extend([self.domain, "Current [A]"])
+ self.additional_variables = list(set(self.additional_variables))
+
+ # If model.solver is IDAKLU, set output vars for improved performance
+ self.output_vars = tuple(self.signal + self.additional_variables)
+ if self._model is not None and isinstance(self._model.solver, IDAKLUSolver):
+ self._solver_copy = self._model.solver.copy()
+ self._model.solver = IDAKLUSolver(
+ atol=self._solver_copy.atol,
+ rtol=self._solver_copy.rtol,
+ root_method=self._solver_copy.root_method,
+ root_tol=self._solver_copy.root_tol,
+ extrap_tol=self._solver_copy.extrap_tol,
+ options=self._solver_copy._options, # noqa: SLF001
+ output_variables=self.output_vars,
+ )
- if isinstance(model, BaseModel):
- self.additional_variables = additional_variables
- else:
- self.additional_variables = []
+ def set_initial_state(self, initial_state: Optional[dict] = None):
+ """
+ Set the initial state to be applied to evaluations of the problem.
- # Set initial values
- self.x0 = self.parameters.initial_value()
+ Parameters
+ ----------
+ initial_state : dict, optional
+ A valid initial state (default: None).
+ """
+ self.initial_state = initial_state
@property
def n_parameters(self):
return len(self.parameters)
- def evaluate(self, x):
+ @property
+ def n_outputs(self):
+ return len(self.signal)
+
+ def evaluate(self, inputs: Inputs, eis=False):
"""
Evaluate the model with the given parameters and return the signal.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Inputs
+ Parameters for evaluation of the model.
Raises
------
@@ -88,15 +131,15 @@ def evaluate(self, x):
"""
raise NotImplementedError
- def evaluateS1(self, x):
+ def evaluateS1(self, inputs: Inputs):
"""
Evaluate the model with the given parameters and return the signal and
its derivatives.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Inputs
+ Parameters for evaluation of the model.
Raises
------
@@ -105,17 +148,6 @@ def evaluateS1(self, x):
"""
raise NotImplementedError
- def time_data(self):
- """
- Returns the time data.
-
- Returns
- -------
- np.ndarray
- The time array.
- """
- return self._time_data
-
def get_target(self):
"""
Return the target dataset.
@@ -127,13 +159,13 @@ def get_target(self):
"""
return self._target
- def set_target(self, dataset):
+ def set_target(self, dataset: Dataset):
"""
Set the target dataset.
Parameters
----------
- target : np.ndarray
+ target : Dataset
The target dataset array.
"""
if self.signal is None:
@@ -141,8 +173,25 @@ def set_target(self, dataset):
if not isinstance(dataset, Dataset):
raise ValueError("Dataset must be a pybop Dataset object.")
+ self._domain_data = dataset[self.domain]
self._target = {signal: dataset[signal] for signal in self.signal}
@property
def model(self):
return self._model
+
+ @property
+ def target(self):
+ return self._target
+
+ @property
+ def domain_data(self):
+ return self._domain_data
+
+ @domain_data.setter
+ def domain_data(self, domain_data):
+ self._domain_data = domain_data
+
+ @property
+ def dataset(self):
+ return self._dataset
diff --git a/pybop/problems/design_problem.py b/pybop/problems/design_problem.py
index 3217ca95d..2eac66ed1 100644
--- a/pybop/problems/design_problem.py
+++ b/pybop/problems/design_problem.py
@@ -1,6 +1,13 @@
+import warnings
+from typing import Optional
+
import numpy as np
-from pybop import BaseProblem
+from pybop import BaseModel, BaseProblem, Experiment, Parameters
+from pybop.models.empirical.base_ecm import ECircuitModel
+from pybop.models.lithium_ion.base_echem import EChemBaseModel
+from pybop.parameters.parameter import Inputs
+from pybop.parameters.parameter_set import set_formation_concentrations
class DesignProblem(BaseProblem):
@@ -21,81 +28,127 @@ class DesignProblem(BaseProblem):
Flag to indicate if the model parameters should be checked for feasibility each iteration (default: True).
signal : str, optional
The signal to fit (default: "Voltage [V]").
- additional_variables : List[str], optional
+ additional_variables : list[str], optional
Additional variables to observe and store in the solution (default additions are: ["Time [s]", "Current [A]"]).
- init_soc : float, optional
- Initial state of charge (default: None).
+ initial_state : dict, optional
+ A valid initial state (default: {"Initial SoC": 1.0}).
+ update_capacity : bool, optional
+ If True, the nominal capacity is updated with an approximate value for each design.
"""
def __init__(
self,
- model,
- parameters,
- experiment,
- check_model=True,
- signal=["Voltage [V]"],
- additional_variables=[],
- init_soc=None,
+ model: BaseModel,
+ parameters: Parameters,
+ experiment: Optional[Experiment],
+ check_model: bool = True,
+ signal: Optional[list[str]] = None,
+ additional_variables: Optional[list[str]] = None,
+ initial_state: Optional[dict] = None,
+ update_capacity: bool = False,
):
- # Add time and current and remove duplicates
- additional_variables.extend(["Time [s]", "Current [A]"])
- additional_variables = list(set(additional_variables))
-
super().__init__(
- parameters,
- model,
- check_model,
- signal,
- additional_variables,
- init_soc,
+ parameters, model, check_model, signal, additional_variables, initial_state
)
self.experiment = experiment
-
- # Build the model if required
- if experiment is not None:
- # Leave the build until later to apply the experiment
- self._model.parameters = self.parameters
-
- elif self._model._built_model is None:
- self._model.build(
- experiment=self.experiment,
- parameters=self.parameters,
- check_model=self.check_model,
- init_soc=self.init_soc,
+ self.warning_patterns = [
+ "Ah is greater than",
+ "Non-physical point encountered",
+ ]
+
+ # Set whether to update the nominal capacity along with the design parameters
+ if update_capacity is True:
+ nominal_capacity_warning = (
+ "The nominal capacity is approximated for each evaluation."
+ )
+ else:
+ nominal_capacity_warning = (
+ "The nominal capacity is fixed at the initial model value."
)
+ warnings.warn(nominal_capacity_warning, UserWarning, stacklevel=2)
+ self.update_capacity = update_capacity
- # Add an example dataset for plotting comparison
- sol = self.evaluate(self.x0)
- self._time_data = sol["Time [s]"]
+ # Add an example dataset for plot comparison
+ sol = self.evaluate(self.parameters.as_dict("initial"))
+ self._domain_data = sol["Time [s]"]
self._target = {key: sol[key] for key in self.signal}
self._dataset = None
- def evaluate(self, x):
+ def set_initial_state(self, initial_state: dict):
+ """
+ Set the initial state to be applied to evaluations of the problem.
+
+ Parameters
+ ----------
+ initial_state : dict, optional
+ A valid initial state (default: None).
+ """
+ if initial_state is None:
+ if isinstance(self.model, ECircuitModel):
+ initial_state = {"Initial SoC": self.model.parameter_set["Initial SoC"]}
+ else:
+ initial_state = {"Initial SoC": 1.0} # default value
+ elif "Initial open-circuit voltage [V]" in initial_state.keys():
+ warnings.warn(
+ "It is usually better to define an initial state of charge as the "
+ "initial_state for a DesignProblem because this state will scale with "
+ "design properties such as the capacity of the battery, as opposed to the "
+ "initial open-circuit voltage which may correspond to a different state "
+ "of charge for each design.",
+ UserWarning,
+ stacklevel=1,
+ )
+
+ self.initial_state = initial_state
+
+ def evaluate(self, inputs: Inputs):
"""
Evaluate the model with the given parameters and return the signal.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Inputs
+ Parameters for evaluation of the model.
Returns
-------
y : np.ndarray
- The model output y(t) simulated with inputs x.
+ The model output y(t) simulated with inputs.
"""
- sol = self._model.predict(
- inputs=x,
- experiment=self.experiment,
- init_soc=self.init_soc,
- )
-
- if sol == [np.inf]:
- return sol
-
- else:
- predictions = {}
- for signal in self.signal + self.additional_variables:
- predictions[signal] = sol[signal].data
-
- return predictions
+ inputs = self.parameters.verify(inputs)
+
+ # Update the active parameter set
+ parameter_set = self.model.parameter_set
+ if isinstance(self._model, EChemBaseModel):
+ set_formation_concentrations(parameter_set)
+ parameter_set.update(inputs)
+ if self.update_capacity:
+ approximate_capacity = self.model.approximate_capacity(parameter_set)
+ parameter_set.update({"Nominal cell capacity [A.h]": approximate_capacity})
+
+ try:
+ with warnings.catch_warnings():
+ for pattern in self.warning_patterns:
+ warnings.filterwarnings(
+ "error", category=UserWarning, message=pattern
+ )
+
+ sol = self._model.predict(
+ parameter_set=parameter_set,
+ experiment=self.experiment,
+ initial_state=self.initial_state,
+ )
+
+ # Catch infeasible solutions and return infinity
+ except (UserWarning, Exception) as e:
+ if self.verbose:
+ print(f"Ignoring this sample due to: {e}")
+ return {
+ signal: np.asarray(np.ones(2) * -np.inf)
+ for signal in [*self.signal, *self.additional_variables]
+ }
+
+ return {
+ signal: sol[signal].data
+ for signal in self.signal + self.additional_variables
+ }
diff --git a/pybop/problems/fitting_problem.py b/pybop/problems/fitting_problem.py
index 15d1ed7e2..16a1f4784 100644
--- a/pybop/problems/fitting_problem.py
+++ b/pybop/problems/fitting_problem.py
@@ -1,6 +1,10 @@
+import warnings
+from typing import Optional
+
import numpy as np
-from pybop import BaseProblem
+from pybop import BaseModel, BaseProblem, Dataset
+from pybop.parameters.parameter import Inputs, Parameters
class FittingProblem(BaseProblem):
@@ -17,109 +21,195 @@ class FittingProblem(BaseProblem):
An object or list of the parameters for the problem.
dataset : Dataset
Dataset object containing the data to fit the model to.
+ check_model : bool, optional
+ Flag to indicate if the model should be checked (default: True).
signal : str, optional
The variable used for fitting (default: "Voltage [V]").
- additional_variables : List[str], optional
+ additional_variables : list[str], optional
Additional variables to observe and store in the solution (default additions are: ["Time [s]"]).
- init_soc : float, optional
- Initial state of charge (default: None).
+ initial_state : dict, optional
+ A valid initial state, e.g. the initial open-circuit voltage (default: None).
+
+ Additional Attributes
+ ---------------------
+ dataset : dictionary
+ The dictionary from a Dataset object containing the signal keys and values to fit the model to.
+ domain_data : np.ndarray
+ The domain points in the dataset.
+ n_domain_data : int
+ The number of domain points.
+ target : np.ndarray
+ The target values of the signals.
"""
def __init__(
self,
- model,
- parameters,
- dataset,
- check_model=True,
- signal=["Voltage [V]"],
- additional_variables=[],
- init_soc=None,
+ model: BaseModel,
+ parameters: Parameters,
+ dataset: Dataset,
+ check_model: bool = True,
+ signal: Optional[list[str]] = None,
+ additional_variables: Optional[list[str]] = None,
+ initial_state: Optional[dict] = None,
):
- # Add time and remove duplicates
- additional_variables.extend(["Time [s]"])
- additional_variables = list(set(additional_variables))
-
super().__init__(
- parameters, model, check_model, signal, additional_variables, init_soc
+ parameters, model, check_model, signal, additional_variables, initial_state
)
self._dataset = dataset.data
- self.x = self.x0
+ self._n_parameters = len(self.parameters)
- # Check that the dataset contains time and current
- dataset.check(self.signal + ["Current function [A]"])
+ # Check that the dataset contains necessary variables
+ dataset.check(domain=self.domain, signal=[*self.signal, "Current function [A]"])
- # Unpack time and target data
- self._time_data = self._dataset["Time [s]"]
- self.n_time_data = len(self._time_data)
+ # Unpack domain and target data
+ self._domain_data = self._dataset[self.domain]
+ self.n_data = len(self._domain_data)
self.set_target(dataset)
- # Add useful parameters to model
- if model is not None:
- self._model.signal = self.signal
- self._model.additional_variables = self.additional_variables
- self._model.n_outputs = self.n_outputs
- self._model.n_time_data = self.n_time_data
-
+ if self._model is not None:
# Build the model from scratch
- if self._model._built_model is not None:
- self._model._model_with_set_params = None
- self._model._built_model = None
- self._model._built_initial_soc = None
- self._model._mesh = None
- self._model._disc = None
+ if self._model.built_model is not None:
+ self._model.clear()
self._model.build(
dataset=self._dataset,
parameters=self.parameters,
check_model=self.check_model,
- init_soc=self.init_soc,
+ initial_state=self.initial_state,
)
- def evaluate(self, x):
+ def set_initial_state(self, initial_state: Optional[dict] = None):
+ """
+ Set the initial state to be applied to evaluations of the problem.
+
+ Parameters
+ ----------
+ initial_state : dict, optional
+ A valid initial state (default: None).
+ """
+ if initial_state is not None and "Initial SoC" in initial_state.keys():
+ warnings.warn(
+ "It is usually better to define an initial open-circuit voltage as the "
+ "initial_state for a FittingProblem because this value can typically be "
+ "obtained from the data, unlike the intrinsic initial state of charge. "
+ "In the case where the fitting parameters do not change the OCV-SOC "
+ "relationship, the initial state of charge may be passed to the model "
+ 'using, for example, `model.set_initial_state({"Initial SoC": 1.0})` '
+ "before constructing the FittingProblem.",
+ UserWarning,
+ stacklevel=1,
+ )
+
+ self.initial_state = initial_state
+
+ def evaluate(self, inputs: Inputs) -> dict[str, np.ndarray[np.float64]]:
"""
Evaluate the model with the given parameters and return the signal.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Inputs
+ Parameters for evaluation of the model.
Returns
-------
y : np.ndarray
- The model output y(t) simulated with inputs x.
+ The simulated model output y(t) for self.eis == False, and y(ω) for self.eis == True for the given inputs.
+ """
+ inputs = self.parameters.verify(inputs)
+ if self.eis:
+ return self._evaluateEIS(inputs)
+ else:
+ try:
+ sol = self._model.simulate(
+ inputs=inputs,
+ t_eval=self._domain_data,
+ initial_state=self.initial_state,
+ )
+ except Exception as e:
+ if self.verbose:
+ print(f"Simulation error: {e}")
+ return {signal: self.failure_output for signal in self.signal}
+
+ return {
+ signal: sol[signal].data
+ for signal in (self.signal + self.additional_variables)
+ }
+
+ def _evaluateEIS(self, inputs: Inputs) -> dict[str, np.ndarray[np.float64]]:
"""
- if np.any(x != self.x) and self._model.rebuild_parameters:
- self.parameters.update(values=x)
- self._model.rebuild(parameters=self.parameters)
- self.x = x
+ Evaluate the model with the given parameters and return the signal.
- y = self._model.simulate(inputs=x, t_eval=self._time_data)
+ Parameters
+ ----------
+ inputs : Inputs
+ Parameters for evaluation of the model.
+
+ Returns
+ -------
+ y : np.ndarray
+ The simulated model output y(ω) for the given inputs.
+ """
+ try:
+ sol = self._model.simulateEIS(
+ inputs=inputs,
+ f_eval=self._domain_data,
+ initial_state=self.initial_state,
+ )
+ except Exception as e:
+ if self.verbose:
+ print(f"Simulation error: {e}")
+ return {signal: self.failure_output for signal in self.signal}
- return y
+ return sol
- def evaluateS1(self, x):
+ def evaluateS1(self, inputs: Inputs):
"""
Evaluate the model with the given parameters and return the signal and its derivatives.
Parameters
----------
- x : np.ndarray
- Parameter values to evaluate the model at.
+ inputs : Inputs
+ Parameters for evaluation of the model.
Returns
-------
- tuple
- A tuple containing the simulation result y(t) and the sensitivities dy/dx(t) evaluated
- with given inputs x.
+ tuple[dict, np.ndarray]
+ A tuple containing the simulation result y(t) as a dictionary and the sensitivities
+ dy/dx(t) evaluated with given inputs.
"""
- if self._model.rebuild_parameters:
- raise RuntimeError(
- "Gradient not available when using geometric parameters."
+ inputs = self.parameters.verify(inputs)
+ self.parameters.update(values=list(inputs.values()))
+
+ try:
+ sol = self._model.simulateS1(
+ inputs=inputs,
+ t_eval=self._domain_data,
+ initial_state=self.initial_state,
+ )
+ except Exception as e:
+ print(f"Error: {e}")
+ return {
+ signal: self.failure_output for signal in self.signal
+ }, self.failure_output
+
+ y = {signal: sol[signal].data for signal in self.signal}
+
+ # Extract the sensitivities and stack them along a new axis for each signal
+ dy = np.empty(
+ (
+ sol[self.signal[0]].data.shape[0],
+ self.n_outputs,
+ self._n_parameters,
)
-
- y, dy = self._model.simulateS1(
- inputs=x,
- t_eval=self._time_data,
)
- return (y, np.asarray(dy))
+ for i, signal in enumerate(self.signal):
+ dy[:, i, :] = np.stack(
+ [
+ sol[signal].sensitivities[key].toarray()[:, 0]
+ for key in self.parameters.keys()
+ ],
+ axis=-1,
+ )
+
+ return y, np.asarray(dy)
diff --git a/pybop/problems/multi_fitting_problem.py b/pybop/problems/multi_fitting_problem.py
new file mode 100644
index 000000000..72dd70c39
--- /dev/null
+++ b/pybop/problems/multi_fitting_problem.py
@@ -0,0 +1,141 @@
+from typing import Optional
+
+import numpy as np
+
+from pybop import BaseProblem, Dataset
+from pybop.parameters.parameter import Inputs, Parameters
+
+
+class MultiFittingProblem(BaseProblem):
+ """
+ Problem class for joining mulitple fitting problems into one combined fitting problem.
+
+ Extends `BaseProblem` in a similar way to FittingProblem but for multiple parameter
+ estimation problems, which must first be defined individually.
+
+ Additional Attributes
+ ---------------------
+ problems : pybop.FittingProblem
+ The individual PyBOP fitting problems.
+ """
+
+ def __init__(self, *args):
+ self.problems = []
+ models_to_check = []
+ for problem in args:
+ self.problems.append(problem)
+ if problem.model is not None:
+ models_to_check.append(problem.model)
+
+ # Check that there are no copies of the same model
+ if len(set(models_to_check)) < len(models_to_check):
+ raise ValueError("Make a new_copy of the model for each problem.")
+
+ # Compile the set of parameters, ignoring duplicates
+ combined_parameters = Parameters()
+ for problem in self.problems:
+ combined_parameters.join(problem.parameters)
+
+ # Combine the target datasets
+ combined_domain_data = []
+ combined_signal = []
+ for problem in self.problems:
+ for signal in problem.signal:
+ combined_domain_data.extend(problem.domain_data)
+ combined_signal.extend(problem.target[signal])
+
+ super().__init__(
+ parameters=combined_parameters,
+ model=None,
+ signal=["Combined signal"],
+ )
+
+ combined_dataset = Dataset(
+ {
+ self.domain: np.asarray(combined_domain_data),
+ "Combined signal": np.asarray(combined_signal),
+ }
+ )
+ self._dataset = combined_dataset.data
+ self.parameters.initial_value()
+
+ # Unpack domain and target data
+ self._domain_data = self._dataset[self.domain]
+ self.n_domain_data = len(self._domain_data)
+ self.set_target(combined_dataset)
+
+ def set_initial_state(self, initial_state: Optional[dict] = None):
+ """
+ Set the initial state to be applied to evaluations of the problem.
+
+ Parameters
+ ----------
+ initial_state : dict, optional
+ A valid initial state (default: None).
+ """
+ for problem in self.problems:
+ problem.set_initial_state(initial_state)
+
+ def evaluate(self, inputs: Inputs):
+ """
+ Evaluate the model with the given parameters and return the signal.
+
+ Parameters
+ ----------
+ inputs : Inputs
+ Parameters for evaluation of the model.
+
+ Returns
+ -------
+ y : np.ndarray
+ The model output y(t) simulated with given inputs.
+ """
+ inputs = self.parameters.verify(inputs)
+ self.parameters.update(values=list(inputs.values()))
+
+ combined_signal = []
+
+ for problem in self.problems:
+ problem_inputs = problem.parameters.as_dict()
+ signal_values = problem.evaluate(problem_inputs)
+
+ # Collect signals
+ for signal in problem.signal:
+ combined_signal.extend(signal_values[signal])
+
+ return {"Combined signal": np.asarray(combined_signal)}
+
+ def evaluateS1(self, inputs: Inputs):
+ """
+ Evaluate the model with the given parameters and return the signal and its derivatives.
+
+ Parameters
+ ----------
+ inputs : Inputs
+ Parameters for evaluation of the model.
+
+ Returns
+ -------
+ tuple[dict, np.ndarray]
+ A tuple containing the simulation result y(t) as a dictionary and the sensitivities
+ dy/dx(t) evaluated with given inputs.
+ """
+ inputs = self.parameters.verify(inputs)
+ self.parameters.update(values=list(inputs.values()))
+
+ combined_signal = []
+ all_derivatives = []
+
+ for problem in self.problems:
+ problem_inputs = problem.parameters.as_dict()
+ signal_values, dyi = problem.evaluateS1(problem_inputs)
+
+ # Collect signals and derivatives
+ for signal in problem.signal:
+ combined_signal.extend(signal_values[signal])
+ all_derivatives.append(dyi)
+
+ y = {"Combined signal": np.asarray(combined_signal)}
+ dy = np.concatenate(all_derivatives) if all_derivatives else None
+
+ return (y, dy)
diff --git a/pybop/plotting/__init__.py b/pybop/samplers/__init__.py
similarity index 100%
rename from pybop/plotting/__init__.py
rename to pybop/samplers/__init__.py
diff --git a/pybop/samplers/base_pints_sampler.py b/pybop/samplers/base_pints_sampler.py
new file mode 100644
index 000000000..b72352e0c
--- /dev/null
+++ b/pybop/samplers/base_pints_sampler.py
@@ -0,0 +1,291 @@
+import logging
+import time
+from functools import partial
+from typing import Optional
+
+import numpy as np
+from pints import (
+ MultiSequentialEvaluator,
+ ParallelEvaluator,
+ SequentialEvaluator,
+ SingleChainMCMC,
+)
+
+from pybop import BaseCost, BaseSampler, LogPosterior
+
+
+class BasePintsSampler(BaseSampler):
+ """
+ Base class for PINTS samplers.
+
+ This class extends the BaseSampler class to provide a common interface for
+ PINTS samplers. The class provides a sample() method that can be used to
+ sample from the posterior distribution using a PINTS sampler.
+ """
+
+ def __init__(
+ self,
+ log_pdf: LogPosterior,
+ sampler,
+ chains: int = 1,
+ warm_up=None,
+ x0=None,
+ cov0=0.1,
+ **kwargs,
+ ):
+ """
+ Initialise the base PINTS sampler.
+
+ Args:
+ log_pdf (pybop.LogPosterior or List[pybop.LogPosterior]): The distribution(s) to be sampled.
+ chains (int): Number of chains to be used.
+ sampler: The sampler class to be used.
+ x0 (list): Initial states for the chains.
+ cov0: Initial standard deviation for the chains.
+ kwargs: Additional keyword arguments.
+ """
+ super().__init__(log_pdf, x0, chains, cov0)
+
+ # Set kwargs
+ self._max_iterations = kwargs.get("max_iterations", 500)
+ self._log_to_screen = kwargs.get("log_to_screen", True)
+ self._log_filename = kwargs.get("log_filename", None)
+ self._initial_phase_iterations = kwargs.get("initial_phase_iterations", 250)
+ self._chains_in_memory = kwargs.get("chains_in_memory", True)
+ self._chain_files = kwargs.get("chain_files", None)
+ self._evaluation_files = kwargs.get("evaluation_files", None)
+ self._parallel = kwargs.get("parallel", False)
+ self._verbose = kwargs.get("verbose", False)
+ self.sampler = sampler
+ self.iter_time = float(0)
+ self._iteration = 0
+ self._loop_iters = 0
+ self._warm_up = warm_up
+
+ # Check log_pdf
+ if isinstance(self._log_pdf, BaseCost):
+ self._multi_log_pdf = False
+ else:
+ if len(self._log_pdf) != chains:
+ raise ValueError("Number of log pdf's must match number of chains")
+
+ first_pdf_parameters = self._log_pdf[0].n_parameters
+ for pdf in self._log_pdf:
+ if not isinstance(pdf, BaseCost):
+ raise ValueError("All log pdf's must be instances of BaseCost")
+ if pdf.n_parameters != first_pdf_parameters:
+ raise ValueError(
+ "All log pdf's must have the same number of parameters"
+ )
+
+ self._multi_log_pdf = True
+
+ # Single chain vs multiple chain samplers
+ self._single_chain = issubclass(self.sampler, SingleChainMCMC)
+
+ # Construct the samplers object
+ if self._single_chain:
+ self._n_samplers = self._n_chains
+ self._samplers = [self.sampler(x0, sigma0=self._cov0) for x0 in self._x0]
+ else:
+ self._n_samplers = 1
+ self._samplers = [self.sampler(self._n_chains, self._x0, self._cov0)]
+
+ # Check for sensitivities from sampler and set evaluation
+ self._needs_sensitivities = self._samplers[0].needs_sensitivities()
+
+ # Check initial phase
+ self._initial_phase = self._samplers[0].needs_initial_phase()
+ if self._initial_phase:
+ self.set_initial_phase_iterations()
+
+ # Parallelisation (Might be able to move into parent class)
+ self._n_workers = 1
+ self.set_parallel(self._parallel)
+
+ def run(self) -> Optional[np.ndarray]:
+ """
+ Executes the Monte Carlo sampling process and generates samples
+ from the posterior distribution.
+
+ This method orchestrates the entire sampling process, managing
+ iterations, evaluations, logging, and stopping criteria. It
+ initialises the necessary structures, handles both single and
+ multi-chain scenarios, and manages parallel or sequential
+ evaluation based on the configuration.
+
+ Returns:
+ np.ndarray: A numpy array containing the samples from the
+ posterior distribution if chains are stored in memory,
+ otherwise returns None.
+
+ Raises:
+ ValueError: If no stopping criterion is set (i.e.,
+ _max_iterations is None).
+
+ Details:
+ - Checks and ensures at least one stopping criterion is set.
+ - Initialises iterations, evaluations, and other required
+ structures.
+ - Sets up the evaluator (parallel or sequential) based on the
+ configuration.
+ - Handles the initial phase, if applicable, and manages
+ intermediate steps in the sampling process.
+ - Logs progress and relevant information based on the logging
+ configuration.
+ - Iterates through the sampling process, evaluating the log
+ PDF, updating chains, and managing the stopping criteria.
+ - Finalises and returns the collected samples, or None if
+ chains are not stored in memory.
+ """
+
+ self._initialise_logging()
+ self._check_stopping_criteria()
+
+ # Initialise iterations and evaluations
+ self._iteration = 0
+
+ evaluator = self._create_evaluator()
+ self._check_initial_phase()
+ self._initialise_storage()
+
+ running = True
+ while running:
+ if (
+ self._initial_phase
+ and self._iteration == self._initial_phase_iterations
+ ):
+ self._end_initial_phase()
+
+ xs = self._ask_for_samples()
+ self.fxs = evaluator.evaluate(xs)
+ self._evaluations += len(self.fxs)
+
+ if self._single_chain:
+ self._process_single_chain()
+ self._intermediate_step = min(self._n_samples) <= self._iteration
+ else:
+ self._process_multi_chain()
+
+ if self._intermediate_step:
+ continue
+
+ self._iteration += 1
+ if self._log_to_screen and self._verbose:
+ if self._iteration <= 10 or self._iteration % 50 == 0:
+ timing_iterations = self._iteration - self._loop_iters
+ elapsed_time = time.time() - self.iter_time
+ iterations_per_second = (
+ timing_iterations / elapsed_time if elapsed_time > 0 else 0
+ )
+ logging.info(
+ f"| Iteration: {self._iteration} | Iter/s: {iterations_per_second: .2f} |"
+ )
+ self.iter_time = time.time()
+ self._loop_iters = self._iteration
+ if self._max_iterations and self._iteration >= self._max_iterations:
+ running = False
+
+ self._finalise_logging()
+
+ if self._warm_up:
+ self._samples = self._samples[:, self._warm_up :, :]
+
+ return self._samples if self._chains_in_memory else None
+
+ def _process_single_chain(self):
+ self.fxs_iterator = iter(self.fxs)
+ for i in list(self._active):
+ reply = self._samplers[i].tell(next(self.fxs_iterator))
+ if reply:
+ y, fy, accepted = reply
+ y_store = self._inverse_transform(
+ y, self._log_pdf[i] if self._multi_log_pdf else self._log_pdf
+ )
+ if self._chains_in_memory:
+ self._samples[i][self._n_samples[i]] = y_store
+ else:
+ self._samples[i] = y_store
+
+ if accepted:
+ self._sampled_logpdf[i] = (
+ fy[0] if self._needs_sensitivities else fy
+ ) # Not storing sensitivities
+ if self._prior:
+ self._sampled_prior[i] = self._prior(y)
+
+ e = self._sampled_logpdf[i]
+ if self._prior:
+ e = [
+ e,
+ self._sampled_logpdf[i] - self._sampled_prior[i],
+ self._sampled_prior[i],
+ ]
+
+ self._evaluations[i][self._n_samples[i]] = e
+ self._n_samples[i] += 1
+ if self._n_samples[i] == self._max_iterations:
+ self._active.remove(i)
+
+ def _process_multi_chain(self):
+ reply = self._samplers[0].tell(self.fxs)
+ self._intermediate_step = reply is None
+ if reply:
+ ys, fys, accepted = reply
+ ys_store = np.asarray(
+ [self._inverse_transform(y, self._log_pdf) for y in ys]
+ )
+ if self._chains_in_memory:
+ self._samples[:, self._iteration] = ys_store
+ else:
+ self._samples = ys_store
+
+ es = []
+ for i, _y in enumerate(ys):
+ if accepted[i]:
+ self._sampled_logpdf[i] = (
+ fys[0][i] if self._needs_sensitivities else fys[i]
+ )
+ if self._prior:
+ self._sampled_prior[i] = self._prior(ys[i])
+ e = self._sampled_logpdf[i]
+ if self._prior:
+ e = [
+ e,
+ self._sampled_logpdf[i] - self._sampled_prior[i],
+ self._sampled_prior[i],
+ ]
+ es.append(e)
+
+ for i, e in enumerate(es):
+ self._evaluations[i, self._iteration] = e
+
+ def _check_stopping_criteria(self):
+ has_stopping_criterion = False
+ has_stopping_criterion |= self._max_iterations is not None
+ if not has_stopping_criterion:
+ raise ValueError("At least one stopping criterion must be set.")
+
+ def _create_evaluator(self):
+ common_args = {"apply_transform": True}
+
+ if self._needs_sensitivities:
+ common_args["calculate_grad"] = True
+ if not self._multi_log_pdf:
+ f = partial(self._log_pdf, **common_args)
+ else:
+ f = [partial(pdf, **common_args) for pdf in self._log_pdf]
+
+ if self._parallel:
+ if not self._multi_log_pdf:
+ self._n_workers = min(self._n_workers, self._n_chains)
+ return ParallelEvaluator(f, n_workers=self._n_workers)
+ else:
+ return (
+ SequentialEvaluator(f)
+ if not self._multi_log_pdf
+ else MultiSequentialEvaluator(f)
+ )
+
+ def _inverse_transform(self, y, log_pdf):
+ return log_pdf.transformation.to_model(y) if log_pdf.transformation else y
diff --git a/pybop/samplers/base_sampler.py b/pybop/samplers/base_sampler.py
new file mode 100644
index 000000000..b9a6cffd2
--- /dev/null
+++ b/pybop/samplers/base_sampler.py
@@ -0,0 +1,188 @@
+import logging
+from typing import Union
+
+import numpy as np
+from pints import ParallelEvaluator
+
+from pybop import LogPosterior
+
+
+class BaseSampler:
+ """
+ Base class for Monte Carlo samplers.
+ """
+
+ def __init__(
+ self, log_pdf: LogPosterior, x0, chains: int, cov0: Union[np.ndarray, float]
+ ):
+ """
+ Initialise the base sampler.
+
+ Parameters
+ ----------------
+ log_pdf (pybop.LogPosterior or List[pybop.LogPosterior]): The posterior or PDF to be sampled.
+ chains (int): Number of chains to be used.
+ x0: List-like initial condition for Monte Carlo sampling.
+ cov0: The covariance matrix to be sampled.
+ """
+ self._log_pdf = log_pdf
+ self._cov0 = cov0
+
+ # Number of chains
+ self._n_chains = chains
+ if self._n_chains < 1:
+ raise ValueError("Number of chains must be greater than 0")
+
+ # Set up parameters based on log_pdf
+ if isinstance(log_pdf, LogPosterior):
+ self.parameters = log_pdf.parameters
+ self.n_parameters = log_pdf.n_parameters
+ elif isinstance(log_pdf, (list, np.ndarray)) and isinstance(
+ log_pdf[0], LogPosterior
+ ):
+ self.parameters = log_pdf[0].parameters
+ self.n_parameters = log_pdf[0].n_parameters
+ else:
+ raise ValueError(
+ "log_pdf must be a LogPosterior or List[LogPosterior]"
+ ) # TODO: Update for more general sampling
+
+ # Check initial conditions
+ if x0 is not None and len(x0) != self.n_parameters:
+ raise ValueError("x0 must have the same number of parameters as log_pdf")
+
+ # Set initial values, if x0 is None, initial values are unmodified.
+ self.parameters.update(initial_values=x0 if x0 is not None else None)
+ self._x0 = self.parameters.reset_initial_value(apply_transform=True).reshape(
+ 1, -1
+ )
+
+ if len(self._x0) != self._n_chains or len(self._x0) == 1:
+ self._x0 = np.tile(self._x0, (self._n_chains, 1))
+
+ def run(self) -> np.ndarray:
+ """
+ Sample from the posterior distribution.
+
+ Returns:
+ np.ndarray: Samples from the posterior distribution.
+ """
+ raise NotImplementedError
+
+ def set_initial_phase_iterations(self, iterations=250):
+ """
+ Set the number of iterations for the initial phase of the sampler.
+
+ Args:
+ iterations (int): Number of iterations for the initial phase.
+ """
+ self._initial_phase_iterations = iterations
+
+ def set_max_iterations(self, iterations=500):
+ """
+ Set the maximum number of iterations for the sampler.
+
+ Args:
+ iterations (int): Maximum number of iterations.
+ """
+ iterations = int(iterations)
+ if iterations < 1:
+ raise ValueError("Number of iterations must be greater than 0")
+
+ self._max_iterations = iterations
+
+ def set_parallel(self, parallel=False):
+ """
+ Enable or disable parallel evaluation.
+ Credit: PINTS
+
+ Parameters
+ ----------
+ parallel : bool or int, optional
+ If True, use as many worker processes as there are CPU cores. If an integer, use that many workers.
+ If False or 0, disable parallelism (default: False).
+ """
+ if parallel is True:
+ self._parallel = True
+ self._n_workers = ParallelEvaluator.cpu_count()
+ elif parallel >= 1:
+ self._parallel = True
+ self._n_workers = int(parallel)
+ else:
+ self._parallel = False
+ self._n_workers = 1
+
+ def _ask_for_samples(self):
+ if self._single_chain:
+ return [self._samplers[i].ask() for i in self._active]
+ else:
+ return self._samplers[0].ask()
+
+ def _check_initial_phase(self):
+ # Set initial phase if needed
+ if self._initial_phase:
+ for sampler in self._samplers:
+ sampler.set_initial_phase(True)
+
+ def _end_initial_phase(self):
+ for sampler in self._samplers:
+ sampler.set_initial_phase(False)
+ if self._log_to_screen:
+ logging.info("Initial phase completed.")
+
+ def _initialise_storage(self):
+ self._prior = None
+ if isinstance(self._log_pdf, LogPosterior):
+ self._prior = self._log_pdf.prior
+
+ # Storage of the received samples
+ self._sampled_logpdf = np.zeros(self._n_chains)
+ self._sampled_prior = np.zeros(self._n_chains)
+
+ # Pre-allocate arrays for chain storage
+ self._samples = np.zeros(
+ (self._n_chains, self._max_iterations, self.n_parameters)
+ )
+
+ # Pre-allocate arrays for evaluation storage
+ if self._prior:
+ # Store posterior, likelihood, prior
+ self._evaluations = np.zeros((self._n_chains, self._max_iterations, 3))
+ else:
+ # Store pdf
+ self._evaluations = np.zeros((self._n_chains, self._max_iterations))
+
+ # From PINTS:
+ # Some samplers need intermediate steps, where `None` is returned instead
+ # of a sample. But samplers can run asynchronously, so that one can return
+ # `None` while another returns a sample. To deal with this, we maintain a
+ # list of 'active' samplers that have not reached `max_iterations`,
+ # and store the number of samples so far in each chain.
+ if self._single_chain:
+ self._active = list(range(self._n_chains))
+ self._n_samples = [0] * self._n_chains
+
+ def _initialise_logging(self):
+ logging.basicConfig(format="%(message)s", level=logging.INFO)
+
+ if self._log_to_screen:
+ logging.info("Using " + str(self._samplers[0].name()))
+ logging.info("Generating " + str(self._n_chains) + " chains.")
+ if self._parallel:
+ logging.info(
+ f"Running in parallel with {self._n_workers} worker processes."
+ )
+ else:
+ logging.info("Running in sequential mode.")
+ if self._chain_files:
+ logging.info("Writing chains to " + self._chain_files[0] + " etc.")
+ if self._evaluation_files:
+ logging.info(
+ "Writing evaluations to " + self._evaluation_files[0] + " etc."
+ )
+
+ def _finalise_logging(self):
+ if self._log_to_screen:
+ logging.info(
+ f"Halting: Maximum number of iterations ({self._iteration}) reached."
+ )
diff --git a/pybop/samplers/mcmc_sampler.py b/pybop/samplers/mcmc_sampler.py
new file mode 100644
index 000000000..933c36957
--- /dev/null
+++ b/pybop/samplers/mcmc_sampler.py
@@ -0,0 +1,105 @@
+from pybop import AdaptiveCovarianceMCMC
+
+
+class MCMCSampler:
+ """
+ A high-level class for MCMC sampling.
+
+ This class provides an alternative API to the `PyBOP.Sampler()` API,
+ specifically allowing for single user-friendly interface for the
+ optimisation process.
+ """
+
+ def __init__(
+ self,
+ log_pdf,
+ chains,
+ sampler=AdaptiveCovarianceMCMC,
+ x0=None,
+ cov0=None,
+ **kwargs,
+ ):
+ """
+ Initialize the MCMCSampler.
+
+ Parameters
+ ----------
+ log_pdf : pybop.BaseCost
+ The log-probability density function to be sampled.
+ chains : int
+ The number of MCMC chains to be run.
+ sampler : pybop.MCMCSampler, optional
+ The MCMC sampler class to be used. Defaults to `pybop.MCMC`.
+ x0 : np.ndarray, optional
+ Initial positions for the MCMC chains. Defaults to None.
+ cov0 : np.ndarray, optional
+ Initial step sizes for the MCMC chains. Defaults to None.
+ **kwargs : dict
+ Additional keyword arguments to pass to the sampler.
+
+ Raises
+ ------
+ ValueError
+ If the sampler could not be constructed due to an exception.
+ """
+
+ self.sampler = sampler(log_pdf, chains, x0=x0, sigma0=cov0, **kwargs)
+
+ def run(self):
+ """
+ Run the MCMC sampling process.
+
+ Returns
+ -------
+ list
+ The result of the sampling process.
+ """
+ return self.sampler.run()
+
+ def __getattr__(self, attr):
+ """
+ Delegate attribute access to the underlying sampler if the attribute
+ is not found in the MCMCSampler instance.
+
+ Parameters
+ ----------
+ attr : str
+ The attribute name to be accessed.
+
+ Returns
+ -------
+ Any
+ The attribute value from the underlying sampler.
+
+ Raises
+ ------
+ AttributeError
+ If the attribute is not found in both the MCMCSampler instance
+ and the underlying sampler.
+ """
+ if "sampler" in self.__dict__ and hasattr(self.sampler, attr):
+ return getattr(self.sampler, attr)
+ raise AttributeError(
+ f"'{self.__class__.__name__}' object has no attribute '{attr}'"
+ )
+
+ def __setattr__(self, name: str, value) -> None:
+ """
+ Delegate attribute setting to the underlying sampler if the attribute
+ exists in the sampler and not in the MCMCSampler instance.
+
+ Parameters
+ ----------
+ name : str
+ The attribute name to be set.
+ value : Any
+ The value to be set to the attribute.
+ """
+ if (
+ name in self.__dict__
+ or "sampler" not in self.__dict__
+ or not hasattr(self.sampler, name)
+ ):
+ object.__setattr__(self, name, value)
+ else:
+ setattr(self.sampler, name, value)
diff --git a/pybop/samplers/mcmc_summary.py b/pybop/samplers/mcmc_summary.py
new file mode 100644
index 000000000..c67a3b0fd
--- /dev/null
+++ b/pybop/samplers/mcmc_summary.py
@@ -0,0 +1,213 @@
+import numpy as np
+import pints
+import scipy
+
+from pybop.plot import PlotlyManager
+
+
+class PosteriorSummary:
+ def __init__(self, chains: np.ndarray, significant_digits: int = 4):
+ """
+ Initialize with chains of posterior samples.
+
+ Parameters:
+ chains (np.ndarray): List where each element is a NumPy array representing
+ a chain of posterior samples for a parameter.
+ significant_digits (int): Number of significant digits to display for summary statistics.
+ """
+ self.chains = chains
+ self.all_samples = np.concatenate(chains, axis=0)
+ self.num_parameters = self.chains.shape[2]
+ self.sig_digits = significant_digits
+ self.get_summary_statistics()
+ self.go = PlotlyManager().go
+
+ def signif(self, x, p: int):
+ """
+ Rounds array `x` to `p` significant digits.
+ """
+ x = np.asarray(x)
+ x_positive = np.where(np.isfinite(x) & (x != 0), np.abs(x), 10 ** (p - 1))
+ mags = 10 ** (p - 1 - np.floor(np.log10(x_positive)))
+ return np.round(x * mags) / mags
+
+ def _calculate_statistics(self, fun, attr_name, *args, **kwargs):
+ """
+ Calculate statistics from callable `fun`.
+ """
+ stat = fun(self.all_samples, *args, **kwargs)
+ if fun is scipy.stats.mode:
+ setattr(self, attr_name, stat[0])
+ else:
+ setattr(self, attr_name, stat)
+ return self.signif(stat, self.sig_digits)
+
+ def get_summary_statistics(self):
+ """
+ Calculate summary statistics for the posterior samples.
+
+ Returns:
+ dict: Summary statistics including mean, median, standard deviation, and 95% credible interval.
+ """
+ summary_funs = {
+ "mean": np.mean,
+ "median": np.median,
+ "mode": scipy.stats.mode,
+ "max": np.max,
+ "min": np.min,
+ "std": np.std,
+ "ci_lower": lambda x, axis: np.percentile(x, 2.5, axis=axis),
+ "ci_upper": lambda x, axis: np.percentile(x, 97.5, axis=axis),
+ }
+
+ return {
+ key: self._calculate_statistics(func, key, axis=0)
+ for key, func in summary_funs.items()
+ }
+
+ def plot_trace(self):
+ """
+ Plot trace plots for the posterior samples.
+ """
+
+ for i in range(self.num_parameters):
+ fig = self.go.Figure()
+
+ for j, chain in enumerate(self.chains):
+ fig.add_trace(
+ self.go.Scatter(y=chain[:, i], mode="lines", name=f"Chain {j}")
+ )
+
+ fig.update_layout(
+ title=f"Parameter {i} Trace Plot",
+ xaxis_title="Sample Index",
+ yaxis_title="Value",
+ )
+ fig.show()
+
+ def plot_chains(self):
+ """
+ Plot posterior distributions for each chain.
+ """
+ fig = self.go.Figure()
+
+ for i, chain in enumerate(self.chains):
+ for j in range(chain.shape[1]):
+ fig.add_trace(
+ self.go.Histogram(
+ x=chain[:, j],
+ name=f"Chain {i} - Parameter {j}",
+ opacity=0.75,
+ )
+ )
+
+ fig.add_shape(
+ type="line",
+ x0=self.mean[j],
+ y0=0,
+ x1=self.mean[j],
+ y1=self.max[j],
+ name=f"Mean - Parameter {j}",
+ line=dict(color="Black", width=1.5, dash="dash"),
+ )
+
+ fig.update_layout(
+ barmode="overlay",
+ title="Posterior Distribution",
+ xaxis_title="Value",
+ yaxis_title="Density",
+ )
+ fig.show()
+
+ def plot_posterior(self):
+ """
+ Plot the summed posterior distribution across chains.
+ """
+ fig = self.go.Figure()
+
+ for j in range(self.all_samples.shape[1]):
+ histogram = self.go.Histogram(
+ x=self.all_samples[:, j],
+ name=f"Parameter {j}",
+ opacity=0.75,
+ )
+ fig.add_trace(histogram)
+ fig.add_vline(
+ x=self.mean[j], line_width=3, line_dash="dash", line_color="black"
+ )
+
+ fig.update_layout(
+ barmode="overlay",
+ title="Posterior Distribution",
+ xaxis_title="Value",
+ yaxis_title="Density",
+ )
+ fig.show()
+
+ def summary_table(self):
+ """
+ Display summary statistics in a table.
+ """
+ summary_stats = self.get_summary_statistics()
+
+ header = ["Statistic", "Value"]
+ values = [
+ ["Mean", summary_stats["mean"]],
+ ["Median", summary_stats["median"]],
+ ["Standard Deviation", summary_stats["std"]],
+ ["95% CI Lower", summary_stats["ci_lower"]],
+ ["95% CI Upper", summary_stats["ci_upper"]],
+ ]
+
+ fig = self.go.Figure(
+ data=[
+ self.go.Table(
+ header=dict(values=header),
+ cells=dict(
+ values=[[row[0] for row in values], [row[1] for row in values]]
+ ),
+ )
+ ]
+ )
+
+ fig.update_layout(title="Summary Statistics")
+ fig.show()
+
+ def autocorrelation(self, x: np.ndarray) -> np.ndarray:
+ """
+ Computes the autocorrelation (Pearson correlation coefficient)
+ of a numpy array representing samples.
+ """
+ x = (x - x.mean()) / (x.std() * np.sqrt(len(x)) + np.finfo(float).eps)
+ cor = np.correlate(x, x, mode="full")
+ return cor[len(x) : -1]
+
+ def _autocorrelate_negative(self, autocorrelation):
+ """
+ Returns the index of the first negative entry in ``autocorrelation``, or
+ ``len(autocorrelation)`` if a negative entry is not found.
+ """
+ negative_indices = np.where(autocorrelation < 0)[0]
+ return (
+ negative_indices[0] if negative_indices.size > 0 else len(autocorrelation)
+ )
+
+ def effective_sample_size(self):
+ """
+ Computes the effective sample size for each parameter in each chain.
+ """
+
+ if self.all_samples.shape[0] < 2:
+ raise ValueError("At least two samples must be given.")
+
+ ess = []
+ for _, chain in enumerate(self.chains):
+ for j in range(self.num_parameters):
+ rho = self.autocorrelation(chain[:, j])
+ T = self._autocorrelate_negative(rho)
+ ess.append(len(chain[:, j]) / (1 + 2 * rho[:T].sum()))
+
+ return ess
+
+ def rhat(self):
+ return pints.rhat(self.chains)
diff --git a/pybop/samplers/pints_samplers.py b/pybop/samplers/pints_samplers.py
new file mode 100644
index 000000000..481a5eaeb
--- /dev/null
+++ b/pybop/samplers/pints_samplers.py
@@ -0,0 +1,607 @@
+from pints import MALAMCMC as PintsMALAMCMC
+from pints import AdaptiveCovarianceMCMC as PintsAdaptiveCovarianceMCMC
+from pints import DifferentialEvolutionMCMC as PintsDifferentialEvolutionMCMC
+from pints import DramACMC as PintsDramACMC
+from pints import DreamMCMC as PintsDREAM
+from pints import EmceeHammerMCMC as PintsEmceeHammerMCMC
+from pints import HaarioACMC as PintsHaarioACMC
+from pints import HaarioBardenetACMC as PintsHaarioBardenetACMC
+from pints import HamiltonianMCMC as PintsHamiltonianMCMC
+from pints import MetropolisRandomWalkMCMC as PintsMetropolisRandomWalkMCMC
+from pints import MonomialGammaHamiltonianMCMC as PintsMonomialGammaHamiltonianMCMC
+from pints import NoUTurnMCMC
+from pints import PopulationMCMC as PintsPopulationMCMC
+from pints import RaoBlackwellACMC as PintsRaoBlackwellACMC
+from pints import RelativisticMCMC as PintsRelativisticMCMC
+from pints import SliceDoublingMCMC as PintsSliceDoublingMCMC
+from pints import SliceRankShrinkingMCMC as PintsSliceRankShrinkingMCMC
+from pints import SliceStepoutMCMC as PintsSliceStepoutMCMC
+
+from pybop import BasePintsSampler
+
+
+class NUTS(BasePintsSampler):
+ """
+ Implements the No-U-Turn Sampler (NUTS) algorithm.
+
+ This class extends the NUTS sampler from the PINTS library.
+ NUTS is a Markov chain Monte Carlo (MCMC) method for sampling
+ from a probability distribution. It is an extension of the
+ Hamiltonian Monte Carlo (HMC) method, which uses a dynamic
+ integration time to explore the parameter space more efficiently.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the NUTS sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf, NoUTurnMCMC, chains=chains, x0=x0, cov0=cov0, **kwargs
+ )
+
+
+class DREAM(BasePintsSampler):
+ """
+ Implements the DiffeRential Evolution Adaptive Metropolis (DREAM) algorithm.
+
+ This class extends the DREAM sampler from the PINTS library.
+ DREAM is a Markov chain Monte Carlo (MCMC) method for sampling
+ from a probability distribution. It combines the Differential
+ Evolution (DE) algorithm with the Adaptive Metropolis (AM) algorithm
+ to explore the parameter space more efficiently.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the DREAM sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(log_pdf, PintsDREAM, chains=chains, x0=x0, cov0=cov0, **kwargs)
+
+
+class AdaptiveCovarianceMCMC(BasePintsSampler):
+ """
+ Implements the Adaptive Covariance Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Adaptive Covariance MCMC sampler from the PINTS library.
+ This MCMC method adapts the proposal distribution covariance matrix
+ during the sampling process to improve efficiency and convergence.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Adaptive Covariance MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsAdaptiveCovarianceMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class DifferentialEvolutionMCMC(BasePintsSampler):
+ """
+ Implements the Differential Evolution Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Differential Evolution MCMC sampler from the PINTS library.
+ This MCMC method uses the Differential Evolution algorithm to explore the
+ parameter space more efficiently by evolving a population of chains.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Differential Evolution MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsDifferentialEvolutionMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class DramACMC(BasePintsSampler):
+ """
+ Implements the Delayed Rejection Adaptive Metropolis (DRAM) Adaptive Covariance Markov Chain
+ Monte Carlo (MCMC) algorithm.
+
+ This class extends the DRAM Adaptive Covariance MCMC sampler from the PINTS library.
+ This MCMC method combines Delayed Rejection with Adaptive Metropolis to enhance
+ the efficiency and robustness of the sampling process.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the DRAM Adaptive Covariance MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsDramACMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class EmceeHammerMCMC(BasePintsSampler):
+ """
+ Implements the Emcee Hammer Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Emcee Hammer MCMC sampler from the PINTS library.
+ The Emcee Hammer is an affine-invariant ensemble sampler for MCMC, which is
+ particularly effective for high-dimensional parameter spaces.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Emcee Hammer MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsEmceeHammerMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class HaarioACMC(BasePintsSampler):
+ """
+ Implements the Haario Adaptive Covariance Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Haario Adaptive Covariance MCMC sampler from the PINTS library.
+ This MCMC method adapts the proposal distribution's covariance matrix based on the
+ history of the chain, improving sampling efficiency and convergence.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Haario Adaptive Covariance MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsHaarioACMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class HaarioBardenetACMC(BasePintsSampler):
+ """
+ Implements the Haario-Bardenet Adaptive Covariance Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Haario-Bardenet Adaptive Covariance MCMC sampler from the PINTS library.
+ This MCMC method combines the adaptive covariance approach with an additional
+ mechanism to improve performance in high-dimensional parameter spaces.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Haario-Bardenet Adaptive Covariance MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsHaarioBardenetACMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class HamiltonianMCMC(BasePintsSampler):
+ """
+ Implements the Hamiltonian Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Hamiltonian MCMC sampler from the PINTS library.
+ This MCMC method uses Hamiltonian dynamics to propose new states,
+ allowing for efficient exploration of high-dimensional parameter spaces.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Hamiltonian MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsHamiltonianMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class MALAMCMC(BasePintsSampler):
+ """
+ Implements the Metropolis Adjusted Langevin Algorithm (MALA) Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the MALA MCMC sampler from the PINTS library.
+ This MCMC method combines the Metropolis-Hastings algorithm with
+ Langevin dynamics to improve sampling efficiency and convergence.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the MALA MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsMALAMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class MetropolisRandomWalkMCMC(BasePintsSampler):
+ """
+ Implements the Metropolis Random Walk Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Metropolis Random Walk MCMC sampler from the PINTS library.
+ This classic MCMC method uses a simple random walk proposal distribution
+ and the Metropolis-Hastings acceptance criterion.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Metropolis Random Walk MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsMetropolisRandomWalkMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class MonomialGammaHamiltonianMCMC(BasePintsSampler):
+ """
+ Implements the Monomial Gamma Hamiltonian Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Monomial Gamma Hamiltonian MCMC sampler from the PINTS library.
+ This MCMC method uses Hamiltonian dynamics with a monomial gamma distribution
+ for efficient exploration of the parameter space.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Monomial Gamma Hamiltonian MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsMonomialGammaHamiltonianMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class PopulationMCMC(BasePintsSampler):
+ """
+ Implements the Population Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Population MCMC sampler from the PINTS library.
+ This MCMC method uses a population of chains at different temperatures
+ to explore the parameter space more efficiently and avoid local minima.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Population MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsPopulationMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class RaoBlackwellACMC(BasePintsSampler):
+ """
+ Implements the Rao-Blackwell Adaptive Covariance Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Rao-Blackwell Adaptive Covariance MCMC sampler from the PINTS library.
+ This MCMC method improves sampling efficiency by combining Rao-Blackwellisation
+ with adaptive covariance strategies.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Rao-Blackwell Adaptive Covariance MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsRaoBlackwellACMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class RelativisticMCMC(BasePintsSampler):
+ """
+ Implements the Relativistic Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Relativistic MCMC sampler from the PINTS library.
+ This MCMC method uses concepts from relativistic mechanics to propose new states,
+ allowing for efficient exploration of the parameter space.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Relativistic MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsRelativisticMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class SliceDoublingMCMC(BasePintsSampler):
+ """
+ Implements the Slice Doubling Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Slice Doubling MCMC sampler from the PINTS library.
+ This MCMC method uses slice sampling with a doubling procedure to propose new states,
+ allowing for efficient exploration of the parameter space.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Slice Doubling MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsSliceDoublingMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class SliceRankShrinkingMCMC(BasePintsSampler):
+ """
+ Implements the Slice Rank Shrinking Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Slice Rank Shrinking MCMC sampler from the PINTS library.
+ This MCMC method uses slice sampling with a rank shrinking procedure to propose new states,
+ allowing for efficient exploration of the parameter space.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Slice Rank Shrinking MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsSliceRankShrinkingMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
+
+
+class SliceStepoutMCMC(BasePintsSampler):
+ """
+ Implements the Slice Stepout Markov Chain Monte Carlo (MCMC) algorithm.
+
+ This class extends the Slice Stepout MCMC sampler from the PINTS library.
+ This MCMC method uses slice sampling with a stepout procedure to propose new states,
+ allowing for efficient exploration of the parameter space.
+
+ Parameters
+ ----------
+ log_pdf : (pybop.LogPosterior or List[pybop.LogPosterior])
+ A function that calculates the log-probability density.
+ chains : int
+ The number of chains to run.
+ x0 : ndarray, optional
+ Initial positions for the chains.
+ cov0 : ndarray, optional
+ Initial covariance matrix.
+ **kwargs
+ Additional arguments to pass to the Slice Stepout MCMC sampler.
+ """
+
+ def __init__(self, log_pdf, chains, x0=None, cov0=None, **kwargs):
+ super().__init__(
+ log_pdf,
+ PintsSliceStepoutMCMC,
+ chains=chains,
+ x0=x0,
+ cov0=cov0,
+ **kwargs,
+ )
diff --git a/pybop/transformation/base_transformation.py b/pybop/transformation/base_transformation.py
new file mode 100644
index 000000000..a36ba8081
--- /dev/null
+++ b/pybop/transformation/base_transformation.py
@@ -0,0 +1,128 @@
+from abc import ABC, abstractmethod
+from collections.abc import Sequence
+from typing import Union
+
+import numpy as np
+
+
+class Transformation(ABC):
+ """
+ Abstract base class for transformations between two parameter spaces: the model
+ parameter space and a search space.
+
+ If `transform` is an instance of a `Transformation` class, you can apply the
+ transformation of a parameter vector from the model space `p` to the search
+ space `q` using `q = transform.to_search(p)` and the inverse using `p = transform.to_model(q)`.
+
+ Based on pints.transformation method.
+
+ References
+ ----------
+ .. [1] Erik Jorgensen and Asger Roer Pedersen. "How to Obtain Those Nasty Standard Errors From Transformed Data."
+ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.47.9023
+ .. [2] Kaare Brandt Petersen and Michael Syskind Pedersen. "The Matrix Cookbook." 2012.
+ """
+
+ # ---- To be implemented with Monte Carlo PR ------ #
+ # def convert_log_prior(self, log_prior):
+ # """Returns a transformed log-prior class."""
+ # return TransformedLogPrior(log_prior, self)
+
+ def convert_covariance_matrix(self, cov: np.ndarray, q: np.ndarray) -> np.ndarray:
+ """
+ Converts a covariance matrix `covariance` from the model space to the search space
+ around a parameter vector `q` in the search space.
+ """
+ jac_inv = np.linalg.pinv(self.jacobian(q))
+ return jac_inv @ cov @ jac_inv.T
+
+ def convert_standard_deviation(
+ self, std: Union[float, np.ndarray], q: np.ndarray
+ ) -> np.ndarray:
+ """
+ Converts standard deviation `std`, either a scalar or a vector, from the model space
+ to the search space around a parameter vector `q` in the search space.
+ """
+ if isinstance(q, (int, float)):
+ q = np.asarray([q])
+ jac_inv = np.linalg.pinv(self.jacobian(q))
+ cov = jac_inv @ jac_inv.T
+ return std * np.sqrt(np.diagonal(cov))
+
+ @abstractmethod
+ def jacobian(self, q: np.ndarray) -> np.ndarray:
+ """Returns the Jacobian matrix of the transformation at the parameter vector `q`."""
+
+ def jacobian_S1(self, q: np.ndarray) -> tuple[np.ndarray, Sequence[np.ndarray]]:
+ """
+ Computes the Jacobian matrix and its partial derivatives at the parameter vector `q`.
+
+ Returns a tuple `(jacobian, hessian)`.
+ """
+ raise NotImplementedError("jacobian_S1 method must be implemented if used.")
+
+ def log_jacobian_det(self, q: np.ndarray) -> float:
+ """
+ Returns the logarithm of the absolute value of the determinant of the Jacobian matrix
+ at the parameter vector `q`.
+ """
+ raise NotImplementedError(
+ "log_jacobian_det method must be implemented if used."
+ )
+
+ def log_jacobian_det_S1(self, q: np.ndarray) -> tuple[float, np.ndarray]:
+ """
+ Computes the logarithm of the absolute value of the determinant of the Jacobian,
+ and returns it along with its partial derivatives.
+ """
+ raise NotImplementedError(
+ "log_jacobian_det_S1 method must be implemented if used."
+ )
+
+ @property
+ def n_parameters(self):
+ return self._n_parameters
+
+ def to_model(self, q: np.ndarray) -> np.ndarray:
+ """Transforms a parameter vector `q` from the search space to the model space."""
+ return self._transform(q, method="to_model")
+
+ def to_search(self, p: np.ndarray) -> np.ndarray:
+ """Transforms a parameter vector `p` from the model space to the search space."""
+ return self._transform(p, method="to_search")
+
+ @abstractmethod
+ def _transform(self, x: np.ndarray, method: str) -> np.ndarray:
+ """
+ Transforms a parameter vector `x` from the search space to the model space if `method`
+ is "to_model", or from the model space to the search space if `method` is "to_search".
+ """
+
+ def is_elementwise(self) -> bool:
+ """
+ Returns `True` if the transformation is element-wise, meaning it can be applied
+ element-by-element independently.
+ """
+ raise NotImplementedError("is_elementwise method must be implemented if used.")
+
+ def verify_input(
+ self, inputs: Union[float, int, list[float], np.ndarray, dict[str, float]]
+ ) -> np.ndarray:
+ """Set and validate the transformation parameter."""
+ if isinstance(inputs, (float, int)):
+ return np.full(self._n_parameters, float(inputs))
+
+ if isinstance(inputs, dict):
+ inputs = list(inputs.values())
+
+ try:
+ input_array = np.asarray(inputs, dtype=float)
+ except (ValueError, TypeError) as e:
+ raise TypeError(
+ "Transform must be a float, int, list, numpy array, or dictionary"
+ ) from e
+
+ if input_array.size != self._n_parameters:
+ raise ValueError(f"Transform must have {self._n_parameters} elements")
+
+ return input_array
diff --git a/pybop/transformation/transformations.py b/pybop/transformation/transformations.py
new file mode 100644
index 000000000..8951c41db
--- /dev/null
+++ b/pybop/transformation/transformations.py
@@ -0,0 +1,371 @@
+from typing import Union
+
+import numpy as np
+
+from pybop import Transformation
+
+
+class IdentityTransformation(Transformation):
+ """
+ This class implements a trivial transformation where the model parameter space
+ and the search space are identical. It extends the base Transformation class.
+
+ The transformation is defined as:
+ - to_search: y = x
+ - to_model: x = y
+
+ Key properties:
+ 1. Jacobian: Identity matrix
+ 2. Log determinant of Jacobian: Always 0
+ 3. Elementwise: True (each output dimension depends only on the corresponding input dimension)
+
+ Use cases:
+ 1. When no transformation is needed between spaces
+ 2. As a placeholder in composite transformations
+ 3. For testing and benchmarking other transformations
+
+ Note: While this transformation doesn't change the parameters, it still provides
+ all the methods required by the Transformation interface, making it useful in
+ scenarios where a transformation object is expected but no actual transformation
+ is needed.
+
+ Initially based on pints.IdentityTransformation method.
+ """
+
+ def __init__(self, n_parameters: int = 1):
+ self._n_parameters = n_parameters
+
+ def is_elementwise(self) -> bool:
+ """See :meth:`Transformation.is_elementwise()`."""
+ return True
+
+ def jacobian(self, q: np.ndarray) -> np.ndarray:
+ """See :meth:`Transformation.jacobian()`."""
+ return np.eye(self._n_parameters)
+
+ def jacobian_S1(self, q: np.ndarray) -> tuple[np.ndarray, np.ndarray]:
+ """See :meth:`Transformation.jacobian_S1()`."""
+ n = self._n_parameters
+ return self.jacobian(q), np.zeros((n, n, n))
+
+ def log_jacobian_det(self, q: np.ndarray) -> float:
+ """See :meth:`Transformation.log_jacobian_det()`."""
+ return 0.0
+
+ def log_jacobian_det_S1(self, q: np.ndarray) -> tuple[float, np.ndarray]:
+ """See :meth:`Transformation.log_jacobian_det_S1()`."""
+ return self.log_jacobian_det(q), np.zeros(self._n_parameters)
+
+ def _transform(self, x: np.ndarray, method: str) -> np.ndarray:
+ """See :meth:`Transformation._transform`."""
+ return np.asarray(x)
+
+
+class ScaledTransformation(Transformation):
+ """
+ This class implements a linear transformation between the model parameter space
+ and a search space, using a coefficient (scale factor) and an intercept (offset).
+ It extends the base Transformation class.
+
+ The transformation is defined as:
+ - to_search: y = coefficient * (x + intercept)
+ - to_model: x = y / coefficient - intercept
+
+ Where:
+ - x is in the model parameter space
+ - y is in the search space
+ - coefficient is the scaling factor
+ - intercept is the offset
+
+ This transformation is useful for scaling and shifting parameters to a more
+ suitable range for optimisation algorithms.
+
+ Based on pints.ScaledTransformation class.
+ """
+
+ def __init__(
+ self,
+ coefficient: Union[list, float, np.ndarray],
+ intercept: Union[list, float, np.ndarray] = 0,
+ n_parameters: int = 1,
+ ):
+ self._n_parameters = n_parameters
+ self.intercept = self.verify_input(intercept)
+ self.coefficient = self.verify_input(coefficient)
+ self.inverse_coeff = np.reciprocal(self.coefficient)
+
+ def is_elementwise(self) -> bool:
+ """See :meth:`Transformation.is_elementwise()`."""
+ return True
+
+ def jacobian(self, q: np.ndarray) -> np.ndarray:
+ """See :meth:`Transformation.jacobian()`."""
+ return np.diag(self.inverse_coeff)
+
+ def jacobian_S1(self, q: np.ndarray) -> tuple[np.ndarray, np.ndarray]:
+ """See :meth:`Transformation.jacobian_S1()`."""
+ n = self._n_parameters
+ return self.jacobian(q), np.zeros((n, n, n))
+
+ def log_jacobian_det(self, q: np.ndarray) -> float:
+ """See :meth:`Transformation.log_jacobian_det()`."""
+ return np.log(np.abs(self.coefficient)).sum()
+
+ def log_jacobian_det_S1(self, q: np.ndarray) -> tuple[float, np.ndarray]:
+ """See :meth:`Transformation.log_jacobian_det_S1()`."""
+ return self.log_jacobian_det(q), np.zeros(self._n_parameters)
+
+ def _transform(self, x: np.ndarray, method: str) -> np.ndarray:
+ """See :meth:`Transformation._transform`."""
+ x = self.verify_input(x)
+ if method == "to_model":
+ return x * self.inverse_coeff - self.intercept
+ elif method == "to_search":
+ return self.coefficient * (x + self.intercept)
+ else:
+ raise ValueError(f"Unknown method: {method}")
+
+
+class LogTransformation(Transformation):
+ """
+ This class implements a logarithmic transformation between the model parameter space
+ and a search space. It extends the base Transformation class.
+
+ The transformation is defined as:
+ - to_search: y = log(x)
+ - to_model: x = exp(y)
+
+ Where:
+ - x is in the model parameter space (strictly positive)
+ - y is in the search space (can be any real number)
+
+ This transformation is particularly useful for:
+ 1. Parameters that are strictly positive and may span several orders of magnitude.
+ 2. Converting multiplicative processes to additive ones in the search space.
+ 3. Ensuring positivity constraints without explicit bounds in optimisation.
+
+ Note: Care should be taken when using this transformation, as it can introduce
+ bias in the parameter estimates if not accounted for properly in the likelihood
+ or cost function. Simply, E[log(x)] <= log(E[x]) as per to Jensen's inequality.
+ For more information, see Jensen's inequality:
+ https://en.wikipedia.org/w/index.php?title=Jensen%27s_inequality&oldid=1212437916#Probabilistic_form
+
+ Initially based on pints.LogTransformation class.
+ """
+
+ def __init__(self, n_parameters: int = 1):
+ self._n_parameters = n_parameters
+
+ def is_elementwise(self) -> bool:
+ """See :meth:`Transformation.is_elementwise()`."""
+ return True
+
+ def jacobian(self, q: np.ndarray) -> np.ndarray:
+ """See :meth:`Transformation.jacobian()`."""
+ return np.diag(np.exp(q))
+
+ def jacobian_S1(self, q: np.ndarray) -> tuple[np.ndarray, np.ndarray]:
+ """See :meth:`Transformation.jacobian_S1()`."""
+ n = self._n_parameters
+ jac = self.jacobian(q)
+ jac_S1 = np.zeros((n, n, n))
+ rn = np.arange(n)
+ jac_S1[rn, rn, rn] = np.diagonal(jac)
+ return jac, jac_S1
+
+ def log_jacobian_det(self, q: np.ndarray) -> float:
+ """See :meth:`Transformation.log_jacobian_det()`."""
+ return np.sum(q)
+
+ def log_jacobian_det_S1(self, q: np.ndarray) -> tuple[float, np.ndarray]:
+ """See :meth:`Transformation.log_jacobian_det_S1()`."""
+ logjacdet = self.log_jacobian_det(q)
+ dlogjacdet = np.ones(self._n_parameters)
+ return logjacdet, dlogjacdet
+
+ def _transform(self, x: np.ndarray, method: str) -> np.ndarray:
+ """See :meth:`Transformation._transform`."""
+ x = self.verify_input(x)
+ if method == "to_model":
+ return np.exp(x)
+ elif method == "to_search":
+ return np.log(x)
+ else:
+ raise ValueError(f"Unknown method: {method}")
+
+
+class ComposedTransformation(Transformation):
+ """
+ N-dimensional Transformation composed of one or more other N_i-dimensional
+ sub-transformations, where the sum of N_i equals N.
+
+ This class allows for the composition of multiple transformations, each potentially
+ operating on a different number of dimensions. The total dimensionality of the
+ composed transformation is the sum of the dimensionalities of its components.
+
+ The dimensionality of the individual transformations does not have to be
+ the same, i.e., N_i != N_j is allowed.
+
+ Extends pybop.Transformation. Initially based on pints.ComposedTransformation class.
+ """
+
+ def __init__(self, transformations: list[Transformation]):
+ if not transformations:
+ raise ValueError("Must have at least one sub-transformation.")
+ self._transformations = []
+ self._n_parameters = 0
+ self._is_elementwise = True
+ for transformation in transformations:
+ self._append_transformation(transformation)
+
+ def _append_transformation(self, transformation: Transformation):
+ """
+ Append a transformation to the internal list of transformations.
+
+ Parameters
+ ----------
+ transformation : Transformation
+ Transformation to append.
+
+ Raises
+ ------
+ ValueError
+ If the appended object is not a Transformation.
+ """
+ if not isinstance(transformation, Transformation):
+ raise TypeError("The appended object must be a Transformation.")
+ self._transformations.append(transformation)
+ self._n_parameters += transformation.n_parameters
+ self._is_elementwise = self._is_elementwise and transformation.is_elementwise()
+
+ def append(self, transformation: Transformation):
+ """
+ Append a new transformation to the existing composition.
+
+ Parameters
+ ----------
+ transformation : Transformation
+ The transformation to append.
+ """
+ self._append_transformation(transformation)
+
+ def is_elementwise(self) -> bool:
+ """See :meth:`Transformation.is_elementwise()`."""
+ return self._is_elementwise
+
+ def jacobian(self, q: np.ndarray) -> np.ndarray:
+ """
+ Compute the elementwise Jacobian of the composed transformation.
+
+ Parameters
+ ----------
+ q : np.ndarray
+ Input array.
+
+ Returns
+ -------
+ np.ndarray
+ Diagonal matrix representing the elementwise Jacobian.
+ """
+ q = self.verify_input(q)
+ diag = np.zeros(self._n_parameters)
+ lo = 0
+
+ for transformation in self._transformations:
+ hi = lo + transformation.n_parameters
+ diag[lo:hi] = np.diagonal(transformation.jacobian(q[lo:hi]))
+ lo = hi
+
+ return np.diag(diag)
+
+ def jacobian_S1(self, q: np.ndarray) -> tuple[np.ndarray, np.ndarray]:
+ """See :meth:`Transformation.jacobian_S1()`."""
+ q = self.verify_input(q)
+ output_S1 = np.zeros(
+ (self._n_parameters, self._n_parameters, self._n_parameters)
+ )
+ lo = 0
+
+ for transformation in self._transformations:
+ hi = lo + transformation.n_parameters
+ _, jac_S1 = transformation.jacobian_S1(q[lo:hi])
+ for i, jac_S1_i in enumerate(jac_S1):
+ output_S1[lo + i, lo:hi, lo:hi] = jac_S1_i
+ lo = hi
+
+ return self.jacobian(q), output_S1
+
+ def log_jacobian_det(self, q: np.ndarray) -> float:
+ """
+ Compute the elementwise logarithm of the determinant of the Jacobian.
+
+ Parameters
+ ----------
+ q : np.ndarray
+ Input array.
+
+ Returns
+ -------
+ float
+ Sum of log determinants of individual transformations.
+ """
+ q = self.verify_input(q)
+ return sum(
+ transformation.log_jacobian_det(q[lo : lo + transformation.n_parameters])
+ for lo, transformation in self._iter_transformations()
+ )
+
+ def log_jacobian_det_S1(self, q: np.ndarray) -> tuple[float, np.ndarray]:
+ """
+ Compute the elementwise logarithm of the determinant of the Jacobian and its first-order sensitivities.
+
+ Parameters
+ ----------
+ q : np.ndarray
+ Input array.
+
+ Returns
+ -------
+ Tuple[float, np.ndarray]
+ Tuple of sum of log determinants and concatenated first-order sensitivities.
+ """
+ q = self.verify_input(q)
+ output = 0.0
+ output_S1 = np.zeros(self._n_parameters)
+ lo = 0
+
+ for transformation in self._transformations:
+ hi = lo + transformation.n_parameters
+ j, j_S1 = transformation.log_jacobian_det_S1(q[lo:hi])
+ output += j
+ output_S1[lo:hi] = j_S1
+ lo = hi
+
+ return output, output_S1
+
+ def _transform(self, data: np.ndarray, method: str) -> np.ndarray:
+ """See :meth:`Transformation._transform`."""
+ data = self.verify_input(data)
+ output = np.zeros_like(data)
+ lo = 0
+
+ for transformation in self._transformations:
+ hi = lo + transformation.n_parameters
+ output[lo:hi] = getattr(transformation, method)(data[lo:hi])
+ lo = hi
+
+ return output
+
+ def _iter_transformations(self):
+ """
+ Iterate over the transformations in the composition.
+
+ Yields
+ ------
+ Tuple[int, Transformation]
+ Tuple of starting index and transformation object for each sub-transformation.
+ """
+ lo = 0
+ for transformation in self._transformations:
+ yield lo, transformation
+ lo += transformation.n_parameters
diff --git a/pyproject.toml b/pyproject.toml
index 6d2e1b61c..5e1c74444 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pybop"
-version = "24.3.1"
+version = "24.9.1"
authors = [
{name = "The PyBOP Team"},
]
@@ -26,20 +26,14 @@ classifiers = [
]
requires-python = ">=3.9, <3.13"
dependencies = [
- "pybamm>=23.9",
+ "pybamm>=24.9",
"numpy>=1.16, <2.0",
"scipy>=1.3",
"pints>=0.5",
- "bpx>=0.4",
]
[project.optional-dependencies]
-# Split kaleido into two dependencies to avoid Windows hang
-# See: https://github.com/plotly/Kaleido/issues/110
-plot = ["plotly>=5.0",
- "kaleido==0.1.0.post1; sys_platform == 'win32'",
- "kaleido>=0.2; sys_platform != 'win32'",
-]
+plot = ["plotly>=5.0"]
docs = [
"pydata-sphinx-theme",
"sphinx>=6",
@@ -63,7 +57,10 @@ dev = [
scifem = [
"scikit-fem>=8.1.0" # scikit-fem is a dependency for the multi-dimensional pybamm models
]
-all = ["pybop[plot]", "pybop[scifem]"]
+bpx = [
+ "bpx>=0.4",
+]
+all = ["pybop[plot,scifem,bpx]"]
[tool.setuptools.packages.find]
include = ["pybop", "pybop.*"]
@@ -73,7 +70,7 @@ Homepage = "https://github.com/pybop-team/PyBOP"
Documentation = "https://pybop-docs.readthedocs.io"
Repository = "https://github.com/pybop-team/PyBOP"
Releases = "https://github.com/pybop-team/PyBOP/releases"
-Changelog = "https://github.com/pybop-team/PyBOP/CHANGELOG.md"
+Changelog = "https://github.com/pybop-team/PyBOP/blob/develop/CHANGELOG.md"
[tool.pytest.ini_options]
addopts = "--showlocals -v -n auto"
@@ -81,10 +78,27 @@ addopts = "--showlocals -v -n auto"
[tool.ruff]
extend-include = ["*.ipynb"]
extend-exclude = ["__init__.py"]
+fix = true
[tool.ruff.lint]
-extend-select = ["I"]
+select = [
+ "A", # flake8-builtins: Check for Python builtins being used as variables or parameters
+ "B", # flake8-bugbear: Find likely bugs and design problems
+ "E", # pycodestyle errors
+ "W", # pycodestyle warnings
+ "F", # pyflakes: Detect various errors by parsing the source file
+ "I", # isort: Check and enforce import ordering
+ "ISC", # flake8-implicit-str-concat: Check for implicit string concatenation
+ "TID", # flake8-tidy-imports: Validate import hygiene
+ "UP", # pyupgrade: Automatically upgrade syntax for newer versions of Python
+ "SLF001", # flake8-string-format: Check for private object name access
+]
+
ignore = ["E501","E741"]
[tool.ruff.lint.per-file-ignores]
+"tests/*" = ["SLF001"]
"**.ipynb" = ["E402", "E703"]
+
+[tool.ruff.lint.flake8-tidy-imports]
+ban-relative-imports = "all"
diff --git a/scripts/ci/build_matrix.sh b/scripts/ci/build_matrix.sh
index 9dfe32249..491bb59df 100755
--- a/scripts/ci/build_matrix.sh
+++ b/scripts/ci/build_matrix.sh
@@ -11,8 +11,11 @@
python_version=("3.9" "3.10" "3.11" "3.12")
os=("ubuntu-latest" "windows-latest" "macos-13" "macos-14")
-# This command fetches the last two PyBaMM versions excluding release candidates from PyPI
-pybamm_version=($(curl -s https://pypi.org/pypi/pybamm/json | jq -r '.releases | keys[]' | grep -v rc | tail -n 2 | paste -sd " " -))
+# This command fetches the last PyBaMM version excluding release candidates from PyPI
+pybamm_version=($(curl -s https://pypi.org/pypi/pybamm/json | jq -r '.releases | keys[]' | grep -v rc | tail -n 1 | paste -sd " " -))
+
+# This command fetches the last PyBaMM versions including release candidates from PyPI
+#pybamm_version=($(curl -s https://pypi.org/pypi/pybamm/json | jq -r '.releases | keys[]' | tail -n 1 | paste -sd " " -))
# open dict
json='{
@@ -40,7 +43,7 @@ json+='
]
}'
-# Filter out incompatible combinations
-json=$(echo "$json" | jq -c 'del(.include[] | select(.pybamm_version == "23.9" and .python_version == "3.12"))')
+# Example for filtering out incompatible combinations
+#json=$(echo "$json" | jq -c 'del(.include[] | select(.pybamm_version == "23.9" and .python_version == "3.12"))')
echo "$json" | jq -c .
diff --git a/tests/examples/test_examples.py b/tests/examples/test_examples.py
index 1c45be840..2bebc6fc6 100644
--- a/tests/examples/test_examples.py
+++ b/tests/examples/test_examples.py
@@ -12,14 +12,14 @@ class TestExamples:
"""
def list_of_examples():
- list = []
+ examples_list = []
path_to_example_scripts = os.path.join(
pybop.script_path, "..", "examples", "scripts"
)
for example in os.listdir(path_to_example_scripts):
if example.endswith(".py"):
- list.append(os.path.join(path_to_example_scripts, example))
- return list
+ examples_list.append(os.path.join(path_to_example_scripts, example))
+ return examples_list
@pytest.mark.parametrize("example", list_of_examples())
@pytest.mark.examples
diff --git a/tests/integration/test_eis_parameterisation.py b/tests/integration/test_eis_parameterisation.py
new file mode 100644
index 000000000..22c2cbc39
--- /dev/null
+++ b/tests/integration/test_eis_parameterisation.py
@@ -0,0 +1,185 @@
+import numpy as np
+import pytest
+
+import pybop
+
+
+class TestEISParameterisation:
+ """
+ A class to test the eis parameterisation methods.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.sigma0 = 5e-4
+ self.ground_truth = np.clip(
+ np.asarray([0.55, 0.55]) + np.random.normal(loc=0.0, scale=0.05, size=2),
+ a_min=0.4,
+ a_max=0.75,
+ )
+
+ @pytest.fixture
+ def model(self):
+ parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ x = self.ground_truth
+ parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": x[0],
+ "Positive electrode active material volume fraction": x[1],
+ }
+ )
+ return pybop.lithium_ion.SPM(
+ parameter_set=parameter_set,
+ eis=True,
+ options={"surface form": "differential"},
+ )
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.75),
+ bounds=[0.375, 0.775],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.75),
+ bounds=[0.375, 0.775],
+ ),
+ )
+
+ @pytest.fixture(params=[0.5])
+ def init_soc(self, request):
+ return request.param
+
+ @pytest.fixture(
+ params=[
+ pybop.GaussianLogLikelihood,
+ pybop.SumSquaredError,
+ pybop.Minkowski,
+ pybop.LogPosterior,
+ ]
+ )
+ def cost(self, request):
+ return request.param
+
+ def noise(self, sigma, values):
+ # Generate real part noise
+ real_noise = np.random.normal(0, sigma, values)
+
+ # Generate imaginary part noise
+ imag_noise = np.random.normal(0, sigma, values)
+
+ # Combine them into a complex noise
+ return real_noise + 1j * imag_noise
+
+ @pytest.fixture(
+ params=[
+ pybop.SciPyDifferentialEvolution,
+ pybop.CMAES,
+ pybop.CuckooSearch,
+ pybop.XNES,
+ ]
+ )
+ def optimiser(self, request):
+ return request.param
+
+ @pytest.fixture
+ def optim(self, optimiser, model, parameters, cost, init_soc):
+ n_frequency = 15
+ # Set frequency set
+ f_eval = np.logspace(-4, 5, n_frequency)
+
+ # Form dataset
+ solution = self.get_data(model, init_soc, f_eval)
+ dataset = pybop.Dataset(
+ {
+ "Frequency [Hz]": f_eval,
+ "Current function [A]": np.ones(n_frequency) * 0.0,
+ "Impedance": solution["Impedance"]
+ + self.noise(self.sigma0, len(solution["Impedance"])),
+ }
+ )
+
+ # Define the problem
+ signal = ["Impedance"]
+ problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+
+ # Construct the cost
+ if cost is pybop.GaussianLogLikelihoodKnownSigma:
+ cost = cost(problem, sigma0=self.sigma0)
+ elif cost is pybop.GaussianLogLikelihood:
+ cost = cost(problem, sigma0=self.sigma0 * 4) # Initial sigma0 guess
+ elif cost is pybop.LogPosterior:
+ cost = cost(
+ pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=self.sigma0)
+ )
+ elif cost in [pybop.SumofPower, pybop.Minkowski]:
+ cost = cost(problem, p=2)
+ else:
+ cost = cost(problem)
+
+ # Construct optimisation object
+ common_args = {
+ "cost": cost,
+ "max_iterations": 250,
+ "absolute_tolerance": 1e-6,
+ "max_unchanged_iterations": 35,
+ "sigma0": [0.05, 0.05, 1e-3]
+ if isinstance(cost, pybop.GaussianLogLikelihood)
+ else 0.02,
+ }
+
+ if isinstance(cost, pybop.LogPosterior):
+ for i in cost.parameters.keys():
+ cost.parameters[i].prior = pybop.Uniform(
+ 0.2, 2.0
+ ) # Increase range to avoid prior == np.inf
+
+ # Create optimiser
+ optim = optimiser(**common_args)
+ return optim
+
+ @pytest.mark.integration
+ def test_eis_optimisers(self, optim):
+ x0 = optim.parameters.initial_value()
+
+ # Add sigma0 to ground truth for GaussianLogLikelihood
+ if isinstance(optim.cost, pybop.GaussianLogLikelihood):
+ self.ground_truth = np.concatenate(
+ (self.ground_truth, np.asarray([self.sigma0]))
+ )
+
+ initial_cost = optim.cost(x0)
+ results = optim.run()
+
+ # Assertions
+ if np.allclose(x0, self.ground_truth, atol=1e-5):
+ raise AssertionError("Initial guess is too close to ground truth")
+
+ # Assert on identified values, without sigma for GaussianLogLikelihood
+ # as the sigma values are small (5e-4), this is a difficult identification process
+ # and requires a high number of iterations, and parameter dependent step sizes.
+ if optim.minimising:
+ assert initial_cost > results.final_cost
+ else:
+ assert initial_cost < results.final_cost
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+
+ def get_data(self, model, init_soc, f_eval):
+ initial_state = {"Initial SoC": init_soc}
+ sim = model.simulateEIS(
+ inputs={
+ "Negative electrode active material volume fraction": self.ground_truth[
+ 0
+ ],
+ "Positive electrode active material volume fraction": self.ground_truth[
+ 1
+ ],
+ },
+ f_eval=f_eval,
+ initial_state=initial_state,
+ )
+
+ return sim
diff --git a/tests/integration/test_half_cell_model.py b/tests/integration/test_half_cell_model.py
new file mode 100644
index 000000000..f3c3a2708
--- /dev/null
+++ b/tests/integration/test_half_cell_model.py
@@ -0,0 +1,163 @@
+import numpy as np
+import pytest
+from pybamm import Parameter
+
+import pybop
+
+
+class TestHalfCellModel:
+ """
+ A class to test optimisation of a PyBaMM half-cell model.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.sigma0 = 0.002
+ self.ground_truth = np.clip(
+ np.asarray([0.5]) + np.random.normal(loc=0.0, scale=0.05, size=1),
+ a_min=0.4,
+ a_max=0.75,
+ )
+
+ @pytest.fixture
+ def model(self):
+ options = {"working electrode": "positive"}
+ parameter_set = pybop.lithium_ion.SPM(options=options).default_parameter_values
+ parameter_set.update(
+ {
+ "Electrolyte density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Negative current collector density [kg.m-3]": 0.0,
+ "Negative current collector thickness [m]": 0.0,
+ "Negative electrode active material density [kg.m-3]": 0.0,
+ "Negative electrode active material volume fraction": 0.0,
+ "Negative electrode porosity": 0.0,
+ "Negative electrode carbon-binder density [kg.m-3]": 0.0,
+ "Positive current collector density [kg.m-3]": 0.0,
+ "Positive current collector thickness [m]": 0.0,
+ "Positive electrode active material density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Positive electrode carbon-binder density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Positive electrode density [kg.m-3]": 3262.0,
+ "Separator density [kg.m-3]": 0.0,
+ },
+ check_already_exists=False,
+ )
+ x = self.ground_truth
+ parameter_set.update(
+ {
+ "Positive electrode active material volume fraction": x[0],
+ }
+ )
+ return pybop.lithium_ion.SPM(parameter_set=parameter_set, options=options)
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.75),
+ # no bounds
+ ),
+ )
+
+ @pytest.fixture(params=[0.4])
+ def init_soc(self, request):
+ return request.param
+
+ def noise(self, sigma, values):
+ return np.random.normal(0, sigma, values)
+
+ @pytest.fixture
+ def fitting_cost(self, model, parameters, init_soc):
+ # Form dataset
+ solution = self.get_data(model, init_soc)
+ dataset = pybop.Dataset(
+ {
+ "Time [s]": solution["Time [s]"].data,
+ "Current function [A]": solution["Current [A]"].data,
+ "Voltage [V]": solution["Voltage [V]"].data
+ + self.noise(self.sigma0, len(solution["Time [s]"].data)),
+ }
+ )
+
+ # Define the cost to optimise
+ problem = pybop.FittingProblem(model, parameters, dataset)
+ return pybop.SumSquaredError(problem)
+
+ @pytest.mark.integration
+ def test_fitting_costs(self, fitting_cost):
+ x0 = fitting_cost.parameters.initial_value()
+ optim = pybop.CuckooSearch(
+ cost=fitting_cost,
+ sigma0=0.03,
+ max_iterations=250,
+ max_unchanged_iterations=35,
+ )
+
+ initial_cost = optim.cost(optim.parameters.initial_value())
+ results = optim.run()
+
+ # Assertions
+ if not np.allclose(x0, self.ground_truth, atol=1e-5):
+ if optim.minimising:
+ assert initial_cost > results.final_cost
+ else:
+ assert initial_cost < results.final_cost
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+
+ @pytest.fixture
+ def design_cost(self, model):
+ initial_state = {"Initial SoC": 1.0}
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode thickness [m]",
+ prior=pybop.Gaussian(5e-05, 5e-06),
+ bounds=[2e-06, 10e-05],
+ ),
+ )
+ experiment = pybop.Experiment(
+ ["Discharge at 1C until 3.5 V (5 seconds period)"],
+ )
+
+ problem = pybop.DesignProblem(
+ model,
+ parameters,
+ experiment=experiment,
+ initial_state=initial_state,
+ update_capacity=True,
+ )
+ return pybop.GravimetricEnergyDensity(problem)
+
+ @pytest.mark.integration
+ def test_design_costs(self, design_cost):
+ optim = pybop.CuckooSearch(
+ design_cost,
+ max_iterations=15,
+ allow_infeasible_solutions=False,
+ )
+ initial_values = optim.parameters.initial_value()
+ initial_cost = optim.cost(initial_values)
+ results = optim.run()
+
+ # Assertions
+ assert initial_cost < results.final_cost
+ for i, _ in enumerate(results.x):
+ assert results.x[i] < initial_values[i]
+
+ def get_data(self, model, init_soc):
+ initial_state = {"Initial SoC": init_soc}
+ experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 3 minutes (4 second period)",
+ "Charge at 0.5C for 3 minutes (4 second period)",
+ ),
+ ]
+ )
+ sim = model.predict(initial_state=initial_state, experiment=experiment)
+ return sim
diff --git a/tests/integration/test_model_experiment_changes.py b/tests/integration/test_model_experiment_changes.py
index 6902f873e..4f915f759 100644
--- a/tests/integration/test_model_experiment_changes.py
+++ b/tests/integration/test_model_experiment_changes.py
@@ -22,7 +22,7 @@ class TestModelAndExperimentChanges:
),
pybop.Parameters(
pybop.Parameter( # non-geometric parameter
- "Positive electrode diffusivity [m2.s-1]",
+ "Positive particle diffusivity [m2.s-1]",
prior=pybop.Gaussian(3.43e-15, 1e-15),
bounds=[1e-15, 5e-15],
true_value=4e-15,
@@ -39,18 +39,21 @@ def test_changing_experiment(self, parameters):
# Change the experiment and check that the results are different.
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
- init_soc = 0.5
+ parameter_set.update(parameters.as_dict("true"))
+ initial_state = {"Initial SoC": 0.5}
model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
t_eval = np.arange(0, 3600, 2) # Default 1C discharge to cut-off voltage
- solution_1 = model.predict(init_soc=init_soc, t_eval=t_eval)
- cost_1 = self.final_cost(solution_1, model, parameters, init_soc)
+ solution_1 = model.predict(initial_state=initial_state, t_eval=t_eval)
+ cost_1 = self.final_cost(solution_1, model, parameters)
experiment = pybop.Experiment(["Charge at 1C until 4.1 V (2 seconds period)"])
solution_2 = model.predict(
- init_soc=init_soc, experiment=experiment, inputs=parameters.true_value()
+ initial_state=initial_state,
+ experiment=experiment,
+ inputs=parameters.as_dict("true"),
)
- cost_2 = self.final_cost(solution_2, model, parameters, init_soc)
+ cost_2 = self.final_cost(solution_2, model, parameters)
with np.testing.assert_raises(AssertionError):
np.testing.assert_array_equal(
@@ -67,16 +70,17 @@ def test_changing_model(self, parameters):
# Change the model and check that the results are different.
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
- init_soc = 0.5
+ parameter_set.update(parameters.as_dict("true"))
+ initial_state = {"Initial SoC": 0.5}
experiment = pybop.Experiment(["Charge at 1C until 4.1 V (2 seconds period)"])
model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
- solution_1 = model.predict(init_soc=init_soc, experiment=experiment)
- cost_1 = self.final_cost(solution_1, model, parameters, init_soc)
+ solution_1 = model.predict(initial_state=initial_state, experiment=experiment)
+ cost_1 = self.final_cost(solution_1, model, parameters)
model = pybop.lithium_ion.SPMe(parameter_set=parameter_set)
- solution_2 = model.predict(init_soc=init_soc, experiment=experiment)
- cost_2 = self.final_cost(solution_2, model, parameters, init_soc)
+ solution_2 = model.predict(initial_state=initial_state, experiment=experiment)
+ cost_2 = self.final_cost(solution_2, model, parameters)
with np.testing.assert_raises(AssertionError):
np.testing.assert_array_equal(
@@ -88,7 +92,7 @@ def test_changing_model(self, parameters):
np.testing.assert_allclose(cost_1, 0, atol=1e-5)
np.testing.assert_allclose(cost_2, 0, atol=1e-5)
- def final_cost(self, solution, model, parameters, init_soc):
+ def final_cost(self, solution, model, parameters):
# Compute the cost corresponding to a particular solution
dataset = pybop.Dataset(
{
@@ -98,10 +102,58 @@ def final_cost(self, solution, model, parameters, init_soc):
}
)
signal = ["Voltage [V]"]
- problem = pybop.FittingProblem(
- model, parameters, dataset, signal=signal, init_soc=init_soc
- )
+ problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
cost = pybop.RootMeanSquaredError(problem)
optim = pybop.PSO(cost)
- x, final_cost = optim.run()
- return final_cost
+ results = optim.run()
+ return results.final_cost
+
+ @pytest.mark.integration
+ def test_multi_fitting_problem(self):
+ parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ parameters = pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.68, 0.05),
+ true_value=parameter_set[
+ "Negative electrode active material volume fraction"
+ ],
+ )
+
+ model_1 = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+ experiment_1 = pybop.Experiment(
+ ["Discharge at 1C until 3 V (4 seconds period)"]
+ )
+ solution_1 = model_1.predict(experiment=experiment_1)
+ dataset_1 = pybop.Dataset(
+ {
+ "Time [s]": solution_1["Time [s]"].data,
+ "Current function [A]": solution_1["Current [A]"].data,
+ "Voltage [V]": solution_1["Voltage [V]"].data,
+ }
+ )
+
+ model_2 = pybop.lithium_ion.SPMe(parameter_set=parameter_set.copy())
+ experiment_2 = pybop.Experiment(
+ ["Discharge at 3C until 3 V (4 seconds period)"]
+ )
+ solution_2 = model_2.predict(experiment=experiment_2)
+ dataset_2 = pybop.Dataset(
+ {
+ "Time [s]": solution_2["Time [s]"].data,
+ "Current function [A]": solution_2["Current [A]"].data,
+ "Voltage [V]": solution_2["Voltage [V]"].data,
+ }
+ )
+
+ # Define a problem for each dataset and combine them into one
+ problem_1 = pybop.FittingProblem(model_1, parameters, dataset_1)
+ problem_2 = pybop.FittingProblem(model_2, parameters, dataset_2)
+ problem = pybop.MultiFittingProblem(problem_1, problem_2)
+ cost = pybop.RootMeanSquaredError(problem)
+
+ # Test with a gradient and non-gradient-based optimiser
+ for optimiser in [pybop.SNES, pybop.IRPropMin]:
+ optim = optimiser(cost)
+ results = optim.run()
+ np.testing.assert_allclose(results.x, parameters.true_value, atol=2e-5)
+ np.testing.assert_allclose(results.final_cost, 0, atol=2e-5)
diff --git a/tests/integration/test_monte_carlo.py b/tests/integration/test_monte_carlo.py
new file mode 100644
index 000000000..3c04155d6
--- /dev/null
+++ b/tests/integration/test_monte_carlo.py
@@ -0,0 +1,142 @@
+import numpy as np
+import pybamm
+import pytest
+
+import pybop
+from pybop import (
+ DREAM,
+ DifferentialEvolutionMCMC,
+ HaarioACMC,
+ HaarioBardenetACMC,
+ MetropolisRandomWalkMCMC,
+ PopulationMCMC,
+)
+
+
+class Test_Sampling_SPM:
+ """
+ A class to test the MCMC samplers on a physics-based model.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.ground_truth = np.clip(
+ np.asarray([0.55, 0.55, 3e-3])
+ + np.random.normal(0, [5e-2, 5e-2, 1e-4], size=3),
+ [0.4, 0.4, 1e-5],
+ [0.7, 0.7, 1e-2],
+ )
+
+ @pytest.fixture
+ def model(self):
+ parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ x = self.ground_truth
+ parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": x[0],
+ "Positive electrode active material volume fraction": x[1],
+ }
+ )
+ solver = pybamm.IDAKLUSolver()
+ return pybop.lithium_ion.SPM(parameter_set=parameter_set, solver=solver)
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.7),
+ bounds=[0.375, 0.725],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.7),
+ # no bounds
+ ),
+ )
+
+ @pytest.fixture(params=[0.5])
+ def init_soc(self, request):
+ return request.param
+
+ def noise(self, sigma, values):
+ return np.random.normal(0, sigma, values)
+
+ @pytest.fixture
+ def log_posterior(self, model, parameters, init_soc):
+ # Form dataset
+ solution = self.get_data(model, init_soc)
+ dataset = pybop.Dataset(
+ {
+ "Time [s]": solution["Time [s]"].data,
+ "Current function [A]": solution["Current [A]"].data,
+ "Voltage [V]": solution["Voltage [V]"].data
+ + self.noise(0.002, len(solution["Time [s]"].data)),
+ }
+ )
+
+ # Define the posterior to optimise
+ problem = pybop.FittingProblem(model, parameters, dataset)
+ likelihood = pybop.GaussianLogLikelihood(problem, sigma0=0.002 * 1.2)
+ return pybop.LogPosterior(likelihood)
+
+ @pytest.fixture
+ def map_estimate(self, log_posterior):
+ common_args = {
+ "max_iterations": 100,
+ "max_unchanged_iterations": 35,
+ "absolute_tolerance": 1e-7,
+ }
+ optim = pybop.CMAES(log_posterior, **common_args)
+ results = optim.run()
+
+ return results.x
+
+ @pytest.mark.parametrize(
+ "quick_sampler",
+ [
+ DREAM,
+ DifferentialEvolutionMCMC,
+ HaarioACMC,
+ HaarioBardenetACMC,
+ MetropolisRandomWalkMCMC,
+ PopulationMCMC,
+ ],
+ )
+ @pytest.mark.integration
+ def test_sampling_spm(self, quick_sampler, log_posterior, map_estimate):
+ x0 = np.clip(
+ map_estimate + np.random.normal(0, [5e-3, 5e-3, 1e-4], size=3),
+ [0.4, 0.4, 1e-5],
+ [0.75, 0.75, 5e-2],
+ )
+ # set common args
+ common_args = {
+ "log_pdf": log_posterior,
+ "chains": 3,
+ "x0": x0,
+ "warm_up": 150,
+ "max_iterations": 550,
+ }
+
+ # construct and run
+ sampler = quick_sampler(**common_args)
+ chains = sampler.run()
+
+ # Assert both final sample and posterior mean
+ x = np.mean(chains, axis=1)
+ for i in range(len(x)):
+ np.testing.assert_allclose(x[i], self.ground_truth, atol=1.5e-2)
+
+ def get_data(self, model, init_soc):
+ initial_state = {"Initial SoC": init_soc}
+ experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 4 minutes (12 second period)",
+ "Charge at 0.5C for 4 minutes (12 second period)",
+ ),
+ ]
+ )
+ sim = model.predict(initial_state=initial_state, experiment=experiment)
+ return sim
diff --git a/tests/integration/test_monte_carlo_thevenin.py b/tests/integration/test_monte_carlo_thevenin.py
new file mode 100644
index 000000000..a23df6094
--- /dev/null
+++ b/tests/integration/test_monte_carlo_thevenin.py
@@ -0,0 +1,168 @@
+import numpy as np
+import pytest
+
+import pybop
+from pybop import (
+ MALAMCMC,
+ NUTS,
+ DramACMC,
+ HamiltonianMCMC,
+ MonomialGammaHamiltonianMCMC,
+ RaoBlackwellACMC,
+ RelativisticMCMC,
+ SliceDoublingMCMC,
+ SliceRankShrinkingMCMC,
+ SliceStepoutMCMC,
+)
+
+
+class TestSamplingThevenin:
+ """
+ A class to test a subset of samplers on the simple Thevenin Model.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.sigma0 = 1e-3
+ self.ground_truth = np.clip(
+ np.asarray([0.05, 0.05]) + np.random.normal(loc=0.0, scale=0.01, size=2),
+ a_min=1e-4,
+ a_max=0.1,
+ )
+ self.fast_samplers = [
+ MALAMCMC,
+ RaoBlackwellACMC,
+ SliceDoublingMCMC,
+ SliceStepoutMCMC,
+ DramACMC,
+ ]
+
+ @pytest.fixture
+ def model(self):
+ parameter_set = pybop.ParameterSet(
+ json_path="examples/parameters/initial_ecm_parameters.json"
+ )
+ parameter_set.import_parameters()
+ parameter_set.params.update(
+ {
+ "C1 [F]": 1000,
+ "R0 [Ohm]": self.ground_truth[0],
+ "R1 [Ohm]": self.ground_truth[1],
+ }
+ )
+
+ return pybop.empirical.Thevenin(parameter_set=parameter_set)
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "R0 [Ohm]",
+ prior=pybop.Uniform(1e-2, 8e-2),
+ bounds=[1e-4, 1e-1],
+ ),
+ pybop.Parameter(
+ "R1 [Ohm]",
+ prior=pybop.Uniform(1e-2, 8e-2),
+ bounds=[1e-4, 1e-1],
+ ),
+ )
+
+ @pytest.fixture(params=[0.5])
+ def init_soc(self, request):
+ return request.param
+
+ def noise(self, sigma, values):
+ return np.random.normal(0, sigma, values)
+
+ @pytest.fixture
+ def posterior(self, model, parameters, init_soc):
+ # Form dataset
+ solution = self.get_data(model, init_soc)
+ dataset = pybop.Dataset(
+ {
+ "Time [s]": solution["Time [s]"].data,
+ "Current function [A]": solution["Current [A]"].data,
+ "Voltage [V]": solution["Voltage [V]"].data
+ + self.noise(self.sigma0, len(solution["Time [s]"].data)),
+ }
+ )
+
+ # Define the cost to optimise
+ problem = pybop.FittingProblem(model, parameters, dataset)
+ likelihood = pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=self.sigma0)
+ return pybop.LogPosterior(likelihood)
+
+ @pytest.fixture
+ def map_estimate(self, posterior):
+ common_args = {
+ "max_iterations": 100,
+ "max_unchanged_iterations": 35,
+ "absolute_tolerance": 1e-7,
+ "sigma0": [3e-4, 3e-4],
+ "verbose": True,
+ }
+ optim = pybop.CMAES(posterior, **common_args)
+ results = optim.run()
+
+ return results.x
+
+ # Parameterize the samplers
+ @pytest.mark.parametrize(
+ "sampler",
+ [
+ NUTS,
+ HamiltonianMCMC,
+ MonomialGammaHamiltonianMCMC,
+ RelativisticMCMC,
+ SliceRankShrinkingMCMC,
+ MALAMCMC,
+ RaoBlackwellACMC,
+ SliceDoublingMCMC,
+ SliceStepoutMCMC,
+ DramACMC,
+ ],
+ )
+ @pytest.mark.integration
+ def test_sampling_thevenin(self, sampler, posterior, map_estimate):
+ x0 = np.clip(map_estimate + np.random.normal(0, 1e-3, size=2), 1e-4, 1e-1)
+ common_args = {
+ "log_pdf": posterior,
+ "chains": 2,
+ "warm_up": 100,
+ "cov0": [2e-3, 2e-3],
+ "max_iterations": 1050,
+ "x0": x0,
+ }
+
+ # construct and run
+ sampler = sampler(**common_args)
+ if isinstance(sampler, SliceRankShrinkingMCMC):
+ for i, _j in enumerate(sampler._samplers):
+ sampler._samplers[i].set_hyper_parameters([1e-3])
+ chains = sampler.run()
+
+ # Test PosteriorSummary
+ summary = pybop.PosteriorSummary(chains)
+ ess = summary.effective_sample_size()
+ np.testing.assert_array_less(0, ess)
+ if not isinstance(sampler, RelativisticMCMC):
+ np.testing.assert_array_less(
+ summary.rhat(), 1.5
+ ) # Large rhat, to enable faster tests
+
+ # Assert both final sample and posterior mean
+ x = np.mean(chains, axis=1)
+ for i in range(len(x)):
+ np.testing.assert_allclose(x[i], self.ground_truth, atol=5e-3)
+ np.testing.assert_allclose(chains[i][-1], self.ground_truth, atol=1e-2)
+
+ def get_data(self, model, init_soc):
+ initial_state = {"Initial SoC": init_soc}
+ experiment = pybop.Experiment(
+ [
+ ("Discharge at 0.5C for 6 minutes (20 second period)",),
+ ]
+ )
+ sim = model.predict(initial_state=initial_state, experiment=experiment)
+ return sim
diff --git a/tests/integration/test_observer_parameterisation.py b/tests/integration/test_observer_parameterisation.py
new file mode 100644
index 000000000..6df290e8d
--- /dev/null
+++ b/tests/integration/test_observer_parameterisation.py
@@ -0,0 +1,102 @@
+import numpy as np
+import pytest
+
+import pybop
+from examples.standalone.model import ExponentialDecay
+
+
+class TestObservers:
+ """
+ A class to run integration tests on the Observers class.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.ground_truth = np.clip(
+ np.array([0.1, 1.0]) + np.random.normal(loc=0.0, scale=0.05, size=2),
+ a_min=[0.04, 0.2],
+ a_max=[0.85, 1.15],
+ )
+
+ @pytest.fixture
+ def parameter_set(self):
+ return {"k": self.ground_truth[0], "y0": self.ground_truth[1]}
+
+ @pytest.fixture
+ def model(self, parameter_set):
+ return ExponentialDecay(parameter_set=parameter_set, n_states=1)
+
+ @pytest.fixture
+ def parameters(self, parameter_set):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "k",
+ prior=pybop.Gaussian(0.1, 0.05),
+ bounds=[0, 1],
+ true_value=parameter_set["k"],
+ ),
+ pybop.Parameter(
+ "y0",
+ prior=pybop.Gaussian(1, 0.05),
+ bounds=[0, 3],
+ true_value=parameter_set["y0"],
+ ),
+ )
+
+ def noise(self, sigma, values):
+ return np.random.normal(0, sigma, values)
+
+ @pytest.mark.integration
+ def test_observer_exponential_decay(self, parameters, model):
+ # Make a prediction with measurement noise
+ sigma = 1e-2
+ t_eval = np.linspace(0, 20, 10)
+ values = model.predict(t_eval=t_eval)["2y"].data
+ corrupt_values = values + self.noise(sigma, len(t_eval))
+
+ # Form dataset
+ dataset = pybop.Dataset(
+ {
+ "Time [s]": t_eval,
+ "Current function [A]": 0 * t_eval, # placeholder
+ "2y": corrupt_values,
+ }
+ )
+
+ # Define the UKF observer
+ signal = ["2y"]
+ n_states = model.n_states
+ n_signals = len(signal)
+ covariance = np.diag([sigma**2] * n_states)
+ process_noise = np.diag([1e-6] * n_states)
+ measurement_noise = np.diag([sigma**2] * n_signals)
+ observer = pybop.UnscentedKalmanFilterObserver(
+ parameters,
+ model,
+ covariance,
+ process_noise,
+ measurement_noise,
+ dataset,
+ signal=signal,
+ )
+
+ # Generate cost function, and optimisation class
+ cost = pybop.ObserverCost(observer)
+ optim = pybop.CMAES(cost, max_unchanged_iterations=25, verbose=True)
+
+ # Initial Cost
+ x0 = cost.parameters.initial_value()
+ initial_cost = optim.cost(x0)
+
+ # Run optimisation
+ results = optim.run()
+
+ # Assertions
+ if not np.allclose(x0, self.ground_truth, atol=1e-5):
+ if optim.minimising:
+ assert initial_cost > results.final_cost
+ else:
+ assert initial_cost < results.final_cost
+ else:
+ raise ValueError("Initial value is the same as the ground truth value.")
+ np.testing.assert_allclose(results.x, parameters.true_value(), atol=1.5e-2)
diff --git a/tests/integration/test_optimisation_options.py b/tests/integration/test_optimisation_options.py
index 01702ba24..b3bab9137 100644
--- a/tests/integration/test_optimisation_options.py
+++ b/tests/integration/test_optimisation_options.py
@@ -13,13 +13,22 @@ class TestOptimisation:
@pytest.fixture(autouse=True)
def setup(self):
- self.ground_truth = np.asarray([0.55, 0.55]) + np.random.normal(
- loc=0.0, scale=0.05, size=2
+ self.ground_truth = np.clip(
+ np.asarray([0.55, 0.55]) + np.random.normal(loc=0.0, scale=0.05, size=2),
+ a_min=0.4,
+ a_max=0.75,
)
@pytest.fixture
def model(self):
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ x = self.ground_truth
+ parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": x[0],
+ "Positive electrode active material volume fraction": x[1],
+ }
+ )
return pybop.lithium_ion.SPM(parameter_set=parameter_set)
@pytest.fixture
@@ -53,8 +62,8 @@ def noise(self, sigma, values):
@pytest.fixture
def spm_costs(self, model, parameters, cost_class):
# Form dataset
- init_soc = 0.5
- solution = self.get_data(model, parameters, self.ground_truth, init_soc)
+ initial_state = {"Initial SoC": 0.5}
+ solution = self.get_data(model, initial_state)
dataset = pybop.Dataset(
{
"Time [s]": solution["Time [s]"].data,
@@ -65,9 +74,9 @@ def spm_costs(self, model, parameters, cost_class):
)
# Define the cost to optimise
- problem = pybop.FittingProblem(model, parameters, dataset, init_soc=init_soc)
+ problem = pybop.FittingProblem(model, parameters, dataset)
if cost_class in [pybop.GaussianLogLikelihoodKnownSigma]:
- return cost_class(problem, sigma=[0.03, 0.03])
+ return cost_class(problem, sigma0=0.002)
else:
return cost_class(problem)
@@ -80,7 +89,7 @@ def spm_costs(self, model, parameters, cost_class):
)
@pytest.mark.integration
def test_optimisation_f_guessed(self, f_guessed, spm_costs):
- x0 = spm_costs.x0
+ x0 = spm_costs.parameters.initial_value()
# Test each optimiser
optim = pybop.XNES(
cost=spm_costs,
@@ -93,21 +102,23 @@ def test_optimisation_f_guessed(self, f_guessed, spm_costs):
# Set parallelisation if not on Windows
if sys.platform != "win32":
- optim.set_parallel(True)
+ optim.set_parallel(1)
initial_cost = optim.cost(x0)
- x, final_cost = optim.run()
+ results = optim.run()
# Assertions
if not np.allclose(x0, self.ground_truth, atol=1e-5):
if optim.minimising:
- assert initial_cost > final_cost
+ assert initial_cost > results.final_cost
else:
- assert initial_cost < final_cost
- np.testing.assert_allclose(x, self.ground_truth, atol=1.5e-2)
+ assert initial_cost < results.final_cost
+ else:
+ raise ValueError("Initial value is the same as the ground truth value.")
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
- def get_data(self, model, parameters, x, init_soc):
- model.parameters = parameters
+ def get_data(self, model, initial_state):
+ # Update the initial state and save the ground truth initial concentrations
experiment = pybop.Experiment(
[
(
@@ -117,5 +128,5 @@ def get_data(self, model, parameters, x, init_soc):
]
* 2
)
- sim = model.predict(init_soc=init_soc, experiment=experiment, inputs=x)
+ sim = model.predict(initial_state=initial_state, experiment=experiment)
return sim
diff --git a/tests/integration/test_spm_parameterisations.py b/tests/integration/test_spm_parameterisations.py
index 7eeb0b7c0..d8f27fffb 100644
--- a/tests/integration/test_spm_parameterisations.py
+++ b/tests/integration/test_spm_parameterisations.py
@@ -1,4 +1,5 @@
import numpy as np
+import pybamm
import pytest
import pybop
@@ -11,13 +12,23 @@ class Test_SPM_Parameterisation:
@pytest.fixture(autouse=True)
def setup(self):
- self.ground_truth = np.asarray([0.55, 0.55]) + np.random.normal(
- loc=0.0, scale=0.05, size=2
+ self.sigma0 = 0.002
+ self.ground_truth = np.clip(
+ np.asarray([0.55, 0.55]) + np.random.normal(loc=0.0, scale=0.05, size=2),
+ a_min=0.425,
+ a_max=0.75,
)
@pytest.fixture
def model(self):
parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ x = self.ground_truth
+ parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": x[0],
+ "Positive electrode active material volume fraction": x[1],
+ }
+ )
return pybop.lithium_ion.SPM(parameter_set=parameter_set)
@pytest.fixture
@@ -25,12 +36,12 @@ def parameters(self):
return pybop.Parameters(
pybop.Parameter(
"Negative electrode active material volume fraction",
- prior=pybop.Uniform(0.4, 0.7),
- bounds=[0.375, 0.725],
+ prior=pybop.Uniform(0.4, 0.75),
+ bounds=[0.375, 0.775],
),
pybop.Parameter(
"Positive electrode active material volume fraction",
- prior=pybop.Uniform(0.4, 0.7),
+ prior=pybop.Uniform(0.4, 0.75),
# no bounds
),
)
@@ -42,158 +53,201 @@ def init_soc(self, request):
@pytest.fixture(
params=[
pybop.GaussianLogLikelihoodKnownSigma,
+ pybop.GaussianLogLikelihood,
pybop.RootMeanSquaredError,
pybop.SumSquaredError,
- pybop.MAP,
+ pybop.SumofPower,
+ pybop.Minkowski,
+ pybop.LogPosterior,
]
)
- def cost_class(self, request):
+ def cost(self, request):
return request.param
def noise(self, sigma, values):
return np.random.normal(0, sigma, values)
+ @pytest.fixture(
+ params=[
+ pybop.SciPyDifferentialEvolution,
+ pybop.CuckooSearch,
+ pybop.NelderMead,
+ pybop.IRPropMin,
+ pybop.AdamW,
+ pybop.CMAES,
+ pybop.SNES,
+ pybop.XNES,
+ ]
+ )
+ def optimiser(self, request):
+ return request.param
+
@pytest.fixture
- def spm_costs(self, model, parameters, cost_class, init_soc):
+ def optim(self, optimiser, model, parameters, cost, init_soc):
# Form dataset
- solution = self.get_data(model, parameters, self.ground_truth, init_soc)
+ solution = self.get_data(model, init_soc)
dataset = pybop.Dataset(
{
"Time [s]": solution["Time [s]"].data,
"Current function [A]": solution["Current [A]"].data,
"Voltage [V]": solution["Voltage [V]"].data
- + self.noise(0.002, len(solution["Time [s]"].data)),
+ + self.noise(self.sigma0, len(solution["Time [s]"].data)),
}
)
- # Define the cost to optimise
- problem = pybop.FittingProblem(model, parameters, dataset, init_soc=init_soc)
- if cost_class in [pybop.GaussianLogLikelihoodKnownSigma]:
- return cost_class(problem, sigma=[0.03, 0.03])
- elif cost_class in [pybop.MAP]:
- return cost_class(
- problem, pybop.GaussianLogLikelihoodKnownSigma, sigma=[0.03, 0.03]
+ # IDAKLU Solver for Gradient-based optimisers
+ if optimiser in [pybop.AdamW, pybop.IRPropMin]:
+ model.solver = pybamm.IDAKLUSolver()
+
+ # Define the problem
+ problem = pybop.FittingProblem(model, parameters, dataset)
+
+ # Construct the cost
+ if cost is pybop.GaussianLogLikelihoodKnownSigma:
+ cost = cost(problem, sigma0=self.sigma0)
+ elif cost is pybop.GaussianLogLikelihood:
+ cost = cost(problem, sigma0=self.sigma0 * 4) # Initial sigma0 guess
+ elif cost is pybop.LogPosterior:
+ cost = cost(
+ pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=self.sigma0)
)
+ elif cost in [pybop.SumofPower, pybop.Minkowski]:
+ cost = cost(problem, p=2.5)
else:
- return cost_class(problem)
+ cost = cost(problem)
+
+ sigma0 = 0.05 if optimiser == pybop.CuckooSearch else 0.02
+ # Construct optimisation object
+ common_args = {
+ "cost": cost,
+ "max_iterations": 250,
+ "absolute_tolerance": 1e-6,
+ "max_unchanged_iterations": 55,
+ "sigma0": [0.05, 0.05, 1e-3]
+ if isinstance(cost, pybop.GaussianLogLikelihood)
+ else sigma0,
+ }
+
+ if isinstance(cost, pybop.LogPosterior):
+ for i in cost.parameters.keys():
+ cost.parameters[i].prior = pybop.Uniform(
+ 0.2, 2.0
+ ) # Increase range to avoid prior == np.inf
+
+ # Set sigma0 and create optimiser
+ optim = optimiser(**common_args)
+ return optim
- @pytest.mark.parametrize(
- "optimiser",
- [
- pybop.SciPyDifferentialEvolution,
- pybop.AdamW,
- pybop.CMAES,
- pybop.IRPropMin,
- pybop.NelderMead,
- pybop.SNES,
- pybop.XNES,
- ],
- )
@pytest.mark.integration
- def test_spm_optimisers(self, optimiser, spm_costs):
- x0 = spm_costs.x0
- # Some optimisers require a complete set of bounds
- if optimiser in [
- pybop.SciPyDifferentialEvolution,
- ]:
- spm_costs.problem.parameters[
- "Positive electrode active material volume fraction"
- ].set_bounds([0.375, 0.725]) # Large range to ensure IC within bounds
- bounds = spm_costs.problem.parameters.get_bounds()
- spm_costs.problem.bounds = bounds
- spm_costs.bounds = bounds
+ def test_spm_optimisers(self, optim):
+ x0 = optim.parameters.initial_value()
- # Test each optimiser
- if optimiser in [pybop.PSO]:
- optim = pybop.Optimisation(
- cost=spm_costs, optimiser=optimiser, sigma0=0.05, max_iterations=250
+ # Add sigma0 to ground truth for GaussianLogLikelihood
+ if isinstance(optim.cost, pybop.GaussianLogLikelihood):
+ self.ground_truth = np.concatenate(
+ (self.ground_truth, np.asarray([self.sigma0]))
)
- else:
- optim = optimiser(cost=spm_costs, sigma0=0.05, max_iterations=250)
- if issubclass(optimiser, pybop.BasePintsOptimiser):
- optim.set_max_unchanged_iterations(iterations=35, absolute_tolerance=1e-5)
initial_cost = optim.cost(x0)
- x, final_cost = optim.run()
+ results = optim.run()
# Assertions
- if not np.allclose(x0, self.ground_truth, atol=1e-5):
- if optim.minimising:
- assert initial_cost > final_cost
- else:
- assert initial_cost < final_cost
- np.testing.assert_allclose(x, self.ground_truth, atol=1.5e-2)
+ if np.allclose(x0, self.ground_truth, atol=1e-5):
+ raise AssertionError("Initial guess is too close to ground truth")
+
+ if isinstance(optim.cost, pybop.GaussianLogLikelihood):
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+ np.testing.assert_allclose(results.x[-1], self.sigma0, atol=5e-4)
+ else:
+ assert (
+ (initial_cost > results.final_cost)
+ if optim.minimising
+ else (initial_cost < results.final_cost)
+ )
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
@pytest.fixture
- def spm_two_signal_cost(self, parameters, model, cost_class):
+ def spm_two_signal_cost(self, parameters, model, cost):
# Form dataset
- init_soc = 0.5
- solution = self.get_data(model, parameters, self.ground_truth, init_soc)
+ solution = self.get_data(model, init_soc=0.5)
dataset = pybop.Dataset(
{
"Time [s]": solution["Time [s]"].data,
"Current function [A]": solution["Current [A]"].data,
"Voltage [V]": solution["Voltage [V]"].data
- + self.noise(0.002, len(solution["Time [s]"].data)),
+ + self.noise(self.sigma0, len(solution["Time [s]"].data)),
"Bulk open-circuit voltage [V]": solution[
"Bulk open-circuit voltage [V]"
].data
- + self.noise(0.002, len(solution["Time [s]"].data)),
+ + self.noise(self.sigma0, len(solution["Time [s]"].data)),
}
)
# Define the cost to optimise
signal = ["Voltage [V]", "Bulk open-circuit voltage [V]"]
- problem = pybop.FittingProblem(
- model, parameters, dataset, signal=signal, init_soc=init_soc
- )
+ problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
- if cost_class in [pybop.GaussianLogLikelihoodKnownSigma]:
- return cost_class(problem, sigma=[0.05, 0.05])
- elif cost_class in [pybop.MAP]:
- return cost_class(problem, pybop.GaussianLogLikelihoodKnownSigma)
+ if cost is pybop.GaussianLogLikelihoodKnownSigma:
+ return cost(problem, sigma0=self.sigma0)
+ elif cost is pybop.GaussianLogLikelihood:
+ return cost(problem, sigma0=self.sigma0 * 4) # Initial sigma0 guess
+ elif cost is pybop.LogPosterior:
+ return cost(
+ pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=self.sigma0)
+ )
else:
- return cost_class(problem)
+ return cost(problem)
@pytest.mark.parametrize(
"multi_optimiser",
[
pybop.SciPyDifferentialEvolution,
pybop.IRPropMin,
- pybop.XNES,
+ pybop.CMAES,
],
)
@pytest.mark.integration
def test_multiple_signals(self, multi_optimiser, spm_two_signal_cost):
- x0 = spm_two_signal_cost.x0
- # Some optimisers require a complete set of bounds
- if multi_optimiser in [pybop.SciPyDifferentialEvolution]:
- spm_two_signal_cost.problem.parameters[
- "Positive electrode active material volume fraction"
- ].set_bounds([0.375, 0.725]) # Large range to ensure IC within bounds
- bounds = spm_two_signal_cost.problem.parameters.get_bounds()
- spm_two_signal_cost.problem.bounds = bounds
- spm_two_signal_cost.bounds = bounds
+ x0 = spm_two_signal_cost.parameters.initial_value()
+ combined_sigma0 = np.asarray([self.sigma0, self.sigma0])
+
+ common_args = {
+ "cost": spm_two_signal_cost,
+ "max_iterations": 250,
+ "absolute_tolerance": 1e-6,
+ "max_unchanged_iterations": 55,
+ "sigma0": [0.035, 0.035, 6e-3, 6e-3]
+ if isinstance(spm_two_signal_cost, pybop.GaussianLogLikelihood)
+ else 0.02,
+ }
# Test each optimiser
- optim = multi_optimiser(
- cost=spm_two_signal_cost,
- sigma0=0.03,
- max_iterations=250,
- )
+ optim = multi_optimiser(**common_args)
+
+ # Add sigma0 to ground truth for GaussianLogLikelihood
+ if isinstance(spm_two_signal_cost, pybop.GaussianLogLikelihood):
+ self.ground_truth = np.concatenate((self.ground_truth, combined_sigma0))
+
if issubclass(multi_optimiser, pybop.BasePintsOptimiser):
- optim.set_max_unchanged_iterations(iterations=35, absolute_tolerance=1e-5)
+ optim.set_max_unchanged_iterations(iterations=35, absolute_tolerance=1e-6)
- initial_cost = optim.cost(spm_two_signal_cost.x0)
- x, final_cost = optim.run()
+ initial_cost = optim.cost(optim.parameters.initial_value())
+ results = optim.run()
# Assertions
- if not np.allclose(x0, self.ground_truth, atol=1e-5):
- if optim.minimising:
- assert initial_cost > final_cost
- else:
- assert initial_cost < final_cost
- np.testing.assert_allclose(x, self.ground_truth, atol=1.5e-2)
+ if np.allclose(x0, self.ground_truth, atol=1e-5):
+ raise AssertionError("Initial guess is too close to ground truth")
+
+ if isinstance(spm_two_signal_cost, pybop.GaussianLogLikelihood):
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+ np.testing.assert_allclose(results.x[-2:], combined_sigma0, atol=5e-4)
+ else:
+ assert (
+ (initial_cost > results.final_cost)
+ if optim.minimising
+ else (initial_cost < results.final_cost)
+ )
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
@pytest.mark.parametrize("init_soc", [0.4, 0.6])
@pytest.mark.integration
@@ -204,7 +258,7 @@ def test_model_misparameterisation(self, parameters, model, init_soc):
second_model = pybop.lithium_ion.SPMe(parameter_set=second_parameter_set)
# Form dataset
- solution = self.get_data(second_model, parameters, self.ground_truth, init_soc)
+ solution = self.get_data(second_model, init_soc)
dataset = pybop.Dataset(
{
"Time [s]": solution["Time [s]"].data,
@@ -214,7 +268,7 @@ def test_model_misparameterisation(self, parameters, model, init_soc):
)
# Define the cost to optimise
- problem = pybop.FittingProblem(model, parameters, dataset, init_soc=init_soc)
+ problem = pybop.FittingProblem(model, parameters, dataset)
cost = pybop.RootMeanSquaredError(problem)
# Select optimiser
@@ -222,28 +276,27 @@ def test_model_misparameterisation(self, parameters, model, init_soc):
# Build the optimisation problem
optim = optimiser(cost=cost)
- initial_cost = optim.cost(cost.x0)
+ initial_cost = optim.cost(optim.x0)
# Run the optimisation problem
- x, final_cost = optim.run()
+ results = optim.run()
# Assertion for final_cost
- assert initial_cost > final_cost
+ assert initial_cost > results.final_cost
# Assertion for x
with np.testing.assert_raises(AssertionError):
- np.testing.assert_allclose(x, self.ground_truth, atol=2e-2)
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=2e-2)
- def get_data(self, model, parameters, x, init_soc):
- model.parameters = parameters
+ def get_data(self, model, init_soc):
+ initial_state = {"Initial SoC": init_soc}
experiment = pybop.Experiment(
[
(
- "Discharge at 0.5C for 6 minutes (4 second period)",
- "Charge at 0.5C for 6 minutes (4 second period)",
+ "Discharge at 0.5C for 3 minutes (4 second period)",
+ "Charge at 0.5C for 3 minutes (4 second period)",
),
]
- * 2
)
- sim = model.predict(init_soc=init_soc, experiment=experiment, inputs=x)
+ sim = model.predict(initial_state=initial_state, experiment=experiment)
return sim
diff --git a/tests/integration/test_thevenin_parameterisation.py b/tests/integration/test_thevenin_parameterisation.py
index 1ef1bc3eb..2b4bdabd1 100644
--- a/tests/integration/test_thevenin_parameterisation.py
+++ b/tests/integration/test_thevenin_parameterisation.py
@@ -11,17 +11,25 @@ class TestTheveninParameterisation:
@pytest.fixture(autouse=True)
def setup(self):
- self.ground_truth = np.asarray([0.05, 0.05]) + np.random.normal(
- loc=0.0, scale=0.01, size=2
+ self.ground_truth = np.clip(
+ np.asarray([0.05, 0.05]) + np.random.normal(loc=0.0, scale=0.01, size=2),
+ a_min=0.0,
+ a_max=0.1,
)
@pytest.fixture
def model(self):
parameter_set = pybop.ParameterSet(
- json_path="examples/scripts/parameters/initial_ecm_parameters.json"
+ json_path="examples/parameters/initial_ecm_parameters.json"
)
parameter_set.import_parameters()
- parameter_set.params.update({"C1 [F]": 1000})
+ parameter_set.params.update(
+ {
+ "C1 [F]": 1000,
+ "R0 [Ohm]": self.ground_truth[0],
+ "R1 [Ohm]": self.ground_truth[1],
+ }
+ )
return pybop.empirical.Thevenin(parameter_set=parameter_set)
@pytest.fixture
@@ -39,15 +47,11 @@ def parameters(self):
),
)
- @pytest.fixture(params=[pybop.RootMeanSquaredError, pybop.SumSquaredError])
- def cost_class(self, request):
- return request.param
-
@pytest.fixture
- def cost(self, model, parameters, cost_class):
+ def dataset(self, model):
# Form dataset
- solution = self.get_data(model, parameters, self.ground_truth)
- dataset = pybop.Dataset(
+ solution = self.get_data(model)
+ return pybop.Dataset(
{
"Time [s]": solution["Time [s]"].data,
"Current function [A]": solution["Current [A]"].data,
@@ -55,52 +59,62 @@ def cost(self, model, parameters, cost_class):
}
)
- # Define the cost to optimise
- problem = pybop.FittingProblem(model, parameters, dataset)
- return cost_class(problem)
-
@pytest.mark.parametrize(
- "optimiser",
- [pybop.SciPyMinimize, pybop.GradientDescent, pybop.PSO],
+ "cost_class", [pybop.RootMeanSquaredError, pybop.SumSquaredError]
+ )
+ @pytest.mark.parametrize(
+ "optimiser, method",
+ [
+ (pybop.SciPyMinimize, "trust-constr"),
+ (pybop.SciPyMinimize, "SLSQP"),
+ (pybop.SciPyMinimize, "COBYLA"),
+ (pybop.GradientDescent, ""),
+ (pybop.PSO, ""),
+ ],
)
@pytest.mark.integration
- def test_optimisers_on_simple_model(self, optimiser, cost):
- x0 = cost.x0
+ def test_optimisers_on_simple_model(
+ self, model, parameters, dataset, cost_class, optimiser, method
+ ):
+ # Define the cost to optimise
+ problem = pybop.FittingProblem(model, parameters, dataset)
+ cost = cost_class(problem)
+
+ x0 = cost.parameters.initial_value()
if optimiser in [pybop.GradientDescent]:
optim = optimiser(
- cost=cost,
- sigma0=2.5e-4,
- max_iterations=250,
+ cost=cost, sigma0=2.5e-4, max_iterations=250, method=method
)
else:
- optim = optimiser(
- cost=cost,
- sigma0=0.03,
- max_iterations=250,
- )
+ optim = optimiser(cost=cost, sigma0=0.03, max_iterations=250, method=method)
if isinstance(optimiser, pybop.BasePintsOptimiser):
optim.set_max_unchanged_iterations(iterations=35, absolute_tolerance=1e-5)
- initial_cost = optim.cost(x0)
- x, final_cost = optim.run()
+ initial_cost = optim.cost(optim.parameters.initial_value())
+ results = optim.run()
# Assertions
if not np.allclose(x0, self.ground_truth, atol=1e-5):
if optim.minimising:
- assert initial_cost > final_cost
+ assert initial_cost > results.final_cost
else:
- assert initial_cost < final_cost
- np.testing.assert_allclose(x, self.ground_truth, atol=1.5e-2)
+ assert initial_cost < results.final_cost
+ else:
+ raise ValueError("Initial value is the same as the ground truth value.")
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+
+ if isinstance(optimiser, pybop.SciPyMinimize):
+ assert results.scipy_result.success is True
- def get_data(self, model, parameters, x):
- model.parameters = parameters
+ def get_data(self, model):
experiment = pybop.Experiment(
[
(
"Discharge at 0.5C for 2 minutes (4 seconds period)",
+ "Rest for 20 seconds (4 seconds period)",
"Charge at 0.5C for 2 minutes (4 seconds period)",
),
]
)
- sim = model.predict(experiment=experiment, inputs=x)
+ sim = model.predict(experiment=experiment)
return sim
diff --git a/tests/integration/test_transformation.py b/tests/integration/test_transformation.py
new file mode 100644
index 000000000..65a477755
--- /dev/null
+++ b/tests/integration/test_transformation.py
@@ -0,0 +1,166 @@
+import numpy as np
+import pytest
+
+import pybop
+
+
+class TestTransformation:
+ """
+ A class for integration tests of the transformation methods.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.sigma0 = 2e-3
+ self.ground_truth = np.clip(
+ np.asarray([0.05, 0.05]) + np.random.normal(loc=0.0, scale=0.01, size=2),
+ a_min=0.0,
+ a_max=0.1,
+ )
+
+ @pytest.fixture
+ def model(self):
+ parameter_set = pybop.ParameterSet(
+ json_path="examples/parameters/initial_ecm_parameters.json"
+ )
+ parameter_set.import_parameters()
+ parameter_set.params.update(
+ {
+ "C1 [F]": 1000,
+ "R0 [Ohm]": self.ground_truth[0],
+ "R1 [Ohm]": self.ground_truth[1],
+ }
+ )
+ return pybop.empirical.Thevenin(parameter_set=parameter_set)
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "R0 [Ohm]",
+ prior=pybop.Uniform(0.001, 0.1),
+ bounds=[0, 0.1],
+ transformation=pybop.ScaledTransformation(
+ coefficient=1 / 0.35, intercept=-0.375
+ ),
+ ),
+ pybop.Parameter(
+ "R1 [Ohm]",
+ prior=pybop.Uniform(0.001, 0.1),
+ bounds=[0, 0.1],
+ transformation=pybop.LogTransformation(),
+ ),
+ )
+
+ @pytest.fixture(params=[0.5])
+ def init_soc(self, request):
+ return request.param
+
+ def noise(self, sigma, values):
+ return np.random.normal(0, sigma, values)
+
+ @pytest.fixture(
+ params=[
+ pybop.GaussianLogLikelihoodKnownSigma,
+ pybop.GaussianLogLikelihood,
+ pybop.RootMeanSquaredError,
+ pybop.SumSquaredError,
+ pybop.SumofPower,
+ pybop.Minkowski,
+ pybop.LogPosterior,
+ pybop.LogPosterior, # Second for GaussianLogLikelihood
+ ]
+ )
+ def cost_cls(self, request):
+ return request.param
+
+ @pytest.fixture
+ def cost(self, model, parameters, init_soc, cost_cls):
+ # Form dataset
+ solution = self.get_data(model, init_soc)
+ dataset = pybop.Dataset(
+ {
+ "Time [s]": solution["Time [s]"].data,
+ "Current function [A]": solution["Current [A]"].data,
+ "Voltage [V]": solution["Voltage [V]"].data
+ + self.noise(self.sigma0, len(solution["Time [s]"].data)),
+ }
+ )
+
+ # Construct problem
+ problem = pybop.FittingProblem(model, parameters, dataset)
+
+ # Construct the cost
+ first_map = True
+ if cost_cls is pybop.GaussianLogLikelihoodKnownSigma:
+ return cost_cls(problem, sigma0=self.sigma0)
+ elif cost_cls is pybop.GaussianLogLikelihood:
+ return cost_cls(problem)
+ elif cost_cls is pybop.LogPosterior and first_map:
+ first_map = False
+ return cost_cls(log_likelihood=pybop.GaussianLogLikelihood(problem))
+ elif cost_cls is pybop.LogPosterior:
+ return cost_cls(
+ log_likelihood=pybop.GaussianLogLikelihoodKnownSigma(
+ problem, sigma0=self.sigma0
+ )
+ )
+ else:
+ return cost_cls(problem)
+
+ @pytest.mark.parametrize(
+ "optimiser",
+ [
+ pybop.IRPropMin,
+ pybop.NelderMead,
+ ],
+ )
+ @pytest.mark.integration
+ def test_thevenin_transformation(self, optimiser, cost):
+ x0 = cost.parameters.initial_value()
+ optim = optimiser(
+ cost=cost,
+ sigma0=[0.03, 0.03, 1e-3]
+ if isinstance(cost, (pybop.GaussianLogLikelihood, pybop.LogPosterior))
+ else [0.03, 0.03],
+ max_unchanged_iterations=35,
+ absolute_tolerance=1e-6,
+ max_iterations=250,
+ )
+
+ initial_cost = optim.cost(x0)
+ results = optim.run()
+
+ # Add sigma0 to ground truth for GaussianLogLikelihood
+ if isinstance(optim.cost, (pybop.GaussianLogLikelihood, pybop.LogPosterior)):
+ self.ground_truth = np.concatenate(
+ (self.ground_truth, np.asarray([self.sigma0]))
+ )
+
+ # Assertions
+ if np.allclose(x0, self.ground_truth, atol=1e-5):
+ raise AssertionError("Initial guess is too close to ground truth")
+
+ if isinstance(cost, pybop.GaussianLogLikelihood):
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+ np.testing.assert_allclose(results.x[-1], self.sigma0, atol=5e-4)
+ else:
+ assert (
+ (initial_cost > results.final_cost)
+ if optim.minimising
+ else (initial_cost < results.final_cost)
+ )
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+
+ def get_data(self, model, init_soc):
+ initial_state = {"Initial SoC": init_soc}
+ experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 2 minutes (4 second period)",
+ "Rest for 1 minute (4 second period)",
+ ),
+ ]
+ )
+ sim = model.predict(initial_state=initial_state, experiment=experiment)
+ return sim
diff --git a/tests/integration/test_weighted_cost.py b/tests/integration/test_weighted_cost.py
new file mode 100644
index 000000000..13df11cda
--- /dev/null
+++ b/tests/integration/test_weighted_cost.py
@@ -0,0 +1,205 @@
+import numpy as np
+import pytest
+from pybamm import Parameter
+
+import pybop
+
+
+class TestWeightedCost:
+ """
+ A class to test the weighted cost function.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.sigma0 = 0.002
+ self.ground_truth = np.clip(
+ np.asarray([0.55, 0.55]) + np.random.normal(loc=0.0, scale=0.05, size=2),
+ a_min=0.4,
+ a_max=0.75,
+ )
+
+ @pytest.fixture
+ def model(self):
+ parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ parameter_set.update(
+ {
+ "Electrolyte density [kg.m-3]": Parameter("Separator density [kg.m-3]"),
+ "Negative electrode active material density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Negative electrode carbon-binder density [kg.m-3]": Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Positive electrode active material density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Positive electrode carbon-binder density [kg.m-3]": Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ },
+ check_already_exists=False,
+ )
+ x = self.ground_truth
+ parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": x[0],
+ "Positive electrode active material volume fraction": x[1],
+ }
+ )
+ return pybop.lithium_ion.SPM(parameter_set=parameter_set)
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.75),
+ bounds=[0.375, 0.75],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Uniform(0.4, 0.75),
+ # no bounds
+ ),
+ )
+
+ @pytest.fixture(params=[0.4])
+ def init_soc(self, request):
+ return request.param
+
+ @pytest.fixture(
+ params=[
+ (
+ pybop.GaussianLogLikelihoodKnownSigma,
+ pybop.RootMeanSquaredError,
+ pybop.SumSquaredError,
+ pybop.LogPosterior,
+ )
+ ]
+ )
+ def cost_class(self, request):
+ return request.param
+
+ def noise(self, sigma, values):
+ return np.random.normal(0, sigma, values)
+
+ @pytest.fixture
+ def weighted_fitting_cost(self, model, parameters, cost_class, init_soc):
+ # Form dataset
+ solution = self.get_data(model, init_soc)
+ dataset = pybop.Dataset(
+ {
+ "Time [s]": solution["Time [s]"].data,
+ "Current function [A]": solution["Current [A]"].data,
+ "Voltage [V]": solution["Voltage [V]"].data
+ + self.noise(self.sigma0, len(solution["Time [s]"].data)),
+ }
+ )
+
+ # Define the cost to optimise
+ problem = pybop.FittingProblem(model, parameters, dataset)
+ costs = []
+ for cost in cost_class:
+ if issubclass(cost, pybop.LogPosterior):
+ costs.append(
+ cost(
+ pybop.GaussianLogLikelihoodKnownSigma(
+ problem, sigma0=self.sigma0
+ ),
+ )
+ )
+ elif issubclass(cost, pybop.BaseLikelihood):
+ costs.append(cost(problem, sigma0=self.sigma0))
+ else:
+ costs.append(cost(problem))
+
+ return pybop.WeightedCost(*costs, weights=[0.1, 1, 0.5, 0.6])
+
+ @pytest.mark.integration
+ def test_fitting_costs(self, weighted_fitting_cost):
+ x0 = weighted_fitting_cost.parameters.initial_value()
+ optim = pybop.CuckooSearch(
+ cost=weighted_fitting_cost,
+ sigma0=0.03,
+ max_iterations=250,
+ max_unchanged_iterations=35,
+ )
+
+ initial_cost = optim.cost(optim.parameters.initial_value())
+ results = optim.run()
+
+ # Assertions
+ if not np.allclose(x0, self.ground_truth, atol=1e-5):
+ if optim.minimising:
+ assert initial_cost > results.final_cost
+ else:
+ assert initial_cost < results.final_cost
+ np.testing.assert_allclose(results.x, self.ground_truth, atol=1.5e-2)
+
+ @pytest.fixture(
+ params=[
+ (
+ pybop.GravimetricEnergyDensity,
+ pybop.VolumetricEnergyDensity,
+ )
+ ]
+ )
+ def design_cost(self, request):
+ return request.param
+
+ @pytest.fixture
+ def weighted_design_cost(self, model, design_cost):
+ initial_state = {"Initial SoC": 1.0}
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode thickness [m]",
+ prior=pybop.Gaussian(5e-05, 5e-06),
+ bounds=[2e-06, 10e-05],
+ ),
+ pybop.Parameter(
+ "Negative electrode thickness [m]",
+ prior=pybop.Gaussian(5e-05, 5e-06),
+ bounds=[2e-06, 10e-05],
+ ),
+ )
+ experiment = pybop.Experiment(
+ ["Discharge at 1C until 3.5 V (5 seconds period)"],
+ )
+
+ problem = pybop.DesignProblem(
+ model, parameters, experiment=experiment, initial_state=initial_state
+ )
+ costs = [cost(problem) for cost in design_cost]
+
+ return pybop.WeightedCost(*costs, weights=[1.0, 0.1])
+
+ @pytest.mark.integration
+ def test_design_costs(self, weighted_design_cost):
+ cost = weighted_design_cost
+ optim = pybop.CuckooSearch(
+ cost,
+ max_iterations=15,
+ allow_infeasible_solutions=False,
+ )
+ initial_values = optim.parameters.initial_value()
+ initial_cost = optim.cost(initial_values)
+ results = optim.run()
+
+ # Assertions
+ assert initial_cost < results.final_cost
+ for i, _ in enumerate(results.x):
+ assert results.x[i] > initial_values[i]
+
+ def get_data(self, model, init_soc):
+ initial_state = {"Initial SoC": init_soc}
+ experiment = pybop.Experiment(
+ [
+ (
+ "Discharge at 0.5C for 3 minutes (4 second period)",
+ "Charge at 0.5C for 3 minutes (4 second period)",
+ ),
+ ]
+ )
+ sim = model.predict(initial_state=initial_state, experiment=experiment)
+ return sim
diff --git a/tests/plotting/test_plotly_manager.py b/tests/plotting/test_plotly_manager.py
index 80bc3bb58..70cca7704 100644
--- a/tests/plotting/test_plotly_manager.py
+++ b/tests/plotting/test_plotly_manager.py
@@ -7,7 +7,7 @@
import pytest
import pybop
-from pybop import PlotlyManager
+from pybop.plot import PlotlyManager
# Find the Python executable
python_executable = which("python")
@@ -21,7 +21,7 @@ def plotly_installed():
# If Plotly is not installed initially, install it
if not initially_installed:
- subprocess.check_call([python_executable, "-m", "pip", "install", "plotly"])
+ PlotlyManager.install_plotly()
# Yield control back to the tests
yield
@@ -50,7 +50,7 @@ def uninstall_plotly_if_installed():
# If Plotly was uninstalled for the test, reinstall it afterwards
if was_installed:
- subprocess.check_call([python_executable, "-m", "pip", "install", "plotly"])
+ PlotlyManager.install_plotly()
# Reset the default renderer for tests
plotly.io.renderers.default = None
@@ -95,7 +95,7 @@ def test_cancel_installation(mocker, uninstall_plotly_if_installed):
with pytest.raises(SystemExit) as pytest_wrapped_e:
PlotlyManager().prompt_for_plotly_installation()
- assert pytest_wrapped_e.type == SystemExit
+ assert pytest_wrapped_e.type is SystemExit
assert pytest_wrapped_e.value.code == 1
assert not is_package_installed("plotly")
@@ -121,7 +121,6 @@ def is_package_installed(package_name):
def dataset(plotly_installed):
# Construct and simulate model
model = pybop.lithium_ion.SPM()
- model.parameter_set = model.pybamm_model.default_parameter_values
solution = model.predict(t_eval=np.linspace(0, 10, 100))
# Form dataset
@@ -136,37 +135,37 @@ def dataset(plotly_installed):
@pytest.mark.unit
def test_standard_plot(dataset, plotly_installed):
# Check the StandardPlot class
- pybop.StandardPlot(dataset["Time [s]"], dataset["Terminal voltage [V]"])
+ pybop.plot.StandardPlot(dataset["Time [s]"], dataset["Terminal voltage [V]"])
# Check the StandardSubplot class
- pybop.StandardSubplot(
+ pybop.plot.StandardSubplot(
dataset["Time [s]"],
[dataset["Terminal voltage [V]"], dataset["Current [A]"]],
num_rows=1,
)
- pybop.StandardSubplot(
+ pybop.plot.StandardSubplot(
dataset["Time [s]"],
[dataset["Terminal voltage [V]"], dataset["Current [A]"]],
num_cols=1,
)
- # Check plotting numpy arrays, lists, and lists of numpy arrays
- pybop.plot_trajectories(dataset["Time [s]"], dataset["Terminal voltage [V]"])
- pybop.plot_trajectories(
+ # Check plot numpy arrays, lists, and lists of numpy arrays
+ pybop.plot.trajectories(dataset["Time [s]"], dataset["Terminal voltage [V]"])
+ pybop.plot.trajectories(
dataset["Time [s]"].tolist(), dataset["Terminal voltage [V]"].tolist()
)
- pybop.plot_trajectories(
+ pybop.plot.trajectories(
[dataset["Time [s]"]],
[dataset["Terminal voltage [V]"], dataset["Current [A]"]],
)
- pybop.plot_trajectories(
+ pybop.plot.trajectories(
[dataset["Time [s]"], dataset["Time [s]"]],
[dataset["Terminal voltage [V]"], dataset["Current [A]"]],
)
# Test incorrect dimensions
with pytest.raises(ValueError):
- pybop.plot_trajectories(
+ pybop.plot.trajectories(
[dataset["Time [s]"], dataset["Current [A]"]],
dataset["Terminal voltage [V]"],
)
@@ -174,6 +173,6 @@ def test_standard_plot(dataset, plotly_installed):
@pytest.mark.unit
def test_plot_dataset(dataset, plotly_installed):
- # Test plotting of a dataset
- pybop.plot_dataset(dataset, signal=["Terminal voltage [V]"])
- pybop.plot_dataset(dataset, signal=["Terminal voltage [V]", "Current [A]"])
+ # Test plot of a dataset
+ pybop.plot.dataset(dataset, signal=["Terminal voltage [V]"])
+ pybop.plot.dataset(dataset, signal=["Terminal voltage [V]", "Current [A]"])
diff --git a/tests/unit/test_cost.py b/tests/unit/test_cost.py
index 3c0d81514..e9ad01dcd 100644
--- a/tests/unit/test_cost.py
+++ b/tests/unit/test_cost.py
@@ -1,4 +1,7 @@
+from copy import copy
+
import numpy as np
+import pybamm
import pytest
import pybop
@@ -9,21 +12,30 @@ class TestCosts:
Class for tests cost functions
"""
+ # Define an invalid likelihood class for MAP tests
+ class InvalidLikelihood:
+ def __init__(self, problem, sigma0):
+ pass
+
@pytest.fixture
- def model(self):
- return pybop.lithium_ion.SPM()
+ def model(self, ground_truth):
+ solver = pybamm.IDAKLUSolver()
+ model = pybop.lithium_ion.SPM(solver=solver)
+ model.parameter_set["Negative electrode active material volume fraction"] = (
+ ground_truth
+ )
+ return model
@pytest.fixture
def ground_truth(self):
return 0.52
@pytest.fixture
- def parameters(self, ground_truth):
+ def parameters(self):
return pybop.Parameter(
"Negative electrode active material volume fraction",
prior=pybop.Gaussian(0.5, 0.01),
bounds=[0.375, 0.625],
- initial_value=ground_truth,
)
@pytest.fixture
@@ -35,13 +47,7 @@ def experiment(self):
)
@pytest.fixture
- def dataset(self, model, experiment, ground_truth):
- model.parameter_set = model.pybamm_model.default_parameter_values
- model.parameter_set.update(
- {
- "Negative electrode active material volume fraction": ground_truth,
- }
- )
+ def dataset(self, model, experiment):
solution = model.predict(experiment=experiment)
return pybop.Dataset(
{
@@ -59,29 +65,30 @@ def signal(self):
def problem(self, model, parameters, dataset, signal, request):
cut_off = request.param
model.parameter_set.update({"Lower voltage cut-off [V]": cut_off})
- problem = pybop.FittingProblem(
- model, parameters, dataset, signal=signal, init_soc=1.0
- )
- problem.dataset = dataset # add this to pass the pybop dataset to cost
+ problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
return problem
@pytest.fixture(
params=[
pybop.RootMeanSquaredError,
pybop.SumSquaredError,
+ pybop.Minkowski,
+ pybop.SumofPower,
pybop.ObserverCost,
- pybop.MAP,
+ pybop.LogPosterior,
]
)
def cost(self, problem, request):
cls = request.param
if cls in [pybop.SumSquaredError, pybop.RootMeanSquaredError]:
return cls(problem)
- elif cls in [pybop.MAP]:
- return cls(problem, pybop.GaussianLogLikelihoodKnownSigma)
- elif cls in [pybop.ObserverCost]:
+ elif cls is pybop.LogPosterior:
+ return cls(pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=0.002))
+ elif cls in [pybop.Minkowski, pybop.SumofPower]:
+ return cls(problem, p=2)
+ elif cls is pybop.ObserverCost:
inputs = problem.parameters.initial_value()
- state = problem._model.reinit(inputs)
+ state = problem.model.reinit(inputs)
n = len(state)
sigma_diag = [0.0] * n
sigma_diag[0] = 1e-4
@@ -91,11 +98,11 @@ def cost(self, problem, request):
process_diag[1] = 1e-4
sigma0 = np.diag(sigma_diag)
process = np.diag(process_diag)
- dataset = problem.dataset
+ dataset = pybop.Dataset(data_dictionary=problem.dataset)
return cls(
pybop.UnscentedKalmanFilterObserver(
problem.parameters,
- problem._model,
+ problem.model,
sigma0=sigma0,
process=process,
measure=1e-4,
@@ -110,18 +117,6 @@ def test_base(self, problem):
assert base_cost.problem == problem
with pytest.raises(NotImplementedError):
base_cost([0.5])
- with pytest.raises(NotImplementedError):
- base_cost.evaluateS1([0.5])
-
- @pytest.mark.unit
- def test_MAP(self, problem):
- # Incorrect likelihood
- with pytest.raises(ValueError):
- pybop.MAP(problem, pybop.SumSquaredError)
-
- # Incorrect construction of likelihood
- with pytest.raises(ValueError):
- pybop.MAP(problem, pybop.GaussianLogLikelihoodKnownSigma, sigma="string")
@pytest.mark.unit
def test_costs(self, cost):
@@ -132,16 +127,12 @@ def test_costs(self, cost):
higher_cost = cost([0.55])
lower_cost = cost([0.52])
assert higher_cost > lower_cost or (
- higher_cost == lower_cost and higher_cost == np.inf
+ higher_cost == lower_cost and not np.isfinite(higher_cost)
)
# Test type of returned value
assert np.isscalar(cost([0.5]))
- if isinstance(cost, pybop.ObserverCost):
- with pytest.raises(NotImplementedError):
- cost.evaluateS1([0.5])
-
# Test UserWarnings
if isinstance(cost, (pybop.SumSquaredError, pybop.RootMeanSquaredError)):
assert cost([0.5]) >= 0
@@ -149,37 +140,99 @@ def test_costs(self, cost):
cost([1.1])
# Test option setting
- cost.set_fail_gradient(1)
+ cost.set_fail_gradient(10)
+ assert cost._de == 10
- if isinstance(cost, pybop.SumSquaredError):
- e, de = cost.evaluateS1([0.5])
+ if not isinstance(cost, (pybop.ObserverCost, pybop.LogPosterior)):
+ e, de = cost([0.5], calculate_grad=True)
assert np.isscalar(e)
- assert type(de) == np.ndarray
+ assert isinstance(de, np.ndarray)
# Test exception for non-numeric inputs
- with pytest.raises(ValueError):
- cost.evaluateS1(["StringInputShouldNotWork"])
+ with pytest.raises(
+ TypeError, match="Inputs must be a dictionary or numeric."
+ ):
+ cost(["StringInputShouldNotWork"], calculate_grad=True)
with pytest.warns(UserWarning) as record:
- cost.evaluateS1([1.1])
+ cost([1.1], calculate_grad=True)
for i in range(len(record)):
assert "Non-physical point encountered" in str(record[i].message)
# Test infeasible locations
- cost.problem._model.allow_infeasible_solutions = False
+ cost.problem.model.allow_infeasible_solutions = False
assert cost([1.1]) == np.inf
- assert cost.evaluateS1([1.1]) == (np.inf, cost._de)
+ assert cost([1.1], calculate_grad=True) == (np.inf, cost._de)
assert cost([0.01]) == np.inf
- assert cost.evaluateS1([0.01]) == (np.inf, cost._de)
+ assert cost([0.01], calculate_grad=True) == (np.inf, cost._de)
# Test exception for non-numeric inputs
- with pytest.raises(ValueError):
+ with pytest.raises(TypeError, match="Inputs must be a dictionary or numeric."):
cost(["StringInputShouldNotWork"])
- # Test treatment of simulations that terminated early
- # by variation of the cut-off voltage.
+ # Test ValueError for none dy w/ calculate_grad == True
+ if not isinstance(cost, pybop.ObserverCost):
+ with pytest.raises(
+ ValueError,
+ match="Forward model sensitivities need to be provided alongside `calculate_grad=True` for `cost.compute`.",
+ ):
+ cost.compute([1.1], dy=None, calculate_grad=True)
+
+ @pytest.mark.unit
+ def test_minkowski(self, problem):
+ # Incorrect order
+ with pytest.raises(ValueError, match="The order of the Minkowski distance"):
+ pybop.Minkowski(problem, p=-1)
+ with pytest.raises(
+ ValueError,
+ match="For p = infinity, an implementation of the Chebyshev distance is required.",
+ ):
+ pybop.Minkowski(problem, p=np.inf)
+
+ @pytest.mark.unit
+ def test_sumofpower(self, problem):
+ # Incorrect order
+ with pytest.raises(
+ ValueError, match="The order of 'p' must be greater than 0."
+ ):
+ pybop.SumofPower(problem, p=-1)
+
+ with pytest.raises(ValueError, match="p = np.inf is not yet supported."):
+ pybop.SumofPower(problem, p=np.inf)
+
+ @pytest.fixture
+ def design_problem(self, parameters, experiment, signal):
+ parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ parameter_set.update(
+ {
+ "Electrolyte density [kg.m-3]": pybamm.Parameter(
+ "Separator density [kg.m-3]"
+ ),
+ "Negative electrode active material density [kg.m-3]": pybamm.Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Negative electrode carbon-binder density [kg.m-3]": pybamm.Parameter(
+ "Negative electrode density [kg.m-3]"
+ ),
+ "Positive electrode active material density [kg.m-3]": pybamm.Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ "Positive electrode carbon-binder density [kg.m-3]": pybamm.Parameter(
+ "Positive electrode density [kg.m-3]"
+ ),
+ },
+ check_already_exists=False,
+ )
+ model = pybop.lithium_ion.SPM(parameter_set=parameter_set)
+ return pybop.DesignProblem(
+ model,
+ parameters,
+ experiment,
+ signal=signal,
+ initial_state={"Initial SoC": 0.5},
+ )
@pytest.mark.parametrize(
"cost_class",
@@ -187,24 +240,14 @@ def test_costs(self, cost):
pybop.DesignCost,
pybop.GravimetricEnergyDensity,
pybop.VolumetricEnergyDensity,
+ pybop.GravimetricPowerDensity,
+ pybop.VolumetricPowerDensity,
],
)
@pytest.mark.unit
- def test_design_costs(
- self,
- cost_class,
- model,
- parameters,
- experiment,
- signal,
- ):
- # Construct Problem
- problem = pybop.DesignProblem(
- model, parameters, experiment, signal=signal, init_soc=0.5
- )
-
+ def test_design_costs(self, cost_class, design_problem):
# Construct Cost
- cost = cost_class(problem)
+ cost = cost_class(design_problem)
if cost_class in [pybop.DesignCost]:
with pytest.raises(NotImplementedError):
@@ -220,13 +263,166 @@ def test_design_costs(
assert cost([-0.1]) == -np.inf # Should not be a viable design
# Test infeasible locations
- cost.problem._model.allow_infeasible_solutions = False
+ cost.problem.model.allow_infeasible_solutions = False
assert cost([1.1]) == -np.inf
# Test exception for non-numeric inputs
- with pytest.raises(ValueError):
+ with pytest.raises(
+ TypeError, match="Inputs must be a dictionary or numeric."
+ ):
cost(["StringInputShouldNotWork"])
# Compute after updating nominal capacity
- cost = cost_class(problem, update_capacity=True)
+ design_problem.update_capacity = True
+ cost = cost_class(design_problem)
cost([0.4])
+
+ @pytest.fixture
+ def noisy_problem(self, ground_truth, parameters, experiment):
+ model = pybop.lithium_ion.SPM()
+ model.parameter_set["Negative electrode active material volume fraction"] = (
+ ground_truth
+ )
+ sol = model.predict(experiment=experiment)
+ noisy_dataset = pybop.Dataset(
+ {
+ "Time [s]": sol["Time [s]"].data,
+ "Current function [A]": sol["Current [A]"].data,
+ "Voltage [V]": sol["Voltage [V]"].data
+ + np.random.normal(0, 0.02, len(sol["Time [s]"].data)),
+ }
+ )
+ return pybop.FittingProblem(model, parameters, noisy_dataset)
+
+ @pytest.mark.unit
+ def test_weighted_fitting_cost(self, noisy_problem):
+ problem = noisy_problem
+ cost1 = pybop.SumSquaredError(problem)
+ cost2 = pybop.RootMeanSquaredError(problem)
+
+ # Test with and without weights
+ weighted_cost = pybop.WeightedCost(cost1, cost2)
+ np.testing.assert_array_equal(weighted_cost.weights, np.ones(2))
+ weighted_cost = pybop.WeightedCost(cost1, cost2, weights=[1, 1])
+ np.testing.assert_array_equal(weighted_cost.weights, np.ones(2))
+ weighted_cost = pybop.WeightedCost(cost1, cost2, weights=np.array([1, 1]))
+ np.testing.assert_array_equal(weighted_cost.weights, np.ones(2))
+ with pytest.raises(
+ TypeError,
+ match="All costs must be instances of BaseCost.",
+ ):
+ pybop.WeightedCost(cost1.problem)
+ with pytest.raises(
+ ValueError,
+ match="Weights must be numeric values.",
+ ):
+ pybop.WeightedCost(cost1, cost2, weights="Invalid string")
+ with pytest.raises(
+ ValueError,
+ match="Number of weights must match number of costs.",
+ ):
+ pybop.WeightedCost(cost1, cost2, weights=[1])
+
+ # Test with identical problems
+ weight = 100
+ weighted_cost_2 = pybop.WeightedCost(cost1, cost2, weights=[1, weight])
+ assert weighted_cost_2.has_identical_problems is True
+ assert weighted_cost_2.has_separable_problem is False
+ assert weighted_cost_2.problem is problem
+ assert weighted_cost_2([0.5]) >= 0
+ np.testing.assert_allclose(
+ weighted_cost_2([0.6]),
+ cost1([0.6]) + weight * cost2([0.6]),
+ atol=1e-5,
+ )
+
+ # Test with different problems
+ cost3 = pybop.RootMeanSquaredError(copy(problem))
+ weighted_cost_3 = pybop.WeightedCost(cost1, cost3, weights=[1, weight])
+ assert weighted_cost_3.has_identical_problems is False
+ assert weighted_cost_3.has_separable_problem is False
+ assert weighted_cost_3.problem is None
+ assert weighted_cost_3([0.5]) >= 0
+ np.testing.assert_allclose(
+ weighted_cost_3([0.6]),
+ cost1([0.6]) + weight * cost3([0.6]),
+ atol=1e-5,
+ )
+
+ errors_2, sensitivities_2 = weighted_cost_2([0.5], calculate_grad=True)
+ errors_3, sensitivities_3 = weighted_cost_3([0.5], calculate_grad=True)
+ np.testing.assert_allclose(errors_2, errors_3, atol=1e-5)
+ np.testing.assert_allclose(sensitivities_2, sensitivities_3, atol=1e-5)
+
+ # Test LogPosterior explicitly
+ cost4 = pybop.LogPosterior(pybop.GaussianLogLikelihood(problem))
+ weighted_cost_4 = pybop.WeightedCost(cost1, cost4, weights=[1, -1 / weight])
+ assert weighted_cost_4.has_identical_problems is True
+ assert weighted_cost_4.has_separable_problem is False
+ sigma = 0.01
+ assert np.isfinite(cost4.parameters["Sigma for output 1"].prior.logpdf(sigma))
+ assert np.isfinite(weighted_cost_4([0.5, sigma]))
+ np.testing.assert_allclose(
+ weighted_cost_4([0.6, sigma]),
+ cost1([0.6, sigma]) - 1 / weight * cost4([0.6, sigma]),
+ atol=1e-5,
+ )
+
+ @pytest.mark.unit
+ def test_weighted_design_cost(self, design_problem):
+ cost1 = pybop.GravimetricEnergyDensity(design_problem)
+ cost2 = pybop.VolumetricEnergyDensity(design_problem)
+
+ # Test DesignCosts with identical problems
+ weighted_cost = pybop.WeightedCost(cost1, cost2)
+ assert weighted_cost.has_identical_problems is True
+ assert weighted_cost.has_separable_problem is False
+ assert weighted_cost.problem is design_problem
+ assert weighted_cost([0.5]) >= 0
+ np.testing.assert_allclose(
+ weighted_cost([0.6]),
+ cost1([0.6]) + cost2([0.6]),
+ atol=1e-5,
+ )
+
+ # Test DesignCosts with different problems
+ cost3 = pybop.VolumetricEnergyDensity(copy(design_problem))
+ weighted_cost = pybop.WeightedCost(cost1, cost3)
+ assert weighted_cost.has_identical_problems is False
+ assert weighted_cost.has_separable_problem is False
+ for i, _ in enumerate(weighted_cost.costs):
+ assert isinstance(weighted_cost.costs[i].problem, pybop.DesignProblem)
+
+ assert weighted_cost([0.5]) >= 0
+ np.testing.assert_allclose(
+ weighted_cost([0.6]),
+ cost1([0.6]) + cost2([0.6]),
+ atol=1e-5,
+ )
+
+ @pytest.mark.unit
+ def test_weighted_design_cost_with_update_capacity(self, design_problem):
+ design_problem.update_capacity = True
+ cost1 = pybop.GravimetricEnergyDensity(design_problem)
+ cost2 = pybop.VolumetricEnergyDensity(design_problem)
+ weighted_cost = pybop.WeightedCost(cost1, cost2, weights=[1, 1])
+
+ assert weighted_cost.has_identical_problems is True
+ assert weighted_cost.has_separable_problem is False
+ assert weighted_cost.problem is design_problem
+ assert weighted_cost([0.5]) >= 0
+ np.testing.assert_allclose(
+ weighted_cost([0.6]),
+ cost1([0.6]) + cost2([0.6]),
+ atol=1e-5,
+ )
+
+ @pytest.mark.unit
+ def test_mixed_problem_classes(self, problem, design_problem):
+ cost1 = pybop.SumSquaredError(problem)
+ cost2 = pybop.GravimetricEnergyDensity(design_problem)
+ with pytest.raises(
+ TypeError,
+ match="All problems must be of the same class type.",
+ ):
+ pybop.WeightedCost(cost1, cost2)
diff --git a/tests/unit/test_cost_transformations.py b/tests/unit/test_cost_transformations.py
new file mode 100644
index 000000000..3d069528c
--- /dev/null
+++ b/tests/unit/test_cost_transformations.py
@@ -0,0 +1,138 @@
+import numpy as np
+import pytest
+
+import pybop
+
+
+class TestCostsTransformations:
+ """
+ Class for unit testing cost functions with transformations applied.
+ """
+
+ @pytest.fixture(autouse=True)
+ def setup(self):
+ self.x1 = [0.5, 1]
+ self.x2 = [(self.x1[0] + 1) * -2.5, np.log(1)]
+
+ @pytest.fixture
+ def model(self):
+ return pybop.lithium_ion.SPM()
+
+ @pytest.fixture
+ def parameters(self):
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.5, 0.01),
+ bounds=[0.375, 0.625],
+ transformation=pybop.ScaledTransformation(
+ coefficient=-2.5, intercept=1
+ ),
+ ),
+ pybop.Parameter(
+ "Positive electrode Bruggeman coefficient (electrode)",
+ prior=pybop.Gaussian(1, 0.1),
+ transformation=pybop.LogTransformation(),
+ ),
+ )
+ return parameters
+
+ @pytest.fixture
+ def experiment(self):
+ return pybop.Experiment(
+ [
+ ("Discharge at 1C for 1 minutes (6 second period)"),
+ ]
+ )
+
+ @pytest.fixture
+ def dataset(self, model, experiment):
+ solution = model.predict(experiment=experiment)
+ return pybop.Dataset(
+ {
+ "Time [s]": solution["Time [s]"].data,
+ "Current function [A]": solution["Current [A]"].data,
+ "Voltage [V]": solution["Terminal voltage [V]"].data,
+ }
+ )
+
+ @pytest.fixture
+ def problem(self, model, parameters, dataset, request):
+ problem = pybop.FittingProblem(model, parameters, dataset)
+ return problem
+
+ @pytest.fixture(
+ params=[
+ pybop.RootMeanSquaredError,
+ pybop.SumSquaredError,
+ pybop.Minkowski,
+ pybop.SumofPower,
+ pybop.ObserverCost,
+ pybop.LogPosterior,
+ pybop.GaussianLogLikelihood,
+ pybop.GaussianLogLikelihoodKnownSigma,
+ ]
+ )
+ def cost(self, problem, request):
+ cls = request.param
+ if cls in [pybop.SumSquaredError, pybop.RootMeanSquaredError]:
+ return cls(problem)
+ elif cls is pybop.LogPosterior:
+ return cls(pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=0.002))
+ elif cls is pybop.GaussianLogLikelihoodKnownSigma:
+ return pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=0.002)
+ elif cls is pybop.ObserverCost:
+ inputs = problem.parameters.initial_value()
+ state = problem.model.reinit(inputs)
+ n = len(state)
+ sigma_diag = [0.0] * n
+ sigma_diag[0] = 1e-4
+ sigma_diag[1] = 1e-4
+ process_diag = [0.0] * n
+ process_diag[0] = 1e-4
+ process_diag[1] = 1e-4
+ sigma0 = np.diag(sigma_diag)
+ process = np.diag(process_diag)
+ dataset = pybop.Dataset(data_dictionary=problem.dataset)
+ return cls(
+ pybop.UnscentedKalmanFilterObserver(
+ problem.parameters,
+ problem.model,
+ sigma0=sigma0,
+ process=process,
+ measure=1e-4,
+ dataset=dataset,
+ signal=problem.signal,
+ ),
+ )
+ else:
+ return cls(problem)
+
+ @pytest.mark.unit
+ def test_cost_transformations(self, cost):
+ if isinstance(cost, pybop.GaussianLogLikelihood):
+ self.x1.append(0.002)
+ self.x2.append(0.002)
+
+ # Asserts
+ non_transformed_cost = cost(self.x1)
+ transformed_cost = cost(self.x2, apply_transform=True)
+ np.testing.assert_allclose(non_transformed_cost, transformed_cost)
+
+ @pytest.mark.unit
+ def test_cost_gradient_transformed(self, cost):
+ # Gradient transformations are not implmented on ObserverCost
+ if isinstance(cost, pybop.ObserverCost):
+ return
+
+ if isinstance(cost, pybop.GaussianLogLikelihood):
+ self.x1.append(0.002)
+ self.x2.append(0.002)
+ # Asserts
+ non_transformed_cost, grad = cost(self.x1, calculate_grad=True)
+ transformed_cost, transformed_gradient = cost(
+ self.x2, calculate_grad=True, apply_transform=True
+ )
+ np.testing.assert_allclose(transformed_cost, non_transformed_cost)
+ with pytest.raises(AssertionError):
+ np.testing.assert_allclose(transformed_gradient, grad)
diff --git a/tests/unit/test_dataset.py b/tests/unit/test_dataset.py
index 9c4eac13d..bb881429c 100644
--- a/tests/unit/test_dataset.py
+++ b/tests/unit/test_dataset.py
@@ -13,14 +13,13 @@ class TestDataset:
def test_dataset(self):
# Construct and simulate model
model = pybop.lithium_ion.SPM()
- model.parameter_set = model.pybamm_model.default_parameter_values
solution = model.predict(t_eval=np.linspace(0, 10, 100))
# Form dataset
data_dictionary = {
"Time [s]": solution["Time [s]"].data,
"Current [A]": solution["Current [A]"].data,
- "Terminal voltage [V]": solution["Terminal voltage [V]"].data,
+ "Voltage [V]": solution["Voltage [V]"].data,
}
dataset = pybop.Dataset(data_dictionary)
@@ -55,4 +54,15 @@ def test_dataset(self):
dataset["Time"]
# Test conversion of single signal to list
- assert dataset.check(signal="Terminal voltage [V]")
+ assert dataset.check()
+
+ # Form frequency dataset
+ data_dictionary = {
+ "Frequency [Hz]": np.linspace(-10, 0, 10),
+ "Current [A]": np.zeros(10),
+ "Impedance": np.zeros(10),
+ }
+ frequency_dataset = pybop.Dataset(data_dictionary)
+
+ with pytest.raises(ValueError, match="Frequencies cannot be negative."):
+ frequency_dataset.check(domain="Frequency [Hz]", signal="Impedance")
diff --git a/tests/unit/test_experiment.py b/tests/unit/test_experiment.py
index 6d18ef509..71355ff84 100644
--- a/tests/unit/test_experiment.py
+++ b/tests/unit/test_experiment.py
@@ -18,9 +18,9 @@ def test_experiment(self):
pybop_experiment = pybop.Experiment(protocol)
pybamm_experiment = pybamm.Experiment(protocol)
- assert [
- step.to_dict() for step in pybop_experiment.operating_conditions_steps
- ] == [step.to_dict() for step in pybamm_experiment.operating_conditions_steps]
+ assert [step.to_dict() for step in pybop_experiment.steps] == [
+ step.to_dict() for step in pybamm_experiment.steps
+ ]
assert pybop_experiment.cycle_lengths == pybamm_experiment.cycle_lengths
diff --git a/tests/unit/test_likelihoods.py b/tests/unit/test_likelihoods.py
index 41ee36673..8791c2c06 100644
--- a/tests/unit/test_likelihoods.py
+++ b/tests/unit/test_likelihoods.py
@@ -10,38 +10,37 @@ class TestLikelihoods:
"""
@pytest.fixture
- def model(self):
- return pybop.lithium_ion.SPM()
+ def model(self, ground_truth):
+ model = pybop.lithium_ion.SPM()
+ model.parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": ground_truth,
+ }
+ )
+ return model
@pytest.fixture
def ground_truth(self):
return 0.52
@pytest.fixture
- def parameters(self, ground_truth):
+ def parameters(self):
return pybop.Parameter(
"Negative electrode active material volume fraction",
prior=pybop.Gaussian(0.5, 0.01),
bounds=[0.375, 0.625],
- initial_value=ground_truth,
)
@pytest.fixture
def experiment(self):
return pybop.Experiment(
[
- ("Discharge at 1C for 10 minutes (20 second period)"),
+ ("Discharge at 1C for 1 minutes (5 second period)"),
]
)
@pytest.fixture
- def dataset(self, model, experiment, ground_truth):
- model.parameter_set = model.pybamm_model.default_parameter_values
- model.parameter_set.update(
- {
- "Negative electrode active material volume fraction": ground_truth,
- }
- )
+ def dataset(self, model, experiment):
solution = model.predict(experiment=experiment)
return pybop.Dataset(
{
@@ -54,16 +53,12 @@ def dataset(self, model, experiment, ground_truth):
@pytest.fixture
def one_signal_problem(self, model, parameters, dataset):
signal = ["Voltage [V]"]
- return pybop.FittingProblem(
- model, parameters, dataset, signal=signal, init_soc=1.0
- )
+ return pybop.FittingProblem(model, parameters, dataset, signal=signal)
@pytest.fixture
def two_signal_problem(self, model, parameters, dataset):
signal = ["Time [s]", "Voltage [V]"]
- return pybop.FittingProblem(
- model, parameters, dataset, signal=signal, init_soc=1.0
- )
+ return pybop.FittingProblem(model, parameters, dataset, signal=signal)
@pytest.mark.parametrize(
"problem_name, n_outputs",
@@ -75,10 +70,9 @@ def test_base_likelihood_init(self, problem_name, n_outputs, request):
likelihood = pybop.BaseLikelihood(problem)
assert likelihood.problem == problem
assert likelihood.n_outputs == n_outputs
- assert likelihood.n_time_data == problem.n_time_data
- assert likelihood.x0 == problem.x0
+ assert likelihood.n_data == problem.n_data
assert likelihood.n_parameters == 1
- assert np.array_equal(likelihood._target, problem._target)
+ assert np.array_equal(likelihood.target, problem.target)
@pytest.mark.unit
def test_base_likelihood_call_raises_not_implemented_error(
@@ -86,24 +80,25 @@ def test_base_likelihood_call_raises_not_implemented_error(
):
likelihood = pybop.BaseLikelihood(one_signal_problem)
with pytest.raises(NotImplementedError):
- likelihood(np.array([0.5, 0.5]))
+ likelihood(np.array([0.5]))
@pytest.mark.unit
- def test_set_get_sigma(self, one_signal_problem):
- likelihood = pybop.GaussianLogLikelihoodKnownSigma(one_signal_problem, 0.1)
- likelihood.set_sigma(np.array([0.3]))
- assert np.array_equal(likelihood.get_sigma(), np.array([0.3]))
-
+ def test_likelihood_check_sigma0(self, one_signal_problem):
with pytest.raises(
ValueError,
- match="The GaussianLogLikelihoodKnownSigma cost requires sigma to be "
- + "either a scalar value or an array with one entry per dimension.",
+ match="Sigma0 must be positive",
):
- pybop.GaussianLogLikelihoodKnownSigma(one_signal_problem, sigma=None)
+ pybop.GaussianLogLikelihoodKnownSigma(one_signal_problem, sigma0=None)
likelihood = pybop.GaussianLogLikelihoodKnownSigma(one_signal_problem, 0.1)
- with pytest.raises(ValueError):
- likelihood.set_sigma(np.array([-0.2]))
+ sigma = likelihood.check_sigma0(0.2)
+ assert sigma == np.array(0.2)
+
+ with pytest.raises(
+ ValueError,
+ match=r"sigma0 must be either a scalar value",
+ ):
+ pybop.GaussianLogLikelihoodKnownSigma(one_signal_problem, sigma0=[0.2, 0.3])
@pytest.mark.unit
def test_base_likelihood_n_parameters_property(self, one_signal_problem):
@@ -117,33 +112,66 @@ def test_base_likelihood_n_parameters_property(self, one_signal_problem):
def test_gaussian_log_likelihood_known_sigma(self, problem_name, request):
problem = request.getfixturevalue(problem_name)
likelihood = pybop.GaussianLogLikelihoodKnownSigma(
- problem, sigma=np.array([1.0])
+ problem, sigma0=np.array([1.0])
)
result = likelihood(np.array([0.5]))
- grad_result, grad_likelihood = likelihood.evaluateS1(np.array([0.5]))
+ grad_result, grad_likelihood = likelihood(np.array([0.5]), calculate_grad=True)
assert isinstance(result, float)
np.testing.assert_allclose(result, grad_result, atol=1e-5)
- assert np.all(grad_likelihood <= 0)
+ # Since 0.5 < ground_truth, the likelihood should be increasing
+ assert grad_likelihood >= 0
@pytest.mark.unit
def test_gaussian_log_likelihood(self, one_signal_problem):
likelihood = pybop.GaussianLogLikelihood(one_signal_problem)
- result = likelihood(np.array([0.5, 0.5]))
- grad_result, grad_likelihood = likelihood.evaluateS1(np.array([0.5, 0.5]))
+ result = likelihood(np.array([0.8, 0.2]))
+ grad_result, grad_likelihood = likelihood(
+ np.array([0.8, 0.2]), calculate_grad=True
+ )
assert isinstance(result, float)
np.testing.assert_allclose(result, grad_result, atol=1e-5)
- assert np.all(grad_likelihood <= 0)
+ # Since 0.8 > ground_truth, the likelihood should be decreasing
+ assert grad_likelihood[0] <= 0
+ # Since sigma < 0.5, the likelihood should be decreasing
+ assert grad_likelihood[1] <= 0
+
+ # Test construction with sigma as a Parameter
+ sigma = pybop.Parameter("sigma", prior=pybop.Uniform(0.4, 0.6))
+ likelihood = pybop.GaussianLogLikelihood(one_signal_problem, sigma0=sigma)
+
+ # Test invalid sigma
+ with pytest.raises(
+ TypeError,
+ match=r"Expected sigma0 to contain Parameter objects or numeric values.",
+ ):
+ likelihood = pybop.GaussianLogLikelihood(
+ one_signal_problem, sigma0="Invalid string"
+ )
+
+ # Test transformation fail dimensions
+ cost_fail, grad_fail = likelihood(
+ [0.01, 0.01], calculate_grad=True, apply_transform=True
+ )
+ assert not np.isfinite(cost_fail)
+ assert grad_fail.shape == (2,)
+
+ @pytest.mark.unit
+ def test_gaussian_log_likelihood_dsigma_scale(self, one_signal_problem):
+ likelihood = pybop.GaussianLogLikelihood(one_signal_problem, dsigma_scale=0.05)
+ assert likelihood.dsigma_scale == 0.05
+ likelihood.dsigma_scale = 1e3
+ assert likelihood.dsigma_scale == 1e3
+
+ # Test incorrect sigma scale
+ with pytest.raises(ValueError):
+ likelihood.dsigma_scale = -1e3
@pytest.mark.unit
def test_gaussian_log_likelihood_returns_negative_inf(self, one_signal_problem):
likelihood = pybop.GaussianLogLikelihood(one_signal_problem)
- assert likelihood(np.array([-0.5, -0.5])) == -np.inf # negative sigma value
- assert (
- likelihood.evaluateS1(np.array([-0.5, -0.5]))[0] == -np.inf
- ) # negative sigma value
assert likelihood(np.array([0.01, 0.1])) == -np.inf # parameter value too small
assert (
- likelihood.evaluateS1(np.array([0.01, 0.1]))[0] == -np.inf
+ likelihood(np.array([0.01, 0.1]), calculate_grad=True)[0] == -np.inf
) # parameter value too small
@pytest.mark.unit
@@ -151,9 +179,36 @@ def test_gaussian_log_likelihood_known_sigma_returns_negative_inf(
self, one_signal_problem
):
likelihood = pybop.GaussianLogLikelihoodKnownSigma(
- one_signal_problem, sigma=np.array([0.2])
+ one_signal_problem, sigma0=np.array([0.2])
)
assert likelihood(np.array([0.01])) == -np.inf # parameter value too small
assert (
- likelihood.evaluateS1(np.array([0.01]))[0] == -np.inf
+ likelihood(np.array([0.01]), calculate_grad=True)[0] == -np.inf
+ ) # parameter value too small
+
+ @pytest.mark.unit
+ def test_scaled_log_likelihood(self, one_signal_problem):
+ likelihood = pybop.GaussianLogLikelihoodKnownSigma(
+ one_signal_problem, sigma0=0.02
+ )
+ scaled_likelihood = pybop.ScaledLogLikelihood(likelihood)
+
+ assert scaled_likelihood._log_likelihood == likelihood
+ assert (
+ scaled_likelihood(np.array([0.01])) == -np.inf
) # parameter value too small
+ assert (
+ likelihood(np.array([0.01]), calculate_grad=True)[0] == -np.inf
+ ) # parameter value too small
+
+ # Test scaling
+ scaled_values = likelihood([0.6]) / likelihood.n_data
+ np.testing.assert_allclose(scaled_values, scaled_likelihood([0.6]))
+
+ # Test w/ gradient
+ values, grad = tuple(
+ i / likelihood.n_data for i in likelihood([0.6], calculate_grad=True)
+ )
+ np.testing.assert_allclose(
+ grad, scaled_likelihood([0.6], calculate_grad=True)[1]
+ )
diff --git a/tests/unit/test_models.py b/tests/unit/test_models.py
index 9c11b4c6b..0f789dbc5 100644
--- a/tests/unit/test_models.py
+++ b/tests/unit/test_models.py
@@ -1,3 +1,6 @@
+import sys
+from io import StringIO
+
import numpy as np
import pybamm
import pytest
@@ -57,18 +60,6 @@ def model(self, request):
model = request.param
return model.copy()
- @pytest.mark.unit
- def test_simulate_without_build_model(self, model):
- with pytest.raises(
- ValueError, match="Model must be built before calling simulate"
- ):
- model.simulate(None, None)
-
- with pytest.raises(
- ValueError, match="Model must be built before calling simulate"
- ):
- model.simulateS1(None, None)
-
@pytest.mark.unit
def test_non_default_solver(self):
solver = pybamm.CasadiSolver(
@@ -83,11 +74,20 @@ def test_non_default_solver(self):
@pytest.mark.unit
def test_predict_without_pybamm(self, model):
- model._unprocessed_model = None
+ model.pybamm_model = None
- with pytest.raises(ValueError):
+ with pytest.raises(
+ ValueError,
+ match="The predict method currently only supports PyBaMM models.",
+ ):
model.predict(None, None)
+ # Test new_copy() without pybamm_model
+ if not isinstance(model, pybop.lithium_ion.MSMR):
+ new_model = model.new_copy()
+ assert new_model.pybamm_model is not None
+ assert new_model.parameter_set is not None
+
@pytest.mark.unit
def test_predict_with_inputs(self, model):
# Define inputs
@@ -113,6 +113,12 @@ def test_predict_with_inputs(self, model):
res = model.predict(t_eval=t_eval, inputs=inputs)
assert len(res["Voltage [V]"].data) == 100
+ with pytest.raises(
+ ValueError,
+ match="The predict method requires either an experiment or t_eval to be specified.",
+ ):
+ model.predict(inputs=inputs)
+
@pytest.mark.unit
def test_predict_without_allow_infeasible_solutions(self, model):
if isinstance(model, (pybop.lithium_ion.SPM, pybop.lithium_ion.SPMe)):
@@ -123,17 +129,27 @@ def test_predict_without_allow_infeasible_solutions(self, model):
"Positive electrode active material volume fraction": 0.9,
}
- res = model.predict(t_eval=t_eval, inputs=inputs)
- assert np.isinf(res).any()
+ with pytest.raises(
+ ValueError, match="These parameter values are infeasible."
+ ):
+ model.predict(t_eval=t_eval, inputs=inputs)
@pytest.mark.unit
def test_build(self, model):
- model.build()
- assert model.built_model is not None
+ if isinstance(model, pybop.lithium_ion.SPMe):
+ model.build(initial_state={"Initial SoC": 1.0})
- # Test that the model can be built again
- model.build()
- assert model.built_model is not None
+ # Test attributes with init_soc
+ assert model.built_model is not None
+ assert model.disc is not None
+ assert model.built_initial_soc is not None
+ else:
+ model.build()
+ assert model.built_model is not None
+
+ # Test that the model can be built again
+ model.build()
+ assert model.built_model is not None
@pytest.mark.unit
def test_rebuild(self, model):
@@ -141,8 +157,11 @@ def test_rebuild(self, model):
initial_built_model = model._built_model
assert model._built_model is not None
+ model.set_parameters()
+ assert model.model_with_set_params is not None
+
# Test that the model can be built again
- model.rebuild()
+ model.build()
rebuilt_model = model._built_model
assert rebuilt_model is not None
@@ -171,18 +190,18 @@ def test_parameter_set_definition(self):
# Test initilisation with different types of parameter set
param_dict = {"Nominal cell capacity [A.h]": 5}
model = pybop.BaseModel(parameter_set=None)
- assert model._parameter_set is None
+ assert model.parameter_set is None
model = pybop.BaseModel(parameter_set=param_dict)
parameter_set = pybamm.ParameterValues(param_dict)
- assert model._parameter_set == parameter_set
+ assert model.parameter_set == parameter_set
model = pybop.BaseModel(parameter_set=parameter_set)
- assert model._parameter_set == parameter_set
+ assert model.parameter_set == parameter_set
pybop_parameter_set = pybop.ParameterSet(params_dict=param_dict)
model = pybop.BaseModel(parameter_set=pybop_parameter_set)
- assert model._parameter_set == parameter_set
+ assert model.parameter_set == parameter_set
@pytest.mark.unit
def test_rebuild_geometric_parameters(self):
@@ -211,17 +230,23 @@ def test_rebuild_geometric_parameters(self):
t_eval = np.linspace(0, 100, 100)
out_init = initial_built_model.predict(t_eval=t_eval)
+ with pytest.raises(
+ ValueError,
+ match="Cannot use sensitivities for parameters which require a model rebuild",
+ ):
+ model.simulateS1(t_eval=t_eval, inputs=parameters.as_dict())
+
# Test that the model can be rebuilt with different geometric parameters
parameters["Positive particle radius [m]"].update(5e-06)
parameters["Negative electrode thickness [m]"].update(45e-06)
- model.rebuild(parameters=parameters)
+ model.build(parameters=parameters)
rebuilt_model = model
assert rebuilt_model._built_model is not None
# Test model geometry
assert (
- rebuilt_model._mesh["negative electrode"].nodes[1]
- != initial_built_model._mesh["negative electrode"].nodes[1]
+ rebuilt_model.mesh["negative electrode"].nodes[1]
+ != initial_built_model.mesh["negative electrode"].nodes[1]
)
assert (
rebuilt_model.geometry["negative electrode"]["x_n"]["max"]
@@ -234,8 +259,8 @@ def test_rebuild_geometric_parameters(self):
)
assert (
- rebuilt_model._mesh["positive particle"].nodes[1]
- != initial_built_model._mesh["positive particle"].nodes[1]
+ rebuilt_model.mesh["positive particle"].nodes[1]
+ != initial_built_model.mesh["positive particle"].nodes[1]
)
# Compare model results
@@ -252,11 +277,17 @@ def test_reinit(self):
k = 0.1
y0 = 1
model = ExponentialDecay(pybamm.ParameterValues({"k": k, "y0": y0}))
+
+ with pytest.raises(
+ ValueError, match="Model must be built before calling get_state"
+ ):
+ model.get_state({"k": k, "y0": y0}, 0, np.array([0]))
+
model.build()
state = model.reinit(inputs={})
np.testing.assert_array_almost_equal(state.as_ndarray(), np.array([[y0]]))
- model.parameters = pybop.Parameters(pybop.Parameter("y0"))
+ model.classify_parameters(pybop.Parameters(pybop.Parameter("y0")))
state = model.reinit(inputs=[1])
np.testing.assert_array_almost_equal(state.as_ndarray(), np.array([[y0]]))
@@ -277,11 +308,33 @@ def test_simulate(self):
t_eval = np.linspace(0, 10, 100)
expected = y0 * np.exp(-k * t_eval)
solved = model.simulate(inputs, t_eval)
- np.testing.assert_array_almost_equal(solved["y_0"], expected, decimal=5)
+ np.testing.assert_array_almost_equal(solved["y_0"].data, expected, decimal=5)
with pytest.raises(ValueError):
ExponentialDecay(n_states=-1)
+ @pytest.mark.unit
+ def test_simulateEIS(self):
+ # Test EIS on SPM
+ model = pybop.lithium_ion.SPM(eis=True)
+
+ # Construct frequencies and solve
+ f_eval = np.linspace(100, 1000, 5)
+ sol = model.simulateEIS(inputs={}, f_eval=f_eval)
+ assert np.isfinite(sol["Impedance"]).all()
+
+ # Test infeasible parameter values
+ model.allow_infeasible_solutions = False
+ inputs = {
+ "Negative electrode active material volume fraction": 0.9,
+ "Positive electrode active material volume fraction": 0.9,
+ }
+ # Rebuild model
+ model.build(inputs=inputs)
+
+ with pytest.raises(ValueError, match="These parameter values are infeasible."):
+ model.simulateEIS(f_eval=f_eval, inputs=inputs)
+
@pytest.mark.unit
def test_basemodel(self):
base = pybop.BaseModel()
@@ -296,10 +349,13 @@ def test_basemodel(self):
with pytest.raises(NotImplementedError):
base.approximate_capacity(x)
+ base.classify_parameters(parameters=None)
+ assert isinstance(base.parameters, pybop.Parameters)
+
@pytest.mark.unit
def test_thevenin_model(self):
parameter_set = pybop.ParameterSet(
- json_path="examples/scripts/parameters/initial_ecm_parameters.json"
+ json_path="examples/parameters/initial_ecm_parameters.json"
)
parameter_set.import_parameters()
assert parameter_set["Open-circuit voltage [V]"] == "default"
@@ -311,15 +367,79 @@ def test_thevenin_model(self):
== model.pybamm_model.default_parameter_values["Open-circuit voltage [V]"]
)
+ model.predict(initial_state={"Initial SoC": 0.5}, t_eval=np.arange(0, 10, 5))
+ assert model.parameter_set["Initial SoC"] == 0.5
+
+ model.set_initial_state({"Initial SoC": parameter_set["Initial SoC"] / 2})
+ assert model.parameter_set["Initial SoC"] == parameter_set["Initial SoC"] / 2
+ model.set_initial_state(
+ {
+ "Initial open-circuit voltage [V]": parameter_set[
+ "Lower voltage cut-off [V]"
+ ]
+ }
+ )
+ np.testing.assert_allclose(model.parameter_set["Initial SoC"], 0.0, atol=1e-2)
+ model.set_initial_state(
+ {
+ "Initial open-circuit voltage [V]": parameter_set[
+ "Upper voltage cut-off [V]"
+ ]
+ }
+ )
+ np.testing.assert_allclose(model.parameter_set["Initial SoC"], 1.0, atol=1e-2)
+
+ with pytest.raises(ValueError, match="outside the voltage limits"):
+ model.set_initial_state({"Initial open-circuit voltage [V]": -1.0})
+ with pytest.raises(ValueError, match="Initial SOC should be between 0 and 1"):
+ model.set_initial_state({"Initial SoC": -1.0})
+ with pytest.raises(
+ ValueError,
+ match="Initial value must be a float between 0 and 1, or a string ending in 'V'",
+ ):
+ model.set_initial_state({"Initial SoC": "invalid string"})
+
@pytest.mark.unit
def test_check_params(self):
base = pybop.BaseModel()
assert base.check_params()
assert base.check_params(inputs={"a": 1})
assert base.check_params(inputs=[1])
- with pytest.raises(ValueError, match="Expecting inputs in the form of"):
+ with pytest.raises(TypeError, match="Inputs must be a dictionary or numeric."):
base.check_params(inputs=["unexpected_string"])
+ @pytest.mark.unit
+ def test_base_ecircuit_model(self):
+ def check_params(inputs: dict, allow_infeasible_solutions: bool):
+ return True if inputs is None else inputs["a"] < 2
+
+ base_ecircuit_model = pybop.empirical.ECircuitModel(
+ pybamm_model=pybamm.equivalent_circuit.Thevenin,
+ check_params=check_params,
+ )
+ assert base_ecircuit_model.check_params({"a": 1})
+
+ base_ecircuit_model = pybop.empirical.ECircuitModel(
+ pybamm_model=pybamm.equivalent_circuit.Thevenin,
+ )
+ assert base_ecircuit_model.check_params()
+
+ @pytest.mark.unit
+ def test_userdefined_check_params(self):
+ def check_params(inputs: dict, allow_infeasible_solutions: bool):
+ return True if inputs is None else inputs["a"] < 2
+
+ for model in [
+ pybop.BaseModel(check_params=check_params),
+ pybop.empirical.Thevenin(check_params=check_params),
+ ]:
+ assert model.check_params(inputs={"a": 1})
+ assert not model.check_params(inputs={"a": 2})
+ with pytest.raises(
+ TypeError, match="Inputs must be a dictionary or numeric."
+ ):
+ model.check_params(inputs=["unexpected_string"])
+
@pytest.mark.unit
def test_non_converged_solution(self):
model = pybop.lithium_ion.DFN()
@@ -340,11 +460,111 @@ def test_non_converged_solution(self):
"Voltage [V]": np.zeros(100),
}
)
-
problem = pybop.FittingProblem(model, parameters=parameters, dataset=dataset)
- res = problem.evaluate([-0.2, -0.2])
- _, res_grad = problem.evaluateS1([-0.2, -0.2])
+
+ # Simulate the DFN with active material values of 0.
+ # The solution elements will not change as the solver will not converge.
+ output = problem.evaluate([0, 0])
+ output_S1, _ = problem.evaluateS1([0, 0])
for key in problem.signal:
- assert np.isinf(res.get(key, [])).any()
- assert np.isinf(res_grad).any()
+ assert np.allclose(output.get(key, [])[0], output.get(key, []))
+ assert np.allclose(output_S1.get(key, [])[0], output_S1.get(key, []))
+
+ @pytest.mark.unit
+ def test_set_initial_state(self):
+ t_eval = np.linspace(0, 10, 100)
+
+ model = pybop.lithium_ion.SPM()
+ model.build(initial_state={"Initial SoC": 0.7})
+ values_1 = model.predict(t_eval=t_eval)
+
+ model = pybop.lithium_ion.SPM()
+ model.build(initial_state={"Initial SoC": 0.4})
+ model.set_initial_state({"Initial SoC": 0.7})
+ values_2 = model.predict(t_eval=t_eval)
+
+ np.testing.assert_allclose(
+ values_1["Voltage [V]"].data, values_2["Voltage [V]"].data, atol=1e-8
+ )
+
+ init_ocp_p = model.parameter_set["Positive electrode OCP [V]"](0.7)
+ init_ocp_n = model.parameter_set["Negative electrode OCP [V]"](0.7)
+ model.set_initial_state(
+ {"Initial open-circuit voltage [V]": init_ocp_p - init_ocp_n}
+ )
+ values_3 = model.predict(t_eval=t_eval)
+
+ np.testing.assert_allclose(
+ values_1["Voltage [V]"].data, values_3["Voltage [V]"].data, atol=0.05
+ )
+
+ with pytest.raises(ValueError, match="Expecting only one initial state."):
+ model.set_initial_state(
+ {"Initial open-circuit voltage [V]": 3.7, "Initial SoC": 0.7}
+ )
+ with pytest.raises(ValueError, match="Unrecognised initial state"):
+ model.set_initial_state({"Initial voltage [V]": 3.7})
+
+ @pytest.mark.unit
+ def test_get_parameter_info(self, model):
+ if isinstance(model, pybop.empirical.Thevenin):
+ # Test at least one model without a built pybamm model
+ model = pybop.empirical.Thevenin(build=False)
+
+ parameter_info = model.get_parameter_info()
+ assert isinstance(parameter_info, dict)
+
+ captured_output = StringIO()
+ sys.stdout = captured_output
+
+ model.get_parameter_info(print_info=True)
+ sys.stdout = sys.__stdout__
+
+ printed_messaage = captured_output.getvalue().strip()
+
+ for key, value in parameter_info.items():
+ assert key in printed_messaage
+ assert value in printed_messaage
+
+ @pytest.mark.unit
+ def test_set_current_function(self):
+ dataset_1 = pybop.Dataset(
+ {
+ "Time [s]": np.linspace(0, 10, 100),
+ "Current function [A]": 3.0 * np.ones(100),
+ }
+ )
+ dataset_2 = pybop.Dataset(
+ {
+ "Time [s]": np.linspace(0, 5, 100),
+ "Current function [A]": 6.0 * np.ones(100),
+ }
+ )
+
+ model = pybop.lithium_ion.SPM()
+ model.set_current_function(dataset=dataset_1)
+ values_1 = model.predict(t_eval=dataset_1["Time [s]"])
+
+ np.testing.assert_allclose(
+ values_1["Current [A]"].data,
+ dataset_1["Current function [A]"].data,
+ atol=1e-8,
+ )
+
+ model.set_current_function(dataset=dataset_2)
+ values_2 = model.predict(t_eval=dataset_2["Time [s]"])
+
+ np.testing.assert_allclose(
+ values_2["Current [A]"].data,
+ dataset_2["Current function [A]"].data,
+ atol=1e-8,
+ )
+
+ values_3 = model.simulate(inputs={}, t_eval=dataset_2["Time [s]"])
+
+ np.testing.assert_allclose(
+ values_3["Current [A]"].data,
+ dataset_2["Current function [A]"].data,
+ atol=1e-8,
+ )
diff --git a/tests/unit/test_observer_unscented_kalman.py b/tests/unit/test_observer_unscented_kalman.py
index 2a947e716..c83fae315 100644
--- a/tests/unit/test_observer_unscented_kalman.py
+++ b/tests/unit/test_observer_unscented_kalman.py
@@ -14,15 +14,6 @@ class TestUKF:
measure_noise = 1e-4
- @pytest.fixture(params=[1, 2, 3])
- def model(self, request):
- model = ExponentialDecay(
- parameter_set=pybamm.ParameterValues({"k": "[input]", "y0": "[input]"}),
- n_states=request.param,
- )
- model.build()
- return model
-
@pytest.fixture
def parameters(self):
return pybop.Parameters(
@@ -40,6 +31,15 @@ def parameters(self):
),
)
+ @pytest.fixture(params=[1, 2, 3])
+ def model(self, parameters, request):
+ model = ExponentialDecay(
+ parameter_set=pybamm.ParameterValues({"k": "[input]", "y0": "[input]"}),
+ n_states=request.param,
+ )
+ model.build(parameters=parameters)
+ return model
+
@pytest.fixture
def dataset(self, model: pybop.BaseModel, parameters):
observer = pybop.Observer(parameters, model, signal=["2y"])
@@ -93,6 +93,15 @@ def test_cholupdate(self):
SquareRootUKF.cholupdate(R1_, u.copy(), 1.0)
np.testing.assert_array_almost_equal(R1, R1_)
+ # Test hypot
+ f = 10.0
+ j = 20.0
+ out_1 = f * np.sqrt(1 + 1.0 * f**2 / j**2)
+ np.testing.assert_allclose(SquareRootUKF.hypot(f, j, 1.0), out_1)
+
+ j = 10.0
+ np.testing.assert_allclose(SquareRootUKF.hypot(f, j, 1.0), float(0))
+
@pytest.mark.unit
def test_unscented_kalman_filter(self, dataset, observer):
t_eval = dataset["Time [s]"]
@@ -116,6 +125,11 @@ def test_unscented_kalman_filter(self, dataset, observer):
decimal=4,
)
+ # Test get covariance
+ cov = observer.get_current_measure()
+ assert cov.shape == (1, 1)
+ assert float(0) <= cov[0]
+
@pytest.mark.unit
def test_observe_no_measurement(self, observer):
with pytest.raises(ValueError):
@@ -156,3 +170,22 @@ def test_wrong_input_shapes(self, model, parameters):
pybop.UnscentedKalmanFilterObserver(
parameters, model, sigma0, process, measure, signal=signal
)
+
+ @pytest.mark.unit
+ def test_without_signal(self):
+ model = pybop.lithium_ion.SPM()
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.5, 0.05),
+ )
+ )
+ model.build(parameters=parameters)
+ n = model.n_states
+ sigma0 = np.diag([1e-4] * n)
+ process = np.diag([1e-4] * n)
+ measure = np.diag([1e-4])
+ observer = pybop.UnscentedKalmanFilterObserver(
+ parameters, model, sigma0, process, measure
+ )
+ assert observer.signal == ["Voltage [V]"]
diff --git a/tests/unit/test_observers.py b/tests/unit/test_observers.py
index 46987bae9..2eda85612 100644
--- a/tests/unit/test_observers.py
+++ b/tests/unit/test_observers.py
@@ -1,5 +1,4 @@
import numpy as np
-import pybamm
import pytest
import pybop
@@ -11,15 +10,6 @@ class TestObserver:
A class to test the observer class.
"""
- @pytest.fixture(params=[1, 2])
- def model(self, request):
- model = ExponentialDecay(
- parameter_set=pybamm.ParameterValues({"k": "[input]", "y0": "[input]"}),
- n_states=request.param,
- )
- model.build()
- return model
-
@pytest.fixture
def parameters(self):
return pybop.Parameters(
@@ -27,21 +17,26 @@ def parameters(self):
"k",
prior=pybop.Gaussian(0.1, 0.05),
bounds=[0, 1],
- initial_value=0.1,
),
pybop.Parameter(
"y0",
prior=pybop.Gaussian(1, 0.05),
bounds=[0, 3],
- initial_value=1.0,
),
)
+ @pytest.fixture(params=[1, 2])
+ def model(self, parameters, request):
+ parameter_set = {"k": 0.1, "y0": 1.0}
+ model = ExponentialDecay(parameter_set=parameter_set, n_states=request.param)
+ model.build(parameters=parameters)
+ return model
+
@pytest.mark.unit
def test_observer(self, model, parameters):
n = model.n_states
observer = pybop.Observer(parameters, model, signal=["2y"])
- t_eval = np.linspace(0, 1, 100)
+ t_eval = np.linspace(0, 20, 10)
expected = parameters["y0"].initial_value * np.exp(
-parameters["k"].initial_value * t_eval
)
@@ -59,9 +54,11 @@ def test_observer(self, model, parameters):
)
# Test with invalid inputs
- with pytest.raises(ValueError):
+ with pytest.raises(ValueError, match="Time must be increasing."):
observer.observe(-1)
- with pytest.raises(ValueError):
+ with pytest.raises(
+ ValueError, match="values and times must have the same length."
+ ):
observer.log_likelihood(
{"2y": t_eval}, np.array([1]), inputs=observer._state.inputs
)
@@ -71,9 +68,9 @@ def test_observer(self, model, parameters):
assert np.shape(covariance) == (n, n)
# Test evaluate with different inputs
- observer._time_data = t_eval
- observer.evaluate(parameters.initial_value())
- observer.evaluate(parameters)
+ observer.domain_data = t_eval
+ observer.evaluate(parameters.as_dict())
+ observer.evaluate(parameters.current_value())
# Test evaluate with dataset
observer._dataset = pybop.Dataset(
@@ -83,10 +80,31 @@ def test_observer(self, model, parameters):
}
)
observer._target = {"2y": expected}
- observer.evaluate(parameters.initial_value())
+ observer.evaluate(parameters.as_dict())
@pytest.mark.unit
def test_unbuilt_model(self, parameters):
model = ExponentialDecay()
- with pytest.raises(ValueError):
+ with pytest.raises(
+ ValueError, match="Only built models can be used in Observers"
+ ):
pybop.Observer(parameters, model)
+
+ @pytest.mark.unit
+ def test_observer_inputs(self):
+ initial_state = {"Initial open-circuit voltage [V]": 4.0}
+ t_eval = np.linspace(0, 1, 100)
+ model = ExponentialDecay(n_states=1)
+ model.build()
+ observer = pybop.Observer(
+ pybop.Parameters(), model, signal=["y_0", "2y"], initial_state=initial_state
+ )
+ assert observer.initial_state == initial_state
+
+ with pytest.raises(
+ ValueError,
+ match="Observer.log_likelihood is currently restricted to single output models.",
+ ):
+ observer.log_likelihood(
+ {"2y": t_eval}, t_eval, inputs=observer._state.inputs
+ )
diff --git a/tests/unit/test_optimisation.py b/tests/unit/test_optimisation.py
index 97fe12fc5..36d1ed9ff 100644
--- a/tests/unit/test_optimisation.py
+++ b/tests/unit/test_optimisation.py
@@ -1,3 +1,5 @@
+import io
+import sys
import warnings
import numpy as np
@@ -16,7 +18,7 @@ def dataset(self):
return pybop.Dataset(
{
"Time [s]": np.linspace(0, 360, 10),
- "Current function [A]": np.zeros(10),
+ "Current function [A]": 1e-2 * np.ones(10),
"Voltage [V]": np.ones(10),
}
)
@@ -24,8 +26,8 @@ def dataset(self):
@pytest.fixture
def one_parameter(self):
return pybop.Parameter(
- "Negative electrode active material volume fraction",
- prior=pybop.Gaussian(0.6, 0.2),
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.6, 0.02),
bounds=[0.58, 0.62],
)
@@ -67,23 +69,30 @@ def two_param_cost(self, model, two_parameters, dataset):
return pybop.SumSquaredError(problem)
@pytest.mark.parametrize(
- "optimiser, expected_name",
+ "optimiser, expected_name, sensitivities",
[
- (pybop.SciPyMinimize, "SciPyMinimize"),
- (pybop.SciPyDifferentialEvolution, "SciPyDifferentialEvolution"),
- (pybop.GradientDescent, "Gradient descent"),
- (pybop.Adam, "Adam"),
- (pybop.AdamW, "AdamW"),
- (pybop.CMAES, "Covariance Matrix Adaptation Evolution Strategy (CMA-ES)"),
- (pybop.SNES, "Seperable Natural Evolution Strategy (SNES)"),
- (pybop.XNES, "Exponential Natural Evolution Strategy (xNES)"),
- (pybop.PSO, "Particle Swarm Optimisation (PSO)"),
- (pybop.IRPropMin, "iRprop-"),
- (pybop.NelderMead, "Nelder-Mead"),
+ (pybop.SciPyMinimize, "SciPyMinimize", False),
+ (pybop.SciPyDifferentialEvolution, "SciPyDifferentialEvolution", False),
+ (pybop.GradientDescent, "Gradient descent", True),
+ (pybop.Adam, "Adam", True),
+ (pybop.AdamW, "AdamW", True),
+ (
+ pybop.CMAES,
+ "Covariance Matrix Adaptation Evolution Strategy (CMA-ES)",
+ False,
+ ),
+ (pybop.CuckooSearch, "Cuckoo Search", False),
+ (pybop.SNES, "Seperable Natural Evolution Strategy (SNES)", False),
+ (pybop.XNES, "Exponential Natural Evolution Strategy (xNES)", False),
+ (pybop.PSO, "Particle Swarm Optimisation (PSO)", False),
+ (pybop.IRPropMin, "iRprop-", True),
+ (pybop.NelderMead, "Nelder-Mead", False),
],
)
@pytest.mark.unit
- def test_optimiser_classes(self, two_param_cost, optimiser, expected_name):
+ def test_optimiser_classes(
+ self, two_param_cost, optimiser, expected_name, sensitivities
+ ):
# Test class construction
cost = two_param_cost
optim = optimiser(cost=cost)
@@ -96,6 +105,7 @@ def test_optimiser_classes(self, two_param_cost, optimiser, expected_name):
assert optim.cost is not None
assert optim.name() == expected_name
+ assert optim.needs_sensitivities == sensitivities
if optimiser not in [pybop.SciPyDifferentialEvolution]:
# Test construction without bounds
@@ -104,6 +114,15 @@ def test_optimiser_classes(self, two_param_cost, optimiser, expected_name):
if issubclass(optimiser, pybop.BasePintsOptimiser):
assert optim._boundaries is None
+ @pytest.mark.unit
+ def test_no_optimisation_parameters(self, model, dataset):
+ problem = pybop.FittingProblem(
+ model=model, parameters=pybop.Parameters(), dataset=dataset
+ )
+ cost = pybop.RootMeanSquaredError(problem)
+ with pytest.raises(ValueError, match="There are no parameters to optimise."):
+ pybop.Optimisation(cost=cost)
+
@pytest.mark.parametrize(
"optimiser",
[
@@ -117,16 +136,29 @@ def test_optimiser_classes(self, two_param_cost, optimiser, expected_name):
pybop.PSO,
pybop.IRPropMin,
pybop.NelderMead,
+ pybop.CuckooSearch,
],
)
@pytest.mark.unit
def test_optimiser_kwargs(self, cost, optimiser):
- optim = optimiser(cost=cost, maxiter=1)
+ optim = optimiser(cost=cost, max_iterations=3, tol=1e-6)
cost_bounds = cost.parameters.get_bounds()
# Check maximum iterations
- optim.run()
- assert optim.result.n_iterations == 1
+ results = optim.run()
+ assert results.n_iterations == 3
+
+ # Test BaseOptimiser.log_update
+ optim.log_update(x=[0.7], cost=[0.01])
+
+ assert optim.log["x"][-1] == 0.7
+ assert optim.log["cost"][-1] == 0.01
+
+ # Test incorrect update
+ with pytest.raises(
+ TypeError, match="Input must be a list, tuple, or numpy array"
+ ):
+ optim.log_update(x="Incorrect")
if optimiser in [pybop.GradientDescent, pybop.Adam, pybop.NelderMead]:
# Ignored bounds
@@ -166,6 +198,7 @@ def test_optimiser_kwargs(self, cost, optimiser):
):
warnings.simplefilter("always")
optim = optimiser(cost=cost, unrecognised=10)
+ assert not optim.optimiser.running()
else:
# Check bounds in list format and update tol
bounds = [
@@ -180,23 +213,28 @@ def test_optimiser_kwargs(self, cost, optimiser):
pybop.XNES,
]:
# Pass nested options
- optim = optimiser(cost=cost, options=dict(maxiter=10))
+ optim = optimiser(cost=cost, options=dict(max_iterations=10))
with pytest.raises(
Exception,
- match="A duplicate maxiter option was found in the options dictionary.",
+ match="A duplicate max_evaluations option was found in the options dictionary.",
):
- optimiser(cost=cost, maxiter=5, options=dict(maxiter=10))
+ optimiser(
+ cost=cost, max_evaluations=5, options=dict(max_evaluations=10)
+ )
- # Pass similar keywords
- with pytest.raises(
- Exception,
- match="option was passed in addition to the expected",
- ):
- optimiser(cost=cost, maxiter=5, max_iterations=10)
+ if optimiser in [pybop.SciPyDifferentialEvolution, pybop.SciPyMinimize]:
+ # Pass duplicate keywords
+ with pytest.raises(
+ Exception,
+ match="option was passed in addition to the expected",
+ ):
+ optimiser(cost=cost, maxiter=5, max_iterations=10)
if optimiser in [pybop.SciPyDifferentialEvolution]:
- # Update population size
- optimiser(cost=cost, popsize=5)
+ # Update population size, test maxiter arg
+ pop_maxiter_optim = optimiser(cost=cost, maxiter=3, popsize=5)
+ assert pop_maxiter_optim._options["maxiter"] == 3
+ assert pop_maxiter_optim._options["popsize"] == 5
# Test invalid bounds
with pytest.raises(
@@ -214,51 +252,59 @@ def test_optimiser_kwargs(self, cost, optimiser):
# Test AdamW hyperparameters
if optimiser in [pybop.AdamW]:
- optim = optimiser(cost=cost, b1=0.9, b2=0.999, lambda_=0.1)
- optim.pints_optimiser.set_b1(0.9)
- optim.pints_optimiser.set_b2(0.9)
- optim.pints_optimiser.set_lambda(0.1)
+ optim = optimiser(cost=cost, b1=0.9, b2=0.999, lam=0.1)
+ optim.optimiser.b1 = 0.9
+ optim.optimiser.b2 = 0.9
+ optim.optimiser.lam = 0.1
- assert optim.pints_optimiser._b1 == 0.9
- assert optim.pints_optimiser._b2 == 0.9
- assert optim.pints_optimiser._lambda == 0.1
+ assert optim.optimiser.b1 == 0.9
+ assert optim.optimiser.b2 == 0.9
+ assert optim.optimiser.lam == 0.1
# Incorrect values
- for i, match in (("Value", -1),):
+ for i, _match in (("Value", -1),):
with pytest.raises(
Exception, match="must be a numeric value between 0 and 1."
):
- optim.pints_optimiser.set_b1(i)
+ optim.optimiser.b1 = i
with pytest.raises(
Exception, match="must be a numeric value between 0 and 1."
):
- optim.pints_optimiser.set_b2(i)
+ optim.optimiser.b2 = i
with pytest.raises(
Exception, match="must be a numeric value between 0 and 1."
):
- optim.pints_optimiser.set_lambda(i)
+ optim.optimiser.lam = i
# Check defaults
- assert optim.pints_optimiser.n_hyper_parameters() == 5
- assert not optim.pints_optimiser.running()
- assert optim.pints_optimiser.x_guessed() == optim.pints_optimiser._x0
- with pytest.raises(Exception):
- optim.pints_optimiser.tell([0.1])
+ assert optim.optimiser.n_hyper_parameters() == 5
+ assert optim.optimiser.x_guessed() == optim.optimiser._x0
+ with pytest.raises(RuntimeError):
+ optim.optimiser.tell([0.1])
else:
# Check and update initial values
- assert optim.x0 == cost.x0
+ x0 = cost.parameters.initial_value()
+ assert optim.x0 == x0
x0_new = np.array([0.6])
optim = optimiser(cost=cost, x0=x0_new)
assert optim.x0 == x0_new
- assert optim.x0 != cost.x0
+ assert optim.x0 != x0
+
+ @pytest.mark.unit
+ def test_cuckoo_no_bounds(self, cost):
+ optim = pybop.CuckooSearch(cost=cost, bounds=None, max_iterations=1)
+ optim.run()
+ assert optim.optimiser._boundaries is None
@pytest.mark.unit
def test_scipy_minimize_with_jac(self, cost):
# Check a method that uses gradient information
- optim = pybop.SciPyMinimize(cost=cost, method="L-BFGS-B", jac=True, maxiter=10)
- optim.run()
- assert optim.result.scipy_result.success is True
+ optim = pybop.SciPyMinimize(
+ cost=cost, method="L-BFGS-B", jac=True, max_iterations=1
+ )
+ results = optim.run()
+ assert results.get_scipy_result() == optim.result.scipy_result
with pytest.raises(
ValueError,
@@ -266,6 +312,19 @@ def test_scipy_minimize_with_jac(self, cost):
):
optim = pybop.SciPyMinimize(cost=cost, jac="Invalid string")
+ @pytest.mark.unit
+ def test_scipy_minimize_invalid_x0(self, cost):
+ # Check a starting point that returns an infinite cost
+ invalid_x0 = np.array([1.1])
+ optim = pybop.SciPyMinimize(
+ cost=cost,
+ x0=invalid_x0,
+ max_iterations=10,
+ allow_infeasible_solutions=False,
+ )
+ optim.run()
+ assert abs(optim._cost0) != np.inf
+
@pytest.mark.unit
def test_single_parameter(self, cost):
# Test catch for optimisers that can only run with multiple parameters
@@ -293,17 +352,19 @@ def invalid_cost(x):
):
pybop.Optimisation(cost=invalid_cost)
+ # Test valid cost
+ def valid_cost(x):
+ return x[0] ** 2
+
+ pybop.Optimisation(cost=valid_cost, x0=np.asarray([0.1]))
+
@pytest.mark.unit
def test_default_optimiser(self, cost):
optim = pybop.Optimisation(cost=cost)
assert optim.name() == "Exponential Natural Evolution Strategy (xNES)"
- # Test incorrect setting attribute
- with pytest.raises(
- AttributeError,
- match="'Optimisation' object has no attribute 'not_a_valid_attribute'",
- ):
- optim.not_a_valid_attribute
+ # Test getting incorrect attribute
+ assert not hasattr(optim, "not_a_valid_attribute")
@pytest.mark.unit
def test_incorrect_optimiser_class(self, cost):
@@ -312,7 +373,7 @@ class RandomClass:
with pytest.raises(
ValueError,
- match="The pints_optimiser is not a recognised PINTS optimiser class.",
+ match="The optimiser is not a recognised PINTS optimiser class.",
):
pybop.BasePintsOptimiser(cost=cost, pints_optimiser=RandomClass)
@@ -322,19 +383,13 @@ class RandomClass:
with pytest.raises(ValueError):
pybop.Optimisation(cost=cost, optimiser=RandomClass)
- @pytest.mark.unit
- def test_prior_sampling(self, cost):
- # Tests prior sampling
- for i in range(50):
- optim = pybop.Optimisation(cost=cost)
- assert optim.x0[0] < 0.62 and optim.x0[0] > 0.58
-
@pytest.mark.unit
@pytest.mark.parametrize(
"mean, sigma, expect_exception",
[
(0.85, 0.2, False),
(0.85, 0.001, True),
+ (1.0, 0.5, False),
],
)
def test_scipy_prior_resampling(
@@ -368,20 +423,78 @@ def test_scipy_prior_resampling(
else:
opt.run()
+ # Test cost_wrapper inf return
+ cost = opt.cost_wrapper(np.array([0.9]))
+ assert cost in [1.729, 1.81, 1.9]
+
+ @pytest.mark.unit
+ def test_scipy_noprior(self, model, dataset):
+ # Test that Scipy minimize handles no-priors correctly
+ # Set up the parameter with no prior
+ parameter = pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ initial_value=1, # Intentionally infeasible!
+ bounds=[0.55, 0.95],
+ )
+
+ # Define the problem and cost
+ problem = pybop.FittingProblem(model, parameter, dataset)
+ cost = pybop.SumSquaredError(problem)
+
+ # Create the optimisation class with infeasible solutions disabled
+ opt = pybop.SciPyMinimize(
+ cost=cost,
+ allow_infeasible_solutions=False,
+ max_iterations=1,
+ )
+ with pytest.raises(
+ ValueError,
+ match="The initial parameter values return an infinite cost.",
+ ):
+ opt.run()
+
+ @pytest.mark.unit
+ def test_scipy_bounds(self, cost):
+ # Create the optimisation class with incorrect bounds type
+ with pytest.raises(
+ TypeError,
+ match="Bounds provided must be either type dict, list or SciPy.optimize.bounds object.",
+ ):
+ pybop.SciPyMinimize(
+ cost=cost,
+ bounds="This is a bad bound",
+ max_iterations=1,
+ )
+
@pytest.mark.unit
def test_halting(self, cost):
+ # Add a parameter transformation
+ cost.parameters[
+ "Positive electrode active material volume fraction"
+ ].transformation = pybop.IdentityTransformation()
+
# Test max evalutions
optim = pybop.GradientDescent(cost=cost, max_evaluations=1, verbose=True)
- x, __ = optim.run()
+ optim.run()
assert optim.result.n_iterations == 1
# Test max unchanged iterations
optim = pybop.GradientDescent(
cost=cost, max_unchanged_iterations=1, min_iterations=1
)
- x, __ = optim.run()
+ results = optim.run()
assert optim.result.n_iterations == 2
+ assert (
+ str(results) == f"OptimisationResult:\n"
+ f" Initial parameters: {results.x0}\n"
+ f" Optimised parameters: {results.x}\n"
+ f" Final cost: {results.final_cost}\n"
+ f" Optimisation time: {results.time} seconds\n"
+ f" Number of iterations: {results.n_iterations}\n"
+ f" SciPy result available: No"
+ )
+
# Test guessed values
optim.set_f_guessed_tracking(True)
assert optim.f_guessed_tracking() is True
@@ -400,11 +513,31 @@ def test_halting(self, cost):
with pytest.raises(ValueError):
optim.set_max_evaluations(-1)
- optim = pybop.Optimisation(cost=cost)
+ # Reset optim
+ optim = pybop.Optimisation(cost=cost, sigma0=0.015, verbose=True)
+
+ # Confirm setting threshold == None
+ optim.set_threshold(None)
+ assert optim._threshold is None
- # Trigger threshold
+ # Confirm threshold halts
+ # Redirect stdout to capture print output
+ captured_output = io.StringIO()
+ sys.stdout = captured_output
optim.set_threshold(np.inf)
- optim.run()
+ results = optim.run()
+ assert (
+ captured_output.getvalue().strip()
+ == f"Halt: Objective function crossed threshold: inf.\n"
+ f"OptimisationResult:\n"
+ f" Initial parameters: {results.x0}\n"
+ f" Optimised parameters: {results.x}\n"
+ f" Final cost: {results.final_cost}\n"
+ f" Optimisation time: {results.time} seconds\n"
+ f" Number of iterations: {results.n_iterations}\n"
+ f" SciPy result available: No"
+ )
+
optim.set_max_unchanged_iterations()
# Test callback and halting output
@@ -420,7 +553,7 @@ def callback_error(iteration, s):
def optimiser_error():
return "Optimiser error message"
- optim.pints_optimiser.stop = optimiser_error
+ optim.optimiser.stop = optimiser_error
optim.run()
assert optim.result.n_iterations == 1
@@ -438,12 +571,31 @@ def optimiser_error():
def test_infeasible_solutions(self, cost):
# Test infeasible solutions
for optimiser in [pybop.SciPyMinimize, pybop.GradientDescent]:
- optim = optimiser(cost=cost, allow_infeasible_solutions=False, maxiter=1)
+ optim = optimiser(
+ cost=cost, allow_infeasible_solutions=False, max_iterations=1
+ )
optim.run()
assert optim.result.n_iterations == 1
@pytest.mark.unit
def test_unphysical_result(self, cost):
# Trigger parameters not physically viable warning
- optim = pybop.Optimisation(cost=cost)
- optim.check_optimal_parameters(np.array([2]))
+ optim = pybop.Optimisation(cost=cost, max_iterations=3)
+ results = optim.run()
+ results.check_physical_viability(np.array([2]))
+
+ @pytest.mark.unit
+ def test_optimisation_results(self, cost):
+ # Construct OptimisationResult
+ results = pybop.OptimisationResult(x=[1e-3], cost=cost, n_iterations=1)
+
+ # Asserts
+ assert results.x[0] == 1e-3
+ assert results.final_cost == cost([1e-3])
+ assert results.n_iterations == 1
+
+ # Test non-finite results
+ with pytest.raises(
+ ValueError, match="Optimised parameters do not produce a finite cost value"
+ ):
+ pybop.OptimisationResult(x=[1e-5], cost=cost, n_iterations=1)
diff --git a/tests/unit/test_parameter_sets.py b/tests/unit/test_parameter_sets.py
index 12b2c18a6..35dbd9c1c 100644
--- a/tests/unit/test_parameter_sets.py
+++ b/tests/unit/test_parameter_sets.py
@@ -1,5 +1,6 @@
import numpy as np
import pytest
+from pybamm import FunctionParameter, Parameter, Scalar
import pybop
@@ -37,7 +38,7 @@ def test_ecm_parameter_sets(self):
json_params.import_parameters()
json_params = pybop.ParameterSet(
- json_path="examples/scripts/parameters/initial_ecm_parameters.json"
+ json_path="examples/parameters/initial_ecm_parameters.json"
)
json_params.import_parameters()
@@ -93,14 +94,14 @@ def test_ecm_parameter_sets(self):
),
)
params.export_parameters(
- "examples/scripts/parameters/fit_ecm_parameters.json", fit_params=parameters
+ "examples/parameters/fit_ecm_parameters.json", fit_params=parameters
)
# Test error when there no parameters to export
empty_params = pybop.ParameterSet()
with pytest.raises(ValueError):
empty_params.export_parameters(
- "examples/scripts/parameters/fit_ecm_parameters.json"
+ "examples/parameters/fit_ecm_parameters.json"
)
@pytest.mark.unit
@@ -114,7 +115,7 @@ def test_bpx_parameter_sets(self):
bpx_parameters.import_from_bpx()
bpx_parameters = pybop.ParameterSet(
- json_path="examples/scripts/parameters/example_BPX.json"
+ json_path="examples/parameters/example_BPX.json"
)
bpx_parameters.import_from_bpx()
@@ -123,3 +124,32 @@ def test_bpx_parameter_sets(self):
match="Parameter set already constructed, or path to bpx file not provided.",
):
bpx_parameters.import_from_bpx()
+
+ @pytest.mark.unit
+ def test_set_formation_concentrations(self):
+ parameter_set = pybop.ParameterSet.pybamm(
+ "Chen2020", formation_concentrations=True
+ )
+
+ assert (
+ parameter_set["Initial concentration in negative electrode [mol.m-3]"] == 0
+ )
+ assert (
+ parameter_set["Initial concentration in positive electrode [mol.m-3]"] > 0
+ )
+
+ @pytest.mark.unit
+ def test_evaluate_symbol(self):
+ parameter_set = pybop.ParameterSet.pybamm("Chen2020")
+ porosity = parameter_set["Positive electrode porosity"]
+ assert isinstance(porosity, float)
+
+ for param in [
+ 1.0 + porosity,
+ 1.0 + Scalar(porosity),
+ 1.0 + Parameter("Positive electrode porosity"),
+ 1.0 + FunctionParameter("Positive electrode porosity", inputs={}),
+ ]:
+ value = pybop.ParameterSet.evaluate_symbol(param, parameter_set)
+ assert isinstance(value, float)
+ np.testing.assert_allclose(value, 1.0 + porosity)
diff --git a/tests/unit/test_parameters.py b/tests/unit/test_parameters.py
index 736684fef..cc8e4dbcd 100644
--- a/tests/unit/test_parameters.py
+++ b/tests/unit/test_parameters.py
@@ -1,3 +1,4 @@
+import numpy as np
import pytest
import pybop
@@ -62,6 +63,11 @@ def test_no_bounds(self):
)
assert parameter.bounds is None
+ # Test get_bounds with bounds == None
+ parameters = pybop.Parameters(parameter)
+ bounds = parameters.get_bounds()
+ assert not np.isfinite(list(bounds.values())).all()
+
@pytest.mark.unit
def test_invalid_inputs(self, parameter):
# Test error with invalid value
@@ -78,6 +84,16 @@ def test_invalid_inputs(self, parameter):
):
pybop.Parameter("Name", bounds=[0.7, 0.3])
+ @pytest.mark.unit
+ def test_sample_initial_values(self):
+ parameter = pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.6, 0.02),
+ bounds=[0.375, 0.7],
+ )
+ sample = parameter.get_initial_value()
+ assert (sample >= 0.375) and (sample <= 0.7)
+
class TestParameters:
"""
@@ -105,11 +121,23 @@ def test_parameters_construction(self, parameter):
assert parameter.name in params.param.keys()
assert parameter in params.param.values()
+ params.join(
+ pybop.Parameters(
+ parameter,
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.6, 0.02),
+ bounds=[0.375, 0.7],
+ initial_value=0.6,
+ ),
+ )
+ )
+
with pytest.raises(
ValueError,
match="There is already a parameter with the name "
- + "Negative electrode active material volume fraction"
- + " in the Parameters object. Please remove the duplicate entry.",
+ "Negative electrode active material volume fraction"
+ " in the Parameters object. Please remove the duplicate entry.",
):
params.add(parameter)
@@ -128,11 +156,16 @@ def test_parameters_construction(self, parameter):
initial_value=0.6,
)
)
+ with pytest.raises(
+ Exception,
+ match="Parameter requires a name.",
+ ):
+ params.add(dict(value=1))
with pytest.raises(
ValueError,
match="There is already a parameter with the name "
- + "Negative electrode active material volume fraction"
- + " in the Parameters object. Please remove the duplicate entry.",
+ "Negative electrode active material volume fraction"
+ " in the Parameters object. Please remove the duplicate entry.",
):
params.add(
dict(
@@ -156,6 +189,56 @@ def test_parameters_construction(self, parameter):
):
params.remove(parameter_name=parameter)
+ @pytest.mark.unit
+ def test_parameters_naming(self, parameter):
+ params = pybop.Parameters(parameter)
+ param = params["Negative electrode active material volume fraction"]
+ assert param == parameter
+
+ with pytest.raises(
+ ValueError,
+ match="is not the name of a parameter.",
+ ):
+ params["Positive electrode active material volume fraction"]
+
+ @pytest.mark.unit
+ def test_parameters_transformation(self):
+ # Test unbounded transformation causes ValueError due to NaN
+ params = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.01, 0.2),
+ transformation=pybop.LogTransformation(),
+ )
+ )
+
+ with pytest.raises(
+ ValueError,
+ match="Transformed bounds resulted in NaN values.\nIf you've not applied bounds",
+ ):
+ params.get_bounds(apply_transform=True)
+
+ @pytest.mark.unit
+ def test_parameters_update(self, parameter):
+ params = pybop.Parameters(parameter)
+ params.update(values=[0.5])
+ assert parameter.value == 0.5
+ params.update(bounds=[[0.38, 0.68]])
+ assert parameter.bounds == [0.38, 0.68]
+ params.update(bounds=dict(lower=[0.37], upper=[0.7]))
+ assert parameter.bounds == [0.37, 0.7]
+
+ @pytest.mark.unit
+ def test_parameters_rvs(self, parameter):
+ parameter.transformation = pybop.ScaledTransformation(
+ coefficient=0.2, intercept=-1
+ )
+ params = pybop.Parameters(parameter)
+ params.construct_transformation()
+ samples = params.rvs(n_samples=500, apply_transform=True)
+ assert (samples >= -0.125).all() and (samples <= -0.06).all()
+ parameter.transformation = None
+
@pytest.mark.unit
def test_get_sigma(self, parameter):
params = pybop.Parameters(parameter)
@@ -163,3 +246,27 @@ def test_get_sigma(self, parameter):
parameter.prior = None
assert params.get_sigma0() is None
+
+ @pytest.mark.unit
+ def test_initial_values_without_attributes(self):
+ # Test without initial values
+ parameter = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode conductivity [S.m-1]",
+ )
+ )
+ with pytest.warns(
+ UserWarning,
+ match="Initial value and prior are None, proceeding without an initial value.",
+ ):
+ sample = parameter.initial_value()
+
+ np.testing.assert_equal(sample, np.array([None]))
+
+ @pytest.mark.unit
+ def test_parameters_repr(self, parameter):
+ params = pybop.Parameters(parameter)
+ assert (
+ repr(params)
+ == "Parameters(1):\n Negative electrode active material volume fraction: prior= Gaussian, loc: 0.6, scale: 0.02, value=0.6, bounds=[0.375, 0.7]"
+ )
diff --git a/tests/unit/test_plots.py b/tests/unit/test_plots.py
index b810e3f0e..733b81d42 100644
--- a/tests/unit/test_plots.py
+++ b/tests/unit/test_plots.py
@@ -1,3 +1,5 @@
+import warnings
+
import numpy as np
import pytest
from packaging import version
@@ -7,14 +9,16 @@
class TestPlots:
"""
- A class to test the plotting classes.
+ A class to test the plot classes.
"""
@pytest.mark.unit
def test_standard_plot(self):
# Test standard plot
- trace_names = pybop.StandardPlot.remove_brackets(["Trace [1]", "Trace [2]"])
- plot_dict = pybop.StandardPlot(
+ trace_names = pybop.plot.StandardPlot.remove_brackets(
+ ["Trace [1]", "Trace [2]"]
+ )
+ plot_dict = pybop.plot.StandardPlot(
x=np.ones((2, 10)),
y=np.ones((2, 10)),
trace_names=trace_names,
@@ -58,13 +62,13 @@ def dataset(self, model):
@pytest.mark.unit
def test_dataset_plots(self, dataset):
- # Test plotting of Dataset objects
- pybop.plot_trajectories(
+ # Test plot of Dataset objects
+ pybop.plot.trajectories(
dataset["Time [s]"],
dataset["Voltage [V]"],
trace_names=["Time [s]", "Voltage [V]"],
)
- pybop.plot_dataset(dataset, signal=["Voltage [V]"])
+ pybop.plot.dataset(dataset)
@pytest.fixture
def fitting_problem(self, model, parameters, dataset):
@@ -80,13 +84,17 @@ def experiment(self):
@pytest.fixture
def design_problem(self, model, parameters, experiment):
+ model = pybop.lithium_ion.SPM()
return pybop.DesignProblem(model, parameters, experiment)
@pytest.mark.unit
def test_problem_plots(self, fitting_problem, design_problem):
- # Test plotting of Problem objects
- pybop.quick_plot(fitting_problem, title="Optimised Comparison")
- pybop.quick_plot(design_problem)
+ # Test plot of Problem objects
+ pybop.plot.quick(fitting_problem, title="Optimised Comparison")
+ pybop.plot.quick(design_problem)
+
+ # Test conversion of values into inputs
+ pybop.plot.quick(fitting_problem, problem_inputs=[0.6, 0.6])
@pytest.fixture
def cost(self, fitting_problem):
@@ -95,15 +103,17 @@ def cost(self, fitting_problem):
@pytest.mark.unit
def test_cost_plots(self, cost):
- # Test plotting of Cost objects
- pybop.plot2d(cost, gradient=True, steps=5)
+ # Test plot of Cost objects
+ pybop.plot.contour(cost, gradient=True, steps=5)
# Test without bounds
- for param in cost.problem.parameters:
+ for param in cost.parameters:
param.bounds = None
- with pytest.raises(ValueError):
- pybop.plot2d(cost, steps=5)
- pybop.plot2d(cost, bounds=np.array([[0.5, 0.8], [0.4, 0.7]]), steps=5)
+ with pytest.raises(ValueError, match="All parameters require bounds for plot."):
+ pybop.plot.contour(cost, steps=5)
+
+ # Test with bounds
+ pybop.plot.contour(cost, bounds=np.array([[0.5, 0.8], [0.4, 0.7]]), steps=5)
@pytest.fixture
def optim(self, cost):
@@ -114,30 +124,172 @@ def optim(self, cost):
@pytest.mark.unit
def test_optim_plots(self, optim):
+ bounds = np.asarray([[0.5, 0.8], [0.4, 0.7]])
+
# Plot convergence
- pybop.plot_convergence(optim)
+ pybop.plot.convergence(optim)
optim._minimising = False
- pybop.plot_convergence(optim)
+ pybop.plot.convergence(optim)
# Plot the parameter traces
- pybop.plot_parameters(optim)
+ pybop.plot.parameters(optim)
# Plot the cost landscape with optimisation path
- pybop.plot2d(optim, steps=5)
+ pybop.plot.contour(optim, steps=3)
+
+ # Plot the cost landscape w/ optim & bounds
+ pybop.plot.contour(optim, steps=3, bounds=bounds)
# Plot the cost landscape using optimisation path
- pybop.plot2d(optim, steps=5, use_optim_log=True)
+ pybop.plot.contour(optim, steps=3, use_optim_log=True)
# Plot gradient cost landscape
- pybop.plot2d(optim, gradient=True, steps=5)
+ pybop.plot.contour(optim, gradient=True, steps=5)
+
+ # Plot voronoi
+ pybop.plot.surface(optim)
+
+ # Plot voronoi w/ bounds
+ pybop.plot.surface(optim, bounds=bounds)
+
+ @pytest.fixture
+ def posterior_summary(self, fitting_problem):
+ posterior = pybop.LogPosterior(
+ pybop.GaussianLogLikelihoodKnownSigma(fitting_problem, sigma0=2e-3)
+ )
+ sampler = pybop.SliceStepoutMCMC(posterior, chains=1, iterations=1)
+ results = sampler.run()
+ return pybop.PosteriorSummary(results)
+
+ @pytest.mark.unit
+ def test_posterior_plots(self, posterior_summary):
+ # Plot trace
+ posterior_summary.plot_trace()
+
+ # Plot posterior
+ posterior_summary.plot_posterior()
+
+ # Plot chains
+ posterior_summary.plot_chains()
+
+ # Plot summary table
+ posterior_summary.summary_table()
@pytest.mark.unit
def test_with_ipykernel(self, dataset, cost, optim):
import ipykernel
assert version.parse(ipykernel.__version__) >= version.parse("0.6")
- pybop.plot_dataset(dataset, signal=["Voltage [V]"])
- pybop.plot2d(cost, gradient=True, steps=5)
- pybop.plot_convergence(optim)
- pybop.plot_parameters(optim)
- pybop.plot2d(optim, steps=5)
+ pybop.plot.dataset(dataset, signal=["Voltage [V]"])
+ pybop.plot.contour(cost, gradient=True, steps=5)
+ pybop.plot.convergence(optim)
+ pybop.plot.parameters(optim)
+ pybop.plot.contour(optim, steps=5)
+
+ @pytest.mark.unit
+ def test_gaussianlogliklihood_plots(self, fitting_problem):
+ # Test plot of GaussianLogLikelihood
+ likelihood = pybop.GaussianLogLikelihood(fitting_problem)
+ optim = pybop.CMAES(likelihood, max_iterations=5)
+ optim.run()
+
+ # Plot parameters
+ pybop.plot.parameters(optim)
+
+ @pytest.mark.unit
+ def test_contour_incorrect_number_of_parameters(self, model, dataset):
+ # Test with less than two paramters
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.68, 0.05),
+ bounds=[0.5, 0.8],
+ ),
+ )
+ fitting_problem = pybop.FittingProblem(model, parameters, dataset)
+ cost = pybop.SumSquaredError(fitting_problem)
+ with pytest.raises(
+ ValueError, match="This cost function takes fewer than 2 parameters."
+ ):
+ pybop.plot.contour(cost)
+
+ # Test with more than two paramters
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.68, 0.05),
+ bounds=[0.5, 0.8],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.58, 0.05),
+ bounds=[0.4, 0.7],
+ ),
+ pybop.Parameter(
+ "Positive particle radius [m]",
+ prior=pybop.Gaussian(4.8e-06, 0.05e-06),
+ bounds=[4e-06, 6e-06],
+ ),
+ )
+ fitting_problem = pybop.FittingProblem(model, parameters, dataset)
+ cost = pybop.SumSquaredError(fitting_problem)
+ pybop.plot.contour(cost)
+
+ @pytest.mark.unit
+ def test_contour_prior_bounds(self, model, dataset):
+ # Test with prior bounds
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.68, 0.01),
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.58, 0.01),
+ ),
+ )
+ fitting_problem = pybop.FittingProblem(model, parameters, dataset)
+ cost = pybop.SumSquaredError(fitting_problem)
+ with pytest.warns(
+ UserWarning,
+ match="Bounds were created from prior distributions.",
+ ):
+ warnings.simplefilter("always")
+ pybop.plot.contour(cost)
+
+ @pytest.mark.unit
+ def test_nyquist(self):
+ # Define model
+ model = pybop.lithium_ion.SPM(
+ eis=True, options={"surface form": "differential"}
+ )
+
+ # Fitting parameters
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Positive electrode thickness [m]",
+ prior=pybop.Gaussian(60e-6, 1e-6),
+ bounds=[10e-6, 80e-6],
+ )
+ )
+
+ # Form dataset
+ dataset = pybop.Dataset(
+ {
+ "Frequency [Hz]": np.logspace(-4, 5, 10),
+ "Current function [A]": np.ones(10) * 0.0,
+ "Impedance": np.ones(10) * 0.0,
+ }
+ )
+
+ signal = ["Impedance"]
+ # Generate problem, cost function, and optimisation class
+ problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+
+ # Plot the nyquist
+ pybop.plot.nyquist(
+ problem, problem_inputs=[60e-6], title="Optimised Comparison"
+ )
+
+ # Without inputs
+ pybop.plot.nyquist(problem, title="Optimised Comparison")
diff --git a/tests/unit/test_posterior.py b/tests/unit/test_posterior.py
new file mode 100644
index 000000000..8d45ddc28
--- /dev/null
+++ b/tests/unit/test_posterior.py
@@ -0,0 +1,131 @@
+import numpy as np
+import pytest
+import scipy.stats as st
+
+import pybop
+
+
+class TestLogPosterior:
+ """
+ Class for log posterior unit tests
+ """
+
+ @pytest.fixture
+ def model(self):
+ return pybop.lithium_ion.SPM()
+
+ @pytest.fixture
+ def ground_truth(self):
+ return 0.52
+
+ @pytest.fixture
+ def parameters(self, ground_truth):
+ return pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.5, 0.01),
+ bounds=[0.375, 0.625],
+ initial_value=ground_truth,
+ )
+
+ @pytest.fixture
+ def experiment(self):
+ return pybop.Experiment(
+ [
+ ("Discharge at 1C for 1 minutes (5 second period)"),
+ ]
+ )
+
+ @pytest.fixture
+ def dataset(self, model, experiment, ground_truth):
+ model._parameter_set = model.pybamm_model.default_parameter_values
+ model._parameter_set.update(
+ {
+ "Negative electrode active material volume fraction": ground_truth,
+ }
+ )
+ solution = model.predict(experiment=experiment)
+ return pybop.Dataset(
+ {
+ "Time [s]": solution["Time [s]"].data,
+ "Current function [A]": solution["Current [A]"].data,
+ "Voltage [V]": solution["Terminal voltage [V]"].data,
+ }
+ )
+
+ @pytest.fixture
+ def one_signal_problem(self, model, parameters, dataset):
+ return pybop.FittingProblem(model, parameters, dataset)
+
+ @pytest.fixture
+ def likelihood(self, one_signal_problem):
+ return pybop.GaussianLogLikelihoodKnownSigma(one_signal_problem, sigma0=0.01)
+
+ @pytest.fixture
+ def prior(self):
+ return pybop.Gaussian(0.5, 0.01)
+
+ @pytest.mark.unit
+ def test_log_posterior_construction(self, likelihood, prior):
+ # Test log posterior construction
+ posterior = pybop.LogPosterior(likelihood, prior)
+ keys = likelihood.parameters.keys()
+
+ assert posterior._log_likelihood == likelihood
+ assert posterior._prior == prior
+ assert posterior.parameters[keys[0]] == likelihood.parameters[keys[0]]
+ assert posterior.has_separable_problem == likelihood.has_separable_problem
+ assert posterior.transformation == likelihood.transformation
+
+ @pytest.mark.unit
+ def test_log_posterior_construction_no_prior(self, likelihood):
+ # Test log posterior construction without prior
+ posterior = pybop.LogPosterior(likelihood, None)
+
+ assert posterior._prior is not None
+ assert isinstance(posterior._prior, pybop.JointLogPrior)
+
+ for i, p in enumerate(posterior._prior._priors):
+ assert p == posterior._log_likelihood.problem.parameters.priors()[i]
+
+ @pytest.fixture
+ def posterior(self, likelihood, prior):
+ return pybop.LogPosterior(likelihood, prior)
+
+ @pytest.mark.unit
+ def test_log_posterior(self, posterior):
+ # Test log posterior
+ x = np.array([0.50])
+ assert np.allclose(posterior(x), 51.5236, atol=2e-2)
+
+ # Test log posterior evaluateS1
+ p, dp = posterior(x, calculate_grad=True)
+ assert np.allclose(p, 51.5236, atol=2e-2)
+ assert np.allclose(dp, 2.0, atol=2e-2)
+
+ # Get log likelihood and log prior
+ likelihood = posterior.likelihood
+ prior = posterior.prior
+
+ assert likelihood == posterior._log_likelihood
+ assert prior == posterior._prior
+
+ @pytest.fixture
+ def posterior_uniform_prior(self, likelihood):
+ return pybop.LogPosterior(likelihood, pybop.Uniform(0.45, 0.55))
+
+ @pytest.mark.unit
+ def test_log_posterior_inf(self, posterior_uniform_prior):
+ # Test prior np.inf
+ assert not np.isfinite(posterior_uniform_prior([1]))
+ assert not np.isfinite(posterior_uniform_prior([1], calculate_grad=True)[0])
+
+ @pytest.mark.unit
+ def test_non_logpdfS1_prior(self, likelihood):
+ # Scipy distribution
+ prior = st.norm(0.8, 0.01)
+ posterior = pybop.LogPosterior(likelihood, log_prior=prior)
+ p, dp = posterior([0.6], calculate_grad=True)
+
+ # Assert to PyBOP.Gaussian
+ p2, dp2 = pybop.Gaussian(0.8, 0.01).logpdfS1(0.6)
+ np.testing.assert_allclose(dp, dp2, atol=2e-3)
diff --git a/tests/unit/test_priors.py b/tests/unit/test_priors.py
index b773049f8..3e9184374 100644
--- a/tests/unit/test_priors.py
+++ b/tests/unit/test_priors.py
@@ -21,13 +21,23 @@ def Uniform(self):
def Exponential(self):
return pybop.Exponential(scale=1)
+ @pytest.fixture
+ def JointPrior1(self, Gaussian, Uniform):
+ return pybop.JointLogPrior(Gaussian, Uniform)
+
+ @pytest.fixture
+ def JointPrior2(self, Gaussian, Exponential):
+ return pybop.JointLogPrior(Gaussian, Exponential)
+
@pytest.mark.unit
def test_base_prior(self):
base = pybop.BasePrior()
assert isinstance(base, pybop.BasePrior)
+ with pytest.raises(NotImplementedError):
+ base._logpdfS1(0.0)
@pytest.mark.unit
- def test_priors(self, Gaussian, Uniform, Exponential):
+ def test_priors(self, Gaussian, Uniform, Exponential, JointPrior1, JointPrior2):
# Test pdf
np.testing.assert_allclose(Gaussian.pdf(0.5), 0.3989422804014327, atol=1e-4)
np.testing.assert_allclose(Uniform.pdf(0.5), 1, atol=1e-4)
@@ -38,6 +48,69 @@ def test_priors(self, Gaussian, Uniform, Exponential):
np.testing.assert_allclose(Uniform.logpdf(0.5), 0, atol=1e-4)
np.testing.assert_allclose(Exponential.logpdf(1), -1, atol=1e-4)
+ # Test icdf
+ np.testing.assert_allclose(Gaussian.icdf(0.5), 0.5, atol=1e-4)
+ np.testing.assert_allclose(Uniform.icdf(0.5), 0.5, atol=1e-4)
+ np.testing.assert_allclose(Exponential.icdf(0.5), 0.6931471805599453, atol=1e-4)
+
+ # Test cdf
+ np.testing.assert_allclose(Gaussian.cdf(0.5), 0.5, atol=1e-4)
+ np.testing.assert_allclose(Uniform.cdf(0.5), 0.5, atol=1e-4)
+ np.testing.assert_allclose(Exponential.cdf(1), 0.6321205588285577, atol=1e-4)
+
+ # Test __call__
+ assert Gaussian(0.5) == Gaussian.logpdf(0.5)
+ assert Uniform(0.5) == Uniform.logpdf(0.5)
+ assert Exponential(1) == Exponential.logpdf(1)
+ assert JointPrior1([0.5, 0.5]) == Gaussian.logpdf(0.5) + Uniform.logpdf(0.5)
+ assert JointPrior2([0.5, 1]) == Gaussian.logpdf(0.5) + Exponential.logpdf(1)
+
+ # Test Gaussian.logpdfS1
+ p, dp = Gaussian.logpdfS1(0.5)
+ assert p == Gaussian.logpdf(0.5)
+ assert dp == 0.0
+
+ # Test Uniform.logpdfS1
+ p, dp = Uniform.logpdfS1(0.5)
+ assert p == Uniform.logpdf(0.5)
+ assert dp == 0.0
+
+ # Test Exponential.logpdfS1
+ p, dp = Exponential.logpdfS1(1)
+ assert p == Exponential.logpdf(1)
+ assert dp == Exponential.logpdf(1)
+
+ # Test JointPrior1.logpdfS1
+ p, dp = JointPrior1.logpdfS1([0.5, 0.5])
+ assert p == Gaussian.logpdf(0.5) + Uniform.logpdf(0.5)
+ np.testing.assert_allclose(dp, np.array([0.0, 0.0]), atol=1e-4)
+
+ # Test JointPrior.logpdfS1
+ p, dp = JointPrior2.logpdfS1([0.5, 1])
+ assert p == Gaussian.logpdf(0.5) + Exponential.logpdf(1)
+ np.testing.assert_allclose(
+ dp, np.array([0.0, Exponential.logpdf(1)]), atol=1e-4
+ )
+
+ # Test JointPrior1 non-symmetric
+ with pytest.raises(AssertionError):
+ np.testing.assert_allclose(
+ JointPrior1([0.4, 0.5]), JointPrior1([0.5, 0.4]), atol=1e-4
+ )
+
+ # Test JointPrior2 non-symmetric
+ with pytest.raises(AssertionError):
+ np.testing.assert_allclose(
+ JointPrior2([0.4, 1]), JointPrior2([1, 0.4]), atol=1e-4
+ )
+
+ # Test JointPrior with incorrect dimensions
+ with pytest.raises(ValueError, match="Input x must have length 2, got 1"):
+ JointPrior1([0.4])
+
+ with pytest.raises(ValueError, match="Input x must have length 2, got 1"):
+ JointPrior1.logpdfS1([0.4])
+
# Test properties
assert Uniform.mean == (Uniform.upper - Uniform.lower) / 2
np.testing.assert_allclose(
@@ -74,10 +147,14 @@ def test_exponential_rvs(self, Exponential):
assert abs(mean - 1) < 0.2
@pytest.mark.unit
- def test_repr(self, Gaussian, Uniform, Exponential):
+ def test_repr(self, Gaussian, Uniform, Exponential, JointPrior1):
assert repr(Gaussian) == "Gaussian, loc: 0.5, scale: 1"
assert repr(Uniform) == "Uniform, loc: 0, scale: 1"
assert repr(Exponential) == "Exponential, loc: 0, scale: 1"
+ assert (
+ repr(JointPrior1)
+ == "JointLogPrior(priors: [Gaussian, loc: 0.5, scale: 1, Uniform, loc: 0, scale: 1])"
+ )
@pytest.mark.unit
def test_invalid_size(self, Gaussian, Uniform, Exponential):
@@ -87,3 +164,14 @@ def test_invalid_size(self, Gaussian, Uniform, Exponential):
Uniform.rvs(-1)
with pytest.raises(ValueError):
Exponential.rvs(-1)
+
+ @pytest.mark.unit
+ def test_incorrect_composed_priors(self, Gaussian, Uniform):
+ with pytest.raises(
+ ValueError, match="All priors must be instances of BasePrior"
+ ):
+ pybop.JointLogPrior(Gaussian, Uniform, "string")
+ with pytest.raises(
+ ValueError, match="All priors must be instances of BasePrior"
+ ):
+ pybop.JointLogPrior(Gaussian, Uniform, 0.5)
diff --git a/tests/unit/test_problem.py b/tests/unit/test_problem.py
index c2c40a038..c02a0aa17 100644
--- a/tests/unit/test_problem.py
+++ b/tests/unit/test_problem.py
@@ -45,7 +45,6 @@ def experiment(self):
@pytest.fixture
def dataset(self, model, experiment):
- model.parameter_set = model.pybamm_model.default_parameter_values
x0 = np.array([2e-5, 0.5e-5])
model.parameter_set.update(
{
@@ -71,7 +70,7 @@ def test_base_problem(self, parameters, model, dataset):
# Construct Problem
problem = pybop.BaseProblem(parameters, model=model)
- assert problem._model == model
+ assert problem.model == model
with pytest.raises(NotImplementedError):
problem.evaluate([1e-5, 1e-5])
@@ -109,11 +108,29 @@ def test_base_problem(self, parameters, model, dataset):
@pytest.mark.unit
def test_fitting_problem(self, parameters, dataset, model, signal):
+ with pytest.warns(UserWarning) as record:
+ problem = pybop.FittingProblem(
+ model,
+ parameters,
+ dataset,
+ signal=signal,
+ initial_state={"Initial SoC": 0.8},
+ )
+ assert "It is usually better to define an initial open-circuit voltage" in str(
+ record[0].message
+ )
+
# Construct Problem
- problem = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+ problem = pybop.FittingProblem(
+ model,
+ parameters,
+ dataset,
+ signal=signal,
+ initial_state={"Initial open-circuit voltage [V]": 4.0},
+ )
- assert problem._model == model
- assert problem._model._built_model is not None
+ assert problem.model == model
+ assert problem.model.built_model is not None
# Test get target
target = problem.get_target()["Voltage [V]"]
@@ -130,6 +147,14 @@ def test_fitting_problem(self, parameters, dataset, model, signal):
# Test model.simulate
model.simulate(inputs=[1e-5, 1e-5], t_eval=np.linspace(0, 10, 100))
+ # Test model.simulate with an initial state
+ problem.evaluate(inputs=[1e-5, 1e-5])
+
+ # Test try-except
+ problem.verbose = True
+ out = problem.evaluate(inputs=[0.0, 0.0])
+ assert not np.isfinite(out["Voltage [V]"])
+
# Test problem construction errors
for bad_dataset in [
pybop.Dataset({"Time [s]": np.array([0])}),
@@ -162,19 +187,120 @@ def test_fitting_problem(self, parameters, dataset, model, signal):
with pytest.raises(ValueError):
pybop.FittingProblem(model, parameters, bad_dataset, signal=two_signals)
+ @pytest.mark.unit
+ def test_fitting_problem_eis(self, parameters):
+ model = pybop.lithium_ion.SPM(eis=True)
+
+ dataset = pybop.Dataset(
+ {
+ "Frequency [Hz]": np.logspace(-4, 5, 30),
+ "Current function [A]": np.ones(30) * 0.0,
+ "Impedance": np.ones(30) * 0.0,
+ }
+ )
+
+ # Construct Problem
+ problem = pybop.FittingProblem(
+ model,
+ parameters,
+ dataset,
+ signal=["Impedance"],
+ initial_state={"Initial open-circuit voltage [V]": 4.0},
+ )
+ assert problem.eis == model.eis
+ assert problem.domain == "Frequency [Hz]"
+
+ # Test try-except
+ problem.verbose = True
+ out = problem.evaluate(inputs=[0.0, 0.0])
+ assert not np.isfinite(out["Impedance"])
+
+ @pytest.mark.unit
+ def test_multi_fitting_problem(self, model, parameters, dataset, signal):
+ problem_1 = pybop.FittingProblem(model, parameters, dataset, signal=signal)
+
+ with pytest.raises(
+ ValueError, match="Make a new_copy of the model for each problem."
+ ):
+ pybop.MultiFittingProblem(problem_1, problem_1)
+
+ # Generate a second fitting problem
+ model = model.new_copy()
+ experiment = pybop.Experiment(
+ ["Discharge at 1C for 5 minutes (1 second period)"]
+ )
+ values = model.predict(
+ initial_state={"Initial SoC": 0.8}, experiment=experiment
+ )
+ dataset_2 = pybop.Dataset(
+ {
+ "Time [s]": values["Time [s]"].data,
+ "Current function [A]": values["Current [A]"].data,
+ "Voltage [V]": values["Voltage [V]"].data,
+ }
+ )
+ problem_2 = pybop.FittingProblem(model, parameters, dataset_2, signal=signal)
+ combined_problem = pybop.MultiFittingProblem(problem_1, problem_2)
+
+ assert combined_problem._model is None
+
+ assert len(combined_problem._dataset["Time [s]"]) == len(
+ problem_1._dataset["Time [s]"]
+ ) + len(problem_2._dataset["Time [s]"])
+ assert len(combined_problem._dataset["Combined signal"]) == len(
+ problem_1._dataset[signal]
+ ) + len(problem_2._dataset[signal])
+
+ y = combined_problem.evaluate(inputs=[1e-5, 1e-5])
+ assert len(y["Combined signal"]) == len(
+ combined_problem._dataset["Combined signal"]
+ )
+
@pytest.mark.unit
def test_design_problem(self, parameters, experiment, model):
+ with pytest.warns(UserWarning) as record:
+ problem = pybop.DesignProblem(
+ model,
+ parameters,
+ experiment,
+ update_capacity=True,
+ )
+ assert "The nominal capacity is approximated for each evaluation." in str(
+ record[0].message
+ )
+
+ with pytest.warns(UserWarning) as record:
+ problem = pybop.DesignProblem(
+ model,
+ parameters,
+ experiment,
+ initial_state={"Initial open-circuit voltage [V]": 4.0},
+ )
+ assert "It is usually better to define an initial state of charge" in str(
+ record[0].message
+ )
+ assert "The nominal capacity is fixed at the initial model value." in str(
+ record[1].message
+ )
+
# Construct Problem
problem = pybop.DesignProblem(model, parameters, experiment)
- assert problem._model == model
+ assert problem.model == model
assert (
- problem._model._built_model is None
+ problem.model.built_model is None
) # building postponed with input experiment
+ assert problem.initial_state == {"Initial SoC": 1.0}
+
+ # Test evaluation
+ problem.evaluate(inputs=[1e-5, 1e-5])
+ problem.evaluate(inputs=[3e-5, 3e-5])
- # Test model.predict
- model.predict(inputs=[1e-5, 1e-5], experiment=experiment)
- model.predict(inputs=[3e-5, 3e-5], experiment=experiment)
+ # Test initial SoC from parameter_set
+ model = pybop.empirical.Thevenin()
+ model.parameter_set["Initial SoC"] = 0.8
+ problem = pybop.DesignProblem(model, pybop.Parameters(), experiment)
+ assert problem.initial_state == {"Initial SoC": 0.8}
@pytest.mark.unit
def test_problem_construct_with_model_predict(
@@ -191,7 +317,7 @@ def test_problem_construct_with_model_predict(
# Test problem evaluate
problem_output = problem.evaluate([2e-5, 2e-5])
- assert problem._model._built_model is not None
+ assert problem.model.built_model is not None
with pytest.raises(AssertionError):
assert_allclose(
out["Voltage [V]"].data,
diff --git a/tests/unit/test_sampling.py b/tests/unit/test_sampling.py
new file mode 100644
index 000000000..e410242e6
--- /dev/null
+++ b/tests/unit/test_sampling.py
@@ -0,0 +1,413 @@
+import copy
+import logging
+import re
+from unittest.mock import call, patch
+
+import numpy as np
+import pytest
+from pints import ParallelEvaluator
+
+import pybop
+from pybop import (
+ DREAM,
+ MALAMCMC,
+ NUTS,
+ AdaptiveCovarianceMCMC,
+ DifferentialEvolutionMCMC,
+ DramACMC,
+ EmceeHammerMCMC,
+ HaarioACMC,
+ HaarioBardenetACMC,
+ HamiltonianMCMC,
+ MetropolisRandomWalkMCMC,
+ MonomialGammaHamiltonianMCMC,
+ PopulationMCMC,
+ RaoBlackwellACMC,
+ RelativisticMCMC,
+ SliceDoublingMCMC,
+ SliceRankShrinkingMCMC,
+ SliceStepoutMCMC,
+)
+
+
+class TestPintsSamplers:
+ """
+ Class for testing the Pints-based MCMC Samplers
+ """
+
+ @pytest.fixture
+ def dataset(self):
+ return pybop.Dataset(
+ {
+ "Time [s]": np.linspace(0, 360, 10),
+ "Current function [A]": np.zeros(10),
+ "Voltage [V]": np.ones(10),
+ }
+ )
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.6, 0.2),
+ bounds=[0.58, 0.62],
+ ),
+ pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.55, 0.05),
+ bounds=[0.53, 0.57],
+ ),
+ )
+
+ @pytest.fixture
+ def model(self):
+ return pybop.lithium_ion.SPM()
+
+ @pytest.fixture
+ def log_posterior(self, model, parameters, dataset):
+ problem = pybop.FittingProblem(
+ model,
+ parameters,
+ dataset,
+ )
+ likelihood = pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=0.01)
+ prior1 = pybop.Gaussian(0.7, 0.02)
+ prior2 = pybop.Gaussian(0.6, 0.02)
+ composed_prior = pybop.JointLogPrior(prior1, prior2)
+ log_posterior = pybop.LogPosterior(likelihood, composed_prior)
+
+ return log_posterior
+
+ @pytest.fixture
+ def x0(self):
+ return [0.68, 0.58]
+
+ @pytest.fixture
+ def chains(self):
+ return 3
+
+ @pytest.fixture
+ def multi_samplers(self):
+ return (pybop.DREAM, pybop.EmceeHammerMCMC, pybop.DifferentialEvolutionMCMC)
+
+ @pytest.fixture(
+ params=[
+ NUTS,
+ DREAM,
+ AdaptiveCovarianceMCMC,
+ DifferentialEvolutionMCMC,
+ DramACMC,
+ EmceeHammerMCMC,
+ HaarioACMC,
+ HaarioBardenetACMC,
+ HamiltonianMCMC,
+ MALAMCMC,
+ MetropolisRandomWalkMCMC,
+ MonomialGammaHamiltonianMCMC,
+ PopulationMCMC,
+ RaoBlackwellACMC,
+ RelativisticMCMC,
+ SliceDoublingMCMC,
+ SliceRankShrinkingMCMC,
+ SliceStepoutMCMC,
+ ]
+ )
+ def MCMC(self, request):
+ return request.param
+
+ @pytest.mark.unit
+ def test_initialisation_and_run(
+ self, log_posterior, x0, chains, MCMC, multi_samplers
+ ):
+ sampler = pybop.MCMCSampler(
+ log_pdf=log_posterior,
+ chains=chains,
+ sampler=MCMC,
+ x0=x0,
+ max_iterations=1,
+ verbose=True,
+ )
+ assert sampler._n_chains == chains
+ assert sampler._log_pdf == log_posterior
+ if isinstance(sampler.sampler, multi_samplers):
+ np.testing.assert_allclose(sampler._samplers[0]._x0[0], x0)
+ else:
+ np.testing.assert_allclose(sampler._samplers[0]._x0, x0)
+
+ # Test incorrect __getattr__
+ with pytest.raises(
+ AttributeError, match="'MCMCSampler' object has no attribute 'test'"
+ ):
+ sampler.__getattr__("test")
+
+ # Test __setattr__
+ sampler.some_attribute = 1
+ assert sampler.some_attribute == 1
+ sampler.verbose = True
+ assert sampler.verbose is True
+
+ # Run the sampler
+ samples = sampler.run()
+ assert samples is not None
+ assert samples.shape == (chains, 1, 2)
+
+ @pytest.mark.unit
+ def test_effectie_sample_size(self, log_posterior):
+ sampler = pybop.SliceStepoutMCMC(
+ log_pdf=log_posterior,
+ chains=1,
+ max_iterations=1,
+ )
+ results = sampler.run()
+ summary = pybop.PosteriorSummary(results)
+
+ with pytest.raises(ValueError, match="At least two samples must be given."):
+ summary.effective_sample_size()
+
+ @pytest.mark.unit
+ def test_single_parameter_sampling(self, model, dataset, MCMC, chains):
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode active material volume fraction",
+ prior=pybop.Gaussian(0.6, 0.2),
+ bounds=[0.58, 0.62],
+ )
+ )
+ problem = pybop.FittingProblem(
+ model,
+ parameters,
+ dataset,
+ )
+ likelihood = pybop.GaussianLogLikelihoodKnownSigma(problem, sigma0=0.01)
+ log_posterior = pybop.LogPosterior(likelihood)
+
+ # Skip RelativisticMCMC as it requires > 1 parameter
+ if issubclass(MCMC, RelativisticMCMC):
+ return
+
+ # Construct and run
+ sampler = pybop.MCMCSampler(
+ log_pdf=log_posterior,
+ chains=chains,
+ sampler=MCMC,
+ max_iterations=3,
+ verbose=True,
+ )
+ result = sampler.run()
+ summary = pybop.PosteriorSummary(result)
+ autocorr = summary.autocorrelation(result[0, :, 0])
+ assert autocorr.shape == (result[0, :, 0].shape[0] - 2,)
+
+ @pytest.mark.unit
+ def test_multi_log_pdf(self, log_posterior, x0, chains):
+ multi_log_posterior = [log_posterior, log_posterior, log_posterior]
+ sampler = pybop.MCMCSampler(
+ log_pdf=multi_log_posterior,
+ chains=chains,
+ sampler=HamiltonianMCMC,
+ x0=x0,
+ max_iterations=1,
+ )
+ assert sampler._n_chains == chains
+ assert sampler._log_pdf == multi_log_posterior
+
+ # Run the sampler
+ samples = sampler.run()
+ assert samples is not None
+ assert samples.shape == (chains, 1, 2)
+
+ # Test incorrect multi log pdf
+ incorrect_multi_log_posterior = [log_posterior, log_posterior, chains]
+ with pytest.raises(
+ ValueError, match="All log pdf's must be instances of BaseCost"
+ ):
+ sampler = pybop.MCMCSampler(
+ log_pdf=incorrect_multi_log_posterior,
+ chains=chains,
+ sampler=HaarioBardenetACMC,
+ x0=x0,
+ max_iterations=1,
+ )
+
+ # Test incorrect number of parameters
+ likelihood_copy = copy.copy(log_posterior.likelihood)
+ likelihood_copy.parameters = pybop.Parameters(
+ likelihood_copy.parameters[
+ "Positive electrode active material volume fraction"
+ ]
+ )
+ new_multi_log_posterior = pybop.LogPosterior(likelihood_copy)
+
+ with pytest.raises(
+ ValueError, match="All log pdf's must have the same number of parameters"
+ ):
+ sampler = pybop.MCMCSampler(
+ log_pdf=[log_posterior, log_posterior, new_multi_log_posterior],
+ chains=chains,
+ sampler=HaarioBardenetACMC,
+ x0=x0,
+ max_iterations=1,
+ )
+
+ @pytest.mark.unit
+ def test_invalid_initialisation(self, log_posterior, x0):
+ with pytest.raises(ValueError, match="Number of chains must be greater than 0"):
+ AdaptiveCovarianceMCMC(
+ log_pdf=log_posterior,
+ chains=0,
+ x0=x0,
+ )
+
+ with pytest.raises(
+ ValueError, match="Number of log pdf's must match number of chains"
+ ):
+ AdaptiveCovarianceMCMC(
+ log_pdf=[log_posterior, log_posterior, log_posterior],
+ chains=2,
+ x0=x0,
+ )
+
+ with pytest.raises(
+ ValueError, match="x0 must have the same number of parameters as log_pdf"
+ ):
+ AdaptiveCovarianceMCMC(
+ log_pdf=[log_posterior, log_posterior, log_posterior],
+ chains=3,
+ x0=[0.4, 0.4, 0.4, 0.4],
+ )
+
+ # SingleChain & MultiChain Sampler
+ @pytest.mark.parametrize(
+ "sampler",
+ [
+ AdaptiveCovarianceMCMC,
+ DifferentialEvolutionMCMC,
+ ],
+ )
+ @pytest.mark.unit
+ def test_no_chains_in_memory(self, log_posterior, x0, chains, sampler):
+ sampler = sampler(
+ log_pdf=log_posterior,
+ chains=chains,
+ x0=x0,
+ max_iterations=1,
+ chains_in_memory=False,
+ )
+ assert sampler._chains_in_memory is False
+
+ # Run the sampler
+ samples = sampler.run()
+ assert sampler._samples is not None
+ assert samples is None
+
+ @patch("logging.basicConfig")
+ @patch("logging.info")
+ @pytest.mark.unit
+ def test_initialise_logging(
+ self, mock_info, mock_basicConfig, log_posterior, x0, chains
+ ):
+ sampler = AdaptiveCovarianceMCMC(
+ log_pdf=log_posterior,
+ chains=chains,
+ x0=x0,
+ parallel=True,
+ evaluation_files=["eval1.txt", "eval2.txt"],
+ chain_files=["chain1.txt", "chain2.txt"],
+ )
+
+ # Set parallel workers
+ sampler.set_parallel(parallel=2)
+ sampler._initialise_logging()
+
+ # Check if basicConfig was called with correct arguments
+ mock_basicConfig.assert_called_once_with(
+ format="%(message)s", level=logging.INFO
+ )
+
+ # Check if correct messages were called
+ expected_calls = [
+ call("Using Haario-Bardenet adaptive covariance MCMC"),
+ call("Generating 3 chains."),
+ call("Running in parallel with 2 worker processes."),
+ call("Writing chains to chain1.txt etc."),
+ call("Writing evaluations to eval1.txt etc."),
+ ]
+ mock_info.assert_has_calls(expected_calls, any_order=False)
+
+ # Test when _log_to_screen is False
+ sampler._log_to_screen = False
+ sampler._initialise_logging()
+ assert mock_info.call_count == len(expected_calls) # No additional calls
+
+ @pytest.mark.unit
+ def test_check_stopping_criteria(self, log_posterior, x0, chains):
+ sampler = AdaptiveCovarianceMCMC(
+ log_pdf=log_posterior,
+ chains=chains,
+ x0=x0,
+ )
+ # Set stopping criteria
+ sampler.set_max_iterations(10)
+ assert sampler._max_iterations == 10
+
+ # Remove stopping criteria
+ sampler._max_iterations = None
+ with pytest.raises(
+ ValueError, match="At least one stopping criterion must be set."
+ ):
+ sampler._check_stopping_criteria()
+
+ # Incorrect stopping criteria
+ with pytest.raises(
+ ValueError, match="Number of iterations must be greater than 0"
+ ):
+ sampler.set_max_iterations(-1)
+
+ @pytest.mark.unit
+ def test_set_parallel(self, log_posterior, x0, chains):
+ sampler = AdaptiveCovarianceMCMC(
+ log_pdf=log_posterior,
+ chains=chains,
+ x0=x0,
+ )
+
+ # Disable parallelism
+ sampler.set_parallel(False)
+ assert sampler._parallel is False
+ assert sampler._n_workers == 1
+
+ # Enable parallelism
+ sampler.set_parallel(True)
+ assert sampler._parallel is True
+
+ # Enable parallelism with number of workers
+ sampler.set_parallel(2)
+ assert sampler._parallel is True
+ assert sampler._n_workers == 2
+
+ # Test evaluator construction
+ sampler.set_parallel(2)
+ evaluator = sampler._create_evaluator()
+ assert isinstance(evaluator, ParallelEvaluator)
+
+ @pytest.mark.unit
+ def test_base_sampler(self, log_posterior, x0):
+ sampler = pybop.BaseSampler(log_posterior, x0, chains=1, cov0=0.1)
+ with pytest.raises(NotImplementedError):
+ sampler.run()
+
+ with pytest.raises(
+ ValueError,
+ match=re.escape("log_pdf must be a LogPosterior or List[LogPosterior]"),
+ ):
+ pybop.BaseSampler(pybop.WeightedCost(log_posterior), x0, chains=1, cov0=0.1)
+
+ @pytest.mark.unit
+ def test_MCMC_sampler(self, log_posterior, x0, chains):
+ with pytest.raises(TypeError):
+ pybop.MCMCSampler(
+ log_pdf=log_posterior,
+ chains=chains,
+ sampler=log_posterior, # Incorrect sampler
+ )
diff --git a/tests/unit/test_solvers.py b/tests/unit/test_solvers.py
new file mode 100644
index 000000000..3fe318378
--- /dev/null
+++ b/tests/unit/test_solvers.py
@@ -0,0 +1,75 @@
+import numpy as np
+import pybamm
+import pytest
+
+import pybop
+
+
+class TestSolvers:
+ """
+ A class to test the forward model solver interface
+ """
+
+ @pytest.fixture(
+ params=[
+ pybamm.IDAKLUSolver(atol=1e-4, rtol=1e-4),
+ pybamm.CasadiSolver(atol=1e-4, rtol=1e-4, mode="safe"),
+ pybamm.CasadiSolver(atol=1e-4, rtol=1e-4, mode="fast with events"),
+ ]
+ )
+ def solver(self, request):
+ solver = request.param
+ return solver.copy()
+
+ @pytest.fixture
+ def model(self, solver):
+ parameter_set = pybop.ParameterSet.pybamm("Marquis2019")
+ model = pybop.lithium_ion.SPM(parameter_set=parameter_set, solver=solver)
+ return model
+
+ @pytest.mark.unit
+ def test_solvers_with_model_predict(self, model, solver):
+ assert model.solver == solver
+ assert model.solver.atol == 1e-4
+ assert model.solver.rtol == 1e-4
+
+ # Ensure solver is functional
+ sol = model.predict(t_eval=np.linspace(0, 1, 100))
+ assert np.isfinite(sol["Voltage [V]"].data).all()
+
+ signals = ["Voltage [V]", "Bulk open-circuit voltage [V]"]
+ additional_vars = [
+ "Maximum negative particle concentration",
+ "Positive electrode volume-averaged concentration [mol.m-3]",
+ ]
+
+ parameters = pybop.Parameters(
+ pybop.Parameter(
+ "Negative electrode conductivity [S.m-1]", prior=pybop.Uniform(0.1, 100)
+ )
+ )
+ dataset = pybop.Dataset(
+ {
+ "Time [s]": sol["Time [s]"].data,
+ "Current function [A]": sol["Current [A]"].data,
+ "Voltage [V]": sol["Voltage [V]"].data,
+ "Bulk open-circuit voltage [V]": sol[
+ "Bulk open-circuit voltage [V]"
+ ].data,
+ }
+ )
+ problem = pybop.FittingProblem(
+ model,
+ parameters=parameters,
+ dataset=dataset,
+ signal=signals,
+ additional_variables=additional_vars,
+ )
+
+ y = problem.evaluate(inputs={"Negative electrode conductivity [S.m-1]": 10})
+
+ for signal in signals:
+ assert np.isfinite(y[signal].data).all()
+
+ if isinstance(model.solver, pybamm.IDAKLUSolver):
+ assert model.solver.output_variables is not None
diff --git a/tests/unit/test_standalone.py b/tests/unit/test_standalone.py
index 026692011..666d58b98 100644
--- a/tests/unit/test_standalone.py
+++ b/tests/unit/test_standalone.py
@@ -9,35 +9,75 @@
class TestStandalone:
"""
- Class for testing stanadalone components.
+ Class for testing standalone components.
"""
+ @pytest.fixture
+ def dataset(self):
+ return pybop.Dataset(
+ {
+ "Time [s]": np.linspace(0, 360, 10),
+ "Current function [A]": 0.25 * np.ones(10),
+ "Voltage [V]": np.linspace(3.8, 3.7, 10),
+ }
+ )
+
+ @pytest.fixture
+ def parameter(self):
+ return pybop.Parameter(
+ "Positive electrode active material volume fraction",
+ prior=pybop.Gaussian(0.6, 0.02),
+ bounds=[0.58, 0.62],
+ )
+
+ @pytest.fixture
+ def model(self):
+ model = pybop.lithium_ion.SPM()
+ model.build(initial_state={"Initial open-circuit voltage [V]": 3.8})
+ return model
+
+ @pytest.fixture
+ def problem(self, model, parameter, dataset):
+ return pybop.FittingProblem(
+ model,
+ parameter,
+ dataset,
+ )
+
+ @pytest.fixture
+ def cost(self, problem):
+ return pybop.SumSquaredError(problem)
+
@pytest.mark.unit
- def test_standalone_optimiser(self):
- optim = StandaloneOptimiser()
+ def test_standalone_optimiser(self, cost):
+ # Define cost function
+ optim = StandaloneOptimiser(cost, maxiter=10, x0=[0.6])
assert optim.name() == "StandaloneOptimiser"
- x, final_cost = optim.run()
- assert optim.cost(optim.x0) > final_cost
- np.testing.assert_allclose(x, [2, 4], atol=1e-2)
+ results = optim.run()
+ assert optim.cost(optim.x0) > results.final_cost
+ assert 0.0 <= results.x <= 1.0
# Test with bounds
- optim = StandaloneOptimiser(bounds=dict(upper=[5, 6], lower=[1, 2]))
+ optim = StandaloneOptimiser(
+ cost, maxiter=10, x0=[0.6], bounds=dict(upper=[0.8], lower=[0.3])
+ )
- x, final_cost = optim.run()
- assert optim.cost(optim.x0) > final_cost
- np.testing.assert_allclose(x, [2, 4], atol=1e-2)
+ results = optim.run()
+ assert optim.cost(optim.x0) > results.final_cost
+ assert 0.3 <= results.x <= 0.8
@pytest.mark.unit
- def test_optimisation_on_standalone_cost(self):
+ def test_optimisation_on_standalone_cost(self, problem):
# Build an Optimisation problem with a StandaloneCost
- cost = StandaloneCost()
+ cost = StandaloneCost(problem)
optim = pybop.SciPyDifferentialEvolution(cost=cost)
- x, final_cost = optim.run()
+ results = optim.run()
- initial_cost = optim.cost(cost.x0)
- assert initial_cost > final_cost
- np.testing.assert_allclose(final_cost, 42, atol=1e-1)
+ optim.x0 = optim.log["x"][0]
+ initial_cost = optim.cost(optim.x0)
+ assert initial_cost > results.final_cost
+ np.testing.assert_allclose(results.final_cost, 1460, atol=1)
@pytest.mark.unit
def test_standalone_problem(self):
@@ -72,14 +112,14 @@ def test_standalone_problem(self):
# Test the Problem with a Cost
rmse_cost = pybop.RootMeanSquaredError(problem)
rmse_x = rmse_cost([1, 2])
- rmse_grad_x = rmse_cost.evaluateS1([1, 2])
+ rmse_grad_x = rmse_cost([1, 2], calculate_grad=True)
np.testing.assert_allclose(rmse_x, 3.05615, atol=1e-2)
np.testing.assert_allclose(rmse_grad_x[1], [-0.54645, 0.0], atol=1e-2)
# Test the sensitivities
sums_cost = pybop.SumSquaredError(problem)
- x = sums_cost.evaluateS1([1, 2])
+ x = sums_cost([1, 2], calculate_grad=True)
np.testing.assert_allclose(x[0], 934.006734006734, atol=1e-2)
np.testing.assert_allclose(x[1], [-334.006734, 0.0], atol=1e-2)
diff --git a/tests/unit/test_transformations.py b/tests/unit/test_transformations.py
new file mode 100644
index 000000000..daec0c8d6
--- /dev/null
+++ b/tests/unit/test_transformations.py
@@ -0,0 +1,237 @@
+import inspect
+
+import numpy as np
+import pytest
+
+import pybop
+
+
+class TestTransformation:
+ """
+ A class to test the transformations.
+ """
+
+ @pytest.fixture
+ def parameters(self):
+ return pybop.Parameters(
+ pybop.Parameter(
+ "Identity",
+ transformation=pybop.IdentityTransformation(),
+ ),
+ pybop.Parameter(
+ "Scaled",
+ transformation=pybop.ScaledTransformation(coefficient=2.0, intercept=1),
+ ),
+ pybop.Parameter(
+ "Log",
+ transformation=pybop.LogTransformation(),
+ ),
+ )
+
+ @pytest.mark.unit
+ def test_identity_transformation(self, parameters):
+ q = np.asarray([5.0])
+ transformation = parameters["Identity"].transformation
+ assert np.array_equal(transformation.to_model(q), q)
+ assert np.array_equal(transformation.to_search(q), q)
+ assert transformation.log_jacobian_det(q) == 0.0
+ assert transformation.log_jacobian_det_S1(q) == (0.0, np.zeros(1))
+ assert transformation.n_parameters == 1
+ assert transformation.is_elementwise()
+
+ jac, jac_S1 = transformation.jacobian_S1(q)
+ assert np.array_equal(jac, np.eye(1))
+ assert np.array_equal(jac_S1, np.zeros((1, 1, 1)))
+
+ # Test covariance transformation
+ cov = np.array([[0.5]])
+ q = np.array([5.0])
+ cov_transformed = transformation.convert_covariance_matrix(cov, q)
+ assert np.array_equal(cov_transformed, cov)
+
+ @pytest.mark.unit
+ def test_scaled_transformation(self, parameters):
+ q = np.asarray([2.5])
+ transformation = parameters["Scaled"].transformation
+ p = transformation.to_model(q)
+ assert np.allclose(p, (q / 2.0) - 1.0)
+ assert transformation.n_parameters == 1
+ assert transformation.is_elementwise()
+
+ q_transformed = transformation.to_search(p)
+ assert np.allclose(q_transformed, q)
+ assert np.allclose(
+ transformation.log_jacobian_det(q), np.sum(np.log(np.abs(2.0)))
+ )
+ log_jac_det_S1 = transformation.log_jacobian_det_S1(q)
+ assert log_jac_det_S1[0] == np.sum(np.log(np.abs(2.0)))
+ assert log_jac_det_S1[1] == np.zeros(1)
+
+ jac, jac_S1 = transformation.jacobian_S1(q)
+ assert np.array_equal(jac, np.diag([0.5]))
+ assert np.array_equal(jac_S1, np.zeros((1, 1, 1)))
+
+ # Test covariance transformation
+ cov = np.array([[0.5]])
+ cov_transformed = transformation.convert_covariance_matrix(cov, q)
+ assert np.array_equal(cov_transformed, cov * transformation.coefficient**2)
+
+ # Test incorrect transform
+ with pytest.raises(ValueError, match="Unknown method:"):
+ transformation._transform(q, "bad-string")
+
+ @pytest.mark.unit
+ def test_log_transformation(self, parameters):
+ q = np.asarray([10])
+ transformation = parameters["Log"].transformation
+ p = transformation.to_model(q)
+ assert np.allclose(p, np.exp(q))
+ assert transformation.n_parameters == 1
+
+ q_transformed = transformation.to_search(p)
+ assert np.allclose(q_transformed, q)
+ assert np.allclose(transformation.log_jacobian_det(q), np.sum(q))
+
+ log_jac_det_S1 = transformation.log_jacobian_det_S1(q)
+ n = transformation._n_parameters
+ assert log_jac_det_S1[0] == np.sum(q)
+ assert log_jac_det_S1[1] == np.ones(n)
+
+ jac, jac_S1 = transformation.jacobian_S1(q)
+ assert np.array_equal(jac, np.diag(np.exp(q)))
+ jac_S1_def = np.zeros((n, n, n))
+ rn = np.arange(n)
+ jac_S1_def[rn, rn, rn] = np.diagonal(jac)
+ assert np.array_equal(jac_S1, jac_S1_def)
+
+ # Test covariance transformation
+ cov = np.array([[0.5]])
+ cov_transformed = transformation.convert_covariance_matrix(cov, q)
+ assert np.array_equal(cov_transformed, cov * np.exp(q) ** -2)
+
+ # Test incorrect transform
+ with pytest.raises(ValueError, match="Unknown method:"):
+ transformation._transform(q, "bad-string")
+
+ @pytest.mark.unit
+ def test_composed_transformation(self, parameters):
+ # Test elementwise transformations
+ transformation = pybop.ComposedTransformation(
+ [parameters["Identity"].transformation, parameters["Scaled"].transformation]
+ )
+ # Test appending transformations
+ transformation.append(parameters["Log"].transformation)
+ assert transformation.is_elementwise() is True
+
+ q = np.asarray([5.0, 2.5, 10])
+ p = transformation.to_model(q)
+ np.testing.assert_allclose(
+ p, np.asarray([5.0, ((q[1] / 2.0) - 1.0), np.exp(q[2])])
+ )
+ jac = transformation.jacobian(q)
+ jac_S1 = transformation.jacobian_S1(q)
+ np.testing.assert_allclose(
+ jac,
+ np.asarray([[1, 0.0, 0.0], [0.0, 0.5, 0.0], [0.0, 0.0, 2.202647e04]]),
+ rtol=1e-6,
+ )
+ np.testing.assert_allclose(jac_S1[0], jac)
+ assert jac_S1[1].shape == (3, 3, 3)
+ np.testing.assert_allclose(jac_S1[1][2, 2, 2], 22026.4657948067)
+ np.testing.assert_allclose(jac_S1[1][0, :, :], np.zeros((3, 3)))
+ np.testing.assert_allclose(jac_S1[1][1, :, :], np.zeros((3, 3)))
+
+ correct_output = np.sum(np.log(np.abs(2.0))) + np.sum(10)
+ log_jac_det = transformation.log_jacobian_det(q)
+ assert log_jac_det == correct_output
+
+ log_jac_det_S1 = transformation.log_jacobian_det_S1(q)
+ assert log_jac_det_S1[0] == correct_output
+ np.testing.assert_allclose(log_jac_det_S1[1], np.asarray([0.0, 0.0, 1.0]))
+
+ # Test composed with no transformations
+ with pytest.raises(
+ ValueError, match="Must have at least one sub-transformation."
+ ):
+ pybop.ComposedTransformation([])
+
+ # Test incorrect append object
+ with pytest.raises(
+ TypeError, match="The appended object must be a Transformation."
+ ):
+ pybop.ComposedTransformation(
+ [parameters["Identity"].transformation, "string"]
+ )
+
+ @pytest.mark.unit
+ def test_verify_input(self, parameters):
+ q = np.asarray([5.0])
+ q_dict = {"Identity": q[0]}
+ transformation = parameters["Scaled"].transformation
+ assert transformation.verify_input(q) == q
+ assert transformation.verify_input(q.tolist()) == q
+ assert transformation.verify_input(q_dict) == q
+
+ with pytest.raises(
+ TypeError, match="Transform must be a float, int, list, numpy array,"
+ ):
+ transformation.verify_input("string")
+
+ with pytest.raises(ValueError, match="Transform must have"):
+ transformation.verify_input(np.array([1.0, 2.0, 3.0]))
+
+
+class TestBaseTransformation:
+ """
+ A class to test the abstract base transformation class.
+ """
+
+ @pytest.fixture
+ def ConcreteTransformation(self):
+ class ConcreteTransformation(pybop.Transformation):
+ def jacobian(self, q):
+ pass
+
+ def _transform(self, q, method):
+ pass
+
+ return ConcreteTransformation()
+
+ @pytest.mark.unit
+ def test_abstract_base_transformation(self):
+ with pytest.raises(TypeError):
+ pybop.Transformation()
+
+ @pytest.mark.unit
+ def test_abstract_methods(self):
+ abstract_methods = ["jacobian", "_transform"]
+ for method in abstract_methods:
+ assert hasattr(pybop.Transformation, method)
+ assert getattr(pybop.Transformation, method).__isabstractmethod__
+
+ @pytest.mark.unit
+ def test_concrete_methods(self):
+ concrete_methods = [
+ "convert_covariance_matrix",
+ "convert_standard_deviation",
+ "log_jacobian_det",
+ "to_model",
+ "to_search",
+ ]
+ for method in concrete_methods:
+ assert hasattr(pybop.Transformation, method)
+ assert not inspect.isabstract(getattr(pybop.Transformation, method))
+
+ @pytest.mark.unit
+ def test_not_implemented_methods(self, ConcreteTransformation):
+ not_implemented_methods = [
+ "jacobian_S1",
+ "log_jacobian_det_S1",
+ ]
+ for method_name in not_implemented_methods:
+ with pytest.raises(NotImplementedError):
+ method = getattr(ConcreteTransformation, method_name)
+ method(np.array([1.0]))
+
+ with pytest.raises(NotImplementedError):
+ ConcreteTransformation.is_elementwise()